From ef465063783b4646f5a90753f4b1f3375221134b Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 18 Apr 2023 16:46:40 +0100 Subject: [PATCH 01/85] Add cmake/modules files --- .../CGAL_Qt6_moc_and_resource_files.cmake | 25 ++++ .../CGAL_SetupCGAL_Qt6Dependencies.cmake | 124 ++++++++++++++++++ 2 files changed, 149 insertions(+) create mode 100644 Installation/cmake/modules/CGAL_Qt6_moc_and_resource_files.cmake create mode 100644 Installation/cmake/modules/CGAL_SetupCGAL_Qt6Dependencies.cmake diff --git a/Installation/cmake/modules/CGAL_Qt6_moc_and_resource_files.cmake b/Installation/cmake/modules/CGAL_Qt6_moc_and_resource_files.cmake new file mode 100644 index 000000000000..21b32bc2e9e6 --- /dev/null +++ b/Installation/cmake/modules/CGAL_Qt6_moc_and_resource_files.cmake @@ -0,0 +1,25 @@ +if(CGAL_Qt6_moc_and_resource_files_included) + return() +endif() +set(CGAL_Qt6_moc_and_resource_files_included TRUE) +# qrc files (resources files, that contain icons, at least) +if(EXISTS ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/resources/CGAL.qrc) + qt5_add_resources (_CGAL_Qt6_RESOURCE_FILES_private + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/resources/CGAL.qrc + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/Input.qrc + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/File.qrc + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/Triangulation_2.qrc) +else() + # Installed version, in CMake resources + file ( COPY + ${CGAL_MODULES_DIR}/demo/resources + ${CGAL_MODULES_DIR}/demo/icons + DESTINATION ${CMAKE_BINARY_DIR}) + qt5_add_resources (_CGAL_Qt6_RESOURCE_FILES_private + ${CMAKE_BINARY_DIR}/resources/CGAL.qrc + ${CMAKE_BINARY_DIR}/icons/Input.qrc + ${CMAKE_BINARY_DIR}/icons/File.qrc + ${CMAKE_BINARY_DIR}/icons/Triangulation_2.qrc) +endif() + +qt5_wrap_ui(_CGAL_Qt6_UI_FILES ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/ImageInterface.ui) diff --git a/Installation/cmake/modules/CGAL_SetupCGAL_Qt6Dependencies.cmake b/Installation/cmake/modules/CGAL_SetupCGAL_Qt6Dependencies.cmake new file mode 100644 index 000000000000..161e9673345c --- /dev/null +++ b/Installation/cmake/modules/CGAL_SetupCGAL_Qt6Dependencies.cmake @@ -0,0 +1,124 @@ +#.rst: +# CGAL_SetupCGAL_Qt6Dependencies +# ------------------------------ +# +# The module searches for the dependencies of the `CGAL_Qt6` library: +# - the `Qt6` libraries +# +# by calling +# +# .. code-block:: cmake +# +# find_package(Qt6 QUIET COMPONENTS OpenGL Svg) +# +# and defines the variable :variable:`CGAL_Qt6_FOUND` and the function +# :command:`CGAL_setup_CGAL_Qt6_dependencies`. +# + +if(CGAL_SetupCGAL_Qt6Dependencies_included) + return() +endif() +set(CGAL_SetupCGAL_Qt6Dependencies_included TRUE) + +#.rst: +# Used Modules +# ^^^^^^^^^^^^ +# - :module:`Qt6Config` +find_package(Qt6 QUIET COMPONENTS OpenGL Svg) + +set(CGAL_Qt6_MISSING_DEPS "") +if(NOT Qt6OpenGL_FOUND) + set(CGAL_Qt6_MISSING_DEPS "Qt6OpenGL") +endif() +if(NOT Qt6Svg_FOUND) + set(CGAL_Qt6_MISSING_DEPS "${CGAL_Qt6_MISSING_DEPS} Qt6Svg") +endif() +if(NOT Qt6_FOUND) + set(CGAL_Qt6_MISSING_DEPS "${CGAL_Qt6_MISSING_DEPS} Qt6") +endif() +if(NOT EXISTS ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsItem.h) + set(CGAL_Qt6_MISSING_DEPS "${CGAL_Qt6_MISSING_DEPS} headers") +endif() + +#.rst: +# Result Variables +# ^^^^^^^^^^^^^^^^ +# +# .. variable:: CGAL_Qt6_FOUND +# +# Set to `TRUE` if the dependencies of `CGAL_Qt6` were found. +# +if(NOT CGAL_Qt6_MISSING_DEPS) + set(CGAL_Qt6_FOUND TRUE) + set_property(GLOBAL PROPERTY CGAL_Qt6_FOUND TRUE) + + include(${CMAKE_CURRENT_LIST_DIR}/CGAL_Qt6_moc_and_resource_files.cmake) + + if(NOT TARGET CGAL_Qt6_moc_and_resources) + add_library(CGAL_Qt6_moc_and_resources STATIC + ${_CGAL_Qt6_MOC_FILES_private} + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsViewNavigation.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/DemosMainWindow.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsItem.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsViewInput.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/camera.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/frame.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/keyFrameInterpolator.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/manipulatedCameraFrame.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/manipulatedFrame.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/qglviewer.h + ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/image_interface.h + ${_CGAL_Qt6_UI_FILES} + ${_CGAL_Qt6_RESOURCE_FILES_private}) + target_include_directories( CGAL_Qt6_moc_and_resources PUBLIC ${CMAKE_CURRENT_BINARY_DIR}) + set_target_properties(CGAL_Qt6_moc_and_resources PROPERTIES + POSITION_INDEPENDENT_CODE TRUE + EXCLUDE_FROM_ALL TRUE + AUTOMOC TRUE) + target_link_libraries(CGAL_Qt6_moc_and_resources CGAL::CGAL Qt6::Widgets Qt6::OpenGL Qt6::Svg ) + + add_library(CGAL::CGAL_Qt6_moc_and_resources ALIAS CGAL_Qt6_moc_and_resources) + add_library(CGAL::Qt6_moc_and_resources ALIAS CGAL_Qt6_moc_and_resources) + endif() + +endif() + +#get_property(QT_UIC_EXECUTABLE TARGET Qt6::uic PROPERTY LOCATION) +#message( STATUS "Qt6Core include: ${Qt6Core_INCLUDE_DIRS}" ) +#message( STATUS "Qt6 libraries: ${Qt6Core_LIBRARIES} ${Qt6Gui_LIBRARIES} ${Qt6Svg_LIBRARIES} ${Qt6OpenGL_LIBRARIES}" ) +#message( STATUS "Qt6Core definitions: ${Qt6Core_DEFINITIONS}" ) +#message( STATUS "moc executable: ${QT_MOC_EXECUTABLE}" ) +#message( STATUS "uic executable: ${QT_UIC_EXECUTABLE}" ) + +#.rst: +# +# Provided Functions +# ^^^^^^^^^^^^^^^^^^ +# +# .. command:: CGAL_setup_CGAL_Qt6_dependencies +# +# Link the target with the dependencies of `CGAL_Qt6`:: +# +# CGAL_setup_CGAL_Qt6_dependencies( target ) +# +# The dependencies are +# added using :command:`target_link_libraries` with the ``INTERFACE`` +# keyword. +# +function(CGAL_setup_CGAL_Qt6_dependencies target) + + if($ENV{CGAL_FAKE_PUBLIC_RELEASE}) + target_compile_definitions( ${target} INTERFACE CGAL_FAKE_PUBLIC_RELEASE=1 ) + endif() + target_link_libraries( ${target} INTERFACE CGAL::CGAL) + target_link_libraries( ${target} INTERFACE CGAL::Qt6_moc_and_resources) + target_link_libraries( ${target} INTERFACE Qt6::OpenGL Qt6::Svg ) + + # Remove -Wdeprecated-copy, for g++ >= 9.0, because Qt6, as of + # version 5.12, has a lot of [-Wdeprecated-copy] warnings. + if( CMAKE_CXX_COMPILER_ID STREQUAL "GNU" + AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS "9" ) + target_compile_options( ${target} INTERFACE "-Wno-deprecated-copy" "-Wno-cast-function-type" ) + endif() + +endfunction() From c6ce5fb1208bb48e173a5bd81116f28c13c10a4e Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Apr 2023 12:19:38 +0100 Subject: [PATCH 02/85] Switch to QT6 for the GraphicsView demos --- .../demo/Alpha_shapes_2/CMakeLists.txt | 20 +++++------ .../demo/Apollonius_graph_2/CMakeLists.txt | 18 +++++----- .../demo/Bounding_volumes/CMakeLists.txt | 18 +++++----- .../demo/Circular_kernel_2/CMakeLists.txt | 18 +++++----- GraphicsView/demo/Generator/CMakeLists.txt | 16 ++++----- GraphicsView/demo/GraphicsView/CMakeLists.txt | 12 +++---- .../demo/L1_Voronoi_diagram_2/CMakeLists.txt | 18 +++++----- .../demo/Largest_empty_rect_2/CMakeLists.txt | 16 ++++----- .../Periodic_2_triangulation_2/CMakeLists.txt | 18 +++++----- GraphicsView/demo/Polygon/CMakeLists.txt | 18 +++++----- .../Segment_Delaunay_graph_2/CMakeLists.txt | 22 +++++------- .../CMakeLists.txt | 16 ++++----- .../demo/Snap_rounding_2/CMakeLists.txt | 18 +++++----- .../demo/Spatial_searching_2/CMakeLists.txt | 18 +++++----- .../demo/Stream_lines_2/CMakeLists.txt | 20 +++++------ .../demo/Triangulation_2/CMakeLists.txt | 34 +++++++++--------- .../include/CGAL/Qt/DemosMainWindow_impl.h | 15 ++++---- GraphicsView/include/CGAL/Qt/qglviewer.h | 4 +-- GraphicsView/include/CGAL/Qt/qglviewer_impl.h | 2 +- Installation/CMakeLists.txt | 36 +++++++++---------- .../cmake/modules/CGALConfig_binary.cmake.in | 24 ++++++------- .../cmake/modules/CGALConfig_install.cmake.in | 20 +++++------ Installation/cmake/modules/CGAL_Macros.cmake | 8 ++--- .../CGAL_Qt6_moc_and_resource_files.cmake | 6 ++-- .../CGAL_SetupCGAL_Qt6Dependencies.cmake | 17 +++++---- .../cmake/modules/CGAL_add_test.cmake | 34 +++++++++--------- .../CGAL_setup_target_dependencies.cmake | 4 +-- Installation/lib/cmake/CGAL/CGALConfig.cmake | 5 ++- 28 files changed, 236 insertions(+), 239 deletions(-) diff --git a/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt b/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt index ca4a58c59589..771664f2a4b5 100644 --- a/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt +++ b/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt @@ -13,31 +13,31 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) include_directories(BEFORE ./include) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Alpha_shapes_2.ui) + qt6_wrap_ui(DT_UI_FILES Alpha_shapes_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Alpha_shapes_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Alpha_shapes_2.qrc) # The executable itself. add_executable( - Alpha_shapes_2 Alpha_shapes_2.cpp ${DT_UI_FILES} ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES}) + Alpha_shapes_2 Alpha_shapes_2.cpp ${DT_UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Alpha_shapes_2) - target_link_libraries(Alpha_shapes_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(Alpha_shapes_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Alpha_shapes_2) @@ -45,5 +45,5 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Alpha_shapes_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt b/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt index ab0f43011f9a..27a13e4b21cb 100644 --- a/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt +++ b/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt @@ -13,32 +13,32 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) #-------------------------------- # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Apollonius_graph_2.ui) + qt6_wrap_ui(DT_UI_FILES Apollonius_graph_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Apollonius_graph_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Apollonius_graph_2.qrc) # use the Qt MOC preprocessor on classes that derives from QObject # The executable itself. add_executable( Apollonius_graph_2 Apollonius_graph_2.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Apollonius_graph_2) - target_link_libraries(Apollonius_graph_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(Apollonius_graph_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Apollonius_graph_2) @@ -46,5 +46,5 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Apollonius_graph_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Bounding_volumes/CMakeLists.txt b/GraphicsView/demo/Bounding_volumes/CMakeLists.txt index 69a30838cea5..3325c4379037 100644 --- a/GraphicsView/demo/Bounding_volumes/CMakeLists.txt +++ b/GraphicsView/demo/Bounding_volumes/CMakeLists.txt @@ -13,34 +13,34 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) include_directories(BEFORE ./include) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_INCLUDE_CURRENT_DIR ON) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Bounding_volumes.ui) + qt6_wrap_ui(DT_UI_FILES Bounding_volumes.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Bounding_volumes.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Bounding_volumes.qrc) # use the Qt MOC preprocessor on classes that derives from QObject # The executable itself. add_executable( Bounding_volumes Bounding_volumes.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Bounding_volumes) - target_link_libraries(Bounding_volumes PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(Bounding_volumes PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Bounding_volumes) @@ -50,6 +50,6 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Circular_kernel_2/CMakeLists.txt b/GraphicsView/demo/Circular_kernel_2/CMakeLists.txt index eb2e2b790116..129bcd076b86 100644 --- a/GraphicsView/demo/Circular_kernel_2/CMakeLists.txt +++ b/GraphicsView/demo/Circular_kernel_2/CMakeLists.txt @@ -13,32 +13,32 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Circular_kernel_2.ui) + qt6_wrap_ui(DT_UI_FILES Circular_kernel_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Circular_kernel_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Circular_kernel_2.qrc) # use the Qt MOC preprocessor on classes that derives from QObject # The executable itself. add_executable( Circular_kernel_2 Circular_kernel_2.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Circular_kernel_2) - target_link_libraries(Circular_kernel_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(Circular_kernel_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Circular_kernel_2) @@ -48,6 +48,6 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Generator/CMakeLists.txt b/GraphicsView/demo/Generator/CMakeLists.txt index 3be28ec735dc..58346ad7753c 100644 --- a/GraphicsView/demo/Generator/CMakeLists.txt +++ b/GraphicsView/demo/Generator/CMakeLists.txt @@ -12,36 +12,36 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Generator_2.ui) + qt6_wrap_ui(DT_UI_FILES Generator_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Generator_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Generator_2.qrc) # use the Qt MOC preprocessor on classes that derives from QObject # The executable itself. add_executable(Generator_2 Generator_2.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Generator_2) - target_link_libraries(Generator_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Gui) + target_link_libraries(Generator_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Generator_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/GraphicsView/CMakeLists.txt b/GraphicsView/demo/GraphicsView/CMakeLists.txt index 51617b00b874..4b3940bf0fa0 100644 --- a/GraphicsView/demo/GraphicsView/CMakeLists.txt +++ b/GraphicsView/demo/GraphicsView/CMakeLists.txt @@ -12,25 +12,25 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) - add_executable(min min.cpp ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + add_executable(min min.cpp ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS min) - target_link_libraries(min PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Gui) + target_link_libraries(min PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(min) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/L1_Voronoi_diagram_2/CMakeLists.txt b/GraphicsView/demo/L1_Voronoi_diagram_2/CMakeLists.txt index 432cb655369e..b5e8e231bde5 100644 --- a/GraphicsView/demo/L1_Voronoi_diagram_2/CMakeLists.txt +++ b/GraphicsView/demo/L1_Voronoi_diagram_2/CMakeLists.txt @@ -13,32 +13,32 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) include_directories(BEFORE ./include) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES L1_voronoi_diagram_2.ui) + qt6_wrap_ui(DT_UI_FILES L1_voronoi_diagram_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./L1_voronoi_diagram_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./L1_voronoi_diagram_2.qrc) # The executable itself. add_executable( L1_voronoi_diagram_2 L1_voronoi_diagram_2.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS L1_voronoi_diagram_2) - target_link_libraries(L1_voronoi_diagram_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(L1_voronoi_diagram_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(L1_voronoi_diagram_2) @@ -48,6 +48,6 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Largest_empty_rect_2/CMakeLists.txt b/GraphicsView/demo/Largest_empty_rect_2/CMakeLists.txt index a6de2468c40b..7c83ab38c01c 100644 --- a/GraphicsView/demo/Largest_empty_rect_2/CMakeLists.txt +++ b/GraphicsView/demo/Largest_empty_rect_2/CMakeLists.txt @@ -13,36 +13,36 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Largest_empty_rectangle_2.ui) + qt6_wrap_ui(DT_UI_FILES Largest_empty_rectangle_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Largest_empty_rectangle_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Largest_empty_rectangle_2.qrc) # The executable itself. add_executable( Largest_empty_rectangle_2 Largest_empty_rectangle_2.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Largest_empty_rectangle_2) target_link_libraries(Largest_empty_rectangle_2 - PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Gui) + PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Largest_empty_rectangle_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Periodic_2_triangulation_2/CMakeLists.txt b/GraphicsView/demo/Periodic_2_triangulation_2/CMakeLists.txt index 2f964941bb01..0cae7c979012 100644 --- a/GraphicsView/demo/Periodic_2_triangulation_2/CMakeLists.txt +++ b/GraphicsView/demo/Periodic_2_triangulation_2/CMakeLists.txt @@ -10,22 +10,22 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) include_directories(BEFORE ./include) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Periodic_2_triangulation_2.ui) + qt6_wrap_ui(DT_UI_FILES Periodic_2_triangulation_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Periodic_2_triangulation_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Periodic_2_triangulation_2.qrc) # find header files for projects that can show them file(GLOB headers "*.h") @@ -39,8 +39,8 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) Periodic_2_Delaunay_triangulation_2 Periodic_2_Delaunay_triangulation_2.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES} + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES} ${headers} ${QT_headers} ${P2T2_headers}) @@ -49,12 +49,12 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) Periodic_2_Delaunay_triangulation_2) target_link_libraries(Periodic_2_Delaunay_triangulation_2 - PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Gui) + PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Periodic_2_Delaunay_triangulation_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Polygon/CMakeLists.txt b/GraphicsView/demo/Polygon/CMakeLists.txt index 8314d618d2ff..fb753dccefe5 100644 --- a/GraphicsView/demo/Polygon/CMakeLists.txt +++ b/GraphicsView/demo/Polygon/CMakeLists.txt @@ -13,7 +13,7 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5 Core) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 Core) find_package(Eigen3 3.1.0 QUIET) #(requires 3.1.0 or greater) include(CGAL_Eigen3_support) @@ -22,9 +22,9 @@ if(NOT TARGET CGAL::Eigen3_support) return() endif() -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) include(${CGAL_USE_FILE}) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_AUTOMOC ON) @@ -34,25 +34,25 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) endif() # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Polygon_2.ui) + qt6_wrap_ui(DT_UI_FILES Polygon_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Polygon_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Polygon_2.qrc) # add_library( CGAL SHARED IMPORTED ) # SET_PROPERTY(TARGET CGAL PROPERTY IMPORTED_LOCATION ${CGAL_LIBRARY} ) # The executable itself. add_executable(Polygon_2 Polygon_2.cpp ${DT_UI_FILES} ${DT_RESOURCE_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Polygon_2) - target_link_libraries(Polygon_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - CGAL::Eigen3_support Qt5::Gui) + target_link_libraries(Polygon_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + CGAL::Eigen3_support Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Polygon_2) else() - message("NOTICE: This demo requires CGAL, CGAL_Core, and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL, CGAL_Core, and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Segment_Delaunay_graph_2/CMakeLists.txt b/GraphicsView/demo/Segment_Delaunay_graph_2/CMakeLists.txt index 745fbb09ed0a..653619eb3201 100644 --- a/GraphicsView/demo/Segment_Delaunay_graph_2/CMakeLists.txt +++ b/GraphicsView/demo/Segment_Delaunay_graph_2/CMakeLists.txt @@ -13,40 +13,36 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5 Core) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 Core) -set(QT_USE_QTXML TRUE) -set(QT_USE_QTMAIN TRUE) -set(QT_USE_QTSCRIPT TRUE) -set(QT_USE_QTOPENGL TRUE) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) include_directories(BEFORE ./include) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_AUTOMOC ON) include(${CGAL_USE_FILE}) add_definitions(-DQT_NO_KEYWORDS) # UI files (Qt Designer files) - qt5_wrap_ui(CDT_UI_FILES Segment_voronoi_2.ui) + qt6_wrap_ui(CDT_UI_FILES Segment_voronoi_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Segment_voronoi_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Segment_voronoi_2.qrc) # The executable itself. add_executable( Segment_voronoi_2 Segment_voronoi_2.cpp ${CDT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Segment_voronoi_2) - target_link_libraries(Segment_voronoi_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(Segment_voronoi_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Segment_voronoi_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt b/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt index f1d5e4fbbd41..25cc1e2f3b6f 100644 --- a/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt +++ b/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt @@ -13,39 +13,39 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5 Core) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 Core) set(QT_USE_QTXML TRUE) set(QT_USE_QTMAIN TRUE) set(QT_USE_QTSCRIPT TRUE) set(QT_USE_QTOPENGL TRUE) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) include_directories(BEFORE ./include) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_AUTOMOC ON) include(${CGAL_USE_FILE}) add_definitions(-DQT_NO_KEYWORDS) # UI files (Qt Designer files) - qt5_wrap_ui(CDT_UI_FILES Segment_voronoi_2.ui) + qt6_wrap_ui(CDT_UI_FILES Segment_voronoi_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Segment_voronoi_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Segment_voronoi_2.qrc) # The executable itself. add_executable( Segment_voronoi_linf_2 Segment_voronoi_linf_2.cpp ${CDT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Segment_voronoi_linf_2) target_link_libraries(Segment_voronoi_linf_2 PRIVATE CGAL::CGAL - CGAL::CGAL_Qt5 Qt5::Gui) + CGAL::CGAL_Qt6 Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Segment_voronoi_linf_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Snap_rounding_2/CMakeLists.txt b/GraphicsView/demo/Snap_rounding_2/CMakeLists.txt index 0b7ebdeb6d86..aaffe63198b9 100644 --- a/GraphicsView/demo/Snap_rounding_2/CMakeLists.txt +++ b/GraphicsView/demo/Snap_rounding_2/CMakeLists.txt @@ -13,30 +13,30 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_AUTOMOC ON) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Snap_rounding_2.ui) + qt6_wrap_ui(DT_UI_FILES Snap_rounding_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Snap_rounding_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Snap_rounding_2.qrc) # The executable itself. add_executable( Snap_rounding_2 Snap_rounding_2.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Snap_rounding_2) - target_link_libraries(Snap_rounding_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(Snap_rounding_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Snap_rounding_2) @@ -44,5 +44,5 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Snap_rounding_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6<, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Spatial_searching_2/CMakeLists.txt b/GraphicsView/demo/Spatial_searching_2/CMakeLists.txt index f5d5aad6d142..6615bea349df 100644 --- a/GraphicsView/demo/Spatial_searching_2/CMakeLists.txt +++ b/GraphicsView/demo/Spatial_searching_2/CMakeLists.txt @@ -13,36 +13,36 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Spatial_searching_2.ui) + qt6_wrap_ui(DT_UI_FILES Spatial_searching_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Spatial_searching_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Spatial_searching_2.qrc) # The executable itself. add_executable( Spatial_searching_2 Spatial_searching_2.cpp ${DT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Spatial_searching_2) - target_link_libraries(Spatial_searching_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(Spatial_searching_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Spatial_searching_2) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Stream_lines_2/CMakeLists.txt b/GraphicsView/demo/Stream_lines_2/CMakeLists.txt index 0067351b4e14..19f88273a048 100644 --- a/GraphicsView/demo/Stream_lines_2/CMakeLists.txt +++ b/GraphicsView/demo/Stream_lines_2/CMakeLists.txt @@ -13,31 +13,31 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # UI files (Qt Designer files) - qt5_wrap_ui(DT_UI_FILES Stream_lines_2.ui) + qt6_wrap_ui(DT_UI_FILES Stream_lines_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Stream_lines_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Stream_lines_2.qrc) # The executable itself. add_executable( - Stream_lines_2 Stream_lines_2.cpp ${DT_UI_FILES} ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES}) + Stream_lines_2 Stream_lines_2.cpp ${DT_UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Stream_lines_2) - target_link_libraries(Stream_lines_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Gui) + target_link_libraries(Stream_lines_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Stream_lines_2) @@ -47,6 +47,6 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/GraphicsView/demo/Triangulation_2/CMakeLists.txt b/GraphicsView/demo/Triangulation_2/CMakeLists.txt index 4560bc339dcb..6ee55850f86d 100644 --- a/GraphicsView/demo/Triangulation_2/CMakeLists.txt +++ b/GraphicsView/demo/Triangulation_2/CMakeLists.txt @@ -16,11 +16,11 @@ endif() set(CMAKE_AUTOMOC TRUE) set(CMAKE_INCLUDE_CURRENT_DIR TRUE) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) -find_package(Qt5 QUIET COMPONENTS Widgets) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) +find_package(Qt6 QUIET COMPONENTS Widgets) -if(NOT CGAL_Qt5_FOUND OR NOT Qt5_FOUND) - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") +if(NOT CGAL_Qt6_FOUND OR NOT Qt6_FOUND) + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") return() endif() @@ -31,15 +31,15 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # The "constrained Delaunay" demo: Constrained_Delaunay_triangulation_2 #-------------------------------- -qt5_add_resources(CD_RES_FILE Constrained_Delaunay_triangulation_2.qrc) -qt5_wrap_ui(CD_UI_FILES Constrained_Delaunay_triangulation_2.ui) +qt6_add_resources(CD_RES_FILE Constrained_Delaunay_triangulation_2.qrc) +qt6_wrap_ui(CD_UI_FILES Constrained_Delaunay_triangulation_2.ui) # The executable itself. add_executable( Constrained_Delaunay_triangulation_2 Constrained_Delaunay_triangulation_2.cpp ${CD_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CD_RES_FILE}) + ${CGAL_Qt6_RESOURCE_FILES} ${CD_RES_FILE}) target_link_libraries(Constrained_Delaunay_triangulation_2 - PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Widgets) + PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) target_include_directories(Constrained_Delaunay_triangulation_2 PRIVATE ./include) @@ -48,14 +48,14 @@ add_to_cached_list(CGAL_EXECUTABLE_TARGETS Constrained_Delaunay_triangulation_2) #-------------------------------- # The "Delaunay" demo: Delaunay_triangulation_2 #-------------------------------- -qt5_wrap_ui(D_UI_FILES Delaunay_triangulation_2.ui) -qt5_add_resources(D_RES_FILE Delaunay_triangulation_2.qrc) +qt6_wrap_ui(D_UI_FILES Delaunay_triangulation_2.ui) +qt6_add_resources(D_RES_FILE Delaunay_triangulation_2.qrc) # The executable itself. add_executable( Delaunay_triangulation_2 Delaunay_triangulation_2.cpp ${D_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${D_RES_FILE}) + ${CGAL_Qt6_RESOURCE_FILES} ${D_RES_FILE}) target_link_libraries(Delaunay_triangulation_2 - PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Widgets) + PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Delaunay_triangulation_2) @@ -64,13 +64,13 @@ add_to_cached_list(CGAL_EXECUTABLE_TARGETS Delaunay_triangulation_2) #-------------------------------- # The executable itself. -qt5_add_resources(R_RES_FILE Regular_triangulation_2.qrc) -qt5_wrap_ui(R_UI_FILES Regular_triangulation_2.ui) +qt6_add_resources(R_RES_FILE Regular_triangulation_2.qrc) +qt6_wrap_ui(R_UI_FILES Regular_triangulation_2.ui) add_executable( Regular_triangulation_2 Regular_triangulation_2.cpp ${R_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${R_RES_FILE}) -target_link_libraries(Regular_triangulation_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Widgets) + ${CGAL_Qt6_RESOURCE_FILES} ${R_RES_FILE}) +target_link_libraries(Regular_triangulation_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Widgets) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Regular_triangulation_2) diff --git a/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h b/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h index 009b142b963b..31458a45eca2 100644 --- a/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h +++ b/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h @@ -32,12 +32,11 @@ #include #include #include -#include +#include #include #include #include -#include -#include +#include #include #include #include @@ -205,16 +204,16 @@ void DemosMainWindow::setUseOpenGL(bool checked) { if(checked) { - QGLWidget* new_viewport = new QGLWidget; + // AF QOpenGLWidget* new_viewport = new QOpenGLWidget; // Setup the format to allow antialiasing with OpenGL: // one need to activate the SampleBuffers, if the graphic driver allows // this. - QGLFormat glformat = new_viewport->format(); - glformat.setOption(QGL::SampleBuffers); - new_viewport->setFormat(glformat); + // AF QGLFormat glformat = new_viewport->format(); + // AF glformat.setOption(QGL::SampleBuffers); + // AF new_viewport->setFormat(glformat); - view->setViewport(new_viewport); + // AF view->setViewport(new_viewport); } else { view->setViewport(new QWidget); diff --git a/GraphicsView/include/CGAL/Qt/qglviewer.h b/GraphicsView/include/CGAL/Qt/qglviewer.h index 16fd9b123eb5..89885041c58a 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer.h @@ -30,7 +30,6 @@ #include #include #include -#include #include #include @@ -72,8 +71,7 @@ class CGAL_QT_EXPORT QGLViewer : public QOpenGLWidget, public QOpenGLFunctions { public: //todo check if this is used. If not remove it - explicit QGLViewer(QGLContext* context, QWidget *parent = nullptr, - ::Qt::WindowFlags flags = ::Qt::WindowType(0)); + explicit QGLViewer(QOpenGLContext* context, QWidget *parent = nullptr, ::Qt::WindowFlags flags = ::Qt::WindowType(0)); explicit QGLViewer(QWidget *parent = nullptr, diff --git a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h index 0950301c127e..d54e88f8aba7 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/Installation/CMakeLists.txt b/Installation/CMakeLists.txt index 0a521d9dd2c2..e4372214daeb 100644 --- a/Installation/CMakeLists.txt +++ b/Installation/CMakeLists.txt @@ -500,7 +500,7 @@ macro(set_special_prefix library prefix) set(CGAL_EXT_LIB_${library}_PREFIX ${prefix}) endmacro() -set_special_prefix(Qt5 QT) +set_special_prefix(Qt6 QT) set_special_prefix(Eigen3 EIGEN3) set_special_prefix(Coin3D COIN3D) @@ -647,10 +647,10 @@ cache_get(CGAL_3RD_PARTY_INCLUDE_DIRS ) cache_get(CGAL_3RD_PARTY_LIBRARIES ) cache_get(CGAL_3RD_PARTY_LIBRARIES_DIRS) -install(DIRECTORY "${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/" DESTINATION "${CGAL_INSTALL_INC_DIR}/CGAL/Qt" COMPONENT CGAL_Qt5) +install(DIRECTORY "${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/" DESTINATION "${CGAL_INSTALL_INC_DIR}/CGAL/Qt" COMPONENT CGAL_Qt6) if(CGAL_BRANCH_BUILD) - install(DIRECTORY "${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/resources/" DESTINATION "${CGAL_INSTALL_CMAKE_DIR}/demo/resources" COMPONENT CGAL_Qt5) - install(DIRECTORY "${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/" DESTINATION "${CGAL_INSTALL_CMAKE_DIR}/demo/icons" COMPONENT CGAL_Qt5) + install(DIRECTORY "${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/resources/" DESTINATION "${CGAL_INSTALL_CMAKE_DIR}/demo/resources" COMPONENT CGAL_Qt6) + install(DIRECTORY "${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/" DESTINATION "${CGAL_INSTALL_CMAKE_DIR}/demo/icons" COMPONENT CGAL_Qt6) endif() # @@ -660,7 +660,7 @@ set(CGAL_USE_FILE ${CGAL_MODULES_DIR}/UseCGAL.cmake) get_property(CGAL_FOUND GLOBAL PROPERTY CGAL_FOUND) get_property(CGAL_Core_FOUND GLOBAL PROPERTY CGAL_Core_FOUND) get_property(CGAL_ImageIO_FOUND GLOBAL PROPERTY CGAL_ImageIO_FOUND) -get_property(CGAL_Qt5_FOUND GLOBAL PROPERTY CGAL_Qt5_FOUND) +get_property(CGAL_Qt6_FOUND GLOBAL PROPERTY CGAL_Qt6_FOUND) # # Repeat some problems @@ -928,7 +928,7 @@ if(CGAL_BRANCH_BUILD) find_package(GMP REQUIRED) find_package(Doxygen REQUIRED) find_package(Eigen3 REQUIRED) - find_package(Qt5 COMPONENTS Core Widgets OpenGL Gui REQUIRED) + find_package(Qt6 COMPONENTS Core Widgets OpenGL Gui REQUIRED) find_package(VTK COMPONENTS vtkImagingGeneral vtkIOImage NO_MODULE) find_package(IPE) find_package(RS3) @@ -939,10 +939,10 @@ if(CGAL_BRANCH_BUILD) set(compile_options "\ ${CMAKE_CXX_FLAGS} -DCGAL_EIGEN3_ENABLED -DCGAL_PROFILE \ -${Qt5Widgets_DEFINITIONS} ${Qt5OpenGL_DEFINITIONS} ${Qt5Gui_DEFINITIONS} \ -${Qt5OpenGL_EXECUTABLE_COMPILE_FLAGS} -fPIC \ -${Qt5Gui_EXECUTABLE_COMPILE_FLAGS} \ -${CGAL_3RD_PARTY_DEFINITIONS} ${CGAL_Qt5_3RD_PARTY_DEFINITIONS} \ +${Qt6Widgets_DEFINITIONS} ${Qt6OpenGL_DEFINITIONS} ${Qt6Gui_DEFINITIONS} \ +${Qt6OpenGL_EXECUTABLE_COMPILE_FLAGS} -fPIC \ +${Qt6Gui_EXECUTABLE_COMPILE_FLAGS} \ +${CGAL_3RD_PARTY_DEFINITIONS} ${CGAL_Qt6_3RD_PARTY_DEFINITIONS} \ ${CGAL_DEFINITIONS}") message("COMPILATION OPTIONS ARE : ${compile_options}") @@ -1032,11 +1032,11 @@ You must disable CGAL_ENABLE_CHECK_HEADERS.") ${RS_INCLUDE_DIR} ${EIGEN3_INCLUDE_DIR} ${GMP_INCLUDE_DIR} - ${Qt5OpenGL_INCLUDE_DIRS} - ${Qt5Widgets_INCLUDE_DIRS} - ${Qt5Gui_DEFINITIONS} + ${Qt6OpenGL_INCLUDE_DIRS} + ${Qt6Widgets_INCLUDE_DIRS} + ${Qt6Gui_DEFINITIONS} ${CGAL_3RD_PARTY_INCLUDE_DIRS} - ${CGAL_Qt5_3RD_PARTY_INCLUDE_DIRS}) + ${CGAL_Qt6_3RD_PARTY_INCLUDE_DIRS}) list(APPEND include_options "-I${incdir}") endforeach() include_directories(SYSTEM ${CGAL_3RD_PARTY_INCLUDE_DIRS}) @@ -1234,7 +1234,7 @@ endif() #print some info about versions if(RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE) - find_package(Qt5 QUIET COMPONENTS Core) + find_package(Qt6 QUIET COMPONENTS Core) find_package(Boost) if(NOT CGAL_DISABLE_GMP) find_package(GMP) @@ -1248,7 +1248,7 @@ if(RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE) STATUS "USING BOOST_VERSION = '${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}'" ) - if(Qt5_FOUND) - message(STATUS "USING Qt5_VERSION = '${Qt5Core_VERSION_STRING}'") - endif()#Qt5_FOUND + if(Qt6_FOUND) + message(STATUS "USING Qt6_VERSION = '${Qt6Core_VERSION_STRING}'") + endif()#Qt6_FOUND endif()#RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE diff --git a/Installation/cmake/modules/CGALConfig_binary.cmake.in b/Installation/cmake/modules/CGALConfig_binary.cmake.in index b15db42aa7e8..7987a2bbd1f3 100644 --- a/Installation/cmake/modules/CGALConfig_binary.cmake.in +++ b/Installation/cmake/modules/CGALConfig_binary.cmake.in @@ -36,7 +36,7 @@ else() CGAL_alias_library(CGAL) CGAL_alias_library(CGAL_Core) CGAL_alias_library(CGAL_ImageIO) - CGAL_alias_library(CGAL_Qt5) + CGAL_alias_library(CGAL_Qt6) endif() macro(CGAL_set_LIB_LIBRARY_var lib) @@ -50,7 +50,7 @@ endmacro() CGAL_set_LIB_LIBRARY_var(CGAL) CGAL_set_LIB_LIBRARY_var(CGAL_Core) CGAL_set_LIB_LIBRARY_var(CGAL_ImageIO) -CGAL_set_LIB_LIBRARY_var(CGAL_Qt5) +CGAL_set_LIB_LIBRARY_var(CGAL_Qt6) set(CGAL_CONFIGURED_LIBRARIES "@CGAL_ACTUAL_CONFIGURED_LIBRARIES@") @@ -120,15 +120,15 @@ macro(check_cgal_component COMPONENT) else( "${CGAL_LIB}" STREQUAL "CGAL" ) if ( WITH_${CGAL_LIB} ) if(TARGET CGAL::${CGAL_LIB}) - if ("${CGAL_LIB}" STREQUAL "CGAL_Qt5") - - include("${CGAL_MODULES_DIR}/CGAL_SetupCGAL_Qt5Dependencies.cmake") + if ("${CGAL_LIB}" STREQUAL "CGAL_Qt6") - if(CGAL_Qt5_MISSING_DEPS) - set( CGAL_Qt5_FOUND FALSE ) - message(STATUS "libCGAL_Qt5 is missing the dependencies: ${CGAL_Qt5_MISSING_DEPS} cannot be configured.") + include("${CGAL_MODULES_DIR}/CGAL_SetupCGAL_Qt6Dependencies.cmake") + + if(CGAL_Qt6_MISSING_DEPS) + set( CGAL_Qt6_FOUND FALSE ) + message(STATUS "libCGAL_Qt6 is missing the dependencies: ${CGAL_Qt6_MISSING_DEPS} cannot be configured.") else() - set( CGAL_Qt5_FOUND TRUE ) + set( CGAL_Qt6_FOUND TRUE ) endif() elseif("${CGAL_LIB}" STREQUAL "CGAL_Core") include("${CGAL_MODULES_DIR}/CGAL_SetupCGAL_CoreDependencies.cmake") @@ -138,10 +138,10 @@ macro(check_cgal_component COMPONENT) else() set( CGAL_Core_FOUND TRUE ) endif() - else("${CGAL_LIB}" STREQUAL "CGAL_Qt5") + else("${CGAL_LIB}" STREQUAL "CGAL_Qt6") # Libraries that have no dependencies set( ${CGAL_LIB}_FOUND TRUE ) - endif("${CGAL_LIB}" STREQUAL "CGAL_Qt5") + endif("${CGAL_LIB}" STREQUAL "CGAL_Qt6") else(TARGET CGAL::${CGAL_LIB}) set( ${CGAL_LIB}_FOUND FALSE ) set( CHECK_${CGAL_LIB}_ERROR_TAIL " CGAL was configured with WITH_${CGAL_LIB}=ON, but one of the dependencies of ${CGAL_LIB} was not configured properly." ) @@ -214,7 +214,7 @@ if (NOT TARGET CGAL::CGAL_Basic_viewer) add_library(CGAL::CGAL_Basic_viewer INTERFACE IMPORTED GLOBAL) set_target_properties(CGAL::CGAL_Basic_viewer PROPERTIES INTERFACE_COMPILE_DEFINITIONS "CGAL_USE_BASIC_VIEWER;QT_NO_KEYWORDS" - INTERFACE_LINK_LIBRARIES CGAL::CGAL_Qt5) + INTERFACE_LINK_LIBRARIES CGAL::CGAL_Qt6) endif() include("${CGAL_MODULES_DIR}/CGAL_enable_end_of_configuration_hook.cmake") diff --git a/Installation/cmake/modules/CGALConfig_install.cmake.in b/Installation/cmake/modules/CGALConfig_install.cmake.in index 00db762aa76d..9ee7c0ba8803 100644 --- a/Installation/cmake/modules/CGALConfig_install.cmake.in +++ b/Installation/cmake/modules/CGALConfig_install.cmake.in @@ -104,15 +104,15 @@ macro(check_cgal_component COMPONENT) if ( WITH_${CGAL_LIB} ) if(TARGET CGAL::${CGAL_LIB}) - if ("${CGAL_LIB}" STREQUAL "CGAL_Qt5") - - include("${CGAL_MODULES_DIR}/CGAL_SetupCGAL_Qt5Dependencies.cmake") + if ("${CGAL_LIB}" STREQUAL "CGAL_Qt6") - if(CGAL_Qt5_MISSING_DEPS) - set( CGAL_Qt5_FOUND FALSE ) - message(STATUS "libCGAL_Qt5 is missing the dependencies: ${CGAL_Qt5_MISSING_DEPS} cannot be configured.") + include("${CGAL_MODULES_DIR}/CGAL_SetupCGAL_Qt6Dependencies.cmake") + + if(CGAL_Qt6_MISSING_DEPS) + set( CGAL_Qt6_FOUND FALSE ) + message(STATUS "libCGAL_Qt6 is missing the dependencies: ${CGAL_Qt6_MISSING_DEPS} cannot be configured.") else() - set( CGAL_Qt5_FOUND TRUE ) + set( CGAL_Qt6_FOUND TRUE ) endif() elseif("${CGAL_LIB}" STREQUAL "CGAL_Core") include("${CGAL_MODULES_DIR}/CGAL_SetupCGAL_CoreDependencies.cmake") @@ -122,10 +122,10 @@ macro(check_cgal_component COMPONENT) else() set( CGAL_Core_FOUND TRUE ) endif() - else("${CGAL_LIB}" STREQUAL "CGAL_Qt5") + else("${CGAL_LIB}" STREQUAL "CGAL_Qt6") # Libraries that have no dependencies set( ${CGAL_LIB}_FOUND TRUE ) - endif("${CGAL_LIB}" STREQUAL "CGAL_Qt5") + endif("${CGAL_LIB}" STREQUAL "CGAL_Qt6") else(TARGET CGAL::${CGAL_LIB}) set( ${CGAL_LIB}_FOUND FALSE ) set( CHECK_${CGAL_LIB}_ERROR_TAIL " CGAL was configured with WITH_${CGAL_LIB}=ON, but one of the dependencies of ${CGAL_LIB} was not configured properly." ) @@ -198,7 +198,7 @@ if (NOT TARGET CGAL::CGAL_Basic_viewer) add_library(CGAL::CGAL_Basic_viewer INTERFACE IMPORTED GLOBAL) set_target_properties(CGAL::CGAL_Basic_viewer PROPERTIES INTERFACE_COMPILE_DEFINITIONS "CGAL_USE_BASIC_VIEWER;QT_NO_KEYWORDS" - INTERFACE_LINK_LIBRARIES CGAL::CGAL_Qt5) + INTERFACE_LINK_LIBRARIES CGAL::CGAL_Qt6) endif() include("${CGAL_MODULES_DIR}/CGAL_enable_end_of_configuration_hook.cmake") diff --git a/Installation/cmake/modules/CGAL_Macros.cmake b/Installation/cmake/modules/CGAL_Macros.cmake index 8ca618abcd46..2cc35fdc572e 100644 --- a/Installation/cmake/modules/CGAL_Macros.cmake +++ b/Installation/cmake/modules/CGAL_Macros.cmake @@ -229,7 +229,7 @@ if( NOT CGAL_MACROS_FILE_INCLUDED ) message (STATUS "Configured ${lib} from UseLIB-file: ${usefile}") # UseLIB-file has to set ${vlib}_SETUP to TRUE - # TODO EBEB what about Qt5, zlib? + # TODO EBEB what about Qt6, zlib? else() @@ -288,11 +288,11 @@ if( NOT CGAL_MACROS_FILE_INCLUDED ) add_to_list( CGAL_3RD_PARTY_DEFINITIONS ${CGAL_${component}_3RD_PARTY_DEFINITIONS} ) add_to_list( CGAL_3RD_PARTY_LIBRARIES_DIRS ${CGAL_${component}_3RD_PARTY_LIBRARIES_DIRS} ) - # To deal with imported targets of Qt5 and Boost, when CGAL + # To deal with imported targets of Qt6 and Boost, when CGAL # targets are themselves imported by another project. - if (${component} STREQUAL "Qt5") - find_package(Qt5 COMPONENTS OpenGL Gui Core Script ScriptTools QUIET) + if (${component} STREQUAL "Qt6") + find_package(Qt6 COMPONENTS Widgets OpenGLWidgets Gui Core Script ScriptTools QUIET) endif() else(WITH_CGAL_${component}) diff --git a/Installation/cmake/modules/CGAL_Qt6_moc_and_resource_files.cmake b/Installation/cmake/modules/CGAL_Qt6_moc_and_resource_files.cmake index 21b32bc2e9e6..c3c6cbb71431 100644 --- a/Installation/cmake/modules/CGAL_Qt6_moc_and_resource_files.cmake +++ b/Installation/cmake/modules/CGAL_Qt6_moc_and_resource_files.cmake @@ -4,7 +4,7 @@ endif() set(CGAL_Qt6_moc_and_resource_files_included TRUE) # qrc files (resources files, that contain icons, at least) if(EXISTS ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/resources/CGAL.qrc) - qt5_add_resources (_CGAL_Qt6_RESOURCE_FILES_private + qt6_add_resources (_CGAL_Qt6_RESOURCE_FILES_private ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/resources/CGAL.qrc ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/Input.qrc ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/File.qrc @@ -15,11 +15,11 @@ else() ${CGAL_MODULES_DIR}/demo/resources ${CGAL_MODULES_DIR}/demo/icons DESTINATION ${CMAKE_BINARY_DIR}) - qt5_add_resources (_CGAL_Qt6_RESOURCE_FILES_private + qt6_add_resources (_CGAL_Qt6_RESOURCE_FILES_private ${CMAKE_BINARY_DIR}/resources/CGAL.qrc ${CMAKE_BINARY_DIR}/icons/Input.qrc ${CMAKE_BINARY_DIR}/icons/File.qrc ${CMAKE_BINARY_DIR}/icons/Triangulation_2.qrc) endif() -qt5_wrap_ui(_CGAL_Qt6_UI_FILES ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/ImageInterface.ui) +qt_wrap_ui(_CGAL_Qt6_UI_FILES ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/ImageInterface.ui) diff --git a/Installation/cmake/modules/CGAL_SetupCGAL_Qt6Dependencies.cmake b/Installation/cmake/modules/CGAL_SetupCGAL_Qt6Dependencies.cmake index 161e9673345c..690d018d33f8 100644 --- a/Installation/cmake/modules/CGAL_SetupCGAL_Qt6Dependencies.cmake +++ b/Installation/cmake/modules/CGAL_SetupCGAL_Qt6Dependencies.cmake @@ -9,7 +9,7 @@ # # .. code-block:: cmake # -# find_package(Qt6 QUIET COMPONENTS OpenGL Svg) +# find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) # # and defines the variable :variable:`CGAL_Qt6_FOUND` and the function # :command:`CGAL_setup_CGAL_Qt6_dependencies`. @@ -24,19 +24,24 @@ set(CGAL_SetupCGAL_Qt6Dependencies_included TRUE) # Used Modules # ^^^^^^^^^^^^ # - :module:`Qt6Config` -find_package(Qt6 QUIET COMPONENTS OpenGL Svg) + +find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets Svg) set(CGAL_Qt6_MISSING_DEPS "") -if(NOT Qt6OpenGL_FOUND) - set(CGAL_Qt6_MISSING_DEPS "Qt6OpenGL") +if(NOT Qt6OpenGLWidgets_FOUND) + message( STATUS "NOTICE: NOT Qt6OpenGLWidgets_FOUND") + set(CGAL_Qt6_MISSING_DEPS "Qt6OpenGLWidgets") endif() if(NOT Qt6Svg_FOUND) + message(STATUS "NOTICE: NOT Qt6Svg_FOUND") set(CGAL_Qt6_MISSING_DEPS "${CGAL_Qt6_MISSING_DEPS} Qt6Svg") endif() if(NOT Qt6_FOUND) + message(STATUS "NOTICE: NOT Qt6_FOUND") set(CGAL_Qt6_MISSING_DEPS "${CGAL_Qt6_MISSING_DEPS} Qt6") endif() if(NOT EXISTS ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsItem.h) + message(STATUS "NOTICE: NOT EXISTS GraphicsItem") set(CGAL_Qt6_MISSING_DEPS "${CGAL_Qt6_MISSING_DEPS} headers") endif() @@ -75,7 +80,7 @@ if(NOT CGAL_Qt6_MISSING_DEPS) POSITION_INDEPENDENT_CODE TRUE EXCLUDE_FROM_ALL TRUE AUTOMOC TRUE) - target_link_libraries(CGAL_Qt6_moc_and_resources CGAL::CGAL Qt6::Widgets Qt6::OpenGL Qt6::Svg ) + target_link_libraries(CGAL_Qt6_moc_and_resources CGAL::CGAL Qt6::Widgets Qt6::OpenGLWidgets Qt6::Svg ) add_library(CGAL::CGAL_Qt6_moc_and_resources ALIAS CGAL_Qt6_moc_and_resources) add_library(CGAL::Qt6_moc_and_resources ALIAS CGAL_Qt6_moc_and_resources) @@ -112,7 +117,7 @@ function(CGAL_setup_CGAL_Qt6_dependencies target) endif() target_link_libraries( ${target} INTERFACE CGAL::CGAL) target_link_libraries( ${target} INTERFACE CGAL::Qt6_moc_and_resources) - target_link_libraries( ${target} INTERFACE Qt6::OpenGL Qt6::Svg ) + target_link_libraries( ${target} INTERFACE Qt6::OpenGLWidgets Qt6::Svg ) # Remove -Wdeprecated-copy, for g++ >= 9.0, because Qt6, as of # version 5.12, has a lot of [-Wdeprecated-copy] warnings. diff --git a/Installation/cmake/modules/CGAL_add_test.cmake b/Installation/cmake/modules/CGAL_add_test.cmake index a5c8b2bc83a7..eb0c748109cc 100644 --- a/Installation/cmake/modules/CGAL_add_test.cmake +++ b/Installation/cmake/modules/CGAL_add_test.cmake @@ -117,23 +117,23 @@ function(cgal_add_compilation_test exe_name) set_property(TEST "check_build_system" PROPERTY FIXTURES_SETUP "check_build_system_SetupFixture") endif() - if(TARGET CGAL_Qt5_moc_and_resources) # if CGAL_Qt5 was searched, and is header-only + if(TARGET CGAL_Qt6_moc_and_resources) # if CGAL_Qt6 was searched, and is header-only get_property(linked_libraries TARGET "${exe_name}" PROPERTY LINK_LIBRARIES) # message(STATUS "${exe_name} depends on ${linked_libraries}") - string(FIND "${linked_libraries}" "CGAL::CGAL_Qt5" link_with_CGAL_Qt5) - if(link_with_CGAL_Qt5 STRGREATER "-1" AND - NOT TARGET compilation_of__CGAL_Qt5_moc_and_resources) + string(FIND "${linked_libraries}" "CGAL::CGAL_Qt6" link_with_CGAL_Qt6) + if(link_with_CGAL_Qt6 STRGREATER "-1" AND + NOT TARGET compilation_of__CGAL_Qt6_moc_and_resources) # This custom target is useless. It is used only as a flag to # detect that the test has already been created. - add_custom_target(compilation_of__CGAL_Qt5_moc_and_resources) - add_dependencies( compilation_of__CGAL_Qt5_moc_and_resources CGAL_Qt5_moc_and_resources ) - add_test(NAME "compilation_of__CGAL_Qt5_moc_and_resources" - COMMAND "${CMAKE_COMMAND}" --build "${CMAKE_BINARY_DIR}" --target "CGAL_Qt5_moc_and_resources" --config "$") - set_property(TEST "compilation_of__CGAL_Qt5_moc_and_resources" + add_custom_target(compilation_of__CGAL_Qt6_moc_and_resources) + add_dependencies( compilation_of__CGAL_Qt6_moc_and_resources CGAL_Qt6_moc_and_resources ) + add_test(NAME "compilation_of__CGAL_Qt6_moc_and_resources" + COMMAND "${CMAKE_COMMAND}" --build "${CMAKE_BINARY_DIR}" --target "CGAL_Qt6_moc_and_resources" --config "$") + set_property(TEST "compilation_of__CGAL_Qt6_moc_and_resources" APPEND PROPERTY LABELS "CGAL_build_system") - set_property(TEST "compilation_of__CGAL_Qt5_moc_and_resources" - PROPERTY FIXTURES_SETUP "CGAL_Qt5_moc_and_resources_Fixture") - set_property(TEST "compilation_of__CGAL_Qt5_moc_and_resources" + set_property(TEST "compilation_of__CGAL_Qt6_moc_and_resources" + PROPERTY FIXTURES_SETUP "CGAL_Qt6_moc_and_resources_Fixture") + set_property(TEST "compilation_of__CGAL_Qt6_moc_and_resources" APPEND PROPERTY DEPENDS "check_build_system") endif() endif() @@ -313,7 +313,7 @@ function(cgal_add_test exe_name) -P "${CGAL_MODULES_DIR}/run_test_with_cin.cmake") set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${cin_file}) - # message(STATUS "add test: ${exe_name} < ${cin_file}") + # message(STATUS "add test: ${exe_name} < ${cin_file}") endif() else() if(NOT ARGS AND NOT cgal_add_test_TEST_NAME) @@ -328,12 +328,12 @@ function(cgal_add_test exe_name) file(STRINGS "${cmd_file}" CMD_LINES) string(CONFIGURE "${CMD_LINES}" CMD_LINES) set(ARGS) - # message(STATUS "DEBUG test ${exe_name}") + # message(STATUS "DEBUG test ${exe_name}") foreach(CMD_LINE ${CMD_LINES}) - # message(STATUS " command line: ${CMD_LINE}") + # message(STATUS " command line: ${CMD_LINE}") string(REGEX REPLACE "\#.*" "" CMD_LINE "${CMD_LINE}") separate_arguments(CMD_LINE_ARGS UNIX_COMMAND ${CMD_LINE}) - # message(STATUS " args: ${CMD_LINE_ARGS}") + # message(STATUS " args: ${CMD_LINE_ARGS}") list(APPEND ARGS ${CMD_LINE_ARGS}) endforeach() expand_list_with_globbing(ARGS) @@ -341,7 +341,7 @@ function(cgal_add_test exe_name) APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${cmd_file}) endif() endif() - # message(STATUS "add test: ${exe_name} ${ARGS}") + # message(STATUS "add test: ${exe_name} ${ARGS}") if(ANDROID) add_test(NAME ${test_name} COMMAND ${TIME_COMMAND} ${adb_executable} shell cd ${CGAL_REMOTE_TEST_DIR_PREFIX}${PROJECT_NAME} && LD_LIBRARY_PATH=${CGAL_REMOTE_TEST_DIR_PREFIX}${PROJECT_NAME} ${CGAL_REMOTE_TEST_DIR_PREFIX}${PROJECT_NAME}/${exe_name} ${ARGS}) elseif(CGAL_RUN_TESTS_THROUGH_SSH) diff --git a/Installation/cmake/modules/CGAL_setup_target_dependencies.cmake b/Installation/cmake/modules/CGAL_setup_target_dependencies.cmake index bed40154c809..820664d04981 100644 --- a/Installation/cmake/modules/CGAL_setup_target_dependencies.cmake +++ b/Installation/cmake/modules/CGAL_setup_target_dependencies.cmake @@ -5,7 +5,7 @@ function(CGAL_setup_target_dependencies target) CGAL_setup_CGAL_Core_dependencies(${target}) elseif(${target} STREQUAL CGAL_ImageIO) CGAL_setup_CGAL_ImageIO_dependencies(${target}) - elseif(${target} STREQUAL CGAL_Qt5) - CGAL_setup_CGAL_Qt5_dependencies(${target}) + elseif(${target} STREQUAL CGAL_Qt6) + CGAL_setup_CGAL_Qt6_dependencies(${target}) endif() endfunction() diff --git a/Installation/lib/cmake/CGAL/CGALConfig.cmake b/Installation/lib/cmake/CGAL/CGALConfig.cmake index b9030ecc4dc7..f7afccf00574 100644 --- a/Installation/lib/cmake/CGAL/CGALConfig.cmake +++ b/Installation/lib/cmake/CGAL/CGALConfig.cmake @@ -128,7 +128,7 @@ if( CGAL_DEV_MODE OR RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE ) endif() foreach(comp ${CGAL_FIND_COMPONENTS}) - if(NOT comp MATCHES "Core|ImageIO|Qt5") + if(NOT comp MATCHES "Core|ImageIO|Qt6") message(FATAL_ERROR "The requested CGAL component ${comp} does not exist!") endif() if(comp MATCHES "Core" AND CGAL_DISABLE_GMP) @@ -193,6 +193,5 @@ if (NOT TARGET CGAL::CGAL_Basic_viewer) add_library(CGAL::CGAL_Basic_viewer INTERFACE IMPORTED GLOBAL) set_target_properties(CGAL::CGAL_Basic_viewer PROPERTIES INTERFACE_COMPILE_DEFINITIONS "CGAL_USE_BASIC_VIEWER;QT_NO_KEYWORDS" - INTERFACE_LINK_LIBRARIES CGAL::CGAL_Qt5) + INTERFACE_LINK_LIBRARIES CGAL::CGAL_Qt6) endif() - From 47683f2dea3c40bbd380b78426a47dee5d9154b0 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Apr 2023 14:27:45 +0100 Subject: [PATCH 03/85] The Truiangulation_2/examples which use draw() compile and visualize but have an assertion in a QMap --- .../include/CGAL/Qt/Basic_viewer_qt.h | 4 ++-- .../include/CGAL/Qt/CreateOpenGLContext.h | 21 +++++++++++-------- GraphicsView/include/CGAL/Qt/qglviewer_impl.h | 6 +++++- .../examples/Triangulation_2/CMakeLists.txt | 6 +++--- 4 files changed, 22 insertions(+), 15 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/Basic_viewer_qt.h b/GraphicsView/include/CGAL/Qt/Basic_viewer_qt.h index 3c7b05082b98..054740afb350 100644 --- a/GraphicsView/include/CGAL/Qt/Basic_viewer_qt.h +++ b/GraphicsView/include/CGAL/Qt/Basic_viewer_qt.h @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #ifdef __GNUC__ @@ -1779,7 +1779,7 @@ class Basic_viewer_qt : public CGAL::QGLViewer static const unsigned int NB_VBO_BUFFERS=(END_POS-BEGIN_POS)+ (END_COLOR-BEGIN_COLOR)+2; // +2 for 2 vectors of normals - QGLBuffer buffers[NB_VBO_BUFFERS]; + QOpenGLBuffer buffers[NB_VBO_BUFFERS]; // The following enum gives the indices of the different vao. enum diff --git a/GraphicsView/include/CGAL/Qt/CreateOpenGLContext.h b/GraphicsView/include/CGAL/Qt/CreateOpenGLContext.h index 20bed5105a18..e85911f73e87 100644 --- a/GraphicsView/include/CGAL/Qt/CreateOpenGLContext.h +++ b/GraphicsView/include/CGAL/Qt/CreateOpenGLContext.h @@ -13,19 +13,22 @@ #define CGAL_QT_CREATE_OPENGL_CONTEXT_H #include -#include + namespace CGAL{ namespace Qt{ -inline QGLContext* createOpenGLContext() +inline QOpenGLContext* createOpenGLContext() { QOpenGLContext *context = new QOpenGLContext(); - QSurfaceFormat format; - format.setVersion(2,1); - format.setProfile(QSurfaceFormat::CompatibilityProfile); - context->setFormat(format); - QGLContext *result = QGLContext::fromOpenGLContext(context); - result->create(); - return result; + context->create(); + return context; + + //QSurfaceFormat format; + //format.setVersion(2,1); + //format.setProfile(QSurfaceFormat::CompatibilityProfile); + //context->setFormat(format); + //QGLContext *result = QGLContext::fromOpenGLContext(context); + // result->create(); + //return result; } } // namespace Qt } // namespace CGAL diff --git a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h index d54e88f8aba7..c8dec4a0725d 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h @@ -35,6 +35,7 @@ #include #include #include +#include #include #include #include @@ -2455,7 +2456,10 @@ void CGAL::QGLViewer::setMouseBinding(::Qt::Key key, ::Qt::KeyboardModifiers mod mouseBinding_.insert(mbp, map); ClickBindingPrivate cbp(modifiers, button, false, ::Qt::NoButton, key); - clickBinding_.remove(cbp); + + // AF: currently results in a runtime error + // clickBinding_.remove(cbp); + } diff --git a/Triangulation_2/examples/Triangulation_2/CMakeLists.txt b/Triangulation_2/examples/Triangulation_2/CMakeLists.txt index e4f5e7392ee8..47374a859985 100644 --- a/Triangulation_2/examples/Triangulation_2/CMakeLists.txt +++ b/Triangulation_2/examples/Triangulation_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Triangulation_2_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( @@ -15,10 +15,10 @@ foreach(cppfile ${cppfiles}) create_single_source_cgal_program("${cppfile}") endforeach() -if(CGAL_Qt5_FOUND) +if(CGAL_Qt6_FOUND) target_link_libraries(polygon_triangulation PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(draw_triangulation_2 PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(star_conflict_zone PUBLIC CGAL::CGAL_Basic_viewer) else() - message(STATUS "NOTICE: Several examples require Qt5 and will not be compiled.") + message(STATUS "NOTICE: Several examples require Qt6 and will not be compiled.") endif() From b1040de076ee390b3062d9734fdae4fb597ee445 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Apr 2023 14:46:31 +0100 Subject: [PATCH 04/85] Surface_mesh example works as well --- Surface_mesh/examples/Surface_mesh/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Surface_mesh/examples/Surface_mesh/CMakeLists.txt b/Surface_mesh/examples/Surface_mesh/CMakeLists.txt index b39506d8b451..87cdd52e06c4 100644 --- a/Surface_mesh/examples/Surface_mesh/CMakeLists.txt +++ b/Surface_mesh/examples/Surface_mesh/CMakeLists.txt @@ -9,8 +9,8 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Surface_mesh_Examples) -#CGAL_Qt5 is needed for the drawing. -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +#CGAL_Qt6 is needed for the drawing. +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) create_single_source_cgal_program("sm_points.cpp") create_single_source_cgal_program("sm_derivation.cpp") @@ -28,7 +28,7 @@ create_single_source_cgal_program("check_orientation.cpp") #create the executable of the application create_single_source_cgal_program("draw_surface_mesh.cpp") -if(CGAL_Qt5_FOUND) +if(CGAL_Qt6_FOUND) #link it with the required CGAL libraries target_link_libraries(draw_surface_mesh PUBLIC CGAL::CGAL_Basic_viewer) From 42a9757f2f1e9a768eabe4287a8071d797fe0d1d Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Apr 2023 15:05:12 +0100 Subject: [PATCH 05/85] Fix to have a weak order --- GraphicsView/include/CGAL/Qt/qglviewer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GraphicsView/include/CGAL/Qt/qglviewer.h b/GraphicsView/include/CGAL/Qt/qglviewer.h index 89885041c58a..2cf5b7faf342 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer.h @@ -1156,7 +1156,7 @@ private Q_SLOTS: return modifiers < cbp.modifiers; if (button != cbp.button) return button < cbp.button; - return doubleClick != cbp.doubleClick; + return doubleClick < cbp.doubleClick; } }; #endif From 370e81ef08a91199779dad96cbbb16a49f34a8bf Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Apr 2023 15:05:33 +0100 Subject: [PATCH 06/85] AABB Tree demo works --- AABB_tree/demo/AABB_tree/CMakeLists.txt | 40 +++++++++++------------ AABB_tree/demo/AABB_tree/MainWindow.h | 2 +- AABB_tree/demo/AABB_tree/Scene.h | 4 +-- AABB_tree/demo/AABB_tree/Viewer.cpp | 2 +- GraphicsView/include/CGAL/Qt/debug_impl.h | 2 +- 5 files changed, 25 insertions(+), 25 deletions(-) diff --git a/AABB_tree/demo/AABB_tree/CMakeLists.txt b/AABB_tree/demo/AABB_tree/CMakeLists.txt index c777eba1798e..76e9faa655e4 100644 --- a/AABB_tree/demo/AABB_tree/CMakeLists.txt +++ b/AABB_tree/demo/AABB_tree/CMakeLists.txt @@ -20,28 +20,28 @@ endif() # Include this package's headers first include_directories(BEFORE ./ ./include) -# Find CGAL and CGAL Qt5 -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +# Find CGAL and CGAL Qt6 +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -# Find Qt5 itself -find_package(Qt5 QUIET COMPONENTS Script OpenGL Gui Svg) +# Find Qt6 itself +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Gui Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) - qt5_wrap_ui(UI_FILES MainWindow.ui) + qt6_wrap_ui(UI_FILES MainWindow.ui) include(AddFileDependencies) - qt5_generate_moc("MainWindow.h" "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp") + qt6_generate_moc("MainWindow.h" "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp") add_file_dependencies(MainWindow_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/MainWindow.h") - qt5_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") + qt6_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") add_file_dependencies(Viewer_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/Viewer.h") - qt5_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/Scene_moc.cpp") + qt6_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/Scene_moc.cpp") add_file_dependencies(Scene_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/Scene.h") - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES AABB_demo.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES AABB_demo.qrc) add_file_dependencies( AABB_demo.cpp "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp" @@ -49,30 +49,30 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) "${CMAKE_CURRENT_BINARY_DIR}/Scene_moc.cpp") add_executable( - AABB_demo AABB_demo.cpp ${UI_FILES} ${CGAL_Qt5_RESOURCE_FILES} - #${CGAL_Qt5_MOC_FILES} + AABB_demo AABB_demo.cpp ${UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} + #${CGAL_Qt6_MOC_FILES} ) # Link with Qt libraries - target_link_libraries(AABB_demo PRIVATE Qt5::OpenGL Qt5::Gui - CGAL::CGAL CGAL::CGAL_Qt5) + target_link_libraries(AABB_demo PRIVATE Qt6::OpenGLWidgets Qt6::Gui + CGAL::CGAL CGAL::CGAL_Qt6) add_to_cached_list(CGAL_EXECUTABLE_TARGETS AABB_demo) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(AABB_demo) -else(CGAL_Qt5_FOUND AND Qt5_FOUND) +else(CGAL_Qt6_FOUND AND Qt6_FOUND) set(AABB_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) - set(AABB_MISSING_DEPS "CGAL_Qt5, ${AABB_MISSING_DEPS}") + if(NOT CGAL_Qt6_FOUND) + set(AABB_MISSING_DEPS "CGAL_Qt6, ${AABB_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(AABB_MISSING_DEPS "Qt5, ${AABB_MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(AABB_MISSING_DEPS "Qt6, ${AABB_MISSING_DEPS}") endif() message("NOTICE: This demo requires ${AABB_MISSING_DEPS}, and will not be compiled.") -endif(CGAL_Qt5_FOUND AND Qt5_FOUND) +endif(CGAL_Qt6_FOUND AND Qt6_FOUND) diff --git a/AABB_tree/demo/AABB_tree/MainWindow.h b/AABB_tree/demo/AABB_tree/MainWindow.h index 2a072f195121..f768694514b8 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.h +++ b/AABB_tree/demo/AABB_tree/MainWindow.h @@ -1,7 +1,7 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H -#include +#include #include class QDragEnterEvent; diff --git a/AABB_tree/demo/AABB_tree/Scene.h b/AABB_tree/demo/AABB_tree/Scene.h index 44d7b8239ce8..cc109a433fdf 100644 --- a/AABB_tree/demo/AABB_tree/Scene.h +++ b/AABB_tree/demo/AABB_tree/Scene.h @@ -1,7 +1,7 @@ #ifndef SCENE_H #define SCENE_H -#include +#include #include #include @@ -77,7 +77,7 @@ class Scene : public QObject }; public: - QGLContext* context; + QOpenGLContext* context; void draw(CGAL::QGLViewer*); void update_bbox(); Bbox bbox() { return m_bbox; } diff --git a/AABB_tree/demo/AABB_tree/Viewer.cpp b/AABB_tree/demo/AABB_tree/Viewer.cpp index 7bc82f7770e6..6f5eac006797 100644 --- a/AABB_tree/demo/AABB_tree/Viewer.cpp +++ b/AABB_tree/demo/AABB_tree/Viewer.cpp @@ -1,7 +1,7 @@ #include "Viewer.h" #include "Scene.h" #include -#include +#include #include Viewer::Viewer(QWidget* parent) diff --git a/GraphicsView/include/CGAL/Qt/debug_impl.h b/GraphicsView/include/CGAL/Qt/debug_impl.h index eaa4d7ed108b..4f3c152697c6 100644 --- a/GraphicsView/include/CGAL/Qt/debug_impl.h +++ b/GraphicsView/include/CGAL/Qt/debug_impl.h @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include namespace CGAL { namespace Qt { From 5601e035ff0bd50bb7856028399071a2ab052da7 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Apr 2023 17:05:21 +0100 Subject: [PATCH 07/85] Change all CMakeLists.txt --- Polyhedron/demo/Polyhedron/CMakeLists.txt | 148 ++++++++++-------- .../Plugins/Alpha_wrap_3/CMakeLists.txt | 2 +- .../Plugins/Camera_position/CMakeLists.txt | 2 +- .../Plugins/Classification/CMakeLists.txt | 2 +- .../Polyhedron/Plugins/Display/CMakeLists.txt | 2 +- .../demo/Polyhedron/Plugins/IO/CMakeLists.txt | 2 +- .../Polyhedron/Plugins/Mesh_2/CMakeLists.txt | 2 +- .../Polyhedron/Plugins/Mesh_3/CMakeLists.txt | 12 +- .../Operations_on_polyhedra/CMakeLists.txt | 6 +- .../Polyhedron/Plugins/PCA/CMakeLists.txt | 6 +- .../Polyhedron/Plugins/PMP/CMakeLists.txt | 26 +-- .../Plugins/Point_set/CMakeLists.txt | 26 +-- .../Plugins/Surface_mesh/CMakeLists.txt | 12 +- .../Tetrahedral_remeshing/CMakeLists.txt | 6 +- .../Plugins/Three_examples/CMakeLists.txt | 16 +- .../implicit_functions/CMakeLists.txt | 22 +-- 16 files changed, 156 insertions(+), 136 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/CMakeLists.txt b/Polyhedron/demo/Polyhedron/CMakeLists.txt index 9eb13d44e097..e78c8acd1d0b 100644 --- a/Polyhedron/demo/Polyhedron/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/CMakeLists.txt @@ -36,25 +36,34 @@ option(POLYHEDRON_QTSCRIPT_DEBUGGER "Activate the use of Qt Script Debugger in Polyhedron_3 demo" OFF) # Find CGAL -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5 ImageIO) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 ImageIO) set_package_properties(CGAL PROPERTIES TYPE REQUIRED) include(${CGAL_USE_FILE}) -# Find Qt5 itself -find_package(Qt5 QUIET - COMPONENTS OpenGL Script Widgets +if(CGAL_Qt6_FOUND) + message( STATUS "we found CGAL_Qt6") +endif() + +# Find Qt6 itself +find_package(Qt6 QUIET + COMPONENTS OpenGLWidgets Widgets OPTIONAL_COMPONENTS ScriptTools WebSockets Network) set_package_properties( - Qt5 PROPERTIES + Qt6 PROPERTIES TYPE REQUIRED PURPOSE "Enables the 3D Features, for GUI and visualization." - DESCRIPTION "To find this package, it should be sufficient to fill the Qt5_DIR variable with: ///lib/cmake/Qt5") + DESCRIPTION "To find this package, it should be sufficient to fill the Qt6_DIR variable with: ///lib/cmake/Qt6") + +if(NOT Qt6_FOUND) + message( STATUS "we did not find it") +endif() -if(Qt5_FOUND) +if(Qt6_FOUND) + message( STATUS "we did find Qt6") add_definitions(-DQT_NO_KEYWORDS) add_definitions(-DSCENE_IMAGE_GL_BUFFERS_AVAILABLE) -endif(Qt5_FOUND) +endif(Qt6_FOUND) find_package(Eigen3 3.2.0 QUIET) #(requires 3.2.0 or greater) set_package_properties( @@ -119,23 +128,34 @@ set_package_properties( DESCRIPTION "A library for parallel programming." PURPOSE "Plugins such as Mesh_3, Bilateral smoothing, and WLOP are faster if TBB is linked.") -if(CGAL_Qt5_FOUND AND Qt5_FOUND) + + +if(NOT CGAL_Qt6_FOUND) + message( STATUS "NOT CGAL_Qt6_FOUND") +endif() + +if(NOT Qt6_FOUND) + message( STATUS "NOT Qt6_FOUND") +endif() + + +if(CGAL_Qt6_FOUND AND Qt6_FOUND) include(${CGAL_USE_FILE}) - qt5_wrap_ui(MainWindowUI_files MainWindow.ui) - qt5_wrap_ui(SubViewerUI_files SubViewer.ui) - qt5_wrap_ui(statisticsUI_FILES Statistics_on_item_dialog.ui) - qt5_wrap_ui(FileLoaderDialogUI_files FileLoaderDialog.ui) - qt5_wrap_ui(Show_point_dialogUI_FILES Show_point_dialog.ui) - qt5_wrap_ui(PreferencesUI_FILES Preferences.ui Details.ui SSH_dialog.ui) - qt5_wrap_ui(Show_point_dialogUI_FILES Show_point_dialog.ui) - qt5_wrap_ui(ViewerUI_FILES LightingDialog.ui) - qt5_generate_moc("File_loader_dialog.h" + qt6_wrap_ui(MainWindowUI_files MainWindow.ui) + qt6_wrap_ui(SubViewerUI_files SubViewer.ui) + qt6_wrap_ui(statisticsUI_FILES Statistics_on_item_dialog.ui) + qt6_wrap_ui(FileLoaderDialogUI_files FileLoaderDialog.ui) + qt6_wrap_ui(Show_point_dialogUI_FILES Show_point_dialog.ui) + qt6_wrap_ui(PreferencesUI_FILES Preferences.ui Details.ui SSH_dialog.ui) + qt6_wrap_ui(Show_point_dialogUI_FILES Show_point_dialog.ui) + qt6_wrap_ui(ViewerUI_FILES LightingDialog.ui) + qt6_generate_moc("File_loader_dialog.h" "${CMAKE_CURRENT_BINARY_DIR}/File_loader_dialog_moc.cpp") include(${CMAKE_CURRENT_SOURCE_DIR}/polyhedron_demo_macros.cmake) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES Polyhedron_3.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES Polyhedron_3.qrc) find_path( CGAL_THREE_HEADERS_PATH NAMES CGAL/Three/Scene_item.h @@ -144,16 +164,16 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) DOC "Path to CGAL/Three/Scene_item.h") if(CGAL_THREE_HEADERS_PATH) - qt5_generate_moc("${CGAL_THREE_HEADERS_PATH}/CGAL/Three/Viewer_interface.h" + qt6_generate_moc("${CGAL_THREE_HEADERS_PATH}/CGAL/Three/Viewer_interface.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_interface_moc.cpp") - qt5_generate_moc("${CGAL_THREE_HEADERS_PATH}/CGAL/Three/Scene_item.h" + qt6_generate_moc("${CGAL_THREE_HEADERS_PATH}/CGAL/Three/Scene_item.h" "${CMAKE_CURRENT_BINARY_DIR}/Scene_item_moc.cpp") - qt5_generate_moc("${CGAL_THREE_HEADERS_PATH}/CGAL/Three/Scene_group_item.h" + qt6_generate_moc("${CGAL_THREE_HEADERS_PATH}/CGAL/Three/Scene_group_item.h" "${CMAKE_CURRENT_BINARY_DIR}/Scene_group_item_moc.cpp") - qt5_generate_moc( + qt6_generate_moc( "${CGAL_THREE_HEADERS_PATH}/CGAL/Three/Scene_item_rendering_helper.h" "${CMAKE_CURRENT_BINARY_DIR}/Scene_item_rendering_helper_moc.cpp") - qt5_generate_moc("${CGAL_THREE_HEADERS_PATH}/CGAL/Three/TextRenderer.h" + qt6_generate_moc("${CGAL_THREE_HEADERS_PATH}/CGAL/Three/TextRenderer.h" "${CMAKE_CURRENT_BINARY_DIR}/TextRenderer_moc.cpp") else() message(FATAL_ERROR "Cannot find ") @@ -174,8 +194,8 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) Viewer.cpp Three.cpp ${ViewerUI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES} + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES} Viewer_interface_moc.cpp Scene_item_moc.cpp Scene_item.cpp @@ -191,11 +211,11 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) Primitive_container.cpp Polyhedron_demo_plugin_helper.cpp CGAL_double_edit.cpp) - target_link_libraries(demo_framework PUBLIC Qt5::OpenGL Qt5::Widgets Qt5::Gui - Qt5::Script CGAL::CGAL_Qt5) - if(TARGET Qt5::WebSockets) - target_link_libraries(demo_framework PUBLIC Qt5::WebSockets) - message(STATUS "Qt5WebSockets was found. Using WebSockets is therefore possible.") + target_link_libraries(demo_framework PUBLIC Qt6::OpenGLWidgets Qt6::Widgets Qt6::Gui + CGAL::CGAL_Qt6) + if(TARGET Qt6::WebSockets) + target_link_libraries(demo_framework PUBLIC Qt6::WebSockets) + message(STATUS "Qt6WebSockets was found. Using WebSockets is therefore possible.") endif() #compilation_of__demo_framework is defined in polyhedron_demo_macros.cmake @@ -204,29 +224,29 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) # CMake). That is to deal with the visibility of symbols of # `Three.h`/`Three.cpp`. target_compile_definitions(demo_framework PRIVATE three_EXPORTS=1) - target_compile_definitions(demo_framework PRIVATE -DCGAL_USE_Qt5_RESOURCES) + target_compile_definitions(demo_framework PRIVATE -DCGAL_USE_Qt6_RESOURCES) add_library(scene_basic_objects SHARED Scene_plane_item.cpp Scene_spheres_item.cpp) target_link_libraries( - scene_basic_objects PUBLIC demo_framework ${CGAL_LIBRARIES} Qt5::OpenGL - Qt5::Gui Qt5::Script Qt5::Widgets) + scene_basic_objects PUBLIC demo_framework ${CGAL_LIBRARIES} Qt6::OpenGLWidgets + Qt6::Gui Qt6::Widgets) add_library(scene_color_ramp SHARED Color_ramp.cpp) - target_link_libraries(scene_color_ramp PRIVATE Qt5::Core) + target_link_libraries(scene_color_ramp PRIVATE Qt6::Core) add_library(scene_callback_signaler SHARED Callback_signaler.cpp) - target_link_libraries(scene_callback_signaler PRIVATE Qt5::Core) + target_link_libraries(scene_callback_signaler PRIVATE Qt6::Core) add_library(point_dialog SHARED Show_point_dialog.cpp Show_point_dialog.ui ${Show_point_dialogUI_FILES}) - target_link_libraries(point_dialog PUBLIC Qt5::OpenGL Qt5::Gui Qt5::Script - Qt5::Widgets) + target_link_libraries(point_dialog PUBLIC Qt6::OpenGLWidgets Qt6::Gui + Qt6::Widgets) macro(add_item item_name) add_library(${item_name} SHARED ${ARGN}) target_link_libraries( - ${item_name} PUBLIC demo_framework ${CGAL_LIBRARIES} Qt5::OpenGL Qt5::Gui - Qt5::Script Qt5::Widgets) + ${item_name} PUBLIC demo_framework ${CGAL_LIBRARIES} Qt6::OpenGLWidgets Qt6::Gui + Qt6::Widgets) add_to_cached_list(CGAL_EXECUTABLE_TARGETS ${item_name}) endmacro(add_item) @@ -286,7 +306,7 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) add_item(scene_textured_item Scene_textured_surface_mesh_item.cpp texture.cpp) target_link_libraries(scene_textured_item PUBLIC CGAL::Eigen3_support) - qt5_wrap_ui(editionUI_FILES Plugins/Surface_mesh_deformation/Deform_mesh.ui) + qt6_wrap_ui(editionUI_FILES Plugins/Surface_mesh_deformation/Deform_mesh.ui) add_item(scene_edit_item Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.cpp ${editionUI_FILES}) @@ -337,35 +357,35 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) Polyhedron_demo.cpp File_loader_dialog_moc.cpp Use_ssh.cpp - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES} + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES} ${FileLoaderDialogUI_files} ${MainWindowUI_files} ${PreferencesUI_FILES} ${statisticsUI_FILES} ${SubViewerUI_files}) target_link_libraries( - polyhedron_demo PUBLIC demo_framework point_dialog Qt5::Gui Qt5::OpenGL - Qt5::Widgets Qt5::Script) + polyhedron_demo PUBLIC demo_framework point_dialog Qt6::Gui Qt6::OpenGLWidgets + Qt6::Widgets ) if(LIBSSH_FOUND) target_compile_definitions(polyhedron_demo PRIVATE -DCGAL_USE_SSH) target_link_libraries(polyhedron_demo PRIVATE ${LIBSSH_LIBRARIES}) target_include_directories(polyhedron_demo SYSTEM PRIVATE ${LIBSSH_INCLUDE_DIR}) endif() #libssh - if(TARGET Qt5::WebSockets) + if(TARGET Qt6::WebSockets) target_compile_definitions(polyhedron_demo PRIVATE -DCGAL_USE_WEBSOCKETS) target_compile_definitions(demo_framework PRIVATE -DCGAL_USE_WEBSOCKETS) - target_link_libraries(polyhedron_demo PRIVATE Qt5::WebSockets) + target_link_libraries(polyhedron_demo PRIVATE Qt6::WebSockets) endif() add_executable(Polyhedron_3 Polyhedron_3.cpp) target_link_libraries(Polyhedron_3 PRIVATE polyhedron_demo) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Polyhedron_3) if(POLYHEDRON_QTSCRIPT_DEBUGGER) - if(TARGET Qt5::ScriptTools) - target_link_libraries(polyhedron_demo PUBLIC Qt5::ScriptTools) + if(TARGET Qt6::ScriptTools) + target_link_libraries(polyhedron_demo PUBLIC Qt6::ScriptTools) else() - message(STATUS "POLYHEDRON_QTSCRIPT_DEBUGGER is set to TRUE but the Qt5 ScriptTools library was not found.") + message(STATUS "POLYHEDRON_QTSCRIPT_DEBUGGER is set to TRUE but the Qt6 ScriptTools library was not found.") endif() endif() target_link_libraries(Polyhedron_3 PRIVATE demo_framework) @@ -409,23 +429,23 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) add_to_cached_list(CGAL_EXECUTABLE_TARGETS CGAL_PMP) #WS Server - if(TARGET Qt5::WebSockets AND TARGET Qt5::Network) + if(TARGET Qt6::WebSockets AND TARGET Qt6::Network) add_executable(WS_server Server_ws.cpp) - target_link_libraries(WS_server PUBLIC Qt5::WebSockets Qt5::Widgets Qt5::Network) - message(STATUS "Qt5WebSockets was found. Using WebSockets is therefore possible.") + target_link_libraries(WS_server PUBLIC Qt6::WebSockets Qt6::Widgets Qt6::Network) + message(STATUS "Qt6WebSockets was found. Using WebSockets is therefore possible.") endif() # # Exporting # - if(TARGET CGAL_Qt5) + if(TARGET CGAL_Qt6) export( - TARGETS CGAL CGAL_Qt5 CGAL_ImageIO + TARGETS CGAL CGAL_Qt6 CGAL_ImageIO FILE polyhedron_demo_targets.cmake NAMESPACE Polyhedron_) endif() - if(TARGET CGAL_Qt5_moc_and_resources) + if(TARGET CGAL_Qt6_moc_and_resources) export( - TARGETS CGAL_Qt5_moc_and_resources + TARGETS CGAL_Qt6_moc_and_resources NAMESPACE Polyhedron_ APPEND FILE polyhedron_demo_targets.cmake) endif() @@ -447,21 +467,21 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) CGAL_polyhedron_demoConfig.cmake) #TO DO script the activation of all the plugins. -else(CGAL_Qt5_FOUND AND Qt5_FOUND) +else(CGAL_Qt6_FOUND AND Qt6_FOUND) set(POLYHEDRON_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) - set(POLYHEDRON_MISSING_DEPS "the CGAL Qt5 library, ${POLYHEDRON_MISSING_DEPS}") + if(NOT CGAL_Qt6_FOUND) + set(POLYHEDRON_MISSING_DEPS "the CGAL Qt6 library, ${POLYHEDRON_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(POLYHEDRON_MISSING_DEPS "Qt5, ${POLYHEDRON_MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(POLYHEDRON_MISSING_DEPS "Qt6, ${POLYHEDRON_MISSING_DEPS}") endif() - message("NOTICE: This demo requires ${POLYHEDRON_MISSING_DEPS} and will not be compiled.") + message("NOTICE: XX This demo requires ${POLYHEDRON_MISSING_DEPS} and will not be compiled.") -endif(CGAL_Qt5_FOUND AND Qt5_FOUND) +endif(CGAL_Qt6_FOUND AND Qt6_FOUND) feature_summary( WHAT REQUIRED_PACKAGES_NOT_FOUND diff --git a/Polyhedron/demo/Polyhedron/Plugins/Alpha_wrap_3/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Alpha_wrap_3/CMakeLists.txt index 89b5b8ea92a1..3f6540236e37 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Alpha_wrap_3/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Alpha_wrap_3/CMakeLists.txt @@ -1,7 +1,7 @@ include(polyhedron_demo_macros) #if the plugin has a UI file -qt5_wrap_ui(alpha_wrap_3UI_FILES alpha_wrap_3_dialog.ui) +qt6_wrap_ui(alpha_wrap_3UI_FILES alpha_wrap_3_dialog.ui) polyhedron_demo_plugin(alpha_wrap_3_plugin Alpha_wrap_3_plugin ${alpha_wrap_3UI_FILES}) #if the plugin uses external libraries like scene_items diff --git a/Polyhedron/demo/Polyhedron/Plugins/Camera_position/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Camera_position/CMakeLists.txt index 35c19f5a82aa..e080e6837a31 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Camera_position/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Camera_position/CMakeLists.txt @@ -1,6 +1,6 @@ include( polyhedron_demo_macros ) -qt5_wrap_ui( cameraUI_FILES Camera_positions_list.ui ) +qt6_wrap_ui( cameraUI_FILES Camera_positions_list.ui ) polyhedron_demo_plugin(camera_positions_plugin Camera_positions_plugin Camera_positions_list.cpp diff --git a/Polyhedron/demo/Polyhedron/Plugins/Classification/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Classification/CMakeLists.txt index 86d60a563194..7b8cafbb3c41 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Classification/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Classification/CMakeLists.txt @@ -20,7 +20,7 @@ if(TARGET CGAL::Eigen3_support) message(STATUS "NOTICE: OpenCV was not found. OpenCV random forest predicate for classification won't be available.") endif() - qt5_wrap_ui(classificationUI_FILES Classification_widget.ui + qt6_wrap_ui(classificationUI_FILES Classification_widget.ui Classification_advanced_widget.ui) polyhedron_demo_plugin( classification_plugin diff --git a/Polyhedron/demo/Polyhedron/Plugins/Display/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Display/CMakeLists.txt index 6e1c99909175..3831b4679a13 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Display/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Display/CMakeLists.txt @@ -1,6 +1,6 @@ include(polyhedron_demo_macros) if(TARGET CGAL::Eigen3_support) - qt5_wrap_ui( display_propertyUI_FILES Display_property.ui ) + qt6_wrap_ui( display_propertyUI_FILES Display_property.ui ) polyhedron_demo_plugin(display_property_plugin Display_property_plugin ${display_propertyUI_FILES} KEYWORDS Viewer) target_link_libraries(display_property_plugin PUBLIC diff --git a/Polyhedron/demo/Polyhedron/Plugins/IO/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/IO/CMakeLists.txt index 0d4300700dc9..ec7b583d8a28 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/IO/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/IO/CMakeLists.txt @@ -11,7 +11,7 @@ include(CGAL_LASLIB_support) polyhedron_demo_plugin(gocad_plugin GOCAD_io_plugin KEYWORDS Viewer) target_link_libraries(gocad_plugin PUBLIC scene_surface_mesh_item) -qt5_wrap_ui( funcUI_FILES Function_dialog.ui ) +qt6_wrap_ui( funcUI_FILES Function_dialog.ui ) polyhedron_demo_plugin(io_implicit_function_plugin Implicit_function_io_plugin ${funcUI_FILES} diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_2/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Mesh_2/CMakeLists.txt index e4336410f023..3f3be1c57aac 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_2/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_2/CMakeLists.txt @@ -1,6 +1,6 @@ include(polyhedron_demo_macros) #if the plugin has a UI file -qt5_wrap_ui(mesh_2UI_FILES mesh_2_dialog.ui) +qt6_wrap_ui(mesh_2UI_FILES mesh_2_dialog.ui) polyhedron_demo_plugin(mesh_2_plugin Mesh_2_plugin ${mesh_2UI_FILES}) #if the plugin uses external libraries like scene_items target_link_libraries( diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/CMakeLists.txt index 9bf2f376761b..7343e7e215cd 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/CMakeLists.txt @@ -2,11 +2,11 @@ include(polyhedron_demo_macros) remove_definitions(-DQT_STATICPLUGIN) -qt5_wrap_cpp(VOLUME_MOC_OUTFILES +qt6_wrap_cpp(VOLUME_MOC_OUTFILES ${CMAKE_CURRENT_SOURCE_DIR}/Volume_plane_thread.h) -qt5_wrap_cpp(VOLUME_MOC_OUTFILES +qt6_wrap_cpp(VOLUME_MOC_OUTFILES ${CMAKE_CURRENT_SOURCE_DIR}/Volume_plane_interface.h) -qt5_wrap_ui(meshingUI_FILES Meshing_dialog.ui Smoother_dialog.ui +qt6_wrap_ui(meshingUI_FILES Meshing_dialog.ui Smoother_dialog.ui Local_optimizers_dialog.ui) polyhedron_demo_plugin( mesh_3_plugin @@ -55,7 +55,7 @@ endif() find_package(Boost QUIET OPTIONAL_COMPONENTS filesystem system) if(Boost_FILESYSTEM_FOUND) - qt5_wrap_ui( imgUI_FILES Image_res_dialog.ui raw_image.ui) + qt6_wrap_ui( imgUI_FILES Image_res_dialog.ui raw_image.ui) polyhedron_demo_plugin(io_image_plugin Io_image_plugin Volume_plane_intersection.cpp Raw_image_dialog.cpp @@ -101,11 +101,11 @@ endif() polyhedron_demo_plugin(c3t3_io_plugin C3t3_io_plugin KEYWORDS Viewer Mesh_3) target_link_libraries(c3t3_io_plugin PUBLIC scene_c3t3_item) -qt5_wrap_ui(tetraUI_FILES Tetrahedra_filter_widget.ui) +qt6_wrap_ui(tetraUI_FILES Tetrahedra_filter_widget.ui) polyhedron_demo_plugin(tetrahedra_filtering_plugin Tetrahedra_filtering_plugin ${tetraUI_FILES} KEYWORDS Mesh_3 Viewer) target_link_libraries(tetrahedra_filtering_plugin PUBLIC scene_c3t3_item scene_tetrahedra_item) -qt5_wrap_ui(ribUI_FILES Rib_dialog.ui) +qt6_wrap_ui(ribUI_FILES Rib_dialog.ui) polyhedron_demo_plugin(c3t3_rib_exporter_plugin C3t3_rib_exporter_plugin ${ribUI_FILES} KEYWORDS Mesh_3) target_link_libraries(c3t3_rib_exporter_plugin PUBLIC scene_c3t3_item) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Operations_on_polyhedra/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Operations_on_polyhedra/CMakeLists.txt index 628d00b72d34..2e030be7f6df 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Operations_on_polyhedra/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Operations_on_polyhedra/CMakeLists.txt @@ -1,5 +1,5 @@ include(polyhedron_demo_macros) -qt5_wrap_ui(clip_polyhedronUI_FILES Clip_polyhedron_plugin.ui) +qt6_wrap_ui(clip_polyhedronUI_FILES Clip_polyhedron_plugin.ui) polyhedron_demo_plugin(clip_polyhedron_plugin Clip_polyhedron_plugin ${clip_polyhedronUI_FILES}) target_link_libraries( @@ -16,12 +16,12 @@ target_link_libraries( polyhedron_demo_plugin(diff_between_meshes_plugin Diff_between_meshes_plugin) target_link_libraries(diff_between_meshes_plugin PUBLIC scene_surface_mesh_item) - qt5_wrap_ui( animateUI_FILES Animate_widget.ui ) + qt6_wrap_ui( animateUI_FILES Animate_widget.ui ) polyhedron_demo_plugin(animate_mesh_plugin Animate_mesh_plugin ${animateUI_FILES}) target_link_libraries(animate_mesh_plugin PUBLIC scene_surface_mesh_item) if( TARGET CGAL::METIS_support ) - qt5_wrap_ui( partitionUI_FILES PartitionDialog.ui ) + qt6_wrap_ui( partitionUI_FILES PartitionDialog.ui ) polyhedron_demo_plugin(partition_plugin Partition_graph_plugin ${partitionUI_FILES}) target_link_libraries(partition_plugin PUBLIC scene_surface_mesh_item CGAL::METIS_support ) else() diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/PCA/CMakeLists.txt index 4171347a6dcc..ccc765452927 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/CMakeLists.txt @@ -4,7 +4,7 @@ target_link_libraries( pca_plugin PUBLIC scene_surface_mesh_item scene_points_with_normal_item scene_basic_objects) -qt5_wrap_ui(transformUI_FILES Transformation_widget.ui MeshOnGrid_dialog.ui) +qt6_wrap_ui(transformUI_FILES Transformation_widget.ui MeshOnGrid_dialog.ui) polyhedron_demo_plugin(affine_transform_plugin Affine_transform_plugin ${transformUI_FILES} KEYWORDS PointSetProcessing) @@ -16,7 +16,7 @@ polyhedron_demo_plugin(edit_box_plugin Edit_box_plugin) target_link_libraries(edit_box_plugin PUBLIC scene_edit_box_item scene_surface_mesh_item) -qt5_wrap_ui(clipUI_FILES Clipping_box_widget.ui) +qt6_wrap_ui(clipUI_FILES Clipping_box_widget.ui) polyhedron_demo_plugin(clipping_box_plugin Clipping_box_plugin ${clipUI_FILES}) target_link_libraries(clipping_box_plugin PUBLIC scene_edit_box_item scene_basic_objects) @@ -29,7 +29,7 @@ target_link_libraries( create_obb_mesh_plugin PUBLIC scene_surface_mesh_item scene_selection_item scene_points_with_normal_item) -qt5_wrap_ui(volumesUI_FILES Basic_generator_widget.ui) +qt6_wrap_ui(volumesUI_FILES Basic_generator_widget.ui) polyhedron_demo_plugin( basic_generator_plugin Basic_generator_plugin ${volumesUI_FILES} KEYWORDS PolygonMesh PointSetProcessing) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/PMP/CMakeLists.txt index 6ff2b7c356dc..3abd47002122 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/CMakeLists.txt @@ -15,15 +15,15 @@ target_link_libraries(extrude_plugin PUBLIC scene_surface_mesh_item if(TARGET CGAL::Eigen3_support) if("${EIGEN3_VERSION}" VERSION_GREATER "3.1.90") - qt5_wrap_ui( hole_fillingUI_FILES Hole_filling_widget.ui) + qt6_wrap_ui( hole_fillingUI_FILES Hole_filling_widget.ui) polyhedron_demo_plugin(hole_filling_plugin Hole_filling_plugin ${hole_fillingUI_FILES} KEYWORDS PMP) target_link_libraries(hole_filling_plugin PUBLIC scene_surface_mesh_item scene_polylines_item scene_selection_item CGAL::Eigen3_support) - qt5_wrap_ui( fairingUI_FILES Fairing_widget.ui) + qt6_wrap_ui( fairingUI_FILES Fairing_widget.ui) polyhedron_demo_plugin(fairing_plugin Fairing_plugin ${fairingUI_FILES} KEYWORDS PMP) target_link_libraries(fairing_plugin PUBLIC scene_selection_item CGAL::Eigen3_support) - qt5_wrap_ui( Mean_curvature_flow_skeleton_pluginUI_FILES Mean_curvature_flow_skeleton_plugin.ui) + qt6_wrap_ui( Mean_curvature_flow_skeleton_pluginUI_FILES Mean_curvature_flow_skeleton_plugin.ui) polyhedron_demo_plugin(mean_curvature_flow_skeleton_plugin Mean_curvature_flow_skeleton_plugin ${Mean_curvature_flow_skeleton_pluginUI_FILES}) target_link_libraries(mean_curvature_flow_skeleton_plugin PUBLIC @@ -34,7 +34,7 @@ if(TARGET CGAL::Eigen3_support) demo_framework CGAL::Eigen3_support) # The smoothing plugin can still do some things, even if Ceres is not found - qt5_wrap_ui( smoothingUI_FILES Smoothing_plugin.ui Smoothing_tangential_relaxation.ui) + qt6_wrap_ui( smoothingUI_FILES Smoothing_plugin.ui Smoothing_tangential_relaxation.ui) polyhedron_demo_plugin(smoothing_plugin Smoothing_plugin ${smoothingUI_FILES}) target_link_libraries(smoothing_plugin PUBLIC scene_surface_mesh_item scene_selection_item CGAL::Eigen3_support) find_package(Ceres QUIET) @@ -49,7 +49,7 @@ if(TARGET CGAL::Eigen3_support) PURPOSE "Can be used as a solver in the smoothing plugin.") target_link_libraries(extrude_plugin PUBLIC CGAL::Eigen3_support) - qt5_wrap_ui(remeshPlanarPatchesUI_FILES Remesh_planar_patches_dialog.ui) + qt6_wrap_ui(remeshPlanarPatchesUI_FILES Remesh_planar_patches_dialog.ui) polyhedron_demo_plugin(remesh_planar_patches_plugin Remesh_planar_patches_plugin ${remeshPlanarPatchesUI_FILES} KEYWORDS PMP) target_link_libraries(remesh_planar_patches_plugin PUBLIC scene_surface_mesh_item CGAL::Eigen3_support) @@ -71,7 +71,7 @@ else() message(STATUS "NOTICE: The hole filling and fairing plugins require Eigen 3.2 (or higher) and will not be available.") endif() -qt5_wrap_ui(soupUI_FILES Repair_soup.ui) +qt6_wrap_ui(soupUI_FILES Repair_soup.ui) polyhedron_demo_plugin(orient_soup_plugin Orient_soup_plugin ${soupUI_FILES} KEYWORDS Classification PMP) target_link_libraries( @@ -85,18 +85,18 @@ target_link_libraries(inside_out_plugin PUBLIC scene_surface_mesh_item scene_pol polyhedron_demo_plugin(join_and_split_plugin Join_and_split_polyhedra_plugin KEYWORDS PMP) target_link_libraries(join_and_split_plugin PUBLIC scene_surface_mesh_item scene_selection_item) -qt5_wrap_ui( point_inside_polyhedronUI_FILES Point_inside_polyhedron_widget.ui) +qt6_wrap_ui( point_inside_polyhedronUI_FILES Point_inside_polyhedron_widget.ui) polyhedron_demo_plugin(point_inside_polyhedron_plugin Point_inside_polyhedron_plugin ${point_inside_polyhedronUI_FILES}) target_link_libraries(point_inside_polyhedron_plugin PUBLIC scene_surface_mesh_item scene_points_with_normal_item) -qt5_wrap_ui( polyhedron_slicerUI_FILES Polyhedron_slicer_widget.ui) +qt6_wrap_ui( polyhedron_slicerUI_FILES Polyhedron_slicer_widget.ui) polyhedron_demo_plugin(polyhedron_slicer_plugin Polyhedron_slicer_plugin ${polyhedron_slicerUI_FILES}) target_link_libraries(polyhedron_slicer_plugin PUBLIC scene_surface_mesh_item scene_basic_objects scene_polylines_item) polyhedron_demo_plugin(polyhedron_stitching_plugin Polyhedron_stitching_plugin KEYWORDS PMP) target_link_libraries(polyhedron_stitching_plugin PUBLIC scene_surface_mesh_item scene_polylines_item) -qt5_wrap_ui( selectionUI_FILES Selection_widget.ui) +qt6_wrap_ui( selectionUI_FILES Selection_widget.ui) polyhedron_demo_plugin(selection_plugin Selection_plugin ${selectionUI_FILES} KEYWORDS PMP Viewer Classification Mesh_3) target_link_libraries(selection_plugin PUBLIC scene_selection_item scene_points_with_normal_item scene_polylines_item) @@ -117,11 +117,11 @@ target_link_libraries( PUBLIC scene_surface_mesh_item scene_polylines_item scene_points_with_normal_item) -qt5_wrap_ui( repairUI_FILES RemoveNeedlesDialog.ui SelfSnapDialog.ui) +qt6_wrap_ui( repairUI_FILES RemoveNeedlesDialog.ui SelfSnapDialog.ui) polyhedron_demo_plugin(repair_polyhedron_plugin Repair_polyhedron_plugin ${repairUI_FILES} KEYWORDS PMP) target_link_libraries(repair_polyhedron_plugin PUBLIC scene_points_with_normal_item scene_surface_mesh_item) -qt5_wrap_ui(isotropicRemeshingUI_FILES Isotropic_remeshing_dialog.ui) +qt6_wrap_ui(isotropicRemeshingUI_FILES Isotropic_remeshing_dialog.ui) polyhedron_demo_plugin(isotropic_remeshing_plugin Isotropic_remeshing_plugin ${isotropicRemeshingUI_FILES} KEYWORDS PMP) target_link_libraries(isotropic_remeshing_plugin PUBLIC scene_surface_mesh_item @@ -141,7 +141,7 @@ endif() polyhedron_demo_plugin(detect_sharp_edges_plugin Detect_sharp_edges_plugin KEYWORDS Viewer Mesh_3 PMP) target_link_libraries(detect_sharp_edges_plugin PUBLIC scene_surface_mesh_item) -qt5_wrap_ui(randomPerturbationUI_FILES Random_perturbation_dialog.ui) +qt6_wrap_ui(randomPerturbationUI_FILES Random_perturbation_dialog.ui) polyhedron_demo_plugin(random_perturbation_plugin Random_perturbation_plugin ${randomPerturbationUI_FILES} KEYWORDS PMP) target_link_libraries(random_perturbation_plugin PUBLIC scene_surface_mesh_item @@ -152,7 +152,7 @@ polyhedron_demo_plugin(degenerated_faces_plugin Degenerated_faces_plugin target_link_libraries(degenerated_faces_plugin PUBLIC scene_surface_mesh_item scene_selection_item) -qt5_wrap_ui(engravUI_FILES Engrave_dock_widget.ui) +qt6_wrap_ui(engravUI_FILES Engrave_dock_widget.ui) polyhedron_demo_plugin(engrave_text_plugin Engrave_text_plugin ${engravUI_FILES}) target_link_libraries( diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Point_set/CMakeLists.txt index 1955755b2dbb..3bade0d26e6e 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/CMakeLists.txt @@ -24,7 +24,7 @@ if(TARGET CGAL::Eigen3_support) message(STATUS "NOTICE: SCIP and GLPK were not found. Polygonal surface reconstruction will not be available.") endif() - qt5_wrap_ui(surface_reconstructionUI_FILES Surface_reconstruction_plugin.ui) + qt6_wrap_ui(surface_reconstructionUI_FILES Surface_reconstruction_plugin.ui) polyhedron_demo_plugin( surface_reconstruction_plugin Surface_reconstruction_plugin @@ -46,7 +46,7 @@ if(TARGET CGAL::Eigen3_support) target_link_libraries(surface_reconstruction_plugin PUBLIC CGAL::GLPK_support) endif() - qt5_wrap_ui(point_set_normal_estimationUI_FILES + qt6_wrap_ui(point_set_normal_estimationUI_FILES Point_set_normal_estimation_plugin.ui) polyhedron_demo_plugin( point_set_normal_estimation_plugin Point_set_normal_estimation_plugin @@ -57,7 +57,7 @@ if(TARGET CGAL::Eigen3_support) PUBLIC scene_points_with_normal_item scene_callback_signaler CGAL::Eigen3_support) - qt5_wrap_ui(features_detection_pluginUI_FILES Features_detection_plugin.ui) + qt6_wrap_ui(features_detection_pluginUI_FILES Features_detection_plugin.ui) polyhedron_demo_plugin( features_detection_plugin Features_detection_plugin ${features_detection_pluginUI_FILES} KEYWORDS PointSetProcessing) @@ -80,7 +80,7 @@ if(TARGET CGAL::Eigen3_support) PUBLIC scene_points_with_normal_item scene_callback_signaler CGAL::Eigen3_support) - qt5_wrap_ui(point_set_shape_detectionUI_FILES + qt6_wrap_ui(point_set_shape_detectionUI_FILES Point_set_shape_detection_plugin.ui) polyhedron_demo_plugin( point_set_shape_detection_plugin Point_set_shape_detection_plugin @@ -97,7 +97,7 @@ if(TARGET CGAL::Eigen3_support) include(CGAL_pointmatcher_support) if(TARGET CGAL::OpenGR_support OR CGAL::pointmatcher_support) - qt5_wrap_ui(register_point_setsUI_FILES Register_point_sets_plugin.ui) + qt6_wrap_ui(register_point_setsUI_FILES Register_point_sets_plugin.ui) polyhedron_demo_plugin( register_point_sets_plugin Register_point_sets_plugin ${register_point_setsUI_FILES} KEYWORDS PointSetProcessing) @@ -123,7 +123,7 @@ else() message(STATUS "NOTICE: Eigen 3.1 (or greater) was not found. Feature detection plugin will not be available.") endif() -qt5_wrap_ui(point_set_bilateral_smoothingUI_FILES +qt6_wrap_ui(point_set_bilateral_smoothingUI_FILES Point_set_bilateral_smoothing_plugin.ui) polyhedron_demo_plugin( point_set_bilateral_smoothing_plugin Point_set_bilateral_smoothing_plugin @@ -132,7 +132,7 @@ target_link_libraries( point_set_bilateral_smoothing_plugin PUBLIC scene_points_with_normal_item scene_callback_signaler) -qt5_wrap_ui(ps_outliers_removal_UI_FILES Point_set_outliers_removal_plugin.ui) +qt6_wrap_ui(ps_outliers_removal_UI_FILES Point_set_outliers_removal_plugin.ui) polyhedron_demo_plugin( point_set_outliers_removal_plugin Point_set_outliers_removal_plugin ${ps_outliers_removal_UI_FILES} KEYWORDS PointSetProcessing) @@ -140,7 +140,7 @@ target_link_libraries( point_set_outliers_removal_plugin PUBLIC scene_points_with_normal_item scene_callback_signaler) -qt5_wrap_ui(point_set_selectionUI_FILES Point_set_selection_widget.ui) +qt6_wrap_ui(point_set_selectionUI_FILES Point_set_selection_widget.ui) polyhedron_demo_plugin( point_set_selection_plugin Point_set_selection_plugin ${point_set_selectionUI_FILES} KEYWORDS PointSetProcessing Classification) @@ -148,7 +148,7 @@ target_link_libraries( point_set_selection_plugin PUBLIC scene_points_with_normal_item scene_polylines_item scene_edit_box_item) -qt5_wrap_ui(point_set_simplificationUI_FILES Point_set_simplification_plugin.ui) +qt6_wrap_ui(point_set_simplificationUI_FILES Point_set_simplification_plugin.ui) polyhedron_demo_plugin( point_set_simplification_plugin Point_set_simplification_plugin ${point_set_simplificationUI_FILES} KEYWORDS PointSetProcessing) @@ -156,14 +156,14 @@ target_link_libraries( point_set_simplification_plugin PUBLIC scene_points_with_normal_item scene_callback_signaler) -qt5_wrap_ui(point_set_upsamplingUI_FILES Point_set_upsampling_plugin.ui) +qt6_wrap_ui(point_set_upsamplingUI_FILES Point_set_upsampling_plugin.ui) polyhedron_demo_plugin( point_set_upsampling_plugin Point_set_upsampling_plugin ${point_set_upsamplingUI_FILES} KEYWORDS PointSetProcessing) target_link_libraries(point_set_upsampling_plugin PUBLIC scene_points_with_normal_item) -qt5_wrap_ui(point_set_wlopFILES Point_set_wlop_plugin.ui) +qt6_wrap_ui(point_set_wlopFILES Point_set_wlop_plugin.ui) polyhedron_demo_plugin(point_set_wlop_plugin Point_set_wlop_plugin ${point_set_wlopFILES} KEYWORDS PointSetProcessing) target_link_libraries(point_set_wlop_plugin PUBLIC scene_points_with_normal_item @@ -186,13 +186,13 @@ polyhedron_demo_plugin( target_link_libraries(point_set_interference_plugin PUBLIC scene_points_with_normal_item) -qt5_wrap_ui(alpha_shapeUI_FILES Alpha_shape_widget.ui) +qt6_wrap_ui(alpha_shapeUI_FILES Alpha_shape_widget.ui) polyhedron_demo_plugin(alpha_shape_plugin Alpha_shape_plugin ${alpha_shapeUI_FILES} KEYWORDS PointSetProcessing) target_link_libraries(alpha_shape_plugin PUBLIC scene_points_with_normal_item scene_c3t3_item) -qt5_wrap_ui(distanceUI_FILES Point_set_to_mesh_distance_widget.ui) +qt6_wrap_ui(distanceUI_FILES Point_set_to_mesh_distance_widget.ui) polyhedron_demo_plugin( point_set_to_mesh_distance_plugin Point_set_to_mesh_distance_plugin ${distanceUI_FILES} KEYWORDS PointSetProcessing) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/CMakeLists.txt index 4e553fbde16a..1c211311a738 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/CMakeLists.txt @@ -9,7 +9,7 @@ if(NOT CGAL_DISABLE_GMP) include(${CGAL_USE_FILE}) - qt5_wrap_ui(parameterizationUI_FILES Parameterization_widget.ui OTE_dialog.ui) + qt6_wrap_ui(parameterizationUI_FILES Parameterization_widget.ui OTE_dialog.ui) polyhedron_demo_plugin(parameterization_plugin Parameterization_plugin ${parameterizationUI_FILES}) target_link_libraries( @@ -26,7 +26,7 @@ if(NOT CGAL_DISABLE_GMP) message(STATUS "NOTICE: Eigen 3.1 (or greater) was not found. The Parameterization plugin will not be available.") endif() - qt5_wrap_ui(segmentationUI_FILES Mesh_segmentation_widget.ui) + qt6_wrap_ui(segmentationUI_FILES Mesh_segmentation_widget.ui) polyhedron_demo_plugin(mesh_segmentation_plugin Mesh_segmentation_plugin ${segmentationUI_FILES}) target_link_libraries(mesh_segmentation_plugin PUBLIC scene_surface_mesh_item) @@ -37,11 +37,11 @@ if(NOT CGAL_DISABLE_GMP) PROPERTIES RESOURCE_LOCK Selection_test_resources) endif() - qt5_wrap_ui( mesh_simplificationUI_FILES Mesh_simplification_dialog.ui) + qt6_wrap_ui( mesh_simplificationUI_FILES Mesh_simplification_dialog.ui) polyhedron_demo_plugin(mesh_simplification_plugin Mesh_simplification_plugin ${mesh_simplificationUI_FILES}) target_link_libraries(mesh_simplification_plugin PUBLIC scene_surface_mesh_item scene_selection_item) - qt5_wrap_ui(remeshingUI_FILES Remeshing_dialog.ui) + qt6_wrap_ui(remeshingUI_FILES Remeshing_dialog.ui) polyhedron_demo_plugin(offset_meshing_plugin Offset_meshing_plugin ${remeshingUI_FILES}) target_link_libraries(offset_meshing_plugin PUBLIC scene_surface_mesh_item @@ -54,14 +54,14 @@ if(NOT CGAL_DISABLE_GMP) target_link_libraries(offset_meshing_plugin PUBLIC CGAL::TBB_support) endif() - qt5_wrap_ui(shortestPathUI_FILES Shortest_path_widget.ui) + qt6_wrap_ui(shortestPathUI_FILES Shortest_path_widget.ui) polyhedron_demo_plugin(shortest_path_plugin Shortest_path_plugin ${shortestPathUI_FILES}) target_link_libraries( shortest_path_plugin PUBLIC scene_surface_mesh_item scene_shortest_path_item scene_basic_objects) - qt5_wrap_ui(basicUI_FILES Surface_mesh_approximation_dockwidget.ui) + qt6_wrap_ui(basicUI_FILES Surface_mesh_approximation_dockwidget.ui) polyhedron_demo_plugin( surface_mesh_approximation_plugin Surface_mesh_approximation_plugin ${basicUI_FILES} VSA_wrapper.cpp) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Tetrahedral_remeshing/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Tetrahedral_remeshing/CMakeLists.txt index a7547b6e19cd..15dc949776e9 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Tetrahedral_remeshing/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Tetrahedral_remeshing/CMakeLists.txt @@ -2,12 +2,12 @@ include(polyhedron_demo_macros) remove_definitions(-DQT_STATICPLUGIN) -qt5_wrap_cpp(VOLUME_MOC_OUTFILES +qt6_wrap_cpp(VOLUME_MOC_OUTFILES ${CMAKE_CURRENT_SOURCE_DIR}/Volume_plane_thread.h) -qt5_wrap_cpp(VOLUME_MOC_OUTFILES +qt6_wrap_cpp(VOLUME_MOC_OUTFILES ${CMAKE_CURRENT_SOURCE_DIR}/Volume_plane_interface.h) -qt5_wrap_ui(tetRemeshingUI_FILES Tetrahedral_remeshing_dialog.ui) +qt6_wrap_ui(tetRemeshingUI_FILES Tetrahedral_remeshing_dialog.ui) polyhedron_demo_plugin( tetrahedral_remeshing_plugin Tetrahedral_remeshing_plugin ${tetRemeshingUI_FILES} KEYWORDS Tetrahedral_remeshing) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/CMakeLists.txt index a3b77b8e4526..7ebf7feedea9 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/CMakeLists.txt @@ -10,22 +10,22 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) #Find CGAL -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5 ImageIO) -# Find Qt5 itself -find_package(Qt5 QUIET - COMPONENTS OpenGL Script Svg - OPTIONAL_COMPONENTS ScriptTools WebSockets) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 ImageIO) +# Find Qt6 itself +find_package(Qt6 QUIET + COMPONENTS OpenGLWidget Svg + OPTIONAL_COMPONENTS WebSockets) if(RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE) - if(Qt5_FOUND) + if(Qt6_FOUND) include(${CGAL_USE_FILE}) endif() polyhedron_demo_plugin(example_plugin Example_plugin) - qt5_wrap_ui(basicUI_FILES Basic_dialog.ui) + qt6_wrap_ui(basicUI_FILES Basic_dialog.ui) polyhedron_demo_plugin(basic_plugin Basic_plugin ${basicUI_FILES}) - qt5_wrap_ui(dockUI_FILES Basic_dock_widget.ui) + qt6_wrap_ui(dockUI_FILES Basic_dock_widget.ui) polyhedron_demo_plugin(dock_widget_plugin Dock_widget_plugin ${dockUI_FILES}) polyhedron_demo_plugin(basic_item_plugin Basic_item_plugin) diff --git a/Polyhedron/demo/Polyhedron/implicit_functions/CMakeLists.txt b/Polyhedron/demo/Polyhedron/implicit_functions/CMakeLists.txt index 98faad76be30..7e374a519dcb 100644 --- a/Polyhedron/demo/Polyhedron/implicit_functions/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/implicit_functions/CMakeLists.txt @@ -19,17 +19,17 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") # Include directory of demo includes include_directories(BEFORE ${Mesh_3_implicit_functions_BINARY_DIR} ../include) -# Find CGAL and CGAL Qt5 -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +# Find CGAL and CGAL Qt6 +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -# Find Qt5 itself +# Find Qt6 itself set(QT_USE_QTXML TRUE) set(QT_USE_QTMAIN TRUE) set(QT_USE_QTSCRIPT TRUE) set(QT_USE_QTOPENGL TRUE) -find_package(Qt5 QUIET COMPONENTS Script OpenGL ScriptTools) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets ScriptTools) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) # put plugins (which are shared libraries) at the same location as # executable files set(LIBRARY_OUTPUT_PATH ${RUNTIME_OUTPUT_PATH}) @@ -47,18 +47,18 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) polyhedron_demo_plugin(p_klein_function_plugin Klein_implicit_function KEYWORDS Mesh_3) -else(CGAL_Qt5_FOUND AND Qt5_FOUND) +else(CGAL_Qt6_FOUND AND Qt6_FOUND) set(MESH_3_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) - set(MESH_3_MISSING_DEPS "the CGAL Qt5 library, ${MESH_3_MISSING_DEPS}") + if(NOT CGAL_Qt6_FOUND) + set(MESH_3_MISSING_DEPS "the CGAL Qt6 library, ${MESH_3_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(MESH_3_MISSING_DEPS "Qt5, ${MESH_3_MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(MESH_3_MISSING_DEPS "Qt6, ${MESH_3_MISSING_DEPS}") endif() message("NOTICE: This demo requires ${MESH_3_MISSING_DEPS} and will not be compiled.") -endif(CGAL_Qt5_FOUND AND Qt5_FOUND) +endif(CGAL_Qt6_FOUND AND Qt6_FOUND) From 5030d671d5ee5a71f4eee1b8fe2ea6e1e5d1317e Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Apr 2023 17:06:44 +0100 Subject: [PATCH 08/85] Target Polyhedron_3 builds and executes, but with all scripting and RegExp (deprecated) commented --- Polyhedron/demo/Polyhedron/MainWindow.cpp | 43 +++++++++++++------ Polyhedron/demo/Polyhedron/MainWindow.h | 20 +++++---- .../demo/Polyhedron/Polyhedron_demo.cpp | 4 +- Polyhedron/demo/Polyhedron/Scene.cpp | 2 +- Polyhedron/demo/Polyhedron/Scene.h | 2 +- .../demo/Polyhedron/Show_point_dialog.cpp | 5 ++- Polyhedron/demo/Polyhedron/Viewer.cpp | 3 +- .../Polyhedron/polyhedron_demo_macros.cmake | 4 +- Three/include/CGAL/Three/exceptions.h | 14 +++--- 9 files changed, 64 insertions(+), 33 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.cpp b/Polyhedron/demo/Polyhedron/MainWindow.cpp index b797ecf7a70e..4560cf9aceea 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.cpp +++ b/Polyhedron/demo/Polyhedron/MainWindow.cpp @@ -73,10 +73,12 @@ #include #include +#include "Color_map.h" + #ifdef QT_SCRIPT_LIB # include # include -#include "Color_map.h" + using namespace CGAL::Three; @@ -123,6 +125,7 @@ const QString debug_widgets_names[9] = { # endif #endif +#if 0 QScriptValue myPrintFunction(QScriptContext *context, QScriptEngine *engine) { MainWindow* mw = qobject_cast(engine->parent()); @@ -138,6 +141,7 @@ QScriptValue myPrintFunction(QScriptContext *context, QScriptEngine *engine) return engine->undefinedValue(); } +#endif inline QKeySequence combine(Qt::Modifier m, Qt::Key k) @@ -166,8 +170,8 @@ MainWindow::MainWindow(const QStringList &keywords, bool verbose, QWidget* paren is_locked = false; // remove the Load Script menu entry, when the demo has not been compiled with QT_SCRIPT_LIB #if !defined(QT_SCRIPT_LIB) - ui->menuBar->removeAction(ui->actionLoadScript); - ui->menuBar->removeAction(ui->on_actionLoad_a_Scene_from_a_Script_File); + // ui->menuBar->removeAction(ui->actionLoadScript); + // ui->menuBar->removeAction(ui->on_actionLoad_a_Scene_from_a_Script_File); #endif // Save some pointers from ui, for latter use. sceneView = ui->sceneView; @@ -528,6 +532,7 @@ void MainWindow::filterOperations(bool) #include +#if 0 void MainWindow::evaluate_script(QString script, const QString& filename, const bool quiet) { @@ -595,6 +600,7 @@ void MainWindow::enableScriptDebugger(bool b /* = true */) this->error(tr("Your version of Qt is too old, and for that reason " "the Qt Script Debugger is not available.")); } +#endif namespace { bool actionsByName(QAction* x, QAction* y) { @@ -650,8 +656,8 @@ bool MainWindow::load_plugin(QString fileName, bool blacklisted) QFileInfo fileinfo(fileName); //set plugin name QString name = fileinfo.fileName(); - name.remove(QRegExp("^lib")); - name.remove(QRegExp("\\..*")); + name.remove(QRegularExpression("^lib")); + name.remove(QRegularExpression("\\..*")); //do not load it if it is in the blacklist if(blacklisted) { @@ -1138,20 +1144,22 @@ bool MainWindow::file_matches_filter(const QString& filters, QString filename_striped=fileinfo.fileName(); //match all filters between () - QRegExp all_filters_rx("\\((.*)\\)"); + QRegularExpression all_filters_rx("\\((.*)\\)"); QStringList split_filters = filters.split(";;"); Q_FOREACH(const QString& filter, split_filters) { //extract filters +#if 0 // AF @todo if ( all_filters_rx.indexIn(filter)!=-1 ){ Q_FOREACH(const QString& pattern,all_filters_rx.cap(1).split(' ')){ - QRegExp rx(pattern); - rx.setPatternSyntax(QRegExp::Wildcard); + QRegularExpression rx(pattern); + rx.setPatternSyntax(QRegularExpression::Wildcard); if ( rx.exactMatch(filename_striped) ){ return true; } } } +#endif } return false; } @@ -1268,6 +1276,7 @@ void MainWindow::open(QString filename) bool MainWindow::open(QString filename, QString loader_name) { QFileInfo fileinfo(filename); boost::optional item_opt; +#if 0 // AF try { item_opt = wrap_a_call_to_cpp ([this, fileinfo, loader_name]() @@ -1284,6 +1293,7 @@ bool MainWindow::open(QString filename, QString loader_name) { std::cerr << e.what() << std::endl; return false; } +#endif return true; } @@ -1887,6 +1897,7 @@ void MainWindow::closeEvent(QCloseEvent *event) event->accept(); } +#if 0 bool MainWindow::loadScript(QString filename) { QFileInfo fileinfo(filename); @@ -1920,12 +1931,15 @@ bool MainWindow::loadScript(QFileInfo info) #endif return false; } +#endif void MainWindow::throw_exception() { +#if 0 // AF wrap_a_call_to_cpp([]() { throw std::runtime_error("Exception thrown in " "MainWindow::throw_exception()"); }, this, __FILE__, __LINE__); +#endif } void MainWindow::on_actionLoadScript_triggered() @@ -2046,7 +2060,7 @@ void MainWindow::on_actionSaveAs_triggered() sf = plugin->saveNameFilters().split(";;").first(); } } - QRegExp extensions("\\(\\*\\..+\\)"); + QRegularExpression extensions("\\(\\*\\..+\\)"); QStringList filter_exts; if(filters.empty()) { @@ -2056,6 +2070,7 @@ void MainWindow::on_actionSaveAs_triggered() .arg(item->name())); return; } +#if 0 // AF Q_FOREACH(QString string, filters) { QStringList sl = string.split(";;"); @@ -2065,6 +2080,8 @@ void MainWindow::on_actionSaveAs_triggered() filter_exts.append(extensions.capturedTexts()); } } +#endif + filters << tr("All files (*)"); if(canSavePlugins.isEmpty()) { QMessageBox::warning(this, @@ -2094,9 +2111,9 @@ void MainWindow::on_actionSaveAs_triggered() if(filename.isEmpty()) return; last_saved_dir = QFileInfo(filename).absoluteDir().path(); - extensions.indexIn(sf.split(";;").first()); + // AF extensions.indexIn(sf.split(";;").first()); QString filter_ext, filename_ext; - filter_ext = extensions.cap().split(" ").first();// in case of syntax like (*.a *.b) + // AF filter_ext = extensions.cap().split(" ").first();// in case of syntax like (*.a *.b) filter_ext.remove(")"); filter_ext.remove("("); @@ -2804,9 +2821,11 @@ void MainWindow::colorItems() return; std::vector colors_; colors_.reserve(nb_files); +# compute_color_map(scene->item(scene->selectionIndices().last())->color(), static_cast(nb_files), std::back_inserter(colors_)); + std::size_t nb_item = -1; Q_FOREACH(int id, scene->selectionIndices()) { @@ -3859,7 +3878,7 @@ void MainWindow::on_actionLoad_a_Scene_from_a_Script_File_triggered() if(filename.isEmpty()) return; } - loadScript(QFileInfo(filename)); + if(do_download){ QFile tmp_file(filename); tmp_file.remove(); diff --git a/Polyhedron/demo/Polyhedron/MainWindow.h b/Polyhedron/demo/Polyhedron/MainWindow.h index 7202c8ac6296..f0c3adca0078 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.h +++ b/Polyhedron/demo/Polyhedron/MainWindow.h @@ -3,12 +3,13 @@ #include "config.h" #include "MainWindow_config.h" -#include +#include #include #include -#include -#include +// AF @todo Scripting has changed +// #include +// #include #include @@ -60,8 +61,8 @@ namespace Ui { class MAINWINDOW_EXPORT MainWindow : public CGAL::Qt::DemosMainWindow, public Messages_interface, - public CGAL::Three::Three, - protected QScriptable + public CGAL::Three::Three + // AF , protected QScriptable { Q_OBJECT Q_INTERFACES(Messages_interface) @@ -147,12 +148,13 @@ public Q_SLOTS: index of the item to be reloaded as data attached to the action. The index must identify a valid `Scene_item`.*/ void reloadItem(); - +#if 0 //! Loads a script. Returns true if it worked. bool loadScript(QString filename); //! Loads a script. Returns true if it worked. bool loadScript(QFileInfo); +#endif /*! * Gives the keyboard input focus to the widget searchEdit. @@ -261,7 +263,7 @@ public Q_SLOTS: * If able, finds a script debugger and interrupts current action. Default * value for parameter is true. */ - void enableScriptDebugger(bool = true); + // void enableScriptDebugger(bool = true); /// This slot is used to test exception handling in Qt Scripts. void throw_exception(); @@ -449,9 +451,11 @@ protected Q_SLOTS: //! Calls evaluate_script(script, filename, true). void evaluate_script_quiet(QString script, const QString & fileName = QString()); + #endif + QMutex mutex; QWaitCondition wait_condition; -#endif + public Q_SLOTS: void on_actionSa_ve_Scene_as_Script_triggered(); void on_actionLoad_a_Scene_from_a_Script_File_triggered(); diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp index 7b6e5225dfe3..6348c203eab8 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp @@ -129,10 +129,10 @@ Polyhedron_demo::Polyhedron_demo(int& argc, char **argv, } #endif - mainWindow.loadScript(":/cgal/Polyhedron_3/javascript/lib.js"); + // mainWindow.loadScript(":/cgal/Polyhedron_3/javascript/lib.js"); QFileInfo autostart_js("autostart.js"); if(!parser.isSet(no_autostart) && autostart_js.exists()) { - mainWindow.loadScript(autostart_js); + // mainWindow.loadScript(autostart_js); } Q_FOREACH(QString filename, parser.positionalArguments()) { mainWindow.open(filename); diff --git a/Polyhedron/demo/Polyhedron/Scene.cpp b/Polyhedron/demo/Polyhedron/Scene.cpp index c70929ab4a5e..8a66f7fb2cad 100644 --- a/Polyhedron/demo/Polyhedron/Scene.cpp +++ b/Polyhedron/demo/Polyhedron/Scene.cpp @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/Polyhedron/demo/Polyhedron/Scene.h b/Polyhedron/demo/Polyhedron/Scene.h index b661ed7baa83..0724bc577cf3 100644 --- a/Polyhedron/demo/Polyhedron/Scene.h +++ b/Polyhedron/demo/Polyhedron/Scene.h @@ -7,7 +7,7 @@ #include #include -#include +#include #include #include #include diff --git a/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp b/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp index c831303083d8..1654dadf30bc 100644 --- a/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp +++ b/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp @@ -2,6 +2,7 @@ #include "ui_Show_point_dialog.h" #include +#include Show_point_dialog::Show_point_dialog(QWidget* parent) : QDialog(parent) @@ -50,7 +51,8 @@ void Show_point_dialog::interprete_string(const QString& string) + "|" + not_double_char_re + "+" + double_re + ")" + "$"; - QRegExp re(full_re); +#if 0 // AF @todo QRegExp had exactMatch() and cap() + QRegularExpression re(full_re); if(re.exactMatch(string)) { // const double x = re.cap(1).toDouble(); // const double y = re.cap(2).toDouble(); @@ -66,6 +68,7 @@ void Show_point_dialog::interprete_string(const QString& string) ui->coord_z->setText(QString()); m_has_correct_coordinates = false; } +#endif } double Show_point_dialog::get_x() const diff --git a/Polyhedron/demo/Polyhedron/Viewer.cpp b/Polyhedron/demo/Polyhedron/Viewer.cpp index 201e15555c50..83182e00bf2e 100644 --- a/Polyhedron/demo/Polyhedron/Viewer.cpp +++ b/Polyhedron/demo/Polyhedron/Viewer.cpp @@ -18,6 +18,7 @@ #include #include #include +#include #include #ifdef CGAL_USE_WEBSOCKETS #include @@ -1838,7 +1839,7 @@ void Viewer::setLighting() connect(dialog->position_lineEdit, &QLineEdit::editingFinished, [this, dialog]() { - QStringList list = dialog->position_lineEdit->text().split(QRegExp(","), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = dialog->position_lineEdit->text().split(QRegularExpression(","), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size()!=3){ QMessageBox *msgBox = new QMessageBox; diff --git a/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake b/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake index 0e20273faa76..3b31bce3992e 100644 --- a/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake +++ b/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake @@ -19,7 +19,7 @@ include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) set(moc_file_name "") else() set(moc_file_name ${plugin_implementation_base_name}.moc ) - qt5_generate_moc( ${plugin_implementation_base_name}.cpp "${CMAKE_CURRENT_BINARY_DIR}/${moc_file_name}" ) + qt6_generate_moc( ${plugin_implementation_base_name}.cpp "${CMAKE_CURRENT_BINARY_DIR}/${moc_file_name}" ) add_file_dependencies( ${moc_file_name} "${CMAKE_CURRENT_SOURCE_DIR}/${plugin_implementation_base_name}.cpp" ) endif() @@ -49,7 +49,7 @@ include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) set_property(TEST "compilation_of__demo_framework" APPEND PROPERTY FIXTURES_SETUP "demo_framework_SetupFixture") set_property(TEST "compilation_of__demo_framework" - APPEND PROPERTY DEPENDS "compilation_of__CGAL_Qt5_moc_and_resources") + APPEND PROPERTY DEPENDS "compilation_of__CGAL_Qt6_moc_and_resources") endif() endif() else() diff --git a/Three/include/CGAL/Three/exceptions.h b/Three/include/CGAL/Three/exceptions.h index cf3640d5b46a..15fa13cd320d 100644 --- a/Three/include/CGAL/Three/exceptions.h +++ b/Three/include/CGAL/Three/exceptions.h @@ -19,9 +19,9 @@ #include #include #include -#include -#include -#include +//#include +//#include +//#include #include #include @@ -60,6 +60,7 @@ struct Optional_or_bool { enum Context { CURRENT_CONTEXT, PARENT_CONTEXT }; +#if 1 // AF @todo scripting has changed /// This function template wraps a `Callable` that can be called without /// any argument (such as a lambda expression without arguments), and in /// case the function call is in a Qt Script context, wraps the call in a @@ -69,7 +70,7 @@ enum Context { CURRENT_CONTEXT, PARENT_CONTEXT }; template typename Optional_or_bool::type>::type wrap_a_call_to_cpp(Callable f, - QScriptable* qs = 0, + // QScriptable* qs = 0, const char* file = 0, int line = -1, Context c = CURRENT_CONTEXT) { @@ -78,12 +79,13 @@ wrap_a_call_to_cpp(Callable f, typedef typename O_r_b::type Return_type; const bool no_try_catch = qApp->property("no-try-catch").toBool(); - if(no_try_catch || qs == 0 || !qs->context()) return O_r_b::invoke(f); + if(no_try_catch /* || qs == 0 || !qs->context() */ ) return O_r_b::invoke(f); else try { return O_r_b::invoke(f); } catch(const std::exception& e) { +#if 0 const Script_exception* se = dynamic_cast(&e); QScriptContext* context = qs->context(); QStringList qt_bt = context->backtrace(); @@ -121,9 +123,11 @@ wrap_a_call_to_cpp(Callable f, qScriptValueFromSequence(context->engine(), qt_bt)); std::cerr << "result after throwError: " << qPrintable(v.toString()) << std::endl; +#endif return Return_type(); } } +#endif } // end namespace Three } // end namespace CGAL From b80fbc83d08a059d2cfdc176009636c3216f6e4f Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 20 Apr 2023 08:18:29 +0100 Subject: [PATCH 09/85] Fixes for target Mesh_3 --- .../Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp | 2 +- Polyhedron/demo/Polyhedron/Scene_plane_item.cpp | 15 +++++++++------ .../Scene_polyhedron_selection_item.cpp | 2 +- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp index 68c3053d876b..f137b7eb46e6 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp @@ -666,7 +666,7 @@ public Q_SLOTS: QApplication::setOverrideCursor(Qt::WaitCursor); //Control widgets creation QLayout* layout = createOrGetDockLayout(); - QRegExpValidator* validator = new QRegExpValidator(QRegExp("\\d*"), this); + QRegularExpressionValidator* validator = new QRegularExpressionValidator(QRegularExpression("\\d*"), this); bool show_sliders = true; if(x_control == nullptr) { diff --git a/Polyhedron/demo/Polyhedron/Scene_plane_item.cpp b/Polyhedron/demo/Polyhedron/Scene_plane_item.cpp index ea241f1cd780..ba455ac0cc22 100644 --- a/Polyhedron/demo/Polyhedron/Scene_plane_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_plane_item.cpp @@ -5,7 +5,7 @@ #include #include #include -#include +#include #include using namespace CGAL::Three; typedef Triangle_container Tc; @@ -307,13 +307,14 @@ void Scene_plane_item::setPlaneOrientation() { bool does_match = true; //check that the result is of the form %1*x + %2*y + %3*z + %4 = 0, modulo the whitespaces. - QRegExp rx( + QRegularExpression rx( "(\\-?\\s*\\d*\\.?\\d*(?:e\\-?\\d*)?)\\s*\\*\\s*x\\s*\\+?\\s*(\\-?\\s*\\d*\\.?\\d*(?:e\\-?\\d*)?)\\s*\\*\\s*y\\s*\\+?\\s*(\\-?\\s*\\d*\\.?\\d*(?:e\\-?\\d*)?)\\s*\\*\\s*z\\s*\\+?\\s*(\\-?\\s*\\d*\\.?\\d*(?:e\\-?\\d*)?)\\s*=\\s*0" ); const CGAL::qglviewer::Vec offset = static_cast(CGAL::QGLViewer::QGLViewerPool().first())->offset(); QVector3D qoffset(offset.x, offset.y, offset.z); const CGAL::qglviewer::Vec& pos = frame->position(); const CGAL::qglviewer::Vec& n = frame->inverseTransformOf(CGAL::qglviewer::Vec(0.f, 0.f, 1.f)); + QRegularExpressionMatch match; do{ bool ok; @@ -327,13 +328,15 @@ void Scene_plane_item::setPlaneOrientation() &ok); if(!ok) return; - does_match = rx.exactMatch(eq); - if(!does_match) + + match = rx.match(eq); // AF: exact? + // does_match = rx.exactMatch(eq); + if(! match.hasMatch()) { QMessageBox::warning(CGAL::Three::Three::mainWindow(),"Error","The input must be of the form a*x+b*y+c*z+d=0"); } - }while(!does_match); - double a(rx.cap(1).toDouble()), b(rx.cap(2).toDouble()), c(rx.cap(3).toDouble()), d(rx.cap(4).toDouble()); + }while(! match.hasMatch()); + double a(match.captured(1).toDouble()), b(match.captured(2).toDouble()), c(match.captured(3).toDouble()), d(match.captured(4).toDouble()); Kernel_epic::Point_3 sure_point(0,0,0); if(c != 0) diff --git a/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp b/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp index 561f3f7c8fb7..e6922054fbe2 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp @@ -1830,7 +1830,7 @@ Scene_polyhedron_selection_item::Scene_polyhedron_selection_item(Scene_face_grap { common_constructor(); QString sf = poly_item->property("source filename").toString(); - QRegExp rx("\\.(ts$|off$|obj$|ply$|stl$|surf$|vtk$|vtp$|vtu)"); + QRegularExpression rx("\\.(ts$|off$|obj$|ply$|stl$|surf$|vtk$|vtp$|vtu)"); sf.remove(rx); if(!sf.isEmpty()) setProperty("defaultSaveDir", sf); From bd78a33b206fa0efaae62314a8d96f367e6b55b8 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 20 Apr 2023 09:52:25 +0100 Subject: [PATCH 10/85] PMP compiles [skip ci] --- .../Classification/Classification_plugin.cpp | 2 +- .../Plugins/PCA/Affine_transform_plugin.cpp | 2 +- .../Plugins/PCA/Basic_generator_plugin.cpp | 20 +++++++++---------- .../Scene_edit_polyhedron_item.h | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Classification/Classification_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Classification/Classification_plugin.cpp index 586c45709638..5ac906e1c560 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Classification/Classification_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Classification/Classification_plugin.cpp @@ -1389,7 +1389,7 @@ public Q_SLOTS: QAction* add_selection = label_buttons.back().menu->addAction ("Add selection to training set"); - add_selection->setShortcut(Qt::SHIFT | (Qt::Key_A + (label_button.shortcut - 'a'))); + add_selection->setShortcut(QKeySequence(Qt::SHIFT | (Qt::Key_A + (label_button.shortcut - 'a')))); // add_selection->setShortcut(Qt::Key_0 + label_buttons.size() - 1); connect(add_selection, SIGNAL(triggered()), this, diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp index 9e2af43a3186..a1ca2fe9f62d 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp @@ -727,7 +727,7 @@ void Polyhedron_demo_affine_transform_plugin::normalize(Item* item) double max = (std::max)((double)tsr.x()-bil.x(), (double)tsr.y()-bil.y()); max = (std::max)(max, (double)tsr.z()-bil.z()); QVector3D v_bil= QVector3D(bil.x(),bil.y(),bil.z()); - QMatrix4x4 frameMat = QMatrix(); + QMatrix4x4 frameMat = QMatrix4x4(); QVector3D center(item->center().x, item->center().y, item->center().z); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Basic_generator_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Basic_generator_plugin.cpp index c7a62533106d..4397d8f9362a 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Basic_generator_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Basic_generator_plugin.cpp @@ -369,7 +369,7 @@ void Basic_generator_plugin::generateCube() for(int i=0; i<8; ++i) { - QStringList list = point_texts[i].split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = point_texts[i].split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size()!=3){ QMessageBox *msgBox = new QMessageBox; @@ -410,7 +410,7 @@ void Basic_generator_plugin::generateCube() else { QString text = dock_widget->extremaEdit->text(); - QStringList list = text.split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = text.split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size()!=6){ QMessageBox *msgBox = new QMessageBox; @@ -461,7 +461,7 @@ void Basic_generator_plugin::generatePrism() bool is_closed = dock_widget->prismCheckBox->isChecked(); QString text = dock_widget->prism_lineEdit->text(); - QStringList list = text.split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = text.split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size()!=3){ QMessageBox *msgBox = new QMessageBox; @@ -508,7 +508,7 @@ void Basic_generator_plugin::generatePyramid() bool is_closed = dock_widget->pyramidCheckBox->isChecked(); QString text = dock_widget->pyramid_lineEdit->text(); - QStringList list = text.split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = text.split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size()!=3){ QMessageBox *msgBox = new QMessageBox; @@ -551,7 +551,7 @@ void Basic_generator_plugin::generateSphere() { int precision = dock_widget->SphereSpinBox->value(); QString text = dock_widget->center_radius_lineEdit->text(); - QStringList list = text.split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = text.split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size()!=4){ QMessageBox *msgBox = new QMessageBox; @@ -601,7 +601,7 @@ void Basic_generator_plugin::generateTetrahedron() for (int i = 0; i < 4; ++i) { - QStringList list = point_texts[i].split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = point_texts[i].split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size() != 3) { QMessageBox* msgBox = new QMessageBox; @@ -635,7 +635,7 @@ void Basic_generator_plugin::generateTetrahedron() else { QString text = dock_widget->point_textEdit_2->toPlainText(); - QStringList list = text.split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = text.split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size() != 12) { QMessageBox* msgBox = new QMessageBox; @@ -676,7 +676,7 @@ void Basic_generator_plugin::generatePoints() { QString text = dock_widget->point_textEdit->toPlainText(); Scene_points_with_normal_item* item = new Scene_points_with_normal_item(); - QStringList list = text.split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = text.split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); int counter = 0; double coord[3]; bool ok = true; @@ -735,7 +735,7 @@ void Basic_generator_plugin::generateLines() std::vector& polyline = *(polylines.rbegin()); QStringList polylines_metadata; - QStringList list = text.split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = text.split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); int counter = 0; double coord[3]; bool ok = true; @@ -867,7 +867,7 @@ void Basic_generator_plugin::generateGrid() bool triangulated = dock_widget->grid_checkBox->isChecked(); points_text= dock_widget->grid_lineEdit->text(); - QStringList list = points_text.split(QRegExp("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); + QStringList list = points_text.split(QRegularExpression("\\s+"), CGAL_QT_SKIP_EMPTY_PARTS); if (list.isEmpty()) return; if (list.size()!=6){ QMessageBox *msgBox = new QMessageBox; diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.h b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.h index 3fc7b02d1ddf..bd93820384fa 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.h +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.h @@ -26,9 +26,9 @@ #include #include -#include -#include -#include +#include +#include +#include typedef boost::graph_traits::vertex_descriptor sm_vertex_descriptor; From ab1d7990d2f1fe2275d4d839aa476176bbffa5db Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 20 Apr 2023 11:14:11 +0100 Subject: [PATCH 11/85] various fixes [skip ci] --- GraphicsView/include/CGAL/Qt/qglviewer_impl.h | 6 ++---- Polyhedron/demo/Polyhedron/Show_point_dialog.cpp | 13 ++++++------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h index c8dec4a0725d..e1ead77a2276 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h @@ -2456,10 +2456,8 @@ void CGAL::QGLViewer::setMouseBinding(::Qt::Key key, ::Qt::KeyboardModifiers mod mouseBinding_.insert(mbp, map); ClickBindingPrivate cbp(modifiers, button, false, ::Qt::NoButton, key); - - // AF: currently results in a runtime error - // clickBinding_.remove(cbp); - + clickBinding_.remove(cbp); + } diff --git a/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp b/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp index 1654dadf30bc..5df594bc57c4 100644 --- a/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp +++ b/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp @@ -51,15 +51,16 @@ void Show_point_dialog::interprete_string(const QString& string) + "|" + not_double_char_re + "+" + double_re + ")" + "$"; -#if 0 // AF @todo QRegExp had exactMatch() and cap() + QRegularExpression re(full_re); - if(re.exactMatch(string)) { + QRegularExpressionMatch match = re.match(string); // AF @todo QRegExp had exactMatch() + if(match.hasMatch()) { // const double x = re.cap(1).toDouble(); // const double y = re.cap(2).toDouble(); // const double z = re.cap(3).toDouble(); - ui->coord_x->setText(QString(re.cap(1))); - ui->coord_y->setText(QString(re.cap(2))); - ui->coord_z->setText(QString(re.cap(3))); + ui->coord_x->setText(QString(match.captured(1))); + ui->coord_y->setText(QString(match.captured(2))); + ui->coord_z->setText(QString(match.captured(3))); m_has_correct_coordinates = true; } else { @@ -68,7 +69,6 @@ void Show_point_dialog::interprete_string(const QString& string) ui->coord_z->setText(QString()); m_has_correct_coordinates = false; } -#endif } double Show_point_dialog::get_x() const @@ -90,4 +90,3 @@ bool Show_point_dialog::has_correct_coordinates() const { return m_has_correct_coordinates; } - From c77f1443072722dd9f239303423a0114f9e8c1fb Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 20 Apr 2023 11:38:47 +0100 Subject: [PATCH 12/85] various fixes [skip ci] --- Polyhedron/demo/Polyhedron/MainWindow.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.cpp b/Polyhedron/demo/Polyhedron/MainWindow.cpp index 4560cf9aceea..91d3d9b1d47e 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.cpp +++ b/Polyhedron/demo/Polyhedron/MainWindow.cpp @@ -600,7 +600,7 @@ void MainWindow::enableScriptDebugger(bool b /* = true */) this->error(tr("Your version of Qt is too old, and for that reason " "the Qt Script Debugger is not available.")); } -#endif +#endif namespace { bool actionsByName(QAction* x, QAction* y) { @@ -2070,17 +2070,16 @@ void MainWindow::on_actionSaveAs_triggered() .arg(item->name())); return; } -#if 0 // AF + Q_FOREACH(QString string, filters) { QStringList sl = string.split(";;"); Q_FOREACH(QString s, sl){ - int pos = extensions.indexIn(s); - if( pos >-1) - filter_exts.append(extensions.capturedTexts()); + QRegularExpressionMatch match = extensions.match(s); + if(match.hasMatch()) + filter_exts.append(match.capturedTexts()); } } -#endif filters << tr("All files (*)"); if(canSavePlugins.isEmpty()) { @@ -3878,7 +3877,7 @@ void MainWindow::on_actionLoad_a_Scene_from_a_Script_File_triggered() if(filename.isEmpty()) return; } - + if(do_download){ QFile tmp_file(filename); tmp_file.remove(); From b15e0a1ea256e21a5f904f7ab27404e3ef2a8de1 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 20 Apr 2023 15:54:44 +0100 Subject: [PATCH 13/85] Fix 'Save As' [skip ci] --- Polyhedron/demo/Polyhedron/MainWindow.cpp | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.cpp b/Polyhedron/demo/Polyhedron/MainWindow.cpp index 91d3d9b1d47e..40e14de0d22c 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.cpp +++ b/Polyhedron/demo/Polyhedron/MainWindow.cpp @@ -1141,25 +1141,22 @@ bool MainWindow::file_matches_filter(const QString& filters, const QString& filename ) { QFileInfo fileinfo(filename); - QString filename_striped=fileinfo.fileName(); + QString filename_stripped=fileinfo.fileName(); //match all filters between () QRegularExpression all_filters_rx("\\((.*)\\)"); QStringList split_filters = filters.split(";;"); Q_FOREACH(const QString& filter, split_filters) { - //extract filters -#if 0 // AF @todo - if ( all_filters_rx.indexIn(filter)!=-1 ){ - Q_FOREACH(const QString& pattern,all_filters_rx.cap(1).split(' ')){ - QRegularExpression rx(pattern); - rx.setPatternSyntax(QRegularExpression::Wildcard); - if ( rx.exactMatch(filename_striped) ){ - return true; + QRegularExpressionMatch match = all_filters_rx.match(filter); + if(match.hasMatch()){ + for (const QString& pattern : match.captured(1).split(' ')) { + QRegularExpressionMatch m = QRegularExpression(QRegularExpression::fromWildcard(pattern)).match(filename_stripped); + if (m.hasMatch()) { + return true; + } } } - } -#endif } return false; } From 0574c6ba4cad8e73f0902840490abea8c9da6576 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 20 Apr 2023 16:35:14 +0100 Subject: [PATCH 14/85] Change the remaining CMakeLists.txt [skip ci] --- .../demo/Alpha_shapes_3/CMakeLists.txt | 18 +++---- .../Arrangement_on_surface_2/CMakeLists.txt | 28 +++++------ .../demo/Circular_kernel_3/CMakeLists.txt | 14 +++--- .../Hyperbolic_triangulation_2/CMakeLists.txt | 20 ++++---- .../demo/Linear_cell_complex/CMakeLists.txt | 20 ++++---- .../CMakeLists.txt | 50 +++++++++---------- .../Periodic_3_triangulation_3/CMakeLists.txt | 44 ++++++++-------- .../demo/Periodic_Lloyd_3/CMakeLists.txt | 38 +++++++------- .../CMakeLists.txt | 16 +++--- .../Polyline_simplification_2/CMakeLists.txt | 16 +++--- .../CMakeLists.txt | 38 +++++++------- .../demo/Triangulation_3/CMakeLists.txt | 34 ++++++------- .../Triangulation_on_sphere_2/CMakeLists.txt | 18 +++---- 13 files changed, 177 insertions(+), 177 deletions(-) diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt b/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt index ec2a2a8dbb46..b74ed758e222 100644 --- a/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt @@ -17,11 +17,11 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) @@ -29,24 +29,24 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) include_directories(BEFORE ./) # ui file, created with Qt Designer - qt5_wrap_ui(uis MainWindow.ui) + qt6_wrap_ui(uis MainWindow.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Alpha_shape_3.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Alpha_shape_3.qrc) add_executable( Alpha_shape_3 Alpha_shape_3.cpp MainWindow.cpp Viewer.cpp ${uis} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Alpha_shape_3) - target_link_libraries(Alpha_shape_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::OpenGL Qt5::Gui) + target_link_libraries(Alpha_shape_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::OpenGLWidgets Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Alpha_shape_3) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt index 82e33197dae2..6b221f35824b 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt @@ -12,10 +12,10 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt5) -find_package(Qt5 QUIET COMPONENTS Gui Widgets) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt6) +find_package(Qt6 QUIET COMPONENTS Gui Widgets) -if (CGAL_Qt5_FOUND AND Qt5_FOUND) +if (CGAL_Qt6_FOUND AND Qt6_FOUND) include(${CGAL_USE_FILE}) add_compile_definitions(QT_NO_KEYWORDS) include_directories( BEFORE ./ ) @@ -50,7 +50,7 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) endif() - qt5_wrap_ui(arrangement_2_uis + qt6_wrap_ui(arrangement_2_uis ArrangementDemoWindow.ui NewTabDialog.ui OverlayDialog.ui @@ -58,7 +58,7 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) AlgebraicCurveInputDialog.ui RationalCurveInputDialog.ui) - qt5_wrap_cpp(CGAL_Qt5_MOC_FILES + qt6_wrap_cpp(CGAL_Qt6_MOC_FILES ArrangementDemoWindow.h ArrangementDemoTab.h GraphicsViewCurveInput.h @@ -70,7 +70,7 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) ColorItemEditor.h PropertyValueDelegate.h) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES Arrangement_on_surface_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES Arrangement_on_surface_2.qrc) add_executable(arrangement_2 arrangement_2.cpp @@ -107,11 +107,11 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) ArrangementIO.cpp ${UTILS_COMPILE_FILES} ${arrangement_2_uis} - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES}) - target_link_libraries(arrangement_2 PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets) - target_link_libraries(arrangement_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5) + target_link_libraries(arrangement_2 PRIVATE Qt6::Core Qt6::Gui Qt6::Widgets) + target_link_libraries(arrangement_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6) if(CGAL_Core_FOUND) target_link_libraries(arrangement_2 PRIVATE CGAL::CGAL_Core) endif() @@ -124,11 +124,11 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) else() set(MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) - set(MISSING_DEPS "the CGAL Qt5 library, ${MISSING_DEPS}") + if(NOT CGAL_Qt6_FOUND) + set(MISSING_DEPS "the CGAL Qt6 library, ${MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(MISSING_DEPS "Qt5, ${MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(MISSING_DEPS "Qt6, ${MISSING_DEPS}") endif() message("NOTICE: This demo requires ${MISSING_DEPS} and will not be compiled.") endif() diff --git a/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt b/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt index 54c3be3aba43..85038ef29987 100644 --- a/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt +++ b/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt @@ -10,20 +10,20 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL) +find_package(Qt6 QUIET COMPONENTS OpenGLWidget) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_executable( Circular_kernel_3 Circular_kernel_3.cpp Viewer.cpp - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Circular_kernel_3) - target_link_libraries(Circular_kernel_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::OpenGL Qt5::Gui) + target_link_libraries(Circular_kernel_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::OpenGLWidget Qt6::Gui) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Circular_kernel_3) @@ -33,6 +33,6 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt index fbdf3791ccbf..7fa99290718d 100644 --- a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt +++ b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt @@ -11,25 +11,25 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt6) find_package(LEDA QUIET) -# Find Qt5 itself -find_package(Qt5 QUIET COMPONENTS OpenGL Gui) +# Find Qt6 itself +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Gui) -if(CGAL_Qt5_FOUND - AND Qt5_FOUND +if(CGAL_Qt6_FOUND + AND Qt6_FOUND AND (CGAL_Core_FOUND OR LEDA_FOUND)) # ui files, created with Qt Designer - qt5_wrap_ui(UIS HDT2.ui) + qt6_wrap_ui(UIS HDT2.ui) - qt5_add_resources(RESOURCE_FILES resources/Delaunay_triangulation_2.qrc) + qt6_add_resources(RESOURCE_FILES resources/Delaunay_triangulation_2.qrc) # cpp files - add_executable ( HDT2 HDT2.cpp ${CGAL_Qt5_RESOURCE_FILES} ${RESOURCE_FILES} ${UIS}) + add_executable ( HDT2 HDT2.cpp ${CGAL_Qt6_RESOURCE_FILES} ${RESOURCE_FILES} ${UIS}) target_include_directories(HDT2 PRIVATE ./ ./include) add_to_cached_list( CGAL_EXECUTABLE_TARGETS HDT2 ) - target_link_libraries ( HDT2 CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Widgets) + target_link_libraries ( HDT2 CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) if(CGAL_Core_FOUND) target_link_libraries ( HDT2 CGAL::CGAL_Core) else() @@ -39,5 +39,5 @@ if(CGAL_Qt5_FOUND include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test( HDT2 ) else() - message("NOTICE: This demo requires CGAL_Core (or LEDA), and Qt5 and will not be compiled.") + message("NOTICE: This demo requires CGAL_Core (or LEDA), and Qt6 and will not be compiled.") endif() diff --git a/Linear_cell_complex/demo/Linear_cell_complex/CMakeLists.txt b/Linear_cell_complex/demo/Linear_cell_complex/CMakeLists.txt index 66c6e7088aa5..cda51b9191e8 100644 --- a/Linear_cell_complex/demo/Linear_cell_complex/CMakeLists.txt +++ b/Linear_cell_complex/demo/Linear_cell_complex/CMakeLists.txt @@ -40,26 +40,26 @@ add_definitions(-DCGAL_PROFILE_LCC_DEMO) add_definitions(-DCMAP_WITH_INDEX) # to use cc with index (handle otherwise) ################## -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg) if(NOT - (CGAL_Qt5_FOUND - AND Qt5_FOUND)) + (CGAL_Qt6_FOUND + AND Qt6_FOUND)) - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") else() add_definitions(-DCGAL_USE_BASIC_VIEWER -DQT_NO_KEYWORDS) # ui file, created with Qt Designer - qt5_wrap_ui(uis MainWindow.ui CreateMesh.ui CreateMenger.ui + qt6_wrap_ui(uis MainWindow.ui CreateMesh.ui CreateMenger.ui CreateSierpinskiCarpet.ui CreateSierpinskiTriangle.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Linear_cell_complex_3.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Linear_cell_complex_3.qrc) add_executable( Linear_cell_complex_3_demo @@ -73,13 +73,13 @@ else() MainWindow.h Viewer.h ${uis} - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Linear_cell_complex_3_demo) target_link_libraries(Linear_cell_complex_3_demo - PUBLIC CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Gui Qt5::OpenGL) + PUBLIC CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Gui Qt6::OpenGLWidgets) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Linear_cell_complex_3_demo) diff --git a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt index 96eb570c9c94..bdb94342a0a8 100644 --- a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt +++ b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt @@ -15,15 +15,15 @@ endif() # Include this package's headers first include_directories(BEFORE ./ ./include) -# Find CGAL and CGAL Qt5 -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +# Find CGAL and CGAL Qt6 +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -# Find Qt5 itself -find_package(Qt5 5.4 QUIET COMPONENTS OpenGL) -if(Qt5_FOUND) +# Find Qt6 itself +find_package(Qt6 5.4 QUIET COMPONENTS OpenGLWidgets) +if(Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) -endif(Qt5_FOUND) +endif(Qt6_FOUND) # Find CImg find_path( @@ -39,37 +39,37 @@ else() "Try setting the environment variable CIMG_INC_DIR to point to the path of the directory containing CImg.h.") endif() -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(SRCS glviewer.cpp scene.cpp Otr2_demo.cpp window.cpp render.cpp) - set(CGAL_Qt5_MOC_FILES moc_dialog_options.cxx moc_glviewer.cxx moc_window.cxx) + set(CGAL_Qt6_MOC_FILES moc_dialog_options.cxx moc_glviewer.cxx moc_window.cxx) set(UIS pwsrec.ui options.ui) - qt5_wrap_ui(UI_FILES ${UIS}) + qt6_wrap_ui(UI_FILES ${UIS}) include(AddFileDependencies) - qt5_generate_moc("window.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_window.cxx") + qt6_generate_moc("window.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_window.cxx") add_file_dependencies(moc_window.cxx "${CMAKE_CURRENT_SOURCE_DIR}/window.h") - qt5_generate_moc("glviewer.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_glviewer.cxx") + qt6_generate_moc("glviewer.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_glviewer.cxx") add_file_dependencies(moc_glviewer.cxx "${CMAKE_CURRENT_SOURCE_DIR}/glviewer.h") - qt5_generate_moc("dialog_options.h" + qt6_generate_moc("dialog_options.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_dialog_options.cxx") add_file_dependencies(moc_dialog_options.cxx "${CMAKE_CURRENT_SOURCE_DIR}/dialog_options.h") - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES pwsrec.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES pwsrec.qrc) - add_executable(Otr2_demo ${SRCS} ${CGAL_Qt5_MOC_FILES} ${UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES}) + add_executable(Otr2_demo ${SRCS} ${CGAL_Qt6_MOC_FILES} ${UI_FILES} + ${CGAL_Qt6_RESOURCE_FILES}) - target_link_libraries(Otr2_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Gui - Qt5::OpenGL) + target_link_libraries(Otr2_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Gui + Qt6::OpenGLWidgets) # Link with pthread if necessary if(CIMG_INCLUDE_DIR) @@ -88,21 +88,21 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Otr2_demo) else( - CGAL_Qt5_FOUND - AND Qt5_FOUND) + CGAL_Qt6_FOUND + AND Qt6_FOUND) set(OTR2_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) - set(OTR2_MISSING_DEPS "the CGAL Qt5 library, ${OTR2_MISSING_DEPS}") + if(NOT CGAL_Qt6_FOUND) + set(OTR2_MISSING_DEPS "the CGAL Qt6 library, ${OTR2_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(OTR2_MISSING_DEPS "Qt5.4, ${OTR2_MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(OTR2_MISSING_DEPS "Qt6.4, ${OTR2_MISSING_DEPS}") endif() message("NOTICE: This demo requires ${OTR2_MISSING_DEPS} and will not be compiled.") endif( - CGAL_Qt5_FOUND - AND Qt5_FOUND) + CGAL_Qt6_FOUND + AND Qt6_FOUND) diff --git a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt index 3692008579ee..f668d13ffdb0 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt @@ -14,37 +14,37 @@ if(POLICY CMP0071) endif() # Find CGAL -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -# Find Qt5 itself -find_package(Qt5 QUIET COMPONENTS OpenGL Help Core) +# Find Qt6 itself +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Help Core) -if(Qt5_FOUND) +if(Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) -endif(Qt5_FOUND) +endif(Qt6_FOUND) -if(Qt5Help_VERSION VERSION_LESS 5.12) - set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt5::qcollectiongenerator) +if(Qt6Help_VERSION VERSION_LESS 5.12) + set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt6::qcollectiongenerator) else() - set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt5::qhelpgenerator) + set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt6::qhelpgenerator) endif() -if(CGAL_Qt5_FOUND - AND Qt5_FOUND +if(CGAL_Qt6_FOUND + AND Qt6_FOUND AND TARGET ${CGAL_QCOLLECTIONGENERATOR_TARGET}) # UI files (Qt Designer files) - qt5_wrap_ui(UI_FILES MainWindow.ui) + qt6_wrap_ui(UI_FILES MainWindow.ui) # qrc files (resource files) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Periodic_3_triangulation_3.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Periodic_3_triangulation_3.qrc) # use the Qt MOC preprocessor on classes that derive from QObject - qt5_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_Scene.cpp") - qt5_generate_moc("MainWindow.h" + qt6_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_Scene.cpp") + qt6_generate_moc("MainWindow.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_MainWindow.cpp") - qt5_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_Viewer.cpp") + qt6_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_Viewer.cpp") # generate QtAssistant collection file add_custom_command( @@ -66,14 +66,14 @@ if(CGAL_Qt5_FOUND MainWindow.ui moc_MainWindow.cpp ${UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES} + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES} Periodic_3_triangulation_3.qhc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS periodic_3_triangulation_3_demo) target_link_libraries(periodic_3_triangulation_3_demo - PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::OpenGL) + PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::OpenGLWidgets) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(periodic_3_triangulation_3_demo) @@ -81,14 +81,14 @@ else() set(PERIODIC_TRIANGULATION_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) + if(NOT CGAL_Qt6_FOUND) set(PERIODIC_TRIANGULATION_MISSING_DEPS - "the CGAL Qt5 library, ${PERIODIC_TRIANGULATION_MISSING_DEPS}") + "the CGAL Qt6 library, ${PERIODIC_TRIANGULATION_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) + if(NOT Qt6_FOUND) set(PERIODIC_TRIANGULATION_MISSING_DEPS - "Qt5, ${PERIODIC_TRIANGULATION_MISSING_DEPS}") + "Qt6, ${PERIODIC_TRIANGULATION_MISSING_DEPS}") endif() if(NOT TARGET ${CGAL_QCOLLECTIONGENERATOR_TARGET}) diff --git a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt index 63284a9ba629..a587c2deb4f8 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt @@ -17,27 +17,27 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Script Help OpenGL Svg) +find_package(Qt6 QUIET COMPONENTS Help OpenGLWidget Svg) -if(Qt5Help_VERSION VERSION_LESS 5.12) - set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt5::qcollectiongenerator) +if(Qt6Help_VERSION VERSION_LESS 5.12) + set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt6::qcollectiongenerator) else() - set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt5::qhelpgenerator) + set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt6::qhelpgenerator) endif() -if(CGAL_Qt5_FOUND - AND Qt5_FOUND +if(CGAL_Qt6_FOUND + AND Qt6_FOUND AND TARGET ${CGAL_QCOLLECTIONGENERATOR_TARGET}) include_directories(BEFORE ./) # ui file, created with Qt Designer - qt5_wrap_ui(uis MainWindow.ui) + qt6_wrap_ui(uis MainWindow.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Periodic_Lloyd_3.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Periodic_Lloyd_3.qrc) if(DEFINED QT_QCOLLECTIONGENERATOR_EXECUTABLE) @@ -62,29 +62,29 @@ if(CGAL_Qt5_FOUND MainWindow.cpp Viewer.cpp ${uis} - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Periodic_Lloyd_3) - target_link_libraries(Periodic_Lloyd_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::OpenGL) + target_link_libraries(Periodic_Lloyd_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::OpenGLWidget) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Periodic_Lloyd_3) -else(CGAL_Qt5_FOUND - AND Qt5_FOUND +else(CGAL_Qt6_FOUND + AND Qt6_FOUND AND QT_QCOLLECTIONGENERATOR_EXECUTABLE) set(PERIODIC_LLOYD_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) + if(NOT CGAL_Qt6_FOUND) set(PERIODIC_LLOYD_MISSING_DEPS - "the CGAL Qt5 library, ${PERIODIC_LLOYD_MISSING_DEPS}") + "the CGAL Qt6 library, ${PERIODIC_LLOYD_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(PERIODIC_LLOYD_MISSING_DEPS "Qt5, ${PERIODIC_LLOYD_MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(PERIODIC_LLOYD_MISSING_DEPS "Qt6, ${PERIODIC_LLOYD_MISSING_DEPS}") endif() if(NOT QT_QCOLLECTIONGENERATOR_EXECUTABLE) diff --git a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt index a2b4110a07f0..cda66cbac6e7 100644 --- a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt +++ b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt @@ -8,28 +8,28 @@ include_directories(${CMAKE_BINARY_DIR}) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) -find_package(CGAL REQUIRED COMPONENTS Core Qt5) +find_package(CGAL REQUIRED COMPONENTS Core Qt6) include(${CGAL_USE_FILE}) find_package(LEDA QUIET) -find_package(Qt5 QUIET COMPONENTS Widgets) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) if((CGAL_Core_FOUND OR LEDA_FOUND) - AND Qt5_FOUND - AND CGAL_Qt5_FOUND) + AND Qt6_FOUND + AND CGAL_Qt6_FOUND) include_directories(BEFORE include) # ui files, created with Qt Designer - qt5_wrap_ui(UIS P4HDT2.ui) + qt6_wrap_ui(UIS P4HDT2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(RESOURCE_FILES Main_resources.qrc) + qt6_add_resources(RESOURCE_FILES Main_resources.qrc) # cpp files add_executable(P4HDT2 P4HDT2.cpp ${RESOURCE_FILES} ${UIS}) - target_link_libraries(P4HDT2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Widgets) + target_link_libraries(P4HDT2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) if(TARGET CGAL::CGAL_Core) target_link_libraries(P4HDT2 PRIVATE CGAL::CGAL_Core) endif() @@ -41,5 +41,5 @@ if((CGAL_Core_FOUND OR LEDA_FOUND) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(P4HDT2) else() - message("NOTICE: This demo requires Qt5 and will not be compiled.") + message("NOTICE: This demo requires Qt6 and will not be compiled.") endif() diff --git a/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt b/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt index 002fd913902f..f9da2a3bfb7d 100644 --- a/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt +++ b/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt @@ -13,33 +13,33 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) set(CMAKE_INCLUDE_CURRENT_DIR ON) -find_package(Qt5 QUIET COMPONENTS Script OpenGL Widgets Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Widgets Svg) include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR}/include) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_AUTOMOC ON) add_definitions(-DQT_NO_KEYWORDS) # UI files (Qt Designer files) - qt5_wrap_ui(CDT_UI_FILES Polyline_simplification_2.ui) + qt6_wrap_ui(CDT_UI_FILES Polyline_simplification_2.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/Polyline_simplification_2.qrc) # The executable itself. add_executable( Polyline_simplification_2 ${CMAKE_CURRENT_SOURCE_DIR}/Polyline_simplification_2.cpp ${CDT_UI_FILES} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) target_link_libraries(Polyline_simplification_2 - PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 Qt5::Gui) + PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Gui) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Polyline_simplification_2) @@ -48,6 +48,6 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/Principal_component_analysis/demo/Principal_component_analysis/CMakeLists.txt b/Principal_component_analysis/demo/Principal_component_analysis/CMakeLists.txt index 6ec0024f3a59..b00178ac2338 100644 --- a/Principal_component_analysis/demo/Principal_component_analysis/CMakeLists.txt +++ b/Principal_component_analysis/demo/Principal_component_analysis/CMakeLists.txt @@ -14,8 +14,8 @@ endif() include_directories(./) -# Find CGAL and CGAL Qt5 -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +# Find CGAL and CGAL Qt6 +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) find_package(Eigen3 3.1.0 QUIET) #(requires 3.1.0 or greater) include(CGAL_Eigen3_support) @@ -24,52 +24,52 @@ if(NOT TARGET CGAL::Eigen3_support) return() endif() -# Find Qt5 itself -find_package(Qt5 QUIET COMPONENTS Script OpenGL) +# Find Qt6 itself +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_INCLUDE_CURRENT_DIR ON) - qt5_wrap_ui(UI_FILES MainWindow.ui) + qt6_wrap_ui(UI_FILES MainWindow.ui) include(AddFileDependencies) - qt5_generate_moc("MainWindow.h" + qt6_generate_moc("MainWindow.h" "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp") add_file_dependencies(MainWindow_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/MainWindow.h") - qt5_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") + qt6_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") add_file_dependencies(Viewer_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/Viewer.h") - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES PCA_demo.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES PCA_demo.qrc) add_file_dependencies( PCA_demo.cpp "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") - add_executable(PCA_demo PCA_demo.cpp ${UI_FILES} ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES}) + add_executable(PCA_demo PCA_demo.cpp ${UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES}) - target_link_libraries(PCA_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - CGAL::Eigen3_support Qt5::Gui) + target_link_libraries(PCA_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + CGAL::Eigen3_support Qt6::Gui) add_to_cached_list(CGAL_EXECUTABLE_TARGETS PCA_demo) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(PCA_demo) -else(CGAL_Qt5_FOUND AND Qt5_FOUND) +else(CGAL_Qt6_FOUND AND Qt6_FOUND) set(PCA_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) - set(PCA_MISSING_DEPS "the CGAL Qt5 library, ${PCA_MISSING_DEPS}") + if(NOT CGAL_Qt6_FOUND) + set(PCA_MISSING_DEPS "the CGAL Qt6 library, ${PCA_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(PCA_MISSING_DEPS "Qt5, ${PCA_MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(PCA_MISSING_DEPS "Qt6, ${PCA_MISSING_DEPS}") endif() message("NOTICE: This demo requires ${PCA_MISSING_DEPS} and will not be compiled.") -endif(CGAL_Qt5_FOUND AND Qt5_FOUND) +endif(CGAL_Qt6_FOUND AND Qt6_FOUND) diff --git a/Triangulation_3/demo/Triangulation_3/CMakeLists.txt b/Triangulation_3/demo/Triangulation_3/CMakeLists.txt index d142ca179899..3c4b5f8ad346 100644 --- a/Triangulation_3/demo/Triangulation_3/CMakeLists.txt +++ b/Triangulation_3/demo/Triangulation_3/CMakeLists.txt @@ -18,14 +18,14 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS OpenGL) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets) -if(Qt5_FOUND) +if(Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) -endif(Qt5_FOUND) +endif(Qt6_FOUND) # Activate concurrency ? (turned OFF by default) option(CGAL_ACTIVATE_CONCURRENT_TRIANGULATION_3 @@ -45,15 +45,15 @@ else(CGAL_ACTIVATE_CONCURRENT_TRIANGULATION_3) endif(LINK_WITH_TBB) endif() -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) include_directories(BEFORE ./) # ui files, created with Qt Designer - qt5_wrap_ui(uis MainWindow.ui) + qt6_wrap_ui(uis MainWindow.ui) # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./T3_demo.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./T3_demo.qrc) # cpp files add_executable( @@ -64,13 +64,13 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) PreferenceDlg.cpp Scene.cpp ${uis} - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS T3_demo) - target_link_libraries(T3_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt5) - target_link_libraries(T3_demo PRIVATE Qt5::OpenGL) + target_link_libraries(T3_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6) + target_link_libraries(T3_demo PRIVATE Qt6::OpenGLWidgets) if(TARGET CGAL::TBB_support) target_link_libraries(T3_demo PUBLIC CGAL::TBB_support) endif() @@ -81,19 +81,19 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(T3_demo) -else(CGAL_Qt5_FOUND AND Qt5_FOUND) +else(CGAL_Qt6_FOUND AND Qt6_FOUND) set(TRIANGULATION_3_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) + if(NOT CGAL_Qt6_FOUND) set(TRIANGULATION_3_MISSING_DEPS - "the CGAL Qt5 library, ${TRIANGULATION_3_MISSING_DEPS}") + "the CGAL Qt6 library, ${TRIANGULATION_3_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(TRIANGULATION_3_MISSING_DEPS "Qt5, ${TRIANGULATION_3_MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(TRIANGULATION_3_MISSING_DEPS "Qt6, ${TRIANGULATION_3_MISSING_DEPS}") endif() message("NOTICE: This demo requires ${TRIANGULATION_3_MISSING_DEPS}, and will not be compiled.") -endif(CGAL_Qt5_FOUND AND Qt5_FOUND) +endif(CGAL_Qt6_FOUND AND Qt6_FOUND) diff --git a/Triangulation_on_sphere_2/demo/Triangulation_on_sphere_2/CMakeLists.txt b/Triangulation_on_sphere_2/demo/Triangulation_on_sphere_2/CMakeLists.txt index c9b21f4d7eef..020c94e50df6 100644 --- a/Triangulation_on_sphere_2/demo/Triangulation_on_sphere_2/CMakeLists.txt +++ b/Triangulation_on_sphere_2/demo/Triangulation_on_sphere_2/CMakeLists.txt @@ -20,32 +20,32 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -# Find CGAL and CGAL Qt5 -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +# Find CGAL and CGAL Qt6 +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -# Find Qt5 itself -find_package(Qt5 QUIET COMPONENTS Script OpenGL Gui Svg) +# Find Qt6 itself +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Gui Svg) find_package(Eigen3 3.1.0 QUIET) #(requires 3.1.0 or greater) include(CGAL_Eigen3_support) -if(CGAL_Qt5_FOUND AND Qt5_FOUND AND TARGET CGAL::Eigen3_support) +if(CGAL_Qt6_FOUND AND Qt6_FOUND AND TARGET CGAL::Eigen3_support) # Include this package's headers first include_directories(BEFORE ./ ./include) # ui file, created with Qt Designer - qt5_wrap_ui( uis Mainwindow.ui ) + qt6_wrap_ui( uis Mainwindow.ui ) - #qt5_generate_moc( main.cpp Mainwindow.moc) + #qt6_generate_moc( main.cpp Mainwindow.moc) add_executable ( Triangulation_on_sphere_2_Demo main.cpp Viewer.cpp ${uis}) add_to_cached_list( CGAL_EXECUTABLE_TARGETS Triangulation_on_sphere_2_Demo ) - target_link_libraries( Triangulation_on_sphere_2_Demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 CGAL::Eigen3_support) + target_link_libraries( Triangulation_on_sphere_2_Demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 CGAL::Eigen3_support) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test( Triangulation_on_sphere_2_Demo ) else() - message("NOTICE: This demo requires CGAL, Qt5, and Eigen, and will not be compiled.") + message("NOTICE: This demo requires CGAL, Qt6, and Eigen, and will not be compiled.") endif() From 7e160aa2bb4daea89c4c222784b7c1ab696043b3 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 21 Apr 2023 14:36:13 +0100 Subject: [PATCH 15/85] Hello QJSEngine [skip ci] --- AABB_tree/demo/AABB_tree/CMakeLists.txt | 4 +-- AABB_tree/demo/AABB_tree/MainWindow.cpp | 26 ++++++++++++++++--- AABB_tree/demo/AABB_tree/MainWindow.h | 34 +++++++++++++++++++++++++ 3 files changed, 58 insertions(+), 6 deletions(-) diff --git a/AABB_tree/demo/AABB_tree/CMakeLists.txt b/AABB_tree/demo/AABB_tree/CMakeLists.txt index 76e9faa655e4..d3042f8eb7c9 100644 --- a/AABB_tree/demo/AABB_tree/CMakeLists.txt +++ b/AABB_tree/demo/AABB_tree/CMakeLists.txt @@ -24,7 +24,7 @@ include_directories(BEFORE ./ ./include) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # Find Qt6 itself -find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Gui Svg) +find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Gui Svg Qml) if(CGAL_Qt6_FOUND AND Qt6_FOUND) @@ -53,7 +53,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) #${CGAL_Qt6_MOC_FILES} ) # Link with Qt libraries - target_link_libraries(AABB_demo PRIVATE Qt6::OpenGLWidgets Qt6::Gui + target_link_libraries(AABB_demo PRIVATE Qt6::OpenGLWidgets Qt6::Gui Qt6::Qml CGAL::CGAL CGAL::CGAL_Qt6) add_to_cached_list(CGAL_EXECUTABLE_TARGETS AABB_demo) diff --git a/AABB_tree/demo/AABB_tree/MainWindow.cpp b/AABB_tree/demo/AABB_tree/MainWindow.cpp index 95fc4056bf7e..7064d50ba5a3 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.cpp +++ b/AABB_tree/demo/AABB_tree/MainWindow.cpp @@ -13,6 +13,8 @@ #include "ui_MainWindow.h" + + MainWindow::MainWindow(QWidget* parent) : CGAL::Qt::DemosMainWindow(parent) { @@ -38,12 +40,25 @@ MainWindow::MainWindow(QWidget* parent) connect(this, SIGNAL(openRecentFile(QString)), this, SLOT(open(QString))); + QJSValue mainWindow = myEngine.newQObject(this); + myEngine.globalObject().setProperty("main_window", mainWindow); readSettings(); + std::ifstream script("init.js"); + if(script.good()){ + std::string line; + while(getline(script, line)){ + myEngine.evaluate(line.c_str()); + } + } } MainWindow::~MainWindow() { m_pViewer->makeCurrent(); + // AF I thought this helps to avoid the exception when the program + // terminates, but it does not + myEngine.globalObject().setProperty("main_window", QJSValue()); + myEngine.collectGarbage(); delete ui; } @@ -65,6 +80,13 @@ void MainWindow::dropEvent(QDropEvent *event) event->acceptProposedAction(); } + +void MainWindow::hello() const +{ + std::cout << "Hhello world" << std::endl; +} + + void MainWindow::updateViewerBBox() { m_pScene->update_bbox(); @@ -418,7 +440,3 @@ void MainWindow::on_actionCopy_snapshot_triggered() qb->setImage(snapshot); QApplication::restoreOverrideCursor(); } - - - - diff --git a/AABB_tree/demo/AABB_tree/MainWindow.h b/AABB_tree/demo/AABB_tree/MainWindow.h index f768694514b8..7a28f7cde919 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.h +++ b/AABB_tree/demo/AABB_tree/MainWindow.h @@ -2,6 +2,7 @@ #define MAINWINDOW_H #include +#include #include class QDragEnterEvent; @@ -12,6 +13,36 @@ namespace Ui { class MainWindow; } +#if 0 + +struct Foo : public QObject +{ + + Q_OBJECT +public: + QJSEngine myEngine; + + Foo() + { + QJSValue baz = myEngine.newQObject(this); + myEngine.globalObject().setProperty("baz", baz); + } + + void bar() + { + std::cout << "bar()" << std::endl; + myEngine.evaluate("baz.hello()"); + } + +public slots: + void hello() const // if not a slot it must be + { + std::cout << "called hello()" << std::endl; + } + +}; +#endif + class MainWindow : public CGAL::Qt::DemosMainWindow @@ -22,6 +53,8 @@ class MainWindow : ~MainWindow(); public slots: + + void hello() const; void updateViewerBBox(); void open(QString filename); void setAddKeyFrameKeyboardModifiers(Qt::KeyboardModifiers); @@ -79,6 +112,7 @@ class MainWindow : void on_actionView_cutting_plane_triggered(); private: + QJSEngine myEngine; Scene* m_pScene; Viewer* m_pViewer; Ui::MainWindow* ui; From b4a259c31b28396cbeba31fb831b53ba9a06f538 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 21 Apr 2023 14:36:13 +0100 Subject: [PATCH 16/85] Hello QJSEngine [skip ci] --- AABB_tree/demo/AABB_tree/init.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 AABB_tree/demo/AABB_tree/init.js diff --git a/AABB_tree/demo/AABB_tree/init.js b/AABB_tree/demo/AABB_tree/init.js new file mode 100644 index 000000000000..e7f08e266c68 --- /dev/null +++ b/AABB_tree/demo/AABB_tree/init.js @@ -0,0 +1,2 @@ +main_window.hello(); +main_window.hello(); From 67441a37726221204593c51e604dd9c87fa306ef Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 25 Apr 2023 17:27:03 +0200 Subject: [PATCH 17/85] Convert all CMakeLists.txt to Qt6 --- .../examples/Boolean_set_operations_2/CMakeLists.txt | 2 +- Installation/test/Installation/CMakeLists.txt | 8 ++++---- .../examples/Linear_cell_complex/CMakeLists.txt | 2 +- Mesh_2/examples/Mesh_2/CMakeLists.txt | 2 +- Nef_3/examples/Nef_3/CMakeLists.txt | 2 +- .../examples/Periodic_2_triangulation_2/CMakeLists.txt | 2 +- Point_set_3/examples/Point_set_3/CMakeLists.txt | 2 +- Polygon/examples/Polygon/CMakeLists.txt | 2 +- Polyhedron/demo/Polyhedron/include/CGAL/Use_ssh.h | 2 +- Polyhedron/examples/Polyhedron/CMakeLists.txt | 2 +- .../examples/Straight_skeleton_2/CMakeLists.txt | 2 +- .../test/Straight_skeleton_2/CMakeLists.txt | 2 +- .../examples/Surface_mesh_topology/CMakeLists.txt | 2 +- .../test/Surface_mesh_topology/CMakeLists.txt | 2 +- Triangulation_3/examples/Triangulation_3/CMakeLists.txt | 4 ++-- .../examples/Voronoi_diagram_2/CMakeLists.txt | 4 ++-- 16 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Boolean_set_operations_2/examples/Boolean_set_operations_2/CMakeLists.txt b/Boolean_set_operations_2/examples/Boolean_set_operations_2/CMakeLists.txt index f24ead2e8bd4..f01d9597d925 100644 --- a/Boolean_set_operations_2/examples/Boolean_set_operations_2/CMakeLists.txt +++ b/Boolean_set_operations_2/examples/Boolean_set_operations_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Boolean_set_operations_2_Examples) -find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( diff --git a/Installation/test/Installation/CMakeLists.txt b/Installation/test/Installation/CMakeLists.txt index 2560f75d5c8d..d65c89d3dacc 100644 --- a/Installation/test/Installation/CMakeLists.txt +++ b/Installation/test/Installation/CMakeLists.txt @@ -79,7 +79,7 @@ else() endif() if(WITH_CGAL_Qt5) - find_package(Qt5 QUIET COMPONENTS Core) + find_package(Qt6 QUIET COMPONENTS Core) if(Qt5_FOUND) create_link_to_program(CGAL_Qt5) endif() @@ -146,7 +146,7 @@ set_tests_properties( test_find_package_version_fail-exact PROPERTIES WILL_FAIL TRUE) -find_package(CGAL COMPONENTS Qt5) +find_package(CGAL COMPONENTS Qt6) file(MAKE_DIRECTORY "${NON_STANDARD_INSTALL_PREFIX}/non_standard_install") file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/non_standard_build) @@ -196,7 +196,7 @@ else()#CGAL_BRANCH_BUILD endif()#CGAL_BRANCH_BUILD list(APPEND test_config_lst "test_config_file_2") -#configure cgal for a non standard install without qt5 +#configure cgal for a non standard install without Qt6 get_filename_component(CORRECT_INSTALL_PATH "${NON_STANDARD_INSTALL_PREFIX}/non_standard_install/dummy.txt" DIRECTORY) add_test(NAME config_non_standard_cgal COMMAND ${CMAKE_COMMAND} ${GENERATOR} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${CORRECT_INSTALL_PATH} -DCGAL_INSTALL_LIB_DIR=lib @@ -215,7 +215,7 @@ WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_3") list(APPEND test_config_lst "test_config_file_3") if(CGAL_Qt5_FOUND) - #configure cgal for a non standard install with qt5 + #configure cgal for a non standard install with Qt6 add_test(NAME config_non_standard_cgal_qt5 COMMAND ${CMAKE_COMMAND} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${NON_STANDARD_INSTALL_PREFIX}/non_standard_install_qt5 -DCGAL_INSTALL_LIB_DIR=lib "${CGAL_SOURCE_DIR}" diff --git a/Linear_cell_complex/examples/Linear_cell_complex/CMakeLists.txt b/Linear_cell_complex/examples/Linear_cell_complex/CMakeLists.txt index d0ed1c3a028c..320149215f20 100644 --- a/Linear_cell_complex/examples/Linear_cell_complex/CMakeLists.txt +++ b/Linear_cell_complex/examples/Linear_cell_complex/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Linear_cell_complex_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # For Gprof. # ADD_DEFINITIONS("-pg") diff --git a/Mesh_2/examples/Mesh_2/CMakeLists.txt b/Mesh_2/examples/Mesh_2/CMakeLists.txt index b42d588216a2..949c376ecbb7 100644 --- a/Mesh_2/examples/Mesh_2/CMakeLists.txt +++ b/Mesh_2/examples/Mesh_2/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Mesh_2_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( diff --git a/Nef_3/examples/Nef_3/CMakeLists.txt b/Nef_3/examples/Nef_3/CMakeLists.txt index 8d88f56728f6..479f814c4103 100644 --- a/Nef_3/examples/Nef_3/CMakeLists.txt +++ b/Nef_3/examples/Nef_3/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Nef_3_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( diff --git a/Periodic_2_triangulation_2/examples/Periodic_2_triangulation_2/CMakeLists.txt b/Periodic_2_triangulation_2/examples/Periodic_2_triangulation_2/CMakeLists.txt index 0acef682baaf..8eb15e9dc00d 100644 --- a/Periodic_2_triangulation_2/examples/Periodic_2_triangulation_2/CMakeLists.txt +++ b/Periodic_2_triangulation_2/examples/Periodic_2_triangulation_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Periodic_2_triangulation_2_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( diff --git a/Point_set_3/examples/Point_set_3/CMakeLists.txt b/Point_set_3/examples/Point_set_3/CMakeLists.txt index b26633c293a3..cfd4152dd57d 100644 --- a/Point_set_3/examples/Point_set_3/CMakeLists.txt +++ b/Point_set_3/examples/Point_set_3/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Point_set_3_Examples) # CGAL and its components -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) create_single_source_cgal_program("point_set.cpp") create_single_source_cgal_program("point_set_property.cpp") diff --git a/Polygon/examples/Polygon/CMakeLists.txt b/Polygon/examples/Polygon/CMakeLists.txt index c9fdf0aa007a..d3d48d57fc4f 100644 --- a/Polygon/examples/Polygon/CMakeLists.txt +++ b/Polygon/examples/Polygon/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Polygon_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( diff --git a/Polyhedron/demo/Polyhedron/include/CGAL/Use_ssh.h b/Polyhedron/demo/Polyhedron/include/CGAL/Use_ssh.h index d006e6704feb..b0309c3917c8 100644 --- a/Polyhedron/demo/Polyhedron/include/CGAL/Use_ssh.h +++ b/Polyhedron/demo/Polyhedron/include/CGAL/Use_ssh.h @@ -2,8 +2,8 @@ #define USE_SSH_H #include #include +#include -class QStringList; namespace CGAL{ namespace ssh_internal{ diff --git a/Polyhedron/examples/Polyhedron/CMakeLists.txt b/Polyhedron/examples/Polyhedron/CMakeLists.txt index 207f712b3231..bdec4ea6e90a 100644 --- a/Polyhedron/examples/Polyhedron/CMakeLists.txt +++ b/Polyhedron/examples/Polyhedron/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Polyhedron_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( diff --git a/Straight_skeleton_2/examples/Straight_skeleton_2/CMakeLists.txt b/Straight_skeleton_2/examples/Straight_skeleton_2/CMakeLists.txt index c6e8c6c0d51e..928a4c2f0e82 100644 --- a/Straight_skeleton_2/examples/Straight_skeleton_2/CMakeLists.txt +++ b/Straight_skeleton_2/examples/Straight_skeleton_2/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project( Straight_skeleton_2_Examples ) -find_package(CGAL REQUIRED COMPONENTS Qt5 Core) +find_package(CGAL REQUIRED COMPONENTS Qt6 Core) # create a target per cppfile file(GLOB cppfiles RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp) diff --git a/Straight_skeleton_2/test/Straight_skeleton_2/CMakeLists.txt b/Straight_skeleton_2/test/Straight_skeleton_2/CMakeLists.txt index 34257e84946d..7d4b7c35b07a 100644 --- a/Straight_skeleton_2/test/Straight_skeleton_2/CMakeLists.txt +++ b/Straight_skeleton_2/test/Straight_skeleton_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Straight_skeleton_2_Tests) -find_package(CGAL REQUIRED COMPONENTS Qt5 Core) +find_package(CGAL REQUIRED COMPONENTS Qt6 Core) include_directories(BEFORE "include") diff --git a/Surface_mesh_topology/examples/Surface_mesh_topology/CMakeLists.txt b/Surface_mesh_topology/examples/Surface_mesh_topology/CMakeLists.txt index 778aafba88fe..b331761128f0 100644 --- a/Surface_mesh_topology/examples/Surface_mesh_topology/CMakeLists.txt +++ b/Surface_mesh_topology/examples/Surface_mesh_topology/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Surface_mesh_topology_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # add_definitions(-DCGAL_TRACE_PATH_TESTS) # add_definitions(-DCGAL_TRACE_CMAP_TOOLS) diff --git a/Surface_mesh_topology/test/Surface_mesh_topology/CMakeLists.txt b/Surface_mesh_topology/test/Surface_mesh_topology/CMakeLists.txt index 904303a77e8d..203721628be9 100644 --- a/Surface_mesh_topology/test/Surface_mesh_topology/CMakeLists.txt +++ b/Surface_mesh_topology/test/Surface_mesh_topology/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Surface_mesh_topology_Tests) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # add_definitions(-DCGAL_TRACE_PATH_TESTS) # add_definitions(-DCGAL_TRACE_CMAP_TOOLS) diff --git a/Triangulation_3/examples/Triangulation_3/CMakeLists.txt b/Triangulation_3/examples/Triangulation_3/CMakeLists.txt index 4519992969f5..9aa0e8f4401f 100644 --- a/Triangulation_3/examples/Triangulation_3/CMakeLists.txt +++ b/Triangulation_3/examples/Triangulation_3/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Triangulation_3_Examples) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) include_directories(BEFORE "../../include") @@ -26,7 +26,7 @@ create_single_source_cgal_program("draw_triangulation_3.cpp") if(CGAL_Qt5_FOUND) target_link_libraries(draw_triangulation_3 PUBLIC CGAL::CGAL_Basic_viewer) else() - message(STATUS "NOTICE: The example 'draw_triangulation_3' requires Qt5, and will not be compiled.") + message(STATUS "NOTICE: The example 'draw_triangulation_3' requires Qt6, and will not be compiled.") endif() find_package(TBB QUIET) diff --git a/Voronoi_diagram_2/examples/Voronoi_diagram_2/CMakeLists.txt b/Voronoi_diagram_2/examples/Voronoi_diagram_2/CMakeLists.txt index ea1bf322bf54..308963700a5b 100644 --- a/Voronoi_diagram_2/examples/Voronoi_diagram_2/CMakeLists.txt +++ b/Voronoi_diagram_2/examples/Voronoi_diagram_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Voronoi_diagram_2_Examples) -find_package(CGAL REQUIRED QUIET OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED QUIET OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( @@ -18,5 +18,5 @@ endforeach() if(CGAL_Qt5_FOUND) target_link_libraries(draw_voronoi_diagram_2 PUBLIC CGAL::CGAL_Basic_viewer) else() - message(STATUS "NOTICE: The Qt5 library was not found. The example 'draw_voronoi_diagram_2' will not be compiled.") + message(STATUS "NOTICE: The Qt6 library was not found. The example 'draw_voronoi_diagram_2' will not be compiled.") endif() From 134b464aaa4280e1ba9c70e5839b47b61a657e08 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 26 Apr 2023 11:51:43 +0100 Subject: [PATCH 18/85] Allocate the QJSEngine on the heap --- AABB_tree/demo/AABB_tree/MainWindow.cpp | 12 ++++++------ AABB_tree/demo/AABB_tree/MainWindow.h | 11 ++++++----- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/AABB_tree/demo/AABB_tree/MainWindow.cpp b/AABB_tree/demo/AABB_tree/MainWindow.cpp index 7064d50ba5a3..4321e396b8d4 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.cpp +++ b/AABB_tree/demo/AABB_tree/MainWindow.cpp @@ -16,7 +16,7 @@ MainWindow::MainWindow(QWidget* parent) -: CGAL::Qt::DemosMainWindow(parent) + : CGAL::Qt::DemosMainWindow(parent), myEngine(new QJSEngine()) { ui = new Ui::MainWindow; ui->setupUi(this); @@ -40,14 +40,14 @@ MainWindow::MainWindow(QWidget* parent) connect(this, SIGNAL(openRecentFile(QString)), this, SLOT(open(QString))); - QJSValue mainWindow = myEngine.newQObject(this); - myEngine.globalObject().setProperty("main_window", mainWindow); + QJSValue mainWindow = myEngine->newQObject(this); + myEngine->globalObject().setProperty("main_window", mainWindow); readSettings(); std::ifstream script("init.js"); if(script.good()){ std::string line; while(getline(script, line)){ - myEngine.evaluate(line.c_str()); + myEngine->evaluate(line.c_str()); } } } @@ -57,8 +57,8 @@ MainWindow::~MainWindow() m_pViewer->makeCurrent(); // AF I thought this helps to avoid the exception when the program // terminates, but it does not - myEngine.globalObject().setProperty("main_window", QJSValue()); - myEngine.collectGarbage(); + myEngine->globalObject().setProperty("main_window", QJSValue()); + myEngine->collectGarbage(); delete ui; } diff --git a/AABB_tree/demo/AABB_tree/MainWindow.h b/AABB_tree/demo/AABB_tree/MainWindow.h index 7a28f7cde919..50cd927a7cb4 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.h +++ b/AABB_tree/demo/AABB_tree/MainWindow.h @@ -20,18 +20,19 @@ struct Foo : public QObject Q_OBJECT public: - QJSEngine myEngine; + QJSEngine* myEngine; Foo() + : myEngine(new QJSEngine()) { - QJSValue baz = myEngine.newQObject(this); - myEngine.globalObject().setProperty("baz", baz); + QJSValue baz = myEngine->newQObject(this); + myEngine->.globalObject().setProperty("baz", baz); } void bar() { std::cout << "bar()" << std::endl; - myEngine.evaluate("baz.hello()"); + myEngine->evaluate("baz.hello()"); } public slots: @@ -112,7 +113,7 @@ class MainWindow : void on_actionView_cutting_plane_triggered(); private: - QJSEngine myEngine; + QJSEngine* myEngine; Scene* m_pScene; Viewer* m_pViewer; Ui::MainWindow* ui; From f6451700d13abd352ff3426effb37ff5c4038bef Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 27 Apr 2023 15:19:35 +0200 Subject: [PATCH 19/85] fix memory leak --- AABB_tree/demo/AABB_tree/MainWindow.cpp | 2 +- AABB_tree/demo/AABB_tree/MainWindow.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AABB_tree/demo/AABB_tree/MainWindow.cpp b/AABB_tree/demo/AABB_tree/MainWindow.cpp index 4321e396b8d4..cd1444b9968c 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.cpp +++ b/AABB_tree/demo/AABB_tree/MainWindow.cpp @@ -16,7 +16,7 @@ MainWindow::MainWindow(QWidget* parent) - : CGAL::Qt::DemosMainWindow(parent), myEngine(new QJSEngine()) + : CGAL::Qt::DemosMainWindow(parent), myEngine(new QJSEngine(this)) { ui = new Ui::MainWindow; ui->setupUi(this); diff --git a/AABB_tree/demo/AABB_tree/MainWindow.h b/AABB_tree/demo/AABB_tree/MainWindow.h index 50cd927a7cb4..87f6de0c76c9 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.h +++ b/AABB_tree/demo/AABB_tree/MainWindow.h @@ -23,7 +23,7 @@ struct Foo : public QObject QJSEngine* myEngine; Foo() - : myEngine(new QJSEngine()) + : myEngine(new QJSEngine(this)) { QJSValue baz = myEngine->newQObject(this); myEngine->.globalObject().setProperty("baz", baz); From a10460dd31365c64f5ddf581eb24ce9cfdf1430a Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 28 Apr 2023 14:05:01 +0200 Subject: [PATCH 20/85] Remove trailing whitespaces --- Polyhedron/demo/Polyhedron/MainWindow.h | 2 +- Three/include/CGAL/Three/exceptions.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.h b/Polyhedron/demo/Polyhedron/MainWindow.h index f0c3adca0078..d970c1813ef3 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.h +++ b/Polyhedron/demo/Polyhedron/MainWindow.h @@ -451,7 +451,7 @@ protected Q_SLOTS: //! Calls evaluate_script(script, filename, true). void evaluate_script_quiet(QString script, const QString & fileName = QString()); - #endif + #endif QMutex mutex; QWaitCondition wait_condition; diff --git a/Three/include/CGAL/Three/exceptions.h b/Three/include/CGAL/Three/exceptions.h index 15fa13cd320d..417798cd469f 100644 --- a/Three/include/CGAL/Three/exceptions.h +++ b/Three/include/CGAL/Three/exceptions.h @@ -127,7 +127,7 @@ wrap_a_call_to_cpp(Callable f, return Return_type(); } } -#endif +#endif } // end namespace Three } // end namespace CGAL From db652acef2a84f940c627b1681c58c6f2ae9f985 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 28 Apr 2023 15:31:35 +0200 Subject: [PATCH 21/85] add Qt6 to the CI tests --- .github/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/install.sh b/.github/install.sh index 32b8552aa8f6..d19a714ae79a 100755 --- a/.github/install.sh +++ b/.github/install.sh @@ -2,7 +2,8 @@ sudo apt-get update sudo apt-get install -y libmpfr-dev \ libeigen3-dev qtbase5-dev libqt5sql5-sqlite libqt5opengl5-dev qtscript5-dev \ - libqt5svg5-dev qttools5-dev qttools5-dev-tools libboost-dev libinsighttoolkit4-dev zsh + libqt5svg5-dev qttools5-dev qttools5-dev-tools libboost-dev libinsighttoolkit4-dev zsh \ + qt6-base-dev qt6-declarative-dev #update cmake to 3.18.4 sudo apt purge --auto-remove cmake cd /tmp From b2a330bbdfb25fd9572b163381e1aec0b7c29eb9 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Sun, 30 Apr 2023 14:21:54 +0100 Subject: [PATCH 22/85] WIP re-adding scripting --- Polyhedron/demo/Polyhedron/CMakeLists.txt | 4 +- Polyhedron/demo/Polyhedron/MainWindow.cpp | 192 +++++++--------------- Polyhedron/demo/Polyhedron/MainWindow.h | 25 +-- 3 files changed, 71 insertions(+), 150 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/CMakeLists.txt b/Polyhedron/demo/Polyhedron/CMakeLists.txt index ce49786fd28c..c6d91a0cf727 100644 --- a/Polyhedron/demo/Polyhedron/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/CMakeLists.txt @@ -46,7 +46,7 @@ endif() # Find Qt6 itself find_package(Qt6 QUIET - COMPONENTS OpenGLWidgets Widgets + COMPONENTS OpenGLWidgets Widgets Qml OPTIONAL_COMPONENTS WebSockets Network) set_package_properties( @@ -211,7 +211,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) Primitive_container.cpp Polyhedron_demo_plugin_helper.cpp CGAL_double_edit.cpp) - target_link_libraries(demo_framework PUBLIC Qt6::OpenGLWidgets Qt6::Widgets Qt6::Gui + target_link_libraries(demo_framework PUBLIC Qt6::OpenGLWidgets Qt6::Widgets Qt6::Gui Qt6::Qml CGAL::CGAL_Qt6) if(TARGET Qt6::WebSockets) target_link_libraries(demo_framework PUBLIC Qt6::WebSockets) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.cpp b/Polyhedron/demo/Polyhedron/MainWindow.cpp index 40e14de0d22c..b481ce58d009 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.cpp +++ b/Polyhedron/demo/Polyhedron/MainWindow.cpp @@ -46,15 +46,10 @@ #include #include #include -#include #include #include -#ifdef QT_SCRIPT_LIB -# include -# ifdef QT_SCRIPTTOOLS_LIB -# include -# endif -#endif +#include + #include #include @@ -75,58 +70,25 @@ #include "Color_map.h" -#ifdef QT_SCRIPT_LIB -# include -# include - - using namespace CGAL::Three; -QScriptValue -myScene_itemToScriptValue(QScriptEngine *engine, +QJSValue +myScene_itemToScriptValue(QJSEngine *engine, CGAL::Three::Scene_item* const &in) { return engine->newQObject(in); } -void myScene_itemFromScriptValue(const QScriptValue &object, +void myScene_itemFromScriptValue(const QJSValue &object, CGAL::Three::Scene_item* &out) { out = qobject_cast(object.toQObject()); } -#endif // QT_SCRIPT_LIB - -#ifdef QT_SCRIPT_LIB -# ifdef QT_SCRIPTTOOLS_LIB - -const QScriptEngineDebugger::DebuggerWidget debug_widgets[9] = { - QScriptEngineDebugger::ConsoleWidget, - QScriptEngineDebugger::StackWidget, - QScriptEngineDebugger::ScriptsWidget, - QScriptEngineDebugger::LocalsWidget, - QScriptEngineDebugger::CodeWidget, - QScriptEngineDebugger::CodeFinderWidget, - QScriptEngineDebugger::BreakpointsWidget, - QScriptEngineDebugger::DebugOutputWidget, - QScriptEngineDebugger::ErrorLogWidget -}; -const QString debug_widgets_names[9] = { - "Script console", - "Stack", - "Scripts", - "Locals", - "Code", - "CodeFinder", - "Breakpoints", - "DebugOutput", - "ErrorLog" -}; - -# endif -#endif + + #if 0 -QScriptValue myPrintFunction(QScriptContext *context, QScriptEngine *engine) +QJSValue myPrintFunction(QScriptContext *context, QJSEngine *engine) { MainWindow* mw = qobject_cast(engine->parent()); QString result; @@ -168,11 +130,7 @@ MainWindow::MainWindow(const QStringList &keywords, bool verbose, QWidget* paren menu_map[ui->menuOperations->title()] = ui->menuOperations; this->verbose = verbose; is_locked = false; - // remove the Load Script menu entry, when the demo has not been compiled with QT_SCRIPT_LIB -#if !defined(QT_SCRIPT_LIB) - // ui->menuBar->removeAction(ui->actionLoadScript); - // ui->menuBar->removeAction(ui->on_actionLoad_a_Scene_from_a_Script_File); -#endif + // Save some pointers from ui, for latter use. sceneView = ui->sceneView; viewer_window = new SubViewer(ui->mdiArea, this, nullptr); @@ -329,54 +287,36 @@ MainWindow::MainWindow(const QStringList &keywords, bool verbose, QWidget* paren // Reset the "Operation menu" clearMenu(ui->menuOperations); -#ifdef QT_SCRIPT_LIB std::cerr << "Enable scripts.\n"; - script_engine = new QScriptEngine(this); + script_engine = new QJSEngine(this); + +#if 0 qScriptRegisterMetaType(script_engine, myScene_itemToScriptValue, myScene_itemFromScriptValue); -# ifdef QT_SCRIPTTOOLS_LIB - QScriptEngineDebugger* debugger = new QScriptEngineDebugger(this); - debugger->setObjectName("qt script debugger"); - QAction* debuggerMenuAction = - menuBar()->addMenu(debugger->createStandardMenu()); - debuggerMenuAction->setText(tr("Qt Script &Debug")); - for(unsigned int i = 0; i < 9; ++i) - { - QDockWidget* dock = new QDockWidget(debug_widgets_names[i], this); - dock->setObjectName(debug_widgets_names[i]); - dock->setWidget(debugger->widget(debug_widgets[i])); - this->QMainWindow::addDockWidget(Qt::BottomDockWidgetArea, dock); - dock->hide(); - } - debugger->setAutoShowStandardWindow(false); - debugger->attachTo(script_engine); -# endif // QT_SCRIPTTOOLS_LIB - QScriptValue fun = script_engine->newFunction(myPrintFunction); - script_engine->globalObject().setProperty("print", fun); + + QJSValue fun = script_engine->newFunction(myPrintFunction); + script_engine->globalObject().setProperty("print", fun); +#endif // evaluate_script("print('hello', 'world', 'from QtScript!')"); - QScriptValue mainWindowObjectValue = script_engine->newQObject(this); + QJSValue mainWindowObjectValue = script_engine->newQObject(this); script_engine->globalObject().setProperty("main_window", mainWindowObjectValue); - QScriptValue sceneObjectValue = script_engine->newQObject(scene); + QJSValue sceneObjectValue = script_engine->newQObject(scene); mainWindowObjectValue.setProperty("scene", sceneObjectValue); script_engine->globalObject().setProperty("scene", sceneObjectValue); - QScriptValue viewerObjectValue = script_engine->newQObject(viewer); + QJSValue viewerObjectValue = script_engine->newQObject(viewer); mainWindowObjectValue.setProperty("viewer", viewerObjectValue); script_engine->globalObject().setProperty("viewer", viewerObjectValue); - QScriptValue cameraObjectValue = script_engine->newQObject(viewer->camera()); + QJSValue cameraObjectValue = script_engine->newQObject(viewer->camera()); viewerObjectValue.setProperty("camera", cameraObjectValue); script_engine->globalObject().setProperty("camera", cameraObjectValue); evaluate_script("var plugins = new Array();"); -# ifdef QT_SCRIPTTOOLS_LIB - QScriptValue debuggerObjectValue = script_engine->newQObject(debugger); - script_engine->globalObject().setProperty("debugger", debuggerObjectValue); -# endif -#endif + readSettings(); // Among other things, the column widths are stored. @@ -415,18 +355,15 @@ MainWindow::MainWindow(const QStringList &keywords, bool verbose, QWidget* paren actionResetDefaultLoaders = new QAction("Reset Default Loaders",this); -#ifdef QT_SCRIPT_LIB // evaluate_script("print(plugins);"); Q_FOREACH(QAction* action, findChildren()) { if(action->objectName() != "") { - QScriptValue objectValue = script_engine->newQObject(action); + QJSValue objectValue = script_engine->newQObject(action); script_engine->globalObject().setProperty(action->objectName(), objectValue); } } filterOperations(true); - // debugger->action(QScriptEngineDebugger::InterruptAction)->trigger(); -#endif } void addActionToMenu(QAction* action, QMenu* menu) @@ -532,23 +469,33 @@ void MainWindow::filterOperations(bool) #include -#if 0 + void MainWindow::evaluate_script(QString script, const QString& filename, const bool quiet) { +#if 0 QScriptContext* context = script_engine->currentContext(); - QScriptValue object = context->activationObject(); - QScriptValue former_current_filename = object.property("current_filename");; + QJSValue object = context->activationObject(); + QJSValue former_current_filename = object.property("current_filename");; object.setProperty("current_filename", filename); +#endif + + QJSValue value = script_engine->evaluate(script, filename); + if (value.isError()) + if(! quiet){ + qDebug() << "Uncaught exception at line" + << value.property("lineNumber").toInt() + << ":" << value.toString(); + } +#if 0 - QScriptValue value = script_engine->evaluate(script, filename); if(script_engine->hasUncaughtException()) { - QScriptValue js_exception = script_engine->uncaughtException(); - QScriptValue js_bt =js_exception.property("backtrace"); + QJSValue js_exception = script_engine->uncaughtException(); + QJSValue js_bt =js_exception.property("backtrace"); QStringList bt = script_engine->uncaughtExceptionBacktrace(); if(js_bt.isValid()) { QStringList other_bt; - qScriptValueToSequence(js_bt, other_bt); + qJSValueToSequence(js_bt, other_bt); if(!other_bt.isEmpty()) bt = other_bt; } if(!quiet) { @@ -569,6 +516,7 @@ void MainWindow::evaluate_script(QString script, } object.setProperty("current_filename", former_current_filename); +#endif } void MainWindow::evaluate_script_quiet(QString script, @@ -577,30 +525,7 @@ void MainWindow::evaluate_script_quiet(QString script, evaluate_script(script, filename, true); } -void MainWindow::enableScriptDebugger(bool b /* = true */) -{ - Q_UNUSED(b); -#ifdef QT_SCRIPT_LIB -# ifdef QT_SCRIPTTOOLS_LIB - QScriptEngineDebugger* debugger = - findChild("qt script debugger"); - if(debugger) { - if(b) { - debugger->action(QScriptEngineDebugger::InterruptAction)->trigger(); - } - else { - std::cerr << "Detach the script debugger\n"; - debugger->detach(); - } - } - return; -# endif -#endif - // If we are here, then the debugger is not available - this->error(tr("Your version of Qt is too old, and for that reason " - "the Qt Script Debugger is not available.")); -} -#endif + namespace { bool actionsByName(QAction* x, QAction* y) { @@ -704,12 +629,10 @@ bool MainWindow::load_plugin(QString fileName, bool blacklisted) pluginsStatus_map[name] = QString("Not for this program."); } else{ -#ifdef QT_SCRIPT_LIB - QScriptValue objectValue = + QJSValue objectValue = script_engine->newQObject(obj); script_engine->globalObject().setProperty(obj->objectName(), objectValue); evaluate_script_quiet(QString("plugins.push(%1);").arg(obj->objectName())); -#endif pluginsStatus_map[name] = QString("success"); } } @@ -927,11 +850,10 @@ void MainWindow::addAction(QString actionName, QAction* action = new QAction(actionText, this); action->setObjectName(actionName); menu->addAction(action); -#ifdef QT_SCRIPT_LIB - QScriptValue objectValue = script_engine->newQObject(action); + + QJSValue objectValue = script_engine->newQObject(action); script_engine->globalObject().setProperty(action->objectName(), objectValue); -#endif } void MainWindow::viewerShow(float xmin, @@ -1165,7 +1087,6 @@ void MainWindow::open(QString filename) { QFileInfo fileinfo(filename); -#ifdef QT_SCRIPT_LIB // Handles the loading of script file from the command line arguments, // and the special command line arguments that start with "javascript:" // or "qtscript:" @@ -1193,7 +1114,6 @@ void MainWindow::open(QString filename) QApplication::restoreOverrideCursor(); return; } -#endif if ( !fileinfo.exists() ){ QMessageBox::warning(this, @@ -1290,8 +1210,11 @@ bool MainWindow::open(QString filename, QString loader_name) { std::cerr << e.what() << std::endl; return false; } +#else + bool ok; + loadItem(fileinfo, findLoader(loader_name), ok); + return ok; #endif - return true; } @@ -1894,9 +1817,10 @@ void MainWindow::closeEvent(QCloseEvent *event) event->accept(); } -#if 0 + bool MainWindow::loadScript(QString filename) { +#if 0 QFileInfo fileinfo(filename); boost::optional opt = wrap_a_call_to_cpp ([this, fileinfo] { @@ -1904,11 +1828,15 @@ bool MainWindow::loadScript(QString filename) }, this, __FILE__, __LINE__, CGAL::Three::PARENT_CONTEXT); if(!opt) return false; else return *opt; +#else + QFileInfo fileinfo(filename); + return loadScript(fileinfo); +#endif } bool MainWindow::loadScript(QFileInfo info) { -#if defined(QT_SCRIPT_LIB) + QString program; QString filename = info.absoluteFilePath(); QFile script_file(filename); @@ -1925,10 +1853,9 @@ bool MainWindow::loadScript(QFileInfo info) evaluate_script(program, filename); return true; } -#endif return false; } -#endif + void MainWindow::throw_exception() { #if 0 // AF @@ -1936,14 +1863,15 @@ void MainWindow::throw_exception() { throw std::runtime_error("Exception thrown in " "MainWindow::throw_exception()"); }, this, __FILE__, __LINE__); +#else + throw std::runtime_error("Exception thrown in " + "MainWindow::throw_exception()"); #endif } void MainWindow::on_actionLoadScript_triggered() { -#if defined(QT_SCRIPT_LIB) -#endif } void MainWindow::on_actionLoad_triggered() @@ -3874,7 +3802,7 @@ void MainWindow::on_actionLoad_a_Scene_from_a_Script_File_triggered() if(filename.isEmpty()) return; } - + loadScript(QFileInfo(filename)); if(do_download){ QFile tmp_file(filename); tmp_file.remove(); diff --git a/Polyhedron/demo/Polyhedron/MainWindow.h b/Polyhedron/demo/Polyhedron/MainWindow.h index d970c1813ef3..ea43c7a482f6 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.h +++ b/Polyhedron/demo/Polyhedron/MainWindow.h @@ -1,5 +1,8 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H + +#define QT_SCRIPT_LIB + #include "config.h" #include "MainWindow_config.h" @@ -7,10 +10,7 @@ #include #include -// AF @todo Scripting has changed -// #include -// #include - +#include #include #include @@ -62,7 +62,6 @@ class MAINWINDOW_EXPORT MainWindow : public CGAL::Qt::DemosMainWindow, public Messages_interface, public CGAL::Three::Three - // AF , protected QScriptable { Q_OBJECT Q_INTERFACES(Messages_interface) @@ -148,13 +147,12 @@ public Q_SLOTS: index of the item to be reloaded as data attached to the action. The index must identify a valid `Scene_item`.*/ void reloadItem(); -#if 0 + //! Loads a script. Returns true if it worked. bool loadScript(QString filename); //! Loads a script. Returns true if it worked. bool loadScript(QFileInfo); -#endif /*! * Gives the keyboard input focus to the widget searchEdit. @@ -259,11 +257,6 @@ public Q_SLOTS: //!Returns true if the target plugin is present. If not, returns false. bool hasPlugin(const QString&) const; - /*! - * If able, finds a script debugger and interrupts current action. Default - * value for parameter is true. - */ - // void enableScriptDebugger(bool = true); /// This slot is used to test exception handling in Qt Scripts. void throw_exception(); @@ -331,7 +324,7 @@ protected Q_SLOTS: bool on_actionErase_triggered(); //!Duplicates the selected item and selects the new item. void on_actionDuplicate_triggered(); - //!If QT_SCRIPT_LIB is defined, opens a dialog to choose a script. + //!Opens a dialog to choose a script. void on_actionLoadScript_triggered(); //!Loads a plugin from a specified directory void on_actionLoadPlugin_triggered(); @@ -439,8 +432,8 @@ protected Q_SLOTS: bool verbose; void insertActionBeforeLoadPlugin(QMenu*, QAction *actionToInsert); -#ifdef QT_SCRIPT_LIB - QScriptEngine* script_engine; + + QJSEngine* script_engine; public: /*! Evaluates a script and search for uncaught exceptions. If quiet is false, prints the *backtrace of the uncaught exceptions. @@ -451,7 +444,7 @@ protected Q_SLOTS: //! Calls evaluate_script(script, filename, true). void evaluate_script_quiet(QString script, const QString & fileName = QString()); - #endif + QMutex mutex; QWaitCondition wait_condition; From aa0d50b84c40d7962ad5c8e7aade3189aefadb0d Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 26 Jun 2023 15:08:05 +0100 Subject: [PATCH 23/85] Fix Arrangement_on_surface_2 examples --- .../examples/Arrangement_on_surface_2/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/CMakeLists.txt b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/CMakeLists.txt index bd3e707c4b45..a7d1965c8cd4 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/CMakeLists.txt +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Arrangement_on_surface_2_Examples) -find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( @@ -15,7 +15,7 @@ foreach(cppfile ${cppfiles}) create_single_source_cgal_program("${cppfile}") endforeach() -if(CGAL_Qt5_FOUND) +if(CGAL_Qt6_FOUND) target_link_libraries(draw_arr PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(linear_conics PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(parabolas PUBLIC CGAL::CGAL_Basic_viewer) From 1066af14f4c04f827a27d288792eb03597f2ff15 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 26 Jun 2023 15:09:10 +0100 Subject: [PATCH 24/85] Add #include --- Polyhedron/demo/Polyhedron/MainWindow.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.h b/Polyhedron/demo/Polyhedron/MainWindow.h index ea43c7a482f6..b58fa02912fc 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.h +++ b/Polyhedron/demo/Polyhedron/MainWindow.h @@ -9,6 +9,7 @@ #include #include #include +#include #include From a015b1de233e2bbf5fba397833c60f041dd67c76 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 26 Jun 2023 15:37:44 +0100 Subject: [PATCH 25/85] Fix Straight_skeleton_extrusion test --- .../test/Straight_skeleton_extrusion_2/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Straight_skeleton_extrusion_2/test/Straight_skeleton_extrusion_2/CMakeLists.txt b/Straight_skeleton_extrusion_2/test/Straight_skeleton_extrusion_2/CMakeLists.txt index f29dcb4e9296..8dd920fdf64f 100644 --- a/Straight_skeleton_extrusion_2/test/Straight_skeleton_extrusion_2/CMakeLists.txt +++ b/Straight_skeleton_extrusion_2/test/Straight_skeleton_extrusion_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Straight_skeleton_extrusion_2_Tests) -find_package(CGAL REQUIRED COMPONENTS Qt5 Core) +find_package(CGAL REQUIRED COMPONENTS Qt6 Core) include_directories(BEFORE "include") @@ -17,6 +17,6 @@ foreach(cppfile ${cppfiles}) create_single_source_cgal_program("${cppfile}") endforeach() -if(CGAL_Qt5_FOUND) +if(CGAL_Qt6_FOUND) target_link_libraries(test_sls_extrude PUBLIC CGAL::CGAL_Basic_viewer) endif() From 63bf2a85b92f559e09c08ceacc9742fc3612ee9d Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 29 Jun 2023 09:54:50 +0100 Subject: [PATCH 26/85] Fix for deprecated warning --- .../include/CGAL/Qt/manipulatedFrame_impl.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/manipulatedFrame_impl.h b/GraphicsView/include/CGAL/Qt/manipulatedFrame_impl.h index dbf263c30d49..c1cd449d0016 100644 --- a/GraphicsView/include/CGAL/Qt/manipulatedFrame_impl.h +++ b/GraphicsView/include/CGAL/Qt/manipulatedFrame_impl.h @@ -93,10 +93,10 @@ illustration. */ CGAL_INLINE_FUNCTION void ManipulatedFrame::checkIfGrabsMouse(int x, int y, const Camera *const camera) { - const int thresold = 10; + const int threshold = 10; const Vec proj = camera->projectedCoordinatesOf(position()); - setGrabsMouse(keepsGrabbingMouse_ || ((fabs(x - proj.x) < thresold) && - (fabs(y - proj.y) < thresold))); + setGrabsMouse(keepsGrabbingMouse_ || ((fabs(x - proj.x) < threshold) && + (fabs(y - proj.y) < threshold))); } @@ -219,8 +219,8 @@ int ManipulatedFrame::mouseOriginalDirection(const QMouseEvent *const e) { CGAL_INLINE_FUNCTION qreal ManipulatedFrame::deltaWithPrevPos(QMouseEvent *const event, Camera *const camera) const { - qreal dx = qreal(event->x() - prevPos_.x()) / camera->screenWidth(); - qreal dy = qreal(event->y() - prevPos_.y()) / camera->screenHeight(); + qreal dx = qreal(event->position().x() - prevPos_.x()) / camera->screenWidth(); + qreal dy = qreal(event->position().y() - prevPos_.y()) / camera->screenHeight(); qreal value = fabs(dx) > fabs(dy) ? dx : dy; return value * zoomSensitivity(); @@ -319,7 +319,7 @@ void ManipulatedFrame::mouseMoveEvent(QMouseEvent *const event, const qreal prev_angle = atan2(prevPos_.y() - trans[1], prevPos_.x() - trans[0]); - const qreal angle = atan2(event->y() - trans[1], event->x() - trans[0]); + const qreal angle = atan2(event->position().y() - trans[1], event->position().x() - trans[0]); const Vec axis = transformOf(camera->frame()->inverseTransformOf(Vec(0.0, 0.0, -1.0))); @@ -336,9 +336,9 @@ void ManipulatedFrame::mouseMoveEvent(QMouseEvent *const event, Vec trans; int dir = mouseOriginalDirection(event); if (dir == 1) - trans.setValue(event->x() - prevPos_.x(), 0.0, 0.0); + trans.setValue(event->position().x() - prevPos_.x(), 0.0, 0.0); else if (dir == -1) - trans.setValue(0.0, prevPos_.y() - event->y(), 0.0); + trans.setValue(0.0, prevPos_.y() - event->position().y(), 0.0); switch (camera->type()) { case Camera::PERSPECTIVE: @@ -367,7 +367,7 @@ void ManipulatedFrame::mouseMoveEvent(QMouseEvent *const event, case ROTATE: { Vec trans = camera->projectedCoordinatesOf(position()); - Quaternion rot = deformedBallQuaternion(event->x(), event->y(), trans[0], + Quaternion rot = deformedBallQuaternion(event->position().x(), event->position().y(), trans[0], trans[1], camera); trans = Vec(-rot[0], -rot[1], -rot[2]); trans = camera->frame()->orientation().rotate(trans); From 41e8a11e6531d61b7509606befb88940e57a5dbf Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 29 Jun 2023 15:15:34 +0100 Subject: [PATCH 27/85] Fix warnings in Arrangement_on_surface --- .../examples/Arrangement_on_surface_2/draw_arr.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp index ea99cca39a85..b62ba6aadc17 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp @@ -22,8 +22,8 @@ std::tuple hsv_to_rgb(float hue, float sat, float value) { float red, green, blue; float fc = value * sat; // Chroma - float hue_prime = fmod(hue / 60.0, 6); - float fx = fc * (1.0 - fabs(fmod(hue_prime, 2) - 1.0)); + float hue_prime = fmod(hue / 60.0f, 6); + float fx = fc * (1.0f - fabs(fmod(hue_prime, 2) - 1.0)); float fm = value - fc; if(0 <= hue_prime && hue_prime < 1) { @@ -98,12 +98,13 @@ int main() { std::size_t id(0); CGAL::draw(arr, [&] (Arrangement_2::Face_const_handle) -> CGAL::IO::Color { - float h = 360.0 * id++ / arr.number_of_faces(); + float h = 360.0f * id++ / arr.number_of_faces(); float s = 0.5; float v = 0.5; float r, g, b; + typedef unsigned char uchar; std::tie(r, g, b) = hsv_to_rgb(h, s, v); - return CGAL::IO::Color(r, g, b); + return CGAL::IO::Color(uchar(r*255), uchar(g*255), uchar(b*255)); }, "hsv colors", true); return EXIT_SUCCESS; From a6330295a6817038712b4de6fd3da23706a7a16c Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 30 Jun 2023 07:56:10 +0100 Subject: [PATCH 28/85] Fix for deprecated warning --- .../CGAL/Qt/manipulatedCameraFrame_impl.h | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/manipulatedCameraFrame_impl.h b/GraphicsView/include/CGAL/Qt/manipulatedCameraFrame_impl.h index 885ce76c7c20..6acb02247465 100644 --- a/GraphicsView/include/CGAL/Qt/manipulatedCameraFrame_impl.h +++ b/GraphicsView/include/CGAL/Qt/manipulatedCameraFrame_impl.h @@ -193,7 +193,7 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, } case MOVE_FORWARD: { - Quaternion rot = pitchYawQuaternion(event->x(), event->y(), camera); + Quaternion rot = pitchYawQuaternion(event->position().x(), event->position().y(), camera); rotate(rot); //#CONNECTION# wheelEvent MOVE_FORWARD case // actual translation is made in flyUpdate(). @@ -202,7 +202,7 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, } case MOVE_BACKWARD: { - Quaternion rot = pitchYawQuaternion(event->x(), event->y(), camera); + Quaternion rot = pitchYawQuaternion(event->position().x(), event->position().y(), camera); rotate(rot); // actual translation is made in flyUpdate(). // translate(inverseTransformOf(Vec(0.0, 0.0, flySpeed()))); @@ -210,10 +210,10 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, } case DRIVE: { - Quaternion rot = turnQuaternion(event->x(), camera); + Quaternion rot = turnQuaternion(event->position().x(), camera); rotate(rot); // actual translation is made in flyUpdate(). - driveSpeed_ = 0.01 * (event->y() - pressPos_.y()); + driveSpeed_ = 0.01 * (event->position().y() - pressPos_.y()); break; } @@ -223,7 +223,7 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, } case LOOK_AROUND: { - Quaternion rot = pitchYawQuaternion(event->x(), event->y(), camera); + Quaternion rot = pitchYawQuaternion(event->position().x(), event->position().y(), camera); rotate(rot); break; } @@ -233,9 +233,9 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, if (rotatesAroundUpVector_) { // Multiply by 2.0 to get on average about the same speed as with the // deformed ball - qreal dx = 2.0 * rotationSensitivity() * (prevPos_.x() - event->x()) / + qreal dx = 2.0 * rotationSensitivity() * (prevPos_.x() - event->position().x()) / camera->screenWidth(); - qreal dy = 2.0 * rotationSensitivity() * (prevPos_.y() - event->y()) / + qreal dy = 2.0 * rotationSensitivity() * (prevPos_.y() - event->position().y()) / camera->screenHeight(); if (constrainedRotationIsReversed_) dx = -dx; @@ -243,7 +243,7 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, rot = Quaternion(verticalAxis, dx) * Quaternion(Vec(1.0, 0.0, 0.0), dy); } else { Vec trans = camera->projectedCoordinatesOf(pivotPoint()); - rot = deformedBallQuaternion(event->x(), event->y(), trans[0], trans[1], + rot = deformedBallQuaternion(event->position().x(), event->position().y(), trans[0], trans[1], camera); } //#CONNECTION# These two methods should go together (spinning detection and @@ -257,7 +257,7 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, case SCREEN_ROTATE: { Vec trans = camera->projectedCoordinatesOf(pivotPoint()); - const qreal angle = atan2(event->y() - trans[1], event->x() - trans[0]) - + const qreal angle = atan2(event->position().y() - trans[1], event->position().x() - trans[0]) - atan2(prevPos_.y() - trans[1], prevPos_.x() - trans[0]); Quaternion rot(Vec(0.0, 0.0, 1.0), angle); @@ -272,7 +272,7 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, case ROLL: { const qreal angle = - CGAL_PI * (event->x() - prevPos_.x()) / camera->screenWidth(); + CGAL_PI * (event->position().x() - prevPos_.x()) / camera->screenWidth(); Quaternion rot(Vec(0.0, 0.0, 1.0), angle); rotate(rot); setSpinningQuaternion(rot); @@ -284,9 +284,9 @@ void ManipulatedCameraFrame::mouseMoveEvent(QMouseEvent *const event, Vec trans; int dir = mouseOriginalDirection(event); if (dir == 1) - trans.setValue(prevPos_.x() - event->x(), 0.0, 0.0); + trans.setValue(prevPos_.x() - event->position().x(), 0.0, 0.0); else if (dir == -1) - trans.setValue(0.0, event->y() - prevPos_.y(), 0.0); + trans.setValue(0.0, event->position().y() - prevPos_.y(), 0.0); switch (camera->type()) { case Camera::PERSPECTIVE: From 98fa0c089fd6f2e09622845fb7cea0ca8daa8593 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 18 Jul 2023 09:36:05 +0100 Subject: [PATCH 29/85] Fix for crash on Quit --- GraphicsView/include/CGAL/Qt/qglviewer_impl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h index e1ead77a2276..e89577b1d1ae 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h @@ -186,6 +186,7 @@ CGAL::QGLViewer::~QGLViewer() { helpWidget()->close(); delete helpWidget_; } + disconnect(context(), &QOpenGLContext::aboutToBeDestroyed, this, &CGAL::QGLViewer::contextIsDestroyed); } From c3b7214a1927966ee6cbe3faca72f0487fa11c22 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 26 Jul 2023 15:44:33 +0100 Subject: [PATCH 30/85] Fix the fix. The floats were already in the range [0,256] --- .../examples/Arrangement_on_surface_2/draw_arr.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp index b62ba6aadc17..8c3c9b4daf85 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp @@ -18,7 +18,7 @@ using Arrangement_2 = CGAL::Arrangement_2; * \param value Value component range: [0, 1] * \return tuple, where each component is in the range [0, 255] */ -std::tuple +std::tuple hsv_to_rgb(float hue, float sat, float value) { float red, green, blue; float fc = value * sat; // Chroma @@ -69,7 +69,10 @@ hsv_to_rgb(float hue, float sat, float value) { red *= 255; green *= 255; blue *= 255; - return std::make_tuple(red, green, blue); + unsigned char redc = (unsigned char)red; + unsigned char greenc = (unsigned char)green; + unsigned char bluec = (unsigned char)blue; + return std::make_tuple(redc, greenc, bluec); } int main() { @@ -104,7 +107,7 @@ int main() { float r, g, b; typedef unsigned char uchar; std::tie(r, g, b) = hsv_to_rgb(h, s, v); - return CGAL::IO::Color(uchar(r*255), uchar(g*255), uchar(b*255)); + return CGAL::IO::Color(r,g,b); }, "hsv colors", true); return EXIT_SUCCESS; From a0255568dd31824fef300eecee5a1e00339613e0 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 21 Aug 2023 11:09:45 +0100 Subject: [PATCH 31/85] Update changes.md --- Installation/CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Installation/CHANGES.md b/Installation/CHANGES.md index 388f336227b9..0466359b82b1 100644 --- a/Installation/CHANGES.md +++ b/Installation/CHANGES.md @@ -10,6 +10,7 @@ Release date: October 2023 - **Breaking change**: C++17 is now required - Support for Visual `C++` 14.0 (Visual studio 2015) is dropped. +- The demos as well as the `draw()` functions using the `Basic_viewer` are based on Qt6 [Release 5.6](https://github.com/CGAL/cgal/releases/tag/v5.6) From 48bd7cc0c73da80550675643b92117025b675e12 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 10:26:13 +0200 Subject: [PATCH 32/85] fix deprecation warnings from Qt6 --- GraphicsView/include/CGAL/Qt/qglviewer.h | 24 +++---- GraphicsView/include/CGAL/Qt/qglviewer_impl.h | 62 ++++++++----------- Polyhedron/demo/Polyhedron/MainWindow.cpp | 8 +-- Polyhedron/demo/Polyhedron/Viewer.cpp | 4 +- 4 files changed, 40 insertions(+), 58 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/qglviewer.h b/GraphicsView/include/CGAL/Qt/qglviewer.h index 2cf5b7faf342..a89a66a4b744 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer.h @@ -32,7 +32,7 @@ #include #include #include - +#include class QTabWidget; class QImage; @@ -839,33 +839,27 @@ compatible with raster mode): use \c glRasterPos3fv() instead. */ /*! @name Keyboard customization */ //@{ public: - unsigned int shortcut(qglviewer::KeyboardAction action) const; + QKeyCombination shortcut(qglviewer::KeyboardAction action) const; ::Qt::Key pathKey(unsigned int index) const; ::Qt::KeyboardModifiers addKeyFrameKeyboardModifiers() const; ::Qt::KeyboardModifiers playPathKeyboardModifiers() const; public Q_SLOTS: - void setShortcut(qglviewer::KeyboardAction action, unsigned int key); + void setShortcut(qglviewer::KeyboardAction action, QKeyCombination key); void setShortcut(qglviewer::KeyboardAction action, ::Qt::Modifier modifier, ::Qt::Key key) { - setShortcut(action, - static_cast(modifier)+ - static_cast(key)); + setShortcut(action, QKeyCombination{modifier, key}); } - void setKeyDescription(unsigned int key, QString description); + void setKeyDescription(QKeyCombination key, QString description); void setKeyDescription(::Qt::KeyboardModifier modifier, ::Qt::Key key, QString description) { - setKeyDescription(static_cast(modifier) + - static_cast(key), - description); + setKeyDescription(QKeyCombination{modifier, key}, description); } void setKeyDescription(::Qt::Modifier modifier, ::Qt::Key key, QString description) { - setKeyDescription(static_cast(modifier) + - static_cast(key), - description); + setKeyDescription(QKeyCombination{modifier, key}, description); } void clearShortcuts(); @@ -1075,8 +1069,8 @@ private Q_SLOTS: void setDefaultShortcuts(); QString cameraPathKeysString() const; QMap keyboardActionDescription_; - QMap keyboardBinding_; - QMap keyDescription_; + QMap keyboardBinding_; + QHash keyDescription_; // K e y F r a m e s s h o r t c u t s QMap< ::Qt::Key, unsigned int> pathIndex_; diff --git a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h index e89577b1d1ae..0611fcf92bac 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h @@ -1204,7 +1204,7 @@ CGAL_INLINE_FUNCTION void Viewer::mouseMoveEvent(QMouseEvent *e) { if (myMouseBehavior) - // Use e->x() and e->y() as you want... + // Use e->position().x() and e->position().y() as you want... else CGAL::QGLViewer::mouseMoveEvent(e); } @@ -1221,7 +1221,7 @@ else CGAL_INLINE_FUNCTION void CGAL::QGLViewer::mouseMoveEvent(QMouseEvent *e) { if (mouseGrabber()) { - mouseGrabber()->checkIfGrabsMouse(e->x(), e->y(), camera()); + mouseGrabber()->checkIfGrabsMouse(e->position().x(), e->position().y(), camera()); if (mouseGrabber()->grabsMouse()) if (mouseGrabberIsAManipulatedCameraFrame_) (dynamic_cast(mouseGrabber())) @@ -1249,7 +1249,7 @@ void CGAL::QGLViewer::mouseMoveEvent(QMouseEvent *e) { manipulatedFrame()->mouseMoveEvent(e, camera()); else if (hasMouseTracking()) { Q_FOREACH (qglviewer::MouseGrabber *mg, qglviewer::MouseGrabber::MouseGrabberPool()) { - mg->checkIfGrabsMouse(e->x(), e->y(), camera()); + mg->checkIfGrabsMouse(e->position().x(), e->position().y(), camera()); if (mg->grabsMouse()) { setMouseGrabber(mg); // Check that MouseGrabber is not disabled @@ -1278,7 +1278,7 @@ void CGAL::QGLViewer::mouseReleaseEvent(QMouseEvent *e) { ->qglviewer::ManipulatedFrame::mouseReleaseEvent(e, camera()); else mouseGrabber()->mouseReleaseEvent(e, camera()); - mouseGrabber()->checkIfGrabsMouse(e->x(), e->y(), camera()); + mouseGrabber()->checkIfGrabsMouse(e->position().x(), e->position().y(), camera()); if (!(mouseGrabber()->grabsMouse())) setMouseGrabber(nullptr); // update(); @@ -1510,18 +1510,14 @@ QString CGAL::QGLViewer::clickActionString(CGAL::qglviewer::ClickAction ca) { return QString(); } -static QString keyString(unsigned int key) { -#if QT_VERSION >= 0x040100 - return QKeySequence(int(key)).toString(QKeySequence::NativeText); -#else - return QString(QKeySequence(key)); -#endif +static QString keyString(QKeyCombination key) { + return QKeySequence(key).toString(QKeySequence::NativeText); } CGAL_INLINE_FUNCTION QString CGAL::QGLViewer::formatClickActionPrivate(ClickBindingPrivate cbp) { bool buttonsBefore = cbp.buttonsBefore != ::Qt::NoButton; - QString keyModifierString = keyString(cbp.modifiers + cbp.key); + QString keyModifierString = keyString(QKeyCombination(cbp.modifiers, cbp.key)); if (!keyModifierString.isEmpty()) { #ifdef Q_OS_MAC // modifiers never has a '+' sign. Add one space to clearly separate @@ -1767,7 +1763,7 @@ QString CGAL::QGLViewer::mouseString() const { /*! Defines a custom keyboard shortcut description, that will be displayed in the help() window \c Keyboard tab. -The \p key definition is given as an \c int using Qt enumerated values. Set an +The \p key definition is given as an \c QKeyCombination using Qt enumerated values. Set an empty \p description to remove a shortcut description: \code setKeyDescription(::Qt::Key_W, "Toggles wireframe display"); setKeyDescription(::Qt::CTRL+::Qt::Key_L, "Loads a new scene"); @@ -1779,7 +1775,7 @@ See the keyboardAndMouse example for illustration and the keyboard page for details. */ CGAL_INLINE_FUNCTION -void CGAL::QGLViewer::setKeyDescription(unsigned int key, QString description) { +void CGAL::QGLViewer::setKeyDescription(QKeyCombination key, QString description) { if (description.isEmpty()) keyDescription_.remove(key); else @@ -1871,17 +1867,15 @@ QString CGAL::QGLViewer::keyboardString() const { "Description", "Description column header in help window mouse tab")); - QMap keyDescription; + QHash keyDescription; // 1 - User defined key descriptions - for (QMap::ConstIterator kd = keyDescription_.begin(), - kdend = keyDescription_.end(); + for (auto kd = keyDescription_.begin(), kdend = keyDescription_.end(); kd != kdend; ++kd) keyDescription[kd.key()] = kd.value(); // Add to text in sorted order - for (QMap::ConstIterator kb = keyDescription.begin(), - endb = keyDescription.end(); + for (auto kb = keyDescription.begin(), endb = keyDescription.end(); kb != endb; ++kb) text += tableLine(keyString(kb.key()), kb.value()); @@ -1894,18 +1888,15 @@ QString CGAL::QGLViewer::keyboardString() const { } // 3 - KeyboardAction bindings description - for (QMap::ConstIterator - it = keyboardBinding_.begin(), - end = keyboardBinding_.end(); + for (auto it = keyboardBinding_.begin(), end = keyboardBinding_.end(); it != end; ++it) - if ((it.value() != 0) && + if ((it.value() != QKeyCombination{}) && ((!cameraIsInRotateMode()) || ((it.key() != qglviewer::INCREASE_FLYSPEED) && (it.key() != qglviewer::DECREASE_FLYSPEED)))) keyDescription[it.value()] = keyboardActionDescription_[it.key()]; // Add to text in sorted order - for (QMap::ConstIterator kb2 = keyDescription.begin(), - endb2 = keyDescription.end(); + for (auto kb2 = keyDescription.begin(), endb2 = keyDescription.end(); kb2 != endb2; ++kb2) text += tableLine(keyString(kb2.key()), kb2.value()); @@ -1919,15 +1910,15 @@ QString CGAL::QGLViewer::keyboardString() const { .arg(cpks) + "\n"; text += tableLine( - keyString(playPathKeyboardModifiers()) + "" + + keyString(QKeyCombination(playPathKeyboardModifiers())) + "" + CGAL::QGLViewer::tr("Fx", "Generic function key (F1..F12)") + "", CGAL::QGLViewer::tr("Plays path (or resets saved position)")); text += tableLine( - keyString(addKeyFrameKeyboardModifiers()) + "" + + keyString(QKeyCombination(addKeyFrameKeyboardModifiers())) + "" + CGAL::QGLViewer::tr("Fx", "Generic function key (F1..F12)") + "", CGAL::QGLViewer::tr("Adds a key frame to path (or defines a position)")); text += tableLine( - keyString(addKeyFrameKeyboardModifiers()) + "" + + keyString(QKeyCombination(addKeyFrameKeyboardModifiers())) + "" + CGAL::QGLViewer::tr("Fx", "Generic function key (F1..F12)") + "+" + CGAL::QGLViewer::tr("Fx", "Generic function key (F1..F12)") + "", CGAL::QGLViewer::tr("Deletes path (or saved position)")); @@ -2071,11 +2062,8 @@ void CGAL::QGLViewer::keyPressEvent(QKeyEvent *e) { _first_tick = true; } const ::Qt::KeyboardModifiers modifiers = e->modifiers(); - QMap::ConstIterator it = keyboardBinding_ - .begin(), - end = - keyboardBinding_.end(); - const unsigned int target = key | modifiers; + auto it = keyboardBinding_.begin(), end = keyboardBinding_.end(); + const QKeyCombination target{modifiers, key}; while ((it != end) && (it.value() != target)) ++it; @@ -2238,17 +2226,17 @@ Here are some examples: setShortcut(EXIT_VIEWER, ::Qt::Key_Q); // Alt+M toggles camera mode -setShortcut(CAMERA_MODE, ::Qt::ALT + ::Qt::Key_M); +setShortcut(CAMERA_MODE, ::Qt::ALT | ::Qt::Key_M); // The DISPLAY_FPS action is disabled setShortcut(DISPLAY_FPS, 0); \endcode Only one shortcut can be assigned to a given CGAL::QGLViewer::KeyboardAction (new -bindings replace previous ones). If several KeyboardAction are binded to the +bindings replace previous ones). If several KeyboardAction are bound to the same shortcut, only one of them is active. */ CGAL_INLINE_FUNCTION -void CGAL::QGLViewer::setShortcut(qglviewer::KeyboardAction action, unsigned int key) { +void CGAL::QGLViewer::setShortcut(qglviewer::KeyboardAction action, QKeyCombination key) { keyboardBinding_[action] = key; } @@ -2270,11 +2258,11 @@ See the keyboard page for details and default values and the keyboardAndMouse example for a practical illustration. */ CGAL_INLINE_FUNCTION -unsigned int CGAL::QGLViewer::shortcut(qglviewer::KeyboardAction action) const { +QKeyCombination CGAL::QGLViewer::shortcut(qglviewer::KeyboardAction action) const { if (keyboardBinding_.contains(action)) return keyboardBinding_[action]; else - return 0; + return {}; } diff --git a/Polyhedron/demo/Polyhedron/MainWindow.cpp b/Polyhedron/demo/Polyhedron/MainWindow.cpp index c5b6a3c7abbe..bc57849f7a75 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.cpp +++ b/Polyhedron/demo/Polyhedron/MainWindow.cpp @@ -820,12 +820,12 @@ void MainWindow::addAction(QAction* action) action->setVisible(true); action->setEnabled(true); - Q_FOREACH(QWidget* widget, action->associatedWidgets()) + for(auto object: action->associatedObjects()) { // qDebug() << QString("%1 (%2)\n") // .arg(widget->objectName()) // .arg(widget->metaObject()->className()); - QMenu* menu = qobject_cast(widget); + QMenu* menu = qobject_cast(object); if(menu) { addAction(menu->menuAction()); @@ -1030,7 +1030,7 @@ void MainWindow::reloadItem() { // Can use foreach: int mate_id = 0; - Q_FOREACH(const QVariant &v, iterable) + for(const QVariant &v: iterable) { Scene_item* mate = v.value(); Scene_item* new_item = new_items[mate_id]; @@ -2770,7 +2770,7 @@ void MainWindow::exportStatistics() } QString str; - Q_FOREACH(Scene_item* sit, items) + for(Scene_item* sit: items) { CGAL::Three::Scene_item::Header_data data = sit->header(); if(data.titles.size()>0) diff --git a/Polyhedron/demo/Polyhedron/Viewer.cpp b/Polyhedron/demo/Polyhedron/Viewer.cpp index 83182e00bf2e..53a6f3c86261 100644 --- a/Polyhedron/demo/Polyhedron/Viewer.cpp +++ b/Polyhedron/demo/Polyhedron/Viewer.cpp @@ -304,7 +304,7 @@ void Viewer::doBindings() connect( d->textRenderer, SIGNAL(sendMessage(QString,int)), this, SLOT(printMessage(QString,int)) ); connect(&d->messageTimer, SIGNAL(timeout()), SLOT(hideMessage())); - setShortcut(CGAL::qglviewer::EXIT_VIEWER, 0); + setShortcut(CGAL::qglviewer::EXIT_VIEWER, QKeyCombination{}); setKeyDescription(Qt::Key_T, tr("Turn the camera by 180 degrees")); setKeyDescription(Qt::Key_M, @@ -624,7 +624,7 @@ void Viewer::mousePressEvent(QMouseEvent* event) event->modifiers().testFlag(Qt::ShiftModifier)) { select(event->pos()); - requestContextMenu(event->globalPos()); + requestContextMenu(event->globalPosition().toPoint()); event->accept(); } else if(!event->modifiers() From 79a563bfbc682818e6964717dfe3977e08dc2d29 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 15:17:17 +0200 Subject: [PATCH 33/85] fix more deprecation warnings --- .../Plugins/AABB_tree/Cut_plugin.cpp | 2 +- .../AABB_tree/Do_trees_intersect_plugin.cpp | 2 +- .../Plugins/IO/Polylines_io_plugin.cpp | 4 ++-- .../Scene_aff_transformed_surface_mesh_item.h | 4 ++-- .../Plugins/PCA/Scene_edit_box_item.cpp | 2 +- .../Scene_facegraph_item_k_ring_selection.h | 2 +- .../demo/Polyhedron/Primitive_container.cpp | 8 +++---- .../Scene_item_rendering_helper.cpp | 18 +++++++------- .../Scene_polyhedron_selection_item.cpp | 24 +++++++++---------- .../demo/Polyhedron/Scene_polylines_item.cpp | 4 ++-- .../demo/Polyhedron/include/id_printing.h | 12 ++++------ 11 files changed, 40 insertions(+), 42 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp index 5c14416d9291..f72ebe5a7bd1 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp @@ -123,7 +123,7 @@ class FillGridSize { Simple_kernel::Vector_3 offset(v_offset.x, v_offset.y, v_offset.z); Point query = transfo( Point(x,y,z))-offset; FT min = DBL_MAX; - Q_FOREACH(SM_Tree *tree, sm_trees) + for(SM_Tree *tree: sm_trees) { FT dist = CGAL::sqrt( tree->squared_distance(query) ); if(dist < min) diff --git a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp index 08a8ef803e43..5f9eeed58388 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp @@ -131,7 +131,7 @@ private Q_SLOTS: this, &DoTreesIntersectplugin::update_trees); col_det = new CGAL::Rigid_triangle_mesh_collision_detection(); col_det->reserve(items.size()); - Q_FOREACH(Scene_movable_sm_item* item, items) + for(Scene_movable_sm_item* item: items) { col_det->add_mesh(*item->getFaceGraph()); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp index 0e4b1167f5a9..2f61bd32aa82 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp @@ -266,7 +266,7 @@ void Polyhedron_demo_polylines_io_plugin::split() scene->addItem(group); group->setColor(item->color()); int i=0; - Q_FOREACH(Scene_polylines_item::Polyline polyline, item->polylines) + for(Scene_polylines_item::Polyline polyline: item->polylines) { Scene_polylines_item::Polylines_container container; container.push_back(polyline); @@ -372,7 +372,7 @@ void Polyhedron_demo_polylines_io_plugin::join() Scene_polylines_item* new_polyline= new Scene_polylines_item(); Scene_polylines_item::Polylines_container container; - Q_FOREACH(Scene_polylines_item* item, items) + for(Scene_polylines_item* item: items) { for(Scene_polylines_item::Polylines_container::iterator it = item->polylines.begin(); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_surface_mesh_item.h b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_surface_mesh_item.h index 64d2cfe40a58..38ad5b0b124a 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_surface_mesh_item.h +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_surface_mesh_item.h @@ -59,8 +59,8 @@ struct Scene_aff_transformed_surface_mesh_item_priv positions_lines.resize(0); for(auto e : edges(*sm_ptr)) { - const Point& a = get(vpm, target(halfedge(e, *sm_ptr), *sm_ptr)); - const Point& b = get(vpm, target(opposite(halfedge(e, *sm_ptr), *sm_ptr), *sm_ptr)); + const Point a = get(vpm, target(halfedge(e, *sm_ptr), *sm_ptr)); + const Point b = get(vpm, target(opposite(halfedge(e, *sm_ptr), *sm_ptr), *sm_ptr)); positions_lines.push_back(a.x() - center_.x); positions_lines.push_back(a.y() - center_.y); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_edit_box_item.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_edit_box_item.cpp index 6dea656ae705..0d1130e70dd5 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_edit_box_item.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_edit_box_item.cpp @@ -938,7 +938,7 @@ void Scene_edit_box_item_priv::remodel_box(const QVector3D &dir) { CGAL::qglviewer::AxisPlaneConstraint::Type prev_cons = constraint.translationConstraintType(); constraint.setTranslationConstraintType(CGAL::qglviewer::AxisPlaneConstraint::FREE); - Q_FOREACH(Scene_edit_box_item::vertex* selected_vertex, selected_vertices ) + for(Scene_edit_box_item::vertex* selected_vertex: selected_vertices ) { int id = selected_vertex->id; CGAL_assume(id<8); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.h b/Polyhedron/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.h index 8370faf5e352..46d4c02ac9d6 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.h +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.h @@ -623,7 +623,7 @@ public Q_SLOTS: CGAL::QGLViewer* viewer = getViewerUnderCursor(); is_ready_to_highlight = !cut_highlighting; - hl_pos = viewer->mapFromGlobal(mouse_event->globalPos()); + hl_pos = viewer->mapFromGlobal(mouse_event->globalPosition()).toPoint(); QTimer::singleShot(0, this, SLOT(highlight())); }//end MouseMove return false; diff --git a/Polyhedron/demo/Polyhedron/Primitive_container.cpp b/Polyhedron/demo/Polyhedron/Primitive_container.cpp index 6d7250f5763b..245d0059b9ca 100644 --- a/Polyhedron/demo/Polyhedron/Primitive_container.cpp +++ b/Polyhedron/demo/Polyhedron/Primitive_container.cpp @@ -43,10 +43,10 @@ Primitive_container::Primitive_container(int program, bool indexed) Primitive_container::~Primitive_container() { - Q_FOREACH(Vbo* vbo, d->VBOs) + for(Vbo* vbo: d->VBOs) if(vbo) delete vbo; - Q_FOREACH(CGAL::Three::Viewer_interface*viewer, d->VAOs.keys()) + for(CGAL::Three::Viewer_interface*viewer: d->VAOs.keys()) { removeViewer(viewer); } @@ -72,7 +72,7 @@ void Primitive_container::initializeBuffers(CGAL::Three::Viewer_interface* viewe return; viewer->makeCurrent(); d->VAOs[viewer]->bind(); - Q_FOREACH(CGAL::Three::Vbo* vbo, d->VAOs[viewer]->vbos) + for(CGAL::Three::Vbo* vbo: d->VAOs[viewer]->vbos) { vbo->bind(); if(vbo->dataSize !=0) @@ -136,7 +136,7 @@ void Primitive_container::removeViewer(CGAL::Three::Viewer_interface* viewer) void Primitive_container::reset_vbos(Scene_item_rendering_helper::Gl_data_names name) { - Q_FOREACH(CGAL::Three::Vbo* vbo, d->VBOs) + for(CGAL::Three::Vbo* vbo: d->VBOs) { if(!vbo) continue; diff --git a/Polyhedron/demo/Polyhedron/Scene_item_rendering_helper.cpp b/Polyhedron/demo/Polyhedron/Scene_item_rendering_helper.cpp index 27bb13524126..0af18b2450ce 100644 --- a/Polyhedron/demo/Polyhedron/Scene_item_rendering_helper.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_item_rendering_helper.cpp @@ -101,17 +101,17 @@ void Scene_item_rendering_helper::initGL(CGAL::Three::Viewer_interface* viewer) priv->alphaSlider->setValue(255); } - Q_FOREACH(Triangle_container* tc, priv->triangle_containers) + for(Triangle_container* tc: priv->triangle_containers) { if(!tc->isGLInit(viewer)) tc->initGL(viewer); } - Q_FOREACH(Edge_container* ec, priv->edge_containers) + for(Edge_container* ec: priv->edge_containers) { if(!ec->isGLInit(viewer)) ec->initGL(viewer); } - Q_FOREACH(Point_container* pc, priv->point_containers) + for(Point_container* pc: priv->point_containers) { if(!pc->isGLInit(viewer)) pc->initGL(viewer); @@ -255,15 +255,15 @@ void Scene_item_rendering_helper::setBuffersInit(Viewer_interface* viewer, bool void Scene_item_rendering_helper::removeViewer(Viewer_interface *viewer) { - Q_FOREACH(Triangle_container* tc, priv->triangle_containers) + for(Triangle_container* tc: priv->triangle_containers) { tc->removeViewer(viewer); } - Q_FOREACH(Edge_container* ec, priv->edge_containers) + for(Edge_container* ec: priv->edge_containers) { ec->removeViewer(viewer); } - Q_FOREACH(Point_container* pc, priv->point_containers) + for(Point_container* pc: priv->point_containers) { pc->removeViewer(viewer); } @@ -272,17 +272,17 @@ void Scene_item_rendering_helper::removeViewer(Viewer_interface *viewer) void Scene_item_rendering_helper::newViewer(Viewer_interface *viewer) { viewer->makeCurrent(); - Q_FOREACH(Triangle_container* tc, priv->triangle_containers) + for(Triangle_container* tc: priv->triangle_containers) { if(!tc->isGLInit(viewer)) tc->initGL(viewer); } - Q_FOREACH(Edge_container* ec, priv->edge_containers) + for(Edge_container* ec: priv->edge_containers) { if(!ec->isGLInit(viewer)) ec->initGL(viewer); } - Q_FOREACH(Point_container* pc, priv->point_containers) + for(Point_container* pc: priv->point_containers) { if(!pc->isGLInit(viewer)) pc->initGL(viewer); diff --git a/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp b/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp index a6669cb35c18..b986582fa00c 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp @@ -345,7 +345,7 @@ void Scene_polyhedron_selection_item_priv::compute_any_elements(std::vectorpolylines = polylines; QVariant metadata_variant = property("polylines metadata"); - if(metadata_variant.type() == QVariant::StringList) + if(metadata_variant.typeId() == QMetaType::QStringList) { item->setProperty("polylines metadata", metadata_variant); } @@ -686,7 +686,7 @@ Scene_polylines_item::merge(Scene_polylines_item* other_item) { other_item->polylines.end(), std::back_inserter(polylines)); QVariant other_metadata_variant = other_item->property("polylines metadata"); - if(other_metadata_variant.type() == QVariant::StringList) + if(other_metadata_variant.typeId() == QMetaType::QStringList) { QStringList metadata = property("polylines metadata").toStringList(); metadata.append(other_metadata_variant.toStringList()); diff --git a/Polyhedron/demo/Polyhedron/include/id_printing.h b/Polyhedron/demo/Polyhedron/include/id_printing.h index 91be6e8f2246..2bf10a371c09 100644 --- a/Polyhedron/demo/Polyhedron/include/id_printing.h +++ b/Polyhedron/demo/Polyhedron/include/id_printing.h @@ -437,7 +437,6 @@ bool printVertexIds(const Mesh& mesh, TextListItem* vitems) { using Ppmap = typename boost::property_map::const_type; - using Point = typename boost::property_traits::value_type; using IDmap = typename boost::property_map::type; Ppmap ppmap = get(boost::vertex_point, mesh); @@ -452,7 +451,7 @@ bool printVertexIds(const Mesh& mesh, // fills textItems for(typename boost::graph_traits::vertex_descriptor vh : vertices(mesh)) { - const Point& p = get(ppmap, vh); + const auto p = get(ppmap, vh); vitems->append(new TextItem(float(p.x() + offset.x), float(p.y() + offset.y), float(p.z() + offset.z), @@ -479,7 +478,6 @@ bool printEdgeIds(const Mesh& mesh, TextListItem* eitems) { using Ppmap = typename boost::property_map::const_type; - using Point = typename boost::property_traits::value_type; using IDmap = typename boost::property_map::type; Ppmap ppmap = get(boost::vertex_point, mesh); @@ -493,8 +491,8 @@ bool printEdgeIds(const Mesh& mesh, for(typename boost::graph_traits::edge_descriptor e : edges(mesh)) { - const Point& p1 = get(ppmap, source(e, mesh)); - const Point& p2 = get(ppmap, target(e, mesh)); + const auto p1 = get(ppmap, source(e, mesh)); + const auto p2 = get(ppmap, target(e, mesh)); eitems->append(new TextItem(float((p1.x() + p2.x()) / 2 + offset.x), float((p1.y() + p2.y()) / 2 + offset.y), float((p1.z() + p2.z()) / 2 + offset.z), @@ -631,8 +629,8 @@ int zoomToId(const Mesh& mesh, if(get(eidmap, halfedge(e, mesh))/2 == id) { typename boost::graph_traits::halfedge_descriptor hf = halfedge(e, mesh); - const Point& p1 = get(ppmap, source(e, mesh)); - const Point& p2 = get(ppmap, target(e, mesh)); + const auto p1 = get(ppmap, source(e, mesh)); + const auto p2 = get(ppmap, target(e, mesh)); p = Point((float)(p1.x() + p2.x()) / 2 + offset.x, (float)(p1.y() + p2.y()) / 2 + offset.y, (float)(p1.z() + p2.z()) / 2 + offset.z ); From da0b65d7c9acf0b3842501e47a5c6c988dbbbb45 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 15:29:23 +0200 Subject: [PATCH 34/85] fix QSJ/C++ exceptions handling The javascript testsuite passes. --- Polyhedron/demo/Polyhedron/MainWindow.cpp | 88 +++++-------------- Polyhedron/demo/Polyhedron/MainWindow.h | 3 + .../demo/Polyhedron/Polyhedron_demo.cpp | 4 +- Polyhedron/demo/Polyhedron/javascript/lib.js | 8 +- .../bad/catch_and_retrow_cpp_exception.js | 4 +- .../tests/good/catch_missing_file.js | 2 +- .../caught_cpp_exception_in_an_include.js | 4 +- .../javascript/tests/good/cpp_exception.js | 4 +- .../good/cpp_exception_from_a_function.js | 6 +- .../tests/good/cpp_exception_in_an_include.js | 4 +- Three/include/CGAL/Three/exceptions.h | 59 +++++-------- 11 files changed, 59 insertions(+), 127 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.cpp b/Polyhedron/demo/Polyhedron/MainWindow.cpp index 02a6a8cf0791..5829ffb5e22c 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.cpp +++ b/Polyhedron/demo/Polyhedron/MainWindow.cpp @@ -85,30 +85,16 @@ void myScene_itemFromScriptValue(const QJSValue &object, out = qobject_cast(object.toQObject()); } - - -#if 0 -QJSValue myPrintFunction(QScriptContext *context, QJSEngine *engine) +void MainWindow::print(QString message) { - MainWindow* mw = qobject_cast(engine->parent()); - QString result; - for (int i = 0; i < context->argumentCount(); ++i) { - if (i > 0) - result.append(" "); - result.append(context->argument(i).toString()); - } - - if(mw) mw->message(QString("QtScript: ") + result, ""); - QTextStream (stdout) << (QString("QtScript: ") + result) << "\n"; - - return engine->undefinedValue(); + this->message(QString("Script message: ") + message, ""); + QTextStream (stdout) << (QString("Script message: ") + message) << "\n"; } -#endif inline QKeySequence combine(Qt::Modifier m, Qt::Key k) { - return QKeySequence(static_cast(m)+static_cast(k)); + return QKeySequence(QKeyCombination(m, k)); } MainWindow::~MainWindow() @@ -287,8 +273,8 @@ MainWindow::MainWindow(const QStringList &keywords, bool verbose, QWidget* paren // Reset the "Operation menu" clearMenu(ui->menuOperations); - std::cerr << "Enable scripts.\n"; script_engine = new QJSEngine(this); + script_engine->installExtensions(QJSEngine::ConsoleExtension); #if 0 qScriptRegisterMetaType(script_engine, @@ -473,42 +459,25 @@ void MainWindow::filterOperations(bool) void MainWindow::evaluate_script(QString script, const QString& filename, const bool quiet) { -#if 0 - QScriptContext* context = script_engine->currentContext(); - QJSValue object = context->activationObject(); + QJSValue object = script_engine->globalObject(); QJSValue former_current_filename = object.property("current_filename");; object.setProperty("current_filename", filename); -#endif - - QJSValue value = script_engine->evaluate(script, filename); - if (value.isError()) + QStringList error_bt; + QJSValue value = script_engine->evaluate(script, filename, 1, &error_bt); + if (!error_bt.isEmpty()) { if(! quiet){ - qDebug() << "Uncaught exception at line" - << value.property("lineNumber").toInt() - << ":" << value.toString(); - } -#if 0 - - if(script_engine->hasUncaughtException()) { - QJSValue js_exception = script_engine->uncaughtException(); - QJSValue js_bt =js_exception.property("backtrace"); - QStringList bt = script_engine->uncaughtExceptionBacktrace(); - if(js_bt.isValid()) { - QStringList other_bt; - qJSValueToSequence(js_bt, other_bt); - if(!other_bt.isEmpty()) bt = other_bt; - } - if(!quiet) { - QTextStream err(stderr); - err << "Qt Script exception:\n" - << js_exception.toString() + QString err_str; + QTextStream err(&err_str); + err << tr("Qt Script exception at %1:%2").arg(value.property("fileName").toString()) + .arg(value.property("lineNumber").toInt()) + << ":" << value.toString() << "\nBacktrace:\n"; - Q_FOREACH(QString line, bt) { + for(auto line: error_bt) { err << " " << line << "\n"; } + qWarning().noquote() << err_str; } - throw CGAL::Three::Script_exception - (script_engine->uncaughtException().toString(), bt); + throw CGAL::Three::Script_exception(value.toString(), error_bt); } else if(!quiet && !value.isNull() && !value.isUndefined()) { QTextStream(stderr) << "Qt Script evaluated to \"" @@ -516,7 +485,6 @@ void MainWindow::evaluate_script(QString script, } object.setProperty("current_filename", former_current_filename); -#endif } void MainWindow::evaluate_script_quiet(QString script, @@ -1193,7 +1161,6 @@ void MainWindow::open(QString filename) bool MainWindow::open(QString filename, QString loader_name) { QFileInfo fileinfo(filename); std::optional item_opt; -#if 0 // AF try { item_opt = wrap_a_call_to_cpp ([this, fileinfo, loader_name]() @@ -1210,11 +1177,7 @@ bool MainWindow::open(QString filename, QString loader_name) { std::cerr << e.what() << std::endl; return false; } -#else - bool ok; - loadItem(fileinfo, findLoader(loader_name), ok); - return ok; -#endif + return true; } @@ -1818,20 +1781,14 @@ void MainWindow::closeEvent(QCloseEvent *event) } -bool MainWindow::loadScript(QString filename) -{ -#if 0 +bool MainWindow::loadScript(QString filename){ QFileInfo fileinfo(filename); std::optional opt = wrap_a_call_to_cpp ([this, fileinfo] { return loadScript(fileinfo); - }, this, __FILE__, __LINE__, CGAL::Three::PARENT_CONTEXT); + }, this, __FILE__, __LINE__); if(!opt) return false; else return *opt; -#else - QFileInfo fileinfo(filename); - return loadScript(fileinfo); -#endif } bool MainWindow::loadScript(QFileInfo info) @@ -1858,15 +1815,10 @@ bool MainWindow::loadScript(QFileInfo info) void MainWindow::throw_exception() { -#if 0 // AF wrap_a_call_to_cpp([]() { throw std::runtime_error("Exception thrown in " "MainWindow::throw_exception()"); }, this, __FILE__, __LINE__); -#else - throw std::runtime_error("Exception thrown in " - "MainWindow::throw_exception()"); -#endif } void MainWindow::on_actionLoadScript_triggered() diff --git a/Polyhedron/demo/Polyhedron/MainWindow.h b/Polyhedron/demo/Polyhedron/MainWindow.h index b58fa02912fc..542cc40ea75d 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.h +++ b/Polyhedron/demo/Polyhedron/MainWindow.h @@ -256,6 +256,9 @@ public Q_SLOTS: void message(QString, QString, QString = QString("normal")); + //! Function `print` used by Javascript scripts. + void print(QString message); + //!Returns true if the target plugin is present. If not, returns false. bool hasPlugin(const QString&) const; diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp index 6348c203eab8..7b6e5225dfe3 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp @@ -129,10 +129,10 @@ Polyhedron_demo::Polyhedron_demo(int& argc, char **argv, } #endif - // mainWindow.loadScript(":/cgal/Polyhedron_3/javascript/lib.js"); + mainWindow.loadScript(":/cgal/Polyhedron_3/javascript/lib.js"); QFileInfo autostart_js("autostart.js"); if(!parser.isSet(no_autostart) && autostart_js.exists()) { - // mainWindow.loadScript(autostart_js); + mainWindow.loadScript(autostart_js); } Q_FOREACH(QString filename, parser.positionalArguments()) { mainWindow.open(filename); diff --git a/Polyhedron/demo/Polyhedron/javascript/lib.js b/Polyhedron/demo/Polyhedron/javascript/lib.js index bf3638484150..38b3fbba299f 100644 --- a/Polyhedron/demo/Polyhedron/javascript/lib.js +++ b/Polyhedron/demo/Polyhedron/javascript/lib.js @@ -12,11 +12,15 @@ print_backtrace = function(bt, prefix) { print_exception_and_bt = function(e) { print("Caught exception in " + current_filename + ": " + e) - print("Backtrace:") - print_backtrace(e.backtrace) + if(typeof e.backtrace !== 'undefined') { +console.log("ICI") + print("Backtrace:") + print_backtrace(e.backtrace) + } } quit = main_window.quit +print = main_window.print noop = function () {} diff --git a/Polyhedron/demo/Polyhedron/javascript/tests/bad/catch_and_retrow_cpp_exception.js b/Polyhedron/demo/Polyhedron/javascript/tests/bad/catch_and_retrow_cpp_exception.js index 6ae030b02204..7c745c672155 100644 --- a/Polyhedron/demo/Polyhedron/javascript/tests/bad/catch_and_retrow_cpp_exception.js +++ b/Polyhedron/demo/Polyhedron/javascript/tests/bad/catch_and_retrow_cpp_exception.js @@ -9,9 +9,7 @@ f = function() { try { f() } catch(e) { - print("Caught exception in catch_and_retrow_cpp_exception.js:\n " + e) - print("Backtrace:") - print_backtrace(e.backtrace) + print_exception_and_bt(e) print("Rethrow the exception...") throw e } diff --git a/Polyhedron/demo/Polyhedron/javascript/tests/good/catch_missing_file.js b/Polyhedron/demo/Polyhedron/javascript/tests/good/catch_missing_file.js index 7d947404ea08..a24acf986753 100644 --- a/Polyhedron/demo/Polyhedron/javascript/tests/good/catch_missing_file.js +++ b/Polyhedron/demo/Polyhedron/javascript/tests/good/catch_missing_file.js @@ -8,5 +8,5 @@ try { throw "Wrong exception!" good = true } -if(!good) throw "The exception was not caugth!" +if(!good) throw "The exception was not caught!" print("OK in catch_missing_file") diff --git a/Polyhedron/demo/Polyhedron/javascript/tests/good/caught_cpp_exception_in_an_include.js b/Polyhedron/demo/Polyhedron/javascript/tests/good/caught_cpp_exception_in_an_include.js index 628a9d9ff31f..1cdc6b35d997 100644 --- a/Polyhedron/demo/Polyhedron/javascript/tests/good/caught_cpp_exception_in_an_include.js +++ b/Polyhedron/demo/Polyhedron/javascript/tests/good/caught_cpp_exception_in_an_include.js @@ -2,9 +2,7 @@ var good = false try { include("../bad/catch_and_retrow_cpp_exception.js") } catch(e) { - print("Caught exception in caught_cpp_exception_in_an_include.js:\n " + e) - print("Backtrace:") - print_backtrace(e.backtrace) + print_exception_and_bt(e) if(!e.toString().match(/Exception thrown in MainWindow::throw_exception/)) throw "Wrong exception!" good = true diff --git a/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception.js b/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception.js index df91fa781464..43204ff0e465 100644 --- a/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception.js +++ b/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception.js @@ -2,9 +2,7 @@ var good = false try { main_window.throw_exception() } catch(e) { - print("Exception caught in cpp_exception.js: " + e) - print("Backtrace:") - print_backtrace(e.backtrace) + print_exception_and_bt(e) if(!e.toString().match(/Exception thrown in MainWindow::throw_exception/)) throw "Wrong exception!" good = true diff --git a/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception_from_a_function.js b/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception_from_a_function.js index 4b889937ef3c..cde7f159e84a 100644 --- a/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception_from_a_function.js +++ b/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception_from_a_function.js @@ -6,13 +6,11 @@ function throw_cpp_exception() { try { throw_cpp_exception() } catch(e) { - print("Exception caught in cpp_exception_from_a_function.js: " + e) - print("Backtrace:") - print_backtrace(e.backtrace) + print_exception_and_bt(e) if(!e.toString().match(/Exception thrown in MainWindow::throw_exception/)) throw "Wrong exception!" good = true } -if(!good) throw "The exception was not caugth!" +if(!good) throw "The exception was not caught!" print("OK at the end of cpp_exception.js") diff --git a/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception_in_an_include.js b/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception_in_an_include.js index 3e61637989fd..507583abf0c0 100644 --- a/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception_in_an_include.js +++ b/Polyhedron/demo/Polyhedron/javascript/tests/good/cpp_exception_in_an_include.js @@ -2,9 +2,7 @@ var good = false try { include("../bad/uncaught_cpp_exception.js") } catch(e) { - print("Exception caught in cpp_exception_in_an_include.js: " + e) - print("Backtrace:") - print_backtrace(e.backtrace) + print_exception_and_bt(e) if(!e.toString().match(/Exception thrown in MainWindow::throw_exception/)) throw "Wrong exception!" good = true diff --git a/Three/include/CGAL/Three/exceptions.h b/Three/include/CGAL/Three/exceptions.h index 6953e16885db..927489b4f203 100644 --- a/Three/include/CGAL/Three/exceptions.h +++ b/Three/include/CGAL/Three/exceptions.h @@ -58,9 +58,6 @@ struct Optional_or_bool { static type invoke(Callable f) { f(); return true; } }; -enum Context { CURRENT_CONTEXT, PARENT_CONTEXT }; - -#if 1 // AF @todo scripting has changed /// This function template wraps a `Callable` that can be called without /// any argument (such as a lambda expression without arguments), and in /// case the function call is in a Qt Script context, wraps the call in a @@ -70,40 +67,34 @@ enum Context { CURRENT_CONTEXT, PARENT_CONTEXT }; template typename Optional_or_bool::type>::type wrap_a_call_to_cpp(Callable f, - // QScriptable* qs = 0, + QObject* object = 0, const char* file = 0, - int line = -1, - Context c = CURRENT_CONTEXT) { - typedef typename cpp11::result_of::type Callable_RT; + int line = -1) { + typedef decltype(f()) Callable_RT; typedef Optional_or_bool O_r_b; - typedef typename O_r_b::type Return_type; - + QJSEngine* script_engine = qjsEngine(object); const bool no_try_catch = qApp->property("no-try-catch").toBool(); - if(no_try_catch /* || qs == 0 || !qs->context() */ ) return O_r_b::invoke(f); + if(no_try_catch || script_engine == 0) return O_r_b::invoke(f); else try { return O_r_b::invoke(f); } catch(const std::exception& e) { -#if 0 const Script_exception* se = dynamic_cast(&e); - QScriptContext* context = qs->context(); - QStringList qt_bt = context->backtrace(); - if(se) qt_bt = se->backtrace(); - std::cerr << "Backtrace:\n"; - Q_FOREACH(QString s, qt_bt) - { - std::cerr << " " << qPrintable(s) << std::endl; + QStringList qt_bt; + if(se) { + qt_bt = se->backtrace(); + if(qt_bt.size() != 0) std::cerr << "Backtrace:\n"; } - context = context->parentContext(); - if(c == PARENT_CONTEXT) { - std::cerr << "> parent"; - context = context->parentContext(); - } else { - std::cerr << "> current"; + QJSValue js_bt = script_engine->newArray(qt_bt.size()); + if(qt_bt.size() != 0) { + quint32 i = 0; + for(auto s: qt_bt) + { + std::cerr << " " << qPrintable(s) << std::endl; + js_bt.setProperty(i++, s); + } } - std::cerr << " context: " - << qPrintable(context->toString()) << std::endl; QString error; if(se) { error = se->what(); @@ -112,22 +103,14 @@ wrap_a_call_to_cpp(Callable f, QString context; if(file != 0) context += QObject::tr(" at file %1").arg(file); if(line != -1) context += QString(":%1").arg(line); - if(!context.isNull()) { - error += context; - qt_bt.push_front(QObject::tr("") + context); - } error += QString(": %1").arg(e.what()); } - QScriptValue v = context->throwError(error); - v.setProperty("backtrace", - qScriptValueFromSequence(context->engine(), qt_bt)); - std::cerr << "result after throwError: " - << qPrintable(v.toString()) << std::endl; -#endif - return Return_type(); + QJSValue error_value = script_engine->newErrorObject(QJSValue::GenericError, error); + error_value.setProperty("backtrace", js_bt); + script_engine->throwError(error_value); + return {}; } } -#endif } // end namespace Three } // end namespace CGAL From a12a0fafa9a7d9f716874c0d910b74ab2aa2dd0c Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 15:29:47 +0200 Subject: [PATCH 35/85] TBB is a SYSTEM library --- Installation/cmake/modules/CGAL_TBB_support.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Installation/cmake/modules/CGAL_TBB_support.cmake b/Installation/cmake/modules/CGAL_TBB_support.cmake index 372f3208578a..8a99682f0fe7 100644 --- a/Installation/cmake/modules/CGAL_TBB_support.cmake +++ b/Installation/cmake/modules/CGAL_TBB_support.cmake @@ -7,4 +7,7 @@ if(TBB_FOUND AND NOT TARGET CGAL::TBB_support) INTERFACE_COMPILE_DEFINITIONS "CGAL_LINKED_WITH_TBB;NOMINMAX" INTERFACE_INCLUDE_DIRECTORIES "${TBB_INCLUDE_DIRS}" INTERFACE_LINK_LIBRARIES "TBB::tbb;TBB::tbbmalloc;Threads::Threads") + if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.25) + set_target_properties(CGAL::TBB_support PROPERTIES SYSTEM TRUE) + endif() endif() From 9f68b1a0bed10e502a281adb71dfd480f2972880 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 15:29:47 +0200 Subject: [PATCH 36/85] TBB is a SYSTEM library, and CGAL::CGAL is not --- Installation/lib/cmake/CGAL/CGALConfig.cmake | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Installation/lib/cmake/CGAL/CGALConfig.cmake b/Installation/lib/cmake/CGAL/CGALConfig.cmake index 6bc023bdf65d..abd23a6e7fe0 100644 --- a/Installation/lib/cmake/CGAL/CGALConfig.cmake +++ b/Installation/lib/cmake/CGAL/CGALConfig.cmake @@ -124,7 +124,9 @@ include(${CGAL_MODULES_DIR}/CGAL_target_use_TBB.cmake) if( CGAL_DEV_MODE OR RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE ) # Do not use -isystem for CGAL include paths - set(CMAKE_NO_SYSTEM_FROM_IMPORTED TRUE) + if(CMAKE_VERSION VERSION_LESS 3.25) + set(CMAKE_NO_SYSTEM_FROM_IMPORTED TRUE) + endif() endif() foreach(comp ${CGAL_FIND_COMPONENTS}) @@ -179,6 +181,12 @@ foreach(cgal_lib ${CGAL_LIBRARIES}) set(WITH_${cgal_lib} TRUE) if(${cgal_lib}_FOUND AND NOT TARGET ${cgal_lib}) add_library(${cgal_lib} INTERFACE IMPORTED GLOBAL) + if( CGAL_DEV_MODE OR RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE ) + # Do not use -isystem for CGAL include paths + if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.25) + set_target_properties(${cgal_lib} PROPERTIES SYSTEM FALSE) + endif() + endif() if(NOT TARGET CGAL::${cgal_lib}) add_library(CGAL::${cgal_lib} ALIAS ${cgal_lib}) endif() From d8583c93d59b054c8dcc5278a183b88c1c102305 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 16:47:12 +0200 Subject: [PATCH 37/85] replace deprecated QMatrix4x4*QVector3D by map --- .../Plugins/PCA/Affine_transform_plugin.cpp | 18 +++++++++--------- .../Polyhedron/Plugins/PMP/Extrude_plugin.cpp | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp index 1061b04536ba..d9fbc5a094b4 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp @@ -616,9 +616,9 @@ endPointSet(const QMatrix4x4& transform_matrix) for(Point_set::Index idx : *new_ps) { - QVector3D vec = transform_matrix * QVector3D(new_ps->point(idx).x() - c.x, - new_ps->point(idx).y() - c.y, - new_ps->point(idx).z() - c.z); + QVector3D vec = transform_matrix.map(QVector3D(new_ps->point(idx).x() - c.x, + new_ps->point(idx).y() - c.y, + new_ps->point(idx).z() - c.z)); new_ps->point(idx) = Kernel::Point_3(vec.x(), vec.y(), vec.z()); } @@ -643,9 +643,9 @@ endPolygonSoup(const QMatrix4x4& transform_matrix) for(Point_3& p : new_points) { - QVector3D vec = transform_matrix * QVector3D(p.x() - c.x, - p.y() - c.y, - p.z() - c.z); + QVector3D vec = transform_matrix.map(QVector3D(p.x() - c.x, + p.y() - c.y, + p.z() - c.z)); p = Kernel::Point_3(vec.x(), vec.y(), vec.z()); } @@ -670,9 +670,9 @@ endPolygonMesh(const QMatrix4x4& transform_matrix) const CGAL::qglviewer::Vec& c = aff_transformed_item->center(); auto transformation = [&c, &transform_matrix](const Kernel::Point_3& p) -> Kernel::Point_3 { - QVector3D vec = transform_matrix * QVector3D(p.x() - c.x, - p.y() - c.y, - p.z() - c.z); + QVector3D vec = transform_matrix.map(QVector3D(p.x() - c.x, + p.y() - c.y, + p.z() - c.z)); return { vec.x(), vec.y(), vec.z() }; }; diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp index caea10065a9c..da2089147d30 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp @@ -447,7 +447,7 @@ private Q_SLOTS: transform_matrix.data()[i] = (float)matrix[i]; rotate_matrix = transform_matrix; rotate_matrix.setColumn(3, QVector4D(0,0,0,1)); - QVector3D dir = rotate_matrix * QVector3D(0,1,0); + QVector3D dir = rotate_matrix.map(QVector3D(0,1,0)); dir.normalize(); dir = length * dir; From dc7f6af55d1c6840d2ae72384a3f5c9dc7a21336 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 16:47:40 +0200 Subject: [PATCH 38/85] check that we have an exact match (whole string) --- Polyhedron/demo/Polyhedron/Scene_plane_item.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Scene_plane_item.cpp b/Polyhedron/demo/Polyhedron/Scene_plane_item.cpp index ba455ac0cc22..f2175e4271b0 100644 --- a/Polyhedron/demo/Polyhedron/Scene_plane_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_plane_item.cpp @@ -329,13 +329,13 @@ void Scene_plane_item::setPlaneOrientation() if(!ok) return; - match = rx.match(eq); // AF: exact? - // does_match = rx.exactMatch(eq); - if(! match.hasMatch()) + match = rx.match(eq); + does_match = match.hasMatch() && match.capturedLength(0) == eq.size(); + if(!does_match) { QMessageBox::warning(CGAL::Three::Three::mainWindow(),"Error","The input must be of the form a*x+b*y+c*z+d=0"); } - }while(! match.hasMatch()); + }while(!does_match); double a(match.captured(1).toDouble()), b(match.captured(2).toDouble()), c(match.captured(3).toDouble()), d(match.captured(4).toDouble()); Kernel_epic::Point_3 sure_point(0,0,0); From f9c213735bb6e157a60442590cb263a7fbad397b Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 17:53:32 +0200 Subject: [PATCH 39/85] last deprecation warning in a full build of demo/Polyhedron --- .../Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp index 724ed194fc51..3e94a0adea31 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp @@ -116,7 +116,7 @@ void Polyhedron_demo_edit_polyhedron_plugin::init(QMainWindow* mainWindow, CGAL: actionDeformation->setObjectName("actionDeformation"); actionDeformation->setShortcutContext(Qt::ApplicationShortcut); autoConnectActions(); - e_shortcut = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_E), mw); + e_shortcut = new QShortcut(QKeySequence(Qt::CTRL | Qt::Key_E), mw); connect(e_shortcut, &QShortcut::activated, this, &Polyhedron_demo_edit_polyhedron_plugin::dispatchAction); connect(e_shortcut, &QShortcut::activatedAmbiguously, this, &Polyhedron_demo_edit_polyhedron_plugin::dispatchAction); From abb9080102af1f6d2cbbb642820bafda2aa98a7c Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 18:19:53 +0200 Subject: [PATCH 40/85] cleanup demo/AABB_tree --- AABB_tree/demo/AABB_tree/CMakeLists.txt | 28 ++----------------- AABB_tree/demo/AABB_tree/MainWindow.cpp | 24 +--------------- AABB_tree/demo/AABB_tree/MainWindow.h | 37 ------------------------- AABB_tree/demo/AABB_tree/Scene.h | 2 -- AABB_tree/demo/AABB_tree/Viewer.cpp | 3 -- AABB_tree/demo/AABB_tree/init.js | 2 -- 6 files changed, 3 insertions(+), 93 deletions(-) delete mode 100644 AABB_tree/demo/AABB_tree/init.js diff --git a/AABB_tree/demo/AABB_tree/CMakeLists.txt b/AABB_tree/demo/AABB_tree/CMakeLists.txt index f455cae3f06a..b66e3f468771 100644 --- a/AABB_tree/demo/AABB_tree/CMakeLists.txt +++ b/AABB_tree/demo/AABB_tree/CMakeLists.txt @@ -8,52 +8,28 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - -# Include this package's headers first -include_directories(BEFORE ./ ./include) # Find CGAL and CGAL Qt6 find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # Find Qt6 itself -find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Widgets OpenGL Qml) +find_package(Qt6 QUIET COMPONENTS Gui) if(CGAL_Qt6_FOUND AND Qt6_FOUND) qt6_wrap_ui(UI_FILES MainWindow.ui) - include(AddFileDependencies) - qt6_generate_moc("MainWindow.h" "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp") - add_file_dependencies(MainWindow_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/MainWindow.h") - qt6_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") - add_file_dependencies(Viewer_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/Viewer.h") - qt6_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/Scene_moc.cpp") - add_file_dependencies(Scene_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/Scene.h") qt6_add_resources(CGAL_Qt6_RESOURCE_FILES AABB_demo.qrc) - add_file_dependencies( - AABB_demo.cpp "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp" - "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp" - "${CMAKE_CURRENT_BINARY_DIR}/Scene_moc.cpp") - add_executable( AABB_demo AABB_demo.cpp ${UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} - #${CGAL_Qt6_MOC_FILES} ) # Link with Qt libraries - target_link_libraries(AABB_demo PRIVATE Qt6::OpenGLWidgets Qt6::Widgets Qt6::OpenGL Qt6::Qml + target_link_libraries(AABB_demo PRIVATE Qt6::Gui CGAL::CGAL CGAL::CGAL_Qt6) add_to_cached_list(CGAL_EXECUTABLE_TARGETS AABB_demo) diff --git a/AABB_tree/demo/AABB_tree/MainWindow.cpp b/AABB_tree/demo/AABB_tree/MainWindow.cpp index cd1444b9968c..63e4a0fe5965 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.cpp +++ b/AABB_tree/demo/AABB_tree/MainWindow.cpp @@ -13,10 +13,8 @@ #include "ui_MainWindow.h" - - MainWindow::MainWindow(QWidget* parent) - : CGAL::Qt::DemosMainWindow(parent), myEngine(new QJSEngine(this)) + : CGAL::Qt::DemosMainWindow(parent) { ui = new Ui::MainWindow; ui->setupUi(this); @@ -40,25 +38,12 @@ MainWindow::MainWindow(QWidget* parent) connect(this, SIGNAL(openRecentFile(QString)), this, SLOT(open(QString))); - QJSValue mainWindow = myEngine->newQObject(this); - myEngine->globalObject().setProperty("main_window", mainWindow); readSettings(); - std::ifstream script("init.js"); - if(script.good()){ - std::string line; - while(getline(script, line)){ - myEngine->evaluate(line.c_str()); - } - } } MainWindow::~MainWindow() { m_pViewer->makeCurrent(); - // AF I thought this helps to avoid the exception when the program - // terminates, but it does not - myEngine->globalObject().setProperty("main_window", QJSValue()); - myEngine->collectGarbage(); delete ui; } @@ -80,13 +65,6 @@ void MainWindow::dropEvent(QDropEvent *event) event->acceptProposedAction(); } - -void MainWindow::hello() const -{ - std::cout << "Hhello world" << std::endl; -} - - void MainWindow::updateViewerBBox() { m_pScene->update_bbox(); diff --git a/AABB_tree/demo/AABB_tree/MainWindow.h b/AABB_tree/demo/AABB_tree/MainWindow.h index 87f6de0c76c9..d220dec44003 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.h +++ b/AABB_tree/demo/AABB_tree/MainWindow.h @@ -1,8 +1,6 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H -#include -#include #include class QDragEnterEvent; @@ -13,38 +11,6 @@ namespace Ui { class MainWindow; } -#if 0 - -struct Foo : public QObject -{ - - Q_OBJECT -public: - QJSEngine* myEngine; - - Foo() - : myEngine(new QJSEngine(this)) - { - QJSValue baz = myEngine->newQObject(this); - myEngine->.globalObject().setProperty("baz", baz); - } - - void bar() - { - std::cout << "bar()" << std::endl; - myEngine->evaluate("baz.hello()"); - } - -public slots: - void hello() const // if not a slot it must be - { - std::cout << "called hello()" << std::endl; - } - -}; -#endif - - class MainWindow : public CGAL::Qt::DemosMainWindow { @@ -54,8 +20,6 @@ class MainWindow : ~MainWindow(); public slots: - - void hello() const; void updateViewerBBox(); void open(QString filename); void setAddKeyFrameKeyboardModifiers(Qt::KeyboardModifiers); @@ -113,7 +77,6 @@ class MainWindow : void on_actionView_cutting_plane_triggered(); private: - QJSEngine* myEngine; Scene* m_pScene; Viewer* m_pViewer; Ui::MainWindow* ui; diff --git a/AABB_tree/demo/AABB_tree/Scene.h b/AABB_tree/demo/AABB_tree/Scene.h index cc109a433fdf..74309b25ef35 100644 --- a/AABB_tree/demo/AABB_tree/Scene.h +++ b/AABB_tree/demo/AABB_tree/Scene.h @@ -1,7 +1,6 @@ #ifndef SCENE_H #define SCENE_H -#include #include #include @@ -77,7 +76,6 @@ class Scene : public QObject }; public: - QOpenGLContext* context; void draw(CGAL::QGLViewer*); void update_bbox(); Bbox bbox() { return m_bbox; } diff --git a/AABB_tree/demo/AABB_tree/Viewer.cpp b/AABB_tree/demo/AABB_tree/Viewer.cpp index 6f5eac006797..9e5cf22bdb74 100644 --- a/AABB_tree/demo/AABB_tree/Viewer.cpp +++ b/AABB_tree/demo/AABB_tree/Viewer.cpp @@ -1,9 +1,6 @@ #include "Viewer.h" #include "Scene.h" #include -#include -#include - Viewer::Viewer(QWidget* parent) : CGAL::QGLViewer(parent), m_pScene(nullptr), diff --git a/AABB_tree/demo/AABB_tree/init.js b/AABB_tree/demo/AABB_tree/init.js deleted file mode 100644 index e7f08e266c68..000000000000 --- a/AABB_tree/demo/AABB_tree/init.js +++ /dev/null @@ -1,2 +0,0 @@ -main_window.hello(); -main_window.hello(); From 3869a4a6c3a9b38431a8aabba1a49575fdb36c80 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 24 Aug 2023 18:41:03 +0200 Subject: [PATCH 41/85] cleanup Alpha_sphare_3 demo --- AABB_tree/demo/AABB_tree/CMakeLists.txt | 8 ++------ .../demo/Alpha_shapes_3/CMakeLists.txt | 19 ++++--------------- 2 files changed, 6 insertions(+), 21 deletions(-) diff --git a/AABB_tree/demo/AABB_tree/CMakeLists.txt b/AABB_tree/demo/AABB_tree/CMakeLists.txt index b66e3f468771..7411a48f67e0 100644 --- a/AABB_tree/demo/AABB_tree/CMakeLists.txt +++ b/AABB_tree/demo/AABB_tree/CMakeLists.txt @@ -13,23 +13,19 @@ set(CMAKE_AUTOMOC ON) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # Find Qt6 itself -find_package(Qt6 QUIET COMPONENTS Gui) +find_package(Qt6 QUIET COMPONENTS Gui OpenGL) if(CGAL_Qt6_FOUND AND Qt6_FOUND) qt6_wrap_ui(UI_FILES MainWindow.ui) - qt6_generate_moc("MainWindow.h" "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp") - qt6_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") - qt6_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/Scene_moc.cpp") - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES AABB_demo.qrc) add_executable( AABB_demo AABB_demo.cpp ${UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} ) # Link with Qt libraries - target_link_libraries(AABB_demo PRIVATE Qt6::Gui + target_link_libraries(AABB_demo PRIVATE Qt6::Gui Qt6::OpenGL CGAL::CGAL CGAL::CGAL_Qt6) add_to_cached_list(CGAL_EXECUTABLE_TARGETS AABB_demo) diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt b/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt index 6f08193da63f..65b4e7febfea 100644 --- a/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt @@ -9,38 +9,27 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGL OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) - # include(${QT_USE_FILE}) - include_directories(BEFORE ./) - # ui file, created with Qt Designer qt6_wrap_ui(uis MainWindow.ui) # qrc files (resources files, that contain icons, at least) qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Alpha_shape_3.qrc) - add_executable( - Alpha_shape_3 Alpha_shape_3.cpp MainWindow.cpp Viewer.cpp ${uis} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + add_executable(Alpha_shape_3 Alpha_shape_3.cpp MainWindow.cpp Viewer.cpp ${uis}) + add_to_cached_list(CGAL_EXECUTABLE_TARGETS Alpha_shape_3) target_link_libraries(Alpha_shape_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 - Qt6::Widgets Qt6::OpenGL Qt6::OpenGLWidgets) + Qt6::Widgets Qt6::OpenGL) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Alpha_shape_3) From df06d29dd1efa1eb1c1aea1c6344541f20b7e608 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 25 Aug 2023 11:33:28 +0200 Subject: [PATCH 42/85] fix/cleanup AABB_tree and Alpha_shape_3 demos --- AABB_tree/demo/AABB_tree/AABB_demo.cpp | 9 - AABB_tree/demo/AABB_tree/CMakeLists.txt | 15 +- AABB_tree/demo/AABB_tree/MainWindow.cpp | 4 + AABB_tree/demo/AABB_tree/MainWindow.h | 4 +- AABB_tree/demo/AABB_tree/Scene.h | 4 +- AABB_tree/demo/AABB_tree/benchmarks.cpp | 1 + .../demo/Alpha_shapes_3/CMakeLists.txt | 15 +- .../demo/Alpha_shapes_3/data/README | 14 + .../demo/Alpha_shapes_3/data/bunny1000.pts | 1001 + .../demo/Alpha_shapes_3/data/bunny5000.pts | 35948 ++++++++++++++++ .../demo/Alpha_shapes_3/data/bunny_ran.pts | 35948 ++++++++++++++++ .../demo/Alpha_shapes_3/data/cube_ran.pts | 582 + Alpha_shapes_3/demo/Alpha_shapes_3/data/fin | 8 + Alpha_shapes_3/demo/Alpha_shapes_3/data/fout | 17 + .../demo/Alpha_shapes_3/data/head_ran.pts | 857 + .../demo/Alpha_shapes_3/data/skull.pts | 27088 ++++++++++++ .../demo/Alpha_shapes_3/data/thom1249.pts | 1249 + .../demo/Alpha_shapes_3/data/thom384.pts | 384 + .../demo/Alpha_shapes_3/data/torus_ran.pts | 500 + 19 files changed, 103619 insertions(+), 29 deletions(-) create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/README create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny1000.pts create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny5000.pts create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny_ran.pts create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/cube_ran.pts create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/fin create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/fout create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/head_ran.pts create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/skull.pts create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/thom1249.pts create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/thom384.pts create mode 100644 Alpha_shapes_3/demo/Alpha_shapes_3/data/torus_ran.pts diff --git a/AABB_tree/demo/AABB_tree/AABB_demo.cpp b/AABB_tree/demo/AABB_tree/AABB_demo.cpp index 018e0f69c14d..9727327004f0 100644 --- a/AABB_tree/demo/AABB_tree/AABB_demo.cpp +++ b/AABB_tree/demo/AABB_tree/AABB_demo.cpp @@ -49,12 +49,3 @@ int main(int argc, char **argv) return app.exec(); } - -# include "Scene.cpp" -# include "Scene_moc.cpp" -# include "benchmarks.cpp" -# include "Viewer.cpp" -# include "Viewer_moc.cpp" -# include "MainWindow.cpp" -# include "MainWindow_moc.cpp" - diff --git a/AABB_tree/demo/AABB_tree/CMakeLists.txt b/AABB_tree/demo/AABB_tree/CMakeLists.txt index 7411a48f67e0..46b13f3b1c66 100644 --- a/AABB_tree/demo/AABB_tree/CMakeLists.txt +++ b/AABB_tree/demo/AABB_tree/CMakeLists.txt @@ -6,9 +6,6 @@ project(AABB_tree_Demo) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -# Instruct CMake to run moc automatically when needed. -set(CMAKE_AUTOMOC ON) - # Find CGAL and CGAL Qt6 find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) @@ -17,12 +14,16 @@ find_package(Qt6 QUIET COMPONENTS Gui OpenGL) if(CGAL_Qt6_FOUND AND Qt6_FOUND) - qt6_wrap_ui(UI_FILES MainWindow.ui) + add_definitions(-DQT_NO_KEYWORDS) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES AABB_demo.qrc) + # Instruct CMake to run moc/ui/rcc automatically when needed. + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - add_executable( - AABB_demo AABB_demo.cpp ${UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} + qt_add_executable( + AABB_demo AABB_demo.cpp Scene.cpp benchmarks.cpp Viewer.cpp MainWindow.cpp + MainWindow.ui AABB_demo.qrc ) # Link with Qt libraries target_link_libraries(AABB_demo PRIVATE Qt6::Gui Qt6::OpenGL diff --git a/AABB_tree/demo/AABB_tree/MainWindow.cpp b/AABB_tree/demo/AABB_tree/MainWindow.cpp index 63e4a0fe5965..1c68338bcf44 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.cpp +++ b/AABB_tree/demo/AABB_tree/MainWindow.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include "ui_MainWindow.h" @@ -19,6 +20,9 @@ MainWindow::MainWindow(QWidget* parent) ui = new Ui::MainWindow; ui->setupUi(this); + this->addAboutDemo(":/cgal/AABB_demo/about.html"); + this->addAboutCGAL(); + // saves some pointers from ui, for latter use. m_pViewer = ui->viewer; diff --git a/AABB_tree/demo/AABB_tree/MainWindow.h b/AABB_tree/demo/AABB_tree/MainWindow.h index d220dec44003..3138efd4202a 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.h +++ b/AABB_tree/demo/AABB_tree/MainWindow.h @@ -19,12 +19,12 @@ class MainWindow : MainWindow(QWidget* parent = nullptr); ~MainWindow(); - public slots: + public Q_SLOTS: void updateViewerBBox(); void open(QString filename); void setAddKeyFrameKeyboardModifiers(Qt::KeyboardModifiers); - protected slots: + protected Q_SLOTS: // settings void quit(); diff --git a/AABB_tree/demo/AABB_tree/Scene.h b/AABB_tree/demo/AABB_tree/Scene.h index 74309b25ef35..ae898f43daa4 100644 --- a/AABB_tree/demo/AABB_tree/Scene.h +++ b/AABB_tree/demo/AABB_tree/Scene.h @@ -171,7 +171,7 @@ class Scene : public QObject void attrib_buffers(CGAL::QGLViewer*); void compile_shaders(); void compute_texture(int, int, Color_ramp, Color_ramp); -private slots: +private Q_SLOTS: void updateCutPlane(); public: @@ -253,7 +253,7 @@ private slots: -public slots: +public Q_SLOTS: // cutting plane void cutting_plane(bool override = false); void changed(); diff --git a/AABB_tree/demo/AABB_tree/benchmarks.cpp b/AABB_tree/demo/AABB_tree/benchmarks.cpp index c337e43efe76..1b68d80bcde0 100644 --- a/AABB_tree/demo/AABB_tree/benchmarks.cpp +++ b/AABB_tree/demo/AABB_tree/benchmarks.cpp @@ -1,4 +1,5 @@ #include "Scene.h" +#include "Refiner.h" #include #include diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt b/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt index 65b4e7febfea..7c3b54b8424b 100644 --- a/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt @@ -7,9 +7,6 @@ project(Alpha_shapes_3_Demo) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -# Instruct CMake to run moc automatically when needed. -set(CMAKE_AUTOMOC ON) - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) @@ -18,13 +15,13 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) - # ui file, created with Qt Designer - qt6_wrap_ui(uis MainWindow.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Alpha_shape_3.qrc) + # Instruct CMake to run moc/ui/rcc automatically when needed. + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - add_executable(Alpha_shape_3 Alpha_shape_3.cpp MainWindow.cpp Viewer.cpp ${uis}) + qt_add_executable(Alpha_shape_3 Alpha_shape_3.cpp MainWindow.cpp Viewer.cpp + MainWindow.ui Alpha_shape_3.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Alpha_shape_3) diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/README b/Alpha_shapes_3/demo/Alpha_shapes_3/data/README new file mode 100644 index 000000000000..74384edcd03d --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/README @@ -0,0 +1,14 @@ +The purpose of this repository is to make some range data +and detailed reconstructions available to the public. Currently, this repository only contains models that were scanned and reconstructed +at the Stanford Computer Graphics Laboratory . In the future, we hope to include data sets and reconstructions from other sources. + +The models in this repository were all scanned with a Cyberware 3030MS optical triangulation scanner. +Please acknowledge .... + +http://www-graphics.stanford.edu/data/3Dscanrep/ +e-mail: 3Dscanrep@graphics.stanford.edu +file://www-graphics.stanford.edu/pub/zippack/data/ + +http://www.hs.washington.edu/locke/vislab/ +http://biocomp.arc.nasa.gov/3dreconstruction/data/ +medical data \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny1000.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny1000.pts new file mode 100644 index 000000000000..ff22c3612dd9 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny1000.pts @@ -0,0 +1,1001 @@ +1000 +-0.0164722 0.0382453 0.0209318 +-0.0641407 0.171114 -0.0471776 +0.023086 0.119339 0.0317977 +0.00506037 0.0347021 0.0393176 +-0.066143 0.143958 0.0413147 +-0.0445017 0.163753 0.00542301 +-0.0689729 0.181022 -0.0546459 +-0.0931085 0.131006 0.0192314 +0.000506827 0.0489752 0.0512269 +-0.0615935 0.160001 -0.0315914 +-0.0245032 0.0960169 0.0442753 +-0.0258992 0.0891655 0.049535 +-0.000499367 0.0456802 0.0470389 +-0.0171808 0.0654583 0.0528522 +0.00116916 0.131228 0.00582139 +-0.0356565 0.122935 -0.00798984 +-0.0701892 0.156285 0.021569 +-0.0173569 0.038443 0.0259817 +-0.0716413 0.0763478 -0.0132577 +0.0528545 0.0568172 0.0288563 +-0.0325067 0.0732308 0.0407775 +-0.0760686 0.150008 -0.00987485 +-0.030561 0.0774145 0.0410957 +-0.0833901 0.0762729 0.00451303 +-0.000492618 0.0925258 0.0556594 +-0.0358778 0.159506 0.00240863 +0.0115111 0.114076 0.0384616 +-0.0877889 0.0887187 0.00347532 +-0.0261028 0.115949 -0.0147279 +-0.0682913 0.165205 -0.0539869 +-0.0225512 0.0933694 -0.0331106 +-0.0538783 0.0999149 -0.0214389 +0.0435587 0.0959151 0.0211557 +-0.0167991 0.0388632 -0.0107644 +-0.0569142 0.0548839 0.00364185 +0.00749229 0.091015 0.0542708 +-0.065316 0.0625169 -0.002419 +-0.00749647 0.119689 0.0375376 +-0.0772165 0.0934484 -0.0125951 +-0.029008 0.0478606 -0.0250513 +0.00934189 0.0553527 -0.0303034 +-0.0578677 0.104042 -0.0186102 +0.0405495 0.0999198 -0.00379356 +-0.0894314 0.137929 0.0371779 +0.00710731 0.126603 -0.00643182 +0.058913 0.070492 0.0108657 +-0.0922485 0.120133 0.0292903 +0.0395325 0.105566 0.0221621 +-0.0376065 0.0365426 0.0444186 +-0.0550158 0.128128 -0.00563226 +-0.0561672 0.0336533 0.0186553 +0.0123436 0.0351165 0.0296251 +-0.0899184 0.131005 0.0413145 +0.0065365 0.100373 0.0469448 +-0.0502879 0.133796 0.0278403 +-0.0716838 0.0351362 0.00880221 +0.0579126 0.0523842 0.0101848 +-0.0639212 0.154791 0.00385831 +-0.0654795 0.0384216 -0.00684663 +-0.0615513 0.0624603 0.0259481 +-0.0368013 0.0842007 -0.0223672 +0.0522757 0.0574291 -0.0035048 +-0.0764972 0.123179 0.0527664 +0.0302998 0.0694384 -0.019812 +-0.0334269 0.0486094 0.0413091 +-0.00450651 0.0689184 0.0565193 +0.0425976 0.0887597 -0.00680771 +-0.0707351 0.156208 0.0228366 +0.0548799 0.0492406 0.0202107 +-0.00962948 0.168316 -0.023669 +-0.0313363 0.11605 -0.0148117 +-0.0225249 0.125571 0.0012278 +0.0122871 0.124953 0.0313975 +-0.0343047 0.125361 0.0205265 +-0.038499 0.0747376 0.0420783 +0.0292349 0.0759579 -0.0220376 +-0.0255784 0.0477093 -0.0263526 +-0.0750958 0.151313 -0.0258791 +0.0057743 0.0347896 0.0375885 +-0.0926124 0.120126 0.0272917 +-0.0366664 0.175138 -0.00407486 +-0.00549337 0.088417 0.0570387 +-0.0711473 0.17507 -0.0540267 +-0.0776118 0.0739521 0.0284675 +0.0376746 0.104662 0.0282621 +-0.0634881 0.121359 0.0469409 +0.0233296 0.0564006 -0.0254415 +-0.0399361 0.123254 0.0259269 +-0.000577398 0.0341134 -0.0181551 +-0.000496894 0.0520342 0.0541515 +-0.0701023 0.177167 -0.0478719 +-0.0641167 0.143926 0.0389732 +-0.0679369 0.165269 -0.0197719 +-0.0681029 0.138305 0.0455026 +-0.00280426 0.0384802 0.0198949 +-0.0628273 0.0924874 -0.0189476 +0.0084946 0.0869435 0.0558386 +0.00910286 0.0348066 0.0183719 +-0.0195983 0.126231 0.0213862 +-0.0584949 0.143878 0.0330085 +-0.0218343 0.0553077 0.0451067 +-0.0645685 0.147457 -0.0230581 +0.0426227 0.0691122 -0.00279622 +-0.035813 0.0842739 -0.0225525 +-0.0819685 0.0791215 0.0284136 +0.0328852 0.113087 -0.00384394 +-0.0677123 0.168615 -0.0283035 +-0.0556635 0.140996 0.0299986 +-0.0764958 0.131682 0.0526442 +0.0421796 0.0832522 0.0293553 +-0.0848653 0.0855483 0.0264341 +-0.0329445 0.121338 0.0269922 +-0.0320197 0.058187 -0.0133973 +-0.0322785 0.0421631 -0.0296986 +0.0401757 0.067497 -0.00878165 +-0.0904989 0.148452 0.0245146 +-0.00947974 0.0561444 0.0530127 +-0.0310333 0.0383692 -0.000250742 +-0.0780713 0.150403 0.0367551 +-0.0872126 0.146051 0.00824907 +-0.0735722 0.148626 -0.0268487 +-0.00548676 0.116904 0.0394711 +-0.0599006 0.132533 0.037981 +-0.093479 0.129659 0.0212406 +-0.0639063 0.120904 -0.00875525 +-0.028606 0.0356961 0.0524615 +-0.0652024 0.153998 -0.041972 +-0.0262134 0.0765572 0.0473962 +-0.0774721 0.155387 0.0234212 +-0.0628707 0.0345025 0.0358026 +0.0434964 0.0555926 0.0322399 +-0.0618022 0.142496 0.0370478 +-0.0638273 0.0910291 -0.0188305 +-0.0636286 0.0672101 0.0337087 +-0.0842132 0.092522 0.0298256 +0.0185123 0.115397 0.0365584 +-0.0666269 0.131204 0.0458398 +-0.0653475 0.165775 -0.0260007 +-0.0182573 0.181629 -0.0177335 +-0.0142757 0.185348 -0.0257883 +0.0485082 0.0624718 0.0300814 +-0.0254927 0.0974122 0.0441083 +-0.0446561 0.0349999 0.0427486 +-0.0616719 0.0410515 0.0160296 +-0.0179307 0.0931593 -0.0348763 +-0.00828798 0.130102 0.00662088 +-0.0525878 0.149334 0.020403 +-0.0102534 0.128943 0.0232512 +0.0445378 0.0959706 0.0101622 +-0.0465291 0.0335268 -0.00814027 +0.00437534 0.131145 0.0198749 +-0.0394369 0.03436 0.0321562 +-0.0107155 0.127812 0.0260097 +-0.0273383 0.17123 -0.0098418 +-0.0037118 0.0655569 -0.0347446 +-0.0630689 0.150547 -0.0265942 +-0.0776846 0.16386 -0.0329461 +-0.0728796 0.151218 -0.0388899 +0.038172 0.0967289 0.0325586 +-0.058907 0.0983413 -0.0195805 +-0.00549542 0.0965711 0.0536823 +0.00650609 0.0503877 0.0517539 +-0.0847722 0.113367 0.0459387 +0.0309512 0.0822193 0.0430727 +-0.0159859 0.0984773 0.0464357 +0.0361586 0.0781359 0.0382445 +0.0417308 0.0422749 0.000248643 +-0.0631435 0.175042 -0.061564 +-0.0251041 0.0945178 -0.0276305 +0.018776 0.122594 -0.0061273 +0.0173125 0.0726566 0.0514253 +-0.0377229 0.0724783 -0.0174913 +0.0173872 0.0432828 -0.0228623 +0.0416262 0.0912615 0.0286616 +-0.050567 0.0474222 -0.00850865 +-0.0150865 0.162585 -0.00969001 +0.0143357 0.0566765 -0.0290221 +-0.0309078 0.065095 -0.0224325 +0.045522 0.0805737 0.00219452 +-0.0725374 0.138625 0.0483183 +-0.0476365 0.150675 0.00992423 +-0.0799103 0.125126 -0.00560703 +-0.051025 0.159915 -0.00453945 +0.00139766 0.0419298 -0.0244976 +-0.0664219 0.0352675 0.015055 +-0.00832508 0.130422 0.0138058 +-0.00366678 0.0481589 -0.0301707 +-0.0738566 0.161044 -0.0339379 +0.0319703 0.0475137 0.0318758 +0.0188215 0.126955 0.00377584 +-0.0309617 0.044825 -0.0281993 +0.0456484 0.0875951 0.00518134 +-0.0521074 0.0583062 0.0285239 +-0.0171825 0.0382402 0.011747 +-0.0692976 0.0615474 0.00912978 +-0.0232044 0.175652 -0.0207635 +-0.0406662 0.0592305 -0.0118049 +0.0572429 0.0508905 0.0121849 +-0.0488285 0.0416917 0.0446681 +0.0455301 0.0677752 0.0254231 +-0.0846369 0.110251 0.00429821 +-0.0754652 0.163196 -0.0162299 +-0.0247271 0.0564997 0.0408849 +-0.0639975 0.0601011 0.00610183 +-0.0741599 0.155538 0.00126713 +-0.0728899 0.122329 -0.00823917 +0.010861 0.0360066 0.0447493 +0.0150176 0.0355797 0.04239 +-0.0437155 0.0710509 -0.0175901 +0.0271589 0.093209 -0.0206672 +-0.00592646 0.12418 0.0336126 +-0.0810295 0.0895599 -0.00769505 +-0.0920663 0.121362 0.00826874 +-0.0862277 0.0832671 0.00749085 +-0.085371 0.127983 -0.0026626 +-0.081815 0.108922 0.02836 +-0.0491537 0.135503 0.0034228 +0.00885847 0.0887054 -0.0320419 +-0.0673146 0.0446682 0.00602001 +0.0152697 0.128852 0.0195703 +0.0231834 0.0422122 0.040252 +-0.0286261 0.0463451 -0.0269667 +0.0449154 0.0763231 0.00019353 +-0.0387296 0.0739178 -0.0177449 +0.0212191 0.0819428 -0.0266321 +-0.00126307 0.039726 0.0470556 +-0.0261021 0.0379463 0.0228342 +-0.0448562 0.101383 -0.0214692 +-0.0014827 0.0390261 -0.00225591 +-0.0648948 0.103911 -0.0165942 +-0.0624902 0.155293 -0.0145941 +0.000436968 0.130385 0.0227651 +-0.0219738 0.059501 0.0451263 +-0.0502789 0.129408 -0.00267456 +-0.0216757 0.065257 0.0474751 +-0.0621482 0.16155 -0.0395978 +0.0427418 0.0916392 0.0261768 +0.00967962 0.127274 0.0289934 +-0.0728707 0.168003 -0.0450202 +-0.0305611 0.179398 -0.00755573 +0.0341402 0.0902832 0.0407178 +-0.0491119 0.0361611 0.0459929 +0.0392087 0.0739776 0.0338431 +-0.0897017 0.151503 0.0171224 +0.0407967 0.105643 0.0101649 +-0.023633 0.0478399 -0.0272396 +-0.0504958 0.0862332 0.0455716 +-0.0451092 0.153606 0.00834539 +-0.0616087 0.146812 0.0373554 +0.0280342 0.0346822 0.009507 +0.0565861 0.0685555 0.00335277 +-0.027568 0.0674298 0.0392602 +-0.0926576 0.117463 0.0373027 +-0.0334278 0.124984 0.0208436 +-0.0602518 0.034678 0.0430709 +-0.0574989 0.107052 0.0398301 +-0.091226 0.128161 0.00727002 +0.0400022 0.0913669 0.0315547 +-0.0656743 0.138242 0.0419702 +-0.0852141 0.0805923 0.0204766 +-0.0444957 0.111173 0.0370595 +-0.044489 0.0803636 0.042222 +-0.00648998 0.122405 0.0354776 +0.00602348 0.111527 -0.0200414 +-0.0860119 0.132159 0.00027761 +0.0521231 0.0734583 0.0172399 +-0.0155403 0.0446621 0.0510487 +-0.0397503 0.0768521 -0.0186787 +-0.0682155 0.0787029 0.0404793 +-0.0813927 0.0758934 0.0225084 +-0.010188 0.0386565 4.14997e-05 +-0.00149609 0.0912323 -0.0347548 +-0.0294974 0.111128 0.0367729 +-0.0503924 0.0501648 0.0186468 +-0.0104698 0.070299 0.0557764 +0.0327323 0.0809002 0.0421262 +-0.0328911 0.122131 -0.00712262 +-0.0861948 0.1005 0.0258994 +-0.0319282 0.178722 -0.00808101 +-0.050675 0.140101 0.0024044 +-0.0346788 0.0636729 -0.0139354 +-0.00820144 0.0344928 -0.0181278 +-0.0830162 0.0939316 0.0314035 +0.0438286 0.0611702 -0.00330591 +-0.0162799 0.127645 0.0211086 +-0.0615233 0.0354132 0.043881 +-0.0755937 0.0809959 -0.0116148 +-0.0632393 0.166259 -0.0385929 +-0.0156738 0.0511142 -0.0317767 +0.000751147 0.0339678 -0.0215355 +-0.0534027 0.0336932 0.022744 +0.0102837 0.0348658 -0.0091814 +-0.0285082 0.0874866 -0.0336017 +-0.0849712 0.111906 0.0292041 +-0.0732162 0.169408 -0.0460252 +-0.00746424 0.110009 0.0430329 +-0.0587154 0.0723411 -0.016523 +-0.00333145 0.0968513 -0.0305901 +0.0385608 0.0713011 0.0346329 +-0.0463734 0.133247 0.0130756 +-0.0474986 0.104275 0.0408376 +-0.0714849 0.147284 -0.0260827 +-0.0404433 0.0461446 -0.0193164 +0.000709469 0.125628 -0.00726116 +0.028516 0.117882 -0.00302906 +-0.00249354 0.0746702 0.0587588 +0.0463101 0.0806468 0.00818141 +-0.0245515 0.114015 0.0358596 +-0.0396488 0.0563195 -0.0111963 +-0.0236961 0.0607746 0.0425604 +-0.0336359 0.0548461 -0.0105101 +-0.0585033 0.0337545 0.0163089 +0.0212208 0.126407 0.0160623 +-0.0729862 0.15207 0.0354642 +-0.085378 0.128494 0.0496125 +0.00429457 0.122356 -0.0118056 +0.0203517 0.0672611 0.0487139 +-0.0452845 0.0395903 -0.0182935 +-0.0211124 0.182965 -0.0210132 +-0.0295465 0.0819132 0.0441437 +-0.0777488 0.07493 0.029356 +0.00824435 0.0966482 -0.0263491 +-0.0588066 0.0854157 -0.0208208 +-0.0718999 0.113582 -0.00821597 +-0.0893735 0.0901981 0.0104595 +0.032603 0.0835706 0.0419526 +-0.0230608 0.0594124 0.0433799 +0.0284544 0.121423 0.0116324 +-0.0832785 0.12444 0.0504652 +-0.0396241 0.0520021 -0.0108773 +0.00721225 0.0837864 -0.0330068 +-0.046713 0.131987 0.00556897 +-0.0663702 0.157999 -0.00906779 +-0.067736 0.0779793 -0.0166569 +-0.0508692 0.102779 -0.0209206 +-0.0828958 0.151378 0.00422572 +-0.0346622 0.118788 -0.0116368 +-0.0726425 0.0716156 -0.00744076 +-0.059725 0.0469427 0.0326718 +-0.0468444 0.033579 -0.0045851 +-0.0384976 0.100064 0.0415702 +-0.050989 0.121022 -0.0119137 +-0.0624226 0.152205 -0.0125757 +-0.085741 0.151793 0.0266482 +-0.0826468 0.144713 0.0407672 +-0.0685649 0.0705046 -0.00966184 +-0.0734033 0.167233 -0.0217479 +-0.0455099 0.155064 0.0077969 +0.022652 0.0862116 0.0486888 +0.043364 0.0547822 -0.00644446 +-0.054457 0.14621 0.0274041 +-0.0639777 0.155958 0.0237716 +-0.0882347 0.0861347 0.011472 +0.00545294 0.1216 -0.0129959 +-0.0334673 0.174268 -0.00177832 +-0.00402179 0.129762 0.0240423 +-0.0185051 0.0711438 0.0540217 +-0.0872329 0.150111 0.00920897 +-0.090033 0.147105 0.0269347 +-0.0141936 0.0419832 0.0511586 +-0.0335873 0.154463 -0.00838872 +0.0441357 0.083266 -0.000805736 +-0.0528842 0.102762 -0.0205636 +-0.0125091 0.0815143 0.0575917 +0.0197435 0.125962 0.0226458 +-0.067993 0.0619274 0.01978 +-0.0216083 0.039391 -0.0287125 +-0.0767116 0.165247 -0.022942 +-0.0861936 0.111308 0.0401352 +-0.0238165 0.0854111 -0.0376407 +-0.0442161 0.123225 0.0243959 +-0.0175443 0.0460366 0.0510389 +-0.0272334 0.0902723 -0.0326005 +-0.0459359 0.168402 -0.00594095 +0.0355423 0.0512597 0.0315836 +0.0451079 0.0636949 -0.00183531 +-0.0368834 0.125578 -0.00482073 +0.0196258 0.0457587 -0.0217227 +-0.00773224 0.109619 -0.0221011 +-0.0514957 0.0876341 0.0455102 +-0.00269376 0.0613003 -0.0344696 +-0.0512049 0.147808 0.0143958 +0.0266901 0.106496 -0.0148024 +0.0383861 0.0476151 -0.00591592 +-0.0136895 0.0952904 -0.0330103 +0.0368491 0.0767795 0.0374896 +-0.029592 0.0522946 -0.0203629 +0.0482309 0.0500295 -0.00369862 +0.0381363 0.0794306 0.0358549 +-0.0677271 0.155796 -0.00229118 +0.026043 0.0392404 0.0305576 +0.0208388 0.126564 0.0173475 +0.0159735 0.0448127 0.0438765 +-0.0681757 0.118633 0.0523539 +-0.065068 0.136793 0.0410949 +-0.0454458 0.168254 0.00168996 +-0.0715222 0.142818 0.0455702 +-0.0604912 0.112522 0.03629 +-0.00074702 0.0712329 -0.0350931 +-0.0894331 0.150114 0.0121902 +-0.0185746 0.0381525 0.0151621 +0.0291213 0.0348096 0.00960912 +0.0404448 0.0985503 0.0271661 +0.0134712 0.0936014 0.0511282 +-0.021496 0.103017 0.0435858 +0.00918856 0.0342345 -0.00132638 +-0.0508332 0.0956285 -0.0221275 +-0.0613646 0.0394268 0.0439671 +0.0264379 0.0968548 0.0436578 +-0.0646669 0.0405364 0.0387423 +0.0125029 0.0475354 0.045933 +0.0412949 0.104257 0.00416372 +-0.00222052 0.117102 -0.0161156 +-0.00995662 0.169734 -0.0198047 +0.0200755 0.0399795 -0.0157069 +-0.0839165 0.110514 0.0395089 +-0.0546435 0.116042 -0.0146857 +0.0268767 0.0854059 -0.022529 +-0.0543926 0.0337363 0.0224962 +-0.049781 0.0841032 -0.0216622 +0.0431463 0.100109 0.00616795 +0.0393814 0.0780345 0.0341058 +-0.0162612 0.17862 -0.0260128 +-0.0335093 0.0676035 0.0406399 +-0.0176483 0.0352702 -0.0188352 +-0.031463 0.0519033 0.0373773 +-0.0803572 0.0803552 0.0319871 +-0.0320868 0.159267 -0.0129293 +0.0132853 0.0589897 0.0507165 +-0.0103631 0.180289 -0.0277342 +-0.0144925 0.0559441 0.0511232 +-0.0246444 0.0381166 0.0247786 +0.0170669 0.0871276 -0.028336 +0.00372554 0.105196 -0.0213905 +-0.0777857 0.156925 -0.0179137 +0.0578227 0.0710073 0.0178627 +-0.0582482 0.0336534 0.0128901 +-0.0520861 0.0545712 0.0266312 +0.0269849 0.113053 -0.00983991 +0.0429421 0.0467386 0.030224 +0.00548112 0.11414 0.0405028 +0.0607975 0.0637336 0.0101416 +-0.0895137 0.135181 0.0391853 +-0.0822803 0.139383 0.0462108 +0.00350363 0.0883757 0.0563643 +-0.0599112 0.109712 -0.0163845 +-0.0699244 0.107994 -0.0118147 +-0.073438 0.145781 -0.0138542 +-0.0702694 0.156361 0.0186365 +0.0365208 0.0713424 0.036933 +-0.0764811 0.141399 0.0471717 +-0.0338378 0.0943788 -0.02372 +-0.0185768 0.055451 0.0489119 +-0.0294962 0.107041 0.0398129 +0.0351663 0.0783387 -0.0157415 +-0.0823976 0.095314 0.0321564 +0.0458052 0.08902 0.00916777 +0.00466954 0.0341296 0.0180802 +0.012258 0.0751733 -0.0308354 +-0.0176564 0.0480544 -0.0295902 +-0.0487658 0.0811872 -0.020682 +-0.0375125 0.045091 0.0407522 +0.00960807 0.0375632 0.0322947 +0.0522688 0.0462249 0.00921199 +-0.0452834 0.0395877 -0.019291 +-0.0396931 0.126183 0.0200311 +-0.0903381 0.144712 0.0141544 +-0.0430213 0.0450576 -0.0153284 +-0.0539191 0.129665 -0.00510771 +-0.0384876 0.108386 0.0375357 +-0.0496388 0.0605583 -0.0113235 +-0.034501 0.115223 0.0328885 +-0.0540284 0.131061 -0.00500164 +-0.0147028 0.0389017 0.0333119 +-0.0207376 0.0641563 -0.0358205 +0.00590682 0.131658 0.0132863 +-0.0819436 0.154696 0.0145801 +0.0526661 0.0660937 -0.000184776 +-0.0526201 0.14007 0.0244025 +-0.0752504 0.177839 -0.0529463 +-0.0574955 0.0946379 0.0447737 +0.0456129 0.0904097 0.00518194 +-0.0282629 0.122524 0.022734 +-0.0680338 0.142566 0.0438693 +-0.0643033 0.0426016 0.0312522 +-0.0314971 0.102929 0.041974 +-0.00589664 0.0980966 0.0519993 +-0.0542782 0.132533 0.0338047 +-0.0911122 0.11473 0.0343167 +-0.0493972 0.140141 0.00739907 +-0.0577664 0.0485104 0.00767417 +-0.0629684 0.139576 0.0370615 +-0.0122087 0.128137 0.0240139 +0.00116984 0.129366 -0.00128907 +-0.039496 0.0634667 0.0415276 +-0.0427066 0.0696149 -0.0170299 +-0.0721201 0.149786 -0.0402916 +-0.0637423 0.168365 -0.0426884 +-0.0228169 0.0383283 0.0285633 +-0.0894925 0.143336 0.0131803 +-0.0408822 0.128708 0.0107294 +-0.043783 0.147719 0.00491206 +0.00912223 0.0833108 0.0554277 +-0.0543042 0.0335497 0.00301212 +-0.0544171 0.0333785 -0.00775516 +0.0295237 0.0727272 0.042682 +-0.0504982 0.112495 0.0358796 +-0.0240218 0.119915 -0.0108978 +-0.0535232 0.0556038 0.0117195 +-0.0480175 0.133707 0.00490199 +0.00583381 0.129313 0.0261699 +-0.0405566 0.149165 -0.00293165 +-0.0286765 0.0690744 -0.0314836 +0.0453693 0.0693828 0.00245115 +0.0581659 0.056561 0.00517446 +0.0192888 0.0651078 -0.0282476 +-0.0228892 0.0739252 0.0512281 +-0.0217183 0.113234 -0.017904 +0.0365187 0.0526805 0.0315096 +0.0490482 0.0539975 0.0303486 +0.0175085 0.114012 0.0373101 +-0.0328107 0.126843 0.0122027 +-0.0687814 0.0336983 0.00353162 +0.0220892 0.0906332 -0.0239505 +-0.0460528 0.122513 0.026245 +0.0381409 0.109688 0.00657231 +0.0368421 0.0742334 -0.0127504 +-0.0657975 0.0340784 0.0127357 +-0.0706216 0.146831 -0.0255714 +-0.0468292 0.091298 -0.0217206 +-0.0914681 0.144718 0.0171554 +-0.0624908 0.0343254 0.0238098 +0.0543739 0.0477987 0.0161989 +-0.0195403 0.1757 -0.0161256 +0.0224671 0.0343921 0.00678503 +-0.0654707 0.155271 0.00728456 +-0.0897135 0.12265 0.00431103 +-0.0501651 0.0361307 0.0461721 +-0.0901888 0.139114 0.0151891 +-0.0726107 0.156829 -0.0349095 +-0.0334964 0.0718545 0.0411869 +0.0106165 0.0644536 0.0539383 +0.0274263 0.0491525 0.0376576 +-0.0157908 0.169796 -0.0160148 +-0.0608326 0.17151 -0.0610901 +0.0136156 0.126814 -0.00267762 +0.0293325 0.0535401 0.0386956 +-0.0652579 0.153012 -0.0402459 +0.0264019 0.036087 0.0225582 +0.0101281 0.105858 -0.0202342 +-0.0674046 0.0833115 0.0429955 +-0.0312435 0.0538841 -0.0143722 +0.0424267 0.0441756 -0.00158684 +-0.0305089 0.0760274 0.0408429 +-0.0849899 0.127963 -0.0030064 +-0.0223249 0.0386602 -0.0135496 +0.0216012 0.112963 -0.0137495 +-0.0224297 0.0552774 0.0442986 +-0.093152 0.121537 0.0362834 +-0.0384463 0.166779 0.00239389 +0.0317419 0.0667553 -0.0187125 +-0.0127135 0.100022 -0.0239701 +0.0204112 0.0371925 -0.00568428 +0.0383001 0.0969495 -0.00880451 +-0.0500528 0.150184 -0.0037815 +-0.0578783 0.106898 -0.0179862 +0.0485378 0.0682762 0.00156381 +-0.0708965 0.0341323 0.00629169 +-0.0871174 0.110466 0.0103621 +-0.0235739 0.0944939 0.0470656 +-0.0164815 0.0515035 0.0485835 +0.0325428 0.0380502 1.57112e-05 +0.0385774 0.0888011 0.0348199 +-0.0628692 0.0445185 0.0382675 +-0.0572856 0.125533 0.0399888 +-0.0780066 0.0940671 0.0362827 +-0.0361012 0.160724 -0.0132118 +0.0200495 0.124902 -0.000599563 +0.0101263 0.107276 -0.0197522 +0.0224877 0.0961643 0.0466342 +-0.077715 0.0852782 -0.0115916 +-0.0164955 0.105778 0.0423459 +-0.0725318 0.101313 0.038599 +-0.0663565 0.0783826 0.0411592 +-0.0644378 0.17995 -0.0588828 +-0.0645973 0.171184 -0.0458828 +0.0111199 0.129735 0.0223368 +-0.018333 0.172741 -0.0161594 +-0.0864925 0.10492 0.00639597 +-0.0144943 0.0500942 0.0487331 +-0.0855601 0.095177 0.0282718 +1.67787e-05 0.0386604 0.0239291 +0.0109499 0.0344084 0.00259617 +-0.0270041 0.168274 -0.00938266 +-0.0378811 0.107099 -0.0200653 +0.060304 0.0664655 0.0101406 +-0.0478845 0.108472 -0.0188663 +0.0181085 0.0591163 0.0489014 +-0.0260899 0.0522789 0.0395517 +0.0049437 0.0984176 -0.0242128 +-0.0623314 0.0357831 0.0433788 +0.0110403 0.0725847 0.0546235 +-0.0864956 0.084691 0.0204775 +-0.00849993 0.0787667 0.0579153 +-0.0260008 0.0382709 0.000860974 +-0.06937 0.145758 -0.0234859 +-0.0314168 0.117929 -0.0127586 +-0.0261669 0.0378674 0.0174813 +-0.0832309 0.120353 0.049216 +-0.0617814 0.16156 -0.0355923 +-0.0779669 0.165862 -0.0278956 +-0.0698398 0.0922797 -0.0162924 +0.0483255 0.0503286 -0.00380134 +0.0451716 0.0889782 0.0181643 +0.0329815 0.112282 -0.00498623 +0.0279206 0.0916217 -0.0209795 +0.0155 0.11402 0.0377783 +-0.0105379 0.0431327 0.0497176 +0.0606167 0.0609422 0.00915424 +-0.0181983 0.18599 -0.0174024 +0.0189716 0.115037 -0.0139804 +-0.0590849 0.0644137 0.0318252 +-0.0819254 0.12582 0.0519232 +-0.0588398 0.0954803 -0.0203334 +-0.0674426 0.148384 -0.0326115 +0.0387628 0.10462 0.0262683 +0.00841723 0.129272 0.0256623 +-0.0196119 0.0364667 -0.0278852 +-0.0376923 0.162356 -0.000243841 +1.88808e-05 0.115368 -0.0182789 +0.0393962 0.0505525 -0.00668347 +-0.0116788 0.0555838 -0.0339192 +0.0363865 0.0713868 -0.0138007 +-0.0821651 0.110069 0.034903 +0.022728 0.117081 -0.0101857 +-0.0515389 0.0417461 -0.0105815 +0.0219588 0.123501 -0.00109075 +0.00735928 0.0960033 -0.0276522 +-0.00349428 0.119696 0.0379021 +-0.0470844 0.151656 -0.00519447 +-0.0242296 0.0941248 -0.0298734 +0.0152433 0.0658912 0.0518711 +-0.021804 0.0376594 -0.0181241 +-0.0133966 0.121962 -0.00916065 +0.0365536 0.108655 0.0265769 +-0.0668098 0.0880715 -0.0180091 +-0.0665181 0.171112 -0.0407548 +0.0493343 0.0532247 -0.0043679 +0.0423933 0.0901635 -0.00682346 +-0.0624126 0.150651 -0.0115734 +0.0373944 0.0505276 -0.00658166 +-0.0411461 0.162173 -0.0113613 +-0.065916 0.0662086 0.0305519 +-0.0289729 0.083488 0.0456837 +-0.000642523 0.0347913 0.0398677 +-0.0738147 0.065744 0.00631032 +0.00351431 0.0938625 0.0544725 +-0.0467733 0.12389 0.0269319 +0.0246632 0.123785 0.00595837 +-0.0715256 0.0958228 0.0413941 +0.00252922 0.0362636 0.0463395 +0.00948792 0.0963424 0.0500581 +0.0292035 0.0400739 0.0286474 +-0.0309481 0.0706991 -0.0284733 +-0.054091 0.152763 0.0215579 +0.0118527 0.105542 -0.0197545 +-0.0404793 0.0832528 0.0431634 +-0.0448438 0.0985036 -0.0215544 +-0.032014 0.0567822 -0.0123897 +0.00040853 0.0356817 0.00488121 +0.0447245 0.0861403 0.0231669 +-0.0426307 0.0338188 -0.00946517 +-0.0710495 0.141325 -0.00813095 +-0.0255896 0.182763 -0.0105092 +-0.0838169 0.107636 0.0253505 +-0.0796245 0.0859561 0.0353266 +0.0240034 0.0449703 0.0396985 +0.00450108 0.0716864 0.0560951 +-0.0676894 0.0750921 -0.0153176 +-0.0466572 0.0369109 -0.0172699 +-0.016529 0.0558872 0.0508401 +-0.087831 0.103641 0.0093887 +0.0272256 0.10745 0.0377741 +-0.0670064 0.0337953 0.0073865 +-0.0866888 0.0833263 0.0124872 +0.0152687 0.0779357 -0.0299953 +-0.0851819 0.152725 0.0105454 +0.000352424 0.0511166 -0.0306262 +0.0518495 0.0464359 0.0201911 +0.0554005 0.0553511 0.0254886 +-0.0886141 0.0928486 0.00844707 +0.0129712 0.130228 0.0115965 +-0.085549 0.104961 0.0233427 +0.0515991 0.0496316 0.0251833 +0.0131946 0.0878791 -0.0305989 +-0.0693376 0.131255 0.0489674 +-0.0660205 0.167997 -0.0305503 +-0.0666146 0.174697 -0.0480375 +-0.0293346 0.0347045 0.0427947 +-0.0553259 0.126836 -0.00601308 +-0.058583 0.0460291 0.0113967 +-0.0416277 0.0337441 -0.014735 +-0.0446642 0.0621749 -0.0132201 +0.0295862 0.120365 0.0134787 +-0.0697163 0.064282 0.022673 +-0.0805487 0.0789662 0.0306236 +-0.0787564 0.154933 0.00983696 +-0.0662707 0.14708 -0.0258685 +-0.0248167 0.0949702 -0.0267501 +-0.0407693 0.0826515 -0.0208197 +0.000514101 0.0346343 0.00952105 +-0.0533361 0.138123 0.0280776 +-0.0689277 0.115103 -0.00892086 +-0.0865224 0.0913375 0.0024428 +0.0232602 0.0790529 -0.0256674 +0.0296786 0.0679688 -0.0198342 +-0.0331127 0.123309 0.0239558 +0.0276403 0.118218 0.0284429 +0.00238303 0.0449286 -0.0261957 +-0.0928278 0.124236 0.0382657 +-0.0868685 0.11045 0.00936714 +-0.0254875 0.0959781 0.0438332 +0.0132252 0.0808221 -0.0308314 +0.035265 0.0591791 0.0368077 +-0.00944135 0.168135 -0.0197365 +0.0011864 0.12951 0.0259323 +-0.0139593 0.0967237 -0.0305143 +-0.00848922 0.0385737 0.0258802 +0.0562981 0.0619429 0.0011209 +0.0322546 0.0987343 -0.0145759 +-0.0268707 0.103016 -0.0234914 +-0.00655639 0.0384205 0.0209905 +-0.0296666 0.0774462 0.0418826 +-0.0626586 0.0676213 -0.0103966 +0.0374569 0.0904362 -0.0137042 +-0.0712181 0.161 -0.0439365 +0.0243668 0.0889213 0.0476805 +-0.0336134 0.0408899 -0.0298935 +-0.0404969 0.0916505 0.0425962 +0.0443454 0.0903358 0.0221636 +-0.0435232 0.163746 0.00524284 +-0.0649943 0.0623954 0.0235277 +-0.0613093 0.0593276 0.0181457 +-0.0717978 0.155398 -0.0409076 +-0.00868753 0.0584178 -0.0339256 +-0.0904383 0.119966 0.00529664 +-0.0601615 0.0333995 -0.00165181 +-0.0612252 0.0407891 0.0437895 +-0.0537348 0.0738508 -0.0172852 +-0.0709057 0.10512 -0.0125462 +-0.00333997 0.039253 0.0353398 +-0.0469903 0.145002 0.00194161 +-0.0250386 0.0659034 -0.0335362 +-0.023273 0.0382876 0.00502865 +0.0111228 0.0960826 -0.0257288 +0.0198113 0.0954368 -0.0230239 +0.038476 0.104075 -0.00282883 +-0.0843581 0.0883713 0.0286614 +-0.0930341 0.118841 0.0362969 +-0.0646767 0.146003 -0.0179612 +0.0284626 0.102127 0.0395666 +-0.0435018 0.113907 0.034675 +-0.0604863 0.0790224 0.042794 +-0.089042 0.112536 0.0205154 +-0.0524675 0.0344946 0.0345461 +-0.0848716 0.119101 -0.00207765 +-0.0120923 0.11442 -0.0172013 +-0.079929 0.151371 0.00121035 +-0.0920085 0.116136 0.0393096 +0.0361533 0.112569 0.0130564 +-0.0196629 0.125034 -0.00230889 +0.000499429 0.115573 0.0406664 +-0.0560183 0.147198 -0.00168648 +-0.0873616 0.110481 0.0113565 +-0.0416844 0.0636674 -0.0137203 +-0.0651889 0.153592 -0.00278678 +0.0471599 0.07398 0.0153485 +0.0404106 0.0873775 0.0321991 +-0.019434 0.184905 -0.0153275 +-0.0438294 0.0913555 -0.0224139 +-0.0527613 0.0797578 -0.020501 +-0.0314155 0.0651435 -0.021432 +0.00948509 0.0950229 0.0512669 +0.0346346 0.107297 -0.007625 +-0.0870053 0.0954387 0.00242783 +-0.0617312 0.142927 -0.00565867 +-0.0538929 0.14622 0.0244012 +0.0339044 0.115273 0.00366751 +0.049575 0.0693171 0.00251779 +-0.0861009 0.106274 0.00635995 +-0.00751182 0.075985 0.0578234 +-0.0761849 0.0933719 -0.0135017 +0.0266626 0.0672707 0.0437593 +-0.0314925 0.0932138 0.0444288 +0.0112937 0.0680868 -0.0307505 +-0.086045 0.141863 0.00720055 +0.000490707 0.111422 0.0424934 +-0.0516022 0.0502173 -0.00741774 +-0.0709386 0.131124 -0.00852217 +-0.0291841 0.125368 0.0164845 +-0.0012258 0.095852 -0.0315171 +-0.000697567 0.0641196 -0.0342689 +-0.0797379 0.0738711 0.0228323 +-0.0705682 0.0382102 0.00943236 +-0.0558807 0.102663 -0.0193944 +0.0262875 0.0835737 0.0468767 +-0.0206175 0.0364922 -0.0281092 +0.0306136 0.0779431 -0.0207534 +0.037492 0.0983062 -0.0097724 +-0.0861064 0.0806138 0.0174966 +-0.0488748 0.105594 -0.0196597 +-0.0499497 0.0724883 0.0409516 +-0.060435 0.131107 0.0389542 +-0.0197383 0.108898 -0.0213322 +-0.0328414 0.0943934 -0.0238538 +0.0071329 0.104451 -0.0211019 +-0.0904392 0.125398 0.00528343 +0.0579573 0.0676391 0.00414749 +-0.0890486 0.0915916 0.0214249 +0.0544885 0.0716156 0.00618127 +0.037936 0.0901639 0.0356574 +-0.0631289 0.155254 0.0269868 +0.0280038 0.120349 0.024295 +0.00325461 0.0697315 -0.0336623 +0.0198002 0.0768324 0.0515324 +0.0135718 0.0504901 0.0475195 +-0.0220331 0.041681 0.0538782 +-0.0322365 0.126297 0.00653811 +-0.020497 0.0855906 0.0563403 +0.0100844 0.123139 0.0340691 +-0.0917617 0.141982 0.0191718 +-0.00665267 0.0526646 -0.0325345 +0.0325469 0.0922927 -0.0176842 +-0.00490321 0.0383839 0.0141185 +0.0393963 0.049102 -0.00636122 +-0.0468295 0.0927337 -0.0216687 +0.0393484 0.0561243 -0.00568756 +0.0381042 0.0392738 0.00134927 +-0.02061 0.0653432 0.0492306 +-0.0644858 0.152894 -0.00250698 +0.0316363 0.118365 0.0113851 +-0.0625842 0.162383 -0.0563311 +-0.0126137 0.180121 -0.0236267 +-0.0562637 0.142432 0.0309288 +0.0389203 0.10838 0.0161659 +0.0468209 0.0708789 0.021127 +0.0153317 0.060873 -0.028643 +-0.067208 0.0447917 0.00368814 +-0.0638714 0.15469 -0.0385902 +-0.0624126 0.161536 -0.0416011 +-0.011049 0.124435 -0.00785173 +0.0143712 0.0493733 -0.0267066 +-0.0374862 0.0931566 0.0438456 +-0.0278525 0.0807805 0.0474761 +0.0573848 0.0670309 0.00292365 +-0.0304938 0.0960556 0.0449536 +0.0182602 0.127523 0.0192457 +0.0182204 0.080645 -0.0282763 +-0.00275795 0.0740872 -0.0359501 +-0.072697 0.155649 0.00759319 +-0.0857527 0.0792184 0.0135098 +-0.0604443 0.0456013 0.0296807 +-0.0528198 0.0927332 -0.0219739 +-0.0457202 0.0709417 -0.0164642 +-0.054497 0.0889964 0.0448823 +-0.0541353 0.147754 0.0254132 +0.05074 0.0503045 -0.00171178 +-0.0926993 0.124215 0.0352716 +0.00850767 0.0786 0.0556334 +-0.0141847 0.0405865 0.0511605 +-0.0500491 0.0345412 0.0367666 +-0.0744234 0.156022 0.0128056 +-0.0148381 0.0386367 -0.0157684 +-0.0896535 0.0916031 0.0184402 +-0.0279306 0.125506 0.00666413 +-0.0249827 0.0918474 0.0485489 +-0.0247746 0.0385687 -0.0102357 +-0.0718755 0.10648 -0.0114758 +0.0303733 0.115414 -0.00438737 +0.0390771 0.099844 -0.00681802 +-0.0601235 0.0447437 0.0425684 +0.0559507 0.0508031 0.00520531 +-0.087948 0.102288 0.00840013 +-0.0802939 0.0732789 0.00250413 +-0.00347452 0.114725 -0.0175669 +-0.0780015 0.155773 0.018849 +-0.0868392 0.0873072 0.00147849 +0.0114304 0.0346172 0.0371012 +-0.0154945 0.0925097 0.0555061 +0.0207547 0.10431 -0.0184628 +-0.0805113 0.153427 0.0283513 +-0.0133702 0.0343611 -0.0190243 +0.045363 0.0932019 0.00717004 +-0.0517619 0.079747 -0.0203928 +-0.011137 0.171308 -0.0197957 +-0.0797359 0.0706327 0.0105539 +-0.0435047 0.116629 0.0323741 +0.0461192 0.0786876 0.0190773 +0.0257679 0.0349257 0.0180133 +-0.0377436 0.127354 0.000111554 +0.0455391 0.0875946 0.0141649 +-0.0115776 0.0962625 -0.032007 +-0.0304054 0.0580102 -0.0194062 +-0.0519213 0.118323 0.0336042 +-0.0615165 0.15114 0.0355512 +-0.0268549 0.175688 -0.00910606 +0.0291872 0.0462618 0.034893 +-0.0828817 0.143196 0.00216401 +-0.0229243 0.0972075 0.044901 +-0.0420606 0.0344689 0.0332688 +0.00840712 0.0404044 -0.0234014 +-0.0584986 0.100161 0.0428821 +0.0267286 0.0521731 -0.0207566 +-0.0343564 0.043282 -0.028737 +0.035312 0.0840703 -0.0177861 +0.0167493 0.0874098 0.0506847 +-0.0706375 0.156126 0.0126907 +0.0395317 0.0596774 0.0306966 +0.0160357 0.0807986 0.0531419 +-0.0719071 0.105086 -0.0120336 +0.057752 0.0523416 0.0181873 +-0.0705862 0.166615 -0.0490027 +-0.069998 0.157611 -0.0031485 +-0.0629727 0.118457 0.044154 +-0.0098895 0.107351 -0.0224128 +-0.0668287 0.169972 -0.0351376 +-0.0538607 0.152062 0.0231076 +0.0286155 0.0795328 0.044942 +0.00747725 0.131195 0.0181386 +0.0525355 0.0678367 0.0261828 +-0.069983 0.033931 0.00665746 +-0.00449526 0.10588 0.044033 +-0.0647467 0.143415 -0.011401 +-0.0242451 0.0337053 -0.0224295 +0.0405945 0.102819 0.0221712 +-0.0253936 0.106122 -0.0223873 +-0.031866 0.126076 0.00521848 +-0.0903832 0.132413 0.0312232 +0.0270423 0.0648893 -0.0216756 +-0.0416036 0.125525 0.0208631 +-0.0642885 0.148287 -0.0250747 +0.043249 0.0705728 -0.00179391 +0.00750831 0.0772509 0.056126 +-0.0360471 0.125746 -0.0036679 +-0.0534999 0.0820142 0.0450601 +-0.0268076 0.0782799 -0.0366273 +-0.0630392 0.0336157 0.00836468 +0.00450283 0.0924607 0.0546761 +-0.0794816 0.0846149 0.0352279 +-0.0354976 0.116636 0.0319301 +0.0590094 0.0552651 0.0101755 +0.0177618 0.100614 -0.0224544 +0.0141872 0.0347155 0.0357788 +-0.0626395 0.0644043 -0.00619313 +-0.0472223 0.168222 -0.000777409 +-0.0688709 0.156258 0.0147705 +-0.00209707 0.130745 0.0203917 +0.0438165 0.0959355 0.0191615 +0.0272253 0.120021 -0.000250724 +-0.0623918 0.152158 -0.026581 +-0.0619803 0.153737 -0.02558 +-0.0110119 0.122536 -0.00980812 +-0.00845767 0.100229 0.0476033 +-0.053626 0.1255 0.0365054 +0.029243 0.0872327 -0.0208644 +-0.0561028 0.133503 -0.00512832 +-0.0536146 0.150855 0.0243962 +-0.0729449 0.0805494 0.0386997 +-0.0113093 0.0384672 0.00547553 +0.013929 0.0392001 0.0444158 +-0.0743245 0.179234 -0.0539852 +-0.0670834 0.168031 -0.0569976 +0.0269196 0.0418157 0.0333163 +-0.0261604 0.114813 -0.0155316 +0.054979 0.06227 -0.000302264 +0.0447631 0.0931576 0.00318223 +-0.028552 0.159576 0.000695282 +-0.0196334 0.0906851 0.0545345 +-0.0681661 0.173216 -0.0428508 +-0.0670035 0.166617 -0.0570134 +-0.00170857 0.0641356 -0.0344906 +-0.0302923 0.115032 -0.0157497 +-0.017789 0.0998203 0.0439009 +0.0575984 0.0711737 0.0088801 +-0.0559485 0.119826 0.0383628 +-0.0508832 0.106998 -0.0191626 +-0.0856518 0.096702 -0.000561949 +0.0433856 0.0475038 -0.0047769 +-0.0141839 0.177168 -0.0206609 +-0.0318261 0.0623615 -0.0184459 +-0.0694684 0.158126 -0.0509379 +-0.059088 0.0445923 -0.00517311 +-0.0680469 0.0887699 0.043444 +0.0413366 0.0588699 -0.00449648 +-0.0108613 0.16611 -0.0209706 +-0.0810695 0.111472 -0.000645954 +0.0236683 0.0535376 0.0428398 +-0.0525009 0.104252 0.0406803 +0.0178265 0.128119 0.0148069 +-0.0833287 0.0817012 -0.000498118 \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny5000.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny5000.pts new file mode 100644 index 000000000000..b9c0cbdc12bd --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny5000.pts @@ -0,0 +1,35948 @@ +1500 +-0.0164722 0.0382453 0.0209318 +-0.0641407 0.171114 -0.0471776 +0.023086 0.119339 0.0317977 +0.00506037 0.0347021 0.0393176 +-0.066143 0.143958 0.0413147 +-0.0445017 0.163753 0.00542301 +-0.0689729 0.181022 -0.0546459 +-0.0931085 0.131006 0.0192314 +0.000506827 0.0489752 0.0512269 +-0.0615935 0.160001 -0.0315914 +-0.0245032 0.0960169 0.0442753 +-0.0258992 0.0891655 0.049535 +-0.000499367 0.0456802 0.0470389 +-0.0171808 0.0654583 0.0528522 +0.00116916 0.131228 0.00582139 +-0.0356565 0.122935 -0.00798984 +-0.0701892 0.156285 0.021569 +-0.0173569 0.038443 0.0259817 +-0.0716413 0.0763478 -0.0132577 +0.0528545 0.0568172 0.0288563 +-0.0325067 0.0732308 0.0407775 +-0.0760686 0.150008 -0.00987485 +-0.030561 0.0774145 0.0410957 +-0.0833901 0.0762729 0.00451303 +-0.000492618 0.0925258 0.0556594 +-0.0358778 0.159506 0.00240863 +0.0115111 0.114076 0.0384616 +-0.0877889 0.0887187 0.00347532 +-0.0261028 0.115949 -0.0147279 +-0.0682913 0.165205 -0.0539869 +-0.0225512 0.0933694 -0.0331106 +-0.0538783 0.0999149 -0.0214389 +0.0435587 0.0959151 0.0211557 +-0.0167991 0.0388632 -0.0107644 +-0.0569142 0.0548839 0.00364185 +0.00749229 0.091015 0.0542708 +-0.065316 0.0625169 -0.002419 +-0.00749647 0.119689 0.0375376 +-0.0772165 0.0934484 -0.0125951 +-0.029008 0.0478606 -0.0250513 +0.00934189 0.0553527 -0.0303034 +-0.0578677 0.104042 -0.0186102 +0.0405495 0.0999198 -0.00379356 +-0.0894314 0.137929 0.0371779 +0.00710731 0.126603 -0.00643182 +0.058913 0.070492 0.0108657 +-0.0922485 0.120133 0.0292903 +0.0395325 0.105566 0.0221621 +-0.0376065 0.0365426 0.0444186 +-0.0550158 0.128128 -0.00563226 +-0.0561672 0.0336533 0.0186553 +0.0123436 0.0351165 0.0296251 +-0.0899184 0.131005 0.0413145 +0.0065365 0.100373 0.0469448 +-0.0502879 0.133796 0.0278403 +-0.0716838 0.0351362 0.00880221 +0.0579126 0.0523842 0.0101848 +-0.0639212 0.154791 0.00385831 +-0.0654795 0.0384216 -0.00684663 +-0.0615513 0.0624603 0.0259481 +-0.0368013 0.0842007 -0.0223672 +0.0522757 0.0574291 -0.0035048 +-0.0764972 0.123179 0.0527664 +0.0302998 0.0694384 -0.019812 +-0.0334269 0.0486094 0.0413091 +-0.00450651 0.0689184 0.0565193 +0.0425976 0.0887597 -0.00680771 +-0.0707351 0.156208 0.0228366 +0.0548799 0.0492406 0.0202107 +-0.00962948 0.168316 -0.023669 +-0.0313363 0.11605 -0.0148117 +-0.0225249 0.125571 0.0012278 +0.0122871 0.124953 0.0313975 +-0.0343047 0.125361 0.0205265 +-0.038499 0.0747376 0.0420783 +0.0292349 0.0759579 -0.0220376 +-0.0255784 0.0477093 -0.0263526 +-0.0750958 0.151313 -0.0258791 +0.0057743 0.0347896 0.0375885 +-0.0926124 0.120126 0.0272917 +-0.0366664 0.175138 -0.00407486 +-0.00549337 0.088417 0.0570387 +-0.0711473 0.17507 -0.0540267 +-0.0776118 0.0739521 0.0284675 +0.0376746 0.104662 0.0282621 +-0.0634881 0.121359 0.0469409 +0.0233296 0.0564006 -0.0254415 +-0.0399361 0.123254 0.0259269 +-0.000577398 0.0341134 -0.0181551 +-0.000496894 0.0520342 0.0541515 +-0.0701023 0.177167 -0.0478719 +-0.0641167 0.143926 0.0389732 +-0.0679369 0.165269 -0.0197719 +-0.0681029 0.138305 0.0455026 +-0.00280426 0.0384802 0.0198949 +-0.0628273 0.0924874 -0.0189476 +0.0084946 0.0869435 0.0558386 +0.00910286 0.0348066 0.0183719 +-0.0195983 0.126231 0.0213862 +-0.0584949 0.143878 0.0330085 +-0.0218343 0.0553077 0.0451067 +-0.0645685 0.147457 -0.0230581 +0.0426227 0.0691122 -0.00279622 +-0.035813 0.0842739 -0.0225525 +-0.0819685 0.0791215 0.0284136 +0.0328852 0.113087 -0.00384394 +-0.0677123 0.168615 -0.0283035 +-0.0556635 0.140996 0.0299986 +-0.0764958 0.131682 0.0526442 +0.0421796 0.0832522 0.0293553 +-0.0848653 0.0855483 0.0264341 +-0.0329445 0.121338 0.0269922 +-0.0320197 0.058187 -0.0133973 +-0.0322785 0.0421631 -0.0296986 +0.0401757 0.067497 -0.00878165 +-0.0904989 0.148452 0.0245146 +-0.00947974 0.0561444 0.0530127 +-0.0310333 0.0383692 -0.000250742 +-0.0780713 0.150403 0.0367551 +-0.0872126 0.146051 0.00824907 +-0.0735722 0.148626 -0.0268487 +-0.00548676 0.116904 0.0394711 +-0.0599006 0.132533 0.037981 +-0.093479 0.129659 0.0212406 +-0.0639063 0.120904 -0.00875525 +-0.028606 0.0356961 0.0524615 +-0.0652024 0.153998 -0.041972 +-0.0262134 0.0765572 0.0473962 +-0.0774721 0.155387 0.0234212 +-0.0628707 0.0345025 0.0358026 +0.0434964 0.0555926 0.0322399 +-0.0618022 0.142496 0.0370478 +-0.0638273 0.0910291 -0.0188305 +-0.0636286 0.0672101 0.0337087 +-0.0842132 0.092522 0.0298256 +0.0185123 0.115397 0.0365584 +-0.0666269 0.131204 0.0458398 +-0.0653475 0.165775 -0.0260007 +-0.0182573 0.181629 -0.0177335 +-0.0142757 0.185348 -0.0257883 +0.0485082 0.0624718 0.0300814 +-0.0254927 0.0974122 0.0441083 +-0.0446561 0.0349999 0.0427486 +-0.0616719 0.0410515 0.0160296 +-0.0179307 0.0931593 -0.0348763 +-0.00828798 0.130102 0.00662088 +-0.0525878 0.149334 0.020403 +-0.0102534 0.128943 0.0232512 +0.0445378 0.0959706 0.0101622 +-0.0465291 0.0335268 -0.00814027 +0.00437534 0.131145 0.0198749 +-0.0394369 0.03436 0.0321562 +-0.0107155 0.127812 0.0260097 +-0.0273383 0.17123 -0.0098418 +-0.0037118 0.0655569 -0.0347446 +-0.0630689 0.150547 -0.0265942 +-0.0776846 0.16386 -0.0329461 +-0.0728796 0.151218 -0.0388899 +0.038172 0.0967289 0.0325586 +-0.058907 0.0983413 -0.0195805 +-0.00549542 0.0965711 0.0536823 +0.00650609 0.0503877 0.0517539 +-0.0847722 0.113367 0.0459387 +0.0309512 0.0822193 0.0430727 +-0.0159859 0.0984773 0.0464357 +0.0361586 0.0781359 0.0382445 +0.0417308 0.0422749 0.000248643 +-0.0631435 0.175042 -0.061564 +-0.0251041 0.0945178 -0.0276305 +0.018776 0.122594 -0.0061273 +0.0173125 0.0726566 0.0514253 +-0.0377229 0.0724783 -0.0174913 +0.0173872 0.0432828 -0.0228623 +0.0416262 0.0912615 0.0286616 +-0.050567 0.0474222 -0.00850865 +-0.0150865 0.162585 -0.00969001 +0.0143357 0.0566765 -0.0290221 +-0.0309078 0.065095 -0.0224325 +0.045522 0.0805737 0.00219452 +-0.0725374 0.138625 0.0483183 +-0.0476365 0.150675 0.00992423 +-0.0799103 0.125126 -0.00560703 +-0.051025 0.159915 -0.00453945 +0.00139766 0.0419298 -0.0244976 +-0.0664219 0.0352675 0.015055 +-0.00832508 0.130422 0.0138058 +-0.00366678 0.0481589 -0.0301707 +-0.0738566 0.161044 -0.0339379 +0.0319703 0.0475137 0.0318758 +0.0188215 0.126955 0.00377584 +-0.0309617 0.044825 -0.0281993 +0.0456484 0.0875951 0.00518134 +-0.0521074 0.0583062 0.0285239 +-0.0171825 0.0382402 0.011747 +-0.0692976 0.0615474 0.00912978 +-0.0232044 0.175652 -0.0207635 +-0.0406662 0.0592305 -0.0118049 +0.0572429 0.0508905 0.0121849 +-0.0488285 0.0416917 0.0446681 +0.0455301 0.0677752 0.0254231 +-0.0846369 0.110251 0.00429821 +-0.0754652 0.163196 -0.0162299 +-0.0247271 0.0564997 0.0408849 +-0.0639975 0.0601011 0.00610183 +-0.0741599 0.155538 0.00126713 +-0.0728899 0.122329 -0.00823917 +0.010861 0.0360066 0.0447493 +0.0150176 0.0355797 0.04239 +-0.0437155 0.0710509 -0.0175901 +0.0271589 0.093209 -0.0206672 +-0.00592646 0.12418 0.0336126 +-0.0810295 0.0895599 -0.00769505 +-0.0920663 0.121362 0.00826874 +-0.0862277 0.0832671 0.00749085 +-0.085371 0.127983 -0.0026626 +-0.081815 0.108922 0.02836 +-0.0491537 0.135503 0.0034228 +0.00885847 0.0887054 -0.0320419 +-0.0673146 0.0446682 0.00602001 +0.0152697 0.128852 0.0195703 +0.0231834 0.0422122 0.040252 +-0.0286261 0.0463451 -0.0269667 +0.0449154 0.0763231 0.00019353 +-0.0387296 0.0739178 -0.0177449 +0.0212191 0.0819428 -0.0266321 +-0.00126307 0.039726 0.0470556 +-0.0261021 0.0379463 0.0228342 +-0.0448562 0.101383 -0.0214692 +-0.0014827 0.0390261 -0.00225591 +-0.0648948 0.103911 -0.0165942 +-0.0624902 0.155293 -0.0145941 +0.000436968 0.130385 0.0227651 +-0.0219738 0.059501 0.0451263 +-0.0502789 0.129408 -0.00267456 +-0.0216757 0.065257 0.0474751 +-0.0621482 0.16155 -0.0395978 +0.0427418 0.0916392 0.0261768 +0.00967962 0.127274 0.0289934 +-0.0728707 0.168003 -0.0450202 +-0.0305611 0.179398 -0.00755573 +0.0341402 0.0902832 0.0407178 +-0.0491119 0.0361611 0.0459929 +0.0392087 0.0739776 0.0338431 +-0.0897017 0.151503 0.0171224 +0.0407967 0.105643 0.0101649 +-0.023633 0.0478399 -0.0272396 +-0.0504958 0.0862332 0.0455716 +-0.0451092 0.153606 0.00834539 +-0.0616087 0.146812 0.0373554 +0.0280342 0.0346822 0.009507 +0.0565861 0.0685555 0.00335277 +-0.027568 0.0674298 0.0392602 +-0.0926576 0.117463 0.0373027 +-0.0334278 0.124984 0.0208436 +-0.0602518 0.034678 0.0430709 +-0.0574989 0.107052 0.0398301 +-0.091226 0.128161 0.00727002 +0.0400022 0.0913669 0.0315547 +-0.0656743 0.138242 0.0419702 +-0.0852141 0.0805923 0.0204766 +-0.0444957 0.111173 0.0370595 +-0.044489 0.0803636 0.042222 +-0.00648998 0.122405 0.0354776 +0.00602348 0.111527 -0.0200414 +-0.0860119 0.132159 0.00027761 +0.0521231 0.0734583 0.0172399 +-0.0155403 0.0446621 0.0510487 +-0.0397503 0.0768521 -0.0186787 +-0.0682155 0.0787029 0.0404793 +-0.0813927 0.0758934 0.0225084 +-0.010188 0.0386565 4.14997e-05 +-0.00149609 0.0912323 -0.0347548 +-0.0294974 0.111128 0.0367729 +-0.0503924 0.0501648 0.0186468 +-0.0104698 0.070299 0.0557764 +0.0327323 0.0809002 0.0421262 +-0.0328911 0.122131 -0.00712262 +-0.0861948 0.1005 0.0258994 +-0.0319282 0.178722 -0.00808101 +-0.050675 0.140101 0.0024044 +-0.0346788 0.0636729 -0.0139354 +-0.00820144 0.0344928 -0.0181278 +-0.0830162 0.0939316 0.0314035 +0.0438286 0.0611702 -0.00330591 +-0.0162799 0.127645 0.0211086 +-0.0615233 0.0354132 0.043881 +-0.0755937 0.0809959 -0.0116148 +-0.0632393 0.166259 -0.0385929 +-0.0156738 0.0511142 -0.0317767 +0.000751147 0.0339678 -0.0215355 +-0.0534027 0.0336932 0.022744 +0.0102837 0.0348658 -0.0091814 +-0.0285082 0.0874866 -0.0336017 +-0.0849712 0.111906 0.0292041 +-0.0732162 0.169408 -0.0460252 +-0.00746424 0.110009 0.0430329 +-0.0587154 0.0723411 -0.016523 +-0.00333145 0.0968513 -0.0305901 +0.0385608 0.0713011 0.0346329 +-0.0463734 0.133247 0.0130756 +-0.0474986 0.104275 0.0408376 +-0.0714849 0.147284 -0.0260827 +-0.0404433 0.0461446 -0.0193164 +0.000709469 0.125628 -0.00726116 +0.028516 0.117882 -0.00302906 +-0.00249354 0.0746702 0.0587588 +0.0463101 0.0806468 0.00818141 +-0.0245515 0.114015 0.0358596 +-0.0396488 0.0563195 -0.0111963 +-0.0236961 0.0607746 0.0425604 +-0.0336359 0.0548461 -0.0105101 +-0.0585033 0.0337545 0.0163089 +0.0212208 0.126407 0.0160623 +-0.0729862 0.15207 0.0354642 +-0.085378 0.128494 0.0496125 +0.00429457 0.122356 -0.0118056 +0.0203517 0.0672611 0.0487139 +-0.0452845 0.0395903 -0.0182935 +-0.0211124 0.182965 -0.0210132 +-0.0295465 0.0819132 0.0441437 +-0.0777488 0.07493 0.029356 +0.00824435 0.0966482 -0.0263491 +-0.0588066 0.0854157 -0.0208208 +-0.0718999 0.113582 -0.00821597 +-0.0893735 0.0901981 0.0104595 +0.032603 0.0835706 0.0419526 +-0.0230608 0.0594124 0.0433799 +0.0284544 0.121423 0.0116324 +-0.0832785 0.12444 0.0504652 +-0.0396241 0.0520021 -0.0108773 +0.00721225 0.0837864 -0.0330068 +-0.046713 0.131987 0.00556897 +-0.0663702 0.157999 -0.00906779 +-0.067736 0.0779793 -0.0166569 +-0.0508692 0.102779 -0.0209206 +-0.0828958 0.151378 0.00422572 +-0.0346622 0.118788 -0.0116368 +-0.0726425 0.0716156 -0.00744076 +-0.059725 0.0469427 0.0326718 +-0.0468444 0.033579 -0.0045851 +-0.0384976 0.100064 0.0415702 +-0.050989 0.121022 -0.0119137 +-0.0624226 0.152205 -0.0125757 +-0.085741 0.151793 0.0266482 +-0.0826468 0.144713 0.0407672 +-0.0685649 0.0705046 -0.00966184 +-0.0734033 0.167233 -0.0217479 +-0.0455099 0.155064 0.0077969 +0.022652 0.0862116 0.0486888 +0.043364 0.0547822 -0.00644446 +-0.054457 0.14621 0.0274041 +-0.0639777 0.155958 0.0237716 +-0.0882347 0.0861347 0.011472 +0.00545294 0.1216 -0.0129959 +-0.0334673 0.174268 -0.00177832 +-0.00402179 0.129762 0.0240423 +-0.0185051 0.0711438 0.0540217 +-0.0872329 0.150111 0.00920897 +-0.090033 0.147105 0.0269347 +-0.0141936 0.0419832 0.0511586 +-0.0335873 0.154463 -0.00838872 +0.0441357 0.083266 -0.000805736 +-0.0528842 0.102762 -0.0205636 +-0.0125091 0.0815143 0.0575917 +0.0197435 0.125962 0.0226458 +-0.067993 0.0619274 0.01978 +-0.0216083 0.039391 -0.0287125 +-0.0767116 0.165247 -0.022942 +-0.0861936 0.111308 0.0401352 +-0.0238165 0.0854111 -0.0376407 +-0.0442161 0.123225 0.0243959 +-0.0175443 0.0460366 0.0510389 +-0.0272334 0.0902723 -0.0326005 +-0.0459359 0.168402 -0.00594095 +0.0355423 0.0512597 0.0315836 +0.0451079 0.0636949 -0.00183531 +-0.0368834 0.125578 -0.00482073 +0.0196258 0.0457587 -0.0217227 +-0.00773224 0.109619 -0.0221011 +-0.0514957 0.0876341 0.0455102 +-0.00269376 0.0613003 -0.0344696 +-0.0512049 0.147808 0.0143958 +0.0266901 0.106496 -0.0148024 +0.0383861 0.0476151 -0.00591592 +-0.0136895 0.0952904 -0.0330103 +0.0368491 0.0767795 0.0374896 +-0.029592 0.0522946 -0.0203629 +0.0482309 0.0500295 -0.00369862 +0.0381363 0.0794306 0.0358549 +-0.0677271 0.155796 -0.00229118 +0.026043 0.0392404 0.0305576 +0.0208388 0.126564 0.0173475 +0.0159735 0.0448127 0.0438765 +-0.0681757 0.118633 0.0523539 +-0.065068 0.136793 0.0410949 +-0.0454458 0.168254 0.00168996 +-0.0715222 0.142818 0.0455702 +-0.0604912 0.112522 0.03629 +-0.00074702 0.0712329 -0.0350931 +-0.0894331 0.150114 0.0121902 +-0.0185746 0.0381525 0.0151621 +0.0291213 0.0348096 0.00960912 +0.0404448 0.0985503 0.0271661 +0.0134712 0.0936014 0.0511282 +-0.021496 0.103017 0.0435858 +0.00918856 0.0342345 -0.00132638 +-0.0508332 0.0956285 -0.0221275 +-0.0613646 0.0394268 0.0439671 +0.0264379 0.0968548 0.0436578 +-0.0646669 0.0405364 0.0387423 +0.0125029 0.0475354 0.045933 +0.0412949 0.104257 0.00416372 +-0.00222052 0.117102 -0.0161156 +-0.00995662 0.169734 -0.0198047 +0.0200755 0.0399795 -0.0157069 +-0.0839165 0.110514 0.0395089 +-0.0546435 0.116042 -0.0146857 +0.0268767 0.0854059 -0.022529 +-0.0543926 0.0337363 0.0224962 +-0.049781 0.0841032 -0.0216622 +0.0431463 0.100109 0.00616795 +0.0393814 0.0780345 0.0341058 +-0.0162612 0.17862 -0.0260128 +-0.0335093 0.0676035 0.0406399 +-0.0176483 0.0352702 -0.0188352 +-0.031463 0.0519033 0.0373773 +-0.0803572 0.0803552 0.0319871 +-0.0320868 0.159267 -0.0129293 +0.0132853 0.0589897 0.0507165 +-0.0103631 0.180289 -0.0277342 +-0.0144925 0.0559441 0.0511232 +-0.0246444 0.0381166 0.0247786 +0.0170669 0.0871276 -0.028336 +0.00372554 0.105196 -0.0213905 +-0.0777857 0.156925 -0.0179137 +0.0578227 0.0710073 0.0178627 +-0.0582482 0.0336534 0.0128901 +-0.0520861 0.0545712 0.0266312 +0.0269849 0.113053 -0.00983991 +0.0429421 0.0467386 0.030224 +0.00548112 0.11414 0.0405028 +0.0607975 0.0637336 0.0101416 +-0.0895137 0.135181 0.0391853 +-0.0822803 0.139383 0.0462108 +0.00350363 0.0883757 0.0563643 +-0.0599112 0.109712 -0.0163845 +-0.0699244 0.107994 -0.0118147 +-0.073438 0.145781 -0.0138542 +-0.0702694 0.156361 0.0186365 +0.0365208 0.0713424 0.036933 +-0.0764811 0.141399 0.0471717 +-0.0338378 0.0943788 -0.02372 +-0.0185768 0.055451 0.0489119 +-0.0294962 0.107041 0.0398129 +0.0351663 0.0783387 -0.0157415 +-0.0823976 0.095314 0.0321564 +0.0458052 0.08902 0.00916777 +0.00466954 0.0341296 0.0180802 +0.012258 0.0751733 -0.0308354 +-0.0176564 0.0480544 -0.0295902 +-0.0487658 0.0811872 -0.020682 +-0.0375125 0.045091 0.0407522 +0.00960807 0.0375632 0.0322947 +0.0522688 0.0462249 0.00921199 +-0.0452834 0.0395877 -0.019291 +-0.0396931 0.126183 0.0200311 +-0.0903381 0.144712 0.0141544 +-0.0430213 0.0450576 -0.0153284 +-0.0539191 0.129665 -0.00510771 +-0.0384876 0.108386 0.0375357 +-0.0496388 0.0605583 -0.0113235 +-0.034501 0.115223 0.0328885 +-0.0540284 0.131061 -0.00500164 +-0.0147028 0.0389017 0.0333119 +-0.0207376 0.0641563 -0.0358205 +0.00590682 0.131658 0.0132863 +-0.0819436 0.154696 0.0145801 +0.0526661 0.0660937 -0.000184776 +-0.0526201 0.14007 0.0244025 +-0.0752504 0.177839 -0.0529463 +-0.0574955 0.0946379 0.0447737 +0.0456129 0.0904097 0.00518194 +-0.0282629 0.122524 0.022734 +-0.0680338 0.142566 0.0438693 +-0.0643033 0.0426016 0.0312522 +-0.0314971 0.102929 0.041974 +-0.00589664 0.0980966 0.0519993 +-0.0542782 0.132533 0.0338047 +-0.0911122 0.11473 0.0343167 +-0.0493972 0.140141 0.00739907 +-0.0577664 0.0485104 0.00767417 +-0.0629684 0.139576 0.0370615 +-0.0122087 0.128137 0.0240139 +0.00116984 0.129366 -0.00128907 +-0.039496 0.0634667 0.0415276 +-0.0427066 0.0696149 -0.0170299 +-0.0721201 0.149786 -0.0402916 +-0.0637423 0.168365 -0.0426884 +-0.0228169 0.0383283 0.0285633 +-0.0894925 0.143336 0.0131803 +-0.0408822 0.128708 0.0107294 +-0.043783 0.147719 0.00491206 +0.00912223 0.0833108 0.0554277 +-0.0543042 0.0335497 0.00301212 +-0.0544171 0.0333785 -0.00775516 +0.0295237 0.0727272 0.042682 +-0.0504982 0.112495 0.0358796 +-0.0240218 0.119915 -0.0108978 +-0.0535232 0.0556038 0.0117195 +-0.0480175 0.133707 0.00490199 +0.00583381 0.129313 0.0261699 +-0.0405566 0.149165 -0.00293165 +-0.0286765 0.0690744 -0.0314836 +0.0453693 0.0693828 0.00245115 +0.0581659 0.056561 0.00517446 +0.0192888 0.0651078 -0.0282476 +-0.0228892 0.0739252 0.0512281 +-0.0217183 0.113234 -0.017904 +0.0365187 0.0526805 0.0315096 +0.0490482 0.0539975 0.0303486 +0.0175085 0.114012 0.0373101 +-0.0328107 0.126843 0.0122027 +-0.0687814 0.0336983 0.00353162 +0.0220892 0.0906332 -0.0239505 +-0.0460528 0.122513 0.026245 +0.0381409 0.109688 0.00657231 +0.0368421 0.0742334 -0.0127504 +-0.0657975 0.0340784 0.0127357 +-0.0706216 0.146831 -0.0255714 +-0.0468292 0.091298 -0.0217206 +-0.0914681 0.144718 0.0171554 +-0.0624908 0.0343254 0.0238098 +0.0543739 0.0477987 0.0161989 +-0.0195403 0.1757 -0.0161256 +0.0224671 0.0343921 0.00678503 +-0.0654707 0.155271 0.00728456 +-0.0897135 0.12265 0.00431103 +-0.0501651 0.0361307 0.0461721 +-0.0901888 0.139114 0.0151891 +-0.0726107 0.156829 -0.0349095 +-0.0334964 0.0718545 0.0411869 +0.0106165 0.0644536 0.0539383 +0.0274263 0.0491525 0.0376576 +-0.0157908 0.169796 -0.0160148 +-0.0608326 0.17151 -0.0610901 +0.0136156 0.126814 -0.00267762 +0.0293325 0.0535401 0.0386956 +-0.0652579 0.153012 -0.0402459 +0.0264019 0.036087 0.0225582 +0.0101281 0.105858 -0.0202342 +-0.0674046 0.0833115 0.0429955 +-0.0312435 0.0538841 -0.0143722 +0.0424267 0.0441756 -0.00158684 +-0.0305089 0.0760274 0.0408429 +-0.0849899 0.127963 -0.0030064 +-0.0223249 0.0386602 -0.0135496 +0.0216012 0.112963 -0.0137495 +-0.0224297 0.0552774 0.0442986 +-0.093152 0.121537 0.0362834 +-0.0384463 0.166779 0.00239389 +0.0317419 0.0667553 -0.0187125 +-0.0127135 0.100022 -0.0239701 +0.0204112 0.0371925 -0.00568428 +0.0383001 0.0969495 -0.00880451 +-0.0500528 0.150184 -0.0037815 +-0.0578783 0.106898 -0.0179862 +0.0485378 0.0682762 0.00156381 +-0.0708965 0.0341323 0.00629169 +-0.0871174 0.110466 0.0103621 +-0.0235739 0.0944939 0.0470656 +-0.0164815 0.0515035 0.0485835 +0.0325428 0.0380502 1.57112e-05 +0.0385774 0.0888011 0.0348199 +-0.0628692 0.0445185 0.0382675 +-0.0572856 0.125533 0.0399888 +-0.0780066 0.0940671 0.0362827 +-0.0361012 0.160724 -0.0132118 +0.0200495 0.124902 -0.000599563 +0.0101263 0.107276 -0.0197522 +0.0224877 0.0961643 0.0466342 +-0.077715 0.0852782 -0.0115916 +-0.0164955 0.105778 0.0423459 +-0.0725318 0.101313 0.038599 +-0.0663565 0.0783826 0.0411592 +-0.0644378 0.17995 -0.0588828 +-0.0645973 0.171184 -0.0458828 +0.0111199 0.129735 0.0223368 +-0.018333 0.172741 -0.0161594 +-0.0864925 0.10492 0.00639597 +-0.0144943 0.0500942 0.0487331 +-0.0855601 0.095177 0.0282718 +1.67787e-05 0.0386604 0.0239291 +0.0109499 0.0344084 0.00259617 +-0.0270041 0.168274 -0.00938266 +-0.0378811 0.107099 -0.0200653 +0.060304 0.0664655 0.0101406 +-0.0478845 0.108472 -0.0188663 +0.0181085 0.0591163 0.0489014 +-0.0260899 0.0522789 0.0395517 +0.0049437 0.0984176 -0.0242128 +-0.0623314 0.0357831 0.0433788 +0.0110403 0.0725847 0.0546235 +-0.0864956 0.084691 0.0204775 +-0.00849993 0.0787667 0.0579153 +-0.0260008 0.0382709 0.000860974 +-0.06937 0.145758 -0.0234859 +-0.0314168 0.117929 -0.0127586 +-0.0261669 0.0378674 0.0174813 +-0.0832309 0.120353 0.049216 +-0.0617814 0.16156 -0.0355923 +-0.0779669 0.165862 -0.0278956 +-0.0698398 0.0922797 -0.0162924 +0.0483255 0.0503286 -0.00380134 +0.0451716 0.0889782 0.0181643 +0.0329815 0.112282 -0.00498623 +0.0279206 0.0916217 -0.0209795 +0.0155 0.11402 0.0377783 +-0.0105379 0.0431327 0.0497176 +0.0606167 0.0609422 0.00915424 +-0.0181983 0.18599 -0.0174024 +0.0189716 0.115037 -0.0139804 +-0.0590849 0.0644137 0.0318252 +-0.0819254 0.12582 0.0519232 +-0.0588398 0.0954803 -0.0203334 +-0.0674426 0.148384 -0.0326115 +0.0387628 0.10462 0.0262683 +0.00841723 0.129272 0.0256623 +-0.0196119 0.0364667 -0.0278852 +-0.0376923 0.162356 -0.000243841 +1.88808e-05 0.115368 -0.0182789 +0.0393962 0.0505525 -0.00668347 +-0.0116788 0.0555838 -0.0339192 +0.0363865 0.0713868 -0.0138007 +-0.0821651 0.110069 0.034903 +0.022728 0.117081 -0.0101857 +-0.0515389 0.0417461 -0.0105815 +0.0219588 0.123501 -0.00109075 +0.00735928 0.0960033 -0.0276522 +-0.00349428 0.119696 0.0379021 +-0.0470844 0.151656 -0.00519447 +-0.0242296 0.0941248 -0.0298734 +0.0152433 0.0658912 0.0518711 +-0.021804 0.0376594 -0.0181241 +-0.0133966 0.121962 -0.00916065 +0.0365536 0.108655 0.0265769 +-0.0668098 0.0880715 -0.0180091 +-0.0665181 0.171112 -0.0407548 +0.0493343 0.0532247 -0.0043679 +0.0423933 0.0901635 -0.00682346 +-0.0624126 0.150651 -0.0115734 +0.0373944 0.0505276 -0.00658166 +-0.0411461 0.162173 -0.0113613 +-0.065916 0.0662086 0.0305519 +-0.0289729 0.083488 0.0456837 +-0.000642523 0.0347913 0.0398677 +-0.0738147 0.065744 0.00631032 +0.00351431 0.0938625 0.0544725 +-0.0467733 0.12389 0.0269319 +0.0246632 0.123785 0.00595837 +-0.0715256 0.0958228 0.0413941 +0.00252922 0.0362636 0.0463395 +0.00948792 0.0963424 0.0500581 +0.0292035 0.0400739 0.0286474 +-0.0309481 0.0706991 -0.0284733 +-0.054091 0.152763 0.0215579 +0.0118527 0.105542 -0.0197545 +-0.0404793 0.0832528 0.0431634 +-0.0448438 0.0985036 -0.0215544 +-0.032014 0.0567822 -0.0123897 +0.00040853 0.0356817 0.00488121 +0.0447245 0.0861403 0.0231669 +-0.0426307 0.0338188 -0.00946517 +-0.0710495 0.141325 -0.00813095 +-0.0255896 0.182763 -0.0105092 +-0.0838169 0.107636 0.0253505 +-0.0796245 0.0859561 0.0353266 +0.0240034 0.0449703 0.0396985 +0.00450108 0.0716864 0.0560951 +-0.0676894 0.0750921 -0.0153176 +-0.0466572 0.0369109 -0.0172699 +-0.016529 0.0558872 0.0508401 +-0.087831 0.103641 0.0093887 +0.0272256 0.10745 0.0377741 +-0.0670064 0.0337953 0.0073865 +-0.0866888 0.0833263 0.0124872 +0.0152687 0.0779357 -0.0299953 +-0.0851819 0.152725 0.0105454 +0.000352424 0.0511166 -0.0306262 +0.0518495 0.0464359 0.0201911 +0.0554005 0.0553511 0.0254886 +-0.0886141 0.0928486 0.00844707 +0.0129712 0.130228 0.0115965 +-0.085549 0.104961 0.0233427 +0.0515991 0.0496316 0.0251833 +0.0131946 0.0878791 -0.0305989 +-0.0693376 0.131255 0.0489674 +-0.0660205 0.167997 -0.0305503 +-0.0666146 0.174697 -0.0480375 +-0.0293346 0.0347045 0.0427947 +-0.0553259 0.126836 -0.00601308 +-0.058583 0.0460291 0.0113967 +-0.0416277 0.0337441 -0.014735 +-0.0446642 0.0621749 -0.0132201 +0.0295862 0.120365 0.0134787 +-0.0697163 0.064282 0.022673 +-0.0805487 0.0789662 0.0306236 +-0.0787564 0.154933 0.00983696 +-0.0662707 0.14708 -0.0258685 +-0.0248167 0.0949702 -0.0267501 +-0.0407693 0.0826515 -0.0208197 +0.000514101 0.0346343 0.00952105 +-0.0533361 0.138123 0.0280776 +-0.0689277 0.115103 -0.00892086 +-0.0865224 0.0913375 0.0024428 +0.0232602 0.0790529 -0.0256674 +0.0296786 0.0679688 -0.0198342 +-0.0331127 0.123309 0.0239558 +0.0276403 0.118218 0.0284429 +0.00238303 0.0449286 -0.0261957 +-0.0928278 0.124236 0.0382657 +-0.0868685 0.11045 0.00936714 +-0.0254875 0.0959781 0.0438332 +0.0132252 0.0808221 -0.0308314 +0.035265 0.0591791 0.0368077 +-0.00944135 0.168135 -0.0197365 +0.0011864 0.12951 0.0259323 +-0.0139593 0.0967237 -0.0305143 +-0.00848922 0.0385737 0.0258802 +0.0562981 0.0619429 0.0011209 +0.0322546 0.0987343 -0.0145759 +-0.0268707 0.103016 -0.0234914 +-0.00655639 0.0384205 0.0209905 +-0.0296666 0.0774462 0.0418826 +-0.0626586 0.0676213 -0.0103966 +0.0374569 0.0904362 -0.0137042 +-0.0712181 0.161 -0.0439365 +0.0243668 0.0889213 0.0476805 +-0.0336134 0.0408899 -0.0298935 +-0.0404969 0.0916505 0.0425962 +0.0443454 0.0903358 0.0221636 +-0.0435232 0.163746 0.00524284 +-0.0649943 0.0623954 0.0235277 +-0.0613093 0.0593276 0.0181457 +-0.0717978 0.155398 -0.0409076 +-0.00868753 0.0584178 -0.0339256 +-0.0904383 0.119966 0.00529664 +-0.0601615 0.0333995 -0.00165181 +-0.0612252 0.0407891 0.0437895 +-0.0537348 0.0738508 -0.0172852 +-0.0709057 0.10512 -0.0125462 +-0.00333997 0.039253 0.0353398 +-0.0469903 0.145002 0.00194161 +-0.0250386 0.0659034 -0.0335362 +-0.023273 0.0382876 0.00502865 +0.0111228 0.0960826 -0.0257288 +0.0198113 0.0954368 -0.0230239 +0.038476 0.104075 -0.00282883 +-0.0843581 0.0883713 0.0286614 +-0.0930341 0.118841 0.0362969 +-0.0646767 0.146003 -0.0179612 +0.0284626 0.102127 0.0395666 +-0.0435018 0.113907 0.034675 +-0.0604863 0.0790224 0.042794 +-0.089042 0.112536 0.0205154 +-0.0524675 0.0344946 0.0345461 +-0.0848716 0.119101 -0.00207765 +-0.0120923 0.11442 -0.0172013 +-0.079929 0.151371 0.00121035 +-0.0920085 0.116136 0.0393096 +0.0361533 0.112569 0.0130564 +-0.0196629 0.125034 -0.00230889 +0.000499429 0.115573 0.0406664 +-0.0560183 0.147198 -0.00168648 +-0.0873616 0.110481 0.0113565 +-0.0416844 0.0636674 -0.0137203 +-0.0651889 0.153592 -0.00278678 +0.0471599 0.07398 0.0153485 +0.0404106 0.0873775 0.0321991 +-0.019434 0.184905 -0.0153275 +-0.0438294 0.0913555 -0.0224139 +-0.0527613 0.0797578 -0.020501 +-0.0314155 0.0651435 -0.021432 +0.00948509 0.0950229 0.0512669 +0.0346346 0.107297 -0.007625 +-0.0870053 0.0954387 0.00242783 +-0.0617312 0.142927 -0.00565867 +-0.0538929 0.14622 0.0244012 +0.0339044 0.115273 0.00366751 +0.049575 0.0693171 0.00251779 +-0.0861009 0.106274 0.00635995 +-0.00751182 0.075985 0.0578234 +-0.0761849 0.0933719 -0.0135017 +0.0266626 0.0672707 0.0437593 +-0.0314925 0.0932138 0.0444288 +0.0112937 0.0680868 -0.0307505 +-0.086045 0.141863 0.00720055 +0.000490707 0.111422 0.0424934 +-0.0516022 0.0502173 -0.00741774 +-0.0709386 0.131124 -0.00852217 +-0.0291841 0.125368 0.0164845 +-0.0012258 0.095852 -0.0315171 +-0.000697567 0.0641196 -0.0342689 +-0.0797379 0.0738711 0.0228323 +-0.0705682 0.0382102 0.00943236 +-0.0558807 0.102663 -0.0193944 +0.0262875 0.0835737 0.0468767 +-0.0206175 0.0364922 -0.0281092 +0.0306136 0.0779431 -0.0207534 +0.037492 0.0983062 -0.0097724 +-0.0861064 0.0806138 0.0174966 +-0.0488748 0.105594 -0.0196597 +-0.0499497 0.0724883 0.0409516 +-0.060435 0.131107 0.0389542 +-0.0197383 0.108898 -0.0213322 +-0.0328414 0.0943934 -0.0238538 +0.0071329 0.104451 -0.0211019 +-0.0904392 0.125398 0.00528343 +0.0579573 0.0676391 0.00414749 +-0.0890486 0.0915916 0.0214249 +0.0544885 0.0716156 0.00618127 +0.037936 0.0901639 0.0356574 +-0.0631289 0.155254 0.0269868 +0.0280038 0.120349 0.024295 +0.00325461 0.0697315 -0.0336623 +0.0198002 0.0768324 0.0515324 +0.0135718 0.0504901 0.0475195 +-0.0220331 0.041681 0.0538782 +-0.0322365 0.126297 0.00653811 +-0.020497 0.0855906 0.0563403 +0.0100844 0.123139 0.0340691 +-0.0917617 0.141982 0.0191718 +-0.00665267 0.0526646 -0.0325345 +0.0325469 0.0922927 -0.0176842 +-0.00490321 0.0383839 0.0141185 +0.0393963 0.049102 -0.00636122 +-0.0468295 0.0927337 -0.0216687 +0.0393484 0.0561243 -0.00568756 +0.0381042 0.0392738 0.00134927 +-0.02061 0.0653432 0.0492306 +-0.0644858 0.152894 -0.00250698 +0.0316363 0.118365 0.0113851 +-0.0625842 0.162383 -0.0563311 +-0.0126137 0.180121 -0.0236267 +-0.0562637 0.142432 0.0309288 +0.0389203 0.10838 0.0161659 +0.0468209 0.0708789 0.021127 +0.0153317 0.060873 -0.028643 +-0.067208 0.0447917 0.00368814 +-0.0638714 0.15469 -0.0385902 +-0.0624126 0.161536 -0.0416011 +-0.011049 0.124435 -0.00785173 +0.0143712 0.0493733 -0.0267066 +-0.0374862 0.0931566 0.0438456 +-0.0278525 0.0807805 0.0474761 +0.0573848 0.0670309 0.00292365 +-0.0304938 0.0960556 0.0449536 +0.0182602 0.127523 0.0192457 +0.0182204 0.080645 -0.0282763 +-0.00275795 0.0740872 -0.0359501 +-0.072697 0.155649 0.00759319 +-0.0857527 0.0792184 0.0135098 +-0.0604443 0.0456013 0.0296807 +-0.0528198 0.0927332 -0.0219739 +-0.0457202 0.0709417 -0.0164642 +-0.054497 0.0889964 0.0448823 +-0.0541353 0.147754 0.0254132 +0.05074 0.0503045 -0.00171178 +-0.0926993 0.124215 0.0352716 +0.00850767 0.0786 0.0556334 +-0.0141847 0.0405865 0.0511605 +-0.0500491 0.0345412 0.0367666 +-0.0744234 0.156022 0.0128056 +-0.0148381 0.0386367 -0.0157684 +-0.0896535 0.0916031 0.0184402 +-0.0279306 0.125506 0.00666413 +-0.0249827 0.0918474 0.0485489 +-0.0247746 0.0385687 -0.0102357 +-0.0718755 0.10648 -0.0114758 +0.0303733 0.115414 -0.00438737 +0.0390771 0.099844 -0.00681802 +-0.0601235 0.0447437 0.0425684 +0.0559507 0.0508031 0.00520531 +-0.087948 0.102288 0.00840013 +-0.0802939 0.0732789 0.00250413 +-0.00347452 0.114725 -0.0175669 +-0.0780015 0.155773 0.018849 +-0.0868392 0.0873072 0.00147849 +0.0114304 0.0346172 0.0371012 +-0.0154945 0.0925097 0.0555061 +0.0207547 0.10431 -0.0184628 +-0.0805113 0.153427 0.0283513 +-0.0133702 0.0343611 -0.0190243 +0.045363 0.0932019 0.00717004 +-0.0517619 0.079747 -0.0203928 +-0.011137 0.171308 -0.0197957 +-0.0797359 0.0706327 0.0105539 +-0.0435047 0.116629 0.0323741 +0.0461192 0.0786876 0.0190773 +0.0257679 0.0349257 0.0180133 +-0.0377436 0.127354 0.000111554 +0.0455391 0.0875946 0.0141649 +-0.0115776 0.0962625 -0.032007 +-0.0304054 0.0580102 -0.0194062 +-0.0519213 0.118323 0.0336042 +-0.0615165 0.15114 0.0355512 +-0.0268549 0.175688 -0.00910606 +0.0291872 0.0462618 0.034893 +-0.0828817 0.143196 0.00216401 +-0.0229243 0.0972075 0.044901 +-0.0420606 0.0344689 0.0332688 +0.00840712 0.0404044 -0.0234014 +-0.0584986 0.100161 0.0428821 +0.0267286 0.0521731 -0.0207566 +-0.0343564 0.043282 -0.028737 +0.035312 0.0840703 -0.0177861 +0.0167493 0.0874098 0.0506847 +-0.0706375 0.156126 0.0126907 +0.0395317 0.0596774 0.0306966 +0.0160357 0.0807986 0.0531419 +-0.0719071 0.105086 -0.0120336 +0.057752 0.0523416 0.0181873 +-0.0705862 0.166615 -0.0490027 +-0.069998 0.157611 -0.0031485 +-0.0629727 0.118457 0.044154 +-0.0098895 0.107351 -0.0224128 +-0.0668287 0.169972 -0.0351376 +-0.0538607 0.152062 0.0231076 +0.0286155 0.0795328 0.044942 +0.00747725 0.131195 0.0181386 +0.0525355 0.0678367 0.0261828 +-0.069983 0.033931 0.00665746 +-0.00449526 0.10588 0.044033 +-0.0647467 0.143415 -0.011401 +-0.0242451 0.0337053 -0.0224295 +0.0405945 0.102819 0.0221712 +-0.0253936 0.106122 -0.0223873 +-0.031866 0.126076 0.00521848 +-0.0903832 0.132413 0.0312232 +0.0270423 0.0648893 -0.0216756 +-0.0416036 0.125525 0.0208631 +-0.0642885 0.148287 -0.0250747 +0.043249 0.0705728 -0.00179391 +0.00750831 0.0772509 0.056126 +-0.0360471 0.125746 -0.0036679 +-0.0534999 0.0820142 0.0450601 +-0.0268076 0.0782799 -0.0366273 +-0.0630392 0.0336157 0.00836468 +0.00450283 0.0924607 0.0546761 +-0.0794816 0.0846149 0.0352279 +-0.0354976 0.116636 0.0319301 +0.0590094 0.0552651 0.0101755 +0.0177618 0.100614 -0.0224544 +0.0141872 0.0347155 0.0357788 +-0.0626395 0.0644043 -0.00619313 +-0.0472223 0.168222 -0.000777409 +-0.0688709 0.156258 0.0147705 +-0.00209707 0.130745 0.0203917 +0.0438165 0.0959355 0.0191615 +0.0272253 0.120021 -0.000250724 +-0.0623918 0.152158 -0.026581 +-0.0619803 0.153737 -0.02558 +-0.0110119 0.122536 -0.00980812 +-0.00845767 0.100229 0.0476033 +-0.053626 0.1255 0.0365054 +0.029243 0.0872327 -0.0208644 +-0.0561028 0.133503 -0.00512832 +-0.0536146 0.150855 0.0243962 +-0.0729449 0.0805494 0.0386997 +-0.0113093 0.0384672 0.00547553 +0.013929 0.0392001 0.0444158 +-0.0743245 0.179234 -0.0539852 +-0.0670834 0.168031 -0.0569976 +0.0269196 0.0418157 0.0333163 +-0.0261604 0.114813 -0.0155316 +0.054979 0.06227 -0.000302264 +0.0447631 0.0931576 0.00318223 +-0.028552 0.159576 0.000695282 +-0.0196334 0.0906851 0.0545345 +-0.0681661 0.173216 -0.0428508 +-0.0670035 0.166617 -0.0570134 +-0.00170857 0.0641356 -0.0344906 +-0.0302923 0.115032 -0.0157497 +-0.017789 0.0998203 0.0439009 +0.0575984 0.0711737 0.0088801 +-0.0559485 0.119826 0.0383628 +-0.0508832 0.106998 -0.0191626 +-0.0856518 0.096702 -0.000561949 +0.0433856 0.0475038 -0.0047769 +-0.0141839 0.177168 -0.0206609 +-0.0318261 0.0623615 -0.0184459 +-0.0694684 0.158126 -0.0509379 +-0.059088 0.0445923 -0.00517311 +-0.0680469 0.0887699 0.043444 +0.0413366 0.0588699 -0.00449648 +-0.0108613 0.16611 -0.0209706 +-0.0810695 0.111472 -0.000645954 +0.0236683 0.0535376 0.0428398 +-0.0525009 0.104252 0.0406803 +0.0178265 0.128119 0.0148069 +-0.0833287 0.0817012 -0.000498118 +-0.0582078 0.148218 0.0334722 +0.0469627 0.0735494 0.00823046 +0.0348898 0.0889372 0.0400127 +0.0544139 0.0478718 0.0102055 +-0.0519767 0.0343446 0.0277664 +-0.0526872 0.144684 0.0193835 +-0.0654577 0.0403952 0.0367257 +-0.0632766 0.146612 -0.0147592 +-0.0756638 0.0968147 0.0380937 +-0.0121766 0.169774 -0.0245851 +-0.0313173 0.115081 -0.0157968 +0.00550009 0.105744 0.0419393 +0.0170456 0.0808203 0.0528345 +0.00997537 0.129323 0.0247881 +-0.000565033 0.0348667 0.0451983 +-0.0170398 0.124093 -0.00535053 +0.0359746 0.112738 0.007259 +-0.0264982 0.112519 0.0362632 +-0.0108141 0.0841239 -0.038537 +-0.0464922 0.097353 0.0431423 +0.0456344 0.0820067 0.0201819 +-0.00765915 0.0388225 0.0294318 +0.00952232 0.057476 0.0527668 +-0.0114724 0.180094 -0.0295969 +-0.0324762 0.0778813 -0.0295332 +-0.0515001 0.0465582 0.0417907 +-0.0716564 0.0639047 0.0190638 +-0.00648988 0.10728 0.0440126 +0.0517118 0.048146 0.0235716 +-0.00973422 0.0712867 -0.0371391 +-0.0311873 0.0499402 0.0418672 +-0.0652548 0.0380623 0.0267185 +-0.0353491 0.0346157 0.0221204 +-0.00455763 0.115688 -0.0165869 +-0.0158711 0.0941172 -0.0338261 +-0.0307264 0.0510087 -0.0163552 +-0.0674749 0.0861001 0.0436947 +-0.00549495 0.0456998 0.0471564 +-0.0127624 0.0742651 -0.0384156 +-0.0667813 0.0354951 0.0323861 +-0.0650934 0.040468 0.0377689 +0.00949782 0.11825 0.0371477 +0.042476 0.0986857 0.0211679 +0.0134353 0.0833572 0.0528968 +-0.006265 0.0381462 0.0486516 +0.019505 0.108463 0.0397034 +-0.0531501 0.13113 0.0336749 +-0.0169066 0.174228 -0.0176024 +-0.0877346 0.144562 0.0345528 +-0.0620052 0.131132 -0.00795604 +0.00350354 0.0967589 -0.0284524 +-0.0379926 0.15214 0.00278328 +-0.0250008 0.0678945 0.0436439 +0.013488 0.120719 -0.0120957 +-0.0546814 0.0342953 0.0289953 +-0.0493523 0.128134 -0.0033313 +-0.00536457 0.0387134 0.026395 +-0.0301008 0.162274 -0.0148279 +-0.0520761 0.153139 -0.00390728 +-0.0312974 0.120401 0.0276066 +-0.072708 0.173064 -0.0373345 +-0.0634981 0.0847405 0.0443851 +-0.00748204 0.123738 0.0339317 +0.0398166 0.0726016 0.0329349 +-0.0204571 0.159751 -0.0120682 +-0.0398664 0.104215 -0.0203975 +0.006345 0.0351555 0.0445736 +-0.0295025 0.0974144 0.0445077 +-0.00148646 0.0489421 0.0507365 +-0.0158009 0.0813621 -0.039398 +-0.0661715 0.0383371 0.0290301 +-0.0520592 0.0517918 0.0296489 +0.0132683 0.0765435 -0.0305058 +0.0357248 0.113154 0.00859849 +0.0452751 0.0847797 0.0211588 +0.0408906 0.0942563 -0.00676992 +-0.0621992 0.16466 -0.0525894 +-0.0704991 0.101365 0.0396906 +-0.0514936 0.0959907 0.0439844 +-0.0738976 0.0662178 0.00410027 +-0.0308753 0.104365 -0.0222089 +-0.0454852 0.0411575 0.0440424 +0.0264018 0.0591975 -0.0228202 +-0.0372554 0.154082 -0.00855912 +-0.0104302 0.175693 -0.0238578 +-0.0581296 0.0583212 0.0178996 +-0.0237002 0.0610797 -0.032726 +-0.0366248 0.127943 0.00786237 +-0.00749367 0.0605601 0.0556586 +-0.0317091 0.0749949 -0.0294856 +-0.0617882 0.138121 0.0352393 +-0.0764283 0.117143 0.0518912 +-0.0476607 0.120291 -0.0131944 +-0.0617261 0.158412 -0.0335949 +-0.0794782 0.106106 0.0317497 +-0.00127622 0.127442 0.029403 +-0.0850735 0.0819457 0.0214598 +-0.088151 0.137836 0.0407884 +-0.0622605 0.152178 -0.0225796 +-0.0896207 0.132365 0.0409732 +-0.0392773 0.153597 0.0044688 +-0.0477636 0.0797421 -0.0198355 +0.0475024 0.06248 0.0300852 +0.0137309 0.0344041 -0.00431645 +-0.0864106 0.136323 0.00223079 +-0.0622483 0.0470201 0.00467011 +-0.0218601 0.0893132 0.0539604 +-0.0404866 0.0390699 -0.027317 +-0.0563767 0.0650155 0.0336358 +-0.022785 0.0727991 -0.0382731 +0.00745846 0.0952014 -0.0287983 +-0.0728877 0.143976 -0.0119757 +-0.0485361 0.130681 1.6802e-05 +-0.08227 0.0830732 0.0310042 +-0.0458007 0.0884477 -0.0220772 +-0.0674901 0.102816 0.040307 +-0.0295082 0.0987895 0.0437091 +0.0266247 0.0591987 0.0436528 +-0.0166425 0.0970062 0.0498004 +-0.0754488 0.151352 -0.0128993 +-0.0561187 0.04231 0.0196965 +-0.0125561 0.107483 -0.0218463 +-0.0258638 0.0987461 -0.0241399 +-0.0150968 0.0965608 -0.0303463 +0.0403869 0.0505617 -0.00671315 +-0.0618596 0.135275 0.0369058 +-0.00853806 0.120181 -0.0133625 +0.0152242 0.123558 0.0310525 +-0.0669104 0.112326 -0.011534 +-0.00121369 0.0389243 -0.000247464 +0.0599261 0.0581121 0.0171753 +-0.0104999 0.0842933 0.0575891 +0.0236959 0.120687 0.0298434 +0.0407626 0.105627 0.00616707 +-0.0204813 0.10165 0.0438784 +-0.0497999 0.0884036 -0.0217208 +0.0455191 0.0847794 0.00419259 +-0.0113995 0.128605 0.00179072 +-0.0808762 0.0733317 0.00350919 +-0.0634956 0.0804499 0.0432131 +-0.0737877 0.170302 -0.0290826 +-0.00649113 0.0718493 0.0579775 +-0.0445186 0.0533636 0.0386768 +0.0320623 0.104555 -0.0127247 +-0.0491177 0.138604 0.00740359 +0.0459251 0.0848195 0.0121712 +0.0423718 0.0547731 -0.00653415 +-0.0505603 0.0417939 -0.0107632 +-0.0551112 0.0477166 -0.00539308 +-0.0492183 0.150688 0.0111503 +-0.0868019 0.0886457 0.00149241 +-0.0414982 0.166749 0.00369508 +-0.00533161 0.123249 -0.0106624 +0.00612795 0.107304 -0.0203065 +0.023391 0.0605296 0.0460187 +-0.0778945 0.102117 0.0345146 +-0.0177322 0.108689 -0.0211068 +-0.0341359 0.168185 -0.0152479 +-0.0364811 0.0931828 0.0441998 +-0.0645148 0.15586 0.0250316 +-0.0133496 0.124356 0.0309811 +-0.053528 0.131291 -0.0047694 +0.0236875 0.0373106 0.0299772 +0.00806894 0.0972917 -0.0250353 +0.0518069 0.0518147 -0.00170668 +-0.0580149 0.0675718 0.0363481 +-0.0916942 0.124053 0.00727726 +0.0143227 0.0344255 0.0215932 +-0.0828034 0.0762521 0.011522 +-0.0523769 0.119775 0.034728 +-0.0380638 0.174118 -0.00995608 +-0.0515288 0.0559219 0.0167726 +-0.0665225 0.10009 0.04154 +0.0449219 0.0497223 0.0313654 +-0.00374083 0.069852 -0.0355987 +-0.0448162 0.12956 0.0195798 +0.00318984 0.0852564 -0.0341139 +-0.0901249 0.125637 0.04453 +0.0248625 0.12099 -0.00239034 +-0.0357073 0.03405 0.0117511 +-0.0461509 0.05879 0.0381434 +0.0389649 0.108275 0.00542368 +-0.0857362 0.141867 0.00617644 +-0.0755097 0.135846 0.0506323 +0.0384382 0.0954258 0.0328906 +0.00385238 0.131766 0.0125385 +-0.0277181 0.0382234 0.00237012 +0.0554262 0.0714159 0.00640835 +-0.0707971 0.168292 -0.02371 +-0.0131917 0.169758 -0.0239616 +-0.0344904 0.0661905 0.0406967 +-0.00154364 0.130277 0.00186507 +-0.0647696 0.148087 -0.0261392 +-0.0577571 0.0334518 0.000595927 +-0.0334995 0.0618586 0.0392638 +-0.0657123 0.171986 -0.0448274 +-0.0254896 0.049863 0.0466034 +-0.0207287 0.058287 -0.0332963 +-0.040488 0.088839 0.0428058 +0.00826686 0.0681716 -0.0316571 +-0.0382076 0.0431174 -0.0263315 +-0.0192007 0.0392753 0.0392298 +0.0446778 0.0701888 0.00161208 +-0.0681688 0.0340999 0.0104427 +-0.0891956 0.099693 0.0183885 +0.00250408 0.0856622 0.0573274 +0.00673484 0.0364109 -0.0131882 +-0.0273112 0.0917698 0.0451953 +0.0360152 0.072737 0.038003 +-0.0174841 0.0910963 0.0554741 +-0.0882831 0.114383 0.0443189 +-0.0562701 0.0534697 0.00668599 +0.0184737 0.104403 0.0439338 +0.0591195 0.067343 0.0203999 +-0.0464971 0.107057 0.0400682 +0.0224712 0.125479 0.00796738 +-0.00281596 0.0896133 -0.0355773 +-0.0892259 0.113441 0.0323782 +-0.0532781 0.0476794 0.0246524 +0.00120832 0.0811183 -0.0353756 +-0.0820812 0.0748515 0.0115294 +-0.0344414 0.153644 0.000910386 +-0.0915313 0.147463 0.0171482 +-0.0778811 0.12224 -0.00662917 +0.00275904 0.130985 0.0207146 +0.0333375 0.115599 0.0220283 +-0.0925663 0.116874 0.0234322 +-0.0461657 0.168264 0.000998904 +-0.0608088 0.148246 0.0367611 +-0.0740333 0.13404 0.0510058 +0.046183 0.0806404 0.0141758 +-0.0177485 0.0700027 -0.0382786 +-0.05252 0.0490121 0.0379722 +-0.0142459 0.168321 -0.0155387 +-0.0894247 0.0996886 0.0153976 +-0.0654783 0.0861634 0.0444498 +0.0323217 0.116577 0.0230638 +-0.0676059 0.141897 -0.00935244 +-0.0514978 0.10289 0.0412322 +-0.00575874 0.0741425 -0.036638 +-0.0913439 0.11607 0.03131 +-0.0313824 0.0877015 -0.0265568 +0.0373688 0.102607 -0.00785264 +-0.0106393 0.169838 -0.0190633 +-0.0716387 0.0675256 0.0265031 +-0.0396636 0.0340515 0.0270767 +-0.0779219 0.0717107 0.00150831 +0.0451585 0.0670735 0.000845212 +-0.045692 0.126639 0.0237789 +-0.0914166 0.131046 0.0292353 +-0.0845601 0.0832447 0.0254813 +-0.00465613 0.0540645 -0.0324247 +-0.0573264 0.15429 0.0261567 +-0.0776607 0.0817583 -0.0102119 +-0.0614708 0.165833 -0.0590275 +-0.0866007 0.129822 0.0479412 +-0.0751026 0.155922 -0.00200459 +0.0292911 0.0364248 0.021021 +0.0168648 0.0958851 -0.0235234 +0.0566532 0.0608369 0.0255651 +-0.0447794 0.128887 0.00190497 +-0.024583 0.0635737 0.0419612 +-0.0534745 0.0360014 0.0464895 +-0.0488506 0.0999451 -0.0218934 +0.00224668 0.0740592 -0.0351433 +-0.0223056 0.126998 0.0101726 +-0.0907871 0.14608 0.0151486 +-0.0506704 0.0680761 0.0375114 +-0.0689054 0.113678 -0.00975253 +-0.032497 0.0917926 0.0443017 +0.0282492 0.102359 -0.0164093 +0.0375206 0.0540908 0.0314327 +-0.00566586 0.0555015 -0.0328252 +-0.0896969 0.139298 0.033185 +-0.0707473 0.127025 0.0521985 +-0.0455052 0.162274 0.00622301 +-0.0188243 0.0868874 -0.0382929 +0.00890069 0.0988547 -0.0226736 +0.0103725 0.130878 0.016344 +-0.0568151 0.142191 -0.00256359 +-0.0576833 0.0660478 -0.00944709 +-0.0394154 0.128541 0.00978788 +-0.0112757 0.0392934 0.0501019 +-0.0875442 0.11045 0.0133403 +0.0108543 0.128955 0.0251156 +-0.0306705 0.0692801 -0.0274547 +0.0193368 0.0460939 -0.0219388 +0.0280428 0.0928381 -0.0202889 +0.0101954 0.0879315 -0.0314901 +-0.0425303 0.153621 0.00682011 +0.046342 0.0671736 0.000660587 +0.0133755 0.0508647 -0.0275026 +-0.0815821 0.0803018 0.0303913 +-0.059075 0.137911 -0.00597298 +0.0419587 0.0958192 0.0261617 +0.0444321 0.0482656 0.0306384 +-0.0444939 0.0519693 0.038747 +0.0141421 0.107244 -0.018655 +-0.0258198 0.0880859 -0.0357275 +0.0511643 0.0525875 0.0281258 +-0.0838035 0.0884157 -0.00457068 +-0.0075843 0.111951 -0.0206051 +0.020155 0.0344845 0.00437508 +-0.0141697 0.038751 -0.00641336 +0.0160515 0.039741 -0.0214719 +-0.0627129 0.161593 -0.024579 +-0.0329051 0.0359381 0.0496011 +-0.0738068 0.0892836 -0.0151913 +0.0299737 0.0934986 -0.0189639 +-0.0618436 0.129703 0.0404325 +0.0117043 0.110341 -0.0188996 +0.013386 0.0576661 0.0508541 +-0.0636966 0.117092 0.044917 +-0.0634835 0.0890243 0.0452141 +-0.0874124 0.136542 0.0428952 +-0.0391888 0.168166 -0.0121398 +0.0376532 0.101954 -0.00791483 +-0.0708338 0.143978 -0.0149516 +-0.0135013 0.0687469 0.0541774 +-0.0671166 0.134015 0.0451603 +-0.0645196 0.148285 0.0383203 +-0.0216796 0.18469 -0.0188168 +-0.00148992 0.070365 0.0570874 +-0.0291401 0.0875323 -0.0325902 +0.0251009 0.122815 0.00327552 +-0.0111221 0.0980696 -0.0279124 +-0.0635024 0.0918143 0.0447779 +-0.0887995 0.0901451 0.00746775 +0.0164935 0.0962515 0.0477962 +0.046272 0.0806446 0.00718674 +0.038459 0.094268 -0.00974763 +0.0100793 0.0873522 0.0550703 +0.0183745 0.0874107 0.0495162 +-0.0547819 0.0840722 -0.0215429 +0.0249849 0.0576546 -0.0237943 +0.0262469 0.11849 0.0293617 +0.0187045 0.0462587 0.0425837 +-0.0433933 0.123406 -0.0104784 +-0.0615139 0.0385816 -0.00827445 +-0.0234882 0.104381 0.0428298 +0.0334188 0.115464 0.00204907 +-0.0251305 0.0810774 0.0532367 +-0.0661661 0.0431586 -0.00127362 +-0.0689806 0.138464 -0.0078252 +0.0324954 0.0484967 0.0321634 +-0.0650217 0.154743 0.00396393 +-0.0615004 0.0818818 0.0435978 +0.0289072 0.10744 0.0367037 +-0.0720417 0.156813 -0.0379146 +-0.0232564 0.171248 -0.0127378 +0.0211195 0.109025 -0.0155233 +-0.0668614 0.150018 -0.036632 +0.0204284 0.122662 -0.00423372 +-0.0628194 0.162004 -0.0576316 +-0.0641553 0.168532 -0.0413683 +0.0278158 0.0649933 -0.0208789 +-0.0788364 0.0742331 0.0262211 +0.0527925 0.0505032 0.000257908 +-0.0738772 0.107826 -0.00969763 +-0.0819791 0.08171 0.030761 +-0.0904343 0.136488 0.021207 +-0.0584473 0.145323 0.0330944 +0.00225674 0.0697235 -0.0336823 +-0.0228155 0.081267 -0.0385568 +0.0290261 0.106116 0.036871 +0.0121361 0.105839 -0.0196306 +-0.0365486 0.12125 -0.0102225 +-0.070219 0.146984 -0.026659 +0.00749947 0.122404 0.035106 +-0.0234912 0.107132 0.0414501 +0.0116034 0.0355849 -0.021581 +-0.0896067 0.0902304 0.0134498 +0.0274272 0.0781922 -0.0230908 +-0.0228318 0.114095 -0.016802 +-0.0510675 0.0598803 0.0316706 +0.0525281 0.0730706 0.0188626 +-0.0503624 0.128323 -0.00347306 +-0.0758088 0.0906346 -0.0139136 +0.0428831 0.0902351 0.0261862 +-0.00171604 0.131316 0.0104838 +-0.0845537 0.143232 0.00516668 +0.0183451 0.0551894 -0.0280076 +-0.0914715 0.128331 0.0382421 +-0.0654644 0.148292 0.0388168 +0.025254 0.122206 0.00192061 +0.0102154 0.0850922 -0.0315035 +-0.0913446 0.12833 0.0392393 +-0.0282035 0.125211 0.0168448 +0.0435793 0.0677809 0.0261624 +-0.014506 0.114132 0.0394731 +0.0146525 0.0927004 0.0511905 +-0.0777124 0.0900603 0.0375253 +0.0426104 0.0723991 0.0281081 +-0.0165087 0.10859 0.0417725 +-0.0293809 0.118905 0.0298455 +-0.0747355 0.161794 -0.0126957 +-0.0194977 0.103001 0.0433214 +-0.0774975 0.111156 0.045792 +-0.0235187 0.0551838 0.0425567 +0.00826699 0.0696219 -0.0321852 +-0.0671246 0.042281 0.0101216 +0.0443577 0.0547836 -0.00632411 +-0.0771697 0.152833 -0.00289126 +-0.0455143 0.0335109 0.00302189 +-0.0154906 0.0744572 0.0558178 +0.0390604 0.0575755 -0.00514174 +-0.0300453 0.0861604 -0.0315778 +0.0243112 0.0999667 -0.0198415 +0.0337476 0.0534432 0.0345417 +-0.0207506 0.0685447 -0.0377382 +-0.0883977 0.0983242 0.022387 +-0.043533 0.162269 0.00566221 +-0.0580451 0.047259 0.00941407 +-0.0435244 0.129538 0.0127129 +-0.0129572 0.163516 -0.016687 +-0.018238 0.0985224 -0.0244062 +-0.0468429 0.132502 0.00641278 +-0.012834 0.128656 0.00349339 +-0.00949586 0.0938956 0.0554931 +0.0405174 0.0829825 -0.0107762 +-0.0306755 0.0409906 0.0514223 +-0.0887381 0.139163 0.03848 +-0.0639163 0.105371 -0.0163736 +0.0319159 0.0876168 0.0427503 +-0.0165553 0.128252 0.0064647 +-0.0695817 0.168848 -0.0261289 +-0.0702082 0.141157 0.0460159 +0.0179624 0.0489942 0.0433049 +0.0363477 0.102053 0.0316389 +-0.029898 0.0385093 -0.0112051 +-0.0687619 0.169445 -0.0540038 +-0.0726588 0.143932 -0.0130219 +0.0162319 0.0849386 -0.0291053 +-0.0620358 0.136971 -0.00707833 +0.0166416 0.0740317 0.0522091 +0.0213347 0.0607071 -0.0262571 +-0.0576194 0.143675 -0.00218012 +-0.0913297 0.148826 0.016141 +-0.0751782 0.152724 -0.0149145 +-0.062838 0.153641 -0.0115615 +-0.0579073 0.152669 0.031812 +-0.0401847 0.173392 -0.00391542 +0.0166876 0.0475243 0.0432195 +-0.0393167 0.0432044 -0.0243027 +0.00658649 0.0945677 -0.0301242 +-0.00883076 0.130134 0.0179537 +-0.0248377 0.0867614 -0.0367865 +0.0135609 0.0343729 -0.0176058 +-0.0367327 0.0739624 -0.0182558 +-0.0891756 0.088886 0.0174542 +-0.0869535 0.131154 0.0468504 +0.00298644 0.131511 0.0079308 +-0.0116778 0.0541503 -0.0336719 +-0.00992638 0.128404 -5.81123e-05 +-0.0544374 0.131586 -0.00508481 +-0.0384968 0.104212 0.0394832 +-0.074384 0.0726496 -0.00763941 +-0.0530656 0.150158 -0.00286677 +-0.0166345 0.0465837 -0.0289175 +0.0567453 0.0707667 0.0204115 +0.0381172 0.0659142 -0.0117557 +0.00256341 0.131601 0.00920655 +0.0391019 0.106936 0.00217583 +-0.0480338 0.0685335 0.039429 +-0.0794876 0.0745597 -0.0035364 +-0.0248661 0.101609 -0.0237851 +-0.0647841 0.0448471 0.00913709 +-0.0446647 0.117939 -0.0147658 +-0.0152743 0.180101 -0.0270399 +-0.0859599 0.106341 0.0203569 +0.0111873 0.0893276 -0.0308633 +-0.0922566 0.126816 0.00926569 +-0.0618365 0.166237 -0.0545929 +0.0181719 0.0795251 0.0527143 +-0.0684871 0.120374 0.0527878 +-0.0476953 0.0723623 -0.0159721 +-0.0472614 0.125357 0.0280089 +-0.0494961 0.113894 0.0347794 +-0.0374992 0.0847101 0.0439351 +-0.0404923 0.0620428 0.0412639 +0.0609826 0.0637492 0.0111528 +-0.0849504 0.136625 0.0461206 +0.0337121 0.104741 0.0331059 +-0.00864132 0.0907031 -0.0362798 +0.00988706 0.0373676 0.0450724 +-0.024511 0.0782394 0.0527049 +-0.0716377 0.0368114 0.00909586 +-0.0832904 0.111663 0.0440643 +-0.0156647 0.109623 -0.0201068 +-0.0766606 0.163806 -0.0339802 +0.0165486 0.0631544 0.0502063 +-0.0753023 0.155004 0.00375308 +0.039051 0.0380783 0.00858362 +0.0420573 0.0943632 -0.00379153 +-0.0924935 0.124207 0.0332695 +-0.0745678 0.155931 0.022959 +-0.0348878 0.0336855 0.0122448 +-0.0755817 0.14859 -0.0148673 +-0.0712419 0.0628661 0.0147709 +-0.0722512 0.170824 -0.0490235 +-0.044945 0.146638 -0.00064718 +-0.0327132 0.0383899 -0.00426549 +-0.0656128 0.0626699 -0.00283823 +-0.0615924 0.156857 -0.0275883 +-0.0306139 0.051126 0.0398517 +-0.0552831 0.0478834 0.0286656 +-0.0825962 0.0869865 -0.00556699 +-0.0743429 0.0777095 0.0359578 +-0.00912413 0.125328 0.0309758 +-0.0877256 0.112462 0.0226926 +-0.0624682 0.148372 0.0373168 +-0.0772099 0.0954309 0.0368548 +-0.0657805 0.04031 0.0356744 +0.0390337 0.102562 -0.00454148 +-0.0218167 0.0770677 -0.0388569 +-0.013694 0.165443 -0.0129401 +-0.0242656 0.0588495 -0.0313753 +-0.0201769 0.16108 -0.00474531 +-0.0746468 0.151291 -0.0288803 +-0.0870878 0.147265 0.0324302 +-0.0667973 0.0823343 -0.0181512 +-0.0894818 0.137913 0.0311948 +0.0410937 0.100015 0.0241739 +0.0260496 0.0420955 0.0353242 +-0.0497977 0.134944 0.0250398 +-0.0824554 0.0748386 0.00652396 +-0.0420037 0.0449364 -0.0183222 +-0.00587956 0.107379 -0.0226761 +-0.0298783 0.0719759 -0.0315267 +-0.0649016 0.118019 -0.00923352 +-0.0461849 0.131841 0.0072241 +-0.0384968 0.066293 0.0418062 +-0.0375363 0.128085 0.0104763 +-0.0684218 0.173931 -0.0443685 +-0.0921191 0.131045 0.0262423 +-0.0269088 0.0720784 0.0425891 +-0.0318614 0.109962 -0.0183828 +-0.0576346 0.139576 0.0324737 +-0.0582272 0.151065 0.033498 +-0.0824187 0.0788859 0.0267668 +-0.0386191 0.0474546 -0.0163861 +0.0266281 0.0902434 0.0456585 +-0.00674435 0.0340208 -0.0192827 +0.0167681 0.0348096 -0.0116543 +0.00555478 0.102979 0.0445124 +0.0101351 0.0346886 0.0403762 +-0.0715049 0.147007 0.0421623 +0.0583177 0.0551766 0.00716644 +-0.0774854 0.142838 0.0458543 +-0.0630637 0.0343143 0.0307056 +-0.00979508 0.122843 -0.0101629 +-0.0497184 0.0723081 -0.0156401 +0.0463136 0.0660623 -0.000202599 +-0.0455839 0.0490621 -0.0101677 +-0.0746807 0.110131 0.0436879 +-0.0107636 0.0728162 -0.0377336 +-0.0155087 0.105817 0.0426846 +-0.0419504 0.0338103 -0.0111665 +0.0243299 0.0661738 -0.0239819 +0.0195943 0.041435 -0.0196763 +0.0590873 0.0566489 0.0191831 +-0.0828908 0.120639 -0.00384458 +0.0299951 0.111426 0.0329993 +-0.0685146 0.033856 -0.00470573 +-0.0492135 0.140151 0.00839688 +-0.0489146 0.121146 0.0309679 +-0.00870224 0.0627847 -0.0356447 +-0.086772 0.140601 0.0407491 +-0.0293203 0.0381642 0.0309659 +-0.0330003 0.0497903 -0.0153502 +-0.0425517 0.127843 -0.00110505 +0.0328934 0.0381571 -2.41096e-05 +-0.0525195 0.0426931 0.0456595 +0.021748 0.0349954 0.0225893 +0.00827474 0.123868 -0.00945393 +-0.029563 0.0377844 -0.01791 +-0.0370175 0.163827 -0.00102436 +-0.0664999 0.101466 0.0412188 +0.0064937 0.048929 0.05087 +0.0287604 0.121079 0.0103057 +0.0252285 0.11379 -0.0106368 +-0.0599544 0.0581084 0.014112 +-0.062196 0.154993 0.0273195 +-0.0901963 0.136492 0.0222062 +0.0243441 0.0535282 0.0420575 +-0.0779175 0.0954136 0.0361479 +0.0233436 0.112218 -0.0129499 +-0.0707139 0.0721775 0.0349299 +-0.0640765 0.0658063 0.0313225 +-0.012499 0.112778 0.04085 +0.00184795 0.0345666 0.017115 +-0.0706528 0.0621972 0.0100461 +-0.0885678 0.139164 0.0111992 +-0.0188224 0.0347384 0.0467634 +-0.0867734 0.103584 0.00638913 +0.0585617 0.0692487 0.0195963 +-0.0597919 0.0868174 -0.0202685 +0.00547344 0.0964656 -0.0281399 +0.0206378 0.123881 0.0271063 +-0.0699457 0.0641869 0.00125597 +-0.0625615 0.156051 0.017016 +-0.0417544 0.0339701 -0.0279962 +-0.0649712 0.129694 -0.00875388 +-0.0862104 0.107661 0.0103578 +-0.0932554 0.121405 0.0112928 +-0.0354965 0.0533413 0.0383699 +-0.0288938 0.0821008 0.0456772 +-0.0504899 0.115263 0.0337703 +0.0589314 0.0635744 0.022157 +-0.0186162 0.0391183 0.0377018 +-0.00206852 0.0346139 0.0433223 +-0.0274904 0.108416 0.0392888 +0.0114791 0.0353993 0.0291949 +0.0231094 0.1217 -0.00313916 +-0.0577454 0.0767844 -0.0191155 +-0.00909377 0.175718 -0.0267745 +0.0517415 0.0673755 0.000499527 +-0.0128851 0.164546 -0.0183954 +-0.0673534 0.170861 -0.0570311 +-0.0929853 0.13101 0.0212315 +0.0234643 0.0889079 0.0481435 +-0.088271 0.126713 0.00126975 +-0.0657845 0.0809163 -0.0181411 +-0.0623578 0.139562 0.0361839 +0.0537838 0.0608937 0.0284739 +-0.0417084 0.0681156 -0.0160245 +0.0391698 0.101249 -0.00580082 +0.0314319 0.059214 0.0400505 +-0.0609535 0.135292 0.0364528 +-0.000337321 0.0338454 -0.0216338 +-0.0194278 0.169807 -0.0142312 +-0.0348191 0.0886631 -0.024431 +0.0343015 0.0925788 -0.0159761 +-0.0484766 0.166987 4.90724e-06 +-0.0665297 0.149283 -0.0337543 +-0.0801184 0.0845811 0.0344552 +-0.0728936 0.109289 -0.00959602 +-0.0631344 0.177233 -0.0567528 +-0.0405211 0.16525 0.00379284 +-0.0231365 0.166757 -0.0180638 +0.00733914 0.0539337 -0.0304234 +-0.0448725 0.105637 -0.0203982 +-0.0120489 0.177175 -0.0228491 +-0.0935183 0.117402 0.0193034 +-0.0218743 0.178667 -0.0141782 +0.0371376 0.0728556 -0.0127896 +0.00251304 0.0828672 0.0572444 +-0.0659599 0.128235 -0.00885739 +0.0572369 0.0523165 0.0201815 +0.00234985 0.1177 -0.0168004 +0.0136405 0.0534411 0.0494225 +0.0440001 0.081852 -0.00180195 +-0.0352323 0.0337248 0.00491425 +-0.0852903 0.152844 0.0238067 +-0.0841107 0.0938743 -0.00455389 +-0.0327087 0.156604 0.00170747 +-0.0136478 0.0384232 0.0249573 +0.0203982 0.126887 0.0157559 +-0.0256832 0.0878506 0.050771 +-0.0859766 0.117044 0.000228439 +-0.0275277 0.0660102 0.0388181 +0.0386899 0.0941002 0.0332667 +-0.0072203 0.0994662 -0.0253456 +-0.0387089 0.068094 -0.0155018 +-0.0447414 0.149173 0.00704529 +-0.037003 0.126393 0.0195465 +-0.0691196 0.118603 0.052746 +0.0126876 0.0376693 0.0445214 +0.00235997 0.0496442 -0.0301148 +-0.0852421 0.0804972 0.00551565 +-0.0315104 0.105689 0.0403731 +0.045017 0.0410596 0.00889517 +-0.0645229 0.0335011 -0.00443342 +-0.0237309 0.092173 -0.0338912 +-0.0696939 0.158144 -0.0499358 +-0.00649106 0.116924 0.0392844 +0.0203532 0.0579488 -0.0270415 +0.0454669 0.0761165 0.0216249 +-0.0776599 0.103464 0.0342449 +-0.0732 0.113624 0.050147 +-0.0760799 0.147225 -0.00886324 +0.0300894 0.118197 0.0250757 +0.0134949 0.103141 0.0462202 +-0.0890108 0.142042 0.0341592 +-0.0804084 0.0719394 0.00662383 +-0.0695221 0.143851 -0.0150076 +-0.0608967 0.108264 -0.0166058 +0.024601 0.0954054 -0.0210454 +-0.022965 0.108799 -0.0212234 +-0.0611808 0.060116 0.0210055 +0.0302694 0.104198 -0.014346 +-0.0556068 0.119255 -0.0119973 +0.0521834 0.0709362 0.0231159 +-0.0314011 0.159502 0.00180977 +-0.0393243 0.172677 -0.00992732 +-0.0273795 0.0859709 -0.0356537 +-0.0158141 0.084157 -0.0391976 +-0.0748503 0.150353 0.0378605 +-0.0898842 0.145774 0.0282412 +-0.0830081 0.135296 -0.00152379 +0.00239673 0.0404932 -0.0244502 +0.0427154 0.0482477 0.0316879 +-0.0266384 0.166791 -0.00886205 +0.0140069 0.0433574 0.0445182 +-0.0554949 0.102938 0.0419937 +-0.0535677 0.121244 0.0365515 +-0.091536 0.147482 0.0221363 +-0.0926871 0.118696 0.0103064 +-0.0944412 0.121464 0.0182801 +-0.0562674 0.0521079 0.00770249 +0.0268173 0.0563551 0.0421393 +0.0126767 0.102031 -0.0220157 +-0.0753389 0.14722 -0.0108566 +-0.0856054 0.119006 0.0487694 +-0.0533885 0.122494 -0.00938247 +0.0431078 0.0438619 0.0262578 +-0.0605291 0.0337655 0.01588 +-0.0126252 0.045057 -0.0279244 +-0.045035 0.131096 0.00921538 +-0.0885624 0.127032 0.0457658 +0.040497 0.0569389 0.0314027 +0.0364907 0.111851 0.00455337 +-0.0834729 0.144593 0.00316535 +0.0433385 0.080395 -0.00378638 +-0.0318429 0.0944059 -0.023975 +-0.0484939 0.0747239 0.0424157 +-0.0110217 0.175722 -0.0231509 +0.000137104 0.104495 -0.0221519 +-0.0521218 0.0553341 0.025863 +0.0390662 0.103279 0.0267541 +-0.0365034 0.105591 0.0389607 +0.0135363 0.0347941 0.0319644 +-0.0857201 0.113489 0.0456231 +-0.0225205 0.114038 0.037332 +-0.0424861 0.107068 0.0398635 +-0.0498903 0.161248 0.00701432 +-0.0261589 0.0660162 -0.0325063 +-0.061193 0.167783 -0.0585846 +-0.0153476 0.186173 -0.0245951 +-0.0220085 0.0386415 -0.0116054 +-0.0746541 0.0660086 0.0112783 +-0.0857094 0.107615 0.00636703 +-0.000110081 0.106984 -0.0213197 +-0.0293764 0.039648 0.0531021 +0.028771 0.0495105 -0.0157345 +-0.0168713 0.184583 -0.0192109 +-0.0517714 0.14934 0.0163945 +-0.059475 0.0776368 0.0428908 +-0.0109445 0.0385116 0.00732721 +-0.0636281 0.177112 -0.0556446 +-0.074576 0.0901236 0.0400162 +0.0161292 0.0604031 0.0495734 +0.022982 0.114019 0.0351746 +0.0259399 0.098006 -0.0197455 +-0.0097165 0.0698878 -0.0366754 +-0.069561 0.132665 0.0486469 +-0.0530949 0.0350628 -0.012244 +-0.0680607 0.153823 -0.0498908 +-0.0135439 0.125168 0.0294386 +-0.00340282 0.12679 -0.00651364 +-0.0391911 0.149452 0.000405422 +-0.0764653 0.177807 -0.0519745 +-0.0287178 0.121983 -0.00700749 +-0.0619687 0.155933 0.0215789 +-0.0411389 0.0448599 -0.0213399 +-0.0553956 0.0560936 -0.00341211 +-0.0930152 0.116045 0.0163142 +-0.0538732 0.0634525 0.0320061 +-0.0265911 0.123944 0.0203778 +0.0521155 0.073659 0.0142686 +-0.0733241 0.158247 -0.0319134 +-0.0109096 0.167211 -0.0224966 +-0.0387656 0.0459335 -0.0222844 +-0.0438685 0.104239 -0.0209341 +-0.0404958 0.0464911 0.0408136 +-0.0546568 0.133929 0.033262 +-0.0875345 0.0914089 0.00446769 +0.0213976 0.0505253 -0.0237217 +0.00734362 0.0524803 -0.0298755 +0.0300864 0.0686462 0.0416997 +0.0343005 0.110021 0.028645 +0.0541591 0.0648613 0.0272743 +-0.0267629 0.124714 0.018819 +-0.084006 0.130916 -0.00261237 +-0.032464 0.126152 0.0167563 +0.0411083 0.0816433 -0.00876203 +0.0569799 0.0538694 0.0224893 +-0.0104937 0.0502816 0.0505289 +-0.0809192 0.0899278 0.0336764 +-0.0706578 0.10688 0.0373417 +-0.0634399 0.160562 -0.0195565 +-0.0491873 0.165537 -0.00392571 +-0.0506864 0.137014 0.00141591 +0.0414602 0.0985756 -0.00280597 +-0.0725308 0.161023 -0.0389355 +-0.0593508 0.0339548 0.0212701 +-0.0724089 0.155986 0.0106072 +0.0454654 0.0819915 0.0211715 +-0.0231673 0.169718 -0.0195033 +0.014393 0.129494 0.0163965 +-0.0185111 0.0499058 0.0467842 +-0.0180519 0.128104 0.0102643 +-0.0161793 0.169751 -0.0220442 +0.0178585 0.0957539 -0.0234025 +0.0277062 0.122023 0.0113437 +-0.0356288 0.0533886 -0.010251 +-0.00862621 0.0394649 0.0376552 +-0.0708134 0.0624523 0.0134268 +-0.0338786 0.104305 -0.0212068 +-0.0471517 0.160622 -0.00754132 +-0.0925898 0.124211 0.034269 +-0.0584616 0.0717087 0.039721 +-0.0146591 0.0511639 -0.0318396 +-0.0607891 0.0597911 0.00342454 +0.0222547 0.0819067 -0.0260667 +0.0230644 0.109683 -0.0142211 +-0.0844174 0.110829 0.0409213 +-0.0687289 0.0779401 -0.0161359 +-0.0752643 0.0941545 0.0391883 +-0.0876028 0.105024 0.0163629 +-0.077844 0.114867 -0.00473455 +-0.0325542 0.0341026 -0.0206973 +-0.0589604 0.0340153 0.0230639 +-0.00211759 0.125578 0.0320366 +0.0126989 0.0342761 -0.010037 +0.013184 0.0740073 0.0542309 +-0.0477691 0.130137 0.000614804 +-0.0718381 0.155405 -0.0399144 +-0.0622568 0.148888 -0.00391238 +-0.0159434 0.0385311 0.027994 +0.0373005 0.103362 0.0294506 +-0.02276 0.093942 -0.0316991 +-0.0520122 0.14159 0.0203687 +-0.082015 0.110886 0.0432009 +-0.0745865 0.0720219 0.0307608 +-0.00953059 0.096141 -0.0318625 +-0.0495789 0.046041 -0.00928879 +-0.00423381 0.0382248 0.0479393 +-0.0382126 0.169665 -0.0124129 +0.0318584 0.0981802 0.0392129 +-0.0314643 0.126198 0.0141678 +-0.0622546 0.152185 -0.0195775 +-0.0424907 0.0831788 0.0422885 +-0.0205087 0.18589 -0.0190712 +-0.00369262 0.0366899 0.0482034 +-0.0197122 0.0583602 -0.0339067 +-0.0106092 0.0434444 -0.026227 +0.0245832 0.0562081 -0.0237654 +-0.0891532 0.121635 0.0465292 +-0.0629277 0.161435 -0.0535909 +0.047295 0.0711844 0.0046334 +-0.0417522 0.0782987 -0.0193601 +-0.000496629 0.0828922 0.0574621 +-0.0320822 0.0335961 -0.0276233 +-0.0571072 0.154583 -0.000558004 +0.0584978 0.0634546 0.0229811 +-0.0581231 0.149655 0.0336366 +-0.0619701 0.160031 -0.0245798 +-0.0800787 0.0980611 0.0339873 +-0.0219645 0.0403079 0.0539432 +-0.0699065 0.110817 -0.0106385 +-0.0725366 0.154032 -0.0369032 +-0.0224974 0.0498852 0.046496 +0.00485548 0.0339942 -0.0207847 +-0.0614772 0.0338873 0.0155724 +0.00946392 0.0472926 0.0483305 +-0.019502 0.109944 0.0407387 +-0.0539465 0.0486826 0.012352 +-0.0355502 0.175589 -0.0109785 +-0.0784832 0.155333 0.0128492 +0.0266099 0.122879 0.0123678 +-0.0472066 0.134653 0.0142236 +-0.0078767 0.103255 -0.023393 +-0.0504989 0.101536 0.0421291 +-0.0266231 0.0450263 -0.028096 +-0.0916243 0.131038 0.0282288 +0.0125747 0.0445985 0.0442752 +-0.0196537 0.0480066 -0.0290701 +0.0172432 0.108764 -0.0171862 +-0.0295071 0.0635474 -0.0264265 +-0.0620034 0.040777 0.0431481 +-0.00243593 0.113721 -0.0185019 +-0.0630177 0.135513 -0.00745136 +0.0433285 0.0874073 -0.00479371 +-0.0154888 0.0688106 0.054717 +-0.0882956 0.116235 0.0458325 +-0.0494969 0.0946343 0.044743 +-0.0619637 0.147832 -0.00431835 +-0.092816 0.124239 0.0392636 +-0.0629366 0.147438 -0.0146052 +-0.0782928 0.163856 -0.0319501 +-0.064798 0.174285 -0.0502768 +-0.0112267 0.038611 -0.000125945 +-0.0820175 0.148708 0.00217249 +0.0401192 0.0979552 0.0282751 +-0.0877344 0.132461 0.0447656 +-0.050513 0.143196 0.0143929 +0.0136958 0.0672461 0.0531523 +-0.0608764 0.033777 0.0140174 +0.00552563 0.0813962 0.0561869 +-0.0768476 0.148423 0.040238 +-0.0306152 0.0552238 -0.0173804 +-0.0567885 0.123073 -0.00794084 +-0.0255089 0.119394 0.0308336 +0.0223261 0.116663 0.0342169 +-0.0475261 0.0335634 -0.00837623 +-0.0582936 0.157998 0.00361947 +0.0051303 0.105879 -0.0208781 +-0.00896496 0.0383664 0.01874 +-0.0444005 0.0336982 -0.00787213 +-0.00659427 0.0391448 -0.0257394 +-0.0414965 0.0424145 0.0425934 +-0.0846517 0.135301 0.0472783 +-0.0634992 0.0973124 0.0426152 +-0.0488679 0.135513 0.00441971 +0.037597 0.0883595 -0.0147642 +-0.00186878 0.0388962 0.0287527 +-0.028023 0.0380941 0.0277005 +-0.0474992 0.0718408 0.0410603 +-0.0899231 0.113261 0.00935255 +0.044663 0.094574 0.0141596 +-0.0613242 0.174126 -0.0596453 +0.0131192 0.0913894 0.0524895 +0.0569982 0.0642691 0.00177262 +0.029911 0.120086 0.0121698 +-0.0341992 0.124637 -0.00378015 +-0.0714932 0.121802 0.0535223 +-0.060211 0.120578 -0.00928669 +0.0514409 0.0718132 0.00596213 +-0.0055446 0.0384588 0.0102869 +0.0401137 0.0933035 -0.00871241 +-0.077868 0.12372 -0.00684832 +-0.0438994 0.148485 -0.00356582 +-0.0478093 0.0898718 -0.0219802 +-0.050356 0.0501549 0.0156949 +-0.044116 0.168361 -0.0078879 +0.0274031 0.12156 0.0212208 +-0.0198084 0.119865 -0.0108751 +-0.00808629 0.0392239 0.0361848 +-0.074679 0.177203 -0.0452121 +-0.0717079 0.162415 -0.0429474 +-0.0817249 0.153192 0.027965 +-0.0830361 0.0952877 0.0313817 +-0.0410879 0.12806 0.000341883 +-0.0268762 0.104433 -0.0231038 +-0.028867 0.0620809 -0.0264195 +0.0400441 0.0834026 0.0333734 +0.00148401 0.0427923 0.0460657 +-0.021597 0.124211 0.0236359 +-0.0493581 0.0389276 0.0456407 +-0.0251636 0.119759 -0.0107128 +-0.0305455 0.0776911 -0.0335901 +0.0434944 0.0719976 -0.00179535 +-0.0730641 0.148297 -0.027137 +-0.0403032 0.0335749 -0.0236075 +-0.0838696 0.117633 -0.00194246 +-0.0183958 0.0360837 -0.0274195 +0.0306925 0.119003 0.0181751 +-0.0287719 0.0876257 0.045371 +-0.0150862 0.116786 -0.0157023 +-0.0226105 0.0393974 -0.0288175 +-0.00549593 0.114185 0.0409403 +0.0172148 0.0820814 -0.0286624 +0.0204946 0.0878829 0.0490965 +0.0144377 0.119508 -0.0127985 +0.0084105 0.0389663 -0.0233493 +0.042717 0.0705281 -0.00378792 +-0.0721585 0.0349122 0.00711943 +-0.0700117 0.176166 -0.0463861 +-0.0559881 0.0594067 0.0225062 +-0.0934924 0.121416 0.0122906 +0.0386755 0.101225 -0.00680717 +-0.00386806 0.105937 -0.0224388 +-0.0104995 0.091174 0.0564817 +-0.0012394 0.131315 0.00922853 +-0.0497873 0.0855205 -0.0216876 +-0.0168713 0.104463 -0.0227606 +0.0101956 0.0865002 -0.0314726 +-0.0534959 0.108443 0.038977 +-0.0548951 0.0610993 0.0270145 +-0.0755046 0.137255 0.0498073 +-0.0485754 0.0489523 -0.00913959 +-0.0331264 0.163719 -0.0148995 +-0.00945074 0.100225 0.0471086 +-0.0342862 0.0340473 0.0246456 +-0.0294128 0.0335741 -0.023325 +-0.026685 0.0349864 0.0500364 +-0.061923 0.12237 -0.00883821 +0.0501668 0.0567787 0.0302284 +-0.011856 0.127622 0.0255897 +-0.0429498 0.0338754 -0.00590515 +-0.000398209 0.131157 0.00667235 +-0.0163397 0.112374 -0.0190184 +-0.0651151 0.138224 0.0409979 +0.0355326 0.0544702 -0.00765701 +0.0264528 0.0348348 0.00531809 +-0.0438555 0.101385 -0.0214526 +-0.0234974 0.0498976 0.0468652 +-0.0436816 0.0651561 -0.0146099 +-0.00750789 0.0386054 0.00429878 +-0.0494719 0.0643044 0.0356628 +-0.0857911 0.0847131 0.0234468 +0.0202388 0.0735294 -0.0276011 +-0.0826135 0.153724 0.024657 +0.0377117 0.0799594 -0.0137509 +-0.0629014 0.0384346 0.017326 +-0.0564952 0.112508 0.0359017 +-0.00450514 0.0647631 0.0563697 +0.0228849 0.0849076 0.049031 +-0.0136101 0.17129 -0.0181213 +-0.0659308 0.168025 -0.05906 +0.00616007 0.130231 0.0233995 +0.0200475 0.0355684 0.0326031 +0.0207235 0.0355731 0.0309275 +-0.0914203 0.133738 0.0192152 +-0.0894168 0.0942943 0.0184246 +-0.0486795 0.137079 0.00840446 +-0.0268516 0.0981872 -0.024073 +-0.0296061 0.0499557 0.0431146 +-0.0645444 0.136771 0.0400377 +0.00960463 0.0369501 0.029234 +-0.0077992 0.0826766 -0.0378216 +-0.0705096 0.145613 0.0431794 +0.038042 0.109981 0.0137429 +-0.0323904 0.0346717 0.0421656 +0.0166765 0.12456 0.0286792 +0.0496183 0.0673428 0.0005193 +-0.0256005 0.175695 -0.0107936 +-0.0178219 0.0896296 -0.0373512 +-0.010186 0.0339025 -0.0217341 +-0.047823 0.0912927 -0.0217091 +0.0214379 0.121585 -0.00505488 +-0.063535 0.0741856 0.0400495 +-0.0175015 0.119559 0.0348485 +0.0378045 0.0701003 -0.0128173 +-0.06064 0.140962 -0.00527103 +-0.0745647 0.162191 -0.0132518 +0.0175747 0.0931801 -0.024649 +-0.0413443 0.159411 0.00325579 +-0.0692325 0.161954 -0.0115912 +-0.0598828 0.104039 -0.0184233 +-0.0275135 0.111195 0.0372083 +0.017284 0.0435398 0.0440147 +-0.043478 0.0633766 0.0405033 +0.0234516 0.0389975 0.0363054 +-0.0705331 0.144185 0.0442754 +-0.00248752 0.0897873 0.0564419 +-0.0728742 0.149812 -0.0379734 +0.0462595 0.0834414 0.00917612 +0.00549045 0.0459551 0.048539 +0.038562 0.0568882 0.0311978 +-0.0404973 0.10005 0.041322 +-0.0633155 0.125546 0.0454063 +-0.0425091 0.0520201 0.0393163 +0.00748602 0.041302 0.0454759 +-0.0652746 0.0378654 0.0394026 +-0.0208078 0.081314 -0.039065 +0.00735987 0.131518 0.0123881 +-0.0507686 0.0812185 -0.0210302 +0.0289317 0.0369927 0.000264038 +-0.0895362 0.119938 0.00329723 +0.0339261 0.0564017 0.0366181 +0.0387571 0.0780554 0.0349576 +-0.00249465 0.111426 0.042426 +0.0312166 0.0814571 -0.0197537 +0.00710696 0.112707 -0.0194319 +0.0182552 0.0736117 -0.028651 +-0.0747384 0.149908 -0.0288721 +-0.0142729 0.16729 -0.0212151 +-0.0796554 0.0776931 0.0301108 +-0.0308995 0.0385461 -0.0114399 +-0.0135011 0.162185 -0.0138332 +-0.062358 0.172308 -0.0618736 +-0.0779551 0.131028 -0.00606492 +0.0053093 0.0610791 -0.0314051 +-0.0622044 0.163118 -0.0415929 +-0.0875561 0.0900472 0.00346813 +-0.0693763 0.0627096 0.00438827 +0.0577316 0.0594186 0.0235899 +-0.076964 0.0686471 0.0102516 +-0.068516 0.156454 -0.00263594 +-0.0116226 0.0389602 0.0338935 +-0.053617 0.0500325 0.0119809 +0.0600963 0.059514 0.00816569 +-0.0667396 0.168684 -0.03081 +0.0461456 0.0820314 0.0061875 +-0.0433217 0.0391871 0.0438385 +0.0426589 0.0598822 -0.00401987 +-0.0496436 0.132456 0.0281905 +0.0526393 0.0635217 0.0285801 +0.0276786 0.107363 -0.0137282 +0.0429561 0.100122 0.0141624 +0.0420203 0.102869 0.0111608 +0.0352633 0.113355 0.0198926 +-0.0527821 0.0840792 -0.0215781 +-0.0731314 0.179106 -0.0550054 +-0.0772542 0.116219 0.0507045 +-0.0448961 0.131042 0.0121815 +-0.0659423 0.149401 -0.0328697 +-0.00381497 0.0882175 -0.036071 +-0.00434542 0.130565 0.019581 +0.0267602 0.0365817 2.43485e-05 +0.0169695 0.107204 -0.0175448 +-0.062502 0.0625858 0.0256444 +-0.00350098 0.0815126 0.05747 +0.000251433 0.0712294 -0.0349609 +-0.0113059 0.174226 -0.0217772 +-0.0348319 0.0943645 -0.0236767 +-0.0786972 0.0940445 0.0355566 +0.0177903 0.112808 -0.0155711 +-0.0318198 0.0887354 -0.0251772 +-0.0198038 0.0827175 -0.0390158 +-0.0190696 0.126125 0.000571573 +-0.0793168 0.102079 0.0331119 +0.021502 0.109802 0.0384228 +-0.0927296 0.124224 0.0362665 +-0.0209485 0.0682779 0.0508919 +0.041224 0.101389 -0.000814438 +-0.0468126 0.0898791 -0.022022 +-0.0348994 0.124334 -0.00549397 +-0.0341879 0.127198 0.0131711 +-0.049291 0.131272 -0.000642386 +-0.0359021 0.0337218 0.00658675 +-0.0837824 0.091132 -0.00556609 +-0.0335134 0.101547 0.0420338 +0.0210931 0.0429808 -0.0187308 +0.0424902 0.0555855 0.0321183 +-0.0557185 0.0570014 0.011057 +-0.0194912 0.112675 0.0392933 +-0.025189 0.156576 -0.00769163 +0.0400265 0.10701 0.00816505 +-0.0540901 0.153118 -0.00271435 +-0.00486253 0.101638 -0.0232055 +-0.0436472 0.0338067 0.00674466 +-0.0211436 0.168262 -0.0193322 +-0.0763578 0.141673 -0.00573846 +0.0465682 0.041911 0.0139236 +-0.0534989 0.109802 0.0378386 +-0.0811057 0.0748245 0.0195385 +0.0366496 0.0848209 0.0372394 +0.0520606 0.0608742 0.0294954 +-0.0810176 0.109646 0.0372868 +0.0260062 0.121547 0.0249766 +-0.0134941 0.0773082 0.0569169 +-0.0759274 0.108411 0.0376421 +0.0131577 0.0548631 0.0504935 +-0.0556243 0.0335264 0.0117574 +-0.0445311 0.119183 -0.0140568 +-0.0651138 0.155569 0.0262833 +0.0254608 0.100767 0.0422505 +-0.0354939 0.101471 0.0414493 +-0.0526525 0.152155 0.0150192 +-0.0578899 0.111162 -0.0167182 +-0.050471 0.0571806 0.032579 +-0.0881725 0.103664 0.0113862 +-0.0124346 0.0985527 -0.0264295 +0.0459022 0.0876188 0.00817319 +-0.0598831 0.0337324 0.0142605 +0.0420206 0.092566 0.0274869 +-0.0622887 0.152203 -0.0145776 +-0.0483961 0.150684 0.0105827 +0.00023463 0.0985537 -0.0263753 +-0.0719091 0.107919 -0.010771 +0.0379248 0.0575872 0.0318029 +-0.0684803 0.169194 -0.0285889 +-0.0388617 0.099995 -0.0218283 +-0.0776097 0.0796169 0.0342011 +0.00633113 0.0553726 -0.0306713 +0.0163088 0.048977 0.0444188 +-0.0838449 0.0817176 0.00149669 +-0.0216263 0.0341828 -0.0204844 +-0.0187634 0.0728738 -0.0388715 +-0.0626025 0.0388129 0.0247151 +-0.0373475 0.0347779 0.0107604 +-0.00558664 0.0376733 -0.0253626 +0.0599615 0.0678313 0.0171716 +-0.0295401 0.0904607 -0.0275932 +0.0284451 0.114053 0.0325229 +0.0418253 0.0830818 -0.00779351 +0.00746772 0.0343056 0.0166757 +-0.0865698 0.0833108 0.0104907 +-0.0729271 0.151083 0.037025 +-0.0781924 0.155673 0.0158655 +-0.0788514 0.116332 -0.0048797 +0.00512317 0.107303 -0.0203142 +-0.0103272 0.0383585 0.0166568 +-0.0348025 0.040194 -0.0297923 +-0.000491404 0.0814979 0.0573536 +-0.0290382 0.16386 -0.00530596 +-0.0694805 0.121794 0.053195 +-0.0704544 0.150585 -0.0434585 +-0.0639717 0.0459278 0.00771742 +-0.03056 0.124009 -0.00164624 +0.0144021 0.0780973 0.054252 +-0.0808546 0.140749 0.0461596 +0.0103353 0.0581557 -0.0299403 +-0.00949578 0.084298 0.0576062 +-0.0249013 0.0382346 0.0282196 +-0.0316389 0.0409999 0.051064 +0.0387381 0.0381712 0.0065938 +-0.0580729 0.0345066 0.0402882 +-0.0663198 0.150167 -0.0356652 +-0.064292 0.168172 -0.0605879 +-0.0314424 0.0679449 -0.0244554 +0.0603913 0.0595429 0.0161691 +0.0102649 0.129908 0.00205228 +-0.0440813 0.0336392 -0.0114358 +0.0309277 0.0497348 -0.00874 +-0.0267697 0.0750695 0.0452054 +-0.0791015 0.170034 -0.0382691 +-0.0864283 0.0954013 0.00141653 +0.00852849 0.0646614 0.0551736 +0.0473561 0.0503594 -0.00438005 +0.039601 0.107391 0.00564087 +-0.0861267 0.0833147 0.0194823 +-0.0786738 0.10815 0.0335843 +0.043481 0.0832455 0.0271768 +0.0281352 0.0915776 0.0443357 +-0.0298099 0.0677811 -0.0284707 +-0.0229012 0.115018 -0.0157633 +-0.0270064 0.0808968 0.0494715 +0.0404227 0.0885874 -0.0107894 +-0.087216 0.0937177 0.0257149 +-0.0690509 0.0654544 -0.0025414 +-0.0695527 0.04187 0.00402445 +0.00429234 0.0668529 -0.0329804 +-0.046755 0.0336866 -0.0157033 +0.0576125 0.0580597 0.0234109 +-0.000994561 0.129288 -0.0011666 +0.0454245 0.0904044 0.0131633 +-0.0438081 0.0899046 -0.0222231 +0.0199328 0.127154 0.0141603 +0.0114882 0.0963254 0.0495798 +0.0218142 0.117368 -0.0105004 +-0.0438465 0.0359346 0.00839642 +-0.0714426 0.0632696 0.00712846 +-0.0759079 0.150006 -0.00888842 +-0.06794 0.126772 -0.00890268 +-0.0343726 0.127227 0.0072164 +0.0578211 0.0537494 0.00717652 +-0.0483087 0.135537 0.00740851 +-0.0568342 0.0666429 0.0356476 +0.0481112 0.0431114 0.00725444 +-0.0425043 0.117982 0.0312159 +0.0144699 0.0976455 0.0479677 +0.0563061 0.0508424 0.00620646 +-0.0300578 0.163895 -0.00500569 +0.0102245 0.0823018 -0.0318649 +0.0598453 0.0608733 0.0191849 +-0.0620027 0.172528 -0.0545971 +-0.0197571 0.0971344 0.046022 +-0.0611783 0.167226 -0.0592729 +-0.00613038 0.0999315 0.0488982 +0.0488619 0.047436 -0.000620948 +-0.0208111 0.118967 -0.0119295 +0.00352005 0.0786345 0.0561775 +-0.071061 0.15959 -0.0439233 +-0.0765957 0.161076 -0.0289322 +0.0259255 0.123359 0.0149571 +-0.0746094 0.14858 -0.0188631 +0.0569296 0.058069 0.024171 +-0.0338241 0.152569 -0.00489392 +-0.0455023 0.0615609 0.0388319 +-0.0654625 0.143948 0.0405383 +-0.0560519 0.0345032 0.0407254 +-0.0709341 0.162789 -0.0122264 +-0.078067 0.144487 -0.00381208 +-0.094099 0.121442 0.0152795 +-0.00327736 0.0410332 0.0476549 +-0.0500433 0.165539 -0.00195268 +-0.0774288 0.0712256 0.0238415 +-0.00725841 0.0408714 0.048906 +-0.0833667 0.142023 0.0429747 +-0.0692361 0.153199 0.0337122 +-0.0360543 0.0398378 -0.0294769 +-0.0403231 0.0344611 0.0371557 +-0.0207576 0.069984 -0.0381379 +0.0122374 0.0737871 -0.031159 +-0.0241603 0.0665253 0.044272 +0.0399369 0.0860773 0.0331939 +-0.0809073 0.123633 -0.00507492 +-0.00964827 0.166616 -0.0197629 +-0.00664529 0.1307 0.0129838 +-0.0209361 0.0381808 0.0128466 +-0.0538563 0.0970443 -0.0219059 +-0.0662078 0.0723697 0.0374848 +-0.0398566 0.099981 -0.0216989 +-0.0494761 0.0600183 0.034326 +-0.0157667 0.0742966 -0.0389627 +-0.0875711 0.0977385 0.0245274 +-0.0529166 0.0566407 0.0191372 +0.000745542 0.0955759 -0.0312149 +-0.0688619 0.10089 -0.0150284 +-0.0130273 0.178658 -0.0225027 +-0.00548585 0.118301 0.0387556 +-0.063934 0.169417 -0.04458 +0.00224686 0.131192 0.0191047 +-0.0526917 0.0662141 -0.0112413 +0.0316126 0.104759 0.0353509 +0.0222548 0.0776918 -0.0264111 +-0.0685061 0.105552 0.0384458 +-0.0576201 0.135609 -0.00546838 +-0.00760577 0.128788 -0.000526473 +-0.0262755 0.0383516 -0.00662702 +0.0096904 0.0344726 -0.0051827 +0.0183649 0.0355244 -0.0106716 +-0.0892922 0.0996701 0.0134013 +-0.0748707 0.116421 -0.00675171 +-0.054019 0.0333099 0.015848 +-0.0927402 0.125562 0.0292626 +-0.00859312 0.0384098 0.0205847 +-0.0574617 0.0399955 0.0466824 +-0.0890962 0.0996533 0.0114017 +-0.0393675 0.120945 -0.0119262 +-0.0498057 0.144755 0.010389 +-0.0800056 0.108388 0.0313605 +-0.0694061 0.153071 -0.0482738 +-0.0529002 0.0701503 0.0387731 +-0.00979568 0.178776 -0.0277733 +-0.0749384 0.177982 -0.0467773 +-0.080224 0.0913049 0.0343483 +0.0274404 0.0399547 -0.00370609 +0.0064659 0.11274 0.0407332 +-0.0218179 0.0350986 -0.0195001 +-0.0723907 0.151114 -0.0412874 +0.00590733 0.0340449 -0.020637 +0.0460177 0.0800284 0.0189631 +-0.0576496 0.0629466 -0.00612077 +-0.0519433 0.0503866 0.0326949 +0.0377573 0.0757194 -0.0117756 +0.0434133 0.0930689 -0.00182579 +-0.0445007 0.165214 0.00483168 +-0.0196553 0.063928 0.0497256 +-0.0766812 0.154876 -0.00631355 +-0.0344859 0.0335245 -0.0299041 +0.0132509 0.0349689 -0.0195966 +-0.0264467 0.0459901 0.0505652 +-0.00131456 0.122836 -0.0102349 +0.0122169 0.129551 0.00276868 +-0.0137494 0.0383366 0.00873382 +-0.0445005 0.116602 0.0322264 +-0.0346258 0.0408721 -0.0296689 +-0.0706305 0.0401508 0.00122659 +-0.0765009 0.0716493 0.0271716 +-0.0708234 0.155869 0.0257344 +-0.0311277 0.0566897 -0.0153882 +-0.0896944 0.133694 0.0395953 +0.000231967 0.0783204 -0.0356621 +0.0338144 0.115724 0.00791606 +-0.0300912 0.15662 0.000215848 +0.0464982 0.0677769 0.0257597 +-0.0214151 0.0595466 0.0459898 +-0.0572298 0.0696188 0.0382761 +0.0366123 0.064635 0.0370437 +-0.0264937 0.0973851 0.0437224 +0.0404949 0.0513767 0.0324659 +-0.0350844 0.107815 -0.0201106 +-0.0205025 0.0486482 0.0489372 +-0.0610181 0.13697 -0.00676267 +-0.0906044 0.135075 0.015212 +-0.0194066 0.174211 -0.0159442 +-0.0394983 0.0719214 0.0419294 +-0.0883414 0.120307 0.04718 +-0.00748928 0.0978336 0.0520944 +-0.0846404 0.107661 0.0233457 +-0.0214945 0.10716 0.0418366 +0.0181073 0.0398088 -0.0196993 +0.0190777 0.0384168 -0.0157069 +-0.0636502 0.159498 -0.051954 +0.0283128 0.0754542 0.0444772 +-0.054074 0.15164 -0.0027148 +-0.083614 0.154208 0.0184012 +-0.056485 0.0343785 0.0390076 +0.0337482 0.102096 0.0349353 +-0.0782584 0.1764 -0.0490322 +0.0136057 0.0460076 0.0440344 +-0.00550326 0.0801395 0.0576107 +0.0334132 0.0849144 0.041374 +-0.0113988 0.126257 0.0287047 +-0.0655972 0.169628 -0.0389928 +-0.0832568 0.154212 0.0141255 +-0.0820934 0.0898659 0.0320222 +-0.067283 0.17966 -0.0595334 +-0.062529 0.150617 -0.0195776 +-0.0299377 0.0847457 -0.0326018 +0.0607552 0.0664989 0.0131533 +-0.0228597 0.101618 -0.023963 +-0.0618668 0.165619 -0.0600772 +-0.081854 0.0937329 -0.00756112 +-0.0679516 0.170855 -0.0560296 +-0.0295118 0.108456 0.0388793 +0.0482509 0.0539799 0.0309574 +0.00823122 0.079605 -0.0335706 +-0.0526044 0.041455 0.0460966 +-0.0496802 0.165544 -0.00294037 +-0.0910152 0.129688 0.0372352 +-0.0404973 0.0972715 0.0419896 +0.00850648 0.0772375 0.0559821 +-0.0717922 0.153989 -0.0428988 +-0.0507334 0.147965 -0.00270623 +0.0127323 0.0860509 0.0536553 +0.0565626 0.0508082 0.0192018 +-0.047499 0.10845 0.0392246 +-0.00917487 0.0875708 -0.0370938 +-0.0783316 0.0788746 0.032897 +-0.0896787 0.135012 0.00721892 +0.00550113 0.0883518 0.0561015 +-0.0423419 0.0335706 -0.0240051 +0.0405574 0.104219 0.0191648 +0.00286437 0.130486 0.00148286 +-0.0643911 0.133918 0.0402655 +-0.0620868 0.139878 -0.00655442 +-0.0557051 0.12209 -0.00891575 +0.0589396 0.0566475 0.0201757 +0.0386112 0.0603508 -0.0077511 +-0.0806595 0.0855046 -0.00754297 +-0.0718229 0.0965348 -0.0152102 +0.0459498 0.0806271 0.0191734 +-0.0515557 0.141366 0.000880581 +-0.0859779 0.0910726 0.0273961 +-0.0194809 0.0757644 0.0547346 +-0.0526104 0.0335154 0.00699108 +-0.080479 0.155159 0.0180021 +-0.0500595 0.117739 -0.014504 +-0.0638596 0.0939187 -0.018635 +-0.0469776 0.034208 0.0289371 +0.0315208 0.0994913 0.038731 +0.0444927 0.0610909 0.0304355 +0.0212529 0.1262 0.0189269 +-0.0254692 0.0509386 0.0434079 +0.0476579 0.0715472 0.019969 +0.022698 0.118017 -0.00920048 +-0.0384222 0.125448 0.0219859 +-0.038314 0.170034 -0.0122167 +-0.0530543 0.14469 0.0223994 +-0.00492317 0.0389099 -0.00470281 +0.0373499 0.0533605 -0.00643641 +-0.0696712 0.171569 -0.0347594 +0.0436954 0.0959268 0.0201595 +0.0285253 0.065965 0.0429423 +-0.0466394 0.0345455 0.0392313 +0.0412883 0.0886287 0.0299331 +-0.0251747 0.0383636 -0.0175696 +-0.0674763 0.168038 -0.0560148 +-0.0634115 0.166723 -0.0396505 +-0.0443984 0.0671335 0.0404051 +-0.0524987 0.100127 0.0423619 +-0.0837023 0.110333 0.0361338 +-0.0757541 0.0819089 0.037226 +-0.0475033 0.0973719 0.0436212 +-0.0418104 0.0899475 -0.0227382 +-0.0308563 0.174216 -0.00433975 +-0.00771604 0.130016 0.0212618 +-0.0691125 0.156051 0.011784 +-0.049655 0.0664173 -0.0130805 +0.0212145 0.0401172 -0.0107008 +-0.0418108 0.128972 0.0103834 +-0.0623408 0.164683 -0.0455908 +-0.0776167 0.145877 -0.00384676 +0.0294578 0.079544 0.0444105 +-0.052057 0.15088 0.0153954 +0.0551015 0.0521065 0.00221795 +-0.0568769 0.116868 -0.0135067 +-0.0856284 0.151402 0.00824006 +-0.0512523 0.116429 -0.0151143 +-0.0568623 0.0941345 -0.0215512 +-0.0153943 0.099814 0.0443638 +0.0368805 0.101462 -0.00941022 +-0.0293998 0.0355494 -0.0195486 +-0.040872 0.105663 -0.0204372 +-0.0279821 0.0821961 0.0475971 +-0.0106963 0.176084 -0.0292514 +-0.00933224 0.038323 0.0168951 +-0.0792032 0.10313 -0.00756064 +-0.0540718 0.118333 0.0357708 +0.00450074 0.0938217 0.0540732 +-0.0746595 0.15617 0.0170913 +-0.0708414 0.0994113 -0.0147342 +-0.0516111 0.0530832 -0.00753985 +-0.0486234 0.0532712 -0.0094518 +-0.031704 0.172718 -0.00384226 +-0.00272576 0.130091 0.00149765 +-0.092388 0.120024 0.00928585 +-0.037643 0.153612 0.00331291 +0.0356049 0.0577583 0.0355158 +-0.0668801 0.103821 -0.0153002 +0.0379456 0.10977 0.0171703 +0.0191769 0.0959952 -0.0230407 +0.0391807 0.0658814 0.0336832 +-0.0690863 0.0666121 0.0278101 +-0.089106 0.114375 0.0298659 +-0.0216155 0.0436703 -0.028439 +-0.0266188 0.0490904 -0.0254391 +0.000108091 0.0340814 -0.0198793 +-0.0171613 0.159788 -0.00903074 +0.041574 0.0397142 0.0168995 +0.019656 0.0347604 0.000281692 +0.00764804 0.128583 -0.00254334 +-0.0553782 0.151032 0.0287496 +-0.0528315 0.0558373 -0.00742005 +0.0115037 0.109883 0.0397133 +0.03545 0.105907 -0.00815474 +-0.0629114 0.115341 -0.0117985 +-0.0234208 0.172725 -0.0129655 +-0.0890673 0.101028 0.0173829 +0.0236359 0.056409 0.0445932 +-0.0187325 0.0374026 0.0529482 +-0.0394792 0.105608 0.0388858 +0.0151319 0.0603601 0.0498992 +-0.080949 0.137599 -0.00280806 +-0.0546196 0.0345652 0.0426785 +-0.0465281 0.033544 -0.0026564 +0.0395657 0.0998694 -0.00580754 +0.0101223 0.108705 -0.0195083 +-0.0104988 0.09255 0.056119 +0.0330296 0.116688 0.0147767 +-0.0910722 0.141959 0.0151878 +-0.00849613 0.0703395 0.0565554 +-0.0574961 0.0904385 0.0452768 +-0.0530142 0.0490552 0.0256583 +-0.0294931 0.0717523 0.039896 +-0.0311676 0.0348856 0.0474529 +-0.00876366 0.0347363 0.0436201 +-0.0666703 0.0612745 0.0188657 +0.0173575 0.0940342 0.0480767 +0.0284806 0.111435 0.0343318 +-0.0468308 0.0941893 -0.021914 +-0.0265985 0.0562164 -0.027412 +-0.0871843 0.135176 0.0441499 +-0.063207 0.06374 0.0280276 +-0.0345021 0.0647803 0.0405279 +0.0597837 0.0567045 0.0121686 +-0.0474843 0.0818872 0.0439119 +-0.0589237 0.11399 -0.014753 +-0.0490056 0.122549 0.0307687 +0.0548584 0.0611516 -0.00113589 +-0.0458004 0.0353434 -0.021332 +0.00134052 0.0539375 -0.0306386 +-0.0278278 0.177181 -0.00696301 +-0.0427537 0.0783105 -0.0194623 +0.00651372 0.089712 0.0551929 +-0.0494951 0.0819134 0.044146 +0.0305588 0.055351 -0.0157687 +0.0297469 0.0929269 0.0431563 +0.0125099 0.0519837 0.0495237 +0.0459653 0.0806289 0.018177 +-0.053548 0.149321 0.0244145 +-0.0317948 0.0651814 -0.020436 +-0.019834 0.0868717 -0.0379507 +-0.0119886 0.038466 0.00715809 +-0.0770198 0.170132 -0.03325 +-0.0269539 0.17866 -0.00745161 +-0.0756616 0.0695139 0.0239361 +-0.0474944 0.116586 0.0319739 +-0.0671319 0.0355924 0.0145398 +-0.0783661 0.108548 -0.00557568 +-0.0284012 0.0860445 -0.0346283 +0.0257301 0.0379057 0.0280361 +0.00740689 0.0389878 -0.0235836 +-0.0629696 0.131105 0.0405653 +-0.0380606 0.157756 -0.011216 +-0.0361107 0.0459963 0.0412564 +-0.053455 0.0625326 0.0304805 +-0.0731839 0.178324 -0.0475338 +0.0137018 0.0888713 -0.0301465 +-0.0894038 0.140678 0.0331776 +-0.0114925 0.06602 0.0547394 +-0.0853984 0.0872002 -0.00151975 +-0.00957697 0.128995 0.00181181 +0.0571986 0.0536922 0.00517882 +0.0181761 0.0974249 -0.0228373 +0.0414526 0.0425673 -0.000513932 +-0.0423634 0.121318 -0.0123099 +-0.0854479 0.0898939 -0.00155092 +-0.0136017 0.0392183 -0.0267222 +-0.0353577 0.174409 -0.00212011 +-0.0930586 0.122743 0.0102788 +0.0208421 0.0882147 -0.0254487 +0.000267595 0.0697483 -0.0342392 +0.0443612 0.0458824 -0.00271937 +-0.0794062 0.147442 0.0402641 +0.0285362 0.120755 0.0202147 +-0.0354498 0.0346389 0.0415402 +0.0189212 0.0875932 -0.0268145 +-0.0326685 0.0478014 -0.0229356 +0.0213046 0.0374522 0.0382518 +0.0119628 0.111848 -0.018535 +-0.0754368 0.114522 0.050709 +-0.0575342 0.0415089 -0.00843308 +-0.0289002 0.0348381 0.0445217 +-0.0558188 0.0336396 0.0205147 +-0.0294901 0.0946648 0.0450535 +0.0140142 0.0519753 0.0481823 +-0.0499383 0.162625 -0.0047964 +-0.0285131 0.111188 0.0369648 +-0.0777024 0.176292 -0.0501047 +-0.0458377 0.0970756 -0.021885 +-0.0647866 0.167644 -0.0344082 +-0.08472 0.111015 0.033569 +-0.0624074 0.1491 -0.0095736 +0.0455563 0.078849 0.0217954 +0.0386173 0.0673644 -0.0117551 +-0.0516941 0.147804 0.0164166 +-0.0638593 0.0953482 -0.0183667 +-0.0887889 0.117194 0.003272 +-0.0667452 0.0342007 0.0124321 +-0.0921816 0.132336 0.0152245 +-0.0790475 0.168047 -0.0349702 +-0.0445079 0.0424992 0.043443 +-0.0914924 0.12135 0.00727423 +0.00205109 0.0347195 0.0440743 +-0.0757523 0.0687815 0.0210323 +0.0254197 0.0394349 0.0320923 +0.0445209 0.095967 0.011159 +0.00418461 0.0908826 -0.0329329 +-0.0447434 0.0753343 -0.0181391 +0.0465277 0.0497043 0.0301725 +-0.0231678 0.124994 -0.000333927 +-0.0261386 0.0359205 -0.0192491 +0.000314733 0.0597904 -0.0332055 +-0.0664067 0.0336797 0.00582425 +-0.0179785 0.068344 0.053543 +0.0128834 0.035495 0.00385056 +-0.064012 0.0432207 0.0306772 +0.0356112 0.0942094 0.0375896 +0.0433586 0.0589158 -0.00469925 +-0.0741431 0.153026 0.0335308 +-0.0366764 0.0421455 0.0447176 +-0.0616357 0.158429 -0.0245888 +-0.0777899 0.164478 -0.0251991 +-0.0774203 0.177255 -0.0472003 +-0.0723466 0.0663158 0.0221054 +-0.00945876 0.0366145 -0.0165831 +-0.00782909 0.0896438 -0.0364286 +-0.0483458 0.0338972 -0.0143683 +-0.0548931 0.111218 -0.0174922 +0.0263272 0.0545944 -0.0208638 +-0.078467 0.147461 0.0407301 +0.0472196 0.0430325 0.00527833 +0.0313294 0.118714 0.0127065 +-0.00880796 0.0868775 -0.037347 +-0.054028 0.0344996 0.0411656 +-0.00639115 0.121199 -0.012466 +0.0300864 0.0564003 0.0398351 +-0.0790124 0.0782686 0.0315155 +-0.0134683 0.0964232 0.0523159 +-0.0763221 0.159003 -0.0110053 +-0.0600876 0.0367271 0.0456071 +0.0364957 0.049851 0.0316154 +0.00849848 0.0402756 0.0453316 +0.0205837 0.0754832 0.0508919 +-0.071014 0.148895 -0.037822 +0.0170761 0.115474 -0.0144429 +-0.063767 0.0615586 0.0227478 +0.0437965 0.0987467 0.00816432 +-0.0513326 0.0542594 0.0137993 +-0.0414552 0.0341096 -0.00949275 +0.0395669 0.101281 -0.00480928 +-0.0918243 0.128307 0.0322434 +-0.0474749 0.0945717 0.0440635 +-0.0704486 0.16924 -0.0264473 +0.027192 0.101376 -0.017349 +-0.0895884 0.114751 0.0258504 +-0.0713206 0.156784 -0.042915 +0.0384501 0.0914717 0.0346309 +0.0214747 0.0996539 -0.0214946 +-0.0106582 0.0527176 -0.0332954 +0.00773558 0.128847 0.0268569 +0.0202904 0.0912514 -0.02462 +0.00332905 0.0553943 -0.0309954 +-0.0921247 0.116117 0.0353113 +-0.0146765 0.0526113 -0.0325234 +-0.0657759 0.0410192 0.0130518 +0.0587274 0.0538199 0.013179 +0.0291394 0.102042 -0.0160578 +-0.0701142 0.0625797 0.0062174 +0.0457389 0.0876049 0.0111625 +0.00224905 0.118538 -0.0156887 +0.0520156 0.0596733 -0.00368903 +-0.0891532 0.136419 0.0102028 +-0.0400348 0.0344619 0.0337052 +-0.0461887 0.0335082 0.00469546 +-0.0923435 0.115998 0.0113188 +-0.00713141 0.127357 0.0287426 +0.0252624 0.0747714 -0.0251152 +-0.0453044 0.0587827 0.038737 +0.03635 0.0368836 0.00917982 +-0.0527446 0.0753599 -0.0182797 +-0.0728584 0.132623 0.0509226 +-0.00672844 0.0698676 -0.0361675 +0.0413912 0.0459759 -0.00421898 +-0.0201655 0.0348026 0.0446658 +-0.0641545 0.0391804 0.0263583 +-0.00246627 0.111608 -0.0202454 +-0.0134033 0.110892 -0.0194483 +0.043074 0.0401669 0.0073914 +0.0192967 0.0693907 -0.0288221 +-0.0619039 0.16157 -0.0305885 +0.00333358 0.0341967 0.0104872 +0.0421258 0.100042 0.000179811 +-0.0386776 0.11516 -0.0158482 +-0.00807178 0.0386982 0.0276584 +-0.0756134 0.163772 -0.0350068 +-0.0672387 0.155112 0.00519073 +0.0276118 0.053509 0.0397341 +-0.0779406 0.158305 -0.0189233 +-0.00470743 0.0627772 -0.0352137 +0.0325643 0.0981766 0.0384761 +0.0296733 0.0481683 -0.00874324 +0.0113105 0.059545 -0.0296135 +-0.0653574 0.0733073 0.0386226 +-0.0120884 0.101067 0.0439606 +-0.0268179 0.0735627 0.0438663 +-0.0513902 0.0530791 0.0216216 +-0.0678614 0.042287 0.00944731 +-0.0899071 0.133806 0.0352156 +-0.0122404 0.0385117 0.0269697 +-0.0719375 0.16298 -0.0125698 +0.0473212 0.0533258 -0.00537345 +-0.030503 0.0588732 0.0373493 +-0.0905557 0.120241 0.0451196 +0.0219406 0.0388423 0.0393076 +-0.0672891 0.178209 -0.0595336 +0.0302182 0.0535528 0.0382346 +-0.0815406 0.110006 0.0333062 +-0.0477684 0.0811966 -0.0205178 +-0.048671 0.138621 0.0113976 +-0.0562999 0.0506286 -0.00237306 +-0.0854189 0.0791501 0.00750351 +0.000105856 0.117482 -0.0165473 +-0.0624071 0.149633 -0.00268499 +-0.0682914 0.172271 -0.0560251 +-0.0642448 0.0333797 -0.00245942 +0.0203456 0.053671 -0.0267089 +-0.0711203 0.163576 -0.0137477 +-0.0126641 0.0511309 -0.0317686 +-0.066211 0.180426 -0.0565833 +0.0266688 0.0892152 -0.0224539 +0.01736 0.128384 0.0132094 +-0.0541813 0.154195 0.0142529 +-0.0799749 0.0710714 0.0163832 +-0.0379044 0.0336424 -0.0213286 +-0.0747588 0.0669346 0.0175421 +-0.0221189 0.12668 0.005878 +-0.0623544 0.152149 -0.0255836 +0.0137867 0.0377633 0.0443361 +0.0469104 0.0589185 -0.00506663 +-0.0188119 0.0964492 -0.0282644 +-0.000384494 0.130522 0.00237337 +-0.0647338 0.0418755 0.0296857 +-0.0418518 0.0999485 -0.0214177 +-0.0135206 0.0432479 0.0507363 +0.0314548 0.113206 0.0298812 +0.0211096 0.0343656 0.00467028 +0.0493524 0.0516707 -0.00371978 +0.0324504 0.0916248 0.0417895 +-0.0405477 0.118695 -0.0135582 +-0.0421609 0.128746 0.00435225 +0.00852878 0.034888 0.0362651 +-0.0599768 0.12527 -0.00809043 +-0.0624255 0.16468 -0.0465913 +0.0305387 0.114047 0.0302625 +-0.0209297 0.158088 -0.00822134 +-0.00449554 0.0633716 0.0561592 +0.00751849 0.0440876 0.0454461 +-0.0617319 0.160008 -0.0275856 +-0.00111302 0.130629 0.0207594 +-0.000792652 0.0894877 -0.0349748 +-0.0534886 0.0862338 0.0454573 +0.0102426 0.0752832 -0.032327 +-0.0866178 0.151117 0.0269024 +0.00586712 0.0991316 -0.0229749 +-0.018487 0.0772258 0.0557066 +-0.0220963 0.0623062 0.0451655 +-0.0263156 0.124827 0.00142734 +0.00449781 0.0519669 0.0532713 +-0.0318681 0.105727 -0.021166 +-0.034171 0.0822565 -0.0245355 +-0.0160192 0.104518 -0.0227486 +-0.0336086 0.0394857 -0.0301589 +0.0179261 0.0900567 0.048881 +0.028994 0.0915879 0.0438177 +0.0419459 0.0625408 -0.0027477 +-0.0623435 0.161536 -0.0425937 +0.0521127 0.0595383 0.0295528 +0.00603967 0.0344425 -0.0152712 +-0.0200036 0.0384998 -0.0166705 +0.0335055 0.0549395 0.0359782 +0.0413899 0.0475369 -0.00516876 +0.0571049 0.0594437 0.0244408 +-0.0642323 0.124186 0.0475964 +-0.0104933 0.0952299 0.0545267 +0.0183283 0.0593891 -0.0275077 +0.0556724 0.0698728 0.00398853 +0.02895 0.086199 0.0437135 +-0.00575467 0.1008 0.0460186 +-0.0117555 0.0969094 -0.0306933 +-0.0570352 0.129621 -0.00626418 +-0.06396 0.034704 0.0249317 +-0.0269668 0.0674701 -0.0325423 +0.00372222 0.0941665 -0.0317421 +-0.0708312 0.0951391 -0.0158707 +0.0351494 0.0633173 0.038442 +0.0303372 0.119206 0.0194646 +-0.0174811 0.118153 0.0357243 +-0.0928105 0.116053 0.0203106 +-0.012498 0.078722 0.0572931 +0.0102589 0.100444 -0.0223447 +0.0311369 0.0982118 0.0399163 +-0.0870966 0.0995146 0.0044219 +0.0372771 0.100696 0.0312566 +-0.0464652 0.16842 -0.00496016 +-0.0340766 0.172586 -0.0145127 +-0.0632966 0.144361 -0.00960502 +-0.00396533 0.128634 -0.00247998 +-0.0810179 0.0964125 -0.00756981 +-0.0296304 0.159454 -0.0131553 +0.0323433 0.0592178 0.0396143 +0.0171685 0.0490344 0.0439112 +-0.0798847 0.0706373 0.0145533 +0.00550249 0.0758881 0.0564988 +-0.0285046 0.0588067 0.036767 +-0.054422 0.152991 0.0228754 +-0.0663081 0.150341 0.0377708 +-0.0409099 0.173193 -0.0056112 +-0.00259587 0.0391262 -0.0253465 +0.0394316 0.0807401 0.0342345 +0.048793 0.049707 0.0281736 +-0.0225905 0.0365035 -0.0286129 +-0.0185117 0.0387718 -0.0147573 +-0.0889514 0.121274 0.00229944 +0.0255827 0.034587 0.0128177 +-0.0258582 0.100162 -0.023852 +-0.0317095 0.0382098 0.0512104 +-0.0608875 0.104029 -0.0182853 +-0.0577034 0.0591273 0.0216745 +-0.0316861 0.0553325 -0.0133983 +-0.0579004 0.0336435 0.0147513 +-0.050636 0.0604891 -0.0105672 +-0.0484979 0.101507 0.0419588 +-0.0735846 0.159652 -0.032921 +-0.0596849 0.136693 0.0347693 +-0.0527883 0.0490273 0.0246529 +-0.00587038 0.038496 0.0083708 +0.0443161 0.095966 0.0141619 +-0.0355281 0.0832646 0.0432735 +-0.0552893 0.160933 0.00328411 +-0.0694051 0.177621 -0.0490523 +0.0553162 0.0608807 0.0271604 +-0.0115038 0.082913 0.0576973 +0.00149573 0.118307 0.0388892 +-0.0643923 0.178295 -0.0607754 +-0.0696234 0.0702067 -0.00731499 +-0.0684446 0.156174 0.0134711 +-0.0631402 0.158352 -0.0425984 +-0.028277 0.0807444 0.0465032 +-0.0851037 0.143224 0.00618561 +-0.0701909 0.171451 -0.0335218 +-0.0542038 0.149302 0.0263885 +-0.0230864 0.0416339 0.0540702 +-0.0848397 0.124371 0.0492354 +-0.0509437 0.0349503 0.0448676 +0.0147035 0.0490065 0.0456198 +-0.059742 0.156334 0.00641085 +-0.07522 0.0688188 0.0015368 +-0.0196569 0.0390707 0.0375255 +0.0459174 0.0834201 0.0141703 +-0.0785236 0.0894249 -0.0105705 +-0.0200463 0.0893341 0.0549931 +-0.0173075 0.11558 -0.0164072 +0.000516136 0.0760027 0.0580883 +0.042165 0.0859172 -0.00778247 +0.0203197 0.0664896 -0.0280597 +-0.0604906 0.0959808 0.043977 +-0.00180047 0.0840422 -0.0369301 +0.0106204 0.119324 -0.014581 +0.000242427 0.128645 -0.00250259 +-0.0544918 0.0876045 0.0451014 +-0.081252 0.0993542 0.0322994 +0.0225815 0.0632207 0.0466294 +-0.0528036 0.129718 0.0341858 +0.0388075 0.10554 0.0251669 +-0.071237 0.156366 0.0212013 +-0.0419921 0.0349859 0.0415962 +0.0319555 0.0413937 0.028007 +-0.0465003 0.112564 0.0357108 +0.00310161 0.111606 -0.0202814 +0.0306552 0.102095 0.0374778 +0.0158981 0.0576764 0.0492073 +-0.036508 0.127508 0.00348399 +0.0403284 0.0574912 -0.00511853 +-0.06805 0.157495 -0.00534926 +-0.0870566 0.0847034 0.0124776 +-0.0785035 0.127443 0.053282 +0.0093755 0.0479282 -0.0271091 +-0.00151782 0.111398 -0.0200294 +-0.0386619 0.0336282 0.00792475 +-0.0321818 0.0666221 -0.0204419 +-0.0516478 0.0334795 -0.00363494 +-0.0505323 0.0346392 0.0434961 +-0.0871097 0.129792 0.0470428 +-0.00115829 0.0378141 0.0044798 +0.00250327 0.0351261 0.00210209 +0.0232927 0.0720269 -0.0262872 +0.0386441 0.0772022 -0.0107761 +0.00730214 0.0624461 -0.0313742 +-0.0601285 0.0334799 -0.007174 +-0.0311809 0.165241 -0.0158459 +-0.0456556 0.126096 -0.00729728 +0.01482 0.0920349 -0.0274402 +-0.0578658 0.154169 0.0274197 +-0.0766831 0.148629 -0.00786722 +-0.0548976 0.0574275 -0.00541424 +-0.0213746 0.0936314 -0.0333712 +-0.0795038 0.127439 0.0531413 +-0.0719602 0.0381531 0.00797803 +0.0465231 0.0539629 0.0319545 +-0.0327551 0.126411 0.00489661 +-0.0907403 0.135093 0.0162106 +-0.0798437 0.119249 -0.00499812 +-0.0195891 0.186548 -0.0163318 +-0.0336818 0.0474202 0.0430149 +0.0387003 0.0847793 0.034951 +0.005123 0.108732 -0.0201833 +-0.0355723 0.127236 0.00383072 +-0.0593755 0.0706339 0.0387044 +-0.0701237 0.0337481 0.00141754 +-0.0596389 0.0645563 -0.0073211 +-0.0247044 0.0349045 0.050534 +-0.0698349 0.155896 0.010068 +-0.00664542 0.0496313 -0.030799 +-0.0560508 0.049202 -0.00336342 +-0.0846449 0.0777798 0.00851725 +0.0428444 0.0958802 0.0241636 +0.0226208 0.0505695 0.0412719 +-0.0421939 0.165153 -0.0106292 +-0.0530779 0.153128 -0.00337034 +-0.0183995 0.128105 0.0144964 +0.0110096 0.125946 -0.00574203 +0.0135498 0.109816 -0.0183273 +0.0246987 0.1167 0.0323736 +-0.0323986 0.169744 -0.00487272 +0.0414995 0.0513848 0.032599 +-0.0820948 0.0748388 0.0105311 +-0.0771842 0.102138 0.0352151 +-0.0627985 0.161541 -0.0235962 +0.0203907 0.0490438 0.0415331 +-0.0284862 0.120462 -0.00941436 +0.00850898 0.0990197 0.0481875 +0.0181919 0.0781799 0.0527467 +-0.0323958 0.0383608 -0.00233468 +-0.0198811 0.121697 -0.00881459 +-0.0289402 0.154865 -0.00285823 +-0.055522 0.0600566 -0.00554029 +-0.0446949 0.0680713 -0.0159309 +-0.0505296 0.0657745 0.0361047 +0.0251595 0.0995713 -0.0194056 +0.0456643 0.0876028 0.0121678 +-0.0533672 0.143136 0.0253913 +-0.05283 0.138085 0.0270749 +-0.0324865 0.0974182 0.0443398 +0.00543862 0.118556 -0.0157347 +-0.0704807 0.1602 -0.00768602 +0.00476485 0.0378127 -0.0129945 +0.0453303 0.0875809 0.0171699 +0.00844159 0.109753 0.0403226 +0.0199305 0.0645206 0.0480779 +-0.0865012 0.0967606 0.00143514 +0.0239407 0.0433254 -0.00969837 +-0.0464991 0.0818806 0.0436011 +-0.0365053 0.0832925 0.043701 +-0.0511539 0.144707 0.0143676 +-0.0354688 0.0973337 0.0432864 +0.0315086 0.0361416 0.0180806 +-0.0620392 0.152203 -0.0175795 +-0.00174908 0.0726707 -0.0356483 +0.0482658 0.0482112 0.0273759 +0.0205204 0.0686316 0.0489712 +0.0055446 0.129937 0.0246284 +-0.0509363 0.126898 0.0333376 +0.0503401 0.0525815 0.0286903 +-0.0663805 0.0356243 0.0152158 +-0.0631059 0.039729 0.0160762 +-0.0794629 0.0702542 0.0118898 +-0.0440204 0.0437247 -0.0153148 +-0.0258047 0.0811626 -0.0373791 +-0.0654527 0.156561 -0.05302 +-0.0801896 0.0926573 0.034266 +-0.0226625 0.0493576 -0.0281762 +-0.076512 0.15561 -0.00689633 +-0.0316228 0.0384779 -0.00967109 +0.0073096 0.0609801 -0.0307365 +-0.036779 0.0827886 -0.0223365 +-0.0454595 0.0846983 0.0440929 +-0.0310517 0.0636961 -0.0214339 +0.044971 0.0748214 0.0226935 +-0.0245671 0.182966 -0.016053 +-0.0343794 0.125292 -0.00246071 +0.0260218 0.0493062 -0.0196675 +0.00451349 0.0786214 0.0559314 +-0.0272596 0.0409813 0.0537728 +-0.0865558 0.105007 0.0203641 +-0.0427952 0.0347556 0.00787321 +-0.0294944 0.0889496 0.044252 +-0.0691615 0.0832998 0.0419252 +-0.077704 0.175863 -0.0450747 +-0.0595653 0.0407951 0.0449735 +-0.0118194 0.129824 0.0125318 +-0.0304269 0.169744 -0.0072967 +0.00750596 0.0674413 0.055134 +-0.0895098 0.0942825 0.014433 +0.0566953 0.0550372 0.00319006 +0.0358581 0.0995241 -0.0113664 +-0.0541815 0.15229 0.0244282 +-0.0924737 0.125588 0.0362608 +-0.0750911 0.110634 0.0449752 +-0.0272685 0.0368017 0.0538626 +-0.0614955 0.104283 0.0410789 +-0.0721148 0.067315 0.0248191 +0.034236 0.094243 0.0391072 +-0.0724407 0.178857 -0.0487083 +-0.06691 0.033448 -0.00125687 +-0.0660379 0.0349778 0.0329828 +-0.0701097 0.156012 0.00122102 +-0.0157478 0.0352634 0.050467 +-0.0465076 0.160794 0.0071118 +-0.0156218 0.0365183 -0.0177136 +-0.00687536 0.0389886 0.0330493 +0.0201949 0.0959886 -0.0227072 +0.00536718 0.125777 0.0317922 +-0.0689036 0.105186 -0.0135662 +-0.0576505 0.0508003 0.0036576 +-0.0372877 0.0353832 0.0246264 +-0.0766222 0.0824671 -0.0115781 +-0.0570813 0.0344654 0.0405363 +0.0284042 0.0431456 -0.00552671 +-0.078005 0.151454 -0.00188508 +0.00274784 0.0953419 -0.0309592 +-0.0764328 0.147234 -0.00786196 +-0.0187399 0.0656914 -0.0372373 +-0.0626784 0.0670893 0.0340154 +-0.066213 0.0377522 0.0375383 +0.00946024 0.0346841 0.0420404 +-0.00763703 0.046711 -0.0299661 +0.0217664 0.106013 0.0404033 +0.0159395 0.0900955 0.0512828 +-0.0714939 0.126019 0.0527835 +-0.035368 0.122868 0.0260927 +0.0397669 0.0885289 -0.0117744 +-0.0235296 0.159196 -0.00227474 +-0.0299919 0.0383903 -0.00556396 +0.00840449 0.0360838 -0.0229864 +-0.0688351 0.0951745 -0.0162656 +0.0188202 0.124811 0.0265908 +-0.0542034 0.0477679 0.0266683 +-0.00718512 0.0384992 0.0226001 +0.0191993 0.0352366 0.0345338 +-0.0486962 0.13553 0.00541025 +0.0065027 0.0533154 0.0528127 +-0.064997 0.0410349 0.013689 +0.0235192 0.107033 0.0392433 +-0.0526101 0.0632972 -0.0100113 +0.0288769 0.120252 0.0217702 +-0.00882418 0.0896578 -0.0365764 +-0.0563459 0.0335397 0.00260276 +0.0287652 0.114389 -0.00726895 +0.0564669 0.0577845 0.00118215 +-0.0623836 0.163016 -0.0556039 +-0.0235351 0.118111 0.0331575 +0.0443232 0.0889197 0.0231574 +0.0349753 0.114037 0.00545779 +0.0269837 0.108749 0.0374141 +-0.000496913 0.056284 0.0547664 +-0.0889882 0.115854 0.0042936 +-0.0688144 0.0851338 -0.0175228 +-0.0304795 0.0746468 0.0405648 +-0.0616784 0.0692367 -0.0132074 +-0.0554108 0.0334149 -0.00799207 +-0.0610813 0.0342293 0.0311986 +-0.0655517 0.155937 0.0246661 +-0.0767597 0.163153 -0.0191399 +-0.0140741 0.0388251 0.0317136 +-0.02858 0.0731702 0.040795 +-0.0480086 0.134685 0.0198054 +-0.00949027 0.107257 0.0434611 +-0.0224071 0.0510134 0.0440995 +0.0026516 0.0341771 0.00670019 +-0.00282121 0.086807 -0.0363939 +0.00461042 0.092806 -0.0323339 +0.0444404 0.0425371 0.0222477 +-0.0251232 0.0838362 0.0531591 +-0.0711154 0.155676 0.00670049 +-0.0144639 0.0977101 -0.0275565 +-0.0176152 0.0407641 -0.0279656 +-0.0273216 0.038344 -0.00129213 +-0.0781679 0.14865 -0.00288263 +-0.071113 0.171733 -0.033865 +-0.0362701 0.0365605 0.0458807 +-0.0245074 0.0384654 -0.0082311 +-0.0768529 0.106269 -0.00826114 +0.0173624 0.088714 0.0498122 +-0.0872512 0.106353 0.0133638 +-0.0647985 0.124215 0.0485 +0.0274255 0.0686124 0.0431235 +-0.0275944 0.0717748 -0.0345689 +-0.00449702 0.0590031 0.0543234 +-0.00869265 0.0598566 -0.0344628 +-0.0624896 0.106999 0.0393995 +0.00296819 0.0986498 -0.0244883 +-0.0716108 0.0701594 -0.00639514 +-0.0454969 0.0733342 0.042072 +0.0217583 0.0505253 0.0417779 +0.0599479 0.0692188 0.0141571 +0.0159709 0.0859869 -0.0291978 +0.0474137 0.0671743 0.000684928 +0.045537 0.0890033 0.0131643 +0.025235 0.0690602 -0.0242719 +-0.0140104 0.117853 -0.0148385 +-0.0417786 0.156522 0.00614116 +0.0529468 0.0608894 0.0290245 +-0.0623778 0.167137 -0.0608155 +-0.043781 0.0422821 -0.0183128 +0.0194047 0.0727279 0.0509389 +-0.025431 0.180214 -0.00870569 +0.00163035 0.0962275 -0.0299038 +-0.0609057 0.119508 -0.00974426 +-0.0265539 0.180361 -0.00771033 +-0.00586693 0.104511 -0.0229142 +-0.0446124 0.0534121 -0.0108089 +-0.0607974 0.125499 0.0419374 +-0.0676844 0.160922 -0.0559942 +-0.0718937 0.0376106 0.00231258 +-0.0769618 0.103489 0.0349575 +-0.0136243 0.0450811 -0.0280269 +-0.0656393 0.145367 0.0403005 +-0.067848 0.0994807 -0.015636 +-0.0674005 0.156127 0.0138467 +-0.0814089 0.141772 -0.000809353 +0.0343092 0.113032 0.0252402 +-0.0378129 0.0900392 -0.0237743 +0.0410972 0.0779427 0.031296 +-0.0594968 0.104294 0.0413247 +-0.045045 0.0657131 0.0396946 +0.0424943 0.0569701 0.0318321 +0.0380924 0.0618152 0.0338774 +-0.0181385 0.038277 0.0223668 +-0.0680503 0.114246 0.0489904 +-0.089636 0.0902445 0.0164491 +-0.0259323 0.124597 0.000115117 +-0.0341212 0.124555 0.022076 +-0.0117695 0.075665 -0.0382916 +-0.0666005 0.156329 0.0184798 +0.0143467 0.0580862 -0.0289605 +0.00620145 0.0832401 0.0564613 +-0.07299 0.158232 -0.0339184 +0.0179038 0.0866718 -0.0278625 +-0.0447879 0.085543 -0.0216723 +0.0240528 0.0347605 0.00303304 +0.0471472 0.0437632 0.0216364 +-0.0254743 0.105723 0.0415881 +-0.0914335 0.120003 0.00730918 +-0.0381624 0.035793 0.0434599 +-0.0470742 0.127422 -0.00463291 +0.000501079 0.0620074 0.0565701 +-0.0488714 0.104198 -0.020417 +-0.00949444 0.063336 0.0558203 +-0.0227837 0.0742285 -0.0385317 +-0.00949145 0.115547 0.0400498 +-0.0665386 0.0804536 0.042224 +0.00148883 0.121012 0.0365952 +-0.024281 0.069418 0.0457102 +0.019893 0.114777 -0.0136897 +-0.0904011 0.115144 0.0307537 +-0.00370938 0.0627709 -0.0350699 +-0.00367406 0.0555102 -0.0326331 +-0.0125077 0.0773203 0.0572074 +-0.0574951 0.093265 0.0451928 +-0.0942113 0.120123 0.0212925 +-0.0213358 0.165379 -0.00997448 +-0.0615068 0.0789665 0.042503 +0.00239149 0.0343213 0.0156312 +-0.0639126 0.11101 -0.0139478 +0.0381439 0.103967 -0.00387277 +-0.0816033 0.101897 -0.00556882 +-0.0582639 0.12123 0.0402958 +-0.0729322 0.156105 0.0220745 +-0.0514974 0.086244 0.0456131 +-0.0876158 0.137864 0.0416648 +0.0120082 0.0967361 -0.024421 +0.0147782 0.0929392 -0.0263979 +-0.0510555 0.150177 -0.00351578 +-0.0165661 0.163924 -0.0100865 +-0.00519498 0.0390091 -0.00671136 +-0.021716 0.0641363 -0.0354017 +-0.0523357 0.136679 0.027812 +0.0335961 0.0633113 0.0397473 +-0.0384865 0.0492045 0.0394845 +-0.0339969 0.152567 -0.000573454 +0.0175453 0.0645325 0.0499023 +-0.0895247 0.139293 0.0351741 +-0.0870044 0.115772 0.00228167 +-0.0852267 0.0792333 0.0184927 +-0.0927665 0.116031 0.013321 +-0.0240588 0.111793 -0.0183639 +0.0191819 0.123133 0.0296014 +0.0163312 0.0767998 0.0535416 +-0.0834123 0.0856961 -0.00454328 +-0.0614974 0.0904473 0.0454009 +-0.0648003 0.0370671 0.0164284 +-0.0102366 0.125327 0.0306172 +-0.0512935 0.0556822 0.0305914 +-0.0674962 0.0930678 0.0426016 +-0.0707247 0.156767 -0.045914 +-0.0611468 0.0584317 0.0117762 +0.0152753 0.0680849 -0.0302874 +-0.0638387 0.163409 -0.0592654 +0.030267 0.0496887 -0.0107252 +-0.0227695 0.0684387 -0.0367377 +0.0216497 0.065881 0.0470485 +-0.0849335 0.125015 -0.00321773 +-0.0364959 0.0562316 0.0392716 +-0.0132153 0.0406258 0.0508237 +0.00695506 0.0982177 -0.0239936 +0.00047843 0.12713 -0.00487855 +0.0354045 0.046148 -0.00604177 +-0.0913848 0.129679 0.0322355 +-0.0924762 0.124198 0.0322659 +-0.0057025 0.12744 -0.00517306 +0.032332 0.110047 0.0311032 +-0.0374975 0.0662835 0.0416878 +-0.0306651 0.155159 -0.000638202 +0.0161 0.12839 0.0198796 +-0.0392376 0.124806 0.0231803 +0.00131504 0.0597888 -0.0330641 +-0.0445007 0.0931064 0.043109 +-0.0174373 0.0336888 -0.022956 +-0.0536509 0.0343311 0.0291848 +0.0348249 0.110986 -0.0028353 +0.0280633 0.100998 -0.0169482 +0.0423903 0.0490515 -0.00589339 +0.0306614 0.119205 0.0153072 +-0.0604957 0.0876028 0.045161 +-0.0137303 0.0699989 -0.0380502 +-0.00750341 0.130405 0.00835201 +-0.0494799 0.116621 0.0323892 +-0.058737 0.075302 -0.0183386 +-0.0518764 0.0550741 0.0228473 +-0.0293899 0.118762 -0.0116358 +-0.0743199 0.158257 -0.0279194 +-0.0265758 0.0533991 -0.0263925 +-0.047508 0.0903548 0.0442194 +-0.0104972 0.0815462 0.0580111 +-0.0356136 0.0408304 -0.0293778 +-0.0622824 0.159968 -0.0396048 +-0.0727292 0.0730957 -0.00887693 +0.0252321 0.0889244 0.0471615 +0.0362811 0.0443655 0.0298564 +-0.0583717 0.138143 0.0331568 +0.0516174 0.0711387 0.00464104 +0.00649466 0.0427198 0.0454361 +-0.0187116 0.0598792 -0.0350421 +-0.0603468 0.0339987 0.0210215 +0.0310626 0.107429 0.0345663 +-0.0153967 0.0384283 -0.000805549 +0.0390675 0.0617702 -0.00778266 +-0.0718188 0.0907915 -0.0158595 +-0.0066784 0.0569449 -0.0331859 +0.00738229 0.0448872 -0.0251556 +0.0193881 0.0506007 -0.0247336 +-0.0171345 0.165288 -0.0183426 +0.0172728 0.0694422 -0.0295359 +0.0518225 0.072596 0.0200635 +-0.085483 0.140457 0.00319222 +-0.049383 0.140141 0.0133936 +-0.076884 0.155644 0.0221655 +-0.0584972 0.111135 0.0367864 +-0.0264895 0.102963 0.0427118 +-0.016526 0.0387631 -0.00875803 +-0.060493 0.107007 0.0395303 +-0.0133132 0.0385196 -0.000466347 +0.027107 0.0406036 0.0313674 +-0.0852773 0.137655 0.00128094 +-0.0776954 0.16804 -0.0399638 +-0.0465214 0.0505047 0.038174 +-0.0251912 0.178602 -0.0188241 +-0.0524991 0.101502 0.0417298 +-0.0142894 0.184628 -0.0268303 +0.00710791 0.110158 -0.019992 +-0.0766628 0.155608 -0.00789132 +-0.0814761 0.0734707 0.0145404 +-0.0644951 0.0789605 0.0422031 +0.0403539 0.105584 0.00317596 +-0.0633486 0.0371336 0.0178291 +-0.0808831 0.117721 -0.00384392 +-0.0265027 0.10847 0.0397156 +0.0236097 0.121674 0.028372 +-0.0623736 0.164689 -0.0415928 +-0.0495545 0.0404082 -0.0113965 +-0.0562131 0.054804 -0.00139993 +-0.0418518 0.098529 -0.0215916 +0.0133351 0.058103 -0.0291864 +-0.0594448 0.063179 0.0293052 +0.0113019 0.0652847 -0.0308368 +-0.0783582 0.0994351 0.0350546 +-0.0715439 0.0376425 0.00026118 +-0.0154996 0.112736 0.0400881 +0.0417289 0.0704356 -0.00679567 +-0.0406463 0.127804 0.0152535 +-0.0627661 0.170921 -0.0616075 +-0.0923057 0.12017 0.0426167 +-0.00727442 0.0422617 0.0488857 +0.0350851 0.0848737 -0.0178837 +-0.01578 0.128598 0.00819831 +-0.03217 0.0735917 -0.0275208 +-0.0673634 0.110954 0.0392365 +-0.0271001 0.0779439 0.0468281 +-0.0765081 0.156243 -0.00790412 +0.0277565 0.117474 -0.00457839 +-0.0113381 0.0986434 -0.0265191 +-0.0330823 0.0695155 -0.0204574 +-0.0652177 0.144322 -0.0140816 +-0.0094303 0.0379372 -0.0159242 +-0.0245144 0.0945317 -0.028309 +-0.05375 0.0560385 0.0116204 +-0.0679678 0.0383221 0.0123903 +0.00399334 0.0399971 0.0458959 +-0.0841715 0.0870272 0.0285556 +-0.0274573 0.0734015 0.0426855 +-0.0626773 0.153684 -0.0325991 +-0.0741408 0.105214 0.0369385 +-0.0134986 0.081495 0.0573009 +0.0463327 0.0421886 0.017365 +-0.0644937 0.108375 0.0384047 +-0.0653695 0.151233 0.0366147 +-0.018937 0.178659 -0.0169738 +-0.0820692 0.0748107 0.00351555 +-0.0841353 0.146019 0.0379782 +-0.0148578 0.163977 -0.0174595 +-0.0817263 0.0747702 0.00249857 +0.000235601 0.0740952 -0.0356038 +0.000940682 0.0357179 -0.0155776 +-0.0719363 0.129668 -0.0086833 +0.0301411 0.102934 -0.0150039 +-0.0651961 0.0334974 -0.00275965 +-0.0185844 0.16399 -0.00948536 +-0.0592125 0.042121 0.0445708 +7.57538e-05 0.0369473 0.00366537 +0.0152945 0.0666369 -0.0299356 +0.0410157 0.0739041 0.031202 +-0.0577153 0.0344512 0.0421091 +-0.0920793 0.129683 0.0282033 +-0.0497426 0.0753235 -0.0177986 +-0.0484934 0.047761 0.0395051 +-0.0809803 0.104706 0.0304576 +-0.0746935 0.111142 -0.00760178 +0.0204806 0.109788 0.0388648 +-0.0734977 0.128836 0.0522844 +-0.0426178 0.0520018 -0.0109441 +0.0112198 0.0932651 -0.0287439 +-0.0119274 0.182669 -0.0262872 +0.0145534 0.0347576 0.0376203 +-0.0810222 0.100509 -0.00657927 +-0.0033633 0.038102 0.0128662 +-0.0937861 0.128264 0.0182441 +0.0084061 0.0949783 -0.0285638 +-0.0695902 0.113495 0.0492959 +0.000169576 0.131258 0.0183392 +-0.0931626 0.117374 0.0143043 +-0.0195343 0.112367 -0.0190097 +-0.0524215 0.162453 0.00456363 +0.0184901 0.0879016 0.0492476 +-0.0685433 0.170852 -0.0550244 +-0.087182 0.130813 0.00128919 +0.00130454 0.0641388 -0.0343264 +-0.000757317 0.075519 -0.0359212 +0.0308776 0.0902792 0.0430757 +-0.00578939 0.0386518 0.00278679 +-0.076212 0.155059 0.00635026 +-0.0248315 0.0881388 -0.0362597 +-0.0222598 0.160103 -0.0129456 +-0.00877699 0.0770434 -0.0377883 +-0.06674 0.0383979 0.0141071 +-0.00350265 0.0689326 0.0566398 +-0.0295614 0.0861399 -0.0326125 +-0.0286647 0.125711 0.0122564 +-0.0699648 0.0791315 0.0398469 +0.0142764 0.128727 0.0220636 +-0.0638003 0.110914 0.037425 +-0.0719625 0.135504 -0.00769556 +-0.0527869 0.124083 0.0359567 +-0.0467161 0.0738381 -0.0169211 +-0.0117423 0.070003 -0.0378791 +-0.0517809 0.138537 0.023394 +-0.00482205 0.130969 0.0150835 +0.034711 0.0383001 0.0222555 +-0.00127486 0.120883 -0.0121504 +0.0112227 0.0850587 -0.0310098 +-0.0506063 0.0369029 -0.0119734 +0.0433147 0.0831895 0.0275132 +0.0112941 0.127457 0.0281604 +0.0151622 0.122267 0.032438 +0.0400834 0.082061 0.0334038 +-0.0745622 0.152707 -0.0248951 +-0.0528479 0.141625 0.0244146 +0.0245482 0.035172 0.0211866 +-0.0325075 0.11115 0.0364446 +0.0417109 0.0957641 -0.00380547 +-0.00538241 0.130597 0.0192035 +-0.0649174 0.0364897 0.025021 +-0.0770334 0.158982 -0.013085 +-0.0760388 0.148613 -0.0118618 +0.0283559 0.116347 0.030146 +-0.088594 0.121257 0.00130017 +-0.0268076 0.122539 -0.00562189 +-0.0346629 0.0607102 -0.0125376 +0.0413795 0.0505691 -0.00672382 +-0.0906746 0.1365 0.0201946 +0.00951942 0.100425 0.0477045 +-0.0642867 0.172466 -0.0611328 +-0.0242433 0.172722 -0.0123976 +0.00950564 0.0990636 0.0482467 +0.0101664 0.120462 0.0359466 +-0.0187755 0.107692 -0.0220397 +0.0335012 0.0795469 0.0414506 +-0.0834882 0.14321 0.00316117 +-0.0530161 0.141613 0.0254095 +-0.0395373 0.172163 -0.000837254 +0.0387477 0.0589461 -0.0057234 +-0.0647673 0.0795072 -0.0181104 +-0.00140393 0.0361018 0.00962515 +-0.00524162 0.0395598 0.0483202 +0.0236373 0.103743 -0.0178545 +-0.000477761 0.0760312 0.0584165 +-0.0210492 0.0348694 0.0496408 +-0.00244654 0.131114 0.00878185 +-0.033711 0.0384262 -0.00450177 +-0.0745333 0.152696 -0.0258905 +0.055409 0.0509629 0.0218922 +-0.0134774 0.127753 0.000758007 +-0.0120362 0.0388366 0.0321214 +-0.0278604 0.0487672 0.0470543 +0.0327952 0.0713854 0.0403707 +-0.0728362 0.0979301 -0.0143404 +-0.0367225 0.125751 0.02112 +0.0198232 0.0385183 -0.0126921 +-0.0377749 0.150712 0.00133662 +-0.0665966 0.180807 -0.0581921 +-0.0215095 0.114043 0.0376946 +-0.0620515 0.035927 0.0204607 +-0.0584945 0.150006 -0.0011129 +-0.0335992 0.1188 -0.0116562 +0.0196457 0.116633 0.0356159 +0.0248522 0.0685926 0.0446792 +-0.0164926 0.0544756 0.0504072 +-0.051136 0.140067 0.0203692 +-0.089139 0.139182 0.0122002 +0.0163249 0.0580554 -0.0285 +-0.0621816 0.0342254 0.0257179 +-0.0188821 0.0387745 -0.0111028 +-0.053388 0.034491 0.0395762 +-0.000472072 0.130948 0.0195451 +-0.0634988 0.173693 -0.0615446 +-0.054487 0.0452173 0.0438312 +-0.0202902 0.0906146 -0.0362948 +-0.0725702 0.17984 -0.0501722 +-0.0707759 0.162402 -0.0459559 +-0.0463694 0.113628 -0.0162147 +-0.0523573 0.0345285 0.0397607 +-0.0136632 0.0511316 -0.0317578 +-0.00948303 0.0703233 0.0561585 +-0.0852113 0.0869359 0.026743 +-0.0745333 0.0805197 0.0374668 +0.00349251 0.118288 0.0385113 +0.0493697 0.0693787 0.0250272 +0.029581 0.0736246 -0.0217333 +-0.0400646 0.156235 -0.00986121 +-0.0818113 0.136716 0.048659 +-0.0809364 0.129495 -0.00494346 +-0.0875459 0.110452 0.0143395 +0.0253164 0.112728 0.0350367 +-0.0852858 0.0845126 -0.000515374 +0.00212883 0.120316 -0.0135831 +-0.0192664 0.0381478 0.0114056 +0.0493315 0.0589269 -0.00474568 +-0.0183092 0.162495 -0.00732366 +-0.00730789 0.12834 -0.00208974 +-0.0286194 0.180015 -0.014033 +0.0255963 0.0648009 -0.0228004 +-0.00925832 0.177251 -0.027731 +-0.0485485 0.0432385 -0.0107358 +-0.0600861 0.14609 -0.00280453 +-0.026172 0.174158 -0.0190728 +-0.059111 0.0686528 0.0369372 +-0.0434854 0.0944868 0.0426487 +-0.0216341 0.038095 0.0200103 +-0.0670537 0.071446 0.0363402 +-0.0348255 0.0915164 -0.024068 +-0.0202598 0.174222 -0.0154191 +0.0344662 0.114921 0.00815778 +-0.0686919 0.0750175 -0.0147112 +0.026272 0.0789381 -0.0240124 +0.0202522 0.0805604 -0.0270674 +-0.0432329 0.156565 0.00586077 +-0.00650833 0.0787624 0.0577507 +-0.0335034 0.0774945 0.0414157 +-0.0606769 0.0676671 -0.0113119 +-0.0656284 0.162324 -0.0174746 +0.00729944 0.0639619 -0.0320669 +-0.00448657 0.0898027 0.0567005 +-0.0584972 0.0918588 0.045399 +0.00218731 0.0852799 -0.0344916 +-0.0417916 0.0869783 -0.0214259 +0.0463392 0.0489694 -0.00446687 +-0.0389761 0.128486 0.00847309 +0.00727028 0.11232 0.040519 +-0.0234564 0.0680424 0.0463484 +-0.0797185 0.0803984 0.0327643 +0.0232549 0.0645506 0.0458531 +0.0198821 0.0449543 0.0425235 +-0.0394974 0.0902763 0.0431118 +-0.0662858 0.172388 -0.0591199 +0.0259452 0.0364961 0.0239139 +-0.0714148 0.0386609 0.00057855 +-0.0638254 0.0924713 -0.0188016 +-0.0584874 0.112515 0.0360801 +-0.0623619 0.166253 -0.047591 +0.0452758 0.0875665 0.00218329 +-0.0244115 0.0379996 0.0159179 +0.0452209 0.0659646 -0.000116442 +-0.0707693 0.176767 -0.0466577 +-0.0650223 0.156803 -0.0519494 +0.0354173 0.0414682 -0.003097 +-0.0416808 0.0622091 -0.0130274 +0.0326595 0.114633 -0.00147403 +-0.0495274 0.14168 0.00739502 +0.0388579 0.0970015 -0.00784 +-0.00249575 0.0389742 0.0303561 +0.0070795 0.101453 -0.021277 +0.0291938 0.0754716 0.043989 +0.00502464 0.126695 -0.00649713 +-0.016158 0.0884114 -0.0380198 +0.0115883 0.102988 -0.0210311 +0.0576451 0.0661396 0.0235216 +0.0317192 0.118031 0.0171382 +-0.0116954 0.175688 -0.0223293 +0.00121183 0.0853285 -0.0350521 +-0.0158308 0.0883117 -0.038067 +-0.0686258 0.0846974 0.0427491 +0.00833511 0.0595736 -0.0302453 +0.0450509 0.0423962 0.0206492 +-0.027467 0.0793682 0.0471485 +-0.0679777 0.0716192 0.0360049 +-0.0718018 0.158195 -0.0399213 +-0.0114987 0.0856547 0.0572923 +0.0131441 0.0346685 0.0356066 +-0.0620328 0.156862 -0.0185851 +-0.0607717 0.113836 0.03657 +-0.0764751 0.146968 0.0421376 +-0.0207673 0.117009 -0.0138783 +0.0416942 0.0655359 -0.00371801 +-0.0306051 0.0524133 -0.0153638 +0.0107636 0.130209 0.0207729 +-0.0902734 0.133771 0.0282153 +-0.0235934 0.0383252 0.00311252 +-0.012672 0.0526484 -0.0327744 +-0.0309385 0.0622798 -0.0204312 +-0.0337803 0.122942 0.0251825 +-0.0598823 0.146825 0.0363335 +-0.0447526 0.0336781 0.00121434 +-0.0540428 0.0334293 -0.000440359 +0.0119421 0.123166 0.0332435 +0.0105328 0.103079 0.0462759 +-0.00696577 0.0389018 -0.00510709 +-0.033478 0.0632761 0.0395519 +-0.0386238 0.0519962 -0.0107523 +-0.0778526 0.159695 -0.0239243 +-0.0154805 0.109966 0.0416657 +-0.0688005 0.087996 -0.0171065 +-0.0428494 0.0999447 -0.0214282 +0.02441 0.101163 -0.0191142 +-0.0630974 0.160042 -0.0195595 +-0.0591899 0.154851 0.0254882 +-0.0694874 0.100005 0.0406788 +-0.063101 0.150495 -0.0266018 +-0.000774843 0.0783346 -0.0358957 +-0.0335129 0.112536 0.0351002 +0.00348618 0.11278 0.041408 +0.0454091 0.0918015 0.00517469 +-0.030521 0.0636541 -0.0224277 +-0.0564983 0.108415 0.0389345 +-0.0454982 0.045182 0.0420491 +0.0366564 0.089932 -0.0151793 +-0.00318743 0.0350129 0.0463208 +0.0397193 0.0787183 -0.00974279 +-0.0456155 0.165496 -0.00783315 +-0.0401614 0.110268 -0.0187071 +-0.0607836 0.171276 -0.0609166 +-0.0849643 0.0885105 -0.00254627 +0.000663768 0.131541 0.0142252 +-0.0773558 0.163115 -0.0213545 +-0.00442024 0.118937 -0.0140576 +0.029367 0.1045 -0.0146741 +-0.0767078 0.176155 -0.0445645 +-0.087862 0.117151 0.00226309 +-0.0674561 0.1652 -0.0559896 +0.0417828 0.101446 0.0181564 +-0.0504972 0.0465484 0.0414292 +0.0334855 0.0808915 0.0414362 +-0.0640951 0.0700461 0.0364211 +-0.0500004 0.121197 0.0329094 +-0.0640156 0.0344353 0.0303981 +0.0161688 0.0407187 0.0441528 +-0.0175288 0.165418 -0.0114925 +-0.0156111 0.0407209 -0.0274801 +-0.0136265 0.129395 0.0133241 +-0.060628 0.0588072 0.00794551 +0.0064803 0.0977098 0.0499318 +0.0439772 0.079046 -0.00278888 +0.0418428 0.0986036 -0.00180869 +-0.0225444 0.178667 -0.0133919 +-0.0606264 0.0336734 0.0105944 +-0.0434 0.0336807 -0.00215159 +-0.0886031 0.143176 0.0340326 +-0.0849284 0.107666 0.0223625 +0.0592303 0.0580467 0.0201933 +-0.0540206 0.147182 -0.0016614 +-0.00601913 0.126314 0.0306279 +-0.0686207 0.149674 -0.0393499 +-0.0919325 0.130933 0.0102425 +-0.0568299 0.143897 0.0319274 +-0.0354984 0.115235 0.0327878 +-0.0174958 0.0701523 0.0542792 +0.0270421 0.0862601 0.0462384 +-0.0488595 0.101383 -0.02158 +-0.0733679 0.152652 -0.0338969 +-0.0750934 0.159541 -0.00936327 +-0.0374543 0.155389 -0.00975319 +-0.0381729 0.166677 -0.0130206 +-0.087877 0.0990467 0.0233782 +-0.00160432 0.0405525 -0.0251988 +-0.0903048 0.139241 0.0221876 +-0.00139541 0.0385701 0.0219096 +-0.0221672 0.0839099 0.0558332 +-0.000827607 0.0389424 0.0289209 +-0.0177093 0.0385258 -0.00321073 +-0.0221552 0.169733 -0.0198584 +-0.0574718 0.156359 0.0101234 +0.0162407 0.0793143 -0.0294472 +0.0309621 0.0953572 -0.0169293 +-0.0167051 0.126576 2.44266e-05 +-0.0210968 0.161053 -0.00432438 +-0.0244887 0.100244 0.0443393 +-0.0637376 0.15365 0.0326508 +0.0154945 0.115387 0.0371086 +-0.0110238 0.098585 0.0502027 +-0.0466991 0.122484 0.0270727 +0.015569 0.110589 -0.0172093 +-0.0540772 0.146211 0.0253916 +0.0117081 0.0589891 0.0519593 +-0.0289244 0.033884 -0.0216457 +-0.08784 0.105023 0.0143674 +0.0262802 0.123151 0.0136687 +0.0122982 0.128768 0.0241985 +0.0428587 0.0803554 -0.00479839 +-0.0249679 0.0851951 0.0529639 +0.0259953 0.123127 0.0078705 +-0.000612836 0.0356605 0.0156316 +0.0462948 0.0820457 0.00817944 +-0.0179779 0.15947 -0.0103936 +-0.0237993 0.184341 -0.0145966 +-0.0300075 0.0337589 -0.0217484 +0.0233024 0.124378 0.00401489 +-0.0457643 0.0811616 -0.0200148 +-0.0786005 0.174957 -0.0470491 +0.00992987 0.0806149 0.0548353 +-0.036507 0.0464425 0.0402005 +-0.0229776 0.0681076 0.0472951 +0.0359077 0.111056 0.0244077 +-0.0691331 0.0612207 0.0112337 +-0.0653605 0.174136 -0.0490346 +-0.0246777 0.0366811 0.0541279 +0.00549638 0.115538 0.0397987 +-0.0512593 0.128575 -0.00377835 +-0.0227541 0.0889021 -0.0365754 +-0.052801 0.144689 0.0203903 +-0.0373724 0.0344314 0.0325332 +0.0302609 0.0461225 0.032895 +-0.0668934 0.119448 -0.00885989 +-0.0781478 0.107183 -0.00659237 +-0.0262448 0.109573 -0.0200299 +-0.0930011 0.116069 0.0193086 +0.0199447 0.104671 0.0430468 +-0.0902973 0.114585 0.00733567 +-0.0597131 0.0708022 -0.0154129 +0.011503 0.0909852 0.0534706 +-0.0601621 0.0433793 -0.00606772 +-0.0690356 0.068492 0.0314599 +-0.0662201 0.0390045 0.0360529 +0.0111444 0.104428 -0.02004 +-0.0620602 0.155611 0.00849054 +0.038029 0.105425 -0.00179734 +0.00952421 0.0346423 -0.0128865 +-0.0475328 0.0338333 0.0273813 +0.0275059 0.121239 0.00414409 +-0.0713739 0.162409 -0.0439557 +-0.0388285 0.0339925 0.000319116 +0.0209713 0.0966458 -0.0223043 +-0.0117867 0.0798822 -0.0383021 +-0.00231276 0.123919 -0.0094032 +-0.0623035 0.158393 -0.0375989 +-0.0498834 0.108435 -0.0190271 +-0.0450959 0.122461 0.0255697 +-0.086583 0.1077 0.0153543 +-0.0640141 0.128346 0.0443555 +-0.0910616 0.140621 0.0211716 +0.0222184 0.122028 -0.00352468 +-0.0197563 0.0685528 -0.0378978 +-0.0747315 0.0809443 -0.0125955 +0.0381487 0.056188 -0.00571384 +0.0310862 0.0808926 0.0432566 +-0.0418955 0.0336683 0.02694 +0.0454971 0.0861837 0.00419421 +-0.0515955 0.0575054 -0.00888629 +-0.0923422 0.120143 0.0302906 +-0.0388134 0.0900157 -0.0235053 +-0.0678286 0.139237 -0.00787376 +-0.0500776 0.136736 0.0219567 +-0.0524826 0.132311 -0.00383544 +-0.0725073 0.154019 -0.0378993 +-0.0164965 0.114086 0.0389356 +-0.0266334 0.0505574 -0.0257305 +0.0285947 0.0646316 0.0430307 +-0.050498 0.10288 0.0412159 +-0.0147348 0.0348101 0.0475803 +-0.0147627 0.0728806 -0.0387608 +-0.0425799 0.160887 0.00499665 +-0.0516371 0.0334814 0.00180973 +-0.0574972 0.0973516 0.04313 +-0.0294813 0.179959 -0.00726258 +-0.0696084 0.159782 -0.00738408 +-0.00175707 0.0783385 -0.0360812 +-0.0778906 0.0797955 -0.00863863 +0.0383322 0.0928141 0.0344469 +-0.0459579 0.0368224 -0.0202942 +0.0126438 0.130236 0.0157508 +0.0370668 0.109719 0.0231776 +-0.0650007 0.0600171 0.0167571 +-0.0294928 0.0931993 0.044345 +-0.0849548 0.0952071 0.0290738 +-0.0314917 0.0660582 0.0391556 +0.0283827 0.10475 0.0376855 +0.0125555 0.034405 -0.0178251 +0.0407099 0.0684593 0.0306869 +-0.0321086 0.163743 -0.0150961 +0.00529533 0.064011 -0.0326857 +0.0428516 0.0972538 0.000192155 +0.0475361 0.0451237 0.0241502 +-0.0188094 0.0382725 0.0240343 +-0.0242622 0.0650295 0.043001 +-0.0247852 0.0783802 -0.0377363 +0.0104929 0.0923225 0.0529394 +-0.0684671 0.140894 -0.00832284 +-0.013606 0.0435021 -0.0266802 +-0.0324058 0.05963 -0.0134049 +-0.0709313 0.156768 -0.044906 +-0.0794975 0.113845 0.0467655 +0.0215945 0.126233 0.0147739 +-0.0653369 0.0416124 0.0352199 +0.0546053 0.0733755 0.0137165 +-0.0893171 0.0996957 0.0173941 +-0.0835863 0.0817078 0.00050138 +0.029436 0.039931 -0.00313898 +-0.0614917 0.0661812 0.0332998 +-0.0923901 0.114734 0.0183133 +0.030053 0.0567138 -0.0167759 +-0.00342912 0.0915905 -0.0351346 +-0.0758824 0.100651 -0.0113429 +-0.0457293 0.0348843 0.042622 +0.00615023 0.0385922 -0.00780619 +-0.0547458 0.0768339 -0.0193157 +-0.0356142 0.0493225 -0.0125317 +0.024593 0.0345639 0.00705834 +-0.0892328 0.114145 0.0245988 +0.0348936 0.0586201 -0.0127038 +-0.0828513 0.138047 0.046826 +0.0569539 0.0508846 0.00918952 +-0.0797103 0.0711205 0.00752586 +-0.092065 0.118755 0.0273051 +-0.0103683 0.0388061 0.0306894 +-0.0431813 0.165147 -0.00997877 +-0.0813565 0.109598 0.0300528 +0.0477122 0.0511499 0.0301456 +-0.0678831 0.155252 0.000581516 +0.0349362 0.113582 0.0211925 +0.0280387 0.0549866 0.0403705 +-0.0615433 0.125505 0.042614 +0.0450739 0.0427888 0.00232236 +-0.0544975 0.121335 -0.0101688 +0.0117318 0.0833298 0.0539432 +-0.0144997 0.103011 0.0432504 +-0.0752992 0.149965 -0.0228671 +0.0196742 0.0686359 0.0495084 +-0.0394722 0.107013 0.0383007 +-0.0321381 0.0435397 -0.0289857 +0.0231687 0.0915577 0.0477207 +-0.0480905 0.156132 -0.00685995 +0.00882114 0.0589209 0.053036 +0.000540453 0.0731645 0.0574875 +-0.0842824 0.0818436 0.0235004 +-0.072066 0.0353469 0.00817017 +-0.0548518 0.122696 0.0382478 +-0.0283817 0.123518 -0.00261643 +-0.0178271 0.0855379 -0.0388455 +-0.00772146 0.0656018 -0.0354736 +0.0230836 0.12416 0.0238853 +-0.0125037 0.0730609 0.0559849 +0.0551355 0.0581678 0.0268835 +-0.0288448 0.124881 0.0180835 +-0.0566945 0.126945 0.0390945 +-0.0491155 0.0337431 -0.0125383 +-0.0100076 0.130157 0.0146359 +-0.0114787 0.0934019 -0.0350786 +-0.012503 0.0856552 0.057236 +-0.00822614 0.0384527 0.0224267 +-0.0288615 0.0353967 0.01735 +-0.035527 0.115134 -0.015836 +-0.085501 0.0791776 0.00851156 +0.0457594 0.0890174 0.0101642 +-0.0775133 0.126 0.0528602 +-0.0598229 0.0911123 -0.0198104 +0.0349018 0.0698502 -0.0158378 +-0.00371064 0.0641813 -0.0350983 +-0.0232497 0.0336668 -0.0221987 +-0.0337721 0.121485 -0.00843946 +0.0123855 0.0603174 0.0511841 +-0.0454994 0.0804154 0.0426755 +0.00893209 0.124393 0.0330753 +-0.00403191 0.0987119 0.0511654 +-0.0481285 0.0573264 0.0358964 +-0.0166099 0.0407431 -0.0277394 +-0.0440479 0.169839 -0.00695693 +0.0412738 0.0872408 -0.00977382 +-0.0604546 0.071762 0.0392488 +0.0529297 0.0581906 0.02898 +-0.0521631 0.138551 0.0244099 +-0.0366167 0.15106 0.000396988 +0.0417493 0.0611977 -0.0033567 +-0.070996 0.0683351 -0.00354604 +-0.0356709 0.0621736 -0.0130441 +-0.0170991 0.0383232 0.0225362 +-0.0487856 0.0573034 0.0351442 +0.022412 0.0372285 0.0333476 +-0.0249633 0.0931679 0.047071 +0.018008 0.0349409 0.0291289 +-0.0796085 0.154132 0.0271276 +-0.0406237 0.0336557 -0.0200198 +0.0169165 0.123099 -0.00667688 +0.0210051 0.0618768 0.0478546 +-0.0427644 0.0812202 -0.0203472 +-0.0672645 0.175508 -0.0482636 +-0.0639988 0.121381 0.0479339 +-0.0622266 0.158391 -0.0366041 +-0.0261802 0.161053 -0.0142499 +0.0186318 0.0821747 0.0516425 +-0.00531922 0.0961442 -0.0318294 +0.00250665 0.0341604 -0.0175888 +0.0167477 0.0563074 0.0486799 +-0.0106808 0.0555967 -0.0338825 +0.00925016 0.0724976 -0.0328208 +0.0123553 0.0552818 -0.0294499 +0.0212602 0.0735043 -0.0271352 +-0.0845249 0.129883 0.0501389 +-0.0764965 0.154899 -0.0050946 +-0.0621627 0.163132 -0.0395927 +-0.0144955 0.0701698 0.0547379 +-0.0084766 0.0489124 0.0500846 +-0.000135712 0.0381648 -0.0142912 +-0.0503963 0.1183 0.0322871 +-0.0761087 0.083292 0.0375324 +-0.0736943 0.094184 0.0404336 +-0.0691138 0.0763852 0.0387083 +-0.0290376 0.038297 0.000217512 +-0.0348553 0.0342935 0.020715 +-0.0220444 0.0384934 -0.0170721 +-0.0114987 0.0471911 0.0478612 +0.0375264 0.0714822 -0.0127977 +-0.0282394 0.087664 0.0462444 +-0.0757136 0.107486 0.0366393 +-0.0610115 0.134041 -0.00711168 +-0.0797372 0.0717415 0.00518109 +-0.0658978 0.147832 -0.0279808 +-0.00653882 0.110902 -0.0214831 +0.0296673 0.0591775 0.0410177 +-0.0217889 0.0696447 0.0502694 +0.0234089 0.0418644 -0.00766906 +-0.0364935 0.0888766 0.0431732 +0.0306541 0.0520995 0.0370911 +-0.060098 0.0687043 0.0366734 +0.0187338 0.0862153 -0.0273821 +-0.0839692 0.148747 0.00414299 +-0.0354821 0.0561791 0.038801 +-0.0481382 0.0376145 0.0455768 +-0.0676248 0.117206 0.0513943 +-0.0281854 0.174153 -0.0178233 +0.0359289 0.0386712 0.0221633 +-0.0256851 0.0824232 0.052338 +-0.0145953 0.0363242 -0.0264317 +-0.0303622 0.055196 -0.0183802 +-0.00165167 0.0525486 -0.0310164 +-0.0132125 0.168083 -0.022507 +-0.00949762 0.078776 0.0580091 +-0.0361357 0.127268 0.00216052 +0.048778 0.0525636 0.0299433 +-0.0256526 0.0520956 -0.0269974 +-0.0603733 0.0335628 0.0071663 +-0.0426157 0.035917 -0.0271302 +-0.0144999 0.162187 -0.0103051 +-0.0384864 0.0548303 0.0394681 +-0.0831442 0.107611 0.0263767 +-0.00111933 0.100971 -0.0229536 +-0.0548742 0.10693 -0.0184788 +-0.0218282 0.127027 0.00889322 +-0.0174982 0.111166 -0.0197324 +-0.0652616 0.0722487 0.0377992 +-0.0576238 0.145329 0.032529 +-0.0184507 0.117417 -0.0143314 +-0.081937 0.128034 -0.00496911 +0.0195332 0.12729 0.0154357 +-0.0293484 0.0705264 -0.0315108 +-0.00525979 0.0409541 0.0483014 +0.0555717 0.0706847 0.00515518 +-0.048428 0.0531039 0.036022 +-0.00279611 0.0826469 -0.0371795 +-0.0287124 0.0382592 0.00213562 +-0.0574984 0.0959784 0.0439666 +-0.091525 0.133725 0.0172151 +-0.016864 0.128415 0.0107007 +-0.0636978 0.164648 -0.0286005 +-0.0829735 0.127181 0.0515051 +-0.0488321 0.0956358 -0.0221459 +0.0400863 0.0899903 -0.0108207 +-0.0619683 0.12268 0.0437909 +0.0605435 0.0650981 0.0101416 +-0.0665542 0.169448 -0.0580509 +-0.0891009 0.0902275 0.0204481 +-0.0825815 0.112383 0.0454387 +0.0104883 0.0936688 0.0521003 +0.0142529 0.0765304 -0.0302113 +0.0165164 0.126586 0.0257514 +-0.0283423 0.118847 0.030216 +0.0142697 0.034212 -0.000289798 +-0.0478723 0.105599 -0.0198923 +-0.0739256 0.098177 0.0391323 +-0.049674 0.141672 0.0123895 +-0.0475977 0.15214 0.0100027 +-0.0424553 0.128377 0.00131486 +0.0224361 0.0645464 0.046427 +-0.0885609 0.087538 0.0184581 +0.0147132 0.0897404 -0.0290836 +-0.054132 0.143048 0.0274248 +0.00550441 0.0575487 0.0534334 +-0.0772682 0.155563 -0.0118971 +-0.0677628 0.079419 -0.0170759 +-0.0464924 0.159333 0.00779524 +0.0261579 0.0768253 0.0466356 +-0.0552963 0.0473377 0.0123212 +-0.0298441 0.0972531 -0.0235715 +-0.00563259 0.0974901 -0.0292726 +-0.0261993 0.095287 -0.0250572 +-0.0716941 0.0684125 -0.00254325 +0.00127365 0.0682996 -0.0335875 +0.0575871 0.0523587 0.0191771 +-0.00134429 0.0361889 0.0150058 +-0.0715096 0.1041 0.0379435 +-0.0921823 0.117455 0.0412015 +-0.0384872 0.0337149 -0.0296051 +-0.0287365 0.0475545 0.0479663 +-0.0257999 0.0422849 0.0537317 +-0.0230963 0.124618 -0.00175855 +-0.0924128 0.11471 0.0173177 +-0.00492025 0.0362041 0.048453 +-0.0186551 0.184576 -0.0164922 +-0.0802253 0.0772741 0.0285988 +0.0463015 0.0806481 0.0121762 +-0.0304105 0.0861968 -0.0305753 +-0.0346214 0.0348242 0.0450553 +-0.0652339 0.0355811 0.0395373 +-0.0788426 0.0825957 -0.0096075 +-0.0127163 0.038878 -0.00996632 +-0.0624916 0.166267 -0.0445898 +-0.0746075 0.156859 -0.0239292 +-0.0773753 0.161145 -0.0179242 +-0.0883931 0.1336 0.00326444 +-0.0661323 0.162373 -0.0581655 +-0.0510928 0.12386 -0.00885828 +-0.0384971 0.0705176 0.0419076 +-0.0723264 0.176481 -0.0540086 +-0.0271072 0.11707 -0.0138992 +-0.0591735 0.11954 -0.0102201 +0.0222809 0.11936 0.0323905 +-0.0302503 0.17123 -0.00702025 +-0.0809167 0.107332 -0.00361395 +-0.0627188 0.046051 0.00845692 +-0.00639449 0.0347093 0.0459249 +-0.0877048 0.0873692 0.00346654 +-0.0410427 0.15478 -0.00878846 +-0.069373 0.0655009 0.0252048 +-0.0270649 0.0689032 -0.0335294 +0.00976243 0.126251 0.030462 +-0.002483 0.114172 0.0414823 +-0.0532846 0.152692 0.0160461 +-0.0190668 0.12797 0.0127969 +-0.0645056 0.0818668 0.0436415 +-0.0144784 0.0645279 0.0535035 +-0.0598098 0.08825 -0.0201729 +-0.0614957 0.105649 0.0403113 +-0.0278003 0.174225 -0.00868668 +-0.0525152 0.0439969 0.0448982 +-0.00749319 0.0503553 0.0512463 +-0.0786706 0.0853441 -0.0105854 +-0.0447185 0.0709976 -0.0171011 +-0.0635722 0.0753573 0.0407707 +-0.0124985 0.0603974 0.0541523 +0.0344134 0.0655586 -0.0158419 +0.0196499 0.124334 0.0268969 +-0.0627763 0.0614875 0.0230054 +0.0416143 0.102832 0.00217563 +-0.0552881 0.147721 0.0283494 +-0.0143864 0.174216 -0.0192271 +0.0144149 0.0343798 -0.00603429 +-0.0101902 0.177186 -0.0254506 +0.0284808 0.120403 0.0230436 +-0.0149461 0.0384961 0.0282276 +-0.0778803 0.0710945 0.0220932 +-0.042083 0.168351 -0.00985967 +-0.056782 0.043535 0.0167171 +0.0143083 0.122234 -0.00973054 +-0.0266054 0.0916781 -0.031606 +-0.00249278 0.121064 0.0370013 +-0.0199096 0.0382242 0.00758286 +-0.0135056 0.0842656 0.0572305 +-0.0720125 0.148777 -0.0357596 +0.0251623 0.118606 -0.00580398 +-0.0618325 0.0334319 -0.000212632 +-0.0855476 0.136296 0.00125685 +-0.032605 0.0408975 -0.030074 +0.0426847 0.0986805 0.020158 +-0.00736899 0.0366982 -0.0162506 +0.00250252 0.0590979 0.0551087 +-0.0674921 0.106947 0.0382762 +-0.0289938 0.16114 -0.00164375 +-0.0509402 0.0584984 0.0315938 +-0.0350845 0.124972 -0.00417237 +-0.0686385 0.0435335 0.00569826 +0.0441509 0.0959467 0.0161545 +0.0131317 0.10725 -0.0189993 +0.0358259 0.0928903 0.0378885 +-0.0154981 0.060248 0.0524646 +0.0276762 0.118315 -0.00350857 +-0.0683312 0.0833327 0.042485 +0.033847 0.106899 -0.00922375 +0.048317 0.0466984 0.0256626 +-0.0570131 0.128126 -0.00643112 +-0.0788672 0.111379 -0.00271807 +0.0115311 0.122019 -0.0114981 +0.0275945 0.106191 -0.0144774 +-0.0591334 0.0584459 0.00677121 +-0.0780191 0.149419 0.0383262 +-0.0559631 0.0464314 -0.00541258 +-0.0192836 0.0894928 -0.0371367 +-0.033131 0.166707 -0.0157536 +-0.0495065 0.107045 0.0392662 +-0.073496 0.147014 0.0424214 +-0.0404833 0.111172 0.036485 +0.0284708 0.0565571 -0.0188308 +0.0511996 0.0711486 0.0227866 +-0.0681397 0.0738079 0.0376094 +-0.0905331 0.135117 0.0212107 +-0.0733037 0.155556 0.00591793 +0.0500217 0.0446984 0.00624267 +-0.00949805 0.0815484 0.0580308 +0.0211117 0.124199 0.0260136 +-0.0611133 0.149657 0.036321 +-0.0635959 0.153475 0.00125628 +0.0344187 0.0994578 0.0359067 +-0.0734442 0.163812 -0.0389777 +-0.0852938 0.0858468 -0.00152115 +-0.0559297 0.13815 0.0313829 +-0.0870302 0.13217 0.00132034 +0.0204036 0.0474506 -0.0212729 +-0.076548 0.0954614 0.0376104 +-0.0855527 0.153551 0.0192298 +-0.0729125 0.0928513 0.0411123 +-0.0404958 0.0478428 0.0400733 +-0.0121854 0.0980546 -0.0279084 +-0.0464966 0.108432 0.0393098 +-0.0177034 0.0569685 -0.0340386 +-0.0908687 0.135097 0.0172074 +-0.0862565 0.0846802 0.0214754 +-0.0297808 0.0348722 0.0494682 +-0.0764922 0.155931 0.0149956 +-0.0618119 0.115344 0.0386033 +-0.0487475 0.0767781 -0.0183253 +-0.0907804 0.150219 0.0191245 +-0.0524535 0.0335708 0.023045 +-0.0384946 0.0577019 0.0400515 +-0.074873 0.151297 -0.0278802 +0.00653661 0.120619 -0.0139577 +-0.0483957 0.0389613 0.0452757 +-0.0779524 0.165292 -0.0269536 +-0.0536531 0.0334694 0.00682116 +-0.0561549 0.118392 0.0380484 +-0.0201622 0.0337128 -0.0216346 +-0.0794073 0.0772395 -0.00557672 +-0.0135947 0.071631 0.0548042 +-0.0382622 0.0335792 -0.0232089 +-0.0183288 0.115615 -0.0164437 +-0.0507515 0.0768088 -0.0186854 +-0.0176367 0.181628 -0.0186063 +0.001434 0.0980064 0.0516014 +0.00449684 0.131467 0.00706378 +-0.0839655 0.111209 0.0317911 +-0.0769529 0.128149 -0.00749249 +0.0471199 0.0728094 0.00697834 +0.0460243 0.0737836 0.00392327 +-0.00149572 0.0505531 0.0529099 +-0.0431936 0.0363833 0.0440447 +-0.054345 0.151005 0.0266856 +0.00514071 0.12498 -0.00862525 +-0.0729614 0.112778 0.0490933 +0.0152498 0.0348445 0.0304622 +-0.0111539 0.0386404 0.0270766 +-0.0431779 0.113636 -0.0162215 +-0.0754447 0.164601 -0.0189193 +-0.0685657 0.0346013 0.0116976 +0.036686 0.110763 0.0218417 +-0.058015 0.128168 -0.00680186 +-0.0805084 0.121673 0.0499202 +-0.0750852 0.174913 -0.0410877 +-0.0394764 0.081876 0.0433844 +-0.01065 0.0383969 0.0147482 +-0.0236788 0.0551648 -0.029679 +-0.0207747 0.0728486 -0.0387932 +0.00733312 0.0553775 -0.0306811 +-0.0497252 0.137033 0.00342407 +-0.0650198 0.154365 0.0307072 +0.00051428 0.0383337 0.0225142 +-0.0625323 0.1568 -0.0366082 +-0.00383551 0.130671 0.00539431 +0.0310854 0.118732 0.00690653 +-0.0699388 0.131128 -0.00863643 +-0.023911 0.123885 -0.00309916 +-0.0495628 0.0402984 0.0453668 +-0.0639487 0.168098 -0.0606895 +-0.0706835 0.155594 0.0053992 +-0.0686442 0.156175 0.0235781 +-0.0572185 0.0575347 0.00867749 +-0.0788442 0.154658 0.0259054 +-0.0721793 0.15961 -0.0389315 +-0.0545051 0.119806 0.0369329 +-0.0254081 0.182912 -0.0140439 +-0.0729406 0.0676849 0.0243239 +-0.0353285 0.0851433 -0.0237512 +-0.0478735 0.104217 -0.0205651 +-0.0558395 0.0589131 -0.0044052 +0.0448613 0.0903726 0.0191701 +0.0576189 0.0719687 0.0133447 +-0.0511061 0.129858 -0.00316533 +-0.00880359 0.113633 -0.0183799 +-0.0618121 0.09105 -0.0190303 +0.0313027 0.114101 -0.00492854 +-0.042497 0.0874008 0.0424798 +-0.0508473 0.0970748 -0.0222124 +-0.0654906 0.102864 0.0410679 +-0.00458022 0.0347745 -0.0240516 +0.0553581 0.0524903 0.0236336 +0.00626754 0.071137 -0.0337471 +-0.0135115 0.118298 0.0374588 +-0.0604029 0.0342918 0.0295439 +0.0406411 0.0462159 0.0309092 +-0.0278584 0.0385169 -0.0108032 +0.0266728 0.0713177 0.0438181 +0.0101968 0.116422 0.0377394 +0.0446411 0.0959729 0.00816419 +-0.0597937 0.0334415 0.000190139 +-0.0210999 0.0811322 0.0562803 +-0.0474593 0.0559824 0.0367034 +0.0340242 0.115407 0.0165889 +0.0416569 0.0832977 0.0303966 +0.0340782 0.100772 0.035418 +-0.0604756 0.0747304 0.0414998 +0.0147905 0.128825 0.0208219 +-0.00109958 0.115152 -0.0180337 +-0.0237291 0.0650733 0.0438813 +-0.0261862 0.17712 -0.0185723 +-0.0381348 0.0338853 -0.0178771 +-0.0323789 0.115075 -0.0157884 +0.0168479 0.0856792 -0.0288312 +0.0383914 0.0390949 0.00219016 +0.0192558 0.0721931 -0.0285132 +-0.0837506 0.0776431 0.00349824 +0.00549734 0.0937843 0.053579 +0.0381875 0.10978 0.0131678 +-0.0707773 0.0822058 -0.016572 +-0.0623556 0.0337533 -0.00969501 +-0.0657944 0.0348418 0.0348835 +0.029813 0.0605585 0.0412449 +-0.067274 0.142559 0.0431983 +-0.00437946 0.039206 0.0351678 +-0.091267 0.130919 0.00823808 +0.056791 0.0717301 0.0086079 +-0.088725 0.0942104 0.00844208 +-0.0527517 0.076824 -0.0190661 +-0.075716 0.071204 0.0277224 +-0.0296574 0.175524 -0.0164728 +0.0201633 0.0535759 0.04656 +0.00320624 0.036422 0.0229702 +0.0192058 0.0834241 -0.02764 +-0.0918136 0.129556 0.00925121 +0.0276788 0.117119 0.0298812 +-0.0251464 0.0824617 0.0532115 +-0.0728771 0.154609 0.0294193 +0.00904539 0.03456 0.0402645 +-0.0534903 0.102908 0.0413848 +0.00940878 0.0389595 -0.0232113 +-0.0859627 0.109007 0.009354 +-0.0484951 0.0903851 0.0445307 +0.00263147 0.0345612 0.0425417 +-0.0770465 0.161776 -0.0174081 +0.0134975 0.104436 0.0449316 +-0.0388918 0.123217 0.0263098 +-0.0364947 0.112507 0.0349484 +-0.0629025 0.103986 -0.017642 +-0.0678178 0.0923118 -0.0167386 +-0.0689104 0.122371 -0.00889897 +-0.0255023 0.125351 0.00317915 +-0.000607228 0.0419595 -0.0248688 +0.0460131 0.0820178 0.0051921 +-0.0223034 0.0381733 0.0107634 +-0.0861005 0.10314 0.0243088 +-0.0674874 0.0958602 0.0421807 +-0.0538319 0.138205 -0.00152003 +-0.0199623 0.0624791 0.0486773 +-0.0187732 0.0946942 0.0521396 +0.0415957 0.0859827 0.0303559 +-0.0405006 0.0562797 0.0399754 +-0.0396087 0.0392284 -0.0278507 +-0.0203015 0.124709 0.0241059 +-0.0667178 0.127063 0.0492263 +-0.0727925 0.0893223 -0.0156729 +0.0370031 0.104683 0.029035 +0.0279524 0.103456 0.0388242 +-0.0186121 0.038597 0.0291868 +-0.0776508 0.152845 -0.000892884 +-0.0334818 0.0987718 0.0435747 +0.0329891 0.092935 0.0408139 +0.0391956 0.0712805 0.0337887 +-0.0631802 0.0590341 0.0144269 +-0.0537547 0.143134 0.0264016 +-0.0301924 0.153974 -0.00357072 +-0.0448379 0.0970765 -0.0217835 +0.00941817 0.0340541 0.000745803 +-0.0432126 0.168352 -0.00885275 +0.0554664 0.0549257 0.00120797 +-0.0225677 0.0932815 0.0503229 +-0.0524989 0.157892 0.00946562 +0.0390425 0.0953983 0.0320312 +0.04296 0.0817702 -0.00479044 +0.00635062 0.0510121 -0.0292209 +-0.0543105 0.149562 0.0267072 +0.0221931 0.100779 0.0445472 +0.0329366 0.0724958 -0.0177814 +0.0248886 0.114037 0.0344109 +-0.0550232 0.14424 -0.00134547 +0.0163915 0.04625 -0.0239163 +0.0177475 0.036867 -0.0166881 +-0.0617992 0.0867358 -0.0192812 +-0.0893599 0.133717 0.0406984 +-0.039718 0.0695625 -0.0162922 +-0.0089161 0.0389771 0.0326408 +-0.0245194 0.0879123 0.052427 +-0.0855508 0.0883229 0.0270467 +-0.0419398 0.0356984 0.00899705 +-0.0715816 0.0791203 0.0388191 +-0.0444898 0.0690526 0.0411578 +-0.070025 0.173518 -0.0406121 +-0.0628508 0.0981808 -0.0176907 +-0.0750322 0.144421 -0.00688246 +-0.0499825 0.0544896 0.033589 +-0.065333 0.177827 -0.0606985 +-0.0316114 0.123192 0.0229888 +-0.0760927 0.0805105 0.0361956 +-0.0370838 0.0486029 -0.013278 +-0.0785283 0.124553 0.0522615 +-0.0708435 0.0731956 0.0357937 +-0.0403104 0.0336344 -0.0180813 +-0.0609885 0.0628534 0.0274979 +-0.0323315 0.0624018 -0.0174393 +-0.0368547 0.100015 -0.0221726 +-0.0783796 0.172116 -0.0450441 +-0.0633655 0.139636 -0.00706655 +0.00173262 0.13137 0.0174841 +-0.0105091 0.0646847 0.0553841 +0.0266795 0.122765 0.0152477 +-0.0360635 0.034528 0.0238485 +-0.0541027 0.122637 0.0375656 +-0.0544908 0.0344999 0.0341095 +0.0176998 0.103348 0.0450658 +-0.0685644 0.145677 -0.0229009 +-0.0356468 0.0577276 -0.0110125 +-0.0696054 0.110911 0.0424293 +-0.0584669 0.0577494 0.0129387 +-0.0398029 0.0870085 -0.0218621 +-0.00967624 0.104885 -0.0231041 +0.00669982 0.0383228 -0.00932299 +-0.0609169 0.109692 -0.0160089 +-0.0646221 0.122809 0.0487379 +0.0174813 0.0865744 0.0503122 +-0.0067878 0.0386876 0.00254936 +-0.0628956 0.119461 -0.00917238 +-0.0404347 0.128451 0.0123721 +0.0304082 0.04464 -0.00596234 +0.00950687 0.0785812 0.0553914 +-0.0185636 0.161122 -0.00592394 +-0.0407009 0.066639 -0.0151117 +-0.0638844 0.0392942 0.0408356 +0.00208256 0.0392848 0.0328214 +-0.0891635 0.0901786 0.00945748 +-0.0714603 0.0390724 0.00325296 +0.0396909 0.105526 0.00119339 +-0.092918 0.118828 0.0342968 +-0.0809093 0.0912865 0.0336272 +0.0106278 0.12033 -0.0136749 +-0.079254 0.149169 0.0379325 +-0.0700516 0.177913 -0.0570165 +-0.0584973 0.0875674 0.0446281 +0.0363875 0.037641 0.0177175 +-0.0266625 0.178341 -0.0176816 +-0.0257516 0.0380733 0.00834253 +-0.0514727 0.147804 0.0154008 +-0.0475605 0.047528 -0.00960427 +0.0464078 0.0756596 0.0165703 +-0.0659757 0.132606 -0.00839654 +-0.0795255 0.0953936 0.0349279 +-0.0512091 0.118302 0.0328718 +-0.00441308 0.12096 -0.0123131 +-0.0322918 0.0358193 0.0288559 +-0.0907178 0.142015 0.0241681 +-0.0555193 0.152453 0.0283051 +-0.044345 0.152142 0.00768226 +0.0241695 0.0809229 0.0490966 +-0.0528659 0.0999263 -0.0216782 +-0.0669331 0.125307 -0.0088761 +-0.0303567 0.119073 0.029499 +0.025846 0.107916 -0.0143268 +-0.0617056 0.1325 0.0388812 +-0.0185965 0.0364224 -0.0275796 +-0.0207908 0.0384714 -0.00378381 +-0.0617181 0.0598008 0.019418 +-0.0474373 0.120726 0.0283448 +0.0366967 0.103968 -0.00783268 +0.0303183 0.0797251 -0.0205953 +-0.0317074 0.0436869 0.0496355 +-0.0623412 0.156794 -0.0356173 +-0.0765015 0.121776 0.0527715 +-0.0184879 0.122208 0.0309285 +0.0230909 0.103393 0.0423419 +0.0609018 0.0651278 0.0131549 +0.00916248 0.0355108 0.0268151 +0.0313289 0.0554154 -0.0147753 +-0.0025035 0.108652 0.0433127 +0.0546992 0.0478618 0.0141962 +-0.0620154 0.0689049 0.0360997 +-0.0388626 0.102809 -0.0208006 +-0.0555708 0.142434 0.0301615 +-0.0688026 0.146519 -0.0258522 +0.0194777 0.0878818 0.0491927 +-0.0228793 0.110931 -0.0194728 +-0.0324125 0.0849398 -0.0275574 +-0.0438855 0.03574 0.0440005 +-0.0917791 0.117463 0.0421754 +-0.0690116 0.129833 0.0494501 +-0.0743362 0.15411 -0.0219057 +-0.0638117 0.0867138 -0.0190744 +-0.045027 0.168395 -0.00690925 +0.0270479 0.080882 0.0462053 +-0.0114995 0.164138 -0.0150087 +-0.0325011 0.058955 0.0382451 +-0.0606931 0.0692955 -0.0138548 +-0.0566913 0.0572662 0.0137312 +-0.00649633 0.0488329 0.050181 +0.0223101 0.120965 0.030775 +-0.0805231 0.0993639 0.0329828 +-0.0644795 0.0959078 0.0429389 +-0.075154 0.17882 -0.048244 +0.00607351 0.0358936 0.0456569 +-0.035492 0.0648204 0.0410644 +-0.0576415 0.155076 0.0216791 +-0.0762945 0.152787 -0.0118902 +-0.00761327 0.0434711 -0.0261832 +-0.0814624 0.13163 0.0517276 +-0.0743185 0.067053 0.0192856 +-0.0842709 0.104792 0.000381661 +-0.0374161 0.12162 -0.0106267 +0.0282004 0.082909 -0.0218038 +-0.0538885 0.131144 0.0343613 +0.0268226 0.046511 -0.0137061 +-0.0500801 0.151654 -0.00422617 +-0.0843259 0.153929 0.0166903 +-0.0840259 0.124392 0.0498267 +-0.0906893 0.11752 0.0439252 +-0.0636773 0.162484 -0.0225185 +0.0362915 0.0534119 -0.00658438 +-0.0733102 0.0700068 0.0292571 +0.0432125 0.0858656 0.0273897 +0.0392299 0.108358 0.0101653 +-0.0357967 0.0383351 -0.00483874 +-0.0645865 0.0628123 -0.00359236 +-0.0838768 0.108986 0.0253683 +-0.0538875 0.139905 -0.00121756 +0.0463511 0.0764838 0.0150474 +0.0180384 0.119266 -0.0105437 +-0.0812898 0.0735018 0.0165324 +-0.0437426 0.076832 -0.018848 +-0.0489995 0.126854 0.0308899 +0.00913686 0.107291 -0.0199257 +0.0413467 0.0718054 -0.00779903 +-0.0407607 0.126285 -0.00553285 +-0.0564807 0.113914 0.0357075 +-0.0477527 0.149202 0.00972608 +-0.0737025 0.144377 -0.00986626 +-0.0237128 0.058121 -0.0313582 +-0.0884618 0.142054 0.0361609 +-0.00450592 0.0661541 0.056364 +-0.0448888 0.108464 -0.0189265 +-0.0531399 0.13506 -0.0028018 +0.0308728 0.114122 0.0296728 +-0.0120858 0.0382274 0.0182274 +0.045976 0.0820209 0.01617 +-0.0474955 0.0344671 0.0303636 +0.0116443 0.129846 0.0210966 +0.0429126 0.0775596 -0.00475805 +-0.0639176 0.122377 -0.00881224 +-0.0219078 0.0581082 0.0451165 +-0.0185957 0.118181 -0.0131167 +-0.0381658 0.165183 -0.0131497 +-0.0445045 0.0438483 0.042919 +-0.0464974 0.074738 0.042075 +-0.0819901 0.133862 -0.00285904 +-0.0633534 0.0445301 0.031682 +-0.0314905 0.0960436 0.0448087 +-0.0575997 0.0574661 0.0133658 +-0.0303698 0.154176 -0.00601441 +0.0133009 0.0666579 -0.0304883 +0.0108109 0.0819726 0.0543646 +-0.068057 0.178404 -0.0514469 +-0.0806807 0.0760273 -0.00253172 +0.0394926 0.0541437 0.0318453 +-0.00450121 0.0675415 0.056336 +-0.019491 0.0387907 0.0342254 +0.0147818 0.0631153 0.0511723 +-0.0291704 0.172664 -0.0174314 +0.0262968 0.070421 -0.0238548 +-0.0421212 0.159153 -0.0103433 +-0.0367588 0.172073 -0.0125043 +-0.0196292 0.117165 -0.0140584 +-0.042525 0.149193 0.00498605 +-0.0175612 0.186044 -0.0184493 +0.0221884 0.0973608 -0.0216774 +-0.0197019 0.0568866 -0.0331333 +-0.045504 0.0832988 0.0437099 +-0.0212803 0.0387041 -0.0133833 +-0.0770943 0.154164 -0.0118975 +-0.0484907 0.0833394 0.0445457 +-0.0238036 0.0798229 -0.0381557 +-0.0372926 0.0394674 -0.0291193 +-0.00273038 0.0683735 -0.0347173 +-0.0659296 0.14253 0.0416232 +0.0452769 0.0467388 0.0283148 +-0.0898014 0.11587 0.00528404 +0.0263587 0.0577877 0.0432503 +-0.0486968 0.067904 -0.0141574 +-0.0893812 0.113196 0.0217139 +-0.0841444 0.110242 0.00330414 +-0.0631329 0.17411 -0.0535854 +0.0348962 0.0387881 -4.46661e-05 +0.0431163 0.0888383 0.0261767 +-0.0444887 0.166716 0.00379579 +-0.0235591 0.0953745 -0.0271663 +0.0455985 0.0918132 0.00816712 +-0.0917403 0.12555 0.0418871 +-0.0890224 0.136404 0.0092064 +-0.0364114 0.175555 -0.00996795 +-0.0345906 0.0727451 -0.0199624 +0.0429111 0.040977 0.0196984 +0.00148534 0.0385845 0.0464325 +-0.0585016 0.0973698 0.0431908 +-0.0484982 0.0819185 0.0441136 +0.00821862 0.116409 0.0384227 +0.0456517 0.0413562 0.00923967 +-0.0769167 0.0873975 0.0382106 +-0.061867 0.101123 -0.0184855 +0.0202898 0.124676 0.0257091 +-0.0101432 0.130124 0.0117041 +-0.0138894 0.183111 -0.0237643 +-0.0707552 0.0792696 -0.0152786 +0.0465284 0.0761532 0.0136843 +-0.0888827 0.140531 0.0122011 +-0.0659605 0.110851 0.0377691 +-0.0638988 0.109582 -0.0144399 +0.0445103 0.0541956 0.0324876 +-0.0545376 0.0335773 0.0172858 +0.0156666 0.0726831 0.0525311 +-0.0224929 0.0448955 0.0530527 +0.00250097 0.0897336 0.0558646 +-0.0427601 0.128938 0.0129983 +-0.0749067 0.100837 0.0372176 +0.0100662 0.0792875 0.0550109 +0.031592 0.0738009 -0.0197207 +-0.0295595 0.111353 -0.0178807 +-0.0265381 0.155425 -0.00506198 +0.0110253 0.0793101 0.0546505 +0.0455932 0.0834007 0.019176 +-0.00963497 0.0389293 -0.00939263 +-0.0740278 0.157006 -0.00316778 +0.026879 0.121193 0.00250168 +-0.0840153 0.1376 0.000355984 +0.00144074 0.0344391 0.0153316 +-0.062494 0.0746373 0.0407954 +-0.0714338 0.100882 0.0394174 +-0.0511894 0.0558131 0.0154354 +0.0142545 0.0887312 0.0523539 +-0.0217647 0.0699552 -0.0378816 +0.042865 0.0958458 -0.000810373 +-0.0225278 0.18149 -0.0200273 +-0.0516224 0.0545433 -0.00792825 +-0.0894416 0.0943032 0.0194238 +-0.0450754 0.033637 -0.0171737 +-0.0189216 0.122512 -0.00768052 +-0.0278603 0.101566 -0.0234492 +0.0273313 0.094554 -0.020088 +-0.0568394 0.145329 0.0319256 +0.0299199 0.11779 -0.000781916 +0.0345811 0.0368089 0.0162808 +0.0130795 0.0927597 -0.0282037 +0.0239979 0.0768543 0.0488301 +-0.0560741 0.15232 0.0295584 +-0.0713082 0.165213 -0.0459899 +0.0214853 0.0948038 0.0473574 +-0.0124976 0.0472007 0.0479814 +0.0101747 0.096292 -0.0259611 +-0.0424942 0.0916602 0.0426604 +-0.000674255 0.10997 -0.0204918 +-0.0731036 0.0721584 0.0326952 +-0.0863191 0.0806349 0.0164939 +-0.0174959 0.0984963 0.0451272 +-0.0516134 0.0334804 0.007228 +0.0210892 0.0521114 0.044364 +-0.0767842 0.155599 0.0119802 +-0.0737106 0.0699801 -0.00251138 +0.0277999 0.0727164 0.0436883 +0.0605691 0.0637105 0.0171755 +-0.0720961 0.156364 0.000513559 +-0.0818934 0.154016 0.0102104 +-0.0184806 0.169783 -0.0146335 +-0.073631 0.173473 -0.03767 +-0.0385075 0.0888951 0.0435504 +-0.056184 0.0374619 -0.0105738 +-0.0164629 0.0616668 0.0525376 +-0.0214965 0.0525299 0.044709 +-0.0324599 0.0722556 -0.0254696 +-0.0781568 0.167257 -0.0305864 +-0.0633087 0.117017 0.0436447 +-0.084428 0.138004 0.0455627 +0.0287818 0.0480764 -0.0117305 +-0.0706135 0.175903 -0.0451833 +-0.0430742 0.0335089 -0.0222312 +0.0203664 0.0506236 -0.0244327 +-0.0807714 0.153393 0.00628177 +-0.0784635 0.138605 0.0489019 +-0.0754126 0.068174 0.019879 +-0.0105025 0.0773598 0.0576687 +-0.0399608 0.0418525 -0.0253044 +-0.0880973 0.137764 0.00820327 +-0.0862825 0.106347 0.0193454 +-0.0114851 0.123708 0.0326887 +-0.00700917 0.0348727 0.042072 +-0.0760973 0.0851761 -0.013541 +0.0421377 0.0912242 0.0276147 +0.0298218 0.119509 0.00500708 +-0.0550443 0.148674 -0.00204704 +-0.0107558 0.0386486 -0.0149703 +0.00849857 0.118254 0.0373924 +0.0373294 0.0848074 0.0364738 +0.0506886 0.0511228 0.0274131 +-0.0538924 0.106961 -0.0186698 +-0.0735555 0.105459 0.0371635 +-0.0532563 0.0343869 0.0309731 +-0.015483 0.0938222 0.0546278 +0.0454513 0.052559 0.0321398 +0.032601 0.100801 0.0367685 +-0.0688527 0.142579 0.0444582 +-0.0908832 0.150197 0.0161314 +-0.0811312 0.129963 0.0524484 +0.00846909 0.111301 0.0401143 +-0.0622744 0.0344133 0.0342699 +-0.0343155 0.0340522 0.0192395 +-0.0869096 0.111745 0.0223587 +0.0507656 0.0446256 0.0152142 +-0.0767707 0.151403 -0.00690852 +-0.00150011 0.103045 0.0440564 +-0.051019 0.147224 -0.00224048 +-0.025918 0.122982 0.0235755 +-0.0527617 0.0461943 0.0216742 +-0.0178184 0.0841429 -0.0390768 +-0.0345091 0.0461323 0.043875 +-0.0623881 0.149093 -0.0125752 +-0.0809179 0.0761444 0.0241516 +-0.00945917 0.175708 -0.0257473 +-0.0334992 0.0704401 0.0410454 +-0.0886682 0.141939 0.0121971 +-0.0120612 0.0383071 0.0127308 +-0.0853843 0.0980412 -0.000554198 +-0.0325205 0.0646875 0.0393461 +0.0503466 0.0615208 -0.00363326 +0.00449283 0.103624 -0.0217086 +-0.0698084 0.085099 -0.0171261 +0.0438316 0.0832073 0.0263179 +-0.0486418 0.0576652 -0.0108452 +0.0123248 0.0609207 -0.0293142 +0.0429772 0.0902337 -0.00478341 +-0.0619824 0.166238 -0.0535924 +0.0140441 0.0406072 0.0445814 +0.00249558 0.116934 0.0396534 +0.018473 0.0989902 0.0468145 +-0.0169827 0.0385945 -0.00497776 +0.0309161 0.0955754 0.0413413 +-0.0735982 0.110276 0.0438156 +-0.0903629 0.11521 0.0252935 +-0.0566835 0.124286 -0.00724626 +-0.0620082 0.134045 -0.00734981 +0.00521493 0.0852237 -0.0334342 +-0.0903999 0.124268 0.0448512 +0.0114719 0.1182 0.0365719 +0.0344326 0.0414166 -0.00330414 +-0.0403754 0.124077 -0.00919956 +0.0484547 0.0702338 0.00359645 +-0.0285016 0.113902 0.0349068 +-0.0526285 0.0596472 0.0276152 +-0.0325191 0.174119 -0.0148634 +-0.0204902 0.108532 0.041306 +0.010276 0.076623 0.0552854 +0.0133781 0.0537725 -0.0285433 +0.0402901 0.0698645 0.0318359 +0.0401742 0.0671588 0.0316675 +-0.0866887 0.120341 0.0484058 +0.0245253 0.0875975 0.0479106 +-0.050498 0.0890212 0.0452499 +-0.0598028 0.0853759 -0.0202992 +0.0354525 0.106753 -0.0069512 +0.0111874 0.0630268 0.0529412 +-0.0416003 0.12872 0.00602836 +0.0443487 0.0533892 -0.00643258 +-0.0229394 0.0985982 0.0448104 +-0.0678177 0.0894605 -0.0172539 +-0.0826703 0.0762102 0.00250991 +-0.0152189 0.172708 -0.0246075 +-0.0748382 0.0978559 -0.0133191 +0.0284295 0.0955564 0.0430179 +-0.04802 0.136068 0.0153684 +-0.0475691 0.0489734 -0.00936479 +-0.0813576 0.0734641 0.0155425 +-0.07594 0.14997 -0.0178724 +-0.0649871 0.152354 -0.0372683 +-0.0229947 0.122243 0.0275866 +-0.0108296 0.0855471 -0.0384547 +-0.0447583 0.0336472 -0.00973579 +-0.041838 0.0942787 -0.0228038 +-0.038857 0.101401 -0.0214118 +0.00839351 0.0342854 -0.0184828 +0.0436422 0.0748109 -0.00280304 +0.00409443 0.101828 -0.021842 +-0.0194474 0.054231 0.0477027 +0.0410346 0.0752467 0.03121 +0.0588047 0.0677091 0.00614939 +0.021598 0.10091 -0.0208238 +-0.0696323 0.156261 0.0232204 +-0.086966 0.0846591 0.00747852 +-0.0660124 0.176151 -0.0507054 +0.0425261 0.101486 0.00616657 +0.0305131 0.0418181 0.0291512 +-0.0554982 0.113948 0.0354054 +-0.0763852 0.108818 0.0389983 +-0.0785959 0.152697 0.00118419 +0.0184567 0.127794 0.00934393 +0.0105917 0.043143 0.0448676 +-0.0719858 0.0346482 0.00381826 +-0.0341243 0.0335931 -0.0280196 +-0.0564439 0.115317 0.036137 +-0.0928438 0.126838 0.0112559 +-0.0661071 0.164936 -0.0219713 +-0.0665376 0.142546 0.0425061 +-0.0167827 0.0388081 0.0329676 +-0.0614351 0.156032 0.020314 +0.0388231 0.106965 0.0221712 +0.0247856 0.0449735 0.0390757 +-0.0324984 0.0788891 0.0412743 +-0.068331 0.155325 0.0280685 +0.0267262 0.114038 0.0335472 +-0.0888783 0.111909 0.0103621 +-0.0772308 0.0920788 -0.012603 +0.0457689 0.0431024 0.0219801 +0.0474981 0.0737139 0.0139878 +-0.061487 0.0746791 0.0411579 +-0.0861526 0.148758 0.00721004 +0.0341879 0.0913684 -0.0166968 +-0.0200728 0.100101 -0.0240875 +-0.0286491 0.125506 0.0152069 +-0.0268606 0.0378639 0.0137313 +-0.0352216 0.0346633 0.0327857 +-0.0444613 0.12936 0.0182577 +0.0373383 0.0740435 0.0363986 +0.00751373 0.0869673 0.0561316 +-0.0888328 0.0942898 0.0224093 +0.00897858 0.127106 -0.00499333 +0.0363106 0.0994119 0.033375 +-0.0448194 0.0913346 -0.0221278 +0.000368669 0.0466323 -0.0286891 +-0.0606782 0.0639978 0.0300882 +-0.0735086 0.078138 -0.0125733 +-0.0358361 0.11045 -0.0189078 +0.0300578 0.0632721 0.0416198 +0.0173543 0.0349384 0.0362289 +-0.0104845 0.10863 0.0429333 +-0.0265155 0.115287 0.0336658 +0.0257868 0.0967214 -0.0203669 +0.0255714 0.119263 0.0291067 +-0.0404457 0.119913 -0.0128413 +-0.0596429 0.0622343 0.0265494 +-0.0522074 0.122732 -0.00965468 +0.00419216 0.0340885 -0.0190827 +-0.0614977 0.108395 0.0385563 +-0.0154933 0.0392591 0.0382209 +0.0568425 0.0592039 0.0011688 +0.033494 0.0619462 0.0395497 +0.0378948 0.0699732 0.0354084 +-0.0643687 0.155314 0.00767719 +-0.017163 0.124753 -0.00408239 +-0.0892062 0.128127 0.00426293 +-0.058497 0.101559 0.0426268 +-0.00170163 0.130406 0.0219933 +0.0258358 0.123453 0.0120756 +0.0200283 0.102079 0.0449293 +-0.0034976 0.0965806 0.0535793 +-0.0805988 0.090913 -0.0086158 +0.0307316 0.091606 0.0428217 +0.0293141 0.095566 0.0425395 +0.011103 0.0779768 0.0547588 +-0.0912353 0.14886 0.0211316 +0.0484812 0.0443317 0.021366 +-0.00581925 0.0868408 -0.0369183 +-0.0454559 0.0902978 0.0432333 +-0.0346794 0.119765 -0.0106544 +-0.00349323 0.113677 -0.0184484 +-0.0434907 0.101526 0.0420227 +-0.0385061 0.0986889 0.0419871 +-0.0599081 0.112539 -0.0152225 +-0.0242322 0.124794 -0.000701199 +0.0400813 0.104202 0.0221684 +-0.0828121 0.0830332 0.030132 +0.0159137 0.128436 0.00413586 +-0.0645186 0.0597262 0.00993302 +-0.0324512 0.0353306 -0.0309147 +-0.0484861 0.137101 0.00939484 +-0.0304745 0.0860755 0.0433189 +0.0188415 0.121733 -0.00718615 +-0.0643746 0.145275 -0.0151376 +0.0208541 0.11855 -0.00976629 +0.037465 0.0434297 0.0291248 +0.0517879 0.0461689 0.0072143 +-0.0837871 0.0829476 0.0282971 +-0.0917215 0.129668 0.0302355 +-0.0261628 0.0674202 -0.0335157 +-0.0631555 0.156855 -0.014582 +0.043463 0.077603 -0.00378219 +-0.0602407 0.058232 0.0121428 +-0.0458636 0.102811 -0.0213024 +-0.038884 0.108506 -0.019659 +-0.0705258 0.142815 0.0451961 +-0.0781039 0.070111 0.0193756 +-0.0758474 0.109198 0.0406016 +-0.0318501 0.0986369 -0.02282 +-0.038215 0.0471675 -0.018189 +-0.0134374 0.0516868 0.0502089 +0.0151412 0.0754034 0.0535569 +-0.043493 0.105703 0.0408668 +-0.0822959 0.0773319 0.0228488 +0.0452717 0.0903987 0.0151606 +0.0159567 0.120613 0.0338084 +-0.0623049 0.142641 -0.00633906 +0.000467241 0.105823 0.0432483 +-0.0177409 0.0671746 -0.0379913 +-0.0891252 0.0889064 0.0184472 +-0.0678748 0.125664 0.0510849 +-0.0337468 0.127104 0.0118588 +-0.0518684 0.102767 -0.0207881 +0.00221584 0.0364728 0.00081639 +-0.0296253 0.0759773 0.0411397 +0.00226876 0.0682822 -0.0333186 +-0.0542457 0.0574384 0.01981 +-0.0659991 0.136994 -0.00799651 +-0.00357593 0.127459 -0.0052112 +0.0103564 0.0538895 -0.0297771 +0.0272815 0.0718243 -0.0235929 +-0.0123281 0.0344052 -0.018857 +0.0416155 0.0404142 0.0199255 +-0.0106878 0.0598858 -0.0348312 +-0.0305006 0.116618 0.0322439 +0.0427332 0.084569 0.0284544 +-0.0712328 0.151001 -0.0437008 +0.0423623 0.0944394 0.0261744 +-0.000687654 0.0583509 -0.0327859 +-0.0779789 0.136876 -0.0051311 +-0.0657518 0.0780369 -0.0174491 +-0.0789069 0.155396 0.0141592 +-0.0701046 0.156748 -0.048906 +0.0281353 0.0593598 -0.0207767 +-0.066567 0.147777 -0.0287654 +-0.0167976 0.0383562 0.00264497 +-0.0708835 0.160996 -0.0449446 +0.0230988 0.111339 0.037076 +-0.0237033 0.091176 -0.0348871 +-0.0477118 0.073839 -0.0167643 +-0.0540526 0.0334248 -0.00589512 +-0.0535445 0.0389126 -0.0111352 +0.00251277 0.0675114 0.055914 +-0.0324736 0.0532348 0.0372028 +-0.0416459 0.056333 -0.0114534 +-0.0460476 0.0363198 0.0451262 +-0.0215027 0.163915 -0.00845889 +-0.0530817 0.139518 0.0266624 +-0.00971954 0.0656257 -0.0358484 +-0.0175293 0.038199 0.0153321 +-0.0388176 0.128112 0.00411022 +-0.0579212 0.120852 -0.00959233 +-0.0215953 0.03793 -0.0285032 +0.00849245 0.0473031 0.0488481 +-0.045123 0.157633 -0.00869072 +-0.0845016 0.0911794 -0.00456302 +-0.0130394 0.0384127 0.00153612 +-0.0054932 0.111405 0.0422861 +-0.00614297 0.0385457 0.0227705 +-0.0588822 0.108299 -0.017343 +-0.0647452 0.0766241 -0.0174472 +0.0333079 0.0768384 0.0411622 +-0.0345058 0.0704863 0.0415356 +-0.00385823 0.0988046 -0.0266644 +-0.0940576 0.125561 0.0242759 +-0.0406606 0.156554 0.00601794 +0.0458479 0.0724092 0.00333418 +-0.0536298 0.0345249 0.0429297 +0.0422446 0.0760949 -0.00580476 +0.0305908 0.106106 0.0356297 +-0.0744956 0.13026 0.0524093 +-0.060795 0.0853339 -0.0197774 +-0.0659276 0.123847 -0.00897257 +-0.0587952 0.0334058 0.000425547 +-0.0355002 0.111108 0.0360398 +0.0106562 0.0589179 0.0524466 +0.0220342 0.108737 -0.0152173 +0.0414017 0.104253 0.00516521 +-0.0487319 0.132909 0.0254731 +-0.073147 0.0648981 0.0178865 +-0.0655672 0.149686 0.0379738 +-0.0866855 0.14466 0.00818677 +-0.0690156 0.163795 -0.0519803 +0.0474899 0.0664975 0.0274045 +-0.0693729 0.175081 -0.056043 +-0.0811978 0.140383 -0.00182247 +-0.0609117 0.111106 -0.0154828 +-0.027448 0.125478 0.0053817 +-0.0601827 0.0460596 0.0101722 +-0.0116048 0.0377441 -0.0259987 +-0.0623577 0.147557 -0.00658086 +-0.0635933 0.167459 -0.0411888 +-0.0420303 0.153306 -0.00761985 +0.0045298 0.102977 0.0440255 +-0.0571296 0.124118 0.0402058 +-0.010491 0.0487865 0.0492904 +-0.00149595 0.0911539 0.0561263 +-0.0644925 0.0903995 0.0447493 +-0.0621097 0.156825 -0.0345957 +-0.0626845 0.0455625 -0.000282658 +-0.054778 0.0344845 0.0375447 +-0.0704967 0.156763 -0.0469167 +-0.0501084 0.0429877 0.0445637 +-0.074873 0.120838 -0.00772479 +0.0354301 0.112103 0.00127449 +-0.0218649 0.103029 -0.0235712 +-0.09096 0.148814 0.0141536 +-0.0645626 0.0459512 0.00669838 +0.0314584 0.111437 -0.00809824 +-0.022876 0.0362943 -0.0189473 +-0.0428901 0.0435976 -0.0193145 +-0.0746823 0.0663852 0.00625465 +-0.0476209 0.0547841 -0.0103184 +-0.0197585 0.171251 -0.0147167 +-0.0705035 0.0901829 0.0418541 +0.0494272 0.0628335 -0.00296645 +0.0266028 0.105322 -0.0155495 +0.0202061 0.126966 0.0100746 +0.013717 0.127103 0.0275992 +0.00956448 0.122301 -0.0117968 +-0.0846111 0.084433 -0.00253466 +-0.0889485 0.13651 0.0272017 +-0.000398103 0.0385343 0.0221462 +0.0428913 0.0402636 0.016655 +-0.0531156 0.156084 -0.00339606 +-0.0586999 0.141645 -0.00399496 +0.0175889 0.0549386 0.0481228 +0.0242735 0.0576737 -0.0247443 +-0.0435028 0.0548283 0.0392794 +-0.0509876 0.0343016 0.0280109 +-0.0371778 0.128019 0.00618657 +-0.067159 0.152634 -0.0476967 +-0.0524481 0.115128 -0.0157418 +-0.00787248 0.0390234 0.0328097 +-0.0368889 0.109941 -0.0191779 +0.0473251 0.0497353 0.0295737 +-0.0155015 0.10721 0.0425067 +-0.0607907 0.0609394 -0.0015406 +0.0214998 0.0358071 0.0181694 +-0.0152794 0.114388 -0.017154 +-0.0618553 0.153745 -0.0235803 +-0.00541506 0.100313 0.0476265 +0.0438051 0.0987511 0.0101628 +-0.0274965 0.0973724 0.0435854 +0.0448746 0.0601039 -0.00424277 +0.031559 0.0460718 0.0312637 +-0.0615188 0.0448284 0.0115308 +-0.0397761 0.115072 -0.015742 +-0.0918654 0.131039 0.0272344 +-0.0646035 0.156332 -0.00986181 +0.0383993 0.0413521 -0.00190432 +-0.026722 0.0386646 -0.0162927 +-0.0736148 0.0995067 0.0387799 +0.006499 0.119638 0.036869 +0.0405971 0.101404 0.0241737 +-0.0944613 0.121476 0.0212834 +-0.0105851 0.0337493 -0.0235512 +-0.0799934 0.136838 -0.00393652 +0.0529009 0.0462649 0.0122044 +-0.0539028 0.11125 -0.0176614 +0.00874316 0.130156 0.0228898 +0.0260633 0.114349 -0.00924148 +0.0113837 0.0449118 -0.0251572 +-0.0461015 0.150679 0.0086365 +0.00236523 0.128663 -0.00254763 +-0.0158845 0.0910066 -0.0366604 +0.0456174 0.0890068 0.0121612 +-0.0634393 0.144588 -0.0113838 +0.0175304 0.120577 0.0333463 +-0.0256229 0.0463679 -0.0270847 +-0.0606463 0.0343588 0.0329219 +-0.0622926 0.149098 -0.0115749 +-0.0266239 0.0463597 -0.0270834 +0.0142234 0.0864184 -0.0301272 +-0.0242795 0.0383175 -0.000652306 +-0.0599506 0.0340585 0.0228145 +-0.031899 0.0595768 -0.0154053 +0.0335035 0.0686838 0.0396083 +-0.00350655 0.105885 0.0441283 +-0.00849376 0.0576353 0.0542501 +-0.0596861 0.0693591 -0.0143393 +-0.0246408 0.0382637 -0.00251941 +0.0142384 0.0723592 -0.0308856 +0.0360996 0.112682 0.0101589 +0.00650478 0.0989998 0.0481043 +-0.0406764 0.0344836 0.0353061 +0.0208126 0.114503 -0.0133998 +-0.0664042 0.0385079 0.0306689 +-0.00851871 0.0471234 0.047663 +-0.0607941 0.143953 0.0367655 +-0.0469959 0.06153 0.0374819 +-0.0566078 0.0521283 0.00668717 +-0.0117953 0.0827249 -0.0387188 +-0.0651684 0.0346977 0.0334093 +0.0334291 0.0781951 0.0413414 +-0.00319773 0.0384234 0.00715593 +-0.0255204 0.115294 0.0339151 +-0.070852 0.100833 -0.0142398 +-0.0647775 0.0824087 -0.0188685 +0.0351918 0.0673501 0.0385292 +-0.0201767 0.0929008 -0.0346271 +-0.0292631 0.0351386 0.0510616 +-0.0487306 0.0345868 0.0335095 +-0.0909618 0.13376 0.0242167 +-0.0399614 0.0343338 -0.0130933 +0.0409886 0.0643095 0.0292691 +-0.0656099 0.0655077 0.0295065 +0.0113576 0.0509388 -0.0282254 +-0.0831709 0.101988 -0.00359129 +-0.0345055 0.113874 0.0339275 +0.0308648 0.0460986 0.0320207 +-0.023595 0.180085 -0.0196757 +0.056025 0.0493916 0.0151904 +-0.0805557 0.0977534 -0.00758611 +0.0084218 0.0346373 0.0418695 +-0.0774116 0.159696 -0.0249188 +0.0602932 0.0636878 0.00814035 +-0.0302474 0.125253 0.00290344 +-0.0741812 0.074527 0.0339368 +-0.0636646 0.15831 -0.045603 +-0.0332687 0.15271 -0.00392746 +0.0267163 0.0450608 -0.00869474 +0.0351226 0.0921155 -0.0154837 +-0.0278275 0.158128 -8.54892e-06 +-0.0771542 0.152814 -0.00588992 +0.00726262 0.0682112 -0.0321527 +-0.0590296 0.0424919 -0.00727859 +-0.0604873 0.0987275 0.0428004 +-0.0916073 0.128323 0.0352449 +0.0474407 0.0661575 -0.000283122 +0.03984 0.106962 0.00517391 +-0.0609078 0.155801 0.00889681 +-0.00849418 0.114178 0.0409373 +0.00894357 0.0819404 0.0551438 +-0.0767684 0.0756527 -0.0076025 +-0.0670227 0.0607355 0.00842954 +-0.0186908 0.0510113 -0.0307584 +-0.0706351 0.0733936 -0.01149 +-0.026674 0.0382695 0.00254021 +0.0585127 0.0649229 0.00410871 +0.0241246 0.0605253 0.0453245 +0.0172623 0.073643 -0.0290458 +-0.0564969 0.111123 0.0367634 +0.0543584 0.0674371 0.0258007 +-0.0511173 0.128308 0.0330935 +-0.075231 0.151315 -0.0248804 +-0.0492462 0.132382 0.000177088 +-0.0694944 0.11756 0.0525327 +-0.0721635 0.113702 0.0503204 +-0.0647819 0.0809531 -0.0185144 +0.00336694 0.130688 0.00234495 +0.0243671 0.0699418 0.0457082 +-0.000607851 0.0448652 -0.0263872 +-0.0506782 0.141637 0.0173818 +-0.0618089 0.0881716 -0.0191682 +-0.0886021 0.087516 0.0174642 +0.011433 0.034701 0.0261941 +-0.0405676 0.171048 0.000226569 +0.0111139 0.110132 -0.0191278 +0.0136046 0.121889 0.0339065 +-0.0107442 0.0742291 -0.0379783 +0.0438711 0.0959127 0.00218342 +-0.0299153 0.155169 -0.001314 +-0.0469317 0.0369443 -0.0162782 +-0.0887949 0.142048 0.03516 +-0.0459209 0.0346888 0.0375199 +-0.0022788 0.119988 -0.0131916 +0.00522675 0.0768423 -0.034472 +-0.0277078 0.0725313 -0.0348614 +-0.0679296 0.125304 -0.00887173 +-0.0528849 0.101359 -0.0212107 +0.0356786 0.076967 -0.014745 +-0.0567974 0.0854612 -0.0213212 +0.00206285 0.121236 -0.012553 +-0.0659186 0.159142 -0.0118027 +-0.0857862 0.0939971 -0.00056361 +-0.0318889 0.124978 0.0199371 +0.0110379 0.0712445 0.0546046 +-0.043282 0.147753 0.00390043 +0.0142589 0.0737441 -0.0304465 +-0.037534 0.168232 0.00175297 +0.0421124 0.0467315 0.0307997 +-0.0195242 0.0336044 -0.023287 +-0.0581683 0.0606896 -0.00283185 +-0.0892904 0.149814 0.024685 +-0.0328117 0.0335416 -0.0258378 +-0.0534094 0.150878 0.0234093 +0.0224588 0.120521 -0.00588511 +0.0297724 0.0549903 0.0393628 +-0.0689711 0.136995 -0.00816407 +0.0327608 0.11383 -0.00261931 +-0.0138771 0.164812 -0.0186885 +0.00401259 0.0341521 0.00329327 +-0.0776837 0.154812 0.0263001 +-0.0617213 0.0781294 -0.0185002 +0.0405341 0.105626 0.00416435 +-0.033143 0.157873 -0.0118064 +-0.0244152 0.0723023 0.0471532 +0.000983167 0.0373381 0.00163376 +-0.0227666 0.126779 0.0143916 +-0.0151278 0.128803 0.00988702 +0.000514565 0.0717586 0.0570729 +0.0202169 0.0591906 0.0484605 +-0.0591321 0.0334434 -0.0069378 +-0.0338188 0.0345795 0.040191 +-0.000499113 0.11695 0.0400287 +-0.0463678 0.13079 0.00400616 +0.0171482 0.0349466 -0.009792 +-0.064905 0.0607648 0.0196679 +-0.0624362 0.150651 -0.0105777 +-0.0354607 0.154847 -0.00919588 +-0.0211471 0.0377711 0.0538261 +-0.0691709 0.147293 -0.0286567 +-0.0360974 0.127648 0.0124754 +-0.0776508 0.151441 -0.00388634 +0.0365033 0.0512847 0.031619 +0.0193623 0.0370952 -0.00967348 +0.0153438 0.0522442 -0.0271619 +-0.0174947 0.0815257 0.0576296 +-0.0629203 0.122369 -0.00879811 +0.0168951 0.128644 0.0116162 +0.0397845 0.0699028 0.0328672 +0.00847616 0.0963576 0.0505263 +-0.0532837 0.0454354 0.0434394 +-0.0154326 0.0388218 -0.0141873 +0.058968 0.0691324 0.00813536 +-0.0155327 0.116851 0.0372458 +-0.0261049 0.0632214 -0.0314499 +-0.0580383 0.122682 0.0406302 +-0.0153478 0.0972963 0.0501876 +-0.0480268 0.116533 -0.0152488 +-0.0440293 0.0378087 0.0445145 +0.0122229 0.0822322 -0.030844 +-0.00477881 0.0390844 -0.0104359 +-0.0106511 0.0496684 -0.0311061 +-0.0197213 0.123533 0.0272668 +-0.000499702 0.119705 0.0381547 +-0.0497662 0.165331 0.00186024 +0.0034577 0.0989815 0.0493164 +-0.0623164 0.153672 -0.0306063 +-0.0676947 0.134039 0.046063 +-0.0536041 0.0588172 -0.00776341 +-0.0774688 0.144183 0.0446652 +-0.054123 0.064196 0.0330627 +-0.0515128 0.0452783 0.043411 +-0.0216106 0.0422609 -0.0287762 +-0.0721201 0.0655088 0.0210948 +-0.0214414 0.0682091 0.0499624 +0.0246691 0.103387 0.0411037 +-0.0584632 0.0480819 0.000648377 +-0.0193941 0.113623 -0.0183331 +-0.0642327 0.0431706 0.0367918 +-0.0673041 0.044774 0.00468689 +0.00124491 0.0726488 -0.0351082 +0.0293752 0.0646271 0.0424024 +0.0334188 0.0399387 -0.00226403 +-0.0648162 0.092445 -0.0185198 +-0.0588392 0.0371017 0.0463605 +-0.0464973 0.113852 0.0344899 +-0.0253214 0.158135 -0.00165461 +0.0565751 0.0564133 0.00219071 +-0.0628971 0.106793 -0.0162163 +-0.0672273 0.135447 0.0449702 +-0.0874127 0.118983 0.0477049 +0.0264339 0.0415833 -0.00518191 +-0.0649816 0.114139 0.0429675 +-0.087689 0.0861087 0.0184696 +-0.0759388 0.151364 -0.016882 +-0.00938485 0.0992897 -0.0251913 +-0.0906583 0.12815 0.00627512 +0.0420818 0.101483 0.016165 +-0.0366993 0.124957 -0.00615077 +0.0344101 0.0633165 0.0391255 +0.0312208 0.0578184 0.0397344 +-0.0245116 0.0679611 0.0445844 +-0.0494967 0.0932039 0.0445022 +-0.0762012 0.149986 -0.0138757 +-0.0469178 0.060141 0.0374462 +-0.0939221 0.128285 0.0202478 +-0.0488103 0.0898531 -0.0217755 +-0.013542 0.129298 0.0162538 +0.0557083 0.0616421 0.000366134 +0.0340796 0.0848941 0.0405554 +0.0303873 0.0525299 -0.0147333 +0.0173214 0.127268 0.00181685 +-0.0623602 0.164675 -0.0475927 +-0.0633366 0.0613129 -0.000511486 +-0.0663574 0.0370366 0.0151548 +-0.0567588 0.053509 0.00466959 +-0.082746 0.0802849 -0.00049163 +-0.00173892 0.0697883 -0.0347021 +-0.0444708 0.0888726 0.0431834 +-0.0676524 0.0720092 -0.0120172 +0.0578262 0.0552267 0.0219335 +-0.0418656 0.104235 -0.0206965 +0.0300166 0.0708304 -0.0207823 +-0.0533336 0.128311 0.0351755 +-0.0275965 0.0836272 0.048557 +-0.0894883 0.139285 0.0301857 +0.0461177 0.0511569 0.0313544 +0.0505588 0.0711508 0.00463977 +-0.0653079 0.154958 0.0291369 +-0.0185448 0.0460852 0.0515079 +-0.0843685 0.105877 0.0253348 +-0.0875722 0.151019 0.0254764 +-0.0711952 0.0805577 0.0397762 +0.0367726 0.100261 -0.0101361 +0.0280869 0.0432543 0.0332457 +0.000487446 0.041412 0.0465786 +-0.0266388 0.038336 -0.00299264 +-0.00342216 0.0391144 -0.00832149 +-0.0611289 0.0344725 0.039662 +-0.0517362 0.0738243 -0.0167692 +-0.0804236 0.104574 -0.00559216 +-0.0319013 0.0525534 -0.0124561 +-0.0616634 0.0612417 -0.00198952 +-0.0659473 0.151954 -0.0393992 +0.0336372 0.112962 -0.00230707 +-0.0699642 0.138462 -0.00776795 +0.00139789 0.0405023 -0.0245871 +-0.059508 0.0890036 0.0450344 +-0.0550222 0.141298 -0.00203484 +-0.0720681 0.0805547 0.0392361 +0.0126182 0.0846922 0.0534757 +0.0593665 0.0622129 0.00511321 +-0.0924363 0.118744 0.0263157 +-0.0166806 0.0510876 -0.0315182 +0.0119118 0.0342207 -0.00263798 +-0.0646486 0.156189 0.0162701 +-0.022872 0.104437 -0.0231879 +-0.0799264 0.129511 -0.00520384 +0.0394641 0.063132 0.032359 +-0.0114897 0.0951792 0.0542781 +-0.0474976 0.111158 0.0371638 +-0.0683525 0.155277 0.00186884 +-0.000867993 0.104495 -0.0223762 +-0.0462686 0.12794 -0.00315273 +-0.0306198 0.11135 -0.017885 +-0.0420238 0.0464078 -0.0143471 +-0.0115071 0.0801438 0.0578104 +-0.00552471 0.130134 0.0220582 +0.0553699 0.0651884 0.000788532 +0.000971023 0.0370418 -0.0149189 +-0.0695999 0.162389 -0.0499627 +-0.0593254 0.0447426 0.0431798 +-0.0163529 0.16023 -0.0109161 +-0.0074892 0.108662 0.0435531 +-1.59767e-05 0.130672 0.0211571 +-0.0414957 0.0762285 0.0430404 +-0.00181283 0.0854279 -0.036655 +-0.0573252 0.157131 0.000943525 +-0.0582662 0.0597287 0.0219286 +-0.0158083 0.0827626 -0.0393641 +-0.0636754 0.156752 -0.0416076 +-0.0399677 0.0461402 -0.0203282 +-0.025156 0.16972 -0.0189618 +-0.0527747 0.0826622 -0.0215537 +0.0251411 0.10209 0.0417928 +-0.043632 0.0462886 -0.0112814 +-0.0620154 0.164635 -0.0555847 +0.0104502 0.0343141 -0.0181143 +-0.0391566 0.162183 -0.0124024 +-0.0483573 0.129635 0.0282843 +0.00538744 0.0448871 -0.0255741 +-0.0054947 0.0533903 0.0535249 +-0.00732851 0.0942973 -0.033961 +-0.0241934 0.0388427 0.0350005 +-0.0181599 0.0393223 0.0394029 +0.0346554 0.10439 -0.0105413 +-0.0459466 0.0345121 -0.0200076 +-0.0409396 0.168342 -0.0108401 +0.0103005 0.0624571 -0.0307796 +-0.0681652 0.158429 -0.00684039 +-0.00243741 0.0385239 0.0217416 +0.060795 0.0623425 0.0151668 +-0.0927217 0.128206 0.0112525 +-0.0740576 0.168348 -0.0248615 +-0.0345432 0.114978 -0.015669 +-0.0591204 0.0334451 -0.00148219 +-0.0599836 0.043576 0.0142711 +-0.0568374 0.0898133 -0.021762 +-0.0727774 0.16869 -0.0244081 +-0.00877695 0.169647 -0.023748 +-0.0733702 0.171289 -0.0318245 +-0.0533609 0.033209 0.01963 +-0.012858 0.0386932 -0.00424091 +0.0446984 0.0804984 -0.000780025 +-0.0604981 0.105663 0.0403307 +-0.0437727 0.082626 -0.0206932 +-0.0251898 0.0388783 0.0347661 +-0.00550353 0.0561986 0.0539335 +-0.0649478 0.164181 -0.0229827 +-0.0145881 0.165422 -0.0124907 +-0.0415058 0.0577139 0.0401965 +0.0385298 0.0631329 -0.0097765 +-0.0643222 0.166215 -0.0313693 +-0.0769851 0.0690914 0.0187275 +-0.013127 0.120519 -0.0116431 +-0.0624813 0.156041 0.0199412 +-0.0475747 0.0390527 -0.0120963 +0.0154157 0.0433241 -0.0236953 +-0.00124361 0.130098 0.0236021 +-0.00149237 0.118319 0.0391398 +-0.0454304 0.130382 0.00608349 +0.0094151 0.117047 -0.0161127 +-0.0370213 0.0344129 0.0343812 +-0.0266349 0.121939 -0.00696588 +-0.0514954 0.0833657 0.0447762 +-0.0661547 0.1622 -0.0162285 +0.0354074 0.0446129 -0.00524037 +-0.0839561 0.144602 0.00415973 +-0.0114934 0.104435 0.0434539 +-0.0811445 0.153633 0.00754624 +0.0416181 0.0637615 0.0286411 +0.0336503 0.0646637 0.0398008 +0.00904657 0.129598 0.024451 +-0.075728 0.151337 -0.0208826 +-0.047856 0.132056 0.00259359 +-0.0635915 0.15525 -0.0109401 +-0.025528 0.0383109 0.0298198 +-0.0664625 0.145705 -0.0206681 +-0.0675712 0.139722 0.0445155 +-0.0630199 0.134039 -0.00765574 +-0.0859393 0.101835 0.0256124 +-0.0530219 0.147196 -0.00187885 +-0.00620458 0.038993 0.0313778 +0.0378425 0.10835 0.0231802 +-0.0877357 0.0860979 0.0084778 +0.0064767 0.115498 0.0396093 +-0.027105 0.162286 -0.015104 +-0.0801261 0.144525 -0.00183492 +-0.0858754 0.148602 0.0326009 +-0.060661 0.155018 0.0264156 +-0.0104794 0.0575747 0.0533869 +-0.0433 0.0336903 -0.024306 +-0.0668671 0.0980924 -0.0163226 +-0.0682097 0.171724 -0.0385204 +0.049328 0.0615911 -0.00371844 +-0.059497 0.0861573 0.0445009 +-0.0875265 0.087486 0.0224433 +-0.0660555 0.0600044 0.0111686 +-0.0578054 0.142438 0.0322424 +0.00123277 0.0783068 -0.0354173 +-0.0916354 0.132395 0.0252256 +-0.0117599 0.104933 -0.0231377 +-0.0346346 0.0548282 -0.01038 +-0.0222409 0.0383275 -0.000251248 +0.00824961 0.0725345 -0.0333305 +0.0313861 0.0740897 0.0418701 +0.0164934 0.100411 0.0468922 +-0.0719809 0.156292 0.0165776 +-0.0221908 0.175658 -0.0213821 +-0.00588737 0.108814 -0.0225516 +0.0336337 0.112484 -0.0031866 +-0.0393568 0.123991 -0.00912015 +-0.00841793 0.0387705 -0.00155909 +-0.0431088 0.0347881 0.0415217 +-0.0281377 0.171231 -0.00924208 +0.0317135 0.0955631 0.0407455 +0.0166807 0.124611 -0.00431903 +-0.0923991 0.132355 0.0192227 +0.0141807 0.0900592 0.0522594 +-0.0553478 0.054711 -0.00338754 +-0.0742948 0.147166 -0.0148659 +-0.0210322 0.0623911 0.0469253 +-0.0808524 0.0720445 0.00954101 +0.0185494 0.0379494 0.0423026 +-0.0841291 0.0817203 0.00248105 +0.0309459 0.0700081 0.0411857 +-0.0394974 0.0705046 0.0418138 +-0.0762918 0.169333 -0.0300921 +-0.0537237 0.0477139 0.0256667 +0.0448999 0.0861351 0.000186186 +-0.0313094 0.0384531 -0.00773361 +-0.0305219 0.0474445 0.0454913 +-0.0809514 0.0882189 -0.0076035 +0.0546575 0.0706779 0.0225865 +-0.0414965 0.0986758 0.0418571 +-0.0484435 0.0628471 0.0360579 +0.0594927 0.066407 0.020186 +-0.0627925 0.0838575 -0.0191674 +-0.0214511 0.184864 -0.013038 +-0.0935392 0.129637 0.0202382 +-0.0799546 0.100457 -0.00758867 +-0.0552688 0.126926 0.0376418 +0.0378584 0.0645918 0.0353403 +-0.0361046 0.0383233 -0.0122787 +-0.049226 0.14015 0.0123965 +-0.0164997 0.0938314 0.054193 +-0.0746007 0.0914774 0.0400082 +-0.0791205 0.0709783 0.00599758 +0.0253641 0.0347082 0.00521179 +-0.0594957 0.0918578 0.0453847 +0.0136708 0.0820393 0.0532361 +-0.0193315 0.182966 -0.0230088 +-0.000544127 0.127196 -0.00494172 +-0.030476 0.0664272 -0.0264734 +-0.0734051 0.0674458 0.022683 +-0.0136727 0.0337044 -0.0241151 +0.0214461 0.036336 0.0158614 +0.0583506 0.0662943 0.00413175 +-0.0639059 0.118033 -0.00945272 +-0.0454908 0.0987379 0.0426533 +-0.0318359 0.0344957 0.0406866 +-0.0657843 0.167288 -0.0290298 +0.0181885 0.053509 0.04724 +-0.0610973 0.169393 -0.058599 +-0.0167464 0.108538 -0.0209441 +-0.0826184 0.0802381 0.0286257 +-0.0731223 0.134062 0.0505767 +-0.0135829 0.03702 0.0510108 +0.0354665 0.0768048 0.0390018 +0.0499493 0.051169 0.0281186 +-0.00858939 0.0389741 -0.00922854 +-0.0482262 0.166987 -0.00394405 +0.000506781 0.0605965 0.0560209 +-0.0571262 0.0333733 -0.00101401 +-0.0527176 0.0611373 0.029069 +-0.0225206 0.0919822 0.0517607 +-0.0727584 0.158224 -0.0349231 +0.0221671 0.123584 -0.0006811 +-0.0697019 0.142554 0.0449861 +-0.0890361 0.146068 0.0101777 +0.0300144 0.0389449 0.0261617 +0.0457459 0.0834058 0.0171675 +-0.0828165 0.0790258 0.0245191 +-0.0216847 0.180158 -0.0138785 +-0.0260473 0.11708 -0.0139183 +-0.0263102 0.123352 0.021955 +-0.026277 0.0795343 0.0501986 +-0.04015 0.0473434 -0.014266 +-0.0911404 0.129685 0.035237 +-0.0376719 0.114063 -0.0167039 +-0.0138183 0.0855391 -0.0388001 +-0.0574963 0.111121 0.0367615 +-0.0459611 0.149058 -0.0040494 +-0.06359 0.153594 -0.035633 +0.0294595 0.116659 -0.00368699 +-0.0465112 0.0491437 0.0387964 +-0.0476612 0.135572 0.0133995 +-0.0122712 0.0385653 -0.000297189 +0.0438612 0.0930832 -0.000804157 +-0.00849948 0.0911907 0.056727 +-0.0554517 0.0444829 -0.0071986 +0.0112279 0.0808839 -0.0317275 +-0.0364414 0.0346808 0.041293 +-0.0768829 0.108524 0.037335 +-0.0212115 0.177139 -0.0220322 +-0.0498078 0.0898419 -0.0216876 +0.00832653 0.130915 0.00561741 +-0.0834391 0.153089 0.025871 +-0.0797915 0.0746069 -0.00248195 +0.0162926 0.0348913 0.030635 +-0.0720312 0.141354 -0.00781974 +-0.0640613 0.0606361 0.00380817 +-0.0616877 0.169385 -0.0545934 +-0.0180884 0.184586 -0.0174536 +-0.083714 0.0804887 0.0254979 +-0.0378459 0.0971527 -0.0224307 +-0.048763 0.120209 -0.0131018 +0.0257432 0.120365 -0.00224906 +0.0155215 0.0490175 0.0450471 +-0.0516538 0.162634 -0.00285466 +-0.00249513 0.0774404 0.0585569 +-0.0676995 0.0606833 0.0155957 +-0.0530523 0.0333885 -0.00566149 +0.00632209 0.0596079 -0.030662 +-0.075813 0.0681115 0.0180714 +0.0416741 0.0642804 0.0284921 +-0.04591 0.132311 0.0103278 +-0.0266282 0.0932643 0.045173 +-0.0409763 0.128303 0.0136557 +-0.0295455 0.0745738 0.040676 +-0.0236123 0.0408478 -0.0290846 +-0.062999 0.13114 -0.0082084 +-0.0282657 0.0357556 -0.0195136 +0.0383138 0.109087 0.0181423 +-0.0225227 0.0903335 -0.0360154 +-0.00581332 0.0840953 -0.0378871 +-0.0560848 0.155673 0.012015 +-0.0384894 0.0436513 0.0409963 +0.0250684 0.0912521 -0.0226015 +0.0327251 0.116757 0.0189485 +-0.00849679 0.081545 0.0579523 +0.00549376 0.116905 0.0389072 +-0.0684642 0.035536 0.0130279 +-0.0274333 0.0808284 0.0484505 +-0.0892338 0.0888828 0.0134587 +0.040773 0.0858024 -0.0107788 +-0.018787 0.0654231 0.0516453 +-0.057411 0.0334884 -0.00846165 +-0.0515646 0.0516091 -0.00736491 +-0.0341101 0.171131 -0.0149349 +0.0224908 0.0672402 0.0465227 +0.00748827 0.048894 0.0505047 +-0.0891497 0.139122 0.0375101 +-0.0324992 0.033739 0.00907408 +-0.00547868 0.112944 -0.019663 +-0.00364368 0.038223 0.0108877 +-0.00888297 0.175714 -0.027834 +-0.0616908 0.156845 -0.0305919 +-0.0454927 0.0747515 0.0421648 +-0.0628753 0.0333858 -0.000385113 +0.0200484 0.122759 0.029923 +-0.0624127 0.150637 -0.0175763 +-0.0772056 0.0717509 -0.00044869 +-0.070203 0.179305 -0.0507979 +-0.021805 0.0812974 -0.0389167 +0.00417139 0.0894659 -0.0333631 +-0.00354618 0.035584 0.0475305 +-0.0881296 0.100997 0.0213597 +-0.0344927 0.0803488 0.0420944 +-0.0142597 0.180104 -0.0279187 +-0.0772012 0.161073 -0.0279344 +0.0267764 0.0373043 0.025139 +-0.0764984 0.127442 0.0532158 +0.0305998 0.0741029 0.0424942 +-0.0429656 0.115061 -0.0157138 +-0.0569157 0.131148 0.0370227 +-0.087746 0.09368 0.0248353 +-0.0282695 0.0620042 -0.0284458 +-0.026741 0.0877745 0.0490115 +-0.0141005 0.0382966 0.0123251 +-0.040335 0.124745 0.0227896 +-0.0176742 0.109826 -0.020315 +0.0100598 0.0371564 0.0309489 +0.0330284 0.116174 0.0204895 +0.0194916 0.111179 0.0380087 +-0.0468321 0.144886 0.00412892 +0.00432629 0.0568097 -0.0310178 +0.0172994 0.0665713 -0.0290602 +-0.0776345 0.165887 -0.0268309 +-0.0754949 0.117024 0.0522099 +0.0129986 0.124708 -0.00640366 +-0.0551543 0.0561755 0.00960447 +0.0258384 0.0659192 0.0443144 +-0.0892157 0.0956404 0.0184193 +-0.062275 0.152174 -0.0245791 +-0.0712276 0.159591 -0.0429327 +-0.0468614 0.102797 -0.0212675 +-0.0888687 0.0942285 0.0104297 +0.00705483 0.113673 0.0402142 +-0.0846088 0.10754 0.00337493 +-0.0567766 0.0840541 -0.0213935 +0.0291103 0.0713139 0.0420683 +-0.0416245 0.172695 -0.00500345 +0.0467254 0.0741323 0.0166809 +0.0182946 0.123502 0.0292701 +-0.032545 0.0821172 -0.0295502 +0.0405942 0.0847142 0.0324234 +-0.063874 0.0967575 -0.0177619 +-0.0200635 0.0385408 -0.00554998 +-0.0617567 0.139364 -0.00656769 +-0.0151158 0.0388065 -0.0122456 +0.0258671 0.111418 0.0358303 +-0.0323169 0.126646 0.013854 +0.0128496 0.0432822 0.0446281 +0.0410596 0.104249 0.0151631 +0.0413114 0.0661977 -0.00477755 +-0.0524783 0.0442541 0.0446515 +-0.00534534 0.0423344 0.0481709 +-0.0154906 0.0587868 0.0517337 +-0.0768702 0.122267 -0.00710647 +0.018318 0.0607989 -0.0274966 +-0.0414689 0.101488 0.0411988 +-0.03948 0.109789 0.0371385 +-0.071689 0.171513 -0.0326505 +-0.0562412 0.0479891 0.0306662 +0.0198041 0.103539 -0.0196351 +-0.06089 0.146655 -0.00344226 +-0.0625194 0.150622 -0.0185752 +0.0162788 0.0421207 0.0443108 +-0.0926435 0.13098 0.0162303 +-0.0102744 0.0864318 -0.0379838 +0.0437196 0.0846401 -0.00379782 +-0.0575438 0.119835 0.0395668 +-0.0312754 0.118165 0.0306394 +-0.0384168 0.120732 -0.0116964 +-0.0133826 0.1039 0.0435877 +0.0232434 0.0804535 -0.0255191 +-0.0102585 0.0379591 0.0497745 +-0.0427371 0.0753968 -0.0185868 +0.0223381 0.0606785 -0.0258752 +-0.0124978 0.122374 0.0339942 +0.00450508 0.0688823 0.055725 +0.0471561 0.0614873 -0.00363177 +-0.0496676 0.0649029 -0.0122308 +-0.0360083 0.0485228 -0.0153235 +0.0255211 0.116701 0.0317994 +0.000516492 0.101662 0.0444028 +0.00434751 0.121547 -0.0129175 +-0.0374873 0.0959326 0.0432114 +0.0252705 0.0346338 0.0163557 +-0.0124579 0.0545987 0.0514221 +-0.0889602 0.131049 0.0432066 +-0.0372423 0.152141 0.00211029 +-0.0892956 0.0942653 0.013432 +-0.0518302 0.0344778 0.0329457 +-0.0187757 0.0756949 -0.0390019 +-0.0719603 0.0681626 0.0276375 +-0.0847959 0.147297 0.0357863 +-0.0683786 0.160357 -0.00982452 +-0.0326605 0.0863757 -0.0255732 +0.0456643 0.0848033 0.01617 +0.0560044 0.0608622 0.0263962 +0.0242808 0.034582 0.00510919 +-0.0255484 0.0414464 0.0539815 +0.0584482 0.0538047 0.0101717 +-0.0507323 0.0738128 -0.0166527 +-0.0145896 0.101524 -0.0235873 +0.00379349 0.0393361 0.0313217 +-0.060041 0.155524 0.0222725 +0.0330115 0.107346 -0.00970764 +-0.0356538 0.120932 -0.00987931 +0.0252334 0.114772 -0.00969056 +-0.0560291 0.051292 0.00869383 +0.039494 0.0484532 0.0321483 +0.0260206 0.095556 0.0448127 +-0.0144952 0.092498 0.0556089 +-0.0745303 0.0887706 0.0400356 +-0.0427423 0.0768225 -0.0188988 +-0.0254944 0.0348465 0.0469921 +0.0115755 0.104003 -0.020168 +0.0177398 0.128218 0.01192 +-0.0537709 0.0460941 0.0150722 +-0.0260174 0.0351047 -0.0290083 +0.0146321 0.0460649 0.043757 +-0.0725348 0.149777 -0.0387435 +-0.067793 0.0851703 -0.0179862 +-0.0345051 0.0491976 0.0390013 +-0.0575351 0.0727864 0.0407731 +-0.0902562 0.135043 0.0112131 +-0.0341019 0.0350895 0.0466468 +0.0354707 0.0862229 0.039086 +-0.0635111 0.15292 -0.0340962 +0.000752728 0.131478 0.01712 +0.0415962 0.101461 0.0191676 +0.0199544 0.117871 -0.0110405 +0.0125 0.0341066 0.00131673 +-0.0104877 0.105844 0.0434252 +0.000625364 0.130997 0.01994 +-0.00947876 0.108641 0.0432746 +0.0427329 0.0747306 -0.00479562 +0.0175177 0.121695 0.0318921 +-0.0724967 0.123205 0.0535111 +-0.0217998 0.0826894 -0.0387559 +-0.0474379 0.0384277 -0.0132876 +-0.0453217 0.127718 -0.00291517 +0.00149278 0.115548 0.0405079 +-0.00268673 0.0598311 -0.0338297 +-0.0282466 0.0410133 0.0533665 +-0.084979 0.0912122 -0.0035611 +-0.00188052 0.0377314 0.00623396 +-0.0719012 0.152408 -0.0434229 +0.0297667 0.100164 -0.016062 +-0.0446553 0.0615526 0.0394256 +-0.0935168 0.125484 0.0132627 +0.00892319 0.0349264 0.0435129 +-0.0906919 0.142015 0.0231619 +-0.0362968 0.126232 -0.00232089 +-0.0581074 0.0494572 0.00366497 +0.0584743 0.0538121 0.0171841 +0.0453685 0.090397 0.014157 +0.0451698 0.0903876 0.0161628 +-0.0648504 0.099576 -0.0170426 +-0.0336174 0.0385515 -0.0101375 +-0.0818746 0.144748 0.0414084 +-0.0921915 0.114676 0.0133297 +-0.0735116 0.140055 0.0477493 +-0.0625074 0.0334277 0.00145514 +0.0301634 0.0659717 0.0417895 +-0.0313891 0.0338671 0.0146006 +-0.0524964 0.0876231 0.0453765 +-0.0763164 0.155546 0.0238171 +0.0473804 0.0650284 -0.00116263 +-0.0203751 0.165368 -0.0103486 +-0.074953 0.131092 -0.00759533 +-0.0200723 0.0361973 0.0530852 +-0.0623326 0.164687 -0.0445921 +-0.0432796 0.127517 -0.00276726 +-0.0794589 0.155317 0.0154304 +0.0484584 0.0430177 0.0142199 +0.0516914 0.0635003 0.0289607 +0.0124992 0.111251 0.0392691 +-0.00916969 0.168123 -0.0207225 +-0.0624966 0.0987153 0.0424769 +0.0403564 0.0602895 0.0300713 +0.000529964 0.0745913 0.0578265 +-0.00430704 0.037991 -0.0149598 +-0.0458025 0.0336244 -0.00441422 +0.0244543 0.124393 0.0172632 +-0.0566778 0.0485827 0.00942267 +0.0118497 0.0354401 0.0310392 +-0.0460906 0.156154 -0.00788178 +0.0200436 0.125383 0.0241901 +-0.0110606 0.128229 0.000136123 +-0.0680155 0.149781 -0.0384715 +-0.0340535 0.158097 0.00328753 +-0.063246 0.0709836 0.037551 +0.00837353 0.0479453 -0.0272176 +-0.0704921 0.0944433 0.0420805 +0.0271048 0.0835778 0.0462962 +-0.0814225 0.0858535 0.0328878 +-0.0311244 0.126183 0.00987945 +0.00420219 0.0866314 -0.0335404 +-0.0160918 0.0359549 0.0514785 +-0.0387772 0.152061 -0.00669739 +-0.0394877 0.095879 0.0424449 +-0.0556734 0.0645255 -0.00818248 +-0.0721186 0.0637108 0.0173676 +-0.00866441 0.055565 -0.0335626 +0.034399 0.0476191 -0.006288 +0.0184894 0.03497 -0.0076507 +-0.0208903 0.0376209 0.05361 +-0.0721389 0.12842 0.0519775 +-0.0135421 0.093873 0.0547462 +-0.0114977 0.038716 -0.00213082 +-0.0444942 0.0761733 0.0424299 +-0.0162113 0.0387427 -0.00681752 +-0.0632795 0.162306 -0.0238202 +-0.0678999 0.11945 -0.00879052 +-0.0624555 0.163099 -0.0465902 +-0.0197676 0.0376635 -0.0177276 +-0.00982564 0.0339746 -0.0198462 +-0.0334993 0.115969 -0.0147052 +0.0241258 0.0914782 -0.0228484 +0.0393714 0.104176 0.025187 +-0.0877422 0.114422 0.00426669 +0.0169437 0.0346991 -0.00395051 +-0.0659364 0.0364202 0.0386491 +0.0236414 0.0741206 0.0482553 +0.0360643 0.108191 -0.003826 +-0.0498837 0.0340852 -0.0133065 +0.0109544 0.0459934 0.0454216 +0.0232194 0.06778 -0.026032 +0.0407755 0.0675587 -0.00776366 +0.0164452 0.127885 0.0214354 +0.0306214 0.073711 -0.0207585 +0.0310665 0.0768618 0.0431993 +-0.0326395 0.0549161 -0.0112709 +-0.0264479 0.0721314 0.0435447 +0.0185916 0.116689 0.0359263 +0.0210399 0.118016 0.0341276 +-0.0910253 0.115214 0.0323598 +0.000420695 0.0340758 -0.0179207 +0.011475 0.115421 0.0379758 +0.0558934 0.0728505 0.0127047 +-0.0168011 0.0813465 -0.0393174 +-0.0884013 0.103686 0.0143755 +0.00687166 0.100046 -0.0219438 +0.00938176 0.0463536 -0.0257255 +-0.0376115 0.11722 -0.0140038 +-0.0454999 0.102932 0.0417867 +-0.0638509 0.0597328 0.00826283 +-0.0626761 0.0691812 -0.0125769 +-0.0654105 0.124234 0.0493774 +-0.0585036 0.0790577 0.0434985 +0.025387 0.103408 0.0403826 +0.0322433 0.0896617 -0.0189276 +-0.0875821 0.0909427 0.0247332 +-0.0855607 0.103501 0.00239284 +-0.0436971 0.0419128 0.0432773 +-0.0946145 0.122826 0.0212791 +0.0282404 0.0858422 -0.0216043 +0.00524711 0.0726037 -0.0343433 +0.00348793 0.114165 0.0408953 +-0.0345349 0.108408 0.0380462 +-0.053757 0.152473 0.0202331 +-0.0684765 0.061182 0.0096252 +-0.0653795 0.17033 -0.0418012 +0.0335191 0.0398635 0.0260657 +0.00150101 0.0647986 0.0566673 +-0.0386685 0.0621637 -0.0127302 +0.0514753 0.0731205 0.0184716 +-0.0475108 0.159316 0.00812402 +-0.0418554 0.101378 -0.0213767 +0.059111 0.0580409 0.00617531 +-0.0235023 0.105779 0.0421282 +-0.0564932 0.0861648 0.0446121 +0.0463019 0.07925 0.0141776 +-0.037115 0.160706 -0.0129903 +-0.0454732 0.0917007 0.0431865 +-0.08762 0.143285 0.0101199 +0.0294825 0.0348729 0.0114843 +0.0351631 0.0941496 -0.0136388 +0.0169892 0.122251 -0.00777586 +-0.0286955 0.175698 -0.00647862 +-0.0586479 0.0629437 -0.00583333 +-0.0799097 0.0706493 0.0132254 +0.0440384 0.0959414 0.0171588 +0.00466861 0.0365644 -0.00250089 +-0.0368263 0.0929138 -0.0236695 +-0.0126068 0.0392015 -0.0264338 +0.014095 0.041997 0.0446638 +0.00757449 0.035092 0.025056 +-0.0564565 0.03337 -0.00815977 +-0.0774971 0.128861 0.0533302 +0.0348978 0.0613787 -0.0138096 +-0.0348784 0.10713 -0.0202183 +0.0074278 0.117326 -0.0164147 +-0.0416698 0.0345261 0.0350582 +-0.0711528 0.180791 -0.0525602 +-0.0633069 0.0343768 0.0340823 +-0.0795725 0.091329 0.0351135 +-0.00149388 0.0787876 0.0581499 +-0.0838841 0.12062 -0.00343109 +-0.0017512 0.0769296 -0.0360915 +0.00921045 0.0851252 -0.032 +0.0528986 0.056075 -0.00272531 +-0.088793 0.0888086 0.00747102 +0.0367516 0.061565 -0.0117718 +-0.00560731 0.0389273 -0.00299633 +-0.0145783 0.0348246 -0.0259715 +-0.0668255 0.162993 -0.016474 +0.0537671 0.0492093 0.00323447 +0.0164968 0.0990289 0.0471605 +0.0350254 0.0533499 0.0328505 +-0.0502577 0.127427 -0.00458948 +-0.0354996 0.0605317 0.0401535 +-0.0445094 0.0832466 0.0430632 +-0.061134 0.11687 0.0396165 +0.0288023 0.0594063 -0.0198054 +-0.0345743 0.120058 0.0294165 +-0.00577775 0.0812461 -0.0375203 +-0.0271582 0.125819 0.00840694 +-0.00487894 0.130442 0.0208375 +-0.0485449 0.165375 0.00344343 +0.00426734 0.0682596 -0.032922 +-0.0887148 0.12811 0.00328264 +-0.0688911 0.0610594 0.0132079 +-0.0845844 0.121705 0.0490448 +0.0086501 0.130656 0.00430717 +-0.0694892 0.109539 0.0380952 +-0.0883053 0.149858 0.0265188 +-0.0556122 0.136727 0.0318764 +0.00753471 0.0632773 0.055432 +-0.0675754 0.0334584 0.000400215 +0.0390555 0.064539 0.0335561 +0.00752021 0.073081 0.0562837 +-0.0898786 0.113438 0.0340422 +-0.0729585 0.134037 -0.00770509 +-0.0713317 0.151217 -0.0439201 +0.00350232 0.123774 0.0338316 +-0.0682244 0.142863 -0.0118107 +-0.0110454 0.113378 -0.0180964 +0.0539053 0.0478505 0.00821457 +-0.0614468 0.141404 -0.00570472 +-0.0113089 0.0383954 0.0218511 +-0.0281079 0.177558 -0.016771 +0.012409 0.0418787 -0.0238148 +-0.00282516 0.102957 -0.0229221 +0.0254031 0.123772 0.0104796 +-0.0305987 0.0803029 0.0419758 +-0.0750181 0.0761727 0.0341343 +-0.0144519 0.166922 -0.0140569 +0.00338055 0.0465728 -0.0280809 +-0.0162255 0.177147 -0.0257279 +0.0131167 0.108671 -0.0187213 +0.0272829 0.121723 0.00548626 +-0.0883907 0.115479 0.0451949 +-0.0879259 0.102339 0.0203636 +-0.0548201 0.128324 0.0365339 +-0.0820753 0.129944 0.0519532 +0.00724365 0.07823 -0.0340312 +-0.0819891 0.0923793 -0.00757573 +-0.0303556 0.168269 -0.0071929 +-0.00250456 0.0562401 0.0542942 +-0.0616678 0.143939 0.037247 +-0.0776245 0.151441 -0.00287924 +0.0374138 0.110303 0.0192381 +0.0348067 0.0902706 0.0399059 +-0.0127063 0.0671038 -0.0370425 +0.0160068 0.0347306 -0.00980024 +-0.0372246 0.0368821 -0.0130308 +0.0340234 0.0585319 -0.0137143 +0.0541559 0.0477549 0.017206 +-0.0405048 0.15944 0.00272423 +-0.0015963 0.0981039 -0.0279083 +-0.092935 0.117416 0.0233037 +-0.0832007 0.119017 0.0492012 +0.00140058 0.0348342 -0.0234319 +-0.0868724 0.106357 0.0173489 +-0.0166991 0.0570076 -0.034416 +-0.0907644 0.142021 0.0271708 +-0.0822477 0.106043 -0.00262262 +-0.0929753 0.11876 0.0253083 +-0.0263289 0.0434924 0.0526862 +-0.0374936 0.0733328 0.0420467 +-0.0355255 0.0818589 0.0431427 +-0.0650055 0.136996 -0.00788185 +-0.0705444 0.0712752 0.0339991 +-0.0549513 0.0339195 0.0239841 +-0.00779971 0.114512 -0.0173201 +0.0213851 0.0754916 0.050294 +0.0297243 0.0538559 -0.0167895 +-0.00746204 0.125196 -0.00874293 +-0.0385113 0.0973107 0.0424108 +0.0437641 0.0599949 -0.00412714 +0.00932784 0.0581716 -0.0301717 +-0.07404 0.148543 -0.0208687 +-0.067363 0.177688 -0.0512074 +-0.00213372 0.123188 0.0349488 +-0.0180211 0.168338 -0.0139614 +-0.0254657 0.0678395 0.0426887 +-0.0266217 0.0436536 -0.0288174 +-0.0498332 0.0956322 -0.0221283 +-0.0772795 0.155549 -0.0169029 +0.0369068 0.0799159 -0.0147176 +-0.0788489 0.119288 -0.00581129 +-0.0101059 0.171125 -0.0207965 +-0.0324932 0.0774699 0.0412179 +-0.0434937 0.0705308 0.0420517 +-0.0158265 0.0869335 -0.0385904 +-0.00548754 0.123746 0.0343085 +0.0610091 0.0623122 0.0111052 +-0.00962571 0.0451144 -0.0282927 +-0.0687445 0.160961 -0.0529537 +-0.00991099 0.115578 -0.0164445 +0.0199768 0.126969 0.0170274 +-0.0827793 0.0771313 0.0211566 +-0.0119077 0.0894805 -0.0370977 +0.0238643 0.100811 0.0434608 +-0.0130347 0.166801 -0.0212915 +-0.0934989 0.122762 0.0122811 +-0.0667245 0.0765676 -0.016644 +-0.0391998 0.0351247 -0.0118182 +-0.0445637 0.128075 -0.00132731 +-0.0258871 0.0377455 0.0194558 +-0.093776 0.124126 0.0142628 +-0.0698753 0.117966 -0.00835455 +-0.0515005 0.100157 0.0426446 +-0.0404873 0.112547 0.0355988 +-0.0674682 0.0382926 -0.00574154 +-0.0624974 0.0876076 0.0451456 +-0.0367451 0.0768715 -0.019149 +-0.00349748 0.0870382 0.0570453 +0.0243264 0.0591823 -0.0248233 +-0.0604582 0.154406 0.00215902 +-0.0742084 0.067281 0.00145303 +0.0461952 0.0834391 0.00817714 +-0.0246581 0.0664552 0.0433381 +0.0223219 0.0402539 -0.00770693 +-0.0269495 0.0511315 0.0418642 +-0.0426785 0.060742 -0.0126195 +-0.0470567 0.069722 0.0403886 +-0.057499 0.0889744 0.0446686 +-0.0925962 0.126825 0.0102659 +-0.0627541 0.166279 -0.0425846 +0.00227655 0.0655175 -0.0339267 +-0.0152717 0.181584 -0.0271612 +-0.0527991 0.0578707 0.0222512 +0.0181983 0.0768373 0.0527356 +-0.020287 0.0445184 0.0528933 +-0.0230546 0.0388523 0.0540611 +-0.0591948 0.0603156 -0.00052226 +-0.0356179 0.0505976 -0.0108834 +-0.0125985 0.0420542 -0.026434 +-0.0457346 0.0337173 0.00640665 +-0.0271239 0.117991 -0.0128729 +-0.0287901 0.105845 -0.0221143 +-0.0791947 0.116328 0.04948 +-0.037475 0.126933 -0.001254 +-0.0652274 0.172558 -0.0603808 +0.0249025 0.0659023 0.0447242 +0.0444853 0.062436 0.0294527 +-0.0584017 0.0411488 0.0207065 +-0.0637308 0.0380192 0.0421186 +-0.0224637 0.0768447 0.053535 +-0.0472049 0.132217 0.00449629 +-0.055985 0.033885 0.0237996 +-0.0637704 0.158563 -0.0153492 +-0.0889154 0.0875162 0.0124615 +-0.0630601 0.155204 -0.0366146 +-0.0858283 0.1008 0.00139713 +-0.00849876 0.0884233 0.057199 +-0.0464295 0.156494 0.00819518 +-0.0875333 0.0927687 0.0054156 +-0.0555067 0.053407 0.0086882 +-0.0319429 0.0346356 0.0246022 +-0.0532414 0.127751 -0.00500041 +-0.0324852 0.0946249 0.0445277 +-0.0652259 0.166727 -0.0597961 +0.0318258 0.090298 0.0426417 +0.0227624 0.0959793 -0.0216236 +0.0453464 0.0791637 0.00120688 +-0.00148178 0.0718081 0.0578063 +0.0484981 0.0664872 0.0276228 +-0.0638124 0.0339885 0.0132249 +0.0378702 0.100686 0.0303226 +0.0423416 0.0718943 -0.00578991 +0.0449549 0.0889654 0.0201657 +-0.0505604 0.0431885 -0.0101401 +0.0305345 0.113708 -0.00653825 +0.0175297 0.092684 0.048312 +-0.0405439 0.0338701 -0.0146326 +-0.0151193 0.0387785 0.0315419 +0.0425177 0.0660617 -0.00221978 +-0.0261619 0.0381432 0.054147 +-0.0435068 0.0576714 0.0396679 +-0.0531482 0.161241 0.00587596 +-0.0897425 0.0915834 0.0134432 +0.00549953 0.119637 0.0367537 +-0.00877042 0.130092 0.00788453 +-0.0417274 0.0725105 -0.0179617 +-0.0534984 0.0776159 0.0431279 +-0.0290767 0.121891 0.0239314 +0.0583737 0.0676977 0.00512132 +-0.0647358 0.157148 -0.0507072 +0.0435656 0.0945094 0.0231538 +-0.0220003 0.181634 -0.0125756 +-0.0298816 0.0621837 -0.0234188 +-0.0460097 0.127427 -0.00464706 +-0.0136152 0.0982979 -0.0261721 +-0.0662958 0.0637695 -0.0035905 +-0.0920915 0.118829 0.0424602 +-0.0157421 0.0686009 -0.0381423 +-0.063492 0.0819119 0.043822 +0.0519248 0.0461654 0.00821164 +-0.0528781 0.0490838 0.0346622 +-0.0896974 0.137929 0.0351902 +-0.0502406 0.140114 0.00340131 +-0.0460575 0.131197 0.00582383 +-0.0398248 0.0928735 -0.0232663 +-0.0287922 0.165339 -0.00670006 +-0.0017304 0.0712031 -0.0351875 +-0.0386191 0.118326 -0.013151 +0.0193849 0.126884 0.00540105 +0.0309645 0.0363887 0.0195722 +-0.0314998 0.155167 -8.72409e-05 +-0.000786782 0.0826169 -0.0366787 +-0.0771272 0.155133 0.00894547 +-0.00248977 0.112799 0.0419964 +-0.0279028 0.160261 -0.0136941 +-0.0431979 0.129461 0.00840104 +-0.0208217 0.0854768 -0.038298 +-0.01776 0.0714448 -0.0386564 +0.00624218 0.039472 0.0335072 +-0.0639011 0.119458 -0.00893676 +-0.0667029 0.176899 -0.0509708 +-0.0245413 0.0349941 -0.0287041 +-0.0487364 0.0753122 -0.0176891 +-0.0669945 0.169371 -0.0323347 +-0.00928822 0.0393788 0.0494849 +-0.0239808 0.0936155 -0.0313592 +0.0224894 0.0906371 0.0481279 +0.0242369 0.0748124 -0.0257049 +-0.0243462 0.1625 -0.00551798 +-0.0625942 0.153749 -0.0125838 +-0.0486891 0.137066 0.0163891 +-0.0679674 0.0350577 0.0131968 +-0.0626161 0.12969 0.0410793 +-0.0263812 0.120789 0.0279195 +-0.0802896 0.144766 0.0426469 +0.0132183 0.0794258 -0.0310561 +-0.0415045 0.0548576 0.0396938 +-0.00948994 0.0952069 0.0546127 +-0.0903261 0.135124 0.0222174 +-0.0574953 0.153709 0.0290191 +-0.0428742 0.10707 -0.020141 +0.057983 0.0674087 0.022273 +-0.0297438 0.0593588 -0.0214043 +-0.0562018 0.0589495 -0.00340637 +-0.0230647 0.0402418 0.0541248 +-0.062019 0.17397 -0.0618399 +-0.0412895 0.149153 -0.00363446 +-0.0485728 0.0503685 -0.00899002 +-0.00748812 0.10728 0.0439222 +-0.0336555 0.0709359 -0.0204834 +-0.0407158 0.171931 -0.00126808 +-0.0610791 0.151413 0.0351388 +-0.0221494 0.0384504 -0.005885 +0.00439305 0.11559 -0.018534 +-0.0241215 0.0944713 0.0461972 +-0.0547672 0.0812274 -0.0214088 +-0.0846583 0.0777659 0.00751712 +-0.0574282 0.0507609 0.000628334 +-0.00874511 0.0976201 -0.0294139 +-0.022979 0.0380859 0.023348 +0.043448 0.0916342 -0.00278755 +0.0145196 0.123096 0.0322223 +-0.0415646 0.125825 -0.00703356 +-0.0726695 0.171671 -0.0330178 +-0.010471 0.0378949 -0.0160892 +-0.0488368 0.0970812 -0.0221898 +-0.0586032 0.141 0.0328315 +-0.0117815 0.0347775 0.0429519 +0.0116378 0.0603198 0.0518663 +-0.0459594 0.0560107 0.0380589 +0.0399446 0.107028 0.0121641 +0.00710547 0.0893998 -0.032814 +0.0410678 0.10142 0.0221661 +-0.0244452 0.181836 -0.00961144 +-0.013259 0.121231 -0.0103976 +-0.0454789 0.123431 0.0251209 +0.0285377 0.0523356 -0.0187697 +0.0588289 0.0691072 0.0191593 +0.0125005 0.1007 -0.0226033 +-0.0595569 0.153648 0.0312116 +-0.00403867 0.0994311 -0.025339 +0.00148661 0.108625 0.0426664 +-0.0327389 0.0482896 -0.0213368 +-0.0380117 0.0344553 0.0341354 +-0.072467 0.0968801 0.0405541 +0.0151781 0.0847217 0.0519158 +-0.0425055 0.108838 -0.0192163 +-0.00749309 0.114174 0.0409291 +-0.0434968 0.119301 0.0295385 +0.0363932 0.0476439 -0.00624826 +-0.079546 0.0719865 0.0195582 +-0.0564882 0.042714 0.0457133 +-0.0113851 0.0383094 0.011049 +-0.0865431 0.106355 0.0183534 +-0.0313759 0.0553098 -0.0143786 +0.0515215 0.0651377 0.0281771 +0.0253513 0.0605347 -0.0238887 +-0.0627683 0.164709 -0.0355885 +-0.0520878 0.0489475 0.0226481 +-0.0371717 0.165191 -0.0136726 +0.0421423 0.0738117 0.0292393 +0.0499661 0.0451421 0.0208878 +-0.0394943 0.116662 0.0325452 +-0.085625 0.079203 0.01151 +-0.0716025 0.135501 0.0492566 +-0.00270958 0.0391757 0.033738 +-0.0911953 0.143381 0.0241598 +0.0418026 0.102869 0.0141608 +-0.0319458 0.0708051 -0.0254622 +-0.0626184 0.145978 -0.00858061 +0.0207857 0.0994851 0.0460447 +0.0275851 0.114088 0.0330397 +-0.040502 0.120714 0.028794 +-0.0853944 0.101863 0.0264831 +0.00328879 0.0668715 -0.0332298 +-0.0446453 0.0577855 -0.0118043 +0.0188777 0.03558 -0.00867348 +-0.064488 0.156133 0.0221359 +-0.00921165 0.172686 -0.0275682 +-0.0426232 0.0362716 0.0437883 +-0.0246131 0.0422659 -0.0289978 +-0.0766564 0.0773474 -0.00857073 +0.0281325 0.121698 0.0129367 +-0.00471394 0.0641886 -0.0352179 +-0.0274456 0.0382197 0.0539829 +-0.0417615 0.03357 0.00191851 +-0.0596536 0.0350995 0.0445384 +-0.0458215 0.091313 -0.0218951 +-0.00569643 0.0599053 -0.0346867 +-0.0728066 0.087878 -0.0157134 +0.00467021 0.0347458 0.0211501 +-0.0369631 0.0341718 -0.0179086 +-0.0700564 0.162427 -0.0118963 +-0.0938276 0.126933 0.0242666 +-0.0207424 0.110014 -0.0205123 +0.00150816 0.0911296 0.0556681 +-0.00874857 0.0727984 -0.0375275 +-0.0679476 0.156599 -0.00385029 +-0.076928 0.152806 -0.00788984 +-0.0860408 0.109124 0.0103593 +-0.0514909 0.0544833 0.0216233 +-0.0756545 0.151363 -0.0148873 +0.0423862 0.047532 -0.00502925 +-0.0895419 0.0916017 0.0194388 +-0.014074 0.128231 0.00303832 +-0.0747094 0.155646 0.00979649 +-0.0931712 0.117411 0.0223074 +-0.0548599 0.145302 0.0295141 +-0.058163 0.0467738 0.0296766 +0.00351191 0.0459363 0.0483003 +-0.091423 0.144753 0.0241539 +0.0174632 0.0948293 0.047857 +-0.0326373 0.119597 -0.0104942 +0.0206219 0.119357 0.0335278 +-0.0174992 0.0897364 0.0558751 +-0.00978193 0.0784455 -0.0377778 +0.0236993 0.12332 0.00130956 +-0.0792974 0.15265 0.00222093 +-0.0444956 0.102933 0.0417949 +0.0152822 0.129138 0.0167187 +0.0467013 0.0718392 0.0195936 +-0.0883363 0.112382 0.0405773 +-0.0515091 0.105631 0.0400498 +0.00121056 0.115576 -0.018509 +-0.0525671 0.0335472 0.0123651 +-0.0285962 0.0377287 0.0207135 +0.0043328 0.0341303 0.00522853 +-0.0914252 0.114627 0.0103302 +-0.0231203 0.163764 -0.0160465 +-0.0077447 0.0698983 -0.036343 +-0.0650951 0.162442 -0.0187197 +-0.0652725 0.0613084 0.02088 +0.0455972 0.0415054 0.0160287 +-0.0554928 0.148133 0.0286364 +-0.0709153 0.113624 -0.0087498 +-0.0390311 0.160893 0.00133569 +-0.0669712 0.156006 0.0125516 +-0.0607902 0.0334775 -4.36679e-05 +-0.0634989 0.108392 0.0384413 +-0.0239757 0.0768012 0.0522149 +-0.0671254 0.128435 0.0486555 +-0.0368355 0.153629 0.00272174 +-0.0280768 0.169745 -0.00916431 +0.00750786 0.0518308 0.0519822 +0.017486 0.112589 0.0378808 +-0.0694907 0.0930374 0.0422024 +-0.0457991 0.0336321 0.00104877 +0.0385285 0.0901386 0.0347352 +0.0154693 0.0976312 0.0477084 +-0.0134564 0.0347657 0.0443699 +0.0132374 0.123205 -0.00876652 +0.0204758 0.0975716 0.0468126 +-0.0702558 0.152263 -0.0463745 +-0.0361586 0.0382819 -0.0067057 +0.0546048 0.0478149 0.0122009 +-0.0455357 0.120317 -0.0132441 +-0.00750778 0.0828941 0.0575015 +-0.0338576 0.0347656 0.029445 +-0.0195033 0.118175 0.0352728 +0.0125203 0.0616669 0.0514026 +-0.0196496 0.0582641 0.0484904 +0.0383367 0.0910432 -0.012345 +-0.00538883 0.122125 -0.0114557 +-0.075455 0.0675485 0.016865 +-0.0362517 0.123246 0.0257763 +-0.0815948 0.123081 0.0504133 +-0.00479304 0.130806 0.0179661 +-0.0776418 0.158287 -0.0219264 +-0.0484803 0.117974 0.0310954 +-0.0386541 0.126132 0.0204051 +-0.0786087 0.102098 0.0338163 +0.0464344 0.0792618 0.0111808 +0.0289709 0.0848578 0.043728 +-0.0184969 0.10579 0.0426906 +-0.0245528 0.116739 0.0335827 +-0.0754858 0.146995 0.0422823 +-0.0528151 0.132539 0.0323863 +-0.00781365 0.086863 -0.0372016 +0.0145549 0.126574 -0.00243153 +-0.0834735 0.076324 0.00852235 +-0.0597355 0.0752692 -0.0179534 +-0.0853298 0.111023 0.0405559 +-0.0515948 0.137023 0.025408 +-0.0693375 0.168152 -0.0246084 +-0.0781507 0.115089 0.0495991 +-0.0468723 0.0587675 0.0374438 +0.0193537 0.0349459 0.0257791 +0.0243371 0.123621 0.0229269 +-0.0907106 0.133758 0.0262122 +-0.0542023 0.0435162 0.019691 +-0.036169 0.0335901 -0.0284162 +0.0196024 0.0858351 -0.0269873 +0.0084996 0.0488213 0.0500608 +-0.0308481 0.0664794 -0.025463 +0.0262324 0.0775308 -0.0242027 +0.0470911 0.0422949 0.0155431 +0.0315748 0.0605586 0.0402762 +-0.0722147 0.149455 -0.0385736 +-0.0695516 0.170347 -0.0304219 +-0.0404175 0.171209 -0.00987004 +0.0299365 0.0350356 0.00770058 +-0.0466417 0.133657 0.014443 +0.0130913 0.0937889 -0.0272955 +-0.0579449 0.059547 -0.000261977 +-0.0285818 0.121272 -0.00825717 +-0.0713326 0.0345571 0.00760774 +-0.0666503 0.135429 0.0440071 +-0.0303959 0.0762676 -0.0335676 +-0.00385838 0.101641 -0.0231016 +-0.0679568 0.13115 -0.00879393 +0.00350598 0.0870278 0.056972 +-0.0248582 0.0752289 0.048914 +-0.0588955 0.0336882 0.0145047 +-0.0563129 0.159837 0.00207063 +-0.064096 0.14766 -0.0219948 +-0.00992774 0.110288 -0.021044 +-0.0709029 0.110786 -0.0101311 +4.37647e-05 0.0392736 0.0324137 +0.0144567 0.0617415 0.0506755 +-0.0304982 0.117934 0.0308066 +-0.0124153 0.129138 0.0195683 +-0.0045458 0.042944 0.0478735 +-0.078629 0.155228 0.0230232 +-0.0793587 0.143462 0.044583 +-0.011946 0.163588 -0.0146751 +-0.0489654 0.138607 0.014392 +0.0130851 0.034266 -0.0137357 +0.0405023 0.0484755 0.0322215 +-0.0440255 0.0336276 -0.0225259 +-0.0185094 0.114097 0.0385959 +-0.0708508 0.173984 -0.0409178 +-0.0698895 0.170875 -0.0319754 +-0.0268752 0.105825 -0.0224483 +-0.0921157 0.118792 0.0303066 +-0.0715954 0.155396 -0.0419127 +0.0239203 0.108291 -0.0147313 +-0.0163998 0.119263 -0.0123023 +-0.0327198 0.0652554 -0.0184496 +0.0457714 0.0848094 0.0151676 +-0.062838 0.15526 0.00677387 +-0.0562712 0.146757 0.030967 +-0.00723161 0.0381024 0.0489495 +0.0208841 0.115302 0.0356376 +-0.0311112 0.162246 -0.0146263 +-0.0185025 0.0757876 0.0552584 +0.0369413 0.0993952 0.0325229 +-0.0597781 0.0668249 0.0348598 +-0.0676678 0.0697151 0.0342008 +-0.00507021 0.128586 -0.00238902 +0.035697 0.096801 0.0360155 +0.0179331 0.121039 -0.00844165 +0.00149286 0.100277 0.0469858 +0.0132581 0.0348304 0.0408908 +-0.0746487 0.0760382 -0.00984365 +-0.076866 0.0994719 0.0363813 +-0.00904748 0.0388121 -0.00544357 +-0.0378518 0.0985762 -0.0221892 +-0.0494929 0.0804959 0.044039 +0.0288964 0.120556 0.0189249 +0.0252898 0.0704815 -0.0246106 +-0.0831283 0.107448 0.000408412 +-0.0465019 0.129507 0.0239285 +-0.056621 0.0562362 0.00665228 +-0.00564116 0.0481924 -0.0303539 +-0.0944779 0.122838 0.0232837 +-0.0876178 0.105003 0.0113725 +0.0221833 0.125827 0.00929485 +-0.0376403 0.0562958 -0.0110081 +-0.027315 0.119916 0.0290701 +0.0347431 0.103404 0.0328426 +0.0317883 0.117354 0.00287906 +0.0203254 0.040014 -0.0146997 +-0.0780017 0.150056 -0.00287894 +-0.0106261 0.0451108 -0.0281505 +-0.0729498 0.156259 0.0191473 +0.0393029 0.10195 0.0270711 +0.0182702 0.0422045 0.0436952 +-0.0802626 0.147413 0.0397079 +-0.00132352 0.0966684 -0.0303753 +-0.015259 0.0984512 0.0471298 +0.0451952 0.0433405 0.023507 +-0.0438866 0.108471 -0.0191595 +-0.0159384 0.124168 -0.00545234 +-0.0654957 0.105611 0.0395613 +-0.0904683 0.135081 0.0142287 +0.025208 0.0874192 -0.0236148 +0.0366057 0.0954909 0.0355184 +-0.0887482 0.102363 0.0163794 +0.00249078 0.115545 0.0403845 +-0.0778809 0.0759658 0.0302027 +-0.045814 0.0898818 -0.0220292 +0.0125705 0.0658518 0.0532694 +-0.00597277 0.130385 0.0204408 +-0.0581881 0.125521 0.0404357 +-0.0307415 0.0374976 -0.017878 +-0.0742647 0.109022 0.03931 +0.0186443 0.123322 -0.00490878 +-0.0769902 0.154182 -0.00989517 +0.0130083 0.0956231 -0.0252421 +0.00953036 0.10442 0.0445691 +0.0186389 0.0520546 0.0461071 +-0.0463977 0.0397105 -0.0152844 +0.0444376 0.0959725 0.0121619 +-0.0216077 0.0350207 0.0511065 +0.0463433 0.054773 -0.00593764 +-0.0875696 0.115156 0.045661 +-0.00311195 0.130927 0.00709886 +-0.0627873 0.0335028 0.00493012 +-0.0894432 0.151569 0.0164701 +-0.0668923 0.109473 -0.0126504 +-0.053788 0.0854855 -0.0214384 +-0.00382944 0.108004 -0.0223654 +-0.0447162 0.0448943 -0.0112435 +0.0262334 0.121101 0.000829633 +0.0206734 0.0795401 0.0510479 +-0.0434655 0.127159 0.0186744 +-0.0273746 0.181651 -0.00921581 +-0.0045009 0.116806 -0.0157814 +-0.0529179 0.162663 -0.000927718 +0.0278575 0.109692 -0.0122334 +0.0114621 0.125412 0.0310862 +-0.055877 0.0984248 -0.0207921 +-0.0649536 0.0595166 0.0136311 +-0.0899789 0.116378 0.0441376 +-0.0344621 0.154617 -0.00886992 +-0.0641249 0.156393 -0.0431197 +0.0264267 0.0824949 -0.0235141 +-0.0699148 0.109401 -0.011164 +-0.0645122 0.0398643 -0.00676714 +-0.0927009 0.117475 0.0353038 +0.00812049 0.107282 -0.0201059 +0.0344124 0.0957227 -0.013333 +-0.0617126 0.170956 -0.0545977 +-0.0888439 0.150092 0.0112242 +-0.0600859 0.0421217 0.0440266 +-0.0535039 0.0805657 0.0446207 +0.00913683 0.0873343 0.0554698 +0.0318118 0.100781 0.0373962 +-0.0366211 0.124122 -0.00724685 +0.0255511 0.0463382 0.0384325 +-0.00473212 0.0386351 0.0247855 +-0.0857334 0.153425 0.016223 +3.04988e-05 0.11432 -0.019028 +-0.0622192 0.17721 -0.0606003 +-0.00533435 0.0930519 -0.0346806 +-0.0578363 0.0912193 -0.0212351 +-0.051575 0.132941 -0.0025104 +-0.0215094 0.0983521 -0.0242621 +-0.0663625 0.141125 0.0427387 +0.0411659 0.0952708 0.0280268 +-0.053497 0.0945663 0.0438533 +-0.0745177 0.171112 -0.0322615 +-0.0779361 0.129573 -0.00656407 +-0.0437814 0.0840812 -0.0212189 +0.00326914 0.0682665 -0.0330635 +-0.0739332 0.177709 -0.0464055 +0.0528574 0.0622185 0.0288955 +-0.0365021 0.101484 0.0413625 +-0.0445836 0.0476428 -0.0105653 +-0.0194973 0.101611 0.0435898 +-0.0137239 0.16215 -0.0118322 +-0.0287184 0.0806953 0.0455388 +-0.0933646 0.117392 0.0153085 +-0.0867701 0.113047 0.00428618 +-0.0052769 0.0941788 -0.0338289 +0.0134806 0.0976663 0.0482444 +-0.08743 0.111796 0.0214228 +0.00133097 0.0626915 -0.0339607 +0.0447988 0.0903457 0.000177034 +0.00183354 0.10009 0.0472603 +-0.0323685 0.0497273 -0.0163483 +-0.0848994 0.144621 0.00617242 +-0.0707871 0.0625817 0.00788057 +-0.0334706 0.0589721 0.0386927 +0.0458044 0.0834139 0.0161713 +-0.0638595 0.159101 -0.0532849 +-0.0169095 0.0379753 -0.0273392 +-0.0683614 0.15578 0.00913576 +-0.0841262 0.110345 0.0263651 +-0.0629048 0.1054 -0.0169977 +-0.00482937 0.038542 0.00854039 +0.00442082 0.039258 0.029719 +0.0287437 0.0416628 0.0306503 +-0.0480218 0.144366 0.00442748 +-0.0718881 0.109321 -0.0102252 +-0.0623027 0.153756 -0.0145815 +0.0312054 0.104936 -0.0131412 +-0.0502712 0.143189 0.0133798 +-0.0679015 0.120916 -0.00896008 +-0.0325574 0.126601 0.00788172 +0.00400981 0.0391328 0.0279405 +-0.0790033 0.16525 -0.0329555 +-0.0464892 0.117969 0.0304809 +-0.0171987 0.127433 0.00332106 +-0.0589607 0.145338 0.0340833 +-0.00576935 0.0346302 0.0443351 +-0.0894143 0.118584 0.00330542 +-0.0494955 0.0890237 0.0451636 +-0.0395958 0.118487 -0.0133369 +0.0256371 0.0346096 0.00722464 +0.0101261 0.0846794 0.0551401 +-0.000640169 0.0481947 -0.0300913 +0.00652044 0.0799801 0.0556018 +-0.0485004 0.157854 0.0090451 +-0.0674788 0.153589 0.0328337 +-0.0246191 0.0436702 -0.0286423 +-0.0380903 0.041957 -0.0274154 +-0.0592055 0.155872 0.0109493 +-0.0158317 0.0382446 0.00839116 +-0.0862834 0.141953 0.0402325 +-0.0178783 0.0381567 0.0189161 +-0.00165332 0.0511407 -0.0309868 +-0.0515122 0.0598238 0.030703 +0.0226361 0.118891 -0.00814073 +0.0433138 0.0902166 -0.00378785 +-0.0339799 0.0384942 -0.0120095 +-0.0424937 0.0748068 0.0427898 +-0.0640892 0.172567 -0.049571 +0.037431 0.0794424 0.0366005 +0.041759 0.0432404 0.0265421 +-0.0923571 0.121517 0.0426088 +0.0562687 0.0726263 0.0113628 +0.024692 0.100819 0.0429025 +-0.0729148 0.110726 -0.0089954 +-0.0295018 0.159581 0.00108834 +-0.0672997 0.0435653 0.00884843 +0.0172829 0.0651656 -0.0289948 +-0.0585687 0.0340745 0.0248573 +0.0320945 0.113613 -0.00441584 +-0.0726455 0.0655594 0.00286688 +0.0223162 0.0649555 -0.0263733 +-0.0636659 0.0691264 -0.011804 +-0.0495225 0.143222 0.00950726 +-0.0396922 0.156587 0.00568688 +0.00749975 0.089676 0.055015 +0.0495971 0.0465817 0.0239661 +-0.0390578 0.156263 -0.0100859 +-0.0708823 0.172457 -0.0366471 +0.0126883 0.0343606 -0.00448368 +-0.0454899 0.0690197 0.0407796 +-0.0413446 0.0335325 -0.0237744 +-0.0404379 0.124957 -0.00812413 +0.0440209 0.0945174 0.0011806 +-0.0627245 0.073729 -0.0165415 +-0.0286056 0.0475856 -0.0255224 +-0.0495036 0.153584 0.0107879 +-0.0896132 0.139307 0.0341845 +0.030074 0.119769 0.00796635 +-0.0517393 0.0517191 0.022632 +-0.023961 0.0723529 0.0481115 +-0.0309909 0.0384268 -0.00579914 +-0.00634516 0.0379873 -0.0153566 +-0.0547761 0.0333427 -0.00414144 +0.00202824 0.108029 -0.0204102 +0.0450661 0.0761937 0.0228711 +-0.084679 0.0869987 0.027663 +-0.0219636 0.0681726 0.0490783 +0.0226059 0.0375679 0.034289 +-0.0518654 0.101358 -0.0214215 +-0.0919525 0.126983 0.0392569 +-0.0663498 0.172859 -0.0450539 +0.00551307 0.0856288 0.0568655 +-0.0269831 0.0381412 0.0278748 +0.0430768 0.0411155 0.00329204 +0.0317014 0.117733 0.0199863 +-0.0326228 0.0506668 -0.0115219 +-0.0760639 0.155862 0.0136886 +-0.0581543 0.0337417 0.0181646 +0.0454926 0.0875897 0.015162 +-0.0197923 0.038435 -0.00354579 +-0.0461288 0.15913 -0.00829043 +-0.0235066 0.108523 0.0406075 +0.015525 0.127932 0.00115163 +0.00251501 0.0814623 0.0569927 +-0.0485603 0.131756 0.000870882 +-0.0909462 0.11476 0.0333322 +0.038369 0.0884214 -0.0137726 +0.0179084 0.127905 0.00771503 +0.0457915 0.0862101 0.0121678 +-0.0310416 0.0763051 -0.0325503 +-0.0584963 0.0946188 0.0448266 +-0.00142898 0.112626 -0.0193593 +0.0537506 0.0519895 0.000247391 +-0.00249736 0.0978288 0.0524276 +0.0474285 0.0692644 0.00256538 +-0.0157146 0.17719 -0.0193767 +-0.0688721 0.0369953 0.0119906 +0.0262296 0.0888085 -0.0227773 +-0.0876687 0.0981895 0.00443327 +-0.0435601 0.129686 0.00973169 +-0.0620348 0.146024 -0.00560988 +0.0228232 0.123119 -0.000681491 +0.0192101 0.0791931 -0.0277308 +-0.0285078 0.0348913 0.0463089 +-0.0295006 0.116619 0.032366 +0.00540344 0.040445 -0.0238712 +-0.0861937 0.0819823 0.0184808 +-0.0691313 0.170851 -0.0540166 +0.0232722 0.0691857 -0.0260989 +0.0346775 0.106404 -0.00868031 +-0.0626839 0.154165 0.00249175 +0.0203005 0.047637 0.041402 +0.0426083 0.0915862 -0.00481093 +-0.00121535 0.0394284 0.0356173 +-0.0290126 0.0606872 -0.0244213 +-0.0522249 0.152155 0.0138449 +0.0278367 0.0781921 0.0455692 +-0.0782715 0.168666 -0.0333616 +-0.0631194 0.0357147 0.0189543 +0.00237959 0.0976208 -0.0273765 +-0.0327796 0.0736593 -0.0265049 +-0.0590695 0.143884 0.0338908 +-0.0366032 0.0407784 -0.0289892 +-0.0564911 0.0400264 0.0468768 +-0.0891224 0.133627 0.00423095 +-0.00349883 0.095211 0.054715 +-0.0365564 0.0488017 -0.0133944 +-0.063603 0.0406323 0.0405017 +0.00388987 0.0987683 0.0495103 +-0.0341448 0.166698 -0.0152744 +0.0422984 0.0789118 -0.00576754 +-0.0821777 0.153468 0.0263012 +-0.0618022 0.0852922 -0.0192956 +-0.0825795 0.0937805 -0.00656944 +0.0526059 0.0476644 0.00422036 +-0.0617323 0.155315 -0.018581 +-0.0646798 0.158592 -0.0555006 +-0.0400438 0.127998 0.000725921 +-0.020826 0.0882193 -0.0372663 +-0.072774 0.083565 -0.0157894 +-0.0301375 0.0592681 -0.0204197 +0.053852 0.0700236 0.0237561 +-0.0192952 0.097132 0.0469462 +-0.0379042 0.0350553 0.0424096 +-0.0779467 0.170107 -0.0351609 +-0.0731753 0.162423 -0.0379582 +0.0293531 0.117442 -0.00254348 +0.00923639 0.0753581 -0.0333366 +-0.00523048 0.0381888 0.0482681 +0.0281109 0.0477624 0.0368744 +-0.00549683 0.095262 0.0547887 +0.016279 0.127286 0.0242335 +-0.000357095 0.0346671 0.0418309 +-0.0903031 0.113239 0.0103302 +-0.0435085 0.165227 0.00470373 +-0.000629686 0.0466337 -0.0288231 +-0.00267903 0.0583624 -0.0332032 +-0.0354553 0.163829 -0.00227816 +0.0329891 0.10525 -0.0114692 +-0.0511234 0.159083 -0.0045978 +-0.0738697 0.0672451 0.0209913 +-0.0513379 0.0345855 0.00988953 +0.0449495 0.041538 0.0177108 +0.0131716 0.128382 0.0245166 +-0.0119302 0.0975527 -0.0293786 +-0.0796395 0.11488 0.0476725 +-0.00554666 0.0429634 0.0481135 +0.0336755 0.115893 0.0150272 +-0.0865455 0.109036 0.0123603 +-0.0583287 0.0597422 0.0219213 +0.00142185 0.0361564 -0.0243567 +-0.0249379 0.182957 -0.0150514 +-0.00456935 0.0511652 -0.031379 +0.00983853 0.130485 0.0204326 +-0.020719 0.0739658 0.0533053 +-0.0922608 0.117447 0.0323019 +-0.0687753 0.15954 -0.0529632 +0.00943169 0.130854 0.0188531 +-0.0463671 0.133058 0.0160254 +0.0403868 0.0966272 0.0286723 +-0.0374342 0.125294 0.0223398 +-0.0254349 0.121225 -0.00822483 +-0.0287913 0.121291 0.025511 +-0.0275751 0.181449 -0.0130337 +-0.0292637 0.0364551 -0.0300736 +0.0333063 0.076755 -0.0177777 +-0.00838403 0.100228 -0.0241757 +-0.0917675 0.126924 0.040336 +0.0460105 0.0848241 0.0111686 +-0.0458316 0.03478 0.00723173 +0.0337176 0.0655129 -0.0167917 +-0.0900318 0.128311 0.0429434 +0.00340705 0.0404653 -0.0241388 +-0.0445167 0.0334752 0.00325528 +-0.0417025 0.170926 -0.000183345 +-0.0667272 0.0750614 -0.0156487 +-0.075008 0.0665773 0.0124915 +-0.0256788 0.0387085 -0.0161237 +0.0433708 0.0459415 -0.00338184 +-0.0333944 0.0420411 -0.0295771 +-0.0366574 0.173333 -0.0118804 +0.0279341 0.0376089 0.0251213 +-0.0591944 0.0589798 0.00447595 +-0.0117173 0.0642717 -0.0365887 +0.0284258 0.044601 -0.00619231 +0.0407559 0.0844033 -0.0107694 +-0.0149445 0.0386028 -0.00457425 +-0.0666364 0.150881 -0.0385507 +-0.0441588 0.156514 0.00623469 +-0.0338796 0.174703 -0.0134692 +-0.0700283 0.075334 0.0376711 +-0.0144851 0.120961 0.0347298 +-0.0394983 0.0690894 0.041721 +-0.0820593 0.0748753 0.013529 +-0.0262192 0.162456 -0.00472466 +-0.0573804 0.151726 0.0319973 +0.0238729 0.0463312 0.0395213 +-0.00887703 0.0985896 0.0509585 +-0.00180856 0.0881831 -0.0355551 +-0.0435257 0.128183 0.0171556 +-0.0137851 0.096091 -0.0318323 +-0.0776083 0.0770893 -0.00760024 +0.0515137 0.0637653 0.0289012 +0.0459041 0.087617 0.00917007 +-0.0946685 0.124165 0.0192665 +-0.0424078 0.0392874 -0.0253255 +0.0574465 0.0566575 0.0231489 +-0.0705315 0.0915903 0.0419348 +-0.062769 0.175495 -0.0615699 +-0.0614063 0.0419532 -0.0067475 +0.0222874 0.0635154 -0.025946 +-0.0325454 0.0624467 -0.016419 +0.0406665 0.105637 0.00516291 +0.00508145 0.125851 -0.00757191 +-0.0743566 0.148587 -0.0198592 +0.028537 0.0506236 0.0375191 +0.00550651 0.0897139 0.0554063 +-0.0165465 0.061194 0.0523676 +-0.0548344 0.113627 -0.016162 +-0.078421 0.120421 0.0514142 +0.0224472 0.0375897 0.0352799 +-0.0558038 0.116914 0.0367748 +0.0399293 0.104183 0.0231644 +0.00793957 0.0368635 -0.0077325 +-0.053287 0.119647 -0.012449 +0.0226022 0.1018 -0.0197774 +-0.0735157 0.102656 0.0375574 +-0.0544964 0.10974 0.0378742 +-0.0351154 0.127437 0.0128308 +-0.0759568 0.136911 -0.00615991 +-0.0228623 0.06956 0.0485197 +-0.00937118 0.0387712 0.0309279 +-0.0858362 0.103636 0.0243714 +-0.0777036 0.174395 -0.0426027 +0.0605358 0.0664822 0.0111446 +-0.0456637 0.0382067 -0.0202858 +-0.0494922 0.0833478 0.0446801 +-0.0717916 0.0893503 -0.0160567 +-0.0654224 0.156324 0.0217941 +0.0104303 0.128801 -0.000781749 +-0.0640931 0.122778 0.0478095 +0.012373 0.0343732 -0.00643255 +-0.00549358 0.0898053 0.0568842 +-0.0544984 0.0973596 0.0432594 +-0.0430782 0.154691 -0.00814248 +-0.058643 0.155634 0.0155202 +-0.0309118 0.10664 -0.0209245 +-0.0117675 0.0728437 -0.0380964 +-0.0685186 0.1456 0.0424246 +0.0168366 0.113017 -0.0157876 +-0.0567451 0.0768007 -0.0192338 +-0.0905785 0.121592 0.0451008 +-0.0564995 0.0889847 0.0448198 +-0.062649 0.164698 -0.0365908 +-0.0414211 0.0344456 0.0316667 +0.0235849 0.102638 -0.0186769 +0.0208761 0.115613 -0.0126037 +0.00135548 0.0496637 -0.030356 +0.0172645 0.0713208 0.051333 +0.0277553 0.0619298 0.0435605 +-0.0388696 0.105647 -0.0202518 +0.002402 0.041908 -0.0243037 +-0.00348806 0.11693 0.0398821 +-0.094215 0.120106 0.0172864 +-0.075338 0.161792 -0.0134783 +-0.0313944 0.0721215 -0.0285061 +-0.076236 0.178558 -0.0487103 +-0.0516597 0.0416063 0.0458402 +-0.0191702 0.169734 -0.0206461 +-0.0458479 0.0999438 -0.0215809 +-0.0608063 0.0939347 -0.0190005 +-0.0831639 0.108847 0.00132792 +0.0449523 0.0945963 0.00616781 +-0.089716 0.139255 0.0241831 +-0.0241715 0.165363 -0.00880477 +-0.0808978 0.121685 0.0496566 +-0.0776757 0.0873848 0.0375611 +-0.0575877 0.0343902 0.0335477 +0.0293569 0.0808765 0.0442663 +-0.0413959 0.1089 -0.0192706 +-0.0486555 0.0606014 -0.0118523 +-0.0263871 0.06465 -0.0314802 +-0.0479423 0.118344 0.0305757 +0.0368905 0.10997 0.023344 +0.00465961 0.0959425 -0.0295932 +-0.00250198 0.0647948 0.0567081 +0.0155008 0.0345049 -0.00593057 +-0.0414998 0.0944525 0.0421484 +-0.0425159 0.17187 -0.00332083 +-0.00662603 0.045146 -0.0285621 +-0.0728992 0.107873 -0.010241 +0.0162924 0.0680403 -0.0298148 +-0.058126 0.0494622 0.00265482 +-0.049929 0.0335244 -0.00515732 +-0.0592138 0.116352 -0.0129282 +-0.0876027 0.103683 0.0193632 +-0.0661658 0.170967 -0.0590604 +-0.00423283 0.0951855 -0.0328472 +-0.056711 0.153132 0.0293166 +0.0299135 0.0618945 0.0413957 +-0.0754312 0.179188 -0.0498593 +-0.0890756 0.0982905 0.00941744 +-0.0313333 0.114057 -0.0167329 +-0.0336201 0.0505969 -0.0107597 +0.0152428 0.0807565 -0.0298514 +0.000144172 0.129559 0.0255502 +-0.0166332 0.101644 -0.0236856 +0.0112856 0.0666869 -0.0306751 +-0.0719068 0.110755 -0.00961867 +-0.056773 0.082629 -0.0212703 +0.0224949 0.112674 0.0362232 +0.00494458 0.0356784 0.0456125 +-0.0401622 0.123949 0.0243503 +-0.0494029 0.0516267 0.0356191 +-0.000148869 0.0998138 -0.0237113 +-0.0494252 0.12902 -0.00225187 +-0.0351127 0.162221 -0.0139882 +-0.0801061 0.109977 -0.00253557 +-0.0583279 0.116979 0.0383609 +0.0214316 0.0768422 0.0503677 +-0.0637593 0.0357681 0.0182478 +-0.0679574 0.176267 -0.0485208 +-0.0466544 0.0636155 -0.0134601 +-0.018198 0.0896163 -0.0372798 +-0.0675078 0.167827 -0.0267933 +-0.0891218 0.136568 0.0391914 +-0.00634438 0.0961732 -0.0318818 +-0.0509131 0.144221 0.000402933 +0.020479 0.0822082 0.0508036 +0.0382522 0.0617095 -0.0097618 +0.0414447 0.0957847 0.0271584 +0.0495191 0.0624602 0.0299628 +-0.0525648 0.0515684 -0.00660684 +-0.0507038 0.0543653 0.0186143 +-0.0678764 0.117979 -0.00873338 +-0.0833731 0.0803286 0.00149951 +-0.0102345 0.169322 -0.0249254 +0.0161585 0.128774 0.0170439 +-0.0495011 0.0439447 0.0438293 +-0.0308936 0.0901442 -0.0248987 +-0.0380826 0.159224 -0.0120325 +-0.0684954 0.121776 0.0527683 +-0.0237994 0.178657 -0.0117033 +0.022476 0.125337 0.020807 +-0.0131867 0.0392232 0.050872 +-0.0828365 0.116201 -0.00217327 +-0.0792107 0.0760132 0.0281283 +-0.0418712 0.105657 -0.0205306 +-0.0265289 0.11806 0.03154 +-0.0485021 0.104259 0.0404773 +-0.0515007 0.164119 0.00202375 +-0.0628742 0.175671 -0.0555946 +-0.0385777 0.1595 0.00203018 +-0.0410438 0.162368 0.00371458 +-0.0683486 0.124257 0.0521552 +0.0311264 0.0469699 -0.00653546 +-0.0346775 0.127387 0.0115177 +0.0256926 0.105619 -0.0158649 +-0.0656817 0.0705232 -0.0118151 +-0.0889612 0.111861 0.0183359 +-0.027486 0.0646029 0.0384895 +0.0307322 0.108762 0.0340805 +-0.0647018 0.172123 -0.0473675 +-0.0914367 0.114681 0.021315 +-0.00481581 0.0882239 -0.0361964 +-0.0229882 0.0386094 0.0318708 +-0.0164825 0.0530314 0.0497852 +0.031763 0.0653471 -0.018741 +0.0313568 0.052068 0.0363454 +-0.0937998 0.118753 0.0153042 +-0.0460733 0.0336746 -0.01741 +0.00639772 0.0911374 -0.0325899 +-0.0665077 0.105605 0.0392145 +-0.037944 0.165312 0.00115508 +-0.0447719 0.0826286 -0.0206706 +0.015216 0.0849668 -0.0295884 +-0.00949197 0.121025 0.0361236 +-0.0728889 0.159628 -0.0359308 +-0.0212527 0.0696869 0.051144 +-0.0609844 0.0646638 0.031213 +-0.0787829 0.0926997 0.035689 +0.0098313 0.0644618 0.0545535 +-0.0435636 0.0476726 -0.0110362 +0.00292266 0.0383702 -0.00263564 +-0.0294982 0.0674485 0.03887 +-0.0594483 0.0590098 0.0188119 +-0.0331272 0.0335545 -0.0277881 +-0.0654135 0.17638 -0.0519366 +0.0381247 0.0827831 -0.0147803 +0.0274189 0.0834776 -0.02246 +-0.0754296 0.152593 -0.0138871 +-0.0626337 0.149615 -0.00617193 +0.0395378 0.100622 0.0273876 +-0.00317446 0.0951663 -0.0328247 +0.0284436 0.0721192 -0.0227379 +0.0256796 0.0353829 0.0212256 +-0.0100479 0.0388486 -0.00567581 +-0.0815042 0.149744 0.0353513 +0.0569923 0.0508892 0.0171854 +-0.0844404 0.100576 0.0283951 +-0.066663 0.0704664 -0.0109078 +0.011503 0.108488 0.0403225 +0.0346003 0.059954 -0.013776 +-0.00350072 0.0828956 0.0574459 +-0.0308908 0.0524482 -0.0143777 +0.0220365 0.0430228 -0.0147268 +-0.0499219 0.0558508 0.0334877 +-0.0315001 0.070354 0.040029 +0.0121741 0.0780107 0.0545179 +-0.040483 0.0423569 0.0419938 +-0.0438782 0.0343145 0.0294954 +-0.0243712 0.122748 0.0255975 +-0.013279 0.101966 -0.0239644 +-0.0635872 0.0445618 0.0346899 +-0.09116 0.146144 0.0251605 +0.0191385 0.125192 -0.000918824 +0.0439709 0.0776452 -0.00278508 +-0.034376 0.0448305 0.0451875 +-0.0292764 0.0508797 -0.0213979 +-0.0586802 0.148237 0.034554 +-0.0830867 0.0803012 0.027553 +0.0470243 0.0458757 -0.000608958 +-0.0124544 0.125711 -0.00519106 +-0.0316347 0.0511137 -0.0133654 +-0.0495769 0.126877 0.0317874 +0.0446953 0.0861142 -0.000824781 +-0.0164935 0.0744329 0.0555937 +-0.07397 0.135486 -0.00709777 +-0.0388049 0.0885478 -0.0231132 +-0.0738057 0.149865 -0.0338746 +-0.0612039 0.0347997 0.0427656 +-0.0248108 0.064983 0.0421327 +-0.0374965 0.120729 0.0294163 +-0.0773599 0.0940895 0.0370488 +-0.0221316 0.122996 0.0264112 +-0.0656835 0.180548 -0.0590311 +-0.0654403 0.114174 0.0440564 +-0.0576422 0.035457 -0.0105994 +0.0063341 0.0539359 -0.0303914 +-0.0624964 0.108382 0.0385383 +0.000507196 0.0474213 0.049671 +-0.0768403 0.0682209 0.0124564 +-0.0177152 0.0613627 -0.0358053 +-0.0708829 0.156323 0.0169624 +-0.0801272 0.0895173 -0.00861746 +-0.0681398 0.156014 0.0252192 +-0.0643944 0.0418449 0.0286723 +-0.0223108 0.122995 -0.00618559 +-0.0332179 0.0347336 0.0278325 +-0.0494838 0.129682 0.0301574 +-0.0874269 0.111566 0.0378689 +0.0078939 0.0373631 -0.01008 +-0.0556091 0.0372359 0.0469697 +-0.0495471 0.140136 0.00640196 +-0.0721891 0.0696552 -0.00460695 +-0.0645108 0.135348 0.0400634 +-0.00963836 0.0466527 -0.0295963 +-0.00450177 0.0856564 0.0572774 +-0.0726963 0.163825 -0.0409661 +-0.0831522 0.148677 0.0355101 +-0.0045943 0.109577 -0.0220661 +-0.0700292 0.14319 -0.0126949 +0.0170086 0.0672594 0.0509139 +-0.0184932 0.0842766 0.0574008 +0.0333985 0.0809938 -0.0187374 +-0.00658339 0.116828 -0.0157946 +-0.0830307 0.110356 0.0344756 +-0.0164574 0.11955 0.0353527 +-0.0437556 0.0335262 -0.0205177 +-0.0196754 0.180147 -0.0162801 +0.00748686 0.0427091 0.0452774 +0.047238 0.0525837 0.0312359 +-0.00150012 0.0842876 0.0575029 +-0.0647611 0.154265 0.00245101 +0.0385227 0.108358 0.00315989 +0.00616601 0.0343841 0.0199712 +0.0190967 0.127602 0.0138576 +0.0232916 0.104676 0.0408599 +-0.0209519 0.121676 -0.0087885 +-0.000475449 0.077417 0.0583222 +-0.0340577 0.0344858 -0.0194842 +-0.0449113 0.0342791 0.0293115 +-0.02963 0.125357 0.0045818 +-0.0442513 0.120873 0.0273959 +0.0233607 0.0713858 0.0478141 +0.0294074 0.0974659 -0.0171759 +-0.0251322 0.110719 -0.0192347 +-0.0168318 0.0883012 -0.0380546 +-0.0537516 0.078251 -0.0196488 +-0.0617185 0.155298 -0.026582 +0.0182327 0.0369462 -0.015679 +0.0204347 0.103384 0.043762 +-0.0271652 0.177189 -0.00775302 +-0.078183 0.161072 -0.0259393 +-0.000994284 0.0346324 -0.0168306 +-0.0369077 0.0407733 0.0449918 +-0.0117377 0.0685356 -0.0370961 +-0.0520176 0.136681 0.0271356 +-0.0244827 0.044849 0.0526821 +0.0122811 0.0490196 0.0473922 +-0.0310488 0.126128 0.0128475 +-0.0612252 0.0618413 0.0248018 +0.0110023 0.0872551 0.0546654 +0.0137177 0.0926941 0.0515916 +-0.050909 0.135812 0.0260882 +-0.0514988 0.090386 0.0447021 +-0.0776802 0.121779 0.0520726 +-0.0435045 0.0492094 0.0395536 +0.0427867 0.0445146 0.027427 +-0.0124587 0.0716774 0.0554083 +-0.0903482 0.115904 0.00630147 +-0.0676703 0.159658 -0.00956407 +-0.0534975 0.100135 0.0423919 +0.0299608 0.102103 0.0382304 +-0.0275896 0.0398384 -0.0294326 +-0.0354902 0.0576195 0.0391492 +-0.0365293 0.120277 -0.0112077 +0.000101878 0.111584 -0.0199068 +-0.0568115 0.11798 -0.012657 +-0.0134078 0.0383017 0.0160824 +-0.078485 0.131655 0.0526796 +-0.0630792 0.17626 -0.0613621 +0.00219436 0.0880897 -0.0340427 +-0.00664745 0.0511524 -0.0316637 +-0.0221856 0.122325 -0.00745001 +0.0517581 0.0684217 0.00143507 +-0.0206221 0.0450432 -0.0278804 +-0.0187788 0.181486 -0.0239544 +-0.0435029 0.119128 -0.0140097 +-0.0368374 0.0957548 -0.023046 +0.0360094 0.105316 -0.00780471 +-0.0310017 0.0339922 0.010953 +0.0468601 0.0467385 0.0270828 +-0.0800669 0.107282 -0.00460113 +0.0161405 0.0847501 0.0515574 +-0.0726437 0.152619 -0.0388965 +-0.030372 0.124909 0.019004 +-0.0532086 0.0387959 0.0470712 +-0.00947284 0.0717726 0.0568611 +-0.0417517 0.0449058 -0.0193246 +-0.0324319 0.159505 0.00208324 +-0.064273 0.0404086 0.0266782 +-0.0456914 0.0665681 -0.0150523 +-0.0317955 0.0901023 -0.0248195 +-0.0901544 0.148798 0.0121684 +-0.0448181 0.0898814 -0.0220536 +-0.00651 0.0385696 0.00453582 +-0.0505409 0.146308 0.012527 +-0.0736443 0.148637 -0.0247496 +0.0362923 0.0826461 -0.0167222 +-0.0582688 0.0380855 0.0465946 +0.0420736 0.0957824 -0.00279849 +0.059075 0.0677442 0.0201625 +-0.0118076 0.166362 -0.0213381 +-0.0293882 0.0593157 -0.02241 +-0.00750084 0.0688979 0.0559719 +-0.0834808 0.0763288 0.0055122 +0.0455463 0.0847945 0.0181695 +-0.0853379 0.139291 0.0436042 +-0.0127384 0.0714338 -0.0383051 +0.0288553 0.119043 0.000370228 +0.0382387 0.108322 0.00216703 +-0.0854254 0.147285 0.0350057 +-0.0290239 0.0918566 -0.0266024 +-0.089435 0.0996945 0.016394 +-0.0250572 0.0379934 0.0230062 +-0.0659224 0.108105 -0.0137141 +-0.0197383 0.064191 -0.0362126 +0.0332406 0.0828224 -0.0189128 +-0.050463 0.0627793 0.0338697 +-0.00332118 0.0928352 -0.0344367 +-0.0351624 0.0344214 0.0133327 +0.0337894 0.103744 -0.0118635 +-0.0685313 0.0435239 0.00368786 +-0.0915175 0.140609 0.0191776 +-0.0763247 0.0679089 0.0110614 +-0.0293662 0.0904135 -0.0285737 +-0.0268485 0.0931277 -0.028596 +-0.0493167 0.137038 0.00442458 +-0.0607789 0.121227 0.0419471 +-0.0167795 0.0984818 0.0458118 +-0.0218018 0.0947992 -0.0305488 +-0.0933659 0.118725 0.0133024 +-0.0263107 0.0780916 0.0488984 +-0.0689525 0.144454 -0.0174142 +-0.0698503 0.0980241 -0.015524 +0.0377251 0.0602627 -0.00973714 +-0.0616079 0.160003 -0.0285892 +-0.00362249 0.0451016 -0.0279234 +-0.0658161 0.0866791 -0.018673 +-0.0898976 0.132262 0.00523931 +-0.014426 0.0383347 0.0104075 +-0.0891789 0.14342 0.0311627 +-0.0516305 0.0633366 -0.0105425 +0.0421385 0.102872 0.00916356 +-0.073056 0.163825 -0.0399663 +0.0142799 0.0695538 -0.0310885 +-0.0191804 0.172724 -0.0156293 +-0.0111853 0.109046 -0.0214904 +-6.48961e-05 0.130222 0.00105503 +-0.037907 0.0368934 -0.0113278 +-0.0778791 0.116346 -0.00545689 +-0.0353032 0.042242 0.0460623 +-0.0732356 0.176411 -0.0530886 +0.0601048 0.0608967 0.00715985 +-0.052965 0.0595916 0.0265588 +-0.0564973 0.0762116 0.0428205 +-0.034872 0.104274 -0.0209307 +-0.058681 0.0336414 -0.0106847 +-0.082997 0.0883523 -0.00560613 +-0.0901456 0.140633 0.0231701 +0.059772 0.0594746 0.00715469 +0.0315129 0.0439606 0.0299133 +-0.0749354 0.108383 0.0378851 +-0.0718123 0.0950995 -0.0154446 +-0.017311 0.117579 -0.0145168 +-0.0492219 0.145089 -9.42983e-05 +-0.0492467 0.0335224 -0.00684693 +-0.077013 0.157587 -0.0116646 +-0.0395098 0.12077 0.029092 +-0.0676415 0.155906 0.0108585 +-0.0115046 0.0688083 0.054897 +0.00350877 0.068881 0.0557692 +-0.00832726 0.0349131 -0.024554 +0.00623924 0.0754282 -0.0343629 +-0.0601994 0.14968 0.0358889 +-0.0681006 0.0726203 0.0368546 +-0.0550659 0.154073 0.0197239 +0.0220423 0.0388246 -0.00567731 +-0.050633 0.0633988 -0.0111763 +0.0262673 0.0718723 -0.0242084 +0.00651709 0.084208 0.0565081 +-0.0508195 0.0927229 -0.0217389 +-0.0823617 0.110377 0.0328225 +-0.0443307 0.0345511 0.0362271 +-0.0664541 0.159015 -0.0105538 +-0.065725 0.180452 -0.0578644 +-0.00729397 0.0383333 0.0172997 +-0.083856 0.108875 0.00233606 +-0.0531754 0.160014 0.00733632 +-0.0617546 0.0335347 0.00511487 +-0.0436843 0.0666417 -0.0153695 +-0.0475053 0.16079 0.00736091 +0.0213151 0.0393899 0.0411211 +-0.0126085 0.0434839 -0.0264186 +-0.058072 0.135467 -0.00577889 +-0.0144744 0.0573903 0.0514423 +-0.0480757 0.15465 -0.00633475 +-0.0214326 0.158913 -0.0108411 +0.0317035 0.0927362 -0.0181479 +0.0258633 0.0505634 0.0389033 +-0.0916556 0.116096 0.0323166 +-0.0344737 0.0973629 0.0436701 +-0.0772898 0.158355 -0.013903 +0.00252455 0.078679 0.0567626 +-0.0768599 0.0852186 -0.0125783 +0.00638417 0.060281 0.0547831 +0.00351108 0.067509 0.0559028 +-0.0775506 0.172738 -0.0395384 +-0.0941076 0.120125 0.0222927 +0.0397169 0.0400457 0.0217023 +-0.00993012 0.125562 -0.00707028 +0.0207467 0.0387687 0.0412277 +-0.0770466 0.0947961 -0.0125384 +-0.0208658 0.163381 -0.0161046 +-0.0194871 0.0786419 0.0560662 +-0.00848562 0.0978428 0.0521021 +-0.00195749 0.0369571 0.00873581 +-0.0554658 0.14959 0.0286413 +-0.0613355 0.171315 -0.0617342 +-0.0405058 0.060576 0.0408455 +-0.019245 0.0381493 0.0168345 +0.0318352 0.0959581 -0.0155753 +-0.0894336 0.0956291 0.0144221 +-0.0562826 0.138192 -0.0042334 +-0.0587859 0.118384 0.0394982 +0.0557398 0.0577143 0.000186064 +0.021293 0.0347861 0.0208687 +-0.0521809 0.0564969 0.0230721 +-0.088994 0.140671 0.0361625 +-0.0626529 0.0336856 0.0101657 +-0.0346997 0.0808739 -0.0236048 +-0.0740754 0.0791322 0.0370556 +0.0424523 0.0958497 0.0251568 +0.0156501 0.129207 0.0125793 +-0.0758074 0.0766216 0.033593 +-0.053977 0.0335099 0.00491422 +-0.049617 0.115589 0.0334474 +-0.0151821 0.115592 -0.0164315 +0.0198002 0.113601 -0.0144182 +-0.0297803 0.0833036 -0.0335871 +-0.0888224 0.0929368 0.0224135 +-0.0255078 0.162179 -0.0150106 +-0.0468796 0.105628 -0.0200508 +0.0328144 0.0654355 -0.0177831 +0.0401246 0.0657991 0.0315825 +-0.0619246 0.161563 -0.0295917 +-0.0336612 0.0423072 0.0487868 +-0.0806782 0.140364 -0.00279029 +-0.0575747 0.034031 0.0251021 +-0.00250061 0.0856648 0.0572816 +-0.051497 0.0776631 0.0434639 +-0.0314085 0.177247 -0.00418119 +-0.0382796 0.035429 0.0243806 +-0.0273926 0.0381858 0.00428469 +-0.0590133 0.128179 -0.00718347 +-0.059761 0.058524 0.00837605 +-0.089717 0.142036 0.0301646 +-0.0708787 0.0634588 0.0196178 +0.017237 0.0368135 -0.0176915 +0.0283981 0.0848865 0.0446615 +0.042292 0.0669509 0.0276386 +-0.0400442 0.15362 -0.00816685 +-0.0666868 0.15458 -0.000433214 +0.00520355 0.0894816 -0.0332282 +-0.0438381 0.033833 0.0263899 +-0.0863798 0.100827 0.00341316 +-0.0560788 0.154579 -0.00133297 +-0.0130807 0.0387897 0.0319484 +0.0526374 0.0710929 0.00470311 +0.0114966 0.0923286 0.0527326 +-0.0637555 0.0336685 -0.00625178 +-0.0475689 0.0432884 -0.0109341 +-0.0725775 0.0367142 0.00725292 +-0.0374892 0.112529 0.0350998 +0.0350676 0.0395586 0.0248293 +-0.031508 0.0675059 0.0394967 +0.0422807 0.0831292 -0.00677447 +-0.0617624 0.0810326 -0.0192317 +-0.0601798 0.155861 0.0135147 +-0.0160151 0.185636 -0.0207096 +-0.0495589 0.141679 0.00640064 +0.0451001 0.0791381 0.000209359 +-0.00648871 0.115533 0.0401374 +-0.0179936 0.034905 0.0502652 +-0.0345243 0.0619374 0.0399691 +0.0253647 0.107408 0.0385761 +0.0241683 0.0795725 0.0490812 +-0.076883 0.154198 -0.00789596 +-0.022619 0.0436731 -0.0285417 +0.0302544 0.115002 0.0294335 +-0.0112354 0.0407042 0.0501624 +-0.0374964 0.118015 0.0312717 +-0.0264155 0.169752 -0.0102811 +-0.0325172 0.115309 0.0332233 +-0.0883434 0.0968836 0.00640652 +-0.0074894 0.104457 0.0437929 +-0.0122029 0.0391189 0.0354325 +0.0605626 0.0609358 0.0161739 +-0.0291057 0.0349617 0.0478282 +-0.00632683 0.0367419 -0.0160833 +0.0422139 0.06433 -0.00247442 +-0.0834639 0.0815548 0.0279962 +-0.091428 0.113787 0.018961 +-0.0164849 0.0911174 0.0558291 +-0.0521483 0.153554 0.0122178 +0.0344074 0.0446243 -0.00536213 +-0.09232 0.126938 0.0302595 +-0.0718881 0.12088 -0.00850233 +-0.0769692 0.155214 0.0250641 +-0.0847077 0.140411 0.00224002 +-0.0180254 0.171268 -0.0157212 +0.0102822 0.065327 -0.0312772 +-0.0271732 0.171194 -0.0185934 +-0.0475224 0.0587349 0.0366732 +-0.0815066 0.0980245 0.032594 +-0.0287322 0.0335484 -0.0250427 +0.000965074 0.0348235 0.00577003 +-0.0874433 0.114073 0.0447649 +-0.0745611 0.163685 -0.0159572 +-0.0504998 0.0931897 0.044287 +0.00144942 0.127679 0.0289378 +-0.0830551 0.128552 0.0515383 +-0.0537303 0.0473713 0.0135851 +-0.0226958 0.0380494 0.0144148 +-0.0698996 0.147518 -0.0298062 +-0.0374978 0.0833038 0.0438252 +0.0144108 0.118463 -0.013667 +-0.0810085 0.1097 0.0318734 +-0.0883068 0.151437 0.0121831 +0.0014962 0.114186 0.0411808 +-0.0457512 0.0782542 -0.0192962 +-0.0728503 0.107163 0.0374416 +-0.0546426 0.0335759 -0.00981752 +-0.0905935 0.133662 0.00922276 +-0.0777368 0.158322 -0.016916 +0.0333249 0.108715 0.0307644 +-0.0758319 0.0675199 0.00554661 +-0.0608714 0.0385134 0.0195368 +-0.0766234 0.167356 -0.0265012 +0.0324864 0.115764 0.0245556 +-0.051601 0.149349 0.0154046 +-0.0370133 0.1227 0.0269929 +-0.0556554 0.124247 -0.00722427 +-0.0272643 0.118767 -0.0116611 +-0.0284876 0.0660147 0.0384689 +-0.0890493 0.136506 0.0262024 +0.0455252 0.0918117 0.00617298 +-0.0739705 0.110854 0.0450522 +-0.054929 0.0378655 -0.0109689 +-0.0211646 0.0933284 0.0517404 +-0.00865087 0.0496719 -0.030975 +0.0599111 0.0692057 0.0151972 +0.0182222 0.0631608 0.0491228 +-0.0659867 0.134061 -0.00822741 +-0.0533518 0.117447 -0.0141574 +-0.0356207 0.0519761 -0.0103771 +-0.0674828 0.0383816 0.0133921 +-0.0179472 0.0391243 0.0360362 +-0.0353932 0.0352385 0.0143534 +-0.0381912 0.168168 -0.0127822 +0.0242439 0.0994852 0.044008 +-0.0331278 0.165217 -0.0153881 +0.0419441 0.102888 0.00516309 +-0.0744413 0.0833098 0.038687 +-0.0349807 0.177 -0.00919022 +0.00950876 0.0882899 0.055046 +0.0203114 0.0607424 -0.0267183 +-0.00473829 0.0684427 -0.0355801 +-0.0293549 0.0495451 -0.022456 +0.0213555 0.0521216 -0.0251867 +-0.0608025 0.132515 0.0384279 +-0.086306 0.0981081 0.00140707 +0.0124215 0.122685 -0.01021 +0.0534041 0.0547278 -0.00176167 +-0.0725172 0.105485 0.0374705 +-0.0925573 0.125589 0.0382552 +0.023685 0.124697 0.0198268 +0.0381226 0.0574698 -0.00591549 +-0.0358756 0.107103 -0.0202685 +-0.00445554 0.112864 -0.0195829 +-0.00333512 0.125963 -0.00760181 +0.0355639 0.058664 -0.0117324 +-0.0752743 0.171989 -0.0354168 +0.0264872 0.122262 0.00520712 +-0.0911855 0.114622 0.00933636 +-0.0888501 0.102361 0.0153809 +0.0303343 0.0358493 0.0181065 +0.0388945 0.108364 0.0171641 +0.0444906 0.0861036 -0.00180248 +-0.00457845 0.0388805 0.0300129 +-0.0689372 0.126774 -0.00892675 +0.0352594 0.113795 0.0141522 +0.0379749 0.0374097 0.0109015 +0.00640925 0.0404248 -0.023654 +-0.0569156 0.112617 -0.0162683 +-0.0161127 0.0388433 -0.0124778 +-0.0568734 0.0358081 0.0462717 +-0.0852004 0.111887 0.0434561 +-0.0393334 0.174116 -0.00798067 +-0.0335527 0.156609 0.00223348 +-0.06623 0.13826 0.0429445 +-0.029146 0.168214 -0.0173005 +0.0267233 0.0347365 0.00732658 +-0.0416725 0.0607151 -0.0124173 +-0.0304675 0.175749 -0.00423829 +-0.0888241 0.114444 0.00524771 +-0.00228102 0.038771 0.0269718 +-0.0353955 0.0337248 -0.0302701 +-0.0474965 0.0862056 0.045143 +-0.0615859 0.155307 -0.0235819 +0.0506383 0.0516722 -0.00273463 +0.0335552 0.036072 0.00748554 +-0.00436077 0.12603 -0.00766771 +-0.0239599 0.182991 -0.0170658 +-0.00549985 0.07185 0.0581365 +-0.0328429 0.0972178 -0.0231932 +-0.091474 0.148846 0.0181354 +0.0336134 0.0876336 0.0416906 +-0.0614982 0.101529 0.0422258 +-0.0495014 0.0464837 0.0411417 +-0.0551395 0.054088 0.00915623 +-0.0432223 0.147486 -0.00120685 +-0.0358825 0.108535 -0.0199213 +0.00990352 0.130871 0.0175976 +-0.00150184 0.0978367 0.052434 +-0.0334203 0.0667037 -0.0174892 +0.0289827 0.0467369 -0.00766304 +-0.0555362 0.0629843 -0.00681601 +-0.0758946 0.0992374 -0.0118631 +-0.0367472 0.127095 0.0166739 +-0.0571684 0.0576767 0.00966588 +-0.0823623 0.154598 0.0188308 +-0.0905142 0.129614 0.0405398 +-0.0677394 0.0764997 -0.0160371 +-0.0201192 0.163785 -0.0165508 +-0.0132881 0.113144 -0.01784 +0.0143956 0.046307 -0.0246969 +0.0117341 0.0390743 0.0447312 +-0.0746833 0.155701 -0.000366346 +-0.069527 0.156219 -3.70248e-05 +-0.0226679 0.0341396 -0.0206509 +-0.00924422 0.0344526 -0.0182921 +-0.0276907 0.0335904 -0.024878 +-0.00470812 0.0669686 -0.0349707 +-0.024291 0.106203 -0.0224613 +-0.0142085 0.0972199 -0.0290358 +-0.0465353 0.133196 0.0100953 +-0.0245088 0.108515 0.0403619 +-0.092997 0.116043 0.0153159 +-0.0517083 0.131123 0.0322407 +-0.0456135 0.053373 -0.0104441 +-0.0345226 0.0846315 0.0427551 +-0.00735617 0.0354566 -0.0169734 +-0.0865776 0.109066 0.0163469 +-0.0436408 0.0408205 -0.0223011 +-0.0526724 0.130856 -0.00431281 +-0.0516582 0.0647811 -0.0108241 +0.0182047 0.100313 -0.0224597 +0.0445886 0.0833307 0.0241696 +-0.0749819 0.151307 -0.0268775 +-0.0846364 0.0845811 0.0264985 +-0.0452001 0.165138 -0.00833108 +-0.0791947 0.168601 -0.0366432 +-0.0848581 0.120613 -0.00298955 +0.0319638 0.0780558 -0.0197042 +-0.0923737 0.128196 0.0102559 +0.0394261 0.0716433 -0.0107927 +0.0122035 0.115305 -0.0162457 +-0.0229162 0.0383263 0.00143492 +0.0428254 0.0986969 0.0191637 +0.0153612 0.0463061 -0.0243571 +-0.00764709 0.0511598 -0.0317878 +-0.0853621 0.135278 0.0465646 +-0.0829375 0.116994 0.0487646 +-0.085028 0.100559 0.0275605 +-0.0219183 0.0382906 0.00166561 +-0.0765591 0.0818865 0.0366215 +0.0417584 0.0971928 -0.00282344 +-0.064598 0.141073 0.0399979 +0.0464507 0.0764566 0.0101865 +-0.0788399 0.114858 -0.00418456 +-0.0825062 0.110166 0.000353593 +0.029005 0.0699505 0.0419019 +-0.0144969 0.0814706 0.0569355 +0.0278524 0.115393 0.0316598 +-0.0742949 0.17555 -0.0422185 +-0.0749686 0.158241 -0.0259415 +-0.0378653 0.102824 -0.0209313 +-0.0110297 0.11443 -0.0172182 +0.0092913 0.0739064 -0.0330363 +0.0274028 0.0416284 -0.00496361 +-0.0105374 0.130025 0.0158825 +-0.0530895 0.0530892 -0.00643833 +-0.0165413 0.0573347 0.0511714 +0.0165193 0.125294 -0.00303164 +-0.080526 0.109264 0.0359357 +-0.0639459 0.153257 -0.00670123 +0.0199666 0.126684 0.0198751 +0.0426813 0.101508 0.00916223 +0.0270307 0.0781852 0.0461538 +0.00819303 0.0342719 -0.00156322 +-0.0758021 0.154133 0.0299324 +0.0217183 0.114203 -0.013082 +-0.0761724 0.154401 0.00198863 +0.0253655 0.0814952 -0.0244829 +-0.0357817 0.0871994 -0.0240994 +-0.0181797 0.178658 -0.0176382 +-0.018211 0.0697307 0.0537615 +-0.0393811 0.154717 -0.00895732 +-0.014508 0.0659228 0.0537042 +-0.0294961 0.104302 0.0413374 +-0.0281692 0.171188 -0.018077 +-0.0564789 0.0833746 0.0446901 +-0.0817321 0.120346 0.0490739 +-0.0180945 0.124042 -0.00530863 +-0.0722448 0.0688588 0.0287217 +-0.064637 0.0404566 0.0276669 +-0.0642686 0.171043 -0.0609844 +-0.00150003 0.0520299 0.0541649 +0.0343966 0.0968432 0.0376227 +0.033587 0.0739599 -0.0167921 +-0.0916761 0.122705 0.00729331 +0.0435692 0.0691645 0.0259965 +-0.0583799 0.0342852 0.0299739 +0.0193411 0.0593649 -0.0271573 +-0.0630027 0.145885 -0.0118617 +-0.0492939 0.133961 0.00142725 +-0.0445641 0.0405033 0.0438121 +-0.0534909 0.101517 0.0419949 +-0.0137652 0.0728728 -0.0386088 +-0.000746952 0.0726633 -0.0355323 +-0.00426313 0.130924 0.016725 +-0.0833848 0.0776237 0.00250717 +0.0107457 0.127435 -0.00331768 +-0.0566099 0.136533 -0.00462162 +-0.0137664 0.0742812 -0.0386456 +-0.0253123 0.0865272 0.0518462 +0.0391332 0.0800655 -0.0117735 +-0.0595022 0.0987448 0.042776 +-0.031899 0.0792306 -0.0315346 +-0.074881 0.117904 -0.00727699 +-0.0755718 0.165165 -0.0201548 +0.0408155 0.0939721 0.0292858 +-0.0854938 0.096523 0.0281673 +-0.0644931 0.105621 0.039804 +-0.0196701 0.0554437 -0.0324495 +0.0139693 0.112639 -0.017366 +-0.00232624 0.124886 -0.00844394 +-0.0617679 0.0824635 -0.0193558 +-0.0599121 0.0588939 0.00621161 +-0.0826266 0.146034 0.0392943 +-0.0649084 0.165706 -0.0272764 +-0.0602113 0.0697286 0.0375341 +-0.00175042 0.0897209 -0.0353687 +-0.0275054 0.107176 -0.0215083 +-0.062122 0.0429616 0.0266943 +0.032428 0.0625798 -0.0177725 +-0.0663881 0.0677373 0.0326703 +-0.02076 0.0347198 -0.0277376 +-0.0519381 0.0597689 0.0297286 +-0.0595413 0.0582322 0.0158865 +-0.0445568 0.151229 -0.00569012 +-0.0210951 0.12531 -0.000542597 +-0.020213 0.178617 -0.0227863 +-0.00769265 0.0388371 -0.00333188 +-0.0344924 0.09037 0.0442186 +-0.0786032 0.107051 0.0327104 +-0.0434904 0.12843 0.000929671 +-0.058473 0.115363 0.0369711 +0.045085 0.0833373 0.00221176 +-0.0384977 0.0648621 0.0416261 +-0.0407478 0.0768336 -0.0187281 +-0.0578796 0.102621 -0.0187883 +-0.0846144 0.128516 0.0502768 +0.0170529 0.075444 0.0528157 +-0.018505 0.0786406 0.056357 +-0.0752579 0.0874199 0.0393733 +0.043967 0.0636126 -0.00172463 +-0.0914628 0.146095 0.0181484 +-0.0294715 0.117536 0.0312989 +-0.0581079 0.0480417 -0.000353036 +-0.0384621 0.172216 -0.000421117 +0.0412086 0.0684033 0.0296357 +-0.0332986 0.0384796 -0.0137148 +-0.0549774 0.0335456 0.00467992 +0.00953694 0.103082 0.0459273 +-0.048193 0.133027 0.0241926 +0.00364343 0.0960341 -0.0296841 +-0.0809226 0.0926448 0.0335946 +0.0316471 0.05126 -0.00972402 +-0.0622205 0.164668 -0.0515889 +0.0257137 0.0591918 0.0440938 +-0.0116637 0.0384284 0.00907266 +0.00758624 0.0341288 -0.016561 +-0.0732628 0.0731075 0.0335988 +0.0105031 0.0347322 0.0422156 +0.0273613 0.0592959 -0.0217662 +-0.0329323 0.126815 0.00921204 +-0.0462425 0.0615364 0.0381535 +0.00735972 0.130718 0.020957 +-0.0618449 0.152018 0.0348716 +-0.0311962 0.0475489 -0.0247586 +-0.0384898 0.113893 0.0344296 +-0.0268492 0.155368 -0.00477229 +0.0138974 0.0344287 -0.0156692 +-0.0374813 0.169748 0.00157136 +-0.0892091 0.137796 0.0122163 +-0.0705026 0.0958452 0.0418601 +-0.0862013 0.10903 0.0113533 +-0.0682521 0.15944 -0.00832765 +0.038441 0.100665 0.0293761 +-0.0639313 0.11526 -0.0113233 +-0.0664444 0.151761 -0.0404644 +0.0142088 0.034798 0.0302902 +-0.0244166 0.0931902 0.0479432 +-0.0714792 0.167875 -0.0225174 +-0.0161203 0.0383572 0.000963241 +0.0282773 0.0862159 0.0445154 +0.0375 0.107296 0.0262149 +-0.0891989 0.11586 0.044703 +0.00339178 0.0433892 -0.0247833 +-0.0790801 0.0704064 0.00826811 +-0.0237813 0.0756129 -0.0382516 +0.00190837 0.124868 -0.00847893 +0.0243137 0.119818 0.0300741 +-0.0758951 0.123764 -0.00763971 +0.052991 0.0735097 0.0116286 +-0.0175974 0.0393048 -0.0277532 +-0.013784 0.0799171 -0.0389774 +0.00451197 0.0619711 0.0562284 +-0.0331612 0.0342582 0.0246899 +0.0314823 0.114431 0.0284596 +-0.0530088 0.145722 -0.00115007 +-0.0684496 0.0369814 0.0129839 +-0.0203772 0.158233 -0.00725915 +0.0148967 0.0366228 -0.0205744 +-0.0250413 0.0925197 -0.0322644 +-0.0424949 0.168218 0.00285877 +-0.0414982 0.0719267 0.042103 +-0.0939163 0.120093 0.0142993 +-0.0164902 0.112704 0.0398029 +-0.000484486 0.0703477 0.056848 +0.060415 0.0678562 0.0151973 +-0.0550635 0.116914 0.036091 +0.0200483 0.0385661 -0.0116898 +-0.0250588 0.123734 -0.00291588 +0.0403936 0.0629925 0.0301493 +0.0379656 0.0874795 0.0356781 +-0.0548923 0.105518 -0.0186699 +-0.0311396 0.166714 -0.0162904 +0.0470624 0.0740285 0.0123586 +-0.0678676 0.100922 -0.0154166 +-0.0631629 0.124137 0.0456282 +-0.0731746 0.154066 -0.0319096 +-0.0307727 0.033545 -0.0254394 +-0.0890856 0.122978 0.0464209 +-0.0236634 0.123398 -0.00459221 +0.046259 0.0820395 0.0071847 +-0.000605347 0.130433 0.0223861 +0.0192013 0.0591556 0.0487522 +-0.0498987 0.124057 -0.00910218 +-0.0170638 0.168326 -0.0143421 +0.0265398 0.104204 -0.0163559 +-0.0938575 0.120136 0.0242923 +-0.0179474 0.100123 -0.0240926 +-0.058599 0.155538 0.0184341 +-0.0170777 0.0418831 0.0522589 +-0.0545484 0.0457621 -0.00683862 +0.00723985 0.076824 -0.0341303 +-0.0907031 0.148891 0.0231421 +-0.0174825 0.107148 0.0420092 +-0.0911131 0.129682 0.0362351 +-0.0499113 0.147776 0.0118822 +-0.0657818 0.152842 -0.0413063 +0.0528515 0.0592232 -0.00323634 +-0.0693828 0.0805427 0.0408087 +-0.060108 0.0423138 0.0158374 +0.0281616 0.0699505 0.0424355 +0.00679863 0.0347495 0.0432322 +-0.0458268 0.125298 0.0247658 +-0.0567225 0.043789 0.0226896 +-4.09913e-05 0.10064 0.0465907 +-0.0729374 0.129655 -0.00843737 +0.0415013 0.104244 0.010161 +0.0342459 0.0889575 0.0408509 +-0.0808289 0.138985 -0.00281163 +-0.0425095 0.171123 -0.00130836 +-0.0870569 0.137884 0.0425258 +0.00149552 0.116934 0.0397718 +-0.0158011 0.0388262 -0.0105326 +0.00549603 0.0413259 0.0457036 +-0.0325959 0.124521 0.0211556 +-0.058912 0.109738 -0.0167726 +-0.0772259 0.151416 -0.00590086 +-0.0077735 0.0770379 -0.0376668 +0.0385932 0.0436441 0.0291648 +-0.0778914 0.162484 -0.0299302 +-0.0641074 0.0639595 0.0276548 +0.0187103 0.0342934 0.0023932 +-0.0858293 0.151702 0.00893089 +0.0336067 0.0504819 0.0325279 +-0.0810076 0.10869 -0.00259876 +-0.0557401 0.0547516 -0.00240302 +-0.0335154 0.108413 0.0382413 +-0.00564795 0.049654 -0.0307584 +-0.0765497 0.0728479 -0.00560245 +-0.00214115 0.127727 0.0291435 +-0.0701217 0.159568 -0.0479252 +-0.0794787 0.104524 -0.00660043 +0.00849938 0.0366585 0.0454484 +-0.0305059 0.0889327 0.0438397 +-0.0638439 0.101082 -0.0177706 +-0.0045041 0.0801506 0.0577231 +0.013232 0.0835986 -0.0303791 +-0.0809796 0.0788834 0.0298322 +-0.0148841 0.0959887 -0.031739 +-0.0699437 0.0669048 0.0273786 +-0.0514117 0.134659 0.0288827 +0.0105257 0.123354 0.0336723 +0.0263222 0.107421 0.038207 +-0.0125183 0.095238 0.0536312 +-0.0634853 0.0904216 0.0451002 +0.0377424 0.110293 0.0150624 +-0.0700913 0.0419644 0.00613646 +-0.0565326 0.0401709 -0.00945456 +-0.0553504 0.0460785 0.0138247 +-0.0114916 0.0759418 0.0571389 +-0.0796666 0.0886389 0.0352895 +0.0338998 0.0888046 -0.0179815 +-0.0207237 0.0567772 0.0467736 +0.0293267 0.120376 0.00767428 +-0.0865466 0.137714 0.00320362 +-0.0815177 0.106 -0.00361682 +0.0360857 0.0784054 -0.0147648 +-0.0706254 0.129856 0.0506426 +0.0309103 0.088937 0.0430941 +0.0186908 0.127724 0.0151265 +0.0607002 0.0665033 0.01416 +-0.0347226 0.0711465 -0.0183854 +-0.0475247 0.0335798 -0.00289187 +0.00330662 0.0597508 -0.0323981 +0.0162777 0.117973 -0.0131407 +0.0260142 0.118212 -0.00538239 +-0.0524983 0.0477783 0.0397646 +0.00462528 0.109546 0.0419595 +-0.0848442 0.146005 0.0372765 +-0.0568876 0.0998079 -0.0197942 +-0.0478768 0.15504 0.00962757 +0.0236771 0.0956901 -0.0213272 +-0.0909699 0.113313 0.018324 +-0.0314956 0.0560344 0.0371147 +0.0419523 0.101425 0.00119033 +-0.0205212 0.118181 0.0347958 +0.00296971 0.0341513 0.00863676 +-0.0034922 0.0473569 0.0490622 +0.0168587 0.0347265 0.0236529 +-0.00422658 0.0396088 0.0480089 +0.0402871 0.104196 0.0211608 +-0.0211382 0.0985478 0.044502 +-0.0469324 0.0383628 -0.0152843 +0.0223386 0.0578809 -0.0262309 +-0.094679 0.122825 0.0202733 +-0.00649716 0.0619561 0.0561245 +-0.0530923 0.143138 0.0243879 +0.0586666 0.0690768 0.00715872 +-0.0632884 0.0444363 0.0372932 +-0.0584087 0.0421172 0.0451764 +0.0462769 0.0649494 -0.00109094 +-0.0892011 0.0983026 0.0104143 +-0.050311 0.033406 0.00395206 +-0.0171117 0.123425 0.0297114 +-0.0067867 0.0784694 -0.0378945 +-0.0413793 0.0448727 -0.0203291 +0.00613123 0.105885 -0.0208912 +-0.0209654 0.035527 0.0525237 +0.0515169 0.0664883 0.0274059 +-0.0186581 0.0985081 0.0446525 +0.00326552 0.127077 0.029619 +0.00950248 0.111292 0.0396928 +0.0420852 0.077848 0.0291974 +-0.0404715 0.0343242 0.0319689 +-0.0775002 0.156948 -0.0139048 +-0.0828255 0.0924347 -0.00656966 +-0.0256554 0.124701 0.019279 +0.00649798 0.107134 0.0414437 +-0.0067083 0.0613544 -0.0352012 +-0.0341277 0.165212 -0.0151261 +-0.0305288 0.0353431 -0.0195833 +0.00449494 0.105757 0.0421851 +-0.0313565 0.161046 -0.00157639 +0.00317447 0.0908801 -0.0331491 +-0.066706 0.0375681 0.0351923 +0.0146203 0.128223 0.0236197 +-0.0931816 0.121543 0.0372829 +-0.0390449 0.0344196 0.0339502 +0.0204938 0.0865196 0.0494812 +-0.0909512 0.147073 0.025026 +-0.0398753 0.149194 -0.00215183 +0.0371767 0.095465 0.0345819 +-0.0534525 0.116245 -0.0149003 +-0.00912597 0.168128 -0.0227626 +0.0103593 0.0509634 -0.0286117 +0.00839042 0.0434178 -0.024623 +0.012125 0.10869 -0.0190017 +-0.0749621 0.134014 -0.00721966 +-0.0789216 0.172194 -0.0440002 +-0.0258331 0.0561399 -0.0284181 +-0.0817922 0.143171 0.000171875 +0.0451306 0.0647669 -0.000900002 +-0.0514821 0.113924 -0.0164877 +0.00371763 0.0346901 0.0426483 +-0.0475701 0.0461114 -0.0100167 +0.0406981 0.104234 0.0181671 +-0.0453678 0.060156 0.0387657 +-0.0314314 0.0693522 -0.0254564 +-0.0154911 0.0702181 0.054969 +-0.0300755 0.123175 0.0220771 +-0.0216491 0.0479362 -0.0281524 +-0.0507589 0.144713 0.0133585 +-0.0670917 0.155954 0.0255845 +-0.0852375 0.1104 0.00532111 +-0.0573508 0.121267 0.0398601 +-0.0261065 0.0944666 -0.0262366 +-0.0897054 0.124293 0.0455762 +-0.000486036 0.047441 0.049521 +-0.0438029 0.167379 0.00334272 +0.0111963 0.0864748 -0.0310924 +0.0464517 0.0750534 0.00718936 +-0.036486 0.0619956 0.0409573 +-0.0314993 0.116609 0.0322344 +-0.0544997 0.117303 -0.0139925 +-0.0420673 0.0336103 0.00544111 +-0.0856626 0.0912736 -0.00055353 +-0.050495 0.0974075 0.0440057 +0.0309311 0.0355864 0.0055308 +0.0202177 0.109327 -0.0158556 +0.0249428 0.0968855 0.0450153 +-0.00751 0.070341 0.0568254 +-0.0604012 0.0335984 -0.00916237 +0.0245092 0.0406191 -0.00557292 +-0.0451779 0.152141 0.00822921 +-0.0607654 0.0668786 0.0346016 +-0.0593188 0.114075 -0.0145597 +-0.091214 0.143385 0.025163 +-0.0425978 0.0505652 -0.0109174 +-0.0423266 0.169779 -0.00887745 +-0.0224756 0.0348012 0.0476768 +0.0409735 0.0405135 0.0215425 +-0.0801239 0.110623 0.0438367 +-0.0138651 0.0987904 -0.0246748 +-0.043573 0.126043 -0.00725208 +-0.0208606 0.101617 -0.0238418 +-0.0425016 0.0605517 0.0404213 +-0.00249479 0.0590139 0.0541301 +0.0409984 0.102803 0.000176721 +0.0342014 0.0808856 0.0407312 +-0.0247835 0.166781 -0.00970724 +0.00931572 0.0725689 0.0556419 +-0.0642124 0.145356 0.038849 +-0.0716272 0.0748459 -0.0119866 +-0.012533 0.0458468 0.048979 +-0.0741728 0.15268 -0.0288898 +-0.0211868 0.174176 -0.0217698 +-0.054499 0.0761691 0.0426143 +-0.0851934 0.11068 0.0373035 +-0.00964195 0.120097 -0.0132573 +0.0149745 0.129329 0.00806984 +-0.0535552 0.0335918 0.0121227 +0.0387224 0.1084 0.018173 +-0.0858928 0.108988 0.00834067 +0.00426552 0.0697141 -0.0335935 +0.0304509 0.117992 0.000957505 +-0.0134723 0.0603845 0.0536243 +-0.0809665 0.133877 -0.00363658 +-0.0877284 0.0950339 0.0247524 +-0.0708769 0.155921 0.00969704 +-0.0388302 0.173903 -0.00342781 +0.0123125 0.0680946 -0.0309662 +-0.0540561 0.150161 -0.00256907 +-0.0662654 0.129803 0.0463681 +-0.0481341 0.0344887 0.0319692 +-0.0482356 0.137094 0.0133979 +-0.0638562 0.148524 -0.023921 +-0.0873971 0.140576 0.0399568 +-0.0920359 0.126943 0.0332532 +0.00766079 0.0616753 0.0549139 +-0.0820513 0.0882817 -0.00662822 +-0.0583711 0.0614813 0.0257087 +-0.046355 0.0345569 0.0357917 +0.0473411 0.0488863 -0.00367878 +0.0292435 0.0637114 -0.0199317 +-0.0250309 0.172718 -0.0117738 +0.0423872 0.0459654 -0.00393846 +-0.0484976 0.0805051 0.0439961 +-0.0497297 0.0737805 -0.0165746 +0.0463736 0.0682111 0.00160519 +-0.0334339 0.166782 -0.00461644 +-0.0772978 0.0685904 0.0138065 +-0.0645607 0.153661 0.00110457 +0.00849221 0.108496 0.0406568 +-0.0554287 0.1598 0.000101402 +-0.0412715 0.127285 -0.00254236 +-0.080968 0.0967089 0.0335048 +0.0225187 0.123964 0.0251042 +-0.0559057 0.0379831 0.047068 +-0.0594802 0.0716799 0.0395512 +-0.0618223 0.170491 -0.0617288 +-0.0564955 0.104323 0.0414899 +-0.0810442 0.152541 0.00426923 +-0.0435828 0.0345782 0.0398547 +0.0126008 0.128196 0.0257553 +-0.0526679 0.0579784 0.0235498 +0.0380115 0.110174 0.0108643 +0.0150842 0.114728 -0.0156323 +0.0148813 0.0348012 0.0286151 +-0.0479877 0.121051 0.028756 +-0.0883678 0.128089 0.00227451 +-0.0720422 0.15541 -0.0389078 +0.0112474 0.0724264 -0.0317987 +0.0267956 0.111385 0.0354031 +-0.0649586 0.160381 -0.0157887 +0.00550295 0.0702783 0.0558582 +-0.0238067 0.0899629 -0.0356649 +-0.090988 0.113988 0.0207121 +0.0194892 0.0934174 0.0476186 +-0.0655537 0.161293 -0.0160037 +-0.0625236 0.0609176 -2.19725e-05 +-0.0491589 0.162483 -0.00556124 +-0.042649 0.0378778 -0.0263104 +0.00374161 0.0952291 -0.0308324 +0.025598 0.0610493 -0.0236458 +0.00942462 0.0375116 -0.02327 +-0.00136682 0.125668 -0.00729488 +0.008486 0.0532759 0.0521458 +-0.00749086 0.0675042 0.0558082 +-0.092697 0.117351 0.0113077 +0.0251837 0.112665 -0.0114294 +-0.04997 0.140123 0.00440621 +-0.0534339 0.040168 0.0467985 +-0.0936376 0.124116 0.0132691 +-0.0222759 0.0382517 0.00526325 +0.0600635 0.0664445 0.00913698 +-0.0224559 0.092554 -0.0342812 +0.0582887 0.0538074 0.00917936 +0.046059 0.0834308 0.0121726 +-0.0619009 0.0678892 0.0352357 +-0.0566658 0.0473318 0.0108617 +-0.0457003 0.0694971 -0.0160523 +-0.0618544 0.174099 -0.0565963 +-0.0498016 0.128288 0.0314623 +-0.0225807 0.159177 -0.00302445 +-0.0623624 0.16436 -0.0595797 +0.0383958 0.0505315 -0.00659356 +-0.0332433 0.126938 0.0135159 +-0.0454819 0.0875316 0.0441596 +-0.0835389 0.110217 0.0023021 +0.0386074 0.0617702 0.0328492 +-0.0407686 0.0811968 -0.0203079 +-0.033827 0.0901076 -0.0243377 +0.0506567 0.0703381 0.00346635 +0.0228724 0.125195 0.0195238 +-0.0187529 0.0384803 -0.00337678 +0.0222732 0.12205 0.0293193 +-0.0294959 0.0645466 0.0380401 +-0.0689565 0.166538 -0.0215879 +-0.00506288 0.0387211 0.00101779 +-0.0647592 0.169439 -0.0415812 +0.00438439 0.037904 -0.00378653 +-0.0241621 0.125878 0.0168174 +0.0359934 0.0685324 -0.0147875 +-0.0182052 0.0381955 0.0170088 +-0.0753414 0.15612 0.015399 +0.0453867 0.0413474 0.00824507 +-0.00449218 0.123763 0.0343217 +0.0460213 0.0862262 0.00917159 +0.0346496 0.0972102 -0.0129196 +0.0196844 0.126554 0.00410284 +0.0202619 0.12651 0.00572713 +-0.00449958 0.0504123 0.0519892 +-0.0899789 0.133805 0.0362152 +0.00988218 0.0886651 0.0547874 +-0.00395268 0.131078 0.00966125 +0.00346471 0.0977538 0.051238 +-0.0236164 0.0422618 -0.0289626 +-0.0253603 0.124214 -0.00135534 +-0.00744498 0.124256 -0.00972454 +-0.0577765 0.0494102 0.000630355 +-0.0321623 0.172645 -0.015639 +-0.0661377 0.0669804 0.0316196 +-0.0240269 0.158277 -0.0107707 +-0.0762359 0.113613 0.0494664 +-0.0849952 0.141833 0.00418636 +-0.0569251 0.0366412 0.0466659 +-0.0283222 0.0749245 0.042497 +0.0216856 0.0878179 -0.0250022 +-0.0866951 0.0951098 0.0265657 +0.0296006 0.0982071 0.041203 +-0.0630317 0.060472 0.0203248 +-0.0304883 0.0574252 0.0370157 +-0.0638466 0.159519 -0.0168205 +-0.0544959 0.0848124 0.0452537 +0.0243406 0.113099 -0.011895 +-0.0900837 0.117534 0.0447346 +-0.00144097 0.0378708 0.018909 +-0.0699808 0.136988 -0.00795948 +-0.0823654 0.0815422 -0.00354068 +-0.00681555 0.0385421 0.0244437 +0.00431168 0.0611153 -0.0319161 +-0.0801269 0.10608 0.0309775 +0.0162329 0.0807169 -0.0293214 +-0.0158843 0.0377689 0.0515755 +-0.0829013 0.122118 -0.00412754 +0.0294673 0.106706 -0.01303 +-0.0534948 0.11254 0.0358256 +0.00150254 0.0605844 0.0560506 +-0.0234977 0.101642 0.0439992 +-0.0797566 0.074638 -0.000471413 +-0.00773143 0.0670178 -0.0355816 +-0.0705055 0.0342009 0.00809348 +0.0167377 0.0461846 0.0432665 +0.00646432 0.110948 0.0411124 +-0.0194753 0.160592 -0.0133076 +-0.00449865 0.115591 0.0404715 +0.0280707 0.046664 -0.00969251 +0.048051 0.0496945 0.0288529 +-0.0763852 0.114637 0.0504008 +-0.0886058 0.150235 0.0251076 +-0.0211531 0.0382979 0.0271326 +0.0408293 0.101363 -0.00180736 +-0.0203988 0.177179 -0.0155929 +-0.0718351 0.180364 -0.0513557 +0.00724322 0.0361893 0.0456372 +0.0124253 0.0374345 -0.0223624 +0.0378254 0.108706 0.0222481 +-0.0871672 0.127065 0.0471934 +-0.0686541 0.12565 0.0517171 +-0.0889642 0.136517 0.0281982 +-0.0304896 0.0559845 0.0366491 +-0.0839703 0.0843113 0.0284366 +-0.00895133 0.0384401 0.00779513 +-0.0942308 0.126903 0.0192529 +-0.0569855 0.0507747 0.00670607 +-0.063488 0.037094 -0.00797583 +0.0252887 0.122228 0.0247087 +-0.0433541 0.112279 -0.0167951 +-0.0255625 0.0532992 -0.0274025 +-0.00849647 0.0532799 0.0524507 +-0.0074932 0.0842694 0.0572981 +-0.0760467 0.0689134 0.00354542 +-0.0518697 0.144272 -0.000239851 +0.0302023 0.0808798 0.0437374 +-0.0276563 0.12199 -0.007026 +-0.0484978 0.100158 0.0428666 +-0.0654874 0.143443 -0.0120814 +-0.0308113 0.153953 -0.00248259 +0.0597604 0.0567164 0.0141707 +-0.0480122 0.0341726 0.0287503 +-0.0640462 0.0622661 0.0238361 +-0.0206969 0.0568414 -0.0326165 +0.0309722 0.116471 -0.00147933 +-0.0691516 0.0788347 0.0401452 +-0.058803 0.0883 -0.0207912 +0.00672447 0.0346721 0.0378883 +-0.0746893 0.154119 0.0302893 +-0.0529585 0.135327 0.0304274 +0.00863241 0.128438 -0.00238911 +-0.0478493 0.099947 -0.0217978 +-0.075086 0.0674684 0.00355063 +0.0326927 0.116394 0.0217802 +-0.0842229 0.144678 0.0395137 +-0.0166094 0.128602 0.0136868 +0.00411662 0.125005 -0.00865855 +-0.0754818 0.148362 0.0406222 +-0.065886 0.15405 -0.00011759 +-0.0425085 0.119367 0.0297171 +-0.0902093 0.131023 0.0402096 +0.0383601 0.0921445 -0.0115002 +-0.038495 0.0804525 0.0431634 +-0.0353039 0.0794833 -0.0226806 +0.0441637 0.0973591 0.0111613 +-0.0590115 0.153958 0.00054242 +0.0453728 0.0735622 0.00221503 +0.0569193 0.0710092 0.00714855 +-0.0114956 0.105842 0.0433599 +-0.0698279 0.181394 -0.0549266 +0.0375934 0.102015 0.0299178 +0.00590625 0.0356875 -0.00331654 +-0.0684622 0.16137 -0.0113077 +-0.0742229 0.109724 0.0423296 +-0.0202504 0.182971 -0.0220384 +-0.091455 0.148836 0.0171378 +0.0152238 0.0793568 -0.0300519 +-0.000512 0.107246 0.0433248 +-0.0428418 0.0971034 -0.0220359 +-0.0514947 0.0819216 0.0442721 +-0.00625132 0.0383797 0.0174726 +0.0252504 0.0789879 -0.0247523 +-0.0833347 0.0898073 0.030438 +-0.0509182 0.146274 0.0133981 +0.0202304 0.105998 0.0417108 +0.0571307 0.0508797 0.0151878 +-0.0330104 0.126012 0.0180287 +-0.0217816 0.0797281 0.0555871 +-0.00743438 0.120242 -0.0134406 +-0.0148225 0.086924 -0.0385597 +-0.0375897 0.174214 -0.00298303 +-0.00244861 0.0605864 0.0553645 +-0.00874133 0.128614 -0.000328304 +-0.00579055 0.0798611 -0.0376463 +-0.0096155 0.119132 -0.0142361 +0.000497149 0.0534577 0.0541163 +-0.0928025 0.131035 0.0222365 +0.0372258 0.108268 -0.000834485 +-0.0914674 0.129551 0.00825277 +-0.00149557 0.0675596 0.0566557 +0.0154848 0.0548588 0.0485877 +0.0396568 0.0815034 -0.0117853 +0.0174985 0.119533 0.0343583 +-0.0108678 0.0975625 -0.0293851 +0.0264007 0.116693 0.0313169 +0.005469 0.0964333 0.0520715 +-0.0455856 0.128182 -0.00140207 +-0.0175003 0.0499225 0.0470061 +-0.075934 0.0788992 0.0351468 +-0.0067913 0.0812637 -0.0377236 +-0.0769778 0.155918 0.0162848 +-0.0797877 0.0746142 -0.00147983 +-0.0599651 0.0469723 0.0336736 +0.0382386 0.084194 -0.0147697 +-0.0816947 0.113482 0.0465399 +0.00634478 0.0524665 -0.0299091 +-0.0112874 0.182441 -0.0284978 +-0.026226 0.178551 -0.0179991 +-0.0739945 0.1802 -0.0521965 +0.0105211 0.104445 0.0448284 +0.0580719 0.0523893 0.015182 +-0.0525108 0.0819776 0.0447141 +0.0148643 0.0961115 -0.0237665 +-0.00147854 0.0474532 0.049375 +0.00669444 0.0340637 0.00205518 +-0.0753884 0.151441 -0.0109145 +0.0413586 0.0394374 0.00625535 +-0.0196125 0.0381064 0.0149924 +-0.00986994 0.104508 -0.0232523 +-0.0720157 0.145244 -0.0182167 +0.0416371 0.0669849 0.0284796 +0.0284741 0.0381475 -0.00163189 +0.0474976 0.06778 0.0262203 +0.0259166 0.0434925 0.0371741 +0.0464333 0.0455453 -0.00066213 +-0.00640927 0.120163 -0.0133583 +-0.0236376 0.0387148 -0.0157231 +-0.092269 0.124069 0.00827163 +0.0144954 0.119572 0.0352389 +-0.0702988 0.15533 -0.0489684 +-0.0882036 0.143298 0.0111345 +-0.074863 0.0795889 -0.0115995 +-0.0174424 0.10313 -0.0232301 +-0.0686182 0.0628687 0.0026871 +-0.0620712 0.16624 -0.0525885 +0.058207 0.0538058 0.0191798 +-0.0333511 0.0463754 -0.0256604 +-0.0855025 0.0832965 0.0214753 +-0.0920057 0.11611 0.0343124 +-0.0227771 0.124071 -0.00329832 +-0.0610006 0.129721 0.0398956 +-0.0404973 0.0492165 0.0395965 +-0.0481836 0.0335793 0.00422402 +-0.0654948 0.160255 -0.0145439 +0.00736856 0.0479637 -0.0273222 +-0.0123571 0.12972 0.0137799 +0.0579783 0.0551346 0.00616127 +-0.0164763 0.064491 0.0530345 +-0.0608155 0.0896295 -0.0193008 +-0.0205289 0.0958269 0.048234 +-0.086716 0.132512 0.0465811 +-0.052836 0.095613 -0.0220115 +0.0406946 0.0647331 -0.00578164 +0.0121697 0.0950562 -0.0266386 +-0.00950093 0.0925586 0.0561384 +-0.0157375 0.0671877 -0.037968 +-0.0269293 0.0376983 0.0192799 +0.033595 0.0660055 0.039722 +-0.0481741 0.135565 0.0182752 +-0.0224128 0.163867 -0.00803238 +0.00810708 0.101446 -0.0211916 +-0.0458977 0.166944 -0.00688513 +-0.0238738 0.105835 -0.0226784 +0.0272653 0.121002 0.0240179 +-0.0701585 0.0623473 0.0172092 +0.0578867 0.0607943 0.0238444 +0.0565638 0.0695327 0.00435815 +0.012216 0.0753282 0.0545969 +-0.0583609 0.0339112 0.0215144 +-0.0664905 0.0861274 0.0441111 +-0.0514869 0.0987554 0.0433116 +0.0210708 0.0349944 0.0242708 +-0.0102986 0.126308 0.029096 +-0.0638201 0.089594 -0.0189434 +-0.0782747 0.174383 -0.0433933 +-0.0311143 0.16374 -0.0152454 +-0.0915885 0.128321 0.0362439 +-0.0379874 0.0336299 0.0062497 +-0.0854294 0.151325 0.0282936 +0.0124994 0.0909598 0.0531045 +-0.0434452 0.120253 -0.0131867 +0.0229768 0.0754886 0.0490742 +-0.0334786 0.100129 0.0429194 +-0.0741118 0.0819105 0.0384161 +0.0373216 0.0901862 0.036514 +-0.0565657 0.11693 0.0374284 +0.00334719 0.0481602 -0.0292882 +-0.0324526 0.0336078 -0.0239554 +0.0083446 0.116042 -0.0170347 +-0.00977658 0.0387467 -0.00366788 +-0.0206679 0.0509474 -0.0298149 +-0.0242736 0.181474 -0.0180054 +0.0160525 0.0350115 0.0395034 +-0.0543014 0.146215 0.0264084 +-0.00102573 0.0346607 0.0434939 +-0.0611888 0.155469 0.00589931 +-0.0406241 0.0520111 -0.0110025 +-0.0705109 0.148356 0.0407257 +0.0495286 0.0610841 0.0304744 +-0.019145 0.0893155 0.0554734 +0.00268229 0.12726 -0.0050686 +-0.0743228 0.155495 -0.0229079 +0.021268 0.0762952 -0.0266753 +-0.0239356 0.0374925 -0.0183912 +0.0262803 0.0660857 -0.0226574 +-0.0164998 0.0856439 0.0570811 +-0.0857415 0.120359 0.048887 +-0.0344903 0.0505305 0.0383369 +0.00230798 0.0346028 0.0406387 +-0.0929029 0.129672 0.0252445 +-0.0654938 0.0604629 0.00727621 +0.044722 0.0833037 0.0012072 +-0.0230106 0.0580182 0.0433839 +-0.0105663 0.0350401 0.0482738 +0.0582293 0.0690671 0.00613614 +-0.0600127 0.131125 -0.00733582 +-0.0321751 0.162395 -0.00280539 +-0.0555013 0.0623754 0.0293782 +-0.0252415 0.109687 -0.0201254 +-0.0560506 0.150155 -0.00188433 +-0.0600649 0.129705 0.039485 +0.0338293 0.0767952 -0.0167877 +0.01215 0.0919974 -0.0294248 +-0.0346452 0.0340944 0.0173387 +-0.050492 0.149246 0.012837 +-0.0550682 0.150156 -0.00218973 +-0.00881167 0.085499 -0.0379404 +-0.0780101 0.11134 -0.00369811 +-0.0795926 0.100727 0.0334268 +-0.0423449 0.122373 -0.0114097 +0.0248097 0.124191 0.0159771 +-0.0174692 0.0529782 0.0491698 +-0.0889728 0.101008 0.0133925 +0.00851959 0.0730626 0.056014 +-0.026729 0.159626 -0.000161004 +0.0222613 0.0720727 -0.026869 +0.0396492 0.0970274 -0.00677557 +-0.0301141 0.166809 -0.00684471 +-0.00834781 0.129635 0.0224773 +-0.0198097 0.0813191 -0.0390949 +-0.0489315 0.137078 0.0173942 +-0.0161123 0.0985355 -0.0244159 +0.0331161 0.0795687 -0.0187107 +-0.0365028 0.0761422 0.0420368 +-0.0315196 0.0834471 -0.0305496 +-0.0366299 0.0534085 -0.0105028 +-0.0844928 0.0979861 -0.00258986 +-0.049695 0.0693575 -0.0143663 +-0.0795053 0.148405 0.0389114 +-0.0143105 0.0338147 -0.022462 +-0.036834 0.0382539 -0.0105119 +-0.0528967 0.0476266 0.0236645 +-0.0431625 0.0436516 -0.0173214 +0.0442909 0.0959534 0.0041727 +-0.0499053 0.141681 0.0133989 +-0.084567 0.0897523 0.028848 +-0.035736 0.0740102 -0.0187661 +-0.0624191 0.163107 -0.0445959 +0.0553692 0.0711293 0.0213817 +-0.0384984 0.0634699 0.041507 +-0.0420929 0.156178 -0.00917116 +-0.0641565 0.166823 -0.0341745 +-0.0623968 0.162983 -0.056654 +0.0276466 0.0659543 0.0434322 +0.0454314 0.088986 0.0031764 +-0.0749519 0.164602 -0.018207 +-0.0345505 0.175605 -0.011982 +0.0363374 0.104678 0.0298648 +-0.00375231 0.128091 -0.0038931 +-0.0305006 0.100206 0.0434038 +-0.00849625 0.0547108 0.0528122 +-0.0485842 0.0517801 -0.00897412 +-0.00451507 0.0519264 0.0531932 +-0.0815948 0.0748474 0.0175368 +0.0572159 0.0648465 0.024658 +-0.0403921 0.162356 0.00287494 +-0.0749222 0.126715 -0.00818803 +-0.047238 0.0346371 0.0407654 +-0.0621416 0.141343 -0.00629843 +-0.0251564 0.113713 -0.0163747 +-0.00855727 0.119157 -0.0142712 +-0.074494 0.126019 0.0529923 +-0.0205102 0.0461853 0.0521703 +-0.084864 0.0789836 0.0191297 +-0.0187649 0.125661 -0.000995534 +-0.0218427 0.0567021 0.0450804 +-0.0622179 0.153696 -0.0295936 +-0.0364968 0.0576627 0.0395237 +-0.0368019 0.127806 0.00485952 +-0.0770975 0.0967852 0.0367 +-0.000433486 0.0366062 0.0184413 +0.0131024 0.123925 -0.00754958 +-0.0177683 0.0383192 0.0242073 +-0.0655356 0.0398001 0.0300899 +-0.0778591 0.161105 -0.0269202 +-0.0341012 0.162237 -0.0142117 +-0.017501 0.0842912 0.0575736 +-0.0280973 0.16079 -0.0140776 +-0.0421185 0.122004 0.0266511 +-0.0142563 0.178628 -0.0276625 +-0.0440063 0.0629698 0.0401358 +0.0128613 0.0347903 0.0336338 +-0.0248532 0.0348299 0.0453939 +-0.00152849 0.105863 0.0439958 +-0.0346038 0.123422 0.0248791 +-0.0346304 0.079471 -0.0235463 +-0.0639625 0.126764 -0.00871214 +0.0364026 0.0547846 -0.00674979 +-0.0064883 0.123768 0.0340789 +-0.0470974 0.168427 -0.00297818 +-0.0575443 0.0401418 -0.00909914 +0.0257874 0.0895854 -0.0228249 +0.0183006 0.0383341 -0.0177245 +-0.0524963 0.0848256 0.0453696 +0.0561175 0.0494119 0.0111925 +-0.0588172 0.123244 -0.00816875 +-0.00922198 0.0384881 0.0221926 +-0.0331235 0.126633 0.00621772 +-0.0119418 0.120727 -0.011899 +-0.0607049 0.145387 0.0368926 +-0.0306093 0.125854 0.0144859 +-0.0356146 0.127659 0.0111781 +-0.0776104 0.0802915 -0.00928059 +-0.0702074 0.0394853 -0.000301673 +0.0434891 0.0583702 0.0316051 +-0.0789513 0.128091 -0.00607242 +-0.042519 0.0534194 0.039352 +-0.00449744 0.0939058 0.0556112 +-0.0094927 0.0619497 0.0558121 +-0.0694824 0.0944579 0.0422945 +-0.0771177 0.0879695 -0.0126012 +0.014854 0.103191 -0.021265 +-0.043284 0.169832 -0.00794427 +-0.00983007 0.124748 -0.00821099 +0.048512 0.0692789 0.0025489 +-0.0620323 0.0343503 0.0308946 +-0.074493 0.145596 0.0437863 +-0.0375024 0.104216 0.0394845 +-0.047499 0.0451812 0.0421654 +-0.0836103 0.0769236 0.0176347 +-0.0636092 0.170093 -0.0469941 +-0.0483594 0.137097 0.0143972 +-0.087232 0.102325 0.0223672 +-0.035507 0.104243 0.0399833 +-0.0577119 0.0708497 -0.0156457 +-0.00436115 0.122059 -0.0113929 +0.0024069 0.037633 -0.0245625 +0.00251114 0.0911189 0.0554408 +-0.0357211 0.0710689 -0.0174927 +0.0183807 0.0432425 -0.0223469 +-0.0688327 0.09803 -0.0157395 +-0.0747491 0.155081 0.00248708 +0.0451476 0.0833704 0.0221542 +-0.0657925 0.14111 0.0417765 +-0.0365871 0.119162 -0.0120374 +0.0101976 0.131045 0.010577 +-0.0249388 0.183594 -0.0126758 +0.0330579 0.0598189 -0.0157593 +-0.0212823 0.0391811 0.0388836 +0.0144144 0.0403325 -0.0225056 +-0.0304932 0.104292 0.0413193 +0.0224755 0.0947811 0.0470955 +-0.0694247 0.0337382 0.00515427 +-0.00249301 0.118317 0.039019 +0.0288984 0.0924492 -0.0198656 +0.033052 0.0440867 0.029429 +-0.0616004 0.15843 -0.0275855 +-0.0438223 0.0615675 0.0400039 +-0.0452867 0.0410146 -0.0162976 +0.0314256 0.0991914 -0.015062 +-0.0524965 0.0833785 0.044899 +-0.0298946 0.0436977 0.0506861 +-0.076428 0.148619 -0.00986569 +-0.0761803 0.0914451 0.0387697 +-0.0730299 0.172199 -0.0345665 +-0.0274981 0.0960112 0.0443229 +0.0045023 0.13009 0.02428 +-0.0302254 0.162455 -0.00347789 +-0.0871035 0.11231 0.0319974 +0.00225053 0.0726262 -0.0348847 +-0.0748173 0.152727 -0.0208966 +-0.0354946 0.118017 0.0312708 +0.0436028 0.0973418 0.0171655 +-0.0754981 0.13448 0.0513067 +0.0513136 0.0574694 -0.00408483 +-0.0228193 0.0854366 -0.0379031 +-0.057217 0.0336859 0.0130711 +-0.0749012 0.110639 -0.0076926 +-0.00874782 0.125791 -0.00734235 +0.0343242 0.100732 -0.0126444 +-0.0155312 0.126827 -0.00025822 +0.0145856 0.0341976 0.00165401 +-0.0175043 0.114096 0.0387143 +0.0552517 0.0720728 0.0198735 +0.0406726 0.0731516 -0.00877611 +-0.0268119 0.082528 -0.0368734 +-0.0262156 0.0519422 -0.0264212 +-0.0464977 0.041126 -0.0122454 +-0.0711885 0.173044 -0.0381946 +0.0492058 0.0511603 0.0287949 +-0.00188013 0.105918 -0.0222309 +-0.046455 0.126722 0.0256927 +-0.0142526 0.181479 -0.0279552 +-0.0655009 0.0903733 0.0443899 +-0.0037337 0.131051 0.015481 +-0.0308026 0.0367564 0.0517774 +0.0277802 0.121908 0.0142262 +-0.0344815 0.0575696 0.0386716 +-0.0844149 0.0777754 0.0115138 +0.0294342 0.0383781 -0.00173395 +-0.0423644 0.120691 0.0280931 +-0.0350646 0.156323 -0.010574 +-0.0619093 0.0470515 0.00567882 +-0.00290933 0.0388493 0.0285794 +-0.059258 0.0467212 -0.00132733 +0.00450339 0.123789 0.033846 +-0.0229547 0.12614 0.0172488 +0.0410852 0.0394499 0.00526393 +0.0049695 0.0340349 0.00359293 +-0.0513689 0.0516822 0.0322144 +-0.0606335 0.122654 0.0421622 +-0.0645986 0.15064 0.0368964 +-0.0632078 0.143892 -0.00837073 +-0.0386435 0.0563025 -0.0111331 +-0.0658025 0.083802 -0.0186684 +-0.062835 0.128322 0.0425151 +-0.0715276 0.14003 0.0472238 +0.056383 0.0538774 0.0233551 +-0.0610939 0.0335153 0.00346695 +-0.00051118 0.0978394 0.0524335 +-0.0418663 0.0340021 -0.00580283 +-0.042485 0.0762268 0.0429934 +-0.0512844 0.138511 0.0223666 +0.0367682 0.0888721 0.037463 +0.00724928 0.0711363 -0.0334334 +-0.0505534 0.0543594 0.017626 +0.00614025 0.110185 -0.0202335 +-0.00850551 0.0561268 0.0532043 +-0.0295938 0.0789709 0.0427962 +-0.0287487 0.0349103 0.0496611 +-0.0584012 0.154047 0.0286827 +-0.0127037 0.064273 -0.0367671 +-0.0288624 0.0606727 -0.0254104 +-0.0376712 0.125956 0.0207679 +-0.0612726 0.0708854 0.0380779 +-0.0637251 0.155028 0.0282356 +0.0531328 0.0476715 0.00620176 +-0.00308571 0.124589 0.0331408 +-0.0186888 0.0352267 -0.0190015 +0.001497 0.119685 0.0377723 +-0.032734 0.120436 -0.00935257 +-0.054542 0.0631354 -0.00767633 +0.052054 0.0718585 0.0216053 +-0.00556188 0.116801 -0.0157696 +-0.0504949 0.138575 0.0203939 +-0.00542543 0.120041 -0.0132322 +0.0310541 0.0727142 0.0413756 +-0.0558801 0.045112 0.0236807 +-0.0167974 0.0382847 0.0190235 +0.0256741 0.0809122 0.047736 +-0.0199636 0.0668339 0.051351 +-0.0491191 0.159098 -0.00622225 +-0.0506725 0.0667938 0.036819 +-0.0492762 0.143079 0.00435473 +-0.0216794 0.0538141 -0.0303252 +0.0305352 0.10973 -0.0102674 +-0.0225945 0.157229 -0.0076361 +-0.0530851 0.151641 -0.00314317 +-0.0271151 0.122681 0.0231414 +-0.0134994 0.0884096 0.056966 +-0.0266886 0.0335519 -0.0246454 +-0.008499 0.12243 0.035017 +-0.0393069 0.033537 -0.0233717 +-0.033807 0.0461583 0.044586 +-0.0198183 0.158714 -0.00970491 +-0.0835554 0.0925405 0.0305699 +-0.0340008 0.0766042 -0.0254969 +0.00352334 0.12519 0.0325857 +-0.0424905 0.0424327 0.0427417 +0.0232877 0.123385 0.0253956 +0.0230237 0.100791 0.0439995 +0.0307365 0.117405 0.0253192 +-0.0772723 0.114862 0.0500033 +-0.0264336 0.0535943 0.0384453 +0.0177456 0.0350628 0.0325863 +-0.0121375 0.102128 -0.024127 +-0.000203909 0.130048 0.0239772 +0.00795806 0.127195 -0.00506697 +-0.0252695 0.156633 -0.00336931 +0.0179609 0.1201 -0.00942839 +-0.0769756 0.068555 0.0156381 +-0.0871021 0.111516 0.0397664 +-0.0544907 0.101557 0.0424048 +-0.0572843 0.0589766 -0.000464382 +-0.07902 0.0751794 0.0271309 +0.0102371 0.115602 -0.0165593 +-0.0105893 0.180273 -0.0272114 +-0.0528115 0.0913061 -0.0221889 +-0.064755 0.068231 0.0343382 +-0.0137258 0.125368 -0.00476898 +-0.0635922 0.178326 -0.0570781 +-0.0239683 0.126504 0.0139537 +-0.0600264 0.132579 -0.00719549 +0.044826 0.0791184 -0.000782084 +-0.00541885 0.0969111 -0.0306599 +-0.0301034 0.0537602 -0.0193727 +0.0409333 0.0900371 -0.0097907 +0.024446 0.115337 -0.010308 +-0.0283175 0.0963396 -0.0241496 +0.0299711 0.119398 0.020753 +-0.0265916 0.172718 -0.0105089 +-0.0586682 0.128313 0.0397417 +-0.0818638 0.147313 0.00119815 +-0.0254305 0.0357675 -0.0290845 +-0.038039 0.126372 -0.00365101 +-0.00149717 0.0815096 0.0574492 +-0.00738223 0.0931774 -0.0348179 +0.0558223 0.0493444 0.0161931 +0.0577347 0.0705061 0.0074689 +-0.0778727 0.096767 0.0360596 +0.0144985 0.11402 0.0378951 +0.00389123 0.0355229 -0.0148126 +0.0242948 0.124607 0.0114976 +0.0565412 0.0674698 0.002463 +-0.0308889 0.108768 -0.0191524 +0.011955 0.0349898 0.0332703 +-0.0129143 0.104805 -0.023047 +-0.0938592 0.11877 0.0212975 +0.0106595 0.0357626 0.0286983 +-0.0652684 0.163853 -0.0591668 +-0.0359879 0.0421738 0.0454409 +-0.0685089 0.100042 0.0409867 +0.03476 0.113033 0.0239837 +-0.0346506 0.126197 -0.000232823 +-0.0386758 0.0462873 -0.0214583 +0.0257808 0.10679 -0.0151172 +-0.0618601 0.153758 -0.0185818 +0.03067 0.0917687 -0.019137 +0.0275533 0.0672844 0.0433037 +-0.0414978 0.0748079 0.0427759 +-0.0218204 0.0840783 -0.0384285 +0.037815 0.0630498 -0.0108066 +-0.0602789 0.0617061 0.0251086 +-0.0768171 0.154199 -0.00689913 +0.00550054 0.0990386 0.0482677 +-0.0391759 0.16667 -0.0123913 +-0.0616525 0.116813 -0.0113459 +-0.0227683 0.0699063 -0.0373697 +-0.0825008 0.107588 0.0273509 +0.0253381 0.0418727 -0.00588506 +-0.014565 0.035318 -0.01827 +-0.00278761 0.0390101 -0.00997081 +-0.0895837 0.137934 0.0361877 +-0.0855599 0.112052 0.0307632 +-0.027858 0.0343176 -0.0296609 +-0.0325025 0.0675467 0.0400218 +0.0183334 0.0348857 0.00364336 +-0.0469365 0.0404762 -0.0121149 +-0.0777262 0.0825344 -0.0106004 +-0.00467074 0.0569349 -0.0330586 +-0.0194597 0.165415 -0.0107679 +-0.0210403 0.122456 -0.00761783 +-0.0388087 0.0446425 -0.0234233 +-0.0696543 0.0614896 0.0127042 +0.0440466 0.0931306 0.0221521 +-0.0647046 0.0352193 0.0243246 +-0.0166096 0.0435748 -0.0274243 +0.0441838 0.0712847 0.000450163 +-0.0285281 0.0522637 0.0377683 +-0.0599387 0.147394 -0.00221747 +-0.0440942 0.156163 -0.00853601 +0.0388076 0.0807597 0.0350812 +-0.0141543 0.161827 -0.01362 +-0.0210631 0.0385773 -0.00578617 +-0.0237266 0.161004 -0.00287357 +-0.0863431 0.0896619 0.0263909 +-0.0829431 0.0790271 0.0235207 +0.0268259 0.0605622 0.0439609 +-0.0224026 0.0384511 0.0303351 +-0.0635581 0.170962 -0.0485923 +-0.0456965 0.147701 -0.00292724 +-0.0532705 0.0373829 0.0469289 +0.0231843 0.0658868 0.0457612 +-0.0887459 0.132238 0.00325707 +0.00920248 0.0914355 -0.0308607 +-0.0298874 0.063588 -0.0244234 +0.00157852 0.12719 -0.00497022 +-0.0814436 0.153873 0.00890807 +-0.0624959 0.0607929 0.0219134 +-0.0680579 0.149988 0.0386907 +0.0166077 0.128469 0.0186355 +0.00550411 0.0731036 0.0564845 +-0.00249995 0.0661849 0.0567093 +-0.0735022 0.155469 -0.0279133 +-0.0851803 0.0899483 -0.00256663 +0.0394434 0.0585828 -0.00486619 +-0.0739433 0.134018 -0.00754124 +-0.038066 0.156257 -0.0102365 +0.00335185 0.118611 -0.0157819 +-0.00660848 0.0420213 -0.0257519 +-0.0639921 0.0605727 0.020032 +0.0252819 0.100786 -0.0187149 +-0.0820788 0.0765181 0.0218286 +-0.0167051 0.0584876 -0.0351851 +-0.023274 0.106158 -0.0224283 +-0.0878269 0.087472 0.021463 +-0.0786369 0.113551 0.047197 +0.0360644 0.0861926 0.0381664 +-0.082909 0.123594 -0.00426589 +-0.029497 0.177966 -0.015166 +-0.0170948 0.127006 0.022289 +0.0524062 0.0491022 0.00128138 +-0.0198015 0.10169 -0.0238258 +-0.0221328 0.166772 -0.0183109 +-0.00252234 0.038424 0.00547409 +-0.0255028 0.0606627 0.0401195 +-0.0385432 0.0337417 -0.0196892 +-0.0644389 0.0627719 0.0250864 +-0.0879688 0.113092 0.00628888 +0.000951329 0.10045 0.046938 +0.0386471 0.086118 0.0348681 +-0.0374734 0.0346441 0.0411075 +0.0233517 0.120203 -0.00555174 +0.0462175 0.0761811 0.0179689 +-0.0376403 0.0336717 0.00266115 +-0.0341867 0.172054 -0.0145892 +-0.0623617 0.0420762 0.0420515 +-0.0114712 0.0379322 -0.0163227 +-0.0177227 0.119786 -0.0108098 +-0.0801398 0.154387 0.00935749 +0.00187492 0.0398874 0.0463369 +-0.0730243 0.159629 -0.0349322 +0.0473276 0.0547587 -0.00564531 +-0.0376789 0.0636715 -0.0137557 +-0.0727421 0.180568 -0.051639 +-0.0616232 0.148175 -0.003118 +-0.0248231 0.0839948 -0.0375331 +-0.0652787 0.173897 -0.0604957 +-0.0740506 0.152673 -0.0298916 +-0.0571547 0.150227 -0.00146353 +-0.0903203 0.146073 0.0131505 +-0.0779569 0.132491 -0.00592536 +-0.0290048 0.0550494 -0.0223991 +-0.00849727 0.0898107 0.0570624 +-0.0324948 0.112838 -0.0174448 +-0.0523188 0.0518 0.026645 +0.0302802 0.0506319 0.0365295 +-0.0838507 0.103422 -0.00164978 +-0.0788492 0.100759 0.0340965 +-0.0874564 0.141909 0.0385732 +-0.0155155 0.115507 0.0382335 +-0.0777311 0.0887218 0.0375819 +-0.0730146 0.15545 -0.0319082 +-0.0523124 0.0360662 0.0464431 +-0.06188 0.164622 -0.0566003 +0.0367263 0.0794489 0.0373046 +-0.0734863 0.173577 -0.0500848 +0.00600107 0.0390612 0.028408 +-0.0278792 0.0339265 -0.0214795 +-0.000753868 0.0390895 -0.00403098 +-0.0578284 0.0450681 -0.00544742 +-0.0829344 0.129921 0.0513858 +-0.0111161 0.125335 -0.00680126 +-0.0679477 0.0860672 0.0434473 +-0.0705079 0.105505 0.0376955 +-0.0109443 0.0389825 -0.0115729 +-0.0399106 0.033865 0.000215963 +0.00351496 0.0924905 0.0549546 +-0.0424851 0.033913 -0.0262188 +-0.0792564 0.155246 0.0213567 +-0.0215304 0.127346 0.0119061 +-0.091259 0.117481 0.0430647 +-0.0404902 0.0790417 0.0431478 +-0.0945826 0.122834 0.0222802 +-0.0518346 0.0517811 0.0306554 +-0.0767129 0.161805 -0.0163426 +-0.0867595 0.107707 0.0143554 +-0.0693236 0.142228 -0.0102995 +-0.0204959 0.105781 0.0424626 +0.0438044 0.0987496 0.00916312 +-0.00281997 0.0854457 -0.0370162 +-0.00280088 0.0840687 -0.037315 +0.0293196 0.0632732 0.0423131 +0.00625559 0.0725849 -0.0341185 +0.0203077 0.0621778 -0.0269805 +0.0563556 0.0723446 0.0173318 +-0.0230123 0.107366 -0.0218426 +-0.00742046 0.035877 -0.0249268 +0.0374488 0.0402522 0.0247009 +0.0292061 0.055224 -0.0177993 +-0.0184858 0.127732 0.0173962 +-0.0921542 0.132321 0.0142287 +-0.0583136 0.145422 -0.00203607 +-0.0688478 0.0994593 -0.0152611 +-0.0615047 0.167821 -0.0555677 +-0.0915903 0.125424 0.00726612 +0.0199591 0.0564127 0.0480725 +0.0378679 0.0713179 0.0353865 +-0.000605671 0.129033 0.0267429 +0.0298673 0.0740916 0.0431977 +0.00443138 0.126024 0.0314422 +0.0239815 0.12134 -0.00278507 +-0.0246606 0.0521655 -0.0277657 +0.0146913 0.0820798 0.0529703 +0.0259518 0.075434 0.0462884 +-0.0332069 0.0609523 -0.0145937 +-0.0191994 0.0907344 -0.0364225 +0.0589179 0.0607855 0.00414854 +0.0361999 0.103252 -0.0093129 +-0.0498767 0.0529199 0.0166388 +-0.0681894 0.0774836 0.0397476 +-0.021626 0.038176 0.00908889 +-0.0723232 0.163826 -0.0419605 +0.0104934 0.109851 0.0397458 +-0.0177283 0.0627822 -0.0360863 +-0.0628376 0.161493 -0.0485893 +0.00323101 0.120377 -0.0136716 +0.0551973 0.0674594 0.0252672 +-0.0349319 0.127285 0.00554823 +0.0194228 0.125079 0.025397 +-0.00805064 0.130356 0.00959263 +-0.0314936 0.097435 0.044487 +-0.0557138 0.0342594 0.0288064 +0.0212843 0.0490624 0.0410711 +-0.0898642 0.114175 0.0316644 +-0.0868422 0.134936 0.00226938 +-0.0758819 0.156006 0.016671 +-0.00997005 0.175779 -0.0292074 +-0.0603522 0.0407823 0.0443369 +0.0416146 0.0598915 -0.00407392 +0.0165523 0.0922417 -0.0256623 +-0.0245975 0.0365494 -0.0290831 +-0.0381375 0.160902 0.00087141 +-0.0719085 0.064649 0.0201308 +0.0144227 0.0477589 -0.0252693 +0.0603421 0.0650847 0.0181826 +-0.0146479 0.0481463 -0.0303376 +0.00721829 0.131495 0.00948452 +0.0394741 0.102755 0.0261825 +-0.0127182 0.0685587 -0.0376659 +0.0338414 0.0392101 0.0249005 +-0.0639127 0.160548 -0.0182872 +-0.0885745 0.0901142 0.00646846 +-0.0497297 0.0416675 0.0451167 +-0.0695102 0.148387 0.0405048 +0.0369413 0.0618853 0.0357448 +-0.0614969 0.0987359 0.0427353 +0.0264406 0.0434552 0.0361928 +0.0457541 0.0497206 0.0308161 +-0.0184963 0.0486167 0.0482304 +-0.086692 0.140502 0.00718566 +-0.0116045 0.0420472 -0.0262702 +-0.0708693 0.149702 0.0392474 +-0.061676 0.0343224 0.032737 +-0.00749303 0.115552 0.0402888 +0.0603302 0.0678632 0.0121432 +-0.070517 0.146976 0.0420031 +0.0360463 0.0953891 -0.0118379 +0.0368862 0.0601656 -0.0107732 +0.0239184 0.116674 0.0330029 +-0.0804601 0.148683 0.000173633 +-0.0604926 0.0344653 0.0380756 +-0.0152525 0.177145 -0.0265204 +-0.0773226 0.108517 -0.00660544 +-0.0176381 0.0465514 -0.0286775 +0.0313677 0.11674 -0.000181085 +-0.0465999 0.111104 -0.0175509 +-0.0408947 0.172668 -0.00780492 +0.0241275 0.120631 -0.00401437 +-0.055903 0.111216 -0.0172629 +-0.0781607 0.0935055 -0.0115755 +0.0158369 0.105055 -0.0192576 +-0.0130717 0.0973914 -0.0292103 +0.00114663 0.103071 -0.022297 +-0.0545436 0.0443717 -0.00770843 +0.0381644 0.0887078 -0.0138852 +-0.0638458 0.0366675 0.0422565 +-0.0245954 0.122675 -0.00581505 +-0.0199502 0.0553853 0.0474489 +-0.0454976 0.13168 0.014882 +-0.0808086 0.113339 -0.00208766 +-0.0658194 0.154782 -0.0493821 +-0.0138747 0.104484 -0.023001 +-0.0293428 0.112771 -0.0173776 +0.0139014 0.0962996 -0.0239693 +-0.0834257 0.145967 0.00318768 +-0.0299391 0.175699 -0.00474628 +-0.00851553 0.0759427 0.057359 +-0.0679104 0.122376 -0.00896749 +-0.0104955 0.0731168 0.0565579 +-0.0480021 0.126873 0.0289133 +-0.052022 0.0561083 0.0186673 +-0.0627916 0.150662 -0.00757045 +-0.0667057 0.14638 -0.0236565 +-0.0714698 0.161004 -0.0429413 +-0.0459114 0.0657109 0.0391289 +-0.0127989 0.0827406 -0.0389623 +0.0240686 0.0436305 0.0398361 +0.00979486 0.0360464 0.02827 +-0.0144862 0.0715775 0.0549247 +-0.0798641 0.145899 -0.00181913 +-0.0607177 0.0335659 0.00529637 +-0.0635063 0.156747 -0.0406118 +-0.0171212 0.0383927 0.000728518 +0.02686 0.0646091 0.0440244 +0.0291243 0.117712 -0.00241857 +0.0411571 0.0846831 0.0314273 +0.0246298 0.0347052 0.0125163 +0.0376787 0.105425 -0.00281358 +-0.0520342 0.116871 0.0334143 +-0.0526315 0.0335173 0.00157493 +0.0103692 0.116852 -0.0159048 +-0.0299989 0.178534 -0.0140055 +0.0199608 0.126186 0.00277612 +-0.0226771 0.0567339 -0.0313199 +-0.0693087 0.165593 -0.0188405 +0.0435095 0.0527832 0.0325495 +-0.0292487 0.115981 -0.0147474 +0.0390778 0.105565 0.0241719 +-0.0449049 0.167415 0.00301648 +-0.0575339 0.0493779 -0.000368538 +-0.0396388 0.0548721 -0.0111311 +0.0314293 0.102107 0.036834 +0.000480507 0.104429 0.0436509 +-0.0299338 0.0468967 -0.0261593 +-0.0712424 0.155684 0.00373917 +0.0197271 0.0808668 0.051456 +-0.0761145 0.157637 -0.00836344 +-0.0144941 0.122325 0.033097 +-0.0597928 0.095429 -0.0195264 +0.0309421 0.0646254 0.0411415 +-0.0275054 0.104339 0.0416271 +-0.000516741 0.108636 0.04302 +-0.0777092 0.07194 0.024923 +0.0102045 0.0795083 -0.0323062 +-0.0379505 0.150881 -0.00456722 +-0.013105 0.0382607 0.0125563 +-0.0182317 0.187056 -0.0182936 +-0.0182699 0.166848 -0.0125771 +-0.0264587 0.0902029 -0.033595 +-0.0668807 0.112599 0.0436137 +-0.0537473 0.076818 -0.0192258 +-0.0306082 0.165302 -0.00581873 +-0.0796939 0.0873057 0.0353613 +0.0347714 0.100763 0.034674 +-0.035752 0.0415598 -0.0291214 +0.0289767 0.117846 0.0275093 +-0.000706682 0.0655468 -0.0343894 +-0.0610628 0.138403 -0.00654794 +-0.0625935 0.12412 0.0446596 +-0.0648295 0.14966 -0.0309451 +-0.0234815 0.0974495 0.044821 +-0.026575 0.0476865 -0.0258778 +-0.0528683 0.0367334 -0.0118941 +-0.0116753 0.0526919 -0.0331734 +-0.0615062 0.158429 -0.0265894 +0.0320656 0.117538 0.0186978 +-0.00988755 0.103466 -0.0236142 +0.0484958 0.0691068 0.025078 +0.0156548 0.128965 0.0154331 +-0.0665046 0.10698 0.0385746 +-0.0267998 0.0522633 0.0388472 +-0.058755 0.0782067 -0.0192512 +0.0211493 0.0672779 0.0481082 +-0.0288355 0.125617 0.00924976 +-0.0124826 0.0701993 0.05486 +0.0522007 0.0476683 0.00324556 +-0.0443004 0.130334 0.00946299 +-0.00241533 0.0389975 -0.0136337 +-0.0437474 0.0783133 -0.0194351 +-0.0629007 0.115475 0.040648 +-0.0311605 0.169689 -0.016551 +-0.0263193 0.0386673 0.0347214 +0.0366921 0.0807912 0.0372758 +-0.0395001 0.100068 0.0413695 +-0.0681116 0.112409 0.0451263 +0.0386091 0.0686148 0.0346703 +-0.0759482 0.152671 -0.0129066 +0.0145806 0.0953173 0.0493246 +-0.0385004 0.150676 0.00203305 +-0.0935499 0.129634 0.0192397 +-0.0619642 0.126755 -0.00826981 +-0.0537213 0.0709084 -0.0154466 +-0.0314688 0.175764 -0.00340966 +-0.046761 0.126023 -0.00719597 +0.0128678 0.128966 0.0229731 +-0.0721444 0.145534 -0.0189034 +-0.014649 0.0384586 0.0247211 +-0.0782079 0.165287 -0.027954 +-0.0738874 0.0695898 0.0277412 +-0.0880483 0.145895 0.0319999 +-0.00950131 0.0870429 0.0572309 +-0.082872 0.154403 0.0201091 +-0.0574419 0.0424556 0.0216968 +0.0432211 0.097315 0.0201647 +0.0484167 0.0567471 0.0312254 +-0.0899902 0.146067 0.012148 +-0.0384869 0.0860997 0.0437907 +-0.0677801 0.0837503 -0.017964 +-0.0304968 0.071744 0.0399232 +-0.0267649 0.0754486 -0.0363172 +0.0555795 0.068697 0.0240751 +-0.00326172 0.0994383 0.0499516 +-0.0539364 0.153495 0.0157968 +-0.0264808 0.0509031 0.0429156 +0.0477223 0.0435274 0.0201079 +-0.027646 0.071755 0.0409574 +-0.025483 0.0988427 0.0444451 +0.00433576 0.055339 -0.0305463 +-0.0809392 0.0721012 0.0145438 +-0.0859359 0.0980836 0.000413824 +-0.0660122 0.153896 -0.0475582 +-0.0275574 0.156658 -0.00139783 +-0.0134137 0.0581871 0.0521911 +-0.0774938 0.134462 0.0515018 +0.0104958 0.0560929 0.0526786 +-0.00951583 0.0848597 -0.0382215 +-0.0298676 0.0916468 -0.0252289 +-0.0751451 0.15577 0.0110973 +-0.0887521 0.0969152 0.00742291 +-0.00642846 0.119149 -0.0142793 +-0.0351305 0.127632 0.00987733 +-0.079479 0.1087 0.0330138 +-0.00387451 0.0384228 0.00884205 +-0.0794858 0.0940336 0.0349322 +-0.0809833 0.080323 0.0311985 +-0.0874477 0.148578 0.0299355 +0.015852 0.106086 -0.0183494 +-0.0799154 0.12806 -0.00573177 +-0.0810332 0.092317 -0.00857663 +-0.0428426 0.0956907 -0.0224311 +-0.0843197 0.0830919 -0.00150258 +0.0270369 0.0347621 0.0147774 +-0.0114905 0.108632 0.0428314 +-0.0298836 0.04486 -0.0282273 +-0.0675863 0.0915604 0.0429945 +-0.0858462 0.0806083 0.01849 +-0.0377888 0.0855996 -0.0220857 +-0.080296 0.0886098 0.0345053 +-0.0631283 0.163827 -0.0595262 +-0.0200798 0.0653829 0.0501099 +0.0101376 0.104418 -0.0202461 +0.00311717 0.113125 -0.0199945 +0.00740202 0.0404296 -0.0235788 +-0.0233436 0.179984 -0.0199453 +-0.0849416 0.153745 0.0179582 +-0.00950506 0.0660833 0.0554985 +-0.0149561 0.0997734 -0.0237179 +-0.0625045 0.160053 -0.0215634 +0.0134925 0.114016 0.0379994 +-0.0484084 0.144974 0.000471547 +-0.0765927 0.0770726 0.0330453 +-0.0522524 0.0566167 0.0245415 +-0.0446531 0.0607308 -0.0127894 +-0.077361 0.0729429 -0.00456158 +-0.0164852 0.0870004 0.0567616 +0.00917846 0.101539 -0.0214106 +-0.0114976 0.0883765 0.0564607 +-0.0365032 0.109752 0.0369592 +-0.0622101 0.169551 -0.0614764 +0.0134275 0.117615 -0.0147491 +-0.0194201 0.1246 -0.00382324 +0.000402662 0.121936 0.0359399 +0.0308218 0.101142 -0.0151148 +0.044544 0.0748845 0.0238506 +-0.0190349 0.0930706 -0.0347914 +-0.0284257 0.15795 -0.0115973 +-0.0835152 0.150011 0.0330149 +-0.0723608 0.0363259 0.00395733 +0.049239 0.0437392 0.0164633 +-0.0281399 0.0917982 -0.0286003 +-0.0894337 0.132252 0.00424863 +-0.0478863 0.033513 -0.0102384 +-0.0480003 0.126688 -0.00585567 +-0.0147076 0.0933085 -0.0349989 +-0.0344513 0.172765 -0.000813008 +-0.012881 0.107288 -0.0218461 +-0.0494996 0.111168 0.0370596 +0.0195435 0.100771 0.0459866 +0.0383256 0.0387198 0.0189634 +-0.0490718 0.151664 -0.00461846 +-0.0413062 0.123313 -0.010402 +-0.0764561 0.106685 0.0353026 +-0.0506178 0.0590261 -0.0100428 +-0.0085531 0.0385596 0.00412906 +-0.0510743 0.153146 -0.0044532 +-0.0168415 0.122494 -0.0076608 +-0.0724396 0.129821 0.051541 +-0.0447123 0.0336927 -0.0153017 +-0.0128672 0.038589 0.0285719 +-0.0769694 0.136896 -0.00565009 +-0.0204809 0.0526524 0.0459576 +-0.0190093 0.100114 -0.02409 +0.0491876 0.0602673 -0.00438234 +2.68966e-05 0.0991578 -0.0250032 +-0.0146066 0.0355634 0.0504427 +0.0437747 0.084485 0.0264379 +-0.0613665 0.0430534 -0.00574325 +0.0102029 0.0779579 0.0551886 +-0.0584973 0.109766 0.0377913 +0.0405117 0.0657145 0.0303349 +0.0123622 0.0523525 -0.0283928 +-0.0865442 0.107736 0.017365 +-0.0273471 0.0735222 0.0429845 +-0.076628 0.169808 -0.0316679 +-0.00310182 0.130332 0.00278812 +0.0456485 0.0904179 0.0101632 +0.0367704 0.109675 0.000243105 +-0.0088954 0.108786 -0.0222808 +-0.0722528 0.156819 -0.0369077 +-0.0343294 0.175491 -0.0032043 +-0.0612579 0.167808 -0.0576007 +-0.0225051 0.10854 0.0408657 +-0.0396128 0.0492137 -0.0115104 +-0.0528856 0.104156 -0.0198053 +-0.0114785 0.0965129 0.0526113 +-0.0493499 0.141685 0.00939558 +-0.053326 0.162717 0.00204741 +0.0382413 0.108427 0.0210592 +0.0250594 0.122946 0.0231962 +0.0436593 0.058746 -0.00488132 +-0.052188 0.0559056 0.0136207 +-0.0337241 0.163848 -0.00328844 +-0.0671575 0.17049 -0.0366968 +-0.0780353 0.0880327 -0.0115615 +-0.00752216 0.122122 -0.0114318 +-0.0578223 0.12834 0.0392194 +-0.0624397 0.16285 -0.0548313 +-0.00720215 0.0344571 -0.0178933 +0.0219696 0.0347867 0.0191885 +0.0134971 0.112635 0.0387508 +-0.0188778 0.168283 -0.0134663 +0.0418633 0.0718502 -0.00680416 +0.00188261 0.129936 0.0247306 +-0.0143909 0.0388658 -0.0140202 +-0.0866821 0.0819953 0.0154888 +0.0511122 0.059915 -0.00400422 +-0.0637796 0.0419038 0.0392448 +-0.0334673 0.0532523 0.0375728 +-0.0640539 0.142491 0.0390245 +-0.0197273 0.118003 -0.0129221 +-0.0739294 0.0686501 -0.000515794 +0.022253 0.0430673 -0.0137151 +0.0169102 0.120624 0.0334304 +-0.0533452 0.118341 0.0350731 +-0.0407313 0.0710722 -0.0172567 +-0.0444934 0.108473 0.0392485 +-0.0406946 0.0340162 0.0268873 +-0.0428689 0.104235 -0.0209095 +0.000289503 0.0391337 -0.00386275 +0.0202669 0.0819781 -0.0271085 +0.0339966 0.0363512 0.0147468 +-0.0623699 0.0366895 0.0436353 +0.0112859 0.0638878 -0.0308862 +0.044262 0.0945325 0.00218274 +0.0178069 0.0349979 -0.00592782 +0.00766772 0.130773 0.00395877 +-0.0518373 0.0337424 -0.0112411 +0.05138 0.0464792 0.0212617 +-0.054495 0.0932121 0.0445367 +0.0154864 0.0380581 -0.0207587 +0.0322412 0.0368006 0.00286913 +0.0226382 0.0714084 0.0485432 +-0.0474967 0.0761987 0.0428659 +-0.0433556 0.0337438 -0.00770024 +-0.0507933 0.0869468 -0.0215939 +-0.0428743 0.166323 -0.00997516 +0.0420989 0.0930078 0.0271705 +-0.0133438 0.11201 -0.0186315 +-0.0682581 0.156305 0.0164417 +-0.0709159 0.125294 -0.00875352 +-0.0758095 0.0920857 -0.0139153 +0.00691185 0.038861 0.0287775 +-0.0755745 0.0702081 -0.000465226 +0.0560342 0.0622175 0.0264602 +0.00750328 0.0532576 0.0522142 +-0.0557017 0.0693735 -0.0143448 +-0.0400399 0.0367774 -0.0284153 +0.0452718 0.0917995 0.0131601 +0.0113635 0.0534706 0.0514016 +-0.056641 0.0429978 -0.00777539 +-0.0163006 0.182966 -0.0260091 +-0.0724038 0.116078 0.0519992 +-0.0223961 0.161302 -0.0143028 +-0.016322 0.128515 0.00945034 +-0.0761998 0.14998 -0.0148766 +-0.084898 0.11701 -0.000772283 +0.0215009 0.111167 0.037529 +-0.0116746 0.164119 -0.0176003 +-0.0386977 0.0666031 -0.0147476 +-0.0475127 0.0411749 0.0444313 +-0.0741496 0.147181 -0.0158602 +0.0423699 0.0412112 0.0211935 +-0.0112343 0.126014 -0.00554296 +-0.0627796 0.16313 -0.0285907 +0.0598501 0.0664357 0.0191799 +0.0444747 0.0438727 0.000520461 +-0.0449903 0.16693 -0.00785376 +-0.0241862 0.125789 0.00366503 +0.0303543 0.0942493 0.0422823 +0.0385368 0.0800568 -0.0127167 +-0.0329258 0.120263 0.0285346 +-0.0277494 0.0764615 0.044728 +0.0072822 0.0344718 -0.00192729 +0.0164745 0.103092 0.0456772 +-0.000370674 0.0391495 0.0306363 +-0.0444932 0.109842 0.0382343 +-0.0228558 0.113062 -0.0177116 +-0.0323055 0.0384897 -0.00796454 +0.0330143 0.106332 -0.0106209 +-0.0905664 0.150208 0.0151282 +-0.0473203 0.122487 0.0279328 +-0.079976 0.076532 0.0275303 +-0.0185178 0.0383092 0.00415679 +-0.0400541 0.128036 0.0139949 +-0.0725037 0.079155 0.0383043 +-0.00705924 0.127865 -0.00358478 +-0.0474808 0.0518309 0.037336 +0.0281857 0.0888902 0.0443935 +-0.0325014 0.102916 0.0416129 +-0.0636379 0.131123 0.0413473 +-0.0194422 0.0952996 -0.0310527 +0.0343622 0.0673468 0.0390872 +0.00248248 0.0385592 0.0461627 +-0.0207428 0.0656176 -0.0364653 +-0.0354216 0.17545 -0.00362892 +-0.0186888 0.127303 0.00423263 +-0.0697675 0.129835 0.0501143 +-0.0645483 0.168715 -0.0400434 +0.0176026 0.0520233 0.0463575 +-0.0165066 0.11684 0.0369313 +-0.0539292 0.0475998 -0.00643542 +0.0206619 0.125677 0.022985 +0.0131 0.034428 -0.00821794 +-0.0884031 0.101017 0.0203758 +-0.089294 0.136502 0.0252035 +-0.0633961 0.0610267 0.0215327 +-0.0181382 0.0625693 0.0510808 +-0.0363013 0.0408102 0.0457892 +-0.0348891 0.0341588 0.0262022 +0.0321818 0.0994934 0.0379171 +-0.0650996 0.115729 0.046366 +-0.0446047 0.0505366 -0.0105481 +-0.0170833 0.0896859 -0.0373218 +-0.0135156 0.162506 -0.0153049 +-0.0264962 0.119343 0.030427 +0.053783 0.0561466 -0.00178141 +-0.0659739 0.131145 -0.00872206 +-0.022585 0.185119 -0.0131839 +-0.0902473 0.132271 0.00623314 +-0.0343818 0.038354 -0.0138166 +-0.087117 0.119846 -0.000719646 +-0.0514997 0.047729 0.0396118 +-0.0837154 0.0804764 0.0234959 +0.0452487 0.0681916 0.00167659 +0.0443433 0.0762807 -0.00178421 +0.0393871 0.0828883 -0.0127786 +0.0133395 0.0475307 0.0453837 +0.0393635 0.0445531 -0.00413158 +0.0464068 0.0778555 0.00918735 +0.0498828 0.0474685 0.000307011 +-0.0205115 0.114066 0.0379617 +-0.0795322 0.0826724 -0.00859002 +0.0277802 0.0692504 -0.0226951 +-0.0640511 0.139618 0.0390194 +-0.0622733 0.144309 -0.00616114 +-0.0598164 0.122657 0.0415831 +-0.039222 0.0363262 0.0107899 +-0.0476756 0.0694312 -0.0151035 +-0.0114975 0.12239 0.0342495 +-0.0759886 0.0701373 0.025079 +0.0247695 0.1047 0.0394768 +-0.0424955 0.0464529 0.0406301 +-0.0209812 0.0389557 0.0535988 +-0.0434801 0.0917165 0.0428888 +-0.0936604 0.128255 0.0172452 +-0.0319662 0.163855 -0.00423083 +-0.0864626 0.107749 0.0163884 +0.00261599 0.0960798 -0.0297441 +0.0192696 0.124452 -0.00213625 +-0.0635019 0.0945759 0.0438874 +-0.0434804 0.108484 0.0391565 +-0.0767016 0.15969 -0.0259195 +-0.0207953 0.0784993 -0.0390618 +-0.0168597 0.0382017 0.0136589 +-0.0128908 0.129601 0.0150315 +-0.063562 0.136724 0.0379539 +-0.0592557 0.146819 0.0355066 +-0.0102821 0.0421361 0.0498123 +0.00411674 0.108725 -0.0201726 +-0.0471696 0.16597 0.00363215 +-0.0324882 0.0560654 0.0375153 +0.016314 0.061771 0.0498607 +-0.0633808 0.154539 0.0298218 +0.0319993 0.108737 0.0323781 +0.0224822 0.0578106 0.0464363 +-0.0731478 0.0644323 0.00940567 +-0.0136846 0.0555659 -0.0339274 +-0.0485565 0.0335372 0.00238031 +-0.0485794 0.128753 -0.00187037 +-0.0761205 0.0927947 0.038671 +-0.00890397 0.114438 -0.0172305 +-0.0881957 0.146062 0.0092207 +-0.067835 0.0951999 -0.016639 +-0.0826594 0.0993103 0.0308836 +0.0194806 0.107063 0.040905 +-0.0755472 0.15139 -0.00989046 +-0.0619095 0.118087 -0.0102757 +-0.0770237 0.0716688 -0.00146855 +-0.0090472 0.129209 0.0236827 +0.0166896 0.0645037 0.050425 +-0.044493 0.0860963 0.0437549 +-0.0851043 0.10321 0.0261425 +-0.0929793 0.125561 0.0282631 +-0.0792446 0.0699823 0.0139682 +-0.0541984 0.150844 0.02639 +-0.0544369 0.147753 0.0264091 +0.029273 0.103313 -0.0154093 +-0.0661878 0.156038 -0.00610123 +0.0513324 0.0613858 -0.00348738 +-0.00765334 0.0905691 -0.0361471 +-0.0036313 0.046681 -0.0294588 +-0.0793953 0.154018 0.0066962 +0.0126509 0.103032 -0.0211055 +-0.0534982 0.0344579 0.0343548 +0.0254331 0.0400654 -0.00462996 +-0.0474929 0.163748 0.00542805 +-0.0174765 0.0514437 0.047967 +-0.023601 0.0379574 -0.0288347 +0.0380126 0.0687088 -0.0127776 +0.0454875 0.0624627 0.0298224 +-0.0929393 0.122846 0.0403052 +-0.0619477 0.0629617 0.0272004 +-0.0632548 0.171035 -0.0614506 +-0.062927 0.150005 -0.0233391 +-0.0539078 0.109837 -0.0181931 +-0.0143481 0.129147 0.0116153 +-0.00460956 0.130321 0.00366937 +0.00735598 0.0509889 -0.0291303 +-0.0480744 0.151666 -0.00489643 +-0.0220459 0.166878 -0.0109827 +-0.0178225 0.0869056 -0.0385387 +0.000268234 0.0669357 -0.034172 +-0.0454819 0.0861255 0.0441555 +-0.0606958 0.0340151 0.0191666 +0.0293305 0.049536 -0.0137505 +-0.0661283 0.153073 -0.0457545 +0.0127964 0.0685744 0.0536204 +-0.0806268 0.150792 0.0343829 +0.0338754 0.0626989 -0.015804 +-0.0415032 0.116675 0.0325492 +-0.00995367 0.16681 -0.0217203 +0.059153 0.0704954 0.0131546 +-0.084323 0.0804069 0.00350409 +-0.0217865 0.0742531 -0.0388026 +0.0333307 0.040756 0.0270424 +-0.00920453 0.175559 -0.0287981 +-0.0565093 0.148178 0.0306333 +-0.0476849 0.146264 0.00805502 +-0.0896679 0.144435 0.0294634 +0.028326 0.0882981 -0.0214817 +-0.0129215 0.129318 0.0179306 +-0.0275354 0.0822426 0.0485604 +-0.0727818 0.154043 -0.034905 +0.0264706 0.0430524 -0.00597567 +-0.0461097 0.129234 0.00159921 +0.00227538 0.0668963 -0.0335609 +-0.0869081 0.0847086 0.0134765 +-0.071509 0.105494 0.0375699 +-0.0564975 0.105681 0.0408231 +-0.0709683 0.136976 -0.00769814 +-0.0238604 0.0347884 0.0456435 +-0.0248096 0.123255 -0.00440954 +-0.0504992 0.0917781 0.0442368 +-0.0672114 0.120049 0.0520179 +-0.067142 0.163768 -0.057034 +-0.0628433 0.16149 -0.0495873 +-0.0851762 0.106326 0.0223754 +0.0111461 0.101633 -0.021979 +0.0319374 0.0568888 -0.0147656 +0.0282794 0.120663 0.00443205 +-0.0912918 0.116401 0.0420373 +-0.00467238 0.0555139 -0.0327809 +-0.0267099 0.0794912 0.0492298 +-0.0226371 0.0622591 0.0442913 +0.0496058 0.0730794 0.0103455 +0.0134712 0.0347114 0.0266012 +-0.027103 0.0633188 -0.0304321 +-0.00446177 0.12682 -0.00651375 +-0.0184963 0.10441 0.0431068 +0.0322846 0.110983 -0.00760517 +0.043549 0.0987325 0.00516762 +-0.0442869 0.166804 -0.00853834 +0.0150912 0.0940152 0.0500689 +-0.07081 0.110507 0.0424798 +-0.0141183 0.115602 -0.0164489 +-0.0567507 0.13816 0.0319811 +-0.0047515 0.0726952 -0.0359954 +-0.0647331 0.0606321 0.00547671 +0.0292295 0.102131 0.038919 +-0.0328692 0.104316 -0.0215625 +-0.0105189 0.165484 -0.0170149 +-0.062488 0.161561 -0.0255895 +-0.083006 0.110313 0.0398706 +0.00202549 0.0390793 -0.0109499 +0.0598509 0.0692231 0.0121425 +-0.0486599 0.0649886 -0.0131055 +0.0193632 0.0475344 -0.0219845 +-0.0505005 0.109789 0.0379415 +0.0227584 0.0942129 0.0471436 +-0.054587 0.123231 -0.00812744 +0.0595925 0.0636093 0.00613697 +-0.0304354 0.159526 0.00145329 +-0.0771836 0.152278 0.0340017 +-0.0641378 0.146153 -0.0169913 +-0.012496 0.0828987 0.0575341 +-0.062259 0.0636125 0.0283336 +-0.0543842 0.064934 0.034129 +-0.0580097 0.136726 0.0336791 +0.0431148 0.0723568 0.0271232 +-0.0719688 0.147362 0.0419058 +0.0324265 0.0414912 -0.00365574 +-0.0504972 0.083371 0.044762 +-0.0277551 0.121254 0.0258902 +0.0248126 0.0672364 0.0446067 +-0.0748658 0.148574 -0.0178655 +0.0199833 0.0422265 0.0426566 +0.00936651 0.0494737 -0.0282538 +-0.0209427 0.127053 0.0165011 +0.014824 0.0950266 -0.0246047 +0.0416966 0.0899224 0.0287651 +-0.0417723 0.0826397 -0.0208385 +-0.0228105 0.123961 0.023212 +-0.0701997 0.155611 0.00411308 +-0.0246949 0.0550734 -0.0288078 +-0.0220519 0.163768 -0.0162501 +-0.0324478 0.069454 -0.0224572 +-0.0827552 0.07629 0.0125227 +-0.0606527 0.151084 0.0352378 +-0.0798891 0.0706304 0.0135503 +0.0476495 0.073201 0.00955169 +-0.00859398 0.0391639 -0.0259828 +0.0142802 0.0873929 0.0523851 +-0.00841973 0.128157 0.0268439 +-0.0665531 0.160013 -0.0120422 +-0.029443 0.0834063 0.0447309 +-0.0564979 0.0776594 0.043476 +-0.0483279 0.119696 0.0300033 +0.0232683 0.0857035 -0.0248261 +0.0321971 0.112814 -0.0055615 +0.0190831 0.0713469 0.0504539 +-0.054494 0.0465534 0.0422647 +-0.0121699 0.165481 -0.0142428 +0.000511137 0.0814953 0.0573473 +-0.0115028 0.0730832 0.0562182 +-0.0401042 0.037954 0.0427598 +-0.0114161 0.0382303 0.016554 +0.0328182 0.0967204 -0.0144274 +-0.00449908 0.0732747 0.0586205 +0.00733671 0.115147 -0.0180672 +-0.0476206 0.111206 -0.0176722 +-0.0624082 0.147544 -0.00957064 +-0.0615795 0.156866 -0.0245858 +0.0175138 0.12671 0.0232635 +-0.0697118 0.0764164 -0.0147262 +-0.0543713 0.158326 -0.00178875 +0.00713327 0.105885 -0.0207766 +-0.033517 0.115303 0.0329858 +-0.0114926 0.0897634 0.0564161 +-0.0375058 0.171208 0.000818011 +0.00542741 0.0336773 0.0131964 +0.0379386 0.07401 0.0354837 +-0.0860277 0.0967286 0.000430639 +-0.0311614 0.0791685 -0.0325602 +-0.0541101 0.0531993 -0.0053725 +-0.0592659 0.0599215 0.0215991 +0.0586637 0.0709935 0.0122726 +-0.0792595 0.0894709 -0.0095871 +-0.026159 0.0918036 0.0468933 +-0.0249745 0.12528 0.0180213 +-0.0519836 0.0517496 0.0236325 +-0.0275449 0.178709 -0.00674077 +-0.0715237 0.165101 -0.0167379 +0.0256965 0.123446 0.00917645 +0.0235224 0.0727618 0.0480692 +-0.0144773 0.0603048 0.0528052 +0.0408807 0.0948081 -0.00628698 +-0.0515819 0.0344024 0.0295565 +0.0311435 0.0885162 -0.0196004 +-0.087234 0.0981695 0.00341761 +-0.0165631 0.165424 -0.0118502 +-0.0497796 0.0518319 0.0348836 +0.0296893 0.110128 -0.0107004 +-0.0212542 0.126244 0.0193308 +-0.0315215 0.0732244 0.0404306 +0.0265706 0.0535806 -0.0207269 +-0.0944184 0.12146 0.0172829 +-0.0780287 0.14129 -0.00491664 +-0.0653187 0.152492 0.0351215 +0.0369332 0.102635 -0.00864905 +-0.0100919 0.126182 -0.00573829 +-0.0589643 0.15508 0.0013052 +-0.00782857 0.0386419 0.00238313 +-0.0893654 0.145802 0.0291185 +-0.077209 0.110378 0.0446936 +-0.0127752 0.0770687 -0.0383028 +-0.060466 0.143311 -0.00379205 +-0.0907002 0.137837 0.017198 +-0.0553853 0.15628 0.0108911 +-0.0609254 0.0454597 -0.00231147 +0.041351 0.0574751 -0.0052144 +-0.0111235 0.0346639 0.0467191 +-0.0520649 0.148658 -0.00262972 +-0.0438434 0.0985095 -0.0215595 +-0.0678163 0.0866062 -0.0177767 +0.0287562 0.053781 -0.0187512 +0.0338991 0.057119 -0.0127141 +-0.0189243 0.181629 -0.0169471 +-0.0888863 0.113493 0.0234001 +-0.0456524 0.0621788 -0.0131898 +-0.0205797 0.0906821 0.0540574 +-0.0285047 0.059221 -0.0254142 +-0.0310985 0.154152 -0.00673494 +0.0362687 0.0941823 0.0368117 +0.0223945 0.0860763 -0.025219 +0.0228611 0.0741302 0.0488936 +-0.0274872 0.094655 0.0450969 +-0.0238248 0.0826344 -0.0380614 +-0.044527 0.0601701 0.0393419 +0.0160126 0.0658829 0.0512178 +-0.0663487 0.06206 0.00207137 +0.000401309 0.0390966 -0.0249339 +-0.027107 0.082291 0.0495314 +-0.0617626 0.0415173 0.0247032 +-0.093011 0.118839 0.0352993 +-0.0662787 0.168684 -0.0320741 +-0.000498287 0.0535066 0.0547347 +0.0431795 0.0737197 0.0272167 +-0.0565118 0.0454033 -0.00602573 +-0.0668006 0.086643 -0.0182518 +-0.0652487 0.163342 -0.0202167 +0.0392901 0.0766734 0.0339466 +-0.0619246 0.106845 -0.0166571 +-0.0611633 0.0334354 -0.00188959 +-0.0722746 0.15542 -0.0369062 +-0.0690618 0.110676 0.0409548 +0.0432493 0.100107 0.00716752 +0.0317499 0.0535218 0.0369319 +-0.0492036 0.131059 0.0288275 +-0.0693592 0.176521 -0.047588 +-0.0072207 0.0356289 0.0484876 +-0.0818563 0.150046 0.00220642 +-0.0435006 0.0534118 0.0391466 +-0.0714969 0.156283 0.0152923 +-0.0883581 0.0875191 0.0194553 +-0.0774993 0.127442 0.0532862 +0.0288434 0.0591735 0.0415864 +-0.053835 0.0329874 0.0179508 +-0.0855039 0.140637 0.0423198 +-0.0597327 0.156046 0.0093301 +-0.052462 0.0642313 0.0336351 +0.000500084 0.12107 0.0367737 +-0.0692573 0.169753 -0.0288779 +-0.0156709 0.0385345 -0.00280448 +-0.00949582 0.118295 0.0381649 +0.0330035 0.116489 0.00476188 +0.0153369 0.0552331 -0.0286287 +-0.0105333 0.0457993 0.0483516 +0.00652975 0.0380351 0.0455331 +-0.0714995 0.101334 0.0391804 +0.0236022 0.115739 -0.0107408 +-0.0580129 0.118724 -0.0113962 +-0.0543247 0.0500125 0.0112758 +0.0587422 0.0635506 0.00411936 +-0.0589036 0.112559 -0.0155981 +-0.0640258 0.15968 -0.0562568 +-0.00990982 0.175697 -0.0247542 +0.00695815 0.0340953 -0.0204902 +-0.0591465 0.152697 -5.16463e-05 +-0.00975768 0.167025 -0.0223761 +-0.0383481 0.0417109 -0.0273458 +0.0463963 0.0778578 0.0141787 +-0.0720541 0.0777606 0.0379027 +0.0259403 0.1091 -0.0135959 +-0.0758056 0.0891863 -0.013912 +0.0429603 0.0873797 -0.00580114 +-0.0676348 0.0704852 -0.0103532 +-0.066267 0.176761 -0.0601056 +-0.013866 0.129156 0.0103484 +-0.067642 0.150503 -0.040589 +-0.0180327 0.0404537 0.0526147 +0.0183116 0.0636834 -0.0282837 +-0.078386 0.154762 0.00850622 +0.030569 0.0491561 0.035175 +-0.0622212 0.169401 -0.0515858 +-0.0565139 0.0548538 0.00566103 +0.00623573 0.0382417 0.0273828 +-0.038479 0.0945169 0.0431902 +-0.00987706 0.108745 -0.0220853 +-0.0621803 0.161575 -0.027587 +-0.0176337 0.125847 -0.00119502 +0.0328914 0.0578172 0.038629 +-0.0414935 0.0776367 0.0431734 +0.0432388 0.0804742 0.027354 +-0.0137772 0.0770735 -0.0384143 +0.0572117 0.0509068 0.011186 +-0.0689532 0.132595 -0.00851473 +-0.0655849 0.0622273 0.00026904 +-0.0535585 0.062801 0.0308747 +-0.0779359 0.154614 0.00720975 +0.00448513 0.0964789 0.0523472 +-0.060329 0.11723 -0.0118118 +0.029915 0.0430998 0.0305942 +-0.0275027 0.115261 0.0337596 +-0.0635137 0.0412627 -0.00639269 +-0.0164929 0.11134 0.0406952 +0.0292409 0.0951488 -0.0187111 +0.0324104 0.0430965 -0.00468251 +0.0317605 0.08491 0.0425067 +0.0289099 0.0929198 0.0437028 +-0.0707001 0.15817 -0.0449161 +0.0551137 0.0732038 0.0153863 +-0.0823243 0.154364 0.0217732 +-0.0715111 0.145604 0.0434169 +-0.0325077 0.0632413 0.0389915 +-0.0696524 0.0680017 0.0300044 +0.0102276 0.0809104 -0.0321098 +-0.0244999 0.049902 0.0466266 +-0.0554111 0.0574706 -0.0044262 +-0.0628667 0.101101 -0.0182166 +-0.00650089 0.0661332 0.0560881 +-0.0330903 0.15925 -0.0128209 +0.042117 0.0792074 0.0292753 +-0.085793 0.0818712 0.00648437 +-0.0594817 0.0426754 0.0236965 +-0.0539359 0.0541543 0.0107637 +-0.00998113 0.12997 0.0175362 +-0.0633398 0.0410523 0.0148679 +0.0595186 0.0696512 0.0111197 +-0.0628106 0.0420167 0.0410925 +-0.0280399 0.038261 0.000453129 +-0.0314842 0.0386701 -0.0153847 +-0.0183396 0.183004 -0.0240946 +-0.0414917 0.0662628 0.0414077 +-0.0512875 0.0335238 -0.00177633 +-0.009723 0.0684621 -0.0362531 +-0.0736747 0.166615 -0.0419946 +-0.0678387 0.0966346 -0.0163917 +-0.0609822 0.170956 -0.0597011 +-0.0778143 0.0696403 0.00741827 +-0.00249339 0.0619776 0.0560364 +-0.0574944 0.0732758 0.0411576 +0.0174045 0.0834609 0.0516215 +0.0222999 0.0360441 0.0108303 +-0.0134047 0.0981882 0.0494032 +-0.0437579 0.0335748 -0.0150071 +0.0210813 0.123852 -0.00148905 +-0.0530498 0.14867 -0.00246875 +-0.00549096 0.105886 0.0440438 +0.0181231 0.0349865 -0.00397885 +0.011218 0.0822648 -0.0313395 +-0.0785671 0.172906 -0.0416992 +-0.0304948 0.094646 0.0448519 +-0.0315011 0.101567 0.0426346 +-0.0867319 0.116264 0.0471164 +-0.0745642 0.0928269 0.03994 +-0.0287411 0.0366033 0.0533099 +-0.0733382 0.158682 -0.00576511 +-0.011641 0.172783 -0.0205328 +-0.0261276 0.166758 -0.01752 +0.0323797 0.117481 0.0145242 +-0.073083 0.166616 -0.0429976 +0.00318323 0.0894801 -0.0335291 +-0.0592544 0.0696245 0.0378273 +0.00902499 0.0346466 0.0239397 +-0.0614627 0.0334736 0.00162861 +-0.081048 0.154699 0.0221975 +-0.0337735 0.0765809 -0.0265027 +-0.0440788 0.0336672 -0.00594116 +-0.0501186 0.0375352 0.0462556 +0.0383972 0.0931984 -0.0106151 +-0.0507798 0.0488052 0.0196439 +0.0480167 0.0525694 0.0306027 +-0.0715181 0.0657302 0.000515199 +-0.0584278 0.0383351 -0.00941724 +-0.0484961 0.0987927 0.0435149 +-0.00449408 0.088412 0.0569078 +0.00197552 0.0378956 -0.000532016 +-0.0538466 0.0665391 0.0363755 +-0.0736039 0.148578 -0.0278556 +-0.0406505 0.117474 -0.0142631 +-0.0354963 0.0690808 0.0415601 +-0.063566 0.148289 0.0378536 +0.0187266 0.0350257 0.0273865 +0.00460237 0.0388981 -0.00652166 +-0.0775459 0.0688051 0.0117853 +-0.0880987 0.13916 0.0101984 +-0.0871517 0.106348 0.0123653 +-0.0867616 0.0833332 0.0134846 +-0.053009 0.0343093 0.0275811 +-0.0793348 0.0980896 0.0346601 +-0.0751339 0.0669087 0.0157231 +0.0158163 0.0344928 -0.00398192 +-0.0754309 0.0981509 0.0378194 +-0.0695415 0.15615 0.0130838 +0.00196735 0.0370051 -0.0146847 +-0.0711264 0.142566 -0.0097279 +-0.0202009 0.17418 -0.0222934 +-0.0315791 0.125791 0.0170798 +-0.0460989 0.157633 -0.00826241 +-0.0164967 0.0701922 0.0547571 +0.0456793 0.0890097 0.00617442 +-0.0263303 0.0336202 -0.0227625 +0.0458885 0.0778077 0.00419775 +-0.0613708 0.044683 0.0409908 +0.00384566 0.0341227 -0.0209701 +-0.0771455 0.156966 -0.0119003 +0.0355806 0.113279 0.0157103 +-0.036902 0.0362143 0.0131672 +-0.0532397 0.146242 0.0224016 +-0.0474989 0.107059 0.0399589 +-0.0857477 0.109049 0.020349 +-0.0892569 0.122633 0.00330914 +0.054626 0.0562289 -0.00078591 +-0.0161012 0.16832 -0.0147108 +-0.0788763 0.0949177 -0.010577 +0.026592 0.0578126 -0.0217526 +-0.061825 0.164563 -0.0576805 +-0.0210306 0.180146 -0.0147237 +-0.0474984 0.0833402 0.0443799 +-0.0884317 0.131079 0.0440854 +-0.0591643 0.0341749 0.0263998 +0.0381002 0.078079 0.0357853 +-0.0515897 0.146262 0.0154112 +0.0121111 0.116449 0.0370148 +-0.0414388 0.033531 0.00382893 +-0.0200653 0.172726 -0.0151523 +-0.0170332 0.164657 -0.0177746 +-0.0212056 0.0336704 -0.0218021 +-0.0696662 0.0710058 0.0344116 +-0.0516682 0.152149 0.0128837 +-0.0125103 0.0687513 0.0543288 +0.0366353 0.0982561 -0.0107953 +-0.0789343 0.0700266 0.0104198 +-0.0897898 0.136552 0.0342 +-0.0127086 0.0383825 0.00890404 +-0.0624498 0.166273 -0.0455815 +0.0326592 0.0619445 0.0401066 +-0.0457467 0.132003 0.0161756 +-0.0886572 0.111878 0.019323 +-0.0532618 0.0335957 0.00317772 +-0.0164951 0.109966 0.0413377 +0.0543768 0.0731861 0.0106539 +-0.0174802 0.127364 0.0206736 +0.0567172 0.0621967 0.0256596 +0.0464307 0.0792576 0.0101822 +-0.0292965 0.0818454 -0.0346209 +0.0426284 0.0719164 -0.00480026 +0.0578503 0.0648244 0.0238145 +0.0430174 0.0637781 -0.0018983 +-0.0794408 0.0768726 0.0291038 +0.0545285 0.0622324 0.0277996 +0.0441819 0.0945484 0.0191589 +-0.0284244 0.119569 -0.0104891 +-0.0778403 0.10982 0.0432074 +0.0160506 0.0754058 0.0531341 +-0.0523159 0.0517943 0.0256431 +-0.0181754 0.17123 -0.0220272 +-0.049306 0.147765 0.0110054 +-0.0405044 0.166738 0.00354035 +0.0214342 0.0934308 -0.0229317 +0.0452295 0.0931909 0.0101587 +-0.0352058 0.126987 0.0025067 +-0.0177396 0.0642294 -0.0366219 +-0.0251728 0.1712 -0.0194857 +0.0122607 0.0538397 -0.0290819 +-0.0902417 0.133644 0.00722857 +-0.0815914 0.0767239 0.0235201 +-0.0534472 0.146228 0.0234079 +0.0235949 0.0875751 0.0483132 +-0.0647237 0.158466 -0.0128094 +-0.0260145 0.0688342 -0.034504 +-0.0770801 0.15139 0.0355785 +-0.0630768 0.0336712 -0.00794186 +-0.0574971 0.10156 0.0427298 +0.0435266 0.0664036 0.0265247 +-0.0500812 0.146304 0.0115954 +-0.0568525 0.0521385 0.00567837 +-0.0436626 0.0607395 -0.0127771 +-0.0426472 0.117732 -0.0145554 +-0.0805782 0.112389 0.0458728 +-0.0161125 0.127667 0.00290411 +-0.00749701 0.0576432 0.054379 +-0.0454968 0.0775542 0.0422104 +-0.0694956 0.0958583 0.0420894 +-0.0369639 0.0346855 -0.0305537 +-0.0640756 0.151735 -0.033508 +-0.00249095 0.0718247 0.0580407 +-0.0583644 0.065095 0.0331446 +-0.0748917 0.16378 -0.0359985 +-0.0710199 0.0662278 0.0242287 +0.035425 0.0754528 0.0389267 +-0.0547392 0.075379 -0.0185175 +0.0462455 0.0784487 0.0155769 +-0.0310503 0.155166 -0.00836756 +-0.0879532 0.117604 0.0468721 +-0.0630191 0.169374 -0.0476038 +-0.0445267 0.0423569 -0.0163056 +-0.0624997 0.0818785 0.0437679 +-0.0842794 0.115636 -0.000747849 +-0.0700345 0.0631474 0.0200567 +0.0125104 0.105746 0.0436503 +-0.0795696 0.0976882 -0.00856087 +-0.0495247 0.141678 0.0113921 +0.0166382 0.123302 0.0301317 +-0.0367737 0.0813353 -0.0218258 +0.0465043 0.0597504 0.0314309 +-0.0777677 0.0975799 -0.010556 +-0.0460219 0.166062 0.00401182 +0.0609087 0.0623561 0.0101482 +-0.0403969 0.033577 0.00400031 +0.0286533 0.0578113 0.0412965 +0.0447855 0.0917675 0.0181585 +-0.0238167 0.0929782 -0.0327062 +-0.0714891 0.129823 0.0511416 +-0.0235755 0.157761 -0.0033973 +-0.0525761 0.136549 0.0284096 +-0.0177757 0.0756957 -0.0389571 +-0.0184004 0.0383962 0.0258071 +-0.0162165 0.175672 -0.0252165 +-0.0326786 0.0835446 -0.0285522 +-0.0897198 0.135201 0.0382086 +0.0138704 0.12508 0.0305218 +-0.0334383 0.0383149 -0.00250434 +0.0173372 0.059408 -0.0277846 +0.02739 0.119413 -0.00163712 +-0.055795 0.129741 0.0368819 +-0.0124902 0.0560062 0.0517339 +0.00742257 0.034128 0.000278711 +0.0312441 0.0828649 -0.019558 +-0.0804968 0.149757 0.0362335 +0.0224909 0.107012 0.0395338 +-0.0282283 0.117946 -0.012805 +-0.0726553 0.180933 -0.0546755 +-0.0683563 0.134056 0.04686 +-0.0197453 0.163025 -0.0159769 +-0.0591933 0.155725 0.01387 +-0.0522733 0.13577 -0.00153662 +0.0413723 0.0971667 -0.00382246 +-0.0920493 0.125439 0.00826634 +-0.0522301 0.0388364 0.0467813 +0.0151427 0.107227 -0.0182666 +-0.0397192 0.03358 0.00232461 +0.0373971 0.049112 -0.00639066 +-0.0698932 0.120907 -0.00884856 +-0.0667865 0.156181 0.0155153 +-0.0865635 0.0819919 0.0164862 +-0.0276111 0.0476412 -0.0256716 +-0.050104 0.0515366 0.0156131 +-0.0466794 0.0620985 -0.0127944 +-0.0784369 0.170061 -0.0360578 +-0.0714268 0.173765 -0.0397048 +-0.0313808 0.0567165 -0.0143886 +-0.0309651 0.0347631 0.0441412 +0.0067865 0.130497 0.0221788 +-0.0524448 0.149335 0.0194038 +-0.0414976 0.0860064 0.0425981 +-0.0709701 0.155369 -0.0459101 +0.00322675 0.0810659 -0.0345434 +-0.0294909 0.0917678 0.0440939 +-0.0734658 0.151245 -0.0358847 +-0.079509 0.130274 0.0528999 +-0.00249263 0.0534855 0.0544759 +-0.070992 0.0395652 0.00837515 +-0.0868944 0.122556 -0.00173403 +-0.0574179 0.0608499 0.024689 +-0.0424855 0.09447 0.0423231 +-0.00342977 0.0386245 0.00511046 +-0.018769 0.037629 -0.017491 +-0.0527937 0.0869491 -0.0216809 +-0.0846182 0.106299 0.024344 +0.0443742 0.0818795 -0.000800454 +-0.0894613 0.148789 0.0111841 +-0.0867708 0.110409 0.0193573 +-0.0310025 0.176085 -0.0150686 +0.00863383 0.115058 0.0390007 +-0.0408994 0.163853 0.00394115 +-0.057289 0.0707546 0.0390509 +-0.0646832 0.0432745 0.0336962 +0.0205013 0.0892461 0.0486645 +-0.0625318 0.0662874 0.0329584 +-0.0608083 0.147764 -0.00265379 +0.00615212 0.112907 -0.0196236 +-0.0299927 0.0436118 -0.0290457 +-0.0158151 0.162561 -0.00896512 +0.00597686 0.130404 0.00157669 +0.0284244 0.0822003 0.0446831 +0.0211099 0.0605491 0.0480139 +-0.0234016 0.184697 -0.0149423 +0.00333349 0.0390305 -0.00876711 +-0.0635183 0.159851 -0.052592 +-0.0770983 0.150031 -0.00589737 +0.0214723 0.0878669 0.0490265 +-0.0679264 0.131258 0.0474463 +0.00194863 0.100763 -0.0227079 +0.00777681 0.0385776 0.0292039 +-0.022633 0.08929 0.0533197 +-0.00603192 0.127393 0.0291246 +-0.0911594 0.120221 0.0443019 +-0.0894985 0.121276 0.00330358 +-0.0368227 0.0914861 -0.023804 +-0.0530502 0.151987 0.0175947 +-0.0672887 0.121448 0.0519139 +-0.0568311 0.0912579 -0.0217399 +-0.0697681 0.0822532 -0.0170635 +-0.0874076 0.0990828 0.0243308 +-0.0355048 0.108366 0.0378272 +0.0287346 0.10342 0.0381993 +-0.0860991 0.0964962 0.0273389 +0.0321886 0.108821 -0.00928902 +-0.0781375 0.103077 -0.00856917 +-0.0630075 0.0458305 0.00872119 +-0.0737672 0.068042 0.0238437 +-0.0863239 0.111846 0.0325401 +-0.00949559 0.10164 0.0439977 +-0.0902184 0.117255 0.00530427 +-0.075404 0.0914629 0.0394057 +-0.0453927 0.0336614 -0.0191153 +-0.0827835 0.0790493 0.0255103 +-0.0912019 0.132413 0.0272298 +-0.0564798 0.081975 0.044689 +-0.072928 0.148723 -0.0327819 +-0.00163455 0.0466691 -0.0289171 +-0.0665675 0.0355377 -0.00701232 +-0.000953404 0.100702 0.0462281 +-0.00881786 0.169637 -0.0227487 +-0.0201288 0.165284 -0.0176913 +-0.0859703 0.127103 0.0488324 +0.0255102 0.106068 0.0387825 +0.0570523 0.0522954 0.00619533 +-0.0407044 0.0491484 -0.0113833 +-0.0394747 0.168236 0.00277528 +-0.0690053 0.160967 -0.0519594 +0.0161135 0.0534638 0.0477167 +0.0284604 0.079188 -0.0220838 +0.0113708 0.0523816 -0.0287924 +0.0393128 0.0955964 -0.00780286 +-0.020906 0.0387029 0.0322136 +-0.00871553 0.0642094 -0.0357226 +-0.0547883 0.08548 -0.0214211 +-0.0725291 0.0901409 0.0413911 +-0.0566631 0.0629472 -0.00640536 +0.00234532 0.0524899 -0.0301138 +-0.0938956 0.118755 0.0202995 +-0.0414996 0.0846033 0.0426094 +0.00904636 0.090083 -0.0314826 +0.00730102 0.131 0.00524198 +-0.0637681 0.0809918 -0.0188675 +-0.0414945 0.041025 0.0428519 +-0.087002 0.140499 0.00821758 +-0.0709364 0.151841 0.036169 +-0.0634902 0.106988 0.0392647 +-0.0628225 0.0910404 -0.0189489 +-0.0105509 0.165091 -0.0177492 +-0.00157082 0.0341515 -0.0183868 +-0.0378749 0.105661 -0.0201869 +-0.0689412 0.079144 0.0404114 +-0.0239658 0.0335277 -0.0259671 +-0.0732183 0.172207 -0.0490431 +-0.0205007 0.0971766 0.0453281 +-0.0778797 0.109167 0.0401678 +0.000488577 0.0965409 0.0535304 +-0.0172908 0.177187 -0.018141 +0.00409629 0.128905 0.0269756 +0.0212668 0.080528 -0.0265872 +-0.0484872 0.0931824 0.0442201 +-0.0703872 0.161044 -0.0469664 +-0.0556945 0.0334591 0.00641451 +0.043113 0.0972735 0.00118522 +-0.0465526 0.147719 0.00793526 +-0.0620051 0.0336477 0.00854436 +-0.0789484 0.130998 -0.00538086 +-0.0329884 0.0347673 0.0437059 +-0.011676 0.0389222 -0.00979553 +-0.0102112 0.168384 -0.01842 +-0.058489 0.0747585 0.0420339 +0.0115041 0.129313 0.00109395 +-0.0186879 0.0554617 -0.0328673 +-0.0198225 0.168315 -0.0130587 +-0.013087 0.0382629 0.0179922 +0.0130281 0.0916311 -0.029044 +0.0271142 0.0463333 0.0371793 +-0.0618303 0.167813 -0.0535931 +0.0164903 0.113991 0.0376096 +-0.0592845 0.0336203 0.0127024 +-0.0728419 0.0642516 0.016748 +-0.0527116 0.12267 0.0360612 +-0.091424 0.144749 0.0231531 +0.0225812 0.0946281 -0.0221802 +-0.073319 0.153662 0.0322986 +-0.0384844 0.109782 0.036904 +-0.0551177 0.156069 -0.00176933 +-0.0195075 0.0512747 0.046374 +0.0374508 0.109679 0.00217662 +-0.0624744 0.163093 -0.0485882 +-0.0482041 0.0335795 -0.00119996 +0.0115865 0.127977 -0.0019288 +0.00494704 0.131338 0.0186496 +0.00228726 0.131702 0.0133903 +-0.0890002 0.134996 0.00522535 +0.0114372 0.12283 -0.0103617 +-0.0719092 0.180772 -0.055937 +-0.0144633 0.051615 0.0495133 +0.0147782 0.034634 0.0233109 +-0.0647828 0.177875 -0.0546137 +-0.0882908 0.103675 0.012381 +-0.0631313 0.0343469 0.025414 +-0.0255881 0.169753 -0.0108444 +0.0323006 0.0361518 0.00522301 +-0.0682938 0.06404 -0.00150269 +-0.0705485 0.167591 -0.022181 +0.0271973 0.0508207 -0.0197147 +-0.01565 0.10151 -0.0235687 +-0.0233444 0.0380443 0.0215084 +-3.10615e-05 0.0346258 0.0437307 +-0.0391691 0.162354 0.00112683 +-0.0657552 0.0422954 0.0115704 +-0.0745006 0.142795 0.0461595 +0.0473913 0.0422357 0.0119475 +0.0144595 0.121944 0.0333941 +-0.00358089 0.036197 -0.0248262 +0.0394746 0.0459091 0.0309432 +-0.0744487 0.141666 -0.00675172 +-0.0615813 0.0380878 0.0442214 +-0.0393467 0.0392853 0.042122 +-0.0229052 0.0945537 0.0478017 +-0.0281182 0.0563778 -0.0244009 +-0.0325146 0.112544 0.0353443 +0.0114695 0.0949418 0.0507264 +-0.027899 0.0377311 0.0244577 +-0.0247344 0.0668597 -0.034525 +-0.0623338 0.163141 -0.0335899 +0.0341266 0.0993109 -0.0131459 +-0.0130965 0.169821 -0.0173751 +0.0250182 0.11137 0.036342 +-0.0513993 0.14316 0.0173798 +-0.0521465 0.121207 0.0350569 +0.0134264 0.0403382 -0.0227982 +-0.0919004 0.143349 0.0181646 +0.0256492 0.0831048 -0.024123 +-0.0614955 0.0973435 0.04311 +0.0110632 0.0360404 -0.022358 +-0.0702704 0.159573 -0.0469358 +-0.0135146 0.181607 -0.0231689 +0.0462675 0.0778418 0.00718957 +-0.057322 0.0452663 0.0256799 +-0.0473932 0.0337786 -0.0140697 +0.0180643 0.0577618 0.0488361 +-0.0840242 0.151932 0.0065796 +-0.0547337 0.0738545 -0.0174125 +-0.0647273 0.156687 -0.0474505 +-0.0184955 0.0513594 0.0472431 +0.0314014 0.0491212 -0.0073371 +-0.0336406 0.0339783 -0.0207966 +0.0302861 0.0722616 -0.0207987 +-0.0707237 0.135491 0.0487549 +0.0373244 0.0861524 0.0364715 +-0.0839874 0.129456 -0.00327263 +-0.0579656 0.0599816 -0.000771046 +-0.0374903 0.0917378 0.0437278 +-0.0421167 0.157651 -0.00983865 +-0.0774831 0.151439 -0.0048996 +-0.0664918 0.167987 -0.0292876 +-0.0348246 0.12664 0.0173665 +0.0288107 0.113482 -0.00830654 +-0.0939345 0.122834 0.0252963 +-0.0236453 0.0906062 0.0514725 +-0.0623453 0.151603 -0.000787959 +-0.0394885 0.0520168 0.0393574 +-0.0228668 0.103033 -0.0236969 +-0.0205005 0.115412 0.03703 +-0.0206187 0.158806 -0.0102834 +-0.00380864 0.0840797 -0.0375505 +-0.0846424 0.139002 0.00130344 +-0.0244403 0.0384399 0.0299279 +-0.0256136 0.0707601 0.0441795 +0.0431065 0.0733659 -0.00379081 +-0.0334964 0.0575473 0.0382542 +-0.0732341 0.100848 0.0383652 +-0.0417523 0.0392031 -0.0263092 +-0.0600247 0.0335577 0.00903367 +0.0319454 0.0782138 0.0427262 +-0.0478947 0.122501 0.0288841 +-0.0215102 0.0435311 0.0534788 +-0.0175036 0.0357848 -0.0270478 +-0.0659221 0.115196 -0.0104247 +-0.0452512 0.0574076 0.0387158 +-0.0318518 0.100063 -0.022678 +-0.062214 0.131105 0.0398962 +-0.0570307 0.151068 0.0316808 +-0.0390807 0.159219 -0.0117734 +-0.0575439 0.0421232 0.0457366 +-0.0434958 0.166715 0.00391556 +0.0435215 0.0973118 0.0181533 +0.0364745 0.0384289 0.0206775 +0.00783805 0.034796 0.0434029 +0.00550647 0.0519309 0.0530702 +-0.0452904 0.125307 0.0239255 +0.0384949 0.0469555 0.0314897 +-0.0344994 0.0860255 0.0426749 +-0.0604675 0.0334377 0.00185915 +0.00564306 0.109569 0.0416563 +-0.0341393 0.169665 -0.0151103 +0.0252174 0.115733 -0.00872379 +-0.0432318 0.0365168 -0.0263599 +-0.0648058 0.0881399 -0.0188881 +-0.0113055 0.0420913 0.0500945 +-0.0768733 0.0742923 -0.00658087 +-0.0718355 0.0757492 0.0369191 +-0.00552934 0.126815 -0.00649473 +-0.015298 0.113338 -0.0180384 +-0.0658513 0.168603 -0.0333515 +-0.0769239 0.160393 -0.0146649 +-0.0789031 0.0913518 0.0358575 +-0.0622512 0.175627 -0.0566298 +0.0427075 0.100107 0.0161639 +-0.0122664 0.0420539 0.0504523 +-0.0593768 0.116855 0.0386274 +-0.0207916 0.117992 -0.012906 +-0.0209967 0.0893299 0.0545201 +-0.0293388 0.0522666 -0.0213646 +0.042 0.102859 0.00616839 +-0.0915744 0.128321 0.0372423 +-0.0745556 0.104899 0.0367465 +-0.0874341 0.0860792 0.0144694 +-0.0893403 0.0983511 0.0184032 +0.0265834 0.0915781 0.0456097 +0.0111147 0.0359709 0.0304167 +-0.0251149 0.163764 -0.0159045 +0.0379525 0.0888235 0.0356698 +-0.0308593 0.102934 -0.0225503 +-0.0849458 0.0817985 0.00448942 +0.016843 0.101962 -0.021958 +-0.0602648 0.153206 0.0324327 +-0.00109974 0.118227 -0.0153259 +-0.0277867 0.0904111 0.0457123 +-0.0632329 0.149656 -0.0246848 +-0.0378318 0.0943285 -0.0232947 +0.00942926 0.0360304 0.00452751 +0.00308943 0.0346383 -0.0160359 +-0.0629538 0.164686 -0.0335942 +-0.0707579 0.0639499 0.00302292 +-0.0806378 0.0734203 0.0185511 +-0.0114878 0.0502762 0.0503958 +-0.051624 0.0589527 -0.00929309 +-0.0724662 0.156284 0.0178613 +-0.0755506 0.0791122 0.0357048 +-0.0599662 0.0605914 -0.00103222 +-0.0407972 0.128426 0.00338476 +-0.0685036 0.0972643 0.0418698 +0.0384545 0.081427 -0.0137424 +-0.0869304 0.137738 0.00419643 +-0.0915894 0.118845 0.0433559 +-0.0375104 0.0344317 -0.0164034 +0.0132714 0.0779991 -0.0309033 +-0.000460653 0.0717499 0.0573883 +-0.0689415 0.128234 -0.0091158 +-0.00449889 0.0389099 -0.0139692 +-0.00687105 0.104506 -0.0230032 +-0.0625734 0.0333471 -0.00389969 +-0.0466818 0.0680053 -0.0151447 +0.0325669 0.0564098 0.0381516 +-0.00676687 0.0770295 -0.0375725 +0.031043 0.0535582 0.0376713 +-0.0252324 0.0383969 -0.00646059 +-0.0781312 0.100777 0.0347873 +-0.0351912 0.0448435 0.0445858 +-0.0618482 0.0460583 0.00900481 +-0.0510378 0.148698 -0.00295565 +-0.0758068 0.170822 -0.0449998 +0.0228822 0.0407495 0.0397886 +-0.0556881 0.123137 -0.00801327 +0.041209 0.10285 0.0181659 +-0.057716 0.154704 0.0245626 +-0.0356589 0.0394362 0.046602 +-0.018436 0.0384553 -0.00144245 +-0.0725091 0.147853 -0.0287195 +0.0195403 0.0672509 0.0492981 +-0.00949487 0.11143 0.0422271 +0.0387128 0.0407096 0.0245464 +0.0274937 0.0354669 0.00307886 +0.0251817 0.0344441 0.0110044 +-0.0734653 0.11597 0.0519419 +-0.0517405 0.0367791 -0.0118947 +-0.0313584 0.0347088 0.042355 +-0.0271594 0.0577744 0.0376032 +0.0289959 0.083514 0.0437755 +-0.0609886 0.0421383 0.0435161 +-0.0642758 0.0379734 0.0412454 +-0.0669901 0.171097 -0.0394962 +0.00201718 0.0342688 0.0083365 +-0.0376227 0.0519888 -0.0106273 +-0.0604976 0.0761414 0.0420756 +0.0231651 0.0624431 -0.0251426 +-0.0444966 0.100126 0.0423688 +-0.0434704 0.0888362 0.0427012 +-0.0739012 0.112096 -0.00769672 +0.0113285 0.0381477 0.0446991 +0.0606492 0.0595518 0.0111602 +-0.0344028 0.0453249 -0.0266763 +-0.0238559 0.100178 -0.023968 +0.0124979 0.0363631 -0.0219171 +-0.0386629 0.0606634 -0.011982 +-0.0845122 0.0778323 0.0175087 +-0.0447652 0.0811738 -0.019998 +-0.0325802 0.0708663 -0.0234636 +-0.0428489 0.09852 -0.021578 +0.0343638 0.0491351 -0.00656846 +-0.00173319 0.108975 -0.0214067 +-0.0513914 0.0516798 0.0216239 +0.00608628 0.101527 -0.0214717 +-0.0746196 0.147202 -0.0138555 +-0.0464944 0.0733156 0.0418074 +0.0275533 0.0550749 -0.019815 +-0.0617588 0.0455326 -0.00130544 +-0.0627435 0.14749 -0.0135844 +0.0114636 0.0347788 0.020691 +0.0413154 0.0451948 0.0296022 +-0.0855482 0.149965 0.0308161 +0.045359 0.04899 -0.00489955 +0.000884291 0.038993 0.0274224 +-0.086804 0.0846773 0.00948205 +0.00217921 0.090906 -0.033534 +-0.0074916 0.0518487 0.0520774 +-0.000472995 0.0746288 0.0583091 +0.00707409 0.0348007 0.0234037 +0.0191098 0.127253 0.00673134 +-0.00312412 0.123427 0.0346626 +-0.0251492 0.0379137 0.0122303 +-0.030188 0.124116 0.0205603 +-0.0326284 0.178159 -0.00692862 +-0.0371849 0.0430027 -0.0273252 +0.000516139 0.0703294 0.0566091 +-0.061834 0.155291 -0.0275862 +0.0144787 0.103102 0.0461637 +-0.0601666 0.138122 0.0340792 +0.0447845 0.0903596 0.0201575 +-0.0175794 0.128153 0.00899134 +-0.0654784 0.133956 0.0422213 +-0.078379 0.0698242 0.00895098 +-0.0544145 0.0561001 0.0105768 +-0.0166845 0.0625881 0.0524778 +0.0283147 0.0712973 0.0426773 +0.00750546 0.105745 0.0420743 +-0.0365184 0.126747 -0.000928274 +-0.0297912 0.154227 -0.00467156 +0.0242356 0.0804257 -0.0251216 +-0.0507602 0.0797387 -0.0202693 +-0.0399713 0.112687 -0.0172474 +0.0170749 0.128355 0.00741174 +-0.0399375 0.150681 0.00347523 +-0.0608612 0.0435863 0.0137318 +-0.0365883 0.0485443 -0.0138981 +-0.0910601 0.132402 0.0282222 +-0.0795844 0.0759236 -0.00451678 +-0.0809274 0.12805 -0.00535084 +-0.0711513 0.132664 0.0498849 +0.0150413 0.120568 0.0342385 +0.00849911 0.119651 0.036768 +-0.0569109 0.033599 0.014995 +-0.0689033 0.0887623 0.0428815 +-0.020138 0.166773 -0.018707 +-0.0815894 0.0926183 0.0328436 +0.00319943 0.0866473 -0.0337836 +-0.0528475 0.140082 0.0254195 +0.0217844 0.118301 -0.00950952 +-0.0305318 0.0734349 -0.0315361 +-0.0355385 0.040818 0.0464546 +-0.0446309 0.0563208 -0.0114385 +-0.0779756 0.13395 -0.00568102 +-0.0924453 0.114684 0.0163206 +-0.0427865 0.0855262 -0.0214717 +-0.030041 0.0819074 -0.0335886 +-0.0350329 0.037518 0.0477355 +-0.0574727 0.0791252 0.0438951 +-0.0347822 0.124221 0.0233214 +0.0396853 0.0674479 -0.00978879 +-0.0280887 0.123076 -0.00418723 +-0.0357494 0.0383801 -0.010405 +-0.0896534 0.0983503 0.0154045 +-0.0393744 0.174134 -0.00504658 +-0.00548988 0.121033 0.0366102 +-0.0493281 0.143211 0.0074004 +-0.0618749 0.161566 -0.0365945 +-0.00486561 0.103096 -0.0233724 +-0.0158939 0.0387206 -0.00487532 +-0.0136298 0.0943834 -0.0340901 +-0.0708677 0.158014 -0.00345716 +-0.0679292 0.0674285 0.0308631 +-0.0698001 0.0894083 -0.0167108 +-0.0708742 0.117963 -0.00822963 +0.0544559 0.0679536 0.0254119 +0.0505447 0.0640078 -0.00213219 +-0.0328813 0.11004 -0.0184872 +-0.0329481 0.169751 -0.00390259 +-0.0730465 0.158091 -0.00419381 +-0.0642284 0.165303 -0.0599757 +-0.0393381 0.149359 -0.00118821 +0.027659 0.115893 0.031317 +0.00307915 0.03925 0.0330573 +-0.0268824 0.0338882 -0.0212482 +-0.076206 0.0892711 -0.0135327 +0.036558 0.0887304 -0.0159156 +-0.045503 0.0478046 0.0396725 +-0.00457894 0.0383459 0.0160278 +-0.014359 0.102532 0.0433738 +-0.0263218 0.038308 -0.00105771 +-0.0252694 0.0564528 0.0400125 +-0.0745038 0.137269 0.049596 +-0.0478639 0.102799 -0.0211716 +-0.0698236 0.144589 -0.0179026 +-0.00449355 0.112805 0.041803 +0.0395793 0.107012 0.0171684 +0.0320331 0.117177 0.0215305 +0.0319133 0.103439 0.0357737 +-0.0232571 0.160328 -0.0132723 +-0.0368559 0.101427 -0.0217814 +-0.0779001 0.105799 -0.00757653 +-0.0719733 0.155857 0.00930845 +-0.0667659 0.0664754 0.0301739 +-0.0116086 0.0384341 0.0253641 +-0.0828253 0.0815398 -0.00255091 +-0.00864403 0.0481881 -0.0304747 +-0.0695881 0.0687436 -0.00572614 +-0.053703 0.069339 -0.0141095 +-0.0875622 0.147255 0.0314849 +-0.060703 0.146825 0.0369155 +0.0559661 0.0563559 0.00119345 +-0.0899141 0.140577 0.0142032 +0.0290556 0.0480892 -0.0107335 +-0.0444676 0.0959215 0.0428438 +-0.0126944 0.0614008 -0.0362648 +-0.00712049 0.126279 0.0302479 +0.00717458 0.125139 0.032446 +0.0130051 0.123122 0.0330958 +-0.0658939 0.119442 -0.00885604 +-0.0535827 0.0550746 0.0114399 +0.00820634 0.0865719 -0.0325157 +-0.0358588 0.100033 -0.0223224 +-0.0816885 0.110103 -0.000571623 +-0.0517049 0.0693137 -0.014154 +-0.0304078 0.0499703 0.0425042 +0.0090211 0.0602846 0.0533569 +-0.0102692 0.126825 -0.00441849 +-0.0412575 0.123881 0.0239565 +-0.0304041 0.179805 -0.0103906 +-0.0119972 0.115638 -0.0165051 +0.0413233 0.102851 0.0171643 +-0.032272 0.0343596 0.0389523 +-0.0854712 0.0791996 0.00951147 +-0.0138083 0.082755 -0.0391488 +-0.0256473 0.0335939 -0.0244827 +0.0452831 0.0511563 0.0319003 +-0.0829803 0.153189 0.00837374 +-0.0435404 0.0351992 0.0428237 +0.0114184 0.0389206 -0.0228692 +0.0440394 0.0405103 0.0110966 +-0.0218345 0.0725147 0.0516294 +0.0173744 0.124995 0.027504 +-0.0771042 0.163136 -0.0202013 +0.0282746 0.0494546 -0.0167442 +-0.0703245 0.0805604 0.0403227 +-0.0558701 0.154311 0.0223113 +-0.0790495 0.0785612 -0.00658771 +0.0023439 0.122378 0.0350184 +-0.0220309 0.0609111 0.0451603 +-0.0853195 0.117662 0.0484974 +-0.0580048 0.0366442 0.0464062 +-0.00844255 0.0358982 -0.0250895 +0.0243113 0.119024 -0.0062727 +-0.0558892 0.141955 -0.00229647 +-0.0642262 0.115635 0.0441038 +-0.0719279 0.153998 -0.0419035 +0.0423481 0.0732982 -0.00579253 +0.0103113 0.0595614 -0.0298764 +-0.0818376 0.116236 -0.00283916 +0.0590795 0.0663557 0.00613696 +-0.039497 0.0436994 0.0413132 +-0.0702982 0.0846763 0.0415948 +-0.0167436 0.068615 -0.0382083 +-0.0690033 0.127063 0.0512206 +-0.0485018 0.102883 0.0409949 +-0.0541716 0.144673 0.0274046 +0.0243198 0.0564051 0.0438207 +-0.0308589 0.0382072 0.0517831 +-0.00548321 0.119649 0.0378412 +-0.0606463 0.0434636 0.0431332 +-0.008712 0.171156 -0.0257232 +-0.0444845 0.0846726 0.04342 +-0.0897848 0.135174 0.0342114 +-0.00690926 0.0349718 0.0473534 +-0.0808786 0.122166 -0.00503067 +-0.0779103 0.070378 0.00551561 +0.0134856 0.129689 0.00607818 +-0.0225837 0.0666453 0.0469216 +-0.0525012 0.046573 0.0420391 +-0.0444858 0.091688 0.0430295 +-0.0394965 0.0662956 0.0417788 +0.00897384 0.0364118 0.0277765 +-0.0782046 0.166684 -0.029962 +0.0192461 0.0777761 -0.0276631 +-0.0483417 0.137106 0.010396 +0.0258883 0.12226 0.00355652 +0.0398565 0.0384519 0.0122163 +-0.0408758 0.107069 -0.0201235 +-0.0315055 0.0689302 0.0397623 +-0.068912 0.148468 -0.034342 +-0.0496681 0.0705507 0.0391462 +0.00414266 0.131018 0.00407154 +0.0204354 0.100784 0.0455262 +-0.0587133 0.0708136 -0.0155469 +-0.00369415 0.0386815 0.0249596 +-0.0546088 0.0601814 -0.0071333 +0.0277597 0.0984362 -0.0181936 +0.00136992 0.128685 0.0274437 +-0.0166951 0.0555255 -0.0336624 +0.0054852 0.109984 0.0416767 +-0.079955 0.130987 -0.00485489 +-0.00265109 0.0497012 -0.030809 +-0.0697849 0.145343 0.0431021 +-0.0903934 0.12698 0.0433203 +-0.0409656 0.122163 0.0270528 +-0.056363 0.13673 0.0325483 +-0.00422605 0.0355815 -0.0164762 +-0.0158888 0.123338 -0.00654807 +0.0233356 0.0389315 -0.00470356 +-0.0377622 0.0797629 -0.0199128 +-0.0274204 0.12046 -0.00942796 +-0.0745042 0.0669844 0.00328572 +-0.0544992 0.0400332 0.0469658 +-0.022854 0.100181 -0.0240549 +-0.0748342 0.156367 -0.00257451 +0.00532997 0.0389553 -0.00830106 +-0.0591545 0.129731 0.0390508 +-0.0365933 0.117132 -0.0139142 +0.00710349 0.126169 0.0309735 +0.00420316 0.0838546 -0.0341295 +0.0424932 0.0541962 0.0323753 +-0.0447782 0.039524 -0.0212903 +0.0130456 0.0946785 -0.0262358 +0.0515873 0.047616 0.00226708 +-0.0226971 0.059684 -0.0328522 +-0.0489531 0.117804 -0.0145786 +-0.00521852 0.130779 0.0091953 +-0.0745798 0.155493 -0.021916 +-0.0211637 0.171222 -0.0207379 +-0.0681899 0.15036 -0.0415571 +-0.0645431 0.0356401 -0.00785526 +0.0444401 0.0776895 -0.00177282 +0.0191352 0.0356125 -0.00767677 +-0.0879901 0.0928029 0.00642738 +-0.0274823 0.0617236 0.037721 +0.0406194 0.104193 0.00117617 +-0.0205806 0.0342261 -0.0203167 +0.052283 0.0559902 -0.003254 +-0.0826845 0.0884898 0.0312484 +-0.0354914 0.0719062 0.0418497 +0.00222867 0.0810902 -0.0349213 +-0.0247631 0.123128 0.0239793 +0.00210157 0.111597 -0.0202587 +-0.029962 0.122606 -0.0056563 +-0.0642809 0.173904 -0.0612545 +0.0164873 0.128764 0.0128859 +-0.0290915 0.0334798 -0.0269263 +0.0563251 0.0686891 0.0234174 +0.0388229 0.0428364 0.0281231 +-0.0364553 0.171237 0.000642707 +-0.0695352 0.0422413 0.00168563 +0.0115865 0.119151 -0.014401 +-0.0445078 0.128204 0.0197407 +-0.0735439 0.101276 0.0379813 +-0.0842997 0.131249 0.0498733 +-0.0456134 0.0424471 -0.0132755 +0.00124079 0.0740793 -0.0353703 +-0.0590284 0.155612 0.0197248 +0.00626131 0.0696979 -0.0331897 +-0.0465413 0.123419 -0.0104793 +-0.0145087 0.0587885 0.0518852 +-0.0412993 0.127471 0.0164976 +-0.0621264 0.0457845 0.0326787 +0.00861617 0.0348422 -0.0132521 +-0.0699384 0.129684 -0.00901632 +-0.0174184 0.0961382 -0.0299203 +-0.0408477 0.0999502 -0.0215042 +-0.0629342 0.109643 -0.0151294 +-0.0588992 0.0593658 0.0203903 +-0.0622614 0.0594461 0.0178467 +0.0503092 0.0575099 -0.00459296 +0.0328071 0.0781213 -0.0187889 +0.0297936 0.0354746 0.0165125 +-0.0592597 0.0343664 0.034953 +-0.0736653 0.0761112 -0.0107553 +0.0358581 0.0686798 0.0377462 +-0.0814983 0.102013 0.0310531 +0.0072631 0.0968089 -0.0265119 +-0.0107695 0.0756601 -0.0381615 +-0.0665448 0.142647 -0.010737 +-0.0861837 0.0868588 0.0248974 +-0.0323987 0.114036 -0.016697 +-0.0526124 0.143167 0.0204083 +-0.00749979 0.118315 0.0383098 +-0.0366574 0.0591917 -0.011518 +-0.0854765 0.145991 0.0364919 +-0.0590102 0.131118 -0.0069845 +0.0099878 0.0342067 -0.0142754 +0.0406313 0.0833746 0.032449 +-0.0377389 0.0753784 -0.0182557 +-0.0265179 0.111211 0.0374625 +-0.0457781 0.109842 -0.0182449 +0.0106021 0.12463 0.0322012 +-0.0714609 0.172223 -0.0354286 +-0.0918002 0.143353 0.0191654 +0.009256 0.0681484 -0.0312392 +0.00426025 0.0352382 0.0224392 +-0.0497576 0.0782604 -0.019072 +-0.0628575 0.0953598 -0.0185102 +0.0594691 0.0677866 0.0081304 +0.0120479 0.124912 -0.00663019 +-0.0896003 0.111903 0.0133388 +-0.000572916 0.131478 0.0109076 +-0.0856485 0.103181 0.0252723 +-0.0825849 0.0762413 0.018536 +0.0357614 0.089262 -0.0164786 +-0.0853874 0.0978708 0.0280062 +-0.0250231 0.0373676 -0.0184933 +-0.0224668 0.0384735 -0.00782567 +-0.0215612 0.127036 0.0148264 +0.0375018 0.0527008 0.0316063 +0.0132903 0.0644915 0.0525417 +0.021025 0.0444507 -0.0197096 +-0.0230202 0.0380885 0.0125034 +-0.0190143 0.123258 -0.00649836 +-0.0634892 0.101502 0.0420523 +-0.0022961 0.120938 -0.0122094 +-0.0682754 0.155222 0.00480981 +-0.0105391 0.0444694 0.0492224 +-0.0314884 0.0988001 0.0440684 +-0.0162822 0.113495 -0.0182068 +0.0427502 0.0832247 0.0284671 +-0.0317184 0.124145 0.0214762 +-0.0228243 0.0868132 -0.0375213 +0.0112412 0.122679 0.0339481 +-0.0624726 0.093208 0.0448109 +-0.0195149 0.0474114 0.0506124 +-0.0305029 0.105682 0.0404793 +0.0297926 0.0510441 -0.0147439 +-0.0660587 0.0336733 0.00769062 +0.01375 0.126078 -0.00389468 +0.00623348 0.0768314 -0.0342539 +0.00723812 0.0725784 -0.0338132 +-0.0345032 0.0747169 0.0417978 +-0.0533429 0.0572662 -0.00744815 +-0.0588626 0.0344147 0.0367317 +-0.0597544 0.151092 0.0347772 +-0.066041 0.156288 0.0201296 +-0.0519452 0.0542248 0.0130044 +-0.0536545 0.154299 0.0129697 +-0.0553709 0.131821 -0.00535733 +-0.0165812 0.0355875 -0.0267111 +-0.0671293 0.149176 -0.0346332 +0.0364911 0.112064 0.0146153 +-0.0678122 0.0908837 -0.0169858 +-0.0433492 0.123979 0.0232099 +0.0233446 0.0489622 -0.0213372 +-0.0401353 0.162183 -0.0119788 +-0.0436993 0.0680874 -0.0160622 +-0.0575 0.0589785 0.0215704 +0.002504 0.0605716 0.0560843 +-0.0230753 0.078299 0.0540943 +-0.0532839 0.150877 0.0224035 +-0.0536299 0.144677 0.0243972 +0.0138044 0.129402 0.00474998 +0.0390959 0.0382591 0.0140545 +-0.0935248 0.128245 0.016248 +-0.017174 0.169749 -0.0215263 +-0.00210217 0.035143 0.0464295 +0.00913637 0.105871 -0.0204027 +-0.0861865 0.0926674 0.00242789 +-0.0615271 0.0344278 0.0378839 +0.0506397 0.0652197 -0.00133714 +-0.0859779 0.129848 0.0487451 +-0.0269007 0.0388242 0.0362546 +0.0349035 0.0987755 -0.0125611 +-0.0895593 0.13929 0.0311867 +0.0210026 0.126515 0.0102791 +0.0155029 0.119565 0.0348769 +-0.0660877 0.178333 -0.0536421 +-0.0134986 0.0911752 0.0564813 +-0.0462738 0.0671086 0.039469 +-0.0691002 0.0421453 0.000699576 +0.0106377 0.0658124 0.0539651 +-0.0372457 0.0381548 -0.00680953 +-0.0415057 0.0396254 0.0430594 +-0.0658022 0.0335619 0.00426403 +-0.0549779 0.135599 -0.00339213 +-0.0654711 0.157635 -0.0545345 +-0.0699145 0.135483 0.0481625 +-0.0647392 0.157599 -0.0538703 +-0.0405119 0.125571 0.0212459 +-0.0408461 0.0957242 -0.0225993 +-0.0211708 0.123144 -0.00636628 +0.0528302 0.048039 0.0216552 +0.0292509 0.119574 0.0033793 +0.0456488 0.0861985 0.00518381 +-0.0697746 0.169428 -0.052035 +-0.0583932 0.146765 0.0331817 +-0.0748301 0.174171 -0.0395847 +0.0397534 0.0685495 0.0327941 +0.0603506 0.0581587 0.0121666 +-0.0615125 0.0729203 0.0397926 +0.0320567 0.106099 0.0342281 +0.0259569 0.0632491 0.0444844 +-0.017781 0.12071 -0.00976707 +-0.00292868 0.129815 0.0244395 +0.042563 0.0650705 0.0275619 +0.051394 0.0726569 0.00804397 +-0.0147356 0.124887 0.0290085 +0.0124993 0.116805 0.0367613 +-0.0095857 0.128017 -0.00170998 +-0.0353912 0.0475494 -0.0206462 +-0.0197639 0.0714243 -0.0385337 +-0.0646745 0.0721957 -0.0143162 +-0.0418918 0.129001 0.00740866 +-0.0217734 0.0713925 -0.0382795 +-0.0493632 0.1301 -0.00139208 +0.0232238 0.0822541 0.0494986 +0.0449291 0.081953 0.02316 +0.0595997 0.0567108 0.0101713 +-0.0496185 0.140151 0.0144011 +-0.0524988 0.102874 0.0411998 +0.0342709 0.0876121 0.0408726 +-0.0295799 0.174217 -0.00600797 +-0.0251232 0.165382 -0.00841584 +0.0176002 0.124344 -0.00401113 +0.054323 0.064171 -0.000208879 +-0.0129906 0.0568055 0.0517595 +-0.0751884 0.153035 0.033144 +0.0124885 0.114028 0.0382457 +0.0104651 0.0444795 0.0447526 +-0.033472 0.124985 -0.00213286 +-0.0519318 0.0352921 -0.0124585 +-0.0621937 0.156854 -0.0175927 +-0.0755066 0.11755 0.0524265 +-0.0660809 0.135405 0.0431027 +0.0020291 0.0342762 0.0137843 +0.0320171 0.111398 0.0306261 +-0.0685791 0.147786 -0.0311476 +0.0139278 0.129741 0.0148027 +-0.075709 0.170829 -0.032719 +-0.0241819 0.175647 -0.0202251 +-0.0729646 0.147133 -0.0208616 +-0.0588824 0.0997395 -0.0190365 +-0.0396703 0.036174 -0.00733977 +-0.0195581 0.181635 -0.0160858 +-0.0449923 0.0381195 -0.0222607 +-0.0298707 0.101527 -0.0228594 +-0.0447239 0.169659 -0.000473292 +-0.0547075 0.153861 0.0184094 +-0.00344803 0.111769 -0.0204187 +-0.048864 0.162635 -0.0057974 +-0.0837218 0.154141 0.0154269 +-0.0709606 0.172226 -0.0520527 +-0.000498029 0.0505184 0.0529377 +-0.0916834 0.116094 0.0407438 +0.029535 0.0987313 -0.0165204 +-0.0649388 0.16711 -0.0315896 +-0.00669968 0.0599043 -0.0346663 +-0.0086066 0.042026 -0.0258639 +0.0380982 0.0589726 0.0320786 +0.0284966 0.0768217 0.0447581 +-0.0365356 0.155076 0.00317988 +0.0173692 0.0476632 -0.0235115 +0.0152466 0.0765161 -0.0298116 +-0.061679 0.175513 -0.061381 +-0.03626 0.0434916 0.0442696 +0.0033481 0.0346494 0.040814 +-0.0708559 0.177779 -0.0481346 +-0.0522853 0.153955 0.0120432 +-0.00577511 0.0770351 -0.037534 +-0.0279795 0.0577645 -0.0254 +-0.0474968 0.101477 0.0417865 +0.0418115 0.0872841 -0.00879032 +-0.0272728 0.0383881 -0.00686007 +-0.0828517 0.110648 0.028886 +-0.0677301 0.181168 -0.057983 +-0.0339959 0.0752105 -0.0234884 +0.0227878 0.0350417 0.0227582 +-0.0132511 0.177151 -0.0280569 +-0.0662758 0.159515 -0.0565111 +-0.0759663 0.179251 -0.0520449 +0.0494532 0.0710682 0.00472592 +-0.0158055 0.0931896 -0.0348885 +0.0506418 0.0475027 0.0012667 +-0.0220809 0.0348313 0.0494485 +-0.0681005 0.179488 -0.0529195 +-0.0457387 0.0767861 -0.0183415 +-0.0849611 0.0883696 0.0278927 +0.0410895 0.0670315 0.0294468 +0.0123862 0.0342845 -0.0119874 +-0.0861176 0.152173 0.0250218 +0.00146529 0.0341167 -0.0177588 +-0.0847663 0.132585 0.0488829 +0.041918 0.0732584 -0.00676718 +-0.0704834 0.174975 -0.0436743 +0.0101806 0.114501 -0.0173735 +-0.0274005 0.0647434 -0.0304718 +0.00306398 0.0374048 0.023868 +-0.0908043 0.122683 0.00627651 +-0.0126271 0.0337462 -0.0239473 +0.0294467 0.0623083 -0.0198501 +-0.031353 0.158667 -0.0125849 +-0.0600161 0.129661 -0.00742185 +0.0141451 0.0740257 0.0538731 +0.0348792 0.0378052 0.00236551 +-0.0223477 0.16248 -0.006155 +0.0184989 0.11258 0.037522 +-0.0107925 0.18028 -0.0267448 +0.0112772 0.0752122 -0.0313695 +-0.0481785 0.0341964 0.00728185 +-0.0564997 0.107064 0.0398466 +-0.0510086 0.119975 -0.0128249 +-0.0142596 0.175663 -0.0267921 +-0.028881 0.124884 0.00195054 +-0.0744184 0.069256 0.0261761 +-0.0527672 0.0812315 -0.0212685 +0.0424296 0.0696684 0.0278335 +-0.0272214 0.163934 -0.00616346 +0.0566888 0.0635446 0.0256358 +0.0446243 0.0959671 0.00617079 +-0.0160443 0.174209 -0.0181164 +-0.0310058 0.156198 -0.0100049 +-0.039513 0.166742 0.00312951 +-0.0651923 0.176525 -0.0608469 +-0.0649089 0.110873 0.0375872 +-0.0545067 0.0904158 0.0449797 +0.0328041 0.0682575 -0.0177764 +0.0296649 0.110072 0.0343033 +-0.00848516 0.121007 0.0363393 +-0.0284943 0.0674472 0.03888 +0.0207654 0.126697 0.0144664 +-0.0231479 0.0919482 0.0509374 +-0.0105985 0.0406145 -0.0262787 +0.0525369 0.0651172 0.0279377 +-0.0709498 0.165209 -0.0469921 +0.0101258 0.125306 -0.00703851 +-0.0198334 0.107697 -0.0220521 +0.0228667 0.107306 -0.0156684 +0.0410305 0.0422896 -0.000687891 +-0.0687631 0.080836 -0.0170666 +-0.0685062 0.142066 -0.00982847 +-0.0288706 0.171229 -0.00855169 +-0.0870246 0.129415 0.000309032 +-0.0367401 0.0754253 -0.0187666 +-0.0231137 0.159172 -0.011899 +-0.0445 0.113887 0.0346508 +-0.0617979 0.154608 0.0289232 +0.0322191 0.117688 0.00875184 +0.00258681 0.125467 0.0322572 +-0.0668846 0.117985 -0.00889164 +-0.0560239 0.144237 -0.00161522 +-0.0939473 0.122782 0.0142819 +-0.057663 0.155278 0.0187721 +-0.0653495 0.0459059 0.00467835 +-0.0838817 0.150077 0.00420446 +-0.0574972 0.100168 0.0430053 +0.0447715 0.070791 0.0233171 +0.0114258 0.129163 0.0238841 +-0.0415072 0.0605699 0.0406995 +-0.0495023 0.0862453 0.0455995 +-0.0309567 0.166794 -0.00630909 +-0.0310964 0.125815 0.0157855 +0.0577493 0.0579199 0.00320063 +-0.00748502 0.105882 0.0440003 +-0.0594987 0.0932573 0.0451741 +-0.0584823 0.080492 0.0436889 +0.0565518 0.0722252 0.0100192 +-0.0154726 0.123613 0.0307813 +-0.017794 0.0799068 -0.038901 +-0.0670193 0.0901061 0.04379 +-0.0506534 0.0619401 -0.0109597 +-0.0284985 0.0631152 0.0376198 +0.0405765 0.0793262 0.0323176 +0.0350622 0.0909926 -0.0162992 +-0.0679473 0.136882 0.0457212 +-0.0626008 0.160001 -0.0205855 +0.0143086 0.0623633 -0.0295361 +0.00349883 0.0605728 0.0559342 +0.0235231 0.0943993 -0.0219282 +0.0425314 0.0623712 0.0287546 +-0.0352518 0.156597 0.00331287 +-0.0807586 0.0950245 -0.00854945 +-0.085825 0.114595 0.0464925 +0.0420636 0.0915328 -0.00679501 +-0.0369296 0.0455099 -0.0248207 +-0.0610521 0.0460525 0.00962048 +-0.0476199 0.057734 -0.011287 +-0.0595357 0.0400627 -0.00844467 +-0.0604419 0.114971 -0.0134731 +-0.016194 0.128088 0.0051496 +-0.0365847 0.122192 -0.00920846 +-0.0464591 0.0345029 0.0305523 +-0.0644598 0.0432795 0.035714 +-0.0241405 0.168248 -0.0186857 +-0.0743787 0.145821 -0.0108474 +0.0173308 0.0566344 -0.0283721 +-0.0548894 0.136747 0.0311423 +-0.0579822 0.0343384 0.0317603 +-0.0262958 0.0634474 0.0394208 +-0.0183558 0.127798 0.00725695 +-0.0750251 0.152273 0.0347437 +-0.0648702 0.0334576 -0.000853911 +-0.0610584 0.138406 -0.00654552 +0.0224766 0.0920198 0.0478397 +0.044722 0.0945895 0.0131657 +-0.0873336 0.126682 -0.000726608 +-0.0880434 0.125329 0.00027907 +-0.0364509 0.174337 -0.00256774 +-0.053938 0.138144 0.0289679 +-0.00559979 0.114688 -0.0175182 +-0.00635915 0.0931082 -0.0347376 +-0.0861558 0.100815 0.00240792 +0.0184724 0.0934238 0.0476306 +-0.000245612 0.0350857 0.0144067 +-0.0547132 0.153591 0.0213081 +0.0445999 0.0931357 0.00219092 +-0.0649995 0.134056 -0.00807462 +-0.0360819 0.0351453 0.0214963 +0.0444988 0.0569914 0.0320977 +-0.0597101 0.0723346 -0.0163812 +-0.0468406 0.0985145 -0.021833 +-0.0397006 0.0666136 -0.0148744 +-0.0847301 0.0966436 -0.00257686 +-0.00176079 0.0741065 -0.0358743 +-0.0671962 0.0736816 0.0379285 +-0.0347085 0.169768 -0.00115359 +-0.0213445 0.0916844 -0.035421 +-0.0625559 0.150623 -0.0205762 +0.055585 0.0535517 0.00220948 +-0.0136228 0.128915 0.00609854 +-0.0654189 0.16417 -0.0217177 +-0.0613445 0.0434338 0.042412 +-0.0144732 0.096429 0.0522087 +-0.0707666 0.171245 -0.0323024 +-0.0713393 0.134067 0.0496215 +-0.0458732 0.104238 -0.0208285 +-0.0551833 0.07213 0.0401196 +0.0364832 0.0422343 0.0281778 +-0.0336503 0.0577563 -0.0112696 +-0.0810791 0.117571 0.0486733 +0.044724 0.0588042 -0.00496063 +-0.0568258 0.120959 -0.0097287 +-0.0257724 0.0797722 -0.0374309 +-0.0800654 0.121688 0.0502425 +-0.0569634 0.0335771 0.00964709 +-0.00939357 0.0354504 -0.0173725 +0.046214 0.0637709 -0.0019104 +0.00900714 0.0383394 0.0314785 +0.0457806 0.0890199 0.00717609 +-0.0524951 0.0747684 0.0423102 +0.0334058 0.0446363 -0.00548551 +-0.063072 0.0346346 0.0391063 +0.0073001 0.0907939 -0.0322622 +0.026147 0.0875952 0.0467145 +0.0130004 0.0419341 0.0448362 +0.0263999 0.0348437 0.0163952 +-0.0056357 0.0466988 -0.0297075 +-0.000747471 0.0987058 -0.0265343 +-0.0688283 0.0966095 -0.0161149 +0.00300687 0.0991424 0.049182 +-0.0154864 0.0814755 0.0571167 +-0.074497 0.120396 0.0533632 +-0.0748436 0.114924 -0.0060803 +-0.0168418 0.107354 -0.0217003 +-0.0459377 0.145792 0.000601046 +-0.0487849 0.0715634 0.0402545 +-0.0581679 0.154986 0.022946 +0.044397 0.0945546 0.0171571 +-0.0810292 0.0940061 0.0336494 +0.032953 0.0994589 0.0373001 +-0.0181454 0.0347978 0.0451006 +-0.0487902 0.0855221 -0.0217064 +-0.0776336 0.147268 -0.0038625 +-0.0891133 0.14743 0.0101992 +0.0134061 0.0767276 0.0545687 +-0.0451757 0.14769 0.00639824 +0.0340849 0.114614 0.00225198 +-0.0494981 0.105619 0.0396922 +-0.0291786 0.175627 -0.0167894 +0.0516271 0.0736236 0.0155669 +-0.0333156 0.0365169 -0.0174853 +-0.00225297 0.0388793 -0.00041461 +-0.0884617 0.14585 0.0310303 +-0.087958 0.12395 0.000268768 +-0.0637456 0.154158 0.00252195 +-0.0680618 0.0606588 0.013756 +0.00946449 0.0616923 0.0540126 +-0.00707285 0.12974 0.0027455 +-0.0190315 0.0389958 0.035931 +-0.00971778 0.0670387 -0.0360005 +0.0406669 0.102735 -0.000789188 +-0.085128 0.0845897 0.0244984 +0.00248558 0.111415 0.0422707 +0.00320889 0.0824712 -0.0345101 +-0.0467495 0.117966 -0.0147678 +0.0250223 0.110364 -0.0129553 +-0.044347 0.146755 0.000226372 +-0.0616655 0.144455 -0.00523057 +0.000474346 0.0977989 0.0522897 +0.0207702 0.036271 0.0339301 +0.0400498 0.0387801 0.0063192 +-0.0199993 0.185902 -0.0200623 +0.018427 0.0917703 -0.0251723 +-0.0354635 0.0860418 0.0431394 +-0.0475855 0.0518372 -0.00929506 +0.0429858 0.0691484 -0.00178958 +-0.0244489 0.052187 0.0413714 +-0.0500639 0.141673 0.0143962 +0.0144323 0.129298 0.0192627 +-0.0561449 0.04824 0.0383427 +0.0358665 0.0404526 0.0260172 +-0.0213253 0.0444675 0.0531428 +-0.0609289 0.112535 -0.0147528 +-0.0699845 0.139935 -0.00772138 +-0.0748631 0.106362 -0.00967707 +-0.0346028 0.0344648 0.0366099 +-0.0425153 0.118993 -0.0138741 +0.0153464 0.0537553 -0.0279934 +-0.0719831 0.170733 -0.0298702 +0.0460203 0.0848226 0.00718276 +-0.0760167 0.15688 -0.0219252 +-0.010059 0.109235 -0.0217082 +0.0010095 0.0346721 0.0439005 +-0.0198215 0.0841085 -0.0387066 +-0.020574 0.115387 -0.0161841 +-0.00203672 0.0345877 -0.0169988 +-0.0424883 0.0846004 0.0426298 +-0.0313435 0.0707327 -0.0274782 +-0.0490828 0.13552 0.0213898 +-0.0481015 0.157608 -0.00698963 +-0.0579692 0.0408152 0.0462221 +-0.0682257 0.127075 0.0505767 +-0.0434944 0.0733818 0.0425428 +-0.0905017 0.114314 0.0223543 +0.0242723 0.0647548 -0.0237835 +0.050682 0.0731977 0.010749 +0.0604945 0.0595549 0.015166 +-0.0490636 0.126668 -0.00583208 +0.00647697 0.0459611 0.0484012 +0.0279051 0.0395203 0.0288639 +-0.0314585 0.0335695 -0.0237257 +-0.0485262 0.0344313 0.0301756 +-0.0386172 0.0505956 -0.0110053 +-0.000657388 0.0511382 -0.0308268 +-0.0630072 0.0689485 0.0358468 +0.0316541 0.0351286 0.0116939 +-0.0517065 0.163863 0.00241874 +-0.0634695 0.0445577 0.0356919 +-0.0832566 0.147367 0.0370632 +0.02323 0.0762417 -0.0259573 +-0.0735922 0.0833012 0.0392631 +-0.00431736 0.130694 0.00665461 +-0.021599 0.0382532 0.00358087 +0.0465019 0.0778624 0.0111839 +0.0604451 0.0678689 0.0141533 +0.0213931 0.0489728 -0.0223035 +-0.0630692 0.153725 -0.0105955 +-0.0236572 0.0507797 -0.028024 +0.00430293 0.0625774 -0.0325544 +0.0421362 0.0845969 0.0293292 +0.010951 0.0562864 0.05258 +0.0369412 0.107321 0.0271722 +0.0502975 0.0560957 -0.00457555 +0.0410804 0.10284 0.0191681 +0.0102664 0.0739304 0.0552835 +-0.0397448 0.172952 -0.00234724 +-0.0829232 0.125068 -0.00442148 +-0.0284893 0.0903534 -0.0305816 +-0.0616586 0.172539 -0.056588 +0.0182369 0.0749953 -0.0283712 +-0.0168303 0.0382802 0.00815469 +0.0453551 0.0805854 0.0221747 +-0.0718567 0.0701514 0.0311867 +-0.0814119 0.152728 0.0295837 +0.0555021 0.0730293 0.0140468 +0.00650419 0.123782 0.0339598 +0.0422452 0.0986357 -0.000817871 +-0.072904 0.112135 -0.00834183 +-0.00786498 0.13001 0.00533674 +-0.0614753 0.15686 -0.0265876 +-0.0234913 0.103006 0.0434545 +-0.0093342 0.174192 -0.0247468 +0.048187 0.0717514 0.00605259 +-0.0554773 0.0820103 0.045038 +-0.091005 0.124034 0.00628346 +-0.0147917 0.0951887 -0.0329173 +-0.00125147 0.122854 0.0353 +-0.017497 0.0485942 0.047882 +0.0194854 0.0989751 0.0466096 +-0.0889579 0.0901579 0.00845534 +-0.065396 0.0605193 0.0180241 +-0.0469507 0.168415 -0.00396135 +0.0205156 0.111203 0.0377036 +-0.0928924 0.122885 0.0362699 +0.0213879 0.0686569 0.0484685 +0.0214143 0.0463213 0.0412437 +0.00882931 0.0373958 0.0286749 +0.0465562 0.0764652 0.0121829 +-0.0618529 0.153757 -0.0195806 +-0.0262234 0.119963 0.0294562 +-0.0354913 0.0889091 0.0432238 +0.037993 0.109314 0.0194453 +-0.0377299 0.0739307 -0.0178742 +-0.0184902 0.0815159 0.0575038 +-0.0314396 0.0637247 -0.0204391 +-0.0825513 0.110697 0.0307352 +-0.0728404 0.156111 0.0119063 +-0.0663982 0.164105 -0.0192035 +0.0062922 0.0654161 -0.0325779 +-0.0624759 0.0959475 0.043683 +-0.033686 0.0637452 -0.0146972 +0.0353693 0.102677 -0.0107148 +-0.0710479 0.166372 -0.0194754 +-0.059243 0.0367531 0.0461369 +-0.0908243 0.114994 0.023547 +-0.0650258 0.156351 -0.0487028 +-0.034444 0.159452 0.00265373 +0.0357616 0.0967769 -0.0118087 +0.044965 0.0903773 0.0181662 +0.0498767 0.0734333 0.0134213 +-0.031608 0.0496402 -0.0193495 +0.0404724 0.0408436 0.0229665 +-0.0473115 0.134637 0.0112388 +0.00743122 0.0352845 0.0446812 +-0.0297131 0.0509006 -0.0193584 +-0.0241845 0.177125 -0.0200954 +-0.0632603 0.157387 -0.0151607 +-0.0598965 0.0343774 0.0365453 +-0.0242309 0.0382399 0.0265535 +0.0433792 0.0972945 0.00218055 +-0.00691412 0.124317 0.0332409 +0.00451269 0.0561377 0.0533474 +-0.00250438 0.0842991 0.0575402 +-0.0903673 0.145762 0.0273033 +-0.0523714 0.143148 0.0193902 +0.0362345 0.0967824 0.0350211 +0.0264539 0.106068 0.0383874 +-0.0729303 0.131104 -0.00814819 +0.0116228 0.130194 0.0054038 +-0.0409771 0.113795 -0.0164017 +-0.0828306 0.150071 0.00319212 +-0.0676468 0.0338307 -0.00583252 +-0.0857374 0.0792227 0.0125087 +-0.0651015 0.0410328 0.0295625 +-0.0136795 0.0987823 0.0477955 +0.0258821 0.0794179 -0.0243188 +0.0449394 0.0734628 0.0226146 +-0.0694849 0.173671 -0.0550315 +0.0142482 0.127965 9.03059e-05 +0.0564285 0.0727253 0.0143999 +-0.0172735 0.180097 -0.0253788 +-0.0699136 0.162391 -0.0489495 +-0.09118 0.143373 0.022161 +-0.0644984 0.100116 0.0422372 +-0.0564709 0.0847764 0.0446514 +-0.043754 0.152254 -0.00662286 +-0.0547181 0.0708998 -0.0155975 +-0.0401471 0.163848 0.00326215 +-0.0814342 0.154656 0.0132857 +-0.0513196 0.0514695 0.0138904 +0.00680734 0.129132 0.0265205 +-0.0614938 0.0959769 0.0438595 +-0.0091676 0.171172 -0.0227371 +-0.0769695 0.154154 -0.0139015 +-0.0502302 0.126885 0.0326315 +0.00555777 0.034446 -0.000384949 +-0.0206136 0.0379294 -0.0283016 +0.00719386 0.0810104 -0.0336874 +0.0390033 0.0387188 0.0172773 +-0.0737727 0.0928414 0.040556 +-0.0829975 0.0763193 0.0155222 +0.0461381 0.0792322 0.00519228 +0.0313444 0.106098 0.0349666 +-0.0157326 0.0383302 0.0246146 +-0.0739329 0.072514 0.0322154 +-0.0287063 0.168278 -0.00832187 +-0.02709 0.0386639 -0.0126398 +-0.0689895 0.156345 -0.00130196 +-0.0622523 0.152181 -0.0215758 +-0.0408691 0.158042 0.00401656 +-0.0324935 0.0903869 0.0442776 +0.0156162 0.0904755 -0.0278196 +0.00543406 0.120555 -0.0138758 +-0.0874054 0.110457 0.012344 +-0.0534973 0.0903982 0.0447559 +-0.0007305 0.0683317 -0.0340878 +-0.0847135 0.152577 0.00925173 +0.0453586 0.0547792 -0.00610681 +-0.0513173 0.146268 0.0144074 +0.0146587 0.125796 -0.00358107 +-0.0790281 0.166651 -0.0329632 +-0.0519257 0.0563169 0.0201359 +-0.0206011 0.0382174 0.00381729 +-0.0499923 0.0342577 0.028256 +0.0222487 0.0365239 0.0303911 +-0.0762222 0.0981393 0.0371985 +-0.0381245 0.162196 -0.0129852 +-0.0462852 0.149202 0.00834502 +0.039774 0.0618507 -0.00575724 +0.0461841 0.0778325 0.00618859 +-0.0770439 0.154813 -0.0101321 +-0.0615001 0.152383 0.000341367 +-0.0665808 0.0334125 0.000644743 +-0.0212653 0.0381372 0.0218515 +-0.071123 0.111741 0.0467572 +-0.0265438 0.177186 -0.00862049 +-0.0523481 0.125498 -0.00654313 +-0.0522635 0.0343446 0.0312176 +0.0191745 0.060499 0.0487078 +-0.0855607 0.111744 0.0263451 +-0.0360977 0.156596 0.00383263 +-0.0479431 0.0356599 -0.0132734 +0.0366613 0.0821332 0.0372523 +-0.0478798 0.107016 -0.0192852 +-0.0356524 0.0460406 0.0421919 +0.00919662 0.0865327 -0.0319845 +-0.0808705 0.11922 -0.0043482 +-0.0335583 0.116878 -0.0136466 +-0.0112898 0.0395292 0.0388441 +-0.0194927 0.0814879 0.0571676 +0.0239403 0.124821 0.0127882 +-0.0444942 0.105717 0.0408954 +-0.0484929 0.162245 0.00645185 +-0.00849807 0.0801615 0.0580203 +-0.0487025 0.121311 -0.0122547 +0.00400584 0.0386131 0.0458842 +-0.00449485 0.0488681 0.0504112 +-0.0507263 0.122615 0.0336033 +-0.0801811 0.108648 -0.00360377 +0.029758 0.0352966 0.00556049 +-0.0236293 0.0665652 0.045154 +0.0470549 0.0602552 -0.00440662 +-0.059554 0.155543 0.0209921 +-0.00550703 0.0787847 0.0579843 +-0.0451509 0.0424209 -0.0143059 +-0.0674032 0.144345 -0.0161484 +-0.0621766 0.125515 0.0434733 +-0.0885651 0.0963045 0.0227197 +-0.0623911 0.154382 0.0301734 +-0.078298 0.0745267 0.0278337 +0.00377395 0.13125 0.00536065 +-0.0351573 0.0361738 0.0471926 +-0.0517432 0.0487299 0.0143843 +-0.0578034 0.0854472 -0.0211977 +0.0151488 0.10026 -0.0226403 +0.0225321 0.104677 0.0415312 +-0.0605798 0.155686 0.00466574 +-0.0891628 0.0942977 0.0214104 +0.0393896 0.106975 0.00316583 +0.00351619 0.0800296 0.056385 +0.0405703 0.105644 0.0131657 +-0.0507419 0.0753249 -0.0179378 +0.0269605 0.111014 -0.0116501 +0.0303852 0.098223 0.0405823 +0.0431361 0.0419917 0.0224684 +-0.0738026 0.1492 0.0397758 +-0.0725455 0.148857 -0.0337299 +-0.072371 0.0860632 0.0407672 +0.0158441 0.0475203 0.043749 +0.0104341 0.0346525 0.0368683 +0.0344146 0.0399125 -0.00185272 +-0.0764595 0.111219 0.0459768 +0.042138 0.101461 0.00217211 +-0.0213522 0.127058 0.00761225 +-0.0556879 0.0677603 -0.0123408 +0.00811587 0.129858 0.0241077 +-0.0637641 0.044271 -0.0022694 +-0.0104962 0.0897854 0.05669 +-0.0147283 0.0657495 -0.0376113 +-0.0881508 0.144556 0.0335371 +-0.0807759 0.0773963 -0.00349851 +-0.0388999 0.0345526 0.0391301 +0.0239365 0.0972468 -0.020928 +-0.0559996 0.126683 -0.00642409 +0.015329 0.118191 -0.013375 +-0.0894904 0.112329 0.0187618 +-0.0771865 0.153815 0.000183792 +0.00297917 0.0389607 -0.010651 +-0.0571826 0.122684 0.0401181 +0.0453844 0.091806 0.0121583 +-0.0908751 0.135104 0.0182068 +0.0216273 0.125269 0.00337714 +0.0572674 0.0722428 0.0147076 +-0.0417782 0.0473939 -0.012205 +-0.0658407 0.0938498 -0.0179236 +0.0102801 0.12364 -0.00922404 +0.00517588 0.113065 -0.0197995 +0.0139965 0.0343089 -0.00230394 +-0.0757024 0.160453 -0.0116926 +-0.0694905 0.10551 0.0380162 +0.0123252 0.0595168 -0.0292981 +0.00242842 0.0916453 -0.033159 +0.0363451 0.0519755 -0.00662669 +-0.0899083 0.121615 0.0458595 +-0.0569713 0.125238 -0.00711806 +-0.0616474 0.0458147 0.0384356 +-0.0816857 0.104685 0.0297488 +0.0417455 0.0760505 -0.00673474 +-0.0249373 0.175681 -0.0116247 +0.0233583 0.0592365 -0.0255115 +0.0296356 0.107455 0.0360045 +-0.0171544 0.0383178 0.00624466 +-0.0338857 0.12324 -0.00632922 +-0.0295434 0.168268 -0.00777595 +0.0237606 0.105983 -0.0162548 +-0.0636907 0.124164 0.0466174 +0.0299589 0.119939 0.0150519 +0.0387947 0.101959 0.0281808 +0.0346979 0.108688 0.0292348 +-0.00481267 0.108148 -0.0225124 +-0.0921162 0.126957 0.038246 +-0.0708767 0.0346286 -0.00100073 +-0.0434981 0.0803632 0.0422528 +-0.00776303 0.0742012 -0.03739 +-0.0164203 0.103082 -0.0232082 +-0.0368601 0.0336856 -0.0211611 +-0.0794788 0.13585 0.0504167 +-0.0622192 0.166249 -0.0495907 +-0.0632785 0.0347611 0.0232648 +-0.0678048 0.17421 -0.0455841 +-0.0292876 0.113893 -0.0165575 +-0.0116236 0.0451107 -0.0281433 +-0.0853661 0.0910995 0.0281927 +0.0152572 0.124805 0.0295869 +-0.0730257 0.141351 -0.00730576 +-0.0694123 0.111827 0.045291 +-0.048008 0.0642705 0.0370013 +-0.000600787 0.0405329 -0.0249772 +-0.0932444 0.124186 0.027283 +-0.050904 0.119772 0.0333476 +-0.00274076 0.0726647 -0.0356738 +-0.0635974 0.151927 -0.0324488 +0.025021 0.085012 -0.0240764 +-0.0749218 0.0661459 0.00857247 +0.0115292 0.119123 0.0361473 +0.0363972 0.0461521 -0.00588406 +0.0385505 0.0378908 0.0124577 +-0.0599745 0.14101 0.03437 +0.00637279 0.049483 -0.0283693 +-0.0896361 0.0969931 0.0144152 +0.0291455 0.0491758 0.0366259 +-0.013551 0.0588296 0.0525443 +-0.0381244 0.127641 0.0146907 +-0.00888364 0.107351 -0.0226177 +-0.0497129 0.165582 0.00102101 +0.0449595 0.0889486 0.000172046 +-0.0339085 0.177047 -0.0109944 +-0.0278445 0.0535534 0.0370258 +-0.0334735 0.0337737 0.0142583 +-0.0926366 0.121498 0.0312794 +-0.0298476 0.105726 -0.0219826 +-0.0771466 0.113816 0.049094 +0.0166749 0.0347919 -0.00596505 +-0.0767718 0.0716181 -0.00247133 +-0.0788159 0.0818529 0.0346403 +-0.0751616 0.0715622 0.0292788 +-0.0629391 0.12384 -0.00881569 +0.0155707 0.100538 -0.0224673 +0.0252284 0.116758 -0.00782512 +0.00112155 0.035712 0.0195623 +-0.0623204 0.0448503 0.0109236 +0.0577561 0.0565381 0.00419435 +-0.000697034 0.0626894 -0.03411 +-0.0739419 0.129646 -0.00820737 +-0.0552142 0.155428 0.0123927 +-0.0749344 0.128178 -0.00819506 +0.0183304 0.0579992 -0.0277502 +-0.0259227 0.123138 -0.0042558 +0.0130981 0.124462 0.0316831 +-0.0723893 0.172498 -0.0357772 +-0.015947 0.124632 0.0285893 +-0.0583387 0.0706756 0.0389009 +-0.0347052 0.0384254 -0.0102399 +-0.0149752 0.125602 0.0274605 +-0.0153278 0.0389782 0.0349161 +-0.0482032 0.131003 0.0267578 +0.0538412 0.0539826 0.0267309 +-0.0845696 0.12714 0.0502672 +0.0343613 0.111866 -0.00251995 +-0.0679623 0.16261 -0.0140168 +0.0251056 0.0902557 0.0469821 +-0.0373144 0.033633 0.00457247 +0.00149673 0.110036 0.0425823 +-0.0886162 0.100967 0.00940891 +-0.0734724 0.155984 0.0233451 +0.00740252 0.0402134 0.0455033 +0.0454345 0.0918112 0.0111626 +0.0252284 0.0420597 0.0372934 +0.026048 0.117275 -0.00637096 +-0.0768401 0.178514 -0.0509284 +-0.0719676 0.138437 -0.00730592 +0.00750673 0.0758763 0.0563548 +-0.0485658 0.0404434 -0.0115683 +-0.0402074 0.168164 -0.0113973 +-0.044494 0.0987314 0.042632 +-0.0530679 0.140053 0.026392 +0.0521064 0.0510719 0.0259326 +-0.0545309 0.0352136 0.0455493 +-0.0717133 0.0715245 -0.00752229 +-0.0899797 0.128138 0.00527223 +0.0045004 0.121001 0.0358516 +-0.0641393 0.143504 -0.0105249 +-0.0769685 0.156212 -0.0102521 +-0.0645952 0.155196 -0.0084031 +0.0323835 0.0460752 0.0307026 +-0.023205 0.178608 -0.0204967 +-0.042033 0.113762 -0.0163433 +-0.0512269 0.150712 0.0135153 +0.00120164 0.0839391 -0.0353946 +0.0300054 0.104778 0.0365239 +-0.00649214 0.0965537 0.0536631 +-0.0289152 0.0846603 -0.0346291 +0.0207024 0.0373647 0.039246 +-0.0386568 0.0577511 -0.0111914 +-0.0605191 0.153857 0.0308432 +0.0410047 0.0395957 0.0043142 +-0.0837262 0.151367 0.00522149 +-0.0378805 0.108506 -0.019759 +-0.0169176 0.183111 -0.0193016 +-0.0614849 0.0946016 0.0445824 +0.0332816 0.116574 0.0106008 +-0.0378618 0.101418 -0.0215553 +0.0383745 0.038179 0.01581 +0.010493 0.111264 0.0393941 +0.0353685 0.0600237 -0.0127796 +-0.0203175 0.0933679 0.052311 +-0.0434938 0.0619471 0.0402773 +-0.0393599 0.0418158 -0.0263353 +-0.0588856 0.105471 -0.0181522 +-0.0278953 0.124828 0.00229374 +-0.0894349 0.136561 0.0381888 +-0.0455406 0.124353 -0.00945534 +-0.0850289 0.111596 0.00326083 +0.01399 0.106595 -0.01887 +-0.0765357 0.0692333 0.0204809 +-0.0741239 0.165568 -0.0191297 +-0.056116 0.131133 0.036427 +-0.0715838 0.158191 -0.0409255 +-0.077037 0.111295 -0.0046823 +-0.0135016 0.0573891 0.0517499 +0.0374899 0.0469458 0.0313688 +-0.0297919 0.108873 -0.0192723 +-0.0616758 0.113831 0.0370124 +-0.0157188 0.0628375 -0.0366012 +-0.0879795 0.148554 0.029057 +-0.0890892 0.0955882 0.00942496 +-0.0709327 0.178806 -0.0496057 +0.0454967 0.0611109 0.0306935 +0.0193158 0.0835035 0.0508805 +0.000580692 0.131584 0.0113306 +-0.0615895 0.155312 -0.0215829 +-0.0134922 0.122339 0.0335983 +0.0458248 0.0806172 0.0201703 +-0.0225646 0.0983245 -0.0242201 +-0.0682478 0.066271 0.0282875 +0.0302092 0.117283 0.0265434 +-0.0829482 0.128017 -0.00457928 +-0.0715343 0.141411 0.0464325 +-0.0800761 0.0936246 -0.00957758 +-0.0851808 0.153525 0.0149377 +-0.0865771 0.124349 0.048115 +-0.0221188 0.100222 -0.0241961 +0.0224909 0.111137 0.037371 +0.00736705 0.0494733 -0.028237 +0.0432386 0.0750761 0.0273062 +-0.0564476 0.153922 0.0264803 +-0.0288608 0.0448354 -0.0281934 +-0.0776003 0.156937 -0.0149108 +-0.0784376 0.171472 -0.0389273 +-0.0178474 0.12806 0.016159 +-0.0284556 0.0472262 0.0488083 +-0.0677451 0.0629578 0.0224748 +-0.0567391 0.0576068 -0.000420382 +-0.0769537 0.132513 -0.00657383 +-0.0837476 0.0952109 -0.00455405 +-0.0427254 0.0358312 -0.0275925 +0.00623069 0.0782309 -0.0341321 +-0.0758642 0.117897 -0.00698249 +-0.0903736 0.13787 0.0221843 +-0.027962 0.155009 -0.00579987 +-0.0193391 0.0386082 -0.00732295 +-0.0237931 0.0698259 -0.0366341 +-0.015124 0.037267 -0.0266656 +0.0113671 0.0479427 -0.0268055 +0.0141489 0.0347135 0.0249225 +-0.0669549 0.160975 -0.0568649 +0.0208979 0.0359371 0.0087849 +-0.0570669 0.0493259 -0.00137722 +-0.0186112 0.0386738 -0.00909396 +-0.0055195 0.0443362 0.047543 +-0.0714237 0.153981 -0.0448933 +0.0119572 0.125728 -0.00550935 +-0.0310683 0.0679104 -0.0254551 +0.0514754 0.0531199 -0.00283685 +0.0135274 0.12988 0.0160733 +-0.0728856 0.148047 -0.0249504 +-0.0233454 0.122752 0.0259903 +-0.0578948 0.0983776 -0.0200563 +-0.0203263 0.0825295 0.0568715 +-0.0643532 0.142586 -0.00864957 +-0.0793976 0.151048 0.0347829 +0.0356609 0.104701 0.030636 +0.0063888 0.115364 -0.0182909 +-0.0289964 0.0383539 -0.00532847 +-0.0834239 0.0965619 -0.00458039 +0.019508 0.109842 0.0390589 +-0.0767379 0.10491 0.0348158 +-0.0825915 0.143398 0.0421649 +0.0182147 0.0834619 -0.0281698 +-0.0633435 0.060722 0.00207171 +0.0428335 0.076148 -0.00478426 +-0.0724349 0.0644357 0.0131399 +-0.0114637 0.165492 -0.0149909 +-0.0493961 0.033823 0.00737414 +0.0502518 0.0446339 0.0182039 +-0.0439305 0.0432632 0.0429545 +-0.0713305 0.0628284 0.00935991 +-0.0276378 0.158958 -0.0125395 +0.0600492 0.0581198 0.0161748 +0.00134506 0.0511101 -0.0304682 +-0.0692332 0.158118 -0.0519432 +-0.0133594 0.127978 0.0236019 +0.0292021 0.0619142 0.0421314 +-0.0667582 0.180263 -0.0553199 +-0.0197539 0.0671131 -0.0375162 +-0.0704746 0.040884 0.00781861 +-0.049499 0.112564 0.0357174 +-0.0322502 0.0367926 -0.0305484 +-0.00789583 0.129197 0.00105287 +-0.016169 0.117727 -0.0146898 +0.0295964 0.0580473 -0.0178274 +-0.0883598 0.0874311 0.00547496 +-0.0274913 0.101587 0.0432231 +-0.0768992 0.155831 0.0192356 +-0.0364902 0.0634253 0.0412069 +-0.0388025 0.125966 -0.00521606 +0.0196905 0.0550135 0.047657 +0.0571135 0.071717 0.0176058 +-0.0064991 0.0952675 0.0547927 +0.0174901 0.0346463 0.0220409 +-0.0024963 0.10305 0.0439671 +-0.0184804 0.0543192 0.0487134 +-0.0334418 0.0335662 -0.0297364 +-0.0620472 0.176838 -0.0608311 +-0.0308715 0.0522855 0.0371048 +-0.0367079 0.0695483 -0.0163464 +0.0158791 0.123986 0.0298499 +-0.0320536 0.0356449 0.0500425 +-0.0493943 0.14168 0.0103932 +-0.0558858 0.106922 -0.0182628 +0.059454 0.0647075 0.0208869 +0.0152596 0.125955 0.0281714 +0.038478 0.0980354 0.0312187 +-0.0744916 0.146991 0.0423999 +-0.0846211 0.0992422 0.0286106 +-0.0661191 0.156294 0.0171964 +-0.0794888 0.111206 0.0453002 +0.00519891 0.0880579 -0.0334439 +0.0153315 0.0346194 -0.0136599 +0.0395267 0.0632302 -0.00776648 +-0.0463407 0.0629206 0.0382092 +-0.0514201 0.121192 0.0343754 +-0.0528867 0.0334295 0.0213081 +-0.062446 0.163101 -0.0455941 +-0.0770308 0.167319 -0.027484 +-0.041999 0.126936 -0.00419358 +0.0289857 0.090239 0.0438092 +-0.0634397 0.158343 -0.0445972 +0.00692319 0.0630369 0.0555875 +-0.0294344 0.0381755 0.00387704 +0.0228628 0.0351973 0.0171792 +-0.0738758 0.0993275 -0.0132564 +-0.0668982 0.151542 -0.0415298 +-0.0629724 0.133897 0.038809 +-0.0928035 0.121507 0.0322842 +0.0305387 0.0609912 -0.0187852 +0.0385799 0.0739884 0.0346445 +-0.0814052 0.08555 -0.00656718 +-0.0621323 0.0602572 0.0206983 +-0.0294013 0.0804353 -0.034602 +0.0164763 0.0348375 -0.0136598 +-0.0659203 0.122383 -0.00896938 +-0.0328324 0.0929676 -0.0240794 +0.000521824 0.0801146 0.0573693 +0.0221547 0.0979182 -0.0216266 +-0.0649149 0.0392337 0.0390271 +0.0351689 0.0928995 0.0387113 +-0.0125327 0.0502379 0.050201 +-0.05553 0.12546 -0.00656458 +0.0330446 0.111446 -0.00610948 +0.0255618 0.120425 0.027665 +-0.0243325 0.126263 0.00798048 +-0.0654853 0.0944999 0.0429585 +-0.0478356 0.0970782 -0.0220591 +-0.0332116 0.0851655 -0.0254848 +0.00641089 0.036109 -0.0234066 +-0.0192798 0.0610993 0.0494354 +0.0363164 0.11089 0.0231265 +-0.0705311 0.0972485 0.0414142 +-0.0514267 0.135712 0.0273837 +-0.0564984 0.0918565 0.0453856 +-0.042499 0.113906 0.034677 +-0.0717955 0.156396 0.0195489 +-0.0215446 0.0942792 -0.0320343 +-0.0246821 0.177174 -0.0112336 +0.0177118 0.0944604 -0.0240064 +-0.0881735 0.15196 0.0139234 +-0.000296991 0.0392472 -0.00781836 +-0.00248723 0.115552 0.0407434 +-0.0147779 0.0756914 -0.0387415 +0.0503819 0.0717878 0.00597587 +-0.0396993 0.117276 -0.0140617 +-0.0628784 0.16149 -0.0515871 +-0.0769868 0.0713943 0.0255408 +-0.01852 0.115493 0.0376203 +-0.0632135 0.155458 0.00808821 +-0.0244921 0.103004 0.0433541 +-0.0392444 0.0481623 -0.0129943 +0.0317796 0.0647744 0.0406274 +-0.00516147 0.100957 0.0442706 +-0.0196118 0.040807 -0.0284935 +-0.0288146 0.0436325 0.0510094 +-0.0690473 0.0727409 0.0365464 +-0.0478629 0.125952 -0.00709772 +-0.0456346 0.123874 0.0250844 +-0.0214969 0.0498836 0.0466158 +0.0515378 0.0461489 0.00621743 +0.0472621 0.0627303 -0.00287883 +-0.0738666 0.0846755 0.0394915 +0.0247439 0.0490967 0.0390469 +0.0150281 0.097439 -0.0231662 +0.0456884 0.0904192 0.00716979 +0.0173787 0.046209 -0.0233857 +-0.00349533 0.123738 0.0342998 +-0.0905223 0.128294 0.0420009 +-0.0733752 0.0741466 0.034437 +-0.0106209 0.130105 0.0129711 +-0.0754549 0.158227 -0.0249553 +-0.0125993 0.0922824 -0.0359459 +-0.064348 0.0611447 0.0212332 +-0.0246221 0.0450443 -0.0281165 +-0.0383306 0.0379343 0.0437226 +-0.0423655 0.110099 -0.0185262 +-0.0750214 0.166563 -0.0400315 +-0.0338231 0.0915286 -0.0241849 +-0.0857793 0.088721 -0.000547834 +-0.00485752 0.103786 0.0439754 +-0.0334914 0.0960174 0.044365 +-0.040497 0.0705056 0.0418211 +0.0309495 0.065969 0.041175 +-0.0649024 0.119454 -0.00881631 +-0.0326689 0.0382268 0.0507498 +0.0366581 0.0727136 0.0371657 +0.0102886 0.13098 0.0134608 +0.0549839 0.0534895 0.00121219 +0.0229081 0.0608908 -0.0255785 +-0.0578484 0.0576892 0.00460939 +-0.0380707 0.123893 0.0251235 +0.0425051 0.049941 0.0324381 +-0.0208164 0.0797246 0.0560382 +-0.0600611 0.155861 0.0164593 +0.0128031 0.126304 -0.00413421 +0.0254584 0.0383883 -0.00303811 +-0.0782251 0.104799 0.0333593 +-0.011635 0.0466548 -0.0295721 +-0.0227746 0.0968676 -0.024693 +0.00330234 0.0626197 -0.0330565 +-0.00750217 0.0787518 0.0577101 +-0.043485 0.109867 0.0381531 +0.000280959 0.0655552 -0.0344559 +0.0303619 0.0982175 -0.0159971 +-0.0671228 0.150867 0.0375155 +-0.0251523 0.0635221 0.0411049 +-0.0732036 0.147141 -0.0198634 +-0.0403541 0.121097 -0.0120881 +0.0144177 0.0388354 -0.0218485 +-0.0912331 0.114706 0.0382141 +0.0261502 0.120654 0.0264581 +-0.0131682 0.0974746 0.0509922 +-0.0718669 0.115007 -0.00776782 +0.0425779 0.0929869 -0.00379718 +-0.0228308 0.0881946 -0.0369029 +-0.00860718 0.0361712 0.0494902 +-0.0685057 0.159542 -0.0539539 +-0.0864902 0.103559 0.00540359 +-0.0697818 0.16064 -0.00887941 +-0.05157 0.0657725 0.0357523 +0.036411 0.0430004 -0.00393346 +-0.0617308 0.0752409 -0.0175405 +-0.0384866 0.112537 0.0353486 +0.0446565 0.076299 -0.00080692 +-0.0444716 0.165339 -0.00887164 +0.0234256 0.0994865 0.0445818 +0.0411691 0.0899632 0.029736 +-0.0188353 0.12777 0.00853266 +-0.079023 0.172207 -0.0429929 +-0.0509196 0.141445 0.00173554 +-0.013506 0.0486161 0.0481837 +0.0193259 0.0665212 -0.0284749 +-0.0472913 0.128011 -0.00322004 +-0.0626481 0.167836 -0.0465871 +-0.0304696 0.0875178 0.0438182 +-0.0917743 0.120197 0.0434965 +-0.0648107 0.0617811 0.00082735 +0.000497836 0.114196 0.0414191 +0.0574118 0.0647963 0.00219725 +-0.0558676 0.0941545 -0.0217392 +-0.0336084 0.073768 -0.0234794 +0.00599322 0.131555 0.0161709 +0.00890036 0.0630937 0.0549611 +-0.062689 0.110949 0.0372761 +0.000505603 0.092515 0.0555251 +0.0223468 0.121292 -0.00473526 +-0.0486224 0.0562169 -0.0104362 +-0.00349838 0.0938964 0.0554871 +-0.0444734 0.111133 -0.0175908 +-0.0110869 0.111309 -0.0199045 +-0.0706182 0.161097 -0.00919138 +-0.0852334 0.0992128 0.0278144 +-0.0739196 0.15466 0.0290556 +0.0296062 0.0693912 -0.0207509 +-0.0310679 0.0435994 -0.0290446 +-0.0381696 0.0351458 0.0102677 +0.0601731 0.0664558 0.0181654 +-0.0779755 0.159708 -0.0199256 +-0.0656034 0.0619186 0.0220381 +-0.0875197 0.139142 0.00819442 +0.057949 0.0523838 0.0161799 +-0.0789979 0.165257 -0.0319521 +-0.0651299 0.139658 0.0409855 +-0.021445 0.0539977 0.0453008 +-0.0896519 0.136557 0.0371913 +-0.0534965 0.0890047 0.0449968 +-0.0534319 0.15708 0.0101259 +-0.0328837 0.0835575 -0.0275315 +-0.0164672 0.0659336 0.0534892 +-0.0354329 0.0383545 -0.00847377 +-0.0708675 0.102264 -0.0137609 +-0.023563 0.126621 0.00971624 +0.0103735 0.0460953 0.0463477 +-0.0660593 0.179544 -0.0550745 +-0.0527874 0.0854974 -0.0215293 +-0.0859388 0.0819759 0.019473 +0.0105508 0.12954 0.0235608 +-0.0103855 0.174149 -0.0227989 +-0.0669072 0.0448192 0.00702222 +-0.0284871 0.0932302 -0.0255941 +-0.0674877 0.041922 -0.00126982 +-0.0650925 0.142629 -0.00933509 +0.0420248 0.0845075 -0.00777453 +-0.0790747 0.0713835 0.0198308 +-0.0261077 0.0372445 -0.0185929 +-0.0370217 0.0410946 -0.0286549 +-0.0635554 0.166233 -0.0355972 +-0.0218769 0.105849 -0.0224625 +-0.0880158 0.125695 0.0466833 +-0.0621699 0.128298 0.0417254 +-0.0849635 0.115612 0.0476218 +-0.0132844 0.180127 -0.0228495 +-0.0282267 0.181005 -0.00798034 +-0.0312929 0.0665317 -0.0234435 +0.0182349 0.0355117 -0.0116753 +0.0151438 0.128336 0.0223847 +-0.0440686 0.0364096 0.0444754 +0.00518099 0.090879 -0.0329112 +-0.00712692 0.130239 0.0200248 +-0.00350074 0.0760658 0.0587997 +0.0285239 0.105924 -0.0141978 +-0.0560757 0.0486306 0.0102324 +-0.0647346 0.0751547 -0.0168067 +-0.0681413 0.163425 -0.0155251 +-0.0632877 0.151202 -0.0295741 +-0.0467953 0.0573798 0.0374139 +-0.0434795 0.10013 0.0422114 +0.0285718 0.0898068 -0.0210622 +0.0330592 0.116487 0.0176444 +-0.0241054 0.0348343 0.0490127 +-0.0124791 0.0354015 -0.0179384 +0.0405961 0.0624185 0.0297312 +-0.081387 0.11145 0.0446717 +0.00150869 0.0675259 0.0561223 +0.00629906 0.0381702 -0.0111411 +-0.0201579 0.171232 -0.0211109 +-0.0418025 0.1163 -0.0150397 +0.00651017 0.0786147 0.0558016 +-0.0940189 0.11877 0.0172997 +-0.0685972 0.0635876 0.000162346 +-0.0328398 0.0722904 -0.0244709 +-0.0455312 0.131052 0.00748081 +-0.023441 0.181825 -0.0105699 +0.0108694 0.130662 0.0179509 +0.0123886 0.0463398 -0.0252064 +-0.0652697 0.118619 0.0495916 +0.00206776 0.0348089 0.0386094 +-0.0298407 0.0705727 -0.0304857 +-0.0632339 0.164684 -0.0315914 +0.0353918 0.0491057 -0.00653987 +-0.0392946 0.123101 -0.0101877 +-0.0885378 0.137788 0.0102157 +-0.0234958 0.100256 0.0443804 +0.04037 0.0460545 -0.00454494 +-0.016752 0.0336597 -0.0246752 +0.0413281 0.0697537 0.029756 +-0.077268 0.161738 -0.0185704 +0.00995573 0.0897855 -0.0311748 +-0.0494127 0.0345257 0.0351696 +-0.00258654 0.0376582 -0.0251248 +-0.0538672 0.149311 0.025406 +0.0281029 0.0968693 0.0425418 +-0.0296256 0.0384042 -0.00919904 +-0.0659714 0.070335 0.0357803 +-0.0792849 0.109686 0.041215 +-0.0609581 0.142927 -0.00458074 +-0.064489 0.16418 -0.0242498 +-0.0585553 0.060477 0.023496 +-0.0851998 0.104954 0.024348 +0.0164098 0.126062 -0.00187701 +0.0235925 0.125057 0.0140956 +-0.00865281 0.123002 -0.0103525 +-0.0132305 0.174198 -0.0268981 +-0.0453894 0.130637 0.0193744 +0.0162761 0.0694793 -0.03005 +-0.0894525 0.128349 0.0437622 +-0.0562473 0.0708294 0.0392023 +0.0180456 0.044911 0.0433906 +-0.0626788 0.119898 0.0446407 +-0.0206698 0.116197 -0.0150314 +0.051506 0.0461707 0.0202521 +-0.0541367 0.13422 -0.00388726 +0.0303748 0.106409 -0.0127112 +0.0453408 0.0805541 0.00120995 +-0.00350137 0.0788045 0.0582113 +-0.052917 0.144693 0.0213981 +-0.0810085 0.136808 -0.00286908 +0.0435987 0.0482711 0.0311843 +-0.00549934 0.085642 0.0570911 +-0.0414264 0.125093 -0.00826982 +-0.0534716 0.0490986 0.0276613 +-0.0833044 0.10329 0.0285866 +-0.0394866 0.111153 0.0363447 +0.00954728 0.0389439 0.0451085 +-0.035694 0.0666325 -0.0153314 +-0.0301817 0.12316 -0.0042413 +-0.0383432 0.127011 0.0175779 +-0.0603252 0.0707596 0.0383929 +-0.0249438 0.0380891 0.0543244 +0.0144999 0.10985 0.0401157 +-0.0387789 0.0392857 0.0427431 +-0.0390181 0.126516 -0.0038056 +-0.0628844 0.116571 -0.0108779 +-0.0718222 0.0666154 0.0237319 +-0.0176233 0.0640054 0.0519373 +-0.0878362 0.112676 0.0422322 +-0.0661452 0.115702 0.0482687 +-0.0464951 0.116619 0.0318843 +-0.0501411 0.130626 -0.00198394 +-0.0497482 0.0767922 -0.0184367 +-0.0234881 0.0462034 0.0522022 +-0.0739006 0.162422 -0.0359639 +-0.0262017 0.0878115 0.0498853 +-0.0133444 0.0389099 -0.0138542 +0.040243 0.0970923 -0.00582991 +-0.011153 0.129981 0.0142184 +0.0309714 0.035145 0.0133989 +-0.0426252 0.0534503 -0.0112074 +-0.0538286 0.0338166 -0.0117099 +-0.0622047 0.0394245 0.0433885 +-0.0746849 0.14995 -0.0294029 +-0.0611865 0.0441212 -0.00432669 +-0.0182092 0.177147 -0.0243125 +0.0435018 0.0542009 0.0324922 +0.0364352 0.0371002 0.0145635 +-0.0321091 0.03378 0.0163326 +-0.0627516 0.145959 -0.00957815 +-0.0054968 0.061946 0.0559894 +-0.0738575 0.159643 -0.0319319 +-0.0640268 0.154208 0.0310565 +-0.0679826 0.0819454 0.0421862 +-0.0571357 0.158766 0.00595884 +0.0416081 0.101418 0.000182195 +-0.0235633 0.0565791 0.042552 +-0.0707052 0.0656331 -0.000502385 +0.0151645 0.126939 0.0266898 +0.0319146 0.0808971 0.042698 +0.0591439 0.0594194 0.00516163 +-0.0517306 0.164095 4.31123e-05 +-0.0802487 0.109228 0.032428 +-0.0124889 0.0964872 0.0522501 +0.0122905 0.06666 -0.0305971 +-0.00890819 0.0389895 -0.0111716 +-0.0414812 0.0634467 0.0412468 +0.0440882 0.090317 0.0231627 +-0.048759 0.14421 0.00252118 +-0.0240109 0.113853 -0.0165323 +-0.0863077 0.083293 0.0084931 +-0.0848578 0.117602 -0.00112226 +-0.0758939 0.107753 -0.00831552 +-0.0240922 0.0551393 0.0417051 +-0.048723 0.134043 0.0239744 +-0.075211 0.159631 -0.0279486 +-0.0458972 0.108476 -0.0187253 +-0.0827664 0.0789303 0.000509537 +-0.0413647 0.150284 -0.00509832 +0.00543597 0.131652 0.0145423 +-0.0567655 0.0797174 -0.020408 +-0.0314842 0.0875139 0.0436743 +-0.0272508 0.169746 -0.00972716 +-0.055503 0.0918468 0.0452512 +-0.0250407 0.11597 -0.0147569 +-0.0757456 0.155966 0.0196325 +0.0124869 0.0936385 0.0515089 +-0.0205861 0.122762 0.0284276 +-0.0807235 0.116228 0.0481624 +0.0260285 0.0450625 -0.0106845 +-0.0593728 0.0579489 0.0125735 +-0.049763 0.132774 0.0280532 +-0.0486523 0.128248 0.029602 +-0.0786364 0.0880738 -0.010561 +-0.0292743 0.157003 -0.0105584 +-0.0728269 0.0950692 -0.0149677 +-0.0571361 0.0333705 -0.00647115 +0.00471531 0.10507 -0.02128 +-0.0617504 0.158434 -0.0225881 +-0.044324 0.0573856 0.0392571 +-0.0231291 0.0608213 0.0434196 +-0.0736852 0.109489 0.0408578 +-0.0434867 0.102921 0.0416521 +-0.0745585 0.102629 0.0369846 +-0.00580621 0.0826794 -0.0377615 +-0.0293232 0.155967 -0.00892475 +-0.0785045 0.111148 0.0455755 +-0.0789041 0.126621 -0.00628203 +0.0387126 0.0984064 -0.00782785 +-0.00546749 0.0386155 0.00470576 +-0.00150095 0.0925253 0.0558525 +-0.0200678 0.0384268 0.0272406 +-0.0900294 0.114549 0.0240977 +-0.0775366 0.070359 0.00451989 +-0.0719896 0.139908 -0.00735583 +-0.0574975 0.0987515 0.0429871 +-0.0321271 0.107425 -0.0197503 +0.0188647 0.126347 0.0223312 +0.00641604 0.0962346 -0.0278978 +0.00311817 0.108714 -0.0201476 +-0.0160251 0.0375717 -0.0270066 +-0.0497158 0.140127 0.00540861 +-0.0603383 0.155998 0.00765284 +-0.0315045 0.100214 0.0434156 +-0.0865647 0.0978132 0.0263535 +0.030619 0.119354 0.0124235 +-0.0618449 0.153748 -0.0225793 +0.0357348 0.111877 0.0229152 +-0.0825172 0.108952 0.0273498 +-0.06497 0.156112 0.0234152 +-0.0141713 0.0391912 0.0511685 +0.0418096 0.0482673 0.0320498 +0.0293522 0.0768437 0.0442363 +-0.00664275 0.113752 -0.0185066 +-0.0339572 0.173519 -0.0141904 +-0.0868865 0.136539 0.0438118 +-0.0358508 0.0350331 0.0126434 +-0.0538363 0.0491492 0.0306601 +-0.0555251 0.040203 -0.0098178 +0.00654381 0.0340863 -0.0167284 +0.00392426 0.0984839 -0.0242888 +-0.0798351 0.078638 0.0310296 +-0.0520723 0.122646 0.0352105 +-0.0550812 0.153793 0.0226168 +0.014566 0.128157 0.000776346 +-0.0875094 0.103632 0.00838188 +0.0565843 0.0508466 0.00719292 +-0.0301736 0.0353405 0.0506988 +-0.054126 0.0491389 0.0369634 +-0.0213227 0.0927441 -0.0344661 +-0.0512299 0.133896 0.029412 +-0.0175551 0.0668893 0.0531861 +-0.0306537 0.125522 0.0174226 +0.00435638 0.0524337 -0.0297062 +-0.030037 0.0383331 -1.37538e-05 +-0.0748829 0.104948 -0.0102086 +0.0281452 0.12091 0.0214948 +-0.00129242 0.0339647 -0.0219341 +-0.0193753 0.114664 -0.0174341 +-0.0226586 0.185005 -0.0161016 +0.0333802 0.116202 0.0163348 +-0.0182505 0.0920203 0.0545129 +0.0291993 0.0821983 0.0440432 +0.040955 0.104188 0.00218636 +-0.0221399 0.16826 -0.0191908 +-0.0160775 0.128732 0.0124337 +-0.0494959 0.115246 0.0337414 +-0.0623926 0.155248 -0.0336012 +-0.0504873 0.0646576 0.0351978 +-0.0738463 0.114952 -0.00659368 +-0.0195012 0.0351765 0.0514244 +-0.0448823 0.107056 -0.0197924 +-0.0768765 0.119334 -0.00688293 +0.0107885 0.0345143 -0.0106366 +0.024237 0.0727429 0.0473317 +-0.00865103 0.0511695 -0.0319029 +-0.0877012 0.0963902 0.0247068 +-0.0518399 0.0559545 0.028629 +-0.00150749 0.0442279 0.0463824 +-0.066685 0.0361231 0.0351414 +-0.0298413 0.0511486 0.0404908 +-0.0104881 0.125079 0.0309157 +-0.0478366 0.0336224 0.000642732 +-0.0567073 0.152073 0.0307854 +-0.0772744 0.177812 -0.051035 +-0.0147745 0.0770701 -0.0384436 +-0.0929915 0.122891 0.0372721 +-0.0104786 0.116885 0.0389916 +0.0382147 0.0603208 -0.00873991 +-0.0754893 0.145614 0.0436847 +-0.0484504 0.134772 0.0211152 +0.013378 0.056283 0.0508299 +-0.00197361 0.0339973 -0.0202101 +0.0414332 0.100023 0.0231582 +0.0306311 0.076191 -0.0209647 +-0.0663516 0.155012 0.0287678 +-0.0710496 0.158811 -0.00499394 +-0.0554619 0.115432 0.0354757 +-0.0357408 0.0754574 -0.0191515 +0.000523827 0.0787529 0.057707 +-0.0189564 0.187079 -0.0195498 +-0.0849859 0.149949 0.0316738 +-0.0578691 0.0427244 -0.00751381 +-0.0739068 0.123785 -0.00803832 +-0.0355104 0.105608 0.0391036 +-0.0437169 0.0336921 -0.00956971 +0.0503986 0.0446075 0.0172106 +0.028338 0.0371627 0.023798 +-0.0835031 0.123045 0.0493423 +-0.051023 0.051637 0.0206282 +0.00799809 0.131294 0.0169006 +-0.0154642 0.0617228 0.0531313 +-0.0548148 0.0898539 -0.0222515 +0.0183688 0.0727072 0.0511848 +-0.0528816 0.143158 0.0234068 +0.0423208 0.0885482 0.027912 +-0.0489879 0.148715 -0.00337283 +0.0536516 0.0710277 0.00477709 +-0.0558317 0.154614 0.0193814 +-0.078074 0.0921324 -0.0116061 +-0.0138482 0.126055 -0.00351425 +-0.0484951 0.107035 0.0396855 +-0.0617568 0.113454 -0.0138737 +-0.0539631 0.0449066 0.021682 +-0.0323187 0.0763806 -0.0295323 +0.0441984 0.0917353 0.0221589 +-0.0830674 0.136771 -0.000769185 +-0.0741071 0.154101 -0.0239055 +-0.0686886 0.176906 -0.0487674 +-0.0561408 0.0460708 0.0131999 +-0.0685022 0.101419 0.0404594 +-0.0739688 0.0653923 0.0119616 +0.001175 0.0909253 -0.0339059 +0.0263146 0.0782009 0.0468843 +0.00192116 0.123969 -0.00948312 +-0.0587405 0.0737726 -0.0173801 +-0.0627949 0.167828 -0.0455908 +-0.0508006 0.0883889 -0.0215985 +-0.0481052 0.0559539 0.0359192 +0.0442623 0.0959503 0.0151546 +-0.0608758 0.0968112 -0.0186271 +-0.0345924 0.0485568 0.0396695 +-0.0618805 0.102572 -0.018381 +0.024797 0.0615121 -0.0241542 +0.0398079 0.0440192 0.0290809 +-0.0138249 0.0869198 -0.0385386 +-0.00950254 0.0801627 0.0580817 +-0.0893667 0.135016 0.00621309 +-0.0210328 0.0946153 0.0501685 +0.0124741 0.0347469 0.026362 +-0.0837947 0.100615 0.0291484 +-0.0677074 0.147127 -0.0273126 +-0.080936 0.0720826 0.0105433 +-0.0486367 0.0591511 -0.0114572 +-0.0856634 0.1104 0.0223511 +-0.0321401 0.16671 -0.0160336 +-0.0724955 0.174948 -0.0415233 +-0.0260317 0.0348457 -0.0200988 +-0.0274922 0.0497667 0.0454723 +-0.0394917 0.0534182 0.0393765 +0.0515114 0.0691441 0.0252354 +-0.0257438 0.12256 -0.00564443 +0.0437634 0.0832354 -0.00281017 +-0.0247629 0.0727034 -0.0370836 +-0.0655551 0.156269 0.0188465 +-0.0629848 0.136718 0.0370028 +0.0602499 0.0678328 0.0161531 +-0.0168173 0.0841632 -0.0392397 +-0.0683543 0.152019 -0.0462463 +-0.0567286 0.155485 0.0133042 +-0.0124895 0.119639 0.0367572 +-0.0620219 0.161552 -0.0385959 +-0.0485081 0.0504118 0.037253 +-0.0681426 0.159579 -0.055037 +-0.0339899 0.0738027 -0.0224777 +0.0187727 0.038419 -0.0166964 +-0.00951396 0.0647096 0.055646 +0.0373151 0.0659642 0.0362985 +-0.0697681 0.156742 -0.0499137 +-0.07512 0.161006 -0.0309706 +0.0445653 0.094573 0.0151616 +-0.0642545 0.154418 -0.039754 +0.0245051 0.108393 0.0385583 +-0.0423597 0.0337264 -0.0019814 +0.0111186 0.130773 0.0109156 +-0.0366056 0.0484481 -0.0142844 +-0.00762999 0.0387797 -0.0144679 +-0.0695561 0.0340783 0.00839793 +-0.0566909 0.0334951 0.00618234 +-0.0565711 0.159859 0.00306588 +0.000399482 0.0419381 -0.024642 +-0.0505546 0.0490872 0.0373101 +-0.0513639 0.0402537 0.0462611 +-0.0256858 0.0575487 -0.0293997 +-0.0524956 0.0890116 0.0451123 +0.044036 0.0973464 0.00517085 +-0.0774531 0.156901 -0.0199195 +0.0267966 0.0534918 0.0403155 +-0.0887231 0.0888754 0.0204484 +0.014348 0.0534071 0.0486823 +-0.0495075 0.0490436 0.0377607 +-0.0321324 0.154142 -0.000565596 +-0.0856354 0.143297 0.0395519 +-0.0344784 0.0932112 0.0445123 +-0.0688653 0.0860793 0.0429202 +-0.068567 0.167578 -0.0243154 +-0.0155024 0.084237 0.0568519 +-0.0768438 0.0975378 -0.0115852 +-0.054418 0.142404 0.0282888 +-0.00749562 0.091199 0.0567536 +0.0202715 0.077733 -0.0270961 +-0.0748613 0.102114 -0.0115761 +-0.0102609 0.0389601 -0.0132864 +-0.060805 0.0953608 -0.018741 +-0.0557308 0.0738305 -0.0174435 +-0.0789903 0.0900056 0.0359819 +0.0427074 0.0831548 -0.00579292 +-0.00549246 0.097843 0.0523265 +0.046038 0.0679968 0.0252834 +-0.0235521 0.116765 0.0343279 +0.0302394 0.0759037 -0.0212804 +-0.0212883 0.0638258 0.0471454 +0.0285217 0.0480557 -0.0127278 +-0.0326422 0.080708 -0.0295257 +-0.0545922 0.126915 0.0368606 +-0.07894 0.12954 -0.00577029 +-0.0871517 0.0874756 0.0234341 +0.0457525 0.0862068 0.0131643 +-0.0636848 0.163906 -0.0268361 +-0.01113 0.175691 -0.0290055 +-0.0644352 0.0424097 0.0302481 +0.00751322 0.0883379 0.0556646 +0.0450791 0.0411084 0.0144119 +-0.0801842 0.0990978 -0.00757647 +0.00942317 0.0752723 0.0558271 +-0.0720162 0.169175 -0.0255925 +-0.0706469 0.0749114 -0.0128891 +-0.0231537 0.124452 0.0216177 +-0.0354775 0.0932002 0.0444179 +-0.0467494 0.0782878 -0.0191673 +0.0402616 0.088708 0.0319407 +-0.0668021 0.0909191 -0.0174744 +-0.0798777 0.0922401 -0.00961163 +-0.00990791 0.168128 -0.0187599 +-0.0538472 0.144686 0.025416 +-0.0506923 0.0693793 -0.0143111 +-0.0628457 0.158366 -0.0406006 +-0.0472527 0.147738 0.00869118 +-0.0798492 0.140347 -0.0037915 +-0.0633595 0.155022 0.00583483 +0.0194938 0.0948135 0.0473832 +-0.0235952 0.03653 -0.0288249 +-0.0625329 0.155555 0.0257427 +-0.0293056 0.125075 0.00323421 +-0.0848075 0.100731 -0.000569426 +0.0362036 0.112389 0.0159326 +0.0148576 0.0726711 0.0531263 +-0.0648898 0.0353536 0.0257632 +-0.0225355 0.115413 0.0360839 +0.0344395 0.062733 -0.0148459 +-0.0404982 0.0548597 0.0396645 +0.0241838 0.0363666 0.0254891 +0.0185331 0.065881 0.0495848 +0.0124938 0.0589954 0.0513278 +0.00977817 0.131153 0.0118468 +0.0100829 0.0519948 0.0512903 +-0.0361503 0.127316 0.0154104 +-0.0482545 0.05323 0.0361705 +-0.0940988 0.124142 0.016266 +-0.0100812 0.168118 -0.0236136 +-0.00900002 0.1303 0.0121232 +0.044368 0.0832642 0.000211132 +-0.0417803 0.126317 0.0192991 +-0.0875576 0.0954908 0.0044419 +-0.0679508 0.168029 -0.055011 +-0.0131452 0.0346678 0.0462791 +0.00685606 0.0990064 -0.0228407 +0.0328304 0.0354201 0.0116657 +0.0278048 0.121695 0.017093 +0.0445188 0.0721805 0.0237826 +-0.0754994 0.115715 0.0515239 +-0.0115085 0.0815323 0.0578355 +-0.0530625 0.0625594 0.0307632 +-0.0510483 0.053037 0.0206135 +-0.0505791 0.0488657 -0.00826795 +-0.0426076 0.0338549 0.0069173 +0.0392521 0.0940728 0.0323259 +-0.0394892 0.0846821 0.0435801 +-0.0451321 0.0560164 0.0386443 +-0.00431394 0.0929621 -0.0345661 +-0.0559672 0.149602 0.0296453 +-0.0635672 0.159894 -0.0552656 +-0.0854828 0.0924603 0.0282645 +-0.000403311 0.102922 0.0441774 +-0.0728513 0.077742 0.0372898 +-0.0264927 0.0850795 0.0502634 +0.00748229 0.118415 -0.0155852 +-0.0301257 0.165235 -0.016018 +-0.00266679 0.0554838 -0.0324138 +0.0588141 0.0660698 0.0217199 +-0.0227042 0.0651451 0.0456598 +-0.0254758 0.0447668 0.0519525 +-0.0221249 0.165275 -0.017299 +-0.0673863 0.146352 -0.0244353 +0.0358297 0.112651 0.00431137 +-0.0600953 0.0345101 0.0398512 +-0.0315135 0.112545 0.0354646 +-0.0495533 0.0335732 0.00214603 +0.00748118 0.122397 -0.0118721 +-0.017033 0.0949215 -0.0326512 +-0.0465027 0.162256 0.00645028 +-0.0377072 0.0695284 -0.0160926 +0.0515389 0.0638758 -0.00198972 +-0.0406583 0.0577787 -0.0115563 +-0.078333 0.108337 0.035368 +-0.00970184 0.120973 -0.0121849 +0.0223756 0.0822421 0.0500191 +-0.0598969 0.0982824 -0.0189251 +-0.000418527 0.128183 0.0282442 +0.0398162 0.107019 0.0141667 +-0.0275139 0.118013 0.031246 +-0.0270215 0.0563432 0.0375362 +0.0105198 0.130786 0.00926843 +0.00339772 0.0418993 -0.0241367 +-0.0275013 0.113896 0.0350206 +0.0202412 0.0763232 -0.0271232 +-0.0919625 0.126955 0.0342506 +-0.0433008 0.0345877 0.0364134 +0.0433553 0.0860087 -0.00480358 +0.0208045 0.119446 -0.00872458 +-0.0930264 0.120177 0.0342925 +-0.0379377 0.157973 0.00463177 +-0.0253167 0.177183 -0.0103739 +-0.0366224 0.0519804 -0.0105023 +-0.0707047 0.079127 0.0393559 +-0.0260772 0.0606359 0.0392914 +-0.0238556 0.126292 0.00669874 +0.00550694 0.0561304 0.0532033 +-0.0537237 0.147766 0.0244131 +-0.0691531 0.167331 -0.0231015 +-0.0596786 0.0738084 0.0412039 +0.0326792 0.103442 0.0351236 +-0.0614661 0.174127 -0.0585981 +-0.0717687 0.0836085 -0.0162896 +-0.0457927 0.0869975 -0.0219586 +0.0105224 0.0990052 0.0483243 +-0.0829648 0.129479 -0.00406234 +-0.0356761 0.0343506 0.0364799 +-0.0884531 0.0888833 0.0214341 +-0.0627252 0.0416196 0.0257026 +-0.0564562 0.159872 0.00406757 +-0.0891671 0.0942549 0.0124334 +0.00850148 0.0561026 0.0528172 +-0.0897269 0.113038 0.0361809 +0.0510319 0.0481609 0.0243415 +-0.0355318 0.0341909 0.0278174 +0.0439268 0.0945301 0.0211547 +-0.0579061 0.0357757 0.046064 +-0.0154366 0.0383652 0.00473292 +-0.0175221 0.187321 -0.0198494 +-0.00549946 0.0842482 0.0569765 +0.0601999 0.0678503 0.0111396 +0.0144807 0.0658974 0.0525165 +0.0293268 0.0963357 -0.0179631 +-0.0397817 0.126122 -0.00537397 +0.0345713 0.109241 -0.00571538 +0.0142478 0.0846938 0.0523116 +-0.00151223 0.107257 0.0435513 +-0.0568094 0.0336832 0.0202688 +-0.00449913 0.108643 0.0435023 +0.0366018 0.0989128 -0.0107075 +-0.0520805 0.0552272 0.0244826 +-0.0564227 0.125779 -0.00685719 +-0.045508 0.0519257 0.0382686 +0.0321211 0.116144 0.000111339 +-0.0560271 0.142758 -0.00201441 +-0.0204991 0.12085 0.0318342 +-0.0572069 0.155002 0.0203881 +-0.0683862 0.0434928 0.00469407 +-0.0749362 0.167415 -0.0237916 +0.00950453 0.0758273 0.0557308 +0.0134626 0.0962698 0.0490469 +-0.0352581 0.0336435 0.0104036 +0.0033475 0.0524625 -0.0299019 +-0.0200406 0.0417644 0.0532372 +-0.020634 0.03806 0.0202475 +-0.0354822 0.0590569 0.0395591 +-0.0633421 0.145588 -0.0131138 +0.0560276 0.0714782 0.0201554 +-0.034079 0.157748 -0.0116645 +0.0430592 0.0871926 0.0271788 +-0.067061 0.0617728 0.0200983 +0.0054202 0.0385344 -0.0060218 +-0.0562382 0.115455 0.0360976 +0.0318915 0.0727133 0.0408308 +0.00701986 0.131464 0.0165435 +-0.00758439 0.038449 0.00988421 +-0.0401838 0.128459 0.00507702 +0.0467715 0.0482711 0.0287479 +-0.0918049 0.126804 0.00826817 +-0.0821184 0.0782385 0.0256306 +-0.0812562 0.103354 0.0307723 +-0.0639536 0.144435 -0.0123561 +-0.0108662 0.129871 0.00999779 +0.0155048 0.112635 0.0385412 +0.0182534 0.0792348 -0.0283217 +-0.0893331 0.0983151 0.0114073 +-0.00325216 0.0396403 0.0476826 +-0.0241255 0.089259 0.0519927 +-0.0858632 0.106258 0.00536057 +0.00408474 0.0346021 -0.0158016 +-0.0407936 0.0869784 -0.0214607 +-0.0166484 0.0480949 -0.029815 +-0.0157153 0.0613848 -0.0360938 +-0.0566239 0.0482507 0.0375737 +-0.0424946 0.0619914 0.040787 +-0.0676789 0.0735575 -0.0139417 +-0.00550026 0.0815011 0.0573318 +-0.0466697 0.166955 -0.00590454 +0.050335 0.0531616 -0.00370253 +-0.075448 0.162419 -0.0329687 +-0.0614914 0.089051 0.0454546 +-0.0467107 0.0709021 -0.0159388 +0.0485116 0.0611011 0.0306918 +0.0308141 0.0862286 0.0429136 +0.041033 0.0788113 -0.0077656 +-0.0332536 0.0434286 -0.0288825 +-0.0599631 0.0455474 0.028679 +-0.0106693 0.0383927 0.00930564 +0.00450171 0.04895 0.0512539 +-0.0567297 0.0738308 -0.0175741 +-0.0395016 0.128216 0.0127148 +-0.0236465 0.18441 -0.0150532 +-0.0541007 0.0517729 -0.00535724 +-0.00963566 0.0383633 0.0204127 +-0.072501 0.11898 0.053434 +-0.072483 0.0356257 0.00284128 +-0.0164962 0.0815146 0.0575151 +0.0321311 0.10568 -0.0119259 +-0.0628015 0.0867155 -0.0190743 +-0.0747157 0.155426 0.0258403 +-0.0655092 0.0986926 0.0420188 +-0.0621042 0.153787 0.0317461 +0.0075074 0.0702645 0.0557506 +-0.0873725 0.140519 0.00919988 +-0.0816979 0.073476 0.0105355 +-0.0251078 0.125921 0.00624226 +0.0143125 0.129601 0.0135477 +0.0537172 0.0701657 0.00367339 +-0.0658178 0.165764 -0.0247368 +-0.0706171 0.164859 -0.0164358 +-0.0268181 0.0385613 -0.0106363 +-0.0308492 0.121938 -0.00695618 +-0.0240991 0.0708914 0.0469009 +0.00836584 0.0509624 -0.0290525 +0.0146552 0.0361528 0.0436042 +-0.0759244 0.155422 0.00936737 +0.00291872 0.0383891 0.0247663 +-0.0483005 0.12541 0.0300666 +0.00749081 0.093253 -0.0307631 +-0.0441374 0.160646 -0.00957119 +-0.0454954 0.0945383 0.0433792 +0.0153865 0.0350801 0.00287497 +-0.0507565 0.078263 -0.0192091 +-0.014682 0.0540945 -0.0332776 +-0.0697195 0.0625059 0.018914 +-0.0850789 0.151288 0.0289026 +0.000998881 0.131517 0.0100563 +-0.0866192 0.111201 0.0383037 +-0.0257526 0.069725 -0.0351721 +-0.0832913 0.0938266 -0.00556456 +-0.00149798 0.121047 0.037107 +-0.0164922 0.103019 0.043564 +-0.00175716 0.0797524 -0.0362245 +-0.065193 0.165273 -0.0595568 +-0.00746087 0.0391472 0.0345828 +-0.0384976 0.0790115 0.0428361 +-0.00149834 0.095227 0.054625 +-0.00277478 0.078376 -0.0365291 +-0.0780329 0.155476 0.0217657 +-0.0632159 0.147647 -0.016402 +-0.0801569 0.0817921 0.0331577 +-0.0500022 0.16408 -0.00389251 +-0.0747874 0.0892505 -0.0147771 +-0.00949475 0.122405 0.0348735 +-0.0322196 0.0423712 0.0501883 +-0.00876131 0.174216 -0.0276966 +-0.0545091 0.161256 6.9518e-05 +0.0181832 0.102054 0.0457705 +-0.0604933 0.102915 0.04183 +0.0437773 0.0804492 0.0262342 +0.0388648 0.0842467 -0.0137667 +-0.00550336 0.0647558 0.0562438 +-0.0929299 0.122874 0.0352771 +-0.043447 0.0338958 0.0281851 +-0.0649274 0.155826 -0.0455264 +-0.00117719 0.0381217 -0.0144579 +-0.0146742 0.180146 -0.0213737 +-0.0911602 0.113316 0.0133388 +0.0114933 0.0990667 0.0482243 +-0.030492 0.093206 0.0443051 +-0.00885946 0.13031 0.0150517 +-0.073851 0.0979023 -0.0138506 +0.00349864 0.0505127 0.0525247 +0.0579498 0.0621469 0.0239372 +-0.0266127 0.121438 0.026306 +-0.0640364 0.138454 -0.00746704 +-0.0881537 0.0875035 0.020457 +-0.0693202 0.16097 -0.0509443 +-0.0258632 0.0384431 -0.0103374 +-0.0445084 0.162276 0.00597583 +0.002127 0.0994865 0.0488443 +-0.00523434 0.128086 0.0279795 +0.0441694 0.0706598 0.0245614 +0.00913312 0.10443 -0.020596 +-0.00849151 0.104452 0.0437135 +-0.0709552 0.134052 -0.00817596 +0.040546 0.0860518 0.0323351 +0.026933 0.109961 -0.012516 +0.0171797 0.119654 -0.0109592 +-0.0154871 0.10859 0.0421893 +-0.0544999 0.0945829 0.0441089 +-0.0942376 0.122836 0.024283 +0.0145822 0.10067 -0.0225932 +0.0416553 0.0900846 -0.00877196 +-0.0627089 0.0722313 -0.0153832 +-0.0265055 0.0946665 0.044662 +-0.0241067 0.108647 -0.0210644 +-0.0475093 0.0504634 0.0377677 +-0.0271626 0.0836755 0.0495254 +-0.0707023 0.155807 0.00247134 +0.0113316 0.0343299 -0.00659923 +0.0271512 0.0740976 0.0445232 +-0.00214312 0.101026 -0.0230018 +-0.0518271 0.094161 -0.0217872 +-0.0685768 0.0699128 0.0338326 +-0.0538957 0.0344051 0.0325721 +-0.0280624 0.17271 -0.00913079 +-0.0710555 0.148357 -0.0346175 +-0.0392482 0.165334 0.00281642 +-0.0494961 0.159354 0.00844009 +-0.0887346 0.0956375 0.0224045 +-0.0856504 0.126624 -0.00269798 +-0.0486707 0.147744 0.0101492 +-0.0735613 0.16372 -0.0149978 +0.0180716 0.0350245 0.0344937 +-0.0307362 0.053835 -0.015374 +-0.0887393 0.0928617 0.00944255 +-0.016725 0.0627999 -0.0362248 +-0.0190611 0.063953 0.0505398 +-0.0441816 0.0346721 0.0413945 +-0.0593157 0.126918 0.0405689 +-0.0111259 0.174182 -0.0282833 +-0.0436679 0.0621935 -0.0131864 +0.0275209 0.088828 -0.0220264 +-0.0297851 0.0890261 -0.0295849 +-0.0303849 0.154168 -0.00247422 +-0.0425281 0.128954 0.00568377 +0.0162787 0.126801 -0.0006607 +-0.0727179 0.0806647 -0.0147187 +-0.0753424 0.0928083 0.039305 +-0.0798316 0.111318 -0.00180655 +0.0192462 0.0346832 0.00400718 +-0.088108 0.129743 0.0452172 +-0.0103013 0.038437 0.0111565 +-0.0466082 0.166842 0.00289141 +-0.0459915 0.152139 0.00880917 +-0.02765 0.0504128 -0.0240838 +-0.00316977 0.101093 -0.0230747 +-0.081903 0.123614 -0.00465545 +0.0308134 0.104771 0.0359398 +-0.0649698 0.0444252 -0.000282601 +-0.0411724 0.128614 0.0047134 +-0.0566724 0.0661356 -0.00992741 +-0.0768027 0.1218 0.0526081 +0.0286707 0.0432432 0.0323583 +-0.0776442 0.112189 0.0467134 +-0.0599288 0.0595089 0.00385673 +-0.0751102 0.148577 -0.0168689 +-0.0422557 0.0435263 -0.021317 +-0.0109825 0.18157 -0.0273657 +0.0160657 0.128852 0.0141586 +0.0353395 0.113619 0.00703904 +-0.0746273 0.149901 -0.0298709 +-0.0108803 0.105927 -0.0227775 +-0.0134961 0.0472092 0.0480936 +0.0366578 0.0576635 0.0335112 +-0.019761 0.0984382 0.0445534 +-0.0662568 0.117183 0.0498756 +-0.0659606 0.17389 -0.0478108 +-0.0116079 0.0434695 -0.0263093 +-0.0926722 0.117507 0.0393006 +-0.0764843 0.145607 0.0435529 +-0.0467321 0.0337537 0.00617309 +-0.0558876 0.104087 -0.0189213 +-0.0920931 0.126941 0.031257 +-0.0204778 0.086949 0.0559493 +0.0205756 0.0550317 0.0471809 +0.0164894 0.10985 0.0397676 +-0.0639427 0.125311 -0.00880074 +-0.0233699 0.0380458 0.0160874 +0.00571651 0.037694 -0.0126956 +-0.0305064 0.059434 -0.0194047 +-0.0286182 0.0422955 -0.0294891 +-0.074262 0.155148 0.0274653 +-0.0780672 0.161102 -0.0219327 +-0.0710541 0.174778 -0.0424234 +-0.0641619 0.126957 0.0459503 +-0.0724375 0.0643068 0.0185598 +-0.0568864 0.106915 -0.0181412 +0.0293195 0.0995163 0.0407971 +-0.0644558 0.155894 0.01199 +0.00534877 0.131711 0.0116581 +-0.070964 0.169422 -0.0500317 +0.0101411 0.103018 -0.0207697 +0.0413802 0.0547717 -0.00646982 +-0.0385096 0.0776202 0.0427509 +-0.0239792 0.115969 -0.0147616 +-0.0225483 0.119525 0.0321637 +-0.060198 0.152175 0.0339452 +-0.0535114 0.0452153 0.0437642 +-0.0037319 0.0346421 0.0447442 +0.0102653 0.0944766 -0.0280245 +0.0270364 0.0347184 0.00926922 +-0.0660514 0.11246 0.0412419 +-0.0427238 0.072521 -0.0180673 +-0.057924 0.0453324 0.0266819 +0.0321473 0.0354374 0.0133726 +-0.0750002 0.0776536 0.0352037 +-0.0404922 0.11531 0.0337051 +-0.0201478 0.16826 -0.0196016 +-0.0263171 0.178663 -0.00829314 +0.0232364 0.0706221 -0.0263108 +-0.0228968 0.117028 -0.0138782 +-0.0477554 0.130992 0.0255865 +-0.05149 0.104281 0.0405196 +-0.00121687 0.120006 -0.0132177 +-0.0299396 0.0649723 -0.0274594 +-0.0187899 0.0784905 -0.0388371 +-0.0498267 0.109983 -0.0185775 +0.00334971 0.0510613 -0.029847 +0.0259096 0.0534724 0.0407837 +-0.0455367 0.111121 -0.0175743 +-0.0124237 0.0348026 0.0445556 +-0.0887181 0.123977 0.00228597 +-0.088156 0.151596 0.0228856 +-0.0530084 0.149326 0.0224058 +0.0191744 0.125775 0.0238749 +-0.0735068 0.118971 0.0531919 +-0.0585002 0.0987496 0.0428962 +-0.0310887 0.159271 -0.0130615 +0.000886159 0.12297 -0.0104051 +-0.0872227 0.0941086 0.00335062 +-0.0273424 0.0931435 -0.0275899 +0.0213306 0.126248 0.00896939 +0.0549036 0.0506667 0.00319831 +-0.0245658 0.115393 0.0346209 +-0.0908157 0.133668 0.01022 +0.011387 0.126452 0.0296316 +0.0342091 0.0430428 0.0288022 +-0.0759039 0.154928 -0.00089291 +-0.0834635 0.136224 -0.000676656 +-0.0242249 0.124407 -0.00155437 +-0.00949715 0.103034 0.0436292 +-0.0448632 0.102817 -0.0213129 +-0.0762912 0.162417 -0.0319674 +-0.087261 0.137734 0.00520439 +0.0359972 0.0915666 0.0381116 +0.0515419 0.0610093 0.0297195 +-0.0759846 0.168851 -0.0284951 +0.0192535 0.076364 -0.0276613 +0.00153258 0.130437 0.0231622 +-0.0552695 0.058846 -0.00542677 +-0.0478299 0.094184 -0.0219241 +0.0413096 0.0957202 -0.00478826 +0.00646546 0.131591 0.014917 +-0.0921802 0.132348 0.0172238 +-0.00096127 0.131397 0.0150615 +0.0373767 0.0519575 -0.00666499 +0.000499624 0.0661631 0.0564081 +-0.0624427 0.149095 -0.00857615 +-0.0158277 0.127263 0.00131837 +-0.0534778 0.0544994 -0.00645482 +-0.0393097 0.122071 -0.0111029 +-0.0552136 0.0346314 0.0441945 +-0.062546 0.0614527 -0.00215685 +0.0190515 0.0781917 0.0522129 +-0.00645816 0.122156 -0.0114796 +0.0547648 0.068691 0.024634 +-0.0165146 0.104417 0.0427511 +-0.0914381 0.133727 0.0162105 +-0.0621573 0.163143 -0.0375929 +-0.0927674 0.130992 0.0172311 +0.00308348 0.0981539 0.0507387 +0.0223728 0.0658814 0.0463438 +-0.039497 0.060614 0.0410267 +-0.0547684 0.0513541 0.0102674 +0.00252507 0.0561606 0.0537161 +-0.0427018 0.0681213 -0.0161497 +0.0102881 0.063916 -0.0312717 +-0.0443833 0.12939 0.00495951 +-0.0186027 0.160444 -0.0128213 +0.0371116 0.111176 0.0148387 +0.0282213 0.0875505 0.0444323 +-0.0274771 0.120676 0.0274866 +-0.0584936 0.0439589 0.0439647 +0.0240603 0.0822578 0.0489414 +0.0351443 0.071382 0.0384881 +-0.0164918 0.0897515 0.056205 +-0.0781864 0.161095 -0.0229348 +-0.0701455 0.111146 0.0439061 +-0.00742751 0.0346718 0.0457358 +-0.0757375 0.106056 0.0359296 +-0.0735163 0.138649 0.0485985 +-0.0786866 0.073183 -0.00146774 +-0.0425028 0.11664 0.0325093 +-0.0294965 0.105676 0.0405837 +-0.0253323 0.089221 0.0503626 +-0.00687638 0.105938 -0.022783 +-0.0680331 0.17369 -0.0570223 +-0.0709606 0.152484 -0.0460812 +-0.0145326 0.0386197 0.0300043 +-0.0284453 0.0903864 0.0448476 +-0.0688215 0.145351 0.0427408 +-0.0488146 0.109958 -0.0184987 +-0.0764868 0.144228 0.0448323 +-0.0204228 0.0384821 -0.0074254 +-0.050433 0.0505709 0.0355945 +0.00517866 0.131021 0.00445011 +-0.0697426 0.08081 -0.0166425 +-0.084857 0.0924919 0.0290512 +-0.00149439 0.0870302 0.0569025 +-0.072621 0.142849 -0.00891964 +0.0127783 0.105278 -0.0195273 +0.00375967 0.0343287 0.0177156 +-0.0724944 0.126022 0.052902 +-0.0520295 0.0429585 0.0453289 +-0.0373786 0.0478297 -0.016773 +-0.0165095 0.0446732 0.0513338 +0.0115347 0.118055 -0.0152175 +-0.0461946 0.0601644 0.0381445 +-0.0730192 0.156843 -0.0319176 +-0.0665818 0.173704 -0.0590137 +-0.0904622 0.133649 0.00822658 +-0.0661919 0.0387353 0.0332699 +0.0285711 0.0632767 0.0429905 +-0.0191373 0.0348399 0.0448528 +-0.0144945 0.115487 0.0386767 +-0.0885619 0.129493 0.00323888 +-0.00509715 0.039098 -0.012386 +0.00551873 0.0842341 0.0568816 +-0.0784525 0.0962411 -0.0105211 +-0.0126763 0.05824 0.052838 +-0.00571704 0.0642049 -0.0354496 +-0.0659809 0.169803 -0.037696 +0.00534315 0.0567731 -0.0307134 +-0.0104849 0.101611 0.0440429 +-0.0320291 0.108616 -0.01899 +0.0442879 0.0415947 0.0193873 +0.0261947 0.0449183 0.0375802 +-0.0626054 0.158425 -0.0185846 +-0.0321937 0.0694259 -0.0234551 +-0.0597828 0.0810723 -0.0197911 +-0.0274915 0.0602914 0.037483 +0.0278788 0.120142 0.00144262 +-0.00359535 0.0391334 -0.025473 +-0.0104902 0.0619157 0.0554492 +-0.0851123 0.133936 0.0477712 +0.0133897 0.0389058 -0.0222843 +-0.0778477 0.159718 -0.0189229 +-0.0817169 0.081448 -0.00456785 +0.00880568 0.131337 0.0114907 +-0.0885025 0.144515 0.032494 +0.00248318 0.0413744 0.0461608 +0.0393065 0.105567 0.023165 +0.0485408 0.0662379 -0.000364329 +-0.074114 0.159638 -0.0309374 +-0.0656277 0.0636798 0.0258038 +0.0326128 0.0934199 -0.0168733 +-0.0691845 0.152183 -0.0467119 +-0.0356328 0.0347409 0.0201566 +-0.067463 0.166618 -0.0559977 +0.0410852 0.0860175 0.0313838 +-0.0465484 0.0404249 0.0444582 +-0.0884823 0.147207 0.0295866 +-0.047064 0.168385 -0.0010022 +0.0204505 0.044377 -0.0207645 +-0.0460107 0.0426896 -0.0115747 +-0.0892694 0.136527 0.0301984 +-0.00170296 0.0612915 -0.034176 +0.016206 0.0927227 0.0499244 +-0.0816886 0.154881 0.0175845 +-0.0434863 0.0776041 0.0427475 +-0.0883068 0.098239 0.00641854 +-0.045625 0.056311 -0.011298 +-0.0524843 0.150872 0.017395 +-0.0641668 0.0334738 0.00287677 +0.0361211 0.0586877 -0.0107678 +0.0141254 0.0589894 0.0501816 +-0.0864962 0.112872 0.0280752 +-0.0863885 0.112851 0.0441987 +-0.0524922 0.0384865 -0.0115467 +-0.0776496 0.163935 -0.0239336 +-0.0554697 0.0345193 -0.0117205 +0.0176795 0.0740469 0.0519763 +-0.0728932 0.0642808 0.0113714 +0.0261658 0.0809584 -0.0239333 +0.058376 0.0713467 0.0136326 +0.0257313 0.0968616 0.0444005 +0.00516452 0.0344202 0.0197338 +-0.0686185 0.0687175 -0.00655491 +-0.0803464 0.147298 -0.000827063 +0.000190276 0.131527 0.0154789 +-0.0687909 0.0354139 0.0127136 +-0.05562 0.146743 0.0301728 +0.0240878 0.0645552 0.0452968 +0.0313304 0.0475675 0.0327114 +-0.0107396 0.0713653 -0.0375278 +-0.0444884 0.0733739 0.0424053 +-0.0892862 0.137904 0.0301929 +0.0430064 0.0930319 -0.00281527 +0.00152278 0.0688979 0.0560686 +0.02743 0.0663837 -0.0217206 +-0.0610765 0.167736 -0.0598039 +0.0469057 0.0738955 0.00933063 +0.010569 0.0630758 0.0538717 +-0.0636657 0.175908 -0.0542108 +-0.00887643 0.105922 -0.0227472 +0.0366768 0.0861722 0.0373065 +-0.00750518 0.0661146 0.0558703 +-0.0311481 0.174122 -0.0158676 +0.0165049 0.115408 0.0369209 +-0.0599957 0.135288 0.0360766 +0.023446 0.0385037 -0.00396461 +-0.0512658 0.0335234 0.00365116 +-0.0640041 0.0417908 0.0276702 +0.0505407 0.062451 0.0297568 +0.0381071 0.0767371 0.0357901 +0.0348186 0.114435 0.00971518 +-0.0808584 0.15153 0.0328055 +-0.0292731 0.0691492 -0.0304581 +-0.0482843 0.133992 0.00441773 +-0.0151264 0.0382524 0.0175843 +0.0457402 0.0749932 0.00321166 +-0.0514912 0.0529568 0.0308804 +-0.0841758 0.0777074 0.00551439 +-0.0724891 0.168081 -0.0228518 +-0.0578499 0.140998 0.0321632 +-0.0824678 0.0844329 0.0311552 +-0.035201 0.0380831 0.0475916 +-0.0225654 0.0336394 -0.0239171 +0.0463796 0.0792543 0.0131749 +0.0210505 0.125312 0.00175976 +-0.0835133 0.0843594 0.0293933 +-0.00767881 0.0555674 -0.03337 +-0.052489 0.159007 -0.00340529 +-0.0244459 0.156552 -0.00701262 +-0.0598434 0.0384999 0.0207227 +-0.0725078 0.160609 -0.0083559 +0.0429565 0.0986678 0.00218951 +-0.00967767 0.118026 -0.0150602 +0.038419 0.105512 0.0261645 +-0.00651495 0.0746355 0.058305 +0.0450144 0.0945871 0.00816469 +-0.0454802 0.123445 -0.0105099 +-0.00122028 0.0938312 -0.0334376 +-0.067038 0.143551 -0.013347 +0.043578 0.0888313 -0.0037919 +-0.0238161 0.078256 0.0534268 +-0.0455234 0.131922 0.0119481 +-0.0735087 0.137262 0.0493527 +-0.0183224 0.184952 -0.0232094 +-0.0148238 0.091051 -0.0367095 +-0.000496937 0.0620135 0.0565388 +-0.0217336 0.0611778 -0.0340471 +-0.0922703 0.125567 0.0322584 +0.0255559 0.0952317 -0.0208124 +-0.0748894 0.152721 -0.0218881 +-0.0770206 0.0981288 0.0365817 +-0.0262775 0.073604 0.0447421 +0.00842909 0.131472 0.01278 +-0.0815194 0.125984 0.0522053 +-0.0768497 0.156895 -0.0209209 +-0.0774933 0.0717304 0.000534742 +-0.0610597 0.172553 -0.0606091 +-0.00957846 0.178815 -0.0287373 +-0.062208 0.167823 -0.0505845 +-0.0225076 0.125867 0.0188793 +-0.0580565 0.0334897 0.00410791 +-0.00649004 0.112763 0.0415025 +-0.00176067 0.0755229 -0.0360316 +0.0456774 0.0904203 0.00916591 +0.0441351 0.0749462 0.0250125 +-0.0810675 0.11076 0.0435122 +0.00990869 0.048971 0.0492516 +-0.0728744 0.10362 -0.0122376 +0.0374772 0.106859 -0.00183322 +0.0151574 0.0988592 -0.0229537 +-0.016863 0.0640072 0.0526042 +-0.0418006 0.0462579 -0.0152948 +-0.0768234 0.0927696 0.0379671 +-0.0661935 0.155092 0.00556387 +-0.0810703 0.0752023 0.0214152 +-0.0235527 0.156826 -0.00518035 +-0.0194871 0.0883195 0.0557235 +-0.0716986 0.077793 -0.0140498 +-0.010631 0.0389663 -0.00962591 +-0.0570892 0.0602319 -0.00257411 +-0.0419839 0.128576 0.0133734 +-0.0151399 0.0382506 0.0121533 +-0.0759996 0.139851 -0.00609906 +-0.0506105 0.0694238 0.0381651 +-0.0658919 0.11864 0.0504465 +-0.0528899 0.106976 -0.018917 +-0.0521172 0.0545658 0.0256302 +-0.005498 0.103045 0.0437796 +-0.0524893 0.156469 0.0106374 +-0.0439563 0.147482 -0.0018962 +0.00349012 0.116915 0.0395094 +-0.0116538 0.0496371 -0.0310034 +-0.0360677 0.156277 -0.0104898 +0.0262747 0.0376552 0.0265482 +0.00369465 0.0390982 -0.00688719 +0.037401 0.0414131 -0.00242752 +-0.010004 0.0383201 0.0185669 +-0.0807853 0.0817556 0.0323751 +-0.00609738 0.037339 0.0487481 +-0.0254987 0.0945485 0.0446378 +-0.0446176 0.0345408 0.0396657 +-0.0522913 0.124591 -0.00759738 +-0.0244524 0.16187 -0.0148048 +-0.0144465 0.128429 0.00434765 +-0.0238211 0.0384511 -0.00993154 +0.0184111 0.122524 0.0307587 +-0.0815439 0.112456 0.0456165 +0.0549908 0.0567623 0.0266396 +0.0309112 0.0754873 0.0429619 +-0.0278697 0.103003 -0.0233536 +-0.0640545 0.149152 -0.0269946 +-0.0594536 0.133932 0.0368692 +0.0130152 0.130057 0.0144613 +0.0491953 0.0732159 0.0116573 +-0.0364993 0.0733348 0.0420574 +-0.0859116 0.107692 0.0193681 +0.0386236 0.109277 0.0110826 +0.00584547 0.0353648 -0.01428 +0.0198737 0.0358544 0.0359282 +-0.0174269 0.182963 -0.0250022 +0.0258436 0.0563286 -0.0217568 +0.0362122 0.112176 0.0188059 +-0.0564979 0.0805451 0.0445004 +0.0450117 0.0805305 0.000199058 +-0.043786 0.126623 -0.00583839 +0.0366462 0.100736 0.0320541 +-0.0198519 0.0357263 0.0525976 +-0.0872471 0.125707 0.0473263 +-0.0180735 0.0611876 0.0510587 +-0.0608049 0.0596005 0.019786 +0.0269735 0.121605 0.0224835 +0.033449 0.0380742 0.000639692 +-0.0174889 0.0856455 0.0572522 +-0.0298765 0.0607745 -0.022409 +-0.0371209 0.127449 0.0017956 +-0.0397839 0.0471068 -0.0160895 +-0.0245336 0.118082 0.0325274 +-0.0715136 0.0887445 0.0416191 +0.00419323 0.0880606 -0.0335488 +0.0353118 0.0520079 -0.00674902 +-0.00049849 0.101653 0.0443576 +-0.0570055 0.133804 -0.00545801 +-0.0215772 0.158162 -0.00503193 +-0.0640639 0.0351963 0.0227232 +-0.00287353 0.108795 -0.0218002 +0.0462936 0.0792458 0.00718673 +-0.00951316 0.0575536 0.0537045 +-0.0477812 0.0840973 -0.0215817 +-0.0526608 0.0504363 0.0276515 +-0.0340312 0.123966 -0.00509105 +0.00648697 0.11688 0.0387497 +0.0343069 0.0578226 0.0371782 +-0.0220745 0.169763 -0.0127977 +-0.0106374 0.0466553 -0.0295813 +0.0335656 0.114779 0.000629741 +-0.0269131 0.180109 -0.00739997 +0.0390081 0.105539 0.000161276 +-0.00175381 0.0993639 -0.0251444 +0.040909 0.0985658 0.0261474 +-0.0617277 0.159994 -0.0345941 +-0.0434138 0.111151 -0.0176174 +0.0319241 0.0700307 0.0408624 +-0.0349471 0.109117 -0.019515 +-0.0733885 0.111282 0.0466166 +0.0354121 0.0430461 -0.00417186 +-0.093028 0.117371 0.013308 +-0.0756832 0.149968 -0.01987 +0.0201512 0.0605237 0.0483852 +-0.0639979 0.158311 -0.048587 +0.0410638 0.0928718 -0.0077952 +-0.0845757 0.151155 0.0298105 +-0.0752762 0.167899 -0.0253615 +0.0587584 0.0580034 0.00517536 +-0.070971 0.166609 -0.0480118 +-0.0488701 0.10281 -0.0210946 +-0.0609926 0.128204 -0.00783795 +-0.0772884 0.155547 -0.0128979 +0.0120566 0.130535 0.0112565 +-0.0655484 0.039711 0.0142785 +-0.0465128 0.0438401 0.043121 +-0.0215234 0.0739469 0.0526909 +0.0238579 0.0490757 0.0395236 +-0.00446924 0.111373 0.0424038 +-0.0646993 0.150616 -0.0327557 +-0.0547216 0.118372 0.0366122 +0.055991 0.067441 0.024671 +-0.0164973 0.0485745 0.0476342 +-0.0243246 0.0415463 0.0540712 +-0.0679818 0.0653371 -0.00356488 +-0.0887934 0.125677 0.0460403 +-0.0672794 0.176766 -0.0591515 +-0.0201696 0.169725 -0.0202727 +0.0232197 0.0818757 -0.0256198 +-0.0521106 0.0503642 0.0236349 +-0.00378569 0.0826645 -0.03749 +0.0103848 0.03606 -0.0224393 +0.0144027 0.129384 0.00642559 +0.0154718 0.101771 0.0468044 +-0.0222044 0.174173 -0.0211642 +0.0605561 0.0664891 0.0161665 +-0.0110072 0.128401 0.0244439 +0.00979123 0.127622 -0.00353983 +-0.0586426 0.0335837 0.0110854 +-0.0324964 0.0518418 0.0373712 +0.0339681 0.114736 0.0222644 +-0.0278327 0.179989 -0.0150111 +0.0505141 0.0610459 0.0301699 +-0.084345 0.0818627 0.0244959 +-0.0780694 0.106243 0.0333548 +-0.0400434 0.149481 0.00241998 +0.0415851 0.0779004 0.0302476 +-0.0934884 0.117419 0.0203018 +0.0145324 0.0686382 0.0526166 +0.0105088 0.0546576 0.0523588 +-0.0166719 0.128014 0.0194984 +0.0111864 0.115382 -0.0163281 +0.0433489 0.0761902 -0.00378764 +0.00361131 0.0929227 -0.0324448 +0.0374765 0.0967619 0.0332563 +0.0118435 0.0418607 0.0449613 +0.00151372 0.070315 0.0563646 +-0.089555 0.092956 0.0194329 +-0.0309867 0.0458642 -0.0271867 +-0.0127025 0.0628523 -0.0366298 +-0.0211402 0.175693 -0.0149194 +-0.0410644 0.0466663 -0.0156422 +0.0229642 0.0564103 0.0453711 +-0.0689131 0.06155 0.0163724 +-0.0351956 0.0394954 0.0475468 +0.0545544 0.0478595 0.011201 +0.0307617 0.0848812 0.0428147 +-0.0854234 0.100771 0.000422318 +-0.00263926 0.0481807 -0.0301073 +0.0341204 0.0781827 0.0405841 +-0.0753485 0.151324 -0.0238793 +-0.040104 0.0359968 0.0427867 +0.00880995 0.127795 -0.00370552 +-0.0546717 0.0587861 -0.00643621 +-0.0527782 0.0338002 0.0103069 +-0.0644915 0.087588 0.0448694 +-0.0649403 0.125308 -0.00887181 +-0.0623267 0.035582 -0.00867786 +-0.0178682 0.127784 0.00598386 +-0.0477624 0.119115 -0.0139706 +-0.0272958 0.178509 -0.0169626 +-0.036773 0.0446897 0.0419462 +-0.0643144 0.0445281 -0.000908113 +0.0310215 0.117934 0.00259488 +-0.0657027 0.155342 0.0275329 +0.00812544 0.105869 -0.0206053 +-0.0845132 0.150109 0.0051703 +0.0147267 0.0343671 -0.00408399 +-0.0738652 0.150214 0.0382196 +-0.0396346 0.151103 -0.0056598 +-0.0548476 0.0665624 0.0361422 +-0.053656 0.116868 0.0345992 +0.0407085 0.0956949 -0.00580768 +-0.0407505 0.126266 0.0196745 +0.0327193 0.0632979 0.0402054 +-0.0423878 0.124291 -0.00941969 +0.0148847 0.0378033 0.0441286 +-0.0385893 0.036902 -0.00962928 +-0.0735502 0.095526 0.040254 +-0.0625469 0.169393 -0.0495927 +-0.0666556 0.0360676 0.0353877 +0.00702297 0.127188 0.0294846 +0.0123661 0.0479119 -0.026429 +0.00707963 0.0365612 -0.00575515 +0.00660499 0.0617786 0.0553203 +-0.056364 0.156406 0.0105108 +-0.02141 0.0511007 0.0448554 +-0.0417892 0.0855226 -0.0213401 +-0.0454873 0.0789625 0.0423892 +0.0541155 0.0731329 0.017974 +0.0124978 0.092313 0.0523832 +-0.0184886 0.0801089 0.0571361 +-0.0426749 0.0622014 -0.0131851 +-0.0711139 0.162407 -0.0449498 +-0.0234912 0.0474961 0.0510145 +-0.0722633 0.0367738 0.0082856 +-0.0207862 0.0638606 0.0480406 +-0.0570496 0.0562866 0.00362097 +0.023226 0.077646 -0.0258357 +0.00592655 0.0339685 0.0148513 +0.0327331 0.0942636 0.0404449 +0.0170625 0.0448711 0.043693 +0.0335588 0.0862851 0.0416032 +-0.0588111 0.0334057 -0.00501142 +-0.0718597 0.148728 0.0404251 +-0.0700765 0.0619608 0.0139832 +-0.0302069 0.174221 -0.00514504 +-0.088803 0.151599 0.0211964 +0.0155832 0.0893609 -0.0286847 +0.0270636 0.120631 0.00113345 +0.033576 0.0781814 -0.0177928 +-0.0894235 0.0942851 0.0164251 +-0.0386513 0.0344774 0.0357393 +-0.0348698 0.176878 -0.00628812 +-0.0102548 0.179004 -0.0295955 +-0.0708792 0.115031 -0.00817569 +0.0203316 0.0551325 -0.0272049 +-0.0942207 0.120117 0.0202902 +-0.0704743 0.121802 0.053345 +0.0441954 0.0847004 0.0251589 +-0.0662148 0.171945 -0.0435535 +-0.0579078 0.0494657 0.0056917 +-0.0364996 0.0789928 0.0425809 +0.00849936 0.0744764 0.056192 +-0.0263916 0.0563779 0.0383176 +-0.0556017 0.0336949 -0.0101219 +-0.0593537 0.140997 0.0335026 +-0.0941834 0.120103 0.0162919 +0.0184196 0.0442138 -0.0226321 +-0.0628603 0.033866 0.0135258 +-0.0229828 0.0566251 0.0433992 +-0.0295276 0.0383617 0.0343291 +-0.0439439 0.166904 -0.00881722 +-0.00750585 0.0633646 0.0562436 +-0.0553809 0.0486564 0.0109541 +0.0106398 0.0390088 0.044914 +0.0440071 0.0846602 -0.00280808 +-0.0184891 0.0743773 0.0548673 +0.0214529 0.0415824 -0.013701 +-0.0137336 0.0383402 0.0141683 +-0.0895155 0.0983259 0.0124123 +0.0129339 0.063079 0.0520141 +-0.0749499 0.112554 -0.00662315 +-0.0128237 0.0855345 -0.0387685 +-0.0175101 0.0381991 0.0207599 +-0.065046 0.0423247 0.012291 +-0.0570589 0.0507155 -0.000374425 +-0.0630045 0.132588 -0.00795426 +-0.0415001 0.0972709 0.0420669 +0.0313679 0.117954 0.0212794 +-0.00373539 0.0684024 -0.0350771 +-0.0896129 0.139294 0.0321884 +-0.0239769 0.0381215 0.0231095 +0.0347467 0.0670098 -0.0158076 +0.0178644 0.101883 -0.0218675 +-0.064813 0.0428917 0.034688 +-0.0618962 0.0443648 0.0286813 +0.0425837 0.100055 0.002186 +-0.056712 0.0708617 -0.0156392 +-0.066713 0.154086 0.0315791 +-0.0348246 0.0872331 -0.0245609 +-0.0155018 0.080076 0.0569734 +-0.0431381 0.128903 0.00398376 +0.0456202 0.0421608 0.019117 +-0.0637474 0.0766435 -0.0177206 +-0.070335 0.0339385 0.00479187 +-0.0452276 0.131073 0.0164666 +0.0175902 0.128186 0.00902123 +-0.0332219 0.0344808 0.0386469 +-0.000130337 0.0395577 0.0357254 +-0.0384117 0.12376 -0.00887525 +-0.0384745 0.0533908 0.0391471 +-0.0105486 0.0921685 -0.035821 +-0.0292627 0.125707 0.0105611 +-0.0740612 0.16798 -0.0430295 +-0.0794475 0.0732175 0.0216948 +-0.0525459 0.0430871 -0.00935537 +-0.0275149 0.0591111 -0.027433 +-0.0608279 0.0910686 -0.0191968 +0.0214831 0.0388585 0.0402401 +-0.0185078 0.0382343 0.0205228 +-0.0193476 0.0973552 -0.0251961 +-0.014626 0.03858 -0.00263697 +0.0364765 0.110061 0.0246179 +0.0394879 0.0499122 0.0322705 +-0.0738314 0.151256 -0.033887 +-0.0276072 0.0488225 -0.0246209 +0.0254616 0.0727112 0.0456024 +-0.054118 0.157553 -0.00229988 +-0.0100751 0.129607 0.0204184 +-0.0507271 0.115538 0.0335799 +-0.064203 0.176904 -0.0544031 +-0.0327997 0.0624741 -0.0154176 +-0.050486 0.0585567 0.0325562 +-0.0115057 0.0716604 0.0558672 +-0.041271 0.0338554 -0.00188008 +0.00149737 0.0969588 -0.0286791 +0.0222207 0.0833264 -0.0261432 +-0.0379669 0.0433397 0.0417712 +0.0433566 0.094461 -0.000803958 +-0.0485055 0.0490796 0.0381424 +-0.0398915 0.109923 -0.0189257 +-0.00650042 0.0533369 0.0530605 +-0.0902689 0.112791 0.0182006 +-0.0256204 0.0436547 -0.0287136 +-0.0432877 0.171276 -0.00598005 +0.00651867 0.0674599 0.0552944 +0.00755739 0.101711 0.046537 +0.0201484 0.0899648 -0.02526 +0.00621941 0.0351341 0.00654928 +-0.0641258 0.0611318 0.00140431 +-0.0841699 0.0979316 0.0296062 +-0.0893171 0.151601 0.0194969 +-0.0509112 0.0517382 0.0331779 +-0.0345095 0.0761212 0.0417709 +-0.0210879 0.0852798 0.0561484 +-0.0647084 0.033787 -0.00655215 +0.0485032 0.0638048 0.0293893 +0.0553414 0.0563023 0.000211666 +0.031191 0.0977616 -0.015509 +-0.0271419 0.168228 -0.0179326 +-0.0594934 0.0832968 0.0436941 +0.00712427 0.107292 -0.0202517 +-0.0670075 0.139964 -0.00790796 +-0.072631 0.169409 -0.0470274 +-0.0668128 0.0894987 -0.0177562 +-0.0638648 0.166212 -0.0336016 +-0.0305285 0.0348948 0.0458677 +-0.07494 0.0707543 0.0282709 +0.0217204 0.105135 -0.0173432 +0.0129112 0.111627 -0.0182976 +-0.0346615 0.0395406 0.0484261 +-0.0244963 0.105758 0.0419767 +-0.0275166 0.057436 0.037149 +-0.071563 0.151347 -0.0436244 +-0.00477478 0.0812297 -0.0373809 +-0.0544968 0.108447 0.0390956 +0.0191276 0.0370481 -0.0116797 +-0.0477678 0.125154 -0.0082648 +0.00907863 0.112423 -0.0191367 +-0.0148223 0.129108 0.012888 +-0.0685095 0.148391 0.0402581 +0.0438124 0.093116 0.0231537 +-0.0295173 0.175738 -0.0052542 +-0.0580932 0.155356 0.0200663 +-0.0140302 0.116852 -0.0157862 +-0.00427283 0.034883 0.0462122 +-0.0365117 0.0860935 0.0436284 +0.0428337 0.0789534 -0.0047828 +0.0143759 0.121374 -0.0108038 +-0.0478629 0.0335429 0.00613354 +0.0399096 0.0632641 -0.00677014 +0.0382182 0.0855917 -0.0147556 +-0.0586226 0.156199 0.00971481 +-0.0768739 0.0698402 0.0216311 +0.0359859 0.0660034 0.0379002 +-0.0517494 0.0782459 -0.0193853 +-0.0836382 0.0870656 -0.00453769 +0.0314216 0.0415146 -0.00377022 +-0.0633942 0.159878 -0.0495887 +-0.0762229 0.149992 -0.0128764 +0.0360298 0.0573371 -0.00970954 +-0.0378631 0.100009 -0.0219618 +-0.0631703 0.172516 -0.0516045 +-0.0893681 0.0902559 0.0194368 +0.0559048 0.0631077 0.000905369 +0.00350533 0.0758855 0.0563752 +0.0327662 0.0475454 0.0312717 +-0.0144964 0.104421 0.0432413 +-0.0925078 0.121485 0.0292837 +-0.0225266 0.123574 -0.00478676 +0.027859 0.114683 -0.0075901 +0.0336358 0.0725575 -0.0168317 +0.0133955 0.0900754 0.0528858 +-0.0320964 0.160758 -0.0138294 +-0.0665218 0.173689 -0.0465659 +-0.0314315 0.062325 -0.0194293 +0.0355057 0.0498307 0.031489 +0.0409937 0.0830284 -0.00976566 +-0.0484259 0.152144 0.0105657 +-0.0760489 0.0702549 0.00053996 +-0.0939567 0.121435 0.0142863 +0.0458128 0.0848143 0.0141708 +-0.088753 0.130866 0.00325856 +-0.0762076 0.0680671 0.0162505 +0.0295583 0.0594698 -0.0188239 +-0.0470685 0.0362699 0.0454096 +0.0515085 0.0678015 0.0264788 +0.0229945 0.0535474 0.0436214 +0.0102584 0.0738736 -0.0323425 +-0.0208293 0.0841002 -0.0385977 +0.013479 0.118711 -0.0139326 +-0.0577142 0.0723919 -0.0167433 +0.0343469 0.0740244 -0.0157906 +-0.0384895 0.050603 0.0393394 +-0.0411819 0.166655 -0.0111213 +-0.0314187 0.0525029 -0.0133876 +-0.0530781 0.119794 0.0354828 +0.0402398 0.0815675 -0.0107641 +-0.0334936 0.0817447 0.0419617 +-0.0284374 0.0381394 0.00411543 +-0.0669412 0.126769 -0.00883964 +-0.089797 0.129515 0.00524651 +-0.0607661 0.0796035 -0.0191344 +-0.0878523 0.0860961 0.00747941 +-0.00447426 0.0385132 0.0213354 +0.0222429 0.0463236 0.0406841 +-0.0167958 0.0799195 -0.0388883 +-0.0714505 0.16941 -0.0490283 +-0.00251639 0.0442645 0.0466529 +-0.0648891 0.0981501 -0.0170112 +0.00754987 0.100371 0.0472771 +-0.0694963 0.16803 -0.0520069 +-0.0920162 0.126943 0.0352547 +0.0233968 0.0355618 0.0133136 +-0.0660161 0.169448 -0.0590294 +-0.0555411 0.128344 0.0372391 +-0.0488244 0.0927169 -0.0215945 +0.0343104 0.114465 0.0209626 +-0.0501985 0.140132 0.0173988 +-0.0658096 0.0445087 0.000718728 +-0.0512856 0.136981 0.000438627 +-0.0269157 0.0703179 -0.0345192 +-0.0636699 0.112355 0.0376208 +-0.0754912 0.144221 0.0449451 +-0.062524 0.167829 -0.0475902 +0.030542 0.0511254 -0.0127382 +-0.0237052 0.0596068 -0.0321069 +-0.0547922 0.153188 0.0241866 +-0.0414961 0.0902351 0.0425692 +-0.0494981 0.0477699 0.0395132 +0.0289271 0.110086 0.0349831 +-0.0402206 0.0433137 -0.0233156 +-0.0246897 0.0560336 -0.0294195 +0.00733033 0.058195 -0.0305865 +-0.0633574 0.155908 0.0123853 +-0.0679376 0.162368 -0.0549778 +-0.0588165 0.0667309 0.0351477 +-0.0598716 0.0453976 -0.00333599 +-0.0238165 0.0812337 -0.0381734 +-0.047565 0.0370224 -0.0142792 +-0.010699 0.104948 -0.0231645 +0.0375184 0.0915609 -0.0128884 +-0.056974 0.0573893 0.011763 +-0.00401542 0.033994 -0.0206047 +0.0133173 0.0638081 -0.0300932 +-0.0402517 0.127178 -0.0024642 +0.00549546 0.0489597 0.051102 +-0.0755445 0.0668624 0.00857418 +-0.0465015 0.0643139 0.0383309 +0.00586085 0.130491 0.00185259 +-0.00908444 0.0392597 0.0359512 +-0.0724815 0.0696506 0.0297377 +-0.0588318 0.146817 0.0344225 +-0.0460118 0.126697 0.0245216 +-0.044079 0.0336811 -0.000461832 +-0.0565021 0.0946206 0.04473 +-0.0615844 0.155311 -0.0225818 +-0.0650869 0.155169 -0.00713868 +-0.089472 0.092961 0.0204149 +-0.0824758 0.0764829 0.0200121 +0.0429803 0.0916104 -0.003806 +-0.0914285 0.144743 0.0221537 +0.00329581 0.06408 -0.0335736 +-0.0554437 0.158541 0.0079523 +-0.0624977 0.0789785 0.042462 +0.00538842 0.0383711 -0.011506 +-0.0682947 0.162375 -0.0539731 +-0.0809901 0.135346 -0.00326263 +-0.0418435 0.0928469 -0.022966 +-0.0664939 0.0917254 0.0436166 +-0.0741328 0.170753 -0.0306566 +0.00842498 0.094018 -0.0295425 +-0.00912603 0.126983 -0.00460672 +-0.0144839 0.0911543 0.0563071 +-0.0247385 0.124904 0.000549003 +-0.064327 0.034541 0.0284972 +-0.0668589 0.156842 -0.00635476 +-0.0565065 0.0629707 0.0300974 +0.0567694 0.0522665 0.0211855 +0.0120332 0.0793354 0.0543348 +0.00749695 0.108523 0.0409368 +-0.0385157 0.0761871 0.0423388 +-0.0861163 0.11208 0.0430934 +-0.0554974 0.0776601 0.0434775 +-0.0519782 0.0531903 0.0286494 +0.00382899 0.0387567 -0.00467455 +-0.0437453 0.0348723 0.00757323 +-0.0876033 0.102265 0.00739801 +-0.0538689 0.152421 0.0214004 +0.0305964 0.0407785 0.0282841 +0.0465387 0.0750529 0.00819241 +-0.0664147 0.112558 0.0425241 +-0.0212669 0.123736 0.0252343 +-0.0144966 0.0485988 0.0478804 +-0.0270125 0.0891105 0.0478066 +-0.0328048 0.0886955 -0.0250147 +-0.0387676 0.0812185 -0.0204237 +-0.0179622 0.106228 -0.0225141 +-0.0121468 0.17267 -0.0267827 +-0.0155019 0.119619 0.0357771 +-0.0763961 0.0968047 0.0374195 +-0.00349611 0.0897823 0.0565938 +-0.0378917 0.0335733 -0.0268663 +-0.0464981 0.0451704 0.0419279 +0.0287219 0.115289 -0.00622497 +-0.0639806 0.135327 0.039077 +-0.045498 0.105695 0.0408472 +0.0546227 0.0668075 0.00110467 +-0.0690913 0.143 -0.0123014 +0.0356753 0.0619319 0.0374332 +-0.0141081 0.128922 0.00736661 +-0.0561495 0.0341243 0.0270787 +-0.038546 0.128369 0.00715642 +-0.0876142 0.116272 0.0465171 +-0.0722303 0.134063 0.0500963 +-0.0156039 0.0392636 -0.0272219 +-0.0361326 0.034299 0.0293707 +0.0285657 0.120967 0.00738594 +0.0111022 0.114226 -0.0170859 +-0.0218549 0.118022 -0.0129203 +0.0460721 0.0848306 0.00817735 +-0.0800935 0.138964 -0.00379173 +-0.0574953 0.0747475 0.0420563 +-0.00684325 0.130599 0.0100344 +0.020602 0.0768409 0.0509288 +0.0342103 0.0795441 0.0407378 +-0.0387822 0.0841715 -0.021953 +0.00854197 0.104373 0.044167 +0.0284181 0.0835438 0.0446794 +-0.0809789 0.0720684 0.0125422 +-0.0870329 0.152942 0.0187545 +0.0227098 0.105005 -0.0172062 +-0.0259693 0.156664 -0.00260696 +0.00630512 0.0970077 -0.026738 +-0.0293004 0.175699 -0.00559167 +-0.00764633 0.048167 -0.0303862 +-0.045682 0.0680577 -0.0156409 +-0.0545225 0.0645764 -0.00897215 +-0.0511988 0.137011 0.0243968 +-0.00714364 0.101607 -0.0236448 +0.00975279 0.123922 0.0333795 +-0.069363 0.163799 -0.0509746 +-0.000145407 0.0355938 -0.0156782 +0.0251101 0.0562501 -0.0227775 +0.047185 0.0692848 0.0242283 +-0.0610844 0.0335982 -0.00747508 +-0.0215973 0.0387212 -0.015323 +0.00621551 0.0824281 -0.0337654 +-0.0768656 0.120803 -0.0071099 +-0.072234 0.147352 -0.0242316 +-0.0251276 0.16525 -0.016804 +-0.00350994 0.110634 -0.0212045 +-0.051883 0.143128 0.0183637 +0.0388034 0.0687739 -0.0117998 +0.0522529 0.049588 0.0243549 +-0.0484974 0.0974063 0.0440017 +0.0292296 0.08295 -0.0208022 +0.0215976 0.121636 0.0305088 +-0.0576661 0.143885 0.0324483 +-0.062789 0.152113 -0.0295989 +-0.0686144 0.0632303 0.0220506 +-0.0812769 0.136213 -0.00276757 +-0.0898521 0.112924 0.020019 +0.0399617 0.0984844 -0.00581339 +-0.0197337 0.0627381 -0.0357065 +-0.0715197 0.0915892 0.0417662 +-0.0176796 0.037751 -0.0173923 +-0.0034931 0.0519852 0.0535284 +-0.0477302 0.0753108 -0.0175447 +-0.0720239 0.158203 -0.0389152 +0.012618 0.0562866 0.0514947 +-0.00341476 0.129699 0.000449344 +0.00761699 0.0345564 0.0219225 +0.0197796 0.101487 -0.0214363 +-0.0718751 0.150885 -0.0428436 +0.0226049 0.0994887 0.0451477 +-0.0275114 0.0379423 0.00991362 +0.0449899 0.0861501 0.00118902 +-0.0724942 0.0928706 0.0413391 +-0.0668563 0.151928 -0.044894 +-0.00758529 0.0395118 0.037828 +-0.0717266 0.143977 -0.0139286 +-0.0485566 0.0446478 -0.0101195 +-0.0498454 0.098516 -0.0220736 +-0.0687032 0.155739 0.000270534 +0.0305837 0.118921 0.00529549 +0.0181431 0.0408036 0.0434958 +-0.0644897 0.161538 -0.0184978 +-0.082117 0.127195 0.0520765 +0.0194801 0.0975854 0.0469408 +-0.0593004 0.0460479 0.0107053 +-0.051494 0.097382 0.0437255 +-0.0629042 0.151488 -0.0283316 +-0.0520794 0.132523 0.0317044 +-0.0086348 0.124041 -0.00947049 +-0.0408505 0.0971293 -0.022095 +-0.0501242 0.144161 0.00100252 +-0.0374501 0.127748 0.0031441 +-0.0242006 0.107431 -0.0217757 +-0.0185705 0.0597254 0.0501838 +0.0506634 0.0663167 -0.000433246 +-0.0778197 0.0981202 0.035968 +-0.0344836 0.0604651 0.0395531 +0.0141481 0.100268 -0.0227789 +-0.0201048 0.0920391 0.0535514 +0.0405223 0.0582848 0.0307512 +-0.0234669 0.126337 0.0156088 +-0.0879353 0.140547 0.0390784 +0.0495003 0.0691238 0.025332 +-0.0550177 0.034541 0.0409139 +-0.0558687 0.156831 -0.000812957 +-0.033113 0.162236 -0.0143657 +-0.0040053 0.127195 0.0298616 +0.00247063 0.0977635 0.0514765 +-0.0372934 0.126961 0.0179492 +0.00433485 0.120467 -0.0137766 +0.00930976 0.0595795 -0.0301167 +0.0437257 0.0902921 0.0241674 +-0.0363397 0.0344675 0.0327184 +0.000637516 0.0346318 0.0420689 +0.0283669 0.0563832 0.0408635 +-0.0890554 0.136524 0.0291987 +-0.0526322 0.0603614 -0.00917272 +-0.0555168 0.0610654 0.0262173 +-0.0398616 0.102806 -0.020798 +-0.0554959 0.0959795 0.0436611 +-0.0625279 0.0435825 0.012569 +-0.012539 0.0432081 0.0504383 +-0.0295399 0.0777526 0.042206 +0.0250153 0.0699448 0.0449142 +0.0418505 0.0929433 -0.00581175 +0.00749052 0.0923616 0.0534281 +-0.0508873 0.105589 -0.0194525 +-0.0577516 0.0752955 -0.0185275 +-0.0341251 0.166782 -0.00385534 +0.0204867 0.0961927 0.0470968 +-0.0860696 0.110951 0.0368762 +-0.0623929 0.0445563 0.039213 +0.0212831 0.0679005 -0.027755 +-0.0459741 0.03576 0.00812075 +-0.0128757 0.105895 -0.0226089 +-0.0713104 0.164383 -0.0152637 +-0.00570768 0.129479 0.0248833 +-0.0759611 0.0715461 -0.00349282 +-0.0154987 0.0485755 0.0476399 +-0.0271627 0.125166 0.0172175 +-0.052909 0.0559665 0.0126205 +0.0445771 0.0875296 0.0231612 +-0.0679602 0.132601 -0.00851511 +-0.0735016 0.14861 -0.0288774 +0.0321816 0.0968615 0.0396789 +-0.0617331 0.156868 -0.0205842 +-0.0310423 0.0467686 -0.0260418 +-0.0285615 0.0382432 0.0537594 +-0.0934477 0.121479 0.0262963 +-0.0220941 0.0710555 0.0505203 +-0.0299308 0.0348009 0.0443343 +-0.0161025 0.0382877 0.022773 +-0.0328698 0.101492 -0.0223548 +0.0454742 0.0412367 0.0106737 +-0.028101 0.0890412 0.0460663 +-0.0440047 0.127209 -0.00443148 +0.0593281 0.0649895 0.00613553 +0.0127896 0.130142 0.00867876 +0.0391468 0.0887707 0.0338836 +0.0223265 0.0535979 0.0444334 +-0.0897234 0.125377 0.0042981 +0.0287018 0.0447465 0.0341399 +-0.0924969 0.121493 0.0302824 +-0.0717492 0.0821807 -0.0161321 +-0.0756445 0.156326 -0.00458549 +0.00148921 0.104407 0.0433078 +-0.0361895 0.0355992 0.0192692 +-0.0662775 0.0734947 0.0382764 +-0.0730867 0.169281 -0.0259539 +-0.00640617 0.0386668 0.0262232 +-0.053287 0.0610602 0.0282137 +-0.0820828 0.0871799 0.032118 +-0.0474969 0.0477925 0.0396528 +0.0505278 0.0445977 0.0162148 +0.0314571 0.0378867 -6.50808e-05 +0.0244076 0.117212 -0.0083203 +0.0193833 0.052146 -0.0261511 +0.0213663 0.0593118 -0.0264401 +-0.0223265 0.0696009 0.0493961 +-0.0803036 0.100707 0.0327244 +0.0516025 0.0650498 -0.00116678 +-0.0572939 0.0597447 0.0223608 +0.0272121 0.088765 -0.0222319 +-0.0760712 0.152304 0.0343668 +0.0287584 0.0359201 0.00291435 +-0.00327774 0.125061 -0.00864173 +-0.0492123 0.134029 0.0252722 +-0.0157732 0.0799164 -0.0389165 +0.0137184 0.0699424 0.0531931 +0.0181521 0.124421 0.0277923 +0.0195548 0.127052 0.0182976 +-0.0788582 0.171448 -0.0399026 +-0.0820398 0.150272 0.03397 +0.0134064 0.0478115 -0.0258783 +-0.0637307 0.0344451 0.0269565 +0.00741391 0.0920665 -0.0315473 +0.0394368 0.0688303 -0.0107955 +-0.064416 0.154996 0.00586526 +-0.066663 0.144317 -0.015468 +0.0353499 0.042038 0.028119 +-0.00141558 0.03896 -0.0133998 +-0.0338581 0.0334994 -0.0260028 +0.0142608 0.0359816 -0.0203372 +-0.0776263 0.175005 -0.043567 +-0.0525965 0.0345626 0.0431188 +0.0335361 0.0372674 0.00265432 +0.0308902 0.0632769 0.0410591 +-0.0895335 0.144692 0.0121557 +-0.0612693 0.0337096 0.0122134 +-0.00661675 0.0976221 -0.0294208 +-0.0504448 0.128295 0.0323161 +-0.0571803 0.062383 0.0287138 +-0.0529076 0.136719 0.0287121 +-0.0247725 0.0390001 0.0365321 +-0.00277907 0.0769693 -0.0364873 +-0.0894255 0.0956236 0.0134235 +0.0183336 0.0566072 -0.0279953 +-0.0945117 0.124183 0.0222757 +-0.0670539 0.154574 0.0299913 +0.0377471 0.104052 -0.00484079 +-0.0277489 0.0877005 0.0471838 +-0.0465602 0.122394 -0.0114017 +0.0512982 0.0545874 -0.00353058 +-0.0255237 0.116678 0.0329121 +-0.0558854 0.0479468 0.0296668 +-0.0384602 0.127124 -0.00162988 +0.00941217 0.040392 -0.0233006 +-0.0788042 0.109939 0.0428886 +-0.00952807 0.0385271 0.0257083 +-0.0151514 0.041952 0.0515406 +-0.0896796 0.114349 0.0422656 +-0.0130415 0.0639857 0.0543784 +-0.0709434 0.168021 -0.0490096 +-0.042508 0.0562794 0.0398023 +-0.0723361 0.155599 0.00334302 +-0.0804662 0.0800422 -0.00555374 +-0.0320486 0.122707 -0.00572396 +0.0215589 0.120837 -0.00625561 +0.0181166 0.118416 -0.011621 +-0.0473179 0.0397941 -0.0120624 +-0.0797756 0.0706254 0.0155549 +0.00931098 0.130351 0.0216675 +-0.0082877 0.0388999 0.0310374 +-0.0475138 0.156385 0.00914965 +-0.000599084 0.0391028 -0.0250468 +-0.0114889 0.103024 0.0436761 +-0.0176179 0.0378672 -0.0275216 +-0.0423688 0.123346 -0.0104204 +-0.0387324 0.156611 0.00532643 +0.0047217 0.0940547 -0.0316305 +-0.0728512 0.152626 -0.0378881 +-0.00186255 0.103074 -0.0227526 +0.0529842 0.0692584 0.0249064 +-0.0792715 0.107765 0.0320009 +0.0324709 0.0353558 0.0097886 +-0.083008 0.154405 0.0171359 +0.0123335 0.0581189 -0.0294366 +-0.0570144 0.0335354 0.00427397 +-0.0520347 0.0349067 0.0446489 +0.0239781 0.084017 -0.0250643 +0.0450177 0.0875447 0.000184881 +-0.00260981 0.0434451 -0.0255195 +-0.00349422 0.0718336 0.0581766 +-0.0470698 0.154668 -0.0068409 +-0.0764224 0.152995 0.0327283 +-0.0382612 0.0345343 0.0375294 +-0.00240135 0.128537 0.0275513 +-0.0924704 0.117461 0.033305 +-0.0714888 0.127424 0.0521873 +-0.0439578 0.12961 0.0140149 +-0.0725837 0.0763091 -0.0123208 +-0.0595593 0.0341176 0.0246105 +-0.00343172 0.0385593 0.0215021 +0.0311358 0.0782102 0.04331 +-0.0494476 0.122586 0.0319364 +-0.0665119 0.0621274 0.0216726 +0.0544596 0.058178 0.0276568 +-0.0495972 0.118308 0.0316941 +-0.0314789 0.174225 -0.0034609 +-0.0728795 0.116451 -0.00740226 +0.00249754 0.108619 0.0424686 +0.0280724 0.0678498 -0.0217391 +-0.0278862 0.165359 -0.00713919 +-0.0117661 0.182389 -0.0287496 +-2.83383e-05 0.0370817 -0.0151505 +-0.0721646 0.155417 -0.0379087 +0.0297368 0.100819 0.0396604 +0.0224793 0.124852 0.00370943 +-0.0278708 0.104417 -0.0229648 +-0.0388092 0.0372561 -0.0289196 +0.0393949 0.0519685 -0.00680892 +-0.0114113 0.0387598 0.0305221 +-0.0668989 0.0372019 0.0312012 +-0.0634206 0.167809 -0.0425955 +-0.0738654 0.102167 -0.0123482 +0.000515293 0.09714 -0.0288497 +0.00321341 0.034575 0.0192003 +-0.0313524 0.158102 0.00192058 +-0.0879015 0.148743 0.00925863 +-0.0552908 0.158294 -0.000771282 +0.00144018 0.127924 -0.00374837 +-0.0374859 0.0491992 0.0393813 +0.0225251 0.100664 -0.0205487 +-0.0149527 0.0339242 -0.0208085 +0.00432828 0.0582523 -0.0314184 +0.0463488 0.0792498 0.00918224 +-0.0375014 0.105589 0.0387333 +-0.062506 0.149124 -0.0145611 +0.00329475 0.129383 -0.00133175 +-0.00689488 0.0384553 0.0136435 +-0.0384034 0.0343958 0.0323426 +-0.062465 0.163086 -0.0495893 +-0.0639661 0.0690471 0.0355624 +-0.0131121 0.0626059 0.0545133 +-0.0449324 0.0358062 0.00829108 +0.0406445 0.0871881 -0.0107716 +-0.0230795 0.0932192 0.0494322 +-0.0186385 0.0465274 -0.0284289 +-0.0571213 0.0576422 0.00058007 +-0.0705055 0.0343308 -0.00278598 +-0.0578994 0.112578 -0.0159728 +-0.0106785 0.0383169 0.0202432 +-0.0593417 0.119814 0.0404797 +-0.0505461 0.0403717 -0.011217 +-0.0453989 0.0342539 -0.0215146 +-0.011074 0.178648 -0.0249266 +-0.0523515 0.0582314 0.0273813 +-0.0254941 0.0486931 0.0489695 +0.0374187 0.0855245 -0.0157145 +0.0453002 0.0932088 0.00816687 +-0.0612769 0.133878 0.0377403 +0.00152786 0.0745369 0.0570999 +0.0245032 0.122816 0.00162459 +-0.00938967 0.130192 0.0162996 +-0.0703883 0.0339052 -0.000577152 +-0.0733601 0.156855 -0.0299134 +-0.0171472 0.166778 -0.0196136 +0.0116998 0.0819851 0.0538895 +-0.0502854 0.11522 -0.0158495 +0.050316 0.0546413 -0.00421167 +-0.0667548 0.115724 0.0491405 +-0.0609102 0.120922 -0.00906619 +-0.0866023 0.111811 0.0414218 +-0.0669546 0.128237 -0.00895731 +-0.0654028 0.177571 -0.0533847 +-0.0437352 0.0753785 -0.0184868 +-0.0329958 0.0793378 -0.0275102 +-0.00469334 0.101051 0.0441761 +-0.0137252 0.0671481 -0.0375067 +-0.0531289 0.138241 -0.000765665 +-0.0361236 0.163705 -0.0141169 +-0.0249029 0.0722756 0.0462509 +-0.0119797 0.0383916 0.0235247 +-0.0246067 0.157782 -0.00250374 +-0.0748771 0.109206 -0.00842538 +-0.0314894 0.0845774 0.0421902 +-0.0849159 0.123546 -0.00333555 +0.052731 0.0672551 0.000627241 +0.0453449 0.0710055 0.0220458 +-0.0665131 0.0419133 -0.00333369 +0.0194908 0.113962 0.0368661 +-0.0674148 0.142782 -0.0112266 +-0.0931203 0.121503 0.0403997 +-0.0084076 0.0932235 -0.0348708 +0.0125532 0.0900642 0.0534187 +0.0432399 0.0747788 -0.00379578 +0.00477967 0.130785 0.0214562 +0.0461172 0.0759623 0.0190037 +-0.0870553 0.118453 0.000244653 +0.00651257 0.056103 0.0529931 +-0.0623783 0.167824 -0.0485899 +-0.0258496 0.0864897 0.0509722 +0.0602482 0.0581464 0.0141691 +-0.0923082 0.120116 0.0282975 +0.00750533 0.0660627 0.0552439 +0.060666 0.0609482 0.0151682 +-0.0674289 0.114212 0.0481237 +-0.0514122 0.146842 -0.00193867 +-0.0768562 0.117877 -0.00659127 +-0.0825551 0.152911 0.00706582 +-0.0839745 0.0804809 0.0225006 +0.041166 0.0819934 0.0314416 +-0.0655442 0.155124 -0.0481259 +-0.0384965 0.0620329 0.0413169 +-0.0627141 0.159943 -0.0425974 +-0.0767176 0.159013 -0.0120318 +-0.0856607 0.0832001 0.00448541 +-0.0278526 0.181478 -0.0120494 +0.0114013 0.0419017 -0.0239008 +0.0243085 0.123343 0.00295625 +-0.0474528 0.119349 0.0293599 +-0.0304487 0.0334492 -0.0290445 +-0.0696417 0.0422524 0.0026904 +-0.0644028 0.146849 -0.019975 +0.0503218 0.0589081 -0.00447436 +0.0476236 0.0467222 0.0264254 +-0.0303554 0.117939 -0.0127791 +0.0338995 0.0591949 0.0383404 +-0.0746238 0.166812 -0.0222329 +-0.0186858 0.118957 -0.0119398 +0.0507854 0.0445928 0.0142166 +-0.0844285 0.0832425 0.0264792 +0.0593532 0.0636103 0.0211835 +-0.073524 0.16243 -0.0369561 +-0.0525841 0.0574366 -0.00812203 +0.0221795 0.040783 0.0405434 +0.0281375 0.0902298 0.0443276 +0.0214874 0.0892516 0.0486681 +-0.0702718 0.110271 0.0410027 +0.0386345 0.0753534 0.0347776 +-0.0646561 0.0344494 0.0319916 +-0.00663677 0.109707 -0.0221975 +-0.029185 0.0634891 -0.02746 +-0.0671416 0.145678 -0.0214457 +-0.0135214 0.0353632 -0.0181023 +-0.0376703 0.125135 -0.00632213 +0.0114179 0.0489704 0.047894 +-0.0923638 0.118682 0.00930083 +0.0483264 0.0430255 0.0152188 +0.00550628 0.0441375 0.0457857 +-0.0652333 0.0338884 0.0112389 +0.0482587 0.0460086 0.000382582 +0.0586626 0.0538435 0.0111779 +-0.000982862 0.0386959 0.0236934 +-0.0245147 0.119422 0.0312229 +-0.0155858 0.183111 -0.0209193 +-0.0867126 0.0819778 0.0134931 +-0.0785905 0.0980977 0.0353146 +-0.0907184 0.115992 0.0263684 +-0.0614986 0.158424 -0.0305881 +-0.090971 0.141997 0.0221703 +0.049023 0.0722611 0.00748575 +-0.0495658 0.0446328 -0.00989725 +0.000576288 0.0353387 0.0179719 +-0.00263978 0.131127 0.015882 +0.0260716 0.115341 -0.00830033 +-0.0571034 0.0535249 0.00264062 +-0.0471993 0.162132 -0.00733312 +-0.0750917 0.0664543 0.00723246 +-0.0617686 0.159987 -0.035592 +-0.0267825 0.079725 -0.0369434 +-0.061465 0.0438948 -0.0044823 +0.0457823 0.0862054 0.00618349 +-0.065804 0.0609905 0.0192925 +0.0197913 0.0781802 0.0515303 +0.0377275 0.0928421 0.0353087 +-0.0179367 0.12631 0.000372783 +0.0437374 0.0902563 -0.00280325 +-0.00792408 0.0384127 0.0189094 +0.0556221 0.0493651 0.00819776 +0.00641397 0.0375702 -0.0238447 +-0.0274537 0.0485303 0.0479606 +-0.0610187 0.152669 0.0336579 +-0.078775 0.170042 -0.0371202 +0.0527843 0.0462443 0.0112063 +0.0173793 0.0631583 0.049653 +-0.0359664 0.162375 -0.00125909 +-0.0559722 0.134715 -0.00446003 +-0.0484961 0.113915 0.0346796 +-0.00776872 0.0756191 -0.0375185 +-0.085947 0.104892 0.00437979 +-0.0866438 0.152376 0.0233632 +-0.0520552 0.0559741 0.0276222 +0.060777 0.0637293 0.0161648 +-0.0634196 0.15027 -0.0277557 +-0.0514307 0.12406 0.0344067 +-0.00747581 0.101243 0.0443796 +-0.0489909 0.133982 0.00241474 +-0.0174145 0.118412 -0.0133815 +0.0106556 0.0345311 0.0225637 +0.0207029 0.0950845 -0.0226908 +-0.000596635 0.0433605 -0.0249736 +-0.0628762 0.0967673 -0.0179048 +0.0102648 0.0752773 0.0552991 +-0.0281556 0.17562 -0.0175208 +-0.00541266 0.130784 0.0163058 +-0.0708319 0.0345819 -0.00103676 +-0.0204551 0.0879984 0.0554627 +-0.0640233 0.0347562 0.0388023 +-0.0255632 0.0589456 -0.0304089 +-0.0856596 0.0858717 -0.000523015 +0.000533962 0.0773889 0.0579724 +-0.0911932 0.147489 0.0241289 +-0.0536699 0.0338623 0.0207675 +-0.0330023 0.0807475 -0.0275162 +-0.0598207 0.148547 -0.00150215 +-0.0292722 0.116973 -0.0137779 +0.0389134 0.0603588 -0.00677348 +0.00149281 0.111426 0.0424095 +-0.0567184 0.0723883 -0.016755 +-0.0557727 0.0333786 -0.00437552 +-0.0514926 0.0503999 0.033682 +-0.00426203 0.129106 -0.000929037 +0.0209419 0.0535563 0.0459234 +-0.0665114 0.0931036 0.0430214 +-0.0313926 0.112895 -0.0174931 +-0.0358232 0.127618 0.00522677 +-0.0126066 0.128516 0.0224096 +0.0435838 0.0705579 0.0258591 +-0.00308793 0.0379842 0.0148477 +-0.0348769 0.105695 -0.0204457 +-0.0787914 0.0724652 0.0224838 +0.022277 0.0678419 -0.0269851 +0.021809 0.1242 0.000142479 +0.00528322 0.0682375 -0.0327226 +-0.0813944 0.0817284 0.031574 +0.0109283 0.0616839 0.0526314 +-0.0233033 0.0429927 0.0537933 +0.0135067 0.1196 0.0353985 +-0.0856435 0.0805169 0.00650219 +-0.0555634 0.0386377 0.0471443 +-0.0925953 0.129683 0.0262582 +-0.0908852 0.150208 0.0181276 +0.0274474 0.0591653 0.0430806 +-0.0143101 0.113201 -0.0178955 +-0.0695125 0.145609 0.0428052 +0.002489 0.103843 -0.0219556 +0.034067 0.0981569 0.0371457 +-0.0663951 0.140334 -0.00790584 +-0.0462961 0.162745 -0.00789878 +0.0286561 0.108194 -0.012625 +-0.0852651 0.14863 0.0333956 +-0.0290693 0.0677067 -0.0294879 +0.0414097 0.104256 0.00616512 +-0.0693963 0.0393871 -0.00132267 +0.0255358 0.0435625 -0.00763706 +0.0562825 0.0508178 0.0201866 +-0.0867977 0.144597 0.036443 +-0.0252829 0.0751884 0.0479421 +-0.0224834 0.0681349 0.0481925 +0.0575606 0.0537805 0.0213286 +0.00845802 0.129083 -0.00108013 +0.0113649 0.0538487 -0.0294289 +-0.0501252 0.138572 0.00341268 +-0.074971 0.152728 -0.0179063 +-0.0312043 0.0422041 -0.0297469 +-0.0846068 0.0791109 0.00453817 +-0.0536323 0.0602894 -0.00841331 +-0.0171387 0.171259 -0.0162017 +0.0409378 0.0397959 0.0185201 +-0.0781974 0.153502 0.00273811 +-0.0824089 0.107319 0.0275588 +-0.0723216 0.169832 -0.0271166 +-0.0716176 0.109058 0.0379622 +0.000146179 0.101649 -0.0227639 +-0.0522094 0.0517797 0.0246371 +0.0118426 0.0562933 0.0521284 +-0.0625131 0.11843 0.0430565 +0.00861514 0.0345206 0.0221572 +0.0244049 0.0741131 0.0475942 +0.00453562 0.128718 -0.00265628 +0.0138565 0.129875 0.0119166 +-0.070378 0.149076 -0.0386493 +0.0445575 0.0847276 0.0241575 +-0.0157056 0.0599572 -0.0358177 +-0.0558806 0.154815 0.016521 +0.000379078 0.127909 -0.00372478 +0.0266539 0.122169 0.0209401 +-0.0679962 0.167786 -0.0255431 +-0.0920426 0.126958 0.0362532 +-0.0594207 0.0398239 0.0196241 +0.0364837 0.0469104 0.0311466 +-0.0568261 0.139571 0.0318926 +-0.053019 0.141421 -0.000504477 +0.0435234 0.0433666 0.0249665 +-0.0277895 0.06758 -0.0314768 +0.0362342 0.0398741 0.0247937 +-0.0212837 0.0381384 0.0164325 +0.0257555 0.0994695 0.0426751 +0.0399676 0.101315 -0.00381805 +-0.0152962 0.0433291 0.0513434 +0.0573469 0.0674291 0.0231143 +-0.0520755 0.0475411 0.0216528 +0.0328365 0.0876935 -0.0188869 +0.0143568 0.0522918 -0.0274834 +-0.0725069 0.145589 0.0436497 +0.00651279 0.0647152 0.0557475 +0.00953758 0.128186 0.0275085 +-0.052193 0.119749 -0.012566 +-0.0686715 0.165205 -0.0529941 +-0.0896326 0.092928 0.0134378 +0.0289756 0.116666 0.0289439 +-0.0642519 0.118577 0.0476092 +-0.0257723 0.182903 -0.0115399 +-0.0844232 0.100698 -0.00156743 +-0.0206629 0.0479548 -0.0285983 +-0.0532393 0.0448331 0.0206817 +0.00230145 0.0612209 -0.0331693 +0.020878 0.117607 -0.0107498 +-0.0818428 0.103274 -0.0045788 +-0.0184976 0.101625 0.0435583 +-0.0305 0.0674574 0.0390127 +-0.0485029 0.0452121 0.0424266 +-0.0929791 0.124188 0.0282747 +-0.0302252 0.0523701 -0.0173649 +0.00350969 0.0897377 0.0556751 +-0.0219245 0.161037 -0.00376903 +-0.0619129 0.0458194 0.037691 +-0.00376935 0.0769928 -0.0369082 +0.0411698 0.0806497 0.0314486 +-0.0115592 0.100495 0.0448823 +-0.063251 0.15135 -0.00497603 +-0.0271171 0.059077 -0.028426 +0.0053978 0.0390279 -0.0240405 +-0.0676491 0.065582 -0.00407795 +-0.063925 0.0448804 0.0097039 +-0.00969446 0.0598719 -0.0345693 +-0.0860777 0.110355 0.00735249 +-0.0152136 0.174214 -0.0186712 +0.00434041 0.0596672 -0.031584 +0.0213842 0.125707 0.00472943 +-0.0835093 0.13127 0.0505027 +0.0165672 0.128654 0.015768 +0.0285444 0.0459645 -0.0070843 +-0.0721129 0.15894 -0.00533295 +-0.0525858 0.147787 0.0204037 +-0.0465092 0.0776139 0.042786 +-0.00623267 0.10133 -0.0233757 +0.0572046 0.0564633 0.00317356 +-0.0122436 0.112093 -0.0187249 +0.00624351 0.0810351 -0.0338384 +0.0462734 0.0764388 0.00619417 +-0.0168246 0.0855538 -0.0389836 +-0.0869607 0.111738 0.00633151 +-0.0370469 0.152854 -0.00726744 +0.0405338 0.105622 0.0141627 +-0.0164738 0.10119 0.0439603 +-0.0854876 0.0791977 0.0105097 +0.0272664 0.0760665 -0.0234764 +-0.0438604 0.102816 -0.0213031 +0.00350403 0.0533854 0.0535456 +0.0169167 0.127898 0.0201801 +0.0184941 0.0838333 0.0510457 +-0.00847869 0.123725 0.0338017 +0.0387498 0.0659721 -0.0107606 +-0.0437917 0.0422818 -0.0193111 +-0.0126098 0.0384695 0.0251301 +0.0135799 0.0887495 0.0531421 +0.00935699 0.131232 0.0131197 +0.0135065 0.109861 0.0400106 +-0.0850182 0.0831804 0.00149618 +-0.0740846 0.0657329 0.0152043 +-0.0265661 0.0706408 0.0422848 +-0.0847398 0.106178 0.00238203 +-0.0345218 0.0818067 0.0425242 +-0.0428232 0.12861 0.00263817 +0.0121427 0.100268 -0.0226753 +0.0447259 0.0749152 0.000215102 +0.0232974 0.0648673 -0.0252072 +-0.0822784 0.0951136 -0.0065238 +-0.0614844 0.158425 -0.031588 +-0.0521163 0.12407 0.0351298 +-0.0424777 0.104302 0.0409096 +-0.00407779 0.0345848 -0.0173958 +-0.0284243 0.0487716 0.0462084 +-0.0184625 0.0729785 0.0545802 +-0.015609 0.128774 0.0111587 +-0.0694586 0.153877 0.0321166 +-0.0484639 0.149215 0.0104667 +-0.0526002 0.146245 0.0194042 +-0.0263327 0.111444 -0.0179843 +-0.0331847 0.0445939 -0.0279862 +-0.0538972 0.104145 -0.0195691 +-0.0294956 0.124519 0.0193203 +0.0346714 0.0916012 0.0397133 +-0.0247788 0.0379568 0.0140716 +-0.0643494 0.153359 -0.00540282 +-0.00557634 0.0347311 -0.0241073 +-0.0258097 0.0766327 0.0484243 +-0.00867178 0.0387364 -0.0146344 +-0.0783855 0.0873596 0.0368663 +-0.0346878 0.0651683 -0.0148251 +0.0404983 0.0499404 0.0324741 +-0.0738591 0.0964804 -0.0142486 +0.0267717 0.107644 -0.0140409 +-0.0404701 0.104257 0.0399236 +-0.0381489 0.0448685 -0.0242105 +-0.0095211 0.045789 0.0480158 +-0.0311715 0.171175 -0.0164295 +-0.0695038 0.173637 -0.0418473 +-0.0823392 0.111551 0.0443764 +-0.0227424 0.0655154 -0.0353045 +-0.0508568 0.0999518 -0.0219402 +-0.0589296 0.1241 0.041105 +0.000488727 0.108629 0.0427903 +-0.0412638 0.110187 -0.018624 +-0.0147098 0.0613984 -0.0362354 +0.0459347 0.0413813 0.0124396 +0.00323976 0.128177 0.0281353 +-0.0743879 0.143042 -0.00684484 +-0.0264004 0.0577755 0.0382862 +-0.00692431 0.038377 0.0191445 +-0.0864209 0.080641 0.0154973 +-0.077237 0.0721326 0.0266059 +-0.0686311 0.136892 0.0464956 +-0.0792347 0.153789 0.0287725 +-0.0537819 0.0840761 -0.0215562 +-0.0117053 0.0909225 -0.0365538 +0.0365178 0.0541167 0.0317039 +-0.0616584 0.114654 -0.0131207 +0.0390548 0.0884875 -0.0128108 +-0.0887111 0.101017 0.0193703 +0.0162822 0.0666125 -0.0295206 +-0.064714 0.0600149 0.00783247 +-0.0175786 0.180143 -0.0185198 +-0.0408442 0.152602 -0.00723164 +0.0352097 0.0379704 0.0208298 +-0.0618294 0.0342021 0.0275686 +0.0185142 0.0412688 -0.0207398 +-0.0195264 0.159643 -0.00556617 +0.0318624 0.0768516 0.0425881 +0.0347681 0.0641816 -0.0148052 +-0.0479777 0.147732 0.00938552 +-0.0126851 0.0570335 -0.0344182 +0.00495057 0.130435 0.00152594 +-0.0486835 0.0664435 -0.0136416 +-0.0356438 0.0562686 -0.010631 +-0.084499 0.088474 -0.00355332 +-0.0503848 0.141583 0.00270968 +-0.0858587 0.125737 0.0487678 +-0.0426772 0.14763 -0.000244299 +-0.0378831 0.156583 0.00477982 +0.00350659 0.0388434 0.0262887 +-0.0887855 0.102363 0.0143842 +-0.0646755 0.142507 0.0398915 +-0.0909161 0.13091 0.00724248 +-0.055962 0.0343325 0.0321978 +-0.0723047 0.162425 -0.0409479 +-0.0696851 0.11012 0.0394623 +-0.083003 0.0803028 0.000504056 +0.0247589 0.0435818 0.039017 +-0.0218764 0.182954 -0.0200262 +0.0236525 0.124901 0.0169603 +0.0463445 0.0561751 -0.00589814 +-0.0218308 0.117001 -0.0138605 +-0.0747558 0.067415 0.00253432 +-0.0625552 0.176839 -0.0611671 +-0.0660641 0.0384249 0.0148213 +-0.000107958 0.12991 0.000141982 +-0.054081 0.071101 0.0394438 +-0.00558231 0.0361988 -0.024956 +-0.0684451 0.117201 0.0519481 +0.0333957 0.0461492 -0.00598528 +-0.0146115 0.03779 -0.0266447 +0.00133195 0.0385877 -0.00128958 +-0.0348901 0.0738831 -0.020486 +0.0373363 0.105992 0.0277645 +0.0084546 0.131034 0.0184964 +-0.0324996 0.0498708 0.0403614 +-0.0444999 0.0719382 0.0422118 +0.0369643 0.0405549 -0.00158789 +-0.0354954 0.0733233 0.0419636 +-0.0457735 0.0826328 -0.0207974 +0.00732527 0.0595899 -0.0304419 +-0.0874242 0.111776 0.00733879 +-0.0592783 0.115234 -0.0137669 +-0.0928043 0.11882 0.0332998 +-0.0116325 0.0385039 0.00355749 +-0.0398903 0.0344806 0.00870734 +-0.0722375 0.138308 0.048356 +0.0262204 0.0344897 0.0111735 +-0.0200589 0.0348282 0.0498878 +-0.0246346 0.0382795 0.00294393 +-0.0889887 0.147168 0.0287003 +-0.0574968 0.1584 0.00209189 +-0.0329778 0.0448862 0.0466174 +-0.0605914 0.0623502 0.0262507 +-0.0785506 0.0699758 0.0176232 +-0.0362833 0.17342 -0.00108904 +-0.0627087 0.161508 -0.0465953 +-0.0397898 0.0855606 -0.0217035 +-0.0064056 0.10047 0.0472751 +-0.0646908 0.166411 -0.0300665 +-0.0508247 0.0941547 -0.0216781 +0.00716942 0.125754 -0.00749941 +0.000702847 0.0392103 -0.00758345 +-0.0407154 0.0462046 -0.018322 +-0.0401921 0.166668 -0.0117758 +0.0124864 0.11785 -0.0149995 +-0.0887986 0.114294 0.0264066 +-0.0614886 0.156862 -0.0235899 +0.0301602 0.0673157 0.0417954 +-0.0697061 0.156309 0.0202886 +0.0512708 0.0700979 0.0242688 +-0.00208274 0.0390983 0.0321346 +-0.091649 0.146116 0.0221478 +-0.0423664 0.0392174 0.0434612 +-0.0288487 0.0944704 -0.0247187 +-0.0724483 0.148649 -0.034807 +0.0270658 0.12207 0.0196667 +-0.0370838 0.159234 -0.0122889 +-0.00750248 0.0619634 0.0561006 +-0.0533112 0.162693 5.53048e-05 +-0.00276518 0.0755391 -0.036261 +-0.0186814 0.0539839 -0.0321072 +-0.0875792 0.134961 0.00324767 +0.0120758 0.0363869 0.044646 +-0.0753955 0.0901087 0.0394375 +0.0338247 0.108829 -0.00728203 +-0.0444976 0.0789577 0.0421738 +0.0235632 0.0862591 0.0483322 +0.0465947 0.0750442 0.0151558 +-0.0733825 0.135448 0.0501828 +-0.0150618 0.0383341 0.0229424 +-0.00891681 0.0351082 0.0414685 +0.0315143 0.0525771 -0.0117816 +0.045527 0.0791773 0.00219591 +-0.0464963 0.076159 0.0423522 +-0.0708979 0.122353 -0.00862039 +-0.08595 0.110378 0.0213654 +-0.0783775 0.103446 0.0335489 +-0.0758029 0.111217 -0.00664466 +-0.0554837 0.0805968 0.0447827 +-0.0353516 0.166776 -0.00214363 +0.0562979 0.0633024 0.00123284 +0.0465716 0.0440008 0.0231655 +-0.0476369 0.0591928 -0.0118235 +-0.0288774 0.169748 -0.00856256 +0.0153133 0.121135 -0.0105519 +-0.0397313 0.072486 -0.017441 +-0.016397 0.0337307 -0.02279 +0.0603039 0.0650788 0.0091381 +-0.0878637 0.152463 0.0169978 +-0.0754938 0.127441 0.0530403 +-0.067202 0.162346 -0.0569974 +-0.0865386 0.147279 0.0332936 +-0.0535025 0.0440354 0.0449405 +-0.0735938 0.149845 -0.0348818 +-0.0728566 0.162156 -0.0114327 +0.0495045 0.0651553 0.0285253 +0.012555 0.130318 0.0128667 +0.0220735 0.113988 0.0356074 +0.0224569 0.125562 0.0179459 +-0.0810243 0.0936828 -0.00856919 +-0.0756675 0.155622 -0.00260296 +-0.0431622 0.0422126 -0.0213185 +-0.000694781 0.0597985 -0.0333207 +0.0271246 0.0849281 0.0463473 +0.0173609 0.0897252 -0.0270298 +-0.0358944 0.0334964 -0.0263993 +-0.0576531 0.0612704 -0.00372094 +-0.00707611 0.0386628 0.0278929 +-0.0560526 0.151627 -0.00172465 +-0.030326 0.045 0.0496314 +-0.00103499 0.117326 -0.0163697 +-0.0252491 0.162472 -0.00507229 +0.00208806 0.113117 -0.0199282 +-0.0939 0.124133 0.015262 +-0.0129795 0.0384272 0.0232864 +0.00120237 0.0867098 -0.0346725 +0.0353317 0.112044 0.0241962 +0.00450167 0.0459455 0.0484199 +-0.0863511 0.0872693 0.000483167 +-0.0164554 0.0963571 0.0512639 +0.0121283 0.11013 -0.0187853 +-0.0778795 0.103388 -0.00866618 +0.0245137 0.102392 -0.0184072 +0.0201875 0.0974057 -0.022456 +-0.0168907 0.0921233 -0.0358082 +-0.0691832 0.153837 -0.0495596 +0.0155185 0.129225 0.0096832 +-0.00814574 0.0386661 0.000442505 +-0.0927289 0.125458 0.0102641 +-0.0846445 0.0832051 0.023501 +-0.0527541 0.0782706 -0.0196088 +-0.0206459 0.171255 -0.0142383 +0.0273486 0.110085 0.0362063 +-0.0144833 0.105825 0.0431811 +-0.0295885 0.120405 -0.00932945 +-0.0914492 0.117418 0.0293041 +-0.0259115 0.159753 -0.0130913 +-0.0498456 0.123179 -0.0101809 +0.0474532 0.047084 -0.00164907 +0.0201466 0.0658754 0.0483972 +-0.0546819 0.0486825 0.0116705 +0.0366139 0.0573407 -0.00875458 +0.016382 0.0888799 -0.0281622 +-0.0128318 0.0653357 0.0541739 +-0.0495043 0.073253 0.0416255 +0.0380257 0.084795 0.0357219 +-0.055962 0.148162 0.0296522 +-0.00335679 0.11693 -0.0159223 +-0.0164885 0.0382449 0.0155037 +-0.0943085 0.12145 0.0162821 +-0.0604949 0.104288 0.0411949 +-0.0485787 0.153602 0.0103738 +0.0214629 0.119376 0.0329783 +-0.00921964 0.0390042 -0.0131222 +0.046038 0.044353 0.0245911 +0.00963825 0.115048 0.0386641 +-0.077742 0.161125 -0.0199262 +-0.0274983 0.0932247 0.0447643 +-0.0237144 0.062529 -0.0332478 +0.0256802 0.0685786 0.0440967 +-0.000627469 0.039269 0.0340794 +0.0387649 0.0834441 0.0350467 +-0.0144799 0.123658 0.0314246 +-0.0415001 0.0733705 0.042415 +0.0543119 0.0722872 0.00750454 +-0.0799536 0.133905 -0.00443135 +-0.0728995 0.10646 -0.0108772 +0.0465866 0.0714909 0.00427537 +-0.0734754 0.158245 -0.0309204 +-0.0217961 0.0784868 -0.0389208 +0.0328256 0.0611992 -0.0167775 +-0.00849082 0.119665 0.0373867 +-0.0345047 0.106995 0.0387065 +-0.0624367 0.153758 -0.0135798 +0.0343704 0.104711 0.0323207 +-0.0583832 0.0335298 0.00219999 +0.0202943 0.113982 0.0365633 +0.0149493 0.0344805 -0.015521 +0.0238985 0.104719 0.0399907 +-0.0270163 0.155641 -0.00359794 +-0.0207265 0.111071 -0.0196229 +0.00439792 0.0404664 -0.024069 +-0.0314988 0.165308 -0.00534483 +-0.0506374 0.0334455 0.00204379 +-0.0518913 0.130385 -0.00375074 +0.00347876 0.039945 0.0459765 +-0.0174912 0.108558 0.0415716 +-0.0618685 0.158412 -0.0345942 +-0.0509699 0.122064 -0.0109984 +-0.0801245 0.0746668 0.000525034 +0.0485976 0.0429932 0.0132228 +0.0202555 0.0707617 -0.0282449 +-0.086473 0.130788 0.000288786 +-0.0859798 0.13928 0.042828 +-0.0419021 0.157999 0.00424081 +0.0301266 0.0646197 0.0417292 +-0.0241332 0.0349697 0.043675 +-0.0554996 0.0466308 0.0421953 +0.0244135 0.114257 -0.0111426 +-0.0687634 0.168362 -0.025835 +-0.0212185 0.178615 -0.022031 +0.0451425 0.0775553 0.0229667 +0.0084768 0.116844 0.0380952 +-0.0619218 0.112503 -0.0143567 +0.0015045 0.0661578 0.0563313 +-0.0473123 0.0369901 -0.0152765 +0.0576745 0.0551294 0.00518333 +-0.0736262 0.148585 -0.0238576 +0.055706 0.0507437 0.0211984 +0.0038008 0.130941 0.0210967 +-0.0360463 0.0347343 0.0430826 +-0.0865396 0.139093 0.00420465 +-0.000664914 0.0539666 -0.0309917 +-0.0785368 0.0694183 0.0145853 +-0.0521695 0.144678 0.0173655 +0.0205519 0.0414936 -0.0177079 +-0.0764027 0.109871 -0.00664525 +-0.0455151 0.0533187 0.0381544 +-0.010362 0.0388675 -0.00761727 +-0.0465826 0.121367 -0.0123258 +0.060067 0.0636708 0.0191758 +-0.0214848 0.0347602 0.0479269 +0.0295458 0.115836 -0.00482165 +0.0188031 0.106638 -0.0169667 +-0.00873489 0.068452 -0.036144 +-0.0504955 0.0733248 0.0417999 +0.00250961 0.101617 0.0444387 +-0.0134598 0.0645734 0.0539775 +-0.0304851 0.038633 -0.015152 +-0.00443456 0.111901 -0.0205597 +-0.038606 0.0392918 -0.0284798 +-0.022624 0.0450535 -0.0281102 +0.0262273 0.117277 0.0307934 +0.0282585 0.063629 -0.0207965 +-0.0649158 0.115218 -0.010913 +-0.0197994 0.0799106 -0.0390737 +-0.042508 0.0930307 0.0424902 +-0.0683794 0.0434664 0.00169373 +-0.0648724 0.131147 0.0430922 +-0.00487539 0.105927 -0.0225105 +-0.0678583 0.112732 0.0457592 +0.00821621 0.124741 -0.00840458 +-0.0564446 0.0520481 -0.00138381 +-0.020896 0.107686 -0.0220438 +-0.0919111 0.120015 0.00829626 +-0.0188214 0.0841215 -0.0388306 +-0.00848834 0.10866 0.0434392 +-0.0674721 0.0639504 -0.00252382 +-0.0321962 0.0487152 0.0429222 +0.0422051 0.0972089 -0.00180239 +-0.0312857 0.125233 0.0186818 +0.0348151 0.0605689 0.0379285 +-0.07566 0.1555 -0.0199215 +-0.0582195 0.03947 0.0465299 +-0.0144966 0.0687907 0.0546395 +-0.0630713 0.173863 -0.0616798 +0.0398379 0.0874103 0.0331324 +0.0167269 0.0821369 0.052401 +0.0403742 0.101353 -0.00282827 +-0.0622911 0.150653 -0.0125749 +-0.0707931 0.0879477 -0.0165704 +0.048521 0.043083 0.00923259 +0.0132697 0.0603324 0.0507028 +-0.0230427 0.038006 0.0179945 +0.0585617 0.0538351 0.0161785 +-0.0548868 0.108372 -0.0183778 +-0.0712698 0.156094 0.0241098 +-0.0053845 0.126096 -0.00772897 +-0.076026 0.151346 0.0359505 +0.00881068 0.127643 0.0286728 +-0.0229191 0.119996 -0.0109969 +-0.0702091 0.156071 0.0113882 +-0.0285896 0.0704574 -0.0325207 +-0.0373694 0.173381 -0.00150317 +0.043508 0.0438731 -6.08517e-05 +-0.0434927 0.0747943 0.0426652 +-0.0817644 0.0758778 0.0206878 +-0.00439411 0.0968663 -0.0305974 +0.00748123 0.0937253 0.0527164 +0.0101565 0.0860282 0.0551829 +-0.0132478 0.039072 0.0352601 +-0.0786774 0.168631 -0.0343418 +-0.0500333 0.148713 -0.00320857 +0.00694939 0.128215 0.0280149 +0.0132662 0.0737717 -0.03084 +-0.089989 0.142041 0.0291697 +-0.0298412 0.0944347 -0.0243277 +-0.0866185 0.103641 0.022352 +0.0179014 0.114016 -0.0148856 +0.0537258 0.0735615 0.0163564 +-0.0413654 0.128702 0.0120304 +-0.0855876 0.0939777 -0.00157288 +-0.0828574 0.0764021 0.018249 +-0.0454932 0.0491469 0.0390026 +-0.0317045 0.0693753 -0.0244624 +-0.0587034 0.0579543 0.010904 +-0.0269178 0.034755 0.0450156 +-0.0520173 0.146257 0.0174096 +-0.0759561 0.112612 -0.00567952 +-0.0164906 0.0786958 0.056769 +-0.0778425 0.108614 0.0370385 +0.0422463 0.0403355 0.0183005 +-0.0845698 0.0831877 0.0245094 +0.00429984 0.0654625 -0.0332399 +-0.0572715 0.0482006 0.0365817 +0.0290027 0.0741128 0.0436952 +-0.0600502 0.143934 0.0360579 +0.0366467 0.0673305 0.0371158 +-0.0199983 0.126616 0.0197793 +-0.0728415 0.165906 -0.0186805 +-0.0634251 0.128316 0.0434644 +-0.0437757 0.12944 0.0066621 +0.000274533 0.0683164 -0.033854 +0.00152244 0.03707 0.0220484 +-0.0349517 0.151884 -0.00344832 +-0.0271199 0.0347243 -0.0201972 +0.0433938 0.0426486 0.00136855 +0.000501319 0.0576739 0.0545888 +-0.0636327 0.155181 -0.0386163 +-0.0884108 0.0928321 0.00744302 +-0.0495652 0.0614019 0.0343808 +-0.0434939 0.0930777 0.0427388 +-0.0662865 0.178231 -0.0601734 +-0.054498 0.111159 0.0367038 +-0.0460532 0.057401 0.0380948 +-0.0820259 0.0858257 0.0320864 +-0.0277337 0.0521019 -0.0243965 +-0.00442413 0.130145 0.0224484 +-0.00149759 0.0549023 0.0548542 +-0.035558 0.0430076 -0.0284728 +0.0593498 0.066038 0.0207029 +0.0515344 0.0624078 0.0294591 +-0.0197872 0.118912 -0.0118682 +-0.0168075 0.0827608 -0.0394117 +-0.0487872 0.0545643 0.0352206 +-0.0311424 0.174761 -0.015609 +-0.0326324 0.0534241 -0.0105104 +0.00577065 0.131636 0.0103849 +-0.0185368 0.123815 0.0276913 +-0.0454963 0.0818291 0.0431013 +-0.0634376 0.179008 -0.0598746 +-0.00652958 0.0443624 0.0478753 +-0.0308041 0.0566412 -0.01742 +0.0448472 0.0735234 0.00122364 +-0.00349567 0.0504603 0.052334 +-0.0298753 0.0537337 -0.0203803 +-0.00256734 0.0388997 -0.00235847 +-0.0502892 0.0334774 -0.00701976 +-0.00481396 0.0840888 -0.0377627 +0.0387801 0.058953 0.031306 +-0.0243507 0.0852386 0.0537426 +-0.077502 0.0785105 0.0333799 +-0.0695501 0.0378481 -0.00149869 +-0.0313945 0.0862693 -0.0285563 +-0.0759552 0.133992 -0.00682355 +-0.0783042 0.161088 -0.0239376 +0.0512217 0.0595245 0.030012 +0.0455105 0.0777762 0.00219892 +-0.0860997 0.0805682 0.0085045 +-0.0347118 0.121713 -0.00868145 +-0.0621446 0.0384632 0.0179813 +-0.0124987 0.115524 0.0391996 +-0.0407326 0.0341812 -0.0112599 +-0.0762949 0.0689313 0.00454567 +-0.0900211 0.137875 0.0231818 +0.0335661 0.0612752 -0.015761 +-0.0620569 0.121268 0.0436785 +0.0389827 0.104151 0.026189 +-0.0724692 0.135469 0.0497506 +0.0222613 0.0692548 -0.0269722 +-0.0614967 0.0876222 0.0452319 +-0.0694862 0.120387 0.0531587 +0.0384699 0.0786144 -0.011749 +-0.0225096 0.10992 0.040117 +0.0140839 0.123776 -0.0073928 +0.0455444 0.0774866 0.0217209 +0.0421217 0.0751567 0.0292241 +-0.0637125 0.165316 -0.0311513 +0.00714876 0.108764 -0.0200496 +-0.0613421 0.118288 0.041013 +0.0150763 0.0900809 0.0517899 +0.0392297 0.0926988 -0.0100859 +-0.0707648 0.0836514 -0.0167885 +0.0199669 0.107838 -0.0162613 +-0.0573264 0.0521522 0.00163442 +0.03817 0.0983612 -0.0088053 +-2.43522e-05 0.0348774 0.0110061 +-0.0647928 0.0346609 0.0159953 +-0.0765127 0.164562 -0.0208538 +-0.0398786 0.107079 -0.0200332 +-0.0315509 0.053914 -0.013393 +-0.0689152 0.109432 -0.0116742 +-0.0426992 0.0344898 0.0348747 +-0.0113643 0.182132 -0.0288209 +-0.0251052 0.162299 -0.0151004 +-0.0745879 0.156108 0.0200327 +-0.0686632 0.162379 -0.0529737 +-0.0867316 0.100467 0.0250232 +0.0335218 0.0499029 0.0322045 +0.0110844 0.0345718 0.0406762 +0.047975 0.0710438 0.0215578 +-0.0471313 0.132491 0.00541336 +0.0385464 0.0954957 -0.00890109 +-0.055495 0.154378 0.0181054 +-0.0486202 0.0403225 0.04496 +-0.0918049 0.121541 0.0434848 +-0.0427276 0.129253 0.0100405 +-0.0641572 0.150753 -0.03179 +0.0203307 0.08353 0.050588 +-0.0025157 0.127417 -0.00520554 +-0.0664375 0.153657 -0.0486366 +0.00823253 0.112336 0.0401545 +-0.0239671 0.075324 0.0508435 +-0.0519769 0.0340995 -0.0134375 +-0.0444607 0.0902688 0.0428496 +-0.043053 0.153237 -0.00732462 +-0.0520076 0.145723 -0.00116844 +-0.0587286 0.0620484 0.0269094 +-0.0876727 0.111787 0.0358475 +-0.0843489 0.0925325 -0.00454911 +-0.00849886 0.0856701 0.0574538 +-0.0681283 0.146379 -0.0251159 +-0.0800217 0.102057 0.0324029 +-0.0662458 0.167287 -0.027765 +0.0214869 0.0865002 0.0492244 +-0.0485551 0.129676 -0.000935313 +-0.021529 0.17126 -0.0137526 +0.0263623 0.0808978 0.0469671 +-0.00180556 0.0384438 0.0201303 +0.0199827 0.116932 -0.0120267 +0.000700235 0.0374335 0.0215506 +-0.0849215 0.130733 -0.00170191 +-0.0566837 0.0492811 -0.00237706 +0.013902 0.054865 0.0498147 +-0.0487235 0.0738176 -0.0166605 +-0.0588289 0.089737 -0.0207103 +-0.00415565 0.0996194 0.0496007 +0.00922789 0.0860105 0.0556146 +-0.052373 0.126911 0.0347775 +-0.0647638 0.0397203 0.0149016 +-0.0375028 0.102851 0.0403695 +0.012678 0.130036 0.0186174 +0.01582 0.0346802 0.0234839 +-0.0834012 0.146003 0.0386574 +-0.0855432 0.111388 0.0330811 +-0.0905559 0.1297 0.0402277 +0.0225 0.108418 0.039052 +-0.034538 0.033729 0.00866796 +0.0580527 0.0523859 0.0111812 +0.0489522 0.045877 0.023734 +-0.0741385 0.0703655 0.0287707 +-0.0261092 0.0409213 0.0540071 +-0.0124916 0.0801274 0.0575032 +-0.0480938 0.0362157 0.0456887 +0.0295798 0.047722 0.0354768 +-0.051366 0.129708 0.032749 +-0.0258406 0.0339312 -0.0210821 +-0.0627466 0.0751872 -0.0173542 +-0.0208698 0.104444 -0.0228641 +0.0391583 0.108387 0.0121653 +-0.0217873 0.0728206 -0.0385569 +-0.00162182 0.0363065 0.0130228 +-0.0125908 0.182249 -0.0250896 +-0.0463216 0.125305 0.0258345 +0.00739775 0.110951 0.0406753 +-0.0698286 0.0965949 -0.0159812 +0.0495953 0.0662964 -0.000416722 +0.0214 0.116687 0.0346491 +0.0355013 0.0605581 0.0371681 +0.0347485 0.0981702 0.0363481 +-0.0784998 0.130283 0.0530344 +-0.0139533 0.0338864 -0.0205741 +-0.0185901 0.128007 0.0115203 +-0.0538047 0.0884108 -0.022116 +0.0213383 0.0635548 -0.0266585 +-0.0194915 0.120861 0.0324568 +-0.0347476 0.127441 0.00854521 +-0.0126238 0.0952928 -0.0330113 +-0.00102634 0.107271 -0.0216101 +0.0225395 0.0352111 0.00978173 +0.0193228 0.0679612 -0.0287395 +0.00111873 0.0344764 0.0134191 +0.0375161 0.110639 0.00638069 +0.0222494 0.0762728 -0.0263867 +-0.0729386 0.0646873 0.0146181 +-0.0397368 0.0739371 -0.0178005 +-0.0543178 0.0387289 0.0471882 +0.016338 0.0566541 -0.0286494 +0.0299119 0.0491593 0.0359714 +0.0525507 0.0462401 0.0172033 +0.0138891 0.0942573 -0.0257865 +-0.00745761 0.0338748 -0.0230567 +-0.073507 0.121801 0.0535653 +-0.0771635 0.0705018 0.0227664 +0.014215 0.083589 -0.0300782 +0.0187635 0.105558 -0.0177865 +-0.0943455 0.121485 0.0232874 +-0.0190471 0.0582949 0.0492947 +-0.0482842 0.164088 -0.00583628 +0.00750123 0.074495 0.0564449 +0.0114903 0.0896115 0.0540357 +0.0111129 0.0739356 0.0547693 +-0.0243199 0.0387345 -0.0140132 +0.0343886 0.107359 0.0305696 +0.0280618 0.0416802 0.0314173 +0.01142 0.0374719 -0.022733 +0.0330999 0.114889 0.024788 +-0.0199406 0.122541 -0.00772092 +-0.0662581 0.15274 0.0347724 +0.00215199 0.101646 -0.0224127 +0.0164932 0.112605 0.0382483 +-0.06512 0.166493 -0.0287867 +-0.0848366 0.0898781 -0.00356125 +-0.0321536 0.0380399 -0.0168 +-0.000666067 0.037425 0.0194672 +-0.0009793 0.0356154 0.0137824 +-0.0338572 0.100054 -0.0225702 +-0.0466969 0.0694537 -0.0155404 +-0.0236112 0.0386852 0.0334692 +0.0506847 0.044695 0.00922239 +0.0143403 0.11733 -0.0144441 +0.0447757 0.0875223 -0.000814326 +0.0359341 0.0727624 -0.0138488 +-0.0526285 0.0588799 -0.00854194 +-0.090746 0.114598 0.00833305 +0.0454568 0.0819591 0.00221362 +-0.0191965 0.175667 -0.0232885 +-0.062765 0.0780997 -0.0182585 +0.0414338 0.0676164 -0.00577635 +-0.053491 0.113891 0.0350292 +0.0043588 0.0510132 -0.0293749 +-0.00874604 0.0713519 -0.0371122 +0.0193852 0.0915557 -0.024942 +-0.0944514 0.122808 0.0172688 +-0.00774122 0.115628 -0.0165086 +-0.0406319 0.0534345 -0.0110028 +0.0230588 0.0463265 0.0401038 +-0.0769246 0.0689689 0.00654258 +0.0278197 0.108769 0.0368873 +-0.078478 0.142827 0.0455967 +0.0339472 0.0368914 0.0179028 +0.0140143 0.0357038 0.00388789 +-0.0699623 0.155307 -0.0499609 +-0.0144161 0.0343188 -0.0191903 +-0.044261 0.122001 0.0258917 +-0.064466 0.170264 -0.0443864 +-0.0614851 0.112533 0.0365644 +-0.0649074 0.120907 -0.00883756 +0.0114806 0.097647 0.0487825 +0.00178793 0.0344587 0.00626566 +0.0404914 0.098527 -0.00482713 +-0.0714142 0.166619 -0.0469903 +0.0553639 0.0729653 0.0110394 +-0.00645384 0.126073 -0.0076982 +-0.042494 0.0676556 0.0412962 +-0.0328931 0.0486572 0.0421875 +-0.0218312 0.0882119 -0.0370399 +0.0433826 0.0987102 0.00417641 +-0.034498 0.0533048 0.037996 +-0.0749535 0.0823401 -0.0135889 +-0.0755022 0.131669 0.0524935 +-0.0118269 0.118985 -0.0140536 +-0.0698809 0.100876 -0.0145572 +-0.0920212 0.128183 0.00926455 +-0.0277533 0.155598 -0.00253083 +-0.0155991 0.0421323 -0.0272897 +0.0125549 0.119968 -0.0132874 +-0.0862929 0.15121 0.027304 +-0.0726068 0.147127 -0.0218633 +-0.0713282 0.0982044 0.0407618 +-0.023785 0.0621839 0.0426152 +-0.0294793 0.0446083 0.0503994 +0.050676 0.0693821 0.00244948 +-0.0520559 0.142894 8.38275e-05 +-0.085494 0.083212 0.00349969 +0.0219046 0.0892697 -0.0245066 +-0.0923861 0.125586 0.0352607 +-0.0578149 0.12313 -0.00798101 +-0.0630458 0.0345815 0.0177326 +-0.0890554 0.0888307 0.00946144 +-0.066735 0.167252 -0.0265095 +0.0143257 0.0594816 -0.0287805 +0.00349695 0.0519735 0.0532512 +-0.0658642 0.141582 -0.00840157 +0.014169 0.0603418 0.050255 +-0.0638047 0.152122 -0.00224548 +0.0332402 0.0814034 -0.0189012 +-0.0246071 0.0408479 -0.0291354 +-0.0320867 0.0651952 -0.0194497 +-0.0719291 0.0394019 0.00652921 +-0.0297834 0.0409697 0.0520218 +-0.035582 0.0336826 0.00849877 +-0.088744 0.0996845 0.0203875 +0.0516874 0.0662489 -0.000355134 +-0.0802571 0.096729 0.0342047 +-0.0669809 0.135535 -0.00827796 +-0.069479 0.0337046 -0.000209101 +-0.0675145 0.148386 0.0398761 +-0.0805311 0.123088 0.0509172 +-0.0084955 0.0503277 0.0510127 +0.00205693 0.129985 1.8398e-05 +-0.0172313 0.12808 0.0178394 +0.00170313 0.0343139 0.0118694 +-0.0773727 0.156953 -0.0129034 +-0.0717154 0.0632455 0.0160979 +0.00858548 0.0340902 -0.01633 +0.0124197 0.0403679 -0.0230567 +-0.0511271 0.116882 0.0329705 +-0.0728598 0.0355014 0.00645302 +-0.0791962 0.16801 -0.0379842 +-0.00268972 0.128069 -0.00389854 +0.0597918 0.0567046 0.013171 +0.0154995 0.111258 0.0392925 +-0.019299 0.0668878 0.052102 +-0.0233826 0.0866124 0.0541509 +0.0432138 0.091668 0.0251628 +-0.0396808 0.0636721 -0.0135815 +0.00652038 0.0518639 0.0525018 +0.0124104 0.0389053 -0.0225983 +-0.0119403 0.171322 -0.0192115 +-0.069435 0.0972593 0.0417284 +-0.0942583 0.125557 0.0232684 +0.030238 0.0814876 -0.0201701 +0.0449279 0.0945923 0.00916323 +-0.0553588 0.131132 0.0357618 +0.00929414 0.0653548 -0.0316941 +-0.0357484 0.0768864 -0.0192776 +-0.062693 0.156802 -0.0376031 +-0.0460193 0.128067 0.0236255 +0.0133301 0.0609017 -0.0290805 +0.00152141 0.0773467 0.0574533 +-0.0636035 0.156128 0.0166435 +-0.0361137 0.162217 -0.0137308 +-0.0595062 0.0386574 -0.00901889 +-0.0620309 0.153757 -0.0155846 +-0.0533723 0.122605 0.0368904 +-0.0264702 0.0676761 0.0408217 +-0.0147452 0.123455 -0.00671201 +-0.0703548 0.0643588 0.00158224 +-0.0814272 0.0752484 0.0195365 +0.0402499 0.0787503 -0.00875238 +-0.00644119 0.0828529 0.0570838 +0.0242228 0.0902502 0.0474811 +0.0336268 0.0557054 -0.0117007 +-0.0623153 0.13671 0.0362243 +0.0149059 0.124307 -0.00595517 +-0.0401601 0.165169 -0.0119868 +-0.077431 0.108115 0.0357399 +0.0402513 0.0940026 0.0302416 +0.0370616 0.0382621 0.0191175 +0.0225195 0.106011 0.0397482 +-0.0255993 0.037974 -0.029094 +-0.0759547 0.129619 -0.00760722 +-0.0360191 0.153642 0.00214438 +0.0596848 0.0566967 0.0151763 +-0.0264473 0.181471 -0.0150302 +-0.0346676 0.0359024 -0.017193 +0.0391135 0.0904981 -0.0117677 +0.00550174 0.0745058 0.0566062 +-0.0615874 0.117934 -0.0105067 +-0.0897323 0.115129 0.0291209 +0.0371127 0.037099 0.0128773 +0.000643571 0.127035 0.0301068 +0.04471 0.0789677 0.024116 +-0.0294983 0.0588236 0.0368769 +0.0243457 0.102123 0.0424029 +-0.0890326 0.125361 0.00330134 +-0.0671124 0.0618759 0.00376788 +0.0207378 0.105279 -0.0174962 +-0.0640597 0.156709 -0.043612 +-0.053836 0.112592 -0.0169505 +-0.0738585 0.0762694 0.0355202 +-0.00709045 0.130506 0.0171336 +-0.0735939 0.077695 0.036626 +-0.0453238 0.169855 -0.00399069 +-0.0609112 0.060145 0.00105228 +-0.0602298 0.119796 0.0409592 +-0.037803 0.0885803 -0.0235006 +0.0220645 0.0375334 0.0362702 +-5.6077e-05 0.112952 -0.0196345 +-0.0156034 0.097548 -0.0273897 +0.0330435 0.104766 0.033885 +0.0234619 0.0343557 0.00702041 +0.0309186 0.094253 -0.0177648 +-0.0406484 0.0563266 -0.0113192 +0.0305338 0.0929359 0.042541 +-0.0713282 0.155382 -0.0439108 +-0.0246656 0.0492403 -0.0269082 +-0.0344954 0.118007 0.0312549 +0.03264 0.0822319 0.0419892 +0.0393737 0.0381589 0.0105128 +0.00986741 0.131059 0.0147331 +-0.0521114 0.156091 -0.00406652 +0.0125143 0.121868 -0.0113432 +-0.019839 0.0610753 0.0486026 +-0.0714347 0.109953 0.0409933 +-0.0435006 0.115257 0.0335166 +-0.0700918 0.147968 0.0410511 +-0.0628279 0.151059 0.0360546 +-0.0269995 0.0383068 0.000625566 +-0.0459023 0.0546326 0.0380387 +-0.0705411 0.0860609 0.0417748 +-0.0360717 0.157766 -0.0114869 +0.018169 0.108481 -0.0169141 +-0.0656915 0.0720893 -0.0135891 +-0.0604976 0.0847283 0.0441029 +0.00648432 0.0413231 0.0455852 +-0.0757282 0.0754387 0.0328339 +0.00417753 0.0922823 -0.0325433 +-0.0272993 0.0381948 -0.0178418 +-0.0315044 0.0860003 0.0426216 +-0.00681874 0.0868473 -0.0370495 +0.0396972 0.0744788 -0.00980523 +0.0376515 0.0947835 -0.010301 +-0.078491 0.121738 0.0515581 +-0.0274838 0.105666 0.0409158 +-0.0202559 0.0365056 -0.0280118 +0.0201693 0.125674 0.00144037 +-0.0587501 0.0482189 0.00571238 +-0.013346 0.168342 -0.0159797 +-0.0683811 0.149044 -0.0363633 +-0.0558475 0.0343686 0.0374162 +-0.0590903 0.0626036 0.0281123 +-0.0331372 0.0336314 -0.0222436 +-0.0678611 0.0980605 -0.0159397 +-0.0472308 0.0334623 0.00452598 +-0.0167567 0.0714512 -0.0386579 +-0.0184671 0.10319 -0.0232847 +-0.0675365 0.0805511 0.0417814 +-0.0666009 0.15275 -0.0468174 +-0.00387787 0.10737 -0.022403 +-0.0300213 0.0579734 -0.0204069 +-0.00579466 0.103184 -0.0232761 +-0.0775304 0.143071 -0.00473432 +-0.00757151 0.0346922 -0.0244599 +-0.0355091 0.0676694 0.0413832 +-0.0185092 0.127137 0.00354165 +0.0289004 0.0650837 -0.0199869 +-0.0224914 0.04868 0.0491885 +-0.0194885 0.0856172 0.056795 +-0.0625301 0.147537 -0.0105732 +0.00324634 0.0726279 -0.0347233 +-0.0117444 0.129778 0.0154481 +0.0381223 0.106958 0.0251953 +0.0134297 0.0343278 -0.0118215 +0.00450615 0.0772491 0.0561317 +0.00914326 0.112364 0.0397506 +0.0165994 0.0933382 -0.024824 +-0.0530349 0.0448324 0.0176964 +-0.0861503 0.0818963 0.00748815 +-0.07574 0.144451 -0.00587632 +-0.0796195 0.104749 0.0319273 +0.0404835 0.052774 0.0322642 +0.0420568 0.0986443 0.0231563 +-0.0887511 0.102351 0.0133854 +0.0132668 0.0723896 -0.0312102 +-0.0507233 0.0723393 -0.0157137 +-0.00754786 0.039018 -0.00905888 +-0.0488259 0.138613 0.00940263 +0.0057745 0.128094 -0.00399317 +-0.0523396 0.147791 0.0193952 +-0.048265 0.136372 0.0159973 +-0.0604426 0.0470258 0.0346715 +0.0367367 0.0902141 0.03744 +-0.0895793 0.136441 0.0122186 +0.0376089 0.108292 0.000165208 +0.0353713 0.0915869 0.0389643 +-0.0211976 0.0347654 0.0444796 +0.00223085 0.129379 -0.00131325 +-0.0737831 0.0864021 -0.0154104 +-0.0127393 0.0700008 -0.0380391 +-0.0657273 0.0751276 -0.0164058 +0.00937487 0.0377648 0.0302588 +-0.035816 0.0448118 0.0437923 +-0.0549046 0.102722 -0.0198351 +0.0460481 0.046714 0.0276632 +0.00759173 0.131318 0.00819364 +-0.0721931 0.161015 -0.0399435 +0.0102622 0.0710503 -0.0323195 +0.0194745 0.0851519 0.050256 +-0.0399319 0.0345158 0.0389424 +-0.0616692 0.167812 -0.0545903 +-0.0056922 0.0584499 -0.034018 +-0.0203692 0.094546 -0.032294 +-0.070351 0.158156 -0.0469171 +-0.023866 0.103031 -0.0237009 +0.0528846 0.0533107 -0.0017243 +-0.0319516 0.077812 -0.0315646 +0.00951738 0.0660057 0.0546772 +0.0137336 0.122464 0.0333928 +-0.0199595 0.125484 -0.000738697 +0.00049871 0.116947 0.0399069 +-0.0359892 0.0344491 0.0345711 +-0.0443682 0.129764 0.015339 +0.0452819 0.0932028 0.00617084 +-0.00813465 0.0391286 -0.0130168 +0.0394097 0.0618135 -0.00677045 +-0.0701845 0.158483 -0.00465374 +0.0322675 0.102123 0.0362847 +-0.0374987 0.0819015 0.0436538 +0.0396969 0.0616754 0.0309066 +-0.0455673 0.0475992 -0.010259 +-0.0527627 0.115451 0.034109 +0.0208176 0.0631975 0.0476002 +-0.0618301 0.0924936 -0.0189652 +-0.053883 0.150856 0.0253998 +0.0245243 0.105615 0.0392344 +0.00385761 0.129628 0.0254511 +-0.00549072 0.0488848 0.0502608 +-0.0300389 0.036799 0.0524219 +-0.0580426 0.153536 0.0303048 +0.0220166 0.125337 0.0220596 +0.0312265 0.0393227 0.0260732 +-0.0171047 0.17569 -0.0178772 +0.016571 0.0940211 0.0486896 +-0.0505514 0.0338848 0.0267025 +-0.0625417 0.0410514 0.0154849 +0.0355348 0.112677 0.0214127 +0.00150774 0.0897546 0.056027 +-0.0190957 0.0968508 -0.0266962 +0.0511508 0.0608575 0.0299274 +0.0163905 0.0491901 -0.024833 +0.0345652 0.114846 0.0110543 +0.0581139 0.0523629 0.0131822 +-0.0417396 0.0754091 -0.018561 +-0.0814751 0.118981 0.0489466 +0.00013405 0.105909 -0.0216496 +-0.0908345 0.139239 0.02018 +-0.0424766 0.101515 0.0416909 +-0.0260624 0.0837492 0.0512652 +-0.0500875 0.0531258 0.0337221 +-0.0706477 0.0874116 0.0418374 +-0.0366978 0.0363155 -0.0300943 +0.00451245 0.064772 0.0563635 +-0.0753069 0.109577 0.0422017 +-0.0284025 0.119846 0.0286714 +0.033406 0.0822268 0.04133 +0.0595932 0.0608555 0.0201843 +-0.00204808 0.0983649 0.051847 +-0.0574847 0.0623327 0.0283417 +-0.0229389 0.126187 0.00412352 +0.0390327 0.0744186 -0.0107818 +-0.0855097 0.129367 -0.00169404 +-0.0647036 0.0653044 0.0298737 +-0.0064934 0.10867 0.043581 +-0.0685164 0.0669975 0.0293604 +-0.0705096 0.1624 -0.046948 +0.0125251 0.129483 0.0214195 +-0.0221845 0.172691 -0.0208918 +0.0153262 0.0767707 0.0538598 +-0.0905235 0.137837 0.0161933 +-0.0545439 0.0402656 -0.0102441 +-0.0688509 0.171089 -0.0344529 +-0.0884641 0.0887716 0.00547605 +-0.0903526 0.116014 0.0283099 +-0.0623807 0.147545 -0.00857398 +-0.061927 0.109672 -0.0156348 +-0.0579856 0.116646 -0.0132522 +0.0395731 0.0448559 0.0300931 +0.00658391 0.130753 0.00354793 +-0.0647804 0.153444 -0.00410741 +0.00522677 0.078235 -0.0342467 +-0.0495662 0.0335706 -0.0032948 +0.00181081 0.131692 0.0146438 +-0.0635975 0.15411 -0.00948093 +-0.0855227 0.133522 0.000289437 +-0.025262 0.107417 -0.0217613 +-0.0340021 0.0409714 0.0491624 +-0.0146057 0.0406867 -0.0271172 +-0.0174894 0.0687336 0.053904 +-0.01522 0.183001 -0.0269465 +-0.0500642 0.142991 0.00242772 +-0.0679313 0.0622594 0.0032802 +-0.0551811 0.133216 -0.00483226 +-0.0284216 0.0792864 0.045297 +0.00824429 0.0809884 -0.0331618 +0.00929618 0.123787 -0.00937811 +0.0228212 0.0889774 -0.0242065 +-0.0185099 0.0883573 0.0560195 +0.0282298 0.0717826 -0.0228933 +-0.0251238 0.125152 0.00185767 +0.019545 0.103378 0.0442321 +-0.0673703 0.122848 0.0518073 +0.0357587 0.067099 -0.014806 +0.00197653 0.0987575 -0.0246237 +-0.0655762 0.155146 -0.00586759 +0.012488 0.119576 0.0355898 +-0.0514967 0.101534 0.0419051 +-0.0095351 0.0444416 0.0488648 +-0.00470695 0.0982478 -0.0280611 +-0.05601 0.0575293 -0.00241387 +-0.0602761 0.139548 0.0339321 +-0.0517453 0.0753545 -0.0181561 +-0.038969 0.042042 0.0415955 +-0.0636896 0.064322 -0.00564195 +-0.0398457 0.0985451 -0.0219087 +-0.0191826 0.127252 0.0185952 +-0.0873123 0.0886781 0.00248146 +-0.0488082 0.0884112 -0.0217819 +-0.0498768 0.104205 -0.0203216 +-0.0409029 0.149467 0.00342301 +-0.069185 0.156032 0.0248455 +-0.0506717 0.0501974 0.0196351 +-0.0301161 0.0396403 0.0523893 +-0.000520242 0.104454 0.0440018 +-0.0290025 0.0578755 -0.022406 +-0.0610145 0.0336026 0.00878975 +-0.0917872 0.143341 0.0171661 +-0.0279974 0.0383174 -0.0050935 +-0.0913132 0.113305 0.0163255 +0.0313508 0.109263 -0.00976359 +-0.00332487 0.0387243 0.0268007 +0.0222104 0.125239 0.00503339 +-0.04503 0.129294 0.00327025 +-0.0176724 0.0933571 0.0538975 +-0.0234883 0.0487024 0.0493089 +0.0421092 0.0724515 0.0291612 +-0.0653912 0.159256 -0.0130566 +-0.00402317 0.0387663 0.0011878 +-0.0338313 0.0929547 -0.0239607 +0.00379004 0.0367184 0.046186 +-0.0186801 0.0525094 -0.0314832 +-0.0351354 0.165203 -0.0147634 +-0.0705038 0.108294 0.0372772 +0.0246817 0.0360382 0.0240669 +-0.0204805 0.0828473 0.0567838 +0.0326609 0.0673309 0.0401471 +-0.0296335 0.0635627 -0.0254272 +-0.0548571 0.0546624 -0.0043828 +0.00968485 0.0342244 -0.0162577 +-0.0810826 0.144759 0.0420272 +0.00767659 0.0346834 0.0054103 +-0.0830301 0.110196 0.00131843 +-0.00544058 0.119032 -0.0141551 +-0.0255852 0.0930492 -0.0306058 +-0.0714911 0.116102 0.0521112 +0.0318609 0.0710037 -0.0187224 +0.0280264 0.121739 0.0100361 +-0.0514799 0.0384723 -0.0115832 +-0.0764395 0.0988661 -0.011539 +-0.0186212 0.04503 -0.027692 +0.0334766 0.0519565 -0.00767966 +-0.0541438 0.151337 0.0259237 +-0.00148294 0.0606073 0.0558577 +0.0148272 0.0344434 -0.00977208 +-0.0391932 0.171233 -0.0109027 +-0.035755 0.0783248 -0.0195335 +0.0355134 0.0795005 0.0390801 +0.0603494 0.0609121 0.0171857 +0.0394635 0.075864 -0.00982057 +-0.0470363 0.0359078 0.0451061 +-0.0608634 0.154346 0.0292597 +-0.0748097 0.109257 0.0407877 +-0.0262745 0.0692227 0.0420449 +0.0243768 0.0533073 -0.022554 +-0.0530668 0.0348658 0.0444554 +0.0259946 0.0347155 0.014606 +-0.0591124 0.121234 0.0408265 +-0.0144894 0.112737 0.0404341 +-0.0838486 0.0803675 0.00250235 +-0.0582446 0.13534 0.0351018 +-0.0214986 0.100246 0.0444424 +-0.0713881 0.068562 0.0291565 +-0.0155474 0.160527 -0.0107791 +0.0215063 0.107058 0.0398344 +-0.0331542 0.158077 0.00281987 +-0.0863235 0.110381 0.0203696 +-0.0312005 0.162424 -0.00314295 +0.0384543 0.0395883 0.0218564 +0.0385307 0.0554981 0.0313684 +-0.0114896 0.0560578 0.0523304 +0.0593092 0.0622231 0.0211664 +-0.0648434 0.0339553 0.0130374 +0.0180082 0.0355585 0.00482766 +0.0399371 0.077993 0.0331058 +0.00160174 0.0351275 0.0454175 +-0.032718 0.0396362 0.0507617 +-0.0524899 0.0973506 0.0433264 +-0.032502 0.104286 0.0408563 +-0.00468764 0.0584239 -0.0337898 +-0.0672529 0.0760725 0.0393761 +0.0584714 0.0552095 0.0201836 +-0.0416396 0.0548863 -0.0113812 +0.014767 0.129313 0.0151085 +0.0271615 0.0578042 0.0426556 +-0.0133509 0.0384568 0.00507202 +-0.0770775 0.0703016 0.00351307 +-0.0514866 0.0748352 0.0426181 +-0.0882111 0.0936365 0.0238814 +-0.0906238 0.143032 0.0276653 +0.0233319 0.059176 0.0459237 +-0.036826 0.0446589 -0.0260242 +0.0332346 0.0955533 0.0394336 +-0.000484271 0.038989 -0.00201961 +0.0427221 0.101476 0.00816485 +0.0419002 0.102864 0.0131587 +-0.0208004 0.181643 -0.0143459 +0.0352424 0.0726953 -0.0147969 +-0.0234839 0.0509996 0.0435588 +0.0352381 0.0443124 0.029693 +0.000403091 0.0348316 -0.0232847 +-0.0684959 0.10279 0.039811 +0.019265 0.0708008 -0.0287723 +-0.0516068 0.0345225 0.0433683 +0.0391514 0.0617239 0.0318804 +0.0135008 0.111258 0.0394003 +0.0304359 0.108504 -0.0109544 +-0.038743 0.0768256 -0.018638 +-0.0223183 0.094515 0.0486399 +-0.0435018 0.0478421 0.040059 +-0.0727332 0.173623 -0.0510446 +-0.00349112 0.118315 0.0390164 +-0.0884421 0.133772 0.0426038 +-0.0454967 0.109818 0.0383281 +-0.0145 0.0392233 0.0384538 +-0.00466385 0.129429 0.0252614 +-0.00582274 0.088227 -0.0364178 +-0.0454902 0.0352033 -0.0224188 +-0.0348607 0.100046 -0.0224582 +-0.0792519 0.17071 -0.0410714 +-0.0376133 0.0393512 -0.0290006 +-0.0640598 0.170094 -0.0457055 +0.0303225 0.119467 0.0166127 +-0.0902791 0.116199 0.0435835 +0.0222032 0.0352055 0.0243097 +-0.073336 0.0968702 0.0400088 +-0.0376144 0.0393494 0.044329 +-0.0105011 0.0870252 0.0569814 +-0.0507332 0.161533 -0.00440491 +-0.0779412 0.162504 -0.0229403 +-0.0754919 0.128859 0.0530266 +-0.0541372 0.0344723 0.0359505 +0.0113242 0.0581457 -0.0297724 +-0.0442953 0.0391467 0.0441537 +0.0242713 0.035754 0.000294462 +-0.0615051 0.159991 -0.0325895 +-0.00166807 0.0568963 -0.03242 +-0.0119937 0.164096 -0.013967 +0.0166698 0.0900802 0.0505874 +0.0232051 0.0672264 0.0457926 +-0.0547028 0.0693497 -0.0142348 +-0.0645039 0.15312 0.03389 +-0.0344884 0.0918084 0.0445658 +0.0553932 0.0493283 0.0071983 +-0.047221 0.115086 -0.0157836 +-0.0737507 0.0835282 -0.0152437 +-0.00700363 0.0992954 0.0501023 +-0.0124605 0.0646213 0.0545516 +-0.0529942 0.0345374 0.0413527 +-0.0926054 0.122844 0.0302746 +-0.0652377 0.0419529 0.0337045 +0.0450967 0.0889619 0.00117113 +-0.0632063 0.0448721 0.0103941 +-0.0177692 0.074285 -0.0389303 +-0.0226723 0.0582322 -0.0321918 +-0.0233871 0.0380454 0.010662 +0.0144228 0.120472 -0.0118376 +-0.00758227 0.0362053 -0.0250795 +-0.0394882 0.0804267 0.0429074 +0.0505096 0.0651476 0.0284061 +0.0412879 0.0914659 -0.00877665 +-0.0613587 0.0343255 -0.00949544 +-0.0739143 0.148544 -0.0218644 +-0.0607701 0.0447346 0.0418038 +-0.0300938 0.0476999 -0.0248901 +-0.0666558 0.0720875 -0.0129051 +-0.0732714 0.156195 0.0132096 +-0.0340151 0.0498932 -0.013349 +-0.0484988 0.0762375 0.0432182 +-0.0614924 0.0384787 0.0187446 +-0.0572292 0.155416 0.0145778 +-0.0105966 0.0391805 -0.0262222 +0.00120442 0.117582 -0.0166604 +-0.070211 0.165211 -0.0489867 +0.0483875 0.0444574 0.00325794 +-0.0764978 0.13308 0.0521415 +-0.035201 0.0345651 0.0381519 +-0.00449959 0.107273 0.0439086 +-0.0266181 0.042276 -0.0292233 +-0.0364985 0.120712 0.0292752 +-0.0735593 0.15583 0.0102013 +-0.0554797 0.0848037 0.0450617 +-0.0845128 0.0817443 0.00347449 +-0.0169788 0.106067 -0.0223329 +-0.0699464 0.151677 0.0365135 +-0.0160243 0.0897174 -0.0373532 +-0.035698 0.0857595 -0.0237144 +-0.0308696 0.105755 -0.0215547 +-0.0475005 0.084795 0.044997 +0.00720445 0.088027 -0.0329216 +0.0388792 0.085648 -0.0137779 +-0.0451911 0.163637 -0.00858913 +-0.0752855 0.176467 -0.0519633 +-0.0568165 0.155074 0.0161832 +0.0369538 0.108295 0.0261877 +-0.0788782 0.172865 -0.0427748 +-0.0439777 0.0345259 0.038072 +0.0238242 0.0981836 0.0451545 +-0.0394936 0.0548399 0.0395943 +0.0242629 0.0790161 -0.0251629 +-0.0665084 0.0903473 0.0440273 +0.0291366 0.0495584 -0.0147305 +0.0191581 0.0357679 0.0376614 +-0.0278785 0.0535209 -0.0244081 +-0.00947834 0.12371 0.0334225 +-0.0570388 0.149629 0.0316784 +0.0117574 0.130329 0.0182774 +-0.00158005 0.131357 0.0134024 +-0.0657222 0.0431534 -0.00229362 +0.0404535 0.0689201 -0.00879299 +-0.0195496 0.161752 -0.0147401 +0.0435566 0.0695959 0.0259839 +-0.0893231 0.14203 0.0321578 +-0.0832597 0.10897 0.0263609 +0.00296745 0.0390391 -0.00510833 +0.0160439 0.0505074 0.0458237 +-0.0213985 0.181639 -0.0134576 +0.000249699 0.0347599 0.0129869 +-0.0138688 0.163706 -0.0171714 +-0.0787597 0.163865 -0.0299483 +-0.0321103 0.178539 -0.0110044 +-0.0062818 0.102371 0.0437669 +-0.0504236 0.113946 -0.0165184 +-0.0808373 0.0858965 0.0337281 +-0.0833697 0.0790868 0.0225099 +0.0174757 0.101745 0.0462033 +0.0562413 0.0521934 0.00418603 +-0.0386753 0.127489 0.0159666 +-0.0714887 0.0860678 0.0412957 +0.00930465 0.0639279 -0.0315779 +-0.038992 0.126654 0.0188148 +-0.0617292 0.0435742 0.0131822 +-0.0807044 0.109603 0.0338418 +0.01567 0.0343236 0.00175615 +-0.0151083 0.184586 -0.0219884 +-0.0792845 0.0704649 0.0170607 +-0.0611161 0.170955 -0.0586033 +-0.0656715 0.0684169 0.0339875 +-0.0346163 0.0505906 -0.0107587 +0.0292004 0.0566287 -0.0178044 +0.0402348 0.101386 0.0251818 +-0.0356488 0.118923 -0.0117804 +-0.00759062 0.117967 -0.0150103 +-0.0344873 0.0959942 0.0440904 +-0.0675456 0.035487 -0.00647 +-0.0177849 0.0784811 -0.0386843 +-0.0357813 0.0828042 -0.0224653 +-0.0217893 0.122494 0.0280004 +-0.040789 0.084093 -0.0212481 +-0.0448136 0.0629573 0.0395248 +-0.0851812 0.137956 0.0449006 +-0.0879612 0.103656 0.0103875 +-0.0558857 0.0998486 -0.020419 +0.017256 0.079507 0.0531399 +-0.0315382 0.178553 -0.0120253 +-0.06991 0.11224 -0.0100103 +-0.0512969 0.0556828 0.0150377 +0.0224682 0.0520683 0.0428376 +0.0143831 0.0448677 -0.0245168 +-0.0794364 0.144805 0.0432098 +-0.0638846 0.103946 -0.0172176 +-0.0284346 0.0849121 0.0465284 +0.0144928 0.11263 0.0387455 +-0.0860797 0.0882889 0.0261675 +-0.00931865 0.0862591 -0.0377315 +-0.0226749 0.0380487 0.0198364 +-0.0875543 0.0861148 0.0194651 +-0.0578317 0.0344516 0.0369209 +-0.0410907 0.157679 -0.0102957 +-0.0680436 0.0337635 0.00720288 +-0.0778811 0.104813 -0.00803583 +0.0518058 0.0553999 0.0290848 +-0.0504997 0.160817 0.00728082 +0.0241356 0.0632152 0.0453534 +-0.0268604 0.100151 -0.0237263 +0.0127955 0.0874066 0.0537621 +-0.0616261 0.155549 0.00719382 +-0.0593595 0.0336431 -0.00899455 +-0.065903 0.0643977 0.026882 +0.0278843 0.0536982 -0.0197695 +-0.0335041 0.0789099 0.0415331 +0.0414488 0.0873044 0.0301508 +-0.0627531 0.161513 -0.0475897 +0.0292606 0.0447502 0.0332372 +0.0105493 0.122164 -0.0116505 +-0.0908004 0.115922 0.00730178 +0.0306755 0.0581744 -0.0167704 +-0.0745653 0.158254 -0.0269305 +0.0417869 0.088692 -0.00877741 +-0.0765465 0.107865 0.0361429 +0.0291715 0.104768 0.0370747 +-0.0435198 0.0436724 -0.0163157 +-0.0639905 0.155091 0.00636862 +-0.0676976 0.156296 0.0180917 +0.0361371 0.0605355 0.0363255 +-0.0831336 0.135327 0.0485953 +-0.0205283 0.125395 0.0225414 +0.0218584 0.126105 0.0106 +-0.0573551 0.0335045 0.00783858 +-0.0766685 0.144473 -0.00485242 +0.0215827 0.0449804 0.0414892 +-0.0623027 0.152202 -0.0135791 +-0.0124889 0.118271 0.037774 +-0.058999 0.129653 -0.00698695 +0.0212269 0.035264 0.00760182 +-0.0558448 0.0533792 -0.00239414 +-0.042206 0.147853 0.000366775 +-0.0732213 0.156852 -0.0309091 +0.00482377 0.0349755 -0.00101746 +0.00553205 0.131427 0.00744951 +-0.0606157 0.0459479 0.0402046 +0.00228793 0.0626666 -0.0335374 +-0.00869718 0.172706 -0.0257786 +0.0265924 0.0466157 -0.0146569 +0.0293044 0.0481199 -0.00974071 +-0.0278981 0.0863323 0.047373 +0.029421 0.0461183 -0.00671048 +-0.058539 0.0588103 0.0191792 +-0.0577583 0.0479183 0.03595 +0.0299489 0.069977 0.0415097 +-0.0877683 0.149882 0.0273982 +-0.0403006 0.122206 -0.0112466 +-0.0731823 0.109139 0.039466 +0.00748061 0.115492 0.0392535 +-0.0323193 0.0339823 0.0197127 +-0.00249248 0.0911617 0.056251 +-0.0410706 0.0335739 0.0056728 +-0.0167629 0.120643 -0.00969861 +0.0170314 0.126681 0.0245104 +-0.0933703 0.118789 0.0242915 +-0.0167466 0.161131 -0.0135692 +-0.037714 0.0710075 -0.016855 +-0.0748306 0.094995 -0.0139518 +-0.0653015 0.169027 -0.0374543 +-0.0171592 0.0387994 -0.0126424 +-0.0649264 0.112407 -0.0127033 +0.0089357 0.131311 0.0143899 +-0.0695053 0.106913 0.0375568 +-0.0679519 0.129695 -0.00900682 +0.0196594 0.10025 -0.0221259 +0.0187375 0.0672729 0.0498973 +-0.0634922 0.0626336 0.0253957 +-0.0640428 0.0593154 0.0139941 +-0.0365043 0.0691064 0.0417512 +-0.0509946 0.0547172 0.0191515 +-0.0684996 0.106934 0.0379267 +-0.0391114 0.149509 -0.00165293 +0.00150153 0.0534013 0.0535077 +-0.0610153 0.131125 -0.0076807 +-0.015856 0.0980295 -0.0258983 +0.0549279 0.0723085 0.00788581 +0.0296197 0.117006 0.0277632 +0.00535242 0.130989 0.0202309 +-0.000691446 0.0612541 -0.0338404 +0.00150093 0.0441835 0.0459725 +-0.0611099 0.11531 0.0378549 +-0.0695161 0.108303 0.0373324 +-0.0543547 0.158623 0.00837339 +-0.0945603 0.124158 0.0182654 +-0.0535009 0.111177 0.0367213 +-0.0119534 0.0385403 0.00164014 +-0.0370531 0.166795 0.000693639 +0.0161005 0.115637 -0.0146217 +-0.0669681 0.132599 -0.00847972 +-0.0192376 0.0362049 0.0528295 +-0.0510947 0.138549 0.00140254 +0.0199501 0.126815 0.00703133 +-0.0280876 0.0511424 0.0415727 +0.0021184 0.108719 -0.0202691 +-0.0455158 0.0889126 0.0438293 +0.00898082 0.0376394 0.0339008 +-0.0913279 0.147458 0.016148 +-0.00573884 0.0712887 -0.036141 +0.0184912 0.0906471 0.0481735 +-0.0240484 0.159369 -0.0122932 +-0.00386335 0.103093 -0.0232514 +-0.0903131 0.126767 0.00528424 +-0.00141239 0.101018 0.0444401 +-0.0265472 0.0384572 -0.00862977 +-0.0461338 0.160629 -0.00828859 +0.0434078 0.0958974 0.0221477 +-0.0323682 0.0778417 -0.0305703 +-0.0104869 0.166942 -0.0170857 +0.0335642 0.11614 0.00925074 +-0.0679156 0.112303 -0.0110315 +0.0448529 0.0917799 0.0171662 +-0.0902457 0.140661 0.0271695 +0.0361358 0.102075 -0.0100705 +-0.0774559 0.158948 -0.0154272 +-0.0718839 0.142969 -0.00986002 +0.0254315 0.0862638 0.0474376 +0.0233509 0.0549381 -0.0249484 +0.0445042 0.0650854 0.0275412 +0.0472882 0.0731371 0.0168777 +0.0310703 0.0352449 0.00774073 +-0.0540072 0.144242 -0.000990452 +-0.0901845 0.132425 0.0322244 +-0.0305014 0.066031 0.0387492 +-0.0636396 0.163113 -0.0245909 +0.0265757 0.0754454 0.0454823 +0.0560761 0.0692634 0.0230866 +0.0323242 0.117657 0.0116569 +-0.0744896 0.128852 0.0526631 +-0.092535 0.126933 0.0292581 +-0.021881 0.107267 -0.0220871 +0.0216673 0.125834 0.0205048 +-0.0892808 0.140568 0.013241 +-0.0188177 0.0683045 0.0530002 +0.0181426 0.117476 -0.0126083 +-0.0562843 0.049932 0.00898241 +0.0271917 0.0858851 -0.0222975 +-0.0354636 0.172718 -0.000342918 +-0.0113055 0.0991708 0.0485876 +-0.0512476 0.149342 0.0143776 +0.0112062 0.129253 0.000760937 +-0.027273 0.123571 -0.00271305 +-0.0942867 0.122796 0.0162787 +-0.0731111 0.152638 -0.0358925 +-0.0630631 0.0351206 0.0420909 +-0.0638567 0.0981567 -0.0173229 +-0.0886136 0.0969805 0.0223931 +0.0376971 0.0381803 0.0174952 +-0.0389196 0.163835 0.00150184 +0.0470726 0.048551 -0.0036464 +-0.0195067 0.119545 0.0340058 +-0.0154952 0.101637 0.0439764 +-0.0615198 0.167807 -0.0565879 +0.000487515 0.110024 0.0426254 +0.0218587 0.0714183 0.0491823 +-0.0891206 0.0888853 0.014456 +0.00728906 0.0602827 0.0543511 +0.0159015 0.122788 0.0313235 +0.0287151 0.0982016 0.0416756 +-0.0515592 0.162515 0.00512403 +-0.0562626 0.0437454 0.0167126 +-0.0181312 0.0948304 -0.0325641 +-0.0375002 0.0337858 -0.019518 +-0.0283411 0.0368095 0.0535577 +0.0138368 0.126165 0.029064 +-0.0698832 0.115052 -0.00855978 +-0.0166197 0.126668 0.0238945 +-0.062914 0.11807 -0.00990368 +-0.0489018 0.129654 0.0292632 +-0.0524468 0.0489914 0.023647 +-0.0590382 0.132561 -0.00680716 +-0.0429798 0.150656 0.00610371 +-0.0708619 0.0368523 0.00979504 +0.0198172 0.102563 -0.0205962 +0.0416527 0.0846461 0.030449 +-0.0215106 0.119492 0.0328652 +-0.0144877 0.185446 -0.0257702 +0.0475192 0.0568404 0.0316921 +-0.0913388 0.115949 0.00831473 +0.0281313 0.0591962 0.0423168 +-0.035495 0.171374 -0.0137494 +-0.0736292 0.156748 -0.0014693 +-0.00249426 0.0505094 0.0526827 +-0.0909607 0.144377 0.0265412 +-0.0410851 0.123071 0.0255089 +-0.0226414 0.0961417 -0.0259441 +0.0264078 0.120534 -0.000510633 +-0.0193661 0.126578 0.00214409 +0.0465619 0.0568462 0.0320779 +0.0207007 0.040829 0.0419301 +-0.0564899 0.0440403 0.0448345 +0.000863008 0.0381264 -0.0140589 +-0.0418598 0.102811 -0.0210501 +-0.00158954 0.0376715 -0.025054 +-0.0723294 0.177884 -0.0550149 +-0.0544961 0.0732542 0.0409056 +-0.00649673 0.121064 0.0364033 +0.0504194 0.0446982 0.00822878 +-0.0153541 0.0337728 -0.0226273 +-0.0303696 0.0486908 0.0439216 +-0.0334968 0.033775 0.00883944 +-0.0685163 0.108328 0.0375372 +-0.0304988 0.0603029 0.0376116 +-0.0662971 0.0363734 0.0376513 +0.0311541 0.072342 -0.0197804 +0.016819 0.0860765 0.050782 +-0.067492 0.0944588 0.0423306 +-0.0187655 0.0714126 -0.0384549 +-0.0605051 0.128314 0.040613 +0.00838174 0.0449018 -0.0251393 +-0.0164768 0.122235 0.0319313 +0.0227625 0.125142 0.00666699 +-0.0528343 0.0337802 -0.0114802 +0.0451301 0.0903696 0.00218472 +-0.0576106 0.148673 -0.00161022 +0.00250457 0.100333 0.0462614 +-0.0262513 0.0350951 0.0517484 +-0.054684 0.067848 -0.0128124 +-0.0441291 0.159145 -0.00944971 +-0.0440467 0.0380432 -0.0230799 +-0.0447681 0.146394 0.00358641 +-0.0894274 0.0915536 0.0114438 +-0.0751139 0.0954949 0.0389973 +0.0383178 0.106879 0.000185785 +-0.0732998 0.0654414 0.00491231 +-0.00228741 0.13015 0.0232201 +-0.0372213 0.150899 -0.00386632 +-0.0261116 0.0809919 0.0513952 +0.0322341 0.112712 0.0291688 +-0.0690565 0.0338884 -0.00389811 +0.0101437 0.101615 -0.0217271 +0.0425651 0.10009 0.017161 +-0.0355201 0.16973 -0.000114667 +0.00176571 0.0954911 -0.0311224 +0.0373922 0.0461028 -0.00552229 +-0.0261166 0.163762 -0.0159025 +-0.0651006 0.0458549 0.00368955 +0.0212923 0.0982999 -0.0220426 +0.026467 0.0383015 -0.00253304 +-0.0231343 0.0383693 -0.0171708 +0.00758009 0.121578 -0.0129987 +-0.0491724 0.116402 -0.0151155 +-0.0174383 0.038419 -0.00120725 +-0.0368548 0.0985914 -0.0223265 +-0.0599288 0.145383 0.0362513 +0.00646924 0.0964123 0.0516046 +-0.0630484 0.138442 -0.00719818 +-0.0266978 0.0917701 0.0460149 +-0.0534968 0.0790911 0.0438637 +-0.0203653 0.0682964 0.0517114 +0.0203853 0.049027 -0.0227929 +-0.0539349 0.0527611 0.0108042 +0.0460422 0.0848268 0.0101717 +-0.0728228 0.148718 -0.0323717 +0.0337238 0.11401 0.0250189 +-0.0718098 0.0864713 -0.016231 +-0.000525817 0.0352062 0.0124275 +0.0044963 0.0605551 0.0556784 +0.0278498 0.045613 -0.00720046 +0.0242032 0.0987613 -0.0205495 +0.0133536 0.0359529 -0.0210721 +-0.00614443 0.0386147 0.00639011 +-0.091603 0.144731 0.0191577 +-0.00870302 0.0387758 0.0292604 +0.00137957 0.0343513 0.00995357 +0.0580311 0.0716366 0.0149943 +0.029585 0.0495591 -0.0127459 +-0.0873232 0.0873446 0.00247822 +-0.0562907 0.154938 0.0178178 +0.0227189 0.116065 -0.0110894 +-0.089541 0.143417 0.0301691 +-0.0295204 0.0607307 -0.0234192 +-0.072166 0.0982206 0.0402281 +0.0461397 0.0764263 0.0052018 +-0.0650238 0.0405393 0.0286621 +-0.0357662 0.0798799 -0.0213145 +-0.0210545 0.100222 -0.024166 +-0.051798 0.0884029 -0.0218862 +-0.0585235 0.0425717 0.0226979 +-0.0581184 0.132538 0.0370402 +-0.0500652 0.125773 -0.00688378 +-0.0570027 0.145725 -0.00171879 +-0.000114754 0.120081 -0.0133088 +-0.0558569 0.135328 0.0332838 +-0.071744 0.162192 -0.0110365 +-0.0533559 0.0609747 0.0280244 +-0.0678966 0.110866 -0.0116376 +-0.0708871 0.119431 -0.00850422 +-0.0743754 0.0995209 0.0381506 +-0.0827936 0.110133 0.0365 +0.0274001 0.0354299 0.0197116 +-0.0700593 0.152584 0.0349486 +-0.0594807 0.0398598 0.0207095 +-0.0506478 0.0648447 -0.0114426 +-0.0548507 0.0955893 -0.0216695 +-0.0735032 0.144216 0.0449341 +-0.0746874 0.169403 -0.0279937 +-0.041349 0.172669 -0.00697494 +-0.0879813 0.0968653 0.0054141 +-0.0639066 0.158701 -0.0499459 +-0.0295413 0.0348538 0.0461198 +0.0425062 0.0610428 0.0297234 +-0.0761006 0.0693618 0.0222283 +0.0350916 0.102085 0.0333486 +-0.0434936 0.107078 0.040105 +-0.0210995 0.166843 -0.0113898 +-0.0599936 0.0459773 0.0409964 +0.0260763 0.0726986 0.044735 +0.0368852 0.111459 0.00613554 +-0.00301536 0.127034 0.030217 +-0.0313536 0.0384061 -0.00216621 +0.0173795 0.0350198 0.030737 +-0.072846 0.165216 -0.0419869 +-0.0344415 0.176449 -0.00471515 +0.00170995 0.0392427 0.0309786 +-0.04085 0.0985381 -0.021696 +-0.0479764 0.135553 0.00940627 +-0.0332667 0.0835875 -0.0265323 +0.0206498 0.0781917 0.0510092 +0.0122103 0.0893249 -0.030653 +-0.0464803 0.0335784 -0.0137021 +-0.0367962 0.0383714 -0.00507539 +-0.00449141 0.0911839 0.0565229 +0.0243337 0.0605883 -0.0247185 +-0.0826166 0.123078 0.0498508 +0.0540378 0.0525213 0.0252382 +-0.0675101 0.0369158 -0.0062949 +-0.0205096 0.124449 -0.00369667 +0.0285796 0.107031 -0.0133812 +0.0320794 0.0526694 -0.0107538 +-0.0203373 0.0610131 0.0476733 +-0.0674469 0.0396367 -0.00494886 +-0.0599339 0.120955 -0.00911512 +0.0168017 0.105866 -0.0181237 +-0.0787857 0.0744548 -0.00455566 +0.0193044 0.127372 0.00964815 +-0.038368 0.0457007 -0.0229731 +-0.025877 0.125557 0.00449924 +-0.0609237 0.0414243 0.0237035 +-0.0433646 0.153626 0.00736711 +-0.0513808 0.0500433 0.0347314 +-0.0212772 0.0382158 0.00549847 +0.0220013 0.0348195 0.00816409 +-0.0519377 0.0335199 0.00532131 +0.00789859 0.0999878 -0.0218807 +0.0337096 0.115696 0.0178949 +-0.0404258 0.0418709 -0.0242648 +-0.0188763 0.105884 -0.0226282 +-0.0648153 0.175482 -0.051724 +-0.070065 0.148313 -0.0344143 +-0.0584005 0.0439707 0.0246877 +0.0215152 0.0795452 0.0505127 +-0.000765864 0.0811873 -0.0364626 +-0.0633527 0.0454486 0.000289555 +-0.0455004 0.113892 0.0345333 +-0.0205229 0.0336428 -0.0235211 +-0.0658189 0.0895406 -0.0182783 +0.00772286 0.0346363 0.0381279 +0.044441 0.093115 0.00120191 +-0.0859796 0.119771 -0.00178632 +0.00662772 0.0374926 -0.0123303 +-0.0495602 0.0418248 -0.0110192 +-0.0863354 0.129395 -0.000699295 +-0.00570279 0.0613633 -0.0351663 +-0.0195101 0.114089 0.03835 +-0.0679008 0.1038 -0.0147014 +0.045275 0.0917907 0.0041773 +0.0258455 0.110181 -0.0127425 +-0.00858661 0.0376839 -0.0256139 +-0.0494924 0.160775 0.00747898 +-0.0186783 0.101771 -0.0238107 +-0.0870678 0.11107 0.0203515 +-0.0692028 0.135485 0.0474165 +-0.0665472 0.0446244 0.00170489 +-0.0679768 0.0791427 0.0408622 +0.0184726 0.0851741 0.0505075 +-0.0203373 0.158355 -0.00674555 +-0.0364979 0.119358 0.0304421 +-0.0395021 0.0450562 0.0411081 +-0.00309828 0.0379762 0.00940157 +-0.054497 0.10568 0.0405938 +-0.0354869 0.0903478 0.043788 +-0.0882673 0.102346 0.019362 +-0.0518479 0.128319 0.033784 +0.0163666 0.0522247 -0.0268816 +-0.0216233 0.0450569 -0.0280185 +-0.0332919 0.124337 -0.00345787 +-0.0603705 0.118249 -0.0108601 +-0.0883316 0.128385 0.0454834 +-0.0681462 0.033688 -0.00353141 +0.0232453 0.12098 -0.00440593 +-0.0294449 0.038677 -0.0149866 +0.0110249 0.0988999 -0.0227192 +-0.0218748 0.174208 -0.0142339 +0.0205417 0.0741225 0.0508294 +-0.0627477 0.148893 -0.0169766 +-0.0398023 0.0338119 -0.0274661 +-0.0319551 0.0348046 0.0438977 +0.0104998 0.108437 0.040345 +-0.0139772 0.164028 -0.0115888 +-0.0247602 0.0379556 0.0194943 +-0.000934383 0.0340393 -0.0200439 +0.0476809 0.0472678 -0.00164326 +-0.0400291 0.0354632 0.00960076 +-0.0671756 0.0610764 0.00625684 +-0.0852257 0.114326 0.001271 +-0.0754019 0.151364 -0.0118956 +-0.0437605 0.146927 0.00133694 +-0.0619528 0.15527 -0.030594 +0.0363929 0.0490985 -0.00642376 +-0.0100186 0.0981603 -0.0280043 +-0.0119452 0.129197 0.00527137 +-0.0346207 0.0519685 -0.0102527 +0.0527588 0.0510331 0.0250995 +-0.0635082 0.148832 -0.022668 +-0.0147336 0.0671673 -0.0377424 +-0.0704174 0.170744 -0.0307374 +0.0105902 0.125785 0.0307704 +-0.0258145 0.0894344 -0.0348302 +-0.0177853 0.0383982 0.00785589 +-0.0875073 0.0954698 0.00341799 +-0.0424838 0.105689 0.0405023 +0.049326 0.0581361 0.0307698 +-0.0426568 0.0578158 -0.011891 +-0.0506189 0.0517055 -0.00806622 +-0.0751298 0.155996 0.0213056 +-0.0740765 0.0662649 0.0182774 +-0.055953 0.151039 0.0297159 +0.00149895 0.0519342 0.0529111 +-0.0476623 0.135572 0.0124001 +0.00259703 0.093007 -0.0325523 +-0.021995 0.185609 -0.0143485 +0.0421516 0.0805501 0.0292856 +-0.014868 0.104453 -0.022832 +-0.0398868 0.108509 -0.0195593 +0.0259209 0.122835 0.0206655 +-0.0616544 0.15599 0.0144357 +-0.0733101 0.14716 -0.0188577 +-0.0262613 0.119664 -0.0106051 +0.0355444 0.109985 0.0269213 +0.04069 0.0703475 -0.0087868 +-0.0658232 0.100991 -0.0166158 +0.0443888 0.0846966 -0.000809941 +-0.0235014 0.109891 0.0398372 +0.0275195 0.0713136 0.0432798 +0.0364601 0.111481 0.0203251 +-0.0766191 0.168746 -0.0293719 +0.041872 0.069712 0.028792 +-0.0188551 0.177186 -0.0168879 +-0.0430291 0.148351 -0.00306372 +0.0241638 0.0853333 -0.0244737 +0.017675 0.127712 0.00477874 +-0.0888835 0.0983415 0.0204012 +-0.0202474 0.0582316 0.0476806 +-0.0719293 0.126758 -0.00881076 +-0.0294958 0.0960659 0.0449891 +-0.0491744 0.14016 0.00939463 +-0.0284952 0.105677 0.0407009 +0.0215711 0.035903 0.0289947 +0.0112282 0.0780681 -0.031821 +0.0343153 0.115038 0.0152609 +0.0213375 0.0536353 -0.0261911 +-0.0754641 0.149954 -0.0208706 +0.0174704 0.1044 0.0442882 +0.00640724 0.0390095 -0.0238414 +-0.0396234 0.150027 -0.00409811 +-0.0900489 0.137821 0.0141988 +0.0252808 0.0733562 -0.0251315 +-0.0492373 0.132883 0.0267635 +-0.0430533 0.034543 -0.0263375 +0.0217093 0.0520814 0.0434982 +-0.0333828 0.0807789 -0.0265175 +-0.0761052 0.14997 -0.0158781 +-0.0707786 0.0690222 0.0306409 +0.0401031 0.0589615 -0.00453029 +-0.0260252 0.0904818 0.0482145 +-0.0895062 0.0902087 0.0114561 +-0.0526923 0.0334338 -0.00380212 +-0.0114811 0.0646532 0.0550744 +-0.0370678 0.157759 -0.0113588 +0.00952731 0.105746 0.0431674 +-0.0410118 0.126885 0.0180931 +0.0197485 0.105413 -0.017636 +-0.0629292 0.155832 0.0110869 +-0.0581695 0.15592 0.011334 +-0.00650086 0.0561902 0.0537938 +-0.0338729 0.15688 -0.0110666 +0.0405297 0.0779725 0.0322363 +-0.0642469 0.0423257 0.0129047 +0.0237846 0.0476926 0.0394013 +-0.0217726 0.172729 -0.0141007 +-0.0416287 0.0534443 -0.0111279 +-0.077087 0.154176 -0.0108977 +0.0304203 0.0366341 0.0210583 +-0.0306156 0.0552316 -0.0163811 +-0.0584355 0.0482117 0.00674018 +-0.0284904 0.0917855 0.0443788 +-0.0347085 0.0681808 -0.0168555 +0.0286267 0.117101 -0.00417221 +0.000831008 0.0996342 -0.0235195 +0.00330328 0.0611715 -0.0325304 +-0.0739165 0.113504 -0.00683708 +-0.0898235 0.126994 0.0441831 +-0.0889746 0.0942393 0.0114303 +-0.0279086 0.0704216 -0.0334901 +-0.041504 0.0562873 0.0399374 +0.0394095 0.0793879 0.0341721 +-0.0669825 0.112069 0.0420748 +-0.0847653 0.103459 0.000382003 +-0.00649785 0.0801379 0.0576218 +-0.0226054 0.126675 0.00715587 +-0.000755212 0.130746 0.00366553 +-0.0328403 0.0348519 -0.0195836 +0.0396279 0.0857065 -0.0127726 +-0.0805255 0.14991 0.0359696 +0.0353489 0.0955322 0.0372114 +0.0102384 0.0781052 -0.0323493 +-0.0296143 0.0551126 -0.0213868 +-0.0699315 0.126779 -0.00900092 +-0.0795103 0.126002 0.0528073 +-0.000474921 0.0732072 0.0579427 +0.00749418 0.095088 0.0520151 +-0.0841797 0.101927 0.0280813 +0.0424909 0.101472 0.00517268 +0.00951997 0.0673959 0.0546877 +-0.0472854 0.0671503 0.0390298 +0.0376148 0.100847 -0.00874384 +-0.0374929 0.116616 0.0320198 +0.029259 0.120361 0.0176317 +-0.0737149 0.158251 -0.0299203 +-0.0114976 0.116917 0.038689 +0.0413371 0.0444728 -0.00290745 +-0.0627029 0.150609 -0.0235776 +-0.0302691 0.080511 -0.0335682 +0.0300872 0.0497043 -0.0117138 +0.0222773 0.0620859 -0.0257917 +-0.0570144 0.147201 -0.00173114 +-0.0760781 0.173825 -0.0400503 +-0.00149572 0.101631 0.0441885 +-0.0261888 0.17564 -0.0188354 +0.0231825 0.0577956 0.0456852 +-0.0924811 0.125593 0.0372603 +0.00115082 0.131147 0.0187057 +-0.0841614 0.142011 0.042356 +0.042729 0.0901813 -0.0058099 +0.0213045 0.0372836 -0.00268556 +-0.0160362 0.0338015 -0.0209075 +0.0394869 0.10531 0.000602508 +-0.0239168 0.0383626 0.00119722 +-0.0164538 0.0343139 -0.019589 +-0.0592802 0.154415 0.0283608 +-0.0609269 0.155849 0.0219449 +-0.0250081 0.0361291 -0.0192131 +-0.0853634 0.14876 0.00617316 +-0.0253618 0.0386908 -0.0141849 +-0.0881693 0.0922771 0.0238938 +-0.0728038 0.0921924 -0.0153063 +-0.0708783 0.150832 0.0377201 +0.00548074 0.111376 0.0414038 +-0.0524967 0.0945727 0.0438723 +0.0115063 0.0343546 -0.0179688 +0.00151312 0.081484 0.0572224 +-0.0149936 0.0395459 0.0398583 +0.0120392 0.129427 0.0226627 +0.0591195 0.05666 0.00817454 +0.0328155 0.102974 -0.0130264 +-0.0371359 0.123595 0.025439 +0.0450698 0.0805625 0.0231647 +-0.028064 0.0385407 0.0362565 +-0.00648913 0.0732625 0.0583326 +-0.0374981 0.0719295 0.0420686 +-0.0736872 0.176894 -0.0449171 +-0.0672224 0.0339784 0.0107486 +-0.0758756 0.104904 -0.00955908 +0.0439403 0.083251 -0.00181959 +-0.0614723 0.15843 -0.0295877 +0.0442849 0.0945485 0.0181566 +-0.065503 0.044849 0.00843715 +0.00357616 0.0395385 0.0347033 +-0.028754 0.0634689 -0.0284339 +0.0315757 0.0914687 -0.0188156 +0.00716348 0.0343484 0.0202029 +-0.0216788 0.0493937 -0.0287126 +-0.0716516 0.139715 0.0474384 +-0.043721 0.033715 -0.00407894 +-0.0817894 0.0909919 -0.00761357 +0.0425053 0.0513815 0.0326154 +-0.0638693 0.170945 -0.0476012 +0.0316414 0.11271 0.0301021 +-0.0306212 0.159741 -0.0134031 +-0.0214041 0.0879871 0.0549671 +-0.0670934 0.0625692 0.00143601 +-0.0365003 0.087456 0.0430956 +0.00150165 0.0919153 -0.0334107 +-0.024293 0.124271 0.0211991 +-0.0604952 0.0932426 0.0451145 +0.00516194 0.0978455 -0.0256065 +-0.00249882 0.081515 0.0574957 +-0.0636907 0.146369 -0.0159165 +-0.0129939 0.103563 -0.0236849 +0.00282967 0.131401 0.0178813 +0.00250691 0.0883899 0.0564027 +0.0220994 0.0476682 0.0404859 +-0.0466625 0.12523 -0.00836412 +0.00382851 0.0992997 -0.0231609 +-0.0879384 0.126705 0.000268669 +-0.0725213 0.0636798 0.0102197 +-0.00645782 0.0338359 -0.0228235 +-0.0523786 0.138216 -8.53499e-05 +-0.041943 0.114992 -0.0156494 +0.0435142 0.0513638 0.0325031 +0.0432433 0.0958712 0.000187851 +-0.0729725 0.170894 -0.0302341 +-0.0303619 0.0381166 0.0307902 +-0.0942177 0.125518 0.0172578 +0.0446543 0.0959754 0.00716634 +-0.0263933 0.0864552 0.0500994 +0.0352313 0.064664 0.0385641 +-0.0913521 0.14609 0.0171489 +-0.00798473 0.0348553 0.0472244 +-0.00181216 0.086792 -0.0360393 +-0.0153678 0.09644 0.0517723 +0.0268857 0.117842 -0.00498093 +-0.0354986 0.0747267 0.0419454 +-0.0573263 0.0481094 0.0336642 +-0.0386241 0.125328 -0.00654651 +-0.020119 0.0431531 0.0531418 +-0.0226834 0.174208 -0.0136486 +-0.0554979 0.0889982 0.0448936 +-0.0321193 0.0366883 0.0508235 +0.013731 0.104072 -0.0202068 +0.0407967 0.0661529 -0.00677209 +-0.0792933 0.16941 -0.0399858 +-0.0250378 0.174204 -0.0117666 +-0.0718111 0.0631642 0.010775 +-0.0710553 0.181198 -0.0554882 +-0.058796 0.0868581 -0.0207882 +-0.0136362 0.0466649 -0.0295427 +-0.0924917 0.124196 0.0312677 +-0.0331602 0.171158 -0.0153905 +-0.0724259 0.0727975 0.0340482 +-0.0566618 0.0645338 -0.00803085 +-0.0705221 0.098629 0.0408842 +0.0118568 0.126524 -0.00436904 +-0.0784161 0.116342 0.0501163 +-0.0677948 0.160582 -0.0110564 +-0.0456903 0.11799 -0.0148012 +0.0526315 0.0462656 0.0102089 +0.0453672 0.0456539 0.0269438 +-0.00726729 0.129761 0.0228793 +-0.0659232 0.105312 -0.014993 +-0.087769 0.118492 0.00124641 +-0.00149512 0.0562755 0.0546084 +-0.089164 0.0928946 0.0114433 +-0.0841907 0.078353 0.0198111 +-0.0679412 0.0656184 0.0271584 +0.0224551 0.0368363 -0.00219983 +-0.0356854 0.0435567 0.045098 +-0.0457595 0.0797224 -0.0196258 +-0.0405031 0.0762353 0.0429954 +-0.0640239 0.14106 0.0390925 +-0.0797368 0.119028 0.049952 +-0.0864815 0.0846104 0.00248575 +-0.0774908 0.137247 0.0499166 +-0.0586931 0.0693474 -0.0143558 +-0.0340813 0.159269 -0.0127772 +-0.0889533 0.124321 0.0462453 +-0.0611638 0.0468972 0.00167818 +-0.0925249 0.130961 0.0132346 +-0.0707251 0.033867 0.00298473 +0.0514024 0.0510939 0.0266785 +-0.000225629 0.097747 0.0525183 +0.0260546 0.112325 -0.0110571 +-0.0429452 0.0345628 0.0382617 +-0.0174331 0.0625913 0.0517909 +0.0422611 0.0397457 0.00959333 +-0.0374974 0.0705158 0.0419336 +-0.0368535 0.0362973 -0.0142764 +-0.0132005 0.128825 0.00480743 +-0.0808442 0.110042 -0.00155764 +-0.0890966 0.114815 0.0438036 +-0.0195037 0.11681 0.0364149 +-0.0653439 0.127011 0.0477296 +-0.0749324 0.152731 -0.0198994 +-0.0131083 0.128689 0.020774 +-0.0761869 0.149999 -0.0118749 +-0.0657951 0.0852369 -0.0187501 +-0.0515872 0.0558557 0.0146208 +0.0414903 0.0541829 0.0322405 +-0.0094881 0.112787 0.0415502 +-0.0473098 0.0390167 0.04506 +-0.076903 0.112654 -0.00467049 +-0.0792829 0.109073 0.0381388 +0.0277273 0.0646184 0.0435417 +-0.0923959 0.132359 0.0202239 +-0.0505803 0.0502828 -0.00813802 +0.00549299 0.117639 -0.0167508 +-0.0166687 0.038571 -0.00303984 +-0.0728836 0.119408 -0.00813229 +-0.00373228 0.0669631 -0.0346735 +0.0373953 0.0445589 -0.00471693 +0.00577997 0.0365296 -0.0134893 +0.0065091 0.0772612 0.0561769 +-0.0785581 0.153669 0.00407716 +-0.0631137 0.14437 -0.00863045 +0.0335076 0.0453895 0.0300756 +-0.00148382 0.131063 0.00627096 +-0.0117022 0.0613984 -0.0359464 +-0.0390182 0.0473551 -0.0162983 +0.0174871 0.10577 0.0429453 +0.0173606 0.128011 0.00608341 +-0.0587951 0.0337712 0.0197789 +-0.0554323 0.145321 0.0304155 +-0.021174 0.184521 -0.0131308 +-0.0546552 0.0656851 0.0351815 +-0.00872132 0.0656071 -0.0355909 +0.00329381 0.0654903 -0.0335962 +-0.0874212 0.0861211 0.0204627 +0.0341358 0.0641297 -0.0158137 +-0.063479 0.0384929 -0.0076832 +0.0174063 0.0417452 -0.0219906 +-0.069028 0.0409064 0.00923732 +0.0577041 0.0703778 0.00716237 +-0.0506338 0.0663851 -0.0124105 +-0.04882 0.119077 -0.0139102 +-0.0660878 0.161167 -0.014759 +0.060054 0.0678303 0.0101401 +-0.063913 0.169258 -0.0441943 +-0.053845 0.0463107 0.0236764 +-0.0784828 0.175619 -0.0475153 +-0.0313957 0.12387 -0.00298136 +0.0154947 0.107116 0.0420405 +-0.036876 0.0434502 0.0434666 +-0.06715 0.145376 0.0416405 +-0.0155327 0.181625 -0.0208343 +-0.0715781 0.0968766 0.0410625 +0.0306462 0.0968954 0.0409575 +0.00964614 0.0589005 0.0527021 +0.0527245 0.0736707 0.0159788 +-0.0861826 0.104908 0.00538017 +-0.0812551 0.138069 0.0480599 +0.0475108 0.0597433 0.0313293 +-0.0156256 0.0450397 -0.0279587 +-0.0221316 0.125526 0.0205056 +-0.0322922 0.122832 0.0242564 +-0.0132407 0.164048 -0.012311 +-0.0415061 0.0620057 0.0410722 +-0.0657901 0.128396 0.0470862 +0.0282252 0.0760107 -0.0227881 +-0.0701785 0.136914 0.0477863 +0.03413 0.0822192 0.0406334 +0.0609039 0.0609671 0.0121585 +-0.0515277 0.136697 0.0258426 +-0.00994091 0.089177 -0.0367642 +0.0451266 0.0727442 0.0219703 +0.0336533 0.110026 0.0294894 +-0.0721725 0.156265 0.0135984 +0.0312336 0.051167 -0.0107736 +-0.0023355 0.0926921 -0.0342848 +-0.0524965 0.0790864 0.0437156 +-0.0095237 0.0431051 0.0494016 +0.000300907 0.0626948 -0.0340909 +-0.0905968 0.140629 0.0221693 +-0.00800869 0.0388567 -0.00527149 +-0.0584939 0.0847167 0.0439692 +-0.0635243 0.0334646 -0.00419693 +-0.090351 0.14066 0.0261698 +-0.0588327 0.0911696 -0.0205864 +-0.020414 0.0541289 0.0465389 +-0.056688 0.067746 -0.0120827 +-0.0344045 0.152028 -0.00248634 +-0.0154988 0.114109 0.0392017 +-0.0384878 0.168246 0.00236894 +-0.0115711 0.100192 -0.0241483 +-0.0167308 0.0657547 -0.0377116 +-0.0466962 0.147986 -0.00319779 +-0.0926613 0.122825 0.0414622 +0.0312237 0.0871647 -0.0198177 +-0.0257476 0.0682496 -0.0344079 +-0.0524537 0.0504524 0.0306643 +-0.0768211 0.0804727 0.0355147 +-0.00449363 0.0456798 0.0470573 +0.0418422 0.0690449 -0.00578965 +-0.0262667 0.110544 -0.0190457 +-0.00251293 0.105882 0.0441369 +-0.0707082 0.0395895 0.000643319 +0.0128917 0.127573 0.0272919 +-0.0354687 0.054727 0.0384538 +0.00920102 0.0837298 -0.0322138 +0.0094791 0.0347704 0.0365664 +-0.0435038 0.0438236 0.0424673 +-0.0551839 0.140262 -0.00246039 +0.00523902 0.0341335 -0.0189244 +0.0273731 0.0578707 -0.0207586 +0.0119495 0.129938 0.00409466 +-0.0494983 0.102885 0.0411106 +-0.0370447 0.0379826 0.045213 +0.0150108 0.0349639 0.0393317 +0.0345233 0.0498189 0.0314944 +-0.0153828 0.128676 0.0170423 +-0.0618725 0.160013 -0.0255862 +-0.0525544 0.0504168 0.0256484 +-0.073344 0.0672327 0.000494062 +0.0393875 0.0460438 -0.00485579 +-0.0152754 0.103231 -0.0233341 +-0.0753549 0.104884 0.0361423 +0.0108274 0.0362708 -0.0225637 +0.0342152 0.0862629 0.0407864 +-0.088758 0.143311 0.0121502 +-0.0572353 0.0465198 -0.0043437 +0.0198267 0.035157 0.00555798 +0.0261922 0.0507168 -0.0207207 +0.0268986 0.0357578 0.0211357 +-0.0349846 0.0837189 -0.0236297 +-0.0222119 0.158173 -0.00418672 +0.024391 0.115338 0.0336864 +-0.0200061 0.124102 0.0256765 +-0.069632 0.0719472 -0.0104624 +-0.0322859 0.0792627 -0.0305329 +-0.0506516 0.033429 -0.00887801 +-0.0358626 0.101452 -0.0219425 +0.0293657 0.0447288 -0.00609588 +-0.0662305 0.0339335 0.0109932 +-0.00786973 0.104508 -0.0230207 +-0.0712429 0.177886 -0.0560058 +-0.00159432 0.129182 0.0263815 +-0.0283933 0.0831937 -0.0356194 +0.0443268 0.0511334 0.0322609 +-0.0318469 0.0958266 -0.0236233 +0.0205346 0.0937418 -0.0232686 +-0.012793 0.0813325 -0.0389447 +-0.0235889 0.0983837 -0.0242804 +-0.062496 0.105649 0.040196 +-0.0194646 0.0347564 0.0483645 +-0.0124518 0.038713 0.0303489 +-0.0444408 0.0335855 -0.0133031 +-0.00148369 0.0732377 0.0582942 +-0.0837769 0.153466 0.0110188 +-0.0898767 0.135147 0.0252168 +0.0369605 0.105409 -0.00483089 +-0.0255274 0.113962 0.0353265 +-0.0539587 0.0338764 0.0242313 +-0.0789197 0.104773 0.0326412 +0.0105421 0.118176 -0.0153416 +-0.0256953 0.0385914 0.0331228 +-0.0336328 0.126783 0.00457249 +-0.0470116 0.0710509 0.0409961 +-0.0930389 0.129675 0.0242521 +-0.0464764 0.0861628 0.0446798 +-0.0561893 0.159558 0.00559608 +-0.0091854 0.130144 0.00917512 +-0.0798951 0.0840617 -0.00859358 +-0.0336645 0.0339705 0.0230467 +0.00935764 0.0539048 -0.0300706 +-0.0831098 0.0777207 0.0215128 +-0.0470469 0.155045 0.00906939 +-0.0135887 0.169514 -0.0234669 +0.0418337 0.0395215 0.00781447 +-0.0276517 0.15535 -0.00385533 +-0.0201931 0.18164 -0.0152257 +-0.0335046 0.177862 -0.00863199 +0.0345014 0.0513521 0.0321623 +-0.0804527 0.143139 -0.00181198 +-0.0816965 0.144555 0.000152955 +0.0607459 0.0623413 0.0091502 +-0.0779458 0.175786 -0.0452228 +-0.0577187 0.146758 0.0323537 +-0.0403111 0.127303 0.0168527 +0.0204871 0.0934146 0.0476927 +0.00588424 0.100173 -0.0220733 +-0.00768539 0.0584014 -0.0338334 +-0.0447099 0.069553 -0.0165571 +-0.0287391 0.0620637 -0.0274208 +0.0157473 0.0947545 -0.0243195 +-0.063441 0.156071 0.0225051 +0.00824182 0.0753956 -0.0338579 +0.00561249 0.0927088 -0.0322048 +-0.0475077 0.0732702 0.0416223 +0.0145005 0.11127 0.0394252 +0.00450182 0.0413372 0.0458645 +0.00631667 0.061015 -0.0309472 +-0.0794763 0.0926775 0.0349659 +-0.0718543 0.111061 0.0453722 +-0.0891984 0.129697 0.0434765 +0.0151955 0.129241 0.0138359 +0.0236821 0.0824052 -0.0254011 +-0.0015019 0.110031 0.0427805 +-0.0215043 0.109928 0.0403615 +-0.0939826 0.118759 0.0192971 +-0.0624131 0.11535 0.0394932 +-0.0833865 0.140392 0.00124854 +-0.0465624 0.124393 -0.00950278 +-0.0146513 0.0496822 -0.0311895 +-0.0641648 0.15616 0.0149932 +-0.0729217 0.126742 -0.00866826 +-0.0253625 0.126177 0.010523 +0.0277777 0.108556 -0.0130095 +-0.0788017 0.0846357 0.0359502 +-0.0247742 0.180145 -0.00956802 +0.0188129 0.101666 -0.0216414 +0.00516264 0.131576 0.00874185 +-0.0633822 0.164679 -0.0305938 +-0.0375944 0.116238 -0.0149818 +0.0194959 0.111012 -0.0156283 +-0.0342918 0.0780403 -0.0245107 +-0.0861846 0.083225 0.00647736 +-0.0161451 0.166792 -0.0199866 +-0.0872007 0.147399 0.00826035 +0.0567195 0.0508531 0.00818949 +-0.0594966 0.100149 0.0427407 +-0.0584967 0.0761953 0.0427061 +-0.0218317 0.124906 0.0220793 +-0.00826101 0.0384472 0.0115633 +-0.0383343 0.121902 -0.0109317 +-0.0521665 0.136903 -0.000627156 +-0.0215605 0.0383186 -0.00194746 +0.0481264 0.060275 -0.00442661 +0.0154998 0.108504 0.0406925 +-0.0729927 0.08468 0.0400334 +0.0156625 0.0631375 0.0506866 +-0.0244911 0.101622 0.043846 +-0.0464946 0.131544 0.00524728 +-0.0496757 0.0678792 -0.0135965 +0.0429479 0.0845778 -0.00579145 +-0.0889655 0.0969901 0.0204055 +-0.0641121 0.152654 -0.0038572 +0.0409571 0.0971716 0.0271682 +-0.0171621 0.0382418 0.0171791 +0.00646008 0.118492 -0.0156628 +0.0328247 0.054955 0.0367483 +-0.0843958 0.13208 -0.00165487 +-0.0521768 0.0517998 0.0286453 +0.0415397 0.0690275 -0.00677 +-0.00193982 0.12966 0.0247961 +-0.0686037 0.157344 -0.00409918 +-0.0332546 0.12417 0.0223928 +-0.0762473 0.0920177 -0.013581 +0.0392491 0.0672477 0.0338308 +-0.0841314 0.0776758 0.00449933 +-0.0638136 0.0680952 0.0346563 +-0.00579523 0.10109 0.0444886 +-0.0717812 0.166615 -0.0459981 +-0.0474379 0.0355948 -0.0152688 +0.0581028 0.0523658 0.0121806 +-0.0787218 0.0967552 0.0354897 +-0.0561139 0.139571 -0.00370722 +-0.0605064 0.0394509 -0.00845033 +-0.0890965 0.111935 0.0113594 +-0.0579064 0.158452 0.00407429 +0.0204977 0.0920241 0.0479175 +-0.0224928 0.0988548 0.044702 +-0.0289733 0.124361 0.000543811 +-0.00750575 0.0457415 0.0474579 +0.043354 0.053395 -0.00666154 +0.0230359 0.124766 0.00534006 +-0.0773785 0.174262 -0.0420678 +-0.0273153 0.0387018 0.0344821 +-2.85469e-05 0.0391507 -0.00580542 +-0.0653748 0.149517 -0.0319115 +-0.0386792 0.0336259 0.00249375 +-0.0655034 0.106997 0.0388261 +0.0203192 0.0679349 -0.0283363 +0.0395784 0.104495 -0.000545476 +-0.0239953 0.114912 -0.0156465 +-0.0660228 0.160133 -0.0132914 +0.0397718 0.0940445 0.031303 +-0.0719497 0.132579 -0.00806719 +-0.0634812 0.0760895 0.041143 +-0.0484925 0.14723 -0.00252533 +0.054748 0.0690996 0.0027667 +-0.0723713 0.156038 0.0237254 +0.034267 0.0613198 -0.014809 +-0.0483876 0.0348751 0.0437589 +-0.05979 0.0839541 -0.0202843 +0.0501248 0.0723145 0.00745971 +0.0347025 0.105449 -0.00966587 +-0.0352566 0.0382472 -0.0299775 +0.0470963 0.045623 0.0254581 +-0.0855435 0.108961 0.00733555 +-0.0206804 0.112216 -0.0188434 +0.00523056 0.0796312 -0.0340387 +-0.0465619 0.047561 -0.00986957 +-0.033587 0.0348608 0.0452447 +-0.0202523 0.125914 0.000840735 +-0.0501104 0.138566 0.0193811 +-0.0264363 0.125919 0.0130719 +-0.0691022 0.159548 -0.0519447 +-0.0245412 0.057448 -0.0303989 +-0.046121 0.0336712 -0.000864342 +-0.0742841 0.155582 0.00848891 +-0.0298186 0.154044 -0.00457012 +0.0302323 0.0969553 -0.0166472 +0.0266877 0.104744 0.0387392 +-0.0843417 0.109004 0.0243603 +-0.0496377 0.143234 0.0104059 +0.0174929 0.0962345 0.0475335 +0.0450677 0.0917906 0.015163 +0.0374841 0.076757 0.0366434 +-0.0215406 0.0711033 0.0513847 +-0.0282153 0.125116 0.00364014 +-0.0284773 0.177212 -0.00607735 +-0.0204956 0.109916 0.0405701 +-0.0784664 0.0703272 0.00666705 +-0.0031698 0.0384355 0.0180459 +-0.0655548 0.153788 -0.00146085 +-0.0229763 0.0945367 -0.0302901 +-0.0192339 0.166857 -0.012207 +-0.0866345 0.094046 0.00237751 +-0.0759405 0.177963 -0.0471435 +0.0442559 0.0973532 0.00916034 +-0.071904 0.103673 -0.0126696 +-0.00666902 0.0541115 -0.0328784 +0.0144947 0.105783 0.0434399 +-0.029312 0.0383797 -0.00726542 +0.0562076 0.0536042 0.00319408 +-0.0829319 0.114342 0.0473556 +-0.069928 0.113662 -0.00916203 +-0.080837 0.120705 -0.00484118 +-0.0680148 0.177312 -0.0499759 +-0.077886 0.0811556 -0.0096326 +0.0350121 0.104701 0.0314746 +-0.0571796 0.0582032 0.0181974 +-0.0932449 0.120197 0.0372886 +-0.0536204 0.0647024 -0.00963527 +0.00250481 0.0870342 0.0569864 +-0.0802055 0.0754813 0.024867 +-0.062996 0.0444935 0.0306768 +-0.00402267 0.0975528 0.0526596 +-0.0883984 0.103684 0.0133796 +-0.0637361 0.133925 0.0394224 +-0.00469624 0.0613427 -0.0349676 +-0.0570417 0.148685 -0.00168484 +-0.062221 0.119852 0.0434664 +-0.0361997 0.0483313 -0.0162949 +0.00950265 0.0517655 0.0513753 +0.00822226 0.0366869 -0.011267 +-0.0383571 0.0360437 0.0112202 +-0.0890914 0.0956431 0.0204208 +-0.0256081 0.0408536 -0.0292407 +0.0374062 0.0397236 -0.000139169 +-0.094388 0.124185 0.0232804 +-0.0615536 0.151288 -0.000477545 +-0.0674057 0.140585 -0.00814985 +-0.0913588 0.113353 0.0143394 +-0.0162447 0.115598 -0.0164334 +-0.00395415 0.0388026 0.0284096 +0.0272466 0.0774691 -0.0233342 +0.0337889 0.112917 0.0264745 +-0.0342171 0.0808501 -0.0245506 +0.0395831 0.0953666 0.0310696 +0.0424402 0.100042 0.00119598 +0.0588348 0.0704992 0.0161593 +0.0129551 0.034265 -0.00247291 +-0.0884357 0.140552 0.0112052 +-0.0545209 0.0388646 -0.0108239 +-0.00760223 0.0406064 -0.0259713 +-0.0671149 0.0634665 0.0239226 +-0.0571873 0.13241 -0.00599886 +-0.0652367 0.0347413 0.0281307 +-0.0733817 0.154066 -0.0309045 +-0.00253313 0.0428829 0.047136 +-0.0768102 0.145866 -0.00487051 +-0.0675702 0.166262 -0.0225175 +-0.0425031 0.0662262 0.0410651 +-0.0579829 0.147131 -0.0018633 +0.0230336 0.049071 0.0400904 +-0.0829949 0.0843947 0.0302754 +-0.0147977 0.0813547 -0.0393324 +-0.015272 0.0385359 0.0263224 +-0.0764401 0.163184 -0.0180705 +-0.00855639 0.121127 -0.0123669 +-0.018702 0.0459339 0.0516744 +-0.0274925 0.0577126 -0.0264141 +-0.0571934 0.155255 0.0174937 +-0.0620081 0.0469936 0.00367346 +-0.010275 0.170544 -0.0261793 +0.0537831 0.0477401 0.0192041 +0.0402375 0.104169 0.000177419 +0.0289937 0.118368 -0.00105099 +-0.039498 0.118035 0.0314 +0.0367284 0.0875226 0.0373878 +0.0431893 0.0764104 0.0272109 +0.0404723 0.0752779 0.0321515 +-0.071418 0.176406 -0.0454588 +-0.0570823 0.138706 -0.0047975 +-0.0666306 0.0689692 -0.00898899 +-0.0691773 0.0628504 0.020491 +0.0144923 0.104443 0.0448169 +-0.0227823 0.0798633 -0.0386035 +0.0278587 0.0463325 0.0365003 +-0.00850193 0.0391005 0.0344133 +-0.0677578 0.16996 -0.0326164 +-0.0367265 0.0725274 -0.0180009 +-0.0681226 0.115765 0.0506532 +-0.0824105 0.154634 0.0158747 +-0.0197211 0.109971 -0.0204733 +-0.0626214 0.149057 -0.0155813 +-0.0414792 0.111213 0.0366505 +0.0570161 0.0508675 0.0161892 +-0.0934473 0.129632 0.0182372 +-0.0463999 0.150559 -0.00488163 +-0.0823822 0.144566 0.00117046 +-0.0310391 0.0892178 -0.0256627 +-0.065854 0.172894 -0.0463248 +-0.069909 0.0416997 0.00317022 +0.0312116 0.11742 0.0240751 +-0.0118175 0.0387383 -0.00407256 +0.01303 0.126665 0.0287751 +-0.0440446 0.129866 0.0080667 +-0.0797747 0.106127 0.0313842 +0.00451933 0.0800063 0.0560543 +0.00739517 0.116252 -0.017256 +0.0277812 0.063284 0.0436054 +-0.0569949 0.126695 -0.00683103 +-0.00960244 0.0420101 -0.025949 +0.0084074 0.123136 -0.0106652 +-0.0428042 0.0338676 0.0265755 +-0.0325056 0.0760815 0.0412743 +-0.0386562 0.0591953 -0.0114762 +-0.0405007 0.0690879 0.0417151 +0.0419622 0.102841 0.00417469 +-0.047644 0.121343 -0.0122933 +-0.0729009 0.105047 -0.011511 +-0.0927931 0.126937 0.0282668 +-0.0656106 0.156261 -0.00734027 +-0.0802248 0.0719997 0.00554401 +-0.00476651 0.0755803 -0.0368945 +-0.0779912 0.139819 -0.00526751 +-0.0864372 0.14049 0.00618869 +-0.0427881 0.157985 0.00470835 +-0.0697618 0.112838 0.0482345 +-0.0800017 0.0786467 -0.00556567 +-0.00794001 0.0994214 0.049751 +0.00252738 0.0716721 0.0561852 +0.0244581 0.0366925 -0.000851561 +-0.0618581 0.153131 0.03333 +-0.0730605 0.177343 -0.046073 +-0.0670133 0.0791411 0.0413099 +-0.00657967 0.0361819 -0.0249969 +0.0332241 0.115988 0.0034015 +-0.0314758 0.118803 -0.0116777 +-0.0714107 0.144356 -0.0151846 +-0.0414986 0.120686 0.028403 +0.0126257 0.034994 0.0315996 +-0.0344792 0.0382691 -0.00267158 +-0.0696814 0.0354769 0.0114289 +-0.0454423 0.0336713 -0.00255197 +-0.0611633 0.0698433 0.0372322 +-0.0520495 0.147795 0.0183962 +0.0467993 0.0745196 0.0137565 +-0.00850445 0.0619527 0.0559735 +-0.0157643 0.0353272 -0.0263783 +-0.0915821 0.144732 0.0201581 +-0.0274038 0.123285 0.0215594 +-0.0667152 0.0419014 -0.00231002 +-0.0408646 0.104225 -0.0205494 +-0.092402 0.129661 0.0272343 +-0.0876501 0.0954829 0.0054069 +-0.063731 0.0751942 -0.0171769 +-0.016949 0.0909918 -0.0366612 +0.0216857 0.0374896 0.0372608 +-0.0733019 0.081934 0.0390113 +-0.033579 0.117839 -0.0126505 +0.00291054 0.0385481 0.0460492 +-0.0648688 0.0938916 -0.0183701 +-0.0931568 0.120191 0.0362904 +-0.0105693 0.129741 0.0187791 +-0.0330922 0.108613 -0.0189923 +-0.0867528 0.121192 -0.00171893 +-0.0398856 0.0351398 0.0419144 +-0.0500753 0.0599861 0.0335137 +-0.0362769 0.163827 -0.00170672 +-0.0161498 0.040504 0.0518582 +0.0390213 0.100628 0.0284944 +-0.0525203 0.0581461 0.0261597 +-0.06389 0.0397139 0.0154457 +-0.0114781 0.0589986 0.0537512 +-0.00335674 0.0424141 0.0475525 +-0.0200738 0.0389483 0.0357554 +0.0112326 0.0738116 -0.0315294 +0.0128141 0.0504969 0.0481838 +-0.0548971 0.104115 -0.019193 +-0.0887169 0.125354 0.00227396 +-0.0712974 0.0669397 0.02531 +-0.0542529 0.0545999 -0.00539104 +-0.0538048 0.159768 -0.00183632 +0.0171004 0.120495 -0.00987579 +0.00927611 0.0667424 -0.0314011 +-0.0928802 0.118867 0.0402859 +-0.0167191 0.0613704 -0.0359554 +-0.0515886 0.0460739 0.0176829 +-0.0182635 0.180096 -0.0244849 +-0.0014996 0.0938866 0.0553603 +-0.0518826 0.071407 0.0396894 +-0.0529375 0.0335557 0.00508499 +-0.0597956 0.0925385 -0.0196216 +-0.0869937 0.104951 0.00838372 +0.0481666 0.0731681 0.01124 +-0.00827202 0.0394277 0.049182 +-0.0607911 0.0810335 -0.0194373 +0.000667625 0.0985049 0.0513232 +0.00310867 0.129093 0.0266332 +0.0296013 0.119582 0.02204 +-0.0285282 0.0378067 0.0260568 +-0.0367133 0.0353138 0.0122122 +-0.0468392 0.132859 0.0202702 +-0.0139293 0.126622 0.0263262 +-0.0191687 0.171226 -0.0215143 +0.0205957 0.0394417 0.0417168 +-0.0692562 0.143958 0.0438704 +-0.037992 0.128312 0.00883318 +-0.0237829 0.0770195 -0.0382449 +-0.0940603 0.120098 0.0152926 +-0.0545976 0.139948 -0.00193829 +-0.0869674 0.103645 0.0213508 +-0.0689616 0.177928 -0.0580053 +-0.079103 0.0731629 0.0235749 +-0.0563149 0.0534289 -0.00138708 +-0.00430179 0.125159 -0.00873129 +-0.0217957 0.119089 -0.0120655 +0.047344 0.0721054 0.0183678 +-0.0206715 0.0524183 -0.0304469 +-0.0292161 0.178518 -0.014988 +-0.0567221 0.0575063 0.0096837 +0.00796175 0.131494 0.0140347 +-0.0163209 0.175704 -0.0185048 +0.0207575 0.0645289 0.0475184 +-0.0365005 0.0676756 0.0415398 +-0.0504985 0.079101 0.0439987 +0.0338763 0.0978118 -0.0135516 +-0.00887371 0.0385959 0.0022117 +-0.0644851 0.0755505 0.0404189 +-0.0877008 0.0923103 0.0248018 +-0.082219 0.074838 0.0095308 +-0.0554964 0.111163 0.0367062 +0.0260064 0.0465031 -0.0156607 +-0.0633419 0.155193 -0.0376165 +-0.0732519 0.0648877 0.00719031 +-0.0769992 0.155545 -0.0179052 +0.0377103 0.0955073 -0.00984226 +0.0174667 0.122816 0.0304302 +-0.0366198 0.0505806 -0.010756 +-0.0144968 0.0472352 0.0484474 +0.00848126 0.0936832 0.0524446 +0.0197906 0.106497 -0.0168156 +-0.0930778 0.121531 0.0352811 +-0.0613674 0.169388 -0.0565896 +-0.0301276 0.038694 -0.0132786 +-0.0662928 0.044787 0.00771957 +-0.0195138 0.0448322 0.0525308 +-0.0886025 0.0887878 0.00646717 +0.0380432 0.109702 0.0166041 +-0.024753 0.0755695 -0.0376923 +-0.089639 0.0983559 0.0164014 +0.0373474 0.083464 0.036489 +0.0200866 0.0429332 -0.0206714 +-0.0362408 0.12776 0.00652715 +-0.0114267 0.182822 -0.0276369 +0.033977 0.115595 0.0137221 +0.016644 0.0381609 -0.019755 +-0.0160134 0.0959893 0.0521651 +-0.0194344 0.115555 -0.0163687 +0.00996296 0.0988804 -0.0226985 +0.0207021 0.0348049 0.000449352 +-0.0655859 0.0333717 0.000880867 +-0.0387964 0.0870429 -0.0222174 +-0.0365713 0.0483594 -0.015218 +0.0310154 0.110075 0.0327245 +-0.0376939 0.0665912 -0.0149459 +0.0401046 0.0466866 0.0313873 +-0.0110827 0.102149 -0.0241692 +0.00841559 0.0375405 -0.0234702 +0.0448731 0.0945767 0.0111579 +0.0145335 0.034759 0.0322003 +-0.059392 0.149673 0.0353015 +0.000291607 0.0641338 -0.034343 +0.00429568 0.0640516 -0.0331969 +0.0450422 0.0931924 0.0131619 +-0.00448954 0.122402 0.0358368 +-0.0326251 0.166779 -0.00520273 +-0.0566266 0.157159 0.00899778 +-0.0131915 0.184654 -0.0268832 +0.0372616 0.0915229 0.0364203 +0.0164447 0.0548852 0.0482217 +-0.0124867 0.11689 0.0385307 +0.00769138 0.039029 0.0323953 +-0.0150057 0.127967 0.0215456 +-0.0860589 0.113009 0.00328149 +-0.0718647 0.175275 -0.0427173 +0.000497507 0.112823 0.0420607 +-0.0832204 0.140695 0.0442806 +-0.0316065 0.039499 -0.0303181 +-0.0689448 0.129685 -0.00899835 +-0.020775 0.0742803 -0.0390259 +-0.0727533 0.0995199 0.0393322 +0.0032483 0.071196 -0.0343078 +-0.0400491 0.154783 -0.00892819 +-0.0345081 0.0832025 0.0425625 +-0.0522702 0.141391 0.00017327 +0.0278273 0.0795375 0.0455649 +0.0269552 0.122658 0.0110745 +0.0348501 0.112087 -0.000408122 +-0.0694924 0.0846972 0.0421957 +-0.0861949 0.139089 0.00320204 +-0.0823568 0.0802033 -0.00152209 +0.00894636 0.0644445 0.055029 +0.0266313 0.0563972 -0.0207832 +0.023933 0.0390696 0.0352942 +-0.0656041 0.136814 0.0420793 +0.0407616 0.105622 0.0111617 +0.058143 0.0551653 0.0211996 +-0.0138904 0.0897489 -0.0373664 +0.0117209 0.130528 0.015412 +-0.0181782 0.126773 0.00187925 +0.039239 0.0589589 -0.00512401 +0.0118091 0.0576645 0.0520801 +0.0101538 0.113447 -0.018237 +0.00107085 0.0391982 -0.0112505 +-0.0726176 0.0747594 -0.0108396 +-0.0504976 0.104261 0.040368 +-0.06047 0.0776106 0.0424994 +-0.0726162 0.166612 -0.0440006 +-0.0345099 0.109779 0.0372255 +0.0371511 0.110987 0.0177157 +-0.0594963 0.1084 0.0386802 +-0.0218558 0.120004 -0.0110164 +-0.0726436 0.159626 -0.0369279 +0.0162217 0.120841 -0.0102336 +0.0462172 0.0729792 0.0194263 +0.0503974 0.0595708 0.0303584 +-0.069034 0.139725 0.045939 +0.0222487 0.0359069 0.0273161 +-0.083623 0.0857135 0.0294569 +-0.0427492 0.0421438 -0.0223063 +-0.0635342 0.161573 -0.0210278 +-0.0632778 0.158345 -0.0436013 +0.049468 0.0445737 0.00523787 +-0.00949755 0.0856659 0.0574293 +0.0137231 0.129888 0.00901711 +-0.0849311 0.0980032 -0.00158096 +0.0094116 0.0360543 -0.0227822 +0.029005 0.115546 0.0303821 +-0.0136476 0.0481469 -0.0303471 +0.0203578 0.0985304 -0.0223097 +0.0386883 0.0767039 0.0348633 +0.0505119 0.0665023 0.0275359 +-0.0236064 0.038163 0.0249493 +-0.0662075 0.060375 0.00901189 +-0.0309847 0.0381919 0.0323901 +-0.0577888 0.0439091 -0.00660137 +0.0319539 0.0795563 0.0427459 +-0.0888256 0.100978 0.0104077 +-0.0149675 0.0986909 -0.0245721 +0.0080932 0.126458 -0.00628099 +-0.0629819 0.128219 -0.0083429 +0.00592947 0.0982847 -0.0240623 +-0.0791963 0.120405 0.0507691 +0.0385114 0.0583288 0.0314228 +0.0327231 0.116168 0.00178038 +-0.0838537 0.110728 0.0339922 +-0.0559583 0.0478125 -0.00439058 +-0.0864154 0.152983 0.0204471 +-0.0846489 0.0778245 0.0165124 +-0.0244888 0.120706 0.0294035 +-0.0565129 0.051223 0.00779351 +-0.00649552 0.111418 0.0421995 +-0.0400289 0.0336199 0.00584373 +0.00964377 0.120482 -0.0138306 +-0.0819198 0.126566 -0.00507678 +-0.023502 0.180157 -0.0112302 +-0.033578 0.0448331 0.0458046 +-0.0771053 0.177652 -0.0476237 +-0.0244946 0.0357757 0.0532784 +0.044574 0.0903504 0.0211613 +0.0317623 0.0938577 -0.0173357 +-0.0767292 0.0860417 0.0380634 +-0.0291365 0.165225 -0.016186 +-0.0558064 0.0562012 0.00862658 +-0.0197239 0.0612902 -0.0351879 +-0.0624763 0.163084 -0.0515885 +-0.00157869 0.0347285 -0.0237137 +0.0250862 0.0741055 0.0468243 +-0.00657564 0.0346831 -0.0243352 +-0.0927326 0.12419 0.0292678 +-0.0642565 0.0418897 0.0384072 +0.0074848 0.0976824 0.0494394 +-0.0324803 0.0436623 0.0489836 +0.0309993 0.0686673 0.04128 +-0.00959045 0.0337105 -0.0233226 +-0.0692347 0.176505 -0.0570351 +-0.0524975 0.111152 0.036921 +0.0434926 0.056984 0.0319757 +-0.0448698 0.104232 -0.0209188 +-0.0689139 0.148999 -0.0367601 +-0.0366298 0.0344715 0.0361774 +-0.0772403 0.0846603 0.0372078 +-0.0866727 0.139248 0.0421058 +-0.0692038 0.156713 -0.0519425 +-0.0286406 0.154979 -0.0065778 +-0.0516452 0.119776 0.0340339 +-0.0604002 0.0591276 0.0185111 +-0.0789005 0.172846 -0.0440952 +-0.0733588 0.0659821 0.00263497 +-0.0644533 0.0351399 0.0400818 +0.0349985 0.0619413 0.0382049 +-0.0116935 0.0584778 -0.0346471 +0.0397873 0.104095 -0.000789682 +0.0261507 0.0923065 -0.0217116 +-0.0643301 0.156694 -0.0446094 +0.0312874 0.108108 -0.0105276 +-0.0718754 0.119424 -0.00835095 +-0.0897483 0.0929448 0.0154361 +-0.0322408 0.125589 0.00213325 +0.0193474 0.0551603 -0.0276297 +-0.0355381 0.0335618 -0.0245193 +-0.0323633 0.175433 -0.0143069 +0.0591153 0.0705615 0.014025 +-0.0685156 0.168032 -0.0539935 +-0.0408127 0.127672 -0.0010356 +-0.070932 0.129672 -0.00889239 +-0.0315034 0.0717826 0.0402663 +0.0139874 0.0924572 -0.0278842 +-0.00310937 0.0390986 -0.00637767 +-0.0315484 0.0749387 -0.030532 +-0.0658202 0.0597996 0.0132017 +-0.074125 0.079542 -0.012586 +-0.042758 0.0336059 0.00168497 +-0.0376274 0.0534153 -0.0106276 +-0.0609006 0.106856 -0.0171292 +-0.0465015 0.112315 -0.0168133 +-0.00832405 0.129364 0.00227931 +0.000993844 0.0989182 -0.0247915 +-0.092775 0.128304 0.0272531 +-0.0024916 0.073257 0.0585379 +-0.0354714 0.0959602 0.0437897 +-0.0798628 0.122191 -0.00554615 +-0.0379836 0.153062 -0.00765575 +-0.0574689 0.0413481 0.0461934 +-0.0681352 0.166058 -0.0212868 +-0.0655788 0.037063 0.0157921 +-0.0104996 0.03868 -0.00189881 +0.00192546 0.0390395 0.0275923 +-0.0598545 0.0467827 -0.000327155 +-0.0510269 0.136724 0.0245519 +-0.0626706 0.0343644 0.032487 +0.0368248 0.11128 0.0190303 +0.047871 0.0733255 0.0156276 +-0.0291332 0.059286 -0.0234112 +-0.0554108 0.0344947 0.0391385 +-0.0892997 0.0956389 0.0174174 +-0.0880049 0.11182 0.00834875 +0.0309816 0.102484 -0.0145328 +0.0183118 0.0665429 -0.0287115 +0.00448658 0.111391 0.0416751 +-0.0902127 0.122664 0.0052855 +-0.0900898 0.119956 0.00430245 +-0.026505 0.174198 -0.0103819 +-0.0214492 0.0963545 -0.0261739 +0.0574071 0.0691343 0.00477569 +-0.0755392 0.154957 0.000803149 +-0.0205078 0.049871 0.046386 +-0.0302748 0.116055 -0.0148216 +0.0522643 0.0732287 0.00987093 +-0.0353184 0.153664 -0.00782609 +-0.0468563 0.101377 -0.0215448 +0.0252483 0.0713214 0.0452679 +-0.01624 0.0963836 -0.0301721 +-0.0374901 0.0505918 0.0391881 +-0.000727236 0.069749 -0.034387 +-0.0295801 0.0368886 0.052851 +0.0174262 0.0350846 0.00327627 +-0.0408044 0.0884947 -0.0224789 +-0.0540496 0.0546601 0.0106814 +-0.0841802 0.136658 0.046769 +0.0265654 0.0388814 0.0291555 +-0.0365515 0.115187 -0.0158874 +-0.0746646 0.0981736 0.0384691 +-0.0461647 0.162128 -0.00806097 +-0.0838755 0.106118 0.000396239 +-0.0634664 0.0345901 0.0373297 +-0.0487026 0.0708482 -0.0151225 +-0.0490488 0.150196 -0.0040443 +-0.0454995 0.107082 0.0401134 +0.015502 0.109895 0.0399577 +0.0339767 0.0796167 -0.0178174 +-0.064903 0.110966 -0.0133006 +-0.0884279 0.0874564 0.00647862 +0.0303366 0.0352283 0.0150252 +-0.0476647 0.15359 0.00991943 +0.0491492 0.0460297 0.00132033 +0.0571336 0.0721807 0.0116675 +0.0423629 0.0398964 0.0150374 +-0.0075036 0.12108 0.0363047 +-0.0304017 0.0791045 -0.033577 +-0.0707511 0.0654954 0.0231537 +-0.0344941 0.171246 -0.000779029 +-0.0516393 0.0618882 -0.0103104 +0.0364959 0.064355 -0.0127735 +0.0258636 0.0344283 0.00929921 +-0.06094 0.0410414 0.0167056 +0.0388283 0.102661 -0.00481845 +0.00951185 0.0560842 0.0527429 +0.0250009 0.0629104 -0.0235842 +-0.0883814 0.100948 0.00841627 +-0.0896675 0.150196 0.0231327 +-0.0502775 0.0487457 0.0176637 +-0.0574379 0.0576833 0.0026039 +-0.0889127 0.145822 0.0300758 +0.00105802 0.0387062 0.0241019 +0.0432951 0.0987146 0.0161577 +-0.00981592 0.123797 -0.00918874 +-0.0235467 0.119499 0.0316537 +-0.0203743 0.127028 0.00506457 +-0.0546314 0.138445 -0.00241154 +0.0144977 0.11819 0.0360011 +-0.0468871 0.150669 0.00925072 +0.00310943 0.110155 -0.0202398 +-0.0315082 0.0817114 0.0416031 +-0.0361907 0.169669 -0.0137878 +-0.0266475 0.0904555 0.0474235 +0.00393808 0.131671 0.0154244 +-0.0594984 0.109765 0.0377884 +-0.0632488 0.167828 -0.0435907 +0.02054 0.116646 0.0351499 +0.046015 0.0862238 0.00817489 +-0.0472066 0.033531 -0.00644781 +-0.0382901 0.126893 -0.00216373 +0.0358746 0.0755562 -0.0137901 +-0.00915886 0.0385694 0.027547 +-0.083022 0.132397 -0.0026267 +-0.0665414 0.155108 -0.00331096 +-0.0344162 0.168264 -0.00253059 +-0.0891077 0.101031 0.0163881 +-0.0165765 0.119912 -0.0109781 +0.00442197 0.11861 -0.0157775 +-0.0234514 0.0892984 0.0527307 +0.0565327 0.0523952 0.0217798 +-0.0515006 0.111173 0.0369493 +-0.0218128 0.183092 -0.0122978 +0.0044132 0.0376001 -0.0242202 +-0.0654801 0.0675388 0.0330326 +-0.010497 0.0717087 0.0563199 +-0.065424 0.0399796 0.0326661 +-0.0228869 0.180156 -0.0121058 +0.0203379 0.125091 8.19329e-05 +-0.0802772 0.089954 0.0344521 +-0.0772906 0.165906 -0.0257637 +-0.012412 0.0382658 0.0163183 +0.0102284 0.0616887 0.0533551 +-0.00987882 0.105925 -0.0227673 +-0.00348977 0.122389 0.0359468 +-0.0759061 0.0675035 0.00967604 +-0.0414986 0.0874028 0.042497 +-0.0605969 0.06056 0.0225173 +0.0395569 0.0702481 -0.0107925 +-0.0329324 0.0638892 -0.016427 +-0.000943594 0.0381622 0.0205587 +-0.0338755 0.107095 -0.0200162 +-0.0125023 0.0486789 0.0487656 +0.0274856 0.0400248 0.0301572 +-0.0008153 0.10869 -0.0211159 +0.0343096 0.0419726 0.0279684 +-0.0247603 0.0865587 0.0527086 +-0.00553736 0.113796 -0.0185731 +-0.021633 0.035044 -0.0280533 +0.00828872 0.130472 0.0213052 +-0.0242184 0.0593353 0.0417104 +0.0288386 0.111536 -0.010211 +-0.0581339 0.0334069 -0.00670381 +0.037704 0.0574555 -0.00668675 +-0.0710158 0.13691 0.0483444 +-0.0305078 0.112529 0.0355647 +0.0343502 0.114842 0.0181324 +-0.0485971 0.0359097 0.00925535 +-0.0288479 0.0578621 -0.0233922 +-0.051497 0.0890197 0.045238 +0.0121456 0.0347039 0.0353715 +-0.0716902 0.155937 0.00211062 +-0.0790692 0.0804499 0.033529 +0.0545445 0.0589886 -0.00181806 +0.0529955 0.0716182 0.0219676 +-0.056511 0.121265 0.0393235 +0.032607 0.0527076 -0.00976892 +-0.0376644 0.0335909 0.0081569 +-0.0936994 0.128298 0.0232525 +-0.0809806 0.0720629 0.0115411 +-0.0239408 0.0886576 -0.0363455 +-0.0859344 0.107632 0.00736881 +-0.0277915 0.0782183 -0.0359607 +-0.0571511 0.0394305 0.0468685 +-0.0839381 0.0791399 0.0214982 +-0.0234217 0.0359155 0.0533704 +-0.0739011 0.106421 -0.010241 +-0.0567145 0.0334976 0.000765085 +-0.0241329 0.157302 -0.00905689 +-0.0128819 0.126866 -0.00238505 +-0.0250553 0.0707727 0.0450037 +-0.0444963 0.119293 0.0294103 +-0.0463222 0.0411097 -0.0132713 +-0.0451547 0.0437693 -0.0122411 +0.0475648 0.0553802 0.031711 +-0.0494965 0.11266 -0.0171746 +0.00314926 0.122256 -0.0116623 +-0.089161 0.137877 0.0251937 +-0.0171561 0.0387671 0.0311342 +-0.0659181 0.10388 -0.0158661 +-0.062107 0.163118 -0.0365927 +0.0444569 0.0444867 0.0259758 +-0.0206484 0.0464719 -0.0278809 +-0.0668387 0.144945 -0.0185544 +-0.0574928 0.102919 0.0421703 +-0.0655518 0.166572 -0.0275081 +-0.0339393 0.126307 0.017694 +-0.0176989 0.0554882 -0.03328 +0.012239 0.0794574 -0.0314827 +-0.0344963 0.094609 0.0443801 +0.0228685 0.123786 0.00100726 +-0.0920259 0.132307 0.0132318 +-0.0713267 0.169665 -0.0267525 +-0.081588 0.0788215 -0.00249997 +-0.0755712 0.102178 0.0364401 +-0.0482055 0.0335674 -0.00667883 +-0.0295069 0.109802 0.0378356 +-0.0819634 0.103331 0.0300688 +-0.0766364 0.0788383 -0.00918256 +-0.0472353 0.12392 0.0280317 +-0.0424858 0.064826 0.0410217 +-0.00749383 0.112788 0.0415528 +-0.0321607 0.174124 -0.015122 +-0.0148084 0.124344 -0.00565133 +-0.0630295 0.126909 0.044075 +-0.0122771 0.129643 0.0167063 +-0.0137469 0.0714346 -0.0382786 +0.0253964 0.0981715 0.0439168 +-0.0105339 0.100499 0.0452584 +-0.0909546 0.139232 0.0191849 +-0.0239226 0.16684 -0.0101968 +-0.00433796 0.0387886 -0.000752538 +0.00920046 0.0879669 -0.0320124 +-0.0404937 0.0662835 0.0416604 +-0.0569887 0.118401 0.0385929 +-0.0715396 0.0362187 -0.000138838 +0.0226226 0.0591926 0.0466634 +-0.0544937 0.112536 0.0358256 +-0.0843481 0.145997 0.00513587 +-0.022811 0.0756351 -0.0385829 +-0.0666897 0.0735998 -0.0145924 +-0.0404977 0.116683 0.0325662 +0.0032744 0.114489 -0.0193505 +0.00148054 0.0413996 0.0463959 +-0.0245078 0.0767611 0.0513331 +-0.0308625 0.101511 -0.0227041 +0.00533966 0.0345787 0.0412861 +-0.0774755 0.170095 -0.0341987 +-0.0650593 0.125632 0.048098 +0.0112751 0.0505364 0.0494832 +-0.0786212 0.0976351 -0.0095679 +-0.0726748 0.0647223 0.00565049 +-0.0350102 0.158094 0.00367693 +0.0175012 0.11539 0.036772 +-0.0205761 0.0350586 0.0512942 +-0.0408828 0.108487 -0.0195205 +-0.0324978 0.0661054 0.0396515 +-0.0860138 0.0845642 0.00148082 +0.00924462 0.0710839 -0.0326657 +-0.0573888 0.0342428 0.0302238 +-0.0809405 0.141759 -0.00181375 +0.0351408 0.0931106 -0.0145377 +0.0391769 0.106978 0.0201683 +-0.0378047 0.0342916 0.0307956 +-0.0614885 0.0932285 0.0449784 +-0.00750736 0.0561433 0.0534652 +0.0317881 0.0564278 0.038783 +-0.0258626 0.0378286 0.0139698 +-0.0515546 0.0445278 -0.00899667 +-0.010869 0.165486 -0.0158779 +-0.0297303 0.109983 -0.0184292 +-0.0469177 0.0346518 0.0071269 +-0.0286016 0.109083 -0.0194963 +-0.0109096 0.172768 -0.0212178 +0.00821291 0.0711477 -0.0331375 +0.00315167 0.10307 -0.0219554 +-0.0472567 0.132959 0.0215876 +-0.0825276 0.142074 0.0435561 +-0.0136058 0.093388 -0.035076 +-0.0179202 0.0385865 -0.0163394 +-0.0641268 0.0405801 0.0396199 +0.0124469 0.129111 0.00141235 +-0.0637038 0.0343279 0.0323025 +0.0354218 0.100763 0.0338403 +0.0121385 0.130422 0.0141392 +0.00281822 0.126541 -0.00629609 +0.000901863 0.122026 -0.0113896 +-0.0702669 0.176516 -0.0559875 +-0.0576072 0.0336162 0.0112663 +0.0129045 0.125515 -0.00527553 +-0.021518 0.115416 0.036565 +-0.01542 0.16691 -0.0137031 +-0.0365035 0.168234 0.000585726 +0.00464616 0.034105 0.00716872 +-0.0319348 0.125225 0.000800634 +-0.0169495 0.0390889 0.0362738 +-0.024481 0.104364 0.0426891 +0.0161036 0.0393372 0.0440174 +-0.0397156 0.127552 0.0155957 +-0.0063009 0.09425 -0.0339062 +-0.00549064 0.104476 0.0440202 +-0.0455034 0.104326 0.041412 +-0.0625466 0.16468 -0.0375945 +-0.0334032 0.0765382 -0.0275106 +-0.0118225 0.0855318 -0.0386599 +0.0100166 0.0833203 0.0549696 +-0.0685481 0.156429 0.0206858 +-0.0705717 0.158164 -0.0459142 +-0.0185161 0.125172 -0.00248935 +-0.0185539 0.095955 -0.0297446 +0.0191428 0.127427 0.0167214 +-0.0145095 0.171282 -0.0176637 +0.0352621 0.0826509 -0.01774 +-0.0526579 0.0504274 0.026653 +0.00237351 0.0465882 -0.0283321 +-0.0854761 0.132564 0.04817 +-0.0868299 0.0846427 0.00348465 +-0.0105903 0.0377043 -0.0258398 +0.00953188 0.0455622 0.0461832 +-0.0662037 0.154495 -0.0505507 +-0.0856221 0.107687 0.0203552 +-0.0858054 0.102155 0.00239755 +-0.0248162 0.126254 0.00926143 +-0.0398081 0.128271 0.00374611 +-0.00949649 0.0546877 0.0525704 +-0.0474662 0.0960033 0.0439936 +-0.0787761 0.1431 -0.00379727 +0.0264606 0.0663192 -0.0226274 +-0.0294891 0.119549 -0.0104626 +-0.0285179 0.0948797 -0.0246293 +-0.0561001 0.14389 0.0312058 +-0.0930288 0.116051 0.018311 +-0.00894653 0.174179 -0.0257648 +-0.0524908 0.113899 0.0349209 +0.0158504 0.0959717 -0.0236278 +-0.0694879 0.0368888 0.0112092 +-0.0802884 0.146109 0.0411929 +-0.0498232 0.0349806 0.0446412 +0.0342731 0.115225 0.0123899 +0.0283978 0.0955434 -0.019149 +-0.0515486 0.141607 0.0193759 +-0.0458573 0.147704 0.00717141 +-0.0735436 0.175947 -0.0433626 +-0.0758292 0.0935231 -0.0136873 +-0.0554898 0.041398 0.0465154 +0.0604856 0.0623173 0.00815473 +0.0135991 0.100782 -0.0226731 +-0.021666 0.16235 -0.015178 +-0.0474866 0.0573572 0.0366835 +-0.0645248 0.154173 -0.00692339 +0.0454055 0.0747572 0.0215389 +-0.0497578 0.0797288 -0.020162 +-0.0463447 0.129406 0.0234768 +0.0153317 0.0580768 -0.0287753 +0.0124861 0.100431 0.0478938 +-0.0288456 0.0986889 -0.0235542 +-0.00949656 0.0471698 0.047803 +-0.0644726 0.165628 -0.0285568 +0.0564615 0.0703554 0.0055259 +-0.0477419 0.0345444 0.0337565 +-0.0415114 0.0520187 0.0393909 +-0.0165872 0.128419 0.0166112 +-0.0649318 0.168832 -0.0387572 +-0.0230309 0.0906523 0.0522978 +-0.0289316 0.0889882 -0.0316153 +-0.0522528 0.0567257 0.0259279 +-0.0113061 0.169739 -0.0249506 +0.0329977 0.0514306 -0.00763543 +-0.0104801 0.120983 0.0360777 +-0.0848294 0.111312 0.0422165 +0.0597675 0.0609389 0.00613027 +-0.0264774 0.0473675 0.0499125 +-0.00223749 0.0939165 -0.0335391 +-0.0188762 0.171241 -0.0152046 +0.0460317 0.0820288 0.0151733 +-0.00015619 0.0389464 0.0272511 +-0.0490964 0.156122 -0.00621407 +0.0240569 0.111353 0.0367066 +-0.0427705 0.0826571 -0.0207663 +-0.0844768 0.0856095 0.0274708 +-0.0120306 0.174239 -0.0210892 +-0.00550834 0.0689154 0.0563731 +0.0289606 0.0679277 -0.0207366 +-0.0308933 0.12367 0.0217821 +-0.00650569 0.0675101 0.0559953 +-0.0789661 0.0859916 0.0360799 +-0.0291346 0.177171 -0.00534178 +-0.0560039 0.140764 -0.00299974 +-0.0584999 0.107052 0.0397144 +0.00834583 0.0539265 -0.0302958 +-0.0169173 0.16018 -0.0117745 +-0.0698587 0.0680767 -0.00467294 +0.00525002 0.0740223 -0.0345195 +0.0110199 0.0860342 0.0546992 +0.0173361 0.0608154 -0.0277985 +0.0111302 0.107269 -0.019511 +-0.021494 0.10578 0.0424616 +0.0436775 0.0859385 0.0262014 +-0.0587477 0.0767588 -0.0188591 +0.0107799 0.0548821 0.052327 +0.0185294 0.0358466 0.0392699 +-0.0859998 0.135257 0.0457789 +-0.0767885 0.154209 -0.0148974 +-0.0613392 0.0587193 0.00967832 +-0.0712669 0.0381904 0.00872646 +0.00351715 0.0561463 0.0534882 +-0.0427983 0.0884442 -0.0218161 +-0.0898373 0.133802 0.0342135 +-0.0414226 0.150668 0.00483874 +0.0173651 0.049165 -0.0241471 +-0.0213294 0.0783028 0.0551779 +0.0143433 0.0537792 -0.0282321 +-0.0784743 0.140032 0.0478552 +-0.0334891 0.0889549 0.0439078 +0.0190476 0.0795376 0.0522219 +0.0286264 0.0638437 -0.020406 +-0.054069 0.139552 0.0288194 +-0.0132381 0.0385471 0.0267309 +0.0118566 0.0887261 0.0541581 +0.0316481 0.100683 -0.014625 +-0.093138 0.120057 0.0112982 +0.0244505 0.0384021 -0.00302114 +0.0122037 0.0864617 -0.0308592 +-0.0121165 0.0973987 0.0513433 +0.0371269 0.09285 0.0362758 +0.00753839 0.119505 -0.0147629 +-0.0698326 0.0937229 -0.0162704 +-0.046496 0.105677 0.0407002 +-0.00449814 0.0870358 0.0571267 +-0.00560579 0.042007 -0.0256504 +-0.0748416 0.154048 -0.0189002 +0.0138852 0.0348367 0.0283807 +-0.0890009 0.118943 0.0464523 +-0.0703858 0.16802 -0.0500308 +-0.0208115 0.124915 -0.0021319 +-0.0399669 0.0343914 -0.00210399 +-0.0188044 0.120762 -0.00982397 +-0.0825182 0.0816676 0.0298907 +-0.0625957 0.0588736 0.0128867 +-0.0908844 0.150204 0.0171288 +-0.073715 0.17176 -0.0333959 +0.0304194 0.0446109 0.0313507 +-0.0364972 0.0605644 0.0405385 +-0.0684905 0.158118 -0.0539401 +0.011386 0.0343226 -0.0122219 +-0.0375464 0.119352 -0.0122401 +-0.036497 0.102841 0.0405772 +0.0373988 0.0430101 -0.00376662 +-0.00864037 0.0526884 -0.0330777 +-0.0505191 0.112725 -0.0172384 +0.000747713 0.131321 0.00709666 +-0.0821064 0.110205 0.0294137 +-0.0338319 0.0498039 0.0388148 +-0.0399647 0.128635 0.00811119 +0.0262642 0.0479348 -0.017662 +-0.093142 0.118716 0.0123041 +-0.0234219 0.0537493 0.0424994 +0.0109672 0.0977693 -0.023517 +-1.32571e-05 0.13145 0.0125463 +0.0200527 0.0618555 0.0482337 +-0.0119089 0.128954 0.021205 +-0.0524994 0.0903873 0.0447034 +-0.0334979 0.0845774 0.0421828 +0.0190672 0.117213 -0.0123322 +-0.0263135 0.0381467 0.0262093 +0.034589 0.108233 -0.00663102 +0.0435886 0.091694 0.0241609 +-0.00849618 0.0939016 0.0554996 +-0.0579701 0.125253 -0.00738272 +-0.016138 0.0382862 0.0119165 +-0.0709351 0.0742605 0.0366097 +-0.0125367 0.128434 0.00198737 +-0.0244307 0.0379986 0.0104913 +-0.0681277 0.152206 0.0356633 +-0.0279464 0.0689892 -0.032513 +0.0398535 0.0752995 0.0330037 +-0.0636875 0.0722354 -0.0149801 +0.00569987 0.0949071 -0.0304911 +0.0217235 0.120687 0.0315848 +0.0306109 0.0549842 0.038821 +-0.0719231 0.155792 0.0253493 +-0.0350091 0.168257 -0.00164334 +-0.0919787 0.13239 0.0232249 +-0.0781961 0.0730005 -0.00359699 +0.0587114 0.0663183 0.00513779 +-0.0669656 0.147091 -0.0266318 +-0.0880403 0.150094 0.0102212 +-0.0137235 0.0657235 -0.0372342 +-0.0884987 0.102354 0.0183681 +-0.0219433 0.0386564 0.0320445 +-0.0629896 0.0341974 0.0167609 +0.0436977 0.0404602 0.0147575 +-0.0413787 0.124797 0.0224172 +-0.0255118 0.0931431 0.0461963 +-0.0122206 0.175683 -0.0283056 +-0.0580888 0.115436 0.0369297 +-0.0783607 0.150068 -0.00187639 +0.0561422 0.049398 0.0141897 +-0.0334907 0.0932064 0.044455 +-0.0784392 0.144133 0.0443751 +0.0134754 0.0990564 0.0479483 +-0.0673994 0.0396352 0.0118227 +-0.0719379 0.131113 -0.00828186 +-0.0675058 0.060447 0.0122781 +-0.0276134 0.0408758 -0.0294796 +0.0326756 0.117173 0.0132168 +-0.0741715 0.151271 -0.0318825 +0.0191559 0.0577995 0.0486799 +-0.0624968 0.102902 0.0415908 +-0.0467288 0.054632 0.0374442 +0.0400692 0.0773178 -0.00879643 +-0.0293794 0.119962 0.0282913 +0.026315 0.0849274 0.0469361 +0.00747158 0.0458651 0.0478111 +-0.0644149 0.0731789 0.038947 +0.0243686 0.118145 -0.00732959 +0.0357612 0.0614637 -0.0127934 +-0.00578852 0.0784633 -0.0377499 +-0.0177178 0.125534 0.0250034 +-0.0264348 0.0891318 0.0486594 +0.000504451 0.0842848 0.0575158 +0.00240772 0.0390703 -0.0246208 +-0.0401081 0.172699 -0.00896014 +-0.0494967 0.101524 0.042218 +-0.0255895 0.0365546 -0.0292581 +0.0458597 0.0428246 0.0032848 +-0.0627733 0.141026 0.037362 +-0.0278525 0.100136 -0.023576 +0.03144 0.0681325 -0.0188162 +0.0112459 0.129755 0.00240428 +-0.0872718 0.144583 0.0355002 +-0.0552077 0.119827 0.0376818 +-0.0324974 0.0859857 0.0423469 +-0.0872251 0.0950749 0.0256867 +-0.0468678 0.104213 -0.0207743 +-0.0445775 0.0462028 -0.0108205 +-0.0612826 0.0343712 0.0345145 +-0.0144859 0.0951551 0.0535558 +-0.0770239 0.141306 -0.00545257 +-0.0572927 0.0447946 0.0143752 +0.0334156 0.0430777 -0.00456693 +-0.073856 0.154091 -0.0259028 +0.0392277 0.108354 0.00916622 +-0.0254312 0.0379511 0.0211651 +-0.0579761 0.145744 -0.00191597 +0.016043 0.107446 -0.0178315 +0.0243862 0.0955601 0.0459654 +-0.0527854 0.146248 0.0203946 +-0.0908456 0.137855 0.0191944 +-0.0688648 0.111591 0.0438135 +0.00950305 0.108494 0.0403312 +-0.0846701 0.133487 -0.000689201 +-0.0146178 0.161254 -0.0115208 +-0.0517406 0.0704199 0.0388209 +-0.00483682 0.0910121 -0.035647 +-0.0455024 0.0438631 0.0430524 +-0.0269915 0.165366 -0.00760144 +-0.000429299 0.131494 0.0138246 +-0.0108252 0.0340132 -0.0200775 +-0.053792 0.141582 0.0273817 +-0.0807416 0.0720213 0.00853917 +-0.0886543 0.102345 0.0123871 +0.00450201 0.0745047 0.0565768 +-0.0651106 0.120024 0.049809 +-0.0816493 0.14593 0.000178819 +-0.0317919 0.0396266 0.0512352 +-0.0868829 0.105004 0.0193534 +-0.0587854 0.0839965 -0.0207846 +-0.0568787 0.10406 -0.0186489 +0.0234195 0.0349614 0.0211471 +-0.0247363 0.0683356 -0.0352871 +-0.0124919 0.105832 0.0432095 +0.040945 0.0957511 0.0281635 +-0.0357042 0.0681118 -0.016092 +0.0393973 0.0899152 -0.0117774 +-0.00550412 0.0547964 0.0538028 +0.0275305 0.105074 -0.0152759 +0.0436438 0.0973161 0.0031761 +-0.0642775 0.0356785 0.0173446 +-0.0578787 0.118384 0.0390612 +-0.0235304 0.111308 0.039012 +-0.0248685 0.10443 -0.0231858 +0.0332298 0.0870923 -0.0186827 +-0.050788 0.13247 -0.00197537 +0.0485095 0.0723104 0.0188157 +0.0122831 0.123395 -0.0089862 +0.0075079 0.0786108 0.055765 +0.00110358 0.114412 -0.0192684 +-0.0434472 0.0344528 0.0312293 +0.0149724 0.0740286 0.0533099 +-0.0773286 0.0696655 0.0199272 +-0.000294503 0.124716 -0.00828566 +0.0391665 0.0916193 -0.0109453 +-0.0671371 0.169442 -0.0570354 +-0.0101504 0.0993437 0.0489973 +-0.0383111 0.172675 -0.0109203 +-0.048519 0.137086 0.0153953 +0.0537553 0.0686728 0.0251859 +-0.0642372 0.158555 -0.0140759 +-0.0177679 0.0959988 0.0511065 +-0.071022 0.0408196 0.00705143 +-0.0272272 0.0562777 -0.0264072 +-0.0594982 0.10293 0.0419773 +-0.0516777 0.0668198 0.0365892 +-0.00645905 0.128953 0.0260767 +0.0161504 0.121694 -0.0091598 +0.0437177 0.0457281 0.0283091 +-0.092911 0.118706 0.0113064 +0.0110654 0.0346569 0.0243461 +-0.0131306 0.0351789 0.049391 +0.0159998 0.123366 -0.00698095 +-0.0668407 0.0952437 -0.0171577 +-0.071815 0.0936645 -0.0155813 +-0.0350082 0.162373 -0.00163299 +-0.00952557 0.169814 -0.0256004 +-0.0483792 0.0345623 0.0353569 +0.042732 0.0733313 -0.00479409 +-0.0838195 0.113254 0.0462465 +-0.0700699 0.0415411 0.00206928 +-0.0834164 0.110194 0.0380909 +0.0395682 0.0582726 0.0307001 +-0.0527297 0.0738092 -0.0169322 +-0.0800112 0.0826849 -0.00756298 +0.0378591 0.102628 -0.00683982 +-0.010049 0.165099 -0.0207588 +-0.0214981 0.0486638 0.0490621 +-0.0429934 0.0337652 -0.0113325 +-0.000805756 0.0881637 -0.035184 +-0.0796191 0.0899783 0.0351979 +-0.0774871 0.138654 0.0489668 +-0.0910383 0.131037 0.0312282 +-0.0353528 0.121762 0.0276148 +-0.0692517 0.16944 -0.0530112 +-0.0314965 0.0760483 0.040909 +0.0238425 0.124265 0.00565298 +0.00628938 0.0341841 -0.018778 +-0.0581165 0.0576994 0.00562055 +0.0291881 0.120758 0.0119009 +-0.0722612 0.0718535 0.0331389 +0.00962203 0.129808 0.0232185 +-0.0350797 0.159271 -0.0126349 +-0.0536324 0.0335534 0.00133593 +-0.0104359 0.0944019 -0.0340934 +-0.00347107 0.112728 -0.01944 +0.0492065 0.0445737 0.00425603 +-0.014689 0.0555534 -0.0339367 +-0.0729302 0.110914 0.0452396 +0.0128104 0.0891816 -0.030491 +0.0173644 0.052219 -0.0267492 +-0.0755038 0.138646 0.0489499 +-0.0664863 0.0657678 0.0290911 +0.014321 0.0608889 -0.0289153 +-0.0109854 0.0891937 -0.0368255 +-0.0714642 0.155388 -0.0429121 +-0.0674015 0.178779 -0.0526749 +-0.0136021 0.0406665 -0.0268707 +-0.0656159 0.148667 -0.029991 +-0.0795217 0.0705829 0.00954625 +-0.0757838 0.06757 0.0150388 +-0.0619636 0.125289 -0.00856668 +-0.0639176 0.153606 -0.0366205 +-0.0839617 0.114292 0.0471508 +-0.0125655 0.164041 -0.0130929 +-0.0519903 0.161388 0.00628165 +0.0020129 0.0391581 -0.00540617 +-0.0585951 0.0582039 0.0052961 +0.034843 0.0862437 0.0399362 +-0.0416697 0.0377451 -0.0272469 +0.0488349 0.0718069 0.020409 +0.0223863 0.0449715 0.0408911 +-0.0822334 0.107404 -0.00162196 +-0.0602698 0.154572 0.0280125 +0.0297856 0.120093 0.00926746 +-0.0669649 0.131148 -0.00876196 +-0.0800697 0.154441 0.0255089 +-0.0849288 0.12649 -0.00334252 +-0.000500036 0.0952296 0.0545194 +0.0151613 0.0863718 -0.029541 +0.0388132 0.0794166 0.0350891 +-0.0171133 0.0390763 0.0521827 +-0.0784063 0.0886978 0.0368492 +-0.0643001 0.179479 -0.0601392 +-0.0766538 0.11399 -0.00481419 +-0.016912 0.0931258 -0.0348233 +0.0379841 0.0406211 -0.00115448 +-0.0331507 0.0821697 -0.0275285 +0.0162383 0.0953367 0.0482094 +-0.0326141 0.0638332 -0.0174509 +-0.0725041 0.146981 0.0423864 +-0.0910261 0.12541 0.00626868 +-0.0833424 0.104748 -0.00163012 +0.0153058 0.128412 0.00248962 +0.0403512 0.038719 0.00830945 +-0.0325027 0.0603855 0.0384943 +-0.0195554 0.0387278 -0.0149268 +-0.0839725 0.0897798 0.0296574 +-0.00149888 0.0634085 0.0566876 +0.0387554 0.108357 0.00416438 +-0.0444079 0.0409084 -0.0203048 +-0.0868827 0.0896245 0.0255163 +0.0430409 0.10011 0.0131585 +0.0194835 0.105739 0.0423148 +0.032957 0.115724 0.0233075 +-0.0114871 0.063283 0.055206 +-0.0528865 0.15117 0.0191272 +0.0045048 0.104341 0.0428855 +0.00104791 0.0346359 -0.0164332 +-0.0674529 0.180926 -0.0583799 +-0.0344427 0.15352 -0.00733684 +0.0397392 0.0658643 0.0327972 +-0.0465986 0.120315 -0.0132329 +0.015269 0.034844 0.035887 +-0.0554963 0.0791301 0.0442202 +-0.0342911 0.0473692 0.0421968 +-0.0842876 0.108899 0.00336188 +-0.0262668 0.179961 -0.0169689 +-0.0836964 0.0763445 0.00752427 +-0.0696635 0.159559 -0.0499324 +-0.0661058 0.151041 -0.0375744 +-0.0455019 0.122005 0.0261109 +-0.0890685 0.0969888 0.0194042 +-0.0946116 0.124177 0.0212718 +0.00351301 0.0828608 0.0571024 +-0.0555168 0.154658 0.0152234 +0.00450223 0.0730917 0.0563795 +-0.0125112 0.037888 -0.0164908 +-0.0595378 0.0337212 0.0161226 +-0.0645332 0.120008 0.0489179 +-0.0396568 0.0577566 -0.0113194 +-0.052454 0.13854 0.0254099 +-0.0106577 0.165418 -0.0198106 +-0.0477868 0.0855382 -0.0218048 +-0.07021 0.168534 -0.0249229 +0.0345025 0.0454126 0.0301845 +-0.0261438 0.168232 -0.0181898 +-0.0685956 0.0422314 0.00876662 +0.00130397 0.128647 -0.00252095 +-0.0558871 0.108356 -0.0181276 +-0.0163928 0.0384645 -0.00103951 +-0.0364756 0.0917702 0.0440382 +0.0409317 0.0971197 -0.00479362 +-0.015772 0.160715 -0.00958045 +-0.0428613 0.102811 -0.0212634 +-0.0285136 0.112565 0.0358423 +0.0484971 0.0678077 0.0264809 +-0.0319101 0.121969 -0.00695975 +-0.0200308 0.127492 0.00809368 +-0.0860481 0.114371 0.00228673 +-0.0597203 0.0638916 0.0303834 +0.00627327 0.0682324 -0.0325665 +0.0114155 0.128646 -0.000626619 +-0.0516778 0.140064 0.0213757 +-0.0218071 0.110009 -0.0205036 +-0.0218161 0.0798852 -0.0388524 +-0.02847 0.045966 0.0500228 +0.0429765 0.0987175 0.0181666 +-0.0795395 0.117686 0.0497856 +0.0342026 0.113899 0.000840527 +0.0067112 0.0353739 0.0246266 +0.0402464 0.0618954 -0.00472398 +-0.049455 0.118007 0.0316443 +-0.0442176 0.170815 -0.00391429 +0.00731658 0.0846292 0.0563131 +-0.0542668 0.0504201 -0.00539584 +-0.00648076 0.0969085 -0.030657 +0.0597202 0.067814 0.0181758 +-0.0267919 0.0380272 0.00817341 +-0.0702433 0.163232 -0.0134117 +0.0368364 0.0754262 0.037436 +-0.077497 0.168713 -0.0313178 +0.00996165 0.130854 0.00764162 +0.0133618 0.0523173 -0.0278769 +-0.0337147 0.120592 -0.00951232 +-0.0398766 0.113891 -0.0165093 +-0.089592 0.111931 0.0163329 +-0.0841359 0.0832101 0.027497 +-0.0848856 0.0792043 0.0194951 +-0.0291817 0.0832547 -0.0346104 +0.013224 0.0341678 -0.000459678 +-0.00759782 0.103673 0.0436498 +-0.0514921 0.0804912 0.0440592 +-0.0929632 0.124088 0.0102675 +-0.0586925 0.0677294 -0.0118268 +0.0392263 0.0874331 0.033936 +-0.052704 0.143169 0.0214165 +-0.0286941 0.0380883 0.0293671 +0.0183138 0.0348993 0.0256062 +-0.0644855 0.101502 0.0419335 +-0.0547363 0.159762 -0.000811248 +0.0123244 0.0567269 -0.0296218 +0.0294314 0.0509988 -0.0157519 +0.0386176 0.0874608 0.0348475 +-0.0759101 0.148612 -0.0128604 +0.0152406 0.0723235 -0.0303843 +-0.0475913 0.133999 0.00741747 +-0.0109726 0.115573 -0.0164387 +-0.040716 0.0681271 -0.0158645 +-0.000345107 0.127203 0.0297544 +-0.0856388 0.100529 0.0267624 +0.0372748 0.0576283 0.0326444 +0.0454709 0.0664599 0.0266758 +-0.040383 0.152127 0.00460721 +-0.0503264 0.131112 0.0307063 +-0.061863 0.0953699 -0.0186332 +-0.0356336 0.11996 -0.0108661 +-0.000498349 0.118323 0.0391474 +-0.00744633 0.0386202 0.0260498 +-0.0702648 0.156758 -0.047919 +-0.0607772 0.146055 -0.00361746 +-0.0557733 0.0797194 -0.0205764 +-0.0286229 0.0450027 -0.0280846 +-0.0400285 0.0339876 -0.0295458 +-0.0244818 0.0974513 0.0444604 +-0.0736592 0.0887741 0.0405778 +-0.0626256 0.150596 -0.021578 +-0.0455006 0.117978 0.0306048 +-0.0153159 0.119411 -0.012435 +0.00132313 0.0358703 0.0464707 +-0.0231138 0.0666037 0.0460408 +-0.0487946 0.0869761 -0.0218357 +0.0312031 0.0842875 -0.0196213 +-0.0866673 0.109085 0.0143521 +-0.0716243 0.157487 -0.00225608 +0.0404941 0.0555582 0.0318463 +-0.0624591 0.155071 0.0054624 +-0.043713 0.0695592 -0.0168487 +0.00662363 0.128671 -0.00261559 +0.0292045 0.0356392 0.0180684 +0.0152063 0.0878077 -0.0294658 +0.0560899 0.059136 0.000193317 +0.0162996 0.0623114 -0.0287447 +0.00333411 0.0539266 -0.0303683 +-0.0212016 0.0383732 -7.87452e-05 +-0.0683674 0.147186 -0.0280671 +-0.0614001 0.124084 0.0428232 +-0.0273522 0.0939518 -0.0257303 +-0.0526652 0.0647199 -0.0102 +-0.032486 0.0449059 0.0475402 +-0.0090473 0.168146 -0.0217175 +-0.069891 0.119438 -0.0086356 +-0.0744393 0.114503 0.0509494 +-0.0648928 0.0350374 0.038379 +-0.00019365 0.125094 0.0326823 +-0.039166 0.0355671 -0.0293815 +-0.0258209 0.0692735 0.0430043 +-0.0620187 0.175667 -0.057604 +-0.0903815 0.130904 0.00623191 +-0.00457753 0.11466 -0.0174869 +-0.0733982 0.114573 0.051125 +0.00137655 0.0380516 0.0229424 +-0.0197661 0.0728664 -0.0388949 +-0.0370853 0.162227 -0.0135318 +-0.0166846 0.109701 -0.0201927 +-0.0564987 0.0932477 0.0451284 +-0.086761 0.084678 0.016478 +-0.0201321 0.0568083 0.0475876 +-0.0893331 0.111939 0.012355 +-0.0291964 0.162421 -0.00376774 +-0.0840799 0.143223 0.00416483 +-0.0550692 0.121281 0.0379498 +-0.0258999 0.0382697 0.0279803 +-0.0881372 0.150234 0.0261027 +-0.0189632 0.0385431 -0.0165058 +0.0252198 0.0478964 -0.0186081 +-0.0250024 0.118057 -0.0129436 +-0.0341053 0.162392 -0.00207929 +-0.0455587 0.0461599 -0.0105245 +-0.0673284 0.11863 0.0518333 +-0.0767393 0.157602 -0.0105393 +-0.0460199 0.0377083 0.0451098 +0.00937824 0.0346871 0.0203526 +-0.0232543 0.181611 -0.01087 +-0.0185423 0.0342292 -0.0199208 +0.0094823 0.034855 0.0256576 +-0.00349094 0.060529 0.0547186 +-0.0536823 0.0678463 -0.0129474 +0.0573543 0.0687146 0.022093 +0.0297466 0.036015 0.0196643 +0.0183828 0.0447123 -0.0227438 +-0.00451438 0.1296 0.000561158 +-0.0575172 0.037335 -0.0101901 +-0.0273178 0.113609 -0.0162558 +-0.0127855 0.0392769 0.0369668 +0.0359154 0.0915824 -0.0149202 +-0.0321871 0.0680263 -0.0214501 +0.0373115 0.0673123 0.0362946 +-0.0482709 0.0345995 0.0405757 +-0.0586992 0.142676 -0.00307276 +-0.0720231 0.149543 -0.0391183 +-0.0926193 0.122848 0.0312739 +-0.00649959 0.103045 0.0436802 +-0.0172605 0.128293 0.0149127 +0.0500544 0.0553974 0.0300563 +-0.0459009 0.131661 0.0191601 +-0.0355139 0.176726 -0.00796363 +-0.0132739 0.162396 -0.014817 +-0.0205091 0.112696 0.0389743 +0.0400974 0.0943736 -0.00783899 +0.0445099 0.0945603 0.0161557 +-0.00940844 0.100291 -0.0242411 +-0.0880121 0.147225 0.0305337 +-0.0134729 0.17718 -0.0214028 +0.0289055 0.0408264 0.0297172 +-0.0386238 0.0335154 -0.0250853 +-0.0474847 0.0931518 0.0438057 +0.0385195 0.109282 0.00815775 +-0.0094889 0.119647 0.0372435 +-0.0558334 0.0358523 0.0464479 +0.0391497 0.108397 0.00837586 +-0.0166742 0.0668915 0.0537111 +-0.0514343 0.0647808 0.0348885 +-0.0506054 0.0575708 -0.00965819 +0.0186225 0.0355557 -0.00967449 +-0.0507888 0.0855066 -0.0215873 +-0.0563207 0.0562341 0.00763908 +0.00416104 0.0393786 0.0331643 +0.00410872 0.110162 -0.02034 +-0.0326921 0.152804 -0.00294992 +-0.0105902 0.0385498 0.00372703 +-0.0450772 0.0337168 -0.000691764 +0.00110427 0.111585 -0.0201254 +-0.086661 0.123026 0.0482846 +-0.00349688 0.0633763 0.0563118 +0.0181674 0.0959966 -0.023265 +0.0171824 0.126495 -0.000336309 +0.0349695 0.0577828 0.0363582 +-0.0893883 0.0956403 0.0164184 +-0.0132244 0.172771 -0.0193112 +-0.0115098 0.0702302 0.0553956 +0.0292762 0.0431552 0.0314362 +0.0355897 0.0411906 0.0271165 +-0.0396848 0.0344413 0.0355548 +-0.0488762 0.0335766 0.000473902 +-0.0845392 0.0778023 0.0145171 +-0.0600467 0.0342661 0.0313871 +-0.0484946 0.156406 0.00957752 +-0.0435279 0.0506014 0.0392212 +-0.0581322 0.0624985 0.0284102 +-0.0319273 0.126498 0.0125244 +-0.0692254 0.124258 0.0526584 +0.0346263 0.114673 0.0139267 +-0.0707453 0.113137 0.049314 +0.0440515 0.0722274 0.0248494 +-0.0190238 0.0384735 0.0274147 +0.0318733 0.11664 0.0243218 +-0.00980958 0.166665 -0.0207735 +-0.075878 0.0954761 0.0383509 +0.04237 0.0533961 -0.00679891 +-0.00515103 0.127241 0.0295045 +-0.0386117 0.0406767 0.0425487 +0.0591522 0.0552732 0.011174 +0.0399613 0.0806226 0.0334139 +-0.0892353 0.14446 0.0304266 +-0.0104754 0.127368 -0.00300647 +-0.0635158 0.162004 -0.0583208 +-0.0801984 0.0868229 -0.00856132 +-0.0600399 0.13696 -0.00647222 +-0.0777335 0.153443 0.0307864 +-0.046469 0.119345 0.0289808 +-0.0313084 0.126018 0.00688499 +-0.0190244 0.0385858 -0.00538325 +-0.0698329 0.112058 0.0465849 +-0.0761752 0.110468 0.0448594 +0.0607736 0.0651167 0.0161629 +-0.0738077 0.102191 0.0374953 +-0.0406116 0.0337811 0.00738645 +-0.0152574 0.166467 -0.0199789 +0.0135127 0.0860479 0.0530247 +-0.072308 0.159721 -0.00687103 +0.00549414 0.130728 0.00313392 +-0.00649655 0.0870315 0.0570873 +-0.0353742 0.125928 -0.00196324 +0.00551011 0.0870055 0.0566199 +0.00569172 0.093878 -0.0314287 +0.0453353 0.0533808 -0.00616451 +-0.0788788 0.16526 -0.0309581 +0.0122616 0.0765812 -0.0308581 +-0.0471876 0.131943 0.0231102 +0.0442177 0.0860807 -0.00279659 +-0.0735334 0.165176 -0.017728 +-0.0896904 0.116203 0.0443945 +-0.0887705 0.0969872 0.0214096 +-0.0201887 0.0754016 0.0541402 +0.0203245 0.0636 -0.0272806 +-0.0513256 0.0345659 0.0399502 +-0.0461113 0.034482 0.0324006 +-0.0773794 0.109459 0.0418273 +0.0262228 0.0747294 -0.0245497 +-0.0281178 0.0845911 -0.0356125 +-0.029049 0.0511502 0.0411139 +-0.0685509 0.065132 0.0256966 +-0.0660181 0.127026 0.048508 +-0.0475948 0.0403553 0.044655 +-0.0711998 0.15079 -0.0434624 +0.0346942 0.0401467 0.0260507 +-0.0803051 0.0719229 0.0175051 +0.0266708 0.121701 0.00384182 +-0.0637803 0.118542 0.0465326 +0.0257185 0.0699313 0.0441746 +-0.0865836 0.11378 0.0451954 +-0.0543656 0.153368 0.0199938 +-0.0147843 0.0981951 -0.0260468 +-0.0480746 0.134034 0.00539884 +-0.0172971 0.0386165 -0.00691824 +0.024363 0.0867852 -0.0239669 +0.000502788 0.056275 0.0546165 +0.0460119 0.0750141 0.00420589 +-0.0813458 0.154098 0.0250842 +-0.0504992 0.111154 0.0370407 +0.0480441 0.0725423 0.0171549 +0.0177377 0.0821568 0.0520978 +-0.0634907 0.0833477 0.0441845 +-0.0287709 0.04365 -0.0290051 +0.0412886 0.0858436 -0.00978207 +-0.0434867 0.0959016 0.0426578 +-0.0685902 0.112767 0.0465657 +0.0446015 0.0889424 0.0221651 +0.0387218 0.0993392 0.0297824 +-0.0569101 0.0984236 -0.0203516 +0.0460228 0.0834207 0.0061859 +-0.0608711 0.101136 -0.0186334 +0.0198592 0.123572 0.0284223 +-0.0670185 0.155095 -0.00202392 +0.00194178 0.0353485 0.0200578 +-0.0202225 0.0381837 0.0220241 +0.0372544 0.111046 0.00772111 +-0.0226761 0.0552382 -0.0304344 +-0.0500773 0.15315 -0.00486218 +0.0361622 0.075448 0.0382492 +0.00638813 0.0448624 -0.0253374 +0.0240783 0.123806 0.00430528 +-0.0874625 0.123933 -0.000723767 +0.0191746 0.064523 0.0487473 +-0.0528554 0.116872 0.0339893 +0.0012658 0.0697321 -0.0339789 +0.0363552 0.112269 0.0088181 +-0.0336364 0.0836212 -0.0255231 +0.0394621 0.0820907 0.0342997 +-0.0759857 0.112794 0.0483899 +0.042364 0.0505846 -0.00668018 +-0.0878291 0.0895228 0.0236162 +-0.0717396 0.156144 0.0122972 +-0.0118777 0.107304 -0.0220947 +-0.0518036 0.0898543 -0.0220029 +-0.0605307 0.142151 -0.00455603 +-0.00730388 0.0394625 0.048838 +-0.0695099 0.151355 -0.0447129 +0.0461391 0.0820336 0.0131698 +-0.0680095 0.151244 0.0371953 +-0.0696447 0.155522 0.00577511 +0.0106458 0.0343542 -0.00488721 +-0.0717447 0.165221 -0.0449739 +0.00872274 0.0346011 0.0383625 +-0.0601559 0.0472008 0.00728305 +-0.072526 0.149972 -0.0424686 +-0.0921507 0.129567 0.0102504 +-0.0195451 0.0382679 0.00943 +0.017351 0.0351839 -0.014686 +0.026638 0.0619848 -0.0226053 +-0.0779425 0.0757661 -0.00656744 +0.0456648 0.0834028 0.0181693 +-0.00238392 0.0391586 -0.00815532 +-0.0760947 0.171183 -0.0343205 +-0.037685 0.127343 0.0163262 +0.0200653 0.084847 0.0502217 +-0.0576821 0.0438911 0.0236882 +-0.00181158 0.0365903 0.0109133 +-0.0227414 0.0640418 -0.0345473 +-0.0607804 0.0397294 0.0180031 +0.00451899 0.0966593 -0.0283637 +-0.00904759 0.0994069 0.0493883 +0.036694 0.0368281 0.0111245 +-0.0476151 0.0378648 -0.0125385 +-0.0374934 0.0620193 0.0412021 +-0.0678369 0.0706443 0.0351197 +0.0262359 0.122255 0.0222063 +-0.0258834 0.0347926 0.045205 +-0.0730191 0.0808411 -0.0145801 +0.0272041 0.0968528 0.0430049 +-0.0387216 0.0710357 -0.0169218 +-0.0802983 0.0953773 0.0342868 +-0.0928216 0.122866 0.0342742 +0.0288283 0.120572 0.00606361 +-0.0872644 0.139206 0.0412952 +-0.0528885 0.108408 -0.0187758 +-0.0614742 0.149784 0.0364078 +-0.0888928 0.113895 0.0428033 +0.0133289 0.0681229 -0.0310343 +-0.000536732 0.10034 0.0474846 +0.0582707 0.0579579 0.00417743 +-0.0896629 0.124003 0.00427429 +-0.0333755 0.0483636 -0.0203394 +-0.0335104 0.169764 -0.00293532 +-0.0488446 0.119728 0.0310062 +0.0426741 0.0972641 0.0231497 +-0.0441044 0.0451364 -0.0122986 +-0.059855 0.0594826 0.0200848 +0.0270691 0.0942437 0.0445649 +-0.0896385 0.0969877 0.0134181 +-0.0456599 0.0636306 -0.0135866 +0.0575548 0.053733 0.00618309 +-0.054499 0.0776179 0.0432703 +0.0434163 0.0464179 0.0294988 +-0.0134899 0.0951663 0.0534531 +0.0324423 0.0754774 0.0416539 +-0.0117218 0.0382705 0.0200729 +-0.0308456 0.0396262 0.0517145 +0.0564645 0.0594668 0.0252844 +-0.0475135 0.0491287 0.0385522 +-0.0396908 0.0651397 -0.0142325 +0.0201781 0.0351992 0.0293411 +-0.0219159 0.175693 -0.0142737 +-0.0688718 0.063973 0.0231175 +0.0174279 0.12392 0.0289777 +-0.0699032 0.0687756 0.0310328 +-0.0528961 0.143026 -0.000455911 +-0.0475121 0.0438565 0.0432608 +-0.0275879 0.0384125 -0.00879832 +0.0421339 0.102871 0.00816377 +0.0276939 0.085014 -0.0220629 +-0.0593718 0.0422854 0.0165091 +0.0245725 0.122909 0.0244414 +0.00141552 0.0990584 0.0500955 +-0.0208664 0.103024 -0.023442 +-0.04595 0.0351008 -0.0224117 +0.0425933 0.066459 0.0273252 +-0.085327 0.0926016 -0.00256332 +-0.0496528 0.0345916 0.0385506 +-0.023191 0.178657 -0.0125853 +-0.0179257 0.0971306 -0.0269629 +0.0383787 0.0575308 -0.00558257 +-0.0190955 0.0939751 -0.033709 +-0.0659978 0.135528 -0.00820667 +-0.0379695 0.0348544 -0.0150276 +0.0231948 0.0344554 0.00500709 +-0.0577114 0.148197 0.0324041 +0.0473189 0.0638822 -0.00202275 +-0.091122 0.115466 0.0410527 +-0.0499316 0.141822 0.00385784 +-0.0663647 0.0360087 0.0372253 +-0.0453211 0.0345932 0.035979 +-0.00367712 0.0569332 -0.0329252 +-0.0883137 0.103697 0.0153744 +0.0333218 0.0981688 0.0378146 +0.0206459 0.0429683 -0.0197059 +-0.0718069 0.0887788 0.0415418 +-0.050581 0.0445938 -0.00942218 +-0.0589701 0.121961 -0.00876657 +-0.0786152 0.163841 -0.0309629 +-0.0919702 0.114664 0.0123319 +-0.0387263 0.127561 -0.000266265 +0.0573405 0.0635192 0.0248021 +-0.0778913 0.126656 -0.00702073 +-0.0685283 0.0434892 0.00727271 +-0.0779351 0.161108 -0.0209335 +-0.0892037 0.0956419 0.0194144 +-0.091675 0.147474 0.0191435 +0.00817319 0.0832888 0.0558122 +-0.051142 0.0627417 0.0330975 +0.00546913 0.116627 -0.0176566 +-0.0278605 0.124718 0.0184442 +-0.0689992 0.150311 0.0384044 +-0.0690062 0.162382 -0.0519693 +-0.00661995 0.130084 0.0216557 +0.0403849 0.0533789 -0.00673496 +0.0156377 0.0348863 0.0377268 +0.0577131 0.0523367 0.00917793 +-0.00120988 0.105335 0.044053 +-0.00579434 0.0351694 0.0474261 +0.0411666 0.0833385 0.031438 +-0.0325019 0.0988116 0.0438807 +0.00307304 0.124054 -0.00961404 +-0.0350636 0.0383682 -0.0121121 +-0.073931 0.128192 -0.0084465 +0.015055 0.123588 -0.00721903 +0.0455542 0.0875891 0.00417683 +-0.006733 0.0684593 -0.0359965 +0.00394905 0.100531 -0.0224465 +-0.0399008 0.128531 0.0110866 +-0.0778707 0.177255 -0.0480374 +-0.0310993 0.177108 -0.0141677 +-0.0307989 0.0833965 -0.031578 +0.00828982 0.0846467 0.0559983 +-0.0926147 0.121379 0.00928006 +-0.0309131 0.0848198 -0.0305724 +-0.0610919 0.155915 0.0160896 +0.0269409 0.117743 0.0296345 +-0.029909 0.0904807 -0.0265953 +0.0341142 0.0605859 0.0386759 +0.04958 0.0652138 -0.00133913 +-0.0406916 0.0651596 -0.014333 +-0.0186192 0.0393436 -0.0280481 +-0.0321414 0.16968 -0.0161315 +-0.0303394 0.0344325 -0.0205625 +-0.0749113 0.125246 -0.00804661 +0.0179783 0.035483 -0.0126728 +-0.0572916 0.0479655 -0.00237378 +-0.030388 0.0876244 -0.0295653 +-0.00273996 0.130454 0.0216129 +-0.0785777 0.0907895 -0.0106208 +-0.0237519 0.0683934 -0.0360687 +0.0305158 0.11943 0.00953878 +0.0436886 0.0777182 0.0262206 +-0.00223658 0.0383059 0.0473338 +-0.0174973 0.104415 0.0431217 +0.045327 0.0519476 -0.00589943 +-0.022701 0.0611501 -0.0334866 +-0.0334865 0.126881 0.00753677 +0.0458812 0.084809 0.00618736 +-0.0775185 0.147451 0.0411778 +-0.00849166 0.110041 0.0429425 +-0.00827497 0.0389568 -0.00728452 +-0.0154767 0.0545272 0.0507241 +0.0455115 0.0861913 0.0171661 +-0.0286176 0.124173 0.0196508 +-0.0903937 0.142028 0.0281621 +-0.00750142 0.0590729 0.0550185 +-0.0691508 0.152358 -0.047074 +-0.00484252 0.0384695 0.0194856 +-0.00149467 0.116953 0.0400314 +-0.0148242 0.128616 0.018702 +-0.00749757 0.0939067 0.0556187 +0.031866 0.115189 -0.00211013 +-0.0515259 0.0439564 0.0445165 +-0.0773104 0.159761 -0.0159076 +0.0205013 0.108449 0.0395681 +-0.0648774 0.159303 -0.0143091 +0.0267364 0.0606633 -0.022785 +0.00150878 0.0883997 0.0564367 +-0.0659091 0.06022 0.0163937 +-0.0625921 0.1213 0.0447428 +-0.0789765 0.135392 -0.00472816 +-0.0709567 0.0767623 0.0380194 +-0.0506142 0.0560954 -0.00917258 +-0.0707687 0.155356 -0.0469258 +-0.0675837 0.112197 0.043642 +-0.0159686 0.128428 0.0182857 +-0.0564715 0.132545 0.0359114 +-0.044247 0.157947 0.00609665 +-0.011089 0.038804 -0.005846 +-0.0380666 0.0385186 -0.00730796 +0.0253529 0.0520143 0.0399629 +0.00465347 0.0341223 0.0126365 +-0.0905147 0.136459 0.016202 +-0.0184793 0.0336465 -0.023124 +0.0165026 0.118175 0.0355154 +0.0109305 0.0685438 0.0544088 +-0.00849797 0.0952525 0.0545557 +-0.050269 0.11691 0.032477 +-0.0301947 0.125922 0.0102205 +-0.0914405 0.117414 0.0273008 +-0.0231534 0.0352107 0.0523184 +-0.0922901 0.125582 0.0342578 +-0.0703512 0.170836 -0.0520339 +-0.0881528 0.129472 0.0022725 +-0.0125497 0.0445369 0.0499253 +0.0104221 0.127848 0.0278469 +-0.0114754 0.0546403 0.0519269 +-0.0665146 0.16661 -0.0580261 +-0.0384984 0.169734 0.00180247 +0.0290438 0.0509642 -0.0167532 +0.0292682 0.0673021 0.0422638 +-0.0643695 0.149877 -0.0298747 +-0.0741326 0.180484 -0.0536706 +-0.0484658 0.144752 0.00741107 +0.02369 0.10485 -0.01704 +0.0383652 0.101327 -0.00724085 +-0.0516205 0.0604369 -0.00991236 +-0.0080847 0.125292 0.0313586 +-0.0117515 0.0714338 -0.0381291 +-0.0358096 0.12684 0.0170169 +-0.0620073 0.155313 -0.0175819 +-0.0861256 0.0937891 0.0274526 +-0.0627193 0.152197 -0.01058 +0.0557633 0.0538969 0.024211 +-0.0501537 0.152144 0.0115744 +-0.0504041 0.0345678 0.0349233 +-0.0622094 0.0655019 0.0319825 +-0.0630381 0.154049 0.0314099 +-0.0864944 0.112209 0.0250023 +-0.0765838 0.178662 -0.0494737 +-0.0880478 0.0908955 0.0237752 +-0.0540202 0.0513732 0.0109294 +0.0220807 0.125732 0.0192313 +0.000503516 0.0856702 0.0573793 +-0.0624013 0.116928 0.041368 +-0.0687693 0.0793684 -0.0165822 +0.0312024 0.114939 -0.00384217 +0.0394926 0.052754 0.032086 +-0.076502 0.12459 0.0526576 +0.0461265 0.0736153 0.00421619 +0.0493794 0.0453908 0.0224152 +0.0422961 0.0655994 0.0276352 +0.0444235 0.0917457 0.0211574 +-0.04812 0.128214 0.028687 +-0.0256026 0.0837946 0.0522209 +-0.00959872 0.0391743 -0.0260833 +0.0242446 0.0762105 -0.0254816 +-0.050147 0.145259 -0.000515581 +-0.0729617 0.136954 -0.00717713 +-0.0321019 0.119786 0.0288381 +-0.0723819 0.152607 -0.0408904 +0.0595077 0.0567056 0.0171693 +-0.0647247 0.16489 -0.0257757 +0.0214018 0.0473917 -0.0206345 +-0.0652965 0.147932 -0.0271042 +0.0404164 0.0647148 -0.00677085 +-0.0440757 0.0335994 -0.0169421 +-0.0658186 0.154852 0.00425231 +-0.0457713 0.156483 0.00739285 +-0.0550494 0.0577849 0.0202145 +-0.0233757 0.163881 -0.00766181 +-0.0658954 0.166616 -0.0590008 +0.0309109 0.0511672 -0.0117352 +0.0380176 0.101228 -0.00786632 +0.0272437 0.0732614 -0.0238068 +-0.0161865 0.0377383 0.0516902 +-0.051271 0.0356477 0.0458842 +-0.0184884 0.107161 0.042158 +0.0143121 0.0753991 0.0540935 +0.012486 0.0990688 0.0481132 +-0.069936 0.13258 -0.0084535 +-0.0324718 0.0546382 0.0373194 +-0.0637186 0.179242 -0.0585917 +-0.0560047 0.159776 0.00109778 +-0.0940215 0.120122 0.0233001 +-0.0734929 0.154069 -0.0299022 +0.0334431 0.0930091 -0.0164312 +-0.0568079 0.0869026 -0.0213473 +0.0600207 0.0595165 0.0181686 +-0.0282716 0.0376885 0.0226211 +-0.0608814 0.102587 -0.0185388 +-0.0689777 0.172299 -0.0388012 +-0.0333033 0.176609 -0.00426163 +-0.0726003 0.145757 -0.0168539 +-0.0351155 0.0460859 0.0430647 +-0.0668221 0.16563 -0.0222317 +0.0223344 0.0535713 -0.0254238 +-0.0555068 0.0341015 0.0254741 +0.0591828 0.0594427 0.0211715 +-0.076476 0.07597 0.0322323 +-0.0548438 0.043635 0.0177242 +-0.0545598 0.0616597 -0.0074577 +-0.0717138 0.073474 0.0353741 +-0.0123858 0.0383448 0.0108168 +-0.0878417 0.140531 0.0102059 +-0.0338438 0.0337316 0.012415 +-0.0362549 0.153841 -0.0082413 +-0.066147 0.0353356 0.0361254 +-0.0149468 0.125073 -0.0044168 +-0.0517378 0.0545135 0.0226244 +-0.0791517 0.0792478 0.0324066 +-0.0311673 0.0386498 -0.0134468 +-0.00138514 0.0391216 -0.00791905 +0.0249209 0.0782259 0.0483953 +-0.0288805 0.079237 0.0443379 +-0.0499299 0.0335056 -0.0106454 +0.000248169 0.0726618 -0.0353693 +-0.00679601 0.100851 0.0456503 +0.00749727 0.121002 0.0360768 +0.0281364 0.0448054 0.035097 +-0.0616338 0.0739295 0.0406212 +-0.0184922 0.11816 0.035496 +-0.0231843 0.0348489 0.0439808 +0.0524989 0.0718135 0.00595977 +-0.0114982 0.0943996 -0.0340943 +-0.0574587 0.045976 0.042703 +0.0272754 0.0703879 -0.0233186 +-0.0208041 0.127131 0.0063587 +-0.0449931 0.152736 -0.00651735 +-0.0154877 0.167822 -0.0210841 +-0.0738833 0.122317 -0.0079807 +0.0163998 0.0834424 0.0519345 +-0.0615988 0.156867 -0.0225865 +-0.0504372 0.0529682 0.0186225 +-0.0607622 0.0781498 -0.0187637 +-0.0208042 0.125974 0.0209606 +-0.0245306 0.112636 0.0373469 +-0.030708 0.121227 -0.00820323 +-0.0511359 0.0502476 0.0206335 +-0.0384993 0.0733372 0.0420402 +-0.0588719 0.102608 -0.018764 +-0.0774969 0.130279 0.0531227 +-0.0375712 0.124334 -0.00748059 +-0.0119956 0.0882297 -0.0377812 +0.0547499 0.0492946 0.00521444 +0.017211 0.088423 -0.0276786 +0.0381646 0.0644978 -0.0107883 +-0.04783 0.0927226 -0.0216222 +-0.0132756 0.0597275 0.0533794 +-0.00158335 0.0361983 -0.0246741 +-0.0612049 0.174131 -0.0607222 +-0.0655175 0.0356165 -0.00754656 +-0.0874441 0.0860134 0.00347726 +-0.00749507 0.10164 0.0441128 +-0.0175041 0.0382782 0.00983265 +0.00351386 0.100332 0.0462561 +0.0252498 0.0645397 -0.0230446 +-0.0717344 0.131221 0.0507858 +0.0525721 0.0648669 -0.000960413 +-0.0901978 0.11358 0.0212183 +-0.0560194 0.129616 -0.00591188 +0.0441279 0.0748554 -0.00179683 +-0.0307721 0.0349136 0.04922 +-0.0554801 0.0452738 0.0437595 +0.000511374 0.0503823 0.0524384 +0.0295573 0.0375392 0.0237122 +-0.00766545 0.0541253 -0.0331554 +-0.0226026 0.0379508 -0.0287016 +-0.0187506 0.162746 -0.0157051 +0.0546767 0.0732977 0.0167178 +0.042064 0.10006 0.0201605 +-0.0889838 0.099691 0.0193911 +-0.0644638 0.129733 0.0437115 +-0.043484 0.0987241 0.0424341 +-0.0252565 0.120536 -0.00953586 +-0.0159529 0.0390542 0.0365141 +-0.0915486 0.143335 0.0161726 +-0.0405267 0.169768 0.0017705 +-0.0726712 0.0651053 0.0195713 +-0.0132255 0.182074 -0.023933 +-0.0456018 0.0629458 0.0388902 +0.0287985 0.0385521 0.0262584 +0.0314095 0.0695437 -0.0187779 +-0.0625738 0.156865 -0.0165766 +0.0106756 0.0489592 0.0485841 +-0.0781956 0.163891 -0.0259488 +0.0262919 0.101687 -0.017683 +-0.0681573 0.180556 -0.0543707 +-0.0464942 0.100125 0.0422537 +-0.0294775 0.17726 -0.00505881 +0.00976325 0.0346476 0.0385339 +0.0351088 0.100136 -0.012024 +0.0398312 0.0992984 0.027798 +-0.0544975 0.080589 0.0448325 +-0.0251898 0.177123 -0.0193397 +-0.00463984 0.12746 -0.00519523 +0.0365694 0.109049 0.0260841 +-0.062967 0.159919 -0.044604 +0.0156331 0.0915267 -0.0269033 +-0.0577811 0.0472143 0.0403119 +-0.086179 0.107645 0.0083646 +-0.00357674 0.0347286 -0.0239915 +-0.0205507 0.066817 0.0505282 +-0.0590047 0.132542 0.0375172 +0.00657766 0.034511 0.0217547 +-0.0730595 0.110042 0.0423406 +-0.0725117 0.163674 -0.014076 +-0.0130193 0.115677 -0.016537 +0.0190348 0.0768352 0.0521916 +0.00221518 0.114462 -0.0193126 +-0.0142885 0.0390252 0.0350884 +-0.0492809 0.152135 0.0110836 +0.0378754 0.0980648 0.0320906 +-0.0377624 0.0420706 0.0430123 +0.00890997 0.125517 0.0316176 +0.00478616 0.0342999 0.00145343 +-0.0220536 0.0952953 -0.0290683 +-0.0883767 0.125344 0.00127971 +-0.055499 0.0761852 0.0427309 +-0.0505039 0.0487703 0.0186583 +0.0374548 0.0781001 0.0366194 +0.00520505 0.129939 3.61829e-05 +-0.0464525 0.146291 0.00643191 +-0.0545162 0.049049 -0.0054035 +-0.0209524 0.0920017 0.0529687 +-0.0534945 0.105667 0.0403502 +-0.0355002 0.174151 -0.00180627 +-0.0654804 0.146553 -0.0219125 +-0.0577458 0.131139 0.0375772 +0.0440584 0.0860884 0.0251529 +0.0484396 0.0486951 -0.00266239 +-0.0510317 0.0544187 0.0196187 +-0.0305049 0.0720397 -0.0305133 +-0.0513349 0.057067 0.0306313 +-0.0444577 0.123407 -0.0104693 +-0.0404418 0.0351129 -0.0289386 +-0.0611441 0.169381 -0.0576009 +-0.0704838 0.120388 0.0533274 +0.00150053 0.0591133 0.0550768 +-0.0504978 0.159322 0.00851944 +-0.0127755 0.126776 0.0267341 +0.00508634 0.0345614 -0.0155701 +-0.0433649 0.150829 -0.00565896 +-0.0276025 0.0888516 -0.0335952 +-0.0536948 0.0661603 -0.0107375 +0.0453129 0.0698237 0.023466 +-0.0407211 0.150643 0.00408479 +0.0111265 0.120476 0.0355761 +0.000791005 0.0398223 0.046536 +0.0460187 0.0482649 0.029417 +-0.0748889 0.119375 -0.00765967 +0.0240318 0.0591603 0.0451764 +0.0102193 0.129407 0.000604352 +-0.0662744 0.179701 -0.0600508 +-0.0165098 0.0772307 0.0561424 +0.0294369 0.0781918 0.0443709 +-0.0510278 0.0474301 0.0166894 +-0.0808293 0.0720933 0.0155437 +0.0139163 0.0953242 -0.0249235 +-0.0756827 0.0823892 -0.0125945 +0.00119778 0.0825383 -0.0355009 +-0.0614832 0.0775692 0.0421583 +-0.0816839 0.0830971 0.0318157 +-0.0257584 0.0736396 0.0456283 +0.0071927 0.124822 -0.00847934 +-0.0749667 0.0683767 0.0215337 +-0.0415307 0.127763 -0.00103989 +0.0217652 0.0862022 0.0491664 +-0.0758742 0.102063 -0.0106997 +0.00933423 0.0567711 -0.0303022 +-0.010684 0.0584354 -0.034314 +-0.0126507 0.0350556 0.0425263 +0.0424994 0.0597124 0.0306347 +-0.0147222 0.0643235 -0.037347 +0.0579415 0.0716454 0.0119821 +-0.000418875 0.0389219 -0.0131688 +-0.0480228 0.144604 0.00545108 +-0.0124881 0.120998 0.0354929 +-0.0941295 0.121483 0.024294 +0.0533093 0.0573451 -0.00263239 +-0.0426699 0.0336999 -0.0149012 +-0.0466248 0.0577591 -0.0115398 +-0.0628785 0.0393963 0.0426563 +-0.072166 0.063706 0.0120556 +-0.0912059 0.14882 0.0151457 +-0.033491 0.0904012 0.0444067 +0.0152459 0.0821521 -0.0296185 +-0.0608506 0.0333964 -0.00541551 +0.0483298 0.0694277 0.0246416 +-0.0144087 0.0383376 0.0158464 +-0.00316996 0.131012 0.0171239 +0.0247594 0.0929114 0.046503 +-0.0615203 0.153356 0.00130737 +-0.0618578 0.099667 -0.0183374 +0.0303629 0.0483136 -0.00765132 +0.00253507 0.0394917 0.0345311 +-0.0713444 0.144531 -0.0156116 +-0.0188175 0.159674 -0.00630165 +-0.0174928 0.111329 0.0404434 +-0.0425002 0.0437706 0.0420539 +0.038489 0.0484512 0.0319961 +-0.011814 0.163592 -0.0157611 +-0.0526941 0.0334208 -0.00928256 +-0.0613494 0.131082 0.0393909 +-0.0276253 0.0450182 -0.0280952 +-0.0449077 0.159414 0.00690868 +0.00747686 0.0474111 0.0493962 +-0.0535025 0.0917839 0.0444757 +0.0372578 0.0658262 -0.0127785 +-0.0616099 0.158421 -0.0325909 +-0.0443417 0.035118 -0.0243716 +0.0228959 0.0358901 0.0147404 +-0.0312846 0.119331 0.0291556 +-0.0748251 0.0906869 -0.0145799 +-0.0607901 0.0839118 -0.0197808 +-0.060035 0.0645406 0.0315175 +-0.0506187 0.0531538 -0.00831388 +0.0189959 0.104672 0.0434338 +-0.0328687 0.10291 -0.0220775 +0.0293781 0.0721886 -0.0217847 +0.0490097 0.0482239 0.0267018 +-0.00202044 0.0386496 0.0235231 +0.00793635 0.0980328 -0.0238123 +-0.0353308 0.0347033 0.016646 +0.00129902 0.039118 0.0292011 +0.0433693 0.0561672 -0.00598915 +0.0455002 0.059749 0.0314265 +-0.0891212 0.0888935 0.0154552 +-0.00853579 0.044404 0.0484956 +0.0227707 0.10612 -0.0163977 +-0.0830074 0.117688 0.0489709 +-0.0652397 0.150467 -0.0337229 +-0.0787271 0.0954037 0.0355432 +0.0320582 0.11345 0.0286813 +-0.0641355 0.160881 -0.0576174 +0.0459242 0.0806108 0.00418728 +0.0093871 0.0434015 -0.0246765 +-0.0501776 0.124028 0.032677 +-0.0486159 0.0547593 -0.0100622 +0.000494108 0.118289 0.0391022 +-0.0267825 0.0768545 -0.0363352 +0.039504 0.0914002 0.0327084 +0.0495572 0.0525985 0.0293193 +-0.0221892 0.177131 -0.0213718 +0.00724524 0.0369774 0.0269173 +0.0174748 0.0934539 0.0481542 +-0.021119 0.180019 -0.0220004 +-0.0938873 0.12827 0.0192438 +-0.0558806 0.138039 -0.00386657 +-0.0754975 0.123189 0.0531282 +-0.0682563 0.169911 -0.0313673 +0.00486454 0.131282 0.0057704 +-0.0544491 0.156028 0.0112408 +0.0259161 0.0713197 0.0444841 +-0.0205993 0.0408181 -0.0286892 +0.0326751 0.0902947 0.0421046 +0.0303546 0.107428 0.0353018 +-0.043641 0.0451148 -0.0133235 +0.0453399 0.0504735 -0.00539794 +-0.0640884 0.160897 -0.0576117 +-0.015926 0.178652 -0.0196554 +0.0285634 0.0463012 0.0357516 +-0.00467538 0.0353718 0.0474871 +0.00649755 0.131366 0.0177838 +-0.0721007 0.175064 -0.0530188 +-0.0454824 0.0959409 0.0431744 +-0.0892808 0.0888643 0.0124572 +0.00219675 0.0376886 0.0234384 +-0.0084105 0.095275 -0.0329664 +-0.0384962 0.11803 0.0312871 +-0.0451864 0.146266 0.00463419 +-0.0870838 0.0846865 0.0114769 +-0.0855325 0.107606 0.0053458 +-0.0457969 0.126831 -0.00605616 +-0.0164306 0.0384009 0.00449856 +-0.0355073 0.0662414 0.0411418 +0.0174851 0.0852069 0.0507856 +0.0160687 0.122524 -0.00804645 +-0.0586545 0.152137 0.0330321 +-0.0294308 0.0847062 -0.0336139 +-0.0725432 0.15415 0.0310449 +0.0567814 0.0724634 0.0130365 +0.0378457 0.0726607 0.0353699 +0.00540963 0.0375924 -0.0240752 +-0.0555707 0.033544 0.017104 +0.0295902 0.119982 0.0063504 +0.0197767 0.104476 -0.0186365 +-0.0484985 0.160789 0.00748776 +-0.0928176 0.120043 0.0102955 +-0.0427809 0.0464775 -0.012357 +-0.0285046 0.0645461 0.0380462 +0.00349921 0.126284 0.0311054 +-0.0670064 0.156281 0.0226936 +-0.0656496 0.0339611 -0.00733584 +-0.00649844 0.0814993 0.0573243 +0.0421622 0.0427592 0.0252421 +-0.0873651 0.0927561 0.00443631 +-0.00151033 0.108645 0.043169 +-0.0908157 0.116185 0.0427025 +0.0200734 0.0372985 0.0402199 +-0.062954 0.125297 -0.00870732 +-0.0633546 0.0720236 0.0383997 +-0.0691914 0.171601 -0.0360136 +-0.0688255 0.0937312 -0.0163709 +-0.0485029 0.112572 0.035725 +-0.00574267 0.0339825 -0.0190499 +-0.0604857 0.094604 0.0446906 +-0.0257335 0.166803 -0.00931015 +-0.0159771 0.186924 -0.0221541 +0.0463322 0.0743214 0.0180018 +0.0030519 0.130996 0.00365966 +-0.0421665 0.16366 -0.0107342 +-0.0225871 0.168294 -0.0117855 +-0.0484917 0.0718083 0.0405326 +0.0122698 0.0710113 -0.031719 +-0.0857101 0.0869161 0.0258492 +-0.0715046 0.0901731 0.0417302 +-0.0699133 0.123828 -0.00875488 +0.0279019 0.110786 -0.0114065 +-0.0354864 0.12379 0.0245568 +0.0305321 0.081181 -0.0200863 +0.0102651 0.128706 0.0263309 +0.0148603 0.0562539 0.0494599 +-0.0366932 0.0665933 -0.0149481 +0.041469 0.0711384 0.0300167 +-0.0554857 0.0834027 0.0450839 +-0.0113051 0.0389162 -0.0134542 +-0.0701665 0.143936 0.0443089 +0.0424986 0.0527982 0.0326152 +0.0132 0.115178 -0.01612 +-0.0566151 0.0335713 0.0115144 +-0.0746759 0.158036 -0.00628607 +-0.0710897 0.0678996 0.0280309 +-0.0684162 0.160948 -0.0539628 +-0.0788405 0.11444 0.0481937 +0.0425653 0.0859482 -0.00679004 +0.00508264 0.128731 0.0273249 +-0.0460392 0.132757 0.0146796 +-0.0644245 0.0335892 0.00631261 +-0.0779562 0.0727271 0.0259414 +-0.0320811 0.1577 -0.0118106 +-0.08561 0.123026 0.0486561 +-0.0183468 0.0445922 0.0521871 +-0.0646788 0.0378404 0.0247428 +-0.09254 0.118824 0.0413658 +0.0439353 0.0973509 0.0141605 +-0.0925657 0.116008 0.0123183 +-0.00476329 0.0770151 -0.03731 +-0.0647922 0.176686 -0.0531637 +-0.0267774 0.122204 0.0247423 +-0.0331437 0.169673 -0.0156322 +-0.0663865 0.0388997 0.0348294 +0.0255945 0.0477251 0.0385093 +0.0336609 0.0968599 0.0382997 +-0.0916539 0.147467 0.0181472 +-0.0336992 0.0435791 0.0473765 +-0.0785063 0.162438 -0.0279579 +-0.0756712 0.0759423 -0.00884701 +-0.0623186 0.155306 -0.0155862 +-0.0754942 0.124603 0.052984 +-0.0710841 0.0626658 0.0113319 +-0.0214966 0.101664 0.0441706 +0.0325091 0.0454335 0.0302933 +0.023348 0.0930459 -0.0224955 +-0.0477168 0.123954 0.0291105 +0.026559 0.119879 -0.0019388 +-0.0671262 0.150692 -0.0396095 +-0.054551 0.0416447 -0.00949548 +-0.0689 0.115705 0.0512836 +0.0420833 0.0409609 0.00227771 +0.021477 0.0961774 0.0469631 +-0.0517663 0.0812234 -0.0211522 +0.0324154 0.0541402 -0.0117355 +-0.0283184 0.0383801 -0.00152859 +-0.0454995 0.122409 -0.0114255 +-0.0786209 0.174303 -0.0444916 +-0.0570614 0.151623 -0.00120922 +0.0242791 0.118022 0.0317589 +-0.0639993 0.0370815 0.0170442 +-0.0395018 0.0733502 0.0421461 +-0.0174724 0.0388154 -0.0145918 +-0.0829949 0.115554 0.048125 +-0.0155328 0.0386551 0.0297691 +-0.00449743 0.110031 0.0429169 +-0.062341 0.164692 -0.0435908 +-0.016985 0.0384848 0.0278228 +0.0153998 0.109294 -0.0177665 +-0.0121134 0.0347053 0.046472 +0.0238752 0.0421864 0.0394869 +-0.0510476 0.139892 0.00172061 +-0.073661 0.147179 -0.0178577 +-0.0673436 0.155169 0.0284164 +-0.0375089 0.0790164 0.0426336 +-0.0881282 0.0888644 0.0224361 +-0.0165385 0.0459978 0.0505746 +0.0187298 0.0489829 0.0426596 +0.00514365 0.0400743 0.045751 +-0.0405081 0.080404 0.0427771 +-0.0559081 0.112628 -0.0165116 +-0.0414824 0.100082 0.0415393 +0.0326734 0.101648 -0.0136311 +0.0591059 0.0677548 0.00712748 +-0.00525238 0.0350087 0.0405181 +0.0272291 0.0788716 -0.0231926 +0.0526679 0.0554283 0.0285725 +-0.074839 0.15964 -0.0289433 +-0.0475589 0.0335011 0.00261705 +0.0224079 0.0809035 0.0500644 +-0.0774544 0.072993 0.0275707 +-0.0817516 0.140386 -0.000790241 +-0.0203273 0.127615 0.0123404 +-0.0570931 0.0535244 0.00162534 +-0.0775213 0.124569 0.0523637 +-0.0267733 0.15662 -0.0020223 +-0.0341168 0.0383136 -0.000825234 +-0.0926373 0.122856 0.0322729 +0.00549857 0.09243 0.054294 +0.0202616 0.0749268 -0.0272874 +0.0133552 0.13008 0.0103074 +0.0423653 0.0519948 -0.00681796 +-0.0627003 0.150649 -0.00857321 +0.0200754 0.0713524 0.0501382 +-0.0182235 0.123174 0.0292543 +-0.0130686 0.183424 -0.0252779 +-0.0128628 0.0896836 -0.0372956 +-0.0301706 0.0421547 -0.0296993 +0.0403707 0.0444834 -0.00362771 +-0.0253772 0.0722169 0.0453002 +-0.0241328 0.0565311 0.0416958 +-0.0657729 0.0378142 0.038507 +-0.0475733 0.0504004 -0.00924022 +0.0347756 0.0548514 0.0342768 +-0.01273 0.098974 -0.0248693 +-0.0749897 0.139866 -0.00647617 +0.0541381 0.0477755 0.0182012 +0.026052 0.121668 0.00219807 +-0.0178133 0.0827451 -0.0392154 +-0.00506384 0.129812 0.0236663 +-0.0022335 0.116052 -0.016996 +0.0194826 0.0892535 0.0485994 +-0.00549695 0.108658 0.0435455 +0.0411799 0.0844321 -0.00979241 +-0.0546525 0.154186 0.0155249 +0.0209039 0.0386887 -0.00868617 +-0.0522987 0.0504261 0.0316576 +-0.00860205 0.0406149 -0.0260948 +-0.0064872 0.119657 0.0377321 +-0.0794636 0.141716 -0.00376694 +-0.0494618 0.0347575 0.043629 +-0.0282938 0.176171 -0.0172378 +-0.0337476 0.119587 0.029726 +-0.0548148 0.0883935 -0.0220325 +-0.0759162 0.179384 -0.0516058 +-0.0444968 0.0747696 0.0424527 +0.0361181 0.111694 0.0216233 +-0.0677747 0.0370061 0.0137537 +-0.0497774 0.0826759 -0.0213753 +0.0238372 0.12269 -3.58731e-05 +-0.0478227 0.148347 -0.00331487 +-0.00860618 0.0968801 -0.0306409 +-0.0545965 0.0575496 0.0196126 +-0.06512 0.0430832 -0.00329452 +-0.0719312 0.128266 -0.00893149 +-0.0409612 0.0344092 -0.00782476 +0.0534457 0.0510274 0.0243391 +0.0276856 0.0494518 -0.0176966 +-0.0336693 0.0607336 -0.0127906 +-0.0284587 0.0446173 0.0507119 +-0.0255118 0.0936195 -0.0293755 +-0.0717668 0.172238 -0.0510285 +-0.047089 0.156143 -0.00736831 +-0.0756553 0.0837701 -0.0135751 +-0.013224 0.172718 -0.0260103 +-0.0301691 0.174141 -0.0165339 +-0.00226303 0.0382357 0.0184109 +0.0412731 0.0417215 0.0241695 +-0.0559192 0.0335546 0.0152404 +0.0277966 0.12141 0.0199376 +-0.0649916 0.0659907 0.0309635 +-0.0512719 0.127504 -0.00467957 +0.0313718 0.118521 0.0155758 +-0.0621134 0.0350003 0.0423988 +0.00602626 0.127371 -0.00517179 +-0.0500909 0.0358963 0.0459805 +-0.0852266 0.0854944 0.0253873 +-0.0209874 0.04034 0.0536055 +-0.0719403 0.179282 -0.0559874 +-0.0521219 0.120842 -0.0117106 +0.0579437 0.0700837 0.0193768 +-0.0786649 0.0764169 0.0296559 +-0.0724896 0.12743 0.0524304 +0.0400371 0.107017 0.0091647 +-0.0677955 0.0355805 0.0137906 +-0.0212083 0.0825271 0.0563448 +0.0305816 0.112813 -0.00758269 +0.0546919 0.0524816 0.0244106 +0.000503407 0.0647904 0.0566018 +-0.0211614 0.183089 -0.0130948 +-0.0364897 0.0648519 0.0414613 +0.00739557 0.0347435 -0.0216037 +-0.091466 0.14613 0.0241501 +-0.0496442 0.0620141 -0.0117058 +-0.0844141 0.083121 -0.000497419 +0.00924009 0.0846665 0.0556174 +-0.00137013 0.0367929 0.00718583 +0.0499211 0.0443554 0.0178724 +-0.0257693 0.158564 -0.0117505 +-0.08951 0.140665 0.0311774 +0.0074706 0.129229 -0.00123166 +0.0318377 0.0822312 0.0425933 +0.0347555 0.0768972 -0.0157225 +-0.0103619 0.179472 -0.0295714 +0.0350602 0.0968439 0.0368099 +0.0192972 0.063662 -0.0278633 +-0.0758841 0.106327 -0.00893896 +0.0225495 0.119713 -0.00701355 +0.0522449 0.0480372 0.0225432 +-0.0142613 0.0350279 0.0492532 +0.0588535 0.0566417 0.00718098 +-0.0834209 0.0911774 0.0304851 +-0.0354827 0.0945899 0.0441989 +0.0491837 0.0442045 0.019604 +-0.0441515 0.0335185 0.00510187 +-0.0605024 0.111127 0.0368734 +-0.0368482 0.0336146 -0.0266993 +0.0043237 0.131753 0.0112849 +-0.0519904 0.135575 0.0286552 +-0.0628904 0.102548 -0.0180123 +-0.0194395 0.062521 0.0495605 +0.0173831 0.0447578 -0.0232543 +-0.0925995 0.118805 0.0322947 +0.00218481 0.0838969 -0.0348518 +0.0331279 0.0428909 0.0287274 +-0.0528013 0.0884055 -0.0219839 +0.0151848 0.115917 -0.0149184 +0.0567976 0.0508328 0.0181941 +-0.0621222 0.0345142 0.0394173 +-0.0642021 0.071089 0.0372614 +-0.0701839 0.0658802 0.0247105 +0.0178908 0.0563588 0.0485803 +0.0392199 0.073038 -0.0108301 +0.0263921 0.0549677 -0.020802 +-0.0858835 0.0833066 0.0204824 +-0.0812999 0.0747823 0.0185535 +0.0025057 0.0688921 0.0558596 +-0.0804035 0.0745659 0.0220984 +-0.0604943 0.0804378 0.0430854 +0.0220864 0.122759 -0.00230579 +0.0416849 0.100037 0.02216 +-0.0387577 0.150948 -0.00516845 +0.0420841 0.090131 -0.00780186 +0.0270265 0.12251 0.0139387 +-0.0715501 0.0763344 0.0374538 +-0.0885696 0.137819 0.0397738 +0.00156461 0.124373 0.0333352 +-0.00526883 0.0355403 -0.0166416 +-0.0769711 0.133968 -0.00621304 +-0.0750334 0.0851031 -0.01456 +-0.00549741 0.0675328 0.0561955 +0.00134414 0.0524973 -0.030237 +-0.0573916 0.0718042 0.0398933 +0.0283911 0.0672932 0.0427559 +-0.0910025 0.133774 0.0232232 +-0.0354998 0.17123 0.000174393 +0.0458285 0.0801218 0.0204223 +-0.0574741 0.0819362 0.0441691 +0.0510603 0.0729911 0.0094016 +-0.0363492 0.0338444 -0.0305686 +-0.024023 0.17718 -0.0120308 +-0.0625429 0.143922 0.0377415 +0.0323895 0.0490788 -0.00667281 +0.00525838 0.123196 -0.010701 +-0.0294162 0.0890096 -0.030595 +0.0479414 0.0588591 -0.00500215 +0.0158474 0.128954 0.00837281 +0.0170299 0.0590745 0.0491032 +0.0534095 0.0553934 0.0278769 +-0.0600285 0.134031 -0.00683616 +-0.0595027 0.0876292 0.04502 +-0.0323351 0.172733 -0.00297212 +-0.0374903 0.172653 -0.000576721 +0.00749482 0.0546914 0.0525351 +0.0383894 0.0519545 -0.00670373 +-0.0331162 0.0436399 0.0481995 +0.0444193 0.0734774 0.000193217 +-0.0392699 0.127033 -0.00231305 +-0.0377966 0.0870844 -0.0227292 +0.0398005 0.0712586 0.0329247 +0.0227875 0.0348957 0.00078699 +-0.0825515 0.0748682 0.00752949 +-0.0162407 0.125507 -0.00287714 +-0.0654856 0.0398574 0.0313799 +-0.0623389 0.163139 -0.0325913 +-0.0686122 0.0432054 0.00454593 +-0.0379623 0.174733 -0.00453553 +-0.0563002 0.154681 0.0207165 +-0.0455391 0.0396225 -0.0172907 +0.033177 0.0592197 0.0390624 +-0.030845 0.0944191 -0.0240931 +0.0149304 0.0913967 0.05159 +-0.0283564 0.125587 0.00796681 +-0.0364861 0.0547872 0.0389196 +-0.0284285 0.0821494 0.0466355 +-0.0626767 0.0346583 0.0408688 +0.0226817 0.0618915 0.0467691 +-0.00273397 0.0346073 0.0449802 +-0.0747362 0.0663817 0.0145125 +-0.0135041 0.11966 0.0364252 +-0.0466771 0.0355018 -0.0172702 +-0.0711048 0.153963 -0.0459144 +-0.0910141 0.11449 0.034742 +-0.0801763 0.0854684 -0.0085384 +-0.0199842 0.183117 -0.0149159 +-0.0705018 0.155741 0.00837641 +-0.0229946 0.0381678 0.00700416 +-0.0428236 0.0913841 -0.0227682 +-0.0679787 0.154919 -0.0513588 +-0.0787367 0.168047 -0.0389551 +-0.0308479 0.0972408 -0.0233409 +-0.0127769 0.0784711 -0.0383296 +-0.0528408 0.0970645 -0.0221327 +0.0578361 0.0662412 0.00314493 +0.0132266 0.0822053 -0.0304726 +-0.058487 0.113928 0.0361856 +-0.0609416 0.0341022 0.0225725 +0.0498583 0.0540108 0.0297623 +-0.00985903 0.128582 0.0248602 +0.0180859 0.068641 0.0507282 +-0.0275932 0.0779206 0.0459339 +-0.0474983 0.11254 0.0358059 +-0.00306313 0.0346488 0.0430839 +-0.0494839 0.141682 0.00839735 +-0.0444006 0.0337168 -0.00238543 +0.0222885 0.0564166 0.0461469 +0.00464996 0.0378242 0.0256263 +0.00823548 0.113838 -0.0186606 +-0.0404969 0.0634536 0.0414219 +0.0464934 0.0638096 0.0291729 +-0.0275092 0.181505 -0.00874152 +-0.0850366 0.134888 0.000298852 +-0.053967 0.0687802 0.0379578 +0.0458863 0.0820184 0.0171704 +-0.0630174 0.113067 -0.0134471 +0.0163641 0.0348027 -0.00791773 +-0.0668226 0.0923514 -0.017257 +-0.073517 0.104058 0.0373151 +-0.0520334 0.0346252 0.0362685 +0.00147793 0.131501 0.00880182 +-0.0874177 0.131128 0.0459004 +-0.0124954 0.103038 0.0437348 +-0.0148129 0.0841518 -0.0390669 +-0.061937 0.111099 -0.0150221 +0.0286115 0.078186 0.0449305 +-0.0884601 0.0976543 0.0226015 +-0.0196643 0.111086 -0.0196461 +-0.0196772 0.178663 -0.0162873 +-0.0220478 0.0811409 0.0558034 +0.00850296 0.118331 -0.0155001 +-0.0404972 0.0506061 0.0393715 +-0.0833705 0.0767799 0.0142875 +-0.085765 0.112351 0.0286477 +0.0363022 0.0619082 0.0365841 +-0.000508059 0.0576316 0.0544767 +-0.089275 0.0969971 0.0184044 +-0.0708142 0.0694524 -0.00574088 +-0.0186131 0.0378854 -0.0277917 +0.0283679 0.103615 -0.0157324 +-0.0354292 0.0472715 0.0405203 +-0.0748611 0.163212 -0.0154286 +-0.0862421 0.14327 0.00816028 +0.0357067 0.0981492 -0.0118335 +0.0223181 0.0592817 -0.0260832 +-0.0625553 0.041701 -0.00649092 +-0.0824187 0.100645 0.0306028 +-0.0598691 0.101152 -0.0187591 +-0.0309758 0.0383278 -0.0168292 +0.0239145 0.0835849 0.0487444 +-0.00271812 0.0380275 0.0166967 +-0.00631097 0.0354995 -0.0168068 +-0.0435801 0.0491173 -0.010788 +-0.0586891 0.065984 -0.0090861 +-0.072851 0.148958 0.0401319 +0.0442902 0.0875035 0.0241471 +-0.0155441 0.165408 -0.0121335 +-0.084276 0.107651 0.0243439 +-0.0705376 0.04043 0.00377428 +-0.0107227 0.165105 -0.0188107 +-0.0550975 0.13533 0.0326236 +-0.0735773 0.0648576 0.0107478 +-0.0227215 0.0797443 0.0551012 +-0.0404988 0.043751 0.0418177 +-0.0507215 0.132501 0.0301542 +-0.0728912 0.11354 -0.00756484 +0.00242535 0.0343652 0.00462872 +-0.0556704 0.0335434 0.000932366 +0.00528142 0.0509933 -0.0292119 +0.0213389 0.0621093 -0.0262711 +-0.0275166 0.0348502 0.0465557 +-0.0826299 0.110259 0.0284001 +-0.00850001 0.125156 0.0314578 +-0.0707102 0.149836 -0.0414255 +0.0204972 0.107072 0.0404393 +-0.0215031 0.108553 0.041118 +-0.0404837 0.0818282 0.0429123 +-0.0586314 0.0580318 0.0162523 +-0.0648762 0.109524 -0.0137682 +-0.0687139 0.0394283 -0.00171366 +0.00150188 0.0938741 0.0550191 +0.027072 0.122359 0.0168201 +-0.0275307 0.0918372 0.0449329 +-0.00320104 0.131164 0.014241 +0.00886384 0.130684 0.0200808 +0.0402562 0.0857576 -0.0117696 +-0.0823675 0.147331 0.00217458 +-0.082659 0.0776741 0.0225196 +-0.0388763 0.107081 -0.0200218 +0.0151073 0.108635 -0.0180644 +0.0460054 0.0746307 0.0193568 +-0.0735009 0.117559 0.0527975 +-0.0337749 0.0338108 0.0177666 +0.032372 0.116958 0.0202394 +-0.0763319 0.15494 -0.00387485 +-0.0687774 0.0837142 -0.0175822 +-0.010498 0.0517545 0.0512545 +0.0210632 0.038679 -0.00769573 +0.0140028 0.091392 0.0520062 +-0.0842337 0.150005 0.032317 +0.0332536 0.0916169 0.0411931 +-0.0394897 0.0874644 0.0433271 +0.0207921 0.106393 -0.0166835 +-0.0368012 0.111669 -0.0181954 +-0.0495137 0.0503617 0.0366255 +-0.0314035 0.121359 0.0260922 +-0.0745094 0.140045 0.0479791 +-0.020484 0.0842242 0.0566713 +-0.00549585 0.0911858 0.0567127 +-0.0870672 0.0882048 0.024333 +-0.0377523 0.0783086 -0.0194038 +0.0407806 0.0717592 -0.0087638 +0.00365619 0.131646 0.00960837 +-0.0157548 0.0714554 -0.0386719 +0.0597099 0.0650292 0.0201784 +-0.0675187 0.0874976 0.0437834 +0.0405833 0.0670896 0.0305002 +-0.0180479 0.0418467 0.0526068 +-0.0427079 0.151894 -0.00649313 +-0.0220141 0.0388944 0.0538623 +0.00616925 0.0895403 -0.0330971 +-0.0064158 0.0391939 0.0347568 +0.0557201 0.0581302 0.0259556 +0.0563341 0.0711373 0.00671617 +-0.0727258 0.157431 -0.00265266 +0.0125423 0.120941 -0.012332 +0.00414764 0.103055 -0.021794 +-0.029166 0.0762862 0.0418904 +-0.0268469 0.0423164 0.0533212 +-0.0621198 0.0344764 0.0202314 +-0.0618524 0.169383 -0.0535961 +0.0250825 0.10872 0.0381638 +-0.0908254 0.142021 0.0251655 +-0.046283 0.129949 0.00285861 +0.0179105 0.0350278 -0.0116533 +-0.0397746 0.0826803 -0.0210594 +-0.0651763 0.16954 -0.0402745 +-0.0621336 0.16002 -0.0235787 +-0.0355709 0.168274 -0.000671324 +-0.037536 0.159586 0.00182669 +-0.0681305 0.148403 -0.0333773 +-0.0364875 0.100095 0.0421869 +0.0545857 0.0608947 0.0278753 +0.0195769 0.0347391 0.0223805 +-0.0765172 0.154938 0.0266851 +0.0329357 0.0710876 -0.0177809 +-0.0434945 0.111176 0.0370674 +-0.0144911 0.124164 0.030554 +-0.0644813 0.157544 -0.049277 +0.0162463 0.0722881 -0.029887 +0.0292794 0.111414 0.0337321 +-0.0730559 0.14548 -0.015959 +-0.032702 0.0694797 -0.021456 +-0.0682487 0.153053 0.0340661 +-0.0810659 0.143393 0.0434586 +-0.0508913 0.0474088 0.0186488 +-0.041491 0.0832013 0.0425516 +-0.0689521 0.151509 0.0368557 +0.00620362 0.0387395 0.045605 +-0.0437238 0.0739429 -0.018203 +-0.0589977 0.125247 -0.00779139 +0.0113495 0.0553023 -0.0296776 +-0.0665061 0.0972756 0.0420058 +0.00151221 0.0828796 0.0573767 +-0.000819486 0.131234 0.00795191 +0.0463579 0.0575632 -0.00556359 +-0.0223022 0.165377 -0.00961273 +0.0177451 0.0379283 0.0429098 +-0.0914397 0.143364 0.0211639 +-0.0366139 0.0493085 -0.0123994 +-0.0374871 0.0576725 0.0398228 +-0.0252778 0.0383536 -0.00088571 +-0.0593549 0.0410534 0.0179552 +-0.0667502 0.0337781 -0.00695475 +-0.0206534 0.0391059 0.0372895 +-0.0144184 0.0997913 0.0448499 +-0.0451841 0.16983 -0.00497124 +-0.017913 0.184413 -0.0239895 +-0.0265191 0.0388768 0.0380618 +-0.0908997 0.126938 0.0424248 +-0.000826517 0.0853922 -0.0362438 +-0.0534467 0.125409 -0.00644153 +-0.0368662 0.104233 -0.0205194 +-0.02728 0.181917 -0.0121056 +-0.0487731 0.0349958 0.0444688 +-0.0894993 0.135155 0.0302067 +0.0152294 0.0345961 -0.00794828 +-0.0135581 0.166929 -0.0145181 +-0.00316211 0.129199 -0.00103699 +0.0125106 0.108449 0.040622 +0.0494051 0.0734301 0.0147277 +-0.0427147 0.0710705 -0.0176966 +-0.0505553 0.136728 0.0232523 +-0.055076 0.154226 0.0167194 +-0.0598887 0.10828 -0.0169771 +-0.00348603 0.0489394 0.050606 +-0.0325038 0.107028 0.0393329 +-0.0558273 0.114722 -0.0152839 +-0.024429 0.062147 0.0418364 +0.0610039 0.0637491 0.0121545 +-0.0307981 0.0381678 0.00179566 +-0.0224893 0.0462052 0.0523041 +-0.0626699 0.13529 0.0374908 +-0.0871093 0.106357 0.0153576 +0.018535 0.0346925 0.0222104 +-0.0633642 0.142485 0.0383017 +0.0395752 0.0602985 0.0307005 +0.0196495 0.0356664 -0.00567711 +-0.00666974 0.0555272 -0.0330407 +-0.0554731 0.154191 0.0210182 +-0.00998984 0.177238 -0.0295136 +0.0366228 0.111865 0.00747742 +-0.00322809 0.0999661 -0.0238789 +0.00852647 0.0349744 0.0253569 +0.0337455 0.11169 -0.0043358 +-0.033869 0.10148 -0.022225 +0.0215013 0.108432 0.0393095 +0.027565 0.119234 0.026993 +-0.0477832 0.129154 -0.000397631 +-0.057288 0.0521607 0.00365094 +0.0119513 0.0873992 0.0542929 +0.0510679 0.0720267 0.021243 +-0.0525522 0.0487323 -0.0069784 +0.0419877 0.102851 0.0121565 +-0.0154922 0.126886 0.0243264 +-0.010476 0.0965182 0.0531854 +-0.0107078 0.0628117 -0.0359649 +-0.0848416 0.0858026 -0.00253503 +-0.0300028 0.125562 0.00590559 +-0.0137234 0.0643092 -0.0370705 +0.025242 0.0761745 -0.0249679 +-0.0268088 0.0852978 -0.0363495 +0.028746 0.0693043 -0.0217828 +-0.0525052 0.112524 0.0359139 +0.0608734 0.0637391 0.0151617 +-0.0820606 0.151973 0.00432386 +-0.065153 0.0712063 0.036955 +-0.0590564 0.0335255 0.00387291 +-0.0726667 0.0777379 -0.0132872 +-0.0639501 0.166025 -0.0326719 +0.033089 0.0892132 -0.0184699 +-0.0410037 0.148494 -0.000715623 +0.0152676 0.11708 -0.0141694 +-0.0405102 0.127658 -0.000961794 +0.0135046 0.108467 0.0407674 +-0.0598038 0.0341949 0.0280011 +-0.025416 0.0905129 0.0490114 +-0.0383992 0.0420226 0.0422608 +-0.0414999 0.0478558 0.040117 +-0.0525584 0.0501546 -0.00685551 +-0.0394783 0.0832832 0.0435432 +-0.0409872 0.0335947 -0.0218947 +-0.0234596 0.184384 -0.0119315 +-0.00549722 0.0633676 0.0561862 +-0.0249111 0.0958255 0.0441185 +-0.0794946 0.12171 0.0507273 +0.0218787 0.0430332 -0.0157248 +-0.0284679 0.0718578 -0.0335433 +-0.0287174 0.0344722 -0.0298467 +-0.0375646 0.0407082 -0.0285349 +-0.0684694 0.153743 0.0324784 +0.0275012 0.1187 -0.00304813 +-0.0654981 0.100096 0.041968 +-0.0728966 0.155445 -0.0329107 +-0.024103 0.171237 -0.0122056 +-0.0213641 0.0384977 0.0305062 +-0.00878734 0.0798675 -0.0379507 +-0.0034971 0.0703995 0.0574239 +-0.0628591 0.0679841 0.0349557 +-0.0205114 0.0512056 0.0456176 +-0.0215925 0.0364837 -0.0283556 +0.0308475 0.0751439 -0.0207339 +0.0345069 0.0483661 0.0310725 +0.00650269 0.044152 0.0457422 +-0.0404948 0.0733395 0.0422389 +0.00152573 0.0717149 0.0566366 +-0.00449638 0.110771 -0.0213478 +-0.0786622 0.0733343 0.0252726 +-0.00997021 0.129828 0.00744342 +-0.0368781 0.107107 -0.0201846 +0.0114979 0.112659 0.03891 +-0.0516419 0.126901 0.0340875 +-0.05391 0.13392 0.032587 +-0.0537085 0.0491368 0.0316573 +-0.086972 0.143283 0.00915353 +-0.0889751 0.0969295 0.00842099 +-0.0378902 0.121927 0.0281694 +-0.0870357 0.141902 0.00919077 +-0.056635 0.0350546 0.0452244 +-0.019816 0.0347801 0.0465131 +0.0392931 0.086096 0.0340337 +-0.0869334 0.0861006 0.0224549 +-0.0643967 0.0646443 0.0287462 +-0.0398612 0.101404 -0.0212384 +-0.0536876 0.0334698 -0.00403732 +-0.0785163 0.162478 -0.0269418 +-0.0638695 0.16329 -0.0240265 +-0.087202 0.10043 0.0240701 +-0.0736795 0.145791 -0.0128538 +0.0436314 0.0736519 0.026072 +-0.0326308 0.0352345 0.0485487 +-0.0158901 0.160985 -0.0130889 +0.0154243 0.0781303 0.053988 +0.00317805 0.0980649 -0.0258881 +-0.00360287 0.0419944 -0.0253901 +-0.0681856 0.169443 -0.0550153 +-0.0937199 0.12277 0.0132819 +-0.0335083 0.11115 0.0363293 +-0.0897769 0.0915868 0.0144438 +-0.00790609 0.0389527 -0.0109414 +-0.0512486 0.0474505 0.019655 +0.0299943 0.101654 -0.0156302 +-0.0688114 0.086573 -0.0173858 +-0.0425222 0.0435673 -0.0203211 +-0.0411345 0.037889 -0.0275181 +-0.0451234 0.0336213 -0.00611106 +-0.0513475 0.115214 -0.0158415 +-0.0135796 0.18457 -0.0255034 +0.0514482 0.0490026 0.000289284 +-0.0154766 0.160714 -0.011803 +-0.0871595 0.128427 0.0471391 +0.0253818 0.0487646 -0.0196147 +-0.0226623 0.0866242 0.0548392 +-0.00567144 0.0569411 -0.0332111 +0.046481 0.0764536 0.00918999 +0.0579995 0.0690441 0.020859 +-0.0371 0.126156 -0.00341777 +-0.073756 0.0716254 0.0312714 +-0.0320938 0.0457263 -0.0270587 +-0.0109396 0.165104 -0.0156606 +-0.088578 0.151544 0.0220955 +0.00637955 0.131641 0.0120332 +-0.00648723 0.114138 0.040862 +-0.058347 0.0335497 0.00759386 +0.00578775 0.0392649 0.0317966 +-0.0571091 0.140994 0.0314586 +-0.00487882 0.107372 -0.0225382 +-0.0806197 0.114932 0.047462 +-0.0334955 0.0874648 0.043047 +-0.0460993 0.132381 0.0175967 +-0.0638759 0.0334217 -0.000619218 +-0.0121322 0.038759 -0.00601251 +-0.0743637 0.153685 0.0319267 +-0.0445292 0.0547767 0.038815 +0.0265401 0.0686018 0.0436052 +0.0300756 0.0946988 -0.0182345 +-0.00649809 0.0703887 0.0571625 +-0.0574852 0.0861616 0.0444185 +-0.0204789 0.081458 0.0566556 +-0.045663 0.0367902 -0.0212772 +-0.0660163 0.156182 0.0230465 +0.0105014 0.112682 0.0391847 +-0.0863368 0.153207 0.0174967 +-0.0314199 0.0595176 -0.0174145 +-0.0903295 0.150229 0.0211233 +-0.0394972 0.0648803 0.0416583 +-0.0107858 0.0386823 0.0289151 +-0.0567014 0.0534733 -0.0003903 +-0.00348704 0.121028 0.0369539 +0.0367923 0.0967547 0.0340658 +-0.0206904 0.0538665 -0.0309758 +0.0171483 0.0535046 0.047456 +-0.052342 0.035529 0.0457534 +-0.0350351 0.0408695 0.0473482 +-0.0364795 0.0519621 0.0386972 +0.0339284 0.0669478 -0.0167571 +-0.0277715 0.0852268 -0.0356683 +0.00655622 0.121628 -0.0130526 +-0.0586532 0.0645395 -0.00761311 +-0.0582249 0.0344034 0.0351394 +-0.00633129 0.0388612 -0.00122239 +-0.0669198 0.113752 -0.0107887 +-0.0667337 0.0374088 0.0337222 +-0.00249774 0.0520145 0.0539036 +-0.0450377 0.0345968 0.0325315 +0.0242293 0.119847 -0.00515511 +-0.0932424 0.12021 0.0392849 +-0.0535442 0.129727 0.0348674 +-0.00517846 0.0367339 0.04845 +-0.0734548 0.0752713 0.0352251 +-0.0687371 0.155896 0.0104629 +-0.0471614 0.0336254 -0.00103179 +-0.00441737 0.117961 -0.0150091 +-0.0238639 0.0825121 0.0547585 +-0.0132802 0.102485 0.0435875 +-0.0649278 0.105334 -0.0156241 +0.0286778 0.116188 -0.00517917 +-0.0236663 0.0381653 0.00868472 +-0.0645999 0.0432992 0.0347148 +-0.0856886 0.0926246 -0.00156242 +-0.0835056 0.0777286 0.0204901 +0.0321567 0.107734 -0.010124 +-0.0895151 0.151559 0.0181181 +0.0110134 0.130158 0.00376449 +-0.0202842 0.16977 -0.0137262 +-0.00591514 0.12799 -0.00376372 +0.0143906 0.0373653 -0.0212799 +-0.0719296 0.11219 -0.00889601 +-0.0157228 0.0642918 -0.0372774 +0.0269219 0.115924 -0.00692402 +-0.0665225 0.0435914 0.00948645 +-0.0747288 0.102175 0.0369848 +0.0207343 0.120306 -0.00765281 +-0.0240392 0.0380418 0.0177619 +-0.0806691 0.107746 0.0299304 +0.0541727 0.0734662 0.0150335 +-0.0828869 0.0763004 0.0145215 +-0.0490771 0.154645 -0.00592496 +0.0211784 0.0973838 -0.0221644 +-0.0576844 0.0467193 0.0286753 +0.00985328 0.0602892 0.0527986 +0.0232608 0.0748451 -0.0261321 +-0.0524982 0.0862336 0.045539 +-0.0783198 0.147274 -0.0028373 +0.0082875 0.114937 -0.017843 +0.018445 0.0456517 -0.0226728 +-0.0239275 0.1816 -0.0100979 +-0.040758 0.0797297 -0.0196637 +-0.0485257 0.121087 0.0297472 +-0.0345208 0.0633716 0.0403553 +-0.00118398 0.0362533 0.0473478 +0.000189104 0.0867348 -0.0351526 +0.0231695 0.0520348 0.0420858 +-0.0324783 0.0337381 0.0144953 +-0.0597681 0.0334439 0.00560092 +0.0177557 0.0344112 0.00209212 +0.0159863 0.0860656 0.0513294 +-0.0393291 0.127134 0.01721 +-0.0628998 0.1209 -0.00884208 +0.04086 0.101423 0.0231764 +-0.0146702 0.122522 -0.00773793 +-0.0292113 0.156649 -0.000270817 +-0.0415254 0.172553 -0.00373349 +-0.0365135 0.084703 0.0437856 +-0.0208969 0.0381794 0.0236923 +0.011579 0.120136 -0.0134617 +-0.0347516 0.0383809 -0.00467189 +-0.0166266 0.172732 -0.0172138 +-0.0531086 0.126902 0.0355005 +-0.0154789 0.0347707 0.0439361 +-0.0110657 0.112343 -0.0190003 +0.0286979 0.0806527 -0.0216026 +-0.00681305 0.0345833 0.0441587 +-0.0245442 0.0708437 0.0459353 +-0.0613991 0.0718897 0.0389316 +-0.0682443 0.179461 -0.0589214 +-0.00573885 0.0698843 -0.0361103 +-0.0875967 0.100907 0.00640641 +0.0169866 0.0348952 0.0343866 +0.0228667 0.0444458 -0.0147763 +-0.0536029 0.162357 0.00297376 +-0.0723862 0.156822 -0.0359122 +0.000140075 0.103071 -0.0225088 +-0.0543692 0.0334679 -0.00234676 +-0.0771859 0.109877 -0.00559641 +-0.0922148 0.11614 0.0373108 +0.00616718 0.124896 -0.00854967 +-0.00125449 0.12189 -0.0112382 +0.0349132 0.114353 0.0126105 +-0.0534959 0.107052 0.0398334 +0.0553645 0.0492819 0.0192078 +0.0496613 0.0501912 -0.00270335 +-0.0917143 0.128313 0.0332436 +0.00552678 0.0619607 0.0559576 +-0.0252475 0.0736694 0.0465167 +-0.0656879 0.156227 0.015899 +0.0167178 0.128574 0.00869666 +-0.0616277 0.154191 0.00244865 +-0.0845352 0.136246 0.000324782 +-0.0835033 0.0804619 0.0265017 +-0.0380583 0.154792 -0.00920218 +-0.0683549 0.0382578 0.0114352 +-0.0713665 0.156324 0.018248 +0.0326986 0.0781958 0.0420379 +-0.0267044 0.158758 -0.0121466 +0.0274612 0.0417732 0.0323464 +-0.00748374 0.116886 0.0393445 +-0.0618946 0.0333508 -0.00558837 +-0.022958 0.166842 -0.0105567 +0.000373363 0.0349968 0.00734292 +-0.0437553 0.033642 0.00144997 +0.0267259 0.120866 0.0252428 +-0.0859248 0.0832079 0.00547822 +-0.00269975 0.109146 -0.0216168 +0.055733 0.052157 0.00319809 +-0.0704697 0.181218 -0.0537747 +0.00698645 0.0818884 0.0558396 +0.0424628 0.0943961 -0.00280162 +-0.0560128 0.0334549 0.00994988 +-0.000497737 0.11557 0.0407823 +0.0115122 0.104463 0.0449641 +0.0113328 0.124014 0.0325236 +-0.0257103 0.0983522 -0.0242349 +0.0385114 0.038461 0.00447642 +0.0274866 0.0994982 0.0416519 +-0.0205044 0.11679 0.0360351 +-0.0287307 0.0748955 0.0414817 +0.021677 0.0354914 0.00935068 +-0.0604978 0.109778 0.0376942 +0.0349482 0.114159 0.0154869 +-0.0891171 0.11284 0.0400327 +-0.0525174 0.133925 0.0310668 +-0.0467675 0.0811826 -0.0202513 +0.0148515 0.129255 0.0180171 +0.0134018 0.0418881 -0.0236384 +-0.0196836 0.0524593 -0.0309769 +-0.0907522 0.136478 0.0191999 +-0.0282073 0.178522 -0.0159874 +-0.0456817 0.146626 -0.00135754 +-0.0234782 0.174205 -0.0130294 +0.0157394 0.128861 0.0183169 +-0.049553 0.0432181 -0.0104928 +-0.0364431 0.0379518 -0.0296736 +-0.0342528 0.161016 -0.000502552 +-0.0106993 0.061373 -0.0355475 +0.0155546 0.034804 0.0269401 +0.0445305 0.0664178 0.0264316 +-0.0692603 0.166617 -0.0519986 +0.00900275 0.0343116 -0.0200681 +-0.0789639 0.13393 -0.00512141 +0.0183835 0.0490953 -0.0235496 +-0.0211568 0.177178 -0.0149257 +-0.0459855 0.0341655 0.0291843 +0.0234635 0.12256 0.0268857 +-0.0437241 0.0724973 -0.0179849 +-0.0492665 0.143175 0.00640774 +0.0310235 0.0363382 0.00298341 +-0.0703389 0.0353326 0.0107638 +-0.0505002 0.0762293 0.0432414 +-0.0641035 0.141307 -0.00745692 +-0.0474934 0.115292 0.0331905 +-0.050108 0.144746 0.0113816 +0.0325029 0.117364 0.00744623 +-0.0183192 0.124686 -0.00393431 +-0.00150748 0.059016 0.0544507 +-0.0104895 0.115533 0.0397944 +-0.023487 0.0435372 0.0536017 +-0.0655471 0.154522 0.00288522 +-0.0675989 0.156142 0.0239498 +-0.03165 0.0339865 0.0180432 +-0.0447604 0.0336698 -0.00424497 +-0.0348481 0.110331 -0.0188 +-0.0114927 0.0938853 0.0554733 +-0.0700706 0.155642 0.00707306 +0.0444883 0.05975 0.0312137 +-0.0788477 0.0773102 0.0306071 +-0.0712203 0.0706743 0.0326242 +0.00153616 0.078717 0.0572683 +-0.0243177 0.0607418 0.04177 +0.0445696 0.0677675 0.0254424 +0.0516179 0.0503639 -0.000756444 +-0.0610049 0.129668 -0.00770337 +-0.0731244 0.174613 -0.0403365 +-0.021137 0.166765 -0.0184531 +-0.068723 0.163208 -0.0142948 +-0.0415011 0.0676725 0.0415782 +-0.0829782 0.147345 0.00316952 +-0.056007 0.145723 -0.001571 +-0.023276 0.0768174 0.0529315 +-0.0303597 0.158405 -0.0122944 +-0.0594923 0.107014 0.0396564 +-0.0680504 0.156343 0.0223236 +-0.050518 0.054445 0.0327051 +-0.0324286 0.126663 0.0108668 +-0.0629263 0.108221 -0.0156274 +-0.0283572 0.0862879 0.0464179 +0.0304249 0.0399897 -0.00292852 +-0.0820851 0.106006 0.028693 +-0.081432 0.0776141 0.0263044 +0.0121657 0.0990535 -0.0228743 +-0.0148931 0.161809 -0.0143393 +0.0322568 0.0814321 -0.0193234 +-0.0249634 0.0631201 -0.0324542 +-0.0844782 0.152284 0.0269844 +-0.0284889 0.100156 0.0431683 +0.0335187 0.113275 -0.00203325 +0.0243141 0.0347256 0.0105738 +-0.0189924 0.127884 0.0157415 +-0.0555 0.0488797 0.0362241 +-0.0675079 0.104205 0.0395869 +-0.0181173 0.0384288 0.000495732 +-0.0138101 0.0841459 -0.0389466 +-0.0343542 0.0367977 0.0484644 +0.0170352 0.0393356 0.0436644 +-0.0255828 0.0620727 0.0401653 +0.0012257 0.0797035 -0.0352779 +-0.0033226 0.122983 -0.0103909 +0.0377895 0.0954381 0.0337234 +-0.0779478 0.107702 0.034147 +0.0309974 0.0673207 0.0412553 +0.0125192 0.0833344 0.053329 +-0.0569108 0.0471914 0.0407265 +-0.0765896 0.172837 -0.038783 +-0.0243798 0.168291 -0.0108587 +-0.0849208 0.114388 0.046865 +0.0270076 0.100021 -0.0178938 +-0.00936568 0.0388306 -0.00738531 +0.0124903 0.101789 0.047403 +0.0153634 0.050802 -0.0265798 +-0.051492 0.107057 0.0393982 +0.00022872 0.0769217 -0.0357549 +-0.073138 0.156184 0.0161734 +-0.0171943 0.171219 -0.0224352 +0.0282636 0.073195 -0.0229429 +-0.0554943 0.112513 0.0359102 +0.0268698 0.0448976 0.0368034 +-0.0567448 0.0548796 0.00465654 +0.00393342 0.0340406 0.014385 +-0.0269434 0.0864227 0.0492292 +-0.050859 0.0487888 0.015667 +-0.0524919 0.0762203 0.042799 +-0.025733 0.0751362 0.0469781 +-0.0870453 0.0846718 0.00449266 +-0.0765303 0.0961207 -0.0124976 +0.0303449 0.112749 0.0317399 +-0.070531 0.151779 -0.0453729 +0.0534729 0.0645627 -0.000631784 +0.0104112 0.0375138 -0.0230668 +0.0592863 0.0552837 0.0131736 +0.00525297 0.069736 -0.0335357 +0.0167263 0.0350159 0.0378322 +-0.0679113 0.0395796 0.0109828 +0.013918 0.129208 0.0205036 +-0.079478 0.142827 0.0451049 +-0.0708238 0.0631793 0.00551684 +-0.0687786 0.16979 -0.0301319 +-0.0187811 0.119777 -0.0107944 +0.021663 0.053586 0.0452157 +0.015783 0.0914175 0.0510677 +0.0258521 0.119872 -0.00319504 +-0.0172292 0.104564 -0.022745 +-0.0618136 0.0453397 -0.00172473 +0.0207685 0.0449736 0.0420523 +-0.0231964 0.0651165 0.0447582 +-0.0305175 0.0847809 -0.0315638 +-0.0658758 0.122838 0.0504663 +-0.0148324 0.107132 -0.0214612 +0.0460436 0.0778241 0.00519064 +0.00396334 0.0346642 0.000955872 +-0.000496537 0.0675633 0.0565514 +0.0342214 0.0813611 -0.0182381 +-0.0464961 0.0464761 0.0407845 +0.0547176 0.0680176 0.00187225 +-0.0580682 0.132534 -0.0063879 +0.0331199 0.0754691 0.0408773 +0.0401875 0.102783 0.0241636 +-0.0783656 0.151459 -0.000884796 +0.0238113 0.0754906 0.0485213 +0.0164183 0.0726599 0.0518741 +-0.0674097 0.173701 -0.0580011 +-0.0179511 0.175707 -0.0173471 +-0.0334973 0.0859864 0.0423406 +-0.0416172 0.17268 -0.00599082 +-0.0883846 0.119913 0.00130167 +-0.0154061 0.185475 -0.025609 +0.0464852 0.0429053 0.00427528 +0.0545912 0.0717149 0.021096 +-0.0661916 0.0334877 0.00245273 +-0.0495852 0.124005 0.0317323 +-0.0537144 0.0491343 0.0296614 +-0.0818927 0.122139 -0.0045131 +-0.0718108 0.0955414 0.0413269 +0.0221671 0.0444704 -0.016762 +-0.0798314 0.0733447 0.0205614 +0.0166594 0.125691 0.027245 +-0.0892473 0.0888575 0.0104669 +0.00551166 0.0504095 0.0521406 +-0.0627982 0.16724 -0.0607839 +-0.0646154 0.0457888 0.00269728 +-0.0485702 0.047508 -0.00937813 +0.026502 0.121591 0.0237374 +-0.0353601 0.152626 -0.00619729 +0.0403422 0.10564 0.0161674 +-0.0615416 0.034204 0.0241166 +0.0380593 0.0869714 -0.0147288 +0.0319925 0.114417 -0.00326976 +-0.0267368 0.0385445 0.0329521 +-0.0618964 0.108239 -0.0162152 +-0.063845 0.150027 0.0371387 +-0.0739579 0.155489 -0.0249104 +-0.0709691 0.153934 -0.0469289 +0.0249948 0.0405751 0.0353079 +-0.0304784 0.0381297 0.00370653 +-0.0247632 0.0741431 -0.0374571 +-0.0216593 0.0509046 -0.0292926 +-0.0446505 0.0592548 -0.0123035 +-0.0410267 0.172571 -0.00282243 +-0.060985 0.168641 -0.0594898 +0.0260213 0.111246 -0.0119 +-0.0224982 0.103036 0.0436276 +-0.0720537 0.0640001 0.00639175 +-0.08755 0.12805 0.000278104 +-0.0790371 0.0873264 0.0361062 +-0.055031 0.152471 0.0270238 +0.0537262 0.0622241 0.0283948 +0.0248385 0.107021 -0.0153684 +-0.0817292 0.154617 0.0205129 +-0.0776054 0.0804635 0.0348861 +-0.0644463 0.0769092 0.0410862 +-0.0737119 0.082093 -0.0148287 +-0.0782342 0.0694181 0.011104 +-0.0678631 0.0335656 -0.00155997 +-0.0771555 0.15282 -0.00488816 +0.028309 0.049176 0.0371723 +0.0122273 0.0342048 -0.000691958 +-0.0643947 0.15704 -0.046105 +-0.0276636 0.0522618 0.0383069 +-0.0587411 0.154535 0.0270999 +0.0275645 0.122014 0.00844231 +-0.0465457 0.0337901 0.0276252 +-0.0853906 0.110991 0.0352247 +-0.0338206 0.0367327 0.0490996 +-0.0145535 0.06115 0.0532234 +0.0367927 0.111755 0.0132988 +0.0458177 0.0820138 0.0181729 +-0.0444555 0.121377 -0.0123561 +0.0224202 0.0430392 -0.0127301 +0.0158478 0.102035 -0.022 +-0.0100884 0.0347013 0.0469069 +0.0374928 0.0498822 0.031843 +0.0351777 0.0559301 -0.00964394 +-0.00946358 0.169654 -0.0207426 +-0.0656264 0.15567 -0.0512009 +-0.0254805 0.0434932 0.0531599 +-0.0270955 0.0576776 -0.0274029 +-0.0228583 0.0350556 -0.0196661 +-0.0139903 0.169817 -0.0169155 +0.0176377 0.0348968 0.0272836 +-0.0144859 0.107222 0.0429439 +-0.0291189 0.15522 -0.00190906 +-0.0411739 0.165162 -0.0113688 +-0.0123514 0.0384213 0.00530714 +-0.0527141 0.141625 0.0234145 +-0.0612038 0.154834 0.027675 +-0.0338487 0.098628 -0.022813 +-0.000859642 0.105926 -0.0219248 +-0.0203431 0.186558 -0.0166005 +-0.01883 0.0882728 -0.037792 +-0.0635094 0.0987058 0.0422669 +-0.000483407 0.0787781 0.0579546 +-0.0700187 0.074071 0.0369567 +-0.0201986 0.186115 -0.0151371 +0.00141145 0.0376391 -0.024717 +0.0439647 0.0888964 0.0241631 +-0.0774025 0.100791 0.0354679 +-0.078513 0.145668 0.0427459 +0.0241305 0.0618675 0.0453428 +0.0109129 0.0833325 0.0545132 +-0.0798758 0.117757 -0.00451351 +0.0302928 0.119677 0.0137476 +0.0354021 0.0399255 -0.00156043 +-0.0489211 0.0687544 0.0390214 +-0.0493842 0.0558982 0.0343669 +-0.0524939 0.0776533 0.0431774 +-0.00761105 0.112944 -0.01965 +-0.0631004 0.038056 0.0429096 +-0.078061 0.117721 0.0511362 +-0.0228935 0.0375359 -0.0182249 +0.0168546 0.104974 -0.0191686 +-0.062493 0.0385506 -0.00796777 +-0.0814183 0.138999 -0.00180871 +-0.0585811 0.0344322 0.0332983 +-0.0299241 0.172727 -0.00652243 +0.0112861 0.130316 0.0195341 +-0.0325036 0.10978 0.0375732 +-0.0826224 0.141799 0.00118353 +-0.0805022 0.0831735 0.0334637 +0.0122352 0.0808526 -0.0312408 +-0.0771876 0.0907032 -0.0125611 +-0.0140608 0.038299 0.0231793 +-0.0386607 0.116212 -0.0149511 +-0.0276455 0.0376114 0.0210157 +-0.0832306 0.0871025 0.0304136 +-0.0334887 0.0471143 -0.0243565 +-0.0400971 0.153595 0.0050429 +-0.0647302 0.154215 -0.0408208 +-0.0194396 0.0527865 0.0471813 +-0.0665534 0.156088 0.0243177 +0.00850109 0.107119 0.0411949 +-0.0740753 0.174982 -0.0510829 +-0.0131928 0.11434 -0.0171133 +-0.00874908 0.0742103 -0.037697 +0.00967799 0.130572 0.00468392 +0.0318663 0.0862689 0.0426688 +0.0197994 0.0399634 -0.0167042 +0.0141672 0.0347073 0.00296826 +-0.0334912 0.0604137 0.038899 +-0.010802 0.0812949 -0.0382665 +-0.0626127 0.0339199 -0.00909656 +-0.0225179 0.0594554 0.0442529 +-0.0744235 0.152695 -0.0268913 +-0.0148262 0.181632 -0.021586 +-0.0501691 0.0348773 0.00986405 +0.0104481 0.102845 -0.020901 +-0.0127527 0.177163 -0.0221029 +0.008145 0.103004 -0.0207662 +-0.0548867 0.101301 -0.0205491 +-0.0772028 0.162464 -0.0309387 +0.0379552 0.0588939 -0.00773658 +-0.0134957 0.0925258 0.0558596 +0.0248886 0.0970269 -0.0206985 +-0.0393214 0.0342416 -0.0147308 +-0.0458838 0.129671 0.00293555 +-0.0574217 0.135337 0.0345321 +-0.0820284 0.13533 -0.00235647 +0.038582 0.0659177 0.034606 +-0.0494896 0.157875 0.00921755 +-0.0225598 0.125982 0.00280455 +0.0216881 0.102085 -0.0200779 +-0.0136509 0.0496769 -0.0312069 +-0.0615955 0.15529 0.0260796 +-0.0115193 0.0773584 0.0574493 +0.0404486 0.0745397 -0.00879543 +-0.057886 0.0969698 -0.0206731 +-0.0109392 0.038438 0.0236915 +-0.0148475 0.162865 -0.0159421 +-0.0183748 0.0353493 0.0515278 +0.029169 0.114081 0.0318014 +0.0232083 0.0449556 0.0403488 +-0.0234883 0.122057 0.0276339 +0.0359605 0.0936242 -0.0130764 +-0.0175335 0.0392471 0.0378093 +-0.0308588 0.171231 -0.00613945 +0.0247031 0.0463341 0.0389677 +-0.0925247 0.128292 0.0282327 +-0.0665656 0.122847 0.0512252 +0.0584586 0.0607609 0.022909 +-0.00884754 0.115581 -0.0164541 +-0.00309453 0.0984522 0.0515066 +0.0115015 0.119616 0.0358941 +-0.0494977 0.0903933 0.0446494 +-0.0126691 0.0348865 0.0479592 +-0.0149576 0.0897382 -0.0373658 +-0.0152002 0.174208 -0.0254562 +-0.0756281 0.167353 -0.024657 +-0.0627225 0.0402195 0.0247088 +-0.058955 0.151077 0.0341866 +-0.00932165 0.17502 -0.028678 +-0.0123491 0.183911 -0.0264322 +-0.0896074 0.135171 0.0322127 +-0.0426789 0.168728 0.0023488 +-0.0748775 0.0739125 0.0325733 +0.03891 0.10882 0.00971935 +-0.0633729 0.0431313 0.0286681 +-0.0551792 0.0336096 0.018904 +0.0268834 0.0875842 0.0460207 +-0.0168782 0.0351038 0.0503404 +-0.00549453 0.0590678 0.0548923 +-0.0286315 0.0383676 -0.00896928 +-0.0332631 0.177035 -0.011981 +-0.0748045 0.167943 -0.0420608 +-0.0851109 0.0939488 -0.00257672 +0.00096833 0.121103 -0.0124156 +-0.0558825 0.0465312 0.026676 +0.00712802 0.0975509 -0.0252935 +-0.00450103 0.0746726 0.0587526 +-0.0754962 0.141423 0.0471972 +-0.0514204 0.0548853 0.0209522 +-0.0107189 0.0642451 -0.0362023 +0.0428473 0.0944698 0.0251639 +0.0161732 0.12869 0.00706423 +0.0172673 0.128465 0.0103258 +-0.0624218 0.113827 0.0376933 +-0.0694289 0.039567 0.00968578 +-0.00956353 0.172645 -0.0227849 +-0.036529 0.0344176 0.0112583 +0.00747563 0.0378784 -0.00876072 +-0.0105064 0.0884021 0.0567868 +-0.0306153 0.0495713 -0.0203608 +-0.0832173 0.13898 0.000315163 +-0.00610064 0.0339097 -0.0209348 +-0.0081869 0.0386049 0.00598379 +0.0213573 0.057915 -0.0266602 +0.0391712 0.0402919 0.0231925 +-0.0346283 0.0533938 -0.0102529 +-0.00324688 0.0367886 -0.0155194 +-0.0734226 0.0711647 -0.00664488 +-0.0628413 0.144409 -0.0076345 +-0.0258745 0.104437 -0.023108 +-0.0100477 0.178214 -0.0295899 +-0.0839857 0.132609 0.0495198 +-0.0498484 0.121182 -0.0121 +0.0108333 0.130856 0.0150885 +-0.0104958 0.0939039 0.0555039 +-0.0863431 0.112514 0.0302243 +0.0475429 0.0429463 0.00623912 +-0.0334893 0.050539 0.0382432 +-0.0209099 0.158178 -0.00579641 +0.011514 0.10312 0.0464311 +0.0350456 0.0627954 -0.0138277 +-0.0161876 0.171234 -0.0230543 +-0.0268555 0.0987274 -0.0239779 +0.0118541 0.0404814 0.0449158 +-0.0104973 0.0856567 0.0572952 +0.0271955 0.0520724 0.0391174 +0.00248489 0.105788 0.0426651 +-0.0037871 0.0812341 -0.0371832 +-0.0231675 0.184436 -0.0160624 +-0.0612844 0.044277 0.027687 +0.0239731 0.061977 -0.0246362 +-0.00946933 0.0932363 -0.0348935 +-0.0178949 0.0971863 0.0483787 +-0.00196639 0.0392296 -0.0118812 +-0.0067485 0.0755804 -0.0372256 +-0.00967937 0.0555867 -0.0337759 +0.000980617 0.120181 -0.0134191 +-0.0806495 0.10968 0.039129 +0.0358807 0.0812282 -0.0166923 +0.0146499 0.0699433 0.0528108 +-0.034478 0.0590226 0.0391844 +0.0203856 0.0348183 -0.00149748 +0.0142674 0.0709686 -0.0310685 +-0.0334971 0.119329 0.0299275 +-0.0341948 0.0435484 0.0464376 +-0.00450247 0.056202 0.0539356 +-0.0721189 0.15515 0.0282101 +-0.000346509 0.12561 -0.00723663 +-0.0756644 0.0774182 -0.00947264 +0.014908 0.106309 -0.0185911 +0.0267515 0.102116 0.0406018 +-0.0626019 0.174089 -0.0546038 +-0.0574874 0.0805202 0.0440851 +-0.0609158 0.169795 -0.0608698 +0.0438296 0.0973504 0.015162 +-0.072512 0.104082 0.0376881 +0.0359801 0.0821479 0.0380155 +-0.0573808 0.129734 0.0381066 +-0.0236825 0.0566574 -0.0305632 +-0.0351787 0.0336265 -0.0226404 +-0.0257826 0.0783385 -0.0372231 +-0.0733446 0.159645 -0.0339252 +-0.024717 0.169741 -0.0113487 +-0.0597904 0.0825229 -0.0201763 +-0.0638365 0.0996097 -0.0175199 +-0.0897172 0.118919 0.0457459 +0.00851027 0.105753 0.0425683 +-0.0857293 0.121702 0.0488414 +-0.00654714 0.043 0.0484741 +-0.0524991 0.109798 0.0378325 +0.0089719 0.130372 0.00300057 +-0.0912936 0.114724 0.0218532 +-0.0758153 0.155373 0.0254598 +0.0443256 0.0931523 0.0201621 +-0.00159763 0.0391157 -0.0252097 +0.0358716 0.112393 0.0201061 +-0.0582724 0.0345955 0.0435663 +0.0444341 0.0861163 0.024155 +-0.0798668 0.12036 0.0500614 +-0.0486801 0.12235 -0.0113455 +0.044671 0.0931702 0.0171607 +-0.0867731 0.0820034 0.0144903 +-0.0444986 0.0465011 0.0409291 +-0.0132439 0.178631 -0.0284206 +-0.0014976 0.0856652 0.0573264 +-0.0555627 0.0351736 0.0453577 +-0.0757755 0.0948358 -0.0134771 +0.0116939 0.0459283 0.0447695 +-0.0334941 0.0690232 0.0409338 +-0.0717098 0.161007 -0.0419418 +-0.0620707 0.163126 -0.0385937 +0.0188526 0.103753 -0.0198618 +-0.0699102 0.14965 -0.0409667 +-0.0405063 0.0902417 0.0426463 +-0.071716 0.148756 -0.0367532 +-0.0218007 0.0637891 0.0462553 +0.0567259 0.0536428 0.00417778 +-0.0893948 0.09291 0.012442 +-0.0603715 0.133894 0.0372893 +0.0314991 0.054058 -0.0137198 +0.0203015 0.126964 0.0128708 +-0.0845068 0.120355 0.0490624 +-0.0624258 0.0342984 0.0291094 +-0.0395093 0.0930879 0.0428865 +-0.0277909 0.0380629 0.00793761 +0.0321502 0.106752 -0.0110706 +0.0298444 0.106115 0.0363002 +-0.054857 0.0970227 -0.0215362 +-0.0397671 0.127634 -0.000654541 +-0.0249592 0.0767123 0.050372 +-0.0265277 0.10717 0.0404632 +-0.0283702 0.0535742 -0.0233936 +0.00450189 0.050474 0.0524519 +0.00174762 0.0944417 -0.0320379 +-0.0810711 0.076096 -0.000474637 +0.0169426 0.11422 -0.015094 +-0.0380634 0.127686 0.00145512 +-0.0320932 0.0877303 -0.0254981 +-0.0569735 0.056267 0.00463231 +-0.0692551 0.175557 -0.0461164 +-0.0461819 0.130936 0.0220239 +0.0424151 0.101486 0.0141591 +-0.0816004 0.110405 0.0418977 +-0.0486814 0.0634873 -0.0123857 +-0.0354984 0.0491504 0.038916 +0.0232288 0.125257 0.0153837 +0.0251982 0.123641 0.0075622 +-0.0357278 0.07254 -0.0181295 +0.0451439 0.0802684 0.0230283 +-0.00649644 0.0605343 0.0557379 +-0.0697973 0.159564 -0.0489352 +-0.037469 0.120514 -0.011464 +-0.0869577 0.133848 0.0453706 +0.0185257 0.0352322 0.0362088 +-0.0206549 0.0768238 0.0545752 +0.0458945 0.0764062 0.00420006 +-0.0137194 0.091107 -0.0367438 +-0.0375014 0.106979 0.038117 +-0.0446156 0.0437685 -0.0132939 +-0.064545 0.156137 -0.0442784 +0.0275233 0.0621538 -0.0218174 +-0.0642285 0.0429095 -0.00424321 +-0.00460043 0.0434181 -0.0258683 +-0.0778454 0.158312 -0.0179205 +0.00252706 0.0800582 0.0567791 +0.0174798 0.0919971 -0.0254067 +-0.08982 0.133788 0.032216 +0.0343452 0.114918 0.0052408 +-0.0630651 0.167844 -0.0445874 +0.0164152 0.127597 0.00146207 +-0.0755176 0.120378 0.0530566 +-0.00615627 0.0994928 -0.025355 +-0.0501125 0.157587 -0.00554245 +-0.0332242 0.152554 -0.00262082 +0.0104732 0.0962984 0.0498872 +-0.0184975 0.111326 0.0402128 +-0.0228147 0.0826618 -0.0384205 +0.025553 0.0822419 0.0475803 +-0.0841632 0.11158 0.00227497 +-0.0198477 0.126879 0.00378288 +-0.069852 0.0951674 -0.0161643 +-0.0306901 0.0678681 -0.026462 +0.0155988 0.0699697 0.0524229 +-0.0167333 0.0642714 -0.0369951 +-0.0167796 0.121583 -0.00869919 +-0.0594953 0.0747194 0.0418121 +-0.0630515 0.152177 -0.00858675 +-0.0111714 0.129564 0.00700207 +-0.0890821 0.101017 0.0143926 +-0.0145147 0.116898 0.0378441 +-0.0462973 0.0368721 -0.0182757 +0.0251418 0.056415 0.0432482 +-0.0114906 0.0532044 0.051601 +-0.0514985 0.0931716 0.0440238 +-0.0536498 0.152894 0.0173581 +-0.0226294 0.157855 -0.00422736 +-0.0723402 0.0380689 0.00697334 +-0.0100211 0.0383173 0.0131334 +-0.0469913 0.0345734 0.0373898 +0.0117235 0.127254 -0.00315056 +0.0163555 0.0343012 4.3653e-05 +-0.000810177 0.084021 -0.0366442 +-0.0417008 0.153622 0.00625938 +-0.0695833 0.156717 -0.0509483 +-0.00967078 0.0541668 -0.0336446 +-0.0862734 0.13657 0.044609 +0.0363518 0.0562159 0.0330449 +-0.0528028 0.0666303 0.0365007 +0.0263615 0.0352587 0.00303932 +0.00111992 0.10872 -0.0203906 +0.00958242 0.0350342 0.0036093 +-0.0639107 0.108163 -0.0148371 +-0.00462988 0.0451748 -0.0282624 +0.00356053 0.130245 0.0239041 +-0.0428482 0.128274 0.00047704 +-0.0896015 0.136498 0.0242003 +-0.011119 0.163582 -0.018751 +-0.0521911 0.0531856 0.0256383 +0.02777 0.0808734 0.0454779 +0.0197898 0.0754906 0.0515075 +-0.0405912 0.0404909 -0.0262976 +-0.0184208 0.185917 -0.0222223 +-0.0738815 0.117926 -0.00764413 +0.0124741 0.0346639 0.0372734 +-0.057552 0.0336321 0.0166122 +0.0220421 0.0848959 0.0495666 +0.0184956 0.0962193 0.0472822 +-0.0577255 0.0578321 0.0166151 +0.00647696 0.11413 0.0402504 +-0.073854 0.100736 -0.0128364 +-0.0528758 0.0985097 -0.0219976 +0.0185485 0.111232 -0.0158588 +0.0257216 0.0672521 0.0441644 +-0.000523566 0.0428273 0.0465064 +-0.0354915 0.050532 0.0385401 +-0.0294972 0.0602632 0.0372614 +0.00410653 0.111609 -0.0202712 +0.0583904 0.0706508 0.00920486 +-0.0644959 0.084745 0.0443622 +-0.0182219 0.0954777 -0.0312615 +0.0163111 0.0608546 -0.0282401 +-0.0725001 0.120391 0.0535845 +-0.0164977 0.0828905 0.0574138 +0.0130474 0.0490028 0.046739 +-0.072956 0.173805 -0.0388399 +-0.0264766 0.0576077 -0.0284232 +-0.0644961 0.0602892 0.0183972 +0.0357477 0.074144 -0.0137952 +-0.0655596 0.171143 -0.0433207 +-0.0784904 0.133065 0.0521095 +-0.0651287 0.156206 0.0175513 +-0.0205565 0.183109 -0.0139659 +-0.0680156 0.156066 0.0121787 +0.0233417 0.0549864 0.0441504 +-0.0745084 0.134461 0.0510337 +-0.0489659 0.12587 -0.00699728 +-0.0422261 0.0339521 -0.0076663 +0.00337017 0.091416 -0.0329064 +0.040054 0.0998936 -0.00479776 +-0.0939204 0.128289 0.0212475 +-0.0301543 0.157156 -0.0110394 +-0.0456539 0.0606919 -0.0125779 +-0.0534986 0.0833862 0.0450488 +-0.047648 0.0614917 0.0367154 +-0.0486267 0.13356 0.00299082 +-0.0895466 0.0969995 0.0164128 +-0.0339552 0.0695264 -0.0185169 +-0.0176031 0.0711548 0.0545194 +0.0454033 0.0457238 -0.00184235 +-0.0546836 0.0478194 0.0276676 +-0.0875304 0.0861027 0.015468 +0.00919687 0.124582 -0.00824181 +0.0404579 0.0971405 0.0281735 +0.0219677 0.0346711 0.00269802 +-0.0114833 0.0618754 0.0549615 +-0.0209254 0.127401 0.0135903 +-0.0681737 0.074979 0.0383298 +-0.0357386 0.176065 -0.00515676 +0.0340797 0.115381 0.00660331 +-0.0207606 0.0670735 -0.0371287 +-0.075369 0.155134 0.0270903 +0.000773445 0.126081 0.0315854 +0.0414985 0.058326 0.0311197 +-0.03873 0.0340634 -0.0163036 +-0.0929281 0.121393 0.0102886 +-0.0680681 0.061235 0.0168081 +-0.0756991 0.0688679 0.00254149 +-0.0138611 0.0386244 0.0283378 +-0.0806333 0.120347 0.049427 +-0.0534714 0.115278 0.0343029 +-0.0365049 0.169731 0.000981263 +-0.0624922 0.100117 0.0423224 +0.00907886 0.126317 -0.00613291 +-0.0935493 0.125561 0.0262639 +0.022475 0.0933993 0.047467 +-0.015827 0.0921385 -0.0358122 +-0.0210449 0.0384562 -0.0168371 +-0.0207268 0.0612423 -0.0346723 +-0.0134967 0.109686 -0.0201653 +0.0456137 0.0708816 0.00289794 +-0.0090863 0.16966 -0.0247514 +-0.0889386 0.0888873 0.0194501 +-0.0532128 0.133944 -0.00360453 +0.0195053 0.0351963 0.0310168 +-0.0255119 0.104394 0.0424048 +-0.0174974 0.103031 0.0436129 +-0.0299173 0.0383162 -0.0299848 +0.00451386 0.0856474 0.057126 +0.0147725 0.0939169 -0.0254338 +0.0242867 0.0719771 -0.0256393 +0.0172719 0.0348529 0.0254373 +0.0558147 0.064873 0.0261542 +-0.0364911 0.0662596 0.041455 +-0.0758603 0.151341 -0.0198831 +-0.0616679 0.0643653 -0.00651734 +0.0383551 0.0603737 0.0324667 +-0.0477542 0.0782681 -0.0190718 +-0.0550269 0.0560444 -0.00440953 +-0.0395059 0.0972892 0.042147 +-0.0777926 0.167262 -0.0295303 +0.0604641 0.0623144 0.017179 +-0.0777137 0.177848 -0.0500546 +-0.0521757 0.0461175 0.0166821 +-0.0754874 0.130275 0.0528009 +0.0116887 0.0343979 -0.00472037 +-0.0617898 0.16156 -0.0335933 +0.0442649 0.0973538 0.00716867 +-0.0616258 0.0641254 0.029779 +0.00550935 0.0688576 0.0555484 +-0.053845 0.0955972 -0.0217935 +0.00741716 0.0375454 -0.0236134 +-0.0596132 0.113903 0.0363038 +-0.0508811 0.108424 -0.0190099 +-0.0437584 0.079737 -0.0197567 +-0.0733029 0.15632 0.000130521 +-0.003234 0.0960652 -0.0317479 +-0.0575581 0.0507849 0.00163524 +0.00435827 0.129372 -0.0013469 +-0.025212 0.123605 0.0223303 +-0.0669175 0.115159 -0.00990572 +-0.0722654 0.153589 0.032663 +-0.0147591 0.033582 -0.024214 +-0.00115893 0.11911 -0.0142672 +0.019441 0.0384709 -0.0146972 +-0.0772499 0.172214 -0.0459981 +-0.069531 0.14702 0.0417131 +-0.0343373 0.0443897 -0.0277936 +-0.0705699 0.152776 -0.0468148 +-0.0918951 0.117319 0.00831437 +0.0103421 0.0567446 -0.0299462 +-0.0336919 0.119642 -0.0105178 +-0.0629712 0.145905 -0.0115915 +0.00646739 0.0342464 -2.28584e-05 +0.00713618 0.103008 -0.0210892 +-0.018026 0.0384381 0.0276504 +0.0433583 0.0505545 -0.0063311 +-0.0882504 0.0900881 0.0054683 +0.00248872 0.118285 0.0387448 +-0.0227774 0.0713561 -0.0378898 +-0.0154972 0.122303 0.0324651 +-0.0322294 0.0708154 -0.0244722 +-0.025189 0.174162 -0.0196112 +-0.0871031 0.0846537 0.0064784 +0.00836869 0.0928852 -0.0303774 +-0.0424793 0.0958739 0.0423242 +-0.0640607 0.152536 -0.00179872 +0.00949301 0.118213 -0.015379 +0.0461867 0.0806341 0.00618373 +-0.0408599 0.102809 -0.0209257 +-0.0431187 0.159159 -0.0099383 +-0.0154785 0.0828416 0.0569929 +-0.0775215 0.161144 -0.0189221 +0.0358655 0.112954 0.0143927 +-0.0759551 0.131077 -0.00722143 +0.0465282 0.0726943 0.00507292 +-0.0784776 0.134439 0.0514602 +-0.0718916 0.0995338 0.0398851 +0.0174027 0.127944 0.018931 +-0.0494895 0.143125 0.00338457 +0.0333197 0.0357288 0.0133458 +0.0132595 0.0751478 -0.0304595 +-0.0324893 0.100164 0.0432113 +0.0343769 0.112004 0.0266888 +-0.0108703 0.180136 -0.0264173 +-0.0872312 0.1132 0.0437313 +0.0353616 0.106017 0.0302164 +-0.0282335 0.0382933 0.0310718 +-0.0646654 0.132541 0.0415985 +-0.0416682 0.0336125 -0.0201879 +-0.0690362 0.134069 0.0476421 +0.023852 0.057789 0.0449027 +0.0440963 0.0735854 0.0249308 +-0.0624573 0.163073 -0.0525854 +-0.0341025 0.169759 -0.00204136 +0.0589446 0.0649523 0.0051412 +-0.0602752 0.0336649 0.0124615 +-0.0628859 0.1495 -0.0200671 +-0.0722644 0.0671374 -0.000515551 +0.0135851 0.0658847 0.0529797 +-0.00198691 0.0368792 0.0142478 +0.0367682 0.0700097 -0.0138015 +-0.0296169 0.0408892 -0.0298249 +-0.0376612 0.0606745 -0.0122764 +0.00800811 0.0345328 -0.00370443 +0.0105539 0.104067 -0.0202515 +-0.0488192 0.0586801 0.0351334 +-0.0557857 0.0840569 -0.0214422 +0.0308153 0.0525508 -0.0137522 +0.0423969 0.0451283 0.0286278 +-0.0332147 0.036763 0.0499127 +-0.0736682 0.0730938 -0.00832442 +-0.0175484 0.124749 0.0265509 +-0.063425 0.163107 -0.0254606 +-0.0727351 0.0832969 0.03983 +0.0319929 0.088146 -0.0193446 +-0.0444371 0.122416 -0.011439 +-0.0858505 0.116285 0.047652 +-0.00444148 0.0916785 -0.0352643 +0.022957 0.0981907 0.0456622 +-0.053144 0.0595659 0.0253997 +-0.0788525 0.107465 0.0324362 +-0.0457478 0.130844 0.0207105 +-0.0684896 0.172346 -0.0400602 +-0.034733 0.0498868 -0.0123113 +0.0415062 0.0499285 0.0325086 +-0.0665679 0.0404538 -0.00528616 +-0.00650346 0.112991 -0.0197156 +-0.0448474 0.0999398 -0.0215303 +-0.0816586 0.137613 -0.00180043 +-0.0585618 0.124728 -0.00774237 +-0.0466281 0.0592297 -0.0120314 +-0.0670784 0.0653289 0.0275882 +-0.0835882 0.125784 0.0507488 +-0.0164643 0.0842755 0.0572298 +-0.0904705 0.135055 0.0132171 +-0.022546 0.116788 0.03495 +-0.0334891 0.091814 0.044517 +-0.0719917 0.151909 0.0358108 +-0.0151953 0.168341 -0.0151527 +-0.0590718 0.156479 0.0080978 +-0.0154402 0.120098 -0.0111735 +-0.036496 0.17271 -0.000384966 +0.0392898 0.0993144 0.028831 +0.024983 0.0795787 0.048494 +0.0483695 0.0734096 0.0143189 +0.0196959 0.0394038 0.04222 +-0.00886334 0.103392 -0.0235214 +-0.0118005 0.0841384 -0.0387163 +0.0252205 0.0888413 -0.0232794 +0.0298168 0.052105 0.0376191 +-0.0776927 0.169444 -0.0419634 +-0.0314915 0.057461 0.0373842 +-0.0504539 0.0558071 0.0326022 +0.0138422 0.0901622 -0.0294996 +-0.0510104 0.149266 0.0138316 +-0.0341485 0.0337694 0.0159272 +-0.085608 0.144617 0.0380805 +-0.0475132 0.0875996 0.0450977 +-0.091127 0.143391 0.0261688 +-0.0781968 0.0778917 0.0320122 +0.0284509 0.104793 -0.0149826 +-0.0223025 0.0957816 -0.0275832 +-0.0179573 0.123303 -0.00653742 +0.0369901 0.111103 0.00416682 +-0.0643667 0.159406 -0.0155654 +-0.0701684 0.165994 -0.0191552 +-0.0863906 0.0819518 0.00951177 +-0.0224965 0.100254 0.0443771 +-0.0757302 0.147214 -0.00986768 +0.0357939 0.0699287 -0.0148404 +-0.0376499 0.0577418 -0.0112619 +0.019292 0.0988007 -0.0225555 +-0.00992376 0.097544 0.0521376 +-0.0493712 0.0572598 0.0342952 +0.0255474 0.054922 0.0420386 +-0.0494259 0.144129 0.00171058 +-0.0624989 0.104282 0.0409609 +-0.0430319 0.0336432 -0.0167728 +0.0179185 0.121996 -0.0074786 +-0.0190623 0.127503 0.00554509 +-0.0474205 0.145822 -0.000777163 +0.0526083 0.0475984 0.0212218 +0.00022388 0.0797271 -0.0356555 +-0.0301525 0.168207 -0.0169318 +-0.00151732 0.0576213 0.0542293 +-0.00248496 0.0548872 0.0545581 +-0.0502022 0.12654 -0.00566411 +-0.0529063 0.0676787 0.0373317 +0.00249985 0.107203 0.0424791 +0.0029144 0.125773 -0.00745627 +0.00334453 0.0496343 -0.0297987 +0.00449641 0.11692 0.039168 +0.0399282 0.041091 0.0244564 +0.0178192 0.126124 0.0248053 +-0.0799402 0.132433 -0.00455304 +-0.0649027 0.179945 -0.0575726 +0.0404255 0.0914089 -0.00978781 +-0.065797 0.132562 0.0435297 +-0.0372368 0.172627 -0.0118528 +-0.0554974 0.10569 0.0407246 +-0.076892 0.165957 -0.0247772 +-0.0587093 0.0344925 0.0418625 +0.00823978 0.0768076 -0.0338586 +-0.0626545 0.150596 -0.0225786 +-0.0384668 0.0931237 0.0434147 +0.0141618 0.0576523 0.0502255 +-0.0683767 0.176522 -0.0580176 +-0.0129882 0.119781 -0.0128781 +0.00848559 0.0950467 0.0516302 +-0.0429797 0.127137 -0.00436425 +-0.0497252 0.141657 0.00538484 +-0.0179056 0.127636 0.0191062 +-0.0520277 0.0563658 0.0215194 +-0.02384 0.0968692 -0.0247025 +-0.0561697 0.0684762 0.0377129 +0.0120601 0.0343849 -0.00838478 +0.0299331 0.0362092 0.00288494 +-0.0763652 0.1528 -0.0108857 +-0.0736067 0.154075 -0.0289008 +0.00533532 0.0538992 -0.0301758 +-0.0599208 0.0394628 0.0453423 +-0.0184879 0.0856371 0.0571362 +-0.0208094 0.0376226 -0.0178912 +-0.0137231 0.183161 -0.0241068 +-0.0648137 0.0346657 0.0352478 +-0.0271872 0.0379033 0.0118238 +0.0264669 0.0477487 0.0380114 +-0.0723733 0.0352474 0.00704331 +-0.0322701 0.0835031 -0.0295487 +0.0272688 0.122366 0.00977001 +-0.0603093 0.0652594 0.0325934 +-0.00180254 0.0385071 0.00372255 +-0.0522762 0.123638 -0.00859751 +-0.0776201 0.171284 -0.03689 +-0.0802965 0.0872747 0.0345612 +-0.0889001 0.136394 0.00820864 +0.000412609 0.0393166 0.0342543 +-0.0642567 0.0344972 0.033776 +-0.0921303 0.11612 0.0363104 +-0.0679654 0.134068 -0.0084026 +-0.0839818 0.115583 0.0478751 +-0.00536465 0.129031 -0.000823415 +0.00514522 0.103044 -0.0216473 +-0.0496209 0.0517545 -0.00857532 +-0.0757023 0.177226 -0.0456228 +-0.0298766 0.05514 -0.0203901 +-0.0861039 0.0846923 0.0224682 +-0.0238144 0.0879301 0.05313 +-0.0611505 0.153585 0.0321143 +-0.0917527 0.113836 0.0170127 +-0.0374964 0.0591338 0.0402834 +-0.0187977 0.0799028 -0.0389405 +-0.0680553 0.17056 -0.0341587 +-0.0658521 0.0361993 0.0388506 +0.0111435 0.100252 -0.0225401 +-0.0425873 0.125894 -0.0070983 +-0.0265027 0.0498541 0.0461184 +0.00111147 0.110147 -0.0201294 +-0.00249391 0.119678 0.0379989 +-0.0117585 0.0742488 -0.0381827 +-0.0586841 0.0466878 -0.00234651 +0.0295244 0.0750328 -0.0218147 +-0.0218606 0.101624 -0.0238704 +0.0287102 0.0942447 0.0434182 +-0.0709345 0.0627948 0.0166551 +-0.0225064 0.10717 0.041634 +-0.0335027 0.074683 0.04142 +-0.092242 0.128315 0.0292604 +-0.0374976 0.0888821 0.0433743 +0.0303768 0.0578247 0.0402716 +-0.00891857 0.0338467 -0.0251248 +-0.0533378 0.162724 0.0010506 +-0.0869041 0.141929 0.0394374 +-0.047972 0.135544 0.0173874 +0.0485157 0.0597129 0.0310438 +-0.00667005 0.0904165 -0.0359686 +-0.0759966 0.0994807 0.0369297 +-0.0625222 0.149113 -0.00558111 +-0.0718118 0.14996 0.0389054 +-0.0844416 0.147376 0.00515339 +-0.0165344 0.0392124 0.0380479 +-0.079893 0.0949635 -0.0095262 +0.0236407 0.0347514 0.0177381 +-0.0196654 0.0683158 0.0524244 +0.0245994 0.0981921 0.0445203 +-0.0849795 0.0952966 -0.00257745 +-0.0528207 0.121242 0.0358805 +-0.0236049 0.0394052 -0.0289635 +-0.0332166 0.165305 -0.0043102 +-0.0251865 0.160795 -0.0139572 +-0.0865509 0.152927 0.0144746 +-0.0693964 0.157876 -0.00437702 +-0.0628145 0.169399 -0.0485883 +-0.0643644 0.153473 -0.0380226 +-0.081904 0.115723 0.0482136 +0.0101277 0.0911581 -0.0305812 +-0.0405043 0.0944618 0.0422679 +0.021919 0.118008 0.0336347 +-0.0203338 0.123782 -0.00500918 +0.0111252 0.108699 -0.019265 +-0.0574976 0.0776487 0.0433498 +-0.0354848 0.0987251 0.0428224 +-0.0651932 0.141087 0.0409428 +-0.0240513 0.0386342 -0.0120079 +0.039324 0.106993 0.0191699 +-0.0754947 0.142836 0.0460912 +-0.0122699 0.0338184 -0.0220638 +-0.0246982 0.0551057 0.0409028 +-0.0578691 0.105465 -0.0183362 +-0.0264983 0.10435 0.041876 +-0.07915 0.166638 -0.0349654 +-0.0578202 0.140285 -0.0045343 +0.0220783 0.0686046 0.0476717 +-0.0770892 0.107143 -0.00760422 +-0.0902136 0.13513 0.0232187 +-0.0723372 0.156305 0.0208189 +-0.0650055 0.135525 -0.0079735 +-0.0549293 0.154823 0.0139773 +0.0292317 0.0773621 -0.0219141 +-0.0817276 0.0964548 -0.00656413 +-0.018203 0.175668 -0.0239316 +-0.0553377 0.0457536 -0.00639551 +-0.0161975 0.0432999 0.0517769 +0.0304284 0.0383851 -0.001443 +-0.0345483 0.152531 -0.00560476 +-0.0629676 0.160574 -0.0208244 +-0.0935783 0.124186 0.0262856 +-0.0311645 0.0580869 -0.017406 +-0.0317989 0.0382037 0.00155838 +0.0576172 0.0686777 0.0217698 +-0.00505811 0.0339518 -0.0207718 +-0.0696447 0.166615 -0.0510113 +-0.0629867 0.155807 0.0241223 +-0.0340215 0.0794269 -0.0255119 +-0.0867747 0.0981404 0.0024092 +-0.0880604 0.13085 0.0022566 +0.0184887 0.0948214 0.0475148 +-0.021497 0.0988475 0.0444941 +-0.0416678 0.0592681 -0.0121392 +-0.0567258 0.0480405 0.0316684 +-0.0423133 0.129133 0.00872164 +-0.000508444 0.105851 0.0435843 +-0.0592465 0.046889 0.0316721 +0.0461219 0.0806353 0.0161697 +-0.0281528 0.0348412 0.0481365 +-0.0702797 0.180333 -0.0522624 +-0.0478122 0.134031 0.00640478 +-0.0077489 0.0713239 -0.0366154 +-0.0122439 0.168894 -0.023749 +0.0212552 0.0777078 -0.0266851 +-0.0917522 0.132325 0.0122241 +-0.0361034 0.165201 -0.01444 +-0.052501 0.0805516 0.0443114 +-0.0654153 0.0336345 0.00606909 +-0.0623235 0.139333 -0.00679766 +-0.0616576 0.170967 -0.0555865 +0.00174509 0.0392548 -0.00741822 +-0.0260001 0.0677977 0.0418131 +-0.0684331 0.0336931 0.00540027 +-0.0448348 0.0942101 -0.0220316 +-0.0731091 0.158237 -0.0329184 +0.0078778 0.0989406 -0.0227671 +0.0314417 0.115539 0.0270138 +-0.00906667 0.129748 0.004892 +0.00649868 0.108551 0.0413323 +-0.0382124 0.150071 -0.00262103 +0.0332799 0.0564373 0.0374441 +-0.00349826 0.0647878 0.0565544 +-0.0487816 0.084091 -0.021606 +-0.0568391 0.118972 -0.0116757 +-0.0644875 0.156696 -0.0456027 +-0.0411616 0.152146 0.00524032 +-0.0636742 0.142603 -0.0078783 +-0.0711318 0.0777267 0.0384114 +0.00321355 0.0796602 -0.0346071 +0.00447281 0.110003 0.0420134 +-0.0174998 0.0772311 0.0559767 +-0.0263139 0.182659 -0.010558 +-0.0322455 0.15809 0.00238998 +0.045843 0.0760483 0.0203743 +-0.0548028 0.0464121 0.0246755 +-0.0376206 0.0376543 -0.029358 +-0.0523414 0.0402098 0.0465679 +-0.0432186 0.121963 0.0262727 +-0.0321664 0.125608 0.018357 +-0.0857232 0.0792432 0.0155047 +-0.0782439 0.151233 0.0351897 +-0.0187146 0.058392 -0.0343021 +0.0452185 0.0847535 0.00320441 +-0.0640415 0.167322 -0.0369994 +-0.0823499 0.132665 0.0507367 +-0.0301219 0.0493909 -0.0214267 +-0.0843946 0.0818335 0.0225112 +-0.0246526 0.0386383 0.0332956 +0.0563147 0.0580894 0.0250386 +0.00021169 0.0389894 0.029096 +-0.00241379 0.126666 -0.00637642 +-0.0301429 0.0551656 -0.0193914 +0.0331811 0.0417541 0.0279348 +-0.0861938 0.104994 0.0213645 +-0.0824118 0.0788951 -0.000494108 +-0.0743937 0.157452 -0.00470821 +0.0187225 0.127515 0.0179893 +-0.0829047 0.0763015 0.0175246 +-0.0650238 0.0641454 0.0272956 +0.0355567 0.0878311 -0.0169845 +-0.0887171 0.117597 0.0462102 +-0.0760085 0.141318 -0.005968 +-0.0127703 0.0756733 -0.0384193 +-0.0158456 0.122449 -0.00760827 +-0.0842393 0.107513 0.00238784 +-0.0674898 0.0986608 0.0416951 +-0.0554949 0.0427291 0.0458455 +-0.0201912 0.0383436 0.00560257 +-0.0372682 0.0344921 0.0377782 +-0.0357437 0.0380351 0.0467216 +-0.0450103 0.054631 0.0385549 +-0.0369768 0.047531 -0.0185543 +0.0520769 0.0581909 0.0294992 +-0.0329038 0.153455 -0.00604291 +-0.0725184 0.128806 0.0519752 +-0.0270556 0.0706113 0.0413767 +-0.0285061 0.116641 0.0323888 +-0.0144886 0.109993 0.0419529 +-0.0285168 0.0803552 -0.0356291 +0.00952067 0.0702149 0.0551678 +-0.0355616 0.151785 -0.00432824 +-0.0826529 0.0796856 0.0277856 +-0.0365963 0.127614 0.0137714 +-0.0657008 0.139678 0.041893 +-0.0758694 0.0777615 0.0343673 +-0.00737907 0.0367231 0.0491533 +-0.0704775 0.114632 0.0510417 +-0.059558 0.128315 0.0402204 +-0.0538405 0.0941624 -0.0218364 +-0.0274601 0.124651 0.00100866 +-0.0637125 0.0705931 -0.0131267 +-0.0644549 0.043254 0.0326925 +-0.0746657 0.154121 -0.0198989 +-0.0348879 0.043516 0.0457289 +-0.0234602 0.17569 -0.0129988 +-0.0720698 0.176015 -0.0442709 +-0.043544 0.157959 0.00535766 +-0.0407405 0.0739506 -0.0180651 +-0.0696125 0.150354 -0.0430103 +0.0418343 0.0943991 0.0271656 +-0.0932461 0.129666 0.0232459 +-0.0398464 0.0957237 -0.0225845 +-0.0764914 0.171559 -0.0359139 +0.0408836 0.0614281 -0.00367417 +-0.0356978 0.0346221 -0.0180732 +-0.0895729 0.151493 0.0191084 +0.0263253 0.122966 0.0165355 +0.0113407 0.0567362 -0.0298085 +-0.0736511 0.180693 -0.0540178 +-0.042544 0.16227 0.00511409 +-0.0522198 0.0374253 0.0467614 +-0.0777691 0.0689598 0.0151422 +0.0463347 0.0428813 0.020444 +0.0509435 0.0554131 0.029582 +0.0233146 0.125046 0.00829766 +0.00834665 0.0958673 -0.0275066 +-0.00680856 0.127356 -0.00506622 +-0.0554704 0.157309 0.00940753 +-0.0754721 0.103526 0.0362863 +0.044978 0.086159 0.0221711 +-0.0716236 0.170198 -0.0283222 +-0.0196387 0.0464931 -0.0280998 +0.0569791 0.0686933 0.0226042 +-0.0233118 0.182976 -0.0180572 +0.0290367 0.060539 0.0418753 +-0.0708458 0.0980019 -0.0152545 +-0.044501 0.0562098 0.0390177 +-0.00787685 0.105931 -0.0227718 +-0.0774743 0.140015 0.0480697 +0.0275361 0.10477 0.0382193 +0.00254476 0.127971 -0.00383507 +0.0235041 0.108407 0.0388101 +-0.055098 0.146723 0.029184 +-0.0257112 0.0634738 0.0402437 +0.0222133 0.103397 0.0428172 +0.0239484 0.0901184 -0.0234122 +-0.0265532 0.080945 0.0504296 +-0.0801014 0.0881671 -0.00858727 +-0.0467634 0.0560036 0.0374321 +0.0562967 0.0661688 0.0251012 +-0.0323569 0.124066 -0.00320487 +-0.00891511 0.126415 -0.00600997 +0.0343206 0.094597 -0.0141158 +-0.0876587 0.151372 0.0112162 +-0.0723621 0.114661 0.051285 +-0.033385 0.126374 0.00317306 +-0.0465636 0.146777 -0.00183655 +-0.0086601 0.174145 -0.0268323 +0.0224333 0.0422246 0.0409441 +-0.0723219 0.171178 -0.0314543 +-0.0633454 0.159973 -0.0185957 +-0.0741825 0.156237 0.0158024 +0.0283215 0.117455 0.0287048 +-0.0518625 0.050332 0.0226347 +-0.0345112 0.112532 0.034973 +0.0102504 0.0766955 -0.0323547 +-0.0628937 0.146875 -0.0135938 +-0.0913593 0.126907 0.0414668 +-0.0755221 0.11896 0.0528247 +-0.0186351 0.0933648 0.0534492 +-0.00679579 0.0826768 -0.0377354 +0.00822704 0.0782053 -0.033734 +-0.0942744 0.126919 0.0202522 +-0.0462848 0.131856 0.0204922 +-0.05065 0.0706021 0.0388719 +-0.00522459 0.0384215 0.0122026 +-0.0524927 0.0987339 0.0429361 +-0.0388306 0.112851 -0.0174267 +-0.0268641 0.101582 -0.02361 +-0.0846396 0.153647 0.0136585 +0.0166715 0.0353808 -0.0156588 +-0.0553627 0.139574 0.0304759 +-0.0257886 0.0768981 -0.036857 +-0.0402218 0.0342366 0.0285657 +-0.045101 0.156152 -0.00816042 +-0.0348248 0.0473223 0.0413292 +0.0145592 0.0672414 0.0526521 +-0.0436275 0.0548777 -0.0111987 +-0.0248971 0.163359 -0.0156802 +-0.0449755 0.115277 -0.0159431 +-0.0492995 0.0345621 0.0403913 +-0.0257365 0.0348667 0.0503471 +-0.0754593 0.159053 -0.00907047 +-0.0632614 0.0601538 0.00426714 +-0.0265686 0.0382637 0.0296453 +-0.0355718 0.165308 -0.0024565 +-0.0727498 0.180616 -0.0549771 +-0.0381364 0.171203 -0.0118442 +0.0153228 0.0362397 0.00366285 +-0.0383106 0.0336688 0.00433881 +-0.0125102 0.0897843 0.0566766 +-0.0484982 0.0890084 0.0450201 +-0.0889791 0.0915153 0.00944503 +-0.0511466 0.124736 -0.0077758 +-0.00758688 0.0376797 -0.0254717 +-0.0509981 0.147813 0.0138388 +-0.0147745 0.0382944 0.014 +-0.0305049 0.0617476 0.0379767 +-0.0109155 0.0356188 0.0494667 +-0.0703667 0.142544 -0.0104932 +-0.0424925 0.0902452 0.0426486 +0.0099296 0.113714 0.0390911 +0.0145599 0.088488 -0.0297413 +-0.00249512 0.122376 0.0359373 +-0.0216559 0.0972103 0.0449705 +-0.0717874 0.0850294 -0.0163139 +0.0281202 0.0348895 0.0148787 +-0.0582075 0.154657 0.0258383 +0.0103893 0.0434318 -0.0247637 +0.0283214 0.115107 0.0315696 +-0.0408808 0.115001 -0.0156637 +-0.0569818 0.0548922 0.00263009 +-0.0347008 0.0666358 -0.0153327 +-0.0518449 0.146252 0.0164181 +-0.0388328 0.0943088 -0.0230504 +-0.0315145 0.0788556 0.0411289 +0.0268942 0.0988154 -0.0185978 +-0.0875561 0.0968363 0.00343541 +0.0426825 0.0805137 0.0283126 +-0.0683872 0.0690317 0.0328821 +-0.0609319 0.0343399 0.0363539 +-0.0258016 0.0867079 -0.0364604 +-0.0891389 0.120288 0.0465529 +-0.062692 0.155999 0.0140721 +0.0223974 0.0473356 -0.0199928 +-0.0616833 0.0676348 -0.0109359 +-0.0752375 0.0864841 -0.0145142 +0.014283 0.0681091 -0.0306905 +-0.0603219 0.0470192 0.0356706 +-0.015495 0.104397 0.0428489 +-0.0698499 0.0994423 -0.0150141 +-0.0293842 0.08757 0.0444817 +-0.00548831 0.112771 0.0416249 +-0.0120723 0.0353434 0.0494553 +0.0118631 0.0894057 -0.0307263 +0.0362901 0.0769906 -0.0138255 +-0.0372663 0.033541 -0.0229762 +0.0110129 0.0846936 0.0546683 +-0.0563673 0.0575771 -0.00141956 +0.0162242 0.0835192 -0.0290783 +-0.0466776 0.13337 0.0173732 +0.0116668 0.0548951 0.0518589 +-0.0175019 0.0758159 0.0556202 +-0.0865692 0.133541 0.00131146 +-0.0366797 0.0636525 -0.0138021 +-0.074087 0.0734714 0.0331119 +-0.0762512 0.156264 -0.00677505 +-0.0414995 0.168206 0.00296291 +0.0023065 0.128418 0.0277808 +-0.0141822 0.0378114 0.0510973 +-0.0674332 0.127053 0.0499702 +-0.0482072 0.0335431 -0.012174 +-0.072499 0.117558 0.0529308 +-0.0281279 0.03862 -0.0128123 +-0.0616129 0.149191 -0.00221638 +0.0436181 0.0416961 0.0210317 +-0.0758657 0.097813 -0.01246 +-0.0818672 0.120683 -0.00433302 +0.00940058 0.0342529 -0.0182643 +-0.018805 0.0625267 0.0503254 +-0.053876 0.126919 0.0361236 +-0.0884983 0.0941957 0.00744581 +-0.0165005 0.120964 0.0336371 +0.0433486 0.0519969 -0.00665823 +-0.0624811 0.149792 0.0367836 +-0.0615025 0.16984 -0.0615386 +-0.0364388 0.0352264 0.0443258 +0.0340769 0.0556934 -0.0107486 +-0.00261634 0.0450445 -0.0274328 +-0.0328486 0.0986298 -0.0228073 +0.0198481 0.0795335 0.0516115 +-0.0599778 0.148254 0.0362061 +-0.00849422 0.0674811 0.0555845 +-0.0530196 0.144246 -0.000696127 +-0.0836424 0.0924862 -0.00555232 +-0.0691184 0.165207 -0.0519806 +-0.0305063 0.111166 0.0367005 +-0.0447319 0.125394 0.0226968 +-0.0165708 0.056922 0.0510974 +-0.0568794 0.0548721 0.000601057 +-0.0355126 0.10012 0.0421792 +-0.00149054 0.131258 0.0163007 +-0.0814469 0.0761204 0.000521161 +-0.0700369 0.0765697 0.0383694 +-0.0791449 0.166643 -0.0339646 +0.0151117 0.0434234 0.0444141 +-0.0568399 0.0344097 0.0371692 +-0.0180623 0.177182 -0.017491 +0.0492456 0.0728121 0.0176064 +-0.0178752 0.105871 -0.0225888 +0.00334696 0.0342028 0.0159318 +0.0153617 0.0344714 0.021761 +-0.0945397 0.121475 0.0202819 +-0.073516 0.18065 -0.0535934 +-0.0934071 0.117385 0.0163015 +-0.0631359 0.0699525 0.0366992 +-0.0252161 0.0550594 0.0400126 +-0.00605897 0.125119 0.0321155 +-0.0360017 0.17408 -0.0118959 +-0.00638198 0.124385 -0.00985914 +-0.0145975 0.0378025 -0.0168233 +0.00417447 0.127894 0.028461 +-0.0410286 0.0345047 0.0334549 +0.0292997 0.0538256 -0.0177694 +0.0372061 0.0980869 0.0328651 +-0.0745356 0.104026 0.0368301 +-0.00436707 0.0386778 0.0266309 +0.0189949 0.0449386 0.0430002 +0.00529011 0.0668325 -0.0327227 +0.00166319 0.130955 0.0203219 +-0.0905947 0.115833 0.0426569 +0.00338984 0.116722 -0.0177517 +0.0203176 0.126182 0.0214303 +-0.0598293 0.139488 -0.00569497 +0.0142784 0.11622 -0.015243 +0.0231289 0.0835821 0.0493611 +0.0515475 0.0540038 0.0286923 +-0.0317664 0.058161 -0.0143983 +-0.0397537 0.0782783 -0.0191449 +0.012627 0.12184 0.0342326 +-0.0823735 0.148711 0.0361489 +-0.012301 0.110982 -0.0195491 +-0.0883046 0.122998 0.0470686 +-0.0315077 0.113893 0.0345441 +-0.0888952 0.137894 0.0271916 +-0.0610259 0.126912 0.0416133 +-0.0475344 0.05323 0.0369443 +-0.00961348 0.0434416 -0.0262361 +-0.0541404 0.124102 0.0375109 +0.0509994 0.044648 0.0132154 +0.0303038 0.118886 0.0223059 +-0.0596345 0.0336285 0.0108415 +-0.0196267 0.0450293 -0.0277098 +-0.0247099 0.0381195 0.00851258 +-0.0774982 0.133088 0.0521596 +0.0276359 0.0629152 -0.0215123 +0.0535119 0.0717543 0.00602975 +-0.0334971 0.0831472 0.0419572 +-0.0596476 0.14187 -0.00422882 +-0.0924522 0.125595 0.0392516 +-0.068714 0.143769 -0.0144235 +-0.0468988 0.126761 -0.00595632 +-0.0303571 0.0537911 -0.0173707 +-0.0709316 0.147597 -0.0300096 +-0.0514754 0.115278 0.0338114 +0.0190263 0.120653 0.0329746 +-0.0340031 0.1089 -0.0192874 +-0.0335001 0.116617 0.0321346 +-0.0671562 0.0724925 0.0371747 +-0.0746759 0.152711 -0.0238933 +-0.0590669 0.120714 -0.00943474 +0.00548706 0.108567 0.0416722 +-0.0114996 0.101652 0.0440245 +-0.0649779 0.141437 -0.00794337 +0.0112608 0.130411 0.00668952 +0.0436616 0.0987354 0.0121603 +-0.0558948 0.101262 -0.0199275 +-0.0309036 0.0436875 0.0502489 +0.0142962 0.0652331 -0.0300484 +0.000574283 0.0347216 0.0149023 +-0.00623443 0.0389648 -0.00688285 +-0.0810472 0.147398 0.0390836 +-0.0491606 0.0375682 0.0458781 +-0.055978 0.0534457 0.00767233 +-0.0685375 0.17487 -0.0458569 +0.0289287 0.100617 -0.0165368 +-0.0709835 0.0353942 0.00988845 +0.0337836 0.0754424 0.0400679 +0.041497 0.0527902 0.0324777 +-0.0204109 0.178661 -0.0155986 +-0.0623894 0.149097 -0.0105741 +-0.0644192 0.16051 -0.0170316 +-0.0350535 0.0346922 0.0433273 +-0.0740398 0.145796 -0.011857 +0.0214237 0.0444841 -0.0187153 +-0.0570526 0.113331 -0.0158151 +0.0134717 0.127798 0.0260714 +0.0324011 0.0446474 -0.00561054 +0.00231866 0.0568936 -0.0320023 +-0.0273763 0.112504 -0.0170987 +-0.0224223 0.072452 0.0507888 +-0.0614531 0.154118 0.0305097 +-0.0222065 0.179998 -0.0209469 +0.00315207 0.102056 -0.0221009 +0.0413778 0.0561233 -0.00592276 +0.037882 0.105959 0.026802 +-0.0607248 0.0722644 -0.016058 +0.00061382 0.126415 -0.00611002 +0.0592992 0.0566775 0.0181738 +0.0474969 0.0638142 0.0292952 +-0.0321069 0.162239 -0.0144989 +-0.0520198 0.147215 -0.00210798 +-0.0819286 0.0748755 0.0145293 +-0.0333602 0.0339348 0.0195439 +-0.0555018 0.0987713 0.0432834 +-0.0630837 0.164691 -0.0325918 +-0.0473982 0.0343754 -0.0164682 +-0.0807821 0.0980376 0.0332837 +-0.0645109 0.0370591 -0.00764757 +-0.085403 0.141865 0.00516647 +0.0420715 0.0859357 0.0292923 +0.0391529 0.107674 0.00402907 +0.024552 0.110059 0.0374287 +-0.0631521 0.0360725 0.0429133 +-0.0619885 0.156033 0.0186659 +-0.024223 0.17569 -0.0123366 +-0.0138299 0.0392302 0.0367944 +-0.0306217 0.126038 0.0115365 +-0.0714938 0.120397 0.053531 +-0.0869305 0.151358 0.010227 +-0.0788893 0.125151 -0.00625598 +-0.0447778 0.0409599 -0.0173005 +-0.09234 0.131039 0.0252374 +0.0321511 0.0724311 -0.0187615 +-0.0735819 0.0777026 -0.0122023 +-0.0678037 0.166983 -0.024036 +-0.0897153 0.135171 0.0332079 +-0.0447805 0.0840976 -0.0212945 +0.0371007 0.10968 0.00116733 +0.0112368 0.0836448 -0.0310335 +-0.036484 0.0505609 0.038833 +-0.0118972 0.116803 -0.015741 +-0.0346708 0.0621866 -0.0131726 +-0.0397664 0.0812015 -0.0202928 +-0.069532 0.172114 -0.0375728 +0.00626682 0.131047 0.00486423 +-0.0590022 0.0579904 0.014414 +-0.00972298 0.0642282 -0.0359259 +-0.0269413 0.181454 -0.0140289 +0.033222 0.0842418 -0.0188996 +0.00639168 0.0433788 -0.024537 +0.00926262 0.129557 0.000393265 +-0.00751646 0.0732149 0.0579299 +-0.0513203 0.142869 0.00077197 +-0.0288553 0.0385536 -0.0110371 +0.0555265 0.0728462 0.0170262 +-0.085954 0.146023 0.00719275 +-0.0371011 0.0461641 -0.0234326 +0.0579592 0.0537863 0.0201793 +0.0104003 0.0418913 -0.0239147 +-0.0396188 0.0505923 -0.0110041 +0.0326207 0.0944486 -0.0159568 +-0.0170933 0.0554767 0.0502631 +-0.0891859 0.139294 0.0371595 +-0.0637097 0.166224 -0.0345967 +0.00422867 0.0824562 -0.0341922 +-0.0594261 0.151258 -0.000475846 +-0.0552814 0.0464664 0.0256754 +-0.0424851 0.0776249 0.0430145 +0.0184693 0.111176 0.038468 +-0.0294978 0.0574079 0.0367222 +-0.0435452 0.0405422 0.0435069 +-0.0600989 0.0598417 0.00157193 +0.0526979 0.0525681 0.0268245 +-0.0625031 0.0602955 0.00246046 +-0.0675133 0.108346 0.0377589 +-0.00349512 0.111424 0.0424267 +-0.00549779 0.110034 0.0429298 +0.0164758 0.0713296 0.0519403 +0.0458506 0.0876137 0.00718075 +0.0244747 0.0400424 -0.00510986 +0.00547063 0.131454 0.017409 +-0.0728779 0.117943 -0.00788041 +-0.0142717 0.17714 -0.027303 +-0.0257193 0.0617764 -0.0314442 +-0.050991 0.0504175 0.03464 +0.00152343 0.0759482 0.0573355 +-0.0304944 0.064586 0.038393 +0.016253 0.0794879 0.0534651 +-0.00764651 0.0496471 -0.0308946 +-0.077844 0.0743656 -0.00558198 +-0.0326464 0.0563525 -0.0113988 +-0.061813 0.175696 -0.0586065 +-0.0681691 0.0682156 0.031879 +-0.0493845 0.0657885 0.0368321 +-0.019309 0.0362824 -0.0277788 +-0.063712 0.167032 -0.0383216 +-0.0379003 0.123041 0.0266516 +-0.000679533 0.0554388 -0.0315999 +-0.0886752 0.135106 0.0413889 +0.011146 0.128332 0.0266558 +-0.0740639 0.178692 -0.0478641 +-0.0809318 0.142082 0.0447817 +-0.00975763 0.0742329 -0.0379217 +-0.0600964 0.0334795 0.00370066 +-0.0566436 0.0657735 0.0346839 +-0.0767139 0.070678 0.0244626 +-0.0810351 0.0787684 -0.0035164 +0.0405001 0.076619 0.0321646 +-0.0283979 0.155793 -0.00852382 +-0.0535904 0.0617699 -0.00886774 +-0.0149347 0.127911 0.00262222 +-0.0197362 0.181499 -0.0230211 +-0.0781409 0.0718256 0.0231698 +-0.0337588 0.121858 0.0267132 +-0.0741051 0.0686193 0.025039 +0.0417534 0.0788713 -0.00674491 +-0.0515024 0.0340065 0.0263967 +-0.0763933 0.111249 -0.00565203 +-0.0538034 0.0898608 -0.0222645 +-0.000575856 0.0980296 -0.0278345 +0.0581094 0.0704417 0.00814168 +-0.0891434 0.137902 0.0291936 +0.00340212 0.0390598 -0.024445 +-0.0620333 0.153738 -0.0275809 +-0.0177087 0.0584461 -0.0348025 +-0.0823897 0.104663 0.0290404 +-0.0194981 0.10024 0.044034 +0.0242883 0.0705502 -0.0254969 +-0.0899225 0.133822 0.0382154 +-0.0195055 0.108574 0.0413935 +-0.0446392 0.0548635 -0.0110876 +0.00035867 0.048192 -0.0299591 +0.0364284 0.0413843 -0.00274773 +0.0187875 0.0351105 0.0327558 +-0.0568852 0.111179 -0.0170834 +0.0118445 0.0806629 0.0540991 +-0.0687285 0.155709 0.0264626 +0.00655625 0.109588 0.0412446 +0.00917706 0.113608 -0.0184169 +-0.0613933 0.155777 0.0101812 +-0.0314952 0.0903684 0.0441958 +0.0124021 0.0448701 -0.0249804 +-0.0241038 0.0865955 0.0534593 +-0.0631641 0.149054 -0.0215452 +-0.0401934 0.0365351 0.0429119 +-0.0898981 0.135185 0.0362087 +-0.0526397 0.0618282 -0.00966488 +-0.0844214 0.0777776 0.012517 +0.0222568 0.0748707 -0.0265095 +-0.0150366 0.0384845 0.00106724 +0.0180702 0.0879847 -0.0272411 +-0.0142291 0.127243 0.024765 +0.0382486 0.104643 0.0273123 +-0.0748494 0.0964384 -0.0137204 +-0.0808743 0.136754 0.0491531 +-0.0568962 0.0970004 -0.0209687 +-0.0803034 0.072641 0.00422068 +-0.0584156 0.0459799 0.0422363 +-0.0579142 0.114001 -0.0151155 +-0.0561079 0.0571065 0.0121919 +0.00037651 0.0978532 -0.0276151 +-0.0336642 0.082217 -0.0255373 +0.0457702 0.0735931 0.00320764 +-0.056498 0.07472 0.0419593 +0.00305684 0.124987 -0.00863513 +-0.0272404 0.0877435 0.0480762 +-0.040496 0.0577326 0.0402811 +-0.0202415 0.0392282 0.0390567 +-0.020926 0.0334921 -0.0253378 +-0.0690953 0.0751628 0.0379926 +-0.0520047 0.0344961 0.0416004 +-0.0141843 0.128965 0.0174774 +0.0288353 0.0368345 0.0223773 +-0.0444076 0.0394861 -0.0222996 +-0.0838483 0.119157 -0.00284212 +-0.0034971 0.0732704 0.0586485 +-0.03681 0.0886191 -0.0239226 +-0.0669297 0.105269 -0.0144963 +-0.07603 0.0941366 0.0385416 +-0.0716625 0.145448 -0.0198949 +-0.0165056 0.0382425 0.0100681 +-0.0909349 0.113307 0.0123445 +-0.0192269 0.0381483 0.0222601 +0.026296 0.0862676 0.0469202 +-0.0118259 0.0386358 0.028745 +-0.0513331 0.0334323 -0.00718543 +-0.0685946 0.0353745 -0.00558788 +-0.0370306 0.151785 -0.00571407 +-0.0891386 0.129503 0.00423129 +-0.0447856 0.0348265 0.00740272 +0.040097 0.105566 0.00218117 +0.00862183 0.120558 -0.0139068 +-0.0679053 0.171131 -0.036968 +0.0164071 0.0345184 0.0219352 +-0.0501179 0.137029 0.00241503 +0.0125996 0.0459414 0.0443461 +-0.0654928 0.0818627 0.0433416 +-0.0215596 0.0891328 -0.036783 +-0.0685096 0.147001 0.0412847 +0.0400896 0.0702922 -0.00980716 +-0.0291528 0.0378835 0.0276599 +-0.0624944 0.145991 -0.00758108 +-0.029375 0.0621337 -0.0244169 +-0.0655919 0.151202 -0.0366034 +-0.064581 0.128354 0.0453237 +-0.0626195 0.153328 0.0013944 +-0.0863817 0.148632 0.0316852 +-0.0153553 0.112218 -0.0188504 +-0.0602045 0.0441634 0.0266895 +-0.0204995 0.111306 0.0398343 +-0.0454802 0.112265 -0.0167776 +0.0212764 0.0693138 -0.0277613 +-0.0458225 0.146281 0.00549558 +-0.065521 0.0335373 -0.00466605 +-0.00710114 0.0339482 -0.0211688 +0.0551094 0.0539301 0.0250409 +-0.0781434 0.0927222 0.0364655 +0.0291436 0.0707502 -0.0218013 +-0.091117 0.143373 0.0231646 +-0.0575628 0.0576989 0.003607 +-0.0745558 0.0684435 0.0233437 +0.000679346 0.0933957 -0.0329817 +0.0136703 0.0446634 0.0441067 +0.0425933 0.0791563 0.0282081 +-0.0098481 0.112657 -0.0193422 +-0.0678577 0.102354 -0.0152646 +-0.0245236 0.0838729 0.0539551 +-0.0522319 0.125489 0.0349878 +-0.0331359 0.168192 -0.0157544 +0.0437182 0.0944809 0.000197915 +-0.0271741 0.161328 -0.0145155 +-0.0635247 0.139599 0.0380296 +-0.0105236 0.0787711 0.0579243 +0.0221704 0.109999 -0.014573 +-0.0626188 0.166275 -0.0435849 +-0.0162218 0.186444 -0.0207352 +-0.00481374 0.128076 -0.00386981 +-0.0761439 0.154623 0.0283179 +-0.00628506 0.0952929 -0.0329709 +-0.0244623 0.0348843 0.0471798 +-0.0764469 0.175411 -0.0430646 +-0.0374817 0.0903202 0.0435434 +0.0448755 0.0917539 0.00218552 +-0.0464937 0.0411703 0.0442462 +0.00738566 0.0463583 -0.0259834 +-0.0269838 0.158131 -0.000540227 +-0.0195125 0.0800523 0.0567242 +0.0535386 0.0505579 0.00123438 +-0.0704829 0.066568 0.025804 +-0.0478545 0.117892 -0.0146818 +-0.0645863 0.144373 -0.0132186 +-0.0619148 0.161553 -0.037594 +-0.0328555 0.100056 -0.0225692 +-0.0605435 0.0660534 0.0336067 +-0.00290962 0.037693 0.0115129 +-0.0101883 0.0876449 -0.0371912 +-0.0625754 0.042738 -0.00542472 +0.00650044 0.0910463 0.0545358 +-0.0756811 0.154032 -0.0169094 +-0.0034723 0.130516 0.00409153 +0.00232953 0.116694 -0.0177181 +-0.0378274 0.0929022 -0.0235348 +-0.02161 0.158057 -0.00899889 +0.0304133 0.0415863 -0.00412062 +-0.0728954 0.176495 -0.0445729 +-0.0420309 0.0335517 -0.0220625 +-0.0187514 0.0906841 0.0550582 +-0.0855548 0.125248 -0.00272359 +-0.0137086 0.0614344 -0.0364468 +-0.020723 0.0597726 -0.0340423 +-0.0708646 0.0384387 0.000437312 +0.0310181 0.112726 0.0309619 +0.0131047 0.129972 0.0173477 +-0.0216432 0.124246 -0.00349177 +-0.0626999 0.0706798 -0.0138683 +-0.0865991 0.0833319 0.0164838 +-0.0644302 0.0384213 0.0160253 +-0.0187164 0.0611476 0.0502898 +-0.0791607 0.170809 -0.0419883 +0.00181256 0.0994772 -0.0233519 +0.0199074 0.11877 -0.0100039 +-0.0361903 0.151017 -0.000604378 +-0.084275 0.0897993 -0.00457099 +-0.0554832 0.0861944 0.0449632 +-0.0623633 0.0458155 0.0336786 +0.034658 0.114539 0.0168181 +-0.0736982 0.167846 -0.0232955 +-0.0181465 0.166773 -0.0192359 +0.0113761 0.0494361 -0.0277541 +-0.0440746 0.154693 -0.007872 +0.0606816 0.0664976 0.015162 +0.044367 0.0575454 -0.00546316 +0.0134639 0.0616949 0.0510096 +0.0400149 0.0829397 -0.0117765 +0.0423451 0.0690926 -0.00378897 +-0.0691689 0.0336248 0.00172074 +0.0582234 0.0593447 0.00320204 +-0.0900566 0.133779 0.0292173 +-0.0381652 0.0336678 -0.0288809 +0.0397017 0.104178 0.024171 +-0.0755036 0.121787 0.0531411 +-0.025634 0.122393 0.025161 +0.058528 0.0565928 0.00617045 +-0.0801768 0.155046 0.0137223 +0.0277963 0.0835666 0.045536 +-0.0628566 0.145948 -0.0105775 +-0.0133824 0.0383808 0.0105781 +-0.049358 0.146268 -0.00147688 +-0.0484712 0.0517504 0.0365675 +-0.0467968 0.0869913 -0.021986 +0.0553821 0.0590684 -0.000816519 +-0.0179551 0.0921164 -0.0358084 +-0.0789524 0.0921836 -0.0106406 +0.0374058 0.0893177 -0.0145297 +-0.032345 0.0473443 -0.0245628 +0.0173629 0.0537245 -0.0278081 +-0.0616059 0.160004 -0.0295877 +-0.0123225 0.124091 -0.00743567 +-0.0401607 0.163674 -0.0120006 +-0.06497 0.154244 -0.00563561 +-0.0510279 0.0336678 0.0250302 +-0.0771941 0.0893363 -0.0125642 +0.0224953 0.109772 0.0381484 +-0.0545656 0.13815 0.0298405 +-0.00171216 0.066944 -0.0344014 +-0.00330066 0.124033 -0.00952648 +-0.0724141 0.159616 -0.0379306 +-0.0128309 0.0869146 -0.0385108 +0.0379635 0.103337 0.0286718 +0.00150556 0.0870476 0.0569313 +0.0339501 0.0683557 -0.0167775 +-0.0296157 0.053701 -0.0213818 +-0.0239053 0.0350134 -0.0198326 +0.00348633 0.110018 0.042298 +-0.00459976 0.0405792 -0.0256485 +0.0313837 0.0352278 0.00968341 +-0.0524893 0.105673 0.0402508 +-0.0334757 0.072353 -0.0224701 +-0.00165204 0.0347369 0.0450897 +-0.0251253 0.179165 -0.0186166 +0.0418909 0.0939077 0.0272858 +-0.0417165 0.069628 -0.0168617 +-0.0751265 0.0670609 0.00488552 +-0.0702901 0.063891 0.0211244 +-0.0777094 0.170825 -0.0439812 +-0.0735195 0.135848 0.0500526 +-0.0690768 0.0739443 0.0372765 +0.0123912 0.116671 -0.0157278 +-0.0504991 0.105636 0.0396146 +0.0194996 0.0489742 0.0420155 +-0.0652338 0.145869 -0.0189253 +0.0183651 0.124757 -0.00246117 +-0.067493 0.105571 0.0389191 +0.00451331 0.0814276 0.0565046 +-0.0126391 0.0466477 -0.0295757 +-0.043534 0.0422491 -0.0203181 +-0.0576807 0.133928 0.0359191 +-0.0847679 0.10454 0.0257763 +-0.0763966 0.0748983 0.0314167 +-0.0163248 0.0390132 0.0346782 +0.0455396 0.083395 0.0201668 +-0.0404951 0.0747761 0.0426102 +0.0326457 0.113685 0.0274718 +-0.0533008 0.118582 -0.0133417 +-0.0548347 0.0518559 -0.00436961 +-0.0444358 0.0344955 0.0309851 +0.0022525 0.0986072 0.0504164 +0.0280941 0.107442 0.0372758 +0.0311382 0.100809 0.0381724 +-0.0608693 0.0982413 -0.018491 +-0.0808258 0.116274 -0.00349703 +-0.00493749 0.124022 0.0339675 +-0.0202041 0.0383371 0.000156328 +0.000176932 0.0881362 -0.0348875 +-0.0122454 0.128019 0.000407111 +-0.0750529 0.0860661 0.0392001 +-0.0200226 0.0403705 0.0532551 +-0.0196618 0.127752 0.0140421 +-0.0544977 0.0747139 0.0418232 +-0.0850765 0.107567 0.00438106 +-0.0759578 0.071995 0.0287387 +-0.0434567 0.155083 0.00724724 +-0.090134 0.132434 0.0362229 +0.022282 0.0706591 -0.0268891 +-0.090924 0.128274 0.0409748 +-0.0889908 0.13778 0.0388031 +-0.0788715 0.122217 -0.0060966 +-0.00443014 0.100204 0.0479984 +0.0327247 0.0646521 0.0402099 +-0.066223 0.15556 -0.0520809 +0.0118954 0.0685639 0.0540604 +-0.0805181 0.12599 0.0525745 +0.0465562 0.0753029 0.0092212 +-0.0743025 0.151276 -0.0308835 +-0.0905476 0.146077 0.0141502 +-0.0715441 0.112225 0.0480665 +-0.0679786 0.137002 -0.008171 +-0.0672001 0.044789 0.00569382 +-0.0714328 0.168025 -0.0480185 +-0.0584837 0.088969 0.0446761 +-0.0444852 0.0411138 0.0436529 +0.0142229 0.0821798 -0.0300828 +0.0137354 0.10206 -0.0220537 +-0.0532836 0.0335112 0.0086601 +-0.046743 0.0767653 -0.0182293 +-0.0653246 0.173014 -0.0475844 +-0.0105123 0.0633015 0.0555068 +-0.0652467 0.122825 0.0496059 +-0.0587837 0.0940397 -0.0203993 +-0.061496 0.107016 0.0394252 +0.032159 0.0404592 0.0270704 +-0.0550412 0.129739 0.0362139 +0.0187645 0.036357 0.00611202 +-0.051625 0.0474378 0.0157122 +-0.0945263 0.121474 0.0192827 +-0.0874631 0.104981 0.0103802 +-0.0444225 0.0587761 0.0392912 +0.00550135 0.107149 0.041587 +-0.0023107 0.0375379 0.0154093 +0.0365396 0.111887 0.0174946 +-0.0667677 0.0809002 -0.0178421 +0.0212994 0.0550028 0.0464604 +-0.00474995 0.0391641 0.0333259 +0.0385436 0.103322 0.0277283 +-0.0350927 0.168167 -0.014918 +-0.0381943 0.124735 0.0235454 +-0.0436117 0.125739 0.0201433 +-0.0122465 0.124398 0.0313659 +-0.018196 0.038272 0.00607299 +-0.0454731 0.0675709 0.040115 +0.0397094 0.0887389 0.0329441 +-0.0612601 0.0653881 0.0322823 +0.0358388 0.063303 0.0376893 +-0.0894207 0.0969969 0.0174102 +0.0247051 0.054807 -0.022754 +-0.0362363 0.0345287 0.0379647 +-0.0134852 0.104433 0.0435318 +-0.0390753 0.0353444 0.00990175 +-0.032893 0.0386199 -0.0119052 +-0.066881 0.172737 -0.0437921 +-0.0844296 0.0777425 0.00651672 +0.0102401 0.13009 0.0220074 +-0.0184847 0.091067 0.0550019 +-0.048793 0.155022 0.0100543 +-0.042488 0.1112 0.0368617 +-0.00484603 0.0989761 -0.0268273 +-0.0667655 0.079447 -0.0174677 +-0.0520123 0.033434 -0.00549431 +-0.0309502 0.0376665 0.0292806 +0.0125353 0.118934 -0.0141702 +0.0393762 0.0393721 0.0023232 +-0.0154839 0.0388074 -0.00858919 +-0.027433 0.108265 -0.0206521 +-0.0335566 0.11282 -0.0174155 +-0.0428158 0.126503 0.0190139 +0.0359007 0.0374161 0.00496434 +0.030827 0.118499 0.003976 +0.0482689 0.0616107 -0.00376704 +0.0172995 0.0637271 -0.0287659 +0.0352999 0.0727523 0.0387329 +0.0325099 0.0439072 0.0294151 +0.0434928 0.0597185 0.030951 +-0.0849411 0.14333 0.0402714 +-0.0419573 0.15213 0.00584722 +-0.0478585 0.101383 -0.0215741 +0.0158763 0.121559 0.0327664 +0.0196134 0.0505877 0.0439573 +-0.0408143 0.0899706 -0.0230035 +0.0179499 0.0360095 0.0408071 +-0.0491945 0.137084 0.0184007 +0.0422067 0.0898824 0.0277847 +-0.0568073 0.122 -0.00880521 +-0.0535468 0.0500774 -0.00609453 +-0.0791017 0.171279 -0.0410322 +-0.0812381 0.0774347 -0.00249764 +0.00451011 0.08973 0.0555486 +0.0360129 0.0947297 -0.0122566 +-0.0267986 0.0839175 -0.0367186 +-0.0336466 0.125738 0.0192922 +-0.0645061 0.0384674 -0.00726163 +-0.069197 0.145134 -0.0204031 +-0.0453102 0.150665 0.00801555 +-0.016121 0.0347931 0.0455365 +0.0372267 0.0827114 -0.0157704 +-0.0586519 0.047167 0.0396282 +-0.0723413 0.0352299 0.00501169 +-0.00850771 0.0457646 0.047699 +-0.0361402 0.0481769 -0.0171107 +-0.0694918 0.0986232 0.041191 +-0.0145821 0.0365575 -0.0175497 +-0.0152331 0.178626 -0.0269991 +-0.0375015 0.0761535 0.0421853 +0.0230994 0.0700125 0.0474321 +-0.0769031 0.149462 0.0386995 +-0.0160344 0.0394989 0.0396851 +-0.077278 0.155614 0.0132673 +-0.0461472 0.0695191 0.0407559 +0.013766 0.105146 -0.0193832 +-0.00180961 0.102694 -0.0227875 +-0.0404787 0.102851 0.0403978 +-0.0256602 0.0491814 -0.0262646 +-0.0640267 0.155773 0.0106957 +-0.0188798 0.0381919 0.018679 +0.0251044 0.111527 -0.0122017 +-0.00771141 0.130468 0.0154714 +-0.0143198 0.128437 0.0203415 +0.000556364 0.0427979 0.0462128 +-0.0107039 0.129221 0.0216334 +-0.0755898 0.0796389 -0.010614 +-0.0618567 0.156837 -0.0325918 +-0.0516893 0.0678068 -0.0129959 +-0.0631142 0.178334 -0.0583576 +-0.0386855 0.0651385 -0.0142461 +-0.0594798 0.0790546 0.0431577 +-0.029726 0.121561 0.0251755 +-0.0328596 0.153633 -0.000344229 +0.0339626 0.0356317 0.0117064 +-0.0718527 0.158151 -0.00382487 +-0.0194857 0.0486564 0.0485018 +0.0319575 0.0889685 0.042819 +0.00933955 0.0624337 -0.0310444 +-0.0172265 0.113695 -0.0184196 +-0.0866231 0.0846922 0.0194779 +-0.0663134 0.0608279 0.00678018 +-0.0718125 0.0922256 -0.0157107 +0.0550352 0.064867 0.0267865 +-0.0446824 0.0651214 -0.0145177 +-0.066499 0.0958724 0.0422345 +-0.0484771 0.135525 0.0064169 +0.0419641 0.0872658 0.0291034 +-0.0144336 0.120974 -0.0101151 +0.00537913 0.115468 -0.0184153 +-0.0169313 0.0940904 -0.0338108 +-0.0311219 0.087675 -0.0275557 +-0.0733475 0.129801 0.0519745 +-0.0628563 0.0432731 0.0396846 +-0.0181419 0.159077 -0.00932452 +-0.0244219 0.0752703 0.0498831 +0.0278638 0.0367181 0.000104301 +0.0464062 0.0525822 0.0317783 +-0.0352134 0.127051 0.0157486 +-0.037493 0.0605801 0.0408152 +0.0435542 0.0709351 0.0259153 +-0.061811 0.0896079 -0.0190442 +-0.0487502 0.167013 -0.00197199 +-0.011981 0.180127 -0.0244833 +-0.0273118 0.0346998 0.0432305 +0.0260624 0.113339 -0.0101501 +0.00139388 0.0977439 -0.0275242 +0.0217437 0.0348491 0.000619009 +-0.0598385 0.0385019 0.0199857 +-0.0742583 0.12978 0.0523998 +0.0125017 0.103142 0.0463418 +0.0222613 0.0768462 0.049813 +0.0226846 0.125635 0.0109073 +-0.0664848 0.153437 0.0331838 +-0.0635064 0.100118 0.0422551 +-0.0884181 0.136485 0.0410708 +-0.0821317 0.151156 0.0323844 +-0.035019 0.035354 0.0462574 +-0.0445836 0.049099 -0.0105442 +-0.0913513 0.126793 0.00727091 +-0.00465552 0.0526099 -0.031899 +-0.0536395 0.0361733 0.0466553 +-0.0624928 0.0775409 0.0419345 +-0.0454844 0.1652 0.00481603 +-0.0176555 0.10171 -0.0237622 +-0.0517386 0.139928 0.000994108 +-0.0894422 0.0969694 0.0114146 +0.0282036 0.106111 0.0374341 +-0.0930784 0.128223 0.0132485 +-0.0710378 0.113905 0.0504272 +-0.0589666 0.06768 0.0360494 +0.0249541 0.12014 0.0288767 +-0.0467094 0.0345808 0.0339444 +-0.0627411 0.0766785 -0.0179436 +-0.00548466 0.051944 0.0528973 +-0.0355056 0.0705073 0.0417804 +0.00377856 0.127353 -0.00517835 +-0.0595895 0.0659394 0.0339087 +-0.0639025 0.0344657 0.0356117 +-0.0549717 0.132532 0.0345672 +-0.0762259 0.0790445 0.0349679 +-0.0259103 0.0721759 0.0444214 +0.0315716 0.117859 0.00423829 +-0.0696582 0.0642657 0.000568637 +-0.0882731 0.143189 0.0351319 +-0.031681 0.0679763 -0.0234472 +-0.0699144 0.1253 -0.00883057 +0.0435982 0.0888699 0.0251665 +-0.0914617 0.144737 0.0211556 +-0.0205009 0.126788 0.0181341 +0.0311284 0.103423 0.0364018 +-0.0196184 0.043638 -0.0281382 +-0.0192518 0.185941 -0.0210687 +0.0556563 0.0725898 0.00964459 +-0.0899954 0.135014 0.00922069 +-0.0658394 0.170333 -0.0405107 +-0.0487066 0.064243 0.0362896 +0.0115006 0.100446 0.0479384 +-0.0479295 0.132887 0.00374503 +0.0216229 0.0700379 0.048827 +0.0151599 0.050478 0.0463014 +0.00510611 0.0386758 0.0457599 +-0.0284578 0.0789297 -0.0355663 +-0.081069 0.152209 0.0312004 +-0.0814521 0.13302 0.0511119 +-0.0115065 0.0517326 0.051159 +0.0190773 0.108184 -0.0165978 +-0.0879813 0.0860844 0.0054873 +-0.0565924 0.0442297 -0.00693458 +-0.0358918 0.166781 -0.00116722 +0.0263229 0.122689 0.0193841 +-0.0305096 0.0608404 -0.0204127 +-0.0790435 0.0718734 0.00353541 +-0.0264818 0.101588 0.0434387 +0.0224815 0.0892515 0.0484736 +-0.07435 0.0711851 0.0297739 +-0.0366402 0.0563002 -0.0110085 +-0.0858069 0.133905 0.0470456 +-0.0347686 0.16678 -0.00304399 +-0.0318926 0.0385829 -0.0116716 +0.0173027 0.0680054 -0.0293377 +-0.084368 0.114299 0.000284663 +-0.0761089 0.149998 -0.0108814 +0.0437289 0.0987183 0.00617361 +0.0134057 0.0374127 -0.0219366 +0.000807934 0.124791 -0.00838237 +-0.0406768 0.0621783 -0.0128097 +-0.0926608 0.121474 0.0282925 +-0.0595443 0.155728 0.018094 +-0.0646509 0.168222 -0.0372156 +-0.0197896 0.127727 0.0110836 +0.0112619 0.069597 -0.0315203 +-0.0784667 0.141403 0.0468168 +-0.0881381 0.0996585 0.0223676 +-0.0495985 0.048927 -0.00879829 +-0.0567267 0.15478 0.0220083 +-0.0273659 0.119585 -0.010507 +0.0191093 0.0375318 0.0414884 +-0.054786 0.147744 0.027387 +0.0185111 0.114004 0.0370685 +-0.0106027 0.171925 -0.0271985 +-0.0795217 0.0748572 0.0255446 +0.0527001 0.0462105 0.0152086 +0.0191089 0.0889764 -0.0262512 +-0.0917278 0.114662 0.0113396 +-0.0311696 0.0749025 -0.031542 +0.0103976 0.0505032 0.04997 +0.00150167 0.0504398 0.0522275 +-0.00913054 0.0987984 -0.026694 +-0.0607072 0.0707896 -0.0151427 +-0.0314435 0.033488 -0.0292746 +0.0322402 0.0842577 -0.0191914 +-0.0617587 0.160001 -0.0265888 +0.0366758 0.0659888 0.0371374 +-0.0410386 0.153314 -0.00775366 +-0.0916156 0.146104 0.0201482 +-0.008275 0.130081 0.0196055 +-0.0716229 0.0395313 0.00756641 +-0.0555501 0.0448059 0.0154665 +-0.0519883 0.0545681 0.0276385 +-0.063796 0.145383 -0.0141799 +-0.0204903 0.107154 0.041938 +-0.00950118 0.06052 0.0554819 +-0.0297859 0.073336 -0.0325546 +0.0225502 0.0873848 -0.0245875 +-0.0658345 0.0367656 0.0273328 +-0.0335698 0.0354174 0.0482024 +-0.0826039 0.0829175 -0.00455606 +0.0133284 0.055284 -0.0292269 +-0.000932932 0.0363158 0.0167895 +0.0190541 0.116198 -0.0132311 +-0.000494259 0.0911454 0.0560111 +0.0112951 0.130595 0.0166808 +-0.0164761 0.0673645 0.0539812 +-0.0180225 0.0385494 -0.00514634 +-0.0610891 0.0339525 0.017372 +-0.0707478 0.147309 -0.0278341 +-0.0189873 0.180146 -0.0170482 +0.0237757 0.0343382 0.00896337 +-0.00265737 0.0899953 -0.0354905 +-0.0718661 0.100809 -0.0137558 +-0.00649817 0.0939276 0.0556503 +-0.0246455 0.126418 0.012252 +-0.0157508 0.070024 -0.0384074 +0.0256059 0.12104 -0.000826914 +0.00250363 0.0489881 0.0513443 +-0.029644 0.125848 0.0118936 +-0.024804 0.0737635 0.0475256 +-0.0672658 0.131206 0.0466969 +-0.0817178 0.0953366 0.0328835 +-0.0286351 0.0918211 -0.0275955 +0.0414472 0.0971985 0.0261597 +-0.0680972 0.121444 0.0525081 +-0.0683202 0.166619 -0.0540065 +-0.0375072 0.0775843 0.0424046 +-0.0143913 0.0384112 0.00490303 +-0.0518947 0.109852 -0.0185479 +0.0338477 0.0711662 -0.016803 +-0.0450894 0.154663 -0.00752455 +-0.0564919 0.0875695 0.0445907 +0.0391967 0.0726247 0.033788 +0.0574073 0.0717824 0.0103168 +-0.0237163 0.0380022 0.0196686 +0.0120538 0.0907862 -0.0301745 +-0.0669793 0.134061 -0.00834965 +-0.00947746 0.116894 0.0392479 +-0.0328734 0.0680853 -0.0194707 +0.030263 0.116206 0.0279976 +-0.0348513 0.0345425 0.0400019 +-0.0532018 0.0733522 0.0412342 +-0.0577592 0.033805 0.0199655 +-0.00439966 0.119978 -0.0131705 +0.0162591 0.0434903 0.0442636 +-0.0567225 0.0423764 0.0206991 +0.00325132 0.12142 -0.0127844 +0.0145581 0.125506 0.0293407 +0.00448398 0.0989824 0.0487111 +-0.0896848 0.0929338 0.0144339 +-0.04491 0.13036 0.00775303 +-0.048947 0.138616 0.00839947 +-0.0307428 0.0552453 -0.0153798 +-0.0826044 0.1367 0.0480323 +-0.0749507 0.0661289 0.00944516 +-0.00473325 0.069866 -0.0358872 +-0.0167995 0.0347343 0.0471976 +-0.0426342 0.12559 0.0204963 +-0.0444709 0.120321 -0.0132547 +0.010477 0.116818 0.0374755 +-0.0744965 0.123196 0.0533572 +-0.047302 0.16443 0.00497116 +-0.0859996 0.118394 -0.000793117 +-0.0326967 0.0849828 -0.026556 +-0.0843669 0.106153 0.00138874 +0.0167493 0.127305 0.0229819 +0.0223908 0.0489358 -0.0217863 +-0.0762839 0.155844 0.0209052 +-0.0839499 0.0979633 -0.0036111 +-0.0216926 0.126501 0.0176944 +0.0378596 0.0914955 0.035553 +0.0420895 0.102851 0.00717012 +0.0366464 0.103365 0.0302885 +-0.0696779 0.086056 0.0423345 +-0.0340311 0.0339294 0.0212063 +0.0162763 0.0361212 0.00396256 +-0.0426327 0.0338426 -0.00397459 +-0.027617 0.125471 0.0155889 +-0.0937433 0.118772 0.0222988 +-0.0518432 0.133909 0.0302884 +-0.0413643 0.124214 -0.00934406 +-0.0413386 0.121239 -0.0122322 +-0.0396582 0.0336638 0.00768797 +-0.0853564 0.091162 -0.00253932 +0.0179914 0.120614 0.0332262 +-0.0717184 0.0792466 -0.0147262 +0.0215785 0.11262 0.0367657 +0.0236405 0.0366106 0.026972 +-0.07448 0.0662148 0.0164657 +-0.00149557 0.0973426 -0.0290749 +0.0342448 0.0842103 -0.0184253 +0.0045204 0.0661365 0.0560558 +-0.0072649 0.0384115 0.0117959 +0.0362267 0.104294 -0.00842134 +0.0232091 0.0782074 0.0494446 +-0.0204762 0.0786229 0.0556935 +0.0189956 0.125897 0.000310264 +0.0582502 0.0661055 0.0226582 +-0.0884672 0.113635 0.0306037 +-0.0595891 0.155231 0.0238846 +-0.0540479 0.142765 -0.001179 +0.0139994 0.0807368 0.0537041 +-0.0660333 0.155202 -0.00458552 +-0.0371914 0.175481 -0.00856986 +-0.0114786 0.114128 0.0403922 +0.00280587 0.10648 -0.0207933 +-0.061629 0.148291 0.0370712 +-0.0305056 0.115271 0.0335326 +-0.0847456 0.0911272 0.0289858 +0.0294623 0.103445 0.0374919 +-0.0884887 0.122612 0.00129126 +-0.0869453 0.0846809 0.01048 +0.04631 0.0778469 0.00818385 +-0.077491 0.135849 0.0507593 +0.00650523 0.0745046 0.0565842 +-0.0193751 0.0711448 0.0534686 +-0.03164 0.0581442 -0.0153958 +0.00337821 0.0392113 0.0295452 +0.026954 0.116596 0.0310646 +-0.0623115 0.16311 -0.0435951 +0.0154275 0.0350916 0.0411096 +-0.0724818 0.165221 -0.0429802 +-0.0359956 0.151076 -0.00202594 +0.0162209 0.0779008 -0.0293961 +-0.0478366 0.133877 0.0213554 +0.0569921 0.0661536 0.0243514 +-0.0318346 0.0915622 -0.0244444 +-0.0864107 0.0819973 0.0174801 +-0.0497993 0.0677848 0.0379447 +-0.0671663 0.164687 -0.0194859 +-0.00868026 0.111843 -0.0204858 +-0.0195177 0.0933631 0.0529187 +-0.0535918 0.114983 -0.0155816 +-0.068804 0.18096 -0.0579804 +-0.0846698 0.148755 0.00515607 +-0.0808035 0.0868637 -0.00756861 +-0.0309282 0.156627 0.000764301 +-0.0561456 0.0642166 0.0326189 +-0.0864523 0.0899653 0.00147962 +-0.0802598 0.0734072 0.0195467 +-0.025101 0.114847 -0.0155729 +-0.0348703 0.102876 -0.0215726 +0.00151752 0.0547965 0.0538164 +-0.0216758 0.0969718 -0.024798 +0.0367496 0.0931371 -0.012555 +0.00330684 0.0583228 -0.0321215 +-0.0697412 0.154452 0.0305168 +-0.0618525 0.0343021 0.022204 +-0.00886294 0.171168 -0.0237423 +-0.0216854 0.168305 -0.0122385 +-0.0435207 0.0562403 0.0394546 +-0.0620233 0.159983 -0.0376027 +-0.0751309 0.154085 -0.0179327 +-0.0480694 0.153165 -0.00566954 +0.0283556 0.0605487 0.0426528 +0.0115864 0.0348612 0.0423222 +-0.064559 0.11407 0.0417666 +0.0210547 0.0358177 -0.00168489 +-0.042575 0.0491291 -0.011035 +-0.0742409 0.113562 0.0499634 +-0.0659446 0.146784 0.0398667 +-0.0670071 0.172276 -0.0580562 +0.0251821 0.0357118 0.0226481 +-0.0129957 0.0883892 -0.0379783 +0.01814 0.0713245 0.0508426 +0.0161851 0.0347246 0.0253316 +-0.0234485 0.122824 -0.00599554 +0.00849456 0.0412846 0.0453159 +-0.0253871 0.124202 0.0208009 +0.00860136 0.121512 -0.0129363 +-0.0764996 0.128859 0.0532215 +-0.0637886 0.083851 -0.0191517 +-0.073438 0.175304 -0.0418354 +-0.0464485 0.132668 0.0189406 +-0.018505 0.112714 0.0394706 +-0.0579749 0.117711 -0.0123561 +-0.0241311 0.0384069 -0.0174035 +0.0286891 0.119649 0.00175522 +0.0135044 0.118213 0.0361594 +0.00748569 0.0942514 -0.0297902 +0.0223281 0.111319 -0.0139783 +0.00796203 0.131149 0.00690102 +-0.0888712 0.101031 0.0183836 +0.0208523 0.0352023 0.0276656 +-0.0939805 0.118754 0.0182968 +-0.0886426 0.129716 0.0443401 +-0.0562403 0.128346 0.0379943 +-0.0946719 0.122818 0.0192736 +-0.0844496 0.151409 0.0062115 +-0.0488054 0.124161 -0.00921799 +-0.0495787 0.0503337 -0.00863311 +-0.0642728 0.174473 -0.0515364 +-0.0355869 0.116022 -0.0147547 +0.0353133 0.0362497 0.0114171 +-0.0570854 0.136926 -0.00500822 +-0.033504 0.079379 -0.0265108 +-0.062469 0.033932 0.0153305 +-0.000579953 0.0361804 -0.0245898 +-0.0314067 0.0423682 0.0507901 +-0.0112759 0.125368 0.030237 +-0.00950387 0.075936 0.0571919 +-0.0424487 0.125177 -0.00834623 +-0.0077039 0.113721 -0.0184781 +-0.00342161 0.0338005 -0.0221963 +-0.0140717 0.118746 -0.0137718 +-0.0231943 0.0388081 0.0352395 +-0.0639512 0.156212 0.0208686 +-0.0624954 0.0890364 0.0453804 +-0.0303734 0.125779 0.00722581 +0.003605 0.0340592 0.00699628 +-0.0765794 0.15423 -0.00189723 +-0.0759273 0.08606 0.0386654 +0.0508473 0.0446622 0.0112162 +0.00609443 0.127443 0.0291456 +-0.0428742 0.105667 -0.0205602 +-0.0188968 0.0381911 0.0132528 +-0.086324 0.106283 0.0073644 +-0.0320928 0.0336737 -0.0220791 +-0.0466544 0.119173 -0.0140371 +-0.0710688 0.156192 0.0139947 +-0.055712 0.155088 0.0136896 +-0.0525045 0.159361 0.00819169 +-0.0543637 0.116891 0.0353365 +0.0318466 0.0424663 0.0288342 +-0.051547 0.125478 0.0342157 +-0.00249266 0.0760635 0.0587913 +-0.00575365 0.0727093 -0.0362416 +-0.00680153 0.129324 0.00093339 +0.0495021 0.0664943 0.0276338 +-0.0282448 0.11486 -0.0155715 +0.031224 0.0786608 -0.0202592 +-0.0148026 0.0827563 -0.0392327 +-0.071855 0.0993885 -0.014251 +0.0177513 0.0462342 0.0429632 +-0.0242082 0.121982 0.0271598 +-0.0922854 0.116039 0.0223382 +0.0434814 0.0832239 -0.00379707 +-0.0384996 0.171162 0.000767348 +-0.0712408 0.114861 0.0513991 +-0.0157632 0.12799 0.00385748 +0.019082 0.126548 0.00245443 +-0.00388013 0.0394939 0.0368098 +-0.0204678 0.122105 0.0297617 +-0.0285693 0.0399846 -0.0296196 +-0.0831878 0.0764607 0.0163622 +0.0190867 0.0428243 -0.0216805 +0.0483631 0.0628304 -0.00297175 +-0.0927311 0.120157 0.0322864 +-0.0241838 0.0579409 0.0417219 +-0.0517297 0.0723507 -0.015831 +-0.0217729 0.0684817 -0.0372671 +-0.00949546 0.0829261 0.0578441 +0.0172524 0.0778474 -0.0286871 +-0.0441607 0.162142 -0.00945516 +-0.00587725 0.105934 -0.0226578 +0.0253567 0.0518232 -0.0216362 +-0.0494861 0.156424 0.00985611 +-0.0174771 0.0924389 0.0547456 +-0.0151406 0.126373 0.0259068 +-0.0852968 0.0818288 0.005494 +-0.0244818 0.0988555 0.0446892 +-0.0930791 0.118839 0.037294 +-0.0662836 0.114247 0.046332 +0.0127465 0.0672208 0.05354 +-0.0414757 0.109827 0.0377618 +-0.0435203 0.0519967 0.0390799 +-0.0417672 0.0812092 -0.0204027 +-0.0786424 0.0732312 0.000545367 +-0.0358502 0.0986071 -0.0225695 +0.0443653 0.0561662 -0.00597205 +0.0226111 0.0458717 -0.017849 +-0.0108336 0.116804 -0.0157483 +-0.0865451 0.110395 0.00835385 +0.031421 0.0399741 -0.00264961 +0.0363991 0.039859 -0.00104313 +-0.0468008 0.0347657 0.0424884 +-0.0398282 0.0914347 -0.0233046 +-0.025008 0.0334859 -0.0261337 +-0.0465231 0.0804789 0.0433941 +-0.0689665 0.135529 -0.00828838 +-0.0264689 0.0379883 0.0100865 +-0.0345116 0.111154 0.0360997 +-0.0225694 0.0387321 0.0336407 +0.0372794 0.0574491 -0.00767997 +-0.0707981 0.0672067 0.0269443 +-0.0150683 0.0384098 0.0065829 +-0.0592389 0.0452743 -0.00430196 +-0.0334924 0.102881 0.0413291 +-0.079025 0.153836 0.00536375 +-0.0229321 0.055215 0.043371 +-0.0601957 0.0341396 0.0262143 +-0.0688541 0.147497 -0.029579 +-0.0613597 0.172535 -0.0585911 +-0.0748166 0.0921259 -0.0144369 +-0.0632016 0.165278 -0.0601981 +0.0402098 0.04091 0.000378677 +-0.047469 0.117985 0.0306301 +0.0368134 0.0781201 0.03746 +0.000515748 0.0349973 0.0453092 +-0.0534255 0.124412 -0.00739059 +-0.000488424 0.0801341 0.0575904 +-0.0706455 0.0701231 -0.00669595 +-0.0477034 0.0649971 -0.0135628 +-0.0348898 0.0767003 -0.020496 +-0.00451076 0.0788064 0.0581316 +-0.0693915 0.117164 0.0523368 +-0.0200653 0.164398 -0.0170398 +-0.073544 0.177863 -0.0540307 +0.0427163 0.0399244 0.0113768 +0.0240483 0.0713748 0.0470522 +-0.0154968 0.0659374 0.0537935 +-0.0686329 0.175846 -0.0473222 +-0.0628372 0.172536 -0.0525874 +-0.0796429 0.148681 -0.00084361 +-0.0663392 0.0600723 0.0146241 +-0.00400483 0.123769 0.0343163 +0.0322222 0.0597861 -0.0166881 +-0.0640918 0.158696 -0.0546245 +-0.00248901 0.0456504 0.0469622 +-0.072774 0.10871 0.0380686 +-0.0810086 0.154578 0.0119766 +-0.0695005 0.091616 0.0421021 +-0.0665162 0.155345 0.00690315 +-0.030539 0.0748507 -0.0325674 +-0.0672648 0.0680031 0.0322561 +-0.0660205 0.131186 0.0449542 +-0.0246171 0.125897 0.00496292 +-0.077893 0.12518 -0.00689701 +-0.0883724 0.121658 0.047175 +-0.0773948 0.167309 -0.02854 +-0.0604 0.0470132 0.0371523 +-0.027746 0.0753954 -0.0356568 +-0.0748509 0.0782361 -0.0105914 +-0.0571323 0.14819 0.0314465 +-0.0415029 0.0803953 0.042616 +-0.0628829 0.0649103 0.0305991 +-0.00169833 0.0598396 -0.033652 +0.0151569 0.107807 -0.0181851 +0.0566945 0.0674374 0.0239376 +-0.0717279 0.155642 0.00502354 +-0.00382186 0.102465 0.0438439 +-0.0587089 0.155741 0.0125904 +0.0572801 0.0608152 0.0247108 +0.017703 0.0913635 0.0485583 +0.0260543 0.116303 -0.00733098 +-0.0345036 0.0690703 0.0414109 +-0.0292922 0.117943 -0.0127907 +0.0213023 0.0835644 0.0502546 +0.0464907 0.0664648 0.0271426 +-0.0564929 0.14962 0.0306387 +0.0282135 0.118937 -0.00132982 +-0.000391601 0.123621 0.0341495 +-0.00114981 0.12653 0.03091 +0.0304544 0.114562 -0.00546317 +-0.0547437 0.0337519 0.0206417 +-0.0468823 0.107031 -0.0193009 +-0.0631801 0.0406886 0.0415101 +-0.0910325 0.133669 0.0112223 +-0.0592476 0.145654 -0.00231326 +-0.0125718 0.100502 0.0445971 +-0.0298246 0.0378766 0.0293214 +-0.0839351 0.123564 -0.00377373 +-0.0621407 0.163665 -0.0567978 +-0.0389566 0.155104 0.00497717 +-0.0878144 0.105004 0.012374 +-0.0794305 0.0908376 -0.00963692 +-0.0246551 0.0507167 -0.0273858 +-0.0796103 0.0799856 -0.0065507 +0.0330411 0.10941 -0.00791346 +-0.00231596 0.121888 -0.0112268 +-0.0597326 0.154693 0.0267485 +0.0339669 0.0697663 -0.0167955 +0.0205734 0.0999616 -0.0218299 +-0.0354929 0.0917868 0.0443508 +0.00339585 0.0355203 0.0220096 +-0.0315414 0.125778 0.00387502 +-0.0478194 0.135564 0.0104014 +-0.00879058 0.0812731 -0.0379859 +-0.0037488 0.0386615 0.00318783 +-0.0464486 0.0959731 0.0434949 +-0.0306087 0.0394849 -0.0300968 +-0.00234671 0.0967246 -0.0304442 +-0.0312616 0.0735186 -0.0295121 +-0.0423301 0.0340883 0.0282541 +0.0355908 0.113068 0.0185826 +0.000833787 0.106762 -0.0210825 +-0.021676 0.184465 -0.0190713 +-0.0305406 0.0566147 -0.0184018 +-0.0876394 0.113262 0.0257017 +-0.0851868 0.0966727 -0.00156833 +-0.0465061 0.0425232 0.0438042 +0.0106037 0.121274 -0.0126925 +0.0290611 0.0523826 -0.0177704 +-0.000764451 0.0769261 -0.0359174 +-0.0416101 0.0338187 0.00715256 +-0.0893298 0.0969555 0.0104169 +-0.0345694 0.163827 -0.00275159 +-0.0888276 0.090232 0.0214359 +0.0208395 0.034464 0.00266226 +0.0428658 0.0623821 -0.00251673 +-0.00588102 0.130577 0.00751387 +-0.0133142 0.0337765 -0.0222266 +-0.0435242 0.0590876 0.0398271 +0.0545899 0.0478435 0.0151974 +-0.0107349 0.0699421 -0.0371274 +0.027906 0.0578072 0.0419759 +-0.0416225 0.0520166 -0.011127 +-0.0207276 0.168298 -0.0126147 +0.0256959 0.0491338 0.0386649 +-0.0550795 0.153114 -0.00215772 +-0.0380808 0.0483205 -0.0131774 +-0.0276317 0.056316 -0.0254148 +-0.00815144 0.127733 -0.00346398 +-0.0627849 0.0852772 -0.0191174 +-0.0619877 0.169385 -0.052596 +0.0234401 0.112665 0.0358138 +-0.0659073 0.110934 -0.0126703 +0.0280721 0.0360499 0.0211097 +0.0105243 0.0687767 0.0545753 +-0.00679638 0.0982761 -0.0281107 +-0.0309109 0.0462432 0.0473418 +-0.0196031 0.0393462 -0.028238 +-0.0871129 0.152836 0.0157593 +-0.0911632 0.133688 0.01322 +-0.0464961 0.102903 0.0415914 +-0.0206991 0.0553418 -0.0317435 +-0.00949277 0.073156 0.0570282 +-0.0864179 0.083353 0.0184733 +-0.0841891 0.111446 0.02976 +-0.0940387 0.126929 0.0232615 +0.0406221 0.0899944 0.0307666 +0.0208423 0.104696 0.0425993 +0.0445354 0.0407636 0.0127885 +-0.0623396 0.172509 -0.0536126 +0.0342346 0.0852576 -0.0183147 +-0.0866427 0.151554 0.0100877 +-0.0470988 0.0345244 0.0321531 +-0.080576 0.154494 0.0106641 +-0.0137759 0.0756859 -0.0386228 +0.0216235 0.0430155 -0.0167288 +0.0376424 0.109732 0.0031582 +0.0589875 0.0607291 0.021951 +-0.0923003 0.132372 0.0212228 +0.0311691 0.0942449 0.0417029 +-0.0174159 0.162512 -0.00777918 +-0.0156178 0.12076 -0.00985742 +-0.0507328 0.121196 0.0335979 +0.028716 0.119662 0.0245591 +-0.0738138 0.0950345 -0.0145557 +0.0204425 0.0350747 0.0258809 +-0.0207737 0.0351435 -0.019333 +0.0223353 0.12586 0.0121947 +-0.0155009 0.0951913 0.0533641 +-0.0143883 0.038338 0.0212719 +0.00741103 0.0391504 0.030425 +0.0433932 0.0691823 -0.000799598 +-0.0760543 0.149976 -0.0168736 +-0.0701178 0.170154 -0.0291958 +-0.0483555 0.146018 -0.00117385 +0.0336441 0.0578174 0.0379601 +-0.0913716 0.140622 0.0201693 +-0.0308539 0.0958394 -0.0237431 +-0.0766992 0.0702795 0.00252119 +-0.0544948 0.107078 0.0398767 +-0.0587729 0.0796565 -0.019784 +-0.013621 0.128874 0.0191382 +-0.0634727 0.156127 0.0195874 +-0.0880436 0.0977019 0.0235765 +-0.0606626 0.0738612 0.0409255 +0.0348653 0.0795228 0.0399156 +0.0387467 0.0828368 -0.0137708 +-0.0573402 0.0424553 0.0177175 +-0.0784976 0.148406 0.0395361 +-0.0917148 0.117385 0.0263102 +-0.0330041 0.122377 0.0254817 +0.0172403 0.0768113 0.0531129 +0.0595736 0.0691817 0.0101411 +0.0306903 0.0708797 -0.0198199 +-0.0845462 0.119028 0.0490922 +-0.0501127 0.0337803 -0.0127711 +-0.0670049 0.0372923 0.032499 +-0.0915067 0.129676 0.0312386 +-0.0550517 0.0504886 -0.00434688 +-0.0484873 0.0790818 0.0439275 +-0.0635173 0.159862 -0.0515858 +-0.0706155 0.173275 -0.0394062 +0.0352172 0.0952034 -0.0127755 +0.0251052 0.0382735 0.0297226 +-0.0668809 0.106639 -0.013906 +-0.0678418 0.143634 -0.0139334 +-0.0235762 0.184403 -0.0123621 +-0.0257601 0.0726356 -0.0363191 +-0.0573375 0.0472769 0.0101218 +-0.085611 0.106332 0.02136 +-0.0265671 0.0617846 0.0387137 +-0.0126044 0.12951 0.0108053 +0.0214416 0.0362735 0.0322576 +-0.0354711 0.126342 0.0186171 +-0.0594976 0.0904384 0.0451853 +0.00310705 0.0348555 0.0387811 +0.0254813 0.0942452 0.0457882 +-0.0308576 0.10008 -0.0228293 +-0.0176768 0.0510699 -0.0312435 +-0.0162281 0.181624 -0.0200739 +-0.0195138 0.038345 0.00392275 +-0.0645154 0.121409 0.0489254 +-0.0248162 0.0593033 0.0409035 +-0.0571389 0.136712 0.0331888 +-0.0435213 0.0379732 -0.0242868 +-0.0606582 0.12408 0.0421371 +0.0346832 0.0519191 0.0323364 +-0.0913706 0.116528 0.0258009 +-0.0426868 0.0651551 -0.0146214 +-0.0215064 0.116765 0.0355266 +-0.0581012 0.158247 0.00415445 +0.00842312 0.0385006 0.0330183 +-0.0523141 0.162661 -0.0019165 +0.0606845 0.0623337 0.0161711 +-0.0495055 0.0848369 0.0453213 +0.0333786 0.06058 0.0393695 +-0.0689469 0.131135 -0.00874709 +-0.078943 0.132461 -0.00522567 +-0.0196521 0.0386292 -0.00926197 +-0.0594457 0.0334843 -0.00338966 +-0.054161 0.0337073 0.0136843 +-0.0384829 0.0959056 0.0428235 +-0.0869182 0.148604 0.0308154 +-0.0323987 0.116048 -0.0147978 +0.0359194 0.0798211 -0.0157295 +-0.0328255 0.12127 -0.00820532 +0.0414852 0.0569681 0.0316528 +-0.0270871 0.0520359 -0.0253933 +0.0508347 0.0727393 0.0196905 +-0.0198767 0.105865 -0.0225965 +0.0206869 0.0400703 -0.0126929 +-0.0285033 0.0616825 0.0373869 +-0.0714181 0.143109 -0.0104276 +-0.0804568 0.138622 0.0481167 +-0.0458049 0.0532278 0.0379952 +-0.0509023 0.125469 0.0333647 +-0.0871853 0.145927 0.0339699 +0.0558536 0.0594884 0.0261475 +-0.0889169 0.126733 0.0032966 +0.0110737 0.125093 -0.00680678 +-0.0358405 0.094357 -0.023472 +0.0259145 0.102099 0.0411479 +0.0426389 0.0764517 0.0281735 +0.00597565 0.131268 0.0190237 +-0.0475211 0.165506 -0.00586183 +0.0138473 0.035286 0.0424107 +-0.0544751 0.0987674 0.042954 +0.0329063 0.0668566 -0.0177475 +-0.0715523 0.0819441 0.0400873 +-0.0483263 0.149906 -0.00403153 +0.0417112 0.0986332 0.0241669 +-0.0591403 0.039472 0.0459797 +-0.0649985 0.156251 0.0205012 +-0.0389795 0.034282 0.00907489 +-0.0627215 0.0592404 0.0161384 +-0.0367435 0.0437017 -0.0271198 +-0.0164726 0.0387782 -0.0143554 +0.0302495 0.0773125 -0.0211724 +0.0378723 0.109729 0.00416584 +-0.0033562 0.120959 -0.0122202 +-0.0465665 0.0433151 -0.011194 +-0.0597431 0.093988 -0.019461 +-0.0756514 0.0743685 0.0320217 +0.0461779 0.083439 0.010174 +-0.0757827 0.151399 -0.00889222 +-0.0417451 0.0768346 -0.0188724 +-0.0617437 0.0421117 0.0428503 +0.00176163 0.130465 0.00157228 +0.0429689 0.0696277 0.0268653 +-0.0432762 0.0450842 -0.0143236 +-0.0525312 0.0475838 0.0226634 +-0.0153636 0.128543 0.00690549 +-0.0685053 0.109678 0.0379594 +0.0174805 0.103096 0.0453391 +0.0217176 0.0632088 0.0471364 +0.0359993 0.0955223 0.036379 +-0.0451488 0.0335546 0.00486717 +-0.0681193 0.15804 -0.05439 +-0.0661021 0.155727 0.025928 +-0.00573558 0.0684573 -0.035843 +-0.0181282 0.187252 -0.018852 +-0.0445141 0.050571 0.038927 +-0.00049716 0.0856626 0.0573342 +0.016507 0.0913965 0.0503683 +-0.0333397 0.0410057 0.0499212 +-0.0351946 0.125334 -0.00338173 +-0.0616183 0.16622 -0.0565931 +-0.0624979 0.0760891 0.0414437 +0.0350466 0.107363 0.0297386 +-0.0720199 0.063399 0.00874547 +-0.0877434 0.135138 0.0431967 +0.0458379 0.0588925 -0.00503856 +-0.0385014 0.119389 0.0303589 +-0.0647267 0.0417808 0.0373932 +-0.0226655 0.0537608 -0.0296706 +-0.0584982 0.105689 0.0406051 +-0.0137228 0.0685659 -0.0377913 +-0.0817302 0.142079 0.0441697 +-0.0426358 0.0548841 -0.0113796 +-0.0135008 0.082884 0.0573146 +-0.00338001 0.130095 0.0228247 +0.0172769 0.0708593 -0.0295557 +-0.0246932 0.065394 -0.0335995 +-0.0314011 0.178523 -0.00645128 +-0.0575589 0.154615 -0.000238768 +-0.0407441 0.0753914 -0.0183192 +-0.084936 0.144668 0.0388142 +-0.0365092 0.108385 0.0376381 +-0.0851088 0.102115 0.000391121 +-0.0646522 0.0642554 -0.00503339 +-0.0754983 0.145823 -0.00786764 +-0.0474148 0.133778 0.0200381 +0.012958 0.0904818 -0.0298536 +-0.0425054 0.0705013 0.0420152 +0.0369946 0.0686204 -0.0137746 +0.0462743 0.0775122 0.0165366 +-0.0417874 0.128546 0.00302224 +0.00250208 0.0547919 0.0536548 +-0.0543206 0.140979 0.0284164 +-0.0492132 0.138613 0.0153977 +-0.0204064 0.162527 -0.00684616 +-0.0194926 0.111309 0.040066 +-0.00849594 0.0829198 0.0577964 +-0.0467773 0.0826601 -0.021013 +-0.0535197 0.0472233 -0.00680686 +-0.0092432 0.169141 -0.0244221 +-0.0594862 0.0804633 0.0433033 +-0.0764447 0.154164 -0.0158984 +0.0585888 0.0538213 0.0151823 +-0.0588396 0.0925945 -0.0203375 +-0.0761105 0.167387 -0.0256061 +0.0432176 0.0401728 0.0130684 +-0.0395679 0.152136 0.0040279 +-0.0685344 0.180035 -0.058648 +-0.0404998 0.0930589 0.0424923 +0.0428754 0.100088 0.00417324 +-0.0320271 0.0553591 -0.0124271 +0.0199862 0.0348656 0.0241629 +-0.069479 0.123198 0.0530616 +-0.0239594 0.117024 -0.0138685 +-0.013157 0.175712 -0.0209577 +0.00451102 0.0674972 0.0557889 +0.0304128 0.0431004 -0.0051324 +-0.0887794 0.151473 0.0131594 +0.0317917 0.0949031 -0.0164462 +0.0342895 0.112223 -0.00202032 +-0.0728652 0.170808 -0.0480355 +0.0253565 0.075473 0.0472224 +-0.0754952 0.15561 -0.00190651 +0.060278 0.0581371 0.013168 +0.00444274 0.131539 0.0170385 +0.00950273 0.0546854 0.0525766 +-0.028415 0.178753 -0.00594863 +-0.011518 0.0431769 0.0500228 +-0.0504724 0.141671 0.0164028 +-0.0424936 0.045133 0.0413379 +0.0207994 0.125738 0.00307388 +-0.0689469 0.0433261 0.00632212 +0.0111753 0.0766426 0.0548499 +0.0297504 0.0462054 0.0339396 +-0.0674791 0.0622216 0.0214031 +0.0131787 0.0793804 0.0542326 +-0.0630395 0.136976 -0.00741235 +-0.0026931 0.0386465 0.0251959 +-0.0862725 0.103636 0.0233541 +-0.072832 0.162419 -0.0389636 +-0.0670825 0.156321 0.0197603 +-0.0572305 0.057508 0.0152056 +-0.0876158 0.136354 0.00421533 +-0.0214752 0.0609386 0.0459919 +-0.007347 0.0952877 -0.0329727 +-0.0613578 0.0586321 0.0151557 +0.00350505 0.0590839 0.0549927 +-0.0372275 0.160948 0.000450465 +-0.0457572 0.0336839 -0.00997088 +0.0106658 0.0351593 0.00371028 +-0.0714997 0.16363 -0.0138384 +0.00840839 0.117161 -0.0162388 +-0.0493716 0.143224 0.00839291 +0.0251748 0.123444 0.0203849 +0.0329112 0.096871 0.0389677 +0.044554 0.0917551 0.0201604 +-0.0384935 0.0562767 0.0397971 +-0.0785284 0.123123 0.0516319 +0.0426769 0.101505 0.0101616 +0.00833271 0.0567886 -0.0305627 +-0.0876135 0.100396 0.0230423 +-0.0327059 0.0779055 -0.0285245 +0.0119151 0.0860485 0.0542349 +-0.0675927 0.17056 -0.0354212 +-0.0807265 0.0770568 0.0269252 +-0.0384859 0.0520062 0.0392089 +0.0452145 0.0482364 0.0300085 +0.0204736 0.0851385 0.0500118 +-0.0600179 0.155783 0.0193707 +0.0164701 0.0976264 0.0474551 +-0.0456663 0.0410589 -0.0152981 +-0.0821974 0.128571 0.0521036 +-0.0304964 0.0974331 0.0445755 +-0.0540878 0.128312 0.0358453 +0.0390858 0.0407779 -0.000614316 +-0.0725241 0.13724 0.0489632 +-0.0620129 0.0587144 0.0113478 +0.0455822 0.0848004 0.0171734 +-0.0839185 0.112898 0.00127069 +-0.0728197 0.155564 0.00463235 +0.0277412 0.121021 0.0227689 +0.0301995 0.0768447 0.0437008 +-0.0106344 0.174261 -0.0225996 +-0.0617342 0.0737271 -0.0167014 +-0.0414956 0.0464933 0.0408152 +0.03243 0.0535036 0.0361605 +-0.0377322 0.150234 -0.00179971 +-0.0847627 0.109032 0.02334 +-0.0642974 0.167953 -0.0385345 +-0.0221614 0.0825281 0.0558751 +-0.0504951 0.0960175 0.0443724 +-0.0508177 0.0501221 0.014822 +-0.0436492 0.0577877 -0.0118151 +-0.0189776 0.0390241 0.0529956 +-0.0623698 0.169401 -0.0505859 +-0.0105368 0.0850533 -0.0384463 +-0.0181795 0.183113 -0.0176247 +0.0314401 0.110365 -0.00894711 +-0.0127075 0.065682 -0.0367743 +-0.0273345 0.172717 -0.009826 +-0.0666857 0.141706 -0.00893584 +0.0408833 0.10285 0.0201769 +-0.0876525 0.145908 0.0330215 +-0.0436328 0.056346 -0.0115255 +-0.0611631 0.0428583 0.0256966 +-0.0330915 0.16076 -0.0136886 +-0.085208 0.150101 0.00618898 +-0.0615069 0.172523 -0.0575905 +0.0555907 0.0604655 -0.000426808 +-0.0850315 0.151395 0.00719993 +-0.0728007 0.0864364 -0.0158265 +-0.003188 0.127967 0.0287063 +0.0455462 0.0861954 0.016167 +-0.0217098 0.115215 -0.0159934 +-0.0414975 0.0916447 0.0424797 +0.0487043 0.0430197 0.0122221 +-0.0869351 0.106366 0.0163624 +-0.0156753 0.0541059 -0.0332392 +-0.06162 0.150156 -0.00124665 +-0.00577101 0.098213 -0.0280417 +0.0223236 0.0550419 -0.0260567 +-0.00429403 0.131101 0.0138416 +-0.0636168 0.143654 -0.00954122 +-0.0855598 0.0912595 -0.00155473 +-0.0404413 0.10705 0.0387043 +0.0547917 0.0553704 0.0263503 +-0.0822116 0.101996 0.0303518 +-0.0437463 0.128889 0.0155826 +-0.0664819 0.0397537 -0.00588584 +-0.067283 0.161835 -0.0137578 +-0.061699 0.0599431 0.00295203 +-0.0715633 0.170815 -0.0500445 +-0.0861137 0.0805676 0.00950062 +-0.0502228 0.125461 0.0326401 +0.0589666 0.0552427 0.017183 +-0.0327176 0.125444 0.0196276 +-0.0632934 0.151996 -0.00122225 +-0.0512927 0.135429 -0.000552487 +-0.0184842 0.0897075 0.0555921 +-0.0260646 0.11803 -0.0129143 +0.0198889 0.0631747 0.0480195 +-0.0465912 0.145038 0.00283923 +0.0534733 0.0728245 0.019221 +-0.0352804 0.0341155 -0.0193879 +-0.0829241 0.126549 -0.00467577 +0.0279852 0.0352646 0.0181572 +-0.0531741 0.150869 0.0213978 +0.0202497 0.0347399 0.020698 +-0.062763 0.149042 -0.0175788 +0.00226918 0.115596 -0.0185376 +0.0250704 0.12404 0.011788 +-0.045498 0.101529 0.0420301 +-0.058497 0.0426323 0.0447374 +0.0455164 0.0904085 0.0121603 +0.0215692 0.0352857 0.025924 +-0.0274987 0.0631476 0.0380009 +-0.0140602 0.172758 -0.0187663 +0.0587826 0.0538552 0.0121765 +-0.0628795 0.15219 -0.00958093 +-0.0468135 0.1536 0.00939603 +-0.0928405 0.121514 0.033281 +-0.0622964 0.150648 -0.0145762 +0.0475064 0.0611159 0.0308231 +0.00412571 0.107297 -0.0203039 +-0.0703978 0.156305 0.0156818 +-0.053643 0.135335 0.0311995 +0.0067064 0.0341407 0.0184863 +-0.0466442 0.0397388 -0.0142756 +0.0119051 0.0711889 0.0540767 +-0.0447375 0.0357143 0.0441717 +-0.0228183 0.0840509 -0.0381648 +-0.023326 0.122164 -0.00726067 +0.0441999 0.0790177 0.0251667 +-0.0276246 0.160982 -0.00149388 +-0.0399791 0.126816 0.018458 +0.0222264 0.09191 -0.0233017 +-0.0627692 0.156841 -0.0155919 +0.044508 0.0412168 0.00624902 +-0.0731279 0.155455 -0.0309078 +0.0183024 0.0347298 -0.00182982 +-0.01652 0.0715906 0.0550352 +-0.091634 0.141989 0.0201675 +0.0440337 0.0734407 -0.000804833 +-0.0524198 0.0648658 0.0346087 +0.0572481 0.0508905 0.0141872 +-0.0164766 0.111102 -0.0196668 +-0.0418874 0.108498 -0.0194287 +0.0321354 0.0549697 0.0375085 +-0.0644897 0.102874 0.0413067 +0.0465079 0.0583728 0.0318256 +-0.0334582 0.0518969 0.0377238 +-0.0729908 0.139888 -0.00698816 +-0.0534544 0.124093 0.0367404 +0.0173165 0.0622663 -0.028279 +-0.0554104 0.0513256 0.00948897 +-0.014903 0.172738 -0.0182312 +-0.0502115 0.141667 0.015397 +0.0229958 0.0375848 0.0332895 +-0.0749615 0.135451 -0.00681495 +-0.0855353 0.0938173 0.0282665 +-0.069508 0.102769 0.0393316 +-0.0205392 0.0971418 -0.0249761 +-0.0312923 0.0362769 0.0513145 +0.0260175 0.0991397 -0.0189626 +-0.00594641 0.0989148 -0.0267499 +-0.0708605 0.0347825 0.00928864 +-0.0845393 0.103233 0.0269979 +0.0406232 0.0953057 0.0289912 +-0.0456818 0.0650665 -0.0140257 +-0.0326318 0.168236 -0.00522072 +-0.0765723 0.0689281 0.00553415 +-0.0176728 0.049548 -0.0303695 +0.00113463 0.130461 0.00151005 +-0.08699 0.0859713 0.00247197 +-0.0338357 0.095789 -0.0234311 +-0.0304987 0.10293 0.0419798 +0.0336335 0.0713894 0.0398251 +-0.0224957 0.101642 0.0440993 +0.0309373 0.119109 0.0111337 +-0.0734894 0.156164 0.020416 +-0.000755237 0.0740961 -0.035785 +0.0354988 0.0469226 0.030944 +-0.00617179 0.128513 -0.00228639 +-0.00460988 0.0388908 -0.00276124 +-0.0678289 0.135464 0.0458614 +0.0345596 0.114411 0.00388032 +-0.0884532 0.112251 0.0353052 +-0.0709934 0.170517 -0.0295248 +0.0284454 0.0995183 0.0412905 +0.0402167 0.0685122 0.0317439 +-0.0665769 0.0362823 0.0365183 +-0.0765583 0.148625 -0.00886956 +0.0576507 0.0606695 0.00219201 +0.060413 0.0664733 0.017165 +0.022246 0.0835763 0.0498509 +-0.0821459 0.0912329 0.0320422 +-0.0746727 0.145787 -0.00986958 +0.0345089 0.111329 0.0271807 +0.0594367 0.0663847 0.00713811 +0.0282217 0.0664463 -0.0207545 +-0.0619747 0.170963 -0.0535908 +-0.0394944 0.0492076 0.0395541 +-0.0787666 0.165266 -0.0299591 +-0.0749441 0.129634 -0.00796551 +-0.00112962 0.125371 0.0323555 +-0.0154803 0.0500282 0.047966 +0.0153592 0.0953434 0.0487033 +-0.085237 0.147388 0.00618456 +-0.0128008 0.0841443 -0.0388521 +0.024383 0.0518665 -0.0223004 +-0.0342551 0.0766309 -0.0244955 +-0.0670839 0.173532 -0.0453192 +-0.0772544 0.0764799 0.0316515 +-0.0270646 0.053566 0.0376661 +-0.0225205 0.112681 0.0384786 +-0.0884304 0.0874699 0.00847782 +-0.0737584 0.0914853 0.0405847 +-0.064968 0.128232 -0.00872903 +0.000512384 0.127929 0.028588 +-0.0599553 0.0610872 0.0239566 +-0.0384792 0.116679 0.0322191 +-0.0485119 0.112536 -0.0170517 +-0.0304781 0.0523954 -0.0163632 +0.0387588 0.108855 0.00681782 +-0.0406156 0.155109 0.0060988 +-0.0471466 0.149481 -0.0040486 +0.0179495 0.127337 0.00345096 +-0.0395837 0.0336987 -0.0198537 +-0.0633751 0.0344193 0.0288044 +-0.0424853 0.128365 0.0145816 +-0.0364913 0.113889 0.0338295 +0.0353283 0.112832 0.00268414 +-0.0653226 0.0343003 0.0144151 +0.0435313 0.065065 0.0273105 +-0.0795726 0.0867837 -0.00954059 +-0.0104381 0.171321 -0.0205524 +-0.0737003 0.156269 0.0145144 +-0.0733818 0.155466 -0.0289107 +-0.0198527 0.0382258 0.0238627 +-0.0188257 0.0725897 0.0542693 +-0.0778777 0.117832 -0.00599287 +-0.0365049 0.10423 0.0397359 +-0.00948278 0.0978353 0.051868 +-0.0103201 0.0393296 0.0497389 +-0.0876274 0.137747 0.00620032 +0.0416732 0.0819555 0.0304093 +0.0608524 0.0609661 0.0101561 +-0.0767143 0.154218 -0.0048969 +0.0174945 0.0838575 0.0514031 +-0.066433 0.0337378 -0.00503676 +-0.0232113 0.177135 -0.0206374 +0.0100949 0.034771 0.018605 +0.042675 0.0751161 0.0282624 +-0.0866662 0.0833296 0.0114916 +-0.0504965 0.157865 0.00943584 +0.0433406 0.0973216 0.0191637 +-0.0888303 0.0915034 0.00845607 +-0.0555242 0.0415797 -0.00918326 +-0.0337405 0.075174 -0.025488 +-0.0906275 0.137865 0.0211926 +-0.0123027 0.0389534 -0.0136872 +-0.045835 0.0941966 -0.0219229 +-0.0238433 0.163025 -0.0155105 +-0.0522937 0.12758 -0.00475935 +0.0308793 0.0356029 0.0166157 +0.0423563 0.0588819 -0.00453174 +-0.00663392 0.0466819 -0.0297341 +-0.0484493 0.0656843 0.0374132 +-0.0270407 0.125883 0.0113821 +-0.0910269 0.129538 0.0072515 +-0.0455907 0.0447683 -0.0109766 +0.00905498 0.0971664 -0.0248901 +0.00396755 0.0341147 0.00886829 +0.00550365 0.123767 0.0339438 +0.0400787 0.0432895 0.0279756 +-0.00815712 0.126302 0.0298556 +-0.0609217 0.118124 -0.010668 +-0.0141549 0.129252 0.0145753 +0.0274448 0.120188 0.0255104 +-0.0485004 0.111187 0.0370789 +0.0451596 0.0789195 0.0230398 +-0.0138991 0.162654 -0.0155462 +-0.0528814 0.0447887 0.0196824 +0.0277468 0.0465681 -0.0107176 +-0.0580291 0.124109 0.0406616 +-0.0404897 0.0874362 0.0429424 +0.0316544 0.117354 0.0228159 +0.0277648 0.098182 0.0420578 +-0.0391765 0.165177 -0.0125287 +-0.0691207 0.112747 0.0474107 +-0.0614963 0.102908 0.0417081 +0.0393676 0.0927337 0.0325144 +0.0214921 0.125223 0.0232941 +-0.0167077 0.059948 -0.0356741 +-0.0619704 0.118373 0.041992 +-0.0359339 0.109235 -0.0196158 +-0.0150259 0.185694 -0.0231645 +0.0245929 0.0577938 0.0442192 +-0.00233157 0.122878 -0.010278 +-0.0434949 0.0817618 0.042266 +0.0298844 0.0350171 0.0132987 +-0.00424346 0.0409986 0.0479883 +-0.0776115 0.15005 -0.0049035 +-0.0124244 0.108763 -0.0212047 +-0.0798966 0.083235 0.0342815 +-0.0813623 0.104616 -0.00457868 +-0.0167402 0.0671791 -0.0380101 +0.0259555 0.123153 0.0178233 +0.0406613 0.0638232 0.0297482 +-0.0129458 0.117871 -0.0148632 +-0.0708515 0.0937008 -0.0159297 +-0.0688238 0.1383 0.0462399 +-0.0886846 0.136388 0.00720801 +0.0460186 0.0714912 0.0208033 +0.0465334 0.07646 0.0111853 +0.000795729 0.0345137 0.0115011 +0.0318042 0.0661523 0.0406683 +-0.0277917 0.0810724 -0.036339 +-0.012329 0.0361667 0.050366 +-0.0672863 0.151256 -0.0426939 +0.0328851 0.0556122 -0.0127142 +-0.0444939 0.107088 0.0401229 +-0.088037 0.113814 0.026966 +-0.0228073 0.184465 -0.0170667 +-0.00369909 0.0598617 -0.0340393 +-0.0698551 0.16523 -0.017589 +-0.0464984 0.047794 0.0396541 +-0.0756919 0.143067 -0.00582827 +-0.0208788 0.0383361 0.00183886 +-0.0768287 0.154208 -0.00589938 +-0.0147866 0.0799249 -0.0391233 +-0.0699384 0.150598 0.0380766 +-0.0866088 0.126656 -0.00171455 +-0.0792409 0.168033 -0.0359701 +-0.0650871 0.0417056 0.03635 +0.0353256 0.109535 -0.00390394 +0.00651309 0.0828012 0.0562471 +-0.0512535 0.0528689 0.0137817 +-0.0635072 0.0590749 0.0125217 +-0.0892074 0.127019 0.0449806 +0.0451896 0.0875706 0.0191665 +-0.0576689 0.0350157 0.0450337 +-0.0441239 0.129077 0.0169132 +0.00351519 0.0634007 0.0566286 +-0.0456618 0.0741031 -0.0174455 +-0.045802 0.0382259 -0.0192856 +-0.0774749 0.141413 0.0470689 +0.019092 0.0350694 0.0292369 +-0.0721908 0.176974 -0.0457483 +-0.0228049 0.0784515 -0.0385457 +-0.0196863 0.0539295 -0.0316066 +0.0370985 0.0632585 0.0359995 +-0.0097823 0.0613531 -0.0352263 +-0.0518485 0.147799 0.0174109 +-0.0424957 0.11253 0.0356818 +-0.00161218 0.0387745 0.0252993 +0.0432025 0.0777701 0.0272794 +0.0158912 0.0644868 0.0510299 +-0.0624956 0.0861834 0.0447184 +0.0226823 0.0605452 0.0467602 +-0.0345153 0.0780634 -0.0235017 +-0.0693572 0.156301 0.0160519 +-0.0848272 0.110715 0.0391424 +0.00397477 0.0389229 -0.0104191 +-0.0107444 0.0685007 -0.0365794 +0.0105122 0.0673666 0.0542979 +-0.0493982 0.113885 -0.0164603 +0.0292359 0.120576 0.0147663 +0.0143954 0.0433708 -0.024029 +-0.0548811 0.099887 -0.0210509 +-0.0345638 0.113971 -0.0166195 +-0.00945158 0.0346766 0.0453022 +-0.0114995 0.0486859 0.0490069 +0.047721 0.0729559 0.00883547 +0.00782583 0.131487 0.0111342 +0.018385 0.126365 0.000765748 +-0.0801977 0.117632 0.0490824 +0.0508224 0.0446928 0.0102182 +-0.0792484 0.154932 0.0111245 +-0.0616259 0.175734 -0.0596865 +-0.0554957 0.10156 0.042627 +-0.0693451 0.162383 -0.0509602 +0.0464905 0.0624784 0.0299685 +-0.0626979 0.149033 -0.0165859 +-0.027787 0.0838632 -0.0360686 +-0.068908 0.112267 -0.0105177 +-0.0464636 0.157957 0.00818306 +-0.0656199 0.0690554 -0.0100807 +-0.0594903 0.081873 0.0434438 +-0.042501 0.0803745 0.0423542 +-0.0715599 0.0733863 -0.0105456 +-0.00392373 0.129832 0.00104637 +0.0231411 0.0844685 -0.0255261 +-0.0582906 0.0411368 0.01871 +-0.0231503 0.121506 -0.00857745 +0.0353371 0.0534224 -0.00701071 +-0.028498 0.108421 0.0390601 +-0.0161996 0.0386499 0.0314325 +0.0417053 0.0943445 -0.00480688 +-0.037505 0.0874848 0.0436782 +-0.0859867 0.140484 0.00417932 +-0.0394569 0.124785 -0.00795634 +-0.0629125 0.111049 -0.0145904 +-0.0697706 0.0337438 0.00328799 +0.0353216 0.0863185 -0.0174167 +-0.0529232 0.125495 0.0357533 +-0.0145001 0.0870236 0.0569643 +-0.00422597 0.10111 -0.0231367 +0.026954 0.114984 -0.00791167 +0.0123614 0.0509077 -0.0278502 +-0.0705953 0.157132 -0.0018785 +-0.0270301 0.0604609 -0.0294673 +-0.0252429 0.163867 -0.00684922 +0.0164575 0.0900289 -0.0273543 +0.0182356 0.126981 0.00216332 +-0.0276261 0.15573 -0.00786612 +-0.0687195 0.165823 -0.0200644 +-0.0237576 0.0713185 -0.0373359 +-0.0350727 0.157773 -0.0116201 +-0.0115095 0.129073 0.00398865 +-0.000506085 0.0442149 0.046198 +0.0372544 0.109701 0.0220387 +-0.0154921 0.0382096 0.0157388 +-0.0500202 0.131989 -0.0014354 +-0.025472 0.0851651 0.0520429 +-0.0328435 0.125555 0.000439943 +-0.0773991 0.152954 0.0323974 +-0.0504161 0.144734 0.0123765 +-0.0576549 0.124438 -0.00742698 +0.0532901 0.0621073 -0.00218568 +-0.0298754 0.0748068 -0.0335581 +-0.0642433 0.0338438 0.0114826 +-0.0316113 0.0409091 -0.0301005 +0.00142887 0.0392678 -0.00936829 +0.0274179 0.122108 0.0155174 +-0.0144987 0.0884006 0.0568363 +-0.0184962 0.109943 0.0409607 +0.0379028 0.0997575 -0.00879746 +-0.0244855 0.0461464 0.0516096 +0.03717 0.0713299 0.0361376 +0.0442521 0.0804694 -0.00179963 +-0.0693598 0.153979 -0.049866 +-0.045049 0.0367204 -0.0222184 +0.0226853 0.115014 -0.0119595 +0.0308676 0.0713453 0.0410867 +-0.0253533 0.0381958 0.00468802 +0.0115087 0.101793 0.0474223 +0.0122157 0.0346138 -0.0197432 +-0.078807 0.10613 0.032485 +0.0412927 0.101424 0.0211601 +0.0449984 0.0413097 0.00725015 +-0.0614983 0.0861808 0.0447299 +0.0201601 0.0357218 -0.00467829 +-0.0270641 0.0376545 -0.0293745 +-0.0491197 0.137061 0.00540677 +-0.00249881 0.0829011 0.0575494 +0.021052 0.0358187 -0.0026817 +-0.0154895 0.0559453 0.0511175 +-0.0718433 0.0833097 0.0403454 +-0.087976 0.141871 0.0376917 +-0.0787586 0.163869 -0.0289482 +-0.0485008 0.0732772 0.0415918 +-0.0366615 0.0606699 -0.0121541 +0.0262206 0.0435744 -0.00668237 +0.000219502 0.0370979 0.0467851 +-0.00149685 0.0456811 0.047029 +-0.0545635 0.122251 -0.00910565 +-0.0186556 0.0480312 -0.0293255 +0.0387854 0.0701818 -0.0117862 +-0.0654945 0.0398115 -0.0063825 +-0.0437744 0.116579 -0.0153348 +-0.0344901 0.0987486 0.043091 +0.0610023 0.062364 0.012157 +0.0141007 0.120583 0.0346592 +-0.0823269 0.108767 -0.000607289 +0.0214843 0.092023 0.0479434 +-0.070667 0.0763937 -0.014042 +0.021114 0.0592021 0.0480036 +0.0252499 0.0775815 -0.0248688 +-0.0601377 0.0338299 0.0176745 +-0.0579501 0.0592474 0.0206872 +-0.0769058 0.154074 0.0295482 +0.0198639 0.11968 -0.0089705 +0.0022305 0.0754937 -0.0353597 +-0.00780413 0.0840976 -0.0379648 +-0.0611789 0.172541 -0.0596341 +-0.0447417 0.0768063 -0.0185987 +-0.017374 0.0569064 0.0504968 +0.00450466 0.087016 0.0568401 +-0.0709391 0.109631 0.0395791 +-0.0674006 0.0406253 -0.00334064 +-0.0311093 0.169745 -0.00652433 +0.0242906 0.0676576 -0.0247124 +-0.0326084 0.171239 -0.00339173 +-0.0325897 0.0666513 -0.0194517 +0.0319052 0.0437397 0.0295375 +-0.0450254 0.127281 -0.00449582 +-0.0226309 0.0478785 -0.0276417 +-0.0583127 0.0580812 0.00726379 +-0.037778 0.0827556 -0.0219531 +-0.0518874 0.106988 -0.0190452 +0.0163996 0.044784 -0.0236657 +0.0103374 0.0553349 -0.0300221 +0.0206753 0.126786 0.0115854 +-0.0850979 0.131233 0.0492505 +-0.0192324 0.177141 -0.0234526 +-0.0199616 0.0697296 0.0526775 +-0.0561055 0.158254 0.000206899 +-0.055732 0.115927 -0.0145408 +-0.0417663 0.162365 0.00442786 +-0.0305905 0.119479 -0.0103702 +0.0234999 0.0955508 0.0464417 +-0.0498856 0.149233 0.0119087 +-0.0154824 0.185702 -0.0219175 +0.00917376 0.125511 -0.00726227 +-0.0913426 0.147495 0.0231401 +-0.00381375 0.0896299 -0.0357356 +-0.0686943 0.154419 0.0308917 +-0.02552 0.111233 0.0379672 +-0.0705473 0.1414 0.0460484 +-0.00201946 0.100869 0.0458524 +-0.0876244 0.129442 0.00130199 +-0.00449535 0.0965559 0.0536663 +-0.0271292 0.0850573 0.0494379 +-0.0914908 0.1337 0.0152201 +0.00523694 0.126704 0.0302977 +-0.0470651 0.153179 -0.00606436 +-0.0672153 0.156284 0.0168104 +-0.0427934 0.0869807 -0.0215837 +0.0423379 0.0683118 0.0277209 +-0.0295859 0.0790353 -0.0345348 +-0.0477964 0.062891 0.036824 +-0.00968443 0.0570101 -0.0338896 +0.0451851 0.0861731 0.0211635 +0.00951284 0.0532319 0.0521285 +0.0302906 0.0787129 -0.0208549 +-0.0738862 0.104992 -0.0108534 +0.0453646 0.0575572 -0.00557548 +-0.0663103 0.0759418 0.0397029 +0.0143833 0.128699 0.00214848 +0.00580886 0.130668 0.0218239 +-0.0131274 0.0387957 -0.00624825 +-0.00997898 0.172997 -0.0279186 +-0.0620827 0.174072 -0.0556227 +-0.0546337 0.0334816 0.0119976 +0.0208676 0.121124 0.0316774 +0.0220436 0.125932 0.0163676 +0.0377227 0.0561747 0.0314909 +-0.0721609 0.147032 -0.0238695 +-0.0738111 0.0907253 -0.0150698 +-0.0362217 0.0335837 -0.0228111 +0.0387097 0.105846 2.20656e-05 +-0.0556277 0.0365615 0.0468082 +-0.0836005 0.0763298 0.006515 +0.0280677 0.100848 0.0407486 +-0.0831241 0.100626 0.0298981 +-0.0305493 0.0479587 -0.0242789 +0.0165747 0.0519808 0.0466207 +0.0447673 0.0847221 0.00118921 +-0.0146056 0.0435263 -0.0269315 +0.0273074 0.0346174 0.0112772 +-0.0683005 0.139737 0.0452157 +-0.0485925 0.132707 0.00186362 +0.00897502 0.113705 0.0394792 +0.010104 0.0343592 -0.0200136 +-0.0769339 0.126684 -0.00758482 +0.00350625 0.0547769 0.0535608 +-0.0850528 0.0993835 -0.000573805 +0.00144009 0.0350568 0.0184024 +-0.0301745 0.17266 -0.0167996 +-0.0732751 0.148715 -0.0303812 +-0.0837086 0.0952625 0.0306499 +-0.0742711 0.149885 -0.0318724 +-0.00654578 0.0384949 0.010053 +-0.0248989 0.0968475 -0.0246804 +-0.0633856 0.148243 -0.0195768 +-0.0647288 0.126998 0.0468559 +-0.058406 0.0598457 0.000248469 +0.0425358 0.0710418 0.0280089 +-0.0915343 0.140602 0.0181819 +-0.0407824 0.116214 -0.0149415 +-0.0445073 0.0491885 0.039305 +0.0294698 0.0801098 -0.0210213 +-0.0277559 0.0348695 0.0499059 +-0.0137302 0.107232 -0.0215702 +-0.0482685 0.037339 -0.0123839 +-0.0673815 0.0659915 0.0287149 +-0.0567046 0.11983 0.0390246 +0.0211901 0.113994 0.0360983 +0.0319596 0.11565 0.0257836 +-0.050462 0.0402796 0.0458238 +-0.0364752 0.09732 0.0430461 +0.00119043 0.0895238 -0.0341779 +-0.0699807 0.149351 0.039589 +0.0439472 0.0917185 0.0231564 +-0.0559199 0.113507 -0.0160179 +-0.0853556 0.095327 -0.00158429 +-0.0662723 0.154476 -0.00173975 +-0.0186027 0.111108 -0.0196906 +-0.0563562 0.140993 0.0307629 +-0.00358231 0.0383094 0.0162632 +-0.0568935 0.0562594 0.000567085 +-0.00649422 0.0590504 0.0549316 +-0.0245507 0.183147 -0.010424 +-0.032468 0.175717 -0.00291757 +-0.0132616 0.175663 -0.0275653 +0.00407218 0.0361395 0.0234015 +-0.00250245 0.104479 0.0441797 +0.00787676 0.127927 0.0283381 +-0.0760841 0.164579 -0.0198769 +-0.0814657 0.130234 0.0522094 +0.0322493 0.109934 -0.00848346 +-0.0747758 0.152715 -0.0228916 +-0.0360726 0.1261 0.0198793 +0.00651921 0.0869957 0.0564058 +-0.0863282 0.151358 0.00923307 +-0.00766666 0.0527037 -0.0328501 +0.0329828 0.110047 0.0302661 +-0.0819069 0.0844754 0.0320139 +0.020413 0.0521197 0.0451417 +-0.043267 0.149185 0.00566881 +0.03267 0.0767015 -0.0187757 +-0.0861456 0.140625 0.0415389 +-0.0665323 0.154667 0.00252946 +-0.0231566 0.158136 -0.0102789 +-0.0217907 0.0957944 0.0466571 +-0.0638349 0.156748 -0.0426051 +-0.0346441 0.117803 -0.0126135 +0.00980894 0.0658051 0.0545289 +-0.080258 0.0859229 0.0345477 +-0.0117542 0.0386862 -0.015202 +-0.080536 0.135397 0.0502642 +-0.0325368 0.0792892 -0.0295289 +-0.0784828 0.0717889 0.00251767 +-0.00149343 0.0883979 0.0566431 +-0.0137942 0.0386802 -0.0156021 +-0.0444896 0.101534 0.0420576 +-0.00192307 0.107424 -0.021877 +-0.0440699 0.153194 -0.00699527 +0.00318991 0.0880718 -0.0337792 +-0.0344943 0.0718865 0.0415833 +-0.030416 0.0692532 -0.0284548 +-0.0622359 0.167822 -0.0495929 +-0.0344858 0.100109 0.0424402 +0.00649387 0.0590149 0.0539921 +0.0360791 0.111295 0.00152105 +-0.0587368 0.0434475 0.0440841 +-0.0417025 0.0666657 -0.0153449 +-0.0533816 0.0513995 0.0117052 +-0.0285002 0.097396 0.0440561 +-0.0690491 0.153118 -0.0485047 +-0.0144923 0.093841 0.0546527 +-0.0633747 0.036885 -0.0080479 +-0.0706693 0.165215 -0.0479768 +0.0127157 0.0350729 0.0423657 +0.00853944 0.100396 0.0475311 +0.0211162 0.126093 0.00605375 +-0.0514924 0.113914 0.0348157 +0.0172187 0.117738 -0.0128881 +-0.01069 0.0969192 -0.0307004 +0.0121568 0.0930338 -0.0284961 +-0.0772387 0.158974 -0.0142914 +-0.0667905 0.0852019 -0.0183581 +0.0154254 0.0834009 0.0522607 +-0.0487147 0.0723044 -0.01565 +-0.0464696 0.0675313 0.0396048 +-0.0110203 0.0383532 0.0129011 +-0.0205151 0.114503 -0.0172551 +-0.0556769 0.0499718 0.00979142 +-0.0503626 0.0642656 0.0349674 +-0.00189958 0.130575 0.00323807 +-0.00749418 0.0533074 0.0526841 +-0.0781504 0.0736081 0.0268981 +-0.00216638 0.09997 -0.023881 +-0.0374964 0.119384 0.0304732 +-0.0237883 0.0932085 0.0487292 +-0.0846322 0.139314 0.044315 +0.00579995 0.0355749 0.0242599 +-0.0498385 0.0970763 -0.0221981 +0.0311277 0.0795524 0.0433085 +-0.080771 0.105947 -0.00458985 +-0.0541694 0.136721 0.0304424 +-0.0158788 0.038593 -0.0159367 +0.0375503 0.0588742 -0.00872526 +-0.0278572 0.0972984 -0.0239915 +-0.0609119 0.0678343 0.0355003 +0.0406749 0.0801882 -0.00878559 +-0.0891047 0.101026 0.0153901 +0.0370023 0.11146 0.00905905 +-0.00649525 0.0576581 0.0543368 +0.0215982 0.0645366 0.046975 +-0.0290293 0.160675 -0.0139931 +0.00903586 0.100133 -0.0220275 +-0.0584961 0.104303 0.041452 +-0.0664115 0.162305 -0.0579417 +0.0239006 0.0520481 0.0413924 +-0.0216874 0.126575 0.00458035 +-0.0485184 0.0438796 0.0435224 +-0.0231474 0.0384868 -0.00611954 +-0.00826521 0.0380456 0.0491273 +-0.0528526 0.147782 0.0214111 +-0.0907516 0.137857 0.0201957 +-0.0758557 0.103473 -0.0101675 +-0.0397582 0.079747 -0.0196231 +-0.0147733 0.078434 -0.0385776 +0.00381296 0.0379313 -0.0132938 +-0.0694673 0.0635361 0.0216095 +-0.0528954 0.105563 -0.0191967 +0.0343906 0.0529675 -0.00763383 +-0.0293172 0.172724 -0.00740528 +0.00850711 0.0688384 0.055257 +-0.016261 0.181575 -0.0262548 +0.0213104 0.0415776 -0.0147 +-0.0780733 0.100357 -0.00962255 +-0.0846334 0.108922 0.00436756 +-0.0186964 0.0569405 -0.033635 +-0.037924 0.175153 -0.00739726 +-0.049768 0.081217 -0.020889 +0.0335081 0.0942386 0.0398247 +-0.0729901 0.154042 -0.0338982 +-0.0233975 0.156883 -0.00572928 +-0.0873262 0.103661 0.0203534 +-0.0501055 0.129693 0.0310292 +0.029581 0.0907082 -0.0200166 +0.043329 0.066441 -0.000599376 +-0.00664168 0.0482162 -0.0304375 +0.021889 0.0963552 -0.0220144 +-0.0265893 0.161003 -0.00174275 +0.044803 0.0945847 0.0121616 +-0.0725608 0.109721 0.0409258 +-0.0372497 0.126436 -0.00264816 +0.005339 0.0971934 -0.026912 +-0.0241177 0.120704 -0.00972559 +-0.0462757 0.0390662 0.0448146 +-0.00565778 0.12946 0.000751082 +0.0213227 0.122349 -0.00385694 +-0.0414913 0.0790271 0.0430475 +0.0190905 0.127062 0.0195525 +-0.0805286 0.124537 0.0519983 +-0.0782836 0.0860139 0.0367982 +0.0219644 0.126042 0.013483 +-0.0325696 0.0410226 0.0505793 +0.0295979 0.039453 0.0274445 +-0.0475678 0.0446906 -0.0104074 +-0.0654918 0.0917539 0.043991 +-0.0307813 0.122738 0.0233033 +-0.0854845 0.112639 0.0445732 +0.0231366 0.0404268 -0.00664294 +-0.00398687 0.126095 0.0313534 +-0.0641503 0.0436305 0.0113748 +-0.0314872 0.0646167 0.0387865 +-0.0776274 0.0692865 0.00957677 +-0.0195579 0.0946763 0.0515134 +0.014517 0.0344542 -0.0117299 +-0.0376663 0.0621956 -0.0129723 +0.00459507 0.101613 0.0450146 +-0.0281642 0.0346776 -0.0203658 +0.0147654 0.125019 -0.0047274 +-0.0344283 0.0338921 0.0139586 +-0.0364985 0.117968 0.0313259 +-0.0456444 0.0592254 -0.0120696 +-0.0260288 0.0381935 0.00636573 +-0.088169 0.124336 0.0468831 +-0.0540681 0.135339 -0.00310003 +-0.0291607 0.171183 -0.0175503 +0.0104455 0.0488162 0.0487077 +-0.0881632 0.0861128 0.0124706 +-0.0258758 0.0578187 0.0391737 +0.00450037 0.0427385 0.0456181 +-0.0537204 0.0491564 0.0326591 +0.0388727 0.0645792 -0.00975725 +-0.0500679 0.0501277 0.0166633 +-0.0669104 0.120913 -0.00889891 +-0.036233 0.0469115 -0.0220883 +-0.0118859 0.163867 -0.0168515 +-0.0619905 0.129678 -0.00799355 +-0.0652279 0.0397522 0.0288372 +-0.0508809 0.104197 -0.0202021 +-0.00186382 0.104504 -0.0225214 +-0.0619023 0.120903 -0.00899386 +0.00323955 0.0754773 -0.0351385 +-0.0384934 0.105604 0.0386511 +-0.0905225 0.118622 0.0053153 +-0.0284893 0.0835322 0.0466293 +0.00823162 0.0387858 0.0309201 +-0.0616053 0.156855 -0.0285887 +-0.0508615 0.101367 -0.0215394 +-0.0318582 0.102916 -0.0222908 +0.00526525 0.0350275 0.0444668 +-0.0646344 0.0337755 0.00968147 +-0.0640121 0.136992 -0.00763419 +-0.0456074 0.0345826 0.0394197 +-0.0864043 0.111678 0.00530063 +-0.0207807 0.0581858 0.0468036 +-0.0608886 0.105445 -0.0177606 +0.0417928 0.0746499 -0.00676608 +0.0195225 0.0821843 0.0511684 +-0.0464961 0.0833304 0.0442498 +0.0164933 0.119532 0.0345952 +-0.0626731 0.158367 -0.0396045 +0.00725591 0.129807 0.000165614 +-0.0909094 0.114612 0.0400043 +-0.0496217 0.0532216 -0.00894483 +-0.0204558 0.0772045 0.0549311 +-0.0225647 0.184728 -0.0122995 +-0.0389284 0.111648 -0.0181691 +-0.0312712 0.125373 0.00251041 +-0.0157734 0.075693 -0.0388238 +0.0245364 0.0862451 0.0478999 +-0.0296756 0.125596 0.0148252 +-0.0446861 0.130064 0.0166863 +-0.0225936 0.0382891 0.00334965 +-0.0787949 0.0758277 -0.00557109 +-0.0665305 0.155586 -0.0523326 +-0.0631388 0.0620641 0.0242 +0.0275571 0.0875682 0.0452466 +-0.0838788 0.153353 0.0242347 +-0.0365497 0.124951 0.0226726 +0.0318595 0.0673315 0.0407335 +0.00950257 0.0896505 0.0545501 +-0.0597218 0.118329 0.0399103 +-0.0840037 0.0992695 0.0294026 +-0.0777723 0.0832737 0.0363717 +0.0427594 0.0986702 0.00117933 +-0.0422677 0.111306 -0.0177858 +-0.0762231 0.16043 -0.0125715 +-0.0634008 0.115527 0.0417242 +-0.036507 0.106984 0.0382357 +-0.0384749 0.0351927 -0.0135871 +-0.0744578 0.144386 -0.00789461 +0.0593202 0.0701868 0.012517 +-0.0226744 0.0522819 -0.0290541 +-0.0875766 0.122583 -0.000713178 +-0.0170034 0.127025 0.0015954 +-0.0705369 0.155342 -0.0479286 +-0.0709342 0.128224 -0.00904999 +0.00705252 0.0346309 0.0397936 +-0.0585604 0.133937 0.0364008 +-0.0863384 0.102179 0.00442425 +0.0107631 0.0671702 0.0541647 +-0.0695537 0.163673 -0.0146023 +-0.0452915 0.1298 0.0046882 +0.00836647 0.0494746 -0.0282442 +-0.0691053 0.0641529 -0.000471523 +-0.0065051 0.0518538 0.05236 +-0.0557789 0.0811944 -0.0212002 +-0.0801928 0.109885 0.0408487 +-0.0136098 0.0997657 0.0454373 +0.0375013 0.045461 0.0306904 +-0.0857877 0.152992 0.0221351 +-0.00139702 0.0346206 0.0416594 +-0.0501963 0.061364 0.033592 +0.0161097 0.0974052 -0.0230873 +-0.0194917 0.0568426 0.0483686 +0.0492985 0.0561391 -0.00508332 +0.0184753 0.100361 0.0464541 +-0.0504953 0.154968 0.0107183 +0.0147875 0.105075 -0.0193 +0.023524 0.11536 0.0341991 +0.0310013 0.118944 0.0140014 +-0.0172406 0.178621 -0.0252251 +-0.0367055 0.112873 -0.0174612 +-0.026888 0.0344315 -0.0290471 +-0.052616 0.0542078 0.012269 +-0.0374932 0.0478153 0.0397186 +-0.0727381 0.151148 -0.0398146 +0.0042421 0.0740405 -0.0347398 +-0.0170835 0.187214 -0.0216216 +-0.0744375 0.0658205 0.00791081 +-0.0225303 0.159751 -0.00283877 +-0.015413 0.0343578 -0.0194213 +0.0138178 0.034673 0.033937 +-0.0756035 0.0846721 0.0383975 +-0.0823671 0.0939609 0.0321712 +-0.0597053 0.0675469 -0.0111319 +-0.0911321 0.146088 0.0161475 +0.0350128 0.0797448 -0.0167143 +-0.0835371 0.151134 0.0310567 +-0.0125098 0.0759113 0.0569785 +-0.014877 0.12853 0.00563728 +-0.067594 0.162379 -0.0559888 +-0.0299722 0.0523401 -0.0183637 +-0.0175125 0.109971 0.0410978 +-0.0602175 0.0443014 -0.00489461 +0.047415 0.0539813 0.0314992 +-0.0695317 0.0366687 -0.00405392 +-0.0710533 0.04057 0.0057746 +-0.0594926 0.112518 0.0361699 +-0.0870454 0.128039 -0.000695727 +-0.0548606 0.0532734 -0.00439052 +0.0197584 0.121448 -0.00690816 +-0.0217284 0.0919768 0.0523353 +-0.0331407 0.073693 -0.0254949 +-0.0165233 0.0472885 0.0494939 +0.0430185 0.100102 0.00517011 +-0.0941673 0.124186 0.0242853 +0.0398988 0.106999 0.0131638 +-0.0388567 0.0985732 -0.0220835 +-0.013744 0.0347692 0.0478272 +0.0525444 0.0728335 0.00848027 +0.0340202 0.108707 0.0300072 +0.0135389 0.0341511 0.00148413 +-0.0255703 0.121939 -0.00698176 +-0.0627659 0.0795658 -0.0187488 +0.0159163 0.0366121 0.0434543 +-0.0677812 0.0823162 -0.0178553 +-0.00231448 0.129778 0.000344647 +-0.0224096 0.15809 -0.00961754 +-0.0369427 0.15804 0.00437449 +-0.0557441 0.0768187 -0.0193441 +-0.0661875 0.165349 -0.0586121 +-0.0764308 0.11585 0.051182 +0.00923994 0.0795457 -0.0327494 +-0.0141356 0.103403 -0.0235224 +-0.0725643 0.165173 -0.0170441 +-0.0708131 0.0922561 -0.0160967 +-0.052837 0.143168 0.022419 +-0.0289488 0.0487095 0.0453204 +-0.033511 0.104273 0.0404948 +0.0173468 0.0552065 -0.0282783 +-0.0643722 0.0392301 0.0399397 +0.0154605 0.100515 0.0471558 +-0.0389991 0.0361252 0.0429011 +-0.0912831 0.133698 0.0142161 +-0.042206 0.166657 -0.0103803 +-0.0829702 0.111001 0.0428895 +-0.0244677 0.122018 -0.00707965 +-0.00847955 0.107265 0.0437628 +-0.0410173 0.12678 -0.00403845 +-0.00247117 0.091392 -0.0349524 +-0.0733228 0.17276 -0.036126 +-0.0584972 0.102936 0.0420973 +-0.0275816 0.0549129 -0.0253866 +-0.0567567 0.0416998 -0.00856929 +0.00796329 0.0376774 0.0282412 +-0.0764966 0.130271 0.0529935 +-0.0385029 0.0346069 0.040918 +-0.0178242 0.0882801 -0.0380186 +-0.0592916 0.0381211 0.04617 +-0.0507734 0.0826521 -0.0214824 +-0.011501 0.0787467 0.0576654 +0.0135076 0.115425 0.0371825 +-0.0649944 0.132589 -0.00831046 +0.00449953 0.0474774 0.0501288 +-0.0183564 0.0639745 0.0512546 +-0.0454992 0.0425256 0.0437126 +0.00186325 0.0380873 -0.0138264 +0.0213321 0.100802 0.0450693 +-0.0855641 0.121149 -0.00272592 +-0.0898794 0.136494 0.0232114 +-0.0498262 0.0941747 -0.0218116 +0.0413792 0.0533854 -0.00680998 +-0.0912918 0.11477 0.0353243 +0.0585317 0.0565811 0.0212119 +0.000449556 0.130948 0.00412356 +-0.0343831 0.0766477 -0.0234928 +-0.0394659 0.108422 0.0377073 +-0.0477552 0.161949 -0.00697323 +-0.0278288 0.122593 -0.00568164 +-0.0563034 0.124125 0.0396482 +-0.0656415 0.129793 0.0454963 +0.0484031 0.0553841 0.03118 +-0.0455014 0.116621 0.0320048 +-0.0728613 0.102198 -0.0128504 +-0.0867252 0.0994863 0.00342747 +-0.00226785 0.0370021 0.0122687 +-0.0557143 0.0709328 -0.0156898 +-0.0610115 0.132585 -0.00747053 +0.00217526 0.0894962 -0.0338845 +-0.012585 0.0933765 -0.0350613 +-0.0553875 0.143884 0.0305002 +-0.0920989 0.117453 0.031314 +-0.0616144 0.155309 -0.0245851 +0.0502575 0.0602229 -0.00418894 +-0.0735402 0.0708078 0.0302704 +0.00614005 0.103026 -0.0213684 +-0.00271026 0.0669475 -0.0345168 +-0.049518 0.0344739 0.029929 +-0.0525731 0.128311 0.0345149 +-0.0605331 0.151186 -0.000375192 +-0.0866695 0.135213 0.0450386 +-0.0515626 0.0460585 0.0186779 +-0.00891802 0.0982381 -0.0280905 +-0.0170028 0.0977503 -0.0256286 +-0.0541413 0.128093 -0.005327 +-0.0234618 0.0385102 -0.00806272 +-0.0234875 0.125296 0.0010065 +0.0238248 0.0404881 0.03829 +-0.0564079 0.0334582 -0.0027528 +-0.0667678 0.0695012 0.0345692 +-0.00845839 0.0346349 0.045549 +-0.0748544 0.15611 0.0141114 +-0.0718277 0.141507 -0.00801564 +-0.0263582 0.120444 -0.00943021 +-0.0384861 0.0847024 0.0437961 +0.0154742 0.126309 -0.00212525 +-0.0329093 0.0461288 0.0451027 +-0.00179731 0.0390446 -0.00419837 +-0.0830843 0.0843065 -0.0045636 +-0.00849798 0.051815 0.0518583 +0.0211703 0.0458979 -0.0197309 +0.0250466 0.0534973 0.0413033 +-0.00301309 0.0994095 -0.0252863 +-0.0286636 0.0662687 -0.0294695 +-0.0275164 0.0588544 0.0372755 +0.021248 0.0707121 -0.0275992 +0.0118973 0.0699023 0.0540919 +-0.0850671 0.0831487 0.00248224 +0.0112963 0.123527 -0.00913288 +-0.0471043 0.0355495 0.00808039 +-0.0305886 0.0341169 0.0127308 +0.0232695 0.0795597 0.0495474 +-0.0781795 0.165241 -0.0349583 +-0.00548333 0.122374 0.0356916 +0.02636 0.0531741 -0.0208871 +-0.0117787 0.0784571 -0.0380559 +-0.0374622 0.0945463 0.043653 +0.0298506 0.0915959 0.0433109 +-0.063716 0.150986 -0.0306408 +-0.0915859 0.128175 0.00825933 +0.0456498 0.0806034 0.02116 +-0.0483119 0.0614742 0.035964 +0.0375235 0.0968947 -0.00979522 +-0.0923144 0.132364 0.0182222 +0.0175115 0.118187 0.0352964 +-0.027798 0.0824702 -0.0362167 +-0.0679219 0.123838 -0.00890383 +-0.0136906 0.0585033 -0.0353384 +-0.0560167 0.0334996 0.00451355 +-0.00170896 0.0655406 -0.0343993 +-0.0134843 0.053101 0.0504987 +-0.0675811 0.143978 0.0427672 +-0.0395371 0.165252 0.00310729 +-0.00177026 0.0987839 -0.0266092 +0.0449905 0.0917771 0.0161555 +-0.0142754 0.0385008 0.0265607 +-0.024936 0.0546494 -0.0284077 +-0.0737754 0.0849525 -0.0153987 +-0.00225491 0.0393816 0.0354457 +0.00953649 0.101759 0.0470503 +-0.030493 0.0731979 0.0402297 +0.0418277 0.0395362 0.0134182 +-0.0622707 0.058834 0.014793 +-0.0042883 0.0999626 -0.0238822 +-0.0511241 0.157581 -0.00475152 +-0.0110467 0.0382737 0.0183997 +-0.0111844 0.110115 -0.0206413 +-0.0906536 0.150215 0.0201223 +-0.0636975 0.0593607 0.0104272 +-0.00965605 0.0527028 -0.0331963 +0.011809 0.0846857 0.0540696 +-0.0439904 0.115156 -0.0158426 +0.00534103 0.0581999 -0.0308279 +-0.00449084 0.119679 0.0378771 +0.00251006 0.102973 0.0437486 +-0.0256326 0.0383152 0.00270994 +0.0101829 0.0893384 -0.0312282 +0.0359735 0.108741 0.0274101 +0.000505152 0.0675448 0.0563482 +-0.0431097 0.0335646 0.0052718 +-0.0748156 0.16245 -0.0339456 +-0.0890383 0.09964 0.0104144 +0.0425362 0.0972508 -0.000830625 +-0.0136711 0.162609 -0.0156561 +0.0241599 0.0418198 -0.00678118 +-0.0181519 0.16827 -0.0202389 +-0.0404977 0.0986657 0.0417206 +-0.0809707 0.15134 0.0022444 +0.0151979 0.0420601 0.0445385 +-0.00221102 0.0959857 -0.0316631 +-0.0329609 0.0709036 -0.0224656 +-0.079699 0.101798 -0.00757602 +-0.0725189 0.144585 -0.0159026 +-0.0466234 0.165492 -0.0068396 +0.0185106 0.12405 -0.00369129 +-0.014344 0.183095 -0.0226028 +-0.0788576 0.105851 -0.00657974 +-0.0240104 0.109837 -0.0203148 +0.00980942 0.110782 -0.0193656 +0.0108601 0.117776 0.0369396 +0.0193075 0.0536075 0.0470681 +-0.0925525 0.131032 0.0242364 +0.00749212 0.131495 0.0152913 +0.00495998 0.131626 0.0157979 +-0.00415159 0.0385426 0.00685716 +-0.0241881 0.038442 -0.0062907 +-0.0114972 0.0870124 0.0568248 +0.0383205 0.0589284 -0.00670105 +-0.050793 0.124044 0.0335488 +0.0216558 0.0436146 0.0415846 +-0.0488766 0.0663121 0.037594 +-0.0460367 0.115268 -0.015925 +0.0354061 0.0981387 0.0355669 +-0.0414966 0.064844 0.0412967 +-0.0492702 0.0334521 0.00412227 +-0.0788564 0.173596 -0.0449928 +-0.0720001 0.0374977 0.00101403 +-0.0745188 0.135846 0.0503978 +-0.0705133 0.0930254 0.0420143 +0.0544062 0.0520207 0.00120422 +-0.016347 0.159993 -0.0102438 +0.00949781 0.0440631 0.0448456 +-0.0123976 0.0991026 0.0482068 +-0.00535711 0.0347531 0.0461025 +0.026456 0.0929171 0.0454329 +0.0245089 0.042142 0.038636 +0.043716 0.0750115 0.0261739 +-0.0839359 0.102045 -0.00261805 +-0.0806754 0.155074 0.0150117 +-0.0689 0.172262 -0.0550342 +-0.0523543 0.073291 0.0414729 +-0.0301406 0.0636155 -0.0234264 +0.0407753 0.0452541 0.0299878 +0.00638455 0.0464233 -0.0264515 +-0.0755977 0.151334 -0.0218791 +-0.00594273 0.0383379 0.0139478 +-0.0600908 0.115373 0.0375616 +-0.0424965 0.0733822 0.0425454 +-0.00260003 0.0405608 -0.0253579 +0.00350637 0.0702767 0.0558823 +-0.0897267 0.135137 0.0262095 +-0.0591547 0.117476 -0.0120923 +-0.024542 0.0428919 0.0537128 +-0.0054972 0.0576157 0.054162 +-0.0397846 0.0841362 -0.0215764 +0.0415613 0.0751972 0.0301802 +-0.0631728 0.0596464 0.0174802 +0.0423363 0.101455 0.00317956 +-0.0533301 0.1416 0.0264013 +-0.0464855 0.0931347 0.0435353 +-0.0629725 0.150532 -0.00369044 +-0.0853889 0.108959 0.00634578 +-0.0909761 0.118636 0.00631645 +-0.0384966 0.101445 0.0410637 +0.0194941 0.107309 0.0406484 +0.0396169 0.0843072 -0.0127653 +-0.0223745 0.0566587 0.0441983 +0.0607493 0.059571 0.0121639 +-0.0844811 0.123027 0.0489478 +-0.0570341 0.144219 -0.00185162 +-0.0723674 0.177806 -0.0472523 +-0.0466801 0.130916 0.0233152 +-0.02246 0.183226 -0.0115124 +-0.0707386 0.165621 -0.0179174 +-0.0739884 0.1541 -0.0249038 +0.00161401 0.13159 0.0117114 +0.0295344 0.0524338 -0.0167463 +0.00137166 0.0465972 -0.0284573 +-0.0349979 0.152158 8.20736e-05 +-0.0459591 0.0424584 -0.0122548 +0.032247 0.0800194 -0.0194064 +-0.0215329 0.0768164 0.0540336 +0.0182351 0.12763 0.00640475 +0.0169629 0.0348939 0.0289563 +0.0193977 0.0490363 -0.0230642 +-0.0596322 0.0604401 0.0228281 +0.0145003 0.108488 0.0407955 +-0.0720741 0.0646161 0.00403373 +-0.0712116 0.15818 -0.0429219 +-0.0175993 0.15966 -0.00802789 +-0.0759222 0.159085 -0.0100036 +-0.0384682 0.15361 0.00387723 +-0.0725333 0.0379686 0.00575754 +0.0455601 0.0904134 0.011166 +0.0375907 0.0937201 -0.0111657 +0.00483671 0.039382 0.0314929 +-0.026559 0.0377408 0.0211248 +0.0385027 0.0454964 0.0307784 +-0.0564952 0.047766 0.0395183 +-0.0198831 0.107284 -0.0222237 +-0.0779551 0.163899 -0.0249456 +-0.0563521 0.0342791 0.0304121 +-0.00751948 0.0746046 0.0579524 +-0.0827498 0.154172 0.0128373 +-0.00710449 0.125174 0.0317411 +-0.0367613 0.0798086 -0.0204262 +-0.036915 0.175546 -0.00898243 +-0.0705043 0.0887655 0.0418556 +-0.0522651 0.0335597 0.0034159 +-0.0677174 0.0409231 -0.00173026 +-0.0113677 0.180126 -0.0253581 +-0.0161521 0.03911 0.0518105 +-0.0690092 0.122845 0.052951 +0.00570986 0.0341754 0.0182505 +0.0184933 0.0865452 0.0498488 +6.3531e-05 0.129314 -0.00119744 +-0.0804587 0.135827 0.0500319 +-0.0754196 0.111293 0.0461553 +0.0424555 0.0902012 0.0271644 +-0.0928081 0.120209 0.0412843 +-0.0634884 0.0789934 0.0424288 +-0.0615251 0.0457206 0.0316818 +-0.0115387 0.0458293 0.048671 +-0.066289 0.0747237 0.0389788 +-0.0173046 0.166847 -0.0129407 +0.0331853 0.116604 0.00769666 +0.0445518 0.069148 0.0246508 +-0.091691 0.12831 0.0342454 +0.0434619 0.0930961 0.0241585 +-0.0678925 0.0435809 0.00801004 +0.0234224 0.0519071 -0.0231048 +-0.0208141 0.0595795 0.0467936 +-0.087519 0.112 0.0410625 +-0.0213082 0.126358 0.00326486 +-0.0606822 0.0362429 0.0450162 +-0.0576914 0.0693962 -0.0144511 +-0.0769716 0.13837 -0.00578148 +-0.0653565 0.1551 0.00564588 +0.0264433 0.0485879 -0.0182655 +0.039746 0.101828 -0.00373788 +-0.0610724 0.144529 -0.00434459 +-0.0662237 0.145026 -0.0176812 +-0.0283728 0.156641 -0.000811787 +-0.00971651 0.0348541 0.0433186 +-0.00481466 0.0868424 -0.0368113 +-0.031088 0.0335574 -0.0273919 +-0.0544366 0.120435 -0.011246 +0.00248882 0.121002 0.0363406 +-0.00349433 0.0911707 0.0563818 +-0.0931447 0.118854 0.0382959 +0.0254683 0.121415 0.0262007 +-0.0467966 0.0336683 0.000813328 +0.0319522 0.103353 -0.0134365 +-0.0633409 0.155276 -0.011594 +-0.0720139 0.180999 -0.0528377 +-0.0164541 0.0630817 0.0527623 +0.016475 0.0352036 0.002978 +-0.00226088 0.124171 0.0334893 +0.0391263 0.0631992 -0.00875738 +-0.0818614 0.114723 -0.0022038 +-0.0930555 0.120208 0.0402916 +-0.0904236 0.116034 0.0273085 +-0.0705028 0.159578 -0.0459334 +-0.0862816 0.117641 0.0480424 +0.0531688 0.0733724 0.0176223 +-0.0578751 0.134121 -0.00585274 +0.0423147 0.091604 0.0271557 +0.0101515 0.071231 0.055077 +-0.0435318 0.087421 0.0430041 +-0.0560394 0.131064 -0.00575471 +0.00125071 0.0712122 -0.0347068 +-0.0348542 0.165303 -0.00316457 +-0.0860328 0.0912972 0.00145067 +-0.00116523 0.0371346 0.0178171 +-0.0637756 0.0795327 -0.0183843 +0.00482779 0.0366504 -0.0137865 +0.0435599 0.0987371 0.0131605 +0.00150087 0.101618 0.0443156 +0.0314312 0.0625198 -0.0186445 +-0.0672777 0.169987 -0.0338702 +-0.0903951 0.118903 0.0450094 +-0.0501563 0.11976 0.0326732 +-0.0750921 0.156856 -0.022942 +-0.0275197 0.109846 0.0382427 +-0.0535612 0.0416919 -0.00977582 +0.0556505 0.0677792 0.00213147 +-0.0685182 0.0368214 -0.0053939 +-0.0780099 0.114072 0.0486721 +-0.0248787 0.0796614 0.0530244 +-0.0638477 0.164736 -0.0283363 +0.0142201 0.0793919 -0.0305544 +0.00713749 0.130032 0.0237524 +-0.0187348 0.175696 -0.0167204 +-0.00682337 0.088234 -0.0365489 +-0.0217663 0.11209 -0.0186927 +-0.0171714 0.0432613 0.0521182 +0.00513012 0.0373402 0.0458408 +0.0461568 0.0626078 -0.00274862 +-0.0412659 0.160879 0.0033623 +-0.0853172 0.110382 0.0233555 +-0.0158006 0.108342 -0.0207487 +0.00813236 0.110171 -0.0197068 +0.0265802 0.0345508 0.0130494 +-0.0660018 0.133981 0.0432166 +0.041807 0.0885902 0.0288907 +-0.024509 0.109889 0.0396002 +0.0354948 0.10491 -0.00909103 +-0.00850916 0.0688709 0.0557558 +-0.054442 0.0373135 0.0469328 +-0.010539 0.0390893 0.0340058 +-0.0858022 0.150106 0.00719342 +-0.0451719 0.0347129 0.0411467 +-0.00510128 0.0385919 0.0229448 +-0.0521978 0.0336397 0.008764 +-0.0162925 0.180099 -0.0261659 +-0.0902934 0.147439 0.0121579 +-0.0793826 0.0705862 0.00854889 +0.0209269 0.0658956 0.0477693 +-0.0116051 0.171103 -0.0260001 +-0.0635102 0.151152 0.0361873 +-0.0865918 0.127084 0.0480364 +-0.0756208 0.166729 -0.0233779 +-0.0507818 0.0840955 -0.0217037 +-0.0623945 0.164686 -0.0405941 +0.0109143 0.034258 -0.00287102 +-0.0326136 0.0384639 -0.0154224 +-0.0883155 0.139178 0.0394996 +-0.0317158 0.0383538 -0.00403424 +-0.00682874 0.0896331 -0.0361816 +-0.060744 0.0766988 -0.0182193 +-0.00743574 0.129906 0.00405669 +-0.0792494 0.0723341 0.0207326 +-0.036173 0.152719 -0.00677506 +-0.0305128 0.10708 0.0396423 +-0.0435905 0.0505542 -0.0107756 +-0.0204554 0.0347978 0.0481157 +-0.0591045 0.0344689 0.0400978 +-0.0840365 0.147342 0.0364323 +0.00340018 0.0348289 -0.0229504 +-0.0693319 0.141141 0.045512 +-0.0561609 0.0344771 0.0355158 +0.00119588 0.0881146 -0.0344258 +0.0583564 0.0538008 0.0181861 +0.0342539 0.0387023 0.0236157 +-0.0264982 0.125984 0.010106 +-0.0611832 0.146298 -0.00395593 +-0.0910251 0.124245 0.0440568 +-0.089862 0.115281 0.0432597 +0.0247433 0.124313 0.0130924 +-0.000820873 0.128641 -0.00248283 +-0.0554557 0.0533368 -0.00338183 +-0.0464641 0.122081 0.0270508 +-0.0451868 0.126658 0.0224837 +0.00145793 0.0977369 0.0519067 +0.0405445 0.0610221 0.0298369 +-0.0744952 0.0941746 0.0398302 +-0.0351234 0.033632 -0.0282515 +-0.0839267 0.145982 0.00417548 +-0.0224934 0.0435545 0.0535652 +0.0159352 0.127804 0.0226817 +-0.0572144 0.154757 0.0232881 +-0.0498753 0.0336124 0.000239655 +-0.0191672 0.0596981 0.049368 +-0.0242921 0.0918773 0.0492675 +-0.0523718 0.133555 -0.00317026 +-0.0557218 0.0723836 -0.0166307 +-0.00457986 0.0361758 -0.0248798 +-0.0737533 0.0901294 0.040627 +-0.00549531 0.10728 0.0439307 +-0.0181568 0.165005 -0.0179156 +-0.0554997 0.108443 0.0389722 +-0.0144882 0.101623 0.0437286 +0.0215585 0.0387445 -0.00669407 +-0.0752039 0.0696978 0.0256249 +-0.0569183 0.115707 -0.0143002 +-0.0731283 0.155734 0.00889607 +0.0347498 0.081125 -0.0176886 +0.00113903 0.131571 0.0129682 +-0.0279379 0.155215 -0.0039665 +0.0438288 0.0860483 -0.00379124 +-0.0202818 0.0386671 -0.01315 +-0.0639713 0.0651159 0.0301523 +-0.0729034 0.123797 -0.00826534 +-0.00948854 0.0965445 0.0534324 +-0.0616146 0.158432 -0.0255892 +0.0348698 0.112104 0.0254475 +0.0462561 0.0792459 0.0151754 +0.0132092 0.0348336 0.0300558 +-0.0650018 0.0435996 0.0108034 +-0.0629926 0.156114 0.0183129 +0.0432806 0.100121 0.0101615 +-0.0634166 0.118511 0.0453283 +-0.0718747 0.151003 0.0373736 +-0.0693203 0.155248 -0.0509683 +-0.058528 0.0400924 -0.008802 +0.0150592 0.0590177 0.0497649 +-0.0136861 0.0570325 -0.0345667 +-0.02332 0.0391695 0.0384733 +0.0410592 0.0985428 -0.00379645 +-0.042915 0.0436274 -0.0183221 +-0.0324875 0.068969 0.0402984 +-0.0927384 0.122733 0.00927055 +-0.0697859 0.156365 0.01735 +-0.0525617 0.0403541 -0.0109145 +-0.0163792 0.186908 -0.0208435 +0.00555045 0.034504 0.00513967 +0.0259201 0.0406241 0.0333279 +0.0340795 0.103399 0.0336714 +-0.0295185 0.0579228 -0.0214101 +0.0443631 0.0475049 -0.00446946 +0.00261537 0.0341134 0.0122343 +-0.0104909 0.104437 0.0435533 +0.0240885 0.124582 0.018553 +-0.084606 0.0993653 -0.00159598 +0.0315994 0.0505647 0.0349136 +-0.0887091 0.0983318 0.0213821 +-0.0109917 0.177231 -0.0295208 +-0.00927372 0.0384768 0.00588152 +-0.0731505 0.0794744 -0.0135813 +0.0377774 0.0672774 -0.012792 +-0.0257539 0.157476 -0.0102144 +-0.0524923 0.0340498 0.0261507 +0.0359032 0.0905437 -0.0158269 +-0.0358241 0.0900699 -0.0240653 +-0.0507764 0.0715485 0.0397729 +-0.0857724 0.0872268 -0.000524277 +0.0122145 0.0850407 -0.0307351 +-0.0818191 0.154205 0.0234297 +0.0239009 0.12202 -0.0014718 +0.0509663 0.0446851 0.0122122 +0.0405026 0.0469928 0.0315524 +0.00123226 0.0769082 -0.0355253 +0.0395203 0.0569025 0.0311403 +-0.0861982 0.144641 0.0372484 +-0.0218898 0.0382146 0.0234539 +0.0278568 0.0643129 -0.0209613 +-0.06664 0.0601639 0.0127094 +-0.0682452 0.17678 -0.058273 +-0.0326534 0.0578275 -0.0120318 +0.0449519 0.0847263 0.00223902 +-0.0243874 0.0379977 0.0213348 +-0.0375049 0.0648832 0.0416292 +-0.049486 0.0531643 0.034537 +-0.00680823 0.0840973 -0.0379387 +-0.00662043 0.0383357 0.0156226 +0.0246827 0.0347978 0.0179097 +0.052528 0.0664738 0.0271694 +-0.017323 0.112508 -0.01916 +-0.0589359 0.0481542 0.00467247 +0.0560814 0.0704234 0.0216351 +0.0445162 0.087501 -0.00181141 +0.0204668 0.0400207 -0.013702 +-0.0828557 0.0979824 0.0311146 +0.0393677 0.0547517 -0.00623241 +-0.0301563 0.0382285 0.0524978 +-0.0740972 0.155492 -0.0239137 +-0.0266047 0.0397022 -0.0293069 +0.0044664 0.0344032 0.010526 +-0.0644057 0.16752 -0.0356951 +-0.085796 0.123875 -0.00272102 +-0.0251727 0.175641 -0.0195733 +-0.0147266 0.0922559 -0.0359307 +0.0166529 0.120978 0.0330533 +-0.0652865 0.1555 -0.0467797 +-0.0622893 0.15065 -0.0135783 +-0.0173344 0.128368 0.0119773 +-0.044366 0.0366412 -0.0232589 +-0.0913152 0.114759 0.0363194 +-0.0647364 0.118589 0.0486106 +0.011956 0.0976358 -0.0233787 +-0.0378922 0.04725 -0.0183117 +-0.079848 0.116269 0.0487575 +0.0431642 0.0987038 0.0171581 +-0.0334777 0.0546734 0.0376709 +-0.0677151 0.171772 -0.0397619 +-0.0124935 0.123722 0.0323282 +-0.00945147 0.0352364 0.0483453 +-0.0729035 0.125275 -0.00849683 +-0.0837744 0.107497 0.00138169 +-0.0529962 0.0461208 0.0157076 +-0.0677529 0.141137 0.0442717 +-0.0840303 0.151908 0.0287412 +-0.0636039 0.0445634 0.0326846 +0.0192911 0.109605 -0.016128 +-0.0838969 0.104764 -0.000610535 +-0.0887185 0.143427 0.0331607 +-0.0929968 0.130998 0.0182299 +-0.0543463 0.160987 0.00512087 +-0.0909281 0.132287 0.0082314 +-0.0354987 0.113848 0.0338946 +-0.0465077 0.088954 0.0443573 +0.0301352 0.0955658 0.0419698 +-0.0199202 0.0381456 0.0185107 +-0.0186134 0.161522 -0.0143726 +-0.0646921 0.0617226 0.0224003 +0.0222832 0.066418 -0.0268569 +-0.0661617 0.0353568 0.0288449 +0.0192795 0.122165 0.0310901 +-0.00560235 0.0406015 -0.0258376 +-0.0404738 0.108409 0.038128 +0.0420248 0.0710795 0.0289899 +0.0450277 0.0945898 0.0071675 +-0.0490784 0.153156 -0.00527602 +-0.00149713 0.0689596 0.0566805 +-0.0709057 0.106531 -0.0119068 +-0.0626824 0.0436041 -0.00418427 +-0.066536 0.166455 -0.0250024 +-0.0218698 0.104438 -0.0229686 +-0.0731886 0.149857 -0.036868 +-0.0122347 0.0392642 0.0504717 +-0.0935435 0.118764 0.0233045 +-0.0797382 0.10948 0.0394939 +-0.0892801 0.091541 0.0104497 +-0.0547119 0.146209 0.0284156 +-0.00241231 0.037367 0.0100902 +0.000818555 0.130756 0.00282721 +0.04586 0.0820013 0.00419826 +-0.0250963 0.0348756 0.0487637 +-0.0673565 0.112647 0.0446949 +-0.0634506 0.15272 2.24523e-05 +-0.0706828 0.180611 -0.0569213 +-0.0205931 0.163965 -0.00888333 +0.0115331 0.101889 -0.0218781 +-0.0664983 0.102849 0.0407048 +0.0185027 0.118159 0.035136 +0.0458454 0.0834099 0.00517797 +-0.00887527 0.109466 -0.0219533 +-0.0858669 0.119072 -0.00140229 +-0.0102872 0.0344076 -0.0184603 +-0.0211482 0.169745 -0.0200914 +-0.00849115 0.111421 0.0423213 +-0.0613599 0.128292 0.04114 +-0.0076798 0.0569676 -0.0334142 +-0.0710297 0.16381 -0.0459687 +-0.0454992 0.112558 0.0357052 +-0.0343115 0.126654 0.00282732 +0.0360267 0.110062 0.0258818 +0.0368044 0.0942002 -0.0116901 +-0.0421812 0.123012 0.0251172 +-0.066012 0.139954 -0.00779963 +0.00198723 0.123051 -0.0105036 +0.0172553 0.072257 -0.0294021 +-0.013113 0.184484 -0.0260544 +-0.072893 0.152634 -0.0368963 +-0.0938278 0.128299 0.0222532 +-0.0675171 0.0409229 0.0105489 +-0.0735479 0.162209 -0.012171 +-0.0517008 0.0626767 0.0322349 +-0.0433082 0.037957 -0.0253239 +-0.0516781 0.0345962 0.0381142 +-0.0046354 0.0467251 -0.0296701 +-0.0777504 0.112676 -0.00382147 +-0.0281162 0.181397 -0.0109687 +-0.047699 0.144615 0.00435323 +-0.0663959 0.148276 0.0393784 +-0.0249816 0.15956 -0.0126947 +-0.00758477 0.0968518 -0.0305822 +-0.019536 0.116371 -0.0152209 +-0.0298632 0.102958 -0.0228236 +-0.0224181 0.05387 0.0440179 +-0.0625128 0.145366 0.0377954 +-0.0843383 0.133967 0.0484219 +-0.00452146 0.0443187 0.0472734 +0.000177098 0.0839833 -0.0361114 +0.0207016 0.113271 -0.0140876 +-0.065484 0.0847424 0.0442074 +-0.0201913 0.175663 -0.0226485 +-0.0364476 0.166788 -0.00019754 +-0.0206091 0.162049 -0.0149623 +0.0350254 0.0700182 0.0383083 +-0.0455491 0.131451 0.0178282 +0.00819795 0.130005 0.00128654 +-0.0353536 0.12061 0.029103 +-0.0271732 0.169704 -0.0183584 +-0.0657382 0.0436129 0.0101245 +-0.0722291 0.166627 -0.044985 +0.0309191 0.0539829 -0.0147501 +-0.0308747 0.056662 -0.0163864 +-0.0867734 0.123909 -0.00174219 +-0.0279078 0.0347965 0.0447705 +0.0191594 0.100268 -0.0222959 +-0.0154293 0.0382918 0.0211029 +-0.0578159 0.0636603 0.0309898 +-0.024177 0.172689 -0.0201134 +-0.0669849 0.0359436 0.0326963 +-0.0879792 0.086094 0.00648058 +-0.0181742 0.169737 -0.0210312 +-0.0170499 0.122405 0.0312344 +0.00906582 0.123154 0.0343752 +-0.034503 0.0874637 0.0428605 +0.0391693 0.108394 0.0111647 +-0.0917004 0.143358 0.0201656 +0.027747 0.0902677 -0.021551 +0.0430843 0.0496743 0.0322331 +-0.0791989 0.150078 -0.000876106 +-0.0259631 0.177171 -0.00957335 +-0.0395279 0.079033 0.0429651 +0.0302372 0.118499 0.00231637 +0.0449793 0.061326 -0.0034541 +-0.0376334 0.0548474 -0.0107543 +-0.0274342 0.111364 -0.0178958 +-0.0315627 0.048073 -0.0232988 +-0.018823 0.121694 -0.0088173 +0.00895989 0.0979651 -0.0237371 +-0.0254423 0.0473682 0.0503166 +-0.046654 0.0606571 -0.0123502 +0.0606526 0.0595573 0.0131644 +-0.0873547 0.094105 0.00537923 +-0.0202891 0.184471 -0.0210772 +-0.093713 0.126863 0.0152623 +0.00938205 0.0449001 -0.0251557 +-0.0903092 0.140666 0.025165 +-0.0676501 0.0667159 0.0297862 +-0.0164899 0.0602176 0.0520938 +0.019355 0.0565693 -0.0275356 +0.0104604 0.0340987 0.00091581 +-0.0785409 0.166665 -0.0309637 +-0.018017 0.0390618 0.0526069 +0.0189962 0.123953 0.0281041 +-0.0814357 0.0734392 0.00553468 +-0.0223732 0.03801 0.0163235 +0.0110271 0.112101 -0.0187639 +0.0456518 0.0904151 0.00617296 +-0.0789509 0.170805 -0.0389931 +-0.0312407 0.0510927 0.0390643 +0.0359235 0.106756 -0.00582268 +-0.0815808 0.0950721 -0.00753639 +-0.0849546 0.0871617 -0.00253673 +-0.0265403 0.0592021 0.0383808 +0.0398305 0.0739567 0.0329917 +-0.00085919 0.0358547 0.00813469 +-0.0747624 0.0700921 -0.00148683 +0.0313786 0.113275 -0.00606229 +-0.0902327 0.124018 0.00527185 +0.0268091 0.0506065 0.038521 +-0.0727909 0.0685075 0.0271607 +-0.0578274 0.0666818 0.0354001 +-0.0738208 0.0921589 -0.0148323 +-0.0390631 0.127858 0.0143467 +-0.00922314 0.174168 -0.0285672 +-0.0035205 0.039017 -0.00265492 +0.0435098 0.098719 0.0141568 +-0.0493916 0.144765 0.00938332 +0.0189816 0.0563976 0.0484166 +-0.0731928 0.064943 0.0125198 +0.0453289 0.0833826 0.0211694 +-0.0211162 0.1638 -0.0163957 +-0.0306102 0.125527 0.00421635 +-0.0262987 0.113585 -0.0162365 +0.0252163 0.1238 0.0175509 +-0.0237403 0.0669252 -0.0352956 +-0.00549562 0.0472961 0.0485942 +0.0045023 0.122399 0.0348631 +-0.0701614 0.178224 -0.0493215 +-0.0173769 0.125333 -0.00267782 +-0.0470115 0.129603 0.00120357 +-0.0317094 0.0374952 0.0310681 +-0.0297217 0.0382812 -0.0035606 +-0.0415986 0.169934 0.00129157 +-0.064505 0.152553 -0.0362048 +-0.0667255 0.178008 -0.0524224 +-0.0236086 0.0335974 -0.0240827 +-0.0156885 0.0555599 -0.0339026 +0.0182783 0.0708328 -0.0291795 +0.0541184 0.0510309 0.0235647 +-0.0765193 0.119025 0.0524244 +-0.0118673 0.0339713 -0.0202424 +0.00548892 0.118228 0.0378342 +-0.067477 0.0336926 -0.00520632 +0.0168316 0.0926978 0.0490711 +0.0255432 0.0768418 0.0475089 +-0.0617634 0.0795901 -0.0189973 +-0.0156786 0.0526029 -0.032522 +0.000420458 0.036172 -0.0244623 +-0.0256593 0.0810401 0.0523557 +0.026836 0.0634537 -0.0220606 +-0.0621975 0.166246 -0.0505873 +0.0578529 0.0523616 0.0171842 +-0.0217254 0.126122 0.00269746 +0.0235742 0.124212 0.0226421 +-0.0578055 0.0883401 -0.0213124 +-0.0798409 0.103395 0.0321858 +-0.0123464 0.178658 -0.023274 +0.0212154 0.0476501 0.0409677 +-0.0342487 0.0752311 -0.0224883 +-0.0230529 0.0839079 0.0553134 +-0.0214993 0.112665 0.0388138 +-0.0327955 0.0873016 -0.0254019 +0.0258836 0.0605349 0.0443599 +-0.0096598 0.0907753 -0.0363722 +0.0450284 0.0875565 0.0211548 +0.0334239 0.0414863 -0.00351395 +-0.0488087 0.138617 0.0133952 +-0.0658054 0.0924099 -0.017991 +0.0104979 0.0896334 0.054299 +-0.0043048 0.123153 -0.010566 +-0.0174665 0.17272 -0.016673 +-0.0344763 0.0561322 0.0383021 +-0.0857072 0.152777 0.0118249 +-0.0575671 0.0494422 0.00671449 +-0.0430533 0.0345113 0.0330204 +-0.065164 0.147357 -0.0239331 +-0.0326268 0.0520227 -0.0107626 +-0.067905 0.106631 -0.013438 +-0.0258738 0.125824 0.0147443 +0.0544233 0.0635568 0.0276516 +-0.0872747 0.139127 0.00719289 +-0.0315055 0.109789 0.0377033 +-0.0763386 0.161799 -0.0152953 +0.0232414 0.0663429 -0.0257954 +0.0174948 0.109841 0.0394103 +-0.0507289 0.129704 0.0318965 +-0.0425042 0.0577064 0.0400486 +0.022545 0.0955327 0.0468247 +0.0403951 0.0475373 -0.00531603 +0.0183271 0.0475932 -0.02269 +-0.0572639 0.0601869 -0.00219809 +-0.0852337 0.104506 0.0248257 +-0.0933098 0.126856 0.0132534 +0.0352918 0.108619 -0.00504659 +-0.0628349 0.0939281 -0.0188357 +0.00277101 0.099815 0.0475918 +-0.0637196 0.147938 -0.020833 +-0.0636347 0.156368 -0.0124044 +-0.0882602 0.111934 0.0373837 +0.0451564 0.0931924 0.00517592 +-0.0883906 0.0874807 0.0144622 +-0.0179879 0.0654395 0.0522544 +-0.0334338 0.0382234 0.0500909 +-0.00283875 0.0389996 -0.00436591 +-0.0295052 0.11528 0.03366 +-0.00151332 0.104469 0.0441334 +0.0194927 0.0906432 0.0481529 +-0.0877693 0.113692 0.0289151 +-0.0661933 0.0335338 -0.00299624 +-0.0273899 0.0499801 0.045145 +-0.0338474 0.0972112 -0.023083 +-0.075849 0.149415 0.0390624 +0.0325609 0.114759 0.0260072 +-0.0821806 0.0776422 0.0235195 +-0.0759474 0.151351 -0.0188826 +0.013384 0.043414 -0.024368 +-0.0077421 0.0340597 -0.0195129 +-0.00965525 0.0511768 -0.0320162 +-0.0677487 0.111258 0.0407689 +-0.0214969 0.0461967 0.0522939 +-0.0466073 0.0518764 -0.00969859 +0.0357625 0.0364791 0.0131618 +-0.0124847 0.111379 0.041672 +-0.079194 0.0832222 0.0349745 +-0.0926331 0.130966 0.0142325 +0.00419789 0.123154 -0.0106599 +0.00969178 0.121836 0.0352946 +-0.0295306 0.123946 -0.00125424 +-0.0711733 0.128436 0.0516087 +-0.0585141 0.0386878 -0.00928985 +-0.0739244 0.0668664 0.00165643 +-0.0424856 0.0410553 0.0431368 +-0.0176939 0.162435 -0.0154936 +-0.00215916 0.0369163 -0.0154166 +0.0205271 0.126116 0.00440152 +0.000359464 0.0907103 -0.0342066 +0.038908 0.0631632 0.033303 +0.0223132 0.124739 0.023599 +-0.070737 0.159582 -0.0449318 +-0.0281334 0.155101 -0.00344078 +0.0323761 0.107397 0.032947 +0.0390072 0.0393837 0.00207442 +0.0420748 0.0457918 0.0297783 +-0.0187683 0.0699858 -0.0381989 +0.0176298 0.0382941 -0.0187111 +-0.0688111 0.0922897 -0.0164711 +0.0419266 0.101462 0.0171593 +0.00341059 0.0376223 -0.0244648 +0.0461634 0.0792418 0.0171768 +-0.0637535 0.0431846 0.0296789 +-0.0273632 0.0534705 -0.0254085 +-0.0394955 0.0562825 0.0399491 +0.00548498 0.0590856 0.0545593 +-0.0934182 0.124107 0.0122673 +0.0324897 0.100233 -0.014155 +-0.00952254 0.0688375 0.0554289 +0.0191204 0.042209 0.0431814 +0.0195848 0.035993 0.00660837 +-0.0748916 0.10354 -0.0108565 +-0.0685642 0.0406581 -0.00126009 +-0.0225344 0.118142 0.03379 +-0.013583 0.0386256 -0.002471 +-0.0898618 0.113382 0.0394321 +0.0601893 0.0595178 0.0171788 +-0.0630097 0.121328 0.0458592 +-0.0196415 0.0725672 0.0536854 +-0.0211896 0.172692 -0.021286 +0.024653 0.104647 -0.0168345 +-0.0795268 0.096746 0.0348816 +0.0485163 0.0672488 0.000612911 +0.0400064 0.0422019 -0.00166327 +-0.0197891 0.0785016 -0.0390423 +-0.0260568 0.0375908 -0.0291887 +-0.00717802 0.130589 0.0142265 +0.0156678 0.0346738 -0.0117297 +0.0424576 0.0845381 -0.00679736 +-0.0302701 0.0365155 -0.0302567 +-0.0274598 0.0863801 0.0483431 +-0.0831854 0.11075 0.0323354 +-0.0514986 0.109783 0.0378241 +-0.0183396 0.126605 0.021835 +-0.0497522 0.0716181 0.0399477 +0.0165016 0.116787 0.0362663 +-0.0670324 0.0672056 0.0312385 +0.0201473 0.0414664 -0.0187017 +0.0364932 0.0484054 0.0314672 +-0.0501327 0.159092 -0.00542351 +-0.0752763 0.0667216 0.0105318 +-0.0341695 0.0337715 0.0105094 +0.0137891 0.103175 -0.021246 +-0.073587 0.148629 -0.0261691 +-0.0169441 0.184483 -0.0249355 +-0.0097273 0.130072 0.0104159 +-0.00405402 0.0391419 -0.01222 +-0.0887371 0.0955614 0.00743378 +-0.0864769 0.0806081 0.0125015 +0.040053 0.107027 0.0101639 +-0.042812 0.14778 0.00347562 +0.0248383 0.0835695 -0.0246296 +0.0277899 0.116538 -0.00556904 +-0.0291577 0.0380555 0.005854 +-0.0525571 0.150877 0.0178 +-0.0639921 0.134062 -0.00777265 +-0.0838901 0.110998 0.0281595 +-0.0134922 0.107228 0.0429665 +-0.0586918 0.149676 0.0345486 +-0.0616651 0.119834 0.0424717 +0.0456475 0.0890064 0.00517807 +-0.0089791 0.0383636 0.0133044 +-0.0903646 0.135051 0.0122148 +0.0317594 0.0835691 0.0424885 +-0.0240368 0.11082 -0.0193477 +0.0271768 0.112761 0.0342135 +-0.0356473 0.116902 -0.0136714 +-0.0739197 0.151223 0.0366634 +0.0410535 0.0759945 -0.00777525 +-0.0734182 0.169757 -0.0275332 +-0.00232938 0.0359607 0.0474459 +-0.085737 0.110915 0.0387737 +-0.0775985 0.123137 0.0521223 +-0.0748309 0.100681 -0.0121692 +-0.0866976 0.109058 0.0133472 +-0.0701875 0.0395708 0.00901355 +-0.0306891 0.120328 -0.00923215 +-0.045477 0.1214 -0.012376 +-0.033489 0.172734 -0.00156283 +-0.0565822 0.0339881 0.0253464 +-0.0404955 0.0451407 0.0414639 +-0.0555537 0.0420256 -0.00889368 +-0.0598777 0.102599 -0.0186645 +0.0592051 0.0552531 0.0121703 +-0.0758111 0.0741872 -0.00760517 +-0.038197 0.0342285 0.0289964 +-0.00312706 0.0390512 0.0319597 +0.0476183 0.0426691 0.0171605 +-0.0306281 0.0831438 0.0423752 +-0.049274 0.1386 0.00640083 +-0.0210747 0.0753924 0.0536136 +-0.093596 0.126936 0.0252692 +-0.0629825 0.129686 -0.00825839 +0.00470729 0.128083 -0.0039713 +-0.0335515 0.0373466 -0.0164398 +0.0425502 0.0637218 0.0280932 +-0.0707401 0.13973 0.0469958 +-0.0644842 0.0804582 0.0430441 +-0.0618671 0.112377 0.0367302 +-0.0698247 0.169548 -0.0276555 +-0.0863191 0.0806082 0.0115067 +-0.0216814 0.0523409 -0.0297011 +0.0377238 0.110496 0.0121805 +-0.0689171 0.158096 -0.0529848 +-0.067181 0.156627 -0.0534662 +-0.0268045 0.0811284 -0.0369845 +-0.0546722 0.139567 0.0297056 +-0.0554146 0.0649279 0.0339175 +-0.0193967 0.186852 -0.0171886 +-0.0357817 0.0351096 0.0179926 +-0.0718839 0.173642 -0.0520314 +-0.0409497 0.0337305 -0.016439 +0.0396966 0.105593 0.0211678 +-0.0789279 0.0699144 0.0158521 +-0.0414163 0.0476371 -0.0122303 +-0.00671791 0.0642099 -0.0355692 +0.0547677 0.0509942 0.0227339 +-0.0686614 0.0735088 -0.0131618 +-0.0738123 0.0655371 0.0172042 +-0.0904479 0.129526 0.00625875 +0.0197334 0.044328 -0.0216983 +-0.0896348 0.140659 0.0301806 +-0.00748945 0.0870384 0.0571349 +0.0217161 0.119158 -0.00841047 +-0.0545346 0.125365 -0.00640975 +0.0368294 0.108237 -0.00182731 +-0.0672538 0.152901 0.0344187 +-0.0807043 0.0827741 -0.00656651 +-0.0305099 0.113915 0.0346878 +-0.0721764 0.154012 -0.0399025 +-0.045061 0.130334 0.0180279 +-0.00652053 0.0688834 0.0561767 +-0.0444953 0.0817848 0.0424707 +-0.0874489 0.105009 0.0173545 +-0.0175711 0.0387182 -0.00892429 +0.000506539 0.0883906 0.0565122 +-0.0265193 0.12549 0.0159805 +-0.0464789 0.0917181 0.0434263 +0.0455125 0.0918121 0.0101608 +-0.0834627 0.110719 0.0412267 +-0.057205 0.0480928 0.032667 +0.00517049 0.0350387 0.0228068 +0.0457999 0.0820138 0.0191697 +-0.0420324 0.171559 -0.00171063 +-0.0475118 0.128596 -0.00180437 +0.0204841 0.0948066 0.0474378 +-0.0719895 0.163815 -0.0429694 +-0.0644943 0.0861671 0.0446171 +0.00851416 0.06604 0.0550264 +-0.0670308 0.141141 0.0435296 +-0.0848818 0.142006 0.0416598 +-0.0384808 0.106985 0.038039 +0.0180116 0.0754634 0.0524537 +-0.0725251 0.155433 -0.0349062 +0.0182337 0.128007 0.0135344 +-0.0233093 0.162498 -0.00577898 +-0.0850563 0.112998 0.00231897 +-0.0823398 0.145942 0.00119384 +-0.0852211 0.103481 0.00138673 +-0.071875 0.136886 0.0488574 +-0.0794627 0.138625 0.0485832 +-0.0435009 0.117967 0.030956 +-0.038588 0.0341641 0.0271976 +-0.0408255 0.0914222 -0.0231618 +-0.0551021 0.154591 -0.0020359 +-0.0748456 0.159073 -0.00827714 +-0.0621666 0.152205 -0.0155784 +-0.0494972 0.0776899 0.0438666 +0.00751862 0.0799738 0.0554444 +0.00532494 0.0625045 -0.0319907 +0.00237701 0.131635 0.0162813 +-0.0546261 0.151324 0.0271982 +-0.0236176 0.123316 0.0244011 +0.00251869 0.05336 0.0534808 +0.0225511 0.0888829 0.0485585 +-0.0370273 0.174099 -0.0109221 +-0.090997 0.129691 0.0382289 +-0.0732672 0.148476 -0.0292583 +-0.053498 0.0465766 0.0420409 +-0.0330184 0.0474571 0.0438647 +-0.0246064 0.033636 -0.0243161 +-0.0234471 0.125053 0.0200484 +-0.0830784 0.138234 -0.000100609 +0.0406549 0.0820323 0.0324674 +-0.0842996 0.0965857 0.0297797 +-0.0527544 0.03448 0.0379838 +-0.0799451 0.15529 0.0167266 +-0.057093 0.0521243 0.00061739 +0.0154036 0.0477404 -0.0246897 +-0.060782 0.082481 -0.019648 +-0.0700267 0.166609 -0.0500213 +0.0451823 0.091796 0.014161 +0.0346837 0.106039 0.030986 +-0.0396713 0.0621627 -0.012718 +-0.05111 0.0375368 0.0465746 +-0.0688918 0.119449 -0.00874323 +0.000197079 0.035652 0.0464555 +-0.00149822 0.0661867 0.0567241 +0.00350858 0.074484 0.056374 +-0.0284992 0.0703316 0.0397848 +-0.0555164 0.0482866 0.0387265 +-0.0908309 0.136473 0.0182032 +-0.0634905 0.0861851 0.0447067 +-0.00918339 0.033864 -0.0215021 +-0.0748916 0.123775 -0.00787892 +-0.0270496 0.033483 -0.0265278 +0.00488911 0.035483 -0.0145807 +-0.0442085 0.165146 -0.00911238 +-0.0322103 0.0386054 -0.0136114 +0.0190336 0.11528 0.0364777 +-0.000494586 0.0897644 0.0562541 +-0.0350004 0.157209 -0.0112204 +-0.0635638 0.147341 -0.0176577 +-0.0902987 0.121315 0.00530766 +-0.0705068 0.102745 0.0389474 +-0.0662636 0.175335 -0.0598585 +-0.0239792 0.0680021 0.045464 +0.0413142 0.0637288 -0.00386959 +-0.051889 0.108419 -0.0189045 +-0.0477652 0.131125 0.00158524 +-0.0400469 0.169775 -0.0108504 +-0.0755266 0.109807 -0.00760163 +0.00107791 0.130709 0.0215491 +-0.0655994 0.0349763 0.0155159 +-0.0628742 0.161547 -0.05443 +0.0359645 0.0981106 0.0346243 +0.00934693 0.129002 0.0260013 +-0.0768843 0.109139 0.0404116 +-0.010503 0.0674297 0.0550101 +-0.028646 0.0535523 0.0364431 +-0.072824 0.0936306 -0.0150907 +0.028615 0.035804 0.0196241 +0.0282076 0.0706829 -0.0227535 +0.0596824 0.0622541 0.020173 +-0.0025152 0.0575969 0.0540026 +0.000110958 0.036978 0.020027 +-0.0273656 0.0360131 -0.0296152 +-0.0624735 0.0344952 0.0183787 +-0.0360892 0.159232 -0.0124312 +0.0418577 0.100066 0.0211691 +-0.063571 0.122754 0.0468224 +0.0523857 0.0624129 -0.0025136 +0.0383109 0.0632029 0.0342252 +-0.0144971 0.0786767 0.0566892 +-0.0928565 0.129591 0.0132418 +-0.0681034 0.152856 -0.0481556 +-0.0746787 0.169356 -0.0440586 +-0.0335137 0.107031 0.0389932 +0.0424926 0.0583469 0.0313486 +-0.0223256 0.0637459 0.0453694 +-0.0648797 0.106687 -0.0146649 +0.0250125 0.0632249 0.0448766 +-0.0624284 0.159959 -0.0405984 +0.00349445 0.12099 0.0360851 +0.022067 0.0981797 0.0461337 +-0.0734899 0.123206 0.0535424 +-0.0321688 0.171168 -0.015915 +-0.0848969 0.106313 0.0233612 +-0.067172 0.174543 -0.0467986 +0.0246727 0.0884534 -0.0236513 +-0.0504949 0.0477308 0.0397221 +-0.064202 0.155431 -0.0413859 +0.00347944 0.095162 0.0537659 +0.0105108 0.100431 0.0479236 +0.021311 0.123415 0.0275211 +0.0415141 0.104253 0.009162 +-0.0617635 0.0387159 0.0237173 +-0.0044982 0.0952431 0.0547633 +0.0398123 0.066053 -0.00878746 +-0.00271622 0.0627636 -0.0349069 +-0.00914442 0.0387021 0.000210725 +-0.0814422 0.106028 0.0294684 +-0.0136643 0.0922643 -0.0359313 +0.0420557 0.0676716 -0.00377172 +-0.0364793 0.0945677 0.0439429 +-0.05033 0.0517928 0.0340061 +-0.0470088 0.130577 0.00217989 +-0.0286777 0.158132 0.000508817 +0.0185266 0.0345532 0.000246197 +-0.0147199 0.184604 -0.0232088 +-0.0384921 0.111131 0.0361977 +-0.0384978 0.102835 0.0403416 +-0.0215751 0.0667511 0.0487462 +-0.0887264 0.0996152 0.00841821 +-0.060662 0.0644224 -0.00688354 +0.0397235 0.080129 -0.010751 +-0.0136601 0.0389486 0.0334846 +-0.0106876 0.129553 0.00573838 +0.00810435 0.0348429 0.0181346 +0.0256081 0.104449 -0.0166247 +-0.0682325 0.168499 -0.0270627 +-0.0474794 0.0917467 0.0438194 +0.00950115 0.119644 0.0365249 +0.0437324 0.0790794 0.0263023 +-0.0905234 0.132421 0.0302253 +-0.0748541 0.107208 0.0370405 +-0.0943565 0.12553 0.0182582 +-0.0131926 0.0378477 0.0507876 +-0.0570855 0.0480965 0.0356642 +-0.04493 0.0346468 0.0377647 +-0.0665925 0.064199 -0.00375071 +-0.0829976 0.133839 -0.00205551 +-0.0406365 0.0548831 -0.0112562 +-0.00950098 0.0884225 0.0571104 +0.0335068 0.0468989 0.0306812 +4.31947e-06 0.034593 -0.0165995 +-0.0725884 0.155473 0.0265843 +-0.0755167 0.0714511 -0.00453448 +-0.0669139 0.0704667 0.0354638 +-0.069981 0.180634 -0.0574865 +-0.0116389 0.034923 0.0481436 +-0.0307766 0.0720324 -0.0295197 +-0.0178239 0.107521 -0.0218927 +0.020822 0.043607 0.0421342 +-0.025466 0.0460651 0.0509844 +0.0349766 0.11396 0.0183585 +-0.0599273 0.122373 -0.00867944 +0.0365334 0.0980835 0.033685 +-0.0621481 0.159972 -0.0385982 +-0.0915531 0.115336 0.039285 +-0.0888763 0.0982745 0.00841224 +-0.00324635 0.130613 0.0199814 +-0.0668526 0.0914559 0.0435065 +0.0175786 0.0475536 0.0427473 +0.0318002 0.118052 0.00717688 +-0.0414667 0.104283 0.0404247 +0.0562407 0.0648113 0.00118357 +-0.0753758 0.170369 -0.0311391 +-0.0620405 0.138434 -0.00686017 +-0.00249822 0.0870283 0.0569791 +-0.0542914 0.129735 0.0355428 +-0.0274963 0.100194 0.0434874 +-0.00951883 0.17115 -0.0217635 +-0.0305995 0.121953 0.0248664 +-0.0770757 0.068957 0.00853894 +0.0135031 0.119752 -0.013055 +0.0413777 0.0491221 -0.00619394 +-0.0669027 0.0396709 0.012801 +-0.0249365 0.0607087 0.0409751 +-0.0124795 0.0517352 0.0508543 +-0.0304 0.0650386 -0.0254348 +-0.0267061 0.0765373 0.0464972 +0.0196875 0.0385058 -0.013693 +0.0518591 0.0461434 0.019211 +-0.0447475 0.146272 0.00240034 +-0.0336457 0.0562895 -0.0107616 +0.0237552 0.0887468 -0.0239425 +-0.000502572 0.0965565 0.053664 +-0.0664522 0.0376478 0.0363332 +-0.041205 0.169789 -0.00987939 +-0.0630084 0.142674 -0.00705706 +-0.0305333 0.178655 -0.00565353 +-0.0137626 0.0784616 -0.0384771 +-0.0616465 0.0397266 0.0174413 +0.00939844 0.0418898 -0.0239164 +0.0403895 0.0519763 -0.00684208 +0.00239172 0.0434053 -0.0248906 +-0.0663598 0.15609 0.0142173 +-0.0667166 0.136853 0.0439657 +-0.0132042 0.171245 -0.025107 +-0.0511148 0.117699 -0.0144446 +-0.0686887 0.0620968 0.00507892 +-0.066502 0.0889512 0.0442634 +-0.0531749 0.0487012 0.0129919 +-0.0464945 0.0532702 0.037612 +-0.0763048 0.0702707 0.00153293 +0.00237024 0.0481449 -0.0294793 +-0.0669085 0.108072 -0.0133167 +-0.0614834 0.166203 -0.0576271 +0.028089 0.0929174 0.0442737 +-0.0239187 0.036252 -0.0191133 +-0.0394562 0.0347283 0.0406132 +-0.0679286 0.17514 -0.0470724 +-0.0737519 0.14858 -0.0228576 +-0.0335079 0.105635 0.0395993 +-0.0780357 0.0769322 0.031104 +0.047273 0.0720618 0.00573289 +-0.0566027 0.0562228 -0.000407584 +-0.0336617 0.0592604 -0.0121578 +0.0390714 0.108406 0.0131668 +-0.067572 0.158668 -0.00806913 +-0.0668441 0.0995074 -0.0160123 +-0.0155786 0.0348181 -0.0259692 +0.0524799 0.0636428 -0.00173686 +-0.0666208 0.161046 -0.0135117 +0.012487 0.118181 0.036207 +0.00850767 0.067431 0.0550095 +-0.0568164 0.0333332 -0.00454462 +-0.00056724 0.0909565 -0.0345037 +0.0122553 0.0695892 -0.0315106 +-0.0747099 0.0713354 -0.00558545 +-0.0151964 0.178666 -0.0203777 +-0.0707468 0.161979 -0.010709 +-0.00364517 0.0496603 -0.0307711 +0.0292759 0.0787271 -0.0215887 +-0.0606931 0.0659255 -0.00858452 +-0.055281 0.0594285 0.0232183 +0.0168274 0.0658911 0.0506364 +-0.0286315 0.159193 -0.0128611 +-0.0753259 0.0689002 0.0227894 +-0.0278046 0.0364789 0.0536304 +-0.020238 0.0938075 -0.0335417 +-0.0787919 0.108745 0.0367247 +-0.0627356 0.150882 -0.0252578 +-0.0374903 0.111156 0.0359971 +0.0123741 0.0494269 -0.0274814 +-0.0550935 0.0685958 0.0378502 +0.0152655 0.0695272 -0.0306629 +0.0304209 0.0460912 -0.00653037 +-0.0896888 0.137919 0.0321971 +-0.076768 0.156222 -0.00903892 +-0.0177411 0.17422 -0.017052 +-0.0582856 0.0695544 0.0380966 +-0.0710157 0.179813 -0.0510815 +-0.0283604 0.112635 -0.0172343 +-0.0441537 0.0408799 -0.0213021 +0.0104769 0.0949778 0.0509942 +-0.00239285 0.100006 0.0487279 +0.0421962 0.0929549 -0.00479827 +0.0401191 0.0900359 0.0318057 +0.0226855 0.103953 -0.0180758 +-0.0705692 0.037778 -0.000833243 +0.0213756 0.0429924 -0.0177346 +0.0141656 0.0475343 0.0448184 +0.02539 0.0849287 0.0474039 +-0.0485578 0.0361757 -0.0124661 +0.0237226 0.0699627 0.0465409 +-0.062494 0.155703 0.00979223 +-0.0499478 0.135176 0.00116888 +-0.0731261 0.154051 -0.0329012 +-0.0565591 0.0344267 0.0337344 +-0.0757231 0.155771 0.0225635 +-0.081733 0.0783168 0.0273929 +-0.0465781 0.0504461 -0.00966731 +0.0370638 0.0376395 0.0160314 +0.0401736 0.0801429 -0.00978947 +-0.0295615 0.171229 -0.00778742 +-0.0625363 0.158377 -0.0386027 +-0.0482692 0.133969 0.0226705 +0.00454759 0.0341639 -0.0171912 +-0.0620171 0.153759 -0.016582 +-0.0878261 0.11219 0.0337097 +-0.05597 0.0519966 -0.00239063 +0.0400386 0.0871415 -0.0117889 +0.0205921 0.0807207 0.0509473 +-0.0296224 0.0352251 0.019146 +-0.0381589 0.163687 -0.0131595 +-0.0675595 0.163657 -0.0167503 +-0.0522361 0.15086 0.0163848 +0.0360023 0.103374 0.0311349 +0.0272712 0.0929162 0.0448522 +-0.0277389 0.0423333 0.0528015 +-0.0824451 0.140729 0.0449221 +-0.0329396 0.0386558 -0.0303928 +0.0296623 0.114075 -0.00693776 +-0.0221975 0.0652175 0.046591 +0.045212 0.0819736 0.0221688 +-0.0258761 0.0796032 0.0512286 +0.0272389 0.0873294 -0.0222582 +0.00242016 0.0361514 -0.024222 +-0.0615581 0.145382 0.0374116 +-0.0695688 0.160974 -0.049948 +-0.0858053 0.0953564 -0.000572964 +-0.0464927 0.165223 0.0045927 +-0.0624159 0.15064 -0.016574 +0.0473464 0.0561746 -0.0057008 +0.0237088 0.0942271 0.0467477 +-0.0494979 0.0762481 0.043343 +-0.078769 0.165248 -0.0339573 +-0.00950205 0.12806 0.0264334 +0.05377 0.0682444 0.00163269 +-0.0679209 0.163786 -0.054975 +0.0290078 0.087549 0.0438096 +-0.0840398 0.132376 -0.0018283 +-0.0306543 0.0650659 -0.0244333 +0.0322458 0.0355363 0.00770856 +0.00335212 0.131364 0.00663122 +-0.0154115 0.128891 0.0141212 +-0.0372876 0.0421099 0.0439093 +0.0308492 0.0931255 -0.0185705 +-0.029871 0.0459583 -0.0272702 +0.0300675 0.0822073 0.0435477 +0.000382137 0.128869 0.0270967 +-0.0174793 0.0730127 0.0550809 +-0.0387497 0.0782817 -0.0191475 +-0.0433943 0.0335852 -0.0186462 +0.0391881 0.0673984 -0.0107969 +-0.0280713 0.175691 -0.00734553 +0.0316149 0.0916151 0.0423373 +-0.0762132 0.0879097 -0.0135406 +-0.0316751 0.0665766 -0.0214412 +-0.00307655 0.0345443 -0.0171652 +-0.0426807 0.0636637 -0.0138633 +-0.0921228 0.126953 0.0372491 +-0.0235086 0.0347636 0.0474886 +-0.0506072 0.0546369 -0.00878713 +-0.0685971 0.162283 -0.0128033 +-0.0637348 0.156074 0.0136991 +0.0233928 0.0475951 -0.0196868 +-0.0519018 0.105587 -0.0193502 +-0.00551889 0.0746529 0.0585785 +0.000500504 0.0519731 0.0534094 +-0.0412672 0.0338015 -0.0128657 +-0.0819225 0.125087 -0.0048212 +0.00722702 0.0796252 -0.0338785 +-0.0893296 0.0956153 0.0124232 +-0.00167125 0.0554598 -0.0320096 +0.0267785 0.0402768 0.0313512 +-0.0867821 0.10632 0.010369 +-0.0451957 0.131364 0.0135329 +0.018149 0.0699846 0.0508404 +-0.0878008 0.119885 0.00028492 +-0.0612546 0.0341987 0.0206565 +0.0115009 0.111256 0.0392728 +0.0152633 0.0751002 -0.0297036 +-0.0351444 0.0865581 -0.0244792 +0.000649673 0.0963928 -0.0300705 +-0.0345272 0.121283 0.0279162 +0.0296818 0.0815643 -0.0205093 +-0.03348 0.115008 -0.0157024 +-0.0728312 0.136891 0.0492499 +-0.00265601 0.0540246 -0.0319128 +-0.0422272 0.127744 0.0161624 +-0.0494399 0.119744 0.0319359 +-0.0574019 0.116942 0.0379675 +-0.0468361 0.0970763 -0.0219471 +-0.0616292 0.146031 -0.00460349 +-0.0933662 0.126937 0.0262691 +-0.0228186 0.161021 -0.00330981 +-0.0635624 0.152855 0.034229 +-0.0625195 0.144437 -0.00658249 +-0.0839827 0.0830482 -0.0025149 +0.0144965 0.116791 0.0366152 +-0.0766305 0.155099 0.0076657 +-0.0365494 0.127902 0.0108341 +0.02042 0.126659 0.0186188 +-0.0470606 0.0628926 0.0375096 +-0.00665705 0.114661 -0.0174859 +0.0409886 0.104212 0.016155 +0.0264254 0.054947 0.041554 +-0.064618 0.0659249 -0.00682147 +0.0143052 0.127349 0.0263844 +-0.0254714 0.0379526 0.0103195 +0.0213669 0.0851498 -0.0262488 +-0.0469792 0.133264 0.00837709 +-0.0845615 0.0777561 0.014943 +0.0384886 0.0513309 0.0319844 +-0.0128833 0.165453 -0.0135102 +-0.0811951 0.147316 0.000164965 +-0.0523892 0.141597 0.0213852 +-0.045982 0.130505 0.00444274 +0.0279356 0.0520839 0.0384098 +-0.0931866 0.124098 0.0112689 +-0.0316005 0.0707575 -0.0264789 +0.00339515 0.0448431 -0.0258796 +-0.019688 0.0352649 -0.0192337 +-0.0492398 0.164062 -0.00484765 +-0.00759694 0.039172 -0.0259394 +-0.0456148 0.043386 -0.0114089 +-0.0706825 0.163806 -0.0469738 +-0.0111277 0.166928 -0.0162357 +0.0150914 0.0873948 0.0517971 +-0.0488841 0.0335499 -0.0104742 +0.0191832 0.0974256 -0.0227258 +-0.068761 0.17368 -0.0560297 +0.0347852 0.0821986 0.0398055 +-0.0656191 0.164967 -0.0232289 +0.0488884 0.0431235 0.0112233 +-0.0204394 0.0725535 0.0530664 +0.0198178 0.127196 0.0112616 +-0.0870347 0.13912 0.00619253 +-0.0619782 0.15683 -0.0335967 +0.0192552 0.0735767 -0.0281447 +-0.0582892 0.0589697 0.00149643 +-0.0794885 0.131664 0.0524764 +-0.0625817 0.159955 -0.0415973 +-0.0344319 0.0350721 -0.0182387 +0.0339652 0.0955609 0.0387182 +-0.0350568 0.0344135 0.0294961 +-0.00649976 0.0842428 0.0569087 +-0.0606247 0.0394421 0.0446315 +-0.066026 0.146409 -0.0228827 +0.0265887 0.0491527 0.0382012 +-0.0447519 0.078285 -0.0193632 +0.0442188 0.0833029 0.0251703 +-0.025021 0.178659 -0.00994683 +0.0382789 0.10977 0.00952257 +-0.0756137 0.176488 -0.0441876 +-0.0706968 0.169922 -0.0279808 +-0.0514769 0.0344526 0.0347935 +0.00449209 0.108585 0.0419458 +0.0591616 0.0552765 0.0151753 +0.0295012 0.0578054 0.0407589 +0.0323993 0.0505614 -0.00746951 +-0.0570338 0.131087 -0.00617819 +-0.0304972 0.101559 0.0427282 +-0.00116978 0.0991573 0.0506694 +-0.0238077 0.0811303 0.0547388 +-0.00701023 0.0988653 -0.0267279 +-0.0156999 0.0584946 -0.0353551 +0.00922562 0.0809438 -0.0326125 +0.0453737 0.0474164 -0.00383546 +0.0044338 0.117686 -0.0167913 +0.0239341 0.0561524 -0.0247597 +0.0591083 0.0705376 0.015147 +-0.0594646 0.151494 0.0342364 +-0.0657091 0.157202 -0.00882727 +-0.0250337 0.0381576 0.00660247 +0.0420581 0.102887 0.0101643 +0.0436509 0.0403831 0.00924323 +-0.00449056 0.130995 0.0108991 +0.0044777 0.112767 0.0412512 +0.00553763 0.100304 0.04669 +-0.0942962 0.120123 0.0192891 +-0.0620801 0.0339964 0.0171254 +-0.0160023 0.128658 0.015367 +-0.0432963 0.128843 0.0142751 +-0.0634932 0.104261 0.0408123 +-0.0746115 0.103538 0.0368408 +-0.0222463 0.0739152 0.0519932 +-0.0544743 0.034136 0.0256577 +-0.0252277 0.12616 0.0135052 +-0.0320296 0.171249 -0.00429305 +-0.0132393 0.1837 -0.0278845 +-0.0324962 0.0718107 0.0406773 +-0.0765269 0.165965 -0.0237196 +-0.0833313 0.0829966 0.0292517 +0.0259015 0.0902483 0.0463733 +0.0095961 0.0354723 -0.00987583 +0.0511798 0.0581784 0.029952 +-0.0848476 0.0845966 0.0254873 +-0.0509379 0.131197 -0.00260501 +0.00252027 0.0730778 0.0562797 +-0.0135504 0.122737 -0.00796322 +-0.00761024 0.0420402 -0.0258045 +-0.0508461 0.134795 0.0276114 +-0.0804072 0.155064 0.0209566 +0.00350727 0.103765 -0.0218529 +-0.0106066 0.0420419 -0.0261259 +-0.0713436 0.0632651 0.0179295 +-0.067959 0.169303 -0.0298283 +-0.0236585 0.049302 -0.027521 +-0.069473 0.158882 -0.00587612 +-0.0766843 0.15421 -0.00390102 +-0.0220401 0.0852804 0.0556778 +0.0275877 0.0465825 -0.0117097 +-0.00852427 0.130326 0.0108566 +0.0130382 0.0344991 0.00293188 +0.0559458 0.0605187 0.000117677 +-0.0348266 0.0900917 -0.0242073 +-0.0890869 0.135136 0.0402764 +-0.0897624 0.136545 0.033205 +0.00547548 0.112757 0.0410095 +-0.0712367 0.159654 -0.00650092 +-0.0121993 0.177175 -0.0288808 +-0.0823069 0.0748418 0.00552391 +-0.054558 0.0460859 0.0144477 +-0.070487 0.0669606 -0.00253268 +-0.0556924 0.159448 0.00648476 +-0.00649361 0.105887 0.04408 +-0.0602281 0.059992 0.0213112 +-0.0580325 0.0579587 0.00923969 +-0.0338627 0.110196 -0.0186635 +0.0546876 0.0597691 -0.00173886 +-0.0625369 0.149102 -0.00757295 +0.0542703 0.0575789 -0.00178727 +-0.0088618 0.129865 0.0208462 +-0.0801514 0.109359 0.0377151 +-0.00679227 0.0798757 -0.0378854 +-0.0424904 0.0860159 0.0426903 +0.0479819 0.0723794 0.00739708 +-0.0560722 0.13957 0.0312222 +-0.0365138 0.0804626 0.0431357 +0.00167631 0.105337 -0.0215515 +-0.0775111 0.0860271 0.0374369 +0.0259521 0.11908 -0.00433188 +-0.0558236 0.0526652 0.00846948 +-0.0846054 0.11036 0.02536 +-0.0765518 0.15421 -0.000899711 +0.0127846 0.0699169 0.0536174 +0.0208082 0.1264 0.00735797 +-0.0504584 0.0502644 0.0363006 +0.0174244 0.125027 -0.00283112 +-0.0308709 0.178515 -0.0130008 +-0.00718543 0.0385691 0.00621806 +0.0407891 0.0886694 0.0309807 +-0.0357951 0.124657 -0.0058294 +-0.0554873 0.0400326 0.0469712 +-0.057026 0.0675163 0.0366088 +-0.0497286 0.133927 0.0265636 +-0.00790814 0.0384861 0.0079669 +-0.0811308 0.0841829 -0.00653469 +-0.010479 0.0991873 -0.02508 +0.00856046 0.0354979 0.0447263 +-0.0634822 0.166302 -0.0366942 +-0.0223475 0.0360366 0.0535038 +-0.0795325 0.124539 0.0521412 +-0.00951606 0.0745243 0.0569833 +-0.0130122 0.127478 0.0251829 +-0.0936226 0.120076 0.0132919 +-0.0540996 0.154592 -0.00271527 +-0.0879876 0.132208 0.00230713 +-0.034669 0.15585 -0.0101443 +-0.0197012 0.0598498 -0.0346368 +-0.0276791 0.155231 -0.00339809 +-0.0842452 0.0818537 0.025498 +-0.054537 0.0560032 -0.00541843 +-0.0497623 0.0665865 0.0371903 +-0.0891577 0.092949 0.0214162 +-0.0577737 0.0782037 -0.0194332 +-0.064492 0.104249 0.0405622 +-0.0336047 0.0695556 -0.0194645 +-0.0558611 0.0955845 -0.021564 +-0.0184974 0.0869962 0.0565805 +0.00637923 0.0372606 0.0264872 +-0.0665048 0.104229 0.0399675 +0.0566718 0.0553009 0.0238011 +-0.0283123 0.0383433 -0.00703005 +-0.0114184 0.169868 -0.0184586 +0.0211822 0.0909362 -0.0242734 +0.0406295 0.0806796 0.0323988 +0.0123659 0.128443 -0.000397752 +-0.0384845 0.0833049 0.0437838 +-0.01051 0.0531978 0.0517663 +0.00250545 0.0842781 0.0574483 +-0.0674995 0.0972695 0.0419768 +-0.0618921 0.119466 -0.00942759 +-0.00594439 0.13066 0.0175514 +-0.0188708 0.0382701 0.00775373 +-0.0605698 0.0727907 0.0401099 +-0.0115041 0.115551 0.0394745 +0.0300401 0.11902 0.00366373 +-0.0812551 0.10738 0.02923 +-0.0704758 0.123201 0.0533571 +-0.0711231 0.141136 0.0464522 +-0.0222312 0.125137 -0.000350139 +0.0436968 0.0818627 -0.00278544 +-0.00557531 0.0383818 0.0157938 +-0.0175218 0.187118 -0.0194148 +0.000510392 0.0689287 0.0563645 +0.0339979 0.0519394 0.0331121 +0.00286804 0.129802 0.0250965 +-0.0290472 0.0777737 0.0431405 +0.0209137 0.102084 0.0444516 +-0.00628355 0.0409075 0.0485853 +0.0605521 0.0595441 0.0141714 +0.0386236 0.0898511 -0.0127692 +0.0302987 0.0539206 -0.0157566 +-0.0421651 0.149301 -0.00412295 +-0.0126067 0.040646 -0.0265976 +-0.0788091 0.168052 -0.033971 +0.0359211 0.112779 0.0172688 +-0.0394762 0.17111 0.000601324 +-0.0330305 0.0384181 -0.00620006 +-0.0859939 0.0940196 0.000445293 +-0.0359122 0.158048 0.00410154 +-0.0745011 0.151286 -0.0298782 +0.0531496 0.0491587 0.00225551 +-0.0243767 0.179986 -0.0189674 +-0.0891975 0.0996627 0.0124046 +-0.0742533 0.17954 -0.0493425 +-0.0510836 0.145457 -0.000907293 +0.0483282 0.0561556 -0.00540695 +-0.0224848 0.0474635 0.0510926 +-0.0647533 0.163375 -0.0214725 +-0.0127683 0.163589 -0.0126806 +0.0112702 0.0766287 -0.031501 +-0.0460801 0.153165 -0.0063697 +-0.0396673 0.0606846 -0.0120669 +0.0304753 0.100799 0.0389817 +0.0504441 0.0731136 0.0180651 +0.0195371 0.122997 -0.00457304 +-0.0455152 0.0505363 0.0385492 +-0.0525396 0.0458696 -0.00783738 +-0.0679101 0.109459 -0.0121777 +0.0257715 0.122252 0.0234619 +-0.0641925 0.158337 -0.0512857 +-0.0679573 0.0636968 0.0236258 +0.0336501 0.0872305 -0.0183746 +-0.081408 0.0801232 -0.00353296 +-0.068364 0.143961 0.043402 +-0.060807 0.170968 -0.0607383 +-0.0530022 0.0712206 0.0395879 +-0.0629233 0.149038 -0.01858 +-0.0911763 0.131044 0.0302322 +-0.0866097 0.0859466 0.00148078 +-0.0213048 0.0567472 0.0459531 +-0.0884724 0.111842 0.0093465 +-0.0232358 0.0382045 0.0267906 +-0.0687325 0.178002 -0.0502345 +0.0171734 0.0960138 -0.0234178 +-0.0336295 0.0533957 -0.0102549 +0.0404048 0.0661215 -0.00776758 +0.0352114 0.113974 0.0112756 +-0.0509894 0.131098 0.0315417 +-0.0825925 0.0857998 0.0312629 +0.0165569 0.0367823 -0.018664 +-0.0158447 0.163118 -0.0162484 +0.0463618 0.0504062 -0.00492067 +-0.0256024 0.0918183 0.0477571 +0.0401119 0.105635 0.0181717 +-0.075865 0.120825 -0.00747435 +-0.0515138 0.0502892 0.0216268 +-0.0597307 0.0737738 -0.017073 +0.0327302 0.0795508 0.0421017 +0.0561478 0.0493933 0.0131905 +-0.0491927 0.149222 0.0111539 +-0.0505664 0.0459962 -0.00889176 +-0.0346044 0.0381371 0.0484275 +-0.0571418 0.0341673 0.0268338 +-0.0508978 0.0335658 0.00549258 +0.0499018 0.0460625 0.00228276 +0.000648366 0.101032 0.0453587 +-0.064515 0.0945534 0.0434117 +-0.00933623 0.127529 -0.00319765 +-0.0931674 0.126844 0.0122586 +-0.0775055 0.120428 0.0519362 +-0.00412302 0.0390868 0.0317249 +-0.0444953 0.12065 0.0276432 +-0.0808257 0.114785 -0.00282613 +0.00848893 0.0976878 0.0492062 +-0.0204952 0.119495 0.0334766 +-0.0744171 0.1312 0.052182 +-0.0354802 0.0365931 -0.0303176 +-0.0158225 0.127346 0.0227279 +-0.0622273 0.163125 -0.0345932 +-0.0308039 0.0345326 0.0408762 +-0.0684942 0.0944611 0.0423345 +-0.0282259 0.115945 -0.0147131 +-0.00496131 0.0393649 0.0367022 +0.000507606 0.089764 0.0561546 +0.0184391 0.121423 0.0322194 +-0.0293563 0.0761839 -0.0345604 +-0.0798193 0.0993879 0.0336913 +-0.0260706 0.125207 0.0176138 +-0.0466789 0.0383303 -0.0162856 +-0.0551627 0.0709645 0.0393255 +-0.0708102 0.086505 -0.0166182 +-0.0534691 0.0491595 0.0373719 +-0.0176627 0.0365106 -0.0181139 +0.00950436 0.0910078 0.0538342 +-0.0895706 0.136541 0.0322035 +0.0538065 0.0721186 0.0208488 +-0.00549555 0.115561 0.0401898 +0.00964519 0.0349724 -0.00752839 +-0.0134864 0.112741 0.0406725 +-0.00206815 0.039143 -0.00620903 +0.0130247 0.112857 -0.017601 +-0.0790398 0.119048 0.050662 +-0.0808858 0.0872378 0.0337267 +-0.0123796 0.124965 -0.00637162 +-0.0213885 0.125739 0.00103732 +-0.089509 0.125659 0.045333 +-0.05553 0.137483 -0.00349047 +0.0417216 0.100008 -0.000812454 +-0.0294372 0.045874 0.0494957 +0.0458807 0.0774123 0.0204549 +-0.010796 0.120869 -0.0120713 +-0.0650859 0.171096 -0.0446086 +-0.0309091 0.0594671 -0.0184147 +0.0318276 0.102039 -0.0140664 +-0.050474 0.137043 0.0223997 +-0.0892111 0.0956026 0.0114219 +-0.0551272 0.0478339 0.0400497 +-0.0376142 0.115213 -0.0159111 +-0.0262205 0.0604134 -0.0304432 +-0.0395514 0.159448 0.00235113 +-0.0548296 0.0912974 -0.0221769 +0.0140209 0.113717 -0.0165571 +-0.0376838 0.0651596 -0.0143574 +-0.0357596 0.0367769 0.0465803 +0.0218833 0.124858 0.00205716 +-0.0515413 0.0403485 -0.0110842 +0.0196453 0.0521206 0.045827 +-0.0274751 0.109286 -0.019717 +-0.054346 0.125513 0.0372066 +-0.061806 0.172532 -0.0555873 +0.0193853 0.0367967 0.0404 +0.00315064 0.0340463 -0.0192491 +-0.0419902 0.127061 0.0177443 +-0.0753578 0.0671035 0.0137678 +-0.017747 0.0685932 -0.0381265 +0.0502404 0.0581527 0.030355 +-0.01349 0.11138 0.0414506 +-0.088473 0.0908539 0.022804 +-0.0623246 0.0380624 0.0435494 +-0.0315191 0.0831203 0.0417649 +-0.0908528 0.131057 0.0322319 +-0.0524868 0.0959601 0.0436811 +0.0383485 0.10917 0.00520513 +0.0405643 0.0599899 -0.00408877 +-0.00769877 0.0598808 -0.0345717 +0.0253549 0.0875981 0.0473346 +-0.0126907 0.166905 -0.0150111 +0.0384994 0.0541178 0.0316123 +-0.034906 0.0367338 -0.0161439 +-0.057208 0.048538 0.00854022 +-0.0255159 0.108511 0.0401259 +0.0305676 0.0350004 0.0115893 +-0.0520943 0.0559627 0.0266271 +-0.0610057 0.155949 0.0190169 +-0.067333 0.1766 -0.0497355 +0.0258363 0.0844839 -0.0235493 +-0.0689178 0.164003 -0.0158096 +-0.00849374 0.116931 0.0393004 +-0.0752784 0.113511 0.0497641 +-0.0888148 0.144497 0.0313918 +-0.0453871 0.145929 0.00156561 +-0.0599561 0.0677317 0.0357891 +-0.0125434 0.0386707 -0.00229897 +-0.000271447 0.0356914 0.00658166 +-0.0415825 0.0366566 0.0434527 +-0.0297036 0.165315 -0.00626903 +-0.0467885 0.0855251 -0.0217462 +-0.0827882 0.125806 0.051363 +-0.0176693 0.0966335 -0.0284397 +-0.0464991 0.115243 0.033257 +-0.0569748 0.146758 0.0317266 +-0.0430879 0.156177 -0.00890493 +-0.00350236 0.0774419 0.0585703 +-0.0699027 0.158151 -0.0489236 +0.0362459 0.112339 0.00591924 +0.0367118 0.0920329 -0.0133924 +-0.0539202 0.0610131 0.0274265 +-0.0093317 0.127279 0.0279745 +-0.0726772 0.112018 0.047983 +-0.0451365 0.160644 -0.00892562 +-0.0209165 0.172715 -0.0146234 +-0.0477839 0.125387 0.0290716 +-0.0734873 0.156859 -0.0289164 +0.00860516 0.061703 0.0545256 +-0.0246606 0.0422329 0.0539554 +-0.0315436 0.153515 -0.00448892 +0.0345459 0.0571781 -0.011728 +-0.0791321 0.170818 -0.0399882 +0.0254504 0.0415949 -0.00563526 +0.0230318 0.0355156 0.0114574 +-0.0554984 0.107053 0.0399469 +-0.0296361 0.0522471 0.0373693 +-0.0438179 0.0928034 -0.0224841 +-0.0199243 0.0387302 -0.0112686 +0.0212455 0.0791286 -0.0267859 +-0.0532861 0.0527919 0.0115704 +0.00450017 0.0441843 0.0459802 +-0.0329932 0.0339759 0.0213799 +0.0553011 0.0604636 -0.000842819 +0.00165238 0.0932332 -0.0327923 +-0.0552284 0.0527023 0.00927604 +-0.0783599 0.0708413 0.0204513 +-0.0767777 0.176413 -0.0510191 +-0.0394918 0.104211 0.0396007 +0.0327921 0.0889736 0.0422708 +-0.00991923 0.0986226 0.0505787 +-0.0806729 0.108958 0.0307202 +-0.0822864 0.135367 0.0491747 +-0.0649369 0.0609076 0.00327394 +0.0386477 0.0715748 -0.0117783 +-0.0240415 0.126597 0.0109996 +-0.0781422 0.141688 -0.0047364 +-0.0427782 0.0841106 -0.0212812 +-0.0641686 0.178174 -0.0558405 +0.0252976 0.0661311 -0.0233121 +0.0189895 0.0631559 0.0484766 +0.0182463 0.0722224 -0.0290012 +-0.0777504 0.161717 -0.020949 +-0.051966 0.138521 0.000416067 +-0.0605353 0.155832 0.0177371 +0.0437866 0.098742 0.00716534 +-0.0494703 0.0370271 -0.0120635 +0.0464078 0.0806576 0.0101793 +0.0218218 0.116393 -0.0114503 +-0.0533273 0.132699 -0.00427378 +-0.0681775 0.0762505 0.039044 +-0.0250035 0.0896 -0.0352857 +0.000769534 0.0946028 -0.0322154 +-0.0158082 0.0346932 0.0474464 +-0.076979 0.148604 -0.00699397 +0.0467055 0.0730498 0.0181295 +-0.0496483 0.0634464 -0.0118311 +-0.0197535 0.0700012 -0.0382558 +0.0232727 0.0989983 -0.0208236 +-0.0777 0.16251 -0.0219398 +-0.0908755 0.147455 0.0141474 +-0.0334742 0.0638502 -0.015538 +0.00219672 0.0825025 -0.0349885 +-0.0814773 0.128835 0.0524787 +-0.0784807 0.13724 0.0497912 +0.0361312 0.11046 8.71157e-05 +-0.0454849 0.0931252 0.0434035 +-0.0635463 0.153079 -0.00800928 +-0.0529285 0.0339107 0.0244154 +-0.00862356 0.0451919 -0.0286362 +0.0192377 0.117984 0.0350388 +-0.000496915 0.0883839 0.0565827 +0.0316988 0.118246 0.0142694 +-0.0398347 0.169198 -0.01127 +0.0219416 0.125622 0.00635903 +-0.092876 0.129604 0.0142376 +-0.023566 0.0579721 0.0425175 +-0.0447621 0.126552 0.0211574 +-0.0390659 0.157734 -0.0109824 +-0.0038734 0.104505 -0.022849 +-0.0810823 0.146103 0.0405774 +-0.00499552 0.038756 0.0282379 +0.00659654 0.102942 0.0449664 +-0.0528078 0.0898592 -0.0221628 +-0.0415043 0.0340515 -0.0039392 +-0.0118724 0.166916 -0.0155725 +0.00801932 0.113693 0.0398597 +-0.0873717 0.0895698 0.0245766 +0.0235801 0.11767 -0.00881398 +-0.0592051 0.0411249 -0.00803844 +-0.0631955 0.174736 -0.0540401 +-0.00904474 0.102005 -0.0240096 +-0.0893459 0.0888735 0.0114634 +-0.0847817 0.111591 0.0313073 +-0.0318636 0.155275 -0.00893878 +0.020119 0.0578214 0.0483165 +-0.0884363 0.140505 0.0381916 +0.0268748 0.0768062 0.0459093 +0.00650425 0.06886 0.0554952 +-0.0600274 0.155812 0.00342033 +0.00439509 0.0433687 -0.0246925 +-0.0644393 0.157952 -0.0526177 +-0.0626717 0.152516 0.0345768 +-0.0686641 0.0435432 0.00268116 +-0.0668913 0.155545 0.00822429 +-0.0513204 0.0545255 0.0306253 +-0.0216946 0.055283 -0.031103 +0.0201038 0.121698 0.0313961 +-0.0435092 0.0973014 0.0425845 +-0.0598342 0.124083 0.0415696 +-0.0290584 0.0385824 0.0360072 +-0.0211666 0.0959679 -0.0277597 +0.0393164 0.0948581 -0.00836399 +-0.0465497 0.0354834 -0.0182685 +-0.0577953 0.0577539 0.0112722 +0.0343862 0.0533953 0.033694 +-0.0356597 0.12459 0.0229985 +-0.0703962 0.0382223 -0.000484462 +0.0394034 0.0772645 -0.00977482 +0.0374516 0.110677 0.0163977 +0.022681 0.0549804 0.0449373 +-0.00661876 0.0388692 0.029605 +-0.0298463 0.0958488 -0.0239617 +-0.0500656 0.165567 2.77718e-05 +-0.0624265 0.163056 -0.0535855 +0.0182459 0.035082 -0.00972071 +-0.0535426 0.139527 0.0278286 +0.0535157 0.0664189 0.0268642 +-0.0618871 0.044625 0.0401036 +0.0279315 0.0813321 -0.0222629 +-0.0364738 0.0959436 0.0435424 +-0.0648009 0.0867059 -0.0190299 +-0.0910478 0.113254 0.017639 +0.0328625 0.115479 0.000361714 +-5.55454e-05 0.1192 -0.0143689 +0.00440015 0.0419024 -0.0241382 +-0.0356548 0.0459643 -0.0252685 +-0.00874142 0.0699019 -0.0364843 +-0.0786816 0.173602 -0.0460003 +-0.0750442 0.11265 0.048722 +0.0132032 0.0850348 -0.0305799 +-0.0275703 0.070462 0.0404211 +-0.0333885 0.082189 -0.0265241 +-0.0498121 0.0912811 -0.0216901 +-0.0121305 0.129539 0.00953518 +-0.0888371 0.0942243 0.00943852 +-0.0733262 0.151241 -0.0368807 +0.0159012 0.0347663 0.0342789 +-0.0464698 0.0336288 0.00272222 +-0.0219797 0.0381347 0.0126751 +-0.0434985 0.112577 0.0357301 +0.0374146 0.0807844 0.0365828 +-0.0150623 0.160937 -0.0114195 +0.00882514 0.0347544 -0.00561715 +-0.0793646 0.150083 0.036366 +0.0444807 0.0526489 0.0324592 +-0.0140843 0.0382987 0.0177555 +0.0371109 0.0630101 -0.0117592 +-0.0795655 0.0711751 0.0181423 +0.0314182 0.0968966 0.040312 +0.0553211 0.0622297 0.0271921 +-0.0344916 0.0789231 0.04184 +-0.0708134 0.0893817 -0.0163657 +-0.0786856 0.174223 -0.045863 +-0.0497628 0.0345507 0.0333201 +-0.026557 0.0646504 0.0393284 +0.0499455 0.0733656 0.0164225 +0.0233132 0.0902311 0.0479207 +-0.0441494 0.163638 -0.00943446 +-0.048497 0.0464891 0.040915 +-0.0638143 0.15519 -0.0396115 +0.0296208 0.115866 0.0291818 +-0.0505003 0.100168 0.042883 +0.00450871 0.0910904 0.0550512 +0.0223914 0.093257 -0.0227104 +-0.0346391 0.0469045 -0.0241611 +0.0600903 0.0608951 0.0181821 +0.0174829 0.0976104 0.0472234 +0.0245219 0.0382712 0.0311236 +0.0373902 0.0561474 -0.00613784 +-0.0725233 0.143597 -0.0104167 +-0.0755086 0.133058 0.0519758 +-0.0469091 0.134066 0.0158053 +-0.0365004 0.0719314 0.0420432 +0.0599383 0.0692126 0.0131498 +-0.0228512 0.126901 0.0114323 +0.0370832 0.0408236 0.0259314 +0.0430366 0.0709859 0.0269587 +0.0442558 0.0917077 -0.00080891 +0.0366443 0.0915417 0.0373244 +0.0149217 0.127634 0.0251635 +-0.0260773 0.0547586 -0.0274003 +0.0223322 0.0348324 0.0210401 +-0.0674741 0.169344 -0.0310786 +-0.0943935 0.125559 0.0222675 +0.000334373 0.0554042 -0.031412 +-0.023822 0.0694685 0.046666 +0.024828 0.0768588 0.0482443 +-0.0593221 0.0615947 0.0254084 +-0.0274704 0.0506795 -0.0243965 +-0.0172176 0.177147 -0.0249576 +0.0433823 0.0490357 -0.00560381 +0.0244317 0.116294 -0.00934411 +0.0184177 0.0350663 0.0309125 +0.0404265 0.102791 0.0231613 +-0.0243375 0.1639 -0.00728245 +-0.0675442 0.151908 -0.0456642 +-0.0311974 0.0474073 0.0447828 +-0.0726957 0.175719 -0.0430358 +-0.0165027 0.0499584 0.0473896 +0.0323852 0.0461686 -0.00610484 +0.0214495 0.0822346 0.0504578 +0.016822 0.123899 -0.00554312 +-0.0694694 0.178653 -0.050518 +-0.0741019 0.156119 0.0187476 +0.0510202 0.0736047 0.0138558 +-0.0739033 0.14718 -0.0168588 +-0.0165785 0.162548 -0.00831661 +-0.0414778 0.0347327 0.0401772 +0.0319294 0.118052 0.0100791 +-0.0502835 0.146495 -0.00183305 +-0.0758664 0.116415 -0.00636144 +-0.0824071 0.136209 -0.001703 +-0.0519598 0.0335208 -0.000101812 +-0.0819554 0.0993316 0.0315904 +0.0213579 0.055075 -0.0266156 +-0.0422106 0.112435 -0.0169649 +0.0150002 0.128745 0.00378903 +-0.0430993 0.157658 -0.00954173 +-0.0816795 0.117485 0.0486704 +-0.00999143 0.0383941 0.00762464 +0.0248936 0.12332 0.00461274 +-0.0644877 0.0972949 0.0424471 +-0.032514 0.105674 0.0400124 +-0.0517751 0.0826668 -0.0215624 +0.00214252 0.103065 -0.0221511 +-0.0609083 0.169363 -0.0596932 +0.0270498 0.0919981 -0.0213752 +0.00735643 0.038818 0.0454516 +0.0115845 0.121127 -0.0125402 +0.0591992 0.0552614 0.014176 +-0.0901723 0.112303 0.0149799 +-0.0627834 0.035148 0.0195098 +-0.074757 0.111898 0.0475989 +0.0570719 0.0578424 0.00217676 +-0.0528487 0.0500508 0.0126245 +-0.00477608 0.0784365 -0.0374195 +-0.0645432 0.0673992 0.033354 +-0.0540085 0.145723 -0.00127177 +-0.010995 0.0388834 0.0322933 +0.00247314 0.0964836 0.053027 +-0.0624566 0.177245 -0.0586155 +0.0368789 0.0941727 0.035906 +-0.0219544 0.120804 -0.00985027 +0.0570851 0.0508934 0.0101876 +0.0102738 0.0724526 -0.032232 +0.0544954 0.0655564 0.000403771 +0.0210681 0.0415437 -0.0156999 +-0.0692317 0.155651 0.00154206 +0.0527009 0.0518645 -0.000768796 +0.0334294 0.116181 0.00636312 +0.0448957 0.0945828 0.0101613 +0.00249575 0.0952068 0.0540463 +-0.0124032 0.0388598 -0.00801871 +0.045282 0.0889737 0.0021781 +-0.00350234 0.0388725 -0.0137373 +-0.0678317 0.0335757 0.00383638 +0.00921578 0.0767579 -0.0331902 +-0.0534996 0.0987387 0.0427565 +-0.0124888 0.126191 0.0283067 +0.0103285 0.130654 0.00635323 +0.0314005 0.0446447 -0.00577901 +-0.0295471 0.0804664 0.0436378 +0.00584239 0.0374362 -0.00493399 +0.0435663 0.0408867 0.018056 +-0.0206234 0.0950485 -0.0308006 +-0.0216102 0.0408331 -0.028871 +-0.0256808 0.0663835 0.041558 +0.0103698 0.0351865 0.034574 +0.0249548 0.0809223 0.0484627 +-0.0551501 0.0641879 0.0328568 +-0.0633147 0.132484 0.0400888 +-0.062948 0.163113 -0.0275941 +-0.0620302 0.141028 0.0366839 +-0.0484797 0.126826 0.0298997 +0.00950548 0.107102 0.041296 +0.0390056 0.0914413 0.0336848 +0.0300323 0.108764 0.0348296 +-0.0198832 0.0335337 -0.0251748 +0.0128315 0.0391361 0.0445812 +-0.0263531 0.11244 -0.0170322 +0.0359611 0.109622 -0.00183337 +-0.0572001 0.0380562 0.0469117 +0.00550248 0.121034 0.0357708 +-0.0667821 0.14845 -0.031825 +-0.016957 0.186039 -0.0193264 +-0.0878947 0.131105 0.044958 +0.0363312 0.107346 0.0280412 +-0.0614985 0.0833224 0.0439406 +0.0542552 0.0478973 0.00920996 +-0.0787615 0.0867217 -0.0105634 +0.0226207 0.0360088 0.0127544 +0.00886878 0.0343168 0.00225753 +-0.0266191 0.0618553 -0.0304537 +-0.00302574 0.0387303 0.00142158 +-0.019905 0.038668 0.0324503 +0.0527798 0.0683653 0.00150186 +0.021964 0.0402022 -0.00870612 +-0.0126432 0.0481635 -0.0303259 +-0.0124951 0.0925417 0.056096 +-0.0373842 0.0433946 0.0425967 +0.0243858 0.124139 0.00725423 +-0.0540808 0.0434992 0.0186914 +-0.0590026 0.0609591 0.0242669 +-0.0846496 0.129332 -0.00265191 +0.0108129 0.0887938 0.0544498 +-0.0599027 0.106882 -0.0174092 +0.0235199 0.123889 0.00267512 +-0.0364958 0.116629 0.0319219 +-0.0274016 0.0386836 -0.0145853 +0.0575354 0.0620414 0.00218896 +-0.0617076 0.156842 -0.0315932 +-0.0566848 0.0344893 0.0422998 +-0.0515556 0.0459336 -0.00836292 +0.034036 0.037677 0.020853 +0.0440634 0.064827 -0.000963389 +-0.0783551 0.090033 0.0367591 +-0.0451437 0.162134 -0.00879907 +-0.0870992 0.0913786 0.00345195 +-0.0896332 0.0983435 0.0144056 +0.00267954 0.131212 0.00494959 +-0.0521038 0.0531706 0.024633 +0.033292 0.0856433 -0.0187503 +-0.0284873 0.0606333 -0.0264114 +-0.0366237 0.123115 -0.00817194 +-0.0417568 0.0797359 -0.0197866 +-0.0466787 0.0650533 -0.0138917 +0.0360448 0.0392022 -6.35907e-05 +-0.0192403 0.0387115 -0.0129795 +0.0431391 0.098698 0.00317491 +-0.0224767 0.091498 -0.0352097 +0.0093588 0.0524416 -0.0295377 +-0.0833358 0.105954 0.0271122 +-0.0146006 0.127548 0.000963555 +0.0122907 0.0652688 -0.0305463 +-0.0515682 0.0488001 -0.00762593 +0.0214986 0.122612 0.0290301 +-0.0271235 0.11599 -0.0147668 +0.0381316 0.109734 0.0151646 +-0.00681664 0.0854791 -0.0376549 +-0.0147515 0.07145 -0.0385454 +-0.0659657 0.129697 -0.00887578 +0.0359834 0.11203 0.00292702 +-0.0631298 0.144906 -0.0101196 +0.00903132 0.0343268 -0.014573 +-0.0348704 0.101474 -0.022105 +-0.0693077 0.0614952 0.0145437 +0.0349262 0.0896582 -0.0169179 +-0.037886 0.109925 -0.0191545 +-0.0372775 0.0472266 -0.0193178 +0.0112393 0.0349033 0.0350041 +0.0430009 0.0705508 -0.00279727 +0.0400623 0.0956447 -0.00679711 +-0.0676126 0.155322 0.00651001 +0.0598737 0.0581052 0.00916393 +-0.061495 0.100138 0.0425963 +-0.0575075 0.0435504 0.0160321 +0.0228298 0.0827896 -0.0258286 +-0.0115004 0.0925527 0.0561224 +-0.0223058 0.184466 -0.0180708 +-0.0624348 0.161527 -0.0435948 +-0.0143997 0.0383922 -0.000568703 +-0.0793362 0.0881239 -0.0095476 +-0.0548971 0.10981 -0.018029 +-0.0707512 0.156365 0.0199172 +0.0244407 0.0405616 0.0372831 +-0.0545055 0.113958 0.0351234 +-0.00749363 0.0547355 0.05304 +0.044284 0.0819099 0.0251484 +0.0117499 0.0519912 0.0501875 +-0.0706809 0.109318 0.0378585 +-0.0640006 0.161566 -0.01976 +-0.0122192 0.0378665 0.050479 +-0.0715061 0.148353 0.0408514 +-0.0652549 0.0667307 0.0320259 +0.0162842 0.118981 -0.0122323 +-0.0584978 0.0959813 0.0440843 +-0.0261553 0.169713 -0.0187023 +0.0163086 0.108997 -0.0174538 +0.019812 0.035154 0.0274956 +0.0403843 0.0547484 -0.00641578 +-0.0370524 0.128064 0.00917633 +-0.0181528 0.0388364 -0.0128782 +-0.0703699 0.144073 -0.0154773 +-0.0821317 0.15265 0.0057634 +-0.0121975 0.182647 -0.0286755 +-0.0179487 0.126229 0.0234428 +-0.0713342 0.065071 0.0216423 +-0.0135059 0.0357879 0.0504712 +-0.0551243 0.0482803 0.0389113 +-0.043841 0.0970933 -0.0219235 +0.0307935 0.0619124 0.0409121 +-0.0872404 0.149912 0.0282765 +-0.0777833 0.0694772 0.0182331 +-0.0479563 0.0699321 0.0400053 +-0.0325179 0.0704032 0.0404934 +-0.04199 0.0336868 -0.0166047 +0.00497409 0.0340864 0.0145521 +-0.0449304 0.0643377 0.0396087 +-0.0778694 0.106226 -0.00738941 +-0.0126221 0.0389953 0.033657 +-0.0632121 0.172304 -0.0615699 +-0.0276205 0.0874255 -0.0346253 +-0.0625254 0.138119 0.0359126 +0.00425284 0.0711834 -0.0342035 +-0.0788838 0.153282 0.0303949 +0.00652169 0.0362747 0.0255863 +-0.0662316 0.0345008 0.0140489 +-0.02106 0.174206 -0.0148174 +0.0185004 0.109841 0.0391791 +-0.0646081 0.0450546 0.000685835 +-0.0136021 0.0363077 -0.0261392 +-9.29522e-05 0.131467 0.0096514 +-0.0451771 0.128971 0.00184527 +0.00750493 0.0561002 0.0528313 +0.0361319 0.074097 0.0381795 +0.022807 0.125614 0.0138049 +-0.0196774 0.0509888 -0.0303435 +-0.0930693 0.120128 0.0262942 +-0.0230193 0.120798 -0.0098328 +-0.0271496 0.0384219 0.0311819 +-0.0748224 0.0935599 -0.014192 +-0.0354943 0.119369 0.0303337 +0.060906 0.0609648 0.0111554 +0.0112135 0.130703 0.0137986 +-0.0266186 0.0589226 0.0382515 +0.0218458 0.0672628 0.0473581 +0.00922858 0.116392 0.0380826 +-0.0579872 0.0576809 0.00662705 +-0.0151861 0.168246 -0.0215615 +0.0431809 0.0791159 0.0272636 +-0.0755673 0.0727762 -0.00660131 +0.0242315 0.0818412 -0.0251267 +-0.0250124 0.0782139 0.0518051 +-0.0338224 0.0338142 0.00692539 +-0.00946746 0.0362215 -0.025425 +-0.0416936 0.0652006 -0.0145392 +-0.0546754 0.0335075 0.00116676 +-0.0233106 0.15969 -0.00223977 +-0.0842752 0.141807 0.00320102 +-0.0818378 0.131303 0.0516681 +-0.0234556 0.161598 -0.0145283 +-0.0499699 0.150693 0.011804 +-0.010495 0.0471724 0.0477907 +0.0380379 0.075373 0.0356471 +-0.0450739 0.0363473 0.0448052 +-0.0737333 0.15548 -0.0259091 +-0.0716137 0.178389 -0.0484 +-0.0384987 0.0691035 0.0417776 +0.00141943 0.122927 0.0347542 +-0.057332 0.137224 -0.00518105 +-0.0557698 0.136063 -0.00393718 +0.0558337 0.0494217 0.00919997 +-0.0580135 0.04944 0.00163802 +-0.0357372 0.111668 -0.0181975 +-0.0550044 0.145721 -0.00143834 +0.00110225 0.0344701 0.00796988 +-0.0157589 0.038402 0.00281447 +-0.0521458 0.121812 -0.0107191 +-0.00850406 0.11834 0.0382239 +-0.0498654 0.102788 -0.0210486 +-0.0630574 0.15313 -0.033029 +-0.0734528 0.143001 -0.00787011 +-0.0577717 0.0334512 -0.00484461 +-0.0926703 0.124234 0.0402542 +-0.0236253 0.0450591 -0.0281331 +0.0444641 0.0686626 0.00115575 +-0.0394989 0.0620307 0.0413298 +-0.0489043 0.0531988 0.0353928 +-0.0549375 0.140991 0.0293007 +0.0134789 0.100443 0.0476777 +0.0344381 0.102088 0.0341795 +-0.0629237 0.112473 -0.0138486 +0.0456048 0.0918125 0.0071715 +-0.0679688 0.135528 -0.00836676 +-0.0561131 0.145329 0.0311927 +0.0222077 0.0403059 0.0403109 +-0.0930104 0.131018 0.0202297 +-0.073597 0.161047 -0.0349306 +-0.073142 0.0762988 0.0362199 +-0.0868887 0.102318 0.0233696 +-0.074876 0.107788 -0.00905848 +-0.061968 0.159998 -0.0366167 +0.0234524 0.0505688 0.0407158 +-0.0374809 0.113893 0.0340704 +-0.052457 0.144675 0.0183665 +0.000496502 0.103028 0.0440499 +-0.0107515 0.039289 0.0373765 +0.0177346 0.123618 -0.0052308 +-0.0278908 0.0903405 -0.0316075 +0.0555538 0.0665692 0.0013688 +-0.0679616 0.181138 -0.0572245 +-0.0246921 0.156571 -0.00408158 +-0.0295045 0.112518 0.0356692 +-0.0523224 0.146252 0.0184018 +-0.0831779 0.111548 0.00129095 +0.0381693 0.109765 0.0141664 +-0.0465876 0.132486 0.00741919 +0.0351546 0.112861 0.0227039 +0.00752051 0.0855871 0.0562726 +-0.0236256 0.0464233 -0.0274769 +-0.0820555 0.138062 0.0474469 +-0.0332203 0.171246 -0.00251328 +-0.0471051 0.157621 -0.00763511 +-0.0883909 0.0874867 0.0154625 +-0.0769362 0.0914256 0.0381174 +-0.075265 0.148568 -0.0158698 +0.015355 0.119233 -0.0124997 +-0.0073165 0.13056 0.0112981 +-0.0167502 0.070002 -0.0383082 +-0.0672167 0.147775 -0.0296135 +0.00424945 0.126892 0.0299609 +0.0188897 0.120837 -0.00821554 +-0.0628446 0.0334683 -0.00588606 +0.0333858 0.103442 0.0343819 +-0.0748011 0.0878022 -0.0147955 +0.00250445 0.0519435 0.0530423 +-0.0565994 0.0548437 -0.000400453 +-0.0657591 0.0794867 -0.0178324 +-0.0893947 0.113204 0.00833335 +0.00550466 0.122397 0.0349805 +-0.0593516 0.0471429 0.038917 +-0.0691412 0.109612 0.0381472 +0.012166 0.127075 0.0284779 +0.00215147 0.0340847 -0.0194818 +-0.0357383 0.152143 0.000762654 +-0.0225608 0.0608496 0.0442445 +-0.00675345 0.0727271 -0.0364938 +-0.0504985 0.0776737 0.0437561 +0.012653 0.128571 8.59956e-05 +-0.0775017 0.148428 0.039927 +0.0194833 0.0961991 0.0471957 +-0.00134544 0.0999407 0.0490888 +-0.00745251 0.100521 0.0469096 +0.0293349 0.108769 0.0355782 +-0.0628076 0.0881622 -0.0190458 +0.0438908 0.0973298 0.0041758 +-0.0618594 0.154827 0.00385225 +0.0224603 0.0878572 0.0487762 +-0.0684419 0.0805248 0.0412962 +-0.0414824 0.0817867 0.0423837 +-0.0394972 0.0591632 0.0405173 +-0.0699138 0.0616664 0.0106715 +-0.0256486 0.050648 -0.0266189 +-0.0189668 0.125144 0.0245507 +-0.0548939 0.161294 0.00305835 +0.0593671 0.0566851 0.00917266 +-0.0619624 0.0371632 0.0192279 +-0.0458599 0.129594 0.0221735 +-0.078334 0.175787 -0.0461739 +-0.00822607 0.100046 0.0481626 +-0.0580744 0.136937 -0.00566118 +-0.0915979 0.115467 0.0229868 +0.0255167 0.123738 0.0133816 +-0.0331932 0.0348891 0.047012 +-0.076964 0.129602 -0.00711544 +-0.0598599 0.0358888 0.0454954 +0.0450831 0.0463904 0.0280485 +-0.0315243 0.0802674 0.0412906 +-0.0239631 0.11903 -0.0119726 +-0.0346068 0.0483825 -0.0183276 +-0.0825971 0.103328 -0.00360734 +-0.0887132 0.118572 0.00232339 +-0.0188128 0.082729 -0.0390748 +-0.0866936 0.0833424 0.0154842 +0.00371617 0.0348648 0.0208524 +0.0267042 0.122545 0.0181085 +-0.0738109 0.0935956 -0.0146814 +0.0287557 0.0348074 0.0132587 +-0.0344434 0.174206 -0.0015497 +-0.053794 0.086942 -0.0216962 +-0.0584166 0.126929 0.0401124 +-0.0837712 0.127162 0.0508887 +-0.0249431 0.0907384 -0.0344432 +-0.0817429 0.0748341 0.0165378 +-0.0709721 0.148372 0.0407622 +0.0453179 0.0861686 0.00320477 +-0.052904 0.159748 -0.00276649 +-0.0630387 0.15529 -0.0125891 +-0.0628558 0.170957 -0.0505963 +0.0198342 0.0408002 0.0424386 +0.0114164 0.0403794 -0.0231815 +-0.0270194 0.12568 0.0143315 +-0.0340325 0.126267 0.001455 +-0.0096483 0.171546 -0.0270746 +0.0461889 0.0792428 0.016179 +-0.0314795 0.0774889 0.0410863 +0.00441886 0.0361314 -0.0238164 +0.0140504 0.0379362 -0.0217239 +-0.0064667 0.128955 -0.000718006 +-0.00729042 0.0388645 0.0312728 +-0.0537922 0.14151 -0.001138 +-0.0843649 0.125772 0.0501053 +-0.0489003 0.033496 0.00596365 +-0.00972794 0.166651 -0.0186764 +-0.0537672 0.0812389 -0.0213883 +-0.0327797 0.0337757 0.0180041 +-0.0738907 0.107101 0.0373066 +0.0441357 0.0659575 -7.19207e-05 +-0.0929503 0.128215 0.0122521 +-0.0898716 0.133794 0.0302191 +-0.0643705 0.154697 0.0294695 +0.023375 0.0504685 -0.0225374 +-0.052801 0.0690675 0.0379843 +-0.0823518 0.0966615 0.0320686 +0.00650836 0.0813916 0.0558754 +0.0249135 0.0390596 0.0323329 +0.0422621 0.0746939 -0.00581448 +-0.0239734 0.0636045 0.0427616 +-0.0648684 0.0967433 -0.0176098 +-0.0661842 0.163921 -0.0584969 +-0.0338218 0.0886934 -0.0246941 +-0.0545067 0.102902 0.0418134 +-0.0298032 0.034287 0.0163531 +0.00993007 0.126906 -0.00476687 +-0.0376745 0.0379475 0.0444361 +-0.0658844 0.114191 0.045149 +0.0205436 0.121905 -0.00538746 +-0.0134808 0.108609 0.0426611 +-0.0484883 0.0960313 0.0444485 +-0.0326323 0.125019 -0.000941466 +-0.0254216 0.0999543 -0.0239282 +-0.0410688 0.11258 -0.017122 +-0.0434945 0.0676224 0.0409141 +0.0153651 0.0493118 -0.0259325 +0.00422707 0.0782528 -0.0345112 +0.0285181 0.0968051 -0.0184722 +-0.0597676 0.0796261 -0.0193897 +-0.0714963 0.118989 0.0533881 +-0.0566004 0.0335105 0.0169198 +-0.0880799 0.113511 0.0432934 +-0.0208348 0.0956185 -0.0294009 +-0.010501 0.0759377 0.0571751 +-0.0797391 0.110092 0.0425713 +0.0423965 0.0704871 -0.00480867 +-0.071352 0.110742 0.0439553 +-0.0617103 0.0604885 0.000571471 +-0.000492298 0.0605899 0.0560413 +-0.0819087 0.121685 0.0492514 +0.0133657 0.116504 -0.0155461 +-0.0035043 0.0589584 0.0540181 +-0.0700245 0.0833021 0.0413654 +0.0410401 0.0656705 0.029359 +-0.0623583 0.164673 -0.0485921 +0.027252 0.0549488 0.0409918 +-0.0568093 0.0883611 -0.0215879 +0.0409151 0.0390283 0.00994476 +0.0189976 0.0408013 0.0429893 +0.038497 0.0527286 0.031838 +-0.0436566 0.0592613 -0.0123074 +-0.0456035 0.0504974 -0.010193 +-0.0427107 0.0335694 -0.0203532 +-0.0107484 0.0348144 0.0431359 +0.0366972 0.106807 -0.00382741 +-0.0475 0.109814 0.0383224 +-0.0581584 0.0685383 0.037238 +-0.0888985 0.128369 0.0446279 +-0.0618211 0.164489 -0.0586698 +-0.0622151 0.166391 -0.0605094 +0.000668194 0.039196 0.03081 +-0.0494963 0.0974185 0.0440407 +-0.0327214 0.154341 -0.00788327 +0.00831584 0.0624371 -0.0312473 +-0.0441024 0.124581 0.0229348 +-0.00474585 0.0712867 -0.0359934 +-0.0211964 0.0725528 0.0524066 +0.0440002 0.0888695 -0.00280666 +0.0083541 0.0524293 -0.0297113 +0.0104364 0.0472441 0.0475563 +0.0130443 0.113867 -0.0167218 +0.035717 0.0533288 0.0320909 +-0.0439793 0.169659 0.00035763 +-0.0261771 0.0395393 0.0541115 +0.0142627 0.0751304 -0.0300927 +0.0172008 0.0849074 -0.0286671 +-0.0301348 0.156065 -0.00950629 +0.0153602 0.0672491 0.0520407 +0.038354 0.0547461 -0.00609927 +0.0326073 0.112448 0.0288842 +-0.0230436 0.0879523 0.0537722 +-0.0507107 0.0708743 -0.0151986 +0.00170937 0.0361659 0.0210822 +-0.0106905 0.18126 -0.0286694 +-0.0543257 0.121248 0.0372193 +-0.086895 0.143263 0.0379805 +-0.0300853 0.179019 -0.00589649 +-0.0624495 0.15591 0.022857 +-0.0597659 0.0448149 0.0126042 +0.00226448 0.0346925 0.0189009 +0.00270214 0.10527 -0.0214784 +-0.0843731 0.110309 0.0377873 +-0.0603328 0.153535 0.00105643 +-0.00601124 0.0348376 0.0423067 +-0.0419337 0.160883 0.00416203 +0.025639 0.0740461 0.0458389 +-0.0724467 0.0361675 0.00255211 +-0.0515329 0.0431219 -0.00982617 +-0.0668209 0.036036 0.0339126 +0.0328708 0.0740673 0.0404957 +0.0429413 0.0682748 0.0268013 +-0.0687158 0.171626 -0.0372714 +0.0231488 0.116662 0.0336476 +0.0322304 0.0505255 0.0340589 +-0.0869233 0.112018 0.0232463 +-0.078057 0.0907599 -0.0115869 +-0.0538087 0.119788 0.0361741 +0.00650273 0.121045 0.0359095 +-0.00425882 0.128035 0.0283342 +-0.0558184 0.158024 -0.000144968 +-0.0699106 0.10657 -0.0124287 +0.0101685 0.124401 -0.00806495 +-0.0774125 0.06897 0.0169693 +-0.0204069 0.09844 -0.0243451 +-0.0678094 0.180556 -0.0587896 +-0.0490427 0.0341369 0.0285626 +-0.0112286 0.0338605 -0.0218986 +0.0300773 0.0754873 0.0435133 +0.00030024 0.0612559 -0.033673 +0.000950727 0.129943 0.000110463 +-0.083524 0.154076 0.0213615 +-0.0688604 0.0819375 0.0416515 +-0.0674926 0.0889102 0.043735 +-0.000658033 0.0525337 -0.0307361 +-0.0805064 0.103384 0.0314383 +-0.0596514 0.142474 0.0348633 +-0.00849673 0.105867 0.0437425 +-0.0317522 0.0735748 -0.0285005 +0.0171692 0.0345228 -0.00186568 +-0.0229141 0.111944 -0.0185359 +-0.00375332 0.07411 -0.0361467 +-0.00849121 0.103027 0.0437022 +-0.0323725 0.16532 -0.00484492 +0.0250885 0.119458 -0.00473925 +0.00228893 0.0341509 0.0103163 +0.03989 0.0630598 0.0312004 +-0.0146968 0.175692 -0.019662 +-0.00218576 0.0355897 -0.0160761 +0.0318792 0.0686784 0.0407831 +-0.0783091 0.16249 -0.0249404 +-0.0807007 0.0752735 0.0231846 +-0.00686818 0.0385321 0.0081342 +-0.0114932 0.036278 -0.0256312 +-0.076524 0.178854 -0.050295 +-0.093475 0.1283 0.0242551 +-0.063929 0.0354009 0.0416662 +-0.064733 0.15377 0.0322824 +0.0293628 0.105677 -0.0139766 +-0.0544684 0.119419 -0.0121872 +-0.0878486 0.143233 0.0360974 +-0.0866257 0.081991 0.0115028 +0.0324736 0.0490215 0.0326282 +-0.0472578 0.121113 0.0280085 +0.0275416 0.0349624 0.00541796 +-0.0827616 0.091206 0.0312465 +-0.0627318 0.159944 -0.0435973 +0.0444941 0.0637658 0.0284543 +0.0512305 0.0723962 0.00737259 +-0.0374845 0.100078 0.0419234 +0.00446502 0.0977292 0.050995 +-0.090055 0.132436 0.0352224 +-0.0771832 0.107237 0.0346968 +0.0132863 0.0695708 -0.0313558 +-0.0833513 0.099287 0.0301656 +-0.050588 0.0599426 0.0326193 +-0.0116999 0.0599414 -0.0352829 +-0.0629554 0.156782 -0.0386059 +0.0452979 0.0875774 0.0181674 +0.0367705 0.074074 0.0373409 +-0.0378297 0.12794 0.00447467 +0.000472166 0.0388678 0.0256446 +0.00293826 0.0356401 -0.0151121 +0.0194959 0.11257 0.0373879 +0.0178674 0.103889 -0.0200126 +-0.0197782 0.075693 -0.0390468 +-0.0162539 0.171251 -0.016682 +-0.0719027 0.156807 -0.0389123 +-0.0816716 0.0734987 0.0125379 +0.00248698 0.0399628 0.0461692 +-0.0118767 0.105907 -0.0227385 +-0.0633264 0.159631 -0.0180726 +-0.0147126 0.0384481 0.00298688 +-0.0598094 0.0896854 -0.0200419 +-0.0586861 0.0603162 0.0231261 +-0.0518133 0.0531756 0.0296409 +-0.0201151 0.123178 -0.00639815 +-0.0197736 0.0998405 0.0442778 +-0.00649912 0.118331 0.038456 +-0.0868133 0.0846987 0.0154763 +-0.0052065 0.0389581 0.0316148 +-0.0886495 0.113065 0.0417436 +0.0045077 0.107168 0.0418669 +-0.0635616 0.174109 -0.0525858 +-0.0657828 0.082373 -0.0185031 +0.00281465 0.0379685 -0.0135285 +-0.0863919 0.099468 0.00241821 +0.0544797 0.0539552 0.0258897 +-0.0865727 0.08823 0.0252282 +-0.0778042 0.156927 -0.0169128 +-0.00349196 0.114194 0.0413026 +-0.0523232 0.13528 0.029621 +0.0359531 0.0673443 0.0378699 +0.0103588 0.130588 0.0191927 +0.0383356 0.10264 -0.0058258 +-0.0906686 0.139207 0.0161786 +-0.0534974 0.0876167 0.045276 +-0.0609918 0.138116 0.0346365 +-0.010493 0.114167 0.0405696 +-0.0260866 0.0349169 0.0485155 +-0.0519529 0.0531525 0.0236322 +-0.0670544 0.153567 -0.0495044 +-0.000486159 0.0689333 0.056515 +-0.034827 0.0929417 -0.0239227 +0.0157074 0.0821031 0.0526782 +-0.0185046 0.116829 0.0366774 +-0.0357116 0.0358916 0.0155029 +-0.0711005 0.148774 -0.0369587 +-0.0146296 0.185817 -0.0244743 +-0.0871678 0.11039 0.0183619 +-0.0897192 0.129664 0.0425949 +-0.0278047 0.074956 0.0433932 +-0.0408028 0.033851 -0.0276993 +-0.0260362 0.165356 -0.00798775 +-0.022832 0.0348259 0.0458328 +-0.0327846 0.0346162 0.0403814 +0.0292084 0.0350186 0.0149853 +-0.0908558 0.14471 0.0151666 +-0.0389013 0.0336802 -0.0215651 +-0.00950572 0.0590791 0.0548422 +-0.0252687 0.0931263 -0.0308668 +0.00727173 0.0667978 -0.0321541 +-0.0478216 0.109884 -0.018362 +0.00164525 0.0348132 0.00406568 +0.0377191 0.0632143 0.0350986 +-0.0468821 0.108426 -0.0186436 +0.0252001 0.0818001 -0.0245703 +0.00238035 0.127411 0.0292755 +0.0255053 0.103245 -0.0173339 +0.011492 0.0445292 0.0444785 +0.0458991 0.0414061 0.011234 +-0.0302302 0.0537755 -0.0183734 +-0.0870355 0.111737 0.0342553 +0.0298569 0.0835122 0.0432289 +0.0344154 0.0409101 0.0271225 +0.00697892 0.131225 0.0065571 +0.0443985 0.0748779 -0.000803542 +-0.0703751 0.112557 0.0480687 +0.0398576 0.101362 0.0261824 +-0.0146217 0.0450296 -0.0279689 +0.0305372 0.0592022 0.0405121 +-0.0427308 0.169809 0.000879537 +-0.00260639 0.0419888 -0.0252454 +0.000821596 0.0412233 0.0465397 +0.0447686 0.0889311 -0.000811854 +-0.00992934 0.166943 -0.0180552 +-0.0743075 0.170773 -0.046055 +-0.0564797 0.0356812 -0.0108166 +0.0302902 0.078207 0.0438447 +-0.0601407 0.0410386 0.0173224 +-0.0404944 0.0478337 -0.0126145 +-0.00989846 0.0384846 0.0238656 +-0.0338875 0.0780022 -0.0265044 +-0.0309197 0.0805646 -0.0325792 +-0.0788495 0.1177 0.0505094 +0.00204515 0.0345955 -0.0162029 +-0.0115453 0.0445033 0.0495732 +-0.048476 0.116631 0.0320328 +-0.0121876 0.113225 -0.0179296 +-0.0193167 0.0754023 0.0546877 +-0.0653246 0.0648097 0.0284194 +-0.0417336 0.0739469 -0.0182277 +0.0129121 0.0806948 0.0538726 +-0.087913 0.0900756 0.00446758 +-0.0459794 0.167363 0.00259136 +-0.00407632 0.124795 0.032822 +0.00214512 0.131665 0.0104804 +-0.0242177 0.0387671 0.0542484 +-0.0864391 0.131188 0.0477462 +0.0208043 0.12624 0.020186 +-0.0682771 0.163789 -0.0539724 +-0.0225729 0.172715 -0.0135004 +-0.0434823 0.12913 0.00531313 +-0.0465355 0.0790498 0.0431447 +0.0415243 0.0623608 0.0290336 +0.0206713 0.0868458 -0.0260413 +-0.0616015 0.0614498 -0.00273471 +-0.0698033 0.087974 -0.016854 +0.00908719 0.0358267 -0.00842564 +-0.0333922 0.068118 -0.0184774 +-0.0820819 0.150001 0.0344048 +0.0348029 0.113058 0.00110003 +-0.00477205 0.0345951 0.0445699 +-0.0740526 0.172196 -0.0480444 +-0.0192069 0.125855 0.0229991 +-0.0404977 0.0520197 0.0394004 +-0.0367886 0.156481 -0.0105439 +-0.0531367 0.0490718 0.026657 +0.015473 0.0962531 0.0481291 +-0.0492612 0.115146 -0.0157671 +0.0536465 0.0728799 0.00890065 +-0.0263571 0.0549776 0.0383278 +0.0333229 0.0997779 -0.013667 +-0.0551968 0.138069 -0.00309725 +-0.0563111 0.122698 0.0396267 +-0.02088 0.107273 -0.0222055 +0.000924532 0.100829 -0.0227814 +-0.0907853 0.117276 0.00630342 +-0.0134985 0.11551 0.0389419 +-0.0921826 0.114725 0.0193089 +-0.0218136 0.116051 -0.0148581 +-0.0915139 0.140599 0.0171878 +-0.0723659 0.100858 0.0389128 +-0.0227439 0.0669905 -0.0360641 +0.0133914 0.0448806 -0.0247967 +-0.0334245 0.0346344 0.0419763 +-0.083931 0.103265 0.0277985 +-0.0172469 0.116672 -0.0155678 +0.0141307 0.108667 -0.0183815 +-0.0676215 0.0688155 -0.00772966 +-0.049646 0.138599 0.0173958 +-0.0836562 0.0966099 0.0305537 +-0.0662913 0.165749 -0.0234747 +0.0434836 0.0734019 -0.00279222 +-0.0672802 0.0405919 -0.00423161 +-0.0468922 0.0334761 -0.010008 +-0.00688399 0.107372 -0.022762 +-0.0471129 0.13404 0.0104021 +-0.0613177 0.0470312 0.00669678 +-0.0857102 0.0912822 0.000468321 +-0.0564836 0.0589584 -0.00242578 +-0.0544716 0.0607811 0.0269495 +0.0392359 0.0685928 0.0338195 +-0.0907738 0.125596 0.0437739 +-0.0123469 0.0383491 0.0216787 +-0.00750765 0.123161 -0.01054 +0.0441233 0.0959295 0.00318315 +0.0262791 0.0675449 -0.0231801 +-0.0432671 0.0465873 -0.0113888 +0.00633058 0.0567988 -0.0308016 +-0.0135852 0.123715 -0.00700086 +-0.00140945 0.12836 0.0278943 +-0.0283882 0.0380697 -0.0179434 +0.0478387 0.0734572 0.0126134 +0.0038745 0.0367677 -0.0140867 +-0.05057 0.0335281 0.00739754 +0.036728 0.111857 0.010401 +-0.00844614 0.128164 -0.00189615 +-0.0247501 0.0578943 0.0408638 +-0.0467618 0.0657183 0.0385512 +0.038544 0.0726461 0.034619 +-0.00748755 0.111393 0.0423782 +-0.0658988 0.116581 -0.00961273 +-0.0415297 0.118854 -0.0137293 +-0.062219 0.164671 -0.0505894 +-0.00870995 0.128748 0.0252759 +-0.0315128 0.115295 0.0334421 +0.0503991 0.0466746 0.0233055 +-0.0753594 0.113961 -0.00568407 +-0.0866603 0.10494 0.00737931 +-0.0457163 0.0345386 0.0341935 +-0.0466235 0.0548092 -0.0105711 +-0.0516722 0.0693248 0.037985 +-0.0826957 0.0898386 0.0312187 +-0.0154881 0.0758696 0.0561745 +-0.0518084 0.0913012 -0.0220555 +-0.0751346 0.145812 -0.00886348 +-0.0732189 0.155097 0.0278276 +-0.0127272 0.0348945 -0.0256797 +-0.0698308 0.071946 0.0353261 +-0.0657288 0.163321 -0.0189522 +-0.0464914 0.08757 0.0446532 +0.0296359 0.112746 0.0324848 +0.0275411 0.044881 0.0360262 +-0.0187772 0.186086 -0.0166294 +-0.0884282 0.0874635 0.00747939 +0.0325508 0.115423 -0.000329209 +-0.0410423 0.0336551 0.000178151 +-0.0638018 0.0632948 0.0265284 +-0.0224569 0.0524128 0.0435307 +0.057327 0.0700157 0.00587175 +0.0345611 0.0740948 0.0394254 +-0.0409173 0.0351021 0.0417247 +-0.0742127 0.154103 -0.0229066 +-0.0824094 0.151775 0.0307901 +-0.0803828 0.11899 0.049226 +-0.010458 0.0953808 -0.0330949 +-0.0630414 0.149018 -0.0195802 +-0.0293211 0.123712 0.0208659 +-0.0231795 0.0622145 0.0434152 +-0.0287301 0.172704 -0.00834509 +0.00364827 0.128043 -0.00393793 +-0.0642706 0.166732 -0.060237 +-0.0108397 0.175678 -0.0290324 +0.0244048 0.112688 0.0354614 +-0.047561 0.0361661 -0.0123414 +-0.0534987 0.0427392 0.045857 +-0.0231257 0.165273 -0.0171671 +0.0388181 0.104067 -0.00210374 +-0.0356652 0.156121 -0.0104266 +-0.072524 0.106883 0.0374001 +-0.0331471 0.172636 -0.0149853 +0.040265 0.0391745 0.017119 +-0.0342456 0.0708723 -0.0195447 +-0.0687416 0.11428 0.0497375 +-0.0559525 0.0473442 0.0115659 +-0.0244817 0.107102 0.0411704 +-0.00571075 0.0627939 -0.0354611 +0.00805559 0.124767 0.0327601 +-0.0144892 0.0800879 0.0568709 +-0.0444848 0.0775765 0.0423436 +-0.063261 0.129725 0.0418859 +0.0349031 0.111324 -0.00180439 +0.00654043 0.0954774 -0.0291051 +-0.0290961 0.0410008 0.0527549 +-0.0234218 0.0738847 0.0503501 +-0.0567453 0.0342237 0.02862 +0.0376516 0.0425419 0.0281451 +0.0336732 0.115326 0.0207292 +-0.0174938 0.122238 0.0311921 +-0.073145 0.152886 0.0338966 +0.0392908 0.0660103 -0.00977956 +-0.0671096 0.125666 0.0504247 +-0.0815589 0.10988 0.0387619 +-0.00472043 0.0655745 -0.0349603 +-0.0584923 0.0818911 0.043717 +0.0395145 0.0415874 0.025748 +-0.0134628 0.0989564 0.047529 +-0.086226 0.143316 0.0387173 +-0.0675131 0.145595 0.0418048 +-0.0142233 0.174199 -0.0261217 +-0.0564238 0.0718073 0.0399857 +-0.0748487 0.0664559 0.00653551 +0.0254329 0.0835701 0.0474102 +-0.0735012 0.145587 0.0437725 +-0.0684894 0.104161 0.0391613 +0.046334 0.0533506 -0.00578803 +0.0111342 0.034487 -0.019828 +-0.0362745 0.033679 0.00474125 +-0.0580289 0.129633 -0.0066561 +-0.0674348 0.171149 -0.0382253 +0.0172278 0.0353072 0.0394845 +0.0290523 0.120756 0.00899975 +-0.0788357 0.148682 -0.00186858 +-0.0257486 0.0365571 0.0540093 +-0.076603 0.120411 0.0526033 +-0.0107827 0.0784509 -0.0379132 +-0.0283013 0.0648191 -0.0294785 +-0.0318386 0.0929851 -0.0242124 +-0.0504991 0.156412 0.0101915 +0.0435836 0.0722927 0.0259867 +0.0187342 0.112585 -0.0153321 +-0.0434831 0.0762058 0.0427502 +-0.00415334 0.0367895 0.0481682 +-0.0469304 0.116649 -0.0154073 +-0.0434764 0.0335212 0.0034233 +-0.0527322 0.0723715 -0.0160877 +-0.0593593 0.0651443 0.0328932 +-0.05784 0.0926528 -0.0211082 +-0.07134 0.156839 -0.0007386 +-0.000856246 0.103081 -0.0226647 +-0.000582144 0.0347482 -0.0236897 +-0.0384944 0.0464446 0.0402202 +0.0567142 0.0522491 0.00518691 +-0.0616825 0.0346164 0.0411183 +0.00851655 0.0758606 0.0561295 +0.0196258 0.127091 0.0083394 +-0.0719446 0.159605 -0.0399328 +-0.0356475 0.0379034 -0.0136529 +0.0172444 0.125917 0.0260258 +0.0094903 0.116849 0.0377607 +0.0232634 0.124781 0.0210949 +-0.0349607 0.125018 0.0217662 +0.0185443 0.12732 0.00510228 +0.0118903 0.0349087 0.0279111 +-0.00450764 0.0842735 0.0572857 +-0.0148777 0.0364156 0.0513074 +-0.0861402 0.0859086 0.000475654 +-0.0472303 0.164057 -0.00679428 +0.010042 0.0970288 -0.0247384 +0.0134328 0.0846923 0.0528905 +0.0456558 0.0449086 0.0258493 +-0.00349992 0.0746709 0.0587938 +-0.0719223 0.112846 0.049279 +-0.0117304 0.0670858 -0.0365895 +-0.0107336 0.0670714 -0.0363227 +0.0281295 0.110111 0.0355841 +0.00524969 0.0395071 0.0332712 +-0.030417 0.0360576 0.0517185 +-0.0191865 0.172705 -0.0222871 +0.032634 0.0954843 -0.0150589 +-0.0901468 0.129651 0.0415795 +0.015143 0.0346779 0.0251566 +-0.0926446 0.122835 0.02928 +-0.0735699 0.131215 0.0516643 +-0.0342826 0.126777 0.01609 +0.00752119 0.0813632 0.0555605 +-0.0325031 0.116645 0.0321616 +0.0237641 0.0349876 0.0120857 +-0.0592101 0.142401 0.0336275 +0.0449966 0.0931749 0.00418165 +0.0373285 0.0874946 0.0364747 +0.0175277 0.0348888 -0.0135142 +0.0451983 0.0889806 0.0171667 +0.0123957 0.0434077 -0.0245497 +-0.0759299 0.126701 -0.00794305 +-0.0895421 0.090213 0.0124508 +0.0392717 0.0938049 -0.00924672 +-0.087269 0.112677 0.0244432 +0.0369017 0.0770479 -0.0128074 +-0.019615 0.127443 0.00679651 +-0.058632 0.131139 0.0380532 +-0.0759599 0.0675387 0.00855626 +-0.0867924 0.139107 0.00519652 +-0.051888 0.0528335 0.0130005 +-0.0604943 0.108372 0.0386396 +-0.0620497 0.155563 0.0244621 +-0.0414999 0.0690877 0.0417125 +-0.000194321 0.121911 -0.011267 +0.0260147 0.0563895 0.0427437 +-0.00627779 0.0395112 0.048561 +0.0073902 0.0433817 -0.0245369 +0.00650458 0.105723 0.0419107 +-0.0890324 0.144705 0.01118 +0.0241216 0.0968854 0.045587 +-0.0284948 0.111359 -0.0178892 +-0.0842319 0.104575 0.0266516 +-0.0575865 0.0586919 0.0194779 +-0.0281815 0.125725 0.0109634 +-0.0638193 0.158306 -0.0465978 +-0.0355455 0.11407 -0.0167228 +-0.0683421 0.111385 0.0423299 +-0.0144529 0.178665 -0.0210547 +-0.00977952 0.0372711 0.0498001 +-0.0625714 0.164724 -0.0395894 +-0.088699 0.0915828 0.0224195 +-0.0594754 0.144099 -0.00268098 +-0.0925679 0.116061 0.0213084 +-0.0317212 0.0350332 0.0489115 +-0.0106525 0.165176 -0.016643 +0.00734712 0.12316 -0.0106668 +-0.0554936 0.104327 0.041387 +0.00250176 0.0620246 0.0566613 +-0.00947595 0.130265 0.0133884 +0.0276842 0.0768145 0.0453329 +0.00629218 0.0639808 -0.0323017 +0.00798329 0.130466 0.00265255 +0.0573764 0.0621793 0.0248727 +-0.0628961 0.158419 -0.0175871 +-0.0639761 0.129691 -0.00851425 +-0.0630898 0.161515 -0.0224551 +-0.0838815 0.111187 0.0425305 +0.0464938 0.0778639 0.0121785 +-0.0265128 0.116639 0.0325108 +-0.0545075 0.047347 0.012948 +-0.0677458 0.149084 -0.0355035 +-0.0687437 0.173038 -0.0415702 +-0.0258142 0.0389536 0.0363636 +0.0354622 0.0808406 0.0390375 +-0.028407 0.156859 -0.0100656 +-0.0728523 0.100773 -0.0133449 +-0.000973441 0.0353569 0.0464761 +0.0217031 0.104101 -0.0182402 +-0.0900893 0.135135 0.0242145 +-0.0209098 0.0382599 0.00734769 +-0.0384975 0.0676842 0.0417259 +0.0505086 0.0461176 0.0032623 +-0.0324927 0.0932098 0.0444316 +-0.029469 0.17882 -0.00554327 +-0.0770271 0.0743283 0.0300122 +0.0313581 0.116535 0.0255569 +-0.0772285 0.173502 -0.0405421 +0.0114915 0.130592 0.00962923 +-0.0739058 0.125263 -0.00826143 +-0.0709356 0.0780686 0.0386829 +-0.0450603 0.156487 0.00667449 +-0.00258285 0.0361873 -0.0247048 +-0.00135222 0.101336 0.0444015 +-0.0894746 0.139279 0.0281819 +-0.00967152 0.0968708 -0.0306358 +-0.0704928 0.117562 0.0527864 +-0.0678494 0.155094 0.00351036 +-0.0752747 0.175704 -0.0425921 +-0.032145 0.0863362 -0.0265533 +-0.0345086 0.0775176 0.0416541 +0.0409071 0.0711839 0.0309718 +0.0182107 0.084868 -0.0280483 +0.037986 0.0861315 0.0356473 +-0.0158582 0.107196 -0.0215252 +-0.0536497 0.0382495 -0.0113033 +0.0400088 0.107038 0.00721094 +-0.0111671 0.0867859 -0.0382994 +-0.0758579 0.0963896 -0.0129621 +0.00275941 0.0343655 0.0174794 +-0.0528912 0.109829 -0.018387 +0.0352142 0.037348 0.0177424 +-0.0770086 0.090082 0.0382275 +-0.0537852 0.0344427 0.037794 +-0.0317722 0.0335835 -0.0256749 +-0.0533077 0.12062 -0.0114531 +-0.0670377 0.155239 -0.0519345 +0.0248201 0.0343822 0.00913252 +-0.077345 0.0838842 -0.0115833 +0.0143045 0.0638067 -0.0299257 +-0.00129201 0.123843 -0.0093277 +0.0380905 0.0941294 0.0341306 +-0.0932985 0.125478 0.0122618 +-0.034118 0.163722 -0.0147399 +0.0298704 0.114081 0.0310466 +0.0255132 0.110081 0.0370706 +-0.0476672 0.0405803 -0.0117113 +-0.0472716 0.130968 0.0245047 +-0.0619845 0.128209 -0.0080954 +-0.0644855 0.0917771 0.0443552 +0.00846054 0.0341727 0.000449307 +0.000942621 0.0347668 0.0167534 +-0.0160225 0.0958165 -0.0315688 +-0.0534556 0.0353304 0.0456783 +0.0142349 0.129723 0.0106274 +-0.0726014 0.0365856 0.00586956 +0.033081 0.038417 0.0236373 +-0.0678588 0.128454 0.0493479 +0.0276968 0.0797349 -0.0226793 +0.0317217 0.0639399 -0.0186866 +-0.00482566 0.0896201 -0.0359284 +-0.0704978 0.124601 0.053003 +-0.00149487 0.115594 0.0408235 +-0.0360812 0.0358497 0.0136623 +-0.00514848 0.0385788 0.00662082 +-0.0791696 0.110508 0.0441428 +-0.0215028 0.0448835 0.0530162 +0.0173223 0.0699836 0.0514025 +0.0379734 0.0672941 0.0355158 +-0.0858805 0.0926571 0.00145452 +0.00396412 0.0977772 0.0510597 +-0.0656399 0.11715 0.0490043 +-0.0771179 0.165222 -0.035974 +-0.0198829 0.0383003 0.00206982 +-0.0187849 0.159551 -0.0109781 +-0.0655235 0.0347285 0.0315692 +0.0298088 0.0848631 0.0431899 +-0.0202144 0.186446 -0.0187314 +-0.0737921 0.165213 -0.0399888 +-0.0287531 0.0767493 -0.0350292 +-0.0108764 0.178532 -0.0297831 +0.00248459 0.114158 0.0410016 +0.0523216 0.0588453 -0.00357691 +-0.0424144 0.147803 0.00244515 +-0.0387777 0.0827042 -0.0213153 +-0.0338762 0.105703 -0.0205658 +-0.087924 0.1365 0.0420055 +-0.0747046 0.0837005 -0.0145969 +-0.0657521 0.033742 -0.00672308 +-0.045381 0.0381676 -0.0212668 +-0.0868004 0.0846768 0.00848321 +0.0294149 0.118962 0.0248216 +-0.034174 0.107559 -0.0198979 +0.0280502 0.0740858 0.0440821 +-0.0776167 0.0914005 0.037394 +0.0235133 0.0407023 0.0389233 +-0.0568656 0.102623 -0.018982 +-0.0678684 0.063022 0.000880975 +0.0360361 0.100737 0.0329764 +-0.0922724 0.125575 0.0332589 +-0.0929242 0.120168 0.0332909 +-0.018498 0.108568 0.0416031 +0.0174435 0.128281 0.0160914 +-0.0242219 0.178615 -0.0196227 +-0.0704096 0.163806 -0.0479588 +-0.0810819 0.0814326 -0.00557353 +-0.0595808 0.0380953 -0.00917151 +-0.00023307 0.0988811 0.0510016 +0.00703854 0.0344034 -0.0150394 +-0.092972 0.125468 0.0112596 +-0.00348845 0.115565 0.0406522 +-0.000499736 0.11143 0.0424297 +-0.00349598 0.0562185 0.05401 +0.0274875 0.0380349 0.0264602 +-0.0191507 0.168261 -0.0198644 +-0.0708777 0.131245 0.0502751 +-0.0591241 0.1154 0.0371963 +0.015252 0.122005 -0.00948865 +-0.0238533 0.0958019 -0.0255967 +-0.0225065 0.111294 0.03935 +0.0394335 0.0834241 0.0342316 +-0.0599597 0.121237 0.0413621 +-0.0151227 0.160977 -0.0122661 +-0.0856126 0.0792275 0.0145081 +-0.0304111 0.0336116 -0.02356 +-0.0300276 0.0875944 -0.030572 +-0.0387164 0.0695709 -0.0161311 +-0.0658849 0.153363 -0.0443952 +-0.0108819 0.168382 -0.0176467 +0.0450682 0.090383 0.0171641 +-0.0624967 0.149081 -0.013576 +-0.0222042 0.178612 -0.0212581 +0.0294982 0.120461 0.0105965 +-0.0414977 0.115265 0.0337662 +-0.0499421 0.135837 0.0234945 +-0.0843142 0.152356 0.00793113 +-0.0410616 0.156231 -0.0095971 +-0.0238697 0.104438 -0.0232028 +-0.0067213 0.065597 -0.0353344 +-0.0108037 0.0827117 -0.0384206 +0.0138699 0.049008 0.0461763 +0.016266 0.0750624 -0.0291952 +-0.0813824 0.099165 -0.00657823 +-0.0355882 0.126454 -0.000576513 +-0.0627783 0.0343233 0.0272634 +-0.0864194 0.133874 0.0462429 +-0.0424946 0.0972875 0.0422451 +-0.00875136 0.116762 -0.015718 +-0.00610573 0.035829 0.0485597 +-0.0634859 0.146784 0.0381458 +0.00949393 0.109876 0.0399119 +-0.0286135 0.0817842 -0.0355888 +-0.0785092 0.126003 0.0529555 +-0.0564526 0.0602802 -0.00348733 +-0.0632263 0.153648 -0.0346156 +-0.0212315 0.0839098 0.0563274 +-0.0185478 0.0382321 0.00966598 +-0.0629734 0.126755 -0.00855487 +-0.0607657 0.139716 -0.00595313 +-0.0192289 0.178619 -0.0235673 +-0.0154933 0.0730227 0.0553537 +0.0208153 0.0564412 0.0475406 +-0.0390833 0.0486663 -0.0122287 +-0.065493 0.153273 0.0335324 +0.0608914 0.0637395 0.0141606 +-0.0153829 0.18014 -0.0206255 +-0.0822314 0.0842513 -0.00555381 +-0.0678037 0.0880304 -0.0174902 +0.0361089 0.0577094 0.0344737 +-0.0464121 0.035458 -0.0187253 +-0.0666201 0.0338653 0.00919115 +-0.0674808 0.0688292 0.0332504 +-0.0659293 0.156005 0.0129201 +-0.0294246 0.0861745 0.0444819 +-0.0581309 0.155502 0.017154 +-0.0726537 0.15621 0.0148854 +-0.0168438 0.180138 -0.0192059 +-0.0656741 0.0356447 0.0159226 +0.0163545 0.0507599 -0.025927 +-0.0293383 0.123554 -0.00265044 +0.00679991 0.131589 0.0107583 +-0.0398245 0.0942915 -0.0229995 +-0.0945717 0.122812 0.0182725 +0.00440363 0.0390362 -0.0241943 +-0.0798195 0.105901 -0.00558882 +-0.0117856 0.0813065 -0.0386038 +0.00749342 0.0372096 -0.0118978 +-0.0744971 0.176396 -0.0436946 +-0.00968478 0.0584187 -0.0340646 +0.0312312 0.117425 0.00123717 +0.0184875 0.0976002 0.0470854 +-0.0716235 0.0693585 0.0301698 +0.039816 0.0393083 0.00327619 +-0.0835287 0.11032 0.027366 +-0.0245014 0.043543 0.0534366 +0.0370893 0.106835 -0.00283087 +-0.0567623 0.154944 0.0190948 +-0.0275761 0.125766 0.0126577 +-0.00827698 0.0408222 0.049207 +0.0553826 0.0699889 0.0228528 +0.012476 0.0976634 0.0485624 +0.0597169 0.0580863 0.0181825 +-0.0261346 0.168251 -0.00989215 +-0.0319337 0.0680008 -0.0224492 +-0.0367004 0.0680804 -0.0157124 +-0.0192371 0.0959207 0.0497533 +-0.0482812 0.115062 -0.0157267 +-0.0625405 0.132491 0.039434 +-0.0464975 0.163768 0.00545168 +-0.0809296 0.0885877 0.0337432 +-0.0341216 0.0395911 0.0493113 +0.0322123 0.0856789 -0.0192748 +-0.0822934 0.0775365 0.000511811 +0.00709964 0.0342068 0.00386204 +-0.086438 0.0832915 0.00949498 +-0.0244616 0.0474336 0.050725 +0.00565547 0.0365592 0.0251573 +-0.0274618 0.045988 0.0503593 +0.010522 0.119127 0.036469 +-0.0736141 0.151246 -0.0348888 +-0.024687 0.0892375 0.0511394 +0.00296667 0.0390863 0.0277676 +-0.0494919 0.154959 0.0103413 +-0.058864 0.139321 -0.00549203 +-0.0327877 0.082138 -0.0285334 +-0.0423065 0.150496 -0.00548521 +-0.0631749 0.149 -0.0205832 +-0.0218319 0.0363367 -0.0187811 +-0.0723757 0.0638786 0.0154336 +-0.0358563 0.126885 0.000788129 +0.0192111 0.080597 -0.0276192 +-0.0620809 0.0336347 -0.00771095 +-0.0313625 0.0510794 -0.0143586 +-0.063822 0.115596 0.0429106 +-0.0645614 0.138204 0.0400205 +-0.0824235 0.124446 0.0510342 +0.0555936 0.0567472 0.0257684 +-0.0293723 0.0422984 0.0515712 +0.0526995 0.0702438 0.0035897 +-0.0647148 0.06349 0.0261636 +0.00450679 0.0702611 0.0557926 +-0.0421206 0.171253 -0.0079388 +-0.00823225 0.127328 0.0283641 +0.0085198 0.0716538 0.0557746 +-0.0603515 0.116839 0.0389782 +-0.0758447 0.151365 -0.0158827 +-0.0913489 0.117296 0.00730629 +-0.0787438 0.101744 -0.00857364 +-0.0758718 0.109158 -0.00765228 +0.0141976 0.0850086 -0.0301852 +0.0110282 0.0968851 -0.0245853 +-0.0821235 0.0802564 0.0295192 +-0.0500787 0.154631 -0.00525635 +-0.0278864 0.105837 -0.0222471 +-0.0355149 0.0804148 0.0426568 +0.0156112 0.0519525 0.0469795 +-0.0758417 0.114903 -0.00554375 +-0.00130995 0.124776 -0.00834251 +-0.0285122 0.180211 -0.00692909 +0.0124807 0.0949598 0.0504131 +-0.0679136 0.113718 -0.0102762 +-0.0871543 0.105024 0.0183639 +0.0375648 0.0926236 -0.0120119 +-0.0297787 0.125132 0.0177406 +-0.0253546 0.121816 0.0267508 +0.0463872 0.0806547 0.00917972 +-0.0386145 0.0492284 -0.011639 +-0.0604969 0.0918487 0.0452694 +-0.0754744 0.151328 -0.022882 +0.0184783 0.101734 0.0458501 +-0.0250671 0.0385158 0.031526 +-0.0384759 0.091717 0.0434324 +-0.0394992 0.0916803 0.0429883 +-0.0668335 0.143964 0.0420823 +-0.0653424 0.0629827 0.0247148 +-0.0644392 0.112372 0.0382632 +0.0242087 0.039076 0.0343007 +-0.0535427 0.0402957 -0.0106063 +-0.082326 0.0748249 0.00451639 +-0.0544972 0.0959632 0.0436086 +-0.020823 0.0868434 -0.0377816 +-0.0636947 0.167813 -0.0415938 +-0.0448731 0.128505 0.000263047 +-0.0608825 0.0996865 -0.0185327 +0.0079329 0.0630739 0.055296 +0.00434495 0.0973121 -0.027058 +-0.091323 0.113292 0.0153266 +-0.0074977 0.0801462 0.0578122 +-0.0899881 0.118599 0.00429898 +-0.072593 0.155911 0.00171291 +0.00944326 0.128939 -0.000930002 +-0.0669203 0.110822 0.0381745 +-0.0378406 0.0957387 -0.0228102 +-0.00994641 0.0339021 -0.0251924 +-0.0261195 0.0706905 0.0432458 +0.0285346 0.121033 0.017364 +-0.0702811 0.17421 -0.0421289 +-0.00949024 0.104446 0.0436658 +-0.0877186 0.105023 0.0153645 +0.0487537 0.043125 0.0102298 +-0.0709615 0.148056 -0.0324394 +-0.0785455 0.146115 0.0422588 +-0.0777749 0.150053 -0.00387978 +-0.0747481 0.158885 -0.00783629 +0.022966 0.0347513 0.0194226 +-0.000497806 0.0842866 0.0575088 +0.0329127 0.116986 0.00902312 +0.0303386 0.119339 0.00661655 +0.0335365 0.0483507 0.0312493 +-0.0506321 0.0530807 0.0328365 +-0.0283907 0.123379 0.0211752 +0.043167 0.0831963 -0.0047762 +-0.00976599 0.121876 -0.011136 +-0.0836817 0.0786288 0.0214472 +-0.0584699 0.0344613 0.0385122 +-0.031399 0.116965 -0.0137545 +-0.0679334 0.145349 0.0422649 +0.0355447 0.11347 0.012835 +-0.0343438 0.0384811 -0.00836679 +-0.0303159 0.0678299 -0.0274662 +0.030827 0.0835413 0.0428747 +-0.0367713 0.0871639 -0.0235593 +-0.0249824 0.117062 -0.0139085 +-0.0633873 0.169402 -0.0465883 +-0.0567938 0.0498747 0.00808849 +-0.0719281 0.148635 -0.0350398 +-0.0764024 0.150045 -0.00692327 +-0.085242 0.115675 0.000251725 +0.0352163 0.0367258 0.0146563 +-0.0476332 0.0345872 0.0389835 +-0.0306482 0.0819602 -0.032565 +-0.0258283 0.172717 -0.011167 +-0.0745076 0.115686 0.0517763 +-0.0625234 0.0413191 -0.00677899 +-0.02745 0.110307 -0.0187882 +-0.0444951 0.104328 0.0415155 +-0.0774643 0.155549 -0.0139037 +0.0154943 0.105779 0.0433144 +-0.00688511 0.0982482 0.0516445 +-0.0476227 0.122378 -0.0113753 +-0.0830725 0.139367 0.045586 +-0.0431901 0.039319 -0.0232745 +0.00551778 0.0828244 0.0566316 +-0.0364708 0.152123 0.0014574 +-0.00749897 0.0815283 0.0577578 +-0.0165021 0.118207 0.0361456 +0.013481 0.0358562 0.0436245 +0.0102178 0.0836927 -0.0316174 +0.0514697 0.0462224 0.00523719 +0.0399822 0.0910991 -0.010396 +-0.0510223 0.0339346 0.00874224 +-0.0327803 0.0793117 -0.0285199 +0.0549936 0.0732019 0.0123756 +0.0461994 0.0750316 0.00518987 +0.0371924 0.0391306 0.0220088 +-0.0737191 0.152664 -0.0318934 +-0.0548531 0.149577 0.0276913 +-0.00305215 0.125834 0.0316944 +-0.021742 0.0389771 0.0371835 +0.0252695 0.0532659 -0.021679 +-0.0633235 0.0388939 0.025715 +-0.053898 0.105542 -0.0189379 +-0.0718855 0.122345 -0.00846405 +-0.0334848 0.0561021 0.0379001 +-0.0635384 0.061476 -0.00191873 +0.0137785 0.0346695 0.0230735 +0.0204936 0.1267 0.00866396 +-0.0258672 0.156547 -0.00846874 +-0.089402 0.0996815 0.0144017 +-0.010288 0.172711 -0.0218803 +0.00772266 0.115023 0.0394097 +-0.0363729 0.176071 -0.00683571 +-0.0525546 0.0444744 -0.00849373 +-0.0577063 0.155408 0.0158579 +-0.0512663 0.12652 -0.00563382 +-0.0277699 0.0661915 -0.0304661 +-0.0394907 0.0422995 0.0416287 +-0.0592646 0.0346371 0.0433189 +-0.0917594 0.117442 0.030311 +0.0188028 0.0349604 -0.00569856 +-0.0184644 0.0528818 0.0482087 +-0.0649365 0.1467 -0.0209465 +-0.0397769 0.152293 -0.00702124 +0.056742 0.0696177 0.0218717 +0.0435205 0.0637429 0.0281056 +0.0514429 0.0626408 -0.00275857 +-0.0668197 0.100942 -0.0159632 +-0.078886 0.0812827 -0.00855752 +0.0483563 0.0710513 0.00477309 +-0.0415729 0.151549 -0.00635576 +-0.0122139 0.169818 -0.0178463 +-0.0454996 0.163749 0.00555272 +-0.0779251 0.168693 -0.0322923 +-0.0455017 0.0973341 0.0429686 +-0.0932761 0.122751 0.0112823 +-0.00193792 0.0388572 0.00152241 +0.0379602 0.108292 0.00117706 +0.0447742 0.0777119 -0.00080388 +-0.0365645 0.0341557 0.0276322 +-0.077566 0.155252 0.0102497 +-0.00781043 0.0346187 0.0439246 +0.0218954 0.061892 0.0473866 +0.0229726 0.108506 -0.0149598 +0.0350891 0.111006 -0.00183676 +0.00866181 0.128565 0.0271896 +0.00435977 0.0481043 -0.0288152 +-0.00551112 0.0390255 -0.00865823 +-0.0205328 0.113457 -0.0181494 +-0.0851368 0.0832799 0.0224738 +0.00348766 0.115539 0.0402625 +-0.0174898 0.105786 0.0424611 +-0.087451 0.133828 0.0444349 +0.00492538 0.111581 -0.020193 +0.0318279 0.0713659 0.0407221 +-0.0121811 0.0984293 0.0498089 +-0.0747959 0.149331 0.0394056 +-0.0571923 0.0344404 0.0353306 +0.0154304 0.0417921 -0.0229429 +-0.0481114 0.159106 -0.00699154 +-0.0285 0.0960446 0.0448096 +0.0354946 0.0642547 -0.0137843 +-0.0204882 0.0388257 0.0339872 +0.0353716 0.0741014 0.0388421 +-0.0157653 0.161968 -0.0148041 +0.00551566 0.0799926 0.0558154 +0.0181043 0.128017 0.0106305 +-0.0644854 0.0986987 0.0423063 +-0.0415014 0.0492193 0.0396812 +-0.0900528 0.132428 0.0342227 +-0.0126494 0.0496668 -0.0310907 +-0.0321289 0.0337822 0.0109163 +-0.0625403 0.149101 -0.00657536 +-0.0124899 0.104431 0.0434394 +-0.0728072 0.15012 0.0385587 +-0.0275374 0.156717 -0.00957418 +-0.0627683 0.04307 0.0276693 +0.00651507 0.0344231 0.0163793 +-0.0631947 0.163133 -0.0265887 +-0.0264832 0.105687 0.0411729 +0.0072963 0.0341516 -0.018557 +-0.018657 0.109944 -0.0204332 +-0.0843505 0.0842533 0.0274024 +-0.0531944 0.139931 -0.000456373 +-0.0741436 0.100877 0.037779 +-0.0658548 0.0952898 -0.0176963 +-0.0504071 0.163936 0.00393123 +-0.00384396 0.0384339 0.019723 +-0.0889438 0.137894 0.0261932 +-0.017832 0.0346972 0.047013 +0.0156145 0.128768 0.00543431 +-0.0517309 0.0489114 0.0216412 +-0.0358204 0.046598 -0.0238768 +-0.059344 0.139552 0.0335155 +0.0510761 0.0567889 0.0297952 +-0.0787812 0.166656 -0.0319662 +0.030718 0.111397 0.0323042 +0.0535299 0.049514 0.0226619 +-0.0446433 0.0346533 0.0343218 +-0.0169852 0.186593 -0.0230311 +-0.0743965 0.149892 -0.0310959 +-0.0373231 0.0354917 0.0439186 +-0.000691629 0.100255 0.0478272 +-0.0818959 0.141783 0.000186922 +-0.0304023 0.0382885 -0.00186367 +-0.00349386 0.0925503 0.0560196 +-0.088924 0.151541 0.0211005 +-0.0824519 0.0856305 -0.00554258 +0.0469336 0.0511672 0.030779 +-0.0852791 0.132127 -0.000702015 +-0.0891862 0.112803 0.0347042 +0.0229651 0.0928857 0.047441 +-0.0442655 0.127665 -0.00291939 +-0.0917744 0.132406 0.0242297 +0.00738689 0.0359942 0.0260187 +0.0456627 0.0890114 0.0111648 +-0.0860966 0.11232 0.0268196 +-0.0556879 0.117086 -0.0137514 +0.0093902 0.0739182 0.0557875 +-0.0794167 0.137236 0.0495785 +-0.0893497 0.130881 0.0042394 +-0.0656682 0.0337431 0.00949839 +-0.0263524 0.059005 -0.029433 +0.0104643 0.0346107 -0.00703394 +-0.0631576 0.119928 0.0457283 +0.0423355 0.0972587 0.0241615 +0.0603447 0.0595379 0.00916361 +0.0495034 0.0488243 -0.00166079 +-0.0740753 0.155198 0.0041876 +-0.0656926 0.125639 0.0489587 +-0.00648958 0.0503786 0.0513549 +0.0381951 0.102007 0.0289909 +-0.0592102 0.0595951 0.00211544 +0.0285202 0.0622348 -0.0207982 +-0.0876555 0.144675 0.00917716 +0.0519851 0.0567984 0.0293579 +-0.0300707 0.124739 0.00148409 +-0.0725865 0.0874189 0.0409577 +-0.00281209 0.0882041 -0.0358187 +-0.0637344 0.0736795 -0.0161836 +0.0142616 0.0794232 0.0540604 +0.0458875 0.0787805 0.0205292 +0.0245051 0.0849065 0.0478503 +-0.0617895 0.083881 -0.0194032 +0.0333636 0.0364347 0.0163708 +0.0165102 0.111269 0.0389693 +0.033894 0.111352 0.0280456 +-0.00616098 0.0344967 -0.0177303 +-0.0662325 0.14347 -0.0127636 +-0.0199914 0.0962147 -0.0280142 +-0.0259005 0.126064 0.0117956 +-0.0929641 0.121523 0.0342815 +0.00656148 0.101677 0.0461619 +-0.0600389 0.0627348 0.027804 +0.0335486 0.0889696 0.0416029 +-0.0688127 0.0908552 -0.0166124 +-0.0856608 0.0854539 0.0244177 +-0.0759458 0.0974591 -0.0125133 +-0.0667171 0.171901 -0.0422833 +-0.0191016 0.0431933 0.0528315 +-0.0589426 0.0357407 0.0458703 +0.013481 0.127543 -0.00145794 +-0.0239185 0.0383353 -0.00428996 +-0.0627701 0.0824471 -0.0192325 +-0.0614696 0.136692 0.0357094 +-0.0810116 0.0734375 0.0175497 +-0.0759173 0.12523 -0.00781198 +-0.00824401 0.0384507 0.0170014 +-0.0641628 0.157463 -0.0125984 +-0.0178575 0.122517 -0.00769635 +-0.0596856 0.0659756 -0.00895149 +-0.0807952 0.106052 0.0302403 +0.0156574 0.0925729 -0.0260099 +-0.081817 0.0734713 0.00853447 +-0.052947 0.1293 -0.00466978 +0.0313864 0.0929268 0.0420114 +-0.0242749 0.174204 -0.0124276 +-0.0678958 0.0610238 0.00808464 +-0.0477867 0.135371 0.0169352 +-0.0514248 0.0500855 0.0140283 +0.0463863 0.075041 0.00619921 +-0.0120829 0.121468 -0.0106691 +0.0474936 0.0651497 0.0284001 +-0.0370341 0.127886 0.0121304 +-0.0240288 0.0385625 0.0316972 +0.0484803 0.0651161 -0.0012457 +-0.0516556 0.0569841 0.0295138 +-0.0639861 0.131146 -0.00837414 +-0.0504965 0.087636 0.0455301 +0.03603 0.0808066 0.0380541 +-0.0869174 0.117103 0.00125292 +-0.0617229 0.155313 -0.01958 +-0.0631289 0.15403 -0.0107687 +0.00528045 0.114267 -0.0191116 +-0.0639453 0.167747 -0.0398404 +0.0288613 0.0520696 0.0379853 +-0.0623548 0.166257 -0.0465894 +0.000543528 0.123331 0.0344653 +0.0375704 0.0618629 0.0348997 +-0.0391935 0.128299 0.00543562 +-0.0593991 0.0472653 0.0079341 +-0.0244003 0.0390404 0.0383653 +-0.0676508 0.0338326 0.0090061 +-0.0292136 0.07193 -0.032514 +-0.0374976 0.0861098 0.0439188 +0.0247244 0.0549721 0.0426251 +-0.0892169 0.151457 0.0141575 +-0.02429 0.121354 -0.00839434 +-0.0618416 0.098205 -0.0180486 +-0.0320742 0.0383234 -0.000421092 +-0.0488761 0.107007 -0.0192731 +-0.0476462 0.123357 -0.010393 +0.0220922 0.12286 0.0278182 +-0.00150357 0.0647954 0.0567431 +0.000502823 0.0870298 0.0569751 +-0.0581295 0.0643065 0.0321224 +-0.0188005 0.0568615 0.0490899 +-0.0794271 0.0732336 0.00151817 +0.019219 0.0848258 -0.027423 +-0.0344972 0.116614 0.0320154 +0.000192029 0.0811649 -0.0359709 +-0.0741702 0.0968478 0.0394202 +0.00621596 0.083814 -0.033411 +-0.0671177 0.159814 -0.0107973 +-0.0187526 0.0641914 -0.0363857 +0.0556876 0.0493473 0.0181935 +-0.0364983 0.059104 0.0398977 +-0.071802 0.181053 -0.0556554 +-0.0116602 0.168404 -0.0170453 +-0.0478952 0.0713156 0.0406183 +0.0354015 0.0476244 -0.00628637 +-0.0262003 0.0750789 0.0460261 +-0.0550327 0.0674609 0.0370807 +-0.0565425 0.0415574 -0.00871771 +-0.0546448 0.115434 0.0349037 +-0.0682182 0.15577 -0.00101225 +-0.066899 0.132617 0.0454244 +-0.0743656 0.172848 -0.0365047 +-0.0734703 0.155395 0.00293075 +-0.0125152 0.0589286 0.0534547 +0.00233104 0.0554199 -0.0313859 +-0.0805618 0.101855 -0.00659893 +-0.0537592 0.0797599 -0.020636 +-0.0237797 0.125538 0.0184413 +-0.0508814 0.161419 0.0066624 +-0.0742588 0.0655235 0.0100016 +0.0457502 0.0805926 0.00319942 +-0.0764848 0.142819 0.0460732 +-0.0442438 0.113637 -0.0162318 +-0.00550074 0.0870334 0.0571343 +-0.059876 0.0997119 -0.0187764 +-0.069062 0.149033 -0.0371338 +-0.0598711 0.154188 0.0296083 +-0.044481 0.0973337 0.0428134 +0.0255359 0.118038 0.0305151 +-0.000498881 0.112805 0.0421187 +-0.073083 0.0981963 0.0397086 +-0.0766217 0.068534 0.0175211 +-0.038773 0.11398 -0.0166127 +0.0194763 0.0837958 0.0507486 +-0.0809353 0.145916 -0.000819165 +0.0301953 0.0476864 0.0346108 +-0.0284906 0.0932063 0.0444855 +-0.071967 0.162417 -0.0419522 +-0.0647895 0.0838376 -0.0190209 +-0.00994817 0.0389455 -0.0113423 +0.00268547 0.035256 0.0455248 +-0.0587181 0.0481161 0.00163754 +-0.0537032 0.140954 0.0276054 +-0.0166811 0.0377146 -0.0171581 +-0.0896263 0.0969991 0.0154111 +-0.0475653 0.166962 -0.00492463 +-0.0684985 0.0986495 0.0414678 +0.0399619 0.0730961 -0.00981181 +-0.0433911 0.121364 -0.0123522 +-0.0619851 0.167813 -0.0525933 +-0.0768904 0.0733563 0.0291265 +-0.058879 0.104045 -0.0185386 +-0.0154965 0.0573571 0.0513792 +-0.0115598 0.09531 -0.0330219 +-0.0335104 0.125389 -0.00127044 +0.0292004 0.119729 0.0233163 +-0.0141909 0.171251 -0.024451 +0.00225805 0.0711729 -0.0343766 +0.000838494 0.130009 0.0243594 +-0.0186635 0.0360947 0.0525267 +0.0441946 0.0874765 -0.00278813 +-0.0347028 0.122731 -0.00776716 +-0.0478246 0.129609 0.027299 +-0.0784918 0.144814 0.0436628 +0.020477 0.0989516 0.0463466 +-0.0870404 0.113136 0.0295379 +0.012093 0.120504 0.0352323 +0.00825492 0.0739666 -0.0336091 +0.00112807 0.104475 -0.0219821 +-0.0142621 0.120334 -0.0114431 +-0.0507965 0.0345143 0.033135 +0.0311896 0.0857114 -0.0197343 +-0.0894234 0.0956355 0.01542 +-0.0775093 0.0961888 -0.0115304 +-0.0358262 0.0929298 -0.0238031 +-0.0774962 0.131676 0.0527303 +-0.0421326 0.160667 -0.0107094 +-0.0276983 0.125752 0.00966815 +-0.045336 0.129618 0.020889 +-0.00368188 0.0613041 -0.0346439 +-0.0748644 0.171601 -0.033829 +-0.0207882 0.0770942 -0.0390427 +-0.044533 0.160785 0.0064482 +-0.0789135 0.0799145 -0.00757704 +-0.0700794 0.154941 0.0289273 +-0.0313268 0.0609036 -0.0184352 +-0.0853384 0.107683 0.0213404 +-0.0624789 0.152144 -0.0275875 +-0.0427656 0.0797392 -0.0197597 +0.00722196 0.0865913 -0.0328221 +-0.0720619 0.109399 0.0395074 +-0.0911632 0.132299 0.00922827 +-0.00610552 0.129863 0.0232869 +0.02524 0.115374 0.03316 +0.00541955 0.0912903 -0.0327619 +0.00896308 0.0344141 -0.00340754 +-0.0356782 0.0636593 -0.0138055 +-0.0555057 0.153886 0.023914 +0.0207355 0.0349558 0.0059225 +0.0360179 0.0848402 0.038086 +-0.0488433 0.098515 -0.0220378 +-0.0633934 0.178218 -0.0607118 +-0.0846638 0.0778105 0.0155166 +0.0437393 0.0720229 -0.000789276 +-0.0288953 0.122588 -0.00566495 +-0.025973 0.0851197 0.051146 +-0.0782416 0.0913778 0.0366028 +-0.0494978 0.0960237 0.0444817 +-0.0785831 0.0731535 -0.00247436 +-0.0698391 0.165209 -0.0499791 +-0.0586839 0.0335669 0.00570948 +-0.0610591 0.155387 0.024814 +-0.0642828 0.163385 -0.0227384 +-0.0658667 0.0334936 -0.00108817 +0.037341 0.0888457 0.0365275 +0.02301 0.0347163 0.00286296 +-0.0590207 0.126708 -0.0075139 +0.0463679 0.0792556 0.0081871 +-0.00960203 0.0406207 -0.0262166 +-0.0771598 0.160359 -0.0157997 +-0.0425011 0.163766 0.00491011 +-0.00971544 0.177216 -0.0294611 +0.021747 0.102101 0.0439088 +-0.087802 0.139216 0.0403868 +-0.0694557 0.0421945 0.00370163 +0.0173244 0.0580274 -0.0281164 +-0.011686 0.178646 -0.0240587 +-0.0245154 0.158144 -0.00224812 +0.021637 0.0948486 -0.0224193 +0.00951901 0.0504027 0.0504431 +-0.0252093 0.112572 -0.0171753 +-0.0736758 0.108402 0.0380105 +-0.0551152 0.0341599 0.0272668 +-0.0462814 0.155049 0.00841735 +-0.0164865 0.0730277 0.0553332 +-0.0853981 0.109039 0.0213496 +-0.0817879 0.0734817 0.0075372 +-0.0543644 0.15733 0.00977334 +-0.0391365 0.0406682 0.0418102 +0.00445432 0.130749 0.00275136 +0.0247455 0.105845 -0.0161092 +-0.0554962 0.0904299 0.0451691 +-0.00849692 0.0731924 0.0575239 +-0.0665361 0.11864 0.0512424 +-0.0771905 0.152834 -0.00389169 +-0.0684956 0.0958684 0.0422138 +-0.086559 0.0806364 0.0135028 +-0.065258 0.156162 0.0146042 +-0.0134788 0.105828 0.0432751 +-0.00273284 0.0712345 -0.035418 +0.0276777 0.0972525 -0.0189451 +-0.0768441 0.113421 -0.00459179 +-0.0291819 0.174148 -0.0171874 +-0.0392913 0.0344977 0.0373408 +-0.00249868 0.0965524 0.0536599 +-0.026518 0.10985 0.0386071 +-0.0272212 0.114809 -0.0155223 +-0.0617195 0.0669875 0.0343055 +-0.0824261 0.101938 -0.00456304 +-0.0889571 0.0955775 0.00843273 +-0.0288529 0.100117 -0.0233232 +-0.0899265 0.130893 0.00523191 +-0.0346189 0.112824 -0.0174204 +-0.0154754 0.111334 0.0410203 +-0.053649 0.0335392 -0.00958395 +-0.000215874 0.126274 0.0312521 +0.00810763 0.0366956 0.0273459 +-0.0915032 0.133721 0.0182157 +0.0193574 0.0537071 -0.027254 +-0.0617049 0.070743 -0.0146345 +-0.0745149 0.121791 0.0533186 +-0.070524 0.0682803 0.0295828 +-0.0206697 0.0697068 0.051972 +-0.0918785 0.141976 0.0181723 +-0.0408421 0.0345979 0.00840679 +-0.0738542 0.15551 0.00718209 +0.0055205 0.0427186 0.0455303 +-0.065431 0.168513 -0.0346313 +0.0194077 0.0659 0.0490938 +-0.0485039 0.0876217 0.0453743 +-0.0622817 0.0458517 0.0346831 +0.0349983 0.0362655 0.0094693 +-0.0912374 0.140583 0.0161703 +-0.0884146 0.113764 0.0250911 +0.0142472 0.0860448 0.0523279 +-0.0131413 0.127389 -0.000900164 +0.0289187 0.0580129 -0.0187889 +0.00423189 0.0768627 -0.0347545 +0.0204663 0.0385832 -0.00969847 +-0.0217971 0.0348633 0.0460203 +-0.0864575 0.101794 0.0247295 +0.00132582 0.0568889 -0.0321653 +-0.0697484 0.0793376 -0.0160307 +-0.0845391 0.102087 -0.000621587 +-0.0733924 0.0656461 0.018954 +-0.0391909 0.0342717 0.0287528 +-0.065551 0.112475 0.040245 +-0.0628947 0.161497 -0.0505862 +-0.0455612 0.125305 -0.00846085 +0.0204165 0.110729 -0.0153427 +-0.0119941 0.16759 -0.0225943 +-0.0778434 0.153328 0.00140062 +-0.0743032 0.152688 -0.027892 +-0.0719627 0.134048 -0.00796724 +-0.0322554 0.0722092 -0.0264952 +-0.0689145 0.123836 -0.00886831 +-0.0292201 0.0564848 -0.022383 +-0.0336564 0.0343441 0.0369141 +0.0587559 0.0579922 0.0215357 +0.0331644 0.1138 0.0262385 +0.0155789 0.125536 -0.0032763 +-0.0511913 0.034459 0.0313456 +0.0336899 0.0357287 0.00969367 +0.0540437 0.0734433 0.0120297 +-0.0588961 0.106893 -0.0176578 +-0.0158316 0.18484 -0.0207268 +0.0120317 0.0342138 -0.0138856 +0.0335354 0.0380053 0.0222769 +-0.0118847 0.117889 -0.0148923 +0.00991822 0.0342953 -0.00310719 +0.00806259 0.0342288 -0.0204182 +-0.00962665 0.0384388 0.00947704 +-0.00349166 0.0534503 0.0541192 +0.0248931 0.108132 -0.0145556 +-0.0355172 0.106999 0.038376 +0.0298839 0.118971 0.0235707 +-0.0896201 0.0969823 0.0124196 +0.00795856 0.126912 0.0298215 +-0.0734288 0.149863 -0.0358672 +-0.0513643 0.132495 0.031006 +-0.056967 0.0535025 0.000612409 +-0.0226813 0.0349023 0.0509736 +0.0573538 0.0634191 0.00214341 +-0.0178849 0.0387376 -0.0108688 +-0.0690262 0.170476 -0.0316587 +-0.0162544 0.183109 -0.0200888 +-0.0569078 0.052097 -0.000371255 +-0.0845703 0.11062 0.0357089 +0.035496 0.0454077 0.0303438 +-0.00267498 0.100539 0.0471075 +-0.080721 0.0845507 0.0336553 +-0.0900133 0.150126 0.0131697 +-0.0628916 0.0631016 0.0268901 +-0.0739067 0.163816 -0.0379732 +-0.0313311 0.0487062 0.0434625 +-0.036476 0.0533606 0.0387027 +-0.0636484 0.15559 0.00937973 +0.0135801 0.0874029 0.0531363 +-0.0259964 0.0967524 -0.0245741 +-0.0665286 0.168031 -0.0580342 +-0.0794099 0.141428 0.0463829 +-0.0496093 0.0334738 -0.00871292 +0.0373859 0.082128 0.0365587 +-0.00650329 0.0547609 0.0534371 +0.0253836 0.0503366 -0.0210264 +-0.00332845 0.128773 0.0271941 +0.0363318 0.0601344 -0.0117401 +-0.0258635 0.103016 -0.0235702 +-0.0251408 0.168241 -0.0184358 +0.018845 0.0956057 -0.0232473 +-0.0712372 0.167165 -0.0209901 +-0.0759412 0.151358 -0.0178788 +-0.0784019 0.152013 0.0336008 +0.000968412 0.0391138 -0.00557511 +-0.0865136 0.106289 0.0083757 +-0.0623969 0.0335761 0.00673913 +-0.0769787 0.135423 -0.00568624 +0.021851 0.0591836 0.0473037 +-0.0524335 0.115217 0.0341034 +-0.0884925 0.144689 0.01017 +-0.0774954 0.147028 0.0416906 +0.00429953 0.0340852 0.0162355 +-0.0489061 0.0346101 0.0421693 +-0.0377668 0.0812615 -0.0209367 +-0.0321125 0.0496937 -0.0183514 +-0.00333701 0.121977 -0.0113118 +-0.063853 0.129717 0.0428324 +0.0122687 0.0724051 -0.0314733 +-0.0295052 0.113904 0.0347936 +0.0428284 0.0676747 -0.00179274 +-0.0665096 0.0944832 0.0425185 +-0.0324964 0.117987 0.0309791 +-0.0240568 0.0972281 0.0446316 +-0.0729302 0.128204 -0.00868672 +-0.0930613 0.118852 0.0392987 +-0.0179932 0.0940702 -0.0337993 +-0.0276364 0.0917699 -0.0296042 +0.0270825 0.114018 -0.00875387 +-0.0701334 0.160982 -0.047936 +0.0160414 0.0343167 -0.00190332 +-0.0407181 0.0336157 0.00208844 +0.0537368 0.0581963 0.0283843 +0.0459393 0.0792136 0.00418579 +0.00219887 0.0866713 -0.0341557 +-0.0874475 0.125307 -0.000719081 +0.0171658 0.0974165 -0.0229214 +-0.0555243 0.0344634 0.0339194 +0.00337546 0.131746 0.0137901 +-0.037361 0.155079 0.00374727 +-0.00966712 0.0394179 0.0374824 +0.0401633 0.102703 -0.00178896 +-0.0792807 0.167978 -0.037009 +0.0137845 0.0344 -0.00993851 +-0.0224906 0.034851 -0.0281799 +-0.0815485 0.124491 0.0516101 +0.0440694 0.0973609 0.0121636 +-0.0361101 0.0351289 -0.0167641 +-0.0672139 0.168667 -0.0295504 +0.00726635 0.0696573 -0.0326992 +-0.0474987 0.0987688 0.0431343 +-0.0879643 0.115809 0.00328051 +0.0212116 0.083355 -0.0266295 +-0.0413155 0.0345032 0.0369079 +-0.0830031 0.148729 0.00315098 +-0.0365029 0.0818729 0.0434567 +-0.0265303 0.0632322 0.0390504 +0.0560084 0.0549549 0.0021707 +-0.00162661 0.100486 0.0474782 +-0.00782745 0.0882395 -0.0367822 +-0.0874416 0.113109 0.00532366 +-0.0755108 0.126011 0.0529241 +0.0317406 0.107408 0.0337947 +-0.0280888 0.121741 0.0242898 +-0.0114519 0.126605 -0.00415103 +-0.00942316 0.129915 0.019193 +0.0305901 0.117314 -0.000462026 +-0.00449008 0.116939 0.0397737 +-0.0174829 0.0365879 0.0522725 +-0.0480399 0.136313 0.0145941 +0.0078895 0.0386539 0.0453509 +-0.059976 0.125502 0.0413668 +0.00922467 0.131237 0.0102208 +-0.0164537 0.0924837 0.0552632 +-0.0397063 0.0680709 -0.01554 +0.0144891 0.0990552 0.047648 +-0.0194892 0.0771957 0.0553527 +0.00314961 0.0344334 0.00286196 +0.0322227 0.0828447 -0.0192606 +-0.086166 0.115735 0.00128445 +-0.0628659 0.161473 -0.0525859 +-0.0897633 0.133813 0.0392039 +-0.0931113 0.126933 0.0272608 +0.0442448 0.0902943 -0.00180307 +0.0383075 0.041189 0.0258499 +-0.038679 0.0636652 -0.0136088 +-0.0640888 0.165507 -0.029848 +0.00695321 0.13108 0.0193768 +-0.0281007 0.162292 -0.0150733 +0.0192374 0.0749637 -0.0278698 +0.0244608 0.0941673 -0.021671 +0.0131476 0.100265 -0.0227775 +-0.0301385 0.166718 -0.0165418 +-0.0651412 0.159482 -0.0565006 +0.0342867 0.0700233 0.0389954 +-0.0695171 0.141232 -0.00845814 +-0.0904292 0.148866 0.0241237 +-0.0253439 0.0693349 0.0439513 +-0.0623474 0.166249 -0.0485903 +-0.0193027 0.0445534 0.0525624 +-0.0258791 0.105846 -0.022482 +-0.0331634 0.0381954 -0.000525199 +-0.0640739 0.0617863 -0.0011495 +0.0413993 0.0942972 -0.00577735 +-0.030183 0.155051 -0.00785968 +-0.0209835 0.159643 -0.00415092 +0.0227131 0.118044 0.0330191 +-0.0268485 0.124528 0.000469072 +-0.0241773 0.17417 -0.0202285 +-0.012912 0.0339283 -0.0204101 +0.0235417 0.109895 0.0378397 +-0.0800641 0.107437 0.0308747 +-0.0374695 0.0383458 -0.0088734 +0.0372523 0.0646113 0.0362056 +-0.0324907 0.0817336 0.0416408 +0.0138217 0.125251 -0.00497301 +-0.0427639 0.126553 -0.0057736 +-0.0467249 0.0753156 -0.0175399 +-0.0861037 0.109061 0.0193453 +0.0206619 0.0348672 0.0224824 +-0.0804996 0.127434 0.052885 +0.00919876 0.0964636 -0.0261302 +-0.0321423 0.0806683 -0.0305334 +0.0242996 0.120934 0.0286395 +-0.0429021 0.171269 -0.00696466 +0.0145253 0.126603 0.0278836 +-0.0657391 0.142564 -0.0101503 +-0.0125598 0.0943837 -0.0340846 +-0.0809608 0.0720856 0.0135459 +-0.0230054 0.0386784 -0.0118395 +-0.0234022 0.157317 -0.0083471 +-0.0700956 0.06197 0.00856658 +0.0361469 0.0875521 0.038321 +-0.00703497 0.101085 0.0445106 +-0.0217097 0.181473 -0.0209735 +-0.0310875 0.179405 -0.00921261 +0.00340822 0.117733 -0.0168392 +-0.0306641 0.062253 -0.0214244 +-0.00851812 0.0604987 0.0555487 +-0.0105044 0.0745085 0.0567054 +-0.00265316 0.0511482 -0.0311061 +-0.0764634 0.157616 -0.00941011 +-0.0224335 0.0371726 0.0541058 +-0.0432016 0.171084 -0.00202068 +-0.0523174 0.057382 0.0266177 +0.0595665 0.0566863 0.0161765 +0.00171621 0.126464 -0.00619605 +-0.0635036 0.095949 0.0432601 +-0.00748541 0.0856517 0.0572176 +-0.0142172 0.114376 -0.0171381 +-0.0106623 0.0511436 -0.032067 +-0.0292482 0.0345559 -0.0204636 +-0.0369573 0.0340894 0.0258321 +-0.0544756 0.0413314 0.0465715 +-0.0940023 0.125512 0.016258 +-0.0685195 0.0916417 0.0424016 +-0.076491 0.140037 0.0480957 +-0.021763 0.159801 -0.0034487 +0.0107652 0.110575 -0.0191667 +-0.0296434 0.0486725 0.0446006 +0.0205709 0.0463131 0.0417824 +0.0371829 0.0726727 0.036151 +0.00170794 0.1258 0.0319097 +0.00812607 0.108726 -0.0199063 +-0.088847 0.0874807 0.0104655 +-0.0614823 0.0761372 0.0417782 +-0.077632 0.077285 -0.00766199 +-0.0914347 0.132413 0.0262297 +-0.0380759 0.16073 -0.01276 +-0.0580841 0.132712 -0.00634758 +-0.00546375 0.117984 -0.0150376 +-0.0825526 0.110518 0.0415894 +-0.0567945 0.0589511 -0.00142935 +-0.00849356 0.0842936 0.0575382 +-0.0464941 0.0987388 0.0427545 +0.0199235 0.0365522 0.038924 +-0.0181358 0.159669 -0.00704365 +0.0214919 0.0906421 0.0482356 +-0.0308996 0.107699 -0.0200324 +0.0310327 0.118783 0.0168832 +-0.049761 0.069112 0.038562 +-0.0388211 0.091456 -0.0235256 +-0.0139638 0.180133 -0.0220777 +0.0153381 0.127037 -0.000904662 +-0.0219975 0.107603 -0.0219593 +-0.0448317 0.0927682 -0.0220335 +-0.0127292 0.0909963 -0.036642 +0.0174939 0.0350076 -0.00788091 +-0.016176 0.165587 -0.0188354 +0.0276821 0.0862408 0.0453967 +-0.00121407 0.102594 0.0440764 +-0.0167645 0.162218 -0.0151135 +-0.0446938 0.0665983 -0.0153032 +-0.0709583 0.135514 -0.00804855 +0.0152869 0.0794603 0.0538116 +-0.028039 0.0849631 0.0475609 +-0.0252122 0.108563 -0.020971 +-0.0501485 0.141642 0.00337658 +-0.0802229 0.143442 0.044034 +-0.0728736 0.0659781 0.0205309 +-0.083982 0.134868 -0.000717316 +-0.070349 0.172644 -0.037875 +-0.015485 0.0673895 0.0543529 +-0.0374989 0.108379 0.0375203 +0.0194281 0.0399108 -0.0177171 +-0.0508059 0.0898498 -0.0218327 +-0.0916067 0.130926 0.00923792 +-0.0657827 0.158229 -0.0103034 +0.00352818 0.0386899 -0.0121702 +-0.0147383 0.10835 -0.0207588 +-0.0496313 0.111407 -0.0178803 +-0.0413837 0.128875 0.00906534 +-0.0523163 0.134709 -0.00240246 +0.00961512 0.122501 0.0348066 +-0.0755017 0.140041 0.0481 +-0.0678883 0.145704 -0.022127 +-0.0230319 0.0374462 0.0541561 +-0.00425848 0.0961384 -0.0318255 +-0.0895594 0.135155 0.0312102 +-0.0623104 0.0594537 0.00702264 +0.00422975 0.0796448 -0.0342885 +-0.0618471 0.153751 -0.0215773 +-0.00905798 0.034739 0.0470958 +-0.0575286 0.126935 0.0396404 +-0.0298496 0.180049 -0.0116061 +-0.0317613 0.0567558 -0.0133876 +-0.0839019 0.105911 0.0262878 +-0.0715304 0.102729 0.03849 +0.0144241 0.127312 -0.00121761 +-0.0787914 0.14589 -0.00282549 +-0.00925999 0.0421824 0.0495336 +-0.0284001 0.0385729 0.034376 +-0.0690967 0.148938 0.0398784 +-0.0561651 0.153258 0.0280528 +0.0408211 0.10424 0.0171662 +0.0569661 0.0701435 0.00568959 +-0.0318479 0.09723 -0.023215 +0.00233723 0.0391647 0.0293747 +-0.0839319 0.117006 0.0485566 +-0.0310508 0.0693178 -0.0264576 +-0.0270974 0.0794315 0.0481933 +-0.00975454 0.0728065 -0.0376393 +-0.0907216 0.131054 0.0332303 +-0.00149823 0.0535022 0.0547476 +-0.0920442 0.126938 0.0322524 +-0.049095 0.140149 0.0113941 +-0.0605441 0.113772 -0.0142303 +-0.00976932 0.0756525 -0.0380331 +-0.0878532 0.127045 0.0464651 +-0.010533 0.178644 -0.025906 +0.0593699 0.0691831 0.0171767 +-0.024781 0.0769658 -0.0376048 +0.0423711 0.0575006 -0.00528711 +0.0460928 0.061454 -0.00359733 +-0.0408554 0.101386 -0.0212924 +-0.0446853 0.169846 -0.00596698 +-0.0499657 0.0572278 0.0334797 +-0.0145604 0.127706 0.0231688 +-0.0624931 0.153672 -0.0316068 +0.0559752 0.0635544 0.0263749 +-0.0741944 0.0678888 0.022137 +0.0128784 0.0534523 0.0500797 +-0.014497 0.082865 0.0570346 +0.0100519 0.0351376 0.0435561 +-0.0764979 0.135856 0.0507679 +-0.0505672 0.0545537 0.0173366 +-0.073291 0.0682485 0.025526 +0.0168973 0.0504721 0.0453108 +0.0597511 0.0567143 0.0111681 +0.00962081 0.119433 -0.0146957 +-0.0261763 0.0931476 0.0454624 +-0.0034975 0.0661744 0.0565538 +-0.0174573 0.0601724 0.0514531 +0.0587589 0.059387 0.00417226 +-0.0388249 0.122181 0.0278208 +-0.0685252 0.175096 -0.0570393 +-0.0628061 0.0896011 -0.0190246 +0.0306772 0.118704 0.0210209 +-0.0655003 0.083298 0.0438708 +0.0560223 0.0713695 0.00682475 +-0.0298518 0.100096 -0.0230635 +-0.0422245 0.148296 -0.00246029 +-0.00149333 0.112805 0.0421166 +-0.0829153 0.0925695 0.0313446 +-0.0394018 0.0468721 -0.0179145 +-0.0784825 0.135851 0.0506454 +-0.0734876 0.127439 0.0525898 +-0.0280931 0.033441 -0.0266965 +0.0607571 0.0609589 0.0141669 +-0.0692316 0.172989 -0.0403442 +-0.0397906 0.162354 0.00198884 +-0.0505067 0.0805184 0.044061 +-0.0716519 0.156794 -0.0409079 +0.0407885 0.10564 0.00816522 +-0.00717727 0.0999816 0.0485274 +-0.0646289 0.156694 -0.0465976 +-0.089623 0.0983355 0.0134109 +0.00279805 0.0339767 -0.0211497 +-0.0142152 0.17272 -0.0253585 +-0.0396036 0.174135 -0.00601981 +-0.0669938 0.0358141 0.0313063 +-0.0497731 0.0627792 0.0345527 +0.0229897 0.121378 0.0295865 +-0.0457551 0.0336493 -0.0154708 +-0.0539285 0.152376 0.0223916 +-0.0664975 0.108359 0.0380432 +0.0293811 0.04325 -0.00550019 +-0.0166832 0.0525719 -0.0322771 +0.0164877 0.105762 0.0431793 +-0.0171637 0.0956465 -0.0313986 +-0.0314959 0.111117 0.0366419 +-0.0788622 0.169438 -0.0409605 +-0.0673163 0.13687 0.0448543 +-0.00450662 0.0828853 0.0572758 +-0.086732 0.125284 -0.00171301 +-0.0339024 0.123839 0.0236394 +-0.0665906 0.0686018 0.0336345 +-0.0647932 0.143933 0.0397518 +0.0283692 0.0466516 -0.00870467 +0.0329293 0.104175 -0.0123189 +-0.0761401 0.0728821 0.0296904 +-0.0142042 0.169737 -0.0232161 +-0.068634 0.151185 -0.044245 +-0.0135754 0.0347863 -0.0255909 +0.019989 0.0436019 0.0426848 +-0.015693 0.057044 -0.0346551 +-0.00164401 0.0482043 -0.0300627 +-0.0311183 0.172722 -0.00474304 +-0.0250193 0.118984 -0.0119284 +-0.0325683 0.124672 -0.00180773 +-0.0781672 0.0694403 0.0164131 +0.0335232 0.0673414 0.0396281 +-0.0927165 0.117489 0.0383035 +0.0402856 0.10561 0.017163 +-0.0284035 0.166813 -0.0078902 +-0.00473635 0.13076 0.00793547 +-0.0216948 0.0386212 -0.00966204 +-0.0436382 0.11786 -0.014681 +0.0533192 0.0587911 -0.00291354 +-0.0153516 0.0970497 -0.0288687 +-0.0434963 0.0661943 0.0406667 +-0.0466152 0.145766 -0.000178732 +-0.0206008 0.0386838 -0.0150911 +-0.0509261 0.0335608 -0.00538789 +-0.0896998 0.137926 0.0341919 +-0.0278811 0.0378156 0.0189805 +0.0364086 0.0854455 -0.0167057 +0.0349072 0.0875927 0.04003 +-0.0243811 0.0738035 0.0484997 +-0.0470246 0.133586 0.0187098 +0.00950521 0.0772084 0.0556135 +-0.0192998 0.0985099 -0.0244 +0.0447739 0.0438422 0.0248039 +-0.0504965 0.0819144 0.0441383 +-0.0346492 0.0577427 -0.0111408 +-0.048101 0.135891 0.0168055 +0.00147386 0.103921 -0.02207 +0.0494979 0.0678406 0.0265165 +0.00621357 0.0880484 -0.0332214 +-0.0763594 0.158279 -0.023921 +0.0359549 0.0646627 0.0378653 +-0.0462327 0.128102 0.0242709 +-0.0570384 0.142741 -0.0023851 +-0.0156536 0.0496375 -0.0309655 +-0.0157015 0.164 -0.0105798 +0.0160661 0.0349193 -0.0155613 +-0.0555615 0.0615422 -0.00607893 +-0.0506452 0.142899 0.00154993 +0.0227041 0.124378 0.0023667 +-0.0690811 0.0343024 0.0100819 +0.0296092 0.114943 -0.00583865 +0.0252655 0.0864752 -0.0236184 +-0.0579352 0.153021 -0.000467328 +-0.0699851 0.168026 -0.0510102 +-0.0649515 0.126767 -0.00875296 +-0.0310902 0.124844 0.00108587 +-0.07951 0.149797 0.0367578 +-0.0514931 0.156432 0.0104716 +-0.0854224 0.0885478 -0.00153705 +-0.0622051 0.0333895 -0.00205752 +-0.00958914 0.0376967 -0.0257201 +0.0438525 0.0874765 0.0251696 +-0.00448652 0.114189 0.0411781 +-0.0741351 0.0860483 0.039718 +-0.0162681 0.118552 -0.0135478 +-0.00571384 0.0655793 -0.035147 +-0.051609 0.164108 -0.000948719 +-0.0346229 0.116833 -0.0136016 +0.0105065 0.107115 0.0414414 +-0.0484736 0.0917654 0.0440291 +9.10767e-05 0.108392 -0.0207972 +0.0522547 0.0611036 -0.00320855 +0.00856462 0.11946 -0.0147195 +0.0326237 0.0768475 0.0419257 +0.0282302 0.0872832 -0.0216049 +-0.0693757 0.155378 0.0277002 +-0.0182673 0.180142 -0.0177524 +-0.0285043 0.0545632 0.0363758 +-0.0218074 0.0756618 -0.0388536 +-0.0633749 0.1608 -0.057006 +-0.0892506 0.151522 0.0201032 +-0.0472272 0.0642822 0.0376403 +-0.0699509 0.134055 -0.00826728 +-0.0820286 0.074884 0.0125291 +-0.0576046 0.151067 0.0326375 +-0.0425494 0.0346163 0.040046 +-0.0619058 0.105434 -0.0174028 +-0.0753497 0.108878 0.0391875 +-0.0594974 0.0946317 0.0447571 +0.013384 0.078066 0.0545225 +-0.0431375 0.160652 -0.0100842 +-0.0258359 0.0945143 -0.0266147 +-0.0245117 0.0536384 0.0409132 +-0.0664072 0.169883 -0.0364165 +-0.0726615 0.0640995 0.00799778 +-0.0451579 0.0395668 -0.0202936 +-0.00773777 0.0727528 -0.0370634 +0.0135086 0.116829 0.0366875 +-0.0836964 0.106272 0.0263573 +-0.0303071 0.0339954 0.0147064 +-0.000759903 0.102685 -0.0227147 +0.0258263 0.0624492 -0.0231007 +-0.0674047 0.179923 -0.0541082 +-0.0857367 0.111526 0.0418488 +-0.0560454 0.148678 -0.00182226 +-0.0476918 0.0635243 -0.0129244 +-0.0642806 0.164881 -0.0270495 +-0.0574962 0.108397 0.0389105 +0.00241269 0.0347278 -0.0230504 +-0.00449379 0.0548276 0.0540049 +-0.0627171 0.147502 -0.0125815 +-0.0213288 0.0581411 0.0459349 +-0.0608837 0.0367165 0.0449842 +0.0211328 0.126504 0.0131782 +0.00740015 0.0418656 -0.0238182 +-0.0737971 0.148055 0.0412991 +-0.00374732 0.0726737 -0.0357771 +-0.0204954 0.103009 0.0433484 +-0.0210495 0.127369 0.0106273 +0.0306407 0.0431175 0.0298982 +0.0109957 0.0698921 0.0545336 +-0.0439898 0.0350927 -0.0256307 +-0.0670986 0.0347786 0.0136227 +0.0215717 0.0401714 -0.00970048 +0.0214864 0.0934187 0.0477129 +-0.0174765 0.0715932 0.0547125 +-0.0246025 0.0824997 0.0540808 +-0.0774249 0.155543 -0.015906 +-0.00557868 0.109705 -0.0221876 +-0.00234233 0.10113 0.044176 +0.0314145 0.0384146 -0.00113672 +-0.0708385 0.0965734 -0.0156262 +-0.0358426 0.0345846 0.0397566 +0.0166934 0.111749 -0.0164123 +-0.0461447 0.0396778 -0.0162811 +0.0460542 0.0820303 0.0141751 +0.024254 0.0776067 -0.0252579 +-0.0585858 0.14384 -0.00236725 +-0.0590542 0.155341 0.0226214 +-0.0425019 0.049221 0.0396798 +-0.0737231 0.156865 -0.0279142 +-0.0640946 0.155219 -0.00966954 +-0.0136075 0.0420889 -0.0267571 +-0.0149109 0.0391012 0.0366853 +-0.0768619 0.116386 -0.00596474 +0.0464851 0.0651547 0.0281822 +-0.0672589 0.077344 0.0400985 +-0.0768893 0.176966 -0.046083 +-0.0870251 0.136346 0.00321516 +-0.046566 0.128368 -0.00156221 +-0.0881324 0.103677 0.0173573 +-0.0358716 0.10426 -0.0206916 +-0.00158589 0.110252 -0.0207823 +-0.0645869 0.117148 0.0471018 +-0.0493593 0.121175 0.032055 +0.00351232 0.0575709 0.0538233 +-0.0114209 0.107659 -0.022044 +-0.0134464 0.0388153 -0.00818864 +-0.0485053 0.108444 0.0391022 +-0.0783276 0.0839475 -0.0105972 +-0.0422429 0.129048 0.0117038 +0.0230175 0.0903576 -0.0236845 +-0.0840147 0.0993167 -0.00358504 +-0.0538991 0.108397 -0.0185513 +-0.00168424 0.0583535 -0.0329231 +0.00135578 0.0347199 0.040341 +-0.0858041 0.131212 0.0485351 +0.0546169 0.0694261 0.0240301 +0.0349752 0.0684447 -0.0157877 +0.0095201 0.0716259 0.0554078 +-0.00749453 0.0952341 0.0547544 +-0.019553 0.163976 -0.00913576 +-0.0640343 0.0457636 0.00169557 +-0.017901 0.0381554 0.0134869 +0.0133255 0.0594987 -0.0290386 +0.00648582 0.047441 0.0497645 +-0.0239518 0.123773 0.0227902 +-0.0318252 0.0609455 -0.0174329 +-0.0928746 0.122834 0.0282828 +0.00226062 0.131309 0.0062251 +-0.0414935 0.112526 0.0356807 +0.0202561 0.0791555 -0.0271913 +-0.0331056 0.0338156 0.0161014 +0.0297787 0.0446629 0.032196 +-0.0792621 0.084024 -0.00957002 +-0.0697175 0.155623 0.0028257 +-0.0391149 0.0337868 -0.0291782 +-0.0893977 0.135151 0.0292068 +0.04371 0.0987542 0.0111628 +-0.0281559 0.0380199 0.00608926 +0.0552084 0.0493743 0.00621284 +-0.0861539 0.149931 0.0300167 +0.042296 0.0775058 -0.00576261 +0.0415736 0.0765545 0.0302447 +-0.0532046 0.133931 0.0318349 +-0.0939252 0.118758 0.016301 +-0.027019 0.123094 -0.00421217 +-0.0471842 0.0355635 -0.0162689 +0.0137449 0.12859 0.0232984 +-0.0388402 0.0957243 -0.0226737 +0.0393482 0.0966985 0.0306886 +0.0405486 0.0596459 0.0301455 +-0.083332 0.0992842 -0.00460735 +0.0403123 0.0491555 -0.00629774 +-0.0135559 0.0378433 -0.0166597 +-0.0655014 0.0958911 0.0424957 +-0.00976126 0.0358952 0.049479 +-0.0624412 0.150596 -0.00171821 +-0.064981 0.131148 -0.00860586 +-0.0763864 0.109432 0.0420745 +-0.00149437 0.0801423 0.0576885 +-0.0163316 0.166866 -0.0132843 +-0.0862104 0.140486 0.00518463 +-0.0484837 0.159357 0.00832828 +-0.063685 0.169395 -0.0455915 +-0.0676574 0.0344024 0.0120657 +-0.0324957 0.0889348 0.0439847 +-0.0285919 0.0494861 -0.0235098 +-0.0925344 0.124191 0.0302708 +-0.0898664 0.135182 0.0372006 +-0.0675175 0.146991 0.0409028 +-0.0643109 0.0721294 0.0381075 +0.0336777 0.107392 0.0312726 +0.0416487 0.0806113 0.0304012 +0.0108925 0.130607 0.00797847 +0.00350574 0.071674 0.0559901 +-0.0687556 0.0680025 -0.00564855 +-0.0668955 0.116554 -0.00922261 +-0.0147132 0.0599449 -0.0358879 +-0.023059 0.0825255 0.0553698 +-0.0305016 0.108423 0.0388291 +-0.0575086 0.0507939 0.00466306 +-0.0811465 0.155009 0.0163089 +-0.0281138 0.125637 0.0139342 +0.00450187 0.0575756 0.0536585 +-0.0124992 0.0745024 0.0565746 +0.030795 0.119096 0.00823469 +0.0112449 0.0943173 -0.0278535 +-0.00350029 0.0856691 0.0572933 +-0.0135749 0.18083 -0.0284353 +-0.0387321 0.0724952 -0.0174162 +-0.0366243 0.151025 -0.00298791 +0.0282135 0.0579727 -0.0197309 +-0.0828916 0.0775885 0.00151125 +-0.00164877 0.0496874 -0.0307148 +0.0386307 0.106935 0.00116239 +-0.0871923 0.0861012 0.021463 +-0.0760841 0.104861 0.0354581 +-0.0244788 0.0486839 0.0492934 +-0.0883766 0.141855 0.0366703 +-0.0509887 0.143164 0.0163768 +-0.0496168 0.0561697 -0.00993077 +-0.00378208 0.0390472 -0.0102032 +-0.0843646 0.087116 -0.00354087 +0.00990951 0.0819581 0.0548044 +-0.0425006 0.0888114 0.0424593 +-0.0728637 0.099356 -0.013752 +-0.0206243 0.0436469 -0.0283402 +-0.0828496 0.117685 -0.00271563 +-0.0715585 0.181081 -0.0541999 +-0.0338561 0.0475081 -0.0226504 +0.00224005 0.0768974 -0.0352993 +-0.0935755 0.117419 0.0183042 +-0.0754318 0.155396 0.00808247 +-0.0674328 0.172594 -0.0425404 +0.027377 0.122298 0.0126488 +0.0174898 0.0874014 0.0499964 +0.0109848 0.123169 0.033628 +-0.0367194 0.0710436 -0.0172369 +-0.0285781 0.0423048 0.0521933 +0.033068 0.0984004 -0.0141329 +-0.0475947 0.0601221 0.0367025 +-0.0635768 0.155628 0.0253794 +0.0262764 0.100811 0.0416679 +0.0147323 0.129513 0.0122405 +0.0321413 0.0366814 0.019545 +-0.00794631 0.127212 -0.00487976 +0.0374618 0.0376657 0.00680115 +-0.0450017 0.0355455 0.0439167 +-0.0613089 0.0634913 0.028639 +-0.0275028 0.0988006 0.0435593 +0.051337 0.0560222 -0.00385605 +-0.0701879 0.175082 -0.0550269 +-0.0424973 0.155091 0.0068798 +-0.0156018 0.0435495 -0.027203 +-0.0387577 0.0797624 -0.0199123 +0.036687 0.0909845 -0.0142871 +-0.0621605 0.170953 -0.0526019 +-0.0503178 0.0515583 0.0186309 +0.0183954 0.0645286 0.0493775 +-0.0816036 0.0774754 -0.00149976 +-0.0167638 0.0728801 -0.0389011 +-0.0612458 0.141043 0.0360828 +-0.0650382 0.153613 0.000196596 +-0.0506214 0.0416531 0.0455899 +-0.0218256 0.086832 -0.0376579 +-0.0368977 0.110447 -0.0189068 +-0.0390704 0.124042 0.0247581 +-0.0145052 0.0544906 0.0506759 +0.0346875 0.0955379 0.0380285 +-0.0427281 0.0478381 -0.0112773 +-0.0589463 0.0436711 -0.00636451 +0.044641 0.0945606 0.00417916 +0.0417801 0.041383 0.0227466 +-0.066757 0.170863 -0.0580345 +-0.0104152 0.0998773 0.0473736 +-0.0467325 0.133652 0.0114554 +-0.0376877 0.163829 -0.000238726 +-0.0725153 0.142823 0.0458217 +0.0207674 0.103342 -0.0194283 +-0.00540678 0.121074 -0.0123374 +-0.0424989 0.102887 0.0413486 +-0.0462349 0.0354247 -0.01929 +0.0180016 0.125305 0.0262968 +-0.0162469 0.184587 -0.0200786 +-0.079084 0.0994215 0.0343706 +-0.0557053 0.132552 0.0352577 +-0.0512629 0.0388692 0.0464256 +-0.0515065 0.160835 0.00704803 +-0.0826893 0.152358 0.0291683 +-0.0584964 0.0932599 0.0452695 +0.024564 0.103479 -0.0175815 +-0.0846694 0.0831371 0.000497005 +-0.0865668 0.118992 0.0483015 +-0.0192412 0.184576 -0.0155995 +-0.00659114 0.03769 -0.0254352 +-0.0245806 0.124862 0.0196194 +-0.0368731 0.105664 -0.0202847 +-0.0621883 0.177235 -0.0596222 +-0.0672213 0.1608 -0.0122924 +-0.0303274 0.0375897 0.0276802 +-0.0234293 0.0522884 0.0423691 +0.0538492 0.0711959 0.0223128 +0.00550075 0.0772523 0.0562045 +0.0438483 0.076237 -0.00278527 +0.00633738 0.0581963 -0.0307089 +-0.0646256 0.0674757 -0.0084666 +-0.0310521 0.0450006 0.0489427 +0.0109104 0.126748 -0.00460652 +-0.0409513 0.128783 0.00774742 +-0.000502218 0.0938722 0.0552243 +-0.0166066 0.035315 -0.0186674 +-0.02118 0.169768 -0.013264 +-0.048723 0.166988 -0.000980568 +0.0301667 0.116977 -0.00204442 +-0.0129037 0.181603 -0.0240442 +-0.0461681 0.033576 -0.00628041 +0.0377831 0.0813859 -0.0147095 +-0.050774 0.143198 0.0153986 +-0.0591392 0.118534 -0.0111826 +0.0601642 0.0622865 0.0071402 +0.0055201 0.0674746 0.0556049 +0.0539548 0.0603844 -0.00239402 +0.0345037 0.0468848 0.0307194 +-0.0226112 0.04084 -0.0289768 +-0.088041 0.0995721 0.00642464 +0.0313753 0.111403 0.0314731 +-0.0818093 0.0776109 0.0245029 +0.0196586 0.112307 -0.0150514 +-0.0547371 0.114833 -0.0154193 +-0.00335753 0.11894 -0.0140663 +-0.0675878 0.0614559 0.0185068 +-0.0374891 0.0973119 0.0427062 +-0.0618754 0.0967815 -0.0181397 +-0.0177948 0.161129 -0.00657359 +-0.0762411 0.0901005 0.0388673 +-0.00749994 0.0647419 0.0560829 +-0.0872439 0.132483 0.0457019 +-0.0207923 0.0756874 -0.0390657 +0.00773677 0.0341095 0.00222437 +-0.00405506 0.101077 0.0451334 +-0.0537766 0.0826585 -0.0215583 +-0.0484986 0.0425777 0.0442245 +0.0370248 0.10907 0.0248298 +0.0550045 0.0727719 0.0183019 +-0.0531047 0.0345095 0.0361399 +0.0240424 0.122784 0.0256717 +-0.0321586 0.0349269 0.0472031 +-0.0487458 0.123267 -0.0102852 +0.0164927 0.107123 0.0418084 +-0.0518639 0.0999443 -0.0218198 +-0.0259535 0.0592275 0.0392168 +-0.0169683 0.186741 -0.0196674 +0.012157 0.123544 0.032833 +-0.0236685 0.0919017 0.0500491 +0.0048864 0.127407 -0.00526463 +-0.00324909 0.0389153 -0.000648163 +0.0108689 0.0576426 0.0524778 +0.0396737 0.107002 0.0161655 +-0.0816849 0.073475 0.00953613 +-0.0743109 0.165184 -0.0390136 +-0.0728909 0.120866 -0.00826881 +0.040969 0.0926354 0.0294955 +-0.00410534 0.0385566 0.0231802 +-0.0167703 0.0742961 -0.0390024 +0.0376363 0.109584 0.0207569 +0.00538144 0.0464854 -0.0270709 +-0.0503176 0.0388958 0.046006 +-0.0793777 0.154922 0.0242883 +-0.0476898 0.0679558 -0.0146484 +-0.0108886 0.108738 -0.0217426 +-0.0532571 0.151368 0.0204421 +-0.068651 0.163792 -0.0529788 +-0.0441151 0.0643553 0.040206 +-0.0275094 0.107088 0.0401149 +-0.0275566 0.0890776 0.0469337 +-0.0274957 0.102963 0.0425886 +-0.0266136 0.0837142 0.0504396 +0.015157 0.122808 -0.00836184 +-0.0234279 0.0636514 0.0436342 +-0.00941329 0.0943623 -0.0340451 +-0.0174189 0.178658 -0.0183022 +-0.0187779 0.183117 -0.0166827 +0.0130462 0.129592 0.0201813 +-0.0751825 0.149958 -0.0238676 +0.00897367 0.131122 0.0172577 +0.0483469 0.0589383 -0.00490848 +0.0422406 0.0986762 0.0221715 +-0.0921564 0.130934 0.011242 +-0.0327106 0.0764924 -0.028531 +0.0102149 0.0725802 0.055192 +-0.0636711 0.0593571 0.0158341 +-0.0123306 0.0394822 0.0386711 +-0.0718333 0.156164 0.022455 +-0.0864971 0.150096 0.00821548 +-0.0110742 0.123419 -0.00875247 +-0.080097 0.11274 -0.00201289 +-0.00271881 0.0655507 -0.0345764 +0.00140103 0.0390882 -0.0248121 +-0.0618299 0.0939366 -0.0189413 +-0.0716693 0.147461 -0.0281971 +-0.0231858 0.17269 -0.0205136 +-0.0637876 0.155678 -0.0402328 +-0.0228589 0.0637031 0.0444908 +-0.0238626 0.169762 -0.0118641 +-0.0752191 0.155599 0.0242023 +-0.0345019 0.0461718 -0.0254652 +-0.01605 0.0946681 0.0536372 +0.0246905 0.0477085 0.0389599 +0.0101881 0.0341976 -0.00109267 +-0.0293326 0.154386 -0.00360575 +0.00276097 0.131717 0.0121378 +-0.0859012 0.0899317 0.000454719 +-0.0297834 0.121969 -0.0069874 +-0.0297126 0.0508986 -0.0203549 +-0.0888501 0.151809 0.0151852 +-0.0824868 0.0965084 -0.00559576 +-0.0279025 0.124426 0.000511349 +-0.0111071 0.0879305 -0.0374747 +-0.0895782 0.133632 0.00522749 +-0.0325779 0.0341004 0.0231549 +-0.087069 0.100891 0.00537711 +-0.0182966 0.038653 -0.00715499 +-0.0181652 0.097581 -0.0254283 +0.00716304 0.0378885 -0.010707 +-0.0117789 0.0582633 0.0533407 +-0.0679898 0.154859 0.0296647 +0.0270346 0.0384464 0.0278157 +-0.0446977 0.147484 -0.0025954 +-0.0797208 0.0757926 0.0264575 +-0.0827795 0.113314 0.0464356 +-0.0405007 0.118003 0.0314814 +0.00913581 0.103011 -0.0206427 +-0.0712761 0.153449 0.0330143 +0.0296113 0.108994 -0.0114792 +0.0120747 0.0958655 -0.0254962 +-0.0357119 0.0695868 -0.0167299 +-0.0777217 0.159728 -0.0179219 +-0.0619192 0.0343817 0.0361087 +-0.0839142 0.0843714 -0.00355138 +0.0295472 0.11806 0.0262972 +-0.0344935 0.0733008 0.0417052 +0.0305902 0.0996469 -0.0155371 +-0.0731059 0.151228 -0.0378853 +-0.0740388 0.151266 -0.032878 +-0.0419789 0.152954 -0.00736227 +-0.00349089 0.112806 0.0419152 +0.00607582 0.0348373 0.023168 +-0.000568628 0.0388214 0.0254737 +0.0445611 0.0931651 0.0181595 +-0.0469298 0.126751 0.026776 +-0.0318643 0.104333 -0.0219242 +0.0119312 0.0725978 0.0541603 +-0.0435985 0.108724 -0.0190759 +-0.0274517 0.043312 0.0519115 +-0.00149233 0.077429 0.0585147 +-0.0618993 0.0433992 0.0415482 +0.0131559 0.129936 0.00738875 +0.00749621 0.107111 0.0412811 +0.0354668 0.0573224 -0.0106723 +-0.0211412 0.0652998 0.0483526 +-0.00680045 0.129424 0.0244883 +-0.0187344 0.126979 0.0202236 +0.00853139 0.0813381 0.0552215 +-0.0254455 0.0389929 0.0381911 +-0.0507728 0.111366 -0.017973 +-0.027716 0.0387019 -0.0165247 +-0.000266462 0.0936214 -0.0332218 +-0.0855847 0.0806062 0.0194802 +0.0100369 0.130324 0.00340984 +-0.0449017 0.148739 -0.00386394 +-0.0321132 0.0482449 -0.0223421 +-0.0893696 0.140675 0.0341739 +0.0448261 0.0875458 0.0221634 +-0.0454912 0.0719252 0.0419203 +-0.0718306 0.148291 -0.0327712 +-0.0812513 0.108802 0.0293202 +0.0429574 0.0859786 -0.00579554 +-0.0338336 0.0380945 -0.0153271 +-0.060738 0.148827 -0.00180261 +-0.0568701 0.141076 -0.0033696 +-0.0358396 0.125396 0.0214464 +-0.0789386 0.168616 -0.0354931 +-0.0315115 0.108439 0.0386203 +-0.0842691 0.117693 0.0488129 +-0.032501 0.101545 0.0423652 +-0.0289779 0.174216 -0.00689295 +-0.0622726 0.163207 -0.0582148 +-0.00885889 0.172674 -0.0247544 +-0.0519291 0.13698 0.0263868 +-0.0829532 0.112769 0.000219247 +-0.0237394 0.038003 0.0142418 +0.0321413 0.0513188 -0.0087021 +-0.0473947 0.0359569 0.0452833 +-0.0488828 0.108449 -0.0190525 +0.0415402 0.0928967 -0.0067838 +-0.0800241 0.0745873 0.0239149 +0.005197 0.0866258 -0.0333998 +0.00148166 0.107215 0.0427825 +-0.0694376 0.159556 -0.0509365 +-0.0306541 0.0650706 -0.0234343 +-0.0653365 0.167223 -0.0303028 +-0.0262324 0.15581 -0.00635861 +-0.0362329 0.165306 -0.00162934 +-0.00330758 0.0379537 -0.0147265 +-0.0267799 0.0893467 -0.0340353 +-0.0591073 0.155657 0.0168017 +-0.0331866 0.15511 0.000984746 +-0.0671323 0.152011 0.0359968 +0.0112495 0.0710359 -0.0320326 +-0.0289103 0.0508426 -0.0224168 +-0.0582351 0.043574 0.0153571 +-0.0770169 0.112922 0.0479771 +-0.0146932 0.0570315 -0.0346956 +-0.0735209 0.134443 0.0506533 +-0.0445794 0.130477 0.0137726 +-0.0744939 0.127436 0.052791 +-0.0376156 0.0492564 -0.0118933 +-0.0462534 0.123907 0.0259058 +-0.0434909 0.104315 0.0413728 +-0.0779429 0.0893818 -0.0115854 +-0.067492 0.10005 0.0413205 +-0.0882017 0.0949941 0.0238463 +0.0438775 0.06952 0.000229591 +-0.0171444 0.168289 -0.0207283 +-0.0236004 0.0383091 -0.00235181 +-0.0697889 0.172796 -0.0390999 +-0.0291426 0.042089 -0.0296009 +-0.0446441 0.0338442 0.00651202 +-0.000500925 0.121055 0.0369996 +0.022042 0.12426 0.000701449 +0.00803725 0.125889 0.0313 +-0.0517799 0.0840941 -0.0216716 +-0.0145005 0.0842486 0.056982 +-0.0886066 0.113065 0.00725433 +0.0156656 0.0713152 0.0525386 +-0.0164665 0.068805 0.0544258 +0.0182285 0.0820502 -0.0281776 +-0.00610364 0.0386755 0.000846714 +-0.0599938 0.126727 -0.00781868 +-0.0155017 0.100285 0.044225 +-0.0638562 0.0423917 -0.00506847 +-0.0444796 0.0338614 0.0280014 +-0.000499767 0.100727 0.0463954 +-0.0162094 0.172709 -0.0239586 +-0.0690346 0.0338087 0.00696066 +-0.062316 0.158431 -0.019584 +0.00644358 0.129282 -0.00129108 +0.0188124 0.0393785 0.042705 +-0.0847946 0.140657 0.0430258 +-0.0835274 0.0979539 0.0303801 +-0.0241902 0.160559 -0.0136368 +-0.06502 0.161419 -0.0172527 +-0.0772789 0.154395 0.0279022 +-0.0681261 0.15638 0.0193912 +-0.0337268 0.111492 -0.0180397 +-0.0323736 0.176483 -0.0134412 +-0.0291608 0.0806486 0.0445728 +-0.0846331 0.0781756 0.0181083 +-0.0498753 0.106996 -0.0192538 +0.00350083 0.0730867 0.0562031 +-0.0231171 0.0347933 0.0492623 +-0.0616059 0.0342155 0.0188015 +-0.0516 0.0545447 0.0296397 +-0.0763817 0.169448 -0.0429673 +-0.069513 0.17974 -0.0519891 +-0.0588484 0.13671 0.0342246 +-0.0780833 0.1597 -0.0209281 +0.00109253 0.113026 -0.0199046 +-0.0227366 0.157094 -0.00651614 +0.0344933 0.0929192 0.0394802 +-0.000408544 0.126448 -0.00615558 +-0.0805024 0.128853 0.052889 +-0.00020637 0.0947598 -0.0324026 +-0.089811 0.143072 0.0296513 +0.0321792 0.0929416 0.0413986 +-0.0145721 0.168692 -0.0222333 +0.0595491 0.0594739 0.0201736 +-0.0810451 0.0800939 -0.00453207 +-0.0267843 0.0880044 -0.0350453 +-0.040033 0.126629 -0.00388698 +-0.0208083 0.0348218 0.0462671 +-0.082826 0.11472 -0.00162443 +-0.0301654 0.12556 0.01613 +-0.0485613 0.0418518 -0.011173 +-0.0784181 0.163881 -0.0269512 +0.0387541 0.0617571 -0.00875906 +0.0464006 0.0792571 0.0121793 +-0.00359562 0.043415 -0.0257386 +-0.0333921 0.126443 0.0164188 +-0.00106292 0.130975 0.00499363 +-0.0668008 0.060458 0.0159676 +-0.0254977 0.107106 0.0408331 +-0.0682758 0.06442 0.0246162 +-0.0298175 0.125729 0.00888885 +-0.088267 0.147416 0.00925394 +0.0542609 0.050631 0.00222604 +0.0422118 0.100079 0.0191646 +-0.081175 0.14869 0.00117764 +-0.0344163 0.0346761 0.0417292 +-0.0623017 0.163119 -0.0425932 +-0.0298952 0.0565521 -0.0204023 +-0.076686 0.0781369 0.0338733 +-0.0338704 0.102893 -0.0218261 +-0.0355104 0.0775398 0.0419002 +-0.0584924 0.0630612 0.0296076 +0.0454221 0.0889974 0.0141646 +-0.0417964 0.0347181 0.00810808 +0.0363875 0.0505227 -0.00658574 +-0.053281 0.144674 0.0233765 +0.0262687 0.0352193 0.019674 +-0.0168964 0.123328 -0.00656517 +-0.0606083 0.118309 0.0403758 +0.00639612 0.0418759 -0.0239341 +0.0231261 0.0431609 -0.0107258 +-0.00718079 0.0390105 -0.0127195 +-0.00364386 0.0901332 -0.0356262 +-0.00854262 0.033753 -0.0231542 +-0.0124761 0.0531764 0.0512005 +-0.0231395 0.168252 -0.0189417 +0.0233331 0.0354178 0.02435 +-0.000241537 0.0397743 0.0467748 +-0.0723661 0.147118 -0.0228625 +-0.0517688 0.0612265 0.030932 +-0.063068 0.161146 -0.0557557 +-0.0279123 0.0793217 0.046185 +-0.0627986 0.0441541 -0.00325511 +-0.0165065 0.100263 0.0439632 +-0.0217072 0.0582569 -0.0327502 +0.0254642 0.12325 0.0062381 +-0.086501 0.0833246 0.0174861 +-0.074502 0.11613 0.052068 +0.032458 0.0910982 -0.0184345 +-0.0729629 0.155811 0.0249814 +-0.0506733 0.162525 0.00564316 +-0.0697867 0.034416 -0.00452426 +0.0189467 0.0754919 0.0520404 +-0.0165401 0.0997826 0.0440769 +-0.086829 0.0847067 0.0174745 +-0.0474936 0.146975 -0.00223523 +-0.065417 0.154594 -0.0449582 +-0.0614906 0.0590888 0.0075192 +-0.0686207 0.128453 0.0500102 +-0.023162 0.0958328 0.0451924 +-0.0258056 0.0550238 0.0391969 +-0.0102599 0.0407381 0.0498453 +-0.0664749 0.0875478 0.0443297 +0.0581415 0.0538012 0.00818348 +-0.0384918 0.0903063 0.0434643 +-0.0457684 0.132352 0.0133121 +-0.0728932 0.0941961 0.0410307 +-0.0809085 0.111715 -0.000772193 +-0.0833393 0.0979244 -0.00460929 +-0.0671961 0.15591 -0.00355939 +-0.0455114 0.0338265 0.027816 +0.01975 0.0343373 0.00255688 +-0.0875501 0.120326 0.0478169 +0.0353576 0.0505704 -0.00670224 +0.00356645 0.0339958 0.0125338 +0.0590653 0.0552605 0.0161784 +-0.084435 0.0791603 0.0205035 +-0.0255122 0.0349295 -0.0287387 +-0.0724789 0.110508 0.0438845 +0.00447986 0.0385716 -0.0118677 +-0.066989 0.136993 -0.00809827 +0.0384287 0.064558 0.0344028 +-0.0516036 0.0560273 -0.00839821 +-0.00350028 0.110017 0.0429859 +-0.0111634 0.0391658 0.035606 +0.0183426 0.0906063 -0.0259275 +-0.031909 0.154239 -0.00732019 +-0.0800971 0.0773092 -0.00453369 +-0.0190564 0.0920061 -0.0357108 +0.0133608 0.0494245 -0.0271921 +-0.0787339 0.140316 -0.00472414 +-0.0275167 0.116662 0.0324113 +0.00652621 0.104352 0.0432895 +0.0358497 0.0713653 0.0377445 +-0.0918605 0.116299 0.0240619 +-0.0522199 0.061167 0.0299696 +-0.0201447 0.166816 -0.0117812 +-0.0433732 0.122414 -0.0114499 +-0.0645963 0.0430073 0.0358234 +-0.0779043 0.1583 -0.0209193 +0.0367132 0.0547551 0.0317845 +-0.0351109 0.16372 -0.0144674 +-0.0434603 0.109995 -0.0184047 +-0.0576869 0.0677197 -0.0118328 +0.00623854 0.074018 -0.0343382 +0.0443987 0.0959613 0.0131589 +-0.089865 0.120262 0.0458544 +0.0103837 0.0449023 -0.0251665 +-0.0770006 0.139838 -0.00569476 +-0.072687 0.0955359 0.0408041 +-0.0569361 0.046073 0.0125834 +-0.0604913 0.0818799 0.0434166 +-0.0460645 0.151688 -0.00554828 +-0.015331 0.0349099 0.0491212 +-0.0229594 0.0811266 0.055321 +0.0274663 0.0754645 0.0450048 +-0.00267666 0.0374926 0.0135597 +-0.011518 0.0673875 0.054571 +0.013368 0.122467 -0.00997636 +-0.0722821 0.143895 -0.0129091 +0.0454962 0.0443878 0.000424365 +-0.0127602 0.0382241 0.0199007 +-0.091546 0.146121 0.023146 +0.00392744 0.0371222 0.0242968 +-0.0385489 0.119476 -0.0123722 +0.0114833 0.0936471 0.0518498 +-0.0643328 0.146767 0.0386771 +-0.0624894 0.163088 -0.0505885 +-0.0375004 0.0464372 0.040096 +0.0460037 0.0834239 0.0131685 +0.033027 0.108336 -0.00876159 +0.013228 0.0990749 -0.0229052 +0.034148 0.0442132 0.0295363 +-0.0907186 0.113289 0.0113419 +0.0210633 0.106016 0.0411627 +-0.0454948 0.119311 0.0290591 +-0.0676975 0.0607342 0.0101856 +-0.0195364 0.0461211 0.0518679 +0.0161339 0.0672434 0.0514025 +-0.0693216 0.0620201 0.0176481 +0.0429729 0.0944315 -0.00180352 +-0.0494828 0.135763 0.0221907 +-0.060805 0.0867676 -0.0196616 +-0.0247298 0.125997 0.0151584 +0.059297 0.0608379 0.0211666 +-0.080116 0.153024 0.0299773 +0.0574282 0.0681585 0.00377242 +-0.0535498 0.0486673 -0.00635158 +-0.0304741 0.177281 -0.004356 +-0.0855011 0.0792275 0.0175034 +-0.0804698 0.130248 0.0526854 +0.000343862 0.0539275 -0.0306641 +-0.0900062 0.133811 0.0372136 +0.0104354 0.0347372 0.0259595 +-0.0574962 0.0440189 0.0444763 +-0.0573422 0.0335757 0.00237022 +0.0404449 0.0739232 0.0320846 +-0.00464724 0.0496642 -0.0307417 +-0.0311133 0.0510509 -0.015361 +0.0169782 0.128539 0.0144983 +-0.0872732 0.151714 0.0113029 +-0.0345546 0.0409268 0.0482929 +-0.0745628 0.173554 -0.0490908 +-0.0213027 0.0381376 0.0110019 +0.0223647 0.0782061 0.0499784 +0.0111959 0.0879068 -0.0311136 +0.0141654 0.115006 -0.0159235 +-0.0175094 0.116845 0.0368185 +0.0185047 0.0369619 -0.0146835 +-0.0924063 0.129578 0.0112381 +-0.00949945 0.0517772 0.0514996 +-0.0666563 0.0656524 -0.0048951 +-0.0494962 0.100168 0.0429965 +0.00776642 0.130336 0.022539 +-0.0564976 0.0904367 0.0452654 +-0.0648339 0.153263 -0.0390895 +0.0140569 0.12802 0.0248446 +-0.00977705 0.174183 -0.0237537 +-0.0154865 0.0530505 0.0500296 +-0.0627622 0.0810191 -0.0190992 +-0.0385594 0.173184 -0.00190958 +-0.00314149 0.0972112 0.0530078 +-0.0418773 0.107078 -0.0201516 +0.0363342 0.109637 -0.000829727 +0.021507 0.126326 0.01189 +-0.030496 0.0988081 0.0439786 +-0.0769628 0.150462 0.0371334 +-0.0941104 0.126894 0.0182531 +-0.0255083 0.112568 0.0366767 +-0.0746801 0.157704 -0.00556618 +-0.0418449 0.0971142 -0.0220611 +-0.0359493 0.125342 -0.00457539 +-0.0258164 0.0853463 -0.0368715 +0.0497106 0.0482066 0.0259506 +-0.0716942 0.1568 -0.0399156 +-0.0618117 0.0590403 0.0165038 +-0.0714498 0.15679 -0.0419165 +-0.0701989 0.0368637 0.0105096 +0.0597267 0.0636404 0.0201833 +-0.0915748 0.124221 0.0431828 +-0.0690929 0.156328 0.0219534 +-0.0302767 0.0622182 -0.0224251 +-0.00771091 0.0627931 -0.0356131 +0.0394872 0.0513548 0.03224 +-0.0229845 0.0724431 0.0499564 +-0.0290201 0.125445 0.00626167 +-0.0729777 0.138423 -0.00695981 +-0.00991212 0.111561 -0.0201766 +0.000200297 0.0825801 -0.036136 +0.0364442 0.0590953 0.0349595 +0.0364996 0.0928818 0.0370772 +-0.0181329 0.0432293 0.0524811 +0.00280759 0.0350639 0.0204847 +-0.0626379 0.152126 -0.0285986 +-0.0704211 0.15543 0.027334 +0.000301963 0.100099 0.0481787 +-0.049492 0.0917757 0.044207 +-0.015502 0.0897786 0.0564851 +-0.0318792 0.156356 -0.0104816 +0.0416778 0.102863 0.015161 +0.0504722 0.048918 -0.000684915 +-0.0611415 0.0359024 -0.0090437 +-0.0264937 0.098817 0.0439871 +-0.000436317 0.122463 0.0356275 +-0.0875676 0.129767 0.0460862 +-0.0312863 0.0777611 -0.0325602 +-0.0303664 0.112853 -0.0174686 +-0.00773829 0.0684701 -0.0360951 +-0.0647534 0.156678 -0.0475943 +-0.0891175 0.0983455 0.0194044 +0.00833741 0.055373 -0.0305597 +-0.0550257 0.131065 -0.00539027 +-0.0305029 0.0689001 0.0393777 +-0.0596554 0.0343168 0.0331724 +0.0436089 0.0680569 -0.000247417 +-0.0786395 0.163873 -0.0279533 +-0.0574243 0.0613459 0.0260206 +-0.0338728 0.0483909 -0.0193366 +-0.0287306 0.074519 0.0412207 +0.016916 0.0577101 0.0489225 +-0.0184307 0.0347944 0.0485523 +-0.0655112 0.0803784 0.0426229 +-0.0332327 0.160967 -0.000804209 +-0.0533105 0.0541891 0.0115512 +-0.0356689 0.117866 -0.0126779 +-0.0699903 0.034504 0.00971713 +-0.0588141 0.0341524 0.0282501 +-0.0177813 0.0770869 -0.0388032 +0.0445157 0.0467554 0.0289718 +0.00964716 0.128306 -0.00229994 +-0.0666126 0.148623 0.0392621 +-0.0325544 0.0348985 0.0454309 +-0.0623108 0.039732 0.0166963 +-0.0917483 0.122888 0.0433845 +0.0271866 0.0819517 -0.0229154 +-0.00863658 0.0467032 -0.0298179 +-0.0620847 0.166243 -0.0515916 +-0.0912832 0.125583 0.0428488 +-0.0588072 0.0481223 0.00266039 +-0.0913122 0.133748 0.0212171 +0.0482658 0.0433313 0.0185611 +0.00774922 0.0351262 -0.0136823 +0.0357585 0.0562848 0.0339755 +-0.029123 0.166739 -0.016877 +-0.0338028 0.122413 -0.00742547 +0.0216799 0.0415358 -0.0117265 +-0.0257594 0.171231 -0.0110774 +-0.0641199 0.162494 -0.0212451 +-0.0535748 0.155622 0.0115317 +0.0531674 0.0736169 0.0146631 +0.0135129 0.0347107 0.0374491 +0.0227019 0.123147 0.0266031 +0.025252 0.0719314 -0.0249494 +0.0309797 0.118122 0.0225615 +0.0415492 0.0724945 0.03012 +0.000493498 0.119652 0.0380928 +0.0229975 0.123119 -0.000380287 +0.0234322 0.100371 -0.0202365 +-0.0620057 0.153738 -0.0265835 +-0.0398723 0.105663 -0.0203219 +-0.0632416 0.0445478 0.0366988 +-0.0310386 0.154131 -0.00157547 +-0.0042992 0.0348909 0.0408189 +-0.00181562 0.0826307 -0.0368615 +0.0388816 0.0927717 0.0335536 +-0.0335058 0.0760991 0.0415371 +-0.0314963 0.0917789 0.0442247 +-0.0512549 0.0612644 0.0318233 +-0.00281159 0.131227 0.0100802 +-0.0531145 0.157563 -0.00324336 +-0.0635867 0.03486 0.0405057 +-0.0627936 0.15522 -0.0356106 +0.0166245 0.122097 0.0315907 +-0.0106759 0.119083 -0.0141801 +-0.0465015 0.0689677 0.0402969 +-0.0626599 0.0423324 0.0141491 +-0.0515376 0.053149 0.0306286 +0.00413437 0.124074 -0.00964261 +-0.0105331 0.127013 0.0275477 +-0.042312 0.0337552 -0.0130352 +0.0472026 0.0681414 0.0256953 +0.0213439 0.0741385 0.0502206 +0.0156241 0.128368 0.0211329 +0.0358549 0.0843357 -0.0172902 +-0.0533892 0.064921 0.0343521 +0.0273368 0.091573 0.0449418 +-0.0440333 0.0423079 -0.0173091 +-0.0764978 0.13864 0.0490601 +0.00750117 0.0716903 0.0560753 +0.0454321 0.0861887 0.0181684 +-0.0812985 0.084505 0.0328118 +-0.0605375 0.155317 0.003221 +-0.0065332 0.130449 0.0187888 +0.0247646 0.122114 0.0259409 +-0.0711064 0.152637 0.0345827 +-0.0155013 0.0716083 0.0551341 +0.0277791 0.0822205 0.0455159 +-0.0445183 0.0675631 0.0404632 +-0.0772746 0.147261 -0.00486297 +-0.0868795 0.0927253 0.00342064 +-0.0458425 0.0985138 -0.0217256 +-0.0906083 0.131058 0.0342318 +-0.091547 0.146101 0.0191506 +-0.00249086 0.116945 0.0398999 +0.0385734 0.0699568 0.0346425 +-0.0129648 0.116833 -0.0157687 +0.0215791 0.120444 0.0319368 +-0.0899229 0.115405 0.0270455 +-0.0697992 0.0836733 -0.0171139 +-0.0415794 0.128056 0.0149128 +-0.0734779 0.180121 -0.0504836 +-0.0466973 0.0665278 -0.0146823 +-0.0673893 0.156703 -0.00509746 +0.00108438 0.119342 -0.0145393 +-0.019494 0.0842608 0.0571688 +0.0285713 0.0551672 -0.0188053 +0.00650695 0.0731027 0.0564796 +-0.0557862 0.0854763 -0.0214113 +-0.0743851 0.163815 -0.0369793 +-0.0286768 0.123948 -0.00103929 +-0.0301123 0.163751 -0.0154896 +0.0410386 0.099944 -0.00278716 +0.00848446 0.0518256 0.0516867 +-0.051108 0.0530218 0.0319282 +-0.0905758 0.113954 0.0388293 +-0.00470317 0.038779 0.00289117 +-0.0247258 0.0638997 -0.032873 +-0.04111 0.159177 -0.0108205 +-0.0892399 0.140676 0.0351725 +-0.075004 0.141334 -0.0064915 +-0.0463338 0.132474 0.00863126 +-0.0541416 0.034749 0.0443256 +-0.0781873 0.168068 -0.0319708 +0.0328915 0.0696754 -0.0177356 +0.0346158 0.0369318 0.00517598 +-0.0694908 0.124597 0.0526574 +0.0581844 0.0711857 0.0106064 +-0.0378081 0.0841771 -0.022143 +-0.0281622 0.169703 -0.0179592 +0.0305485 0.118199 0.0238252 +-0.0289649 0.0747374 -0.0345478 +-0.0272221 0.0904382 0.0465675 +-0.0514982 0.0848246 0.0453901 +-0.051623 0.0531083 0.0226238 +-0.0398125 0.0899922 -0.0232612 +-0.0236559 0.0709438 0.0478646 +-0.053816 0.0559281 -0.00642904 +0.0603322 0.0636924 0.0181801 +-0.0884616 0.136381 0.00620417 +-0.0394936 0.046476 0.0404962 +-0.0530638 0.0723343 0.0404003 +0.0102711 0.0695708 -0.0315811 +0.0339253 0.115718 0.0108315 +-0.0295473 0.0358282 0.0521362 +0.0116453 0.090034 0.0538428 +0.0450904 0.0875663 0.0201674 +0.0326336 0.0519746 0.0346532 +0.03367 0.072742 0.0398859 +0.024638 0.124378 0.010214 +0.0415181 0.0484385 0.0321463 +-0.044143 0.159411 0.00624881 +-0.0495653 0.047469 -0.00900107 +-0.0894571 0.131034 0.0422704 +-0.075804 0.161028 -0.0299559 +-0.0164919 0.0968814 -0.0286925 +0.0229929 0.0371968 0.0317242 +0.0352506 0.101471 -0.011425 +-0.049558 0.0389942 -0.0116749 +-0.0223649 0.171249 -0.0132085 +-0.0667327 0.078026 -0.0171522 +0.0442166 0.0846846 -0.00180459 +-0.0518774 0.104165 -0.0200373 +-0.0393536 0.0336231 0.00416845 +0.00720473 0.0823989 -0.0333538 +-0.0288578 0.101545 -0.0231915 +0.0245524 0.106048 0.0391612 +-0.0851811 0.0897279 0.0280525 +-0.00334607 0.0347739 0.0411187 +-0.0430221 0.128224 0.015861 +0.0243931 0.0503998 -0.0217952 +-0.0394902 0.0506047 0.0393469 +0.0293799 0.0892796 -0.0205263 +-0.0574934 0.0875623 0.0444505 +-0.0644211 0.0347126 0.0370276 +-0.0169241 0.181626 -0.0193127 +-0.0564978 0.0732565 0.0410435 +-0.0544221 0.144671 0.0284168 +0.0203184 0.0650483 -0.0276666 +-0.0648645 0.041891 0.032665 +-0.0451284 0.159142 -0.00893675 +0.0451235 0.093189 0.0121575 +-0.0577489 0.0479998 -0.00135721 +-0.0606371 0.0448145 0.012064 +0.0495086 0.0638139 0.0293036 +0.0458685 0.0862133 0.0111669 +-0.0531099 0.136165 -0.00197183 +0.0285441 0.0509095 -0.0177614 +-0.013074 0.0383381 0.00704947 +-0.0223231 0.0391341 0.0387105 +0.0393846 0.0429207 -0.00283799 +0.0202147 0.0847891 -0.0269071 +0.00923869 0.035402 -0.0117616 +-0.060367 0.11933 -0.00999174 +-0.0772797 0.157576 -0.0127941 +-0.0732669 0.179344 -0.0490063 +-0.0683896 0.0420777 -0.000309277 +-0.0539058 0.102757 -0.0202213 +-0.0453256 0.169857 -0.00299568 +-0.0616838 0.0659304 -0.00830259 +0.00414244 0.129952 4.9397e-05 +-0.0404915 0.113924 0.0347061 +-0.0942425 0.120105 0.0182851 +-0.0324906 0.080327 0.0414535 +0.0529677 0.0595446 0.0290441 +-0.0904857 0.114242 0.0332623 +-0.0703591 0.181312 -0.0565189 +-0.0475241 0.112407 -0.0169253 +0.0109831 0.0341684 -0.0140433 +-0.089612 0.139257 0.0251846 +-0.0373738 0.0365422 0.044687 +0.0564401 0.0662549 0.00171258 +-0.0581251 0.0334091 -0.00125013 +-0.0407273 0.0696207 -0.0166002 +-0.0669961 0.165196 -0.05701 +0.0131268 0.120538 0.0349816 +0.0367009 0.0812747 -0.0157528 +-0.0077824 0.0784642 -0.0379203 +-0.0647128 0.155185 0.0278857 +0.00549498 0.0951378 0.0528545 +-0.0108057 0.0342947 -0.0255969 +-0.0911579 0.129687 0.0342384 +-0.080608 0.0720682 0.0165498 +-0.073439 0.148627 -0.0298053 +-0.0271937 0.174158 -0.0183459 +-0.0244966 0.0509689 0.0431921 +-0.00162246 0.0450436 -0.027024 +-0.0775221 0.104823 0.0340694 +0.0154861 0.0927165 0.0506449 +-0.0599536 0.123822 -0.00839074 +-0.079866 0.0706372 0.0115498 +-0.0815235 0.0899003 0.0328752 +0.0313378 0.118325 0.00558524 +0.0248331 0.123944 0.0188283 +-0.0898787 0.112224 0.0169361 +-0.0662043 0.065068 0.0280019 +0.0246717 0.0434401 -0.00867806 +-0.0469681 0.134154 0.0128397 +-0.0291377 0.0860908 -0.0335904 +0.0147704 0.0519654 0.0475176 +-0.0296475 0.169744 -0.0079151 +-0.0211888 0.175661 -0.0220113 +-0.0347689 0.0780934 -0.0215038 +-0.013019 0.129549 0.0120959 +0.0421932 0.0662609 -0.00283376 +0.0111358 0.0352671 0.0436641 +-0.0705399 0.100871 0.0399167 +-0.0604975 0.0832903 0.0437356 +-0.0659485 0.126772 -0.00885106 +-0.0702518 0.06756 0.0285092 +-0.00688661 0.108791 -0.0226031 +-0.0786437 0.112204 0.0464731 +0.00637271 0.130879 0.0205945 +-0.066894 0.110895 -0.0121462 +0.0123118 0.0623753 -0.0299343 +-0.0285044 0.109801 0.0380702 +0.00650421 0.0883449 0.0558788 +-0.0545694 0.124267 -0.00721739 +-0.0626588 0.161511 -0.0455953 +-0.0861214 0.132549 0.0473951 +-0.0627776 0.125519 0.0444184 +-0.0177321 0.160293 -0.0123373 +-0.0490182 0.0345781 0.0369526 +-0.0297799 0.106834 -0.0211406 +-0.079558 0.151858 0.0332132 +-0.0404921 0.0648693 0.0415314 +-0.0530069 0.153493 0.0132253 +-0.0339683 0.0485791 0.0404406 +-0.0421354 0.0449426 -0.0173193 +-0.0517467 0.076797 -0.0188523 +-0.060863 0.0583083 0.0137477 +0.0112347 0.0794806 -0.0318525 +0.00351036 0.0856577 0.0572413 +-0.0648576 0.101039 -0.0173044 +-0.0601123 0.0381131 0.0455939 +-0.015494 0.0515277 0.0489706 +-0.0275254 0.1668 -0.00838328 +-0.0365126 0.077567 0.0421306 +-0.0195832 0.1596 -0.0115811 +0.00251466 0.0744821 0.0563666 +0.0589788 0.062133 0.0220601 +-0.066902 0.117219 0.0507079 +-0.0396194 0.0335538 -0.0253204 +-0.0297618 0.107877 -0.0202294 +-0.00601771 0.0990415 0.0504631 +-0.084398 0.0778007 0.013518 +0.0271613 0.0368693 0.0238228 +-0.0589877 0.0335902 0.00921609 +0.029871 0.0968887 0.0415927 +0.00949394 0.0426698 0.0450285 +-0.0697739 0.0382195 0.0100596 +0.0231426 0.0768603 0.0493195 +-0.00501253 0.125042 0.0324689 +-0.00710159 0.0387114 0.00061319 +-0.0177128 0.0599179 -0.0354327 +-0.045698 0.157938 0.00750606 +0.00190257 0.130874 0.00322319 +-0.0444648 0.0945053 0.0429498 +-0.0772757 0.148645 -0.0058688 +-0.069822 0.156776 -0.00162593 +-0.0445001 0.117958 0.0308281 +-0.0409685 0.0462375 -0.0173222 +-0.0305996 0.0509893 -0.0173575 +0.00196704 0.0385066 0.0244659 +-0.00668986 0.0584241 -0.0339312 +-0.0587805 0.0811174 -0.0202922 +-0.0492044 0.143127 0.00539863 +-0.0686509 0.155409 0.00612964 +-0.0404209 0.150087 -0.00469474 +-0.00449521 0.0925603 0.0561444 +-0.000397233 0.131333 0.0167016 +-0.0552402 0.138165 0.0306253 +0.0215752 0.056436 0.0468827 +-0.0248564 0.100174 -0.0239639 +-0.0165731 0.0386082 0.0295958 +0.0232801 0.125085 0.0182493 +0.0228318 0.0357435 0.0257706 +-0.0492021 0.127407 -0.00458885 +-0.0878029 0.112934 0.0313303 +0.0465727 0.0554592 0.0320923 +-0.0288967 0.0499669 0.0438168 +-0.000173892 0.120963 -0.0122496 +-0.0704499 0.154022 0.0317661 +-0.0151711 0.0346724 0.0458457 +-0.0640566 0.138182 0.0390191 +0.0398408 0.105612 0.0201716 +0.0444976 0.0583814 0.0318302 +0.031639 0.0370094 0.0209702 +-0.0104878 0.112778 0.0413082 +-0.0672962 0.0785128 0.0408262 +-0.0760729 0.0675487 0.00755458 +-0.0571409 0.0642584 0.0323718 +0.0261418 0.0859362 -0.0230192 +-0.015502 0.0856307 0.0568812 +0.0189265 0.119915 -0.00924366 +-0.0119328 0.103575 -0.0236984 +-0.00622128 0.0384574 0.0119659 +-0.0779451 0.128117 -0.00684087 +-0.0657248 0.120041 0.0506761 +-0.0623817 0.147548 -0.00757469 +-0.0875561 0.121673 0.0477803 +0.0222529 0.0365833 0.0139797 +-0.00142937 0.126525 -0.00622577 +-0.0226373 0.0386776 -0.0154938 +-0.0648114 0.0335165 0.00450366 +0.0210136 0.0713836 0.0497227 +-0.0348346 0.0347214 0.0345782 +-0.027609 0.0850124 0.048532 +-0.0856119 0.0819492 0.0204815 +-0.0601038 0.0347331 -0.00989443 +0.00929494 0.0956507 -0.0272714 +-0.0915391 0.118654 0.00731945 +-0.00449819 0.0604864 0.0551163 +0.0204818 0.0854612 -0.0266087 +-0.0429251 0.129071 0.00699388 +-0.0789967 0.138332 -0.00474353 +0.0343592 0.0519767 -0.00689954 +-0.0921408 0.125525 0.040859 +0.0516782 0.0702939 0.00352664 +-0.022659 0.0508417 -0.0286643 +-0.00138527 0.0424799 0.0468649 +0.0452912 0.0903849 0.0031762 +0.0401652 0.0717052 -0.00977551 +-0.0905185 0.148805 0.0131551 +-0.0470106 0.149195 0.00904699 +-0.0201874 0.0711262 0.0528634 +-0.0555353 0.0388223 -0.0103544 +-0.0714965 0.154091 0.0314059 +0.0232354 0.0968772 0.0460698 +-0.020264 0.0381835 0.0111715 +-0.0267635 0.177003 -0.0181719 +-0.0755105 0.151351 -0.0138965 +-0.00749931 0.0925693 0.0562701 +-0.063994 0.152679 -0.0352218 +0.0453927 0.0833662 0.00319518 +-0.0137973 0.081348 -0.0391911 +-0.0433806 0.120699 0.0278302 +0.0462048 0.0792353 0.00618416 +-0.0498122 0.141672 0.00439987 +-0.0592291 0.156682 0.00368263 +-0.0525972 0.055954 -0.00763978 +-0.0796979 0.108952 0.0363543 +-0.0334959 0.0335656 -0.024125 +0.0047441 0.131688 0.0100125 +-0.0530342 0.15087 0.0203968 +-0.0794975 0.133078 0.0519067 +0.0231582 0.125381 0.0124998 +-0.0898343 0.122953 0.0457467 +0.0336909 0.115719 0.00499933 +-0.0364989 0.0705154 0.0419282 +-0.0641133 0.155183 -0.0406054 +-0.0303694 0.034667 0.0426012 +-0.0474034 0.126784 0.0277907 +0.0312862 0.107094 -0.0114403 +-0.0399374 0.122179 0.0274746 +-0.0715157 0.106884 0.0372861 +0.0432452 0.100105 0.0111579 +-0.0264035 0.0386467 -0.0143525 +-0.053047 0.162457 0.00378602 +-0.0573985 0.155942 0.000257732 +-0.0104925 0.119661 0.037142 +-0.0107108 0.0656519 -0.03625 +0.0153129 0.0637748 -0.0295702 +-0.047649 0.128193 0.0275289 +-0.0395091 0.0986823 0.0417741 +0.0582857 0.0709436 0.0165587 +0.0144142 0.0418406 -0.0232939 +-0.0406818 0.0636695 -0.0135779 +-0.0700194 0.0408862 0.000674154 +-0.0898984 0.139201 0.0142132 +-0.0368759 0.102855 -0.0211016 +-0.031161 0.177923 -0.0048433 +-0.0216559 0.0380957 0.0145856 +-0.00121026 0.129846 0.000241032 +-0.0176504 0.0583335 0.0507279 +0.0492902 0.0704301 0.0235452 +0.008888 0.126629 0.0301427 +-0.0897638 0.136555 0.0361946 +-0.0903944 0.113745 0.0354564 +0.0327067 0.0659933 0.0401778 +-0.0167299 0.0383654 0.0243772 +0.0403616 0.0561214 -0.00579676 +-0.0891677 0.150225 0.0241083 +-0.0128992 0.165641 -0.0199242 +-0.0596113 0.0581543 0.0105384 +0.0326521 0.108705 0.0315863 +-0.0448105 0.126695 -0.00590468 +0.0440256 0.0973461 0.0131583 +-0.0694635 0.0618968 0.00696654 +-0.0667991 0.06462 0.0265045 +0.0388894 0.060327 0.0314833 +0.0120611 0.11304 -0.0178164 +-0.0635386 0.151731 -0.00361755 +-0.00656125 0.130634 0.0158888 +0.0344174 0.0430387 -0.00433126 +-0.00549778 0.129792 0.00189197 +-0.0499313 0.134148 0.000258943 +-0.0563569 0.155043 0.0148967 +-0.00737522 0.0388161 -0.00139235 +0.0283929 0.0347449 0.011384 +-0.010683 0.0908469 -0.0364652 +-0.048501 0.109818 0.0382143 +-0.0690431 0.169001 -0.0273587 +0.0102657 0.0954683 -0.0270889 +0.0126468 0.0820043 0.0535026 +-0.0507783 0.0613366 0.0327704 +0.00559724 0.128727 -0.00267638 +-0.044734 0.0724552 -0.0176324 +-0.0283736 0.0336157 -0.0231629 +-0.0679859 0.155562 0.00782161 +-0.0939853 0.126886 0.0172543 +-0.0238126 0.0840242 -0.0378907 +-0.0152029 0.16973 -0.0225848 +0.0303318 0.0382842 0.0249985 +-0.0463034 0.0382871 -0.0172845 +-0.012857 0.0968183 -0.0306036 +0.0139515 0.0933972 -0.0268828 +-0.0598089 0.0334419 -0.0052474 +-0.0682308 0.180685 -0.0584278 +-0.0564615 0.0452367 0.0437224 +0.0122525 0.036039 -0.0217262 +-0.0324956 0.119317 0.0295507 +-0.050852 0.0985174 -0.022094 +0.0359226 0.0926166 -0.0140085 +0.0475195 0.0583521 0.0315949 +0.00440154 0.12483 0.0329119 +-0.0725064 0.152612 -0.0398907 +-0.00124079 0.0388178 0.0271443 +-0.0855936 0.143251 0.00719107 +-0.0618131 0.161554 -0.0315928 +-0.0315498 0.0848744 -0.0295692 +-0.0167783 0.0770825 -0.0387039 +-0.024832 0.0930098 -0.0316179 +-0.0356976 0.121856 -0.0088333 +0.0456324 0.0875991 0.0131626 +0.0344601 0.0660136 0.0392214 +0.008313 0.0639391 -0.0318667 +0.0352496 0.0656442 -0.0147977 +-0.0468498 0.0999476 -0.0216953 +-0.0215077 0.111305 0.0395987 +-0.0345319 0.122423 0.0264163 +0.0333657 0.0835669 0.0412915 +-0.0594982 0.143919 0.0350801 +-0.0210079 0.184692 -0.0198306 +-0.09225 0.125605 0.0402535 +-0.0764966 0.117544 0.0520468 +0.0261457 0.100404 -0.0183041 +0.0314049 0.0431209 -0.00494122 +-0.000675964 0.056864 -0.0322097 +-0.0759667 0.135448 -0.00632576 +0.0194608 0.0865014 0.0497298 +0.0480114 0.0447211 0.0227621 +0.0382636 0.109749 0.0121659 +-0.0191397 0.0920316 0.0539979 +0.0148906 0.112386 -0.0170744 +-0.0156084 0.0378086 -0.0269252 +0.0166879 0.0355485 0.0409566 +-0.0719103 0.125286 -0.00863314 +0.0390766 0.0901064 0.0338413 +0.0238446 0.123573 0.0241681 +0.0180905 0.1262 -1.26099e-05 +-0.0241861 0.0351713 0.0521271 +-0.0864494 0.107673 0.0113573 +0.00554907 0.0341243 -0.0169616 +-0.0740319 0.152138 0.0351116 +-0.00773495 0.12664 -0.00628182 +-0.0408221 0.0343419 0.0301151 +0.0589083 0.0700926 0.0167877 +-0.0321537 0.168198 -0.0161712 +-0.0504087 0.0385253 -0.0116443 +-0.0719982 0.132651 0.0504199 +-0.0314938 0.0946271 0.0446065 +0.0415387 0.0610238 0.0295203 +0.0439094 0.0623682 -0.0025277 +-0.0745832 0.173457 -0.038075 +-0.0135013 0.163627 -0.011822 +0.00544999 0.097676 0.0507202 +-0.0233157 0.0695067 0.0475588 +0.0280693 0.112767 0.0337398 +0.0217645 0.057833 0.0471676 +-0.0875176 0.123015 0.0477063 +-0.0696847 0.0339658 -0.0022881 +-0.0251326 0.166747 -0.01768 +-0.0196064 0.177176 -0.0161969 +-0.0704588 0.109521 0.0380634 +-0.068398 0.171087 -0.0357069 +0.0111209 0.0908234 -0.0303895 +-0.0634854 0.149796 0.0371525 +0.00199826 0.122137 -0.0115071 +-0.0620402 0.161574 -0.0285866 +0.0543448 0.0567886 0.0274783 +0.00150309 0.0619973 0.0566118 +-0.0476286 0.0532889 -0.00972253 +0.0589424 0.064749 0.0219118 +0.00619535 0.0866083 -0.0331365 +0.00933928 0.0947261 -0.0283032 +0.0354634 0.113562 0.00993821 +-0.0622597 0.0337543 0.0119702 +-0.0286126 0.0778208 0.0441079 +-0.0291848 0.0649007 -0.0284708 +0.00716146 0.130043 0.000903466 +0.00854238 0.122369 -0.0118647 +0.0207709 0.0422154 0.0420468 +-0.0728566 0.114991 -0.00711315 +-0.062327 0.161572 -0.0265871 +-0.029645 0.121258 -0.00823608 +-0.0358448 0.0971832 -0.0228124 +-0.0241278 0.166765 -0.0179136 +-0.0833762 0.111067 0.0302504 +-0.0714085 0.0715566 0.0335759 +-0.0285052 0.11799 0.0309781 +-0.0436341 0.171062 -0.00299049 +-0.0254563 0.120601 0.0288472 +0.029856 0.0552774 -0.0168073 +-0.0277474 0.076815 -0.0357774 +-0.0305568 0.0845973 0.042796 +-0.0927119 0.117479 0.0363033 +0.00128405 0.131584 0.0158806 +-0.0853072 0.129862 0.0494994 +-0.0379579 0.11044 -0.0188969 +-0.0647113 0.0736859 -0.0158833 +-0.055064 0.0698751 0.038539 +-0.049499 0.0747526 0.0426395 +-0.0315694 0.0461612 0.0465874 +-0.0452548 0.169651 -0.00135352 +-0.0891941 0.0888738 0.0164555 +-0.0424866 0.0396651 0.043393 +-0.0870945 0.0846532 0.00548002 +-0.0530436 0.142764 -0.000526483 +-0.0664988 0.146992 0.0401715 +-0.0606301 0.0613516 -0.00265703 +-0.0321846 0.121876 0.025771 +0.0462743 0.0806463 0.0131736 +0.0355309 0.0527205 0.03199 +-0.0515418 0.0389441 -0.0114685 +0.0203586 0.0565379 -0.0271575 +-0.065976 0.0624665 0.0232686 +-0.0399438 0.0336374 -0.0217314 +-0.0584862 0.0833066 0.0438144 +-0.0449507 0.157934 0.00683281 +-0.0161733 0.168253 -0.0210405 +-0.0807961 0.0747709 0.0205502 +-0.0450711 0.153185 -0.00674331 +0.0122509 0.0766796 0.0546284 +-0.0165839 0.159908 -0.00982549 +-0.000693426 0.0367942 0.0054988 +-0.051438 0.0643214 0.0343604 +0.0173166 0.0411975 -0.0216758 +-0.0350925 0.0344983 0.0186791 +-0.0263041 0.10845 -0.0208491 +-0.0233997 0.0384863 0.0301002 +0.0336304 0.116029 0.0121428 +-0.084184 0.106292 0.0253661 +-0.0668605 0.102389 -0.0157781 +-0.0617744 0.0585089 0.0133805 +-0.037501 0.0634549 0.0414009 +0.0430852 0.0973049 0.0211625 +-0.0895621 0.0902365 0.017449 +0.0358939 0.0591552 0.0359628 +0.00041272 0.0994106 0.0497851 +0.0297429 0.112241 -0.00897067 +-0.0614607 0.155749 0.0232098 +-0.0190678 0.0347878 0.0501361 +0.0278403 0.121636 0.00711658 +-0.0293538 0.0475081 0.0471486 +-0.0878748 0.0861246 0.0134664 +-0.065267 0.132559 0.042478 +-0.0557536 0.0782586 -0.0197587 +0.0163546 0.0537375 -0.0279072 +-0.0768389 0.102007 -0.0101454 +-0.0762457 0.0708701 0.0261488 +-0.0434929 0.0410777 0.0433607 +-0.0820951 0.100566 -0.0055776 +-0.0124865 0.114128 0.0400495 +0.0495003 0.0496818 0.0274333 +0.0157351 0.0562704 0.0489701 +-0.0269138 0.0660937 -0.0314934 +-0.0205217 0.0448565 0.0528623 +-0.0147659 0.0742889 -0.0388052 +0.0292558 0.120076 0.0204837 +-0.0416192 0.0505822 -0.0110011 +0.00560187 0.0957087 -0.0293479 +-0.00449169 0.0575673 0.0538908 +0.0302324 0.0374168 2.32521e-05 +0.0404422 0.105635 0.0151656 +-0.0407521 0.0782965 -0.0192261 +-0.0321404 0.106348 -0.0206098 +0.0240312 0.1242 0.0213823 +0.0163901 0.0476981 -0.0240512 +-0.0540847 0.0341953 0.0274512 +0.0565883 0.0716209 0.0188851 +-0.063971 0.0343652 0.0164556 +0.0222263 0.0790988 -0.0263649 +-0.0480529 0.15019 -0.0042011 +-0.0364615 0.155102 -0.00949574 +-0.0107913 0.165034 -0.0192459 +-0.0720629 0.166594 -0.0198059 +0.0596228 0.0581166 0.00817617 +0.0193916 0.12656 0.0211758 +-0.029103 0.162278 -0.0149633 +-0.0114929 0.118282 0.0379089 +-0.0766495 0.0810868 -0.0106019 +-0.00184307 0.128669 -0.00252946 +-0.0100488 0.177211 -0.0257537 +-0.0544738 0.0624824 0.0299832 +-0.0840733 0.0966087 -0.0036103 +-0.0707265 0.080778 -0.0161096 +-0.0214771 0.122102 0.0291424 +-0.0428932 0.0358165 0.00869673 +0.0135568 0.129672 0.01894 +-0.00280854 0.081222 -0.0368531 +0.00517895 0.130408 0.0230466 +-0.067269 0.167119 -0.0252721 +-0.00747948 0.0919417 -0.035549 +-0.0365036 0.0478079 0.0395886 +-0.0569665 0.0548885 0.00161507 +-0.0744851 0.0663284 0.00571192 +0.0455621 0.0889987 0.00417598 +-0.0292503 0.036802 0.0530596 +-0.0435044 0.0605182 0.0400424 +-0.0915766 0.14196 0.0161629 +-0.0696706 0.14899 -0.0379959 +-0.0770107 0.152809 -0.00688788 +-0.0705529 0.0628294 0.0184736 +-0.044794 0.0870021 -0.0219374 +-0.0107414 0.120001 -0.0131465 +-0.000720709 0.0669492 -0.0343521 +-0.0214315 0.0906458 0.0534872 +-0.0354995 0.0619703 0.0405316 +-0.0628269 0.1502 -0.00476792 +-0.0640626 0.136748 0.0389546 +-0.0474986 0.102884 0.0412273 +-0.0116527 0.129557 0.00826831 +-0.0347732 0.0337732 -0.0208295 +-0.0214023 0.161048 -0.0139992 +-0.0752954 0.15636 -0.00353298 +-0.0688076 0.150274 -0.0424283 +-0.0238582 0.0382811 0.0283891 +-0.0935937 0.118737 0.0143019 +0.0184606 0.0475775 0.0422564 +0.00850874 0.0575011 0.0529664 +-0.0532082 0.149319 0.0233918 +-0.0320154 0.082069 -0.0305372 +-0.0190294 0.0739916 0.05444 +-0.00216392 0.0992947 0.0503069 +-0.0162644 0.11453 -0.017303 +0.0278981 0.113772 -0.00862034 +0.0459848 0.0602104 -0.00435135 +-0.0564936 0.0465915 0.0420515 +0.0169002 0.103075 -0.0211457 +-0.00731691 0.128182 0.0272242 +0.0205916 0.112587 0.0371117 +-0.0176105 0.0435992 -0.0276633 +-0.0274971 0.0619365 -0.0294418 +0.000272434 0.109746 -0.0202486 +0.0416377 0.084481 -0.00877138 +-0.0784224 0.0725404 0.0242536 +-0.00880164 0.0826803 -0.0379328 +-0.0147316 0.0685868 -0.0380387 +0.0333786 0.0476367 -0.00619535 +0.00348805 0.0413645 0.0460201 +-0.0227229 0.0625945 -0.0340193 +-0.0669932 0.138471 -0.00790807 +-0.037224 0.169679 -0.0130647 +0.0535575 0.0477942 0.0072134 +-0.0575878 0.158069 0.0020235 +0.0345395 0.0727588 0.0393885 +-0.0699466 0.072981 0.0361776 +0.020686 0.0367224 0.0371237 +-0.0728722 0.0355547 0.00103582 +0.00487825 0.131703 0.0129125 +0.0580945 0.0523756 0.014183 +-0.0866528 0.145956 0.0348405 +-0.00749813 0.125151 0.0317009 +0.0403042 0.0398794 0.0201445 +0.0355341 0.0875716 0.0391778 +-0.0249398 0.157384 -0.00964166 +0.00350274 0.0489558 0.0513808 +-0.00381736 0.131135 0.0125816 +-0.00837752 0.0353543 0.048476 +0.0140849 0.129676 0.00773008 +-0.010101 0.102023 -0.0240718 +0.0446756 0.091763 0.0191604 +-0.0637279 0.173384 -0.0513558 +-0.031495 0.061765 0.0382603 +0.0366571 0.0968397 -0.0108144 +-0.0285085 0.115306 0.0336868 +-0.00497421 0.126254 0.0309961 +0.00248615 0.104372 0.0430232 +0.00642086 0.116423 -0.0174422 +-0.0636795 0.0658475 -0.00727738 +-0.0891519 0.0956005 0.0104313 +-0.0860649 0.0994533 0.00140442 +-0.0735831 0.152654 -0.0328925 +0.00651157 0.066084 0.0555109 +0.0344822 0.102017 -0.0120204 +-0.0637552 0.15245 -0.00517189 +-0.077532 0.159745 -0.0169143 +0.00251128 0.0661582 0.0562906 +0.0151093 0.0887421 0.0518346 +-0.00945842 0.0387253 -0.00172767 +-0.0471724 0.133935 0.00981498 +-0.0188178 0.158773 -0.00942574 +-0.0194961 0.0654004 0.0509321 +-0.0774489 0.163906 -0.0229523 +-0.0267283 0.156621 -0.00899742 +-0.0465008 0.111213 0.0371008 +-0.00249784 0.0939038 0.0553992 +-0.0715513 0.0342218 0.00249626 +0.0107439 0.130936 0.0122066 +0.0266603 0.0421651 0.0343135 +0.011996 0.0344545 0.00276628 +-0.0653727 0.074532 0.0393295 +-0.0417745 0.172541 -0.00446528 +-0.0368752 0.0345479 0.0395694 +0.00440907 0.131695 0.0141669 +0.0189748 0.0699869 0.0502663 +-0.0690298 0.155601 0.00744971 +-0.0265663 0.0356908 0.0529027 +-0.0621593 0.13389 0.0382274 +-0.0375341 0.0356789 0.0117182 +-0.00861273 0.0434199 -0.0261503 +0.0317849 0.0490447 0.0333888 +-0.0637123 0.0445754 0.0336875 +0.0376665 0.0374378 0.0089364 +-0.058497 0.0904388 0.0452323 +-0.0442728 0.0437529 -0.0143172 +0.0204519 0.0357096 0.00704168 +0.0282191 0.0941913 -0.0197138 +-0.0688839 0.117973 -0.00851105 +0.0338372 0.104851 -0.0110391 +0.024912 0.0505255 0.0392969 +0.0125119 0.107097 0.0421465 +-0.00117532 0.0998676 -0.0237773 +0.0246952 0.0420222 0.0382704 +-0.0398433 0.0971287 -0.022179 +0.0268619 0.108823 -0.0133055 +-0.0799271 0.140795 0.0466609 +0.0180138 0.0808533 0.0524986 +-0.0868879 0.111328 0.0363925 +0.000567537 0.0921561 -0.0336854 +-0.0892038 0.0969467 0.00941895 +0.00816432 0.0904541 -0.0318561 +-0.064746 0.155508 0.00899366 +-0.0911853 0.113324 0.0173235 +-0.00120622 0.113981 -0.0187843 +-0.00924245 0.0407867 0.049553 +-0.00349897 0.0575855 0.053786 +-0.0375091 0.0407357 0.0441865 +-0.0584982 0.108398 0.0387966 +0.0391307 0.0786589 -0.0107679 +-0.0474967 0.100136 0.0424923 +0.0275962 0.102142 0.0400686 +0.0233313 0.0578274 -0.025582 +-0.0510235 0.0723937 0.0407728 +0.0280639 0.121158 0.0057742 +-0.0318235 0.0637622 -0.0194381 +-0.038893 0.0378836 0.042947 +-0.0455156 0.14919 0.00769333 +-0.0724664 0.0678961 0.0260135 +-0.0614699 0.156861 -0.0255852 +0.0511802 0.0687267 0.0256724 +-0.0639329 0.153712 -0.0368711 +-0.055548 0.0628794 0.0303893 +0.0228246 0.0344564 0.00866393 +0.0333583 0.0505553 -0.00686804 +-0.0436286 0.0534388 -0.0110764 +0.0170321 0.128388 0.0173658 +-0.0484634 0.122511 0.0297787 +-0.0908772 0.119982 0.00630567 +-0.0251882 0.121015 0.0283088 +-0.0621056 0.167818 -0.0515918 +-0.0434918 0.0451945 0.0416496 +-0.0261859 0.172679 -0.0191085 +0.0581533 0.0685799 0.00535861 +-0.0308235 0.12443 -0.00028071 +-0.088653 0.0982606 0.00741366 +0.000114549 0.110154 -0.0201623 +0.032895 0.11463 -0.00105927 +0.0393368 0.0984458 -0.00682083 +0.0171551 0.0988258 -0.0226279 +0.0605804 0.0651016 0.017176 +-0.0528261 0.149337 0.0214103 +-0.0213292 0.159914 -0.0125433 +0.000685965 0.124734 0.0330095 +0.0425127 0.0872289 0.028142 +-0.0754377 0.172239 -0.0469918 +-0.00949675 0.039136 0.0341772 +-0.0750736 0.0773173 0.0349007 +-0.0204972 0.104391 0.0429524 +0.044682 0.0804275 0.0241291 +0.0288766 0.0477511 0.0362254 +-0.0590849 0.0584397 0.0175987 +-0.0187468 0.0685918 -0.0381091 +-0.0908268 0.137853 0.0181986 +-0.0934137 0.128236 0.0152484 +-0.0722094 0.155629 0.00630789 +-0.0701241 0.109501 0.0382316 +-0.0833629 0.0829469 -0.00357326 +-0.0219158 0.177176 -0.0142605 +-0.0038834 0.0389548 -0.00453366 +-0.0468309 0.0956366 -0.0220125 +0.0589161 0.0621713 0.00415053 +-0.0518659 0.144686 0.0163701 +-0.0589723 0.0448133 0.0132235 +0.05973 0.0664208 0.00812497 +-0.0911185 0.128332 0.0402364 +0.0082766 0.0667723 -0.0317926 +-0.0557755 0.0826404 -0.0214196 +-0.0254275 0.181837 -0.00892324 +-0.0899879 0.140645 0.0281829 +-0.0725199 0.141421 0.0466976 +0.0173961 0.0343459 0.000212982 +-0.0435004 0.0424369 0.0431009 +-0.0397849 0.155107 0.00553982 +0.0474231 0.0702463 0.00356979 +0.00935197 0.130836 0.00599246 +-0.0466333 0.0562665 -0.0109539 +-0.0134154 0.0393527 0.0385623 +0.0202221 0.0721388 -0.0279345 +-0.0855696 0.139064 0.00222203 +-0.0690425 0.0382325 0.0107396 +-0.0147406 0.129011 0.0158201 +-0.0436768 0.0636379 -0.0137577 +0.058107 0.0694858 0.00643586 +-0.0523916 0.160438 -0.00307609 +-0.0208502 0.120881 -0.00994613 +-0.0144972 0.0772805 0.0565653 +0.0146633 0.0548535 0.0491553 +-0.0872189 0.103599 0.00739967 +-0.013497 0.0701643 0.0543951 +-0.0727808 0.161025 -0.0379399 +0.0541744 0.0495318 0.0218692 +-0.0180637 0.122407 0.0308158 +-0.0437406 0.150663 0.00676805 +-0.0471693 0.128157 0.0265222 +0.000324051 0.0583269 -0.0327186 +0.0183373 0.109817 -0.016338 +-0.0826495 0.137607 -0.000712655 +0.0256839 0.122773 0.00490001 +0.0354824 0.111268 -0.000157004 +-0.0457208 0.0643263 0.038969 +0.0547017 0.0700348 0.00381661 +-0.00761606 0.128811 0.0256727 +-0.0687402 0.156349 0.0177202 +-0.085121 0.108927 0.00536277 +-0.0739548 0.136937 -0.00691386 +-0.00649589 0.0884166 0.05709 +-0.068322 0.144999 -0.0199128 +-0.0891584 0.142048 0.0331685 +-0.0282821 0.0889315 -0.0326167 +-0.0270715 0.0381475 0.00619785 +0.0226739 0.0430625 -0.011732 +-0.0895091 0.147137 0.0278175 +-0.0396286 0.0534411 -0.011004 +-0.0570587 0.0521462 0.00466373 +-0.0421407 0.162162 -0.0108328 +-0.0831356 0.0816494 -0.00150376 +-0.0274399 0.180304 -0.00715734 +-0.055838 0.0927189 -0.0219026 +-0.0624754 0.163097 -0.0475912 +-0.064973 0.0365283 0.0405192 +-0.0434783 0.0690982 0.041489 +0.0407433 0.102836 0.021176 +-0.0588838 0.0468495 0.0306747 +0.00493781 0.100395 -0.0223096 +0.00122691 0.116615 -0.0176232 +-0.035551 0.0451135 -0.0264751 +-0.025842 0.091626 -0.0326108 +0.0509675 0.0463703 0.0218015 +-0.077144 0.164539 -0.0230622 +-0.0613807 0.122656 0.0428396 +0.0364941 0.0454217 0.0304675 +-0.0655017 0.0931357 0.0435076 +-0.0869021 0.114398 0.00327085 +-0.0624965 0.109755 0.0377659 +-0.0219613 0.124807 -0.00195706 +-0.0564977 0.109762 0.0379025 +-0.0489044 0.0413839 -0.0112514 +-0.0464999 0.104301 0.0412272 +-0.0689362 0.173831 -0.0430963 +-0.0274521 0.175685 -0.00821886 +-0.00850113 0.0633575 0.0560799 +-0.0350673 0.0752529 -0.020583 +-0.0702674 0.128451 0.0511564 +-0.0318141 0.156607 0.00124178 +0.0187844 0.127527 0.00803838 +-0.0133229 0.0978873 -0.0277326 +0.00349851 0.0356817 -6.66678e-05 +-0.0714787 0.0630924 0.012741 +-0.0723877 0.16801 -0.0460141 +-0.0314985 0.12639 0.0112101 +0.0103131 0.0935662 -0.0290602 +0.0162881 0.0708862 -0.0299631 +-0.0486922 0.0693814 -0.0146213 +-0.00965082 0.0496857 -0.0310806 +-0.0472721 0.035073 0.043832 +-0.0505797 0.0528906 0.0145102 +-0.00843296 0.037899 -0.0156923 +-0.0276376 0.0383723 -0.00322479 +-0.0394609 0.174124 -0.00699657 +-0.0444987 0.125316 -0.00848377 +0.0413134 0.0732089 -0.00778125 +-0.0654437 0.17819 -0.0606312 +-0.0194942 0.0498847 0.046612 +-0.0470957 0.0376632 0.0453493 +-0.0435029 0.0832144 0.0426759 +-0.0134871 0.123689 0.0319378 +-0.0174978 0.0744121 0.0553624 +0.0333782 0.11597 0.0192002 +-0.0203318 0.0946383 0.0508766 +-0.0412055 0.0419705 -0.0232873 +-0.0815038 0.0885533 0.0328994 +-0.0703591 0.0620888 0.0120183 +-0.0334658 0.0396217 0.0500837 +-0.036771 0.0343273 0.0309808 +-0.0165061 0.126041 -0.00139683 +0.0369819 0.102039 0.0307859 +-0.0207502 0.0626823 -0.0352205 +0.0061481 0.104478 -0.0212191 +0.0323926 0.117262 0.0173907 +-0.0357746 0.08137 -0.0222094 +-0.0375579 0.0341991 0.0273875 +-0.0503289 0.0543622 0.0156654 +-0.0287388 0.076371 0.0428795 +-0.0631791 0.0597373 0.0065938 +-0.00649181 0.104468 0.0439265 +0.00653601 0.0924318 -0.0319265 +-0.0371937 0.168177 -0.0134205 +-0.0375614 0.128197 0.00751871 +-0.0898903 0.135179 0.0352087 +0.037196 0.0699864 0.036159 +0.0276189 0.0564968 -0.0197599 +0.0447325 0.0931835 0.0161662 +0.0398803 0.0927067 0.0314285 +-0.0468272 0.125328 0.0268353 +-0.0715318 0.0347543 -0.000134182 +-0.0859938 0.0978404 0.0272064 +-0.0460065 0.0410789 -0.0142843 +-0.0499829 0.0586014 0.0334591 +-0.0614235 0.172219 -0.0618413 +0.00350193 0.0474397 0.0500395 +0.0226438 0.0875613 0.0487078 +0.0374992 0.0644481 -0.0117672 +-0.00648083 0.111994 -0.0206545 +-0.0934649 0.120072 0.0123034 +0.00542168 0.12935 -0.00135496 +-0.0765071 0.126009 0.0528667 +-0.0308338 0.109919 -0.0183719 +0.018594 0.125548 0.0250901 +-0.0205082 0.0474421 0.0508554 +-0.0252811 0.168282 -0.0104061 +-0.051716 0.150726 0.0145842 +-0.0317716 0.0863018 -0.027557 +-0.0793223 0.151473 0.000118749 +-0.0823192 0.154091 0.0115231 +0.0432611 0.071972 -0.00279979 +-0.0761461 0.154973 -0.00265921 +-0.032878 0.156591 -0.0107994 +0.0360211 0.0628935 -0.0127986 +-0.0321679 0.120788 0.027294 +-0.00521106 0.038426 0.0176436 +0.0377365 0.0388851 0.0205214 +0.0183131 0.127887 0.0164149 +-0.0580398 0.0608775 0.0245548 +-0.0791963 0.108632 0.0349508 +-0.00201716 0.131125 0.0175388 +0.0407504 0.0633497 -0.00473671 +0.0447287 0.0917385 0.00119217 +-0.0534928 0.0848236 0.0453456 +0.00605741 0.0346665 0.039556 +-0.0276244 0.0436594 -0.0289391 +-0.00868086 0.056987 -0.0336771 +-0.058573 0.0613666 -0.00334192 +0.00741372 0.0360842 -0.0231635 +0.00514996 0.0337963 0.0112147 +-0.064123 0.113942 -0.0123233 +0.0527625 0.0723674 0.0204268 +-0.0354974 0.0634085 0.0409173 +0.0287147 0.0352518 0.00538775 +-0.0522813 0.0461425 0.0206748 +0.0547864 0.0548406 0.00018303 +0.00557978 0.101599 0.0456072 +0.00472897 0.0950887 -0.030676 +0.0355131 0.0781566 0.0390786 +0.0402454 0.0843611 -0.0117637 +-0.0605819 0.0468615 0.000669297 +-0.0394923 0.074754 0.042367 +-0.0331798 0.0779303 -0.0275261 +-0.0683095 0.178205 -0.0587107 +-0.00995429 0.0389301 0.0324647 +-0.0495001 0.108413 0.0388185 +-0.0659124 0.113781 -0.0114133 +-0.0404538 0.105662 0.0393313 +-0.0654729 0.17978 -0.0563035 +-0.0614888 0.0918402 0.045217 +0.0333657 0.0640658 -0.0168115 +-0.0809488 0.144539 -0.000825536 +-0.0545043 0.0918174 0.0448821 +-0.0504943 0.147794 0.0128405 +-0.0745085 0.118967 0.0529255 +-0.0596424 0.0629313 -0.00554826 +0.0600133 0.0636587 0.00714888 +0.0272456 0.0746657 -0.023693 +0.0433693 0.0575272 -0.00543691 +-0.0084928 0.0591086 0.0550857 +0.0327041 0.0686805 0.0402125 +-0.0371896 0.166685 -0.0135589 +0.0115191 0.107071 0.0419973 +0.0398757 0.096658 0.0297176 +-0.0882102 0.118977 0.047099 +-0.0794917 0.134473 0.0511764 +-0.0147562 0.0388704 -0.0103641 +-0.0729608 0.135493 -0.0074448 +-0.0829718 0.144576 0.00217748 +0.0121355 0.107265 -0.0192728 +0.00249537 0.0427747 0.0458993 +-0.0590743 0.136941 -0.00615344 +-0.0740187 0.0822617 -0.01463 +0.0274881 0.0349726 0.0165028 +0.0249311 0.118938 0.0303034 +-0.0860712 0.137702 0.0022107 +-0.00546373 0.0337972 -0.022595 +-0.0425018 0.0506116 0.0394181 +0.0044907 0.119648 0.0370088 +-0.066886 0.129814 0.0472408 +-0.033949 0.0667384 -0.0165589 +0.0265464 0.0699406 0.043619 +-0.0486667 0.134012 0.00340208 +0.0201914 0.117982 0.0346477 +-0.033458 0.0353739 -0.0310204 +-0.0251991 0.0536651 0.0400375 +-0.0689113 0.147966 -0.0319204 +-0.0650665 0.151369 -0.0356223 +-0.065894 0.118002 -0.00906639 +-0.00150449 0.0350731 0.0394353 +0.00648653 0.0951017 0.0524749 +0.0322641 0.11194 -0.00663069 +0.0356067 0.113152 0.00567562 +-0.0317604 0.120314 -0.00921321 +-0.0666072 0.0846933 0.0437683 +-0.0745085 0.13306 0.0516401 +-0.0914301 0.133749 0.0202171 +-0.0271327 0.0917299 -0.030613 +0.0356733 0.107346 0.028881 +0.021724 0.104691 0.0421173 +-0.0214953 0.0474568 0.0509792 +0.0189666 0.119003 -0.0102495 +0.0330783 0.0534528 0.0353209 +-0.0796959 0.154266 0.00805358 +-0.0370933 0.175555 -0.00565624 +-0.0324183 0.116998 -0.0137964 +-0.015069 0.117815 -0.0147928 +-0.0541455 0.0482522 0.0392578 +-0.017538 0.18639 -0.0186026 +-0.0486882 0.138613 0.0123943 +-0.0134995 0.0786948 0.0569449 +-0.0792474 0.0803083 0.033239 +-0.0523607 0.12647 -0.00557636 +-0.0261456 0.180134 -0.00803266 +-0.0654933 0.0875673 0.0446215 +0.0410795 0.0647663 -0.00478377 +0.038759 0.104954 -0.0010414 +0.0213206 0.103387 0.0432887 +0.00249002 0.112797 0.0416669 +-0.02662 0.157614 -0.0107103 +-0.0524373 0.0487028 0.0136696 +0.0367672 0.0605146 0.0354804 +-0.0769184 0.0832691 0.0369336 +-0.0650248 0.0337055 0.00787315 +-0.0515046 0.159378 0.00834015 +-0.0547588 0.079768 -0.0207581 +-0.0799475 0.0796892 0.0318714 +-0.0819371 0.129486 -0.00455242 +0.0162371 0.0359566 0.0423025 +-0.052497 0.108432 0.038849 +-0.0330169 0.0750953 -0.0275046 +-0.0367909 0.0856326 -0.0224706 +-0.0909792 0.143017 0.0266346 +-0.0790213 0.169435 -0.0369802 +-0.0224887 0.120777 0.0306794 +-0.0714154 0.063966 0.00470687 +-0.0833338 0.121705 0.0492392 +-0.00224884 0.0410819 0.0473849 +-0.0064961 0.0647536 0.0562043 +-0.0154675 0.0382885 0.0102401 +0.0316901 0.0754766 0.0423249 +-0.0682663 0.0409329 0.00988698 +-0.0397472 0.0753921 -0.0181662 +-0.0404974 0.0534278 0.0394751 +-0.027235 0.0964545 -0.0242996 +0.01346 0.094917 0.0501359 +-0.0101655 0.178729 -0.0267529 +-0.0368558 0.0971787 -0.022608 +-0.0618627 0.061311 0.023361 +-0.00785703 0.0384956 0.0242725 +-0.00828946 0.0422134 0.0491908 +-0.0626761 0.177191 -0.057627 +-0.0197826 0.0770974 -0.0390157 +-0.0283747 0.0368322 -0.0186629 +-0.0678325 0.165206 -0.0549947 +-0.0762767 0.179149 -0.050884 +-0.0126939 0.0585083 -0.0350263 +0.0259904 0.108758 0.0377477 +0.042201 0.0819186 0.0294354 +0.0164623 0.11028 -0.0168584 +-0.000216315 0.0411702 0.046762 +-0.0166283 0.0393036 -0.0275139 +-0.0660426 0.171124 -0.0420386 +0.0456785 0.0862046 0.0141695 +0.00138117 0.044939 -0.0263139 +0.0461205 0.0704224 0.0223322 +-0.0776245 0.0703136 0.0210685 +-0.0756983 0.148597 -0.0138657 +-0.00849865 0.0773628 0.0576515 +-0.0145231 0.0446315 0.0506096 +-0.0683418 0.0625091 0.0209713 +0.0172542 0.0764235 -0.0285503 +0.00803706 0.0343648 -0.0148062 +0.02126 0.0748992 -0.0268979 +-0.0630463 0.113863 0.0385547 +-0.0145507 0.0980154 0.0489953 +-0.0546077 0.131128 0.0350935 +-0.012492 0.061843 0.0546212 +-0.028497 0.0550003 -0.0233987 +0.0217846 0.11532 -0.0122874 +-0.0931885 0.121553 0.0392843 +-0.0522878 0.055669 0.0133058 +-0.0592645 0.138135 0.0336221 +-0.0895773 0.139272 0.0261794 +-0.0653179 0.156011 -0.0499494 +0.0382996 0.103126 -0.00513692 +-0.00322923 0.0355467 -0.0162422 +0.0141613 0.0988714 -0.0229756 +-0.0404979 0.0776396 0.043177 +-0.000517251 0.0386237 0.0468325 +-0.0745039 0.117561 0.0526615 +-0.0404908 0.101464 0.0408992 +0.00150976 0.0562224 0.0541662 +-0.0302058 0.0649962 -0.0264588 +-0.0427465 0.0393017 -0.0242897 +-0.0680504 0.12005 0.0525411 +0.0105239 0.101777 0.0472989 +-0.051788 0.0855011 -0.0215694 +0.0121427 0.124109 -0.00776299 +-0.0714952 0.123214 0.0534125 +-0.0377025 0.0444987 -0.0253388 +-0.0285008 0.0573948 0.0366096 +-0.0557355 0.0753549 -0.0185519 +-0.0136024 0.0377623 -0.0264268 +-0.055443 0.13396 0.033868 +-0.0329956 0.122915 -0.00595413 +-0.0659107 0.120913 -0.00886784 +-0.00952503 0.0920885 -0.0357277 +-0.0437604 0.036567 -0.0252782 +-0.020729 0.181491 -0.0220031 +0.00793492 0.130935 0.0197362 +-0.00287417 0.10736 -0.0221559 +-0.0531678 0.0503031 -0.00638771 +-0.0649059 0.116607 -0.0100071 +0.0311853 0.0491232 0.0343139 +-0.0464498 0.034849 -0.0185661 +-0.0448976 0.168579 0.00154181 +0.0324248 0.0752705 -0.0187807 +0.00488488 0.0387234 -0.0100497 +-0.0607447 0.0752603 -0.0176616 +-0.0575406 0.0387439 -0.00960491 +-0.0874426 0.110454 0.0173412 +-0.0517698 0.0516016 0.0312301 +-0.0727656 0.156832 -0.0339136 +0.0123073 0.0638424 -0.0304488 +-0.00866157 0.0541436 -0.0334268 +0.00183737 0.0373069 0.04638 +-0.0298138 0.0344903 0.0411187 +-0.0674167 0.149888 -0.0375972 +-0.0770317 0.088754 0.0382806 +-0.0857815 0.0897033 0.0272482 +-0.0125983 0.037741 -0.0261872 +0.0182378 0.0893522 -0.0266421 +-0.0766704 0.154203 -0.00290271 +-0.0684648 0.0617211 0.0180797 +0.0505111 0.0637895 0.0291551 +-0.0497918 0.143216 0.0113941 +-0.0616227 0.156855 -0.0295846 +0.0290304 0.0968725 0.0421292 +-0.0756542 0.0679921 0.00394259 +-0.0526765 0.0514226 0.0124143 +-0.0625972 0.0348156 0.0215996 +-0.0544966 0.0791235 0.0440855 +-0.0544133 0.159808 0.00694146 +2.76528e-05 0.0391548 -0.0114154 +-0.00549746 0.0503818 0.0516227 +-0.0646199 0.0359342 0.0410351 +0.0410489 0.0445052 0.0289111 +-0.0356376 0.0548341 -0.0105043 +0.0272051 0.0465425 -0.0127095 +-0.0513967 0.161204 -0.00381805 +-0.0424671 0.124776 0.022048 +-0.0300883 0.0335187 -0.027157 +-0.0362553 0.0336801 0.0101688 +0.0513156 0.0588831 -0.00408417 +0.0399488 0.0688733 -0.0097971 +-0.0617146 0.155302 -0.0255819 +-0.0112103 0.129394 0.0199977 +-0.0552256 0.153277 0.0254807 +-0.0697772 0.0409122 0.00855159 +-0.0257631 0.0755055 -0.0369491 +-0.0601959 0.0422699 -0.00706205 +-0.0475933 0.134581 0.0184866 +0.0267481 0.0659374 0.0438828 +-0.0790343 0.0886679 0.0360671 +0.0606094 0.0637127 0.00915317 +-0.0823359 0.140394 0.000222625 +-0.0792589 0.1445 -0.00280742 +0.0288607 0.118772 0.0260462 +-0.000258207 0.0388058 4.93079e-05 +0.0142249 0.0779815 -0.0305449 +0.0279207 0.111816 -0.0105079 +-0.0649061 0.108122 -0.0141961 +0.0372666 0.0547889 -0.00619261 +-0.0258342 0.159627 -0.000620301 +-0.0761165 0.0874143 0.0388159 +0.0425599 0.101502 0.0121632 +0.0533305 0.0723883 0.0073663 +-0.0814882 0.139397 0.0468344 +-0.0119496 0.127575 -0.00116297 +0.0308488 0.116432 0.0267923 +-0.0342458 0.127284 0.0102001 +0.0488271 0.0733963 0.0130056 +-0.017912 0.059765 0.0509406 +0.0133103 0.0753629 0.0544488 +-0.0896061 0.126751 0.00429509 +0.034401 0.0461473 -0.00601616 +-0.0485411 0.166778 0.000587101 +0.0342862 0.0782566 -0.0167489 +-0.00549615 0.0925657 0.0562617 +-0.0700277 0.153659 -0.0489787 +0.00562336 0.034628 0.021452 +-0.0825014 0.0978733 -0.00561152 +-0.0665019 0.0818141 0.0428543 +-0.0628077 0.166262 -0.0415912 +0.0329576 0.0753133 -0.0177979 +0.0159612 0.0887478 0.0513106 +-0.0348521 0.0972102 -0.0229902 +0.00689753 0.13043 0.00224143 +0.0163113 0.0637479 -0.0291811 +-0.0681449 0.144372 -0.0168262 +-0.0709402 0.170831 -0.0510269 +-0.0618586 0.161576 -0.034591 +-0.05709 0.0562779 0.00261705 +-0.0511762 0.163872 0.00329038 +-0.0295002 0.0688631 0.0391758 +-0.0548706 0.0634738 0.0317723 +0.00519565 0.0838361 -0.0338494 +0.0412244 0.0703917 -0.00779979 +-0.0485608 0.164 0.00493162 +0.0405319 0.0913292 0.030651 +-0.0364055 0.0394201 0.0459276 +-0.0885895 0.126718 0.00227148 +-0.00135158 0.0925397 -0.0341169 +-0.0155034 0.0472755 0.0490261 +-0.0533709 0.0334238 -0.0075905 +-0.0135602 0.174221 -0.0197865 +0.0151695 0.0534137 0.0481113 +0.00249824 0.119676 0.0375233 +-0.0574904 0.0847348 0.0442092 +-0.0706266 0.111419 0.0453421 +-0.0498404 0.122243 -0.0112035 +-0.0580787 0.133988 -0.00600022 +-0.0856455 0.0845341 0.000486997 +-0.0677324 0.0847093 0.0432514 +-0.0516192 0.112658 -0.0171697 +-0.0294883 0.101537 0.0426799 +-0.0562967 0.0548357 0.00668262 +-0.0870689 0.0968011 0.00243877 +-0.0809104 0.126584 -0.00546143 +0.0226682 0.115322 0.0347114 +-0.0702279 0.156078 0.0244771 +0.00613975 0.0976727 -0.0254362 +-0.0654107 0.0782591 0.0414837 +0.0154936 0.104462 0.0445958 +-0.0557216 0.125528 0.0387388 +-0.0708946 0.1037 -0.0131771 +0.0207514 0.10232 -0.0203322 +0.040798 0.105646 0.00916422 +-0.0789759 0.136856 -0.00458832 +0.00163159 0.126824 0.0304308 +0.0217692 0.0444645 -0.0177596 +0.00149843 0.0965502 0.0531993 +0.00416774 0.034456 0.0194982 +-0.022279 0.185099 -0.0171819 +-0.0144819 0.0759021 0.0565083 +-0.062395 0.163038 -0.0545883 +0.0386856 0.0757975 -0.0108084 +0.0230618 0.0389706 0.0372995 +-0.0661823 0.154393 0.00121795 +-0.0751879 0.179229 -0.0530087 +-0.000499764 0.0590718 0.0548831 +-0.0616117 0.16 -0.0305904 +-0.0254372 0.0796492 0.0521904 +-0.087722 0.128407 0.0462822 +-0.0361331 0.122312 0.027301 +-0.0259579 0.0383264 -0.00469023 +-0.0615278 0.0399873 -0.00779984 +-0.0911978 0.147452 0.0151543 +-0.0776353 0.15693 -0.0189052 +-0.048662 0.0345502 0.0387985 +0.00500615 0.0390969 0.0281732 +-0.0664605 0.152204 -0.0437352 +-0.0514963 0.157854 0.00954267 +-0.0893902 0.139278 0.0291842 +-0.092072 0.128303 0.0302461 +-0.0166194 0.0421642 -0.027592 +-0.0880283 0.128084 0.00127828 +-0.06275 0.178179 -0.0598124 +-0.0242491 0.0796961 0.0538111 +-0.0575802 0.14965 0.0326026 +-0.0598499 0.0364094 -0.00954648 +0.0260337 0.0639191 -0.0225668 +-0.0215138 0.185205 -0.0184453 +0.00733204 0.0567933 -0.0307054 +-0.0394107 0.125604 0.021627 +-0.0805747 0.154604 0.0238516 +0.0319556 0.0942571 0.0410831 +-0.0503335 0.0345244 0.0401985 +-0.0521615 0.159088 -0.00368491 +-0.0816591 0.0828436 -0.00556986 +0.0120628 0.0346214 0.0245844 +0.00946799 0.112678 0.0395888 +-0.00501719 0.0348021 0.0425449 +-0.080434 0.0763484 0.0258387 +0.0419394 0.0802864 -0.00678235 +-0.0270715 0.179993 -0.0160072 +-0.00929516 0.17029 -0.0258484 +0.028889 0.0549767 0.0398373 +-0.0324184 0.123701 0.0227019 +-0.00768132 0.0976452 -0.0294292 +-0.0534956 0.0478266 0.0400304 +-0.0637998 0.0852745 -0.0191701 +0.0175395 0.0364962 0.0420884 +0.0289699 0.100814 0.0402993 +-0.0384924 0.0478181 0.0398313 +-0.00649796 0.0457161 0.0472731 +0.00861625 0.13122 0.00857267 +-0.0424707 0.0634258 0.0409808 +-0.0147714 0.163994 -0.0109737 +0.0514504 0.0735674 0.0125302 +0.0157166 0.0461353 0.0435597 +-0.0886232 0.152074 0.0182297 +-0.0732612 0.155462 -0.02991 +0.0560042 0.0728404 0.0157211 +-0.0465551 0.0447198 -0.0107805 +-0.020486 0.18455 -0.0138786 +0.00948927 0.0976692 0.0490505 +0.0112322 0.0342419 -0.000927635 +0.0153695 0.0617406 0.0502582 +-0.0137598 0.0382596 0.0196658 +0.0302365 0.0828976 -0.0200496 +-0.00484087 0.0994589 -0.0252596 +-0.0335771 0.177292 -0.00581839 +-0.0706171 0.160991 -0.0459386 +-0.0381352 0.155099 0.00439417 +0.0262713 0.112733 0.0346521 +-0.0288992 0.0377652 0.0242203 +-0.0741081 0.174769 -0.0407073 +0.0312687 0.106096 -0.0123707 +-0.0467828 0.168244 0.000200438 +-0.0544952 0.0440117 0.0450302 +0.00623037 0.129867 0.000104943 +-0.043169 0.163647 -0.0101027 +-0.0034944 0.103046 0.0439357 +-0.0265042 0.106069 -0.02235 +-0.0577843 0.0811473 -0.0206854 +-0.0358177 0.0886369 -0.024178 +-0.0726405 0.148337 -0.0310398 +-0.0454975 0.111194 0.0370842 +-0.0671848 0.0335335 0.00220964 +-0.0117936 0.0667192 0.0544625 +-0.0609674 0.125285 -0.00834926 +-0.080841 0.0760714 -0.00147772 +-0.0522091 0.118697 -0.0134778 +-0.074349 0.162439 -0.0349528 +-0.0740415 0.112641 0.0489542 +-0.0294567 0.0847909 0.044594 +-0.0204364 0.038385 0.0254029 +-0.0497015 0.070866 -0.0150622 +-0.0525829 0.113848 -0.0164008 +-0.0415348 0.163761 0.00444738 +-0.0644934 0.106993 0.039043 +0.0437981 0.0734503 -0.00176783 +-0.0284962 0.0946634 0.0451029 +0.0309795 0.0506032 0.0357766 +-0.0395331 0.128532 0.0067941 +-0.0424235 0.12018 -0.013117 +-0.0197167 0.103079 -0.0233045 +-0.0430994 0.12944 0.0113807 +-0.0913339 0.117411 0.0283055 +0.026348 0.0463448 0.037827 +-0.0406738 0.0606904 -0.0121867 +-0.071511 0.0930107 0.0417462 +-0.0866623 0.0964635 0.0264805 +0.00386952 0.131337 0.0182591 +0.0282305 0.08443 -0.0217055 +0.0128412 0.0347905 0.0282102 +0.00434097 0.053874 -0.0300717 +-0.0754795 0.0704499 0.0266608 +-0.0699695 0.135529 -0.00821968 +-0.0305143 0.0348089 0.0211376 +0.00750189 0.118272 0.0376599 +-0.0504996 0.108397 0.0385655 +-0.0779682 0.135412 -0.00525448 +-0.0273965 0.0380183 0.0261038 +-0.0520915 0.129726 0.0334448 +-0.0221568 0.157426 -0.00647102 +-0.0562219 0.0560519 -0.00142054 +-0.0817829 0.110167 0.0313299 +-0.0502435 0.0335698 -0.00160666 +0.0331444 0.0584441 -0.0147212 +-0.00651273 0.0760152 0.058184 +-0.0285619 0.108073 -0.0204718 +-0.0157027 0.123907 0.0301351 +-0.0175006 0.10024 0.0438179 +-0.0297515 0.154263 -0.00514597 +-0.0475033 0.113884 0.0346438 +-0.0154952 0.087016 0.0568367 +0.0435889 0.0706095 -0.000776861 +-0.0930208 0.116049 0.0173125 +-0.0783399 0.174997 -0.0480125 +-0.0650728 0.117149 0.0481049 +0.0600369 0.0650499 0.00814341 +-0.0678832 0.147765 -0.0303891 +-0.0802136 0.0813857 -0.00655277 +-0.0356852 0.127701 0.00820492 +0.0154871 0.0990335 0.0473819 +-0.019377 0.127678 0.00978651 +-0.0208657 0.123339 0.0268408 +-0.0553906 0.073233 0.0409139 +0.0560337 0.0553031 0.0245952 +-0.0306612 0.0816984 0.0420491 +0.04335 0.0902653 0.0251673 +-0.0137008 0.0599733 -0.0359611 +-0.0535493 0.045819 -0.00734382 +0.0152704 0.07093 -0.0305648 +-0.0706849 0.0819434 0.0406373 +0.0104915 0.114065 0.0387753 +-0.052073 0.150157 -0.00315276 +0.00150908 0.0458287 0.0477014 +-0.00149907 0.122451 0.0357652 +0.0346578 0.114254 0.0196698 +-0.0263079 0.125672 0.00579971 +-0.0662371 0.173912 -0.0594768 +-0.0111949 0.178453 -0.0296295 +-0.039457 0.0403768 -0.0273046 +-0.0321606 0.153429 -0.00535973 +0.0505072 0.0678423 0.0265215 +0.0377143 0.106919 0.0261871 +-0.0717609 0.172825 -0.0369735 +-0.034656 0.0592094 -0.011649 +-0.0237103 0.0348634 0.0507821 +-0.0409865 0.0355803 0.00929737 +0.0240747 0.0915746 0.0472686 +-0.0576816 0.0336048 -0.0104516 +0.034582 0.0563647 0.0357928 +-0.0304985 0.0631621 0.0381216 +-0.0145978 0.0392398 -0.0269855 +-0.0446029 0.130656 0.0108143 +0.0240159 0.124704 0.0156714 +0.00222038 0.0796794 -0.0348837 +-0.029229 0.179986 -0.0130226 +-0.0371614 0.0338798 0.00980443 +-0.0654857 0.101487 0.0416824 +-0.0386286 0.0534191 -0.0107521 +-0.0743388 0.0659419 0.0131754 +-0.0775178 0.172972 -0.0399134 +-0.0704983 0.0999903 0.0403231 +-0.0754673 0.153642 0.0315487 +-0.0567915 0.158113 0.00751453 +-0.0733158 0.165215 -0.0409863 +-0.0878452 0.096803 0.00445868 +0.02849 0.120167 0.00308975 +-0.0866911 0.107697 0.0133542 +-0.0422556 0.127428 -0.00269381 +-0.0684868 0.135467 0.0467048 +-0.0187173 0.108826 -0.0212527 +-0.0109134 0.038586 0.0018115 +-0.0689089 0.106601 -0.012938 +0.00232768 0.0597693 -0.0328325 +-0.0759088 0.150426 0.0375079 +-0.0642836 0.175364 -0.0612207 +-0.0626162 0.142488 0.0376248 +-0.0388973 0.150052 -0.00339157 +0.0187974 0.0398349 -0.0187285 +0.0404333 0.0725805 0.0320798 +-0.0863763 0.0991625 0.0261078 +0.0544186 0.0725633 0.0195702 +-0.076294 0.155585 0.0106948 +-0.0611522 0.045903 0.0393286 +-0.0167746 0.0756989 -0.0389455 +-0.0578115 0.0619893 0.0271205 +-0.0127071 0.179586 -0.0289228 +-0.0568431 0.0926948 -0.0216401 +-0.0900812 0.150215 0.0221142 +0.0222403 0.0416489 -0.00972259 +-0.0504069 0.135839 0.0247969 +-0.0304966 0.0545819 0.0366047 +-0.0103146 0.180354 -0.0288775 +0.0320122 0.117952 0.0129635 +0.0440424 0.0496996 0.0318585 +0.0393181 0.0603877 -0.00577734 +-0.071953 0.16101 -0.0409434 +-0.0437665 0.168716 0.00196199 +-0.0498819 0.105595 -0.0195612 +0.0217639 0.0458254 -0.0188683 +-0.0921421 0.116123 0.0383102 +-0.0636791 0.157483 -0.0138656 +0.0266706 0.04428 -0.00700704 +0.0433132 0.0818321 0.0274518 +-0.0580456 0.0494852 0.00468232 +-0.0735836 0.159386 -0.00731186 +-0.0544231 0.0344532 0.039385 +-0.00150237 0.089761 0.0564112 +0.015933 0.126357 0.0269718 +-0.0425015 0.0719333 0.0422422 +-0.0589488 0.147198 -0.00200697 +-0.087209 0.0941073 0.00444199 +-0.0120214 0.178126 -0.0292101 +-0.0835465 0.101952 0.0288636 +0.041496 0.0555737 0.0320634 +-0.0025007 0.0675576 0.0566246 +-0.0756877 0.15767 -0.00739081 +-0.0105023 0.0829243 0.0578427 +-0.00627368 0.128136 0.0276028 +-0.0404708 0.109814 0.0374017 +-0.00378356 0.130498 0.0212315 +0.0580765 0.0566038 0.0222343 +-0.0853725 0.111782 0.0273822 +0.0428559 0.0972978 0.0221679 +0.00122739 0.121444 0.0362285 +-0.0274798 0.0446461 0.0507675 +-0.0304832 0.12104 0.0263992 +-0.0371379 0.127502 0.0150528 +-0.0778671 0.177131 -0.0494084 +-0.0775564 0.166657 -0.0379504 +-0.0605167 0.0386224 -0.00865968 +-0.0171147 0.161213 -0.00734926 +-0.0726687 0.161352 -0.00991102 +0.032766 0.0700345 0.0403232 +-0.0458559 0.10138 -0.0215412 +0.017353 0.0374009 0.0430484 +0.000357196 0.0347559 0.0401008 +-0.0604421 0.0427792 0.0246961 +-0.0440271 0.128143 0.0184429 +0.0423724 0.056151 -0.00596664 +0.00534844 0.0596161 -0.0309806 +0.0320447 0.061134 -0.0177676 +-0.00279591 0.0988433 -0.0266823 +0.0289846 0.0664902 -0.0199255 +0.000300027 0.0360761 0.019065 +-0.0250833 0.0379957 0.0175874 +0.0345167 0.0754586 -0.0157294 +0.0153241 0.0623295 -0.0291944 +-0.0609083 0.0612023 0.0236586 +-0.0698972 0.0655268 -0.00153079 +0.00337067 0.115645 -0.0185908 +-0.0315398 0.0589058 0.0377684 +-0.00748372 0.0488969 0.0502433 +-0.0877886 0.0861226 0.0174689 +0.0414464 0.101443 0.020163 +0.0252372 0.0926012 -0.0220221 +-0.0572172 0.0498044 0.00711465 +-0.0384957 0.0719179 0.0419735 +0.0143485 0.0552312 -0.0288146 +-0.0512659 0.0360808 0.0462964 +-0.0880011 0.0941555 0.00641769 +-0.0508873 0.109845 -0.0186279 +-0.0514991 0.112527 0.0359192 +-0.0338144 0.0342727 0.0263277 +-0.0615036 0.0804118 0.0430159 +-0.0663263 0.0606754 0.0176657 +-0.0909825 0.11607 0.0303184 +0.0184707 0.107054 0.0413783 +-0.0243398 0.183957 -0.0138554 +-0.0158705 0.161111 -0.00904539 +-0.0335094 0.0647262 0.0398847 +-0.0782927 0.098997 -0.00960155 +0.0486963 0.0730972 0.0159514 +-0.0478872 0.0335336 -0.00475407 +-0.0154917 0.0883884 0.056678 +-0.077344 0.119067 0.051823 +-0.0560293 0.0674866 0.0368481 +-0.0635813 0.138158 0.0379352 +-0.0217661 0.0670215 -0.0366181 +0.0483442 0.0575601 -0.00531363 +-0.0237817 0.0727523 -0.0377511 +0.0443603 0.0490341 -0.0052894 +-0.0604973 0.0904382 0.0452731 +-0.0627563 0.152415 -0.0301468 +-0.0714195 0.067071 -0.00151156 +-0.0861662 0.147397 0.00721409 +0.011631 0.0474937 0.0464252 +0.0254946 0.0406248 0.0343049 +0.035443 0.111045 0.0256623 +-0.000588677 0.037658 -0.0249499 +-0.0388448 0.0971399 -0.0223049 +-0.0660244 0.166553 -0.0262486 +-0.048499 0.0848032 0.0451307 +0.0371019 0.111384 0.0119604 +-0.00927598 0.177254 -0.0287785 +-0.0389846 0.1533 -0.00797514 +-0.0351198 0.0484277 -0.0173281 +-0.00353807 0.0389271 0.0301841 +0.0132013 0.0864568 -0.0307211 +-0.0390625 0.110364 -0.0188163 +0.033372 0.106071 0.0326127 +-0.0831505 0.0857608 0.0304017 +0.0552187 0.0635647 0.027041 +0.0399168 0.0999289 0.0271558 +-0.0579697 0.0339719 0.0233097 +-0.0137397 0.178677 -0.0217984 +-0.0203244 0.0385446 0.0306811 +0.00122549 0.0359125 0.00298025 +0.0117447 0.0343946 -0.0103375 +-0.0913959 0.132306 0.0102259 +-0.0429194 0.0898997 -0.0223492 +-0.0511515 0.0337361 -0.0129379 +-0.0750027 0.155319 0.00677634 +-0.0771027 0.0689891 0.00817725 +-0.0353224 0.0340121 0.0244595 +-0.0291276 0.0386567 -0.0130433 +0.0303577 0.105377 -0.0136057 +0.0235082 0.12516 0.0112114 +-0.00249775 0.0787967 0.0582683 +0.0533686 0.0732758 0.0102917 +-0.0586915 0.0472669 0.00864036 +0.0328626 0.0738919 -0.0178203 +-0.017795 0.038392 0.00241319 +-0.044502 0.0478297 0.0399289 +-0.0747378 0.0687745 0.000531905 +0.0172248 0.12732 0.0217261 +0.0428517 0.0885116 0.026874 +-0.078089 0.159705 -0.0229182 +-0.00858725 0.0362397 -0.025275 +-0.0867205 0.102198 0.00542391 +-0.0926774 0.131034 0.0232376 +0.0167938 0.128074 0.00445644 +0.0541315 0.0553714 0.0271399 +-0.000925431 0.131188 0.0179397 +0.0288719 0.121048 0.0132077 +-0.00849451 0.0965679 0.0534544 +0.0226575 0.102902 -0.0189538 +-0.0787984 0.113337 -0.0032043 +-0.0099585 0.1135 -0.0182227 +-0.0282274 0.162443 -0.0041123 +-0.082525 0.0896742 -0.00660526 +-0.0477053 0.0708612 -0.0154107 +-0.0435026 0.0465062 0.0407289 +0.00126756 0.0669175 -0.0339113 +-0.0341799 0.0335887 -0.0224091 +-0.0623664 0.0443972 0.0296888 +-0.0374964 0.0676867 0.0416821 +0.00859545 0.0382141 0.0296981 +0.0458872 0.0834155 0.0151706 +-0.0908205 0.132399 0.0292201 +-0.0191683 0.0336751 -0.0214022 +-0.0140554 0.126614 -0.00210251 +-0.0260065 0.0335246 -0.026366 +0.0324259 0.0399358 -0.00240332 +-0.0296544 0.0346993 -0.0301222 +-0.0669615 0.129698 -0.00899609 +-0.0471845 0.0383965 -0.0142868 +-0.0572808 0.0345537 0.0438127 +-0.0627957 0.153425 0.0330074 +-0.0515105 0.13416 -0.00180112 +-0.0434907 0.171345 -0.00503558 +-0.0677742 0.0808646 -0.0174732 +0.00350312 0.0441648 0.0458711 +0.0291321 0.0686302 0.0420784 +0.0132792 0.0343795 0.0214237 +-0.0866978 0.12169 0.0483599 +-0.00350013 0.0801522 0.057807 +0.0371657 0.0997172 -0.00981258 +-0.0447383 0.0738987 -0.0178782 +-0.0605228 0.155495 0.0235493 +-0.0362392 0.151744 -0.00510561 +0.0454797 0.0637982 0.0288243 +-0.0672083 0.0609402 0.0172424 +0.0241031 0.0782197 0.0489777 +0.0442629 0.0672699 0.000591455 +-0.0289948 0.0522303 -0.0223864 +-0.0645013 0.0774777 0.0413253 +0.0444938 0.0959562 0.00517859 +-0.00459579 0.039143 -0.025596 +0.0184671 0.0913654 0.0479185 +0.0146407 0.129582 0.00935921 +-0.0505573 0.0439128 0.0441317 +-0.0141262 0.119616 -0.0126879 +-0.0849191 0.117035 0.0482987 +0.0280536 0.119554 5.13011e-05 +-0.0247655 0.0712486 -0.0365856 +0.0034971 0.091096 0.055256 +-0.0641848 0.0432086 0.0316934 +-0.0881185 0.151555 0.0230923 +-0.0680885 0.16093 -0.05501 +0.0474345 0.0682488 0.00159582 +0.0111403 0.105858 -0.0199086 +-0.0369545 0.0349347 0.0427177 +-0.0604782 0.144516 -0.00363507 +-0.0394712 0.08608 0.0435352 +-0.0548214 0.143869 0.0295389 +-0.028506 0.107069 0.0398546 +0.0281659 0.121502 0.0158045 +-0.0797197 0.143117 -0.0027917 +-0.0616803 0.166235 -0.0555923 +-0.0204271 0.0893191 -0.0369723 +0.0361287 0.085855 -0.0169039 +-0.00251199 0.107268 0.0437857 +-0.0114962 0.0842854 0.0575311 +-0.0738001 0.0651206 0.00865838 +-0.0114808 0.0353662 -0.0177045 +0.0391473 0.0421646 0.0269754 +-0.0565891 0.129759 0.0374849 +-0.0720408 0.171996 -0.0342175 +-0.0139288 0.0883705 -0.0380287 +-0.0562656 0.0335637 0.0133743 +-0.0196985 0.0957936 -0.0295783 +-0.00486881 0.104509 -0.0228932 +-0.0550525 0.129598 -0.0055846 +-0.0584858 0.0776493 0.0431837 +-0.0898534 0.121302 0.00430136 +-0.0191218 0.165312 -0.0179178 +-0.0249563 0.0383168 0.00102848 +-0.0199274 0.0958752 0.0490354 +-0.0574825 0.113918 0.0359516 +-0.00850157 0.101663 0.0440465 +-0.0873724 0.124348 0.0475064 +0.00764213 0.03621 -0.0128239 +-0.0264494 0.0648769 0.0395324 +0.0541546 0.0547912 -0.000791322 +-0.0434926 0.0789866 0.0425224 +0.0241906 0.121901 0.0271611 +-0.0866809 0.0819772 0.0124969 +-0.0717212 0.0344863 0.00580157 +0.0302841 0.11623 -0.00325108 +-0.0737112 0.155478 -0.0269075 +-0.0424683 0.108486 0.0389261 +0.0176716 0.0658898 0.0500991 +0.0494857 0.064014 -0.00214923 +-0.0514961 0.0945888 0.044111 +0.0340749 0.0901032 -0.0173771 +-0.0719584 0.0942006 0.0415089 +-0.0544894 0.0594391 0.0238452 +-0.0877192 0.101 0.0223776 +-0.0758319 0.173116 -0.0385323 +-0.0114857 0.119632 0.0369891 +-0.0313874 0.0581183 -0.0163942 +-0.0157652 0.0728861 -0.0388826 +0.0167046 0.0945555 -0.0241181 +-0.000498244 0.0647983 0.0567029 +0.0256473 0.0420743 0.0363142 +-0.0630437 0.12273 0.0457647 +-0.0540131 0.144678 0.0264098 +0.0135054 0.10711 0.0421551 +-0.00428335 0.124198 -0.00969837 +0.0415325 0.0816649 -0.00777347 +-0.0392229 0.0337594 -0.0179786 +0.0593141 0.0691549 0.00914325 +-0.0219522 0.0382139 0.00717586 +0.0288925 0.112764 0.0331675 +-0.0524014 0.152599 0.0134601 +-0.0628726 0.147915 -0.0152353 +-0.030456 0.158107 0.0014598 +0.0308953 0.0400111 0.0272142 +-0.0757616 0.109947 0.0435791 +0.0253341 0.0591059 -0.0237971 +-0.0261555 0.155801 -0.00568703 +-0.0679463 0.128236 -0.00906158 +-0.0156387 0.0377596 -0.0169892 +-0.0757064 0.112028 0.0472849 +-0.0155135 0.0631057 0.0533345 +-0.0512066 0.125627 -0.00670494 +-0.0896222 0.111892 0.015334 +-0.0493777 0.160927 -0.00574679 +-0.0630274 0.166296 -0.040584 +0.058244 0.0580344 0.0225642 +0.0413547 0.102812 0.0011821 +-0.0162922 0.125122 0.0270033 +0.02338 0.0632213 0.0460213 +0.0609114 0.0623534 0.0131596 +-0.0691061 0.164802 -0.0173282 +-0.0870447 0.0977755 0.0254107 +-0.00849378 0.112803 0.0415796 +0.0145027 0.115416 0.0371643 +-0.0184257 0.066889 0.0526426 +-0.0448982 0.123992 0.0241166 +-0.050497 0.0903958 0.0446608 +-0.0315626 0.0348573 0.0456798 +-0.0684915 0.0902546 0.0428415 +-0.0180785 0.0337977 -0.021304 +0.0043349 0.0389929 -0.00853324 +-0.0830349 0.153941 0.0230111 +-0.0800798 0.103192 -0.0065999 +0.0437731 0.0973301 0.016155 +0.00944321 0.131132 0.0160037 +-0.0514165 0.0627417 0.0327301 +-0.0528926 0.154865 0.0118243 +0.0187407 0.0740964 0.0517477 +-0.0721682 0.0657282 0.00147121 +0.00959045 0.131031 0.00893055 +-0.0694847 0.181423 -0.0563964 +-0.0569551 0.11454 -0.0150747 +-0.0821005 0.0885236 0.0320901 +-0.0174725 0.0383553 0.00432532 +-0.00258809 0.0348892 -0.0237423 +0.0413648 0.0939401 0.0283252 +-0.00375638 0.13079 0.0183493 +-0.0686466 0.0719376 -0.0111307 +-0.0688202 0.180176 -0.0531787 +-0.0397209 0.0710215 -0.0169451 +0.0184831 0.105752 0.0426872 +0.00809551 0.112572 -0.0192987 +0.0206432 0.121117 -0.00652883 +-0.0718516 0.0979698 -0.0147575 +-0.0662716 0.170413 -0.0392349 +0.0237477 0.0605032 -0.0251433 +-0.0340875 0.177472 -0.00744261 +-0.0167857 0.0784752 -0.0385587 +-0.0565291 0.0373798 -0.0104777 +0.00297843 0.0341587 0.014086 +-0.0667756 0.124253 0.0509201 +-0.026364 0.0359692 -0.029405 +-0.0550408 0.0334649 -0.000671931 +-0.0697701 0.0874139 0.0423816 +0.0246944 0.0835826 0.0481083 +0.0199488 0.115322 0.0360728 +0.0383916 0.042968 -0.00337479 +-0.0365829 0.0335193 -0.0246869 +-0.0355007 0.112502 0.0349387 +-0.0689238 0.125301 -0.00884615 +0.0395927 0.0385536 0.0157178 +-0.0889313 0.0875027 0.0114635 +0.0448665 0.0945715 0.00517989 +-0.0477042 0.0664777 -0.0141832 +-0.0434727 0.125255 -0.0084227 +-0.0166904 0.169787 -0.0155577 +-0.0134983 0.0501789 0.0495792 +-0.0624968 0.0833205 0.0441176 +-0.0342132 0.0345231 0.0384015 +0.043295 0.084533 0.027498 +-0.0819819 0.112797 -0.000848269 +0.0121624 0.129948 0.0198557 +-0.0674677 0.10143 0.0408399 +-0.0626754 0.059895 0.0191264 +-0.0367892 0.0459324 0.0404864 +-0.027194 0.0764697 0.0455544 +-0.0824053 0.0748814 0.00852871 +-0.0656294 0.0642362 -0.0044412 +0.032725 0.116988 0.0160848 +-0.0764226 0.102162 0.0358668 +0.00148048 0.0952613 0.0542408 +0.0228866 0.122341 0.0280976 +-0.0584486 0.139576 0.0330542 +-0.0402835 0.123242 -0.0103332 +-0.012241 0.0406566 0.0504983 +-0.0489426 0.0614374 0.0351759 +-0.0844851 0.0778045 0.00951927 +-0.0369817 0.156591 0.00432745 +-0.0882804 0.103688 0.0163664 +-0.0258065 0.0825691 -0.0373737 +-0.0355052 0.102861 0.0407303 +-0.0524183 0.131115 0.0329855 +-0.0227031 0.175691 -0.0136597 +0.050697 0.0684106 0.00144017 +0.000504835 0.0911354 0.0558722 +0.00231832 0.0583343 -0.0324165 +-0.0148886 0.169807 -0.0164639 +-0.0722033 0.152534 -0.0417656 +-0.0134817 0.073078 0.0557755 +-0.0255231 0.109882 0.0391184 +-0.0655581 0.135384 0.0421104 +-0.024745 0.0698061 -0.0360534 +0.0559546 0.0524347 0.0227151 +-0.0283257 0.118773 -0.011655 +-0.0335185 0.0974234 0.0440535 +-0.0817699 0.0748179 0.0155353 +-0.027189 0.162441 -0.00437298 +-0.0267454 0.0711222 -0.0350441 +-0.03015 0.171175 -0.0170282 +-0.026605 0.06607 0.0397555 +-0.074698 0.179765 -0.0510072 +0.0143367 0.0504741 0.0468665 +-0.0594975 0.111137 0.0367915 +-0.0346758 0.127158 0.0144691 +-0.0465015 0.0847604 0.0446321 +0.00381747 0.0354686 0.0455691 +0.0172732 0.0792708 -0.0288683 +0.0323738 0.104756 0.0346971 +-0.0794458 0.0813481 -0.00752304 +-0.0312226 0.0367355 -0.0304453 +-0.0110616 0.168437 -0.0238044 +-0.0579369 0.119806 -0.0105246 +-0.0337394 0.0355643 0.0323212 +0.0312129 0.0525777 -0.012761 +-0.0346988 0.120729 -0.0096591 +-0.0388776 0.0364147 0.043017 +-0.0271127 0.16377 -0.0158754 +-0.0114338 0.0347606 0.0448027 +-0.0897559 0.114544 0.00631807 +0.0408171 0.04213 0.0255289 +-0.0648854 0.102482 -0.0170908 +-0.0137359 0.061178 0.0537969 +-0.00359581 0.130946 0.00835725 +0.0439346 0.0959403 0.0181595 +-0.0194977 0.104404 0.0429832 +-0.0691323 0.0776098 0.0394254 +-0.00248627 0.097432 -0.0292057 +0.00445885 0.0387258 0.0265895 +0.0492859 0.0567642 0.0307116 +-0.077476 0.164468 -0.0240677 +-0.0666867 0.175728 -0.049503 +-0.0251661 0.0664206 0.0424455 +-0.027701 0.0549269 0.0368456 +-0.018943 0.164042 -0.0169159 +-0.0435133 0.0846552 0.0431729 +-0.0888345 0.136443 0.0400961 +0.00149473 0.112812 0.0419217 +-0.0298299 0.09304 -0.0247313 +-0.0836967 0.0790161 0.00252063 +-0.000924151 0.039273 -0.0117161 +-0.0567677 0.0811908 -0.0210238 +-0.0934681 0.120116 0.0253121 +-0.0429479 0.170625 -0.000616016 +-0.075975 0.156283 -0.00563956 +-0.00861288 0.0384077 0.0151551 +-0.00160584 0.0434015 -0.0251635 +-0.00451637 0.113738 -0.0185133 +-0.0780673 0.0690482 0.0132523 +-0.0237986 0.0784163 -0.0381462 +0.0404558 0.0643575 0.0302495 +0.00150103 0.0576486 0.0543674 +-0.0314973 0.0746234 0.0406619 +-0.0430409 0.0337266 -0.000289053 +-0.0303409 0.0462461 0.0481864 +0.0215433 0.04083 0.0414017 +-0.0328294 0.0901297 -0.0245803 +-0.0654933 0.0370192 -0.00733845 +-0.0128512 0.129269 0.0078276 +-0.0102634 0.129467 0.00444971 +-0.0525768 0.0530264 -0.00686565 +0.0152424 0.0737083 -0.0300265 +-0.0523202 0.0474101 0.0149978 +-0.03228 0.059616 -0.0144015 +0.0262796 0.0733084 -0.0244949 +-0.091934 0.128302 0.0312437 +-0.0556539 0.153362 0.0267778 +0.00449629 0.118272 0.0381357 +-0.00902947 0.129018 0.00125187 +-0.00169837 0.0391357 -0.00987107 +0.0277845 0.0849076 0.045525 +-0.0241779 0.1712 -0.0197595 +0.0450874 0.0847681 0.0221666 +-0.0251342 0.0878826 0.0516343 +0.00641806 0.0347537 -0.00236123 +-0.0411191 0.111396 -0.0179091 +0.027653 0.0506012 0.0379885 +0.0219297 0.123716 0.0263137 +-0.0688294 0.148429 -0.0341374 +-0.0315292 0.124197 -0.00202254 +0.00150698 0.0801002 0.0571866 +-0.0615835 0.0366556 0.0444374 +-0.0481389 0.160609 -0.00688834 +-0.0254054 0.0766649 0.0494071 +-0.0774728 0.155537 -0.0149084 +-0.0401214 0.159176 -0.0112287 +0.0596647 0.0691741 0.016158 +-0.011487 0.110004 0.0424075 +-0.0381186 0.128235 0.00584498 +0.048576 0.0464424 0.0249843 +-0.0923754 0.118793 0.0312942 +-0.0639323 0.123848 -0.00887264 +-0.0798905 0.126603 -0.00582167 +-0.0413231 0.0462396 -0.0163116 +-0.0908165 0.145736 0.0263481 +0.0446156 0.0959646 0.00916087 +-0.0821218 0.075868 0.0188618 +0.05068 0.0673838 0.000483718 +-0.0501479 0.0515412 0.017644 +-0.00617289 0.130741 0.0117189 +-0.051836 0.0956238 -0.0221428 +-0.074878 0.122304 -0.00772392 +-0.00159817 0.0419657 -0.0250292 +-0.0474982 0.162268 0.00647513 +-0.0331161 0.0498057 0.0395103 +0.00234342 0.0510926 -0.0302041 +-0.0851404 0.125756 0.0494653 +-0.0699016 0.160977 -0.0489386 +-0.0798846 0.0706301 0.0125498 +-0.0697873 0.0819627 0.0411407 +-0.0547576 0.161266 0.00105716 +-0.0895055 0.0902528 0.0184453 +-0.0261075 0.162258 -0.0150297 +0.046501 0.0611194 0.0308227 +0.0238707 0.0929061 0.0469915 +-0.0533713 0.0334322 -0.00211203 +0.0417012 0.085878 -0.00880084 +0.0288139 0.110493 -0.0110929 +-0.083716 0.087071 0.0295098 +-0.0798758 0.155212 0.019678 +0.0049172 0.0339971 0.00916661 +0.0160048 0.0590435 0.0493667 +0.0573849 0.0699459 0.0206376 +0.0345802 0.103262 -0.0113359 +-0.0797481 0.0789376 0.0314228 +-0.0346581 0.0340056 0.0228095 +-0.0631272 0.0656833 0.0316274 +-0.0145321 0.0459268 0.0498594 +-0.0364091 0.0339112 -0.0194195 +0.0181222 0.116444 -0.0134944 +0.0341932 0.113962 0.0237708 +-0.0761778 0.148614 -0.0108668 +-0.0044937 0.0473352 0.0489501 +-0.0328741 0.0807299 -0.0285171 +-0.0724981 0.121807 0.0536688 +-0.0657234 0.153927 0.0319321 +-0.0548973 0.112625 -0.01673 +0.0464212 0.0764513 0.00819032 +0.0272261 0.0451183 -0.00768323 +-0.0629092 0.156144 0.021238 +-0.0631603 0.151216 -0.00238889 +-0.0347632 0.076687 -0.0214942 +-0.0906385 0.147509 0.0131579 +-0.0122779 0.122169 -0.00937841 +-0.0588974 0.156171 0.00210438 +-0.0123378 0.123047 -0.00831897 +-0.0496312 0.0590927 -0.0108209 +-0.0409256 0.153594 0.00561766 +-0.0405007 0.0860467 0.0431081 +0.0445131 0.0735224 0.0237705 +-0.0213844 0.123724 -0.0049697 +-0.0633941 0.159891 -0.0485891 +0.0364077 0.044553 -0.00488844 +-0.0739928 0.155924 0.011504 +-0.0111043 0.0366055 0.0502176 +0.03375 0.0929319 0.0401542 +-0.00645978 0.0918654 -0.0354548 +-0.0827096 0.131285 0.0511192 +-0.0835459 0.133987 0.0490485 +-0.0294951 0.0617035 0.0376524 +-0.0493817 0.138599 0.0163919 +-0.055623 0.120216 -0.0109924 +-0.00449347 0.121049 0.0367461 +-0.048904 0.144756 0.0084067 +0.00645901 0.0392685 0.0301228 +-0.0913214 0.114759 0.0373166 +-0.0265805 0.0377426 0.0157053 +-0.00572231 0.0669806 -0.0352658 +-0.0525421 0.050441 0.0296546 +0.0313831 0.11825 0.0184294 +-0.0288441 0.0958675 -0.0242091 +-0.0149484 0.177196 -0.0200335 +0.0230906 0.0973761 -0.0211755 +-0.0134888 0.11412 0.0398002 +-0.0652337 0.169622 -0.0599681 +-0.069106 0.161031 -0.0101008 +-0.0147444 0.0700214 -0.0382575 +0.000412578 0.0376462 -0.0248548 +-0.0694764 0.165214 -0.0509787 +-0.0817245 0.100671 0.0313188 +-0.0464909 0.0704463 0.0410366 +-0.0604958 0.0890419 0.0453253 +-0.0356646 0.155102 0.0026804 +0.0313895 0.0549645 0.0381834 +-0.0390844 0.149487 -0.000628748 +-0.0799141 0.109193 0.0343277 +-0.033406 0.159477 0.0024166 +0.0461298 0.0806288 0.00519237 +-0.00455042 0.0384226 0.0105194 +0.054633 0.0708998 0.00492223 +0.0466692 0.0754291 0.0122452 +-0.0510158 0.118895 -0.0136999 +0.0442088 0.0931449 0.0211603 +-0.026052 0.036748 0.0540507 +-0.0121151 0.0568039 0.0522997 +-0.0605217 0.0372227 -0.00906293 +-0.0505374 0.138563 0.00240881 +-0.0499851 0.135487 0.00142097 +0.0375229 0.0590309 0.0330268 +0.00350924 0.0842701 0.0573364 +0.0132839 0.0652538 -0.0302637 +-0.0742776 0.161639 -0.0118948 +-0.0507685 0.164108 -0.00292996 +-0.0198709 0.104468 -0.0228058 +0.0376047 0.0616532 -0.0107499 +-0.0773811 0.108845 0.0387481 +0.0226208 0.102094 0.0434114 +-0.0882171 0.135133 0.0423395 +-0.0506614 0.0515945 0.0196285 +-0.0603044 0.155837 0.0105687 +-0.0124866 0.11001 0.0423152 +0.02167 0.125998 0.00768374 +0.0323984 0.0396183 0.0260504 +-0.0709343 0.126767 -0.00893718 +-0.0135132 0.116917 0.0382221 +-0.0116656 0.051126 -0.0319435 +-0.0309822 0.125744 0.00553845 +0.0459345 0.0862193 0.0101703 +0.00749696 0.119642 0.0368719 +-0.00350244 0.107276 0.0438161 +-0.0521339 0.128852 -0.00413976 +-0.0786185 0.152695 0.0319953 +0.0163345 0.0781449 0.0535802 +0.0377538 0.0771288 -0.0117747 +-0.0215296 0.0387791 0.0338148 +-0.0350693 0.0384092 -0.00660408 +-0.0919891 0.124178 0.0422069 +-0.0444587 0.11222 -0.0167423 +-0.0171725 0.0985232 -0.0244048 +-0.057494 0.112512 0.0360215 +0.0396241 0.0900718 0.0328369 +-0.0621913 0.163125 -0.0405922 +-0.0255449 0.0384207 -0.00839698 +0.0162606 0.0736784 -0.0295549 +-0.0663455 0.040996 0.0121932 +-0.0292314 0.114996 -0.0157151 +0.0252254 0.095572 0.0454222 +0.00388853 0.130454 0.00153712 +-0.0454814 0.0335414 -0.0134702 +-0.08387 0.148679 0.0348187 +-0.0174749 0.184587 -0.0183292 +0.0188962 0.0370007 -0.0126843 +-0.0625159 0.163122 -0.0305925 +-0.0433987 0.03363 -0.0131325 +0.0291629 0.037982 0.025034 +0.0129127 0.129715 0.00445998 +0.0182606 0.0778122 -0.0281935 +-0.0476906 0.0356242 -0.0142735 +-0.0190478 0.0404047 0.0529202 +-0.00364871 0.0982082 -0.0280452 +-0.0195235 0.184467 -0.0220738 +0.00382729 0.106411 -0.0207174 +0.00350781 0.064793 0.0565955 +-0.0205171 0.0383642 -0.00178242 +0.0122268 0.0836141 -0.0306261 +-0.0444606 0.147723 0.0056898 +-0.0869664 0.148754 0.00824898 +-0.0689807 0.155012 0.0293114 +0.0302795 0.0795477 0.0438394 +-0.0660235 0.174935 -0.0492702 +-0.0804891 0.133061 0.0515278 +-0.0447252 0.109884 -0.0183457 +-0.0902839 0.137831 0.0151959 +-0.0702292 0.153353 0.0333614 +-0.0915979 0.146114 0.0211525 +-0.0905232 0.122929 0.0450175 +0.00448177 0.0951431 0.0532987 +-0.0234909 0.120747 0.0300444 +0.0274801 0.0445395 -0.0065618 +-0.091814 0.116108 0.0403567 +-0.0537253 0.151161 0.0246275 +-0.0205455 0.126353 0.00242085 +-0.00205946 0.129266 -0.00113907 +0.00252933 0.0758769 0.0564116 +0.00824452 0.129671 0.000311795 +-0.000397685 0.0923281 -0.0338988 +-0.0559448 0.126938 0.0384169 +-0.0428369 0.0942645 -0.0226678 +-0.0598806 0.105454 -0.017999 +-0.0837054 0.10067 -0.00361944 +-0.0545817 0.152467 0.0257328 +0.0103827 0.0365006 0.0297934 +-0.0898089 0.133793 0.0332137 +-0.0618767 0.15376 -0.0175826 +-0.0665983 0.155819 0.0112334 +-0.0454977 0.108441 0.0393231 +0.000688563 0.105475 -0.0216898 +0.0156183 0.0348875 0.0323047 +0.0598096 0.0622539 0.00613597 +0.0222628 0.0359732 0.0163557 +-0.0492522 0.165358 0.00274428 +-0.018422 0.0583296 0.0500808 +-0.0233794 0.126748 0.0127038 +-0.0635915 0.172518 -0.0506017 +0.000120368 0.0351316 0.0162576 +-0.0286059 0.0564269 -0.0233938 +0.0373643 0.110979 0.0106211 +-0.0143444 0.162546 -0.0104323 +0.0174821 0.10039 0.0467276 +0.00834248 0.0609508 -0.0305126 +-0.0650557 0.129761 0.0446036 +0.0584157 0.0647883 0.022872 +0.0450662 0.0889731 0.0191643 +-0.0554099 0.0334223 -0.00251784 +-0.00144558 0.106667 0.0437112 +-0.0626402 0.0627915 -0.00434322 +-0.0406608 0.0335117 -0.0254825 +-0.0621215 0.15372 -0.0285871 +-0.0304827 0.0538056 -0.016375 +0.0276877 0.0607373 -0.0218456 +-0.0332153 0.107417 -0.0197253 +-0.0709666 0.138448 -0.00754922 +-0.0554983 0.0973521 0.0432389 +0.0051585 0.127708 0.0288034 +-0.0497318 0.0354763 -0.0126201 +-0.0713898 0.160567 -0.00801414 +-0.0135985 0.108507 -0.0209218 +-0.0701499 0.0695315 0.0320822 +-0.0618453 0.155287 -0.0285878 +-0.0774937 0.145636 0.0432119 +-0.0499442 0.140127 0.0163925 +-0.0622517 0.147555 -0.00557481 +0.0112895 0.0624411 -0.0303571 +-0.054281 0.0573695 -0.00641449 +-0.0468263 0.128888 -6.3255e-05 +0.0167125 0.0343686 0.00192575 +0.025374 0.0938744 -0.0213667 +0.0374202 0.110869 0.0135214 +-0.0202897 0.0381028 0.016664 +0.0122214 0.13032 0.0170232 +-0.0424979 0.0817557 0.0420871 +0.0247834 0.123596 0.021665 +0.0458295 0.0890233 0.00817039 +-0.0246722 0.05361 -0.0281576 +-0.0368219 0.0900544 -0.0239252 +-0.0331266 0.0338175 0.0106794 +-0.0863242 0.111849 0.0243217 +-0.0881544 0.121251 0.000301062 +-0.0639205 0.112438 -0.0133308 +0.00114374 0.101639 -0.0226194 +0.0117494 0.0671858 0.0538619 +-0.0177987 0.0336176 -0.0248428 +0.0384483 0.10837 0.0201721 +-0.0895436 0.0902218 0.014448 +-0.0441053 0.129054 0.00361434 +-0.0447524 0.033564 -0.0207541 +-0.040486 0.0346908 0.0404235 +0.0158804 0.124131 -0.00578699 +-0.0301445 0.169695 -0.0171502 +-0.0906194 0.139243 0.0211829 +-0.0653253 0.142516 0.0407395 +-0.0320761 0.0447291 -0.0281131 +-0.0764158 0.0699842 0.0233785 +-0.0254497 0.052221 0.0403383 +0.0262523 0.076131 -0.0243472 +-0.0174971 0.101623 0.0437353 +0.00533357 0.055349 -0.0305496 +-0.0493266 0.134948 0.0237381 +0.0053984 0.122421 -0.0118951 +0.038604 0.108395 0.0191762 +-0.0638345 0.0431637 0.0378429 +-0.0748055 0.0863518 -0.0148055 +0.0157558 0.127182 0.025475 +0.0337414 0.0384723 -6.48206e-05 +-0.0564853 0.0791423 0.0441771 +0.0234983 0.102092 0.0429315 +-0.00524932 0.101176 -0.023207 +-0.0804177 0.153092 0.00488677 +-0.0764988 0.13725 0.0499203 +-0.0550791 0.134447 -0.00412579 +0.0139517 0.124505 -0.00617757 +-0.0839821 0.127994 -0.00381712 +-0.0571198 0.115445 0.0365816 +-0.0622396 0.155257 -0.0325976 +-0.0454972 0.0761548 0.042184 +0.0313815 0.0461664 -0.00629419 +-0.0438412 0.0942345 -0.0223045 +-0.0236613 0.0852675 0.0544729 +-0.0616609 0.147135 -0.00399772 +-0.0600825 0.0413306 0.0227014 +-0.0105535 0.180959 -0.0288535 +-0.0676833 0.155656 0.026832 +0.0282931 0.118599 0.0272385 +-0.0871972 0.102223 0.00642609 +0.0103624 0.0494805 -0.028102 +0.0154246 0.0685991 0.0521564 +-0.0416312 0.117641 -0.0144485 +-0.0276264 0.046347 -0.026964 +-0.0916136 0.132311 0.0112256 +0.0178346 0.0505132 0.0449253 +-0.0444935 0.155066 0.00750552 +-0.037487 0.115255 0.0329307 +-0.0185008 0.119534 0.0344711 +-0.052516 0.0452355 0.0436109 +-0.00977222 0.11683 -0.0157853 +-0.0558279 0.0635792 0.0314789 +-0.0607324 0.0592584 0.00571875 +-0.0621725 0.160005 -0.022587 +-0.0603904 0.152423 0.000272984 +-0.0697355 0.134074 0.048407 +-0.0688943 0.103764 -0.0141878 +-0.0871513 0.117629 0.0474896 +0.0463722 0.0764454 0.00719365 +0.0582269 0.0686747 0.0208601 +0.0410646 0.07659 0.0312229 +-0.0298717 0.104385 -0.0225787 +-0.0346365 0.0766699 -0.022492 +-0.0639324 0.147049 -0.0189093 +0.0414492 0.10286 0.0161642 +0.041276 0.104245 0.0131611 +-0.0550666 0.151635 -0.00215779 +-0.0723648 0.0763024 0.0368597 +-0.0166996 0.0540293 -0.0329391 +-0.0108856 0.107334 -0.0222671 +-0.0609787 0.126745 -0.00811044 +-0.0495024 0.109811 0.0380885 +-0.0814376 0.0978185 -0.00662583 +-0.0771326 0.163938 -0.0219397 +-0.0690818 0.18144 -0.0564572 +0.031034 0.0964814 -0.0161287 +0.0445032 0.0555996 0.0323503 +-0.0335401 0.0732865 0.0413362 +0.0315592 0.035603 0.0149292 +-0.0625155 0.0344693 0.0376364 +0.0223706 0.0505198 -0.0231651 +-0.051638 0.0663266 -0.0117848 +0.0132667 0.0519749 0.0488584 +-0.0568732 0.108333 -0.017952 +0.0448639 0.0833492 0.023175 +-0.0316705 0.0806285 -0.0315587 +-0.0714676 0.155482 0.0269686 +0.0118001 0.034659 0.0389456 +-0.0860496 0.128472 0.048867 +-0.0155071 0.175699 -0.0190868 +-0.058019 0.131103 -0.00658932 +0.0113955 0.0434069 -0.0246972 +0.0568205 0.0566796 0.0240006 +-0.0267763 0.0365192 0.0538225 +-0.0564971 0.0987696 0.0431638 +0.0353453 0.0835128 0.0388598 +-0.0602464 0.144668 -0.00329576 +-0.00749863 0.0884246 0.0571361 +-0.0816964 0.0734472 0.00653139 +0.0399806 0.105624 0.0191716 +-0.0676913 0.172275 -0.0570278 +-0.0358314 0.0356542 0.0457978 +0.0503129 0.0516868 -0.00299828 +-0.0414959 0.0705202 0.0419075 +0.0246022 0.0942401 0.0462765 +-0.0735775 0.170801 -0.0470392 +0.0373196 0.105416 -0.00382358 +0.0463401 0.0518943 -0.00540594 +0.0400167 0.0646852 -0.00776271 +-0.0597593 0.07671 -0.0185219 +-0.0237194 0.0639841 -0.033754 +-0.0473867 0.0345201 0.0356021 +0.00159304 0.131118 0.00454966 +-0.073925 0.126728 -0.0084362 +-0.0243269 0.0616478 -0.0324508 +0.0457562 0.0904226 0.00816981 +-0.0688748 0.159133 -0.00709894 +-0.0394914 0.0944889 0.0427101 +-0.0687998 0.0822684 -0.0173873 +-0.0455924 0.119193 -0.014062 +-0.0369476 0.033676 0.00641963 +-0.09079 0.1297 0.0392322 +-0.0389556 0.0350986 0.042208 +-0.0414578 0.107073 0.0393054 +-0.00265934 0.098112 -0.0279111 +-0.0331649 0.0652734 -0.0174782 +-0.0343312 0.0836736 -0.0246034 +0.0134882 0.101805 0.0472084 +-0.0594997 0.0846925 0.0439263 +-0.0423306 0.040657 -0.0232664 +0.0092124 0.114671 -0.0175632 +0.0538026 0.0595499 0.0284925 +-0.0256867 0.0380701 0.0246091 +-0.0693658 0.16286 -0.0130912 +0.0333604 0.037057 0.0194583 +0.00949693 0.121023 0.0358683 +0.0321446 0.0360609 0.0164637 +0.0341544 0.0548861 0.0351403 +-0.000334987 0.0965293 -0.0302242 +0.0585628 0.0673807 0.0213416 +-0.053406 0.12345 -0.00838645 +-0.0749578 0.132548 -0.00734349 +0.0282219 0.0816125 -0.0219304 +-0.0351889 0.171161 -0.0140358 +0.00949153 0.0936876 0.0522363 +-0.0157849 0.172748 -0.017746 +-0.0175848 0.169785 -0.0150947 +-0.0835905 0.112379 0.0452164 +-0.0404862 0.0846544 0.0431896 +0.0231358 0.0404562 0.0392455 +-0.00366205 0.0540631 -0.0322696 +0.00959837 0.0403395 0.0451906 +-0.0692421 0.0422187 0.00798097 +-0.0285258 0.0717501 0.0402231 +-0.00789542 0.108803 -0.0224197 +0.0159009 0.113257 -0.0160529 +-0.00149436 0.0620061 0.056412 +-0.0420891 0.0363826 -0.0272583 +-0.00449341 0.104477 0.0440393 +-0.0683512 0.0607717 0.0117847 +-0.0927055 0.120137 0.0415853 +-0.0484911 0.115278 0.0334198 +0.02514 0.0350088 0.0196342 +-0.065935 0.125307 -0.00885715 +-0.0621483 0.0699034 0.036962 +-0.0178695 0.104461 -0.0227631 +0.0351768 0.0563002 0.0348659 +0.0105044 0.115477 0.0381888 +-0.0938558 0.126876 0.0162567 +-0.0632514 0.033799 0.0117273 +-0.0736013 0.0654333 0.0137843 +-0.0577792 0.0341881 0.0284371 +-0.0763952 0.0838159 -0.0125906 +-0.0296632 0.180174 -0.00867233 +0.00819029 0.0851531 -0.0324575 +-0.071633 0.174549 -0.0412084 +-0.0538265 0.0927341 -0.0220469 +-0.0471905 0.156504 0.00887867 +-0.0661815 0.0615106 0.0205126 +0.0144985 0.107111 0.0421568 +-0.0721929 0.152802 0.0342528 +0.0142765 0.0666697 -0.0302658 +0.0349485 0.0942163 0.0384062 +-0.0664891 0.0369705 -0.00688594 +-0.077495 0.158339 -0.0149115 +-0.0739383 0.160975 -0.0103701 +-0.00971429 0.0386927 -0.0148008 +-0.0618555 0.155289 -0.0295874 +-0.0621574 0.152203 -0.016578 +-0.032494 0.096035 0.0446186 +0.044345 0.0519693 -0.00630996 +0.0319954 0.0520213 0.0354999 +-0.0300925 0.0509394 -0.0183595 +-0.018449 0.0388382 0.0343981 +-0.0670639 0.154762 0.000889218 +0.0361767 0.0888967 0.0383392 +0.0262873 0.0942382 0.0451936 +0.0186534 0.103359 0.0446898 +-0.0523328 0.0334686 -0.00741897 +0.0507066 0.0540083 0.0292331 +0.0529037 0.0462692 0.0142047 +-0.0888522 0.0996312 0.00941041 +0.0275656 0.0563642 0.0414619 +-0.0371627 0.0336289 -0.0286501 +-0.0198294 0.0882519 -0.0375379 +-0.0907603 0.140585 0.0151783 +-0.00458896 0.0376652 -0.0252351 +-0.093041 0.12831 0.0262642 +-0.0743429 0.0955133 0.0396401 +-0.089704 0.111925 0.0143387 +0.0453684 0.0889907 0.0151607 +0.0456444 0.086201 0.0151659 +-0.0635175 0.0399079 -0.00714576 +-0.0294925 0.0903536 0.0441109 +-0.0888771 0.100994 0.011394 +-0.0121064 0.0869584 -0.0384624 +0.0373352 0.108319 0.0251875 +-0.0882187 0.112165 0.0210064 +0.0349174 0.110993 0.0268865 +-0.0849268 0.122064 -0.00322109 +0.0124968 0.112648 0.0387734 +-0.0662562 0.163203 -0.0177078 +-0.0640701 0.113939 0.0406208 +-0.0654246 0.0794919 0.0421931 +-0.0519669 0.0569186 0.0284516 +-0.0519207 0.0493094 0.0353906 +0.00333114 0.0341656 0.00499397 +-0.056914 0.133942 0.035273 +-0.0780215 0.158305 -0.0199209 +0.0276406 0.111416 0.0348725 +-0.0172565 0.181572 -0.0253576 +0.0372544 0.0379189 0.00466817 +-0.0211197 0.1653 -0.017528 +-0.0557637 0.121264 0.0386516 +0.0274329 0.121878 0.0183804 +-0.0623369 0.16467 -0.04959 +0.00450432 0.0883672 0.0562441 +-0.0649333 0.145142 -0.016034 +-0.0918355 0.118761 0.0292947 +0.0503561 0.073461 0.0121181 +-0.0732571 0.0860546 0.040246 +-0.0543933 0.14384 0.0284354 +0.0235922 0.124679 0.00697037 +0.049638 0.0724241 0.0192263 +-0.0691135 0.0647604 0.0241382 +-0.0277318 0.0385796 0.0327127 +0.0249679 0.0605263 0.0447882 +0.0220764 0.0741142 0.049509 +-0.012493 0.16839 -0.0164935 +0.0220311 0.0550166 0.0457656 +-0.0197467 0.0364265 -0.0184459 +0.000577278 0.0388845 -0.0129362 +-0.0178004 0.121647 -0.00876548 +-0.0516521 0.0334655 -0.0091126 +0.0221612 0.0754835 0.0496518 +-0.0384539 0.162349 0.000413916 +-0.0711225 0.0388168 0.00193457 +0.0334725 0.0950337 -0.0145821 +-0.00505247 0.102417 0.0438081 +0.0159216 0.0348476 0.0287894 +0.0277666 0.0347822 0.00749516 +-0.0675802 0.144972 -0.0192338 +-0.0477088 0.132967 0.0228963 +-0.0134912 0.0386664 0.0301779 +-0.0590273 0.134027 -0.00648451 +0.0244484 0.124114 0.020115 +0.0218798 0.0374214 -0.00364164 +-0.0658775 0.102439 -0.0164403 +-0.0743971 0.166132 -0.0206985 +-0.0634619 0.0339766 0.015084 +-0.0497324 0.138579 0.00441928 +-0.00151689 0.0428507 0.0468014 +0.00660528 0.0935786 -0.0311099 +-0.0862444 0.0819176 0.00849345 +-0.0634827 0.0876134 0.0450541 +0.0182388 0.0763952 -0.028136 +-0.0765343 0.0681368 0.0143622 +-0.092883 0.116038 0.0143172 +0.000494981 0.0442085 0.0460563 +-0.0518518 0.0970732 -0.0222063 +-0.0248173 0.0693751 0.0448313 +-0.089421 0.135156 0.0282104 +-0.0566159 0.0573558 0.0107416 +0.0312695 0.0800594 -0.0199503 +-0.03437 0.0738393 -0.0214808 +0.0226051 0.113885 -0.0127298 +-0.0658838 0.16421 -0.0204509 +-0.0417953 0.0435116 -0.0223513 +-0.0710782 0.156778 -0.0439119 +0.00348525 0.108604 0.0422849 +-0.0239399 0.118058 -0.0129545 +-0.0498545 0.0999668 -0.0218887 +0.0176793 0.0852191 -0.0283526 +-0.0426623 0.0592741 -0.0122692 +-0.0642751 0.044386 -0.00129652 +-0.0456062 0.127883 0.0223049 +-0.0818286 0.147374 0.0384552 +0.0125066 0.10443 0.0450477 +-0.0763281 0.174543 -0.0415648 +-0.0144887 0.0387707 -0.00835843 +-0.00853122 0.0430617 0.0490142 +-0.0783677 0.176339 -0.0480853 +-0.0408918 0.109911 -0.0187996 +-0.0634329 0.159891 -0.0505847 +-0.0278615 0.0987172 -0.0237448 +0.0172353 0.0806842 -0.0288156 +-0.0768582 0.104852 -0.0089026 +0.0310274 0.118497 0.0197321 +0.0262422 0.122687 0.00652555 +-0.000524008 0.041433 0.0467891 +0.0292827 0.060879 -0.0197951 +0.00853553 0.0366751 -0.00931803 +-0.092315 0.125571 0.0312621 +-0.000472926 0.0972534 -0.0289903 +-0.0604964 0.0861621 0.0446513 +0.0117525 0.0432202 0.0447834 +-0.0738828 0.103582 -0.0116089 +-0.00249719 0.0488761 0.0505372 +-0.0307845 0.0580469 -0.0184096 +-0.00234994 0.125819 -0.00745455 +-0.0301636 0.153871 -0.00371356 +-0.0815418 0.0912589 0.0328461 +-0.0901131 0.132441 0.0382173 +0.037389 0.0476423 -0.00613109 +-0.0646684 0.155196 -0.0425404 +-0.0928057 0.124227 0.0372672 +-0.0297999 0.12434 0.000117203 +-0.032492 0.0746402 0.0409516 +-0.0555716 0.122697 0.0389476 +-0.0717789 0.154685 0.0298089 +-0.0930714 0.12018 0.0352857 +0.0144798 0.109585 -0.0180587 +0.00343169 0.0361267 -0.0240106 +-0.0288758 0.046967 -0.0262149 +-0.0616418 0.158426 -0.0235923 +0.0103202 0.0609665 -0.0299301 +-0.0910325 0.14477 0.0261671 +-0.083926 0.0775674 0.0187821 +-0.0575363 0.138153 0.0326058 +-0.0295 0.0703058 0.0395502 +-0.0217308 0.0626511 -0.0346671 +-0.0640717 0.164086 -0.0255357 +-0.063271 0.158522 -0.0165888 +0.0210264 0.0895934 -0.0248804 +-0.0731992 0.145774 -0.0148545 +-0.0334943 0.0803079 0.0415842 +-0.0862122 0.111364 0.0347412 +0.0338239 0.11087 -0.00547119 +-0.0135288 0.0458914 0.0493586 +-0.0643715 0.139866 -0.00735458 +-0.0568939 0.158351 0.00118769 +-0.0405106 0.151258 -0.00613685 +-0.00551608 0.110856 -0.0214408 +-0.0787639 0.0696569 0.0125705 +0.00378339 0.0381062 0.0251953 +-0.0650446 0.154908 -0.0437098 +-0.089228 0.114813 0.0276717 +-0.00277394 0.0797805 -0.0365537 +-0.0661523 0.136835 0.0429956 +-0.0434818 0.0902492 0.04268 +-0.0184702 0.0959697 0.0503933 +-0.0801387 0.142096 0.0454029 +-0.00485582 0.0989472 0.0508482 +-0.0336234 0.153659 0.000337049 +0.00250661 0.0924946 0.055168 +-0.0729484 0.132565 -0.00781242 +0.0194715 0.127423 0.0125674 +0.00484292 0.129473 0.025811 +-0.0576054 0.0658547 0.0344063 +-0.0502601 0.0543084 0.0166402 +-0.027407 0.0396009 0.0539527 +-0.0105297 0.0560622 0.0527517 +-0.0456126 0.0519231 -0.010201 +0.000501847 0.0590908 0.0549783 +-0.0569845 0.0535242 0.00365398 +-0.0671097 0.0432428 -0.000257978 +0.0214666 0.0975514 0.0465681 +-0.08997 0.132328 0.0399309 +-0.0761969 0.167972 -0.0410261 +0.0170202 0.121328 -0.0087569 +-0.0138948 0.17568 -0.0202542 +-0.0281655 0.17267 -0.018055 +-0.0638531 0.04136 -0.00615806 +-0.0348821 0.0342989 0.0153052 +-0.000342105 0.0380462 0.00257941 +-0.00749789 0.0898138 0.0570783 +0.028524 0.0808687 0.0448153 +-0.0331206 0.0356024 -0.0184705 +0.0043586 0.119499 -0.0147306 +0.0467625 0.0462832 0.0266316 +0.0368364 0.111573 0.0161776 +0.00851174 0.0799624 0.0552814 +-0.00244825 0.112634 -0.0193375 +-0.0235385 0.11268 0.0379979 +-0.0115345 0.0922826 -0.0359317 +-0.09304 0.122895 0.0392709 +-0.0271645 0.17563 -0.018169 +-0.0772929 0.117422 0.0514809 +0.0179164 0.102978 -0.02104 +-0.0709646 0.0754682 0.0373385 +0.0216627 0.126095 0.0176515 +-0.0640284 0.119984 0.047923 +-0.0444795 0.0874935 0.0436599 +-0.0893861 0.0943037 0.0204146 +-0.0720651 0.173384 -0.0385311 +-0.0894927 0.14204 0.0311659 +-0.0454987 0.120637 0.0275066 +-0.0250745 0.0954862 -0.0252675 +-0.0895496 0.13918 0.0132126 +0.0192289 0.0820148 -0.027672 +-0.0154803 0.0645289 0.0535158 +0.0164872 0.108442 0.0405002 +-0.00663864 0.115688 -0.0165748 +-0.0494985 0.104247 0.040228 +-0.0673252 0.149334 0.0390086 +0.0300883 0.0872505 -0.0203879 +-0.0278877 0.0633808 -0.0294488 +0.0182732 0.069417 -0.0291542 +0.0171905 0.116688 -0.0137466 +0.0502632 0.0713497 0.022405 +0.0350985 0.114043 0.00837763 +-0.0505103 0.0452467 0.0429196 +0.0302544 0.113856 0.0308506 +-0.0605348 0.0333568 -0.0034971 +-0.00390558 0.0383472 0.0143493 +0.0270583 0.122199 0.00683201 +-0.0241505 0.0378782 0.0124647 +-0.0606031 0.0352186 0.0442288 +-0.0906667 0.113308 0.0195238 +-0.00876475 0.075634 -0.0378123 +-0.0531345 0.0641573 0.0333061 +-0.0262078 0.123609 -0.00273748 +-0.0629032 0.154793 0.00389792 +0.00322165 0.0782734 -0.0348651 +-0.0232226 0.0950277 -0.0288098 +-0.0497962 0.0869626 -0.02172 +0.0239811 0.109404 -0.0139261 +-0.00287196 0.105931 -0.0223953 +0.00350624 0.0619975 0.0564502 +0.0152965 0.129062 0.00674245 +-0.0198254 0.120831 -0.00989132 +-0.0672111 0.0749069 0.0386416 +-0.0199192 0.0375867 0.0533971 +-0.0507132 0.054338 0.0146004 +0.0338375 0.109906 -0.00644408 +-0.052068 0.0531865 0.02764 +-0.0665349 0.0638845 0.0254353 +-0.0340904 0.160759 -0.0135462 +-0.0456409 0.0577841 -0.0117617 +0.0425336 0.0678584 0.0273676 +-0.0549188 0.148123 0.0275408 +0.0178543 0.0352284 0.0378786 +-0.0254848 0.100235 0.0442056 +-0.014497 0.0856418 0.0570702 +0.0151023 0.0860518 0.0518047 +-0.0616341 0.0628646 -0.00472902 +0.02366 0.0848996 0.0483924 +-0.0496187 0.054694 -0.00943972 +-0.0328776 0.105721 -0.0208169 +-0.0144506 0.103914 0.0432646 +-0.0248813 0.105869 -0.0225199 +0.024788 0.0591582 0.0445118 +-0.0159391 0.0999021 -0.023843 +-0.0539979 0.153168 0.0186815 +-0.0738816 0.120852 -0.00799698 +0.0296461 0.118491 0.000643936 +-0.0540045 0.13652 -0.00234857 +-0.0593798 0.0335176 0.00740926 +0.0366379 0.08347 0.0371909 +-0.0520867 0.151648 -0.00355308 +-0.0188227 0.0387965 0.0325596 +0.00898388 0.131012 0.0072855 +-0.0682589 0.154325 -0.0506473 +-0.0521805 0.0531921 0.0266366 +-0.0617514 0.175333 -0.0614739 +-0.0169338 0.185679 -0.0240586 +0.015477 0.103104 0.045929 +-0.0729148 0.0713134 0.0317175 +-0.0172476 0.114664 -0.0174436 +-0.0126734 0.0384579 0.00339052 +-0.0832791 0.0884633 0.0304387 +-0.0858155 0.103519 0.00339021 +-0.0146369 0.0466344 -0.0294365 +-0.0773163 0.098935 -0.0105842 +-0.0145015 0.0631456 0.0536787 +-0.0689178 0.0717538 0.0356819 +-0.0255986 0.0394109 -0.0291464 +-0.0623671 0.0719748 0.0386642 +-0.0301518 0.0360809 0.0236741 +-0.030565 0.0383245 0.0341404 +-0.0574984 0.0918591 0.045399 +-0.0861528 0.0951452 0.0274373 +-0.0644941 0.0412041 -0.00599039 +-0.0363521 0.126723 0.0183002 +0.00755707 0.10303 0.0452955 +-0.0396625 0.0399023 -0.0274567 +-0.0838382 0.11616 -0.00137187 +0.0166591 0.0349342 0.0324763 +-0.0647933 0.15319 -0.00116291 +0.00911841 0.110151 -0.0195223 +-0.0697747 0.155761 0.0260978 +0.045415 0.0763654 0.00219579 +-0.0127734 0.171309 -0.0186592 +0.00748545 0.0964088 0.0510363 +0.0125027 0.109886 0.0398286 +-0.0779306 0.0866645 -0.0115691 +-0.0830177 0.0951656 -0.00554205 +-0.0184064 0.186879 -0.0179354 +-0.0866419 0.0923952 0.0266005 +0.026251 0.103389 0.0398709 +0.0333357 0.116389 0.013468 +-0.0452756 0.131436 0.0105618 +-0.035474 0.0519266 0.0383228 +-0.0536233 0.0657097 0.0353836 +0.0013977 0.0433563 -0.0248502 +0.0269244 0.118903 0.0281816 +0.0395 0.055533 0.0316092 +-0.0723024 0.111428 0.0467445 +-0.0364387 0.0357946 -0.0155844 +-0.0276413 0.159598 0.000270855 +-0.00596208 0.0394 0.0364646 +-0.00479094 0.0798443 -0.0373862 +-0.00779065 0.130523 0.0125627 +-0.0464848 0.12067 0.0277891 +-0.0645002 0.0889975 0.0448988 +-0.0896121 0.0902414 0.0154476 +0.0130231 0.0965172 -0.0241956 +-0.0452605 0.0391077 0.0445023 +0.0587398 0.0709245 0.0152557 +-0.0596114 0.0726835 0.0404064 +0.0240499 0.0348797 0.0195293 +-0.0682817 0.156606 -0.0532672 +0.0178388 0.104825 -0.0190099 +-0.0288938 0.180785 -0.00982491 +0.0323759 0.0738626 -0.0187418 +0.0314474 0.112439 -0.00717966 +-0.074091 0.144362 -0.00888576 +0.0510178 0.0461394 0.00424124 +0.00750963 0.0646928 0.0554932 +-0.0643093 0.0665984 0.0323388 +0.0133515 0.0566849 -0.029233 +-0.0243216 0.10004 -0.0240037 +-0.00749239 0.096543 0.0535421 +-0.00533786 0.0388247 -0.000985585 +-0.0884258 0.0996766 0.0213895 +-0.0320326 0.0609937 -0.0164107 +0.0535495 0.0533436 -0.000784809 +0.0393899 0.0533602 -0.00667374 +-0.0717205 0.168577 -0.0240459 +-0.0704919 0.126012 0.052539 +-0.0388888 0.109926 -0.019043 +-0.0507025 0.140081 0.0193694 +-0.0263231 0.034658 0.0434735 +0.0398861 0.0766416 0.0330246 +-0.0941682 0.126929 0.0222624 +-0.0117712 0.0770642 -0.0382004 +-0.0417668 0.040639 -0.0243092 +-0.0517327 0.164109 0.00103678 +-0.0721705 0.158208 -0.0379206 +-0.0356893 0.0651361 -0.0144415 +-0.065143 0.156205 -0.00860924 +0.00354988 0.0342019 -0.0174252 +0.00312416 0.107287 -0.0203844 +-0.0340011 0.127005 0.00589371 +-0.0418419 0.09571 -0.0225712 +-0.0333161 0.126997 0.0105451 +-0.0717391 0.165925 -0.0182956 +0.0559734 0.0494153 0.0101945 +0.0174969 0.108466 0.0401752 +-0.0507291 0.133637 -0.00121966 +0.0083246 0.0581885 -0.03043 +-0.0711713 0.176467 -0.0550529 +0.0165931 0.100464 -0.0223776 +-0.0544905 0.0862124 0.0452239 +-0.0574075 0.0649991 0.0334306 +0.0195092 0.092819 -0.0242669 +-0.0856512 0.0899172 -0.000541045 +0.0081342 0.104445 -0.020865 +-0.0752567 0.160324 -0.0108988 +-0.0376087 0.118212 -0.0130418 +-0.055019 0.14719 -0.00165707 +-0.04909 0.0628007 0.0352845 +-0.018783 0.0770899 -0.0389016 +-0.0336421 0.175583 -0.0129563 +-0.082659 0.0871422 0.0312687 +-0.0621779 0.061949 0.0245023 +-0.0782836 0.162467 -0.0289415 +0.0339055 0.0599168 -0.014725 +-0.0414124 0.128336 0.00169512 +-0.0398827 0.035133 -0.0101165 +-0.00781609 0.0854881 -0.0377912 +0.0082433 0.13138 0.00986533 +-0.0358714 0.105673 -0.0204021 +0.00749975 0.0589567 0.0535286 +-0.072631 0.0670284 0.0231935 +0.0525192 0.0691267 0.0251103 +-0.0688901 0.0621533 0.0194032 +-0.0824666 0.11008 0.0383967 +-0.0438038 0.0884337 -0.0219011 +-0.00534725 0.0379464 -0.0151277 +-0.0425045 0.0478596 0.0401075 +0.0214753 0.11175 -0.0144217 +-0.000497779 0.0489051 0.0509033 +0.0236032 0.116718 -0.00979024 +-0.0648062 0.0852609 -0.0190538 +-0.0395435 0.101505 0.0409276 +0.0209425 0.124573 -0.000263497 +-0.0286807 0.0383267 -0.00339493 +-0.0585081 0.0422988 0.0170665 +-0.0316383 0.0367739 0.0511824 +-0.085482 0.104867 0.00337403 +-0.00926648 0.100073 0.0477845 +-0.00448593 0.118295 0.0389891 +-0.0377467 0.0768482 -0.0188928 +-0.0640837 0.156142 0.0179222 +-0.0515285 0.144709 0.0153879 +-0.0267903 0.0866521 -0.0358137 +-0.0626407 0.163129 -0.0295903 +-0.00752629 0.0443832 0.0481509 +-0.0750304 0.169881 -0.0295693 +-0.0907748 0.12133 0.00629364 +0.0164129 0.0417834 -0.0225068 +-0.0317772 0.169741 -0.00573949 +-0.0546238 0.0527377 0.0100793 +0.0453589 0.0561811 -0.00597324 +-0.0651505 0.0366918 0.0402161 +-0.032507 0.108409 0.0384637 +0.0185107 0.108486 0.0398481 +0.0450172 0.0749324 0.00120229 +0.00251449 0.0702821 0.0560425 +-0.0434424 0.160833 0.00573037 +0.056541 0.064854 0.0254614 +-0.0648306 0.156078 0.013307 +-0.00545884 0.111961 -0.020621 +-0.0222505 0.0336283 -0.0219672 +-0.0319114 0.16826 -0.00591385 +0.0045246 0.0828376 0.0569094 +-0.0849678 0.0844642 -0.00152644 +0.0277057 0.120723 0.00280565 +-0.0133613 0.182397 -0.0284169 +-0.0569294 0.13993 -0.00415472 +-0.0104844 0.118266 0.038122 +-0.0725121 0.144203 0.0447958 +-0.0661037 0.0713259 0.0366501 +-0.050851 0.138527 0.021367 +-0.0580927 0.0577897 0.0147789 +-0.0157117 0.033701 -0.0245127 +-0.00261732 0.0341102 -0.0185505 +-0.0614975 0.10975 0.0377559 +0.00661243 0.131425 0.00784474 +-0.0602206 0.142504 0.0358229 +0.0126673 0.104052 -0.020179 +-0.0624955 0.0904382 0.0452713 +0.0164839 0.0699861 0.0519409 +-0.0334933 0.0946149 0.0444857 +-0.0904058 0.114907 0.0416618 +-0.0182558 0.178619 -0.0243596 +-0.0436529 0.0346111 0.0345638 +-0.00297107 0.0340356 -0.0204416 +-0.0246065 0.0394112 -0.0290873 +-0.0257404 0.0712076 -0.0359148 +-0.0285156 0.0433359 0.0513164 +0.0262381 0.119658 0.0279158 +-0.0734823 0.0649094 0.0160661 +0.0249492 0.109234 -0.0137375 +-0.0651326 0.157423 -0.0100634 +-0.0578906 0.0600472 -0.00173427 +-0.0868853 0.0847213 0.0144753 +-0.0610173 0.135506 -0.00686914 +0.0547011 0.0728313 0.00929699 +0.00513733 0.104474 -0.0214038 +-0.0199542 0.180019 -0.0229778 +0.022195 0.0344915 0.00477409 +-0.0509846 0.123023 -0.00999375 +0.0173702 0.0506958 -0.0254566 +0.0327797 0.0727287 0.040356 +-0.0376189 0.0505906 -0.0108802 +-0.057408 0.0521648 0.00264452 +-0.0845698 0.111358 0.0279354 +0.045113 0.0861573 0.00219478 +-0.0694333 0.0348816 0.0112742 +-0.0621334 0.15599 0.0157191 +0.0379075 0.0398433 0.0233434 +-0.0695824 0.180796 -0.0534457 +0.00287682 0.0368053 -0.01432 +0.0592296 0.0635939 0.00512091 +-0.0326951 0.0680731 -0.0204474 +-0.017619 0.161286 -0.0140538 +-0.00121244 0.0358159 0.011737 +-0.0485025 0.167013 -0.00296472 +0.0139694 0.0974449 -0.0231882 +0.0336763 0.102539 -0.0125747 +-0.0769165 0.147253 -0.00586064 +-0.0894763 0.140666 0.0321759 +-0.079441 0.139988 0.0475582 +-0.019773 0.0742847 -0.0390372 +-0.066871 0.0626922 0.0228964 +-0.0473301 0.134807 0.0120125 +0.0244991 0.106997 0.0390493 +0.0296386 0.114736 0.0306143 +0.0275719 0.0433403 0.0342886 +-0.0524918 0.107066 0.0397432 +-0.0544973 0.0427375 0.0458563 +-0.0837407 0.129905 0.0507752 +0.0390362 0.108381 0.0141662 +0.0136873 0.0685864 0.0531495 +-0.0780988 0.162499 -0.0239377 +-0.0804325 0.078146 0.029561 +-0.0720693 0.0709772 0.0321852 +-0.036497 0.0903135 0.0436162 +-0.0157593 0.121529 -0.00864145 +-0.0640118 0.135519 -0.00771971 +-0.0096474 0.0481504 -0.030386 +-0.0889991 0.11248 0.0367803 +-0.0718704 0.117956 -0.00810673 +-0.00253303 0.110473 -0.0210263 +-0.0151271 0.118705 -0.0137294 +-0.0533766 0.126536 -0.00565695 +-0.050165 0.0501393 0.0176523 +-0.0617795 0.126914 0.0422805 +-0.0077906 0.079881 -0.0380243 +-0.0181903 0.172708 -0.0227977 +0.0362974 0.0657667 -0.0137187 +-0.0193672 0.122992 0.0288371 +0.0118921 0.127946 0.0270512 +-0.0528594 0.0344415 0.0327571 +-0.0440834 0.0344755 0.0328349 +0.00820576 0.0343954 0.0203732 +-0.0384853 0.0819001 0.0436414 +0.0279153 0.112797 -0.00956049 +-0.0233818 0.177171 -0.0128784 +0.00211138 0.110155 -0.0201605 +-0.0214231 0.0385184 -0.00765668 +-0.0590379 0.13549 -0.00623086 +-0.0654804 0.152163 -0.03833 +-0.0328363 0.0957996 -0.0235469 +-0.0574937 0.0333307 -0.00285911 +-0.0723124 0.154022 -0.038905 +-0.00125765 0.0383424 0.0470318 +0.022422 0.125761 0.0150782 +-0.0285891 0.0935252 -0.0252241 +-0.0395009 0.16971 0.00189803 +-0.0211973 0.0363196 0.0534993 +-0.0671438 0.037039 0.0145094 +-0.0455015 0.115241 0.0333765 +-0.0416597 0.057808 -0.0117566 +-0.0597745 0.0434652 0.0436848 +-0.0594246 0.0334838 0.00203125 +-0.0609255 0.122379 -0.00879585 +-0.0633414 0.0357702 0.0187502 +-0.0629834 0.0594485 0.00869517 +-0.0240199 0.0537379 0.0416895 +-0.0382462 0.044597 -0.024375 +-0.00732189 0.100225 -0.0241674 +-0.0425982 0.0463965 -0.0133084 +-0.0889045 0.133745 0.0416542 +0.00049898 0.0385943 0.0466363 +-0.0295864 0.0462965 0.0488628 +0.00439164 0.0448792 -0.025855 +-0.0608362 0.0341593 0.0278122 +-0.0547243 0.0723714 -0.0165135 +-0.0274694 0.155208 -0.00473974 +0.0246484 0.0713321 0.0461382 +0.0124372 0.0548875 0.0512192 +-0.00549842 0.0828666 0.0570203 +-0.0616148 0.0337181 0.0103501 +-0.0346312 0.0752701 -0.0214845 +-0.0629229 0.058915 0.0109817 +-0.0424386 0.147805 0.00141712 +-0.0363751 0.12414 0.0242241 +0.0176113 0.111464 -0.0161155 +-0.0314976 0.0603384 0.0380002 +-0.0138112 0.128252 0.0219818 +-0.0603076 0.0409502 -0.0078507 +-0.0735166 0.141431 0.0469479 +0.0326456 0.111384 0.0297678 +-0.0635438 0.0341847 -0.00786744 +0.02297 0.122414 -0.00191144 +0.0401375 0.0953636 -0.00688813 +-0.0141538 0.0965092 0.052175 +-0.00422659 0.0383846 0.0124357 +-0.0311024 0.0343581 0.019624 +-0.0780471 0.153854 0.029137 +-0.0581213 0.151582 -0.000807379 +-0.0267449 0.0725846 -0.0356647 +-0.0191918 0.174184 -0.0227992 +-0.00378536 0.0798194 -0.0370348 +-0.0249464 0.0349691 -0.0199992 +-0.0564664 0.0423189 0.0186897 +0.0266976 0.119444 -0.00271582 +-0.023525 0.0349287 -0.0283944 +-0.0800951 0.15261 0.00324045 +0.0268493 0.119915 0.0267269 +0.0354747 0.0390827 0.0235255 +-0.0127812 0.17424 -0.0204206 +-0.0338617 0.168258 -0.00349456 +-0.0144845 0.0744882 0.056153 +0.0261935 0.0402752 0.032238 +0.0102706 0.0681153 -0.0309054 +-0.00974239 0.0387292 0.0290909 +-0.0644512 0.125591 0.047275 +0.010367 0.0479585 -0.0270631 +-0.0246099 0.0984431 -0.024327 +-0.0476227 0.0370311 -0.0128189 +-0.0780422 0.0846436 0.0366002 +-0.0566171 0.135321 0.0339425 +-0.0556004 0.0505584 -0.00338763 +-0.0907186 0.136468 0.0172046 +-0.0245124 0.180278 -0.0098524 +0.00742535 0.0346722 0.0416328 +-0.0699342 0.0651273 0.0236486 +-0.0124071 0.172769 -0.0198823 +-0.041856 0.149196 0.00419837 +-0.0809107 0.103235 -0.00559799 +-0.0631328 0.0335051 0.0030611 +-0.00851461 0.0647289 0.0558918 +0.0154483 0.127759 0.0239281 +0.0255922 0.123349 0.0191129 +0.0138934 0.0631004 0.0516475 +0.00118569 0.0983354 -0.0261952 +-0.0325387 0.118791 -0.011658 +-0.000757843 0.0354065 0.0103826 +-0.0248998 0.158417 -0.0112592 +-0.035233 0.0374002 -0.014964 +-0.0541243 0.156074 -0.00260128 +-0.0584646 0.0588965 0.0024905 +-0.0615294 0.0333928 -0.00373148 +-0.0602915 0.0343294 0.0347628 +0.0265767 0.0994658 0.0420977 +0.0347214 0.0712416 -0.0157876 +-0.040399 0.128703 0.00942739 +0.00251855 0.096887 -0.0286022 +-0.076485 0.148385 0.0403892 +-0.0606115 0.155938 0.0148123 +0.010878 0.0806434 0.0544608 +0.0384784 0.105492 -0.00082855 +0.0438672 0.0916755 -0.00180444 +-0.0513529 0.0733082 0.0416893 +0.0451032 0.0777437 0.000209071 +-0.0817242 0.148679 0.0369003 +0.0461375 0.0834298 0.00718398 +-0.0514739 0.135214 -0.000924577 +-0.00531173 0.100039 -0.0239686 +-0.0176147 0.042187 -0.0278695 +0.00727636 0.114035 -0.0188609 +0.0268989 0.0632714 0.044083 +0.0102735 0.0924657 -0.0299319 +0.010651 0.121836 0.0349107 +0.00895558 0.0361581 -0.0106394 +-0.0905601 0.144393 0.0275534 +0.043756 0.0467626 0.0296361 +-0.0417806 0.126404 -0.00562318 +-0.0358424 0.095771 -0.0231986 +-0.0809037 0.153834 0.0267225 +-0.0777263 0.156926 -0.0159116 +0.00417967 0.034897 0.044357 +-0.0351879 0.125718 0.0201989 +-0.0284012 0.038721 -0.0148192 +-0.0351226 0.169652 -0.0145814 +-0.0203438 0.180146 -0.0154935 +0.0345359 0.11019 -0.00473263 +-0.0932568 0.121548 0.0382795 +-0.0334767 0.152548 -0.00159465 +-0.0271731 0.174192 -0.00959576 +0.0159989 0.11444 -0.0153318 +-0.054238 0.13299 -0.00459005 +0.0366798 0.105376 -0.00582172 +0.0386277 0.0672715 0.0346845 +-0.0227209 0.162682 -0.0153632 +-0.0760409 0.0677685 0.0130189 +0.00250507 0.0772798 0.0565792 +-0.0345053 0.101515 0.0417518 +-0.0546003 0.0541349 0.0100271 +-0.000643212 0.127926 -0.00376413 +0.00284904 0.131659 0.0150261 +-0.0184884 0.186846 -0.021092 +0.0335193 0.114014 -0.000843968 +0.00632048 0.123167 -0.0106939 +-0.0564752 0.0624455 0.0290854 +-0.0138322 0.105995 -0.0224296 +0.00423384 0.0754618 -0.0348642 +-0.0281096 0.0778495 0.0450018 +-0.0776289 0.158329 -0.0159141 +0.0148253 0.0447411 0.0439981 +-0.0859023 0.122521 -0.0027014 +-0.0578481 0.0940916 -0.0211113 +0.00150378 0.0842858 0.0575429 +0.0326379 0.0849202 0.042017 +-0.0549752 0.0499938 0.0105067 +-0.0568824 0.10976 -0.0175883 +-0.00970298 0.0627929 -0.0357349 +-0.0178968 0.163686 -0.0167578 +-0.074969 0.105672 0.0364824 +0.00650677 0.0702743 0.0558788 +0.00487604 0.0992462 -0.0230983 +0.042474 0.101514 0.0131646 +-0.0643723 0.0593574 0.0120942 +0.0593748 0.0580631 0.00716733 +-0.00149842 0.111423 0.0424113 +-0.00749339 0.119159 -0.0142858 +-0.0771313 0.0754374 0.0308061 +-0.0477996 0.0869772 -0.0218762 +0.014411 0.0833733 0.0525453 +-0.0202678 0.159643 -0.00488449 +-0.0159305 0.0950186 -0.0327431 +-0.0279294 0.0931359 -0.0265478 +-0.0855021 0.102147 0.00137916 +-0.0938092 0.125562 0.0252741 +-0.058744 0.140559 -0.00481674 +-0.031677 0.126244 0.00820251 +-0.0264922 0.0447022 0.0511549 +-0.0205862 0.0382221 0.00925741 +-0.053491 0.104292 0.0408761 +-0.0370674 0.156264 -0.0103696 +-0.0634966 0.109514 0.0378318 +-0.0867621 0.084687 0.0184803 +-0.0830364 0.104646 0.028271 +0.0442212 0.0804374 0.0252067 +-0.0448473 0.0339909 -0.0230279 +-0.0037539 0.0755488 -0.0365646 +-0.0661663 0.158028 -0.0551775 +-0.0238007 0.0741774 -0.0380398 +-0.018731 0.0627665 -0.0359648 +0.0446574 0.0720977 0.0012022 +-0.0927955 0.121487 0.0416389 +-0.0620012 0.1241 0.0437622 +0.0300963 0.0995295 0.0401727 +-0.0719316 0.149607 -0.0394232 +0.0355637 0.0889227 0.0392444 +0.0493081 0.0547033 -0.00484617 +-0.0668328 0.0604514 0.0106116 +0.00304719 0.123088 -0.0105402 +-0.0255191 0.118043 0.0319974 +-0.0394865 0.115305 0.0335817 +-0.0326614 0.0592947 -0.0125392 +0.0575508 0.0523393 0.00818574 +-0.0893959 0.0942918 0.0174254 +-0.0269084 0.160002 -0.0134029 +-0.0506856 0.0345547 0.0383582 +-0.0800885 0.0739226 0.0209531 +-0.0277305 0.073972 -0.0353872 +-0.0320496 0.0849187 -0.0285721 +-0.0217999 0.0866355 0.0553929 +-0.0322022 0.0465812 -0.0258568 +-0.0442317 0.12547 0.021384 +0.0214935 0.0781932 0.0504764 +-0.0444883 0.150664 0.00744383 +-0.0303843 0.0566029 -0.0193937 +-0.0723854 0.155427 -0.0359059 +-0.0245149 0.0811097 0.0540325 +0.0189031 0.068639 0.0501604 +-0.0650109 0.041163 0.0307556 +-0.0194954 0.107168 0.0420699 +-0.0325124 0.113906 0.0343195 +-0.0544418 0.118427 -0.0131672 +-0.0536811 0.113759 -0.0162997 +-0.0559476 0.153959 0.0252069 +-0.0675391 0.124252 0.0515729 +0.0440796 0.0450784 0.0271934 +-0.0594971 0.101543 0.0424741 +-0.0184988 0.100234 0.0438197 +0.0434554 0.0790039 -0.00377815 +0.0140981 0.0343905 -0.0079847 +-0.0615105 0.0406302 -0.00752326 +0.0320683 0.0578123 0.0392046 +0.0144666 0.0962642 0.0485999 +-0.0315047 0.0631978 0.0384961 +-0.0306251 0.038441 -0.00943325 +-0.0847861 0.0804507 0.00450965 +-0.0549519 0.160962 0.00433648 +-0.0470839 0.131413 0.00333034 +-0.00104546 0.0391448 0.0323048 +-0.0526926 0.151783 0.016281 +-0.0223808 0.0958588 0.045836 +-0.0841478 0.15365 0.0123539 +0.0536189 0.0735747 0.0133449 +-0.00350831 0.0975151 -0.0292875 +-0.0571277 0.155869 0.0117051 +0.00341369 0.131576 0.0166618 +-0.0237378 0.0654511 -0.0345337 +-0.0858145 0.0991904 0.0269676 +-0.0759199 0.0783227 -0.00959072 +0.032684 0.0640121 -0.0177767 +-0.056282 0.132113 -0.00567386 +0.00328959 0.131137 0.0194851 +0.00882643 0.110931 -0.0195298 +-0.00876485 0.1716 -0.0262973 +-0.0151483 0.0405525 0.0515137 +-0.0498071 0.0343093 0.00865348 +-0.0569766 0.0339283 0.0235563 +-0.0226683 0.0381298 0.00891697 +-0.0855438 0.106245 0.00446783 +0.0454924 0.0651146 0.027904 +0.0150017 0.0576648 0.0496654 +0.00644791 0.119491 -0.0147367 +-0.0156486 0.0481142 -0.0300898 +-0.0650134 0.13537 0.0410634 +0.0113952 0.116794 -0.0158535 +0.0173388 0.0781757 0.0532571 +0.0536226 0.0587546 -0.00269037 +-0.0709897 0.0340252 0.000991695 +0.038384 0.106978 0.0241932 +-0.0385431 0.038993 -0.0286239 +-0.0451337 0.127804 0.0210049 +-0.0690676 0.152436 0.0353067 +-0.0883368 0.137775 0.00920322 +-0.0714828 0.0362083 0.00943052 +-0.0717062 0.159603 -0.040933 +-0.0255949 0.125933 0.00752005 +-0.047874 0.0346487 0.0423594 +0.0367516 0.111162 0.00316661 +-0.00949217 0.110042 0.0428369 +-0.0572015 0.0336196 0.0184714 +0.0150246 0.0392642 0.0442415 +-0.00832489 0.0993422 -0.0252442 +-0.0304761 0.0342807 0.0180201 +-0.026997 0.0382812 -0.00486026 +-0.0916784 0.144722 0.0181573 +-0.0703317 0.172249 -0.0530308 +-0.0159101 0.1643 -0.0176565 +-0.0850976 0.106195 0.00337687 +-0.035284 0.173981 -0.0126295 +-0.032733 0.155408 -0.00943888 +0.00217615 0.12934 0.0262849 +0.00123579 0.075497 -0.0355058 +-0.0332024 0.0455956 -0.0269373 +-0.0155006 0.103015 0.0432792 +0.0396392 0.106988 0.00416547 +-0.021523 0.118151 0.0342827 +-0.0184974 0.103009 0.0434402 +-0.047784 0.038449 -0.0122332 +-0.0104903 0.0604984 0.0550813 +0.0293518 0.0659692 0.0423806 +0.0185572 0.0930309 -0.0244868 +0.0173756 0.109987 -0.0165543 +-0.0865489 0.109072 0.0153468 +0.0363255 0.10537 -0.00683316 +-0.0394998 0.076195 0.0426907 +-0.0603651 0.0470889 0.0366883 +-0.0144951 0.119623 0.0361429 +0.0406661 0.105634 0.0121644 +0.0383891 0.0460848 -0.00524865 +0.0295409 0.0942529 0.0428642 +0.0373159 0.0880544 -0.0152271 +-0.0784316 0.0799342 0.0337318 +-0.0548348 0.124111 0.0382711 +0.0178682 0.0672532 0.0504022 +-0.0788979 0.123682 -0.00614143 +-0.0298552 0.0986755 -0.0232224 +-0.0771653 0.156191 -0.0114635 +-0.0923833 0.130942 0.0122392 +-0.0651094 0.121429 0.0498115 +-0.042493 0.0690949 0.0416622 +0.0416337 0.0792551 0.0303335 +0.0189066 0.0808659 0.0520326 +-0.029145 0.125694 0.0135548 +-0.0619967 0.14761 -0.00462246 +0.0255017 0.0449453 0.0383425 +-0.0925798 0.11747 0.0343056 +-0.00233027 0.0339229 -0.0220991 +0.00799401 0.0819204 0.0555296 +-0.0699548 0.147947 -0.0321477 +0.0415131 0.0394077 0.00724875 +-0.0712173 0.0846981 0.0410753 +-0.0880447 0.0874003 0.00446864 +0.00798497 0.0890814 -0.0324293 +-0.0117258 0.0656807 -0.0365783 +-0.0114796 0.112753 0.0411508 +-0.0817304 0.107364 -0.00260486 +-0.0293156 0.0820403 0.0446588 +-0.0495645 0.0375773 -0.0119604 +-0.043838 0.0956679 -0.0221641 +-0.00869681 0.129559 0.00358698 +-0.0933816 0.129671 0.0222434 +-0.0700603 0.163804 -0.0489659 +-0.00755399 0.0384559 0.0207545 +0.0159604 0.125249 0.0284184 +-0.0514974 0.0791051 0.0438079 +-0.0840796 0.0818676 0.0264914 +0.037525 0.0785071 -0.0127982 +0.0299804 0.119686 0.0179058 +-0.0638039 0.0881523 -0.0190251 +-0.0272788 0.0350567 0.0515587 +-0.00562089 0.115673 -0.0165634 +-0.0104428 0.0347186 0.0450504 +-0.0427898 0.116428 -0.015168 +0.0165768 0.126998 0.000104849 +-0.0238911 0.0738255 0.0493988 +-0.0485539 0.0376116 -0.0123218 +-0.0396922 0.0460798 -0.021311 +-0.0485652 0.0335345 -0.00306359 +0.0414749 0.104231 0.00716597 +-0.0445241 0.0409237 -0.0192998 +-0.0220397 0.0354083 0.0523916 +-0.0380711 0.0340829 0.00944176 +0.0139247 0.0348347 0.0392218 +-0.0297288 0.0335868 -0.0252735 +-0.00107263 0.0385746 0.00195199 +0.0117524 0.0352863 0.00381322 +0.0170772 0.0847646 0.051153 +-0.0656775 0.067321 -0.00750664 +-0.00543271 0.0918052 -0.0353894 +0.0133691 0.0343357 -0.00620151 +0.0451372 0.0875619 0.0011816 +0.0503362 0.0703636 0.0239238 +-0.0474927 0.0804818 0.0437565 +-0.00542063 0.0391587 0.0349931 +0.00193935 0.03568 -0.0153447 +-0.0774115 0.160346 -0.0169397 +0.049877 0.0727457 0.00893584 +-0.0640788 0.0598458 0.0171155 +-0.00650105 0.0472142 0.0482843 +-0.0241121 0.163789 -0.0160029 +-0.0173263 0.0611887 0.051725 +0.0171559 0.100271 -0.022436 +-0.0604932 0.155795 0.0206537 +-0.0609595 0.142497 0.0365005 +-0.0668489 0.0966702 -0.0167929 +-0.0149394 0.183104 -0.021718 +-0.0321779 0.0750041 -0.0285287 +-0.0226305 0.0710127 0.0496427 +0.0463117 0.0820487 0.00917902 +-0.0795939 0.112319 0.0461682 +-0.0658419 0.0995396 -0.0165139 +-0.0810165 0.134048 0.0507919 +-0.0486855 0.131027 0.0278379 +-0.0788429 0.112725 -0.00283498 +-0.0784933 0.0832425 0.0356821 +-0.0258381 0.0781035 0.0498012 +0.0426426 0.0858997 0.0283401 +-0.0677549 0.154168 0.0312275 +-0.0306743 0.0383989 -0.00386137 +-0.0857757 0.0926386 -0.000557841 +-0.0210104 0.0417331 0.053591 +0.0161529 0.100264 -0.0224296 +0.0387814 0.0821002 0.0350599 +0.0484193 0.0639761 -0.00211304 +-0.0858985 0.111778 0.0253403 +-0.0389634 0.128304 0.0114309 +-0.0634823 0.0352819 -0.00824664 +0.0395163 0.0646366 -0.0087647 +-0.0591064 0.0435686 0.0148077 +0.00621882 0.12419 0.0335647 +-0.0171539 0.0347559 0.0453522 +-0.0314811 0.0546225 0.0370229 +-0.0182701 0.114743 -0.017523 +-0.0605388 0.141029 0.0353291 +-0.063605 0.126943 0.0449774 +-0.03749 0.0533987 0.0390423 +-0.0573191 0.0507885 0.00568774 +-0.0424884 0.109818 0.0380938 +-0.082569 0.0790202 0.0265184 +-0.0653913 0.0757553 0.0400472 +-0.0105137 0.0589924 0.0541839 +0.0198393 0.0700116 0.0497622 +-0.0814721 0.135361 0.0497671 +0.00809889 0.111578 -0.0196036 +-0.0276072 0.038217 0.0294729 +-0.0647783 0.173212 -0.0488362 +-0.0760415 0.0675654 0.00655947 +-0.0322855 0.0610195 -0.0154117 +-0.00948933 0.0674612 0.0553354 +-0.0922478 0.11733 0.00930597 +0.0325339 0.116751 0.00316678 +-0.0788837 0.117794 -0.00533035 +0.0177807 0.10571 -0.0179484 +-0.0648315 0.0895741 -0.0187043 +-0.0303114 0.0384164 -0.0075003 +-0.0728418 0.0685704 -0.00149472 +0.0396278 0.103602 -0.00160767 +-0.0575003 0.109781 0.0378101 +-0.0359224 0.034124 0.026018 +-0.0230844 0.126658 0.00843513 +-0.0904612 0.131068 0.0382266 +-0.0782718 0.165861 -0.029036 +0.0284552 0.0607955 -0.0208488 +-0.0495337 0.163976 0.00447865 +-0.0665318 0.134006 0.0442059 +-0.0622043 0.0590015 0.0092504 +0.0124693 0.0962821 0.0494059 +0.0199668 0.115907 -0.0129188 +-0.0101559 0.0386047 0.027311 +-0.0224495 0.0580629 0.0442448 +-0.0768471 0.09916 -0.0110394 +-0.0438495 0.0999429 -0.0214407 +-0.0642587 0.173261 -0.0500973 +-0.0291541 0.123106 -0.00418201 +-0.0785185 0.16527 -0.0289621 +-0.0773807 0.0774654 0.0325309 +0.0184997 0.0892768 0.0486726 +-0.0147168 0.0628748 -0.03682 +0.0133075 0.062355 -0.0296823 +0.0174899 0.111215 0.038757 +-0.0829923 0.130939 -0.00341376 +-0.0749763 0.152739 -0.0169005 +-0.00979029 0.0798633 -0.0379189 +-0.0243904 0.183518 -0.0110527 +0.0382626 0.0899111 -0.0131489 +0.0353274 0.107617 -0.00596632 +-0.0649093 0.06918 0.0352438 +0.0545625 0.0595427 0.0278248 +-0.0664402 0.128427 0.0478848 +0.0302544 0.035019 0.00964843 +-0.0212084 0.186026 -0.0155815 +-0.00559653 0.0391515 -0.0257085 +-0.00382316 0.0854518 -0.0372434 +0.0556932 0.0688929 0.00299188 +0.0435925 0.0958855 0.00119521 +-0.061875 0.156868 -0.0195857 +-0.0283944 0.174224 -0.00779385 +0.000326986 0.131385 0.00837406 +0.0583787 0.0621209 0.00318289 +0.0262357 0.0740751 0.0449841 +-0.0747322 0.0729443 0.0316828 +-0.0650821 0.148822 -0.0290175 +-0.0436469 0.0601588 0.0398932 +0.0443703 0.0410834 0.0161644 +-0.0674507 0.155183 -0.000720573 +-0.0165017 0.177176 -0.0187481 +0.0352588 0.0755049 -0.0148105 +0.00551455 0.110936 0.0415028 +0.0248664 0.0898261 -0.023121 +0.00550646 0.078617 0.0558754 +-0.0698407 0.127049 0.051763 +-0.0375072 0.123454 -0.00854988 +-0.052616 0.0657163 0.0355847 +-0.0748963 0.0690517 0.0244939 +0.023431 0.11936 -0.00662051 +-0.0185076 0.120924 0.0327413 +0.0394332 0.101324 0.027167 +-0.00864992 0.124983 -0.00848236 +-0.0872247 0.152479 0.0216964 +-0.0215688 0.0623472 0.0460467 +-0.0475797 0.035695 0.0449374 +-0.0510737 0.151654 -0.00393732 +-0.0415 0.0930514 0.0423592 +-0.0544965 0.100156 0.0427594 +0.049267 0.0717276 0.00605578 +0.0292141 0.0815364 -0.0209002 +-0.0052585 0.095242 -0.0329133 +0.0151527 0.129419 0.0109697 +-0.0294996 0.100187 0.0432585 +0.0363367 0.0432226 0.0290731 +0.0327757 0.035977 0.0148418 +0.00349523 0.0427434 0.0456833 +0.046121 0.0848311 0.00917504 +-0.067462 0.157723 -0.00658264 +-0.0876012 0.0995367 0.00546504 +-0.0356487 0.0352259 -0.0310792 +-0.0585981 0.0658974 0.0341563 +-0.0639239 0.116652 -0.0103062 +-0.0525394 0.0472909 -0.00733632 +-0.0398304 0.034299 0.0303636 +0.0252131 0.0803965 -0.024704 +-0.0721022 0.165224 -0.0439746 +-0.058758 0.148538 -0.00150368 +-0.0625812 0.150647 -0.00957658 +-0.0878641 0.137757 0.00720039 +0.0109534 0.0475021 0.0472035 +-0.0699012 0.105141 -0.0130553 +0.0318353 0.0540522 -0.0127622 +-0.0866591 0.107689 0.0123597 +0.0552547 0.0595292 0.0270628 +0.0320484 0.11465 0.0272407 +0.0433462 0.0818009 -0.00379375 +-0.0294668 0.176906 -0.0160057 +-0.0169961 0.094658 0.0531741 +-0.0202578 0.0596247 0.0476545 +-0.0798939 0.123658 -0.00558813 +0.0482025 0.0703533 0.0231278 +-0.0206189 0.186125 -0.0151754 +0.0100127 0.0349584 -0.0111996 +-0.0661914 0.152591 -0.0424622 +-0.0478408 0.098515 -0.0219326 +0.026913 0.0619271 0.0440949 +-0.0328507 0.126562 0.0151396 +-0.0689146 0.108019 -0.0123122 +-0.00583756 0.0390351 0.0332216 +-0.0125377 0.0365668 -0.017148 +-0.0373858 0.0446552 0.0411638 +-0.0759006 0.161818 -0.014334 +0.0304033 0.107421 -0.0117891 +-0.0654084 0.175187 -0.050486 +-0.0633716 0.143922 0.0382956 +0.0194957 0.0920261 0.0477827 +-0.0288404 0.0972702 -0.0238091 +-0.00475508 0.0741241 -0.036385 +-0.0104985 0.0362063 -0.0254961 +-0.0625516 0.147537 -0.0115723 +-0.0816708 0.0869142 -0.00660013 +-0.00823999 0.130343 0.0167173 +-0.0809733 0.130966 -0.00434035 +-0.0437659 0.0811743 -0.0201658 +0.00743904 0.129465 0.0253135 +-0.00451238 0.0760575 0.0586977 +0.0302883 0.103408 0.0369471 +-0.0379006 0.151906 -0.00621808 +-0.00550346 0.076042 0.0585145 +-0.0217032 0.0597401 -0.0334972 +-0.0868755 0.112781 0.0262639 +-0.0336701 0.155604 -0.00983793 +-0.0126927 0.0599517 -0.0357172 +-0.0638978 0.150075 -0.0288161 +-0.0144059 0.112046 -0.0186792 +-0.00421023 0.0383902 0.0178766 +-0.0453052 0.113634 -0.0162273 +0.0147972 0.102084 -0.0220848 +-0.0484999 0.105649 0.0400819 +0.0216294 0.0875507 0.0490393 +-0.0124184 0.175705 -0.0216387 +-0.0328373 0.163842 -0.00376818 +-0.0666614 0.0672261 -0.0064803 +-0.0395052 0.119385 0.0302298 +-0.0489243 0.0675117 0.0383488 +-0.0552807 0.0343936 0.0305403 +0.00553119 0.0603997 0.0554086 +-0.0914264 0.14884 0.0201323 +0.0231929 0.110938 -0.0135659 +-0.065154 0.164972 -0.0244937 +-0.050496 0.074792 0.0427038 +-0.0657515 0.154274 -0.0462128 +-0.0343486 0.0367995 -0.0305331 +-0.0826303 0.103323 0.0293175 +-0.0597443 0.0338929 0.0194732 +-0.0425056 0.0591222 0.0401769 +-0.0743438 0.156862 -0.0249223 +-0.00222977 0.0396912 0.0474006 +-0.00562206 0.0388337 0.0298422 +-0.0338556 0.0723894 -0.0214737 +-0.0635465 0.0333817 0.00128463 +-0.0330138 0.0356955 0.0305887 +-0.0730865 0.16659 -0.0202232 +-0.0570856 0.153101 -0.000954757 +0.0275543 0.0960379 -0.019637 +-0.0229677 0.169763 -0.0123298 +0.0217819 0.106251 -0.0165369 +-0.0575003 0.0630187 0.0298519 +-0.00864981 0.171144 -0.0247734 +-0.053919 0.0587242 -0.00741756 +-0.0595 0.105675 0.0404663 +0.0351077 0.0740897 -0.0147891 +-0.0620479 0.155306 -0.016587 +0.0278721 0.0522836 -0.0197543 +0.0325208 0.0469245 0.0310812 +-0.06629 0.139698 0.0427919 +-0.078132 0.172939 -0.0407193 +-0.0294988 0.0559628 0.0364214 +-0.0374897 0.0562507 0.0395531 +-0.0662219 0.155662 0.00991681 +-0.0408786 0.0346362 0.0386374 +-0.0208999 0.185581 -0.0139755 +-0.0330517 0.0624982 -0.0144201 +-0.0767419 0.164619 -0.0220172 +-0.0697905 0.0865423 -0.0170841 +-0.0784816 0.0755217 0.0287043 +0.0172033 0.118701 -0.0119316 +-0.0185134 0.0473863 0.05026 +0.00729554 0.0653986 -0.0323322 +-0.0415011 0.0506114 0.0394281 +-0.0541424 0.033642 0.0190888 +-0.0921005 0.132392 0.0222257 +-0.0136741 0.0384938 0.00315386 +-0.0383322 0.163825 0.00056966 +-0.0762889 0.0738479 0.0305832 +-0.0875285 0.133568 0.00229932 +-0.0736181 0.0688668 0.0266732 +0.02687 0.0981666 0.0425225 +-0.051308 0.153569 0.0116824 +4.86222e-05 0.11836 -0.0154829 +-0.0517937 0.0583908 0.0296448 +0.0605105 0.0595417 0.010156 +-0.0573945 0.0371513 -0.0102727 +0.00965733 0.0345667 0.0223294 +0.0463647 0.0703187 0.00350637 +-0.0625718 0.1468 0.0377209 +-0.089178 0.137924 0.0381661 +-0.0134956 0.0759117 0.0568004 +-0.00574286 0.0755721 -0.037104 +0.0261865 0.123233 0.0107875 +-0.0580499 0.11553 -0.0140963 +-0.00762589 0.0451743 -0.028662 +0.0535357 0.0635428 0.028124 +-0.0718987 0.123811 -0.00847645 +-0.0635357 0.119961 0.0469254 +0.00211859 0.130671 0.0219319 +0.00252859 0.0358017 0.021576 +0.0527591 0.0693467 0.00250314 +-0.0451218 0.0335948 -0.0116042 +-0.0769111 0.100434 -0.0105662 +0.0223237 0.0564658 -0.026195 +0.0394644 0.107011 0.0181712 +-0.0776021 0.0994637 0.0357144 +-0.0632381 0.170981 -0.0495819 +-0.00862433 0.122038 -0.0113292 +-0.0548269 0.0450002 0.0157095 +-0.0506815 0.134691 -0.000340536 +-0.0495888 0.146296 0.0105853 +-0.00908464 0.173025 -0.027717 +-0.00410488 0.0346022 0.0429088 +-0.0260906 0.0386266 -0.0124061 +0.0283176 0.118208 -0.00273298 +-0.0318098 0.121167 -0.00811427 +-0.0737276 0.154081 -0.027902 +0.0162665 0.119939 -0.0112703 +-0.0270805 0.0349584 0.0482667 +-0.0284917 0.101554 0.0428228 +-0.0249764 0.159657 -0.0011434 +-0.0585904 0.142433 0.0328417 +-0.0486888 0.138617 0.0104009 +-0.0234979 0.0724108 0.049066 +-0.019247 0.158526 -0.00845424 +-0.0716194 0.0382939 0.000706648 +-0.0412769 0.0356814 0.042879 +0.0483353 0.0532726 -0.00489034 +0.0606695 0.0664968 0.0121468 +-0.069489 0.104131 0.0386578 +0.00750734 0.0990008 0.0480837 +-0.0624532 0.126929 0.0430601 +-0.0629568 0.15367 -0.0336031 +-0.0374985 0.0747273 0.041938 +0.0426086 0.0930422 0.0261716 +-0.0849422 0.153595 0.0209155 +-0.0543959 0.12661 -0.00573734 +-0.0742502 0.161028 -0.0329547 +-0.0627767 0.112367 0.0371562 +-0.0532977 0.158553 0.00873827 +-0.0769168 0.123731 -0.00719316 +0.0393533 0.0847596 0.0341247 +-0.0692244 0.15634 0.0190049 +0.0343018 0.0936044 -0.01506 +-0.0165008 0.0800909 0.0572191 +-0.014166 0.184338 -0.0242563 +-0.0631574 0.159924 -0.0465929 +-0.0374857 0.0519831 0.0389557 +0.03646 0.112262 0.0117392 +-0.0411413 0.0364371 -0.0278037 +0.0185712 0.126949 0.0207922 +-0.0603223 0.0385556 0.0217181 +-0.0769591 0.131054 -0.00672048 +-0.0295123 0.0565107 -0.0214026 +0.0430875 0.0930739 0.0251589 +-0.00582403 0.0390405 -0.0106025 +-0.0553855 0.0337802 0.0222515 +0.014479 0.100435 0.047468 +-0.0548752 0.0984577 -0.0213117 +-0.0501571 0.0529434 0.0176286 +0.0183573 0.0461568 -0.0227219 +-0.0554809 0.0440191 0.0450323 +-0.0877934 0.0860475 0.0044818 +0.00321463 0.130705 0.0223233 +-0.0505315 0.0389504 -0.011562 +-0.0819835 0.132406 -0.00340088 +-0.0758067 0.0877331 -0.0139103 +-0.091338 0.14476 0.0251578 +-0.0649682 0.034557 0.0300942 +-0.0283013 0.113756 -0.016413 +0.0259713 0.0619044 0.0444933 +-0.0535159 0.0640852 0.0330775 +-0.0046427 0.0482096 -0.0303136 +-0.0584956 0.0861498 0.0443498 +-0.0655423 0.145055 -0.0169033 +-0.0423586 0.123855 0.0235885 +-0.0864234 0.0806346 0.0145003 +-0.033107 0.125984 0.00180258 +0.000400525 0.0433705 -0.0249688 +-0.0337351 0.126905 0.0148106 +0.0594437 0.0677773 0.0191638 +-0.0433018 0.0342732 -0.0267127 +-0.0668634 0.040937 0.011312 +-0.0651408 0.146773 0.0392721 +0.0142259 0.080787 -0.0303234 +-0.0564981 0.0973554 0.0431547 +0.0234826 0.113521 -0.012343 +-0.022737 0.0385766 -0.00982941 +-0.0695434 0.0352232 -0.00418951 +0.060768 0.0651161 0.0111484 +-0.00338536 0.100168 0.0483773 +-0.0154942 0.0772732 0.0564359 +-0.0581438 0.114319 -0.0148345 +-0.0758612 0.165153 -0.0370257 +-0.0666041 0.164889 -0.0207192 +-0.0401309 0.160681 -0.0117333 +-0.00727995 0.0389199 -0.00704692 +-0.0726288 0.07489 0.035733 +0.0572537 0.0657957 0.00220085 +-0.0564793 0.151056 0.0307055 +-0.0459743 0.153608 0.00885524 +-0.046245 0.034596 0.0410145 +-0.0611658 0.168359 -0.0606871 +-0.0242347 0.0401682 0.0541848 +0.0432765 0.10012 0.00816425 +0.0330202 0.102118 0.0356213 +-0.00368236 0.0583856 -0.0334327 +-0.016783 0.0973001 -0.0271368 +0.018711 0.100467 -0.0223545 +-0.0500289 0.122604 0.03284 +-0.063243 0.0333437 -0.00222576 +-0.0187202 0.0613304 -0.0355606 +-0.0268504 0.0548324 -0.0264063 +0.0215374 0.086463 -0.0256391 +-0.0138967 0.099791 -0.0237429 +-0.00550708 0.0774167 0.0583085 +0.055466 0.0507517 0.00421414 +0.00822806 0.0344179 0.00390084 +0.028423 0.0535254 0.0391477 +-0.00689074 0.103109 -0.0232386 +-0.0320031 0.0370471 -0.0177181 +-0.0255422 0.0377889 0.0158759 +-0.0476682 0.165409 0.0039929 +-0.0673807 0.115762 0.049991 +0.00348136 0.111402 0.0420175 +-0.081586 0.0734778 0.0135382 +0.0427229 0.10007 0.00318201 +-0.0456223 0.0548403 -0.0108081 +-0.0226179 0.0464363 -0.0275647 +-0.0201905 0.172698 -0.0217858 +0.0374948 0.0941477 0.0350502 +0.0227469 0.0686119 0.0468992 +-0.012216 0.174205 -0.0276647 +-0.0906322 0.112714 0.0163744 +-0.0599044 0.111127 -0.0158584 +0.00535116 0.0480874 -0.0284111 +-0.0295604 0.158116 0.000994125 +0.0104513 0.122961 -0.0105071 +-0.0619452 0.123832 -0.00870252 +0.00605345 0.0341614 0.00369541 +-0.0696099 0.138316 0.0468524 +0.00349102 0.11963 0.0373483 +-0.0495577 0.0338416 0.0269497 +-0.0500211 0.0529295 0.0155558 +-0.0534917 0.0491191 0.0286591 +0.0546976 0.0478581 0.0131951 +-0.0803392 0.0841108 -0.00756769 +-0.0693719 0.180628 -0.057909 +-0.0247145 0.161052 -0.00252569 +0.0299408 0.0713176 0.0415086 +-0.0779905 0.173544 -0.0470087 +-0.0168218 0.086916 -0.0386596 +-0.0658968 0.109505 -0.0131657 +0.0326969 0.10609 0.0333845 +0.0191388 0.0356129 -0.00667825 +-0.0168818 0.100112 -0.0240537 +-0.0620293 0.135502 -0.00717407 +0.0377405 0.110012 0.0179226 +0.0360001 0.0381146 0.00239588 +-0.0151683 0.160834 -0.010917 +-0.0894324 0.117571 0.0455052 +0.0402874 0.063301 -0.00576463 +0.000231956 0.0755133 -0.0357459 +-0.0663652 0.0422587 0.0107808 +-0.0908359 0.114163 0.0368153 +0.0456753 0.0833922 0.00418733 +-0.0426429 0.0563425 -0.0115708 +-0.0472127 0.168412 -0.001987 +0.0163989 0.0433061 -0.0232691 +-0.0181224 0.165314 -0.018178 +0.014203 0.08785 -0.0301032 +0.00716038 0.0832586 0.0561062 +0.0547452 0.0661481 0.0263648 +0.0207672 0.0700064 0.0493524 +-0.0820552 0.1102 0.0401793 +0.0336664 0.0753805 -0.0167583 +-0.0827158 0.108829 0.000295564 +0.0250546 0.0420912 0.0376641 +-0.0866523 0.0868042 0.0239447 +-0.082018 0.151309 0.00327526 +0.0209029 0.107601 -0.0159886 +-0.0134952 0.0659366 0.0537869 +-0.0902062 0.143054 0.0286714 +0.0484774 0.0431365 0.00824398 +0.00679595 0.0352467 -0.0139815 +0.0154 0.0448131 -0.0240573 +-0.0715189 0.0972122 0.0409969 +0.0152962 0.0652155 -0.0297912 +0.0106046 0.128135 -0.0020835 +0.0273536 0.106086 0.0379553 +-0.0176729 0.0540415 -0.0325983 +-0.00110521 0.131378 0.0121444 +-0.0724827 0.124619 0.0532114 +-0.0738593 0.174047 -0.0391959 +-0.0646169 0.109762 0.0377795 +0.00521659 0.0824462 -0.0340286 +-0.0280135 0.0591603 -0.0264206 +-0.0676617 0.0433934 0.000689977 +0.0407264 0.0999947 0.0251764 +-0.0322885 0.177691 -0.00536129 +-0.0547546 0.035972 0.0465789 +-0.0425002 0.115266 0.0336474 +-0.0687451 0.0708436 0.0347552 +-0.0375019 0.0804666 0.0432825 +-0.0182946 0.181579 -0.0243778 +-0.0789826 0.115456 0.0491224 +-0.0415063 0.0534301 0.0394734 +-0.0708913 0.0403263 0.00282802 +-0.0548298 0.0927311 -0.0220321 +-0.0745142 0.138634 0.0488155 +-0.0807745 0.102028 0.0317433 +-0.0249646 0.181509 -0.0170525 +-0.0727415 0.154031 -0.0358995 +-0.0698172 0.0908437 -0.0164973 +-0.0366476 0.0577363 -0.0111372 +-0.0192308 0.0947234 -0.0324688 +-0.0118669 0.165326 -0.0197278 +-0.0804375 0.137229 0.0490949 +0.0134351 0.129972 0.01319 +0.0457654 0.0791979 0.00319646 +-0.0469166 0.129554 0.0250362 +-0.0581769 0.137607 -0.00562722 +0.04256 0.0817421 -0.00578018 +-0.0478101 0.0884245 -0.0219224 +-0.0424147 0.0344885 0.0314161 +-0.0645764 0.139638 0.0400104 +0.00451352 0.10035 0.0463879 +0.0423459 0.0915624 -0.00580854 +-0.0833163 0.106091 -0.000625527 +-0.0510681 0.0429687 0.0449412 +-0.0258019 0.0564099 0.0391373 +-0.0908661 0.142018 0.0261694 +-0.0222707 0.180155 -0.0129798 +-0.0375032 0.0987213 0.042382 +-0.0135516 0.0445689 0.0502862 +-0.0749157 0.0818909 0.0378096 +-0.042351 0.0336287 -0.0184783 +-0.0104895 0.0660607 0.0552117 +-0.0713722 0.163817 -0.0449613 +-0.0170629 0.040485 0.0522671 +-0.0629502 0.151043 -0.0063137 +-0.0420636 0.159404 0.00394669 +-0.0438717 0.105649 -0.0205239 +0.00352724 0.10161 0.0446753 +-0.00861199 0.118019 -0.01506 +-0.0658335 0.0881117 -0.0184537 +0.00251222 0.126485 0.0307749 +-0.0485567 0.0390246 -0.0119389 +-0.0600846 0.0399274 0.0217122 +0.0128427 0.034706 0.0391137 +-0.0306178 0.0409006 -0.0300462 +-0.0635449 0.0356868 -0.00823988 +-0.0063607 0.125295 -0.00886018 +-0.025376 0.059259 0.0400414 +0.0015066 0.0490028 0.0513272 +-0.0107915 0.0798668 -0.0380291 +0.0455381 0.0540654 0.0323771 +-0.0645999 0.0347243 0.0265296 +-0.074389 0.0874223 0.0399149 +0.0147945 0.0909396 -0.0283095 +-0.0256418 0.0382997 -0.00275652 +-0.0249427 0.17123 -0.0116584 +-0.0860007 0.147303 0.0341634 +-0.00989368 0.129282 0.00314288 +-0.056803 0.119986 -0.0107265 +0.0131837 0.129339 0.0031365 +0.0204173 0.0925165 -0.0239466 +-0.0881399 0.122604 0.000302573 +-0.0687931 0.166618 -0.053004 +-0.0116307 0.0337076 -0.023716 +-0.0395047 0.0776369 0.0429957 +-0.0435015 0.086056 0.04322 +0.0313221 0.0899509 -0.0192278 +-0.0512591 0.0544504 0.0206222 +0.0450165 0.0718833 0.00186291 +-0.0240342 0.0381218 0.00683415 +-0.0643335 0.153058 -0.000307605 +-0.0553413 0.0491317 -0.00437815 +0.0461434 0.0834347 0.0111711 +0.0469552 0.0427274 0.0188429 +0.0403147 0.061632 0.0300225 +-0.0345217 0.127119 0.00425139 +-0.0560415 0.0335011 -0.000906542 +0.0458803 0.0848141 0.013166 +0.0355169 0.0713149 -0.0148173 +-0.00649249 0.0978569 0.0522238 +-0.0720202 0.152598 -0.0428872 +0.00936768 0.0509673 -0.0289075 +-0.017803 0.0813337 -0.0391893 +-0.0164921 0.101629 0.0439544 +-0.0749763 0.136928 -0.00646616 +-0.018438 0.165372 -0.011068 +-0.0749694 0.0749712 0.0333987 +-0.0344916 0.0547205 0.0381399 +-0.0252176 0.0351344 0.0519405 +-0.0785113 0.10447 -0.00758869 +-0.0837382 0.0804711 0.0245022 +0.0352492 0.043109 0.0289456 +-0.0657408 0.0353871 0.0379044 +-0.0633722 0.04322 0.0387983 +0.0187703 0.0504962 0.0444745 +0.0134519 0.128957 0.00181284 +0.00181742 0.106617 -0.0209271 +-0.069971 0.156225 0.0143836 +-0.0793623 0.0739499 0.024599 +0.0192573 0.0903239 -0.0256184 +-0.0785673 0.0716608 0.0214639 +0.0207235 0.123161 0.0287274 +-0.0694864 0.116115 0.0518347 +-0.022007 0.0754165 0.0531212 +0.00541958 0.0361021 -0.0235849 +0.0126937 0.0345417 0.0229719 +-0.0272554 0.0377383 0.0173779 +0.0183414 0.126234 0.023568 +-0.0782171 0.159705 -0.021925 +0.0319954 0.11684 0.00152318 +-0.0364949 0.0747255 0.0419725 +-0.00631217 0.0422986 0.0485312 +-0.0696892 0.0733745 -0.0120577 +-0.0574743 0.0452883 0.0435332 +0.0270163 0.115378 0.0322111 +0.0100342 0.126121 -0.00591235 +-0.0765631 0.160404 -0.0136187 +0.0104935 0.0976882 0.0488434 +-0.088546 0.102334 0.0113879 +-0.0488628 0.0600536 0.0351294 +-0.0102645 0.038442 0.0220215 +-0.0471272 0.159118 -0.00765489 +0.0282711 0.0480264 -0.0137299 +0.0106928 0.0341923 -0.0160349 +-0.0413207 0.122297 -0.0113384 +-0.0112299 0.173502 -0.0278641 +-0.0702692 0.146349 -0.0238997 +-0.0311686 0.0820079 -0.0315681 +-0.058698 0.0349789 0.0448461 +0.0225489 0.0444802 -0.0157666 +0.00650352 0.0547197 0.0529464 +0.0375985 0.10834 0.0241868 +0.026474 0.110098 0.0367031 +0.0104332 0.0344417 -0.0125223 +-0.00834994 0.0943471 -0.0340215 +-0.0726673 0.155437 -0.0339106 +-0.0830075 0.0762889 0.0105229 +-0.0846192 0.0805533 0.0214764 +-0.0805239 0.148418 0.0381727 +-0.087237 0.106355 0.0143591 +-0.0447805 0.0423866 -0.0153071 +-0.0837301 0.147364 0.00414541 +-0.0832136 0.0770175 0.0194025 +-0.0259181 0.0649186 0.0404266 +0.0449079 0.0931824 0.0151569 +0.0348585 0.0808647 0.0399076 +-0.000497657 0.066177 0.0565989 +-0.081976 0.138997 -0.000769762 +-0.0164973 0.088378 0.056467 +-0.0655061 0.041163 -0.00538315 +0.0250139 0.0449606 -0.012685 +-0.0684343 0.0667749 -0.00454154 +0.0313723 0.0597573 -0.0175925 +-0.073748 0.0805288 0.0380979 +-0.0431166 0.0378307 0.0441123 +-0.0704863 0.169511 -0.0510127 +-0.0418064 0.0884466 -0.0220226 +-0.0725566 0.0737794 0.034925 +-0.0432285 0.12305 0.0247373 +0.0537086 0.0670896 0.000808459 +-0.0318715 0.0510682 0.0382665 +0.00533718 0.124533 0.0332195 +-0.0234982 0.0988724 0.0447778 +-0.0873895 0.143261 0.0370491 +0.0450408 0.0625178 -0.00265494 +-0.0618764 0.138649 -0.0067701 +-0.0637266 0.174609 -0.0527846 +-0.0739864 0.158247 -0.0289285 +-0.0616651 0.174109 -0.0575903 +-0.0346424 0.0780819 -0.0225024 +-0.0310543 0.0337173 -0.0219116 +-0.0769455 0.154831 -0.00883158 +-0.0339952 0.0752026 -0.0244888 +0.0354333 0.111001 -0.000827134 +-0.0790203 0.0935614 -0.0105962 +-0.0879913 0.136375 0.00520661 +-0.0582272 0.048399 0.00675942 +-0.00714757 0.130278 0.00704353 +0.0114556 0.0340617 0.001148 +0.0458421 0.0876102 0.0101629 +0.00312017 0.129984 5.00643e-07 +-0.0376568 0.0591992 -0.0116433 +0.00923557 0.129984 0.00166977 +-0.0579608 0.139021 -0.00516612 +-0.0909934 0.148856 0.0221303 +-0.0611919 0.0341824 0.0259657 +-0.0917869 0.115969 0.00931507 +0.00445187 0.116712 -0.0177471 +0.00711096 0.111601 -0.019782 +-0.00341693 0.115827 -0.0167447 +0.0411288 0.0792971 0.0313687 +-0.0358185 0.0337288 -0.0209957 +-0.0304972 0.0703216 0.0396594 +-0.076218 0.0887607 0.0388797 +-0.0701244 0.0632147 0.00385793 +0.0432229 0.0888059 -0.00480108 +-0.0321931 0.123411 -0.0044713 +0.0221624 0.0959197 -0.0219723 +0.0234605 0.0367801 -0.00165856 +-0.0234711 0.183379 -0.010712 +-0.0461137 0.0368295 -0.0192985 +0.023814 0.119372 0.031074 +-0.0617151 0.0722545 -0.0157777 +-0.0697425 0.164473 -0.0161193 +-0.0700395 0.077854 0.0390736 +-0.0793237 0.108591 -0.00458021 +-0.0622625 0.155951 0.0127725 +-0.0579896 0.126711 -0.00710506 +-0.0819874 0.0788394 -0.00151395 +-0.051802 0.111349 -0.0178923 +-0.0548009 0.0547174 0.00969263 +0.0456361 0.0819814 0.00319705 +-0.0362696 0.0447516 0.0428152 +-0.0678285 0.156225 0.0151421 +-0.0441012 0.15765 -0.00916962 +-0.0698712 0.102299 -0.0142744 +-0.0434973 0.0719505 0.0423325 +-0.0385101 0.124563 -0.00772445 +-0.0720478 0.154003 -0.0409023 +-0.0415192 0.155101 0.00654483 +0.030443 0.0496674 -0.00974777 +0.0100263 0.0352289 0.0272451 +-0.0657931 0.0349145 0.0296068 +-0.00453349 0.0975685 -0.029357 +-0.0575464 0.0576229 0.00774375 +-0.0675655 0.156308 0.0210392 +-0.0625478 0.177823 -0.0603383 +-0.0164994 0.107189 0.0421238 +-0.0628199 0.164682 -0.0345962 +-0.0725695 0.162422 -0.0399552 +-0.0295698 0.0377598 0.0258888 +-0.0285577 0.048864 -0.0238529 +-0.051128 0.0487627 0.0151791 +0.0297172 0.11319 -0.0079908 +-0.0129858 0.0389757 -0.0119758 +-0.0519687 0.0514416 0.0131188 +0.00659366 0.0345497 0.005308 +0.0431201 0.0959054 0.0231686 +0.0426395 0.101487 0.00716583 +-0.0326038 0.039499 -0.0302708 +-0.022273 0.0879769 0.0544159 +-0.0501719 0.132485 0.029178 +-0.0104724 0.123683 0.0330383 +0.0158783 0.103153 -0.0212298 +-0.0380583 0.0406922 0.0433465 +-0.05672 0.0341106 -0.0113244 +0.00284082 0.0994342 -0.0233056 +-0.00189869 0.037664 0.017192 +0.00849573 0.122392 0.0350922 +-0.0911887 0.13375 0.0222165 +0.0145889 0.124413 0.0307966 +0.0365837 0.0686678 0.0370221 +0.00534141 0.0341316 0.016402 +-0.0652159 0.16242 -0.0585196 +-0.0708983 0.120893 -0.00865195 +-0.0790974 0.103427 0.0328545 +-0.0233223 0.0386973 -0.0137829 +-0.0870669 0.0909973 0.0256595 +-0.0237781 0.0389651 0.0367703 +-0.0314981 0.107032 0.0395669 +-0.0488684 0.125064 -0.00815774 +0.0188255 0.104686 -0.0188612 +-0.0214383 0.162534 -0.00657802 +-0.0923673 0.124202 0.041188 +-0.0116952 0.0383509 0.0145738 +-0.0933085 0.117399 0.0213072 +0.00147085 0.0388322 0.0258794 +0.041327 0.0986069 0.0251647 +-0.063339 0.160302 -0.0538579 +0.0235731 0.114695 -0.0116124 +-0.0828981 0.101969 0.02963 +-0.0616452 0.139553 0.0354433 +-0.0343725 0.0357923 0.047703 +-0.0451209 0.0377458 0.0446873 +-0.0920088 0.118668 0.00830639 +-0.0495672 0.135498 0.00241956 +-0.0603606 0.0633645 0.0289482 +-0.067238 0.175347 -0.0588701 +0.053058 0.0705565 0.0234346 +0.0380671 0.0821074 0.0357563 +-0.0797544 0.0720045 0.0191472 +-0.0844521 0.153452 0.0225801 +-0.0749035 0.113464 -0.00617122 +-0.0384926 0.0605846 0.0409778 +-0.075255 0.0832856 0.0380964 +-0.0198342 0.0855003 -0.0383524 +-0.0649244 0.113824 -0.0119395 +0.0421 0.0690665 -0.00478535 +-0.0615968 0.0595411 0.0052883 +0.0357976 0.0378059 0.0192762 +-0.0314223 0.0343059 -0.0206653 +-0.0805979 0.0786983 -0.00455339 +-0.0516467 0.0481272 0.0388737 +-0.0325014 0.0618008 0.0386259 +0.0188656 0.11384 -0.0146811 +0.0360105 0.106014 0.0293761 +-0.0489136 0.125469 0.0310273 +-0.0702125 0.173659 -0.0540385 +0.0100557 0.112263 -0.0189498 +-0.0643724 0.0341771 0.0147182 +-0.023212 0.165344 -0.00918469 +0.059734 0.0692161 0.0111359 +0.0164747 0.104398 0.044527 +-0.0870127 0.10633 0.011369 +0.030786 0.0765476 -0.0208061 +-0.0657333 0.121445 0.0506733 +-0.00450341 0.0703715 0.0573471 +-0.0525943 0.0544911 -0.00726112 +-0.0226202 0.181624 -0.0117104 +0.00179227 0.0340095 -0.0213712 +-0.0768516 0.103431 -0.00952853 +-0.0773369 0.105608 0.0341784 +-0.0364954 0.0987325 0.0427313 +-0.0532526 0.161216 -0.00188451 +-0.0658747 0.0981197 -0.0167177 +-0.00202406 0.126832 0.0305449 +0.0396296 0.0392572 0.0187428 +0.0114981 0.0658063 0.0534716 +-0.0660116 0.154522 0.0303582 +0.0322049 0.0871235 -0.0192744 +-0.0161934 0.116736 -0.0156361 +-0.00805531 0.101876 -0.0238922 +-0.0425065 0.0548487 0.0395533 +-0.0623557 0.152158 -0.0235797 +-0.0550956 0.0333795 -0.00606735 +0.0194036 0.123725 -0.00335403 +0.0149002 0.0348014 0.0340409 +-0.0174953 0.112701 0.0395679 +-0.0824727 0.0992304 -0.00559052 +-0.0428553 0.101381 -0.0214106 +-0.0291214 0.0621103 -0.0254198 +-0.0530392 0.146248 0.021397 +-0.0658806 0.040185 0.0344505 +0.0298766 0.0889056 0.0433386 +0.0206783 0.0361727 0.0176735 +-0.029331 0.0791866 0.0433726 +-0.0474654 0.135069 0.0155888 +-0.0798447 0.116298 -0.00419638 +0.0278259 0.115624 -0.00659973 +-0.0400692 0.157713 -0.010751 +-0.087695 0.0860952 0.016472 +0.0119148 0.0630446 0.0522963 +-0.0586388 0.0367329 -0.00984378 +-0.0545581 0.0628278 0.0306388 +-0.0904983 0.133768 0.0272133 +0.0424823 0.0958192 -0.00180898 +-0.085893 0.115781 0.0473131 +-0.0827739 0.0762807 0.0135216 +-0.0783317 0.109572 0.0415234 +-0.0535658 0.132546 0.0330634 +-0.0901834 0.114057 0.0406088 +0.0134074 0.0463149 -0.0249889 +0.0112253 0.0952809 -0.0268838 +0.0150227 0.080777 0.0534508 +-0.0278391 0.168266 -0.00883037 +-0.0698489 0.175309 -0.0448893 +-0.0895811 0.137877 0.0241855 +-0.0790004 0.100402 -0.00859092 +-0.062851 0.116991 0.0425454 +0.0239206 0.0352552 0.0228022 +-0.000501715 0.0634055 0.0567322 +0.046037 0.0806318 0.0171753 +-0.0766672 0.154399 0.00327135 +-0.0117177 0.129576 0.0183624 +-0.0885031 0.148521 0.0281728 +-0.0728479 0.14776 0.0416103 +-0.015205 0.175685 -0.0260892 +-0.082938 0.100617 -0.00458659 +0.0398543 0.102779 0.025179 +-0.0336965 0.120802 0.028215 +-0.0625742 0.17727 -0.0581696 +-0.00806953 0.0988363 -0.0267114 +-0.0560752 0.0602595 -0.0044615 +0.0597447 0.0594744 0.0191904 +-0.0106444 0.0481591 -0.0303544 +0.00351281 0.081445 0.056735 +-0.0672464 0.173921 -0.0582812 +0.00251634 0.0459065 0.0480561 +0.000471055 0.038278 0.000679374 +-0.0002129 0.122901 -0.0103152 +-0.0382613 0.0393263 0.043596 +0.00848754 0.0426921 0.0451471 +-0.0482154 0.137103 0.0123981 +-0.015727 0.0657542 -0.0377517 +-0.0282054 0.0676114 -0.0305119 +-0.0306807 0.0363386 -0.0186663 +-0.0476849 0.119711 0.0291692 +-0.0663764 0.12565 0.049733 +-0.0488788 0.134867 0.0224297 +-0.0877229 0.0888584 0.0234132 +-0.0756171 0.172473 -0.0369846 +-0.033348 0.0384446 -0.00813352 +-0.0442894 0.126542 0.0198398 +0.0235131 0.101506 -0.0194672 +0.0538716 0.0661448 0.0268494 +-0.073604 0.148628 -0.0255988 +-0.0671901 0.0335697 -0.00322908 +-0.0886344 0.0949473 0.0228281 +-0.0761608 0.175035 -0.0499961 +0.0306065 0.111866 -0.00856301 +-0.0317456 0.124703 -0.000629789 +-0.0904268 0.150188 0.0141369 +-0.0639022 0.10675 -0.0154602 +-0.0541798 0.157923 -0.00210942 +-0.00323215 0.0940338 -0.0336602 +-0.0164901 0.115444 0.0380258 +0.053298 0.0648217 0.0277585 +-0.0843615 0.0993477 -0.00259153 +-0.00674006 0.0712942 -0.0362643 +-0.0653258 0.140047 -0.00770568 +-0.00635478 0.123294 -0.010702 +-0.055158 0.0361639 -0.0112393 +0.00412979 0.113096 -0.0199676 +-0.064574 0.0418551 0.0316967 +0.0525746 0.0462075 0.0162071 +-0.0234833 0.0448815 0.0530288 +-0.071322 0.138326 0.0479203 +0.0425401 0.0986672 0.000167984 +0.0273648 0.102724 -0.0167839 +0.0332874 0.111381 0.0289227 +-0.0537039 0.0594504 0.0244709 +-0.0227345 0.0390118 0.0369431 +-0.00354236 0.0429091 0.0474905 +-0.0724136 0.156792 -0.00114359 +-0.00249623 0.0689511 0.056733 +-0.0482461 0.131793 0.0256765 +-0.0515081 0.0490357 0.0376444 +-0.0944953 0.125552 0.0212653 +0.00638447 0.0346255 0.0414585 +0.0141724 0.0940368 0.0505038 +-0.0688973 0.120914 -0.00896239 +-0.0520364 0.14934 0.0173988 +0.00422853 0.0810435 -0.0341743 +-0.0515685 0.0473635 -0.00788512 +-0.0237608 0.156715 -0.0053038 +-0.0356104 0.127425 0.0141251 +0.035299 0.113666 0.0170439 +0.0334236 0.0903004 0.0414245 +-0.0251823 0.172681 -0.0196186 +-0.08807 0.113074 0.0239452 +0.0189601 0.036126 0.0191857 +0.00788239 0.0363273 0.00580236 +-0.0173959 0.0348327 0.0487444 +-0.0878896 0.111968 0.039224 +-0.064655 0.115706 0.0452756 +0.0311169 0.0445787 0.030603 +0.0441778 0.076309 0.025099 +-0.0896358 0.0915718 0.0124456 +-0.065807 0.090969 -0.0181206 +-0.0709064 0.123821 -0.00862928 +0.00649864 0.0924086 0.053834 +-0.0704989 0.134077 0.0490714 +-0.0596081 0.0614162 -0.00289701 +0.0242732 0.0346695 0.0161217 +-0.0464984 0.101529 0.041912 +-0.0498635 0.101385 -0.021584 +0.00433106 0.0496013 -0.0292546 +0.0107427 0.041795 0.045086 +-0.0739382 0.132552 -0.00766265 +-0.0162071 0.174195 -0.0247085 +-0.0886736 0.132413 0.0428724 +0.0320792 0.05838 -0.0156698 +-0.0192343 0.038226 0.00590432 +-0.0445033 0.11527 0.0334071 +-0.0847891 0.15265 0.0254465 +-0.0933214 0.129622 0.0172404 +-0.0346417 0.056288 -0.0107606 +-0.072488 0.172225 -0.0500329 +0.0233375 0.0606402 -0.0253621 +0.0366723 0.106016 0.0285439 +-0.0276074 0.0356491 0.0527176 +-0.053407 0.152198 0.0189083 +-0.0742721 0.166608 -0.0409997 +-0.0457331 0.0753099 -0.0177194 +-0.00672552 0.0670096 -0.035497 +-0.00219357 0.131295 0.0117423 +-0.0261647 0.0620468 0.0393395 +-0.0553241 0.0335005 0.00825618 +-0.0228582 0.119091 -0.0120569 +0.0213076 0.110412 -0.0149847 +-0.0314817 0.0889488 0.0439042 +0.0313336 0.0477022 -0.006755 +-0.0386183 0.174771 -0.00621679 +0.040988 0.0392554 0.0153655 +0.0608733 0.0623548 0.014161 +-0.00841473 0.0366574 -0.0164161 +-0.0191613 0.038383 0.000326194 +-0.00880856 0.0882704 -0.0368626 +-0.0596465 0.149865 -0.00094307 +0.00994371 0.0978413 -0.0235989 +0.0455086 0.055594 0.0323303 +-0.0860233 0.102167 0.0034068 +-0.0281256 0.165243 -0.0164075 +0.00425042 0.072607 -0.0344972 +0.0235113 0.118015 0.0324132 +-0.000261091 0.0350803 0.00896105 +-0.0532978 0.147774 0.0234078 +-0.0554295 0.0433 -0.00807812 +-0.0771312 0.155572 -0.0108986 +-0.0841536 0.0790628 0.0035277 +-0.0900384 0.135039 0.0102136 +-0.0727986 0.0849862 -0.0158247 +0.0336101 0.0962478 -0.0138935 +-0.0284441 0.0732827 -0.0345293 +0.00969167 0.0357093 0.0447693 +-0.0267255 0.0380235 0.0244373 +-0.0572883 0.132547 0.0364836 +-0.0528311 0.0941603 -0.0218064 +0.0400501 0.0644468 0.0314841 +-0.036531 0.116238 -0.0149852 +-0.00649604 0.0912014 0.0567618 +0.0144842 0.101799 0.0469727 +0.00323629 0.131729 0.0108817 +-0.0308992 0.0734931 -0.0305082 +0.0172066 0.068625 0.0512164 +-0.0657497 0.0765846 -0.017077 +-0.0737602 0.111876 0.0478461 +-0.0694356 0.066827 -0.00357005 +-0.0585001 0.119809 0.0399342 +0.0441644 0.0931187 0.000177172 +-0.0843417 0.0952366 0.029868 +-0.054753 0.0782755 -0.0197234 +-0.00738705 0.0379427 -0.0155249 +-0.0910658 0.143334 0.0151805 +-0.00249685 0.08015 0.0577289 +0.0340507 0.0835544 0.0405264 +-0.0523382 0.161184 -0.00281855 +-0.0812419 0.109765 0.0353982 +-0.0582589 0.129739 0.0385905 +0.0543559 0.049285 0.0042337 +0.015086 0.0406501 0.0443863 +-0.0280294 0.0835807 0.0475884 +-0.0393811 0.128131 0.00244283 +0.0208178 0.0415166 -0.0167046 +-0.0881465 0.111869 0.0203319 +0.0179003 0.0347727 0.0238228 +-0.0656433 0.0657616 -0.0058195 +-0.0840769 0.0911454 0.0297191 +0.00624923 0.0796338 -0.0339546 +0.0328487 0.0876389 0.0423414 +0.0276661 0.034679 0.0131567 +-0.00286572 0.104506 -0.0226523 +-0.0862889 0.10771 0.0183439 +0.0408829 0.0937805 -0.00720194 +0.000164408 0.0895345 -0.0346177 +-0.0843436 0.144613 0.00514953 +-0.0675701 0.180805 -0.0555973 +0.0220024 0.0727679 0.0493999 +-0.0156461 0.186781 -0.0233704 +-0.0187078 0.0364661 -0.0182818 +-0.0254003 0.0649585 0.0413183 +0.0122459 0.0780339 -0.0313519 +-0.0555013 0.0547806 0.00866941 +-0.0521449 0.157571 -0.00396744 +-0.073564 0.156227 0.0174776 +-0.00865052 0.104822 -0.0230347 +-0.0529425 0.0516633 -0.00638853 +-0.0652396 0.0384193 0.0154218 +0.0233172 0.0809188 0.0496338 +-0.0494012 0.054529 0.0344155 +0.0222475 0.0847573 -0.0259093 +0.0413844 0.0438265 0.0277643 +-0.0818597 0.146076 0.0399402 +0.0111047 0.0345035 -0.00868495 +-0.006336 0.10011 -0.0240468 +0.0245413 0.0819542 -0.0249712 +-0.00496439 0.130958 0.0121612 +-0.00978935 0.0841125 -0.0382567 +0.00551162 0.104351 0.0429177 +-0.0384918 0.0874952 0.0437107 +0.00946556 0.123094 -0.0106511 +-0.0897739 0.137922 0.033196 +-0.0653284 0.0349129 0.0366619 +0.00350126 0.104382 0.0428343 +-0.0368171 0.04253 -0.0279956 +-0.0634962 0.0775171 0.0416907 +-0.0558399 0.0666 0.0358943 +-0.033501 0.113967 -0.0166209 +-0.0105678 0.0384807 0.0255376 +-0.0875349 0.110472 0.0163392 +-0.0221423 0.0430524 0.0536615 +-0.0485662 0.0337988 0.0271958 +-0.0681764 0.0335792 0.00196619 +-0.00165753 0.05399 -0.0314052 +0.0457818 0.0746903 0.0202853 +-0.0845781 0.148672 0.0341151 +0.0452897 0.0861791 0.0201631 +0.00831626 0.0356874 -0.00657792 +-0.0196215 0.042233 -0.0284571 +-0.0649431 0.145366 0.0395451 +-0.0704953 0.104114 0.0382884 +-0.0414996 0.117985 0.0314618 +-0.0712521 0.17555 -0.0439596 +0.0452514 0.0931962 0.00916141 +0.00133085 0.058325 -0.0325937 +-0.0620033 0.158406 -0.0355965 +0.030344 0.1101 0.0335023 +0.0463602 0.0692197 0.00260588 +0.0444762 0.0945372 0.00319063 +-0.0491293 0.0430398 0.0442413 +-0.0789669 0.172206 -0.0419919 +0.0106503 0.130383 0.00504386 +-0.0484141 0.113756 -0.016334 +0.00450584 0.0547654 0.053433 +0.0441531 0.0720542 0.000197496 +-0.0134923 0.120989 0.0351213 +-0.0907438 0.135107 0.0202099 +-0.0590287 0.0481317 0.00366474 +0.0364319 0.108205 -0.00282023 +0.0178615 0.122874 -0.00643626 +-0.0356427 0.112876 -0.017464 +-0.0668607 0.154942 0.00387089 +-0.0486527 0.162759 0.00599863 +-0.00949915 0.105857 0.0435217 +-0.0615042 0.121243 0.0426924 +-0.0784762 0.0731416 -0.000473316 +-0.0740322 0.156054 0.0216877 +-0.0847959 0.101901 0.0272869 +-0.0596957 0.14074 -0.00502874 +-0.050497 0.0987878 0.0435099 +-0.071801 0.0745407 0.0361884 +-0.0549619 0.14242 0.0292765 +-0.0427321 0.0739589 -0.0183224 +-0.0508117 0.0354248 -0.0125858 +-0.0642011 0.0410429 0.0143098 +-0.0132685 0.101107 0.0437078 +-0.0475187 0.0790945 0.0436556 +0.0209941 0.0373175 -0.00464913 +-0.0204991 0.100239 0.044421 +-0.0684679 0.110537 0.0393979 +0.0243777 0.124503 0.0143821 +-0.0830368 0.0762381 0.00350806 +-0.073622 0.0747015 -0.00970199 +-0.0461368 0.13275 0.0116924 +0.0104091 0.0389479 -0.0231008 +0.0155004 0.116786 0.0363781 +0.0387891 0.096727 0.0316453 +0.0196906 0.074125 0.0513576 +-0.0225582 0.0383546 -0.00218286 +0.0487458 0.0724992 0.00846572 +-0.0668418 0.138273 0.0438208 +-0.0309771 0.0339917 0.0163773 +0.0411176 0.0661976 -0.00575682 +-0.0229076 0.0852723 0.0551257 +0.000828067 0.123861 -0.00936286 +-0.0250326 0.0621165 0.0410328 +-0.0651714 0.128382 0.0462127 +-0.0434333 0.15941 0.00551467 +-0.0264854 0.0348879 0.0467436 +-0.0628107 0.150584 -0.0245802 +-0.0123081 0.181626 -0.0249909 +-0.00919366 0.172678 -0.0237455 +0.0126063 0.0576596 0.0514859 +-0.0332159 0.0709306 -0.0214641 +0.0240158 0.0658883 0.0452055 +-0.0660765 0.124251 0.0501642 +-0.0588552 0.0351368 -0.0102919 +0.0124134 0.0346609 0.020994 +0.0122384 0.0644368 0.0527864 +0.0452304 0.0763569 0.00121116 +0.0242611 0.0448626 -0.0136813 +-0.0304238 0.12007 0.0279522 +0.0145126 0.0347575 0.026768 +-0.0217663 0.065545 -0.0358558 +0.00816067 0.125635 -0.0073679 +0.0183075 0.0679765 -0.028974 +-0.0180555 0.0909221 -0.0366017 +0.00824317 0.0602927 0.0539848 +-0.0687967 0.0894213 -0.0168337 +-0.0450098 0.146255 0.00342574 +-0.0335022 0.0661629 0.0402747 +-0.0781465 0.155117 0.0246877 +0.00450914 0.0758818 0.0564153 +-0.0135396 0.0366033 -0.0173816 +0.045728 0.077798 0.00320493 +-0.0913745 0.142001 0.0211607 +-0.0284862 0.102933 0.0423265 +-0.0302445 0.16108 -0.00171322 +0.0327554 0.116907 0.00609585 +0.0201031 0.0379621 0.0410367 +-0.090178 0.113449 0.0375353 +0.0422255 0.0887323 -0.00780894 +-0.0632995 0.045657 0.000708444 +-0.0344955 0.0889014 0.0434521 +-0.0735138 0.0874308 0.0404487 +-0.081144 0.11 0.0405445 +-0.046701 0.144949 0.00345496 +0.0239825 0.114006 0.0348506 +0.00951792 0.0799496 0.0550675 +-0.0589753 0.0343808 0.0315144 +-0.0715764 0.0724969 0.0344898 +-0.0763465 0.151411 -0.00788806 +0.0476241 0.0444058 0.00228058 +-0.0865319 0.0910336 0.0265354 +-0.0761893 0.0686573 0.0192806 +-0.0738377 0.169377 -0.0450494 +-0.013497 0.089796 0.0568243 +-0.003677 0.129286 0.0256231 +0.00334505 0.0372684 -0.00154693 +0.0285394 0.0735396 -0.0227021 +-0.067513 0.132633 0.0463034 +0.0459145 0.0862168 0.00717824 +-0.0631406 0.152896 -0.00931447 +-0.0777879 0.113218 0.0476364 +-0.023707 0.0340979 -0.0208155 +-0.0144671 0.110884 -0.0194361 +0.0102739 0.0667155 -0.0310192 +-0.00350236 0.0842813 0.0574606 +-0.0664798 0.0832826 0.043443 +-0.0635622 0.0403137 0.0257086 +-0.0426942 0.0666296 -0.0154091 +-0.017221 0.187225 -0.0211553 +-0.0336762 0.062222 -0.0135529 +-0.0673972 0.0641749 0.025006 +-0.0740248 0.149858 -0.0328754 +-0.0467235 0.128128 0.0253508 +-0.0262045 0.163884 -0.00647025 +-0.0271883 0.118982 0.0306038 +0.033772 0.0543003 -0.00971113 +-0.0758953 0.12228 -0.00740649 +0.00448236 0.11415 0.0407558 +-0.0698932 0.103728 -0.0136756 +-0.0567617 0.0782351 -0.019665 +0.0543638 0.0534389 0.000229046 +-0.081811 0.11456 0.047449 +-0.0565132 0.053486 0.0056729 +-0.057003 0.128342 0.0386502 +-0.0664962 0.0370022 0.0293944 +-0.0624918 0.101519 0.0421076 +-0.0687869 0.155336 0.00316719 +-0.0685122 0.141137 0.0449382 +-0.0527211 0.0709092 -0.0154358 +-0.00549985 0.0703921 0.057296 +-0.0709113 0.107952 -0.0112859 +0.00912605 0.108716 -0.0196568 +0.0361188 0.0794771 0.0382118 +-0.0588731 0.101172 -0.0189069 +-0.068257 0.129831 0.0487832 +0.0374605 0.0754022 0.0365814 +-0.032324 0.161031 -0.00122654 +0.0285746 0.0351013 0.0166057 +0.0394117 0.0870933 -0.0127933 +0.0113423 0.0644371 0.0532354 +-0.0583019 0.0447396 0.0435847 +-0.00749863 0.0773617 0.0576592 +-0.050194 0.116459 -0.0151638 +-0.0481437 0.0545922 0.0360102 +-0.0104704 0.100279 -0.0242341 +-0.0347529 0.111555 -0.0180951 +-0.0155011 0.120965 0.0341268 +-0.0784442 0.154274 0.027518 +0.0120599 0.0739551 0.0543847 +-0.0633352 0.0436031 0.0119653 +0.0217763 0.115313 0.0351727 +-0.0415089 0.165252 0.00421093 +0.0335736 0.0700381 0.039723 +0.00251112 0.0647983 0.0566425 +-0.0654261 0.0391693 0.0381077 +-0.0695564 0.114278 0.0502908 +-0.00162211 0.0369274 0.0160989 +-0.058966 0.123797 -0.00809452 +-0.0942641 0.126921 0.0212556 +-0.0335104 0.175675 -0.00315318 +-0.0368415 0.0943464 -0.0233446 +0.0133357 0.128238 -0.000223601 +0.00322397 0.0768846 -0.0351052 +0.00583724 0.038604 -0.0097514 +0.0244991 0.0390622 0.0333159 +0.039204 0.0699354 0.0337973 +-0.00749309 0.122405 0.0352331 +-0.0204932 0.0624346 0.0477982 +-0.0366651 0.0353042 0.023032 +0.0167127 0.0887461 0.050636 +-0.0697357 0.167099 -0.0218834 +0.0364696 0.0632797 0.0368445 +-0.0745038 0.141441 0.0470955 +-0.0621205 0.0458041 0.0366793 +-0.0544906 0.0820201 0.0451936 +-0.0645123 0.172574 -0.0485643 +-0.0421309 0.128083 -3.62159e-05 +0.0281636 0.121218 0.0186511 +-0.0121987 0.171236 -0.0257581 +-0.0281113 0.0605968 -0.0274147 +-0.0631879 0.0449558 -0.00115255 +-0.056884 0.0955743 -0.0213395 +-0.0516987 0.131736 -0.00321408 +0.00826283 0.110977 0.0402103 +-0.0738401 0.154086 -0.0269016 +0.00525204 0.071179 -0.0340737 +-0.0710521 0.173649 -0.0530415 +-0.0508226 0.162642 -0.00385759 +-0.0802179 0.141741 -0.00280512 +-0.0104908 0.12238 0.0346088 +-0.082839 0.145958 0.00218243 +-0.0764995 0.134472 0.0515165 +0.0572674 0.0552579 0.0228777 +-0.0459192 0.038241 -0.0182827 +0.0212995 0.0664627 -0.0275106 +-0.00266999 0.131274 0.0130017 +-0.0615996 0.159996 -0.0335919 +-0.0172476 0.12413 0.0281151 +0.0257469 0.104744 0.0391433 +0.033213 0.112692 0.0276861 +0.0156033 0.0352036 -0.0174539 +-0.030256 0.0608147 -0.0214135 +-0.0554996 0.0746996 0.0418498 +0.0250243 0.0618819 0.0448807 +0.0333333 0.0528011 -0.00875184 +0.0462789 0.0820452 0.011174 +0.0413782 0.0519867 -0.00685663 +-0.0228771 0.11806 -0.0129657 +-0.0608849 0.0381036 0.0449409 +-0.0255027 0.103002 0.0430099 +-0.0102615 0.128766 0.00159795 +-0.0140304 0.0389318 -0.0121434 +0.0242826 0.0691154 -0.0252241 +-0.0262141 0.0383199 -0.0177378 +0.000134491 0.116503 -0.0174981 +-0.0556551 0.0575 -0.00342108 +-0.0641179 0.115013 -0.0114251 +-0.0523454 0.059725 0.0287459 +-0.039493 0.0888698 0.0432118 +-0.0635876 0.0600882 0.0187607 +-0.0527647 0.138519 0.0263974 +-0.0421778 0.150669 0.00550662 +-0.0898169 0.147438 0.0111767 +-0.0440117 0.149183 0.00634807 +-0.0124981 0.0842783 0.057419 +-0.041501 0.0888244 0.0425932 +0.0390954 0.0814754 -0.0127535 +-0.00978632 0.0812687 -0.0379822 +-0.0143122 0.127128 -0.000614565 +0.043146 0.0650339 -0.00117659 +0.0508787 0.0465582 0.0223162 +-0.0187679 0.0341854 -0.027695 +0.0104088 0.0403968 -0.0232872 +-0.0615714 0.111062 0.0370307 +-0.0574772 0.0344195 0.038759 +-0.029988 0.0381577 0.0326274 +-0.0293835 0.0775974 -0.0345936 +-0.0174998 0.115454 0.0379182 +-0.0492034 0.0336154 -0.00143623 +-0.0160718 0.124871 -0.00420428 +0.0153397 0.120197 -0.0115352 +-0.0588103 0.157344 0.00530008 +-0.0448304 0.0956436 -0.0219722 +0.0199962 0.120682 0.0326204 +0.050389 0.0482108 0.0251806 +0.0208954 0.116644 -0.0117151 +-0.079388 0.147286 -0.00182539 +-0.0747645 0.0849032 -0.0147477 +-0.0505016 0.107064 0.0390734 +-0.0174992 0.03427 -0.0197565 +-0.01005 0.166619 -0.017705 +-0.0581312 0.0342101 0.0265873 +-0.0613803 0.17096 -0.0575947 +-0.0304965 0.0917653 0.0441169 +-0.0458806 0.10564 -0.0201801 +0.0202101 0.0833915 -0.0271395 +0.0323169 0.0376319 0.0223694 +-0.0223063 0.0380908 0.0216787 +0.035616 0.10962 -0.00284805 +0.0484836 0.0582148 0.031165 +-0.0809138 0.125107 -0.00520991 +-0.00566591 0.0540919 -0.0326394 +-0.00149662 0.114206 0.0415504 +-0.0263202 0.0930635 -0.029586 +-0.0680426 0.110046 0.0381289 +0.0249883 0.12025 -0.003603 +-0.0736149 0.155479 0.0262237 +-0.0299566 0.122268 0.0236125 +0.0238471 0.107154 -0.0155051 +-0.0566015 0.0451895 0.0246815 +-0.028491 0.0987621 0.0434122 +-0.0338535 0.0870951 -0.024854 +-0.0478322 0.0956344 -0.0220665 +-0.0226614 0.177177 -0.0135831 +-0.0810787 0.154935 0.0192662 +0.0439336 0.0428821 0.0236685 +-0.0114115 0.128814 0.0228458 +-0.0417827 0.0840916 -0.0212196 +0.0249862 0.118037 0.0310154 +-0.0641215 0.0336259 -0.00810847 +-0.0795112 0.081834 0.0339273 +-0.041505 0.119362 0.0299569 +-0.0033398 0.119986 -0.0131833 +0.0411805 0.0745986 -0.0077775 +-0.0446675 0.0636475 -0.0137193 +0.00937092 0.0937948 -0.0292997 +0.0415042 0.104246 0.00816492 +-0.0792333 0.169423 -0.0379787 +-0.0414888 0.0437926 0.0421195 +-0.00148881 0.0760516 0.0586512 +-0.0126769 0.0541386 -0.0335166 +-0.00577674 0.0385885 0.0246132 +-0.0394947 0.0676998 0.0417669 +0.0147262 0.129115 0.00511474 +-0.0045144 0.0774415 0.0584948 +0.0334512 0.0365216 0.00521608 +-0.0662857 0.0625946 -0.00141881 +-0.0659868 0.0418098 -0.00430732 +-0.0485691 0.0460686 -0.00963735 +0.0269239 0.0493817 -0.018692 +-0.0652895 0.175332 -0.0607504 +0.0558431 0.0722822 0.0186151 +0.0389971 0.039341 0.0203664 +-0.0252734 0.05785 0.0399799 +-0.0537245 0.0723552 -0.016258 +-0.0214963 0.104399 0.0429755 +-0.0649507 0.13395 0.041174 +-0.0641915 0.179229 -0.0572988 +-0.00649249 0.110023 0.0430195 +-0.0925801 0.120153 0.0312943 +0.0364682 0.111067 0.00216795 +-0.0487462 0.118344 0.031163 +0.0272987 0.047751 0.0374572 +-0.0235246 0.079724 0.0545007 +0.044563 0.0819287 0.0241608 +0.018083 0.0887399 0.0491141 +0.0180337 0.115273 -0.0142355 +-0.0838753 0.135332 0.0479212 +-0.0707318 0.154624 0.0301689 +-0.0897339 0.0916034 0.0174376 +-0.0487526 0.0782553 -0.019094 +-0.021696 0.0567795 -0.0319795 +-0.0524624 0.139899 0.000243693 +-0.016317 0.0384896 0.0261516 +-0.0172081 0.172701 -0.0233314 +-0.0664965 0.109745 0.0377695 +-0.0117557 0.0345134 -0.025836 +-0.000654571 0.0391799 -0.00969942 +0.00820345 0.083757 -0.0326005 +-0.0458982 0.107069 -0.0194756 +-0.0567459 0.15948 0.00480369 +0.00650779 0.0575337 0.0533257 +0.037787 0.0377202 0.0142753 +0.00846774 0.13132 0.015646 +-0.0475009 0.0425468 0.0439593 +-0.0766415 0.100814 0.0361238 +-0.028614 0.0408765 -0.0296027 +0.00929873 0.115842 -0.01682 +-0.0828745 0.119161 -0.00328383 +-0.0769895 0.0790529 0.034321 +-0.0878006 0.151251 0.0245374 +0.0208653 0.122279 0.030221 +-0.00768551 0.130297 0.0183702 +-0.0545511 0.0430136 -0.00860983 +0.030217 0.0843227 -0.0201565 +-0.0467665 0.152145 0.00944802 +-0.0631219 0.156103 0.0153645 +-0.0681832 0.155264 -0.0517309 +0.0142805 0.0345676 -0.0138073 +-0.0664934 0.0624679 -0.000297249 +-0.0641994 0.16384 -0.059407 +0.0464327 0.0769932 0.014129 +-0.041507 0.0591281 0.0403212 +0.0223695 0.0993436 -0.0211483 +-0.088603 0.087513 0.0164636 +0.00038562 0.0392239 -0.00953586 +0.0270604 0.0795391 0.0462139 +-0.0684865 0.0611195 0.0150424 +0.0105195 0.053345 0.0519069 +-0.0620106 0.15528 -0.0315878 +-0.00991465 0.0385501 0.00204441 +-0.0151984 0.171233 -0.0237028 +-0.026193 0.171192 -0.0190186 +0.0404914 0.0541681 0.032094 +-0.0115119 0.181449 -0.0261319 +-0.027122 0.166756 -0.0173778 +0.0338583 0.105892 -0.0101458 +-0.0671444 0.0628365 -0.000338348 +-0.0788571 0.120751 -0.0060883 +-0.0525645 0.0417313 -0.0101531 +0.0278652 0.0996344 -0.0174729 +-0.0681363 0.122845 0.0524474 +-0.0228108 0.0770465 -0.0385748 +-0.0135961 0.12464 -0.00600832 +-0.00365126 0.0525899 -0.0316543 +-0.068996 0.139931 -0.00789046 +-0.0310262 0.153728 -0.00354608 +-0.0497211 0.131062 0.0298847 +-0.00109314 0.103948 0.0441727 +-0.0204702 0.16083 -0.0136222 +-0.0865394 0.109089 0.0183378 +0.0400949 0.095337 0.0300286 +-0.0693797 0.128452 0.0506772 +-0.0438868 0.107083 -0.0199439 +-0.0470477 0.150201 -0.00445632 +-0.0370064 0.121579 0.0285082 +0.0198288 0.120602 -0.00797301 +-0.0549804 0.0334872 0.0101333 +0.00782186 0.127915 -0.00384433 +-0.0495314 0.12548 0.031876 +-0.0926082 0.117405 0.0243082 +-0.0215209 0.0382567 0.0252967 +0.00181128 0.125691 -0.00735123 +-0.0771897 0.117737 0.0516815 +-0.0554751 0.0519418 -0.00338574 +-0.0771699 0.154422 0.00455736 +-0.00649896 0.092559 0.0563419 +-0.0704303 0.164039 -0.0149268 +-0.036643 0.118048 -0.0128637 +-0.0535056 0.136701 0.0296589 +-0.0594928 0.0761776 0.0424443 +-0.00649656 0.0856337 0.0569558 +-0.0586618 0.0637687 0.0307411 +-0.0650964 0.155112 0.00596226 +-0.0626129 0.0371673 0.0184653 +0.0330114 0.107386 0.0320976 +0.0333812 0.0490928 -0.00645546 +-0.069711 0.1744 -0.043385 +-0.00744712 0.0961017 -0.0318028 +0.0413373 0.0392631 0.0117259 +-0.0487556 0.137056 0.00741027 +-0.0845701 0.112449 0.0449336 +0.0531449 0.0608429 -0.00288049 +-0.0358592 0.10284 -0.0213952 +-0.0778493 0.11932 -0.00645768 +0.0172333 0.0750251 -0.0287502 +-0.0195083 0.11546 0.0373373 +-0.0542618 0.0348321 -0.0120282 +-0.0344386 0.125663 -0.00162003 +-0.0690003 0.160066 -0.00858817 +0.0285895 0.0979793 -0.017709 +0.015268 0.0341755 -6.02454e-05 +-0.012432 0.12921 0.00653602 +-0.0222335 0.171216 -0.0204735 +-0.0656059 0.0615317 0.0026003 +-0.0324965 0.174231 -0.00238999 +-0.0398336 0.0384391 -0.0280596 +-0.0513902 0.122634 0.0344378 +-0.0735123 0.142806 0.0460464 +-0.0703661 0.16678 -0.0206717 +0.0128439 0.0343776 -0.0158182 +-0.074941 0.152735 -0.0189 +-0.0785348 0.0771858 -0.00655705 +0.0347176 0.114447 0.00679736 +-0.0192836 0.0385916 0.0308544 +-0.00226925 0.130756 0.00454173 +-0.0622845 0.161545 -0.0405978 +-0.0687671 0.0900946 0.0427048 +-0.028252 0.050761 -0.0234049 +-0.0818245 0.107456 0.0283887 +0.0216927 0.103078 -0.0191449 +-0.0539655 0.0364915 -0.0115887 +-0.0577688 0.142406 -0.00278963 +0.0347443 0.08354 0.0397721 +0.041088 0.0912985 0.0296287 +0.0209984 0.0578395 0.0478214 +-0.0607897 0.155834 0.0118473 +-0.0427999 0.167662 -0.00952768 +-0.0135045 0.0870342 0.0571061 +0.0551275 0.0637038 0.000299703 +-0.0500088 0.124901 -0.00796654 +0.040891 0.0917758 -0.00909975 +-0.057302 0.152908 0.030569 +-0.0490908 0.140152 0.0103957 +-0.062514 0.0399436 -0.00751704 +-0.0901142 0.14065 0.0241685 +-0.0614977 0.0847334 0.0442553 +0.00401707 0.125848 -0.00755459 +-0.0295217 0.0402041 -0.0298306 +-0.0770884 0.0866038 -0.0125752 +0.00250242 0.0441898 0.0459568 +-0.0884166 0.13498 0.0042424 +-0.0144984 0.11138 0.0412273 +-0.0543527 0.155034 0.0127444 +-0.0485461 0.135607 0.0194861 +-0.0763654 0.155962 0.0179624 +0.0194741 0.0351845 0.0201392 +0.0604235 0.0678625 0.0131519 +-0.0147437 0.0383723 0.00849375 +0.0123077 0.035562 0.0436453 +-0.0878555 0.0861109 0.00948006 +0.0461918 0.0820393 0.0121748 +-0.0376617 0.0344352 0.0359896 +-0.0640313 0.13251 0.040793 +0.00650251 0.122426 0.0350167 +0.046473 0.0747304 0.00699979 +-0.090578 0.13228 0.00723516 +-0.0665138 0.0986787 0.0417758 +-0.0753611 0.0724331 0.0302407 +-0.0737585 0.160179 -0.00884095 +-0.0875779 0.102333 0.0213648 +-0.0213902 0.0905176 -0.0361974 +-0.0663379 0.132604 0.0444522 +0.0420458 0.0817019 -0.00677657 +-0.0739471 0.131099 -0.00783391 +-0.00249367 0.0925505 0.0559214 +-0.0748382 0.149925 -0.0278668 +-0.0734967 0.126028 0.0530224 +-0.0386362 0.117281 -0.0140679 +0.00347668 0.0964809 0.0526894 +0.0453833 0.074968 0.00220665 +0.012072 0.11405 -0.0168987 +-0.0774663 0.168085 -0.0299733 +-0.0534988 0.0761753 0.0426023 +-0.0233682 0.126286 0.00541909 +-0.00704598 0.0392708 0.0363567 +-0.0791658 0.0990564 -0.00863296 +-0.0464518 0.0945568 0.0436355 +-0.0404194 0.128239 0.00205017 +0.0393898 0.107905 0.00701069 +-0.0398611 0.0338561 -0.0163385 +-0.0665222 0.156255 0.0214077 +-0.0672076 0.171872 -0.0410051 +-0.0708261 0.144835 -0.0182015 +-0.0650483 0.0701635 0.0361166 +-0.00764186 0.11082 -0.0214014 +-0.0836837 0.151385 0.0303528 +-0.0496912 0.162854 0.00564102 +-0.0114821 0.125053 0.0306553 +-0.0713615 0.158186 -0.0419305 +-0.0348112 0.0336186 -0.0263013 +-0.0652015 0.0334423 0.00269659 +-0.00682217 0.0390777 -0.0108403 +-0.0745121 0.155307 0.0054919 +0.00849016 0.0441134 0.0451901 +-0.041821 0.0914074 -0.0230213 +0.0243874 0.048835 -0.0205112 +-0.0578612 0.158406 0.00308521 +-0.0781467 0.116431 0.0503206 +0.0429791 0.071952 -0.00379352 +-0.00196689 0.131088 0.00752604 +-0.0728984 0.156837 -0.0329194 +0.00543206 0.119469 -0.0147017 +-0.00442631 0.0386612 0.00487339 +-0.089531 0.0983552 0.0174009 +0.00679264 0.0379024 -0.00704418 +-0.0255688 0.0356598 0.0531386 +-0.0343151 0.0794495 -0.0245241 +-0.0124944 0.0870249 0.0570339 +-0.0710693 0.155098 0.0285743 +-0.0663511 0.0350877 0.0310837 +0.00349789 0.122445 0.0347995 +-0.0414975 0.045132 0.0414403 +0.0348194 0.0365264 0.00732462 +-0.0740113 0.141343 -0.00688783 +-0.0303332 0.0706347 -0.0294852 +0.0503042 0.0691243 0.0253774 +-0.0701319 0.158154 -0.0479233 +-0.0358242 0.0915039 -0.0239402 +-0.0645394 0.0596403 0.015406 +0.0213135 0.0650138 -0.0271409 +0.0262112 0.0873747 -0.0229809 +-0.052671 0.112615 -0.017101 +-0.0592898 0.045994 0.0417021 +-0.0717164 0.163822 -0.0439567 +0.0178664 0.127935 0.017674 +-0.0655034 0.108381 0.0382088 +0.0278762 0.0942373 0.043974 +-0.0457869 0.0855328 -0.0217062 +-0.0643109 0.169365 -0.0428818 +0.0100266 0.0346111 0.0241784 +-0.00361434 0.0341476 -0.0187856 +-0.0389438 0.047744 -0.0146455 +-0.0676963 0.0648397 0.0261272 +-0.0374998 0.0691046 0.0417769 +-0.0568378 0.0613597 0.0260949 +-0.0369296 0.036554 0.0451414 +-0.0284901 0.0688983 0.0393825 +-0.0534824 0.0340932 0.0259063 +-0.0631168 0.15992 -0.0455978 +-0.0444353 0.0335419 -0.0188134 +-0.0168224 0.0960286 0.0515795 +-0.076233 0.145832 -0.00587217 +-0.0231748 0.0709692 0.0487695 +-0.0104382 0.0354056 -0.0175403 +-0.0897878 0.136555 0.0351995 +-0.0717761 0.0344583 0.000444464 +0.0353682 0.103387 0.0319873 +-0.00977607 0.0770524 -0.0379416 +0.00551406 0.0375423 0.0260562 +-0.00350144 0.0675505 0.0564719 +-0.0564947 0.102955 0.042036 +-0.061361 0.0336079 0.00692461 +0.00850062 0.121038 0.0360118 +0.0202826 0.0693621 -0.0284085 +-0.00908512 0.169637 -0.0217386 +0.0255848 0.123614 0.0162626 +0.0234098 0.0871372 -0.0242525 +0.0269727 0.112042 -0.0107557 +0.0262833 0.0935743 -0.0210485 +-0.059 0.0412164 0.021703 +0.0345357 0.0373492 0.0194302 +0.0530102 0.0462982 0.0132036 +-0.00365111 0.0511553 -0.0312289 +-0.0591025 0.0338635 0.0178635 +-0.0144888 0.0673806 0.0542261 +-0.0416194 0.0336308 -0.0257822 +-0.0186097 0.0407857 -0.0282477 +-0.0298888 0.0474725 0.0462905 +-0.00306646 0.0386027 0.0233477 +0.0330707 0.110451 -0.00703014 +0.0146846 0.037467 0.0442233 +-0.0390505 0.154795 -0.00905663 +-0.0306702 0.0891071 -0.0265975 +-0.090498 0.131069 0.0362301 +-0.0189866 0.10628 -0.022556 +-0.0125142 0.181139 -0.0289621 +-0.0236648 0.0522261 -0.0284113 +-0.0564969 0.100177 0.0431307 +-0.0314961 0.10429 0.0412052 +-0.0509168 0.0335668 6.7085e-05 +-0.0773495 0.081875 0.035997 +-0.0834254 0.141805 0.00220396 +0.00104126 0.108173 -0.0205653 +0.0181741 0.0988563 -0.0226017 +-0.0797776 0.115912 0.0485816 +-0.0816869 0.0734846 0.011537 +0.00150486 0.0856703 0.0573817 +-0.00849476 0.0745791 0.0575173 +-0.00549893 0.0939194 0.0556385 +0.0221626 0.0490425 0.0405889 +0.0363661 0.0873006 -0.0164353 +0.0491174 0.0712134 0.0219878 +-0.079214 0.155524 0.0184351 +-0.0654627 0.0598015 0.0150426 +0.0330982 0.0626311 -0.0167961 +-0.0839336 0.126519 -0.00402298 +-0.00950667 0.125161 0.0310898 +0.0292092 0.0563773 0.0403225 +-0.0273861 0.0720614 0.0416635 +-0.0647467 0.0379255 0.0402853 +-0.0521847 0.140082 0.0224024 +-0.0276164 0.0422898 -0.0293674 +0.0360108 0.100867 -0.0107814 +-0.0946899 0.124172 0.0202666 +0.0446233 0.0903218 -0.000806954 +-0.00230838 0.0348204 0.04129 +0.00391726 0.126651 -0.0064175 +-0.0633881 0.0336212 0.00649796 +0.00838362 0.046349 -0.0258656 +-0.0577252 0.156918 0.00853143 +-0.0693669 0.17099 -0.0332104 +0.0249955 0.0347512 0.0143719 +0.00961895 0.12141 -0.0128393 +0.021665 0.0416371 -0.0126942 +-0.0521438 0.0568294 0.0272279 +-0.0628733 0.0996403 -0.0179913 +0.0218834 0.0415901 -0.0107198 +-0.0546838 0.0435714 0.0206922 +-0.0176301 0.183064 -0.0184359 +-0.00750517 0.0471136 0.0478292 +-0.0520933 0.154615 -0.00405641 +-0.0865732 0.0860822 0.023453 +-0.0665787 0.163768 -0.0579853 +0.00636801 0.0479975 -0.0276935 +0.0368613 0.0587703 -0.00975684 +-0.0879266 0.10368 0.0183585 +-0.016623 0.0450359 -0.0278307 +-0.0895401 0.135156 0.0272131 +0.000356348 0.0496808 -0.0306188 +-0.0836962 0.138005 0.0462469 +0.0441945 0.077668 0.0251701 +-0.0685147 0.0930476 0.0422841 +-0.0232574 0.100051 -0.0240138 +-0.03748 0.0548048 0.0392179 +-0.0293599 0.15815 -0.0119938 +-0.021522 0.0336815 -0.0237529 +0.00128503 0.0655494 -0.0343406 +-0.0861178 0.0953813 0.000442214 +0.0350885 0.099465 0.0350983 +-0.0779853 0.13835 -0.00526914 +-0.0857179 0.124363 0.0486993 +-0.0309707 0.163858 -0.00458082 +-0.0722468 0.174258 -0.0400013 +-0.0149026 0.105901 -0.0222117 +-0.0673665 0.165482 -0.0209987 +-0.0876017 0.152029 0.0126504 +-0.0220763 0.0666765 0.0478151 +-0.0624814 0.094591 0.0443423 +-0.0196147 0.0379102 -0.0280301 +-0.0346582 0.0422066 0.0469558 +-0.0199036 0.0739897 0.0538964 +-0.00877818 0.0387104 -0.00343461 +0.000535895 0.0548656 0.0545076 +-0.0454881 0.10014 0.0423159 +-0.0404927 0.0958661 0.0421915 +-5.87354e-05 0.100974 -0.0229378 +-0.0283024 0.0362399 -0.0299084 +0.026308 0.0822369 0.0469135 +-0.06337 0.156813 -0.0136043 +-0.0624231 0.0357528 0.0196573 +-0.0709978 0.0698591 0.0316215 +-0.00550273 0.0661441 0.0562254 +0.00539692 0.0418924 -0.0240197 +-0.0711187 0.0642492 0.0206358 +-0.0614458 0.0606683 0.0222701 +0.0189142 0.0353585 0.00519133 +0.0315596 0.0497964 -0.00774264 +-0.0548596 0.0462919 -0.006395 +0.0010398 0.0392387 0.0326514 +0.0448141 0.0889533 0.0211601 +-0.0898897 0.136442 0.013225 +0.0409408 0.0873455 0.0311847 +-0.0866496 0.106304 0.00937201 +0.0315171 0.118424 0.0085036 +-0.091229 0.14471 0.0161551 +-0.00263717 0.12924 0.026005 +0.0142425 0.0645148 0.0521595 +-0.0509259 0.0571242 0.0316152 +-0.0585706 0.155353 0.0213449 +0.0242207 0.111888 -0.0125803 +-0.0305755 0.0788685 0.0415824 +-0.0664528 0.145477 0.0410093 +-0.00432524 0.0423738 0.047881 +-0.0434528 0.12491 0.0216806 +-0.0610445 0.045667 0.0306816 +-0.0148175 0.0855384 -0.0388203 +0.0594886 0.0594575 0.00616841 +-0.0740871 0.156873 -0.0259173 +-0.0414785 0.105663 0.0400022 +-0.0376995 0.0680509 -0.0154542 +-0.0698935 0.122364 -0.00881274 +-0.00848477 0.0718045 0.0573713 +-0.0394932 0.127549 -0.000886358 +-0.0856022 0.136615 0.0453504 +-0.0889467 0.143422 0.0321606 +-0.0738723 0.109242 -0.00905672 +-0.0222267 0.0906414 0.0528718 +0.00551724 0.0661119 0.0558057 +-0.0588983 0.0582416 0.00880815 +0.0225876 0.0388978 0.0383164 +0.0022443 0.0974458 0.0519249 +-0.056455 0.12554 0.0394323 +-0.00949777 0.091187 0.0566315 +0.00149085 0.103013 0.043912 +-0.00374904 0.0712712 -0.0357267 +-0.0394946 0.119701 -0.0126173 +-0.0631669 0.152168 -0.0312981 +-0.0139477 0.0625843 0.0539847 +-0.0604937 0.100137 0.0425915 +-0.0749718 0.138395 -0.00644263 +0.00624486 0.0401371 0.0456279 +0.0193551 0.0475975 0.0417872 +-0.0303971 0.0890708 -0.0275789 +0.0196022 0.0462781 0.0421275 +0.0317544 0.0632771 0.0405733 +-0.0662966 0.156977 -0.00759157 +0.0183734 0.0506657 -0.0252113 +0.0404388 0.0427247 -0.00185446 +0.0115151 0.105777 0.0436811 +-0.0301364 0.0349235 0.0476426 +0.0254917 0.0369057 0.0252691 +-0.0850483 0.109026 0.0223524 +0.0157867 0.112048 -0.0167369 +0.0360751 0.0370336 0.00715793 +-0.0781026 0.0818813 0.0353359 +-0.00650962 0.0773868 0.0579538 +-0.0494324 0.0586474 0.0343285 +0.0112135 0.116429 0.0374582 +-0.0555782 0.159581 0.0063787 +-0.0454954 0.160804 0.00677344 +-0.0709975 0.139911 -0.00751202 +-0.0547852 0.0339346 -0.0120065 +-0.079504 0.128859 0.053141 +-0.0155349 0.0459646 0.0502157 +-0.0704857 0.116111 0.0520944 +-0.0454716 0.0404727 0.0442216 +-0.0890267 0.148493 0.027289 +0.0192952 0.126057 0.00111502 +0.00542039 0.0392223 0.0299552 +-0.0509634 0.152153 0.0121451 +0.0432798 0.100122 0.00916351 +-0.0722295 0.16736 -0.0213426 +-0.0311459 0.0354418 0.0504241 +-0.0834736 0.114211 -0.000781836 +-0.0258217 0.181482 -0.0160394 +-0.0517798 0.115481 0.0337859 +-0.0763629 0.108471 -0.00759882 +-0.0757916 0.155001 0.00503825 +-0.0893649 0.111932 0.017326 +-0.0619999 0.132592 -0.00773229 +-0.033844 0.171255 -0.00164046 +-0.0352015 0.153653 0.00157065 +-0.0722895 0.147809 -0.0265569 +-0.0217088 0.114301 -0.017023 +0.026785 0.0955535 0.0441601 +-0.0481378 0.0672057 0.0386531 +-0.026667 0.0823364 0.0504973 +0.00619086 0.131536 0.009113 +-0.0526119 0.0580506 0.0248562 +0.00250286 0.0576093 0.0540213 +-0.0810169 0.0953587 0.0335948 +0.029848 0.0875415 0.0432926 +0.0464379 0.0778615 0.0131806 +-0.0134997 0.0856507 0.057198 +0.0263535 0.0795425 0.0469281 +-0.0265857 0.0603669 0.0385952 +-0.0334943 0.11802 0.0311453 +-0.00337868 0.117905 -0.0149619 +-0.0660268 0.177263 -0.0521591 +-0.0238887 0.156697 -0.00604726 +-0.00760592 0.125948 -0.00752899 +-0.0221488 0.0383333 0.0268965 +-0.0293863 0.155004 -0.00725783 +0.0105543 0.126889 0.0293082 +0.0501729 0.0446765 0.00723117 +0.0310879 0.115727 -0.00269046 +-0.0191314 0.122285 0.0303949 +-0.0777065 0.155692 0.0145746 +-0.0797904 0.152563 0.0316147 +-0.0710154 0.0391332 0.00421404 +-0.0889531 0.100999 0.0124002 +-0.0147295 0.0942902 -0.0339999 +-0.0812191 0.0785924 0.0290188 +-0.0766463 0.0803349 -0.0100768 +-0.0435275 0.152141 0.00710463 +-0.0608313 0.092512 -0.0191943 +0.0227948 0.124775 0.0223512 +-0.0831943 0.132626 0.0501472 +-0.0317593 0.0449779 0.048226 +0.00552401 0.0633596 0.0561453 +-0.0492065 0.128269 0.0305743 +-0.0634388 0.152153 -0.00650488 +-0.0568117 0.135044 -0.00489316 +0.0252231 0.117755 -0.00691168 +-0.0716366 0.0874136 0.0414306 +-0.0725279 0.091561 0.0413901 +-0.0764449 0.084677 0.0378167 +-0.00880306 0.0841017 -0.0380883 +-0.0688616 0.033602 -0.00179476 +0.0161578 0.0988387 -0.0226848 +-0.0829912 0.0966357 0.0312921 +0.00854504 0.101743 0.0468013 +-0.0161113 0.0419173 0.0519008 +-0.0115772 0.0991016 -0.0249869 +0.026625 0.0839457 -0.0229857 +0.0451532 0.0931968 0.0111604 +-0.0264982 0.113889 0.035131 +-0.00351628 0.0442826 0.04692 +-0.0202282 0.0639107 0.048901 +0.0154069 0.0403121 -0.0220991 +-0.0725345 0.140015 0.0475615 +-0.0340447 0.1653 -0.00374721 +0.00850451 0.0883096 0.055394 +-0.0516913 0.0680528 0.0372779 +-0.070167 0.162396 -0.0479528 +-0.0174382 0.127681 0.00469302 +0.0354105 0.0965418 -0.0122281 +-0.0427202 0.152139 0.00651185 +-0.00023381 0.123831 -0.00932637 +-0.073929 0.152666 -0.0308896 +0.0244967 0.0375596 0.0281073 +-0.038496 0.0450464 0.0406484 +0.0424477 0.0803262 -0.00578172 +-0.017618 0.163994 -0.00984759 +0.042638 0.101488 0.0111603 +-0.0114747 0.111375 0.0418865 +-0.0878262 0.152428 0.0199936 +-0.0605498 0.0341606 0.0243603 +-0.0474966 0.088987 0.0447599 +0.0139221 0.0913152 -0.0287052 +-0.0182228 0.038194 0.0115761 +-0.0697006 0.0619862 0.0158161 +0.0317346 0.0619381 0.0405155 +0.0470668 0.0701831 0.0226957 +-0.0222639 0.0783263 0.0546841 +-0.0624118 0.148891 -0.00459657 +-0.0245152 0.111258 0.0385919 +-0.0623581 0.164692 -0.0425931 +0.0189449 0.0348191 0.0239933 +-0.0489525 0.123989 0.0308621 +-0.0294789 0.0732089 0.0403736 +-0.0912678 0.12968 0.0332366 +0.0188735 0.102787 -0.0208351 +-0.0542898 0.0343509 0.030786 +0.0541934 0.0628656 -0.00090927 +-0.024607 0.037979 -0.0290368 +-0.0461075 0.164061 -0.00779976 +-0.00480748 0.0854817 -0.0373491 +-0.0398973 0.160894 0.00183362 +0.0122013 0.0878954 -0.0308742 +-0.0609826 0.13955 0.0346529 +0.01801 0.126774 0.0220214 +-0.0720383 0.149669 -0.0395937 +0.0268545 0.0350543 0.018119 +-0.00249757 0.0952299 0.0546317 +-0.0177632 0.0728777 -0.0388934 +-0.00835092 0.0354934 -0.0172056 +-0.0123646 0.109877 -0.0203825 +-0.0385 0.120755 0.0293207 +-0.0614467 0.0335533 -0.00933279 +-0.0144984 0.108621 0.0424908 +-0.071459 0.151188 -0.0433221 +-0.0227544 0.0753712 0.0524561 +-0.0581897 0.157381 0.00697939 +-0.0588054 0.0825509 -0.0205914 +-0.0254269 0.0781373 0.050782 +-0.0176233 0.0450417 -0.02779 +-0.0345002 0.10287 0.040969 +0.0398172 0.0390737 0.00420564 +-0.0642915 0.169488 -0.0607786 +-0.0391909 0.150688 0.00279786 +-0.0817139 0.108721 -0.00159489 +-0.0691226 0.174646 -0.044619 +0.0542982 0.0579702 -0.00188368 +-0.0903603 0.143336 0.0142018 +-0.0554977 0.109766 0.0379077 +-0.0646073 0.15754 -0.0113176 +-0.0857257 0.0994313 0.000394941 +-0.0634657 0.0730594 0.0392535 +-0.0114926 0.0604332 0.0544994 +0.00136064 0.0481752 -0.0296995 +-0.0476605 0.124307 -0.00939578 +0.00152589 0.0731231 0.0568629 +0.0454513 0.0412382 0.0102351 +-0.0555526 0.124119 0.0389742 +0.0111749 0.035437 0.032711 +-0.0631468 0.156791 -0.0395997 +-0.0364943 0.115224 0.0327734 +-0.0687764 0.180487 -0.0583042 +-0.0558353 0.0912839 -0.0220329 +-0.0487756 0.0826651 -0.0212781 +0.0222353 0.0804964 -0.0261413 +-0.0698715 0.11424 0.0504282 +-0.0534972 0.0732542 0.0410474 +-0.0354707 0.0874527 0.0429689 +-0.0522647 0.117566 -0.0142997 +-0.0687471 0.158212 -0.0056007 +0.0254863 0.0578069 0.043747 +-0.0625026 0.0973365 0.0428841 +-0.00849427 0.0925522 0.0562249 +-0.076914 0.17371 -0.0479126 +0.0285085 0.121244 0.0144975 +-0.0649629 0.0620542 -0.00149187 +-0.0487919 0.135536 0.0203921 +-0.0406031 0.160882 0.00257136 +-0.0717214 0.0807275 -0.0154713 +-0.0759462 0.128163 -0.00785989 +0.0065117 0.129736 0.0249737 +-0.00106791 0.0391062 -0.00597311 +-0.0539473 0.03352 0.0103166 +0.0264479 0.103016 -0.017087 +0.0368588 0.0672041 -0.0137655 +-0.0209608 0.0380992 0.0183358 +-0.0922682 0.12272 0.00827864 +-0.0758891 0.119352 -0.00728174 +-0.0619808 0.0469192 0.00268857 +0.0286963 0.0991802 -0.016993 +0.0173223 0.125777 -0.00156033 +-0.071812 0.0879125 -0.0161091 +-0.0634945 0.102894 0.0414572 +-0.0534816 0.0491363 0.0336594 +-0.0677428 0.164471 -0.018256 +0.0418243 0.102828 0.00318021 +-0.0345003 0.0347932 0.0310568 +-0.0508009 0.0912872 -0.0218676 +0.0344847 0.0868408 -0.0179179 +0.0193386 0.0579734 -0.027391 +-0.0621388 0.0334692 0.00329381 +-0.017215 0.175671 -0.0245809 +-0.0538714 0.0449084 0.0167075 +0.0201621 0.124133 -0.00175315 +0.00612185 0.108732 -0.0201634 +0.0101112 0.110138 -0.0193681 +0.0407992 0.0698146 0.0307925 +-0.0186672 0.0495328 -0.0300927 +-0.0804551 0.134426 0.050865 +-0.0719585 0.0377493 0.00378419 +0.00950065 0.0688226 0.0549942 +0.0451024 0.091769 0.003186 +0.0116064 0.121838 0.0345253 +-0.07744 0.155698 0.0205089 +0.0154982 0.118174 0.0357451 +0.0455409 0.0918154 0.00916522 +-0.0825371 0.14737 0.037761 +0.00019241 0.0853625 -0.035651 +-0.0413557 0.0405762 -0.0252979 +-0.00795135 0.129264 0.0240771 +-0.00779714 0.0812765 -0.0379169 +0.0279176 0.0508447 -0.0187774 +-0.0851867 0.0791254 0.00650076 +-0.071556 0.161392 -0.00951947 +0.0302201 0.119789 0.0108648 +-0.0664004 0.120055 0.0514481 +-0.0652563 0.0459546 0.00568144 +-0.0484523 0.0349311 0.00836568 +0.050668 0.0451751 0.0191374 +0.0235092 0.118527 -0.00774096 +-0.0799897 0.135372 -0.00407226 +0.0454193 0.0875784 0.00318139 +0.0218862 0.107458 -0.0158341 +0.0519418 0.0525693 0.0274887 +-0.0174883 0.044685 0.0517611 +-0.0503006 0.134918 0.0263293 +-0.0797918 0.11331 -0.00252121 +0.0170867 0.039703 -0.0206999 +-0.00603107 0.130744 0.0146461 +-0.0614566 0.0372076 0.0201515 +-0.0634342 0.039353 0.0417984 +-0.0520389 0.0545474 0.0246248 +-0.0700192 0.172057 -0.036324 +0.0425828 0.0778099 0.0282065 +-0.0943409 0.12415 0.0172628 +-0.03739 0.165304 0.000185179 +0.0380556 0.0834519 0.0357476 +-0.0140374 0.0384483 0.0012996 +-0.0834291 0.14469 0.0401339 +-0.055347 0.0335038 0.00284205 +-0.0577441 0.0590406 0.000553128 +-0.0586534 0.154964 0.024223 +-0.0627416 0.148221 0.0374769 +-0.0597552 0.0781833 -0.0189903 +-0.0882134 0.141936 0.0111996 +0.0441966 0.0973694 0.0101636 +0.00324014 0.0740573 -0.0349749 +-0.0320743 0.0763998 -0.0305477 +0.0424682 0.0642865 0.0278791 +0.00647808 0.111357 0.041027 +0.0241747 0.0351145 0.0138772 +-0.0842625 0.100702 -0.00260902 +-0.0538049 0.0486373 0.0382673 +0.0033632 0.097467 -0.0272178 +-0.0526204 0.141613 0.022402 +0.0331357 0.0570437 -0.0137102 +0.00753436 0.104363 0.0436686 +-0.029494 0.0631194 0.0377814 +0.0357221 0.0994501 0.0342567 +0.0398205 0.0604422 -0.00479028 +-0.0134826 0.109991 0.0421694 +-0.0618817 0.161578 -0.0325898 +-0.00560304 0.0434101 -0.0260312 +-0.0274608 0.0473022 0.0495228 +-0.065855 0.0967089 -0.0173163 +-0.00276158 0.0698244 -0.0351738 +-0.00250067 0.110029 0.0428965 +0.0142116 0.123033 -0.00860213 +-0.0633963 0.145356 0.0382744 +-0.033621 0.0519746 -0.0102559 +0.0385319 0.0997972 -0.00779458 +0.0312326 0.118751 0.0098088 +-0.011143 0.128894 0.00267925 +-0.0574832 0.0833327 0.0441985 +-0.0668542 0.114225 0.0472279 +0.0369848 0.0561762 0.0322 +-0.0688663 0.102328 -0.014772 +-0.0246521 0.0478035 -0.0267776 +-0.0806498 0.110292 0.0422048 +-0.0475911 0.163428 -0.00670042 +-0.00358669 0.0376696 -0.025221 +-0.0499193 0.118992 -0.0138138 +-0.0766944 0.171427 -0.0358927 +0.0174979 0.126711 0.000451693 +-0.0107378 0.177152 -0.0244143 +0.0397983 0.0672171 0.0328832 +0.00289976 0.039936 0.0460731 +0.030847 0.0875798 0.0429743 +-0.0394926 0.102848 0.0402648 +0.00332264 0.0568618 -0.0316357 +-0.0367537 0.0783235 -0.0195335 +-0.038823 0.0928858 -0.0233898 +-0.0644838 0.0931562 0.0439721 +-0.0298466 0.0385336 -0.0167929 +-0.0548009 0.0449973 0.0226803 +0.0118375 0.0344099 -0.0160341 +-0.0683506 0.181259 -0.055895 +-0.0107728 0.0387832 -0.00390135 +-0.0300375 0.0890464 -0.0285748 +-0.0710857 0.168903 -0.0252489 +-0.0757782 0.149978 -0.0188682 +0.030839 0.0995119 0.0394948 +-0.0329249 0.0369927 0.0503412 +-0.0732448 0.144163 -0.0109449 +-0.0897565 0.140652 0.029182 +-0.0735905 0.154201 0.0306806 +0.00579855 0.0347845 0.042995 +-0.0519166 0.0545256 0.0236155 +-0.01212 0.102458 0.0438351 +-0.0211595 0.178661 -0.0149212 +-0.014608 0.0421127 -0.0270124 +-0.0885789 0.0922253 0.0228661 +-0.0145885 0.128899 0.00863716 +0.010498 0.0909888 0.0536897 +-0.0066489 0.0388823 -0.00316153 +-0.0258212 0.0839605 -0.0371412 +-0.0797525 0.15498 0.0124103 +-0.0414563 0.108465 0.0385585 +-0.0525315 0.149847 0.0192949 +-0.0156627 0.184575 -0.0209705 +0.0428837 0.0887839 -0.00581701 +0.0242564 0.0734016 -0.0257301 +0.0192994 0.062217 -0.0274738 +-0.0310269 0.122601 -0.0056394 +-0.0569847 0.153801 0.0277423 +-0.0526515 0.0504392 0.0286525 +0.00150192 0.0634213 0.0567922 +-0.0838556 0.139345 0.0449552 +-0.0476133 0.0562658 -0.0107838 +-0.0527007 0.0693372 -0.0141095 +-0.0311494 0.157393 -0.0113544 +0.00313658 0.0348497 0.0441849 +-0.0311581 0.17265 -0.0162683 +0.0453494 0.0847845 0.0201731 +0.0285114 0.0619268 0.0428923 +0.000499004 0.0634057 0.0567297 +0.00751117 0.0575089 0.0530994 +-0.000499443 0.114191 0.0415203 +-0.0794921 0.146102 0.0417961 +-0.0252738 0.0381933 0.0263814 +-0.0376796 0.16681 0.00156763 +0.0387661 0.0870401 -0.0137857 +0.0296088 0.12015 0.0163431 +-0.0938694 0.121489 0.0252875 +-0.0396002 0.125498 -0.0067103 +0.0370837 0.103994 -0.00683208 +-0.0465559 0.0461276 -0.0102455 +0.0404351 0.0389029 0.0137659 +-0.0424925 0.100104 0.042001 +-0.0285717 0.12063 0.0270994 +-0.0800863 0.148726 0.0380799 +0.00214563 0.119376 -0.0145717 +-0.0288792 0.104408 -0.0227314 +-0.0312735 0.034639 0.0229335 +-0.0669165 0.12238 -0.00897156 +-0.0890273 0.0956446 0.021399 +-0.0897683 0.091592 0.0154417 +-0.0739499 0.156872 -0.0269145 +0.00919729 0.039194 0.0451612 +-0.0374937 0.109757 0.0368609 +0.0523694 0.0545712 -0.00274385 +-0.0339801 0.0348087 0.0434578 +-0.00541562 0.128879 0.0264449 +-0.0636022 0.151642 0.0357576 +-0.0693902 0.0672718 0.0289371 +-0.0220481 0.121595 -0.00868192 +-0.0390536 0.127857 0.00108873 +-0.090122 0.144414 0.0285066 +-0.0629168 0.114269 -0.0126902 +-0.0930993 0.129616 0.0162363 +-0.0325132 0.0575193 0.0378292 +-0.0193156 0.162502 -0.00702982 +0.00550789 0.0910775 0.054811 +-0.0234801 0.168298 -0.011313 +0.0473422 0.0575607 -0.00551801 +0.0214637 0.0989203 0.04607 +-0.0827604 0.106087 -0.00164696 +-7.52397e-05 0.037877 0.020989 +-0.0345343 0.126083 0.0189612 +-0.0512338 0.164096 -0.00192926 +-0.0477776 0.0826677 -0.0211258 +-0.0368214 0.16531 -0.000729186 +-0.0673944 0.162815 -0.015253 +-0.0186701 0.0971551 0.0477534 +-0.0366241 0.0360289 0.0452882 +-0.0195815 0.0341867 -0.0200865 +0.0298019 0.0862025 0.0431971 +-0.0932655 0.120203 0.038289 +-0.000505415 0.110024 0.0426421 +-0.0191383 0.16678 -0.0189611 +0.0173062 0.0421724 0.0440438 +0.0105403 0.105742 0.0436489 +-0.0345641 0.11594 -0.0146748 +-0.0944618 0.125537 0.019259 +-0.0679091 0.108046 -0.0128123 +0.0268137 0.118694 -0.00391821 +-0.0577288 0.0738232 -0.0175832 +-0.0494959 0.0988033 0.0435442 +0.0425948 0.0873487 -0.0068057 +-0.0366079 0.114094 -0.0167422 +-0.0064886 0.118022 -0.0150746 +-0.0694599 0.155751 0.00874428 +-0.0727804 0.0887809 0.0411113 +-0.0921325 0.117269 0.0252198 +-0.0769942 0.154149 -0.012901 +0.00413641 0.0979047 -0.0256761 +-0.0504737 0.113932 0.0347324 +-0.00655213 0.0389811 -0.00882376 +-0.021105 0.0431099 0.0534593 +-0.0732611 0.161033 -0.0359392 +-0.0668535 0.0938084 -0.0173106 +0.0523234 0.0724358 0.00729932 +-0.02575 0.0536249 0.0391706 +-0.0529014 0.114056 -0.0162353 +-0.0887923 0.1378 0.0112057 +-0.0604332 0.0585193 0.0100455 +-0.0105014 0.0546468 0.0522278 +0.0475389 0.0482604 0.0280949 +0.00247406 0.123881 0.0337357 +0.0282809 0.0389301 0.0276504 +-0.0903128 0.141958 0.0142327 +-0.0457178 0.0724199 -0.0170809 +-0.0393802 0.149525 0.00137589 +-0.0384762 0.128323 0.0101316 +-0.0387951 0.0343342 0.0305488 +-0.0627886 0.154765 0.0285735 +-0.044804 0.0884409 -0.0220028 +0.00621048 0.0851628 -0.0331463 +-0.0124997 0.0938947 0.0551641 +-0.0760018 0.163203 -0.0170986 +-0.0568081 0.154369 0.0248865 +0.0141304 0.056278 0.0501629 +-0.000201542 0.0357861 0.0174114 +-0.0687337 0.0764635 -0.0155195 +-0.0465141 0.0518831 0.0377757 +0.0306859 0.0377485 0.0237503 +-0.0887758 0.149859 0.0255696 +-0.0468066 0.088437 -0.0220186 +-0.0104567 0.111397 0.0420636 +0.00949238 0.0487693 0.0494463 +-0.0344171 0.0343826 0.0278837 +-0.0747225 0.161031 -0.0319529 +-0.00127097 0.123959 0.0338052 +0.0484686 0.0511467 0.0294828 +0.0216142 0.042218 0.0415059 +0.0159587 0.0874032 0.0512942 +-0.0579584 0.0336225 0.00939861 +0.0262865 0.0689766 -0.0234385 +-0.0457839 0.11676 -0.0154906 +-0.0431023 0.149502 -0.00451393 +0.0575358 0.0592738 0.00218909 +-0.0907151 0.116093 0.0293225 +-0.0626986 0.0658458 -0.00782349 +-0.0680529 0.0874243 0.0435129 +-0.0323521 0.0336874 -0.0296376 +-0.0208013 0.108893 -0.0213287 +0.00800637 0.0345135 0.0400968 +0.0600686 0.0650603 0.0191749 +-0.0881094 0.0861284 0.0104766 +-0.0292466 0.166794 -0.00735295 +-0.0455037 0.159315 0.00726546 +-0.0361152 0.127822 0.0095198 +-0.00430156 0.130062 0.00233767 +-0.032509 0.0506603 0.0384213 +-0.0316129 0.119551 -0.0104429 +0.0414143 0.104258 0.0111621 +-0.075527 0.0733333 0.0311756 +-0.0549715 0.161246 0.00205939 +-0.0503915 0.140104 0.0183826 +0.0152276 0.0835585 -0.0295949 +-0.0464862 0.0718998 0.0415251 +-0.00551998 0.0732424 0.0584734 +-0.0900165 0.133639 0.00622839 +-0.069719 0.0887582 0.0422978 +0.00474777 0.0367585 0.0247919 +-0.027126 0.165248 -0.0165316 +-0.0283135 0.0350192 0.0513697 +-0.0318897 0.0721821 -0.0275085 +0.0437433 0.0945326 0.0221692 +-0.0126802 0.0961728 -0.031918 +-0.0567215 0.04662 0.0276747 +-0.00532834 0.0367049 -0.0158504 +-0.0529595 0.0335568 -0.000338033 +-0.0240311 0.112816 -0.0174462 +0.01097 0.0520216 0.0508135 +-0.0328411 0.0915526 -0.0242438 +-0.0552728 0.0335199 0.0136226 +-0.0820994 0.104661 -0.00359906 +0.035799 0.0558975 -0.00871505 +-0.0868952 0.0991223 0.0252196 +-0.0296012 0.120713 0.0267425 +-0.0695324 0.125657 0.0522171 +-0.0424937 0.0790081 0.0428161 +-0.0632658 0.0419596 0.040132 +-0.0699149 0.161541 -0.0103834 +-0.0345105 0.0676457 0.041143 +-0.00514301 0.0997589 0.0492461 +-0.0697588 0.147131 -0.0275571 +0.0580762 0.0648724 0.00314588 +0.0241035 0.1245 0.0085821 +0.0377445 0.110141 0.00501649 +0.0413546 0.0999884 -0.00181466 +0.0180964 0.0604579 0.0488964 +-0.0341434 0.0780256 -0.025502 +0.0365014 0.0756142 -0.0127863 +0.0485013 0.0651587 0.0285278 +-0.0331365 0.162399 -0.0024379 +-0.0578171 0.08688 -0.0211007 +-0.0591308 0.125513 0.0408421 +-0.0248084 0.0826031 -0.0377611 +-0.00847175 0.0920515 -0.0356471 +-0.0281451 0.166722 -0.0170726 +0.0321478 0.0740867 0.0412125 +-0.0318598 0.0496767 -0.0173511 +-0.0683644 0.0381281 -0.00463362 +-0.0293612 0.0383343 -0.00169706 +-0.0546971 0.0334232 0.00665025 +-0.0604511 0.0584329 0.0155226 +0.0356702 0.108162 -0.00482135 +-0.087994 0.0981671 0.00544953 +0.042672 0.0737568 0.0282004 +-0.0414969 0.095865 0.0421344 +0.0227593 0.0727654 0.0487302 +0.0247922 0.121532 -0.00113746 +0.0282353 0.0775351 -0.0225519 +-0.0487687 0.0559317 0.0351683 +-0.0192566 0.180095 -0.0235875 +-0.0250606 0.0603159 -0.031412 +-0.0310964 0.160762 -0.0139612 +0.0143682 0.0767494 0.0542274 +-0.0714649 0.159596 -0.0419316 +0.0454023 0.0875829 0.0161653 +-0.0354973 0.0470472 -0.0223112 +-0.0465703 0.0490167 -0.00974944 +0.025334 0.0435501 0.0381106 +-0.0785372 0.168054 -0.0329755 +-0.0148858 0.0985034 0.047376 +-0.0302927 0.117007 -0.0138211 +-0.0802651 0.0963563 -0.00854135 +-0.030624 0.0348272 -0.0303515 +-0.000406928 0.0996624 0.04942 +-0.0576871 0.0335309 0.00594357 +-0.0923088 0.114683 0.0143254 +0.00732004 0.0351406 -0.00439972 +-0.00948171 0.174183 -0.0285537 +-0.0320503 0.12646 0.00953655 +0.0270529 0.0822264 0.0462092 +-0.0900419 0.139254 0.023178 +-0.0498185 0.0927102 -0.0215416 +-0.00751389 0.102333 0.0437439 +-0.0775302 0.161724 -0.0197184 +-0.044496 0.0451943 0.0419603 +-0.0362032 0.160944 0.000172036 +-0.0314741 0.053189 0.0369367 +-0.072385 0.158213 -0.0369175 +-0.0860963 0.145967 0.0357039 +-0.0554937 0.100184 0.0430705 +-0.0523102 0.116406 -0.0150785 +-0.0518166 0.09273 -0.0219218 +-0.024907 0.0916549 -0.0335476 +-0.0634479 0.141036 0.0381413 +0.0152366 0.121915 0.0327966 +-0.0631227 0.0445391 0.0377156 +-0.0865336 0.141884 0.00820248 +0.00748358 0.11412 0.0398951 +-0.071965 0.136965 -0.0074383 +-0.0608999 0.058839 0.0168686 +-0.0886398 0.102364 0.0173768 +-0.0688031 0.0659098 0.026726 +0.02824 0.0686155 0.0425458 +-0.0196877 0.127428 0.0169554 +0.0332508 0.0906175 -0.0178979 +0.019654 0.122236 -0.00577023 +-0.0457281 0.151677 -0.00565337 +-0.0685681 0.156629 -0.0529972 +0.0455148 0.0801982 0.0216904 +0.0232513 0.0734458 -0.026356 +-0.0856264 0.110331 0.00634317 +0.032415 0.0383305 -0.000488607 +-0.0697489 0.17084 -0.0530327 +0.0127518 0.0887452 0.0537008 +-0.0650469 0.168333 -0.0359323 +-0.0312058 0.066507 -0.0244549 +-0.0481456 0.14427 0.00342034 +-0.0250932 0.0385898 -0.0121739 +-0.0268796 0.181867 -0.0133655 +-0.0624905 0.0804598 0.0431805 +-0.0664501 0.0353918 0.0342807 +-0.0287674 0.078167 -0.0351681 +0.0384815 0.0729589 -0.0117402 +-0.0325668 0.0347124 0.0262002 +0.0258782 0.0645831 0.0443789 +-0.0486546 0.0620591 -0.0122264 +-0.086684 0.149909 0.029141 +0.0138472 0.123867 0.0319554 +-0.0513866 0.0584422 0.0306256 +-0.00251219 0.0378133 0.00785027 +-0.00926128 0.126278 0.029483 +0.0147315 0.0347337 -0.0176578 +0.0417187 0.066227 -0.00378154 +-0.0149615 0.0883672 -0.0380383 +-0.0678931 0.0900993 0.043242 +0.0149683 0.113515 -0.0163113 +-0.0719356 0.110274 0.042413 +-0.0333618 0.0751438 -0.0264858 +0.0116984 0.034577 0.0227351 +-0.0670519 0.166375 -0.0237602 +-0.0454276 0.0345386 0.0307405 +-0.00249621 0.0883993 0.0567366 +-0.0235661 0.115415 0.0353667 +-0.0944357 0.121484 0.0222838 +0.0334736 0.0940135 -0.0155006 +-0.0436018 0.0519969 -0.0109067 +-0.0781065 0.0948585 -0.0115273 +0.0456581 0.0729488 0.0206934 +-0.0274951 0.157765 -0.0111917 +-0.00306441 0.100922 0.0454807 +-0.0618021 0.116863 0.0404147 +-0.0344937 0.041903 -0.0294247 +-0.0427476 0.159417 0.00474491 +0.0374917 0.0484328 0.0317174 +-0.00814387 0.0339061 -0.0213361 +-0.0737927 0.132633 0.0513524 +-0.0397231 0.116184 -0.0149076 +-0.00950395 0.0773592 0.0576807 +-0.0505908 0.03436 0.0298011 +0.0187381 0.119283 0.0342968 +0.00523462 0.075444 -0.0346019 +-0.0321194 0.165225 -0.0156285 +-0.0276791 0.1239 0.019992 +0.0190254 0.061825 0.0484929 +-0.0821717 0.11152 0.00033013 +0.0241621 0.0505303 0.0399762 +0.0378012 0.0604211 0.0334272 +-0.0182252 0.159192 -0.00975232 +0.0423754 0.100105 0.0181719 +-0.0546942 0.0661242 -0.0103565 +-0.0685912 0.131247 0.0482807 +0.000498438 0.0938703 0.0551155 +-0.0281544 0.168213 -0.0175818 +-0.0417796 0.0485307 -0.0113147 +0.0287445 0.109341 -0.0118595 +-0.00260812 0.130913 0.0187596 +-0.0454889 0.0660999 0.0395126 +-0.0655106 0.0972881 0.0421527 +-0.0194848 0.0869694 0.0563134 +-0.0264967 0.121204 -0.00819998 +0.00829502 0.0653838 -0.032076 +-0.0287456 0.0753309 -0.0348961 +-0.0727338 0.0821447 -0.0156124 +-0.0470607 0.146242 0.00718592 +-0.0209665 0.0386858 -0.0114366 +-0.0600079 0.128191 -0.00754937 +-0.0653109 0.180421 -0.0593142 +-0.0559148 0.0548054 0.00768529 +-0.0524976 0.0917711 0.0441581 +0.0212182 0.0847586 -0.026404 +-0.0579878 0.0414274 -0.0083271 +-0.0726954 0.0791971 -0.0139413 +-0.0307256 0.0915724 -0.0247467 +-0.0556334 0.11822 -0.0129265 +-0.0457806 0.0841121 -0.0213757 +0.00438413 0.0465246 -0.0275852 +-0.010477 0.110005 0.0426237 +-0.0896333 0.0929554 0.018431 +0.0397783 0.106996 0.0151622 +-0.0127593 0.0728576 -0.0383837 +0.0319543 0.0766492 -0.0197037 +0.00131984 0.0612266 -0.0334746 +-0.0834451 0.136657 0.0474496 +-0.0558128 0.0869147 -0.0214989 +0.00250708 0.0474439 0.0499052 +0.0125018 0.115423 0.0374065 +-0.00563766 0.13083 0.0104776 +-0.0658527 0.144237 -0.0148815 +-0.089646 0.0929438 0.0164332 +0.0436072 0.041137 0.00426675 +0.0444767 0.0889055 -0.00179899 +-0.057137 0.0562876 0.0015684 +0.00522768 0.0810328 -0.0339223 +-0.0137183 0.0628763 -0.0368336 +0.00133514 0.0554198 -0.0315391 +-0.0188851 0.0334951 -0.0249427 +0.052927 0.0495927 0.0235839 +0.0522184 0.0461787 0.0182078 +0.0165976 0.0348504 0.0271124 +-0.0589342 0.12267 0.0410891 +-0.0669714 0.163891 -0.0179699 +-0.0703202 0.132668 0.0493213 +-0.0776493 0.0787462 -0.00818258 +-0.0881736 0.132451 0.0437642 +-0.0632228 0.141176 -0.0069873 +-0.0713401 0.171022 -0.0310853 +-0.047409 0.166836 0.00227952 +-0.0141433 0.181604 -0.0223083 +-0.0619045 0.104018 -0.0180451 +-0.0483068 0.13712 0.0113971 +0.0136813 0.0952834 0.0497668 +0.035272 0.0660164 0.0386352 +0.0461881 0.0785676 0.017326 +-0.0532105 0.0335853 0.013987 +-0.0171786 0.0971676 0.04907 +-0.0725346 0.145512 -0.0179133 +-0.0333802 0.0498304 -0.01435 +0.0509184 0.0496314 0.0259504 +-0.0572784 0.0576838 0.00160501 +-0.0619689 0.153737 -0.0245819 +-0.0544985 0.104295 0.0412117 +-0.0500704 0.137041 0.0213927 +-0.0191411 0.0697535 0.053261 +0.0582061 0.0634965 0.00313887 +-0.0204853 0.0800483 0.0563065 +-0.0472097 0.0335059 -0.0119372 +-0.0749299 0.155492 -0.0209193 +-0.0698715 0.116492 -0.00825865 +0.0375436 0.055493 0.03143 +-0.0538462 0.137744 -0.0016929 +-0.0607335 0.034496 0.0414254 +0.0295159 0.107768 -0.0121736 +-0.0689178 0.168027 -0.0530164 +-0.0779935 0.171503 -0.0379488 +-0.0881443 0.0887489 0.00447233 +-0.00442605 0.128738 0.0268092 +0.00451348 0.0633892 0.056472 +-0.0818952 0.134036 0.0502533 +-0.0372574 0.124492 0.0238955 +0.0138426 0.11139 -0.0180298 +-0.0818741 0.119187 -0.00382424 +-0.0756587 0.0744591 -0.00795246 +-0.026115 0.158145 -0.00104516 +0.037495 0.0513025 0.031739 +0.0589255 0.0580383 0.0211692 +0.0434376 0.0874432 0.0261531 +-0.0260776 0.125932 0.00880255 +-0.0740662 0.155757 0.0246008 +-0.0178239 0.0387614 0.0327968 +0.0417114 0.091515 -0.00780409 +-0.0241449 0.0905492 0.0505682 +-0.074497 0.124608 0.0532356 +-0.0458334 0.0927472 -0.0217986 +-0.0804383 0.111326 0.0449881 +-0.00529252 0.125273 -0.00885488 +-0.0889223 0.0888194 0.00846703 +-0.00624295 0.130196 0.00449841 +-0.0669483 0.0447271 0.0026821 +-0.0548497 0.0941617 -0.0218342 +-0.0534962 0.0931826 0.0441514 +-0.0347147 0.0696617 -0.0176192 +-0.0440132 0.0366004 -0.0242792 +-0.0474979 0.0464882 0.040801 +-0.0653409 0.0600919 0.00943789 +-0.0231718 0.171204 -0.0201308 +-0.00587295 0.130011 0.00319127 +-0.0664676 0.0383698 -0.00648508 +-0.0886456 0.0935942 0.0229142 +-0.0447618 0.116708 -0.0154556 +0.0194756 0.100345 0.0462123 +-0.0154951 0.0911415 0.0560918 +-0.0371641 0.0342638 0.0291868 +0.0162971 0.0651874 -0.0294171 +-0.0291548 0.169699 -0.0175574 +-0.0704877 0.0623972 0.0153213 +-0.0774944 0.092744 0.0372295 +-0.00984328 0.0975178 -0.0293224 +-0.0784995 0.162482 -0.0259435 +-0.0145068 0.0730096 0.0554058 +0.0203473 0.0727595 0.0505294 +-0.0616196 0.156864 -0.0215888 +-0.0832232 0.0789707 0.00151853 +0.0163786 0.0403059 -0.0216745 +0.000325641 0.0568761 -0.0321896 +-0.0192766 0.0554309 0.0481999 +-0.00592104 0.0389465 -0.0049376 +-0.0499986 0.143197 0.012378 +-0.0355049 0.076131 0.0419036 +0.053394 0.0525543 0.0260735 +0.00630024 0.125509 0.0321214 +-0.0349082 0.033686 0.00682403 +-0.0714928 0.117552 0.0529474 +-0.0589919 0.15382 0.0299308 +0.0585035 0.0621132 0.0229868 +0.00569406 0.0341002 0.00181761 +-0.0155184 0.118264 0.0365807 +-0.0424989 0.16674 0.00381643 +-0.0863225 0.128011 -0.00168174 +-0.0553953 0.118382 0.0373919 +0.0469197 0.0444607 0.00136465 +-0.056091 0.0334157 -0.00629765 +-0.0361548 0.166687 -0.0142688 +-0.0127937 0.0386426 -0.0153707 +-0.0118501 0.11995 -0.013068 +-0.00670797 0.0627873 -0.0354975 +-0.079327 0.169353 -0.0390258 +-0.0437872 0.0855322 -0.0215732 +-0.0280896 0.0549613 -0.0243859 +-0.0584052 0.033525 -0.00869675 +-0.0482395 0.144672 0.00644062 +-0.0554929 0.0932384 0.0449182 +-0.0347045 0.0851136 -0.0245778 +-0.0494996 0.0791204 0.0440794 +0.0372047 0.0385834 0.00228863 +0.0193241 0.0607694 -0.0271316 +0.00852018 0.0702413 0.0555324 +-0.0778099 0.148638 -0.00388521 +-0.06539 0.178765 -0.0548301 +-0.04996 0.133052 -0.000571002 +-0.0847199 0.0939171 -0.00356265 +-0.0326229 0.0385148 -0.00990233 +0.032773 0.036599 0.0179277 +0.0427869 0.0611675 -0.0033403 +-0.0366336 0.0548529 -0.010755 +-0.0870489 0.0900041 0.00248653 +0.0416085 0.0656213 0.0284032 +0.00293844 0.100629 -0.0225769 +-0.0728162 0.0907583 -0.0154663 +-0.0718707 0.116473 -0.00776413 +-0.0937263 0.121427 0.0132848 +0.00471758 0.0346554 0.0428856 +-0.0704897 0.0719829 -0.0097429 +-0.050201 0.0344166 0.0315946 +-0.0796522 0.0704439 0.0152371 +-0.0425023 0.0986936 0.0421906 +0.0383887 0.0445417 -0.00444706 +0.0311086 0.103751 -0.0138751 +-0.0667119 0.155932 -0.00484005 +-0.0912006 0.121567 0.0443209 +-0.019019 0.0418114 0.0529435 +-0.0892823 0.141954 0.0132429 +-0.0221125 0.0389367 0.0353489 +-0.0563218 0.0335364 0.00802021 +-0.0896372 0.0929496 0.0174335 +0.0130767 0.125591 0.0302496 +0.0537776 0.0692651 0.00258827 +0.0106605 0.0363802 0.031763 +-0.0297187 0.0523119 -0.0193651 +-0.0140732 0.0383739 0.00681638 +0.0269054 0.0726895 0.0441444 +0.0246103 0.075474 0.0479027 +-0.00359864 0.0405713 -0.0254999 +0.0269298 0.0804165 -0.0233375 +-0.0488158 0.0912881 -0.0217052 +-0.00415439 0.0390536 -0.00654274 +0.000507304 0.0828912 0.0574668 +-0.0158173 0.038248 0.0138275 +-0.0624172 0.0599054 0.00479638 +0.0162074 0.0821136 -0.0291532 +-0.0419982 0.0337727 -0.000124238 +0.0250957 0.0348061 0.00319961 +-0.0309108 0.0608665 -0.0194213 +-0.0387236 0.174145 -0.00898261 +0.0464355 0.0778581 0.0101835 +-0.0639936 0.132595 -0.00811291 +-0.0340062 0.0381682 0.049242 +-0.0477004 0.131837 0.0244001 +-0.00268932 0.130846 0.00581897 +0.0302059 0.0857499 -0.020278 +0.0384903 0.0499056 0.0320993 +0.010384 0.0463357 -0.0254801 +-0.00660048 0.0405957 -0.0258634 +-0.0114989 0.0366056 -0.0169842 +0.0105059 0.0348976 0.020389 +-0.0487973 0.070279 0.0395574 +-0.0394971 0.057712 0.040203 +-0.0253679 0.125634 0.0163937 +0.0361389 0.0902387 0.0383091 +-0.0654905 0.0889779 0.0446185 +-0.0197462 0.0656505 -0.036857 +0.0320676 0.117774 0.0158308 +0.00351414 0.0661565 0.0562774 +-0.0226137 0.0422636 -0.0288734 +-0.019191 0.123923 -0.00519119 +-0.0532423 0.046246 0.0226735 +-0.021638 0.0464604 -0.0276852 +0.0272834 0.0689403 -0.022937 +0.0211914 0.124678 0.000362022 +0.04653 0.0760573 0.0105389 +-0.0338201 0.127158 0.00888963 +-0.077651 0.154407 0.00585132 +-0.0417202 0.0710768 -0.017536 +-0.0887218 0.0874968 0.0134639 +0.0165095 0.0354073 -0.0166384 +-0.0454406 0.0336534 -0.00804117 +-0.0504088 0.153575 0.0112235 +-0.0286428 0.107004 -0.0213195 +-0.0218765 0.0933131 0.0510401 +0.0329715 0.116865 0.0119087 +-0.0914625 0.148845 0.019136 +-0.0596259 0.155781 0.0151651 +0.0375784 0.099381 0.0316743 +-0.0157845 0.0784788 -0.0385671 +-0.0795217 0.123111 0.0512585 +-0.0418108 0.0343847 0.029868 +0.0389991 0.108356 0.0151637 +-0.0709225 0.109376 -0.0106672 +0.0579353 0.0634887 0.0239229 +-0.058577 0.0727277 0.0406017 +-0.062479 0.152546 0.000181648 +-0.0544934 0.0834141 0.0452404 +0.0357112 0.102065 0.0324889 +-0.0715263 0.0944187 0.0416527 +-0.0651404 0.112408 0.0390225 +-0.0545541 0.160714 0.00540511 +-0.0144079 0.183333 -0.0275579 +-0.0621531 0.152198 -0.0185797 +-0.0657166 0.14722 -0.0249021 +-0.0460756 0.154674 -0.00723534 +0.01519 0.127729 0.000331934 +-0.0489579 0.137072 0.00640402 +-0.0485683 0.0335187 -0.00854361 +-0.0885037 0.114225 0.0283481 +-0.0540375 0.141288 -0.0013423 +-0.0472373 0.134368 0.0171539 +-0.0272298 0.037736 0.022792 +-0.0518585 0.0985114 -0.0220738 +-0.0110867 0.180248 -0.025982 +-0.0236236 0.0593674 0.0425181 +-0.0408247 0.092859 -0.0231395 +0.0561988 0.0567015 0.0248562 +-0.0086058 0.172644 -0.0268228 +0.0163504 0.0552051 -0.0284322 +-0.0344945 0.0336038 -0.0243554 +-0.0556539 0.0345276 0.0424927 +-0.0348371 0.155104 0.00211833 +0.0276605 0.0605608 0.0434107 +-0.0623508 0.146001 -0.00658982 +-0.0248115 0.081196 -0.037776 +0.0240847 0.110594 -0.013209 +-0.0895075 0.148492 0.0263454 +-0.0926235 0.124077 0.00926903 +0.0292051 0.0843756 -0.0209031 +-0.0353048 0.127501 0.00687019 +-0.0859011 0.134922 0.00126737 +-0.0742444 0.0756609 0.0347079 +-0.0752605 0.157705 -0.0064221 +-0.0337955 0.0808164 -0.0255276 +-0.0288635 0.154571 -0.00355817 +0.0360371 0.0547702 0.0325687 +-0.0101249 0.0392126 0.0357767 +0.0288986 0.120838 0.016073 +-0.0106831 0.0570151 -0.0340192 +-0.0628045 0.144114 -0.00718004 +-0.0895701 0.151478 0.0161361 +-0.0176156 0.0385615 0.0294218 +-0.0211148 0.0389017 0.0355855 +0.0329392 0.0541774 -0.0107445 +-0.00428899 0.0367463 -0.0156853 +-0.0458368 0.0956376 -0.0219211 +0.0381262 0.080772 0.035847 +0.0268148 0.0976356 -0.019356 +-0.0625367 0.161521 -0.0446005 +-0.0517979 0.0869425 -0.0216307 +0.0344672 0.111064 -0.00366583 +-0.0911264 0.115738 0.024682 +-0.0753098 0.0805155 0.0368289 +-0.0133248 0.129244 0.00909724 +-0.0272428 0.0370384 -0.018628 +-0.0384762 0.0423266 0.0418914 +0.0203738 0.0521374 -0.0257342 +0.0585485 0.0552063 0.00817117 +0.0134367 0.121611 -0.0110511 +-0.089438 0.113514 0.0412091 +0.0444691 0.0790854 -0.00178456 +-0.000786355 0.0797462 -0.0360298 +-0.0269011 0.155694 -0.0071882 +-0.08839 0.0995952 0.00742201 +-0.0662162 0.0396687 0.0135434 +-0.0355277 0.0846755 0.0433772 +-0.0858238 0.104979 0.0223569 +-0.0778773 0.120773 -0.00663343 +-0.0263675 0.107348 -0.0216948 +-0.0927086 0.12286 0.0332776 +-0.0661966 0.15171 0.0363078 +-0.0202018 0.177138 -0.0227808 +-0.0855834 0.141979 0.0409477 +-0.0504886 0.0946205 0.0445363 +-0.0604928 0.101522 0.0423039 +0.0379519 0.0659398 0.0354557 +-0.0840048 0.140674 0.0436515 +-0.0558989 0.109796 -0.0177742 +0.00991096 0.0343624 0.00242681 +-0.0506409 0.0514954 0.0146147 +-0.0324809 0.117911 -0.0127388 +-0.0621631 0.164652 -0.0535815 +0.0025214 0.130289 0.0235241 +-0.0506513 0.150706 0.0125676 +-0.0175006 0.0829087 0.0576844 +-0.00809599 0.0347439 0.04196 +-0.0340295 0.0384544 -0.00643688 +-0.0694928 0.101384 0.0400561 +0.0446992 0.0776181 0.0241159 +-0.0935142 0.126862 0.0142561 +0.0248702 0.121138 0.0274186 +0.00114443 0.118463 -0.015597 +-0.053795 0.115431 0.0343764 +-0.0905823 0.131055 0.0352302 +-0.00177837 0.0811944 -0.0365591 +0.0316669 0.110076 0.0318865 +0.0355137 0.0902592 0.0391607 +-0.0911524 0.122908 0.0442317 +-0.0909787 0.118866 0.0441649 +-0.0647368 0.0350417 0.0261211 +-0.0694997 0.166373 -0.0203616 +-0.0256221 0.0450194 -0.0280788 +-0.0652445 0.171051 -0.0600934 +-0.0773393 0.152802 -0.0018868 +-0.00223434 0.118045 -0.0151238 +-0.0662482 0.063188 0.0243484 +0.0400602 0.0922366 -0.00959201 +-0.00562712 0.0451708 -0.0285409 +0.000501495 0.0457296 0.0472541 +-0.0123701 0.125297 0.0298351 +-0.0778681 0.101964 -0.00928868 +-0.0609537 0.123826 -0.00859412 +0.0224677 0.112582 -0.013341 +0.00921575 0.0781468 -0.0329463 +-0.0349236 0.126603 0.0011375 +-0.00878487 0.0784493 -0.0377777 +0.00650569 0.075888 0.056486 +0.0412418 0.0802411 -0.00774788 +-0.093262 0.128309 0.02526 +-0.0314363 0.171254 -0.00518552 +-0.0520579 0.0336325 0.0248414 +-0.0815026 0.127419 0.0524098 +-0.0894637 0.136534 0.031204 +-0.084288 0.111698 0.0438155 +0.0333653 0.0918289 -0.0171871 +-0.0324333 0.126109 0.00355422 +-0.00141447 0.0391026 0.0304627 +0.00110904 0.0340429 -0.0196452 +-0.0650297 0.138462 -0.00769967 +-0.015954 0.105864 -0.0221228 +-0.0523859 0.0626167 0.0314055 +0.026783 0.122575 0.00815739 +-0.0385209 0.128019 0.0130694 +-0.029395 0.125597 0.00758806 +-0.0328882 0.0666632 -0.0184721 +-0.0494036 0.13704 0.0193807 +-0.0782331 0.109897 -0.00456592 +0.0157741 0.036715 -0.0196413 +-0.0294956 0.0660091 0.0384906 +-0.0679029 0.105215 -0.0140793 +-0.0620463 0.158428 -0.0205873 +-0.0703503 0.159267 -0.00619145 +-0.0378682 0.104226 -0.0203027 +-0.0918252 0.118761 0.028299 +-0.0411447 0.163664 -0.0114686 +-0.0574975 0.0426993 0.0453715 +-0.0747471 0.147201 -0.0128585 +-0.0134963 0.0744967 0.0564394 +-0.054142 0.0722337 0.0402304 +-0.0642908 0.169609 -0.0607929 +-0.0154978 0.0977476 0.0489325 +-0.0800099 0.07203 0.0185532 +-0.0921132 0.115989 0.0103178 +0.00725505 0.0754138 -0.0341479 +0.0536301 0.0568087 0.0282148 +-0.0479854 0.0346149 0.0371396 +-0.00149257 0.0746611 0.0586297 +0.0203189 0.05934 -0.026848 +-0.0115998 0.0391898 -0.02633 +-0.0295596 0.0663471 -0.0284716 +0.00348965 0.105764 0.0424132 +-0.0703543 0.0703917 0.033048 +-0.0606347 0.0629111 -0.00512698 +-0.01408 0.166026 -0.0199736 +-0.061044 0.0400333 0.0227114 +-0.0810735 0.143155 -0.000828212 +-0.0617474 0.0766736 -0.0179709 +0.0217467 0.124535 0.0248197 +0.00507814 0.101571 -0.0215886 +0.0346034 0.0592134 0.0376264 +-0.0712039 0.0342165 0.00436442 +-0.0288195 0.0384506 0.0326078 +-0.053518 0.1534 0.0145047 +-0.0556759 0.0661408 -0.010195 +-0.0677895 0.175109 -0.0580246 +-0.0699291 0.0421822 0.0072491 +-0.0067422 0.0741543 -0.0369448 +0.0199779 0.0885978 -0.0258535 +-0.0488263 0.0941792 -0.0218889 +0.0343607 0.0505331 -0.00657713 +-0.0725404 0.162229 -0.0113532 +-0.00793663 0.0384098 0.0134736 +-0.0556415 0.043673 0.0216881 +-0.0145298 0.100345 0.0444168 +-0.0815281 0.1484 0.0374104 +-0.0387388 0.0753845 -0.0180569 +-0.0116442 0.0481633 -0.0303354 +0.0363562 0.0559126 -0.00774494 +-0.0652193 0.1682 -0.0598394 +-0.0776736 0.10169 -0.00957801 +-0.0196644 0.0494984 -0.0297043 +-0.0282432 0.0763981 0.0437868 +-0.0328471 0.033696 0.0126517 +0.00347146 0.128699 -0.00262952 +0.0461484 0.0806375 0.015174 +0.0337656 0.111689 0.027893 +-0.0271752 0.172675 -0.0185845 +-0.0693701 0.141497 -0.00893397 +0.0317719 0.115994 -0.000976469 +0.0347163 0.0544411 -0.00865089 +-0.0651886 0.172101 -0.0460875 +-0.0678768 0.1616 -0.0125361 +-0.0634522 0.0423282 0.0135276 +0.0601313 0.0581272 0.0101639 +-0.0107388 0.117999 -0.0150205 +0.0339646 0.0916099 0.0404552 +-0.0498374 0.138571 0.0183794 +-0.0934962 0.117401 0.0173034 +0.0383972 0.0491164 -0.00642484 +-0.0280195 0.0378733 -0.0295429 +-0.0146147 0.12166 -0.00880985 +0.0372641 0.0686531 0.0362559 +0.0239959 0.0549509 0.0433236 +0.00994394 0.0362916 0.0335003 +-0.0208017 0.0799082 -0.0390716 +0.0233991 0.0534151 -0.0239637 +0.00722024 0.0851796 -0.0327872 +-0.0639758 0.128226 -0.00858393 +0.0238189 0.124864 0.00990899 +0.00150975 0.0474485 0.049901 +-0.0361905 0.168183 -0.0140562 +-0.0174884 0.0801344 0.0573382 +-0.0918829 0.116106 0.0333156 +0.00614351 0.12581 -0.00755937 +0.0340287 0.115127 0.0194375 +-0.0908622 0.135106 0.0192089 +-0.000650637 0.0496936 -0.0307015 +-0.0856199 0.144636 0.00717286 +0.0438423 0.0804362 -0.00278861 +-0.00949487 0.0503088 0.0507661 +0.0271211 0.103444 0.039376 +-0.0386188 0.04066 -0.0277325 +-0.0654456 0.154232 -0.00436037 +-0.0264896 0.100224 0.0439794 +-0.0715324 0.144165 0.0446205 +-0.0694829 0.118967 0.0529378 +0.0378869 0.110163 0.00793964 +0.0353212 0.108669 0.0283742 +0.0601522 0.0581329 0.0151721 +-0.0542607 0.057796 0.0208407 +0.00222051 0.130562 0.00190808 +-0.0641033 0.156361 -0.011127 +0.0432299 0.0944972 0.0241641 +-0.0229686 0.033489 -0.025736 +-0.0221215 0.127119 0.0131583 +-0.0671797 0.0604061 0.0141816 +-0.0288776 0.0903901 -0.0295833 +0.0603694 0.0609168 0.00815448 +-0.0494359 0.138587 0.00541192 +-0.0023893 0.0424447 0.047211 +-0.0543474 0.135324 0.0319505 +0.0228597 0.125444 0.016672 +-0.0334812 0.0737514 -0.024477 +0.0348071 0.0781711 0.0398247 +0.0054972 0.0547598 0.0532635 +0.00645879 0.122419 -0.0119062 +-0.0438011 0.128754 0.0022734 +-0.0849152 0.0791131 0.00550947 +-0.0506838 0.0678366 -0.0132392 +0.0126337 0.110109 -0.0186257 +-0.0497701 0.140145 0.0153991 +-0.0724387 0.0819305 0.0395669 +0.0576036 0.0717386 0.0163116 +0.00802743 0.0346823 0.0237027 +0.00218868 0.098191 -0.0260404 +-0.0368205 0.162344 -0.00074381 +-0.070799 0.0908224 -0.0163205 +-0.0539828 0.0700164 0.038652 +0.0135945 0.128354 0.000408423 +-0.0264981 0.0959784 0.0437675 +0.0190214 0.118116 -0.0113006 +-0.0618485 0.153752 -0.0205795 +-0.0552085 0.151192 0.0284379 +-0.0266144 0.0408668 -0.0293519 +0.00698354 0.131641 0.013682 +-0.0316463 0.0595496 -0.0164023 +-0.0758985 0.159659 -0.0269354 +-0.0491601 0.160603 -0.00598464 +-0.00858383 0.0384847 0.0096485 +-0.0717673 0.146065 -0.0213605 +-0.0899696 0.15095 0.0147905 +-0.00955085 0.0385956 0.00389466 +-0.0607249 0.0737695 -0.0169262 +-0.0751542 0.0995011 0.0375123 +-0.0707959 0.0850638 -0.0167146 +-0.0312047 0.123257 -0.00431908 +-0.053995 0.0675039 0.0372692 +-0.0419532 0.0345214 0.0385087 +-0.0289695 0.0380956 -0.0297496 +-0.0121936 0.163667 -0.0136225 +0.021294 0.0721108 -0.027322 +0.0597965 0.0678036 0.00914167 +-0.0657015 0.0736405 -0.0152375 +0.00697022 0.12731 -0.00520393 +0.033357 0.100796 0.0361067 +0.0587791 0.0686289 0.0199155 +0.00149398 0.0394449 0.0343588 +-0.0875531 0.12123 -0.000692815 +-0.0744527 0.154114 -0.0209063 +-0.0172261 0.0356447 0.0515267 +-0.0200013 0.0389743 0.053287 +-0.0569508 0.0343746 0.0319473 +-0.0184875 0.0829081 0.0576141 +-0.019368 0.183116 -0.0157888 +-0.0626506 0.153382 -0.0318715 +-0.00943219 0.095325 -0.0330289 +0.0431395 0.100108 0.0121576 +-0.0608162 0.0881975 -0.019441 +0.0357777 0.070014 0.0376374 +0.0505254 0.0735568 0.0151501 +0.0307633 0.0476275 0.0336614 +0.0294554 0.0416168 0.02991 +-0.0611913 0.173613 -0.0615062 +-0.0146115 0.109635 -0.0201085 +0.0379445 0.0686366 0.0354907 +-0.076675 0.154077 0.000107436 +-0.0315189 0.0351239 -0.0306591 +-0.0768434 0.109781 0.0434593 +-0.0522791 0.0490314 0.0356585 +-0.0380005 0.12652 0.0191796 +-0.0861323 0.103534 0.00440203 +-0.0659084 0.106679 -0.0142087 +0.000468869 0.0388702 -0.00172096 +-0.0623487 0.141045 -0.00649873 +-0.0484952 0.0862244 0.0454118 +-0.0685451 0.170527 -0.0328985 +-0.037499 0.101465 0.0412127 +0.0274201 0.0431121 -0.00573463 +-0.0197554 0.158352 -0.00754965 +-0.0567366 0.0753362 -0.0185878 +0.0533817 0.063336 -0.00140725 +0.0135006 0.105771 0.0435499 +-0.0631905 0.166285 -0.0395881 +-0.0932173 0.122834 0.0272862 +-0.0284888 0.0396421 0.053637 +-0.0134794 0.0559661 0.0512091 +-0.04424 0.130203 0.0124253 +0.0196407 0.0940896 -0.0236062 +-0.0625219 0.151129 0.0359075 +-0.0585008 0.0732388 0.0410714 +0.0608111 0.0651191 0.0151635 +-0.0275116 0.0560234 0.0370088 +-0.0127931 0.0799092 -0.038653 +-0.0544725 0.0478754 0.0402183 +-0.0905041 0.147099 0.0259896 +0.0291224 0.0877617 -0.0209279 +0.0381679 0.0993665 0.0307411 +0.00549435 0.0474709 0.0500045 +-0.0842531 0.102059 -0.0016008 +0.0164869 0.128389 0.00575868 +-0.043156 0.162156 -0.0100947 +0.0445553 0.0846952 0.000180444 +0.0409145 0.07739 -0.0077683 +0.0297353 0.111221 -0.00987421 +-0.0220481 0.0379707 0.0182323 +-0.0636401 0.0337302 0.00992182 +-0.0277909 0.0796672 -0.0363416 +-0.0247513 0.0944605 0.0453863 +-0.0291577 0.0733109 -0.0335988 +-0.0264744 0.0486202 0.0485825 +-0.0654948 0.104238 0.0403184 +-0.054309 0.153692 0.0171048 +0.000886988 0.0365316 0.0205866 +0.025787 0.114054 0.0339562 +-0.0624998 0.091833 0.0450322 +-0.0825753 0.107428 -0.000626511 +-0.0879726 0.100935 0.0073995 +-0.0849555 0.110375 0.0243559 +-0.00450509 0.0815118 0.0573962 +0.0411647 0.0886413 -0.00977915 +0.00923376 0.0823418 -0.0323881 +0.0250818 0.0983923 -0.0201688 +-0.0460388 0.0353834 -0.0203139 +-0.0563344 0.154371 0.0236088 +-0.0786725 0.15564 0.0171569 +-0.0174933 0.120917 0.0332266 +-0.0405771 0.0447491 -0.0223069 +-0.0706839 0.0363372 -0.00115986 +-0.0827485 0.134001 0.0496722 +-0.0566419 0.0336495 -0.0102846 +-0.0932956 0.12823 0.014251 +-0.0183957 0.116542 -0.0154107 +0.03698 0.0590759 0.0339965 +-0.0709427 0.132583 -0.00826816 +-0.0697213 0.0778913 -0.0154943 +-0.0222445 0.159024 -0.0114139 +-0.0571999 0.0684533 0.0375014 +-0.04663 0.0533425 -0.0102323 +0.00628325 0.0668147 -0.0324472 +-0.0477443 0.0767654 -0.0182192 +0.000336625 0.0525175 -0.0304496 +-0.0562455 0.0345922 0.0440034 +-0.00249349 0.0474079 0.0491587 +-0.00849662 0.115566 0.0401952 +-0.0346349 0.176996 -0.009991 +-0.0315471 0.0665587 -0.0224416 +-0.0114919 0.121016 0.0357517 +-0.00348929 0.0884115 0.0568027 +-0.0275554 0.0689002 0.0398598 +0.0463861 0.080656 0.0111753 +-0.0335046 0.109774 0.0374515 +-0.0104184 0.179993 -0.0295246 +0.0299649 0.0370453 0.0224182 +-0.0229027 0.109901 -0.0203838 +0.0326144 0.117295 0.0103313 +0.0369028 0.0954111 -0.0108822 +-0.0564742 0.041367 0.0464242 +-0.0770729 0.168746 -0.0303374 +-0.0310065 0.124592 0.0202545 +-0.06762 0.17339 -0.0440641 +-0.0124743 0.0632507 0.0548154 +-0.06879 0.067714 0.0304363 +-0.0188136 0.124392 0.0261122 +-0.0775236 0.155819 0.0175602 +-0.0744868 0.14835 0.0408614 +-0.0798509 0.120721 -0.00541034 +-0.0474977 0.0747299 0.0422594 +-0.0819076 0.08016 -0.00254028 +-0.0104535 0.0366522 -0.0168147 +0.0107598 0.0346122 0.0387698 +-0.0618853 0.158437 -0.0215849 +-0.0248668 0.103031 -0.023615 +0.0521945 0.0697716 0.0245573 +0.0156704 0.0936059 -0.0251021 +0.0371318 0.111041 0.00479819 +-0.0835634 0.0897492 -0.00557879 +0.00648846 0.118239 0.0378444 +-0.0454996 0.0464888 0.0408011 +0.00251072 0.0388788 0.0260522 +-0.0757603 0.10082 0.036651 +-0.072674 0.131225 0.051196 +-0.0107806 0.0770662 -0.0381287 +-0.0336363 0.153436 -0.00674709 +-0.0843022 0.0938821 0.0298739 +-0.00957953 0.177197 -0.0268263 +-0.06621 0.148552 -0.030869 +-0.0367939 0.127143 0.000444502 +0.0450752 0.0819431 0.00117926 +0.00252922 0.0387278 -0.0124032 +0.0124259 0.130345 0.00996559 +-0.039483 0.112566 0.0355031 +-0.0896451 0.11724 0.00430849 +-0.0307561 0.0876495 -0.0285591 +-0.0336555 0.0363317 0.0490618 +0.00481949 0.0349074 0.0372909 +0.0324749 0.095557 0.0400886 +-0.0601974 0.126918 0.041055 +0.0561271 0.0494063 0.0121912 +-0.0663732 0.0796127 0.0418746 +-0.0634873 0.105626 0.040045 +-0.0348887 0.174114 -0.0129217 +-0.0331172 0.123673 -0.00477506 +-0.0158191 0.0855498 -0.0389623 +-0.0630684 0.138136 0.036884 +0.00839558 0.0418967 -0.0238735 +-0.000234213 0.0957245 -0.0313684 +-0.00270805 0.0387067 0.00335713 +-0.0066107 0.0434378 -0.0261152 +0.0267348 0.0889072 0.0458132 +-0.057498 0.0762057 0.0428357 +-0.0559977 0.128155 -0.00607843 +-0.0652856 0.176792 -0.0608019 +-0.0847322 0.10481 0.00139005 +0.0045205 0.0842507 0.0571459 +-0.0540417 0.148675 -0.00217424 +0.00157845 0.0388465 -0.0127005 +-0.0649294 0.123847 -0.00887936 +0.0268943 0.0906576 -0.0219805 +-0.0692389 0.149629 -0.0402111 +0.0424058 0.101483 0.00416631 +-0.069135 0.0354547 0.0122501 +-0.0311414 0.168206 -0.0166543 +0.0247254 0.0405634 0.0363023 +-0.035656 0.0591967 -0.0115208 +-0.0492298 0.13342 0.00108021 +0.0186953 0.0943115 -0.0238444 +-0.0632815 0.159908 -0.0475928 +-0.0744952 0.144184 0.0450216 +-0.0273351 0.0750142 0.0443436 +0.0129485 0.0726239 0.0538836 +-0.0256504 0.178665 -0.00908499 +-0.0152817 0.126335 -0.00175389 +0.0171854 0.035921 0.00432788 +0.00536983 0.0385261 0.026955 +-0.069701 0.0749104 -0.0135814 +-0.0936513 0.125496 0.0142597 +-0.0218218 0.0854612 -0.0381675 +-0.0670338 0.0819342 0.0426575 +-0.0637771 0.0824308 -0.0191299 +-0.0579197 0.0410941 0.0197057 +0.004329 0.114453 -0.0192954 +-0.0743852 0.111313 0.0463698 +0.0153242 0.0566704 -0.0288596 +0.0201589 0.0349933 -0.00358051 +-0.0674387 0.0336478 0.00564073 +0.0380425 0.109755 0.0161689 +0.0214264 0.0348625 -0.00133145 +0.0129483 0.0405423 0.0447572 +-0.00171529 0.0627358 -0.0345403 +-0.0206569 0.0494682 -0.0293042 +0.0369479 0.0784891 -0.0137448 +-0.0877279 0.139146 0.00920485 +-0.0228745 0.0383806 -0.00412065 +0.0407791 0.105635 0.00716484 +-0.0164884 0.161116 -0.0081783 +0.0261701 0.115347 0.0327443 +-0.0171143 0.0393698 0.0395766 +0.0364251 0.0840505 -0.0167267 +-0.0413094 0.0336719 -0.0183114 +-0.00449481 0.0619627 0.0557718 +0.0354002 0.054813 0.0334165 +0.0257124 0.0795754 0.0477924 +-0.0900689 0.132434 0.0392074 +0.0111597 0.124256 -0.00791398 +0.023574 0.105697 0.0395934 +0.0172046 0.061784 0.0493931 +-0.0738846 0.110669 -0.00843945 +0.00601824 0.128477 0.0276707 +-0.0581623 0.155642 0.0142378 +-0.046474 0.0903329 0.04369 +-0.0204963 0.0988407 0.0444811 +0.0448392 0.0847511 0.0231667 +-0.0246346 0.0464142 -0.0272665 +-0.0164056 0.0347921 0.0489909 +-0.048358 0.146267 0.00883601 +-0.0626778 0.0407451 0.0424121 +-0.06586 0.154377 -0.00304604 +0.0375072 0.103901 -0.00584413 +-0.00221994 0.0380783 -0.0146251 +0.00247871 0.110023 0.0425049 +0.0588331 0.0552392 0.0181818 +-0.0156079 0.0352742 -0.0184368 +-0.0112854 0.0344473 -0.0186905 +-0.0170355 0.0338392 -0.0211402 +-0.0137571 0.128142 0.00234571 +0.0353694 0.082169 0.0388786 +-0.065182 0.160968 -0.0576695 +-0.0324895 0.0874934 0.0434306 +-0.0637445 0.0781022 -0.0180675 +-0.0882379 0.0914593 0.00646904 +0.0256941 0.120543 -0.00190068 +-0.0750751 0.149943 -0.025867 +-0.0477253 0.135673 0.0140062 +-0.0678845 0.116524 -0.00880656 +-0.0627671 0.15529 -0.013592 +-0.0588282 0.0408079 0.0456406 +-0.056691 0.0506774 -0.00137882 +-0.0828622 0.0910525 -0.0066104 +-0.0499126 0.0515141 0.0166499 +-0.0490107 0.146266 0.00962371 +0.0122318 0.130219 0.0070475 +-0.0116803 0.0570084 -0.0342026 +-0.0651676 0.167884 -0.0330971 +-0.0730453 0.0699885 -0.00346826 +0.0174821 0.0990004 0.0469682 +-0.0908453 0.133761 0.025216 +-0.0657306 0.150277 -0.0347821 +-0.0671422 0.159475 -0.0561779 +-0.00377564 0.078412 -0.0370359 +-0.0617811 0.042326 0.0146867 +-0.0252077 0.0348536 0.0435448 +-0.028493 0.0602587 0.0370952 +-0.08903 0.119932 0.00232561 +-0.0345174 0.105629 0.0392495 +-0.0234134 0.181486 -0.0190275 +-0.0664685 0.0611724 0.00451786 +0.0367619 0.0414833 0.0270934 +-0.0275613 0.121213 -0.00819283 +0.0347392 0.0848817 0.0397697 +-0.0655835 0.0626949 -0.00273961 +-0.0187525 0.0671388 -0.037784 +-0.0904123 0.13106 0.0392156 +0.0183728 0.0521803 -0.0265242 +-0.0394837 0.113931 0.0345962 +-0.050497 0.0848226 0.0453947 +-0.026736 0.125755 0.00710307 +-0.0284884 0.0890334 0.0453918 +-0.0441667 0.0657175 0.0402548 +0.0109368 0.035027 0.0276086 +-0.0219243 0.0335307 -0.0255712 +-0.0865855 0.100865 0.00437928 +-0.0114057 0.038823 -0.00778731 +-0.0606205 0.136712 0.0351771 +-0.0938957 0.124187 0.0252761 +-0.0877217 0.151511 0.024071 +0.0027861 0.0392982 -0.00725238 +-0.0435747 0.127942 -0.00117905 +0.00626863 0.114136 -0.0189815 +-0.0182416 0.0386382 0.0310248 +-0.065785 0.145733 -0.0198954 +-0.0867571 0.0833567 0.0144816 +0.0263294 0.0517767 -0.02097 +0.0205436 0.0357642 -0.00368285 +-0.0174561 0.0544373 0.0497557 +0.0051136 0.11017 -0.0202785 +0.0320036 0.0972394 -0.014969 +0.018368 0.0537078 -0.0275601 +0.00449367 0.115547 0.0400425 +0.030957 0.0564285 0.0393343 +-0.0480871 0.166778 0.00155196 +-0.0374511 0.122567 -0.00961353 +-0.067466 0.154933 0.00219081 +-0.0645473 0.0334176 0.0010517 +-0.0507826 0.0530079 0.0196214 +-0.0269873 0.0549465 0.0375414 +-0.0318114 0.0361324 -0.0187 +0.0211923 0.12581 0.0217553 +-0.0485738 0.111377 -0.0178292 +-0.0790938 0.10996 -0.003593 +0.0410408 0.0408917 0.00130956 +-0.0171973 0.174198 -0.0240623 +-0.0136738 0.0526181 -0.0325173 +-0.0194987 0.0828823 0.05729 +-0.00149547 0.119691 0.0381347 +0.0125362 0.127772 -0.00169738 +0.00352032 0.0772514 0.0561756 +-0.0037108 0.0392109 0.0335024 +-0.0682887 0.164315 -0.0170259 +-0.0861823 0.107654 0.00936346 +0.0116633 0.0616767 0.0519085 +-0.0828359 0.104706 -0.00261356 +-0.0473623 0.129578 0.0262098 +0.0143608 0.0508459 -0.0270896 +-0.0265586 0.171236 -0.0104749 +0.0203688 0.0459169 -0.020834 +-0.0404996 0.0591463 0.0404229 +-0.0164937 0.0758406 0.0558352 +-0.00649647 0.0898144 0.056995 +-0.070489 0.118975 0.0531649 +-0.0665486 0.169315 -0.0336077 +-0.0869443 0.101766 0.0237835 +0.0413201 0.104267 0.012164 +-0.0705201 0.0646959 0.0221381 +-0.0345088 0.104256 0.0402356 +0.0590657 0.0691634 0.0182335 +0.0274527 0.103904 -0.0160338 +-0.0321732 0.0461161 0.0457813 +-0.0446011 0.0519723 -0.0106716 +-0.0932418 0.125562 0.0272746 +-0.0458642 0.128671 0.00011454 +-0.0885465 0.0902329 0.022415 +-0.0693724 0.136902 0.0471868 +0.0383558 0.102292 -0.0062663 +-0.0638617 0.125566 0.0463833 +-0.017504 0.0870094 0.0567302 +-0.0370734 0.0393951 0.0451959 +0.00329134 0.119473 -0.0147093 +-0.0543235 0.0334648 0.00849253 +0.0274945 0.0381011 -0.00197122 +-0.0703836 0.151592 -0.0450749 +0.0441667 0.0973563 0.00616912 +0.0240844 0.0547426 -0.0237664 +-0.015779 0.0770791 -0.0385675 +-0.0731035 0.0667848 0.0215468 +0.0455074 0.0569933 0.0321208 +-0.0438752 0.128361 0.000408951 +-0.0622566 0.0709345 0.0378148 +-0.0713089 0.156055 0.0109968 +0.0323876 0.047596 -0.00623106 +-0.0610541 0.068813 0.0363796 +-0.0175437 0.119111 -0.0121224 +-0.0136792 0.0541002 -0.0332811 +-0.0477406 0.135604 0.0113959 +-0.0709176 0.112214 -0.00951227 +0.0301974 0.0887542 -0.0200097 +-0.0734581 0.168 -0.0440151 +-0.0685258 0.165031 -0.0185494 +-0.0264962 0.0690788 0.0415599 +-0.0249134 0.0383716 -0.00452352 +-0.086697 0.114875 0.0460769 +-0.0752073 0.156095 0.0183637 +-0.0189411 0.0376177 0.0530488 +-0.0634886 0.064446 0.0291098 +-0.0261594 0.066324 0.0406106 +-0.0142604 0.0974009 0.0506069 +-0.0316679 0.0763713 -0.0315414 +-0.040787 0.0855384 -0.021437 +0.0590343 0.06983 0.00945078 +-0.07763 0.165322 -0.0259443 +-0.0631195 0.176032 -0.0554618 +-0.0918958 0.129686 0.0292517 +-0.029505 0.0545565 0.0362962 +-0.0356809 0.123888 -0.0070042 +0.0421291 0.070468 -0.00580336 +0.0297749 0.0920783 -0.0194766 +-0.0415439 0.148326 -0.00168489 +-0.090059 0.136447 0.0142016 +-0.0555057 0.0946 0.044463 +-0.0945025 0.125547 0.0202583 +-0.0304869 0.0532061 0.0367531 +0.00830607 0.0917456 -0.031199 +0.0182274 0.125477 -0.00123802 +0.0138055 0.0712841 0.0533593 +0.0294478 0.0506302 0.0370841 +-0.0802909 0.104732 0.0311813 +0.0308738 0.115323 0.0282321 +-0.0889738 0.137888 0.0281941 +-0.0750897 0.149941 -0.0248696 +0.0395014 0.0469731 0.0315971 +-0.0599935 0.0586398 0.0172334 +-0.0790056 0.166641 -0.0359617 +-0.00233373 0.114874 -0.0177321 +-0.0241436 0.180147 -0.0104229 +-0.0746876 0.0700138 0.0272066 +-0.00503592 0.13043 0.00494647 +-0.069435 0.179317 -0.0579979 +-0.0896062 0.137812 0.0131974 +-0.0625358 0.155244 -0.0346054 +-0.071543 0.155755 0.00800576 +-0.0746181 0.165272 -0.019163 +-0.0386347 0.0548667 -0.0110053 +0.00350742 0.103001 0.0436938 +-0.0629079 0.15056 -0.0255866 +0.0200283 0.0371524 -0.00668325 +-0.0375331 0.127856 0.0134298 +-0.075576 0.155851 0.0124034 +-0.0145239 0.118305 0.0371093 +-0.0528711 0.15259 0.0147483 +-0.0639569 0.158297 -0.0475943 +-0.0437953 0.0869983 -0.0218056 +0.0183 0.0651194 -0.0285252 +0.0410434 0.0689808 -0.00777311 +-0.0391241 0.157933 0.00465789 +-0.0617079 0.155317 -0.0205813 +0.049194 0.055373 0.030576 +-0.0577821 0.0826022 -0.0210434 +0.00750154 0.123796 0.0339733 +-0.0844011 0.0777797 0.0105147 +-0.0508742 0.137048 0.0234112 +-0.0487311 0.13178 0.0269763 +-0.0224768 0.123487 0.0248086 +0.0572102 0.0550739 0.00417234 +0.0523558 0.0647992 0.0281407 +-0.0804668 0.131637 0.0521945 +0.0276827 0.0480336 -0.0156964 +-0.0121824 0.178673 -0.0292354 +-0.0228778 0.10587 -0.0225138 +-0.0644637 0.0743344 0.0396953 +-0.0655821 0.153706 -0.0431373 +-0.0176845 0.0525387 -0.0318817 +0.0256228 0.0363687 8.49366e-07 +-0.0208533 0.0866413 0.055877 +-0.0490886 0.157599 -0.00632625 +0.00958152 0.0417197 0.0451866 +-0.0135001 0.0800899 0.0570677 +-0.0885594 0.112819 0.0222051 +0.0440561 0.0945388 0.0201582 +0.00630898 0.0624816 -0.0315869 +-0.0560997 0.155362 -0.00113519 +-0.0238123 0.0867774 -0.0372362 +-0.0711896 0.155374 -0.0449035 +0.018728 0.0549999 0.0480114 +-0.0696134 0.172257 -0.054028 +-0.00359831 0.101107 0.0440537 +-0.033095 0.0723179 -0.02347 +0.0338305 0.107861 -0.00824999 +-0.0354812 0.0383051 -0.00290933 +-0.0238593 0.0838986 0.0547079 +0.0239371 0.103424 0.0418106 +-0.076687 0.14724 -0.00686649 +-0.0113442 0.129847 0.0112634 +-0.0595215 0.131137 0.0385262 +-0.00250336 0.0633801 0.0564795 +-0.0765967 0.152807 -0.00988734 +0.00617007 0.126444 0.0306412 +0.0264293 0.0400385 -0.00421056 +-0.0261224 0.165258 -0.0166522 +-0.00669164 0.129496 0.00145082 +-0.0531001 0.154605 -0.00338641 +0.0347186 0.113797 0.00249877 +-0.0746345 0.0660496 0.0075612 +-0.0897609 0.0915993 0.0164407 +-0.0848984 0.0965537 0.0289739 +-0.0217829 0.111029 -0.0195757 +-0.0890662 0.123985 0.0032876 +0.0609254 0.0637423 0.0131584 +-0.0495476 0.147557 -0.00269468 +-0.00609162 0.0391352 -0.0126175 +-0.047607 0.144918 0.0010701 +-0.0484709 0.165547 -0.00491912 +0.0489576 0.0466396 0.0248167 +-0.0391315 0.160685 -0.012118 +-0.0530423 0.14778 0.0224018 +-0.0471085 0.0683456 0.0397676 +-0.0785029 0.128864 0.0532728 +0.0368255 0.109713 0.0241821 +0.0163171 0.0686116 0.0516854 +-0.0729482 0.0914984 0.0411605 +-0.0805357 0.113778 0.0465863 +0.0302378 0.0727042 0.0419554 +-0.0625354 0.122703 0.0447625 +-0.0615083 0.170965 -0.0565878 +-0.0124852 0.0659775 0.0542376 +0.0219313 0.0605513 0.0474343 +-0.048186 0.135579 0.00839494 +-0.014696 0.0585192 -0.0354314 +-0.0818834 0.109932 0.0368633 +-0.0564976 0.101562 0.0427397 +-0.0692156 0.0343564 -0.00463486 +-0.0924819 0.125444 0.00927262 +-0.0116015 0.0406252 -0.0263738 +0.000388646 0.0448955 -0.0263577 +-0.0474886 0.05462 0.0367747 +-0.0150651 0.12575 -0.00315467 +-0.0225002 0.104414 0.0430095 +-0.016108 0.038364 0.00641286 +-0.0474972 0.105664 0.0404447 +0.053572 0.0650953 0.0274823 +-0.068963 0.0874301 0.0429809 +-0.0206158 0.0422474 -0.0286271 +-0.0745126 0.131657 0.0521168 +0.0246516 0.122175 0.000230276 +-0.00982514 0.16696 -0.0220459 +-0.00885716 0.0385311 0.024037 +-0.0568241 0.063612 0.0312362 +-0.0787856 0.109366 0.039802 +0.0392221 0.075321 0.0338531 +-0.0725057 0.102685 0.0380563 +0.0318729 0.0380045 0.0237472 +-0.0704322 0.13832 0.0474328 +-0.0325018 0.177105 -0.00443384 +-0.0226059 0.0381278 0.0251854 +-0.00949201 0.129843 0.00617837 +-0.00878563 0.110674 -0.0212403 +0.0347324 0.0882263 -0.0174421 +-0.046782 0.0841151 -0.0215173 +-0.0692662 0.0692944 0.0324707 +0.00925419 0.0696192 -0.0318888 +-0.0303184 0.0423041 0.0510935 +-0.0780856 0.0784826 -0.00760345 +0.0256389 0.0929167 0.0460121 +0.00457646 0.108164 0.0418882 +-0.0519222 0.0461016 0.019678 +0.00234204 0.0367065 0.0225428 +0.0457266 0.0847913 0.00519644 +0.0292205 0.0857953 -0.020938 +-0.0196964 0.0384682 0.0290787 +0.0127826 0.0926962 0.0520031 +0.0390362 0.0980073 0.030266 +0.0186124 0.127837 0.0122439 +-0.0535608 0.0430661 -0.00900679 +-0.0509276 0.0346131 0.0417321 +0.0233086 0.0634336 -0.024957 +0.00850697 0.0546686 0.0524774 +-0.0275662 0.123979 -0.00112939 +-0.0688326 0.13265 0.047942 +0.0112159 0.0922395 -0.029689 +0.00233442 0.0539469 -0.0306143 +-0.0446508 0.040942 -0.0182992 +-0.00948977 0.114167 0.0408028 +0.0254079 0.10205 -0.0180571 +-0.0850056 0.146006 0.00617966 +-0.00850241 0.0870443 0.0572609 +0.0097783 0.1251 0.0319006 +-0.0222638 0.126605 0.016039 +-0.0722117 0.0348867 0.00176609 +-0.0327045 0.111423 -0.0179721 +-0.057835 0.0897878 -0.0213715 +-0.076573 0.153595 0.0311713 +0.0595629 0.058084 0.0191786 +-0.0323163 0.155148 0.000487548 +0.0120506 0.0505153 0.0488388 +-0.0524497 0.140085 0.0234103 +-0.0325359 0.172727 -0.00270207 +-0.0711683 0.149278 -0.039104 +-0.0641214 0.155412 0.0266328 +0.0288394 0.112544 -0.00929606 +-0.0217358 0.0384567 0.028668 +-0.0719124 0.168014 -0.0470137 +-0.0448486 0.0351369 -0.0234128 +0.0159855 0.12897 0.0112743 +0.0311432 0.0373381 0.0223917 +-0.000793766 0.0867716 -0.0355698 +-0.0900654 0.132428 0.033223 +-0.0935895 0.122834 0.0262964 +-0.0520638 0.0723523 0.0405753 +-0.0111299 0.129809 0.0171219 +-0.0491641 0.0344528 0.0317811 +-0.0849325 0.0938555 0.0290926 +-0.0809703 0.132422 -0.00393108 +-0.0887798 0.140493 0.0370948 +-0.0577868 0.0840301 -0.0211707 +-0.0814849 0.0872077 0.0329213 +0.0191348 0.102061 0.0453843 +0.0573171 0.0523102 0.00718519 +0.039991 0.0847392 0.0332858 +-0.0668403 0.0335301 0.004077 +-0.0117893 0.0392416 0.0372019 +0.0216437 0.120011 -0.00733339 +-0.0125093 0.0883992 0.0567932 +-0.0378236 0.125803 -0.00505851 +-0.0750347 0.154671 0.0286993 +-0.0887093 0.112351 0.0387402 +-0.0638899 0.102518 -0.0176142 +-0.0600535 0.138395 -0.00620678 +-0.0103882 0.129888 0.00873113 +-0.0610188 0.119808 0.0416066 +0.0158574 0.104091 -0.0202309 +-0.0839121 0.122095 -0.00374203 +-0.0841686 0.143365 0.0409129 +-0.00166671 0.12799 -0.00382866 +-0.0434723 0.0647942 0.0406198 +0.0406639 0.0815903 -0.00978474 +-0.0652464 0.154114 0.00157024 +-0.0257535 0.0740897 -0.0368116 +-0.0739579 0.13841 -0.00677972 +-0.0288788 0.0592582 -0.0244095 +0.0093177 0.0926652 -0.0301396 +-0.0452267 0.150119 -0.00491516 +-0.0319894 0.0384633 -0.00603174 +-0.0794952 0.0854073 -0.00956797 +-0.0675492 0.129835 0.0480321 +-0.0523266 0.033478 -0.00194369 +-0.00450192 0.0718383 0.058171 +-0.0535372 0.0578641 0.0215172 +-0.0140108 0.0596764 0.0527295 +-0.000532268 0.111266 -0.0199168 +0.0523683 0.0540101 0.0281247 +0.0211966 0.123092 -0.002693 +-0.00468835 0.0598784 -0.0344633 +-0.0718785 0.102239 -0.0132694 +-0.0678239 0.15109 -0.0436673 +0.0350895 0.0686836 0.0383949 +0.0422361 0.101506 0.0151693 +0.0317521 0.0794454 -0.0197442 +-0.0577724 0.0796775 -0.0200459 +-0.0461631 0.0335506 -0.0117706 +-0.0827169 0.105982 0.0279083 +-0.0922534 0.122854 0.0424865 +0.0128317 0.0712714 0.0536973 +-0.0126798 0.126321 -0.00380105 +-0.00116162 0.0980337 0.0521962 +-0.0814909 0.0788596 0.028943 +-0.0501013 0.15611 -0.00554414 +0.00939521 0.0609325 -0.0302492 +-0.030101 0.160758 -0.0141091 +-0.031497 0.117989 0.0308563 +0.0231755 0.0916964 -0.0230758 +0.0434109 0.0987186 0.0151565 +-0.0514982 0.108428 0.0386132 +-0.0644896 0.0833289 0.0440861 +-0.0238622 0.101613 -0.0238665 +0.04258 0.0422624 0.0239479 +0.0354547 0.103863 -0.00997386 +0.0217345 0.0994968 0.0456553 +-0.0743457 0.168929 -0.0264214 +0.01504 0.0343531 -0.00213727 +0.00148487 0.0399885 0.0464307 +0.0273636 0.0699427 0.0430425 +-0.0548013 0.086928 -0.0216118 +-0.0729344 0.0901459 0.0411907 +0.0305961 0.110839 -0.00946183 +-0.0721093 0.0846859 0.0405598 +-0.067036 0.180898 -0.0568882 +0.0496382 0.068363 0.00147832 +-0.0149904 0.165173 -0.0188028 +-0.0928971 0.117368 0.0123132 +-0.000378579 0.101174 0.0451223 +-0.00167056 0.0392225 0.0339103 +0.0308479 0.0567691 -0.0158074 +0.00821609 0.0823703 -0.0328688 +0.0179771 0.0393777 0.0432522 +-0.0917891 0.141969 0.0171701 +0.0284614 0.0398271 -0.00325429 +-0.0273719 0.0335777 -0.022929 +-0.0799767 0.138308 -0.00390962 +0.0224205 0.0519815 -0.0241272 +-0.0206006 0.0393656 -0.0285093 +-0.075081 0.147222 -0.0118498 +-0.0748806 0.0992858 -0.0126164 +0.0126717 0.127043 -0.00291981 +-0.0321779 0.0474216 0.0442941 +0.0248435 0.0822524 0.0483141 +-0.087169 0.0964235 0.0255876 +-0.00114332 0.0356309 -0.0159104 +-0.0674627 0.138295 0.0446438 +-0.0656974 0.169193 -0.0361564 +-0.065794 0.155512 0.00862557 +0.0346025 0.0754478 0.0394941 +-0.0145323 0.043279 0.0510718 +-0.0739879 0.139879 -0.00672352 +-0.0921938 0.132347 0.0162256 +-0.077508 0.174998 -0.0490226 +-0.0161182 0.180144 -0.0199393 +0.0442692 0.0973579 0.00816486 +-0.0885535 0.112746 0.0331115 +-0.0527601 0.0447727 0.0186838 +-0.0301237 0.12585 0.013192 +-0.0359512 0.151053 -0.00163407 +-0.0579079 0.121934 -0.00872095 +-0.0709562 0.158172 -0.0439179 +-0.00996463 0.114432 -0.0172214 +-0.0308542 0.0986541 -0.0229751 +-0.0199407 0.0381449 0.0130842 +-0.0439068 0.129921 0.011069 +0.0290675 0.120111 0.00471365 +-0.0203588 0.175699 -0.0155519 +0.0542673 0.0491964 0.0212031 +-0.0348545 0.0986254 -0.0227182 +0.0413986 0.0830578 -0.00877387 +-0.0554939 0.0477978 0.0398952 +-0.0760774 0.166574 -0.0390172 +0.0438486 0.0846749 0.0261721 +0.0021495 0.0388151 -0.00319944 +0.04114 0.104231 0.00317036 +0.0165359 0.0912212 -0.0265781 +-0.0518469 0.0545626 0.0286406 +-0.0568589 0.0562507 0.00563881 +-0.0383911 0.127983 0.00280515 +-0.0857603 0.130763 -0.000714461 +-0.0173678 0.0389666 0.0345056 +-0.0266954 0.125077 0.00273937 +0.0143393 0.0349605 0.0410018 +0.0132369 0.0709965 -0.0314873 +-0.0317622 0.0338243 0.0127586 +-0.0767072 0.0724697 0.0281768 +-0.0694593 0.040787 -0.000292884 +0.013984 0.129601 0.0176686 +-0.00527436 0.124342 -0.0098488 +-0.0749724 0.149924 -0.0268701 +-0.0188238 0.0855077 -0.0385626 +-0.0577531 0.141417 -0.00374252 +-0.0506075 0.0335251 -0.00346549 +-0.0105008 0.103039 0.0436514 +-0.062498 0.0847471 0.0443617 +-0.0166725 0.0495705 -0.0306349 +-0.0368813 0.108512 -0.0198737 +0.0510305 0.0733741 0.0168194 +-0.0275083 0.112548 0.0360564 +-0.0636421 0.0627085 -0.00368166 +0.0411669 0.104244 0.0141607 +-0.00149973 0.0965741 0.0536819 +-0.0288186 0.0862428 0.0454609 +-0.0526183 0.0343668 0.0293685 +-0.0601235 0.15512 0.0251504 +-0.0378644 0.111663 -0.0181901 +0.0344602 0.0726275 -0.0157808 +-0.0144826 0.0530653 0.0501401 +-0.0700881 0.131265 0.0496481 +-0.0878883 0.0914318 0.00546674 +-0.0415923 0.0491549 -0.0111971 +0.0234288 0.0618809 0.0460892 +-0.0630663 0.151874 -0.00782908 +-0.0866506 0.128453 0.0480393 +-0.0781275 0.152854 0.000107941 +-0.0106285 0.174518 -0.0286758 +-0.0596993 0.0345337 0.0416145 +-0.0579832 0.0466328 -0.00336399 +-0.0265008 0.124041 -0.00116405 +-0.0254725 0.0400777 0.0541415 +-0.0178664 0.12824 0.013233 +-0.0206926 0.0385034 0.0288434 +-0.0534934 0.0747559 0.0420439 +-0.0652623 0.158339 -0.0115587 +-0.0767656 0.152802 -0.00889022 +0.0245199 0.0520168 0.0405174 +0.0264125 0.0450979 -0.0096842 +-0.012488 0.107228 0.0430572 +-0.078668 0.170753 -0.0430283 +-0.0625286 0.164689 -0.038593 +-0.0241791 0.159685 -0.00173809 +0.00849261 0.092349 0.0531984 +-0.0759472 0.132533 -0.00707033 +-0.0806057 0.0720192 0.00754007 +0.00646347 0.117501 -0.0166002 +-0.0178266 0.0947205 0.0526193 +0.000481761 0.10723 0.0430499 +-0.013526 0.162053 -0.0127433 +-0.0186103 0.042208 -0.0281438 +-0.0252891 0.0336623 -0.0225985 +0.00751041 0.0688465 0.0554032 +0.0252903 0.0675893 -0.0238235 +-0.065902 0.112354 -0.012152 +-0.0476622 0.0620749 -0.0123691 +-0.0940806 0.122789 0.0152778 +-0.0229201 0.115998 -0.0147881 +-0.0344826 0.0519106 0.0380623 +-0.0890068 0.11621 0.0451247 +0.0107555 0.0404168 0.045078 +-0.0894686 0.136415 0.011209 +-0.0757697 0.145819 -0.00688494 +-0.071833 0.152571 -0.043913 +0.0235861 0.0352777 0.0154316 +-0.0926495 0.129588 0.0122381 +-0.0647445 0.0780775 -0.0178137 +-0.00582898 0.0896214 -0.0360418 +0.0559073 0.0721087 0.0082759 +-0.0261702 0.0823861 0.0514348 +-0.0558857 0.0970202 -0.0212239 +-0.0630553 0.148575 -0.0182369 +0.00714931 0.123902 0.0338795 +0.0304322 0.0902625 -0.0195701 +-0.0137593 0.0388335 -0.0101314 +0.0427673 0.0818692 0.0284169 +-0.0651233 0.155698 0.0103085 +-0.0897032 0.113874 0.0229056 +-0.0447211 0.129823 0.00637961 +-0.0575 0.0588269 0.0212602 +0.0104936 0.11823 0.0368787 +0.0202805 0.12337 -0.00295598 +-0.0340138 0.155107 0.00155033 +0.0602047 0.0622908 0.0181797 +-0.0859874 0.153017 0.0132012 +0.0433237 0.0846089 -0.00479162 +-0.0678527 0.0937535 -0.0166708 +0.0608755 0.0651235 0.0141559 +-0.0737739 0.0878479 -0.0153893 +0.0296171 0.11988 0.0191943 +-0.00324005 0.038276 0.0477168 +-0.0806315 0.139432 0.0474021 +0.0455013 0.0583861 0.0319381 +-0.0740734 0.172255 -0.0349568 +0.0224678 0.0975265 0.046211 +-0.0525514 0.0389481 -0.0113995 +0.0281531 0.119463 0.0257844 +-0.0765864 0.155527 -0.0189073 +-0.0289503 0.0931616 -0.025199 +-0.0573663 0.0338673 0.0217593 +0.0396386 0.064502 0.0326274 +0.00539495 0.0433546 -0.0245866 +0.0256558 0.0782254 0.0477034 +0.0162437 0.0764684 -0.0291666 +0.0272037 0.100805 0.0412523 +-0.0316694 0.0357391 0.0272619 +-0.0623836 0.163119 -0.0315939 +0.0275463 0.095549 0.0435012 +0.0393856 0.0475887 -0.00567863 +-0.0394934 0.163848 0.00245451 +0.0242993 0.0928305 -0.0222726 +-0.0271788 0.0358787 -0.0194139 +-0.0734977 0.124615 0.0532793 +-0.0883817 0.123968 0.00128346 +-0.0257849 0.174205 -0.0110873 +-0.0281104 0.163768 -0.0157424 +-0.0662143 0.0386042 0.0318887 +-0.0109132 0.103533 -0.0236899 +-0.0616548 0.140062 -0.00630976 +-0.060057 0.135486 -0.00665791 +0.0434691 0.0624283 0.0290897 +-0.0236196 0.0436733 -0.0286374 +0.043495 0.0610671 0.0301862 +-0.0910584 0.133686 0.0122173 +0.0291029 0.0938741 -0.0193597 +-0.0261534 0.0383869 0.0314189 +0.00850666 0.0896726 0.0548038 +-0.0247527 0.0340557 -0.0209813 +-0.0186132 0.0436215 -0.0279143 +-0.0124858 0.0911558 0.0565265 +0.0053433 0.0524636 -0.0297405 +0.0403239 0.0999619 0.0261672 +-0.0522155 0.149331 0.0183918 +-0.0534968 0.0973516 0.0432358 +-0.0284959 0.10431 0.0415782 +-0.0908913 0.139194 0.0171389 +0.0264487 0.0948748 -0.0204583 +-0.0834511 0.149763 0.0335021 +-0.00425208 0.0941246 -0.0337645 +-0.0337113 0.0652961 -0.0165207 +-0.0405229 0.128682 0.00643622 +0.025364 0.0547555 -0.0216571 +0.0209176 0.124997 0.0245115 +0.0147936 0.104084 -0.0202238 +-0.0510936 0.156101 -0.00485677 +-0.00104637 0.116277 -0.0172455 +-0.0564804 0.0613799 -0.00459099 +-0.0261657 0.11885 -0.0117616 +-0.0612216 0.155927 0.0131437 +-0.0264503 0.181668 -0.00853376 +0.0163083 0.0594423 -0.028212 +-0.0188061 0.081321 -0.0390856 +-0.0660982 0.156586 -0.0534726 +-0.0596936 0.155857 0.0122367 +-0.0656404 0.0608118 0.00501538 +0.00550383 0.0716948 0.0562222 +-0.0473457 0.134062 0.00939848 +0.0233312 0.0436331 0.0404882 +0.0342215 0.0827959 -0.0185003 +0.00407718 0.131556 0.00833758 +-0.0524976 0.0931679 0.0439324 +-0.0206125 0.0553712 0.0467047 +-0.0499367 0.0345722 0.0419808 +-0.0720303 0.169416 -0.0480254 +0.0463102 0.0820482 0.0101764 +0.0239273 0.0383233 0.0327312 +-0.0556472 0.0657358 0.0349277 +0.0082124 0.0879974 -0.0324239 +-0.0483251 0.123967 0.0299918 +-0.00979541 0.0826872 -0.0380854 +-0.0104818 0.0688481 0.0551963 +-0.0738713 0.116445 -0.00712552 +-0.0783268 0.0804305 0.0341941 +-0.0318616 0.0386777 -0.0303614 +-0.0685663 0.0335043 0.000153325 +0.0419445 0.0972272 0.0251571 +-0.0324967 0.0831278 0.0417023 +-0.0385753 0.165326 0.00202421 +-0.0574991 0.105703 0.0407441 +-0.0735089 0.120392 0.0535609 +-0.0194999 0.105809 0.042534 +-0.0918084 0.11461 0.0202058 +0.0373089 0.0604869 0.0345236 +-0.0397982 0.0885212 -0.0227204 +-0.0838603 0.0771078 0.0156983 +-0.0683511 0.16683 -0.0228013 +0.00825384 0.0357096 0.0264477 +-0.0487592 0.0797294 -0.0200154 +-0.067984 0.13847 -0.00792156 +-0.0205709 0.127392 0.00935219 +0.0158596 0.0940217 0.0494261 +-0.00476401 0.100643 0.0463697 +-0.0144795 0.0617481 0.0535104 +-0.0635003 0.0931972 0.0443921 +-0.06148 0.0371866 -0.00855801 +-0.0235696 0.0368882 0.0541538 +-0.00084278 0.129714 0.0251926 +-0.0857238 0.0792489 0.0165033 +-0.00382707 0.0868147 -0.0366286 +-0.0623716 0.0433162 0.04063 +-0.0481783 0.127343 -0.00452632 +0.0258208 0.0577421 -0.0227411 +-0.0464997 0.109825 0.0383354 +-0.0632202 0.150553 -0.0275915 +0.0594014 0.060828 0.00515272 +-0.0379322 0.0359407 -0.029738 +-0.0628566 0.163115 -0.0590591 +0.032875 0.0504741 0.0332188 +-0.0798256 0.114817 -0.00349908 +0.00979876 0.0631089 0.0545118 +-0.00479883 0.0826783 -0.0376925 +-0.0586564 0.152453 0.0326111 +-0.0847868 0.0979024 0.0288114 +-0.0248237 0.0853842 -0.0372699 +-0.00156343 0.13088 0.0191419 +-0.0624949 0.0729745 0.0395167 +-0.0208752 0.105853 -0.0224653 +0.0381305 0.0743398 -0.0117665 +0.00679871 0.128004 -0.00391746 +-0.0769289 0.125211 -0.00745968 +-0.0251918 0.111615 -0.0181703 +-0.0538836 0.0984784 -0.021806 +-0.0535445 0.0444164 -0.0080927 +0.0449223 0.0903552 0.00117592 +0.00748556 0.116867 0.0384917 +0.0479919 0.0426572 0.0134999 +0.0269115 0.116892 -0.00595645 +0.0287509 0.0911639 -0.0204971 +-0.00583539 0.0910195 -0.0356702 +0.0122548 0.126063 0.0299441 +-0.0732964 0.0791377 0.0376894 +-0.0578898 0.108324 -0.0176181 +-0.0316803 0.111369 -0.0179291 +-0.00248889 0.101618 0.0440339 +0.0583601 0.0593964 0.0227402 +-0.0568793 0.105485 -0.0183902 +0.0313941 0.108732 0.0332945 +-0.0104953 0.0801622 0.0580036 +-0.0799858 0.150056 0.000166757 +-0.0448968 0.146123 0.00263093 +-0.0595037 0.0344238 0.0383245 +-0.0836036 0.133464 -0.00169527 +-0.0115063 0.0575113 0.0530742 +-0.0112578 0.037897 0.0501369 +-0.0404967 0.071918 0.0419528 +-0.024201 0.0373653 0.0542269 +-0.063129 0.0366622 0.0429743 +0.0461067 0.069238 0.0238359 +-0.0217169 0.0945664 0.0494448 +0.0519577 0.0621966 0.0293389 +0.0286828 0.072686 0.0432253 +0.0389262 0.103315 -0.00332456 +-0.0908979 0.126784 0.00627265 +-0.0604951 0.097348 0.0432235 +0.00320361 0.0838721 -0.0343861 +-0.0615214 0.155998 0.0173864 +0.0174482 0.090927 -0.0262636 +-0.0428815 0.108469 -0.0193857 +0.0528827 0.0476533 0.00520477 +-0.0692155 0.155426 0.0044718 +-0.0116319 0.126956 0.0271535 +0.0555832 0.0661715 0.0258304 +-0.0669079 0.139705 0.0437201 +0.0208911 0.120687 0.0321527 +-0.0692559 0.157013 -0.00287665 +-0.0642658 0.131126 0.0422113 +-0.00350345 0.108655 0.04343 +0.00595359 0.131311 0.0061803 +-0.0652676 0.179645 -0.0602668 +0.0113097 0.0609536 -0.0296395 +0.0202287 0.0385462 -0.010699 +-0.0528896 0.0556157 0.0124842 +-0.0830831 0.152763 0.0275295 +-0.0929926 0.121477 0.0272936 +-0.0679169 0.115123 -0.00939662 +-0.0715189 0.150138 -0.0417489 +0.0502478 0.0496891 0.0267596 +-0.088826 0.122625 0.00229599 +0.045739 0.0876044 0.00618298 +0.0276204 0.0364605 0.0224657 +0.0550864 0.0576626 -0.000774412 +-0.0601415 0.0397484 0.0187938 +-0.0467117 0.131872 0.0218067 +-0.00211002 0.131247 0.0146415 +0.0400335 0.107013 0.011165 +-0.0875275 0.141918 0.0101858 +-0.0321386 0.0511687 -0.0124242 +-0.05996 0.047085 0.0381143 +-0.0771576 0.158311 -0.0229061 +-0.0910473 0.139231 0.0181913 +0.0586943 0.0552354 0.0191792 +0.0541025 0.0616928 -0.00172111 +0.0193458 0.0347743 -0.00166328 +-0.0785503 0.175004 -0.046006 +0.0361753 0.0767902 0.0382584 +-0.00218115 0.0950603 -0.0327048 +-0.00446475 0.03907 -0.00848801 +-0.0509412 0.0543847 0.0317288 +-0.031974 0.126184 0.0154629 +-0.0517139 0.047497 0.0206563 +0.0390432 0.106963 0.0211652 +-0.0661031 0.169296 -0.0348743 +-0.0461189 0.0353483 0.0438447 +-0.0618314 0.155872 0.0114752 +-0.0414861 0.169687 0.00162271 +-0.0640913 0.154089 -0.00821335 +-0.0474977 0.0776489 0.0433419 +-0.000495324 0.0870356 0.0569136 +0.0572432 0.0508915 0.0131865 +0.0162675 0.0348087 0.0361219 +-0.0561497 0.0697401 0.0384165 +-0.0632023 0.166731 -0.0605917 +-0.0297129 0.0382953 0.00190139 +-0.00511763 0.0345398 -0.0175639 +-0.0614326 0.0342559 0.0293559 +-0.0526737 0.0678526 -0.0129346 +0.0213104 0.092205 -0.0236008 +0.0197097 0.119321 0.0339587 +-0.0214979 0.120818 0.0311972 +0.0121652 0.0940439 -0.0275601 +0.0264769 0.122884 0.00946172 +-0.0236707 0.0536853 -0.0289139 +-0.0413464 0.0470648 -0.0139804 +0.0254796 0.122858 0.0219249 +-0.0924012 0.125564 0.030262 +-0.0879683 0.133795 0.0435491 +-0.0521211 0.0500618 0.0133132 +-0.0655655 0.115703 0.0473772 +-0.0739163 0.0808829 -0.0136046 +-0.0678507 0.166619 -0.0550103 +-0.0116556 0.127143 -0.00273206 +-0.0318682 0.101497 -0.022474 +-0.0710899 0.143489 -0.012899 +-0.0174739 0.0587291 0.0509898 +-0.0238083 0.125586 0.00234805 +-0.0296624 0.0691842 -0.029462 +0.00123889 0.0998292 0.0485145 +-0.0648099 0.0910089 -0.0186372 +-0.0624633 0.170945 -0.051605 +-0.0911968 0.145718 0.0253129 +-0.0208075 0.0827095 -0.0389174 +-0.0156288 0.184043 -0.0262877 +0.0422094 0.0873179 -0.00779978 +0.00273738 0.0943137 -0.0318997 +-0.082233 0.0925905 0.0320729 +-0.0782161 0.110396 0.044452 +-0.0842181 0.153993 0.0196689 +-0.00949468 0.0532459 0.0520833 +-0.0867806 0.115997 0.0469199 +-0.0547757 0.0826557 -0.0215494 +-0.0382309 0.0365042 0.0436563 +0.021227 0.0727783 0.05004 +-0.00441949 0.0338393 -0.022426 +-0.0712771 0.0648585 0.00216525 +-0.0364976 0.111093 0.0360234 +-0.0669244 0.123843 -0.00898539 +-0.0178669 0.0554748 0.0496143 +0.020489 0.0906324 0.0482147 +-0.00549595 0.0605287 0.0555985 +-0.0289733 0.0536405 -0.0223788 +0.0191474 0.0435971 0.0432171 +0.00434602 0.0346139 0.0410512 +-0.0400219 0.111533 -0.0180322 +0.012127 0.0534588 0.0507501 +0.0284176 0.0415874 -0.00471776 +-0.0270737 0.125279 0.00405866 +-0.0221888 0.0348068 0.0442295 +-0.0447592 0.0797381 -0.0197229 +-0.0304968 0.172715 -0.00561384 +-0.0762362 0.0865455 -0.0135615 +0.0197685 0.0371215 -0.00768223 +0.0379293 0.0417908 0.0270611 +-0.0809612 0.0747382 0.0015261 +0.00168043 0.0346784 0.042239 +0.0257721 0.0915784 0.0461947 +-0.0898405 0.133789 0.0312158 +-0.0355388 0.0441134 -0.0275262 +0.00710192 0.0379595 0.027814 +-0.0620019 0.0401372 0.0237075 +0.0429025 0.100097 0.0151567 +-0.00267325 0.0569172 -0.0326724 +-0.0285904 0.110146 -0.0186081 +-0.0762074 0.0906406 -0.013533 +0.0535161 0.0677623 0.0259787 +-0.00262958 0.0466399 -0.0290845 +-0.0839307 0.125043 -0.00388859 +-0.0340047 0.0386047 -0.0302796 +0.0184751 0.082463 0.0515958 +-0.0574796 0.115365 0.0367006 +-0.0420623 0.154724 -0.00848194 +-0.0860758 0.0924352 0.0274562 +-0.0930739 0.122895 0.0382751 +0.051883 0.0734548 0.0112114 +-0.0811474 0.0769537 0.0251701 +-0.0618709 0.0338217 0.0137712 +0.0195119 0.0370935 -0.00868114 +0.00449835 0.0590783 0.0547231 +-0.0645467 0.148975 -0.0280488 +0.0404587 0.0426892 0.0267677 +-0.0712073 0.146616 -0.0240304 +-0.0512571 0.0488673 0.0206327 +-0.00789661 0.098211 -0.0280331 +-0.0821992 0.0980013 0.0318751 +0.0249936 0.037232 0.0266864 +-0.00349731 0.0456721 0.0469862 +0.0464132 0.0472054 -0.00271728 +-0.0659208 0.0390922 0.037189 +-0.0655814 0.167928 -0.031824 +-0.0726143 0.1704 -0.0286759 +-0.032982 0.0423452 0.0495212 +-0.0442602 0.153622 0.00782588 +0.0320708 0.117667 0.00585111 +0.0181014 0.0354956 -0.0136744 +-0.0756189 0.168382 -0.0269354 +-0.0302725 0.114038 -0.0167089 +-0.06455 0.166996 -0.0328772 +-0.0136948 0.125921 0.0278767 +-0.0594946 0.0973472 0.0432255 +-0.0660053 0.138467 -0.00776776 +-0.0538886 0.161243 -0.000916627 +-0.0521229 0.0491646 0.0356345 +-0.0669695 0.167967 -0.0280306 +-0.0692702 0.0635509 0.00193084 +-0.057893 0.109749 -0.0172343 +0.0162169 0.116863 -0.0139359 +-0.0837452 0.0818387 0.0274964 +-0.0188705 0.104448 -0.0228566 +0.017085 0.0604224 0.0492086 +-0.0636469 0.11387 0.0394431 +0.0060852 0.126695 -0.00651247 +-0.0563559 0.0448266 0.0148606 +-0.0534962 0.0959644 0.0436141 +0.0587007 0.0538335 0.0141792 +0.00148321 0.105804 0.0429258 +-0.0696571 0.0662079 0.0262916 +0.0292497 0.0745452 -0.0220465 +-0.0363535 0.0380033 0.0459253 +-0.0388642 0.104209 -0.02036 +0.0363189 0.106784 -0.00482843 +-0.0506381 0.0473796 0.0176699 +0.0415736 0.0738523 0.0301911 +0.00841968 0.0357631 -0.0122614 +-0.0449132 0.130768 0.0151196 +-0.0348253 0.0822923 -0.0236386 +-0.0756565 0.0672218 0.011813 +-0.0840475 0.0856522 0.0284432 +0.0358352 0.11315 0.0115155 +0.0378536 0.10688 -0.000832307 +0.0327708 0.0862789 0.0422215 +-0.0510409 0.034583 0.0365198 +0.0285939 0.108783 0.0362583 +-0.0291219 0.163733 -0.0155493 +-0.0075062 0.071811 0.0576623 +-0.0285902 0.125327 0.00496117 +0.022493 0.120697 0.0309281 +-0.081164 0.0734408 0.004547 +-0.011709 0.0628424 -0.0363307 +-0.0258651 0.101595 -0.0237434 +0.0205831 0.11206 -0.0147671 +0.0444356 0.0931566 0.0191609 +-0.04739 0.113671 -0.0162364 +-0.0489307 0.0334882 -0.00491951 +-0.0129236 0.118879 -0.0139348 +-0.0161652 0.0382063 0.017415 +-0.00495697 0.0978375 0.052341 +-0.0277397 0.0605536 -0.0284245 +-0.00547292 0.0385489 0.021098 +-0.00115741 0.0949656 -0.0326157 +-0.0444374 0.124419 -0.00954541 +-0.0821611 0.0761834 0.00152312 +-0.0144467 0.0348076 0.0441223 +-0.0715687 0.153984 -0.0439053 +-0.00636015 0.130593 0.00877385 +-0.0127796 0.0382227 0.0144711 +0.0370519 0.110502 0.0205344 +-0.0322265 0.0637977 -0.0184499 +-0.0106706 0.054151 -0.0336931 +-0.0455975 0.169625 -0.00241942 +0.0182033 0.0435661 0.0436183 +-0.0718144 0.147892 -0.0304457 +-0.0577521 0.050802 0.00265023 +-0.0586963 0.0588331 0.00348495 +-0.0866227 0.109058 0.0173532 +-0.0383512 0.122877 -0.00994551 +-0.070675 0.0778663 -0.0147995 +-0.0181879 0.174194 -0.0234207 +-0.0587357 0.153161 0.0315118 +-0.0350971 0.16074 -0.013448 +0.00536912 0.049521 -0.0287338 +-0.0474407 0.134003 0.00841493 +-0.0624554 0.1522 -0.0115838 +-0.0760236 0.150016 -0.00789124 +-0.0261434 0.0379494 0.0119939 +-0.068707 0.0613453 0.00749837 +0.0495547 0.0702574 0.0035522 +0.0608929 0.0651253 0.0121512 +0.0417276 0.0683416 0.0285931 +-0.0322652 0.177059 -0.0129859 +-0.027328 0.0951114 -0.0248637 +-0.0207784 0.0714012 -0.0384405 +-0.0483231 0.128062 -0.00327126 +-0.0424968 0.0449805 -0.0163196 +-0.0550216 0.142767 -0.00162505 +-0.0444981 0.112567 0.0357183 +0.039909 0.107011 0.00616363 +0.0103602 0.0524141 -0.0291489 +-0.0621527 0.0372105 -0.00831557 +0.0052003 0.124064 -0.00964829 +0.0584567 0.0701808 0.018095 +0.0154065 0.0880419 -0.0292971 +-0.0675878 0.0672405 -0.0057657 +0.0141143 0.129082 0.00347211 +-0.0769907 0.154191 -0.00889586 +-0.0351753 0.160922 -0.000113952 +-0.0865124 0.0819745 0.0105022 +-0.0802058 0.0759672 -0.0035211 +0.0412042 0.046738 0.0312341 +0.0531089 0.0539671 0.0274209 +-0.0202736 0.0966137 -0.0264451 +-0.021864 0.108885 -0.0213157 +0.0172909 0.0900542 0.0497289 +0.0151151 0.0645034 0.0516546 +-0.00371721 0.100591 0.046739 +-0.0281684 0.117044 -0.0138686 +0.044615 0.0762444 0.0239446 +0.00250222 0.0504849 0.0522926 +-0.0407291 0.0724971 -0.0177035 +-0.076873 0.114866 -0.00505023 +-0.0509699 0.0334609 -0.0108109 +-0.0307494 0.125973 0.00854668 +-0.0842046 0.10344 -0.000635192 +-0.0637785 0.0335481 0.00468656 +0.0573103 0.0709688 0.0191461 +-0.0548852 0.0344475 0.0323271 +-0.0566985 0.0694351 -0.0145553 +0.0116873 0.128578 0.0254498 +-0.0635208 0.0384034 0.0165311 +-0.0193913 0.161115 -0.00536021 +-0.0517184 0.0708739 -0.0153462 +-0.0355107 0.0789772 0.0422885 +-0.0308674 0.0359912 0.0254031 +-0.0496962 0.137023 0.0203775 +-0.000496498 0.0549075 0.0548747 +0.0203519 0.0506032 0.0432764 +-0.00603714 0.0387093 0.0280658 +-0.0424971 0.165251 0.00449932 +-0.088747 0.148763 0.0102254 +0.0140119 0.072675 0.0536492 +-0.0355033 0.109745 0.0370663 +-0.0495176 0.0451863 0.0426306 +0.0161864 0.128058 0.00281004 +-0.0689044 0.110844 -0.0111483 +-0.0648164 0.0412793 0.0318749 +-0.0594946 0.0959853 0.0440949 +-0.0201946 0.0918367 -0.0355405 +-0.00451061 0.0534011 0.0538125 +-0.0256167 0.0422692 -0.0291044 +-0.0366019 0.0472824 -0.0203909 +-0.0714721 0.152551 -0.0449162 +-0.0686495 0.0395764 0.0103048 +-0.0916814 0.147477 0.020141 +0.0344933 0.0646793 0.0392567 +0.0354037 0.0848596 0.0389463 +0.0335837 0.114911 0.0235455 +-0.00948608 0.0488348 0.0496357 +0.0162564 0.0875946 -0.0288434 +-0.0495004 0.0876335 0.045502 +-0.00788756 0.107371 -0.0226705 +0.0279061 0.0479696 -0.0147397 +-0.0593675 0.145365 0.0352791 +-0.0297371 0.179987 -0.0120259 +-0.00152895 0.1273 -0.00507098 +-0.053021 0.0473885 0.0142865 +-0.031661 0.0351392 -0.0196159 +-0.0428508 0.127424 0.0174253 +0.00853656 0.103079 0.0455737 +-0.0428329 0.0928281 -0.0227901 +-0.0533229 0.121583 -0.0104498 +-0.0281276 0.163902 -0.00573037 +0.00550696 0.0647473 0.0560963 +-0.0786632 0.155487 0.0200952 +0.0373574 0.0841251 -0.0157743 +0.00845531 0.04577 0.0469205 +-0.0816426 0.140732 0.045535 +-0.0198636 0.184564 -0.0147357 +-0.0441 0.149758 -0.00480897 +-0.0394895 0.0478295 0.0398724 +-0.0902912 0.136455 0.0152001 +-0.0912584 0.116106 0.0417079 +-0.078373 0.161039 -0.0249642 +-0.0823003 0.143183 0.00115625 +-0.0366712 0.0621691 -0.0130418 +0.0483193 0.0518215 -0.00445791 +-0.0647832 0.179003 -0.0560548 +-0.066692 0.1555 0.0271809 +0.0251524 0.123931 0.0146708 +-0.0729716 0.175028 -0.0520538 +0.0249807 0.0645674 0.0448324 +0.0189844 0.127654 0.0109555 +-0.023546 0.114036 0.0366055 +-0.0166929 0.178668 -0.0190282 +-0.0838411 0.0884243 0.0295799 +0.0340178 0.106064 0.0317678 +0.0172301 0.0834905 -0.0285819 +-0.0836745 0.0939124 0.0306595 +0.00650612 0.0856084 0.0565927 +-0.00650337 0.0633626 0.0562557 +0.00724714 0.123914 -0.00950504 +-0.04049 0.0677003 0.0417506 +-0.083014 0.0816043 0.0289568 +-0.0791181 0.10724 -0.00560787 +-0.0643983 0.155173 -0.0416037 +-0.0194853 0.0382676 0.0257029 +0.017193 0.0407686 0.0438767 +-0.0578741 0.0997697 -0.0193936 +-0.00470039 0.0340249 -0.0188849 +0.009491 0.0923319 0.053062 +-0.0679779 0.0615132 0.00568001 +-0.00851004 0.0960786 -0.0317903 +0.0222567 0.0734747 -0.02675 +0.0396829 0.102719 -0.00275708 +0.0333394 0.0519958 0.0339463 +-0.0317958 0.166782 -0.0057687 +-0.0851069 0.104842 0.00238218 +0.040355 0.0712163 0.0319238 +-0.0796414 0.0719293 0.00453596 +-0.00871509 0.0670095 -0.035665 +-0.04676 0.0797358 -0.0197068 +0.00759602 0.120603 -0.0139518 +-0.00757253 0.0384534 0.015324 +0.027396 0.0902329 0.0450202 +-0.0837001 0.104608 0.0275279 +-0.0648437 0.159826 -0.0567739 +-0.0182921 0.113707 -0.0184295 +-0.0318101 0.0499111 0.0410759 +0.0042017 0.130577 0.0226921 +-0.0882785 0.102304 0.00940329 +-0.0669196 0.157864 -0.00782765 +-0.0574974 0.104327 0.0414929 +-0.028183 0.0499752 0.0445203 +0.0437475 0.087439 -0.00380588 +0.047365 0.0735855 0.0109418 +-0.0355275 0.04785 0.0396404 +-0.00564979 0.0511569 -0.0315211 +-0.0622081 0.163133 -0.0355907 +-0.0126796 0.0555759 -0.033924 +-0.0434133 0.12436 -0.00948612 +0.0325363 0.0605817 0.0399114 +0.00828387 0.0859903 0.0560092 +-0.0377619 0.0480619 -0.0149351 +-0.0152064 0.0377587 0.0513804 +0.0337034 0.0740969 0.0399489 +0.0386678 0.106943 0.0231645 +-0.0568902 0.10122 -0.0192994 +-0.0629975 0.158364 -0.0415982 +0.0174963 0.116768 0.0361173 +-0.018574 0.174216 -0.0164984 +-0.0916005 0.147489 0.0211447 +0.0351839 0.113522 0.00409669 +-0.0642224 0.175708 -0.0529566 +-0.0646189 0.0691309 -0.0109873 +-0.0744709 0.159641 -0.0299365 +-0.0810037 0.0777776 0.0280061 +-0.0468539 0.0397424 -0.0132276 +-0.0387576 0.152152 0.00343994 +-0.0355301 0.0350253 0.0446914 +-0.0252945 0.179999 -0.0179968 +-0.0594833 0.0440844 0.0256893 +-0.0262483 0.175689 -0.00998917 +-0.0357 0.0344414 0.0311095 +-0.0348452 0.0957896 -0.0233484 +-0.0694619 0.0701676 0.0334316 +-0.0704025 0.156596 -0.000355665 +0.0197946 0.0872171 -0.0264236 +-0.00225576 0.119004 -0.0141489 +0.0447595 0.0819096 0.000199099 +-0.0414725 0.16704 -0.0108149 +0.0383695 0.0533606 -0.00654853 +0.0436976 0.0763605 0.0261605 +-0.059412 0.0342492 0.0297869 +-0.0105538 0.0962042 -0.0319333 +0.0354985 0.0483762 0.03122 +-0.0232213 0.183101 -0.0108227 +-0.0454832 0.0704956 0.0415155 +-0.0818632 0.143391 0.0428465 +-0.00588211 0.0384235 0.0193174 +-0.0715611 0.065876 0.0226562 +-0.0557658 0.0561367 -0.00241411 +-0.007704 0.0613485 -0.0352024 +-0.050582 0.13546 0.000440434 +-0.0239591 0.0958294 0.044594 +-0.0344217 0.156595 0.00275895 +-0.0721769 0.146332 -0.0246714 +-0.00172768 0.0683482 -0.0343533 +0.0465137 0.0736858 0.00606841 +-0.0379081 0.0345108 0.0393807 +-0.0536272 0.0632225 -0.00927695 +0.0216001 0.0346735 0.00635285 +-0.00546011 0.130518 0.00622904 +0.025022 0.0994981 0.0433749 +-0.059626 0.14292 -0.00334389 +-0.0662647 0.160967 -0.0574681 +-0.086688 0.0937529 0.026595 +-0.0292509 0.122699 0.0223824 +-0.020881 0.0609703 0.0467992 +-0.0727056 0.0704556 0.030746 +-0.0670342 0.154632 -0.0510962 +-0.0818617 0.117704 -0.00327392 +-0.00930377 0.0384012 0.0113924 +-0.0294534 0.0382504 0.0532249 +-0.0428028 0.034428 0.0296237 +0.034591 0.113857 0.0224952 +0.0260945 0.0981604 0.0431638 +0.0157288 0.0740195 0.0526622 +0.00528348 0.0654438 -0.0329345 +0.0342272 0.113045 -0.000582475 +0.0177023 0.127344 0.0204737 +-0.00349601 0.0619414 0.0556852 +-0.0633856 0.13531 0.0381918 +-0.0187732 0.0742782 -0.038946 +-0.0714922 0.124606 0.0531293 +-0.0387588 0.0432047 -0.0253505 +-0.0377685 0.112865 -0.0174473 +-0.0811078 0.0831466 0.0326628 +0.0121734 0.0347014 0.0407838 +-0.0423463 0.0344667 0.0367209 +-0.0247884 0.0905387 0.0498003 +-0.0589097 0.111154 -0.0162513 +-0.0119878 0.0389387 -0.0117395 +-0.0746688 0.0730125 -0.00771761 +-0.0636783 0.0344406 0.016873 +-0.0718387 0.063614 0.0140147 +-0.0537353 0.0753205 -0.0183524 +0.0399868 0.0793585 0.0332409 +0.0342696 0.0686799 0.038964 +0.0283038 0.121367 0.00870899 +0.020694 0.101208 -0.0211426 +-0.0607079 0.149875 -0.000940868 +-0.0663226 0.0771733 0.0404118 +-0.0856352 0.151298 0.0280417 +0.00450086 0.0533884 0.0535142 +0.0193556 0.0370965 -0.0106758 +-0.073245 0.152646 -0.0348949 +-0.0311279 0.168264 -0.00654632 +-0.0314769 0.122323 0.024544 +-0.00965298 0.0383614 0.0149817 +0.0322912 0.117174 0.00450048 +-0.0303956 0.0833549 -0.0325649 +-0.0305081 0.109824 0.0377476 +0.060267 0.0581373 0.011162 +-0.0782363 0.119072 0.0512696 +-0.0819743 0.130956 -0.00393996 +0.0125568 0.129953 0.0057397 +-0.0750314 0.165158 -0.038026 +-0.0842614 0.0857549 -0.00354776 +-0.0194949 0.122198 0.0303074 +-0.0885869 0.0914877 0.00746285 +0.0183032 0.0622432 -0.0278633 +-0.0188389 0.0383463 0.00224079 +0.0169223 0.0354899 -0.0154522 +-0.0510859 0.154625 -0.00472421 +-0.04134 0.171235 -0.00891614 +-0.00271064 0.0641639 -0.0348647 +-0.0404957 0.119327 0.0301663 +0.0161104 0.038261 0.0437952 +-0.0788559 0.0706244 0.0187647 +-0.0565382 0.0387829 -0.00997998 +0.00406092 0.0347375 0.0390843 +-0.052431 0.0503969 0.0246465 +-0.0548238 0.136818 -0.00273484 +-0.0168361 0.163394 -0.0165332 +0.0085002 0.0589241 0.0531764 +-0.00349833 0.104479 0.0440938 +0.041165 0.0675922 -0.00677134 +-0.0766837 0.0941158 0.0377884 +-0.0715005 0.108276 0.0374406 +-0.0514917 0.154976 0.0111 +-0.0766573 0.0758638 -0.0078194 +-0.0708734 0.116483 -0.00801313 +-0.0584915 0.0333664 -0.00308936 +-0.0132404 0.0420117 0.0507817 +0.0504568 0.0627892 -0.00292241 +0.0181009 0.0617863 0.0489038 +-0.0686053 0.155434 -0.0518073 +-0.0866142 0.111799 0.023338 +-0.0087012 0.0613261 -0.0351009 +-0.0667075 0.179209 -0.0538653 +0.0133269 0.036855 0.044466 +-0.0308424 0.0930072 -0.0244625 +-0.0526579 0.118327 0.034303 +-0.0802651 0.0940224 0.034298 +-0.0895241 0.094286 0.0154262 +-0.0580951 0.0448084 0.0137644 +0.0187472 0.0369987 -0.01368 +-0.0174935 0.0786826 0.056671 +-0.026682 0.0779832 0.0478067 +0.0449566 0.0931917 0.0141646 +-0.0598355 0.0968573 -0.0194316 +-0.015743 0.0388551 0.0331436 +0.045657 0.07639 0.00319799 +0.00221136 0.0782941 -0.0352071 +-0.0725589 0.0360747 0.00146649 +-0.0641358 0.117113 0.0460384 +-0.0709488 0.0833216 0.0408543 +0.0230126 0.0366914 0.0285839 +0.0164832 0.101772 0.0464774 +-0.0114886 0.10724 0.0431864 +-0.0748949 0.0968349 0.0387401 +-0.0428468 0.0368545 0.044028 +-0.0121243 0.183164 -0.0282842 +-0.0110799 0.0973863 0.0517395 +-0.0283441 0.0346627 0.0430398 +-0.0591236 0.0454581 0.0276809 +0.0359903 0.0834983 0.0380665 +-0.0894731 0.112826 0.0381953 +-0.0633619 0.165109 -0.0324564 +-0.0893245 0.139298 0.0361742 +-0.0113718 0.177173 -0.0236196 +0.0314957 0.0386039 0.0249642 +-0.0153586 0.171251 -0.0171482 +-0.0501632 0.165541 -0.000963216 +-0.0125979 0.0362885 -0.0258846 +-0.0109041 0.121705 -0.010941 +-0.01134 0.181374 -0.0292688 +-0.0636417 0.067527 -0.00924444 +-0.0645561 0.151545 -0.0345673 +0.0234128 0.0685823 0.0460905 +-0.0204536 0.184888 -0.0139868 +-0.0362035 0.16829 0.000195359 +-0.0423655 0.0354607 0.0428683 +0.029434 0.0414849 -0.00426139 +-0.0548859 0.0335879 0.0154264 +0.0301337 0.0958138 -0.0174156 +-0.0231819 0.174173 -0.0207431 +0.0495183 0.0596792 0.0306871 +-0.0615314 0.169388 -0.0555899 +-0.0645149 0.156191 0.0192193 +-0.0808163 0.150056 0.00117383 +-0.0203106 0.127423 0.0152774 +-0.048501 0.0946267 0.0446158 +-0.0621404 0.0458224 0.0356845 +0.014817 0.0713159 0.0530708 +-0.0482359 0.0600875 0.0359237 +0.0583839 0.0607371 0.00317993 +0.0532979 0.0476993 0.0202039 +-0.00334167 0.13115 0.0113211 +-0.0451105 0.146112 0.00345863 +-0.0728436 0.0965116 -0.0147387 +-0.00290701 0.128667 -0.00250924 +-0.0175351 0.0472943 0.0498404 +-0.0710465 0.156278 0.000878407 +0.0130461 0.106823 -0.0191157 +-0.0241467 0.169732 -0.0193183 +0.0184844 0.092024 0.0477707 +-0.0849646 0.0925759 -0.00355765 +-0.0135115 0.0617879 0.0541775 +0.0358003 0.0371828 0.0161878 +-0.0563756 0.0338236 0.0220041 +-0.0344987 0.119335 0.0301753 +-0.0207895 0.0363821 -0.0186131 +0.0366896 0.0394563 0.0234361 +0.0454465 0.0903989 0.00417224 +-0.0686026 0.0339552 0.0087048 +-0.0248008 0.0797877 -0.0377608 +-0.0253831 0.0645504 -0.0324979 +-0.0924079 0.114699 0.0153245 +0.0404169 0.104204 0.0201615 +-0.0864551 0.137921 0.0433346 +0.0453383 0.0861836 0.0191712 +-0.0550359 0.12552 0.0379729 +0.0499773 0.0719552 0.0208312 +-0.0878453 0.10502 0.0133698 +0.0226563 0.0416586 -0.00875234 +0.00847112 0.0503629 0.0509458 +0.0193029 0.12103 0.032512 +-0.0288694 0.102979 -0.023086 +-0.0655006 0.155906 0.0116223 +-0.0865291 0.125714 0.0480303 +-0.0762092 0.103511 0.0356214 +0.027039 0.0433782 0.0352623 +-0.00878391 0.0340179 -0.0196776 +0.01688 0.104029 -0.0201606 +-0.0779922 0.155321 0.011561 +0.012978 0.0975651 -0.0232996 +-0.0570356 0.142438 0.0315884 +0.00678439 0.0392286 0.0320303 +-0.0187316 0.184448 -0.0230478 +-0.05583 0.0898375 -0.0220234 +-0.0624118 0.168239 -0.0611966 +-0.019552 0.0381879 0.0203532 +-0.0619388 0.0647772 0.0309092 +-0.0929984 0.129612 0.0152364 +0.0241882 0.0633761 -0.0240832 +-0.0154901 0.11097 -0.019533 +0.0335254 0.101204 -0.0131717 +0.0440036 0.0411539 0.00525252 +0.0443474 0.05051 -0.00579969 +-0.00564997 0.0526431 -0.0322774 +0.024909 0.124002 0.00889289 +-0.0551719 0.0344352 0.0357625 +-0.00149801 0.0828985 0.0574954 +-0.0649207 0.122383 -0.00889091 +-0.0371067 0.163706 -0.0138205 +-0.013511 0.0673225 0.0538556 +-0.0664425 0.121454 0.0513831 +-0.0749127 0.151363 0.0363064 +-0.0786131 0.166659 -0.0369473 +0.0259941 0.0889184 0.046498 +-0.0508607 0.133588 0.0291236 +-0.0624206 0.150641 -0.0155752 +-0.0345377 0.0353482 -0.0311793 +-0.0926334 0.130971 0.0152338 +0.00420379 0.0852404 -0.0337772 +0.0493319 0.0575419 -0.00502247 +0.0210858 0.0848756 0.0499424 +-0.0209282 0.0711316 0.0521839 +-0.0556334 0.121157 -0.00996616 +-0.0578782 0.0955404 -0.0210377 +-0.0636177 0.149382 -0.0259273 +-0.023437 0.0753613 0.0517266 +-0.0424368 0.033567 0.00359466 +-0.0366861 0.0651313 -0.0144389 +0.00275029 0.0392893 0.0311503 +-0.0858603 0.137915 0.0441653 +0.00249981 0.0938632 0.054785 +-0.0405815 0.125646 -0.00686289 +0.00652265 0.0633208 0.0557678 +-0.0736187 0.0665006 0.01992 +0.0178849 0.106917 -0.0172488 +-0.0404999 0.16823 0.00286674 +-0.0578818 0.101192 -0.0190391 +0.0415111 0.0596706 0.0303495 +0.0445386 0.0917351 0.000179816 +0.0404099 0.0926692 0.0304567 +-0.0715386 0.177351 -0.0469381 +-0.00955325 0.129382 0.0220461 +-0.0304508 0.11875 -0.0116176 +-0.0553453 0.138992 -0.00307013 +0.0373215 0.0444316 0.0300039 +-0.0439866 0.0342955 -0.0250034 +0.0438502 0.081834 0.0262681 +0.0105117 0.057471 0.0526043 +-0.0609073 0.0423237 0.0152297 +-0.0566933 0.0478983 -0.00338525 +-0.0882052 0.0955366 0.00643448 +-0.0697305 0.146842 -0.0262196 +-0.0654573 0.131176 0.0439868 +-0.0332792 0.168261 -0.00439757 +0.0262829 0.0520004 0.03955 +-0.0246803 0.0386712 -0.0158919 +-0.0243119 0.0382419 0.00485642 +-0.0650689 0.0416148 -0.00522845 +-0.0224969 0.105778 0.0423492 +-0.0675666 0.163787 -0.0559757 +-0.0625249 0.0642497 0.029495 +-0.066705 0.170483 -0.0379595 +-0.0387912 0.0855771 -0.0218281 +-0.0362227 0.121033 0.0288309 +-0.0351413 0.166693 -0.0148789 +0.0484731 0.0728694 0.00986875 +-0.0715958 0.035386 0.00909438 +-0.0654475 0.0414866 0.0340095 +-0.0897915 0.135018 0.00821888 +-0.0256856 0.161028 -0.00218154 +-0.0294591 0.0367076 -0.0187628 +-0.0318602 0.0341892 0.0214236 +-0.0741619 0.0781636 -0.0115723 +-0.0759684 0.138187 -0.00615578 +-0.0746432 0.067744 0.0203901 +-0.0481968 0.058714 0.0359259 +-0.0809888 0.100705 0.031995 +0.0223647 0.0795488 0.0499944 +-0.0164996 0.0587643 0.0515064 +-0.0843239 0.0775269 0.0169616 +-0.0474174 0.157905 0.00867917 +0.0256365 0.0450396 -0.0116814 +-0.0560862 0.153109 -0.0014946 +-0.0364777 0.0491722 0.0391199 +-0.0353775 0.172711 -0.013245 +0.0345426 0.0361041 0.0132537 +-0.0476575 0.0606291 -0.0121142 +0.0517359 0.0693876 0.00244776 +-0.0895642 0.139283 0.0271809 +-0.0554895 0.087587 0.0448409 +-0.00460242 0.0419996 -0.0255341 +-0.0747436 0.0846695 0.0389578 +-0.0522959 0.0518057 0.0276471 +0.0344259 0.0713949 0.0392126 +-0.0858246 0.111645 0.00429163 +7.90085e-05 0.131159 0.00541676 +-0.0876151 0.1105 0.015342 +-0.0308705 0.0385373 -0.0301935 +-0.0174841 0.088353 0.056296 +-0.0717036 0.179379 -0.0498901 +-0.0872579 0.113355 0.0275168 +-0.0132522 0.180136 -0.0286131 +0.0147067 0.111012 -0.0176211 +0.0100468 0.0698695 0.0549195 +-0.00549411 0.130838 0.0134037 +-0.0444864 0.070528 0.0418968 +-0.0694946 0.0902043 0.0422251 +-0.0125029 0.0673483 0.0540527 +-0.0889341 0.0928773 0.0104474 +-0.049902 0.0335302 0.00572664 +0.0224871 0.0436168 0.0410219 +-0.0391731 0.163682 -0.0125377 +-0.0389872 0.0336658 0.00601497 +0.0423783 0.0676875 -0.00279832 +-0.0314483 0.177007 -0.0139273 +0.0365023 0.0700019 0.0369139 +-0.0817843 0.113273 -0.0014411 +-0.0155011 0.0786732 0.0567092 +-0.0616004 0.115786 -0.012288 +0.0336937 0.0994802 0.0365924 +-0.0819199 0.0775142 -0.000486403 +-0.0620032 0.154899 0.00420466 +-0.0689571 0.134062 -0.00839151 +0.0341993 0.115326 0.00949444 +-0.0853268 0.127125 0.0496018 +-0.0075399 0.0430305 0.0487452 +-0.000964681 0.0992981 -0.0251507 +-0.0896495 0.146064 0.0111487 +0.0457169 0.0792126 0.021174 +-0.0677903 0.180834 -0.0585489 +-0.0525855 0.0528134 0.0122839 +0.045458 0.0847917 0.019171 +-0.0620511 0.164652 -0.0545872 +-0.0012817 0.0411143 0.047028 +-0.0620444 0.166711 -0.0606187 +0.0416044 0.0774454 -0.0068035 +-0.0180891 0.0568831 0.0497969 +0.0289502 0.0888845 0.043761 +-0.0361509 0.0471597 -0.0213258 +0.0209931 0.0505428 0.042434 +-0.081698 0.0939818 0.0329068 +-0.0701548 0.148741 -0.0366493 +-0.0726057 0.158224 -0.0359121 +0.0452801 0.0777562 0.00119407 +0.0034868 0.107186 0.0422902 +-0.0603898 0.116109 -0.0126519 +-0.0799294 0.154987 0.0226092 +-0.0412543 0.0342017 0.0283816 +-0.073067 0.0692219 0.0282366 +-0.0232836 0.0382816 -0.000419572 +-0.0843726 0.0952582 -0.00357113 +-0.0871856 0.0923586 0.0257303 +0.0415318 0.09261 0.0284783 +-0.0528539 0.1113 -0.0177773 +-0.0653767 0.0770838 0.0407622 +0.0608603 0.0609709 0.0131614 +0.0163938 0.128844 0.0100049 +-0.028759 0.0386585 -0.0166912 +-0.0688752 0.11651 -0.00852528 +-0.00266028 0.0525834 -0.0313625 +0.0395925 0.0979794 0.0293107 +-0.063517 0.0417383 0.0266777 +-0.0206145 0.038142 0.0147556 +-0.0746919 0.0745094 -0.0088781 +-0.0730235 0.16103 -0.0369405 +-0.0511023 0.141628 0.018382 +0.026686 0.0963684 -0.0200186 +0.00049039 0.0952019 0.0544773 +-0.0374215 0.0466159 -0.0218044 +-0.0396639 0.0592228 -0.0116772 +0.0589085 0.0593684 0.0217913 +-0.069935 0.128232 -0.00913858 +-0.0154583 0.128246 0.0199229 +-0.082956 0.0762572 0.0165263 +-0.0698527 0.139727 0.0465118 +-0.0793995 0.0962934 -0.0095136 +0.029447 0.119051 0.00204245 +-0.0406195 0.0505975 -0.0111291 +-0.0337259 0.125903 0.000119567 +-0.00361865 0.109419 -0.0218821 +-0.0324923 0.0845615 0.0419149 +-0.0304819 0.0903593 0.0440392 +-0.0289421 0.0848695 0.0456392 +-0.067993 0.172429 -0.0412978 +-0.0699656 0.167828 -0.0233999 +-0.0633908 0.0664235 0.0326881 +-0.0328103 0.178226 -0.00982944 +-0.0144938 0.0897854 0.0566872 +-0.00301248 0.0391855 -0.0120497 +-0.0467348 0.10982 -0.0182008 +-0.0347751 0.123588 -0.00668109 +-0.081672 0.0966878 0.0327979 +0.0208066 0.08618 0.0495337 +-0.0294922 0.102919 0.0420695 +-0.0514977 0.0917694 0.0441515 +-0.0561584 0.13394 0.0346041 +0.0587961 0.055231 0.00916964 +0.0239769 0.0672243 0.0451455 +-0.0590987 0.135299 0.0356206 +-0.0833215 0.153324 0.00972396 +-0.0775565 0.148654 -0.00488618 +0.0134356 0.129163 0.0217505 +0.00242681 0.0392303 -0.00913048 +-0.00111738 0.0369593 -0.0152505 +-0.0884159 0.102321 0.0103913 +0.0452046 0.0684536 0.0248447 +-0.0107692 0.1278 -0.0014358 +-0.067702 0.169446 -0.0560134 +-0.0645991 0.162478 -0.0199783 +-0.0384905 0.0591295 0.0404813 +-0.0133897 0.0383025 0.0215062 +-0.0335039 0.113859 0.0341437 +0.00725148 0.0739904 -0.0339985 +-0.0197912 0.0347004 -0.0276305 +-0.0364291 0.0383909 -0.00870817 +-0.0382525 0.154358 -0.00883541 +-0.0576615 0.0645392 -0.00788705 +0.0271486 0.0677873 -0.0226945 +-0.0484929 0.0776741 0.0437591 +-0.0538207 0.0913026 -0.0221948 +-0.0414756 0.102877 0.0407886 +-0.0194769 0.0384097 -0.0016118 +0.0409764 0.0725373 0.0310711 +-0.046711 0.0723683 -0.0164352 +-0.0169229 0.0385492 -0.0161043 +0.0274461 0.0888981 0.0450769 +0.0384486 0.0446185 0.0300797 +-0.0498739 0.120141 -0.01301 +-0.0147995 0.0382136 0.0194957 +-0.034222 0.0422724 0.0479221 +-0.00554376 0.0388664 -0.0141367 +-0.00771915 0.0642161 -0.0356843 +0.0380609 0.108343 0.0221716 +-0.0496329 0.05762 -0.010324 +-0.0640324 0.0336604 0.00811729 +0.0288939 0.0349903 0.0075309 +-0.0369254 0.170672 -0.0129456 +0.0567415 0.0605855 0.00115011 +-0.026353 0.0382316 0.0044532 +-0.088166 0.0963498 0.023753 +-0.0332851 0.0368458 -0.0306141 +-0.0138558 0.0387296 -0.0044727 +0.0597512 0.0650182 0.00715554 +-0.0267551 0.0740245 -0.0360482 +0.0214915 0.0369736 0.0352586 +-0.0515738 0.0559395 0.0296214 +0.00622241 0.123988 -0.00957575 +0.0558148 0.0493476 0.0171957 +-0.0766567 0.112144 0.0469767 +0.0408877 0.0928069 -0.00817715 +-0.0862272 0.0886081 0.000477626 +-0.0341682 0.0723955 -0.0204945 +0.0468003 0.0745424 0.0107517 +-0.00983206 0.0896484 -0.0366649 +-0.00782261 0.0985178 0.051315 +-0.070543 0.17193 -0.0350862 +0.0371254 0.0869172 -0.0157926 +-0.059432 0.152725 0.0327387 +-0.0644942 0.149793 0.0375095 +-0.02966 0.0875784 -0.0315907 +0.0234483 0.0350084 0.0101439 +-0.0672661 0.155709 0.00954294 +0.0249549 0.0915796 0.0467751 +-0.0750729 0.0675817 0.0186826 +-0.065557 0.158804 -0.0559152 +-0.0869809 0.112371 0.0426661 +-0.0388924 0.0336117 -0.0270987 +-0.0925871 0.117342 0.0103086 +-0.0285134 0.0559644 0.0364164 +-0.0592485 0.148248 0.0355123 +-0.0386245 0.0472623 -0.0172994 +0.0417415 0.0676611 -0.00475281 +0.017067 0.127696 0.00312982 +-0.00768714 0.116771 -0.0157299 +-0.0210692 0.0667823 0.0496379 +0.0306718 0.0605569 0.0407187 +-0.086202 0.0805924 0.0105044 +0.0248868 0.0727438 0.0465386 +-0.0226479 0.182963 -0.0190305 +-0.064868 0.0953298 -0.0181139 +-0.0212331 0.0553385 0.0459146 +-0.0900228 0.148451 0.0254546 +-0.0659345 0.109414 0.0377967 +-0.0156357 0.0466082 -0.0291798 +-0.0783295 0.108958 0.0384425 +-0.0353519 0.169773 -0.000327923 +-0.0576724 0.155657 0.012957 +0.0299243 0.0902598 0.0434097 +-0.0938789 0.125503 0.0152603 +0.00849738 0.0910108 0.0540495 +-0.0924729 0.117499 0.0403021 +-0.0538856 0.101336 -0.0209374 +0.0230068 0.125355 0.00960117 +-0.0753773 0.0887668 0.039456 +-0.0164714 0.0348128 0.0436847 +-0.0124833 0.108618 0.0427908 +0.00650022 0.0937602 0.0531051 +-0.0254901 0.101602 0.0435889 +-0.0681644 0.132655 0.0471068 +0.0116725 0.130674 0.0125466 +-0.0658455 0.0693268 0.0349111 +0.0131057 0.0346676 0.0247536 +0.0111453 0.0752893 0.0548169 +-0.0414315 0.120058 -0.0129928 +-0.0667828 0.0837809 -0.018353 +-0.0558768 0.105489 -0.0184971 +-0.0646849 0.0705888 -0.0125799 +0.00250861 0.0634123 0.0567384 +-0.0102337 0.0987343 -0.0266102 +-0.0475686 0.0376232 -0.0123457 +0.0326729 0.0388984 0.0249367 +-0.0754158 0.14997 -0.0218646 +0.0149498 0.0475024 0.0442108 +-0.0897923 0.144692 0.013139 +-0.065193 0.0597221 0.0116014 +-0.0777759 0.113375 -0.00398806 +-0.0457101 0.131722 0.0089192 +-0.0575663 0.0481384 0.0346641 +-0.0838122 0.128533 0.0508937 +-0.0104939 0.0933018 -0.0349679 +0.0252085 0.0464911 -0.0166174 +-0.0789879 0.13894 -0.00474105 +-0.0475728 0.0656919 0.0379498 +0.0110822 0.113195 -0.0179885 +-0.0649225 0.170267 -0.0430968 +-0.00871405 0.112847 -0.0195489 +0.0452857 0.0889846 0.0161633 +-0.0171038 0.128182 0.00771491 +-0.0114919 0.0911558 0.0564108 +-0.0672347 0.158081 -0.05503 +-0.0375789 0.0335576 -0.0249215 +-0.028354 0.0521667 -0.0233844 +-0.0687469 0.179151 -0.0517127 +-0.0635972 0.164728 -0.0295802 +-0.00849416 0.0661021 0.0557034 +0.0018938 0.131459 0.00752669 +-0.0104875 0.10724 0.0431922 +0.0420847 0.0764929 0.0291356 +-0.0164676 0.125926 0.0254562 +-0.0666931 0.162075 -0.0149837 +0.000392133 0.0405199 -0.0247969 +-0.062597 0.0740287 0.040345 +-0.038486 0.115285 0.0333239 +-0.0134767 0.0545379 0.0508338 +-0.0379773 0.128134 0.0117903 +0.0282176 0.0746072 -0.022898 +-0.00949856 0.0898059 0.0569552 +-0.0633588 0.166271 -0.0375898 +-0.088608 0.0874693 0.0094764 +-0.00658802 0.126776 -0.00645935 +0.00550371 0.0533623 0.0533002 +0.0568364 0.0723477 0.016027 +-0.0746813 0.077485 -0.0103851 +0.0599778 0.0622697 0.0191849 +-0.0834343 0.143353 0.0415913 +0.0461466 0.0773319 0.0190905 +-0.0643928 0.0366139 0.0414145 +0.017105 0.0913787 0.0494605 +0.0113838 0.0463423 -0.025328 +0.00150906 0.0925101 0.0553138 +-0.0905552 0.131061 0.0372264 +0.0271939 0.0479684 -0.0167032 +0.0118641 0.130407 0.00833975 +-0.0534963 0.0413918 0.0463882 +-0.00348783 0.0548509 0.0542207 +-0.0241218 0.165279 -0.0170232 +0.0526044 0.0736805 0.0129696 +0.00493694 0.0358587 0.023833 +-0.0308996 0.0862326 -0.0295626 +-0.0749566 0.152744 -0.0158977 +0.022407 0.0700249 0.0481925 +-0.0644326 0.152123 0.0354487 +-0.083145 0.0762813 0.00952219 +-0.0066641 0.130277 0.00578337 +-0.0503124 0.0487527 0.0166746 +-0.0857975 0.0926505 0.000473688 +0.0319954 0.0554568 -0.0137989 +-0.0325248 0.0371997 0.032926 +-0.0378236 0.0914714 -0.0236656 +0.0107752 0.0603237 0.0523688 +-0.0709378 0.0995366 0.0403447 +0.00229927 0.0641027 -0.0339638 +0.0301658 0.0510827 -0.0137422 +-0.0152122 0.0387061 -0.0065833 +0.0328168 0.0373031 0.0209449 +-0.0564976 0.0959787 0.0438593 +-0.0530296 0.137293 -0.00118635 +-0.0114929 0.0745162 0.0566704 +0.0339687 0.0768049 0.0403387 +0.0229251 0.0476731 0.039919 +0.0153286 0.0594649 -0.0285327 +-0.0650165 0.0356472 0.0166692 +-0.0872319 0.104968 0.0093836 +0.0317565 0.0752189 -0.019756 +0.0174897 0.107108 0.0415537 +0.00650555 0.0716952 0.056225 +0.0214733 0.0808843 0.0504673 +-0.0157973 0.0382489 0.019257 +-0.073889 0.119392 -0.00790358 +-0.0588895 0.0969269 -0.0201624 +-0.0614701 0.166956 -0.0604533 +-0.0411287 0.160673 -0.0112161 +-0.0558134 0.0883826 -0.0218608 +-0.0206962 0.0385843 -0.00942784 +0.0401892 0.0759203 -0.00879733 +0.0191194 0.0349494 -0.00374623 +-0.0414976 0.113906 0.0346806 +-0.00581815 0.0854694 -0.0375201 +-0.0859756 0.0805547 0.00750576 +-0.0833395 0.103378 -0.00262342 +-0.0446335 0.126046 -0.00723965 +0.0260088 0.0910229 -0.0223512 +0.034944 0.10998 0.0278542 +-0.00248857 0.0703789 0.0573235 +-0.0102702 0.0385128 0.00564525 +-0.0283572 0.0578046 -0.0244014 +-0.0210295 0.0958616 0.0473023 +-0.0141375 0.0347096 0.0460356 +-0.0244241 0.178665 -0.0108375 +0.00749812 0.109597 0.0408218 +-0.0356643 0.0606925 -0.0124069 +-0.0638002 0.166551 -0.0354938 +-0.0862312 0.0940245 0.00140199 +-0.0365789 0.0337187 0.00826156 +0.0240933 0.0685753 0.045325 +-0.0891661 0.132396 0.0419315 +-0.0177346 0.065722 -0.0374816 +-0.0224613 0.12203 0.0284859 +-0.0509119 0.055753 0.0316394 +-0.0340805 0.0680941 -0.0175876 +-0.0166639 0.0364717 -0.017882 +0.0347021 0.0768104 0.0396564 +0.0213412 0.0565052 -0.0267347 +-0.0707159 0.179287 -0.0569572 +-0.0748092 0.0790936 0.0363823 +-0.0577944 0.0460393 0.0120187 +-0.0302932 0.123607 -0.00301843 +0.00749105 0.050377 0.0513506 +-0.0641553 0.162388 -0.0586672 +-0.0197076 0.059653 0.0484949 +0.0376477 0.110588 0.00928033 +-0.0151896 0.0391404 0.0514631 +0.020848 0.0400652 -0.0117024 +-0.0208303 0.119929 -0.0109428 +0.0157129 0.124796 -0.00448994 +-0.00658665 0.0388228 -0.0143041 +0.0254417 0.121647 0.000551492 +0.0535789 0.0658041 0.000119664 +0.0473148 0.0518659 -0.00495567 +0.0299175 0.0524736 -0.0157475 +-0.0183959 0.112492 -0.0191613 +-0.0893828 0.0916068 0.0204288 +-0.0614858 0.175719 -0.0606762 +-0.0901396 0.13244 0.0372222 +-0.0238257 0.0881589 -0.0366228 +-0.0218791 0.0383442 -0.00388387 +0.00124143 0.0390154 -0.00356473 +-0.0669805 0.1589 -0.00929727 +0.0483233 0.0547304 -0.00526262 +-0.0444857 0.0661533 0.0401374 +-0.0514919 0.076238 0.0430598 +-0.0301912 0.0664057 -0.0274649 +-0.0408343 0.0942887 -0.0229156 +-0.00749956 0.121159 -0.0124082 +-0.061476 0.158429 -0.028587 +-0.0675029 0.109729 0.0377486 +-0.0697083 0.1638 -0.0499695 +-0.062151 0.152195 -0.0205783 +0.0342924 0.0619556 0.0389482 \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny_ran.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny_ran.pts new file mode 100644 index 000000000000..91de67a41378 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny_ran.pts @@ -0,0 +1,35948 @@ +150 +-0.0164722 0.0382453 0.0209318 +-0.0641407 0.171114 -0.0471776 +0.023086 0.119339 0.0317977 +0.00506037 0.0347021 0.0393176 +-0.066143 0.143958 0.0413147 +-0.0445017 0.163753 0.00542301 +-0.0689729 0.181022 -0.0546459 +-0.0931085 0.131006 0.0192314 +0.000506827 0.0489752 0.0512269 +-0.0615935 0.160001 -0.0315914 +-0.0245032 0.0960169 0.0442753 +-0.0258992 0.0891655 0.049535 +-0.000499367 0.0456802 0.0470389 +-0.0171808 0.0654583 0.0528522 +0.00116916 0.131228 0.00582139 +-0.0356565 0.122935 -0.00798984 +-0.0701892 0.156285 0.021569 +-0.0173569 0.038443 0.0259817 +-0.0716413 0.0763478 -0.0132577 +0.0528545 0.0568172 0.0288563 +-0.0325067 0.0732308 0.0407775 +-0.0760686 0.150008 -0.00987485 +-0.030561 0.0774145 0.0410957 +-0.0833901 0.0762729 0.00451303 +-0.000492618 0.0925258 0.0556594 +-0.0358778 0.159506 0.00240863 +0.0115111 0.114076 0.0384616 +-0.0877889 0.0887187 0.00347532 +-0.0261028 0.115949 -0.0147279 +-0.0682913 0.165205 -0.0539869 +-0.0225512 0.0933694 -0.0331106 +-0.0538783 0.0999149 -0.0214389 +0.0435587 0.0959151 0.0211557 +-0.0167991 0.0388632 -0.0107644 +-0.0569142 0.0548839 0.00364185 +0.00749229 0.091015 0.0542708 +-0.065316 0.0625169 -0.002419 +-0.00749647 0.119689 0.0375376 +-0.0772165 0.0934484 -0.0125951 +-0.029008 0.0478606 -0.0250513 +0.00934189 0.0553527 -0.0303034 +-0.0578677 0.104042 -0.0186102 +0.0405495 0.0999198 -0.00379356 +-0.0894314 0.137929 0.0371779 +0.00710731 0.126603 -0.00643182 +0.058913 0.070492 0.0108657 +-0.0922485 0.120133 0.0292903 +0.0395325 0.105566 0.0221621 +-0.0376065 0.0365426 0.0444186 +-0.0550158 0.128128 -0.00563226 +-0.0561672 0.0336533 0.0186553 +0.0123436 0.0351165 0.0296251 +-0.0899184 0.131005 0.0413145 +0.0065365 0.100373 0.0469448 +-0.0502879 0.133796 0.0278403 +-0.0716838 0.0351362 0.00880221 +0.0579126 0.0523842 0.0101848 +-0.0639212 0.154791 0.00385831 +-0.0654795 0.0384216 -0.00684663 +-0.0615513 0.0624603 0.0259481 +-0.0368013 0.0842007 -0.0223672 +0.0522757 0.0574291 -0.0035048 +-0.0764972 0.123179 0.0527664 +0.0302998 0.0694384 -0.019812 +-0.0334269 0.0486094 0.0413091 +-0.00450651 0.0689184 0.0565193 +0.0425976 0.0887597 -0.00680771 +-0.0707351 0.156208 0.0228366 +0.0548799 0.0492406 0.0202107 +-0.00962948 0.168316 -0.023669 +-0.0313363 0.11605 -0.0148117 +-0.0225249 0.125571 0.0012278 +0.0122871 0.124953 0.0313975 +-0.0343047 0.125361 0.0205265 +-0.038499 0.0747376 0.0420783 +0.0292349 0.0759579 -0.0220376 +-0.0255784 0.0477093 -0.0263526 +-0.0750958 0.151313 -0.0258791 +0.0057743 0.0347896 0.0375885 +-0.0926124 0.120126 0.0272917 +-0.0366664 0.175138 -0.00407486 +-0.00549337 0.088417 0.0570387 +-0.0711473 0.17507 -0.0540267 +-0.0776118 0.0739521 0.0284675 +0.0376746 0.104662 0.0282621 +-0.0634881 0.121359 0.0469409 +0.0233296 0.0564006 -0.0254415 +-0.0399361 0.123254 0.0259269 +-0.000577398 0.0341134 -0.0181551 +-0.000496894 0.0520342 0.0541515 +-0.0701023 0.177167 -0.0478719 +-0.0641167 0.143926 0.0389732 +-0.0679369 0.165269 -0.0197719 +-0.0681029 0.138305 0.0455026 +-0.00280426 0.0384802 0.0198949 +-0.0628273 0.0924874 -0.0189476 +0.0084946 0.0869435 0.0558386 +0.00910286 0.0348066 0.0183719 +-0.0195983 0.126231 0.0213862 +-0.0584949 0.143878 0.0330085 +-0.0218343 0.0553077 0.0451067 +-0.0645685 0.147457 -0.0230581 +0.0426227 0.0691122 -0.00279622 +-0.035813 0.0842739 -0.0225525 +-0.0819685 0.0791215 0.0284136 +0.0328852 0.113087 -0.00384394 +-0.0677123 0.168615 -0.0283035 +-0.0556635 0.140996 0.0299986 +-0.0764958 0.131682 0.0526442 +0.0421796 0.0832522 0.0293553 +-0.0848653 0.0855483 0.0264341 +-0.0329445 0.121338 0.0269922 +-0.0320197 0.058187 -0.0133973 +-0.0322785 0.0421631 -0.0296986 +0.0401757 0.067497 -0.00878165 +-0.0904989 0.148452 0.0245146 +-0.00947974 0.0561444 0.0530127 +-0.0310333 0.0383692 -0.000250742 +-0.0780713 0.150403 0.0367551 +-0.0872126 0.146051 0.00824907 +-0.0735722 0.148626 -0.0268487 +-0.00548676 0.116904 0.0394711 +-0.0599006 0.132533 0.037981 +-0.093479 0.129659 0.0212406 +-0.0639063 0.120904 -0.00875525 +-0.028606 0.0356961 0.0524615 +-0.0652024 0.153998 -0.041972 +-0.0262134 0.0765572 0.0473962 +-0.0774721 0.155387 0.0234212 +-0.0628707 0.0345025 0.0358026 +0.0434964 0.0555926 0.0322399 +-0.0618022 0.142496 0.0370478 +-0.0638273 0.0910291 -0.0188305 +-0.0636286 0.0672101 0.0337087 +-0.0842132 0.092522 0.0298256 +0.0185123 0.115397 0.0365584 +-0.0666269 0.131204 0.0458398 +-0.0653475 0.165775 -0.0260007 +-0.0182573 0.181629 -0.0177335 +-0.0142757 0.185348 -0.0257883 +0.0485082 0.0624718 0.0300814 +-0.0254927 0.0974122 0.0441083 +-0.0446561 0.0349999 0.0427486 +-0.0616719 0.0410515 0.0160296 +-0.0179307 0.0931593 -0.0348763 +-0.00828798 0.130102 0.00662088 +-0.0525878 0.149334 0.020403 +-0.0102534 0.128943 0.0232512 +0.0445378 0.0959706 0.0101622 +-0.0465291 0.0335268 -0.00814027 +0.00437534 0.131145 0.0198749 +-0.0394369 0.03436 0.0321562 +-0.0107155 0.127812 0.0260097 +-0.0273383 0.17123 -0.0098418 +-0.0037118 0.0655569 -0.0347446 +-0.0630689 0.150547 -0.0265942 +-0.0776846 0.16386 -0.0329461 +-0.0728796 0.151218 -0.0388899 +0.038172 0.0967289 0.0325586 +-0.058907 0.0983413 -0.0195805 +-0.00549542 0.0965711 0.0536823 +0.00650609 0.0503877 0.0517539 +-0.0847722 0.113367 0.0459387 +0.0309512 0.0822193 0.0430727 +-0.0159859 0.0984773 0.0464357 +0.0361586 0.0781359 0.0382445 +0.0417308 0.0422749 0.000248643 +-0.0631435 0.175042 -0.061564 +-0.0251041 0.0945178 -0.0276305 +0.018776 0.122594 -0.0061273 +0.0173125 0.0726566 0.0514253 +-0.0377229 0.0724783 -0.0174913 +0.0173872 0.0432828 -0.0228623 +0.0416262 0.0912615 0.0286616 +-0.050567 0.0474222 -0.00850865 +-0.0150865 0.162585 -0.00969001 +0.0143357 0.0566765 -0.0290221 +-0.0309078 0.065095 -0.0224325 +0.045522 0.0805737 0.00219452 +-0.0725374 0.138625 0.0483183 +-0.0476365 0.150675 0.00992423 +-0.0799103 0.125126 -0.00560703 +-0.051025 0.159915 -0.00453945 +0.00139766 0.0419298 -0.0244976 +-0.0664219 0.0352675 0.015055 +-0.00832508 0.130422 0.0138058 +-0.00366678 0.0481589 -0.0301707 +-0.0738566 0.161044 -0.0339379 +0.0319703 0.0475137 0.0318758 +0.0188215 0.126955 0.00377584 +-0.0309617 0.044825 -0.0281993 +0.0456484 0.0875951 0.00518134 +-0.0521074 0.0583062 0.0285239 +-0.0171825 0.0382402 0.011747 +-0.0692976 0.0615474 0.00912978 +-0.0232044 0.175652 -0.0207635 +-0.0406662 0.0592305 -0.0118049 +0.0572429 0.0508905 0.0121849 +-0.0488285 0.0416917 0.0446681 +0.0455301 0.0677752 0.0254231 +-0.0846369 0.110251 0.00429821 +-0.0754652 0.163196 -0.0162299 +-0.0247271 0.0564997 0.0408849 +-0.0639975 0.0601011 0.00610183 +-0.0741599 0.155538 0.00126713 +-0.0728899 0.122329 -0.00823917 +0.010861 0.0360066 0.0447493 +0.0150176 0.0355797 0.04239 +-0.0437155 0.0710509 -0.0175901 +0.0271589 0.093209 -0.0206672 +-0.00592646 0.12418 0.0336126 +-0.0810295 0.0895599 -0.00769505 +-0.0920663 0.121362 0.00826874 +-0.0862277 0.0832671 0.00749085 +-0.085371 0.127983 -0.0026626 +-0.081815 0.108922 0.02836 +-0.0491537 0.135503 0.0034228 +0.00885847 0.0887054 -0.0320419 +-0.0673146 0.0446682 0.00602001 +0.0152697 0.128852 0.0195703 +0.0231834 0.0422122 0.040252 +-0.0286261 0.0463451 -0.0269667 +0.0449154 0.0763231 0.00019353 +-0.0387296 0.0739178 -0.0177449 +0.0212191 0.0819428 -0.0266321 +-0.00126307 0.039726 0.0470556 +-0.0261021 0.0379463 0.0228342 +-0.0448562 0.101383 -0.0214692 +-0.0014827 0.0390261 -0.00225591 +-0.0648948 0.103911 -0.0165942 +-0.0624902 0.155293 -0.0145941 +0.000436968 0.130385 0.0227651 +-0.0219738 0.059501 0.0451263 +-0.0502789 0.129408 -0.00267456 +-0.0216757 0.065257 0.0474751 +-0.0621482 0.16155 -0.0395978 +0.0427418 0.0916392 0.0261768 +0.00967962 0.127274 0.0289934 +-0.0728707 0.168003 -0.0450202 +-0.0305611 0.179398 -0.00755573 +0.0341402 0.0902832 0.0407178 +-0.0491119 0.0361611 0.0459929 +0.0392087 0.0739776 0.0338431 +-0.0897017 0.151503 0.0171224 +0.0407967 0.105643 0.0101649 +-0.023633 0.0478399 -0.0272396 +-0.0504958 0.0862332 0.0455716 +-0.0451092 0.153606 0.00834539 +-0.0616087 0.146812 0.0373554 +0.0280342 0.0346822 0.009507 +0.0565861 0.0685555 0.00335277 +-0.027568 0.0674298 0.0392602 +-0.0926576 0.117463 0.0373027 +-0.0334278 0.124984 0.0208436 +-0.0602518 0.034678 0.0430709 +-0.0574989 0.107052 0.0398301 +-0.091226 0.128161 0.00727002 +0.0400022 0.0913669 0.0315547 +-0.0656743 0.138242 0.0419702 +-0.0852141 0.0805923 0.0204766 +-0.0444957 0.111173 0.0370595 +-0.044489 0.0803636 0.042222 +-0.00648998 0.122405 0.0354776 +0.00602348 0.111527 -0.0200414 +-0.0860119 0.132159 0.00027761 +0.0521231 0.0734583 0.0172399 +-0.0155403 0.0446621 0.0510487 +-0.0397503 0.0768521 -0.0186787 +-0.0682155 0.0787029 0.0404793 +-0.0813927 0.0758934 0.0225084 +-0.010188 0.0386565 4.14997e-05 +-0.00149609 0.0912323 -0.0347548 +-0.0294974 0.111128 0.0367729 +-0.0503924 0.0501648 0.0186468 +-0.0104698 0.070299 0.0557764 +0.0327323 0.0809002 0.0421262 +-0.0328911 0.122131 -0.00712262 +-0.0861948 0.1005 0.0258994 +-0.0319282 0.178722 -0.00808101 +-0.050675 0.140101 0.0024044 +-0.0346788 0.0636729 -0.0139354 +-0.00820144 0.0344928 -0.0181278 +-0.0830162 0.0939316 0.0314035 +0.0438286 0.0611702 -0.00330591 +-0.0162799 0.127645 0.0211086 +-0.0615233 0.0354132 0.043881 +-0.0755937 0.0809959 -0.0116148 +-0.0632393 0.166259 -0.0385929 +-0.0156738 0.0511142 -0.0317767 +0.000751147 0.0339678 -0.0215355 +-0.0534027 0.0336932 0.022744 +0.0102837 0.0348658 -0.0091814 +-0.0285082 0.0874866 -0.0336017 +-0.0849712 0.111906 0.0292041 +-0.0732162 0.169408 -0.0460252 +-0.00746424 0.110009 0.0430329 +-0.0587154 0.0723411 -0.016523 +-0.00333145 0.0968513 -0.0305901 +0.0385608 0.0713011 0.0346329 +-0.0463734 0.133247 0.0130756 +-0.0474986 0.104275 0.0408376 +-0.0714849 0.147284 -0.0260827 +-0.0404433 0.0461446 -0.0193164 +0.000709469 0.125628 -0.00726116 +0.028516 0.117882 -0.00302906 +-0.00249354 0.0746702 0.0587588 +0.0463101 0.0806468 0.00818141 +-0.0245515 0.114015 0.0358596 +-0.0396488 0.0563195 -0.0111963 +-0.0236961 0.0607746 0.0425604 +-0.0336359 0.0548461 -0.0105101 +-0.0585033 0.0337545 0.0163089 +0.0212208 0.126407 0.0160623 +-0.0729862 0.15207 0.0354642 +-0.085378 0.128494 0.0496125 +0.00429457 0.122356 -0.0118056 +0.0203517 0.0672611 0.0487139 +-0.0452845 0.0395903 -0.0182935 +-0.0211124 0.182965 -0.0210132 +-0.0295465 0.0819132 0.0441437 +-0.0777488 0.07493 0.029356 +0.00824435 0.0966482 -0.0263491 +-0.0588066 0.0854157 -0.0208208 +-0.0718999 0.113582 -0.00821597 +-0.0893735 0.0901981 0.0104595 +0.032603 0.0835706 0.0419526 +-0.0230608 0.0594124 0.0433799 +0.0284544 0.121423 0.0116324 +-0.0832785 0.12444 0.0504652 +-0.0396241 0.0520021 -0.0108773 +0.00721225 0.0837864 -0.0330068 +-0.046713 0.131987 0.00556897 +-0.0663702 0.157999 -0.00906779 +-0.067736 0.0779793 -0.0166569 +-0.0508692 0.102779 -0.0209206 +-0.0828958 0.151378 0.00422572 +-0.0346622 0.118788 -0.0116368 +-0.0726425 0.0716156 -0.00744076 +-0.059725 0.0469427 0.0326718 +-0.0468444 0.033579 -0.0045851 +-0.0384976 0.100064 0.0415702 +-0.050989 0.121022 -0.0119137 +-0.0624226 0.152205 -0.0125757 +-0.085741 0.151793 0.0266482 +-0.0826468 0.144713 0.0407672 +-0.0685649 0.0705046 -0.00966184 +-0.0734033 0.167233 -0.0217479 +-0.0455099 0.155064 0.0077969 +0.022652 0.0862116 0.0486888 +0.043364 0.0547822 -0.00644446 +-0.054457 0.14621 0.0274041 +-0.0639777 0.155958 0.0237716 +-0.0882347 0.0861347 0.011472 +0.00545294 0.1216 -0.0129959 +-0.0334673 0.174268 -0.00177832 +-0.00402179 0.129762 0.0240423 +-0.0185051 0.0711438 0.0540217 +-0.0872329 0.150111 0.00920897 +-0.090033 0.147105 0.0269347 +-0.0141936 0.0419832 0.0511586 +-0.0335873 0.154463 -0.00838872 +0.0441357 0.083266 -0.000805736 +-0.0528842 0.102762 -0.0205636 +-0.0125091 0.0815143 0.0575917 +0.0197435 0.125962 0.0226458 +-0.067993 0.0619274 0.01978 +-0.0216083 0.039391 -0.0287125 +-0.0767116 0.165247 -0.022942 +-0.0861936 0.111308 0.0401352 +-0.0238165 0.0854111 -0.0376407 +-0.0442161 0.123225 0.0243959 +-0.0175443 0.0460366 0.0510389 +-0.0272334 0.0902723 -0.0326005 +-0.0459359 0.168402 -0.00594095 +0.0355423 0.0512597 0.0315836 +0.0451079 0.0636949 -0.00183531 +-0.0368834 0.125578 -0.00482073 +0.0196258 0.0457587 -0.0217227 +-0.00773224 0.109619 -0.0221011 +-0.0514957 0.0876341 0.0455102 +-0.00269376 0.0613003 -0.0344696 +-0.0512049 0.147808 0.0143958 +0.0266901 0.106496 -0.0148024 +0.0383861 0.0476151 -0.00591592 +-0.0136895 0.0952904 -0.0330103 +0.0368491 0.0767795 0.0374896 +-0.029592 0.0522946 -0.0203629 +0.0482309 0.0500295 -0.00369862 +0.0381363 0.0794306 0.0358549 +-0.0677271 0.155796 -0.00229118 +0.026043 0.0392404 0.0305576 +0.0208388 0.126564 0.0173475 +0.0159735 0.0448127 0.0438765 +-0.0681757 0.118633 0.0523539 +-0.065068 0.136793 0.0410949 +-0.0454458 0.168254 0.00168996 +-0.0715222 0.142818 0.0455702 +-0.0604912 0.112522 0.03629 +-0.00074702 0.0712329 -0.0350931 +-0.0894331 0.150114 0.0121902 +-0.0185746 0.0381525 0.0151621 +0.0291213 0.0348096 0.00960912 +0.0404448 0.0985503 0.0271661 +0.0134712 0.0936014 0.0511282 +-0.021496 0.103017 0.0435858 +0.00918856 0.0342345 -0.00132638 +-0.0508332 0.0956285 -0.0221275 +-0.0613646 0.0394268 0.0439671 +0.0264379 0.0968548 0.0436578 +-0.0646669 0.0405364 0.0387423 +0.0125029 0.0475354 0.045933 +0.0412949 0.104257 0.00416372 +-0.00222052 0.117102 -0.0161156 +-0.00995662 0.169734 -0.0198047 +0.0200755 0.0399795 -0.0157069 +-0.0839165 0.110514 0.0395089 +-0.0546435 0.116042 -0.0146857 +0.0268767 0.0854059 -0.022529 +-0.0543926 0.0337363 0.0224962 +-0.049781 0.0841032 -0.0216622 +0.0431463 0.100109 0.00616795 +0.0393814 0.0780345 0.0341058 +-0.0162612 0.17862 -0.0260128 +-0.0335093 0.0676035 0.0406399 +-0.0176483 0.0352702 -0.0188352 +-0.031463 0.0519033 0.0373773 +-0.0803572 0.0803552 0.0319871 +-0.0320868 0.159267 -0.0129293 +0.0132853 0.0589897 0.0507165 +-0.0103631 0.180289 -0.0277342 +-0.0144925 0.0559441 0.0511232 +-0.0246444 0.0381166 0.0247786 +0.0170669 0.0871276 -0.028336 +0.00372554 0.105196 -0.0213905 +-0.0777857 0.156925 -0.0179137 +0.0578227 0.0710073 0.0178627 +-0.0582482 0.0336534 0.0128901 +-0.0520861 0.0545712 0.0266312 +0.0269849 0.113053 -0.00983991 +0.0429421 0.0467386 0.030224 +0.00548112 0.11414 0.0405028 +0.0607975 0.0637336 0.0101416 +-0.0895137 0.135181 0.0391853 +-0.0822803 0.139383 0.0462108 +0.00350363 0.0883757 0.0563643 +-0.0599112 0.109712 -0.0163845 +-0.0699244 0.107994 -0.0118147 +-0.073438 0.145781 -0.0138542 +-0.0702694 0.156361 0.0186365 +0.0365208 0.0713424 0.036933 +-0.0764811 0.141399 0.0471717 +-0.0338378 0.0943788 -0.02372 +-0.0185768 0.055451 0.0489119 +-0.0294962 0.107041 0.0398129 +0.0351663 0.0783387 -0.0157415 +-0.0823976 0.095314 0.0321564 +0.0458052 0.08902 0.00916777 +0.00466954 0.0341296 0.0180802 +0.012258 0.0751733 -0.0308354 +-0.0176564 0.0480544 -0.0295902 +-0.0487658 0.0811872 -0.020682 +-0.0375125 0.045091 0.0407522 +0.00960807 0.0375632 0.0322947 +0.0522688 0.0462249 0.00921199 +-0.0452834 0.0395877 -0.019291 +-0.0396931 0.126183 0.0200311 +-0.0903381 0.144712 0.0141544 +-0.0430213 0.0450576 -0.0153284 +-0.0539191 0.129665 -0.00510771 +-0.0384876 0.108386 0.0375357 +-0.0496388 0.0605583 -0.0113235 +-0.034501 0.115223 0.0328885 +-0.0540284 0.131061 -0.00500164 +-0.0147028 0.0389017 0.0333119 +-0.0207376 0.0641563 -0.0358205 +0.00590682 0.131658 0.0132863 +-0.0819436 0.154696 0.0145801 +0.0526661 0.0660937 -0.000184776 +-0.0526201 0.14007 0.0244025 +-0.0752504 0.177839 -0.0529463 +-0.0574955 0.0946379 0.0447737 +0.0456129 0.0904097 0.00518194 +-0.0282629 0.122524 0.022734 +-0.0680338 0.142566 0.0438693 +-0.0643033 0.0426016 0.0312522 +-0.0314971 0.102929 0.041974 +-0.00589664 0.0980966 0.0519993 +-0.0542782 0.132533 0.0338047 +-0.0911122 0.11473 0.0343167 +-0.0493972 0.140141 0.00739907 +-0.0577664 0.0485104 0.00767417 +-0.0629684 0.139576 0.0370615 +-0.0122087 0.128137 0.0240139 +0.00116984 0.129366 -0.00128907 +-0.039496 0.0634667 0.0415276 +-0.0427066 0.0696149 -0.0170299 +-0.0721201 0.149786 -0.0402916 +-0.0637423 0.168365 -0.0426884 +-0.0228169 0.0383283 0.0285633 +-0.0894925 0.143336 0.0131803 +-0.0408822 0.128708 0.0107294 +-0.043783 0.147719 0.00491206 +0.00912223 0.0833108 0.0554277 +-0.0543042 0.0335497 0.00301212 +-0.0544171 0.0333785 -0.00775516 +0.0295237 0.0727272 0.042682 +-0.0504982 0.112495 0.0358796 +-0.0240218 0.119915 -0.0108978 +-0.0535232 0.0556038 0.0117195 +-0.0480175 0.133707 0.00490199 +0.00583381 0.129313 0.0261699 +-0.0405566 0.149165 -0.00293165 +-0.0286765 0.0690744 -0.0314836 +0.0453693 0.0693828 0.00245115 +0.0581659 0.056561 0.00517446 +0.0192888 0.0651078 -0.0282476 +-0.0228892 0.0739252 0.0512281 +-0.0217183 0.113234 -0.017904 +0.0365187 0.0526805 0.0315096 +0.0490482 0.0539975 0.0303486 +0.0175085 0.114012 0.0373101 +-0.0328107 0.126843 0.0122027 +-0.0687814 0.0336983 0.00353162 +0.0220892 0.0906332 -0.0239505 +-0.0460528 0.122513 0.026245 +0.0381409 0.109688 0.00657231 +0.0368421 0.0742334 -0.0127504 +-0.0657975 0.0340784 0.0127357 +-0.0706216 0.146831 -0.0255714 +-0.0468292 0.091298 -0.0217206 +-0.0914681 0.144718 0.0171554 +-0.0624908 0.0343254 0.0238098 +0.0543739 0.0477987 0.0161989 +-0.0195403 0.1757 -0.0161256 +0.0224671 0.0343921 0.00678503 +-0.0654707 0.155271 0.00728456 +-0.0897135 0.12265 0.00431103 +-0.0501651 0.0361307 0.0461721 +-0.0901888 0.139114 0.0151891 +-0.0726107 0.156829 -0.0349095 +-0.0334964 0.0718545 0.0411869 +0.0106165 0.0644536 0.0539383 +0.0274263 0.0491525 0.0376576 +-0.0157908 0.169796 -0.0160148 +-0.0608326 0.17151 -0.0610901 +0.0136156 0.126814 -0.00267762 +0.0293325 0.0535401 0.0386956 +-0.0652579 0.153012 -0.0402459 +0.0264019 0.036087 0.0225582 +0.0101281 0.105858 -0.0202342 +-0.0674046 0.0833115 0.0429955 +-0.0312435 0.0538841 -0.0143722 +0.0424267 0.0441756 -0.00158684 +-0.0305089 0.0760274 0.0408429 +-0.0849899 0.127963 -0.0030064 +-0.0223249 0.0386602 -0.0135496 +0.0216012 0.112963 -0.0137495 +-0.0224297 0.0552774 0.0442986 +-0.093152 0.121537 0.0362834 +-0.0384463 0.166779 0.00239389 +0.0317419 0.0667553 -0.0187125 +-0.0127135 0.100022 -0.0239701 +0.0204112 0.0371925 -0.00568428 +0.0383001 0.0969495 -0.00880451 +-0.0500528 0.150184 -0.0037815 +-0.0578783 0.106898 -0.0179862 +0.0485378 0.0682762 0.00156381 +-0.0708965 0.0341323 0.00629169 +-0.0871174 0.110466 0.0103621 +-0.0235739 0.0944939 0.0470656 +-0.0164815 0.0515035 0.0485835 +0.0325428 0.0380502 1.57112e-05 +0.0385774 0.0888011 0.0348199 +-0.0628692 0.0445185 0.0382675 +-0.0572856 0.125533 0.0399888 +-0.0780066 0.0940671 0.0362827 +-0.0361012 0.160724 -0.0132118 +0.0200495 0.124902 -0.000599563 +0.0101263 0.107276 -0.0197522 +0.0224877 0.0961643 0.0466342 +-0.077715 0.0852782 -0.0115916 +-0.0164955 0.105778 0.0423459 +-0.0725318 0.101313 0.038599 +-0.0663565 0.0783826 0.0411592 +-0.0644378 0.17995 -0.0588828 +-0.0645973 0.171184 -0.0458828 +0.0111199 0.129735 0.0223368 +-0.018333 0.172741 -0.0161594 +-0.0864925 0.10492 0.00639597 +-0.0144943 0.0500942 0.0487331 +-0.0855601 0.095177 0.0282718 +1.67787e-05 0.0386604 0.0239291 +0.0109499 0.0344084 0.00259617 +-0.0270041 0.168274 -0.00938266 +-0.0378811 0.107099 -0.0200653 +0.060304 0.0664655 0.0101406 +-0.0478845 0.108472 -0.0188663 +0.0181085 0.0591163 0.0489014 +-0.0260899 0.0522789 0.0395517 +0.0049437 0.0984176 -0.0242128 +-0.0623314 0.0357831 0.0433788 +0.0110403 0.0725847 0.0546235 +-0.0864956 0.084691 0.0204775 +-0.00849993 0.0787667 0.0579153 +-0.0260008 0.0382709 0.000860974 +-0.06937 0.145758 -0.0234859 +-0.0314168 0.117929 -0.0127586 +-0.0261669 0.0378674 0.0174813 +-0.0832309 0.120353 0.049216 +-0.0617814 0.16156 -0.0355923 +-0.0779669 0.165862 -0.0278956 +-0.0698398 0.0922797 -0.0162924 +0.0483255 0.0503286 -0.00380134 +0.0451716 0.0889782 0.0181643 +0.0329815 0.112282 -0.00498623 +0.0279206 0.0916217 -0.0209795 +0.0155 0.11402 0.0377783 +-0.0105379 0.0431327 0.0497176 +0.0606167 0.0609422 0.00915424 +-0.0181983 0.18599 -0.0174024 +0.0189716 0.115037 -0.0139804 +-0.0590849 0.0644137 0.0318252 +-0.0819254 0.12582 0.0519232 +-0.0588398 0.0954803 -0.0203334 +-0.0674426 0.148384 -0.0326115 +0.0387628 0.10462 0.0262683 +0.00841723 0.129272 0.0256623 +-0.0196119 0.0364667 -0.0278852 +-0.0376923 0.162356 -0.000243841 +1.88808e-05 0.115368 -0.0182789 +0.0393962 0.0505525 -0.00668347 +-0.0116788 0.0555838 -0.0339192 +0.0363865 0.0713868 -0.0138007 +-0.0821651 0.110069 0.034903 +0.022728 0.117081 -0.0101857 +-0.0515389 0.0417461 -0.0105815 +0.0219588 0.123501 -0.00109075 +0.00735928 0.0960033 -0.0276522 +-0.00349428 0.119696 0.0379021 +-0.0470844 0.151656 -0.00519447 +-0.0242296 0.0941248 -0.0298734 +0.0152433 0.0658912 0.0518711 +-0.021804 0.0376594 -0.0181241 +-0.0133966 0.121962 -0.00916065 +0.0365536 0.108655 0.0265769 +-0.0668098 0.0880715 -0.0180091 +-0.0665181 0.171112 -0.0407548 +0.0493343 0.0532247 -0.0043679 +0.0423933 0.0901635 -0.00682346 +-0.0624126 0.150651 -0.0115734 +0.0373944 0.0505276 -0.00658166 +-0.0411461 0.162173 -0.0113613 +-0.065916 0.0662086 0.0305519 +-0.0289729 0.083488 0.0456837 +-0.000642523 0.0347913 0.0398677 +-0.0738147 0.065744 0.00631032 +0.00351431 0.0938625 0.0544725 +-0.0467733 0.12389 0.0269319 +0.0246632 0.123785 0.00595837 +-0.0715256 0.0958228 0.0413941 +0.00252922 0.0362636 0.0463395 +0.00948792 0.0963424 0.0500581 +0.0292035 0.0400739 0.0286474 +-0.0309481 0.0706991 -0.0284733 +-0.054091 0.152763 0.0215579 +0.0118527 0.105542 -0.0197545 +-0.0404793 0.0832528 0.0431634 +-0.0448438 0.0985036 -0.0215544 +-0.032014 0.0567822 -0.0123897 +0.00040853 0.0356817 0.00488121 +0.0447245 0.0861403 0.0231669 +-0.0426307 0.0338188 -0.00946517 +-0.0710495 0.141325 -0.00813095 +-0.0255896 0.182763 -0.0105092 +-0.0838169 0.107636 0.0253505 +-0.0796245 0.0859561 0.0353266 +0.0240034 0.0449703 0.0396985 +0.00450108 0.0716864 0.0560951 +-0.0676894 0.0750921 -0.0153176 +-0.0466572 0.0369109 -0.0172699 +-0.016529 0.0558872 0.0508401 +-0.087831 0.103641 0.0093887 +0.0272256 0.10745 0.0377741 +-0.0670064 0.0337953 0.0073865 +-0.0866888 0.0833263 0.0124872 +0.0152687 0.0779357 -0.0299953 +-0.0851819 0.152725 0.0105454 +0.000352424 0.0511166 -0.0306262 +0.0518495 0.0464359 0.0201911 +0.0554005 0.0553511 0.0254886 +-0.0886141 0.0928486 0.00844707 +0.0129712 0.130228 0.0115965 +-0.085549 0.104961 0.0233427 +0.0515991 0.0496316 0.0251833 +0.0131946 0.0878791 -0.0305989 +-0.0693376 0.131255 0.0489674 +-0.0660205 0.167997 -0.0305503 +-0.0666146 0.174697 -0.0480375 +-0.0293346 0.0347045 0.0427947 +-0.0553259 0.126836 -0.00601308 +-0.058583 0.0460291 0.0113967 +-0.0416277 0.0337441 -0.014735 +-0.0446642 0.0621749 -0.0132201 +0.0295862 0.120365 0.0134787 +-0.0697163 0.064282 0.022673 +-0.0805487 0.0789662 0.0306236 +-0.0787564 0.154933 0.00983696 +-0.0662707 0.14708 -0.0258685 +-0.0248167 0.0949702 -0.0267501 +-0.0407693 0.0826515 -0.0208197 +0.000514101 0.0346343 0.00952105 +-0.0533361 0.138123 0.0280776 +-0.0689277 0.115103 -0.00892086 +-0.0865224 0.0913375 0.0024428 +0.0232602 0.0790529 -0.0256674 +0.0296786 0.0679688 -0.0198342 +-0.0331127 0.123309 0.0239558 +0.0276403 0.118218 0.0284429 +0.00238303 0.0449286 -0.0261957 +-0.0928278 0.124236 0.0382657 +-0.0868685 0.11045 0.00936714 +-0.0254875 0.0959781 0.0438332 +0.0132252 0.0808221 -0.0308314 +0.035265 0.0591791 0.0368077 +-0.00944135 0.168135 -0.0197365 +0.0011864 0.12951 0.0259323 +-0.0139593 0.0967237 -0.0305143 +-0.00848922 0.0385737 0.0258802 +0.0562981 0.0619429 0.0011209 +0.0322546 0.0987343 -0.0145759 +-0.0268707 0.103016 -0.0234914 +-0.00655639 0.0384205 0.0209905 +-0.0296666 0.0774462 0.0418826 +-0.0626586 0.0676213 -0.0103966 +0.0374569 0.0904362 -0.0137042 +-0.0712181 0.161 -0.0439365 +0.0243668 0.0889213 0.0476805 +-0.0336134 0.0408899 -0.0298935 +-0.0404969 0.0916505 0.0425962 +0.0443454 0.0903358 0.0221636 +-0.0435232 0.163746 0.00524284 +-0.0649943 0.0623954 0.0235277 +-0.0613093 0.0593276 0.0181457 +-0.0717978 0.155398 -0.0409076 +-0.00868753 0.0584178 -0.0339256 +-0.0904383 0.119966 0.00529664 +-0.0601615 0.0333995 -0.00165181 +-0.0612252 0.0407891 0.0437895 +-0.0537348 0.0738508 -0.0172852 +-0.0709057 0.10512 -0.0125462 +-0.00333997 0.039253 0.0353398 +-0.0469903 0.145002 0.00194161 +-0.0250386 0.0659034 -0.0335362 +-0.023273 0.0382876 0.00502865 +0.0111228 0.0960826 -0.0257288 +0.0198113 0.0954368 -0.0230239 +0.038476 0.104075 -0.00282883 +-0.0843581 0.0883713 0.0286614 +-0.0930341 0.118841 0.0362969 +-0.0646767 0.146003 -0.0179612 +0.0284626 0.102127 0.0395666 +-0.0435018 0.113907 0.034675 +-0.0604863 0.0790224 0.042794 +-0.089042 0.112536 0.0205154 +-0.0524675 0.0344946 0.0345461 +-0.0848716 0.119101 -0.00207765 +-0.0120923 0.11442 -0.0172013 +-0.079929 0.151371 0.00121035 +-0.0920085 0.116136 0.0393096 +0.0361533 0.112569 0.0130564 +-0.0196629 0.125034 -0.00230889 +0.000499429 0.115573 0.0406664 +-0.0560183 0.147198 -0.00168648 +-0.0873616 0.110481 0.0113565 +-0.0416844 0.0636674 -0.0137203 +-0.0651889 0.153592 -0.00278678 +0.0471599 0.07398 0.0153485 +0.0404106 0.0873775 0.0321991 +-0.019434 0.184905 -0.0153275 +-0.0438294 0.0913555 -0.0224139 +-0.0527613 0.0797578 -0.020501 +-0.0314155 0.0651435 -0.021432 +0.00948509 0.0950229 0.0512669 +0.0346346 0.107297 -0.007625 +-0.0870053 0.0954387 0.00242783 +-0.0617312 0.142927 -0.00565867 +-0.0538929 0.14622 0.0244012 +0.0339044 0.115273 0.00366751 +0.049575 0.0693171 0.00251779 +-0.0861009 0.106274 0.00635995 +-0.00751182 0.075985 0.0578234 +-0.0761849 0.0933719 -0.0135017 +0.0266626 0.0672707 0.0437593 +-0.0314925 0.0932138 0.0444288 +0.0112937 0.0680868 -0.0307505 +-0.086045 0.141863 0.00720055 +0.000490707 0.111422 0.0424934 +-0.0516022 0.0502173 -0.00741774 +-0.0709386 0.131124 -0.00852217 +-0.0291841 0.125368 0.0164845 +-0.0012258 0.095852 -0.0315171 +-0.000697567 0.0641196 -0.0342689 +-0.0797379 0.0738711 0.0228323 +-0.0705682 0.0382102 0.00943236 +-0.0558807 0.102663 -0.0193944 +0.0262875 0.0835737 0.0468767 +-0.0206175 0.0364922 -0.0281092 +0.0306136 0.0779431 -0.0207534 +0.037492 0.0983062 -0.0097724 +-0.0861064 0.0806138 0.0174966 +-0.0488748 0.105594 -0.0196597 +-0.0499497 0.0724883 0.0409516 +-0.060435 0.131107 0.0389542 +-0.0197383 0.108898 -0.0213322 +-0.0328414 0.0943934 -0.0238538 +0.0071329 0.104451 -0.0211019 +-0.0904392 0.125398 0.00528343 +0.0579573 0.0676391 0.00414749 +-0.0890486 0.0915916 0.0214249 +0.0544885 0.0716156 0.00618127 +0.037936 0.0901639 0.0356574 +-0.0631289 0.155254 0.0269868 +0.0280038 0.120349 0.024295 +0.00325461 0.0697315 -0.0336623 +0.0198002 0.0768324 0.0515324 +0.0135718 0.0504901 0.0475195 +-0.0220331 0.041681 0.0538782 +-0.0322365 0.126297 0.00653811 +-0.020497 0.0855906 0.0563403 +0.0100844 0.123139 0.0340691 +-0.0917617 0.141982 0.0191718 +-0.00665267 0.0526646 -0.0325345 +0.0325469 0.0922927 -0.0176842 +-0.00490321 0.0383839 0.0141185 +0.0393963 0.049102 -0.00636122 +-0.0468295 0.0927337 -0.0216687 +0.0393484 0.0561243 -0.00568756 +0.0381042 0.0392738 0.00134927 +-0.02061 0.0653432 0.0492306 +-0.0644858 0.152894 -0.00250698 +0.0316363 0.118365 0.0113851 +-0.0625842 0.162383 -0.0563311 +-0.0126137 0.180121 -0.0236267 +-0.0562637 0.142432 0.0309288 +0.0389203 0.10838 0.0161659 +0.0468209 0.0708789 0.021127 +0.0153317 0.060873 -0.028643 +-0.067208 0.0447917 0.00368814 +-0.0638714 0.15469 -0.0385902 +-0.0624126 0.161536 -0.0416011 +-0.011049 0.124435 -0.00785173 +0.0143712 0.0493733 -0.0267066 +-0.0374862 0.0931566 0.0438456 +-0.0278525 0.0807805 0.0474761 +0.0573848 0.0670309 0.00292365 +-0.0304938 0.0960556 0.0449536 +0.0182602 0.127523 0.0192457 +0.0182204 0.080645 -0.0282763 +-0.00275795 0.0740872 -0.0359501 +-0.072697 0.155649 0.00759319 +-0.0857527 0.0792184 0.0135098 +-0.0604443 0.0456013 0.0296807 +-0.0528198 0.0927332 -0.0219739 +-0.0457202 0.0709417 -0.0164642 +-0.054497 0.0889964 0.0448823 +-0.0541353 0.147754 0.0254132 +0.05074 0.0503045 -0.00171178 +-0.0926993 0.124215 0.0352716 +0.00850767 0.0786 0.0556334 +-0.0141847 0.0405865 0.0511605 +-0.0500491 0.0345412 0.0367666 +-0.0744234 0.156022 0.0128056 +-0.0148381 0.0386367 -0.0157684 +-0.0896535 0.0916031 0.0184402 +-0.0279306 0.125506 0.00666413 +-0.0249827 0.0918474 0.0485489 +-0.0247746 0.0385687 -0.0102357 +-0.0718755 0.10648 -0.0114758 +0.0303733 0.115414 -0.00438737 +0.0390771 0.099844 -0.00681802 +-0.0601235 0.0447437 0.0425684 +0.0559507 0.0508031 0.00520531 +-0.087948 0.102288 0.00840013 +-0.0802939 0.0732789 0.00250413 +-0.00347452 0.114725 -0.0175669 +-0.0780015 0.155773 0.018849 +-0.0868392 0.0873072 0.00147849 +0.0114304 0.0346172 0.0371012 +-0.0154945 0.0925097 0.0555061 +0.0207547 0.10431 -0.0184628 +-0.0805113 0.153427 0.0283513 +-0.0133702 0.0343611 -0.0190243 +0.045363 0.0932019 0.00717004 +-0.0517619 0.079747 -0.0203928 +-0.011137 0.171308 -0.0197957 +-0.0797359 0.0706327 0.0105539 +-0.0435047 0.116629 0.0323741 +0.0461192 0.0786876 0.0190773 +0.0257679 0.0349257 0.0180133 +-0.0377436 0.127354 0.000111554 +0.0455391 0.0875946 0.0141649 +-0.0115776 0.0962625 -0.032007 +-0.0304054 0.0580102 -0.0194062 +-0.0519213 0.118323 0.0336042 +-0.0615165 0.15114 0.0355512 +-0.0268549 0.175688 -0.00910606 +0.0291872 0.0462618 0.034893 +-0.0828817 0.143196 0.00216401 +-0.0229243 0.0972075 0.044901 +-0.0420606 0.0344689 0.0332688 +0.00840712 0.0404044 -0.0234014 +-0.0584986 0.100161 0.0428821 +0.0267286 0.0521731 -0.0207566 +-0.0343564 0.043282 -0.028737 +0.035312 0.0840703 -0.0177861 +0.0167493 0.0874098 0.0506847 +-0.0706375 0.156126 0.0126907 +0.0395317 0.0596774 0.0306966 +0.0160357 0.0807986 0.0531419 +-0.0719071 0.105086 -0.0120336 +0.057752 0.0523416 0.0181873 +-0.0705862 0.166615 -0.0490027 +-0.069998 0.157611 -0.0031485 +-0.0629727 0.118457 0.044154 +-0.0098895 0.107351 -0.0224128 +-0.0668287 0.169972 -0.0351376 +-0.0538607 0.152062 0.0231076 +0.0286155 0.0795328 0.044942 +0.00747725 0.131195 0.0181386 +0.0525355 0.0678367 0.0261828 +-0.069983 0.033931 0.00665746 +-0.00449526 0.10588 0.044033 +-0.0647467 0.143415 -0.011401 +-0.0242451 0.0337053 -0.0224295 +0.0405945 0.102819 0.0221712 +-0.0253936 0.106122 -0.0223873 +-0.031866 0.126076 0.00521848 +-0.0903832 0.132413 0.0312232 +0.0270423 0.0648893 -0.0216756 +-0.0416036 0.125525 0.0208631 +-0.0642885 0.148287 -0.0250747 +0.043249 0.0705728 -0.00179391 +0.00750831 0.0772509 0.056126 +-0.0360471 0.125746 -0.0036679 +-0.0534999 0.0820142 0.0450601 +-0.0268076 0.0782799 -0.0366273 +-0.0630392 0.0336157 0.00836468 +0.00450283 0.0924607 0.0546761 +-0.0794816 0.0846149 0.0352279 +-0.0354976 0.116636 0.0319301 +0.0590094 0.0552651 0.0101755 +0.0177618 0.100614 -0.0224544 +0.0141872 0.0347155 0.0357788 +-0.0626395 0.0644043 -0.00619313 +-0.0472223 0.168222 -0.000777409 +-0.0688709 0.156258 0.0147705 +-0.00209707 0.130745 0.0203917 +0.0438165 0.0959355 0.0191615 +0.0272253 0.120021 -0.000250724 +-0.0623918 0.152158 -0.026581 +-0.0619803 0.153737 -0.02558 +-0.0110119 0.122536 -0.00980812 +-0.00845767 0.100229 0.0476033 +-0.053626 0.1255 0.0365054 +0.029243 0.0872327 -0.0208644 +-0.0561028 0.133503 -0.00512832 +-0.0536146 0.150855 0.0243962 +-0.0729449 0.0805494 0.0386997 +-0.0113093 0.0384672 0.00547553 +0.013929 0.0392001 0.0444158 +-0.0743245 0.179234 -0.0539852 +-0.0670834 0.168031 -0.0569976 +0.0269196 0.0418157 0.0333163 +-0.0261604 0.114813 -0.0155316 +0.054979 0.06227 -0.000302264 +0.0447631 0.0931576 0.00318223 +-0.028552 0.159576 0.000695282 +-0.0196334 0.0906851 0.0545345 +-0.0681661 0.173216 -0.0428508 +-0.0670035 0.166617 -0.0570134 +-0.00170857 0.0641356 -0.0344906 +-0.0302923 0.115032 -0.0157497 +-0.017789 0.0998203 0.0439009 +0.0575984 0.0711737 0.0088801 +-0.0559485 0.119826 0.0383628 +-0.0508832 0.106998 -0.0191626 +-0.0856518 0.096702 -0.000561949 +0.0433856 0.0475038 -0.0047769 +-0.0141839 0.177168 -0.0206609 +-0.0318261 0.0623615 -0.0184459 +-0.0694684 0.158126 -0.0509379 +-0.059088 0.0445923 -0.00517311 +-0.0680469 0.0887699 0.043444 +0.0413366 0.0588699 -0.00449648 +-0.0108613 0.16611 -0.0209706 +-0.0810695 0.111472 -0.000645954 +0.0236683 0.0535376 0.0428398 +-0.0525009 0.104252 0.0406803 +0.0178265 0.128119 0.0148069 +-0.0833287 0.0817012 -0.000498118 +-0.0582078 0.148218 0.0334722 +0.0469627 0.0735494 0.00823046 +0.0348898 0.0889372 0.0400127 +0.0544139 0.0478718 0.0102055 +-0.0519767 0.0343446 0.0277664 +-0.0526872 0.144684 0.0193835 +-0.0654577 0.0403952 0.0367257 +-0.0632766 0.146612 -0.0147592 +-0.0756638 0.0968147 0.0380937 +-0.0121766 0.169774 -0.0245851 +-0.0313173 0.115081 -0.0157968 +0.00550009 0.105744 0.0419393 +0.0170456 0.0808203 0.0528345 +0.00997537 0.129323 0.0247881 +-0.000565033 0.0348667 0.0451983 +-0.0170398 0.124093 -0.00535053 +0.0359746 0.112738 0.007259 +-0.0264982 0.112519 0.0362632 +-0.0108141 0.0841239 -0.038537 +-0.0464922 0.097353 0.0431423 +0.0456344 0.0820067 0.0201819 +-0.00765915 0.0388225 0.0294318 +0.00952232 0.057476 0.0527668 +-0.0114724 0.180094 -0.0295969 +-0.0324762 0.0778813 -0.0295332 +-0.0515001 0.0465582 0.0417907 +-0.0716564 0.0639047 0.0190638 +-0.00648988 0.10728 0.0440126 +0.0517118 0.048146 0.0235716 +-0.00973422 0.0712867 -0.0371391 +-0.0311873 0.0499402 0.0418672 +-0.0652548 0.0380623 0.0267185 +-0.0353491 0.0346157 0.0221204 +-0.00455763 0.115688 -0.0165869 +-0.0158711 0.0941172 -0.0338261 +-0.0307264 0.0510087 -0.0163552 +-0.0674749 0.0861001 0.0436947 +-0.00549495 0.0456998 0.0471564 +-0.0127624 0.0742651 -0.0384156 +-0.0667813 0.0354951 0.0323861 +-0.0650934 0.040468 0.0377689 +0.00949782 0.11825 0.0371477 +0.042476 0.0986857 0.0211679 +0.0134353 0.0833572 0.0528968 +-0.006265 0.0381462 0.0486516 +0.019505 0.108463 0.0397034 +-0.0531501 0.13113 0.0336749 +-0.0169066 0.174228 -0.0176024 +-0.0877346 0.144562 0.0345528 +-0.0620052 0.131132 -0.00795604 +0.00350354 0.0967589 -0.0284524 +-0.0379926 0.15214 0.00278328 +-0.0250008 0.0678945 0.0436439 +0.013488 0.120719 -0.0120957 +-0.0546814 0.0342953 0.0289953 +-0.0493523 0.128134 -0.0033313 +-0.00536457 0.0387134 0.026395 +-0.0301008 0.162274 -0.0148279 +-0.0520761 0.153139 -0.00390728 +-0.0312974 0.120401 0.0276066 +-0.072708 0.173064 -0.0373345 +-0.0634981 0.0847405 0.0443851 +-0.00748204 0.123738 0.0339317 +0.0398166 0.0726016 0.0329349 +-0.0204571 0.159751 -0.0120682 +-0.0398664 0.104215 -0.0203975 +0.006345 0.0351555 0.0445736 +-0.0295025 0.0974144 0.0445077 +-0.00148646 0.0489421 0.0507365 +-0.0158009 0.0813621 -0.039398 +-0.0661715 0.0383371 0.0290301 +-0.0520592 0.0517918 0.0296489 +0.0132683 0.0765435 -0.0305058 +0.0357248 0.113154 0.00859849 +0.0452751 0.0847797 0.0211588 +0.0408906 0.0942563 -0.00676992 +-0.0621992 0.16466 -0.0525894 +-0.0704991 0.101365 0.0396906 +-0.0514936 0.0959907 0.0439844 +-0.0738976 0.0662178 0.00410027 +-0.0308753 0.104365 -0.0222089 +-0.0454852 0.0411575 0.0440424 +0.0264018 0.0591975 -0.0228202 +-0.0372554 0.154082 -0.00855912 +-0.0104302 0.175693 -0.0238578 +-0.0581296 0.0583212 0.0178996 +-0.0237002 0.0610797 -0.032726 +-0.0366248 0.127943 0.00786237 +-0.00749367 0.0605601 0.0556586 +-0.0317091 0.0749949 -0.0294856 +-0.0617882 0.138121 0.0352393 +-0.0764283 0.117143 0.0518912 +-0.0476607 0.120291 -0.0131944 +-0.0617261 0.158412 -0.0335949 +-0.0794782 0.106106 0.0317497 +-0.00127622 0.127442 0.029403 +-0.0850735 0.0819457 0.0214598 +-0.088151 0.137836 0.0407884 +-0.0622605 0.152178 -0.0225796 +-0.0896207 0.132365 0.0409732 +-0.0392773 0.153597 0.0044688 +-0.0477636 0.0797421 -0.0198355 +0.0475024 0.06248 0.0300852 +0.0137309 0.0344041 -0.00431645 +-0.0864106 0.136323 0.00223079 +-0.0622483 0.0470201 0.00467011 +-0.0218601 0.0893132 0.0539604 +-0.0404866 0.0390699 -0.027317 +-0.0563767 0.0650155 0.0336358 +-0.022785 0.0727991 -0.0382731 +0.00745846 0.0952014 -0.0287983 +-0.0728877 0.143976 -0.0119757 +-0.0485361 0.130681 1.6802e-05 +-0.08227 0.0830732 0.0310042 +-0.0458007 0.0884477 -0.0220772 +-0.0674901 0.102816 0.040307 +-0.0295082 0.0987895 0.0437091 +0.0266247 0.0591987 0.0436528 +-0.0166425 0.0970062 0.0498004 +-0.0754488 0.151352 -0.0128993 +-0.0561187 0.04231 0.0196965 +-0.0125561 0.107483 -0.0218463 +-0.0258638 0.0987461 -0.0241399 +-0.0150968 0.0965608 -0.0303463 +0.0403869 0.0505617 -0.00671315 +-0.0618596 0.135275 0.0369058 +-0.00853806 0.120181 -0.0133625 +0.0152242 0.123558 0.0310525 +-0.0669104 0.112326 -0.011534 +-0.00121369 0.0389243 -0.000247464 +0.0599261 0.0581121 0.0171753 +-0.0104999 0.0842933 0.0575891 +0.0236959 0.120687 0.0298434 +0.0407626 0.105627 0.00616707 +-0.0204813 0.10165 0.0438784 +-0.0497999 0.0884036 -0.0217208 +0.0455191 0.0847794 0.00419259 +-0.0113995 0.128605 0.00179072 +-0.0808762 0.0733317 0.00350919 +-0.0634956 0.0804499 0.0432131 +-0.0737877 0.170302 -0.0290826 +-0.00649113 0.0718493 0.0579775 +-0.0445186 0.0533636 0.0386768 +0.0320623 0.104555 -0.0127247 +-0.0491177 0.138604 0.00740359 +0.0459251 0.0848195 0.0121712 +0.0423718 0.0547731 -0.00653415 +-0.0505603 0.0417939 -0.0107632 +-0.0551112 0.0477166 -0.00539308 +-0.0492183 0.150688 0.0111503 +-0.0868019 0.0886457 0.00149241 +-0.0414982 0.166749 0.00369508 +-0.00533161 0.123249 -0.0106624 +0.00612795 0.107304 -0.0203065 +0.023391 0.0605296 0.0460187 +-0.0778945 0.102117 0.0345146 +-0.0177322 0.108689 -0.0211068 +-0.0341359 0.168185 -0.0152479 +-0.0364811 0.0931828 0.0441998 +-0.0645148 0.15586 0.0250316 +-0.0133496 0.124356 0.0309811 +-0.053528 0.131291 -0.0047694 +0.0236875 0.0373106 0.0299772 +0.00806894 0.0972917 -0.0250353 +0.0518069 0.0518147 -0.00170668 +-0.0580149 0.0675718 0.0363481 +-0.0916942 0.124053 0.00727726 +0.0143227 0.0344255 0.0215932 +-0.0828034 0.0762521 0.011522 +-0.0523769 0.119775 0.034728 +-0.0380638 0.174118 -0.00995608 +-0.0515288 0.0559219 0.0167726 +-0.0665225 0.10009 0.04154 +0.0449219 0.0497223 0.0313654 +-0.00374083 0.069852 -0.0355987 +-0.0448162 0.12956 0.0195798 +0.00318984 0.0852564 -0.0341139 +-0.0901249 0.125637 0.04453 +0.0248625 0.12099 -0.00239034 +-0.0357073 0.03405 0.0117511 +-0.0461509 0.05879 0.0381434 +0.0389649 0.108275 0.00542368 +-0.0857362 0.141867 0.00617644 +-0.0755097 0.135846 0.0506323 +0.0384382 0.0954258 0.0328906 +0.00385238 0.131766 0.0125385 +-0.0277181 0.0382234 0.00237012 +0.0554262 0.0714159 0.00640835 +-0.0707971 0.168292 -0.02371 +-0.0131917 0.169758 -0.0239616 +-0.0344904 0.0661905 0.0406967 +-0.00154364 0.130277 0.00186507 +-0.0647696 0.148087 -0.0261392 +-0.0577571 0.0334518 0.000595927 +-0.0334995 0.0618586 0.0392638 +-0.0657123 0.171986 -0.0448274 +-0.0254896 0.049863 0.0466034 +-0.0207287 0.058287 -0.0332963 +-0.040488 0.088839 0.0428058 +0.00826686 0.0681716 -0.0316571 +-0.0382076 0.0431174 -0.0263315 +-0.0192007 0.0392753 0.0392298 +0.0446778 0.0701888 0.00161208 +-0.0681688 0.0340999 0.0104427 +-0.0891956 0.099693 0.0183885 +0.00250408 0.0856622 0.0573274 +0.00673484 0.0364109 -0.0131882 +-0.0273112 0.0917698 0.0451953 +0.0360152 0.072737 0.038003 +-0.0174841 0.0910963 0.0554741 +-0.0882831 0.114383 0.0443189 +-0.0562701 0.0534697 0.00668599 +0.0184737 0.104403 0.0439338 +0.0591195 0.067343 0.0203999 +-0.0464971 0.107057 0.0400682 +0.0224712 0.125479 0.00796738 +-0.00281596 0.0896133 -0.0355773 +-0.0892259 0.113441 0.0323782 +-0.0532781 0.0476794 0.0246524 +0.00120832 0.0811183 -0.0353756 +-0.0820812 0.0748515 0.0115294 +-0.0344414 0.153644 0.000910386 +-0.0915313 0.147463 0.0171482 +-0.0778811 0.12224 -0.00662917 +0.00275904 0.130985 0.0207146 +0.0333375 0.115599 0.0220283 +-0.0925663 0.116874 0.0234322 +-0.0461657 0.168264 0.000998904 +-0.0608088 0.148246 0.0367611 +-0.0740333 0.13404 0.0510058 +0.046183 0.0806404 0.0141758 +-0.0177485 0.0700027 -0.0382786 +-0.05252 0.0490121 0.0379722 +-0.0142459 0.168321 -0.0155387 +-0.0894247 0.0996886 0.0153976 +-0.0654783 0.0861634 0.0444498 +0.0323217 0.116577 0.0230638 +-0.0676059 0.141897 -0.00935244 +-0.0514978 0.10289 0.0412322 +-0.00575874 0.0741425 -0.036638 +-0.0913439 0.11607 0.03131 +-0.0313824 0.0877015 -0.0265568 +0.0373688 0.102607 -0.00785264 +-0.0106393 0.169838 -0.0190633 +-0.0716387 0.0675256 0.0265031 +-0.0396636 0.0340515 0.0270767 +-0.0779219 0.0717107 0.00150831 +0.0451585 0.0670735 0.000845212 +-0.045692 0.126639 0.0237789 +-0.0914166 0.131046 0.0292353 +-0.0845601 0.0832447 0.0254813 +-0.00465613 0.0540645 -0.0324247 +-0.0573264 0.15429 0.0261567 +-0.0776607 0.0817583 -0.0102119 +-0.0614708 0.165833 -0.0590275 +-0.0866007 0.129822 0.0479412 +-0.0751026 0.155922 -0.00200459 +0.0292911 0.0364248 0.021021 +0.0168648 0.0958851 -0.0235234 +0.0566532 0.0608369 0.0255651 +-0.0447794 0.128887 0.00190497 +-0.024583 0.0635737 0.0419612 +-0.0534745 0.0360014 0.0464895 +-0.0488506 0.0999451 -0.0218934 +0.00224668 0.0740592 -0.0351433 +-0.0223056 0.126998 0.0101726 +-0.0907871 0.14608 0.0151486 +-0.0506704 0.0680761 0.0375114 +-0.0689054 0.113678 -0.00975253 +-0.032497 0.0917926 0.0443017 +0.0282492 0.102359 -0.0164093 +0.0375206 0.0540908 0.0314327 +-0.00566586 0.0555015 -0.0328252 +-0.0896969 0.139298 0.033185 +-0.0707473 0.127025 0.0521985 +-0.0455052 0.162274 0.00622301 +-0.0188243 0.0868874 -0.0382929 +0.00890069 0.0988547 -0.0226736 +0.0103725 0.130878 0.016344 +-0.0568151 0.142191 -0.00256359 +-0.0576833 0.0660478 -0.00944709 +-0.0394154 0.128541 0.00978788 +-0.0112757 0.0392934 0.0501019 +-0.0875442 0.11045 0.0133403 +0.0108543 0.128955 0.0251156 +-0.0306705 0.0692801 -0.0274547 +0.0193368 0.0460939 -0.0219388 +0.0280428 0.0928381 -0.0202889 +0.0101954 0.0879315 -0.0314901 +-0.0425303 0.153621 0.00682011 +0.046342 0.0671736 0.000660587 +0.0133755 0.0508647 -0.0275026 +-0.0815821 0.0803018 0.0303913 +-0.059075 0.137911 -0.00597298 +0.0419587 0.0958192 0.0261617 +0.0444321 0.0482656 0.0306384 +-0.0444939 0.0519693 0.038747 +0.0141421 0.107244 -0.018655 +-0.0258198 0.0880859 -0.0357275 +0.0511643 0.0525875 0.0281258 +-0.0838035 0.0884157 -0.00457068 +-0.0075843 0.111951 -0.0206051 +0.020155 0.0344845 0.00437508 +-0.0141697 0.038751 -0.00641336 +0.0160515 0.039741 -0.0214719 +-0.0627129 0.161593 -0.024579 +-0.0329051 0.0359381 0.0496011 +-0.0738068 0.0892836 -0.0151913 +0.0299737 0.0934986 -0.0189639 +-0.0618436 0.129703 0.0404325 +0.0117043 0.110341 -0.0188996 +0.013386 0.0576661 0.0508541 +-0.0636966 0.117092 0.044917 +-0.0634835 0.0890243 0.0452141 +-0.0874124 0.136542 0.0428952 +-0.0391888 0.168166 -0.0121398 +0.0376532 0.101954 -0.00791483 +-0.0708338 0.143978 -0.0149516 +-0.0135013 0.0687469 0.0541774 +-0.0671166 0.134015 0.0451603 +-0.0645196 0.148285 0.0383203 +-0.0216796 0.18469 -0.0188168 +-0.00148992 0.070365 0.0570874 +-0.0291401 0.0875323 -0.0325902 +0.0251009 0.122815 0.00327552 +-0.0111221 0.0980696 -0.0279124 +-0.0635024 0.0918143 0.0447779 +-0.0887995 0.0901451 0.00746775 +0.0164935 0.0962515 0.0477962 +0.046272 0.0806446 0.00718674 +0.038459 0.094268 -0.00974763 +0.0100793 0.0873522 0.0550703 +0.0183745 0.0874107 0.0495162 +-0.0547819 0.0840722 -0.0215429 +0.0249849 0.0576546 -0.0237943 +0.0262469 0.11849 0.0293617 +0.0187045 0.0462587 0.0425837 +-0.0433933 0.123406 -0.0104784 +-0.0615139 0.0385816 -0.00827445 +-0.0234882 0.104381 0.0428298 +0.0334188 0.115464 0.00204907 +-0.0251305 0.0810774 0.0532367 +-0.0661661 0.0431586 -0.00127362 +-0.0689806 0.138464 -0.0078252 +0.0324954 0.0484967 0.0321634 +-0.0650217 0.154743 0.00396393 +-0.0615004 0.0818818 0.0435978 +0.0289072 0.10744 0.0367037 +-0.0720417 0.156813 -0.0379146 +-0.0232564 0.171248 -0.0127378 +0.0211195 0.109025 -0.0155233 +-0.0668614 0.150018 -0.036632 +0.0204284 0.122662 -0.00423372 +-0.0628194 0.162004 -0.0576316 +-0.0641553 0.168532 -0.0413683 +0.0278158 0.0649933 -0.0208789 +-0.0788364 0.0742331 0.0262211 +0.0527925 0.0505032 0.000257908 +-0.0738772 0.107826 -0.00969763 +-0.0819791 0.08171 0.030761 +-0.0904343 0.136488 0.021207 +-0.0584473 0.145323 0.0330944 +0.00225674 0.0697235 -0.0336823 +-0.0228155 0.081267 -0.0385568 +0.0290261 0.106116 0.036871 +0.0121361 0.105839 -0.0196306 +-0.0365486 0.12125 -0.0102225 +-0.070219 0.146984 -0.026659 +0.00749947 0.122404 0.035106 +-0.0234912 0.107132 0.0414501 +0.0116034 0.0355849 -0.021581 +-0.0896067 0.0902304 0.0134498 +0.0274272 0.0781922 -0.0230908 +-0.0228318 0.114095 -0.016802 +-0.0510675 0.0598803 0.0316706 +0.0525281 0.0730706 0.0188626 +-0.0503624 0.128323 -0.00347306 +-0.0758088 0.0906346 -0.0139136 +0.0428831 0.0902351 0.0261862 +-0.00171604 0.131316 0.0104838 +-0.0845537 0.143232 0.00516668 +0.0183451 0.0551894 -0.0280076 +-0.0914715 0.128331 0.0382421 +-0.0654644 0.148292 0.0388168 +0.025254 0.122206 0.00192061 +0.0102154 0.0850922 -0.0315035 +-0.0913446 0.12833 0.0392393 +-0.0282035 0.125211 0.0168448 +0.0435793 0.0677809 0.0261624 +-0.014506 0.114132 0.0394731 +0.0146525 0.0927004 0.0511905 +-0.0777124 0.0900603 0.0375253 +0.0426104 0.0723991 0.0281081 +-0.0165087 0.10859 0.0417725 +-0.0293809 0.118905 0.0298455 +-0.0747355 0.161794 -0.0126957 +-0.0194977 0.103001 0.0433214 +-0.0774975 0.111156 0.045792 +-0.0235187 0.0551838 0.0425567 +0.00826699 0.0696219 -0.0321852 +-0.0671246 0.042281 0.0101216 +0.0443577 0.0547836 -0.00632411 +-0.0771697 0.152833 -0.00289126 +-0.0455143 0.0335109 0.00302189 +-0.0154906 0.0744572 0.0558178 +0.0390604 0.0575755 -0.00514174 +-0.0300453 0.0861604 -0.0315778 +0.0243112 0.0999667 -0.0198415 +0.0337476 0.0534432 0.0345417 +-0.0207506 0.0685447 -0.0377382 +-0.0883977 0.0983242 0.022387 +-0.043533 0.162269 0.00566221 +-0.0580451 0.047259 0.00941407 +-0.0435244 0.129538 0.0127129 +-0.0129572 0.163516 -0.016687 +-0.018238 0.0985224 -0.0244062 +-0.0468429 0.132502 0.00641278 +-0.012834 0.128656 0.00349339 +-0.00949586 0.0938956 0.0554931 +0.0405174 0.0829825 -0.0107762 +-0.0306755 0.0409906 0.0514223 +-0.0887381 0.139163 0.03848 +-0.0639163 0.105371 -0.0163736 +0.0319159 0.0876168 0.0427503 +-0.0165553 0.128252 0.0064647 +-0.0695817 0.168848 -0.0261289 +-0.0702082 0.141157 0.0460159 +0.0179624 0.0489942 0.0433049 +0.0363477 0.102053 0.0316389 +-0.029898 0.0385093 -0.0112051 +-0.0687619 0.169445 -0.0540038 +-0.0726588 0.143932 -0.0130219 +0.0162319 0.0849386 -0.0291053 +-0.0620358 0.136971 -0.00707833 +0.0166416 0.0740317 0.0522091 +0.0213347 0.0607071 -0.0262571 +-0.0576194 0.143675 -0.00218012 +-0.0913297 0.148826 0.016141 +-0.0751782 0.152724 -0.0149145 +-0.062838 0.153641 -0.0115615 +-0.0579073 0.152669 0.031812 +-0.0401847 0.173392 -0.00391542 +0.0166876 0.0475243 0.0432195 +-0.0393167 0.0432044 -0.0243027 +0.00658649 0.0945677 -0.0301242 +-0.00883076 0.130134 0.0179537 +-0.0248377 0.0867614 -0.0367865 +0.0135609 0.0343729 -0.0176058 +-0.0367327 0.0739624 -0.0182558 +-0.0891756 0.088886 0.0174542 +-0.0869535 0.131154 0.0468504 +0.00298644 0.131511 0.0079308 +-0.0116778 0.0541503 -0.0336719 +-0.00992638 0.128404 -5.81123e-05 +-0.0544374 0.131586 -0.00508481 +-0.0384968 0.104212 0.0394832 +-0.074384 0.0726496 -0.00763941 +-0.0530656 0.150158 -0.00286677 +-0.0166345 0.0465837 -0.0289175 +0.0567453 0.0707667 0.0204115 +0.0381172 0.0659142 -0.0117557 +0.00256341 0.131601 0.00920655 +0.0391019 0.106936 0.00217583 +-0.0480338 0.0685335 0.039429 +-0.0794876 0.0745597 -0.0035364 +-0.0248661 0.101609 -0.0237851 +-0.0647841 0.0448471 0.00913709 +-0.0446647 0.117939 -0.0147658 +-0.0152743 0.180101 -0.0270399 +-0.0859599 0.106341 0.0203569 +0.0111873 0.0893276 -0.0308633 +-0.0922566 0.126816 0.00926569 +-0.0618365 0.166237 -0.0545929 +0.0181719 0.0795251 0.0527143 +-0.0684871 0.120374 0.0527878 +-0.0476953 0.0723623 -0.0159721 +-0.0472614 0.125357 0.0280089 +-0.0494961 0.113894 0.0347794 +-0.0374992 0.0847101 0.0439351 +-0.0404923 0.0620428 0.0412639 +0.0609826 0.0637492 0.0111528 +-0.0849504 0.136625 0.0461206 +0.0337121 0.104741 0.0331059 +-0.00864132 0.0907031 -0.0362798 +0.00988706 0.0373676 0.0450724 +-0.024511 0.0782394 0.0527049 +-0.0716377 0.0368114 0.00909586 +-0.0832904 0.111663 0.0440643 +-0.0156647 0.109623 -0.0201068 +-0.0766606 0.163806 -0.0339802 +0.0165486 0.0631544 0.0502063 +-0.0753023 0.155004 0.00375308 +0.039051 0.0380783 0.00858362 +0.0420573 0.0943632 -0.00379153 +-0.0924935 0.124207 0.0332695 +-0.0745678 0.155931 0.022959 +-0.0348878 0.0336855 0.0122448 +-0.0755817 0.14859 -0.0148673 +-0.0712419 0.0628661 0.0147709 +-0.0722512 0.170824 -0.0490235 +-0.044945 0.146638 -0.00064718 +-0.0327132 0.0383899 -0.00426549 +-0.0656128 0.0626699 -0.00283823 +-0.0615924 0.156857 -0.0275883 +-0.0306139 0.051126 0.0398517 +-0.0552831 0.0478834 0.0286656 +-0.0825962 0.0869865 -0.00556699 +-0.0743429 0.0777095 0.0359578 +-0.00912413 0.125328 0.0309758 +-0.0877256 0.112462 0.0226926 +-0.0624682 0.148372 0.0373168 +-0.0772099 0.0954309 0.0368548 +-0.0657805 0.04031 0.0356744 +0.0390337 0.102562 -0.00454148 +-0.0218167 0.0770677 -0.0388569 +-0.013694 0.165443 -0.0129401 +-0.0242656 0.0588495 -0.0313753 +-0.0201769 0.16108 -0.00474531 +-0.0746468 0.151291 -0.0288803 +-0.0870878 0.147265 0.0324302 +-0.0667973 0.0823343 -0.0181512 +-0.0894818 0.137913 0.0311948 +0.0410937 0.100015 0.0241739 +0.0260496 0.0420955 0.0353242 +-0.0497977 0.134944 0.0250398 +-0.0824554 0.0748386 0.00652396 +-0.0420037 0.0449364 -0.0183222 +-0.00587956 0.107379 -0.0226761 +-0.0298783 0.0719759 -0.0315267 +-0.0649016 0.118019 -0.00923352 +-0.0461849 0.131841 0.0072241 +-0.0384968 0.066293 0.0418062 +-0.0375363 0.128085 0.0104763 +-0.0684218 0.173931 -0.0443685 +-0.0921191 0.131045 0.0262423 +-0.0269088 0.0720784 0.0425891 +-0.0318614 0.109962 -0.0183828 +-0.0576346 0.139576 0.0324737 +-0.0582272 0.151065 0.033498 +-0.0824187 0.0788859 0.0267668 +-0.0386191 0.0474546 -0.0163861 +0.0266281 0.0902434 0.0456585 +-0.00674435 0.0340208 -0.0192827 +0.0167681 0.0348096 -0.0116543 +0.00555478 0.102979 0.0445124 +0.0101351 0.0346886 0.0403762 +-0.0715049 0.147007 0.0421623 +0.0583177 0.0551766 0.00716644 +-0.0774854 0.142838 0.0458543 +-0.0630637 0.0343143 0.0307056 +-0.00979508 0.122843 -0.0101629 +-0.0497184 0.0723081 -0.0156401 +0.0463136 0.0660623 -0.000202599 +-0.0455839 0.0490621 -0.0101677 +-0.0746807 0.110131 0.0436879 +-0.0107636 0.0728162 -0.0377336 +-0.0155087 0.105817 0.0426846 +-0.0419504 0.0338103 -0.0111665 +0.0243299 0.0661738 -0.0239819 +0.0195943 0.041435 -0.0196763 +0.0590873 0.0566489 0.0191831 +-0.0828908 0.120639 -0.00384458 +0.0299951 0.111426 0.0329993 +-0.0685146 0.033856 -0.00470573 +-0.0492135 0.140151 0.00839688 +-0.0489146 0.121146 0.0309679 +-0.00870224 0.0627847 -0.0356447 +-0.086772 0.140601 0.0407491 +-0.0293203 0.0381642 0.0309659 +-0.0330003 0.0497903 -0.0153502 +-0.0425517 0.127843 -0.00110505 +0.0328934 0.0381571 -2.41096e-05 +-0.0525195 0.0426931 0.0456595 +0.021748 0.0349954 0.0225893 +0.00827474 0.123868 -0.00945393 +-0.029563 0.0377844 -0.01791 +-0.0370175 0.163827 -0.00102436 +-0.0664999 0.101466 0.0412188 +0.0064937 0.048929 0.05087 +0.0287604 0.121079 0.0103057 +0.0252285 0.11379 -0.0106368 +-0.0599544 0.0581084 0.014112 +-0.062196 0.154993 0.0273195 +-0.0901963 0.136492 0.0222062 +0.0243441 0.0535282 0.0420575 +-0.0779175 0.0954136 0.0361479 +0.0233436 0.112218 -0.0129499 +-0.0707139 0.0721775 0.0349299 +-0.0640765 0.0658063 0.0313225 +-0.012499 0.112778 0.04085 +0.00184795 0.0345666 0.017115 +-0.0706528 0.0621972 0.0100461 +-0.0885678 0.139164 0.0111992 +-0.0188224 0.0347384 0.0467634 +-0.0867734 0.103584 0.00638913 +0.0585617 0.0692487 0.0195963 +-0.0597919 0.0868174 -0.0202685 +0.00547344 0.0964656 -0.0281399 +0.0206378 0.123881 0.0271063 +-0.0699457 0.0641869 0.00125597 +-0.0625615 0.156051 0.017016 +-0.0417544 0.0339701 -0.0279962 +-0.0649712 0.129694 -0.00875388 +-0.0862104 0.107661 0.0103578 +-0.0932554 0.121405 0.0112928 +-0.0354965 0.0533413 0.0383699 +-0.0288938 0.0821008 0.0456772 +-0.0504899 0.115263 0.0337703 +0.0589314 0.0635744 0.022157 +-0.0186162 0.0391183 0.0377018 +-0.00206852 0.0346139 0.0433223 +-0.0274904 0.108416 0.0392888 +0.0114791 0.0353993 0.0291949 +0.0231094 0.1217 -0.00313916 +-0.0577454 0.0767844 -0.0191155 +-0.00909377 0.175718 -0.0267745 +0.0517415 0.0673755 0.000499527 +-0.0128851 0.164546 -0.0183954 +-0.0673534 0.170861 -0.0570311 +-0.0929853 0.13101 0.0212315 +0.0234643 0.0889079 0.0481435 +-0.088271 0.126713 0.00126975 +-0.0657845 0.0809163 -0.0181411 +-0.0623578 0.139562 0.0361839 +0.0537838 0.0608937 0.0284739 +-0.0417084 0.0681156 -0.0160245 +0.0391698 0.101249 -0.00580082 +0.0314319 0.059214 0.0400505 +-0.0609535 0.135292 0.0364528 +-0.000337321 0.0338454 -0.0216338 +-0.0194278 0.169807 -0.0142312 +-0.0348191 0.0886631 -0.024431 +0.0343015 0.0925788 -0.0159761 +-0.0484766 0.166987 4.90724e-06 +-0.0665297 0.149283 -0.0337543 +-0.0801184 0.0845811 0.0344552 +-0.0728936 0.109289 -0.00959602 +-0.0631344 0.177233 -0.0567528 +-0.0405211 0.16525 0.00379284 +-0.0231365 0.166757 -0.0180638 +0.00733914 0.0539337 -0.0304234 +-0.0448725 0.105637 -0.0203982 +-0.0120489 0.177175 -0.0228491 +-0.0935183 0.117402 0.0193034 +-0.0218743 0.178667 -0.0141782 +0.0371376 0.0728556 -0.0127896 +0.00251304 0.0828672 0.0572444 +-0.0659599 0.128235 -0.00885739 +0.0572369 0.0523165 0.0201815 +0.00234985 0.1177 -0.0168004 +0.0136405 0.0534411 0.0494225 +0.0440001 0.081852 -0.00180195 +-0.0352323 0.0337248 0.00491425 +-0.0852903 0.152844 0.0238067 +-0.0841107 0.0938743 -0.00455389 +-0.0327087 0.156604 0.00170747 +-0.0136478 0.0384232 0.0249573 +0.0203982 0.126887 0.0157559 +-0.0256832 0.0878506 0.050771 +-0.0859766 0.117044 0.000228439 +-0.0275277 0.0660102 0.0388181 +0.0386899 0.0941002 0.0332667 +-0.0072203 0.0994662 -0.0253456 +-0.0387089 0.068094 -0.0155018 +-0.0447414 0.149173 0.00704529 +-0.037003 0.126393 0.0195465 +-0.0691196 0.118603 0.052746 +0.0126876 0.0376693 0.0445214 +0.00235997 0.0496442 -0.0301148 +-0.0852421 0.0804972 0.00551565 +-0.0315104 0.105689 0.0403731 +0.045017 0.0410596 0.00889517 +-0.0645229 0.0335011 -0.00443342 +-0.0237309 0.092173 -0.0338912 +-0.0696939 0.158144 -0.0499358 +-0.00649106 0.116924 0.0392844 +0.0203532 0.0579488 -0.0270415 +0.0454669 0.0761165 0.0216249 +-0.0776599 0.103464 0.0342449 +-0.0732 0.113624 0.050147 +-0.0760799 0.147225 -0.00886324 +0.0300894 0.118197 0.0250757 +0.0134949 0.103141 0.0462202 +-0.0890108 0.142042 0.0341592 +-0.0804084 0.0719394 0.00662383 +-0.0695221 0.143851 -0.0150076 +-0.0608967 0.108264 -0.0166058 +0.024601 0.0954054 -0.0210454 +-0.022965 0.108799 -0.0212234 +-0.0611808 0.060116 0.0210055 +0.0302694 0.104198 -0.014346 +-0.0556068 0.119255 -0.0119973 +0.0521834 0.0709362 0.0231159 +-0.0314011 0.159502 0.00180977 +-0.0393243 0.172677 -0.00992732 +-0.0273795 0.0859709 -0.0356537 +-0.0158141 0.084157 -0.0391976 +-0.0748503 0.150353 0.0378605 +-0.0898842 0.145774 0.0282412 +-0.0830081 0.135296 -0.00152379 +0.00239673 0.0404932 -0.0244502 +0.0427154 0.0482477 0.0316879 +-0.0266384 0.166791 -0.00886205 +0.0140069 0.0433574 0.0445182 +-0.0554949 0.102938 0.0419937 +-0.0535677 0.121244 0.0365515 +-0.091536 0.147482 0.0221363 +-0.0926871 0.118696 0.0103064 +-0.0944412 0.121464 0.0182801 +-0.0562674 0.0521079 0.00770249 +0.0268173 0.0563551 0.0421393 +0.0126767 0.102031 -0.0220157 +-0.0753389 0.14722 -0.0108566 +-0.0856054 0.119006 0.0487694 +-0.0533885 0.122494 -0.00938247 +0.0431078 0.0438619 0.0262578 +-0.0605291 0.0337655 0.01588 +-0.0126252 0.045057 -0.0279244 +-0.045035 0.131096 0.00921538 +-0.0885624 0.127032 0.0457658 +0.040497 0.0569389 0.0314027 +0.0364907 0.111851 0.00455337 +-0.0834729 0.144593 0.00316535 +0.0433385 0.080395 -0.00378638 +-0.0318429 0.0944059 -0.023975 +-0.0484939 0.0747239 0.0424157 +-0.0110217 0.175722 -0.0231509 +0.000137104 0.104495 -0.0221519 +-0.0521218 0.0553341 0.025863 +0.0390662 0.103279 0.0267541 +-0.0365034 0.105591 0.0389607 +0.0135363 0.0347941 0.0319644 +-0.0857201 0.113489 0.0456231 +-0.0225205 0.114038 0.037332 +-0.0424861 0.107068 0.0398635 +-0.0498903 0.161248 0.00701432 +-0.0261589 0.0660162 -0.0325063 +-0.061193 0.167783 -0.0585846 +-0.0153476 0.186173 -0.0245951 +-0.0220085 0.0386415 -0.0116054 +-0.0746541 0.0660086 0.0112783 +-0.0857094 0.107615 0.00636703 +-0.000110081 0.106984 -0.0213197 +-0.0293764 0.039648 0.0531021 +0.028771 0.0495105 -0.0157345 +-0.0168713 0.184583 -0.0192109 +-0.0517714 0.14934 0.0163945 +-0.059475 0.0776368 0.0428908 +-0.0109445 0.0385116 0.00732721 +-0.0636281 0.177112 -0.0556446 +-0.074576 0.0901236 0.0400162 +0.0161292 0.0604031 0.0495734 +0.022982 0.114019 0.0351746 +0.0259399 0.098006 -0.0197455 +-0.0097165 0.0698878 -0.0366754 +-0.069561 0.132665 0.0486469 +-0.0530949 0.0350628 -0.012244 +-0.0680607 0.153823 -0.0498908 +-0.0135439 0.125168 0.0294386 +-0.00340282 0.12679 -0.00651364 +-0.0391911 0.149452 0.000405422 +-0.0764653 0.177807 -0.0519745 +-0.0287178 0.121983 -0.00700749 +-0.0619687 0.155933 0.0215789 +-0.0411389 0.0448599 -0.0213399 +-0.0553956 0.0560936 -0.00341211 +-0.0930152 0.116045 0.0163142 +-0.0538732 0.0634525 0.0320061 +-0.0265911 0.123944 0.0203778 +0.0521155 0.073659 0.0142686 +-0.0733241 0.158247 -0.0319134 +-0.0109096 0.167211 -0.0224966 +-0.0387656 0.0459335 -0.0222844 +-0.0438685 0.104239 -0.0209341 +-0.0404958 0.0464911 0.0408136 +-0.0546568 0.133929 0.033262 +-0.0875345 0.0914089 0.00446769 +0.0213976 0.0505253 -0.0237217 +0.00734362 0.0524803 -0.0298755 +0.0300864 0.0686462 0.0416997 +0.0343005 0.110021 0.028645 +0.0541591 0.0648613 0.0272743 +-0.0267629 0.124714 0.018819 +-0.084006 0.130916 -0.00261237 +-0.032464 0.126152 0.0167563 +0.0411083 0.0816433 -0.00876203 +0.0569799 0.0538694 0.0224893 +-0.0104937 0.0502816 0.0505289 +-0.0809192 0.0899278 0.0336764 +-0.0706578 0.10688 0.0373417 +-0.0634399 0.160562 -0.0195565 +-0.0491873 0.165537 -0.00392571 +-0.0506864 0.137014 0.00141591 +0.0414602 0.0985756 -0.00280597 +-0.0725308 0.161023 -0.0389355 +-0.0593508 0.0339548 0.0212701 +-0.0724089 0.155986 0.0106072 +0.0454654 0.0819915 0.0211715 +-0.0231673 0.169718 -0.0195033 +0.014393 0.129494 0.0163965 +-0.0185111 0.0499058 0.0467842 +-0.0180519 0.128104 0.0102643 +-0.0161793 0.169751 -0.0220442 +0.0178585 0.0957539 -0.0234025 +0.0277062 0.122023 0.0113437 +-0.0356288 0.0533886 -0.010251 +-0.00862621 0.0394649 0.0376552 +-0.0708134 0.0624523 0.0134268 +-0.0338786 0.104305 -0.0212068 +-0.0471517 0.160622 -0.00754132 +-0.0925898 0.124211 0.034269 +-0.0584616 0.0717087 0.039721 +-0.0146591 0.0511639 -0.0318396 +-0.0607891 0.0597911 0.00342454 +0.0222547 0.0819067 -0.0260667 +0.0230644 0.109683 -0.0142211 +-0.0844174 0.110829 0.0409213 +-0.0687289 0.0779401 -0.0161359 +-0.0752643 0.0941545 0.0391883 +-0.0876028 0.105024 0.0163629 +-0.077844 0.114867 -0.00473455 +-0.0325542 0.0341026 -0.0206973 +-0.0589604 0.0340153 0.0230639 +-0.00211759 0.125578 0.0320366 +0.0126989 0.0342761 -0.010037 +0.013184 0.0740073 0.0542309 +-0.0477691 0.130137 0.000614804 +-0.0718381 0.155405 -0.0399144 +-0.0622568 0.148888 -0.00391238 +-0.0159434 0.0385311 0.027994 +0.0373005 0.103362 0.0294506 +-0.02276 0.093942 -0.0316991 +-0.0520122 0.14159 0.0203687 +-0.082015 0.110886 0.0432009 +-0.0745865 0.0720219 0.0307608 +-0.00953059 0.096141 -0.0318625 +-0.0495789 0.046041 -0.00928879 +-0.00423381 0.0382248 0.0479393 +-0.0382126 0.169665 -0.0124129 +0.0318584 0.0981802 0.0392129 +-0.0314643 0.126198 0.0141678 +-0.0622546 0.152185 -0.0195775 +-0.0424907 0.0831788 0.0422885 +-0.0205087 0.18589 -0.0190712 +-0.00369262 0.0366899 0.0482034 +-0.0197122 0.0583602 -0.0339067 +-0.0106092 0.0434444 -0.026227 +0.0245832 0.0562081 -0.0237654 +-0.0891532 0.121635 0.0465292 +-0.0629277 0.161435 -0.0535909 +0.047295 0.0711844 0.0046334 +-0.0417522 0.0782987 -0.0193601 +-0.000496629 0.0828922 0.0574621 +-0.0320822 0.0335961 -0.0276233 +-0.0571072 0.154583 -0.000558004 +0.0584978 0.0634546 0.0229811 +-0.0581231 0.149655 0.0336366 +-0.0619701 0.160031 -0.0245798 +-0.0800787 0.0980611 0.0339873 +-0.0219645 0.0403079 0.0539432 +-0.0699065 0.110817 -0.0106385 +-0.0725366 0.154032 -0.0369032 +-0.0224974 0.0498852 0.046496 +0.00485548 0.0339942 -0.0207847 +-0.0614772 0.0338873 0.0155724 +0.00946392 0.0472926 0.0483305 +-0.019502 0.109944 0.0407387 +-0.0539465 0.0486826 0.012352 +-0.0355502 0.175589 -0.0109785 +-0.0784832 0.155333 0.0128492 +0.0266099 0.122879 0.0123678 +-0.0472066 0.134653 0.0142236 +-0.0078767 0.103255 -0.023393 +-0.0504989 0.101536 0.0421291 +-0.0266231 0.0450263 -0.028096 +-0.0916243 0.131038 0.0282288 +0.0125747 0.0445985 0.0442752 +-0.0196537 0.0480066 -0.0290701 +0.0172432 0.108764 -0.0171862 +-0.0295071 0.0635474 -0.0264265 +-0.0620034 0.040777 0.0431481 +-0.00243593 0.113721 -0.0185019 +-0.0630177 0.135513 -0.00745136 +0.0433285 0.0874073 -0.00479371 +-0.0154888 0.0688106 0.054717 +-0.0882956 0.116235 0.0458325 +-0.0494969 0.0946343 0.044743 +-0.0619637 0.147832 -0.00431835 +-0.092816 0.124239 0.0392636 +-0.0629366 0.147438 -0.0146052 +-0.0782928 0.163856 -0.0319501 +-0.064798 0.174285 -0.0502768 +-0.0112267 0.038611 -0.000125945 +-0.0820175 0.148708 0.00217249 +0.0401192 0.0979552 0.0282751 +-0.0877344 0.132461 0.0447656 +-0.050513 0.143196 0.0143929 +0.0136958 0.0672461 0.0531523 +-0.0608764 0.033777 0.0140174 +0.00552563 0.0813962 0.0561869 +-0.0768476 0.148423 0.040238 +-0.0306152 0.0552238 -0.0173804 +-0.0567885 0.123073 -0.00794084 +-0.0255089 0.119394 0.0308336 +0.0223261 0.116663 0.0342169 +-0.0475261 0.0335634 -0.00837623 +-0.0582936 0.157998 0.00361947 +0.0051303 0.105879 -0.0208781 +-0.00896496 0.0383664 0.01874 +-0.0444005 0.0336982 -0.00787213 +-0.00659427 0.0391448 -0.0257394 +-0.0414965 0.0424145 0.0425934 +-0.0846517 0.135301 0.0472783 +-0.0634992 0.0973124 0.0426152 +-0.0488679 0.135513 0.00441971 +0.037597 0.0883595 -0.0147642 +-0.00186878 0.0388962 0.0287527 +-0.028023 0.0380941 0.0277005 +-0.0474992 0.0718408 0.0410603 +-0.0899231 0.113261 0.00935255 +0.044663 0.094574 0.0141596 +-0.0613242 0.174126 -0.0596453 +0.0131192 0.0913894 0.0524895 +0.0569982 0.0642691 0.00177262 +0.029911 0.120086 0.0121698 +-0.0341992 0.124637 -0.00378015 +-0.0714932 0.121802 0.0535223 +-0.060211 0.120578 -0.00928669 +0.0514409 0.0718132 0.00596213 +-0.0055446 0.0384588 0.0102869 +0.0401137 0.0933035 -0.00871241 +-0.077868 0.12372 -0.00684832 +-0.0438994 0.148485 -0.00356582 +-0.0478093 0.0898718 -0.0219802 +-0.050356 0.0501549 0.0156949 +-0.044116 0.168361 -0.0078879 +0.0274031 0.12156 0.0212208 +-0.0198084 0.119865 -0.0108751 +-0.00808629 0.0392239 0.0361848 +-0.074679 0.177203 -0.0452121 +-0.0717079 0.162415 -0.0429474 +-0.0817249 0.153192 0.027965 +-0.0830361 0.0952877 0.0313817 +-0.0410879 0.12806 0.000341883 +-0.0268762 0.104433 -0.0231038 +-0.028867 0.0620809 -0.0264195 +0.0400441 0.0834026 0.0333734 +0.00148401 0.0427923 0.0460657 +-0.021597 0.124211 0.0236359 +-0.0493581 0.0389276 0.0456407 +-0.0251636 0.119759 -0.0107128 +-0.0305455 0.0776911 -0.0335901 +0.0434944 0.0719976 -0.00179535 +-0.0730641 0.148297 -0.027137 +-0.0403032 0.0335749 -0.0236075 +-0.0838696 0.117633 -0.00194246 +-0.0183958 0.0360837 -0.0274195 +0.0306925 0.119003 0.0181751 +-0.0287719 0.0876257 0.045371 +-0.0150862 0.116786 -0.0157023 +-0.0226105 0.0393974 -0.0288175 +-0.00549593 0.114185 0.0409403 +0.0172148 0.0820814 -0.0286624 +0.0204946 0.0878829 0.0490965 +0.0144377 0.119508 -0.0127985 +0.0084105 0.0389663 -0.0233493 +0.042717 0.0705281 -0.00378792 +-0.0721585 0.0349122 0.00711943 +-0.0700117 0.176166 -0.0463861 +-0.0559881 0.0594067 0.0225062 +-0.0934924 0.121416 0.0122906 +0.0386755 0.101225 -0.00680717 +-0.00386806 0.105937 -0.0224388 +-0.0104995 0.091174 0.0564817 +-0.0012394 0.131315 0.00922853 +-0.0497873 0.0855205 -0.0216876 +-0.0168713 0.104463 -0.0227606 +0.0101956 0.0865002 -0.0314726 +-0.0534959 0.108443 0.038977 +-0.0548951 0.0610993 0.0270145 +-0.0755046 0.137255 0.0498073 +-0.0485754 0.0489523 -0.00913959 +-0.0331264 0.163719 -0.0148995 +-0.00945074 0.100225 0.0471086 +-0.0342862 0.0340473 0.0246456 +-0.0294128 0.0335741 -0.023325 +-0.026685 0.0349864 0.0500364 +-0.061923 0.12237 -0.00883821 +0.0501668 0.0567787 0.0302284 +-0.011856 0.127622 0.0255897 +-0.0429498 0.0338754 -0.00590515 +-0.000398209 0.131157 0.00667235 +-0.0163397 0.112374 -0.0190184 +-0.0651151 0.138224 0.0409979 +0.0355326 0.0544702 -0.00765701 +0.0264528 0.0348348 0.00531809 +-0.0438555 0.101385 -0.0214526 +-0.0234974 0.0498976 0.0468652 +-0.0436816 0.0651561 -0.0146099 +-0.00750789 0.0386054 0.00429878 +-0.0494719 0.0643044 0.0356628 +-0.0857911 0.0847131 0.0234468 +0.0202388 0.0735294 -0.0276011 +-0.0826135 0.153724 0.024657 +0.0377117 0.0799594 -0.0137509 +-0.0629014 0.0384346 0.017326 +-0.0564952 0.112508 0.0359017 +-0.00450514 0.0647631 0.0563697 +0.0228849 0.0849076 0.049031 +-0.0136101 0.17129 -0.0181213 +-0.0659308 0.168025 -0.05906 +0.00616007 0.130231 0.0233995 +0.0200475 0.0355684 0.0326031 +0.0207235 0.0355731 0.0309275 +-0.0914203 0.133738 0.0192152 +-0.0894168 0.0942943 0.0184246 +-0.0486795 0.137079 0.00840446 +-0.0268516 0.0981872 -0.024073 +-0.0296061 0.0499557 0.0431146 +-0.0645444 0.136771 0.0400377 +0.00960463 0.0369501 0.029234 +-0.0077992 0.0826766 -0.0378216 +-0.0705096 0.145613 0.0431794 +0.038042 0.109981 0.0137429 +-0.0323904 0.0346717 0.0421656 +0.0166765 0.12456 0.0286792 +0.0496183 0.0673428 0.0005193 +-0.0256005 0.175695 -0.0107936 +-0.0178219 0.0896296 -0.0373512 +-0.010186 0.0339025 -0.0217341 +-0.047823 0.0912927 -0.0217091 +0.0214379 0.121585 -0.00505488 +-0.063535 0.0741856 0.0400495 +-0.0175015 0.119559 0.0348485 +0.0378045 0.0701003 -0.0128173 +-0.06064 0.140962 -0.00527103 +-0.0745647 0.162191 -0.0132518 +0.0175747 0.0931801 -0.024649 +-0.0413443 0.159411 0.00325579 +-0.0692325 0.161954 -0.0115912 +-0.0598828 0.104039 -0.0184233 +-0.0275135 0.111195 0.0372083 +0.017284 0.0435398 0.0440147 +-0.043478 0.0633766 0.0405033 +0.0234516 0.0389975 0.0363054 +-0.0705331 0.144185 0.0442754 +-0.00248752 0.0897873 0.0564419 +-0.0728742 0.149812 -0.0379734 +0.0462595 0.0834414 0.00917612 +0.00549045 0.0459551 0.048539 +0.038562 0.0568882 0.0311978 +-0.0404973 0.10005 0.041322 +-0.0633155 0.125546 0.0454063 +-0.0425091 0.0520201 0.0393163 +0.00748602 0.041302 0.0454759 +-0.0652746 0.0378654 0.0394026 +-0.0208078 0.081314 -0.039065 +0.00735987 0.131518 0.0123881 +-0.0507686 0.0812185 -0.0210302 +0.0289317 0.0369927 0.000264038 +-0.0895362 0.119938 0.00329723 +0.0339261 0.0564017 0.0366181 +0.0387571 0.0780554 0.0349576 +-0.00249465 0.111426 0.042426 +0.0312166 0.0814571 -0.0197537 +0.00710696 0.112707 -0.0194319 +0.0182552 0.0736117 -0.028651 +-0.0747384 0.149908 -0.0288721 +-0.0142729 0.16729 -0.0212151 +-0.0796554 0.0776931 0.0301108 +-0.0308995 0.0385461 -0.0114399 +-0.0135011 0.162185 -0.0138332 +-0.062358 0.172308 -0.0618736 +-0.0779551 0.131028 -0.00606492 +0.0053093 0.0610791 -0.0314051 +-0.0622044 0.163118 -0.0415929 +-0.0875561 0.0900472 0.00346813 +-0.0693763 0.0627096 0.00438827 +0.0577316 0.0594186 0.0235899 +-0.076964 0.0686471 0.0102516 +-0.068516 0.156454 -0.00263594 +-0.0116226 0.0389602 0.0338935 +-0.053617 0.0500325 0.0119809 +0.0600963 0.059514 0.00816569 +-0.0667396 0.168684 -0.03081 +0.0461456 0.0820314 0.0061875 +-0.0433217 0.0391871 0.0438385 +0.0426589 0.0598822 -0.00401987 +-0.0496436 0.132456 0.0281905 +0.0526393 0.0635217 0.0285801 +0.0276786 0.107363 -0.0137282 +0.0429561 0.100122 0.0141624 +0.0420203 0.102869 0.0111608 +0.0352633 0.113355 0.0198926 +-0.0527821 0.0840792 -0.0215781 +-0.0731314 0.179106 -0.0550054 +-0.0772542 0.116219 0.0507045 +-0.0448961 0.131042 0.0121815 +-0.0659423 0.149401 -0.0328697 +-0.00381497 0.0882175 -0.036071 +-0.00434542 0.130565 0.019581 +0.0267602 0.0365817 2.43485e-05 +0.0169695 0.107204 -0.0175448 +-0.062502 0.0625858 0.0256444 +-0.00350098 0.0815126 0.05747 +0.000251433 0.0712294 -0.0349609 +-0.0113059 0.174226 -0.0217772 +-0.0348319 0.0943645 -0.0236767 +-0.0786972 0.0940445 0.0355566 +0.0177903 0.112808 -0.0155711 +-0.0318198 0.0887354 -0.0251772 +-0.0198038 0.0827175 -0.0390158 +-0.0190696 0.126125 0.000571573 +-0.0793168 0.102079 0.0331119 +0.021502 0.109802 0.0384228 +-0.0927296 0.124224 0.0362665 +-0.0209485 0.0682779 0.0508919 +0.041224 0.101389 -0.000814438 +-0.0468126 0.0898791 -0.022022 +-0.0348994 0.124334 -0.00549397 +-0.0341879 0.127198 0.0131711 +-0.049291 0.131272 -0.000642386 +-0.0359021 0.0337218 0.00658675 +-0.0837824 0.091132 -0.00556609 +-0.0335134 0.101547 0.0420338 +0.0210931 0.0429808 -0.0187308 +0.0424902 0.0555855 0.0321183 +-0.0557185 0.0570014 0.011057 +-0.0194912 0.112675 0.0392933 +-0.025189 0.156576 -0.00769163 +0.0400265 0.10701 0.00816505 +-0.0540901 0.153118 -0.00271435 +-0.00486253 0.101638 -0.0232055 +-0.0436472 0.0338067 0.00674466 +-0.0211436 0.168262 -0.0193322 +-0.0763578 0.141673 -0.00573846 +0.0465682 0.041911 0.0139236 +-0.0534989 0.109802 0.0378386 +-0.0811057 0.0748245 0.0195385 +0.0366496 0.0848209 0.0372394 +0.0520606 0.0608742 0.0294954 +-0.0810176 0.109646 0.0372868 +0.0260062 0.121547 0.0249766 +-0.0134941 0.0773082 0.0569169 +-0.0759274 0.108411 0.0376421 +0.0131577 0.0548631 0.0504935 +-0.0556243 0.0335264 0.0117574 +-0.0445311 0.119183 -0.0140568 +-0.0651138 0.155569 0.0262833 +0.0254608 0.100767 0.0422505 +-0.0354939 0.101471 0.0414493 +-0.0526525 0.152155 0.0150192 +-0.0578899 0.111162 -0.0167182 +-0.050471 0.0571806 0.032579 +-0.0881725 0.103664 0.0113862 +-0.0124346 0.0985527 -0.0264295 +0.0459022 0.0876188 0.00817319 +-0.0598831 0.0337324 0.0142605 +0.0420206 0.092566 0.0274869 +-0.0622887 0.152203 -0.0145776 +-0.0483961 0.150684 0.0105827 +0.00023463 0.0985537 -0.0263753 +-0.0719091 0.107919 -0.010771 +0.0379248 0.0575872 0.0318029 +-0.0684803 0.169194 -0.0285889 +-0.0388617 0.099995 -0.0218283 +-0.0776097 0.0796169 0.0342011 +0.00633113 0.0553726 -0.0306713 +0.0163088 0.048977 0.0444188 +-0.0838449 0.0817176 0.00149669 +-0.0216263 0.0341828 -0.0204844 +-0.0187634 0.0728738 -0.0388715 +-0.0626025 0.0388129 0.0247151 +-0.0373475 0.0347779 0.0107604 +-0.00558664 0.0376733 -0.0253626 +0.0599615 0.0678313 0.0171716 +-0.0295401 0.0904607 -0.0275932 +0.0284451 0.114053 0.0325229 +0.0418253 0.0830818 -0.00779351 +0.00746772 0.0343056 0.0166757 +-0.0865698 0.0833108 0.0104907 +-0.0729271 0.151083 0.037025 +-0.0781924 0.155673 0.0158655 +-0.0788514 0.116332 -0.0048797 +0.00512317 0.107303 -0.0203142 +-0.0103272 0.0383585 0.0166568 +-0.0348025 0.040194 -0.0297923 +-0.000491404 0.0814979 0.0573536 +-0.0290382 0.16386 -0.00530596 +-0.0694805 0.121794 0.053195 +-0.0704544 0.150585 -0.0434585 +-0.0639717 0.0459278 0.00771742 +-0.03056 0.124009 -0.00164624 +0.0144021 0.0780973 0.054252 +-0.0808546 0.140749 0.0461596 +0.0103353 0.0581557 -0.0299403 +-0.00949578 0.084298 0.0576062 +-0.0249013 0.0382346 0.0282196 +-0.0316389 0.0409999 0.051064 +0.0387381 0.0381712 0.0065938 +-0.0580729 0.0345066 0.0402882 +-0.0663198 0.150167 -0.0356652 +-0.064292 0.168172 -0.0605879 +-0.0314424 0.0679449 -0.0244554 +0.0603913 0.0595429 0.0161691 +0.0102649 0.129908 0.00205228 +-0.0440813 0.0336392 -0.0114358 +0.0309277 0.0497348 -0.00874 +-0.0267697 0.0750695 0.0452054 +-0.0791015 0.170034 -0.0382691 +-0.0864283 0.0954013 0.00141653 +0.00852849 0.0646614 0.0551736 +0.0473561 0.0503594 -0.00438005 +0.039601 0.107391 0.00564087 +-0.0861267 0.0833147 0.0194823 +-0.0786738 0.10815 0.0335843 +0.043481 0.0832455 0.0271768 +0.0281352 0.0915776 0.0443357 +-0.0298099 0.0677811 -0.0284707 +-0.0229012 0.115018 -0.0157633 +-0.0270064 0.0808968 0.0494715 +0.0404227 0.0885874 -0.0107894 +-0.087216 0.0937177 0.0257149 +-0.0690509 0.0654544 -0.0025414 +-0.0695527 0.04187 0.00402445 +0.00429234 0.0668529 -0.0329804 +-0.046755 0.0336866 -0.0157033 +0.0576125 0.0580597 0.0234109 +-0.000994561 0.129288 -0.0011666 +0.0454245 0.0904044 0.0131633 +-0.0438081 0.0899046 -0.0222231 +0.0199328 0.127154 0.0141603 +0.0114882 0.0963254 0.0495798 +0.0218142 0.117368 -0.0105004 +-0.0438465 0.0359346 0.00839642 +-0.0714426 0.0632696 0.00712846 +-0.0759079 0.150006 -0.00888842 +-0.06794 0.126772 -0.00890268 +-0.0343726 0.127227 0.0072164 +0.0578211 0.0537494 0.00717652 +-0.0483087 0.135537 0.00740851 +-0.0568342 0.0666429 0.0356476 +0.0481112 0.0431114 0.00725444 +-0.0425043 0.117982 0.0312159 +0.0144699 0.0976455 0.0479677 +0.0563061 0.0508424 0.00620646 +-0.0300578 0.163895 -0.00500569 +0.0102245 0.0823018 -0.0318649 +0.0598453 0.0608733 0.0191849 +-0.0620027 0.172528 -0.0545971 +-0.0197571 0.0971344 0.046022 +-0.0611783 0.167226 -0.0592729 +-0.00613038 0.0999315 0.0488982 +0.0488619 0.047436 -0.000620948 +-0.0208111 0.118967 -0.0119295 +0.00352005 0.0786345 0.0561775 +-0.071061 0.15959 -0.0439233 +-0.0765957 0.161076 -0.0289322 +0.0259255 0.123359 0.0149571 +-0.0746094 0.14858 -0.0188631 +0.0569296 0.058069 0.024171 +-0.0338241 0.152569 -0.00489392 +-0.0455023 0.0615609 0.0388319 +-0.0654625 0.143948 0.0405383 +-0.0560519 0.0345032 0.0407254 +-0.0709341 0.162789 -0.0122264 +-0.078067 0.144487 -0.00381208 +-0.094099 0.121442 0.0152795 +-0.00327736 0.0410332 0.0476549 +-0.0500433 0.165539 -0.00195268 +-0.0774288 0.0712256 0.0238415 +-0.00725841 0.0408714 0.048906 +-0.0833667 0.142023 0.0429747 +-0.0692361 0.153199 0.0337122 +-0.0360543 0.0398378 -0.0294769 +-0.0403231 0.0344611 0.0371557 +-0.0207576 0.069984 -0.0381379 +0.0122374 0.0737871 -0.031159 +-0.0241603 0.0665253 0.044272 +0.0399369 0.0860773 0.0331939 +-0.0809073 0.123633 -0.00507492 +-0.00964827 0.166616 -0.0197629 +-0.00664529 0.1307 0.0129838 +-0.0209361 0.0381808 0.0128466 +-0.0538563 0.0970443 -0.0219059 +-0.0662078 0.0723697 0.0374848 +-0.0398566 0.099981 -0.0216989 +-0.0494761 0.0600183 0.034326 +-0.0157667 0.0742966 -0.0389627 +-0.0875711 0.0977385 0.0245274 +-0.0529166 0.0566407 0.0191372 +0.000745542 0.0955759 -0.0312149 +-0.0688619 0.10089 -0.0150284 +-0.0130273 0.178658 -0.0225027 +-0.00548585 0.118301 0.0387556 +-0.063934 0.169417 -0.04458 +0.00224686 0.131192 0.0191047 +-0.0526917 0.0662141 -0.0112413 +0.0316126 0.104759 0.0353509 +0.0222548 0.0776918 -0.0264111 +-0.0685061 0.105552 0.0384458 +-0.0576201 0.135609 -0.00546838 +-0.00760577 0.128788 -0.000526473 +-0.0262755 0.0383516 -0.00662702 +0.0096904 0.0344726 -0.0051827 +0.0183649 0.0355244 -0.0106716 +-0.0892922 0.0996701 0.0134013 +-0.0748707 0.116421 -0.00675171 +-0.054019 0.0333099 0.015848 +-0.0927402 0.125562 0.0292626 +-0.00859312 0.0384098 0.0205847 +-0.0574617 0.0399955 0.0466824 +-0.0890962 0.0996533 0.0114017 +-0.0393675 0.120945 -0.0119262 +-0.0498057 0.144755 0.010389 +-0.0800056 0.108388 0.0313605 +-0.0694061 0.153071 -0.0482738 +-0.0529002 0.0701503 0.0387731 +-0.00979568 0.178776 -0.0277733 +-0.0749384 0.177982 -0.0467773 +-0.080224 0.0913049 0.0343483 +0.0274404 0.0399547 -0.00370609 +0.0064659 0.11274 0.0407332 +-0.0218179 0.0350986 -0.0195001 +-0.0723907 0.151114 -0.0412874 +0.00590733 0.0340449 -0.020637 +0.0460177 0.0800284 0.0189631 +-0.0576496 0.0629466 -0.00612077 +-0.0519433 0.0503866 0.0326949 +0.0377573 0.0757194 -0.0117756 +0.0434133 0.0930689 -0.00182579 +-0.0445007 0.165214 0.00483168 +-0.0196553 0.063928 0.0497256 +-0.0766812 0.154876 -0.00631355 +-0.0344859 0.0335245 -0.0299041 +0.0132509 0.0349689 -0.0195966 +-0.0264467 0.0459901 0.0505652 +-0.00131456 0.122836 -0.0102349 +0.0122169 0.129551 0.00276868 +-0.0137494 0.0383366 0.00873382 +-0.0445005 0.116602 0.0322264 +-0.0346258 0.0408721 -0.0296689 +-0.0706305 0.0401508 0.00122659 +-0.0765009 0.0716493 0.0271716 +-0.0708234 0.155869 0.0257344 +-0.0311277 0.0566897 -0.0153882 +-0.0896944 0.133694 0.0395953 +0.000231967 0.0783204 -0.0356621 +0.0338144 0.115724 0.00791606 +-0.0300912 0.15662 0.000215848 +0.0464982 0.0677769 0.0257597 +-0.0214151 0.0595466 0.0459898 +-0.0572298 0.0696188 0.0382761 +0.0366123 0.064635 0.0370437 +-0.0264937 0.0973851 0.0437224 +0.0404949 0.0513767 0.0324659 +-0.0350844 0.107815 -0.0201106 +-0.0205025 0.0486482 0.0489372 +-0.0610181 0.13697 -0.00676267 +-0.0906044 0.135075 0.015212 +-0.0194066 0.174211 -0.0159442 +-0.0394983 0.0719214 0.0419294 +-0.0883414 0.120307 0.04718 +-0.00748928 0.0978336 0.0520944 +-0.0846404 0.107661 0.0233457 +-0.0214945 0.10716 0.0418366 +0.0181073 0.0398088 -0.0196993 +0.0190777 0.0384168 -0.0157069 +-0.0636502 0.159498 -0.051954 +0.0283128 0.0754542 0.0444772 +-0.054074 0.15164 -0.0027148 +-0.083614 0.154208 0.0184012 +-0.056485 0.0343785 0.0390076 +0.0337482 0.102096 0.0349353 +-0.0782584 0.1764 -0.0490322 +0.0136057 0.0460076 0.0440344 +-0.00550326 0.0801395 0.0576107 +0.0334132 0.0849144 0.041374 +-0.0113988 0.126257 0.0287047 +-0.0655972 0.169628 -0.0389928 +-0.0832568 0.154212 0.0141255 +-0.0820934 0.0898659 0.0320222 +-0.067283 0.17966 -0.0595334 +-0.062529 0.150617 -0.0195776 +-0.0299377 0.0847457 -0.0326018 +0.0607552 0.0664989 0.0131533 +-0.0228597 0.101618 -0.023963 +-0.0618668 0.165619 -0.0600772 +-0.081854 0.0937329 -0.00756112 +-0.0679516 0.170855 -0.0560296 +-0.0295118 0.108456 0.0388793 +0.0482509 0.0539799 0.0309574 +0.00823122 0.079605 -0.0335706 +-0.0526044 0.041455 0.0460966 +-0.0496802 0.165544 -0.00294037 +-0.0910152 0.129688 0.0372352 +-0.0404973 0.0972715 0.0419896 +0.00850648 0.0772375 0.0559821 +-0.0717922 0.153989 -0.0428988 +-0.0507334 0.147965 -0.00270623 +0.0127323 0.0860509 0.0536553 +0.0565626 0.0508082 0.0192018 +-0.047499 0.10845 0.0392246 +-0.00917487 0.0875708 -0.0370938 +-0.0783316 0.0788746 0.032897 +-0.0896787 0.135012 0.00721892 +0.00550113 0.0883518 0.0561015 +-0.0423419 0.0335706 -0.0240051 +0.0405574 0.104219 0.0191648 +0.00286437 0.130486 0.00148286 +-0.0643911 0.133918 0.0402655 +-0.0620868 0.139878 -0.00655442 +-0.0557051 0.12209 -0.00891575 +0.0589396 0.0566475 0.0201757 +0.0386112 0.0603508 -0.0077511 +-0.0806595 0.0855046 -0.00754297 +-0.0718229 0.0965348 -0.0152102 +0.0459498 0.0806271 0.0191734 +-0.0515557 0.141366 0.000880581 +-0.0859779 0.0910726 0.0273961 +-0.0194809 0.0757644 0.0547346 +-0.0526104 0.0335154 0.00699108 +-0.080479 0.155159 0.0180021 +-0.0500595 0.117739 -0.014504 +-0.0638596 0.0939187 -0.018635 +-0.0469776 0.034208 0.0289371 +0.0315208 0.0994913 0.038731 +0.0444927 0.0610909 0.0304355 +0.0212529 0.1262 0.0189269 +-0.0254692 0.0509386 0.0434079 +0.0476579 0.0715472 0.019969 +0.022698 0.118017 -0.00920048 +-0.0384222 0.125448 0.0219859 +-0.038314 0.170034 -0.0122167 +-0.0530543 0.14469 0.0223994 +-0.00492317 0.0389099 -0.00470281 +0.0373499 0.0533605 -0.00643641 +-0.0696712 0.171569 -0.0347594 +0.0436954 0.0959268 0.0201595 +0.0285253 0.065965 0.0429423 +-0.0466394 0.0345455 0.0392313 +0.0412883 0.0886287 0.0299331 +-0.0251747 0.0383636 -0.0175696 +-0.0674763 0.168038 -0.0560148 +-0.0634115 0.166723 -0.0396505 +-0.0443984 0.0671335 0.0404051 +-0.0524987 0.100127 0.0423619 +-0.0837023 0.110333 0.0361338 +-0.0757541 0.0819089 0.037226 +-0.0475033 0.0973719 0.0436212 +-0.0418104 0.0899475 -0.0227382 +-0.0308563 0.174216 -0.00433975 +-0.00771604 0.130016 0.0212618 +-0.0691125 0.156051 0.011784 +-0.049655 0.0664173 -0.0130805 +0.0212145 0.0401172 -0.0107008 +-0.0418108 0.128972 0.0103834 +-0.0623408 0.164683 -0.0455908 +-0.0776167 0.145877 -0.00384676 +0.0294578 0.079544 0.0444105 +-0.052057 0.15088 0.0153954 +0.0551015 0.0521065 0.00221795 +-0.0568769 0.116868 -0.0135067 +-0.0856284 0.151402 0.00824006 +-0.0512523 0.116429 -0.0151143 +-0.0568623 0.0941345 -0.0215512 +-0.0153943 0.099814 0.0443638 +0.0368805 0.101462 -0.00941022 +-0.0293998 0.0355494 -0.0195486 +-0.040872 0.105663 -0.0204372 +-0.0279821 0.0821961 0.0475971 +-0.0106963 0.176084 -0.0292514 +-0.00933224 0.038323 0.0168951 +-0.0792032 0.10313 -0.00756064 +-0.0540718 0.118333 0.0357708 +0.00450074 0.0938217 0.0540732 +-0.0746595 0.15617 0.0170913 +-0.0708414 0.0994113 -0.0147342 +-0.0516111 0.0530832 -0.00753985 +-0.0486234 0.0532712 -0.0094518 +-0.031704 0.172718 -0.00384226 +-0.00272576 0.130091 0.00149765 +-0.092388 0.120024 0.00928585 +-0.037643 0.153612 0.00331291 +0.0356049 0.0577583 0.0355158 +-0.0668801 0.103821 -0.0153002 +0.0379456 0.10977 0.0171703 +0.0191769 0.0959952 -0.0230407 +0.0391807 0.0658814 0.0336832 +-0.0690863 0.0666121 0.0278101 +-0.089106 0.114375 0.0298659 +-0.0216155 0.0436703 -0.028439 +-0.0266188 0.0490904 -0.0254391 +0.000108091 0.0340814 -0.0198793 +-0.0171613 0.159788 -0.00903074 +0.041574 0.0397142 0.0168995 +0.019656 0.0347604 0.000281692 +0.00764804 0.128583 -0.00254334 +-0.0553782 0.151032 0.0287496 +-0.0528315 0.0558373 -0.00742005 +0.0115037 0.109883 0.0397133 +0.03545 0.105907 -0.00815474 +-0.0629114 0.115341 -0.0117985 +-0.0234208 0.172725 -0.0129655 +-0.0890673 0.101028 0.0173829 +0.0236359 0.056409 0.0445932 +-0.0187325 0.0374026 0.0529482 +-0.0394792 0.105608 0.0388858 +0.0151319 0.0603601 0.0498992 +-0.080949 0.137599 -0.00280806 +-0.0546196 0.0345652 0.0426785 +-0.0465281 0.033544 -0.0026564 +0.0395657 0.0998694 -0.00580754 +0.0101223 0.108705 -0.0195083 +-0.0104988 0.09255 0.056119 +0.0330296 0.116688 0.0147767 +-0.0910722 0.141959 0.0151878 +-0.00849613 0.0703395 0.0565554 +-0.0574961 0.0904385 0.0452768 +-0.0530142 0.0490552 0.0256583 +-0.0294931 0.0717523 0.039896 +-0.0311676 0.0348856 0.0474529 +-0.00876366 0.0347363 0.0436201 +-0.0666703 0.0612745 0.0188657 +0.0173575 0.0940342 0.0480767 +0.0284806 0.111435 0.0343318 +-0.0468308 0.0941893 -0.021914 +-0.0265985 0.0562164 -0.027412 +-0.0871843 0.135176 0.0441499 +-0.063207 0.06374 0.0280276 +-0.0345021 0.0647803 0.0405279 +0.0597837 0.0567045 0.0121686 +-0.0474843 0.0818872 0.0439119 +-0.0589237 0.11399 -0.014753 +-0.0490056 0.122549 0.0307687 +0.0548584 0.0611516 -0.00113589 +-0.0458004 0.0353434 -0.021332 +0.00134052 0.0539375 -0.0306386 +-0.0278278 0.177181 -0.00696301 +-0.0427537 0.0783105 -0.0194623 +0.00651372 0.089712 0.0551929 +-0.0494951 0.0819134 0.044146 +0.0305588 0.055351 -0.0157687 +0.0297469 0.0929269 0.0431563 +0.0125099 0.0519837 0.0495237 +0.0459653 0.0806289 0.018177 +-0.053548 0.149321 0.0244145 +-0.0317948 0.0651814 -0.020436 +-0.019834 0.0868717 -0.0379507 +-0.0119886 0.038466 0.00715809 +-0.0770198 0.170132 -0.03325 +-0.0269539 0.17866 -0.00745161 +-0.0756616 0.0695139 0.0239361 +-0.0474944 0.116586 0.0319739 +-0.0671319 0.0355924 0.0145398 +-0.0783661 0.108548 -0.00557568 +-0.0284012 0.0860445 -0.0346283 +0.0257301 0.0379057 0.0280361 +0.00740689 0.0389878 -0.0235836 +-0.0629696 0.131105 0.0405653 +-0.0380606 0.157756 -0.011216 +-0.0361107 0.0459963 0.0412564 +-0.053455 0.0625326 0.0304805 +-0.0731839 0.178324 -0.0475338 +0.0137018 0.0888713 -0.0301465 +-0.0894038 0.140678 0.0331776 +-0.0114925 0.06602 0.0547394 +-0.0853984 0.0872002 -0.00151975 +-0.00957697 0.128995 0.00181181 +0.0571986 0.0536922 0.00517882 +0.0181761 0.0974249 -0.0228373 +0.0414526 0.0425673 -0.000513932 +-0.0423634 0.121318 -0.0123099 +-0.0854479 0.0898939 -0.00155092 +-0.0136017 0.0392183 -0.0267222 +-0.0353577 0.174409 -0.00212011 +-0.0930586 0.122743 0.0102788 +0.0208421 0.0882147 -0.0254487 +0.000267595 0.0697483 -0.0342392 +0.0443612 0.0458824 -0.00271937 +-0.0794062 0.147442 0.0402641 +0.0285362 0.120755 0.0202147 +-0.0354498 0.0346389 0.0415402 +0.0189212 0.0875932 -0.0268145 +-0.0326685 0.0478014 -0.0229356 +0.0213046 0.0374522 0.0382518 +0.0119628 0.111848 -0.018535 +-0.0754368 0.114522 0.050709 +-0.0575342 0.0415089 -0.00843308 +-0.0289002 0.0348381 0.0445217 +-0.0558188 0.0336396 0.0205147 +-0.0294901 0.0946648 0.0450535 +0.0140142 0.0519753 0.0481823 +-0.0499383 0.162625 -0.0047964 +-0.0285131 0.111188 0.0369648 +-0.0777024 0.176292 -0.0501047 +-0.0458377 0.0970756 -0.021885 +-0.0647866 0.167644 -0.0344082 +-0.08472 0.111015 0.033569 +-0.0624074 0.1491 -0.0095736 +0.0455563 0.078849 0.0217954 +0.0386173 0.0673644 -0.0117551 +-0.0516941 0.147804 0.0164166 +-0.0638593 0.0953482 -0.0183667 +-0.0887889 0.117194 0.003272 +-0.0667452 0.0342007 0.0124321 +-0.0921816 0.132336 0.0152245 +-0.0790475 0.168047 -0.0349702 +-0.0445079 0.0424992 0.043443 +-0.0914924 0.12135 0.00727423 +0.00205109 0.0347195 0.0440743 +-0.0757523 0.0687815 0.0210323 +0.0254197 0.0394349 0.0320923 +0.0445209 0.095967 0.011159 +0.00418461 0.0908826 -0.0329329 +-0.0447434 0.0753343 -0.0181391 +0.0465277 0.0497043 0.0301725 +-0.0231678 0.124994 -0.000333927 +-0.0261386 0.0359205 -0.0192491 +0.000314733 0.0597904 -0.0332055 +-0.0664067 0.0336797 0.00582425 +-0.0179785 0.068344 0.053543 +0.0128834 0.035495 0.00385056 +-0.064012 0.0432207 0.0306772 +0.0356112 0.0942094 0.0375896 +0.0433586 0.0589158 -0.00469925 +-0.0741431 0.153026 0.0335308 +-0.0366764 0.0421455 0.0447176 +-0.0616357 0.158429 -0.0245888 +-0.0777899 0.164478 -0.0251991 +-0.0774203 0.177255 -0.0472003 +-0.0723466 0.0663158 0.0221054 +-0.00945876 0.0366145 -0.0165831 +-0.00782909 0.0896438 -0.0364286 +-0.0483458 0.0338972 -0.0143683 +-0.0548931 0.111218 -0.0174922 +0.0263272 0.0545944 -0.0208638 +-0.078467 0.147461 0.0407301 +0.0472196 0.0430325 0.00527833 +0.0313294 0.118714 0.0127065 +-0.00880796 0.0868775 -0.037347 +-0.054028 0.0344996 0.0411656 +-0.00639115 0.121199 -0.012466 +0.0300864 0.0564003 0.0398351 +-0.0790124 0.0782686 0.0315155 +-0.0134683 0.0964232 0.0523159 +-0.0763221 0.159003 -0.0110053 +-0.0600876 0.0367271 0.0456071 +0.0364957 0.049851 0.0316154 +0.00849848 0.0402756 0.0453316 +0.0205837 0.0754832 0.0508919 +-0.071014 0.148895 -0.037822 +0.0170761 0.115474 -0.0144429 +-0.063767 0.0615586 0.0227478 +0.0437965 0.0987467 0.00816432 +-0.0513326 0.0542594 0.0137993 +-0.0414552 0.0341096 -0.00949275 +0.0395669 0.101281 -0.00480928 +-0.0918243 0.128307 0.0322434 +-0.0474749 0.0945717 0.0440635 +-0.0704486 0.16924 -0.0264473 +0.027192 0.101376 -0.017349 +-0.0895884 0.114751 0.0258504 +-0.0713206 0.156784 -0.042915 +0.0384501 0.0914717 0.0346309 +0.0214747 0.0996539 -0.0214946 +-0.0106582 0.0527176 -0.0332954 +0.00773558 0.128847 0.0268569 +0.0202904 0.0912514 -0.02462 +0.00332905 0.0553943 -0.0309954 +-0.0921247 0.116117 0.0353113 +-0.0146765 0.0526113 -0.0325234 +-0.0657759 0.0410192 0.0130518 +0.0587274 0.0538199 0.013179 +0.0291394 0.102042 -0.0160578 +-0.0701142 0.0625797 0.0062174 +0.0457389 0.0876049 0.0111625 +0.00224905 0.118538 -0.0156887 +0.0520156 0.0596733 -0.00368903 +-0.0891532 0.136419 0.0102028 +-0.0400348 0.0344619 0.0337052 +-0.0461887 0.0335082 0.00469546 +-0.0923435 0.115998 0.0113188 +-0.00713141 0.127357 0.0287426 +0.0252624 0.0747714 -0.0251152 +-0.0453044 0.0587827 0.038737 +0.03635 0.0368836 0.00917982 +-0.0527446 0.0753599 -0.0182797 +-0.0728584 0.132623 0.0509226 +-0.00672844 0.0698676 -0.0361675 +0.0413912 0.0459759 -0.00421898 +-0.0201655 0.0348026 0.0446658 +-0.0641545 0.0391804 0.0263583 +-0.00246627 0.111608 -0.0202454 +-0.0134033 0.110892 -0.0194483 +0.043074 0.0401669 0.0073914 +0.0192967 0.0693907 -0.0288221 +-0.0619039 0.16157 -0.0305885 +0.00333358 0.0341967 0.0104872 +0.0421258 0.100042 0.000179811 +-0.0386776 0.11516 -0.0158482 +-0.00807178 0.0386982 0.0276584 +-0.0756134 0.163772 -0.0350068 +-0.0672387 0.155112 0.00519073 +0.0276118 0.053509 0.0397341 +-0.0779406 0.158305 -0.0189233 +-0.00470743 0.0627772 -0.0352137 +0.0325643 0.0981766 0.0384761 +0.0296733 0.0481683 -0.00874324 +0.0113105 0.059545 -0.0296135 +-0.0653574 0.0733073 0.0386226 +-0.0120884 0.101067 0.0439606 +-0.0268179 0.0735627 0.0438663 +-0.0513902 0.0530791 0.0216216 +-0.0678614 0.042287 0.00944731 +-0.0899071 0.133806 0.0352156 +-0.0122404 0.0385117 0.0269697 +-0.0719375 0.16298 -0.0125698 +0.0473212 0.0533258 -0.00537345 +-0.030503 0.0588732 0.0373493 +-0.0905557 0.120241 0.0451196 +0.0219406 0.0388423 0.0393076 +-0.0672891 0.178209 -0.0595336 +0.0302182 0.0535528 0.0382346 +-0.0815406 0.110006 0.0333062 +-0.0477684 0.0811966 -0.0205178 +-0.048671 0.138621 0.0113976 +-0.0562999 0.0506286 -0.00237306 +-0.0854189 0.0791501 0.00750351 +0.000105856 0.117482 -0.0165473 +-0.0624071 0.149633 -0.00268499 +-0.0682914 0.172271 -0.0560251 +-0.0642448 0.0333797 -0.00245942 +0.0203456 0.053671 -0.0267089 +-0.0711203 0.163576 -0.0137477 +-0.0126641 0.0511309 -0.0317686 +-0.066211 0.180426 -0.0565833 +0.0266688 0.0892152 -0.0224539 +0.01736 0.128384 0.0132094 +-0.0541813 0.154195 0.0142529 +-0.0799749 0.0710714 0.0163832 +-0.0379044 0.0336424 -0.0213286 +-0.0747588 0.0669346 0.0175421 +-0.0221189 0.12668 0.005878 +-0.0623544 0.152149 -0.0255836 +0.0137867 0.0377633 0.0443361 +0.0469104 0.0589185 -0.00506663 +-0.0188119 0.0964492 -0.0282644 +-0.000384494 0.130522 0.00237337 +-0.0647338 0.0418755 0.0296857 +-0.0418518 0.0999485 -0.0214177 +-0.0135206 0.0432479 0.0507363 +0.0314548 0.113206 0.0298812 +0.0211096 0.0343656 0.00467028 +0.0493524 0.0516707 -0.00371978 +0.0324504 0.0916248 0.0417895 +-0.0405477 0.118695 -0.0135582 +-0.0421609 0.128746 0.00435225 +0.00852878 0.034888 0.0362651 +-0.0599768 0.12527 -0.00809043 +-0.0624255 0.16468 -0.0465913 +0.0305387 0.114047 0.0302625 +-0.0209297 0.158088 -0.00822134 +-0.00449554 0.0633716 0.0561592 +0.00751849 0.0440876 0.0454461 +-0.0617319 0.160008 -0.0275856 +-0.00111302 0.130629 0.0207594 +-0.000792652 0.0894877 -0.0349748 +-0.0534886 0.0862338 0.0454573 +0.0102426 0.0752832 -0.032327 +-0.0866178 0.151117 0.0269024 +0.00586712 0.0991316 -0.0229749 +-0.018487 0.0772258 0.0557066 +-0.0220963 0.0623062 0.0451655 +-0.0263156 0.124827 0.00142734 +0.00449781 0.0519669 0.0532713 +-0.0318681 0.105727 -0.021166 +-0.034171 0.0822565 -0.0245355 +-0.0160192 0.104518 -0.0227486 +-0.0336086 0.0394857 -0.0301589 +0.0179261 0.0900567 0.048881 +0.028994 0.0915879 0.0438177 +0.0419459 0.0625408 -0.0027477 +-0.0623435 0.161536 -0.0425937 +0.0521127 0.0595383 0.0295528 +0.00603967 0.0344425 -0.0152712 +-0.0200036 0.0384998 -0.0166705 +0.0335055 0.0549395 0.0359782 +0.0413899 0.0475369 -0.00516876 +0.0571049 0.0594437 0.0244408 +-0.0642323 0.124186 0.0475964 +-0.0104933 0.0952299 0.0545267 +0.0183283 0.0593891 -0.0275077 +0.0556724 0.0698728 0.00398853 +0.02895 0.086199 0.0437135 +-0.00575467 0.1008 0.0460186 +-0.0117555 0.0969094 -0.0306933 +-0.0570352 0.129621 -0.00626418 +-0.06396 0.034704 0.0249317 +-0.0269668 0.0674701 -0.0325423 +0.00372222 0.0941665 -0.0317421 +-0.0708312 0.0951391 -0.0158707 +0.0351494 0.0633173 0.038442 +0.0303372 0.119206 0.0194646 +-0.0174811 0.118153 0.0357243 +-0.0928105 0.116053 0.0203106 +-0.012498 0.078722 0.0572931 +0.0102589 0.100444 -0.0223447 +0.0311369 0.0982118 0.0399163 +-0.0870966 0.0995146 0.0044219 +0.0372771 0.100696 0.0312566 +-0.0464652 0.16842 -0.00496016 +-0.0340766 0.172586 -0.0145127 +-0.0632966 0.144361 -0.00960502 +-0.00396533 0.128634 -0.00247998 +-0.0810179 0.0964125 -0.00756981 +-0.0296304 0.159454 -0.0131553 +0.0323433 0.0592178 0.0396143 +0.0171685 0.0490344 0.0439112 +-0.0798847 0.0706373 0.0145533 +0.00550249 0.0758881 0.0564988 +-0.0285046 0.0588067 0.036767 +-0.054422 0.152991 0.0228754 +-0.0663081 0.150341 0.0377708 +-0.0409099 0.173193 -0.0056112 +-0.00259587 0.0391262 -0.0253465 +0.0394316 0.0807401 0.0342345 +0.048793 0.049707 0.0281736 +-0.0225905 0.0365035 -0.0286129 +-0.0185117 0.0387718 -0.0147573 +-0.0889514 0.121274 0.00229944 +0.0255827 0.034587 0.0128177 +-0.0258582 0.100162 -0.023852 +-0.0317095 0.0382098 0.0512104 +-0.0608875 0.104029 -0.0182853 +-0.0577034 0.0591273 0.0216745 +-0.0316861 0.0553325 -0.0133983 +-0.0579004 0.0336435 0.0147513 +-0.050636 0.0604891 -0.0105672 +-0.0484979 0.101507 0.0419588 +-0.0735846 0.159652 -0.032921 +-0.0596849 0.136693 0.0347693 +-0.0527883 0.0490273 0.0246529 +-0.00587038 0.038496 0.0083708 +0.0443161 0.095966 0.0141619 +-0.0355281 0.0832646 0.0432735 +-0.0552893 0.160933 0.00328411 +-0.0694051 0.177621 -0.0490523 +0.0553162 0.0608807 0.0271604 +-0.0115038 0.082913 0.0576973 +0.00149573 0.118307 0.0388892 +-0.0643923 0.178295 -0.0607754 +-0.0696234 0.0702067 -0.00731499 +-0.0684446 0.156174 0.0134711 +-0.0631402 0.158352 -0.0425984 +-0.028277 0.0807444 0.0465032 +-0.0851037 0.143224 0.00618561 +-0.0701909 0.171451 -0.0335218 +-0.0542038 0.149302 0.0263885 +-0.0230864 0.0416339 0.0540702 +-0.0848397 0.124371 0.0492354 +-0.0509437 0.0349503 0.0448676 +0.0147035 0.0490065 0.0456198 +-0.059742 0.156334 0.00641085 +-0.07522 0.0688188 0.0015368 +-0.0196569 0.0390707 0.0375255 +0.0459174 0.0834201 0.0141703 +-0.0785236 0.0894249 -0.0105705 +-0.0200463 0.0893341 0.0549931 +-0.0173075 0.11558 -0.0164072 +0.000516136 0.0760027 0.0580883 +0.042165 0.0859172 -0.00778247 +0.0203197 0.0664896 -0.0280597 +-0.0604906 0.0959808 0.043977 +-0.00180047 0.0840422 -0.0369301 +0.0106204 0.119324 -0.014581 +0.000242427 0.128645 -0.00250259 +-0.0544918 0.0876045 0.0451014 +-0.081252 0.0993542 0.0322994 +0.0225815 0.0632207 0.0466294 +-0.0528036 0.129718 0.0341858 +0.0388075 0.10554 0.0251669 +-0.071237 0.156366 0.0212013 +-0.0419921 0.0349859 0.0415962 +0.0319555 0.0413937 0.028007 +-0.0465003 0.112564 0.0357108 +0.00310161 0.111606 -0.0202814 +0.0306552 0.102095 0.0374778 +0.0158981 0.0576764 0.0492073 +-0.036508 0.127508 0.00348399 +0.0403284 0.0574912 -0.00511853 +-0.06805 0.157495 -0.00534926 +-0.0870566 0.0847034 0.0124776 +-0.0785035 0.127443 0.053282 +0.0093755 0.0479282 -0.0271091 +-0.00151782 0.111398 -0.0200294 +-0.0386619 0.0336282 0.00792475 +-0.0321818 0.0666221 -0.0204419 +-0.0516478 0.0334795 -0.00363494 +-0.0505323 0.0346392 0.0434961 +-0.0871097 0.129792 0.0470428 +-0.00115829 0.0378141 0.0044798 +0.00250327 0.0351261 0.00210209 +0.0232927 0.0720269 -0.0262872 +0.0386441 0.0772022 -0.0107761 +0.00730214 0.0624461 -0.0313742 +-0.0601285 0.0334799 -0.007174 +-0.0311809 0.165241 -0.0158459 +-0.0456556 0.126096 -0.00729728 +0.01482 0.0920349 -0.0274402 +-0.0578658 0.154169 0.0274197 +-0.0766831 0.148629 -0.00786722 +-0.0548976 0.0574275 -0.00541424 +-0.0213746 0.0936314 -0.0333712 +-0.0795038 0.127439 0.0531413 +-0.0719602 0.0381531 0.00797803 +0.0465231 0.0539629 0.0319545 +-0.0327551 0.126411 0.00489661 +-0.0907403 0.135093 0.0162106 +-0.0798437 0.119249 -0.00499812 +-0.0195891 0.186548 -0.0163318 +-0.0336818 0.0474202 0.0430149 +0.0387003 0.0847793 0.034951 +0.005123 0.108732 -0.0201833 +-0.0355723 0.127236 0.00383072 +-0.0593755 0.0706339 0.0387044 +-0.0701237 0.0337481 0.00141754 +-0.0596389 0.0645563 -0.0073211 +-0.0247044 0.0349045 0.050534 +-0.0698349 0.155896 0.010068 +-0.00664542 0.0496313 -0.030799 +-0.0560508 0.049202 -0.00336342 +-0.0846449 0.0777798 0.00851725 +0.0428444 0.0958802 0.0241636 +0.0226208 0.0505695 0.0412719 +-0.0421939 0.165153 -0.0106292 +-0.0530779 0.153128 -0.00337034 +-0.0183995 0.128105 0.0144964 +0.0110096 0.125946 -0.00574203 +0.0135498 0.109816 -0.0183273 +0.0246987 0.1167 0.0323736 +-0.0323986 0.169744 -0.00487272 +0.0414995 0.0513848 0.032599 +-0.0820948 0.0748388 0.0105311 +-0.0771842 0.102138 0.0352151 +-0.0627985 0.161541 -0.0235962 +0.0203907 0.0490438 0.0415331 +-0.0284862 0.120462 -0.00941436 +0.00850898 0.0990197 0.0481875 +0.0181919 0.0781799 0.0527467 +-0.0323958 0.0383608 -0.00233468 +-0.0198811 0.121697 -0.00881459 +-0.0289402 0.154865 -0.00285823 +-0.055522 0.0600566 -0.00554029 +-0.0446949 0.0680713 -0.0159309 +-0.0505296 0.0657745 0.0361047 +0.0251595 0.0995713 -0.0194056 +0.0456643 0.0876028 0.0121678 +-0.0533672 0.143136 0.0253913 +-0.05283 0.138085 0.0270749 +-0.0324865 0.0974182 0.0443398 +0.00543862 0.118556 -0.0157347 +-0.0704807 0.1602 -0.00768602 +0.00476485 0.0378127 -0.0129945 +0.0453303 0.0875809 0.0171699 +0.00844159 0.109753 0.0403226 +0.0199305 0.0645206 0.0480779 +-0.0865012 0.0967606 0.00143514 +0.0239407 0.0433254 -0.00969837 +-0.0464991 0.0818806 0.0436011 +-0.0365053 0.0832925 0.043701 +-0.0511539 0.144707 0.0143676 +-0.0354688 0.0973337 0.0432864 +0.0315086 0.0361416 0.0180806 +-0.0620392 0.152203 -0.0175795 +-0.00174908 0.0726707 -0.0356483 +0.0482658 0.0482112 0.0273759 +0.0205204 0.0686316 0.0489712 +0.0055446 0.129937 0.0246284 +-0.0509363 0.126898 0.0333376 +0.0503401 0.0525815 0.0286903 +-0.0663805 0.0356243 0.0152158 +-0.0631059 0.039729 0.0160762 +-0.0794629 0.0702542 0.0118898 +-0.0440204 0.0437247 -0.0153148 +-0.0258047 0.0811626 -0.0373791 +-0.0654527 0.156561 -0.05302 +-0.0801896 0.0926573 0.034266 +-0.0226625 0.0493576 -0.0281762 +-0.076512 0.15561 -0.00689633 +-0.0316228 0.0384779 -0.00967109 +0.0073096 0.0609801 -0.0307365 +-0.036779 0.0827886 -0.0223365 +-0.0454595 0.0846983 0.0440929 +-0.0310517 0.0636961 -0.0214339 +0.044971 0.0748214 0.0226935 +-0.0245671 0.182966 -0.016053 +-0.0343794 0.125292 -0.00246071 +0.0260218 0.0493062 -0.0196675 +0.00451349 0.0786214 0.0559314 +-0.0272596 0.0409813 0.0537728 +-0.0865558 0.105007 0.0203641 +-0.0427952 0.0347556 0.00787321 +-0.0294944 0.0889496 0.044252 +-0.0691615 0.0832998 0.0419252 +-0.077704 0.175863 -0.0450747 +-0.0595653 0.0407951 0.0449735 +-0.0118194 0.129824 0.0125318 +-0.0304269 0.169744 -0.0072967 +0.00750596 0.0674413 0.055134 +-0.0895098 0.0942825 0.014433 +0.0566953 0.0550372 0.00319006 +0.0358581 0.0995241 -0.0113664 +-0.0541815 0.15229 0.0244282 +-0.0924737 0.125588 0.0362608 +-0.0750911 0.110634 0.0449752 +-0.0272685 0.0368017 0.0538626 +-0.0614955 0.104283 0.0410789 +-0.0721148 0.067315 0.0248191 +0.034236 0.094243 0.0391072 +-0.0724407 0.178857 -0.0487083 +-0.06691 0.033448 -0.00125687 +-0.0660379 0.0349778 0.0329828 +-0.0701097 0.156012 0.00122102 +-0.0157478 0.0352634 0.050467 +-0.0465076 0.160794 0.0071118 +-0.0156218 0.0365183 -0.0177136 +-0.00687536 0.0389886 0.0330493 +0.0201949 0.0959886 -0.0227072 +0.00536718 0.125777 0.0317922 +-0.0689036 0.105186 -0.0135662 +-0.0576505 0.0508003 0.0036576 +-0.0372877 0.0353832 0.0246264 +-0.0766222 0.0824671 -0.0115781 +-0.0570813 0.0344654 0.0405363 +0.0284042 0.0431456 -0.00552671 +-0.078005 0.151454 -0.00188508 +0.00274784 0.0953419 -0.0309592 +-0.0764328 0.147234 -0.00786196 +-0.0187399 0.0656914 -0.0372373 +-0.0626784 0.0670893 0.0340154 +-0.066213 0.0377522 0.0375383 +0.00946024 0.0346841 0.0420404 +-0.00763703 0.046711 -0.0299661 +0.0217664 0.106013 0.0404033 +0.0159395 0.0900955 0.0512828 +-0.0714939 0.126019 0.0527835 +-0.035368 0.122868 0.0260927 +0.0397669 0.0885289 -0.0117744 +-0.0235296 0.159196 -0.00227474 +-0.0299919 0.0383903 -0.00556396 +0.00840449 0.0360838 -0.0229864 +-0.0688351 0.0951745 -0.0162656 +0.0188202 0.124811 0.0265908 +-0.0542034 0.0477679 0.0266683 +-0.00718512 0.0384992 0.0226001 +0.0191993 0.0352366 0.0345338 +-0.0486962 0.13553 0.00541025 +0.0065027 0.0533154 0.0528127 +-0.064997 0.0410349 0.013689 +0.0235192 0.107033 0.0392433 +-0.0526101 0.0632972 -0.0100113 +0.0288769 0.120252 0.0217702 +-0.00882418 0.0896578 -0.0365764 +-0.0563459 0.0335397 0.00260276 +0.0287652 0.114389 -0.00726895 +0.0564669 0.0577845 0.00118215 +-0.0623836 0.163016 -0.0556039 +-0.0235351 0.118111 0.0331575 +0.0443232 0.0889197 0.0231574 +0.0349753 0.114037 0.00545779 +0.0269837 0.108749 0.0374141 +-0.000496913 0.056284 0.0547664 +-0.0889882 0.115854 0.0042936 +-0.0688144 0.0851338 -0.0175228 +-0.0304795 0.0746468 0.0405648 +-0.0616784 0.0692367 -0.0132074 +-0.0554108 0.0334149 -0.00799207 +-0.0610813 0.0342293 0.0311986 +-0.0655517 0.155937 0.0246661 +-0.0767597 0.163153 -0.0191399 +-0.0140741 0.0388251 0.0317136 +-0.02858 0.0731702 0.040795 +-0.0480086 0.134685 0.0198054 +-0.00949027 0.107257 0.0434611 +-0.0224071 0.0510134 0.0440995 +0.0026516 0.0341771 0.00670019 +-0.00282121 0.086807 -0.0363939 +0.00461042 0.092806 -0.0323339 +0.0444404 0.0425371 0.0222477 +-0.0251232 0.0838362 0.0531591 +-0.0711154 0.155676 0.00670049 +-0.0144639 0.0977101 -0.0275565 +-0.0176152 0.0407641 -0.0279656 +-0.0273216 0.038344 -0.00129213 +-0.0781679 0.14865 -0.00288263 +-0.071113 0.171733 -0.033865 +-0.0362701 0.0365605 0.0458807 +-0.0245074 0.0384654 -0.0082311 +-0.0768529 0.106269 -0.00826114 +0.0173624 0.088714 0.0498122 +-0.0872512 0.106353 0.0133638 +-0.0647985 0.124215 0.0485 +0.0274255 0.0686124 0.0431235 +-0.0275944 0.0717748 -0.0345689 +-0.00449702 0.0590031 0.0543234 +-0.00869265 0.0598566 -0.0344628 +-0.0624896 0.106999 0.0393995 +0.00296819 0.0986498 -0.0244883 +-0.0716108 0.0701594 -0.00639514 +-0.0454969 0.0733342 0.042072 +0.0217583 0.0505253 0.0417779 +0.0599479 0.0692188 0.0141571 +0.0159709 0.0859869 -0.0291978 +0.0474137 0.0671743 0.000684928 +0.045537 0.0890033 0.0131643 +0.025235 0.0690602 -0.0242719 +-0.0140104 0.117853 -0.0148385 +-0.0417786 0.156522 0.00614116 +0.0529468 0.0608894 0.0290245 +-0.0623778 0.167137 -0.0608155 +-0.043781 0.0422821 -0.0183128 +0.0194047 0.0727279 0.0509389 +-0.025431 0.180214 -0.00870569 +0.00163035 0.0962275 -0.0299038 +-0.0609057 0.119508 -0.00974426 +-0.0265539 0.180361 -0.00771033 +-0.00586693 0.104511 -0.0229142 +-0.0446124 0.0534121 -0.0108089 +-0.0607974 0.125499 0.0419374 +-0.0676844 0.160922 -0.0559942 +-0.0718937 0.0376106 0.00231258 +-0.0769618 0.103489 0.0349575 +-0.0136243 0.0450811 -0.0280269 +-0.0656393 0.145367 0.0403005 +-0.067848 0.0994807 -0.015636 +-0.0674005 0.156127 0.0138467 +-0.0814089 0.141772 -0.000809353 +0.0343092 0.113032 0.0252402 +-0.0378129 0.0900392 -0.0237743 +0.0410972 0.0779427 0.031296 +-0.0594968 0.104294 0.0413247 +-0.045045 0.0657131 0.0396946 +0.0424943 0.0569701 0.0318321 +0.0380924 0.0618152 0.0338774 +-0.0181385 0.038277 0.0223668 +-0.0680503 0.114246 0.0489904 +-0.089636 0.0902445 0.0164491 +-0.0259323 0.124597 0.000115117 +-0.0341212 0.124555 0.022076 +-0.0117695 0.075665 -0.0382916 +-0.0666005 0.156329 0.0184798 +0.0143467 0.0580862 -0.0289605 +0.00620145 0.0832401 0.0564613 +-0.07299 0.158232 -0.0339184 +0.0179038 0.0866718 -0.0278625 +-0.0447879 0.085543 -0.0216723 +0.0240528 0.0347605 0.00303304 +0.0471472 0.0437632 0.0216364 +-0.0254743 0.105723 0.0415881 +-0.0914335 0.120003 0.00730918 +-0.0381624 0.035793 0.0434599 +-0.0470742 0.127422 -0.00463291 +0.000501079 0.0620074 0.0565701 +-0.0488714 0.104198 -0.020417 +-0.00949444 0.063336 0.0558203 +-0.0227837 0.0742285 -0.0385317 +-0.00949145 0.115547 0.0400498 +-0.0665386 0.0804536 0.042224 +0.00148883 0.121012 0.0365952 +-0.024281 0.069418 0.0457102 +0.019893 0.114777 -0.0136897 +-0.0904011 0.115144 0.0307537 +-0.00370938 0.0627709 -0.0350699 +-0.00367406 0.0555102 -0.0326331 +-0.0125077 0.0773203 0.0572074 +-0.0574951 0.093265 0.0451928 +-0.0942113 0.120123 0.0212925 +-0.0213358 0.165379 -0.00997448 +-0.0615068 0.0789665 0.042503 +0.00239149 0.0343213 0.0156312 +-0.0639126 0.11101 -0.0139478 +0.0381439 0.103967 -0.00387277 +-0.0816033 0.101897 -0.00556882 +-0.0582639 0.12123 0.0402958 +-0.0729322 0.156105 0.0220745 +-0.0514974 0.086244 0.0456131 +-0.0876158 0.137864 0.0416648 +0.0120082 0.0967361 -0.024421 +0.0147782 0.0929392 -0.0263979 +-0.0510555 0.150177 -0.00351578 +-0.0165661 0.163924 -0.0100865 +-0.00519498 0.0390091 -0.00671136 +-0.021716 0.0641363 -0.0354017 +-0.0523357 0.136679 0.027812 +0.0335961 0.0633113 0.0397473 +-0.0384865 0.0492045 0.0394845 +-0.0339969 0.152567 -0.000573454 +0.0175453 0.0645325 0.0499023 +-0.0895247 0.139293 0.0351741 +-0.0870044 0.115772 0.00228167 +-0.0852267 0.0792333 0.0184927 +-0.0927665 0.116031 0.013321 +-0.0240588 0.111793 -0.0183639 +0.0191819 0.123133 0.0296014 +0.0163312 0.0767998 0.0535416 +-0.0834123 0.0856961 -0.00454328 +-0.0614974 0.0904473 0.0454009 +-0.0648003 0.0370671 0.0164284 +-0.0102366 0.125327 0.0306172 +-0.0512935 0.0556822 0.0305914 +-0.0674962 0.0930678 0.0426016 +-0.0707247 0.156767 -0.045914 +-0.0611468 0.0584317 0.0117762 +0.0152753 0.0680849 -0.0302874 +-0.0638387 0.163409 -0.0592654 +0.030267 0.0496887 -0.0107252 +-0.0227695 0.0684387 -0.0367377 +0.0216497 0.065881 0.0470485 +-0.0849335 0.125015 -0.00321773 +-0.0364959 0.0562316 0.0392716 +-0.0132153 0.0406258 0.0508237 +0.00695506 0.0982177 -0.0239936 +0.00047843 0.12713 -0.00487855 +0.0354045 0.046148 -0.00604177 +-0.0913848 0.129679 0.0322355 +-0.0924762 0.124198 0.0322659 +-0.0057025 0.12744 -0.00517306 +0.032332 0.110047 0.0311032 +-0.0374975 0.0662835 0.0416878 +-0.0306651 0.155159 -0.000638202 +0.0161 0.12839 0.0198796 +-0.0392376 0.124806 0.0231803 +0.00131504 0.0597888 -0.0330641 +-0.0445007 0.0931064 0.043109 +-0.0174373 0.0336888 -0.022956 +-0.0536509 0.0343311 0.0291848 +0.0348249 0.110986 -0.0028353 +0.0280633 0.100998 -0.0169482 +0.0423903 0.0490515 -0.00589339 +0.0306614 0.119205 0.0153072 +-0.0604957 0.0876028 0.045161 +-0.0137303 0.0699989 -0.0380502 +-0.00750341 0.130405 0.00835201 +-0.0494799 0.116621 0.0323892 +-0.058737 0.075302 -0.0183386 +-0.0518764 0.0550741 0.0228473 +-0.0293899 0.118762 -0.0116358 +-0.0743199 0.158257 -0.0279194 +-0.0265758 0.0533991 -0.0263925 +-0.047508 0.0903548 0.0442194 +-0.0104972 0.0815462 0.0580111 +-0.0356136 0.0408304 -0.0293778 +-0.0622824 0.159968 -0.0396048 +-0.0727292 0.0730957 -0.00887693 +0.0252321 0.0889244 0.0471615 +0.0362811 0.0443655 0.0298564 +-0.0583717 0.138143 0.0331568 +0.0516174 0.0711387 0.00464104 +0.00649466 0.0427198 0.0454361 +-0.0187116 0.0598792 -0.0350421 +-0.0603468 0.0339987 0.0210215 +0.0310626 0.107429 0.0345663 +-0.0153967 0.0384283 -0.000805549 +0.0390675 0.0617702 -0.00778266 +-0.0718188 0.0907915 -0.0158595 +-0.0066784 0.0569449 -0.0331859 +0.00738229 0.0448872 -0.0251556 +0.0193881 0.0506007 -0.0247336 +-0.0171345 0.165288 -0.0183426 +0.0172728 0.0694422 -0.0295359 +0.0518225 0.072596 0.0200635 +-0.085483 0.140457 0.00319222 +-0.049383 0.140141 0.0133936 +-0.076884 0.155644 0.0221655 +-0.0584972 0.111135 0.0367864 +-0.0264895 0.102963 0.0427118 +-0.016526 0.0387631 -0.00875803 +-0.060493 0.107007 0.0395303 +-0.0133132 0.0385196 -0.000466347 +0.027107 0.0406036 0.0313674 +-0.0852773 0.137655 0.00128094 +-0.0776954 0.16804 -0.0399638 +-0.0465214 0.0505047 0.038174 +-0.0251912 0.178602 -0.0188241 +-0.0524991 0.101502 0.0417298 +-0.0142894 0.184628 -0.0268303 +0.00710791 0.110158 -0.019992 +-0.0766628 0.155608 -0.00789132 +-0.0814761 0.0734707 0.0145404 +-0.0644951 0.0789605 0.0422031 +0.0403539 0.105584 0.00317596 +-0.0633486 0.0371336 0.0178291 +-0.0808831 0.117721 -0.00384392 +-0.0265027 0.10847 0.0397156 +0.0236097 0.121674 0.028372 +-0.0623736 0.164689 -0.0415928 +-0.0495545 0.0404082 -0.0113965 +-0.0562131 0.054804 -0.00139993 +-0.0418518 0.098529 -0.0215916 +0.0133351 0.058103 -0.0291864 +-0.0594448 0.063179 0.0293052 +0.0113019 0.0652847 -0.0308368 +-0.0783582 0.0994351 0.0350546 +-0.0715439 0.0376425 0.00026118 +-0.0154996 0.112736 0.0400881 +0.0417289 0.0704356 -0.00679567 +-0.0406463 0.127804 0.0152535 +-0.0627661 0.170921 -0.0616075 +-0.0923057 0.12017 0.0426167 +-0.00727442 0.0422617 0.0488857 +0.0350851 0.0848737 -0.0178837 +-0.01578 0.128598 0.00819831 +-0.03217 0.0735917 -0.0275208 +-0.0673634 0.110954 0.0392365 +-0.0271001 0.0779439 0.0468281 +-0.0765081 0.156243 -0.00790412 +0.0277565 0.117474 -0.00457839 +-0.0113381 0.0986434 -0.0265191 +-0.0330823 0.0695155 -0.0204574 +-0.0652177 0.144322 -0.0140816 +-0.0094303 0.0379372 -0.0159242 +-0.0245144 0.0945317 -0.028309 +-0.05375 0.0560385 0.0116204 +-0.0679678 0.0383221 0.0123903 +0.00399334 0.0399971 0.0458959 +-0.0841715 0.0870272 0.0285556 +-0.0274573 0.0734015 0.0426855 +-0.0626773 0.153684 -0.0325991 +-0.0741408 0.105214 0.0369385 +-0.0134986 0.081495 0.0573009 +0.0463327 0.0421886 0.017365 +-0.0644937 0.108375 0.0384047 +-0.0653695 0.151233 0.0366147 +-0.018937 0.178659 -0.0169738 +-0.0820692 0.0748107 0.00351555 +-0.0841353 0.146019 0.0379782 +-0.0148578 0.163977 -0.0174595 +-0.0817263 0.0747702 0.00249857 +0.000235601 0.0740952 -0.0356038 +0.000940682 0.0357179 -0.0155776 +-0.0719363 0.129668 -0.0086833 +0.0301411 0.102934 -0.0150039 +-0.0651961 0.0334974 -0.00275965 +-0.0185844 0.16399 -0.00948536 +-0.0592125 0.042121 0.0445708 +7.57538e-05 0.0369473 0.00366537 +0.0152945 0.0666369 -0.0299356 +0.0410157 0.0739041 0.031202 +-0.0577153 0.0344512 0.0421091 +-0.0920793 0.129683 0.0282033 +-0.0497426 0.0753235 -0.0177986 +-0.0484934 0.047761 0.0395051 +-0.0809803 0.104706 0.0304576 +-0.0746935 0.111142 -0.00760178 +0.0204806 0.109788 0.0388648 +-0.0734977 0.128836 0.0522844 +-0.0426178 0.0520018 -0.0109441 +0.0112198 0.0932651 -0.0287439 +-0.0119274 0.182669 -0.0262872 +0.0145534 0.0347576 0.0376203 +-0.0810222 0.100509 -0.00657927 +-0.0033633 0.038102 0.0128662 +-0.0937861 0.128264 0.0182441 +0.0084061 0.0949783 -0.0285638 +-0.0695902 0.113495 0.0492959 +0.000169576 0.131258 0.0183392 +-0.0931626 0.117374 0.0143043 +-0.0195343 0.112367 -0.0190097 +-0.0524215 0.162453 0.00456363 +0.0184901 0.0879016 0.0492476 +-0.0685433 0.170852 -0.0550244 +-0.087182 0.130813 0.00128919 +0.00130454 0.0641388 -0.0343264 +-0.000757317 0.075519 -0.0359212 +0.0308776 0.0902792 0.0430757 +-0.00578939 0.0386518 0.00278679 +-0.076212 0.155059 0.00635026 +-0.0248315 0.0881388 -0.0362597 +-0.0222598 0.160103 -0.0129456 +-0.00877699 0.0770434 -0.0377883 +-0.06674 0.0383979 0.0141071 +-0.00350265 0.0689326 0.0566398 +-0.0295614 0.0861399 -0.0326125 +-0.0286647 0.125711 0.0122564 +-0.0699648 0.0791315 0.0398469 +0.0142764 0.128727 0.0220636 +-0.0638003 0.110914 0.037425 +-0.0719625 0.135504 -0.00769556 +-0.0527869 0.124083 0.0359567 +-0.0467161 0.0738381 -0.0169211 +-0.0117423 0.070003 -0.0378791 +-0.0517809 0.138537 0.023394 +-0.00482205 0.130969 0.0150835 +0.034711 0.0383001 0.0222555 +-0.00127486 0.120883 -0.0121504 +0.0112227 0.0850587 -0.0310098 +-0.0506063 0.0369029 -0.0119734 +0.0433147 0.0831895 0.0275132 +0.0112941 0.127457 0.0281604 +0.0151622 0.122267 0.032438 +0.0400834 0.082061 0.0334038 +-0.0745622 0.152707 -0.0248951 +-0.0528479 0.141625 0.0244146 +0.0245482 0.035172 0.0211866 +-0.0325075 0.11115 0.0364446 +0.0417109 0.0957641 -0.00380547 +-0.00538241 0.130597 0.0192035 +-0.0649174 0.0364897 0.025021 +-0.0770334 0.158982 -0.013085 +-0.0760388 0.148613 -0.0118618 +0.0283559 0.116347 0.030146 +-0.088594 0.121257 0.00130017 +-0.0268076 0.122539 -0.00562189 +-0.0346629 0.0607102 -0.0125376 +0.0413795 0.0505691 -0.00672382 +-0.0906746 0.1365 0.0201946 +0.00951942 0.100425 0.0477045 +-0.0642867 0.172466 -0.0611328 +-0.0242433 0.172722 -0.0123976 +0.00950564 0.0990636 0.0482467 +0.0101664 0.120462 0.0359466 +-0.0187755 0.107692 -0.0220397 +0.0335012 0.0795469 0.0414506 +-0.0834882 0.14321 0.00316117 +-0.0530161 0.141613 0.0254095 +-0.0395373 0.172163 -0.000837254 +0.0387477 0.0589461 -0.0057234 +-0.0647673 0.0795072 -0.0181104 +-0.00140393 0.0361018 0.00962515 +-0.00524162 0.0395598 0.0483202 +0.0236373 0.103743 -0.0178545 +-0.000477761 0.0760312 0.0584165 +-0.0210492 0.0348694 0.0496408 +-0.00244654 0.131114 0.00878185 +-0.033711 0.0384262 -0.00450177 +-0.0745333 0.152696 -0.0258905 +0.055409 0.0509629 0.0218922 +-0.0134774 0.127753 0.000758007 +-0.0120362 0.0388366 0.0321214 +-0.0278604 0.0487672 0.0470543 +0.0327952 0.0713854 0.0403707 +-0.0728362 0.0979301 -0.0143404 +-0.0367225 0.125751 0.02112 +0.0198232 0.0385183 -0.0126921 +-0.0377749 0.150712 0.00133662 +-0.0665966 0.180807 -0.0581921 +-0.0215095 0.114043 0.0376946 +-0.0620515 0.035927 0.0204607 +-0.0584945 0.150006 -0.0011129 +-0.0335992 0.1188 -0.0116562 +0.0196457 0.116633 0.0356159 +0.0248522 0.0685926 0.0446792 +-0.0164926 0.0544756 0.0504072 +-0.051136 0.140067 0.0203692 +-0.089139 0.139182 0.0122002 +0.0163249 0.0580554 -0.0285 +-0.0621816 0.0342254 0.0257179 +-0.0188821 0.0387745 -0.0111028 +-0.053388 0.034491 0.0395762 +-0.000472072 0.130948 0.0195451 +-0.0634988 0.173693 -0.0615446 +-0.054487 0.0452173 0.0438312 +-0.0202902 0.0906146 -0.0362948 +-0.0725702 0.17984 -0.0501722 +-0.0707759 0.162402 -0.0459559 +-0.0463694 0.113628 -0.0162147 +-0.0523573 0.0345285 0.0397607 +-0.0136632 0.0511316 -0.0317578 +-0.00948303 0.0703233 0.0561585 +-0.0852113 0.0869359 0.026743 +-0.0745333 0.0805197 0.0374668 +0.00349251 0.118288 0.0385113 +0.0493697 0.0693787 0.0250272 +0.029581 0.0736246 -0.0217333 +-0.0400646 0.156235 -0.00986121 +-0.0818113 0.136716 0.048659 +-0.0809364 0.129495 -0.00494346 +-0.0875459 0.110452 0.0143395 +0.0253164 0.112728 0.0350367 +-0.0852858 0.0845126 -0.000515374 +0.00212883 0.120316 -0.0135831 +-0.0192664 0.0381478 0.0114056 +0.0493315 0.0589269 -0.00474568 +-0.0183092 0.162495 -0.00732366 +-0.00730789 0.12834 -0.00208974 +-0.0286194 0.180015 -0.014033 +0.0255963 0.0648009 -0.0228004 +-0.00925832 0.177251 -0.027731 +-0.0485485 0.0432385 -0.0107358 +-0.0600861 0.14609 -0.00280453 +-0.026172 0.174158 -0.0190728 +-0.059111 0.0686528 0.0369372 +-0.0434854 0.0944868 0.0426487 +-0.0216341 0.038095 0.0200103 +-0.0670537 0.071446 0.0363402 +-0.0348255 0.0915164 -0.024068 +-0.0202598 0.174222 -0.0154191 +0.0344662 0.114921 0.00815778 +-0.0686919 0.0750175 -0.0147112 +0.026272 0.0789381 -0.0240124 +0.0202522 0.0805604 -0.0270674 +-0.0432329 0.156565 0.00586077 +-0.00650833 0.0787624 0.0577507 +-0.0335034 0.0774945 0.0414157 +-0.0606769 0.0676671 -0.0113119 +-0.0656284 0.162324 -0.0174746 +0.00729944 0.0639619 -0.0320669 +-0.00448657 0.0898027 0.0567005 +-0.0584972 0.0918588 0.045399 +0.00218731 0.0852799 -0.0344916 +-0.0417916 0.0869783 -0.0214259 +0.0463392 0.0489694 -0.00446687 +-0.0389761 0.128486 0.00847309 +0.00727028 0.11232 0.040519 +-0.0234564 0.0680424 0.0463484 +-0.0797185 0.0803984 0.0327643 +0.0232549 0.0645506 0.0458531 +0.0198821 0.0449543 0.0425235 +-0.0394974 0.0902763 0.0431118 +-0.0662858 0.172388 -0.0591199 +0.0259452 0.0364961 0.0239139 +-0.0714148 0.0386609 0.00057855 +-0.0638254 0.0924713 -0.0188016 +-0.0584874 0.112515 0.0360801 +-0.0623619 0.166253 -0.047591 +0.0452758 0.0875665 0.00218329 +-0.0244115 0.0379996 0.0159179 +0.0452209 0.0659646 -0.000116442 +-0.0707693 0.176767 -0.0466577 +-0.0650223 0.156803 -0.0519494 +0.0354173 0.0414682 -0.003097 +-0.0416808 0.0622091 -0.0130274 +0.0326595 0.114633 -0.00147403 +-0.0495274 0.14168 0.00739502 +0.0388579 0.0970015 -0.00784 +-0.00249575 0.0389742 0.0303561 +0.0070795 0.101453 -0.021277 +0.0291938 0.0754716 0.043989 +0.00502464 0.126695 -0.00649713 +-0.016158 0.0884114 -0.0380198 +0.0115883 0.102988 -0.0210311 +0.0576451 0.0661396 0.0235216 +0.0317192 0.118031 0.0171382 +-0.0116954 0.175688 -0.0223293 +0.00121183 0.0853285 -0.0350521 +-0.0158308 0.0883117 -0.038067 +-0.0686258 0.0846974 0.0427491 +0.00833511 0.0595736 -0.0302453 +0.0450509 0.0423962 0.0206492 +-0.027467 0.0793682 0.0471485 +-0.0679777 0.0716192 0.0360049 +-0.0718018 0.158195 -0.0399213 +-0.0114987 0.0856547 0.0572923 +0.0131441 0.0346685 0.0356066 +-0.0620328 0.156862 -0.0185851 +-0.0607717 0.113836 0.03657 +-0.0764751 0.146968 0.0421376 +-0.0207673 0.117009 -0.0138783 +0.0416942 0.0655359 -0.00371801 +-0.0306051 0.0524133 -0.0153638 +0.0107636 0.130209 0.0207729 +-0.0902734 0.133771 0.0282153 +-0.0235934 0.0383252 0.00311252 +-0.012672 0.0526484 -0.0327744 +-0.0309385 0.0622798 -0.0204312 +-0.0337803 0.122942 0.0251825 +-0.0598823 0.146825 0.0363335 +-0.0447526 0.0336781 0.00121434 +-0.0540428 0.0334293 -0.000440359 +0.0119421 0.123166 0.0332435 +0.0105328 0.103079 0.0462759 +-0.00696577 0.0389018 -0.00510709 +-0.033478 0.0632761 0.0395519 +-0.0386238 0.0519962 -0.0107523 +-0.0778526 0.159695 -0.0239243 +-0.0154805 0.109966 0.0416657 +-0.0688005 0.087996 -0.0171065 +-0.0428494 0.0999447 -0.0214282 +0.02441 0.101163 -0.0191142 +-0.0630974 0.160042 -0.0195595 +-0.0591899 0.154851 0.0254882 +-0.0694874 0.100005 0.0406788 +-0.063101 0.150495 -0.0266018 +-0.000774843 0.0783346 -0.0358957 +-0.0335129 0.112536 0.0351002 +0.00348618 0.11278 0.041408 +0.0454091 0.0918015 0.00517469 +-0.030521 0.0636541 -0.0224277 +-0.0564983 0.108415 0.0389345 +-0.0454982 0.045182 0.0420491 +0.0366564 0.089932 -0.0151793 +-0.00318743 0.0350129 0.0463208 +0.0397193 0.0787183 -0.00974279 +-0.0456155 0.165496 -0.00783315 +-0.0401614 0.110268 -0.0187071 +-0.0607836 0.171276 -0.0609166 +-0.0849643 0.0885105 -0.00254627 +0.000663768 0.131541 0.0142252 +-0.0773558 0.163115 -0.0213545 +-0.00442024 0.118937 -0.0140576 +0.029367 0.1045 -0.0146741 +-0.0767078 0.176155 -0.0445645 +-0.087862 0.117151 0.00226309 +-0.0674561 0.1652 -0.0559896 +0.0417828 0.101446 0.0181564 +-0.0504972 0.0465484 0.0414292 +0.0334855 0.0808915 0.0414362 +-0.0640951 0.0700461 0.0364211 +-0.0500004 0.121197 0.0329094 +-0.0640156 0.0344353 0.0303981 +0.0161688 0.0407187 0.0441528 +-0.0175288 0.165418 -0.0114925 +-0.0156111 0.0407209 -0.0274801 +-0.0136265 0.129395 0.0133241 +-0.060628 0.0588072 0.00794551 +0.0064803 0.0977098 0.0499318 +0.0439772 0.079046 -0.00278888 +0.0418428 0.0986036 -0.00180869 +-0.0225444 0.178667 -0.0133919 +-0.0606264 0.0336734 0.0105944 +-0.0434 0.0336807 -0.00215159 +-0.0886031 0.143176 0.0340326 +-0.0849284 0.107666 0.0223625 +0.0592303 0.0580467 0.0201933 +-0.0540206 0.147182 -0.0016614 +-0.00601913 0.126314 0.0306279 +-0.0686207 0.149674 -0.0393499 +-0.0919325 0.130933 0.0102425 +-0.0568299 0.143897 0.0319274 +-0.0354984 0.115235 0.0327878 +-0.0174958 0.0701523 0.0542792 +0.0270421 0.0862601 0.0462384 +-0.0488595 0.101383 -0.02158 +-0.0733679 0.152652 -0.0338969 +-0.0750934 0.159541 -0.00936327 +-0.0374543 0.155389 -0.00975319 +-0.0381729 0.166677 -0.0130206 +-0.087877 0.0990467 0.0233782 +-0.00160432 0.0405525 -0.0251988 +-0.0903048 0.139241 0.0221876 +-0.00139541 0.0385701 0.0219096 +-0.0221672 0.0839099 0.0558332 +-0.000827607 0.0389424 0.0289209 +-0.0177093 0.0385258 -0.00321073 +-0.0221552 0.169733 -0.0198584 +-0.0574718 0.156359 0.0101234 +0.0162407 0.0793143 -0.0294472 +0.0309621 0.0953572 -0.0169293 +-0.0167051 0.126576 2.44266e-05 +-0.0210968 0.161053 -0.00432438 +-0.0244887 0.100244 0.0443393 +-0.0637376 0.15365 0.0326508 +0.0154945 0.115387 0.0371086 +-0.0110238 0.098585 0.0502027 +-0.0466991 0.122484 0.0270727 +0.015569 0.110589 -0.0172093 +-0.0540772 0.146211 0.0253916 +0.0117081 0.0589891 0.0519593 +-0.0289244 0.033884 -0.0216457 +-0.08784 0.105023 0.0143674 +0.0262802 0.123151 0.0136687 +0.0122982 0.128768 0.0241985 +0.0428587 0.0803554 -0.00479839 +-0.0249679 0.0851951 0.0529639 +0.0259953 0.123127 0.0078705 +-0.000612836 0.0356605 0.0156316 +0.0462948 0.0820457 0.00817944 +-0.0179779 0.15947 -0.0103936 +-0.0237993 0.184341 -0.0145966 +-0.0300075 0.0337589 -0.0217484 +0.0233024 0.124378 0.00401489 +-0.0457643 0.0811616 -0.0200148 +-0.0786005 0.174957 -0.0470491 +0.00992987 0.0806149 0.0548353 +-0.036507 0.0464425 0.0402005 +-0.0229776 0.0681076 0.0472951 +0.0359077 0.111056 0.0244077 +-0.0691331 0.0612207 0.0112337 +-0.0653605 0.174136 -0.0490346 +-0.0246777 0.0366811 0.0541279 +0.00549638 0.115538 0.0397987 +-0.0512593 0.128575 -0.00377835 +-0.0227541 0.0889021 -0.0365754 +-0.052801 0.144689 0.0203903 +-0.0373724 0.0344314 0.0325332 +0.0302609 0.0461225 0.032895 +-0.0668934 0.119448 -0.00885989 +-0.0781478 0.107183 -0.00659237 +-0.0262448 0.109573 -0.0200299 +-0.0930011 0.116069 0.0193086 +0.0199447 0.104671 0.0430468 +-0.0902973 0.114585 0.00733567 +-0.0597131 0.0708022 -0.0154129 +0.011503 0.0909852 0.0534706 +-0.0601621 0.0433793 -0.00606772 +-0.0690356 0.068492 0.0314599 +-0.0662201 0.0390045 0.0360529 +0.0111444 0.104428 -0.02004 +-0.0620602 0.155611 0.00849054 +0.038029 0.105425 -0.00179734 +0.00952421 0.0346423 -0.0128865 +-0.0475328 0.0338333 0.0273813 +0.0275059 0.121239 0.00414409 +-0.0713739 0.162409 -0.0439557 +-0.0388285 0.0339925 0.000319116 +0.0209713 0.0966458 -0.0223043 +-0.0117867 0.0798822 -0.0383021 +-0.00231276 0.123919 -0.0094032 +-0.0623035 0.158393 -0.0375989 +-0.0498834 0.108435 -0.0190271 +-0.0450959 0.122461 0.0255697 +-0.086583 0.1077 0.0153543 +-0.0640141 0.128346 0.0443555 +-0.0910616 0.140621 0.0211716 +0.0222184 0.122028 -0.00352468 +-0.0197563 0.0685528 -0.0378978 +-0.0747315 0.0809443 -0.0125955 +0.0381487 0.056188 -0.00571384 +0.0310862 0.0808926 0.0432566 +-0.0418955 0.0336683 0.02694 +0.0454971 0.0861837 0.00419421 +-0.0515955 0.0575054 -0.00888629 +-0.0923422 0.120143 0.0302906 +-0.0388134 0.0900157 -0.0235053 +-0.0678286 0.139237 -0.00787376 +-0.0500776 0.136736 0.0219567 +-0.0524826 0.132311 -0.00383544 +-0.0725073 0.154019 -0.0378993 +-0.0164965 0.114086 0.0389356 +-0.0266334 0.0505574 -0.0257305 +0.0285947 0.0646316 0.0430307 +-0.050498 0.10288 0.0412159 +-0.0147348 0.0348101 0.0475803 +-0.0147627 0.0728806 -0.0387608 +-0.0425799 0.160887 0.00499665 +-0.0516371 0.0334814 0.00180973 +-0.0574972 0.0973516 0.04313 +-0.0294813 0.179959 -0.00726258 +-0.0696084 0.159782 -0.00738408 +-0.00175707 0.0783385 -0.0360812 +-0.0778906 0.0797955 -0.00863863 +0.0383322 0.0928141 0.0344469 +-0.0459579 0.0368224 -0.0202942 +0.0126438 0.130236 0.0157508 +0.0370668 0.109719 0.0231776 +-0.0650007 0.0600171 0.0167571 +-0.0294928 0.0931993 0.044345 +-0.0849548 0.0952071 0.0290738 +-0.0314917 0.0660582 0.0391556 +0.0283827 0.10475 0.0376855 +0.0125555 0.034405 -0.0178251 +0.0407099 0.0684593 0.0306869 +-0.0321086 0.163743 -0.0150961 +0.00529533 0.064011 -0.0326857 +0.0428516 0.0972538 0.000192155 +0.0475361 0.0451237 0.0241502 +-0.0188094 0.0382725 0.0240343 +-0.0242622 0.0650295 0.043001 +-0.0247852 0.0783802 -0.0377363 +0.0104929 0.0923225 0.0529394 +-0.0684671 0.140894 -0.00832284 +-0.013606 0.0435021 -0.0266802 +-0.0324058 0.05963 -0.0134049 +-0.0709313 0.156768 -0.044906 +-0.0794975 0.113845 0.0467655 +0.0215945 0.126233 0.0147739 +-0.0653369 0.0416124 0.0352199 +0.0546053 0.0733755 0.0137165 +-0.0893171 0.0996957 0.0173941 +-0.0835863 0.0817078 0.00050138 +0.029436 0.039931 -0.00313898 +-0.0614917 0.0661812 0.0332998 +-0.0923901 0.114734 0.0183133 +0.030053 0.0567138 -0.0167759 +-0.00342912 0.0915905 -0.0351346 +-0.0758824 0.100651 -0.0113429 +-0.0457293 0.0348843 0.042622 +0.00615023 0.0385922 -0.00780619 +-0.0547458 0.0768339 -0.0193157 +-0.0356142 0.0493225 -0.0125317 +0.024593 0.0345639 0.00705834 +-0.0892328 0.114145 0.0245988 +0.0348936 0.0586201 -0.0127038 +-0.0828513 0.138047 0.046826 +0.0569539 0.0508846 0.00918952 +-0.0797103 0.0711205 0.00752586 +-0.092065 0.118755 0.0273051 +-0.0103683 0.0388061 0.0306894 +-0.0431813 0.165147 -0.00997877 +-0.0813565 0.109598 0.0300528 +0.0477122 0.0511499 0.0301456 +-0.0678831 0.155252 0.000581516 +0.0349362 0.113582 0.0211925 +0.0280387 0.0549866 0.0403705 +-0.0615433 0.125505 0.042614 +0.0450739 0.0427888 0.00232236 +-0.0544975 0.121335 -0.0101688 +0.0117318 0.0833298 0.0539432 +-0.0144997 0.103011 0.0432504 +-0.0752992 0.149965 -0.0228671 +0.0196742 0.0686359 0.0495084 +-0.0394722 0.107013 0.0383007 +-0.0321381 0.0435397 -0.0289857 +0.0231687 0.0915577 0.0477207 +-0.0480905 0.156132 -0.00685995 +0.00882114 0.0589209 0.053036 +0.000540453 0.0731645 0.0574875 +-0.0842824 0.0818436 0.0235004 +-0.072066 0.0353469 0.00817017 +-0.0548518 0.122696 0.0382478 +-0.0283817 0.123518 -0.00261643 +-0.0178271 0.0855379 -0.0388455 +-0.00772146 0.0656018 -0.0354736 +0.0230836 0.12416 0.0238853 +-0.0125037 0.0730609 0.0559849 +0.0551355 0.0581678 0.0268835 +-0.0288448 0.124881 0.0180835 +-0.0566945 0.126945 0.0390945 +-0.0491155 0.0337431 -0.0125383 +-0.0100076 0.130157 0.0146359 +-0.0114787 0.0934019 -0.0350786 +-0.012503 0.0856552 0.057236 +-0.00822614 0.0384527 0.0224267 +-0.0288615 0.0353967 0.01735 +-0.035527 0.115134 -0.015836 +-0.085501 0.0791776 0.00851156 +0.0457594 0.0890174 0.0101642 +-0.0775133 0.126 0.0528602 +-0.0598229 0.0911123 -0.0198104 +0.0349018 0.0698502 -0.0158378 +-0.00371064 0.0641813 -0.0350983 +-0.0232497 0.0336668 -0.0221987 +-0.0337721 0.121485 -0.00843946 +0.0123855 0.0603174 0.0511841 +-0.0454994 0.0804154 0.0426755 +0.00893209 0.124393 0.0330753 +-0.00403191 0.0987119 0.0511654 +-0.0481285 0.0573264 0.0358964 +-0.0166099 0.0407431 -0.0277394 +-0.0440479 0.169839 -0.00695693 +0.0412738 0.0872408 -0.00977382 +-0.0604546 0.071762 0.0392488 +0.0529297 0.0581906 0.02898 +-0.0521631 0.138551 0.0244099 +-0.0366167 0.15106 0.000396988 +0.0417493 0.0611977 -0.0033567 +-0.070996 0.0683351 -0.00354604 +-0.0356709 0.0621736 -0.0130441 +-0.0170991 0.0383232 0.0225362 +-0.0487856 0.0573034 0.0351442 +0.022412 0.0372285 0.0333476 +-0.0249633 0.0931679 0.047071 +0.018008 0.0349409 0.0291289 +-0.0796085 0.154132 0.0271276 +-0.0406237 0.0336557 -0.0200198 +0.0169165 0.123099 -0.00667688 +0.0210051 0.0618768 0.0478546 +-0.0427644 0.0812202 -0.0203472 +-0.0672645 0.175508 -0.0482636 +-0.0639988 0.121381 0.0479339 +-0.0622266 0.158391 -0.0366041 +-0.0261802 0.161053 -0.0142499 +0.0186318 0.0821747 0.0516425 +-0.00531922 0.0961442 -0.0318294 +0.00250665 0.0341604 -0.0175888 +0.0167477 0.0563074 0.0486799 +-0.0106808 0.0555967 -0.0338825 +0.00925016 0.0724976 -0.0328208 +0.0123553 0.0552818 -0.0294499 +0.0212602 0.0735043 -0.0271352 +-0.0845249 0.129883 0.0501389 +-0.0764965 0.154899 -0.0050946 +-0.0621627 0.163132 -0.0395927 +-0.0144955 0.0701698 0.0547379 +-0.0084766 0.0489124 0.0500846 +-0.000135712 0.0381648 -0.0142912 +-0.0503963 0.1183 0.0322871 +-0.0761087 0.083292 0.0375324 +-0.0736943 0.094184 0.0404336 +-0.0691138 0.0763852 0.0387083 +-0.0290376 0.038297 0.000217512 +-0.0348553 0.0342935 0.020715 +-0.0220444 0.0384934 -0.0170721 +-0.0114987 0.0471911 0.0478612 +0.0375264 0.0714822 -0.0127977 +-0.0282394 0.087664 0.0462444 +-0.0757136 0.107486 0.0366393 +-0.0610115 0.134041 -0.00711168 +-0.0797372 0.0717415 0.00518109 +-0.0658978 0.147832 -0.0279808 +-0.00653882 0.110902 -0.0214831 +0.0296673 0.0591775 0.0410177 +-0.0217889 0.0696447 0.0502694 +0.0234089 0.0418644 -0.00766906 +-0.0364935 0.0888766 0.0431732 +0.0306541 0.0520995 0.0370911 +-0.060098 0.0687043 0.0366734 +0.0187338 0.0862153 -0.0273821 +-0.0839692 0.148747 0.00414299 +-0.0354821 0.0561791 0.038801 +-0.0481382 0.0376145 0.0455768 +-0.0676248 0.117206 0.0513943 +-0.0281854 0.174153 -0.0178233 +0.0359289 0.0386712 0.0221633 +-0.0256851 0.0824232 0.052338 +-0.0145953 0.0363242 -0.0264317 +-0.0303622 0.055196 -0.0183802 +-0.00165167 0.0525486 -0.0310164 +-0.0132125 0.168083 -0.022507 +-0.00949762 0.078776 0.0580091 +-0.0361357 0.127268 0.00216052 +0.048778 0.0525636 0.0299433 +-0.0256526 0.0520956 -0.0269974 +-0.0603733 0.0335628 0.0071663 +-0.0426157 0.035917 -0.0271302 +-0.0144999 0.162187 -0.0103051 +-0.0384864 0.0548303 0.0394681 +-0.0831442 0.107611 0.0263767 +-0.00111933 0.100971 -0.0229536 +-0.0548742 0.10693 -0.0184788 +-0.0218282 0.127027 0.00889322 +-0.0174982 0.111166 -0.0197324 +-0.0652616 0.0722487 0.0377992 +-0.0576238 0.145329 0.032529 +-0.0184507 0.117417 -0.0143314 +-0.081937 0.128034 -0.00496911 +0.0195332 0.12729 0.0154357 +-0.0293484 0.0705264 -0.0315108 +-0.00525979 0.0409541 0.0483014 +0.0555717 0.0706847 0.00515518 +-0.048428 0.0531039 0.036022 +-0.00279611 0.0826469 -0.0371795 +-0.0287124 0.0382592 0.00213562 +-0.0574984 0.0959784 0.0439666 +-0.091525 0.133725 0.0172151 +-0.016864 0.128415 0.0107007 +-0.0636978 0.164648 -0.0286005 +-0.0829735 0.127181 0.0515051 +-0.0488321 0.0956358 -0.0221459 +0.0400863 0.0899903 -0.0108207 +-0.0619683 0.12268 0.0437909 +0.0605435 0.0650981 0.0101416 +-0.0665542 0.169448 -0.0580509 +-0.0891009 0.0902275 0.0204481 +-0.0825815 0.112383 0.0454387 +0.0104883 0.0936688 0.0521003 +0.0142529 0.0765304 -0.0302113 +0.0165164 0.126586 0.0257514 +-0.0283423 0.118847 0.030216 +0.0142697 0.034212 -0.000289798 +-0.0478723 0.105599 -0.0198923 +-0.0739256 0.098177 0.0391323 +-0.049674 0.141672 0.0123895 +-0.0475977 0.15214 0.0100027 +-0.0424553 0.128377 0.00131486 +0.0224361 0.0645464 0.046427 +-0.0885609 0.087538 0.0184581 +0.0147132 0.0897404 -0.0290836 +-0.054132 0.143048 0.0274248 +0.00550441 0.0575487 0.0534334 +-0.0772682 0.155563 -0.0118971 +-0.0677628 0.079419 -0.0170759 +-0.0464924 0.159333 0.00779524 +0.0261579 0.0768253 0.0466356 +-0.0552963 0.0473377 0.0123212 +-0.0298441 0.0972531 -0.0235715 +-0.00563259 0.0974901 -0.0292726 +-0.0261993 0.095287 -0.0250572 +-0.0716941 0.0684125 -0.00254325 +0.00127365 0.0682996 -0.0335875 +0.0575871 0.0523587 0.0191771 +-0.00134429 0.0361889 0.0150058 +-0.0715096 0.1041 0.0379435 +-0.0921823 0.117455 0.0412015 +-0.0384872 0.0337149 -0.0296051 +-0.0287365 0.0475545 0.0479663 +-0.0257999 0.0422849 0.0537317 +-0.0230963 0.124618 -0.00175855 +-0.0924128 0.11471 0.0173177 +-0.00492025 0.0362041 0.048453 +-0.0186551 0.184576 -0.0164922 +-0.0802253 0.0772741 0.0285988 +0.0463015 0.0806481 0.0121762 +-0.0304105 0.0861968 -0.0305753 +-0.0346214 0.0348242 0.0450553 +-0.0652339 0.0355811 0.0395373 +-0.0788426 0.0825957 -0.0096075 +-0.0127163 0.038878 -0.00996632 +-0.0624916 0.166267 -0.0445898 +-0.0746075 0.156859 -0.0239292 +-0.0773753 0.161145 -0.0179242 +-0.0883931 0.1336 0.00326444 +-0.0661323 0.162373 -0.0581655 +-0.0510928 0.12386 -0.00885828 +-0.0384971 0.0705176 0.0419076 +-0.0723264 0.176481 -0.0540086 +-0.0271072 0.11707 -0.0138992 +-0.0591735 0.11954 -0.0102201 +0.0222809 0.11936 0.0323905 +-0.0302503 0.17123 -0.00702025 +-0.0809167 0.107332 -0.00361395 +-0.0627188 0.046051 0.00845692 +-0.00639449 0.0347093 0.0459249 +-0.0877048 0.0873692 0.00346654 +-0.0410427 0.15478 -0.00878846 +-0.069373 0.0655009 0.0252048 +-0.0270649 0.0689032 -0.0335294 +0.00976243 0.126251 0.030462 +-0.002483 0.114172 0.0414823 +-0.0532846 0.152692 0.0160461 +-0.0190668 0.12797 0.0127969 +-0.0645056 0.0818668 0.0436415 +-0.0144784 0.0645279 0.0535035 +-0.0598098 0.08825 -0.0201729 +-0.0614957 0.105649 0.0403113 +-0.0278003 0.174225 -0.00868668 +-0.0525152 0.0439969 0.0448982 +-0.00749319 0.0503553 0.0512463 +-0.0786706 0.0853441 -0.0105854 +-0.0447185 0.0709976 -0.0171011 +-0.0635722 0.0753573 0.0407707 +-0.0124985 0.0603974 0.0541523 +0.0344134 0.0655586 -0.0158419 +0.0196499 0.124334 0.0268969 +-0.0627763 0.0614875 0.0230054 +0.0416143 0.102832 0.00217563 +-0.0552881 0.147721 0.0283494 +-0.0143864 0.174216 -0.0192271 +0.0144149 0.0343798 -0.00603429 +-0.0101902 0.177186 -0.0254506 +0.0284808 0.120403 0.0230436 +-0.0149461 0.0384961 0.0282276 +-0.0778803 0.0710945 0.0220932 +-0.042083 0.168351 -0.00985967 +-0.056782 0.043535 0.0167171 +0.0143083 0.122234 -0.00973054 +-0.0266054 0.0916781 -0.031606 +-0.00249278 0.121064 0.0370013 +-0.0199096 0.0382242 0.00758286 +-0.0135056 0.0842656 0.0572305 +-0.0720125 0.148777 -0.0357596 +0.0251623 0.118606 -0.00580398 +-0.0618325 0.0334319 -0.000212632 +-0.0855476 0.136296 0.00125685 +-0.032605 0.0408975 -0.030074 +0.0426847 0.0986805 0.020158 +-0.00736899 0.0366982 -0.0162506 +0.00250252 0.0590979 0.0551087 +-0.0674921 0.106947 0.0382762 +-0.0289938 0.16114 -0.00164375 +-0.0509402 0.0584984 0.0315938 +-0.0350845 0.124972 -0.00417237 +-0.0686385 0.0435335 0.00569826 +0.0441509 0.0959467 0.0161545 +0.0131317 0.10725 -0.0189993 +0.0358259 0.0928903 0.0378885 +-0.0154981 0.060248 0.0524646 +0.0276762 0.118315 -0.00350857 +-0.0683312 0.0833327 0.042485 +0.033847 0.106899 -0.00922375 +0.048317 0.0466984 0.0256626 +-0.0570131 0.128126 -0.00643112 +-0.0788672 0.111379 -0.00271807 +0.0115311 0.122019 -0.0114981 +0.0275945 0.106191 -0.0144774 +-0.0591334 0.0584459 0.00677121 +-0.0780191 0.149419 0.0383262 +-0.0559631 0.0464314 -0.00541258 +-0.0192836 0.0894928 -0.0371367 +-0.033131 0.166707 -0.0157536 +-0.0495065 0.107045 0.0392662 +-0.073496 0.147014 0.0424214 +-0.0404833 0.111172 0.036485 +0.0284708 0.0565571 -0.0188308 +0.0511996 0.0711486 0.0227866 +-0.0681397 0.0738079 0.0376094 +-0.0905331 0.135117 0.0212107 +-0.0733037 0.155556 0.00591793 +0.0500217 0.0446984 0.00624267 +-0.00949805 0.0815484 0.0580308 +0.0211117 0.124199 0.0260136 +-0.0611133 0.149657 0.036321 +-0.0635959 0.153475 0.00125628 +0.0344187 0.0994578 0.0359067 +-0.0734442 0.163812 -0.0389777 +-0.0852938 0.0858468 -0.00152115 +-0.0559297 0.13815 0.0313829 +-0.0870302 0.13217 0.00132034 +0.0204036 0.0474506 -0.0212729 +-0.076548 0.0954614 0.0376104 +-0.0855527 0.153551 0.0192298 +-0.0729125 0.0928513 0.0411123 +-0.0404958 0.0478428 0.0400733 +-0.0121854 0.0980546 -0.0279084 +-0.0464966 0.108432 0.0393098 +-0.0177034 0.0569685 -0.0340386 +-0.0908687 0.135097 0.0172074 +-0.0862565 0.0846802 0.0214754 +-0.0297808 0.0348722 0.0494682 +-0.0764922 0.155931 0.0149956 +-0.0618119 0.115344 0.0386033 +-0.0487475 0.0767781 -0.0183253 +-0.0907804 0.150219 0.0191245 +-0.0524535 0.0335708 0.023045 +-0.0384946 0.0577019 0.0400515 +-0.074873 0.151297 -0.0278802 +0.00653661 0.120619 -0.0139577 +-0.0483957 0.0389613 0.0452757 +-0.0779524 0.165292 -0.0269536 +-0.0536531 0.0334694 0.00682116 +-0.0561549 0.118392 0.0380484 +-0.0201622 0.0337128 -0.0216346 +-0.0794073 0.0772395 -0.00557672 +-0.0135947 0.071631 0.0548042 +-0.0382622 0.0335792 -0.0232089 +-0.0183288 0.115615 -0.0164437 +-0.0507515 0.0768088 -0.0186854 +-0.0176367 0.181628 -0.0186063 +0.001434 0.0980064 0.0516014 +0.00449684 0.131467 0.00706378 +-0.0839655 0.111209 0.0317911 +-0.0769529 0.128149 -0.00749249 +0.0471199 0.0728094 0.00697834 +0.0460243 0.0737836 0.00392327 +-0.00149572 0.0505531 0.0529099 +-0.0431936 0.0363833 0.0440447 +-0.054345 0.151005 0.0266856 +0.00514071 0.12498 -0.00862525 +-0.0729614 0.112778 0.0490933 +0.0152498 0.0348445 0.0304622 +-0.0111539 0.0386404 0.0270766 +-0.0431779 0.113636 -0.0162215 +-0.0754447 0.164601 -0.0189193 +-0.0685657 0.0346013 0.0116976 +0.036686 0.110763 0.0218417 +-0.058015 0.128168 -0.00680186 +-0.0805084 0.121673 0.0499202 +-0.0750852 0.174913 -0.0410877 +-0.0394764 0.081876 0.0433844 +-0.01065 0.0383969 0.0147482 +-0.0236788 0.0551648 -0.029679 +-0.0207747 0.0728486 -0.0387932 +0.00733312 0.0553775 -0.0306811 +-0.0497252 0.137033 0.00342407 +-0.0650198 0.154365 0.0307072 +0.00051428 0.0383337 0.0225142 +-0.0625323 0.1568 -0.0366082 +-0.00383551 0.130671 0.00539431 +0.0310854 0.118732 0.00690653 +-0.0699388 0.131128 -0.00863643 +-0.023911 0.123885 -0.00309916 +-0.0495628 0.0402984 0.0453668 +-0.0639487 0.168098 -0.0606895 +-0.0706835 0.155594 0.0053992 +-0.0686442 0.156175 0.0235781 +-0.0572185 0.0575347 0.00867749 +-0.0788442 0.154658 0.0259054 +-0.0721793 0.15961 -0.0389315 +-0.0545051 0.119806 0.0369329 +-0.0254081 0.182912 -0.0140439 +-0.0729406 0.0676849 0.0243239 +-0.0353285 0.0851433 -0.0237512 +-0.0478735 0.104217 -0.0205651 +-0.0558395 0.0589131 -0.0044052 +0.0448613 0.0903726 0.0191701 +0.0576189 0.0719687 0.0133447 +-0.0511061 0.129858 -0.00316533 +-0.00880359 0.113633 -0.0183799 +-0.0618121 0.09105 -0.0190303 +0.0313027 0.114101 -0.00492854 +-0.042497 0.0874008 0.0424798 +-0.0508473 0.0970748 -0.0222124 +-0.0654906 0.102864 0.0410679 +-0.00458022 0.0347745 -0.0240516 +0.0553581 0.0524903 0.0236336 +0.00626754 0.071137 -0.0337471 +-0.0135115 0.118298 0.0374588 +-0.0604029 0.0342918 0.0295439 +0.0406411 0.0462159 0.0309092 +-0.0278584 0.0385169 -0.0108032 +0.0266728 0.0713177 0.0438181 +0.0101968 0.116422 0.0377394 +0.0446411 0.0959729 0.00816419 +-0.0597937 0.0334415 0.000190139 +-0.0210999 0.0811322 0.0562803 +-0.0474593 0.0559824 0.0367034 +0.0340242 0.115407 0.0165889 +0.0416569 0.0832977 0.0303966 +0.0340782 0.100772 0.035418 +-0.0604756 0.0747304 0.0414998 +0.0147905 0.128825 0.0208219 +-0.00109958 0.115152 -0.0180337 +-0.0237291 0.0650733 0.0438813 +-0.0261862 0.17712 -0.0185723 +-0.0381348 0.0338853 -0.0178771 +-0.0323789 0.115075 -0.0157884 +0.0168479 0.0856792 -0.0288312 +0.0383914 0.0390949 0.00219016 +0.0192558 0.0721931 -0.0285132 +-0.0837506 0.0776431 0.00349824 +0.00549734 0.0937843 0.053579 +0.0381875 0.10978 0.0131678 +-0.0707773 0.0822058 -0.016572 +-0.0623556 0.0337533 -0.00969501 +-0.0657944 0.0348418 0.0348835 +0.029813 0.0605585 0.0412449 +-0.067274 0.142559 0.0431983 +-0.00437946 0.039206 0.0351678 +-0.091267 0.130919 0.00823808 +0.056791 0.0717301 0.0086079 +-0.088725 0.0942104 0.00844208 +-0.0527517 0.076824 -0.0190661 +-0.075716 0.071204 0.0277224 +-0.0296574 0.175524 -0.0164728 +0.0201633 0.0535759 0.04656 +0.00320624 0.036422 0.0229702 +0.0192058 0.0834241 -0.02764 +-0.0918136 0.129556 0.00925121 +0.0276788 0.117119 0.0298812 +-0.0251464 0.0824617 0.0532115 +-0.0728771 0.154609 0.0294193 +0.00904539 0.03456 0.0402645 +-0.0534903 0.102908 0.0413848 +0.00940878 0.0389595 -0.0232113 +-0.0859627 0.109007 0.009354 +-0.0484951 0.0903851 0.0445307 +0.00263147 0.0345612 0.0425417 +-0.0770465 0.161776 -0.0174081 +0.0134975 0.104436 0.0449316 +-0.0388918 0.123217 0.0263098 +-0.0364947 0.112507 0.0349484 +-0.0629025 0.103986 -0.017642 +-0.0678178 0.0923118 -0.0167386 +-0.0689104 0.122371 -0.00889897 +-0.0255023 0.125351 0.00317915 +-0.000607228 0.0419595 -0.0248688 +0.0460131 0.0820178 0.0051921 +-0.0223034 0.0381733 0.0107634 +-0.0861005 0.10314 0.0243088 +-0.0674874 0.0958602 0.0421807 +-0.0538319 0.138205 -0.00152003 +-0.0199623 0.0624791 0.0486773 +-0.0187732 0.0946942 0.0521396 +0.0415957 0.0859827 0.0303559 +-0.0405006 0.0562797 0.0399754 +-0.0396087 0.0392284 -0.0278507 +-0.0203015 0.124709 0.0241059 +-0.0667178 0.127063 0.0492263 +-0.0727925 0.0893223 -0.0156729 +0.0370031 0.104683 0.029035 +0.0279524 0.103456 0.0388242 +-0.0186121 0.038597 0.0291868 +-0.0776508 0.152845 -0.000892884 +-0.0334818 0.0987718 0.0435747 +0.0329891 0.092935 0.0408139 +0.0391956 0.0712805 0.0337887 +-0.0631802 0.0590341 0.0144269 +-0.0537547 0.143134 0.0264016 +-0.0301924 0.153974 -0.00357072 +-0.0448379 0.0970765 -0.0217835 +0.00941817 0.0340541 0.000745803 +-0.0432126 0.168352 -0.00885275 +0.0554664 0.0549257 0.00120797 +-0.0225677 0.0932815 0.0503229 +-0.0524989 0.157892 0.00946562 +0.0390425 0.0953983 0.0320312 +0.04296 0.0817702 -0.00479044 +0.00635062 0.0510121 -0.0292209 +-0.0543105 0.149562 0.0267072 +0.0221931 0.100779 0.0445472 +0.0329366 0.0724958 -0.0177814 +0.0248886 0.114037 0.0344109 +-0.0550232 0.14424 -0.00134547 +0.0163915 0.04625 -0.0239163 +0.0177475 0.036867 -0.0166881 +-0.0617992 0.0867358 -0.0192812 +-0.0893599 0.133717 0.0406984 +-0.039718 0.0695625 -0.0162922 +-0.0089161 0.0389771 0.0326408 +-0.0245194 0.0879123 0.052427 +-0.0855508 0.0883229 0.0270467 +-0.0419398 0.0356984 0.00899705 +-0.0715816 0.0791203 0.0388191 +-0.0444898 0.0690526 0.0411578 +-0.070025 0.173518 -0.0406121 +-0.0628508 0.0981808 -0.0176907 +-0.0750322 0.144421 -0.00688246 +-0.0499825 0.0544896 0.033589 +-0.065333 0.177827 -0.0606985 +-0.0316114 0.123192 0.0229888 +-0.0760927 0.0805105 0.0361956 +-0.0370838 0.0486029 -0.013278 +-0.0785283 0.124553 0.0522615 +-0.0708435 0.0731956 0.0357937 +-0.0403104 0.0336344 -0.0180813 +-0.0609885 0.0628534 0.0274979 +-0.0323315 0.0624018 -0.0174393 +-0.0368547 0.100015 -0.0221726 +-0.0783796 0.172116 -0.0450441 +-0.0633655 0.139636 -0.00706655 +0.00173262 0.13137 0.0174841 +-0.0105091 0.0646847 0.0553841 +0.0266795 0.122765 0.0152477 +-0.0360635 0.034528 0.0238485 +-0.0541027 0.122637 0.0375656 +-0.0544908 0.0344999 0.0341095 +0.0176998 0.103348 0.0450658 +-0.0685644 0.145677 -0.0229009 +-0.0356468 0.0577276 -0.0110125 +-0.0696054 0.110911 0.0424293 +-0.0584669 0.0577494 0.0129387 +-0.0398029 0.0870085 -0.0218621 +-0.00967624 0.104885 -0.0231041 +0.00669982 0.0383228 -0.00932299 +-0.0609169 0.109692 -0.0160089 +-0.0646221 0.122809 0.0487379 +0.0174813 0.0865744 0.0503122 +-0.0067878 0.0386876 0.00254936 +-0.0628956 0.119461 -0.00917238 +-0.0404347 0.128451 0.0123721 +0.0304082 0.04464 -0.00596234 +0.00950687 0.0785812 0.0553914 +-0.0185636 0.161122 -0.00592394 +-0.0407009 0.066639 -0.0151117 +-0.0638844 0.0392942 0.0408356 +0.00208256 0.0392848 0.0328214 +-0.0891635 0.0901786 0.00945748 +-0.0714603 0.0390724 0.00325296 +0.0396909 0.105526 0.00119339 +-0.092918 0.118828 0.0342968 +-0.0809093 0.0912865 0.0336272 +0.0106278 0.12033 -0.0136749 +-0.079254 0.149169 0.0379325 +-0.0700516 0.177913 -0.0570165 +-0.0584973 0.0875674 0.0446281 +0.0363875 0.037641 0.0177175 +-0.0266625 0.178341 -0.0176816 +-0.0257516 0.0380733 0.00834253 +-0.0514727 0.147804 0.0154008 +-0.0475605 0.047528 -0.00960427 +0.0464078 0.0756596 0.0165703 +-0.0659757 0.132606 -0.00839654 +-0.0795255 0.0953936 0.0349279 +-0.0512091 0.118302 0.0328718 +-0.00441308 0.12096 -0.0123131 +-0.0322918 0.0358193 0.0288559 +-0.0907178 0.142015 0.0241681 +-0.0555193 0.152453 0.0283051 +-0.044345 0.152142 0.00768226 +0.0241695 0.0809229 0.0490966 +-0.0528659 0.0999263 -0.0216782 +-0.0669331 0.125307 -0.0088761 +-0.0303567 0.119073 0.029499 +0.025846 0.107916 -0.0143268 +-0.0617056 0.1325 0.0388812 +-0.0185965 0.0364224 -0.0275796 +-0.0207908 0.0384714 -0.00378381 +-0.0617181 0.0598008 0.019418 +-0.0474373 0.120726 0.0283448 +0.0366967 0.103968 -0.00783268 +0.0303183 0.0797251 -0.0205953 +-0.0317074 0.0436869 0.0496355 +-0.0623412 0.156794 -0.0356173 +-0.0765015 0.121776 0.0527715 +-0.0184879 0.122208 0.0309285 +0.0230909 0.103393 0.0423419 +0.0609018 0.0651278 0.0131549 +0.00916248 0.0355108 0.0268151 +0.0313289 0.0554154 -0.0147753 +-0.0025035 0.108652 0.0433127 +0.0546992 0.0478618 0.0141962 +-0.0620154 0.0689049 0.0360997 +-0.0388626 0.102809 -0.0208006 +-0.0555708 0.142434 0.0301615 +-0.0688026 0.146519 -0.0258522 +0.0194777 0.0878818 0.0491927 +-0.0228793 0.110931 -0.0194728 +-0.0324125 0.0849398 -0.0275574 +-0.0438855 0.03574 0.0440005 +-0.0917791 0.117463 0.0421754 +-0.0690116 0.129833 0.0494501 +-0.0743362 0.15411 -0.0219057 +-0.0638117 0.0867138 -0.0190744 +-0.045027 0.168395 -0.00690925 +0.0270479 0.080882 0.0462053 +-0.0114995 0.164138 -0.0150087 +-0.0325011 0.058955 0.0382451 +-0.0606931 0.0692955 -0.0138548 +-0.0566913 0.0572662 0.0137312 +-0.00649633 0.0488329 0.050181 +0.0223101 0.120965 0.030775 +-0.0805231 0.0993639 0.0329828 +-0.0644795 0.0959078 0.0429389 +-0.075154 0.17882 -0.048244 +0.00607351 0.0358936 0.0456569 +-0.035492 0.0648204 0.0410644 +-0.0576415 0.155076 0.0216791 +-0.0762945 0.152787 -0.0118902 +-0.00761327 0.0434711 -0.0261832 +-0.0814624 0.13163 0.0517276 +-0.0743185 0.067053 0.0192856 +-0.0842709 0.104792 0.000381661 +-0.0374161 0.12162 -0.0106267 +0.0282004 0.082909 -0.0218038 +-0.0538885 0.131144 0.0343613 +0.0268226 0.046511 -0.0137061 +-0.0500801 0.151654 -0.00422617 +-0.0843259 0.153929 0.0166903 +-0.0840259 0.124392 0.0498267 +-0.0906893 0.11752 0.0439252 +-0.0636773 0.162484 -0.0225185 +0.0362915 0.0534119 -0.00658438 +-0.0733102 0.0700068 0.0292571 +0.0432125 0.0858656 0.0273897 +0.0392299 0.108358 0.0101653 +-0.0357967 0.0383351 -0.00483874 +-0.0645865 0.0628123 -0.00359236 +-0.0838768 0.108986 0.0253683 +-0.0538875 0.139905 -0.00121756 +0.0463511 0.0764838 0.0150474 +0.0180384 0.119266 -0.0105437 +-0.0812898 0.0735018 0.0165324 +-0.0437426 0.076832 -0.018848 +-0.0489995 0.126854 0.0308899 +0.00913686 0.107291 -0.0199257 +0.0413467 0.0718054 -0.00779903 +-0.0407607 0.126285 -0.00553285 +-0.0564807 0.113914 0.0357075 +-0.0477527 0.149202 0.00972608 +-0.0737025 0.144377 -0.00986626 +-0.0237128 0.058121 -0.0313582 +-0.0884618 0.142054 0.0361609 +-0.00450592 0.0661541 0.056364 +-0.0448888 0.108464 -0.0189265 +-0.0531399 0.13506 -0.0028018 +0.0308728 0.114122 0.0296728 +-0.0120858 0.0382274 0.0182274 +0.045976 0.0820209 0.01617 +-0.0474955 0.0344671 0.0303636 +0.0116443 0.129846 0.0210966 +0.0429126 0.0775596 -0.00475805 +-0.0639176 0.122377 -0.00881224 +-0.0219078 0.0581082 0.0451165 +-0.0185957 0.118181 -0.0131167 +-0.0381658 0.165183 -0.0131497 +-0.0445045 0.0438483 0.042919 +-0.0464974 0.074738 0.042075 +-0.0819901 0.133862 -0.00285904 +-0.0633534 0.0445301 0.031682 +-0.0314905 0.0960436 0.0448087 +-0.0575997 0.0574661 0.0133658 +-0.0303698 0.154176 -0.00601441 +0.0133009 0.0666579 -0.0304883 +0.0108109 0.0819726 0.0543646 +-0.068057 0.178404 -0.0514469 +-0.0806807 0.0760273 -0.00253172 +0.0394926 0.0541437 0.0318453 +-0.00450121 0.0675415 0.056336 +-0.019491 0.0387907 0.0342254 +0.0147818 0.0631153 0.0511723 +-0.0291704 0.172664 -0.0174314 +0.0262968 0.070421 -0.0238548 +-0.0421212 0.159153 -0.0103433 +-0.0367588 0.172073 -0.0125043 +-0.0196292 0.117165 -0.0140584 +-0.042525 0.149193 0.00498605 +-0.0175612 0.186044 -0.0184493 +0.0221884 0.0973608 -0.0216774 +-0.0197019 0.0568866 -0.0331333 +-0.045504 0.0832988 0.0437099 +-0.0212803 0.0387041 -0.0133833 +-0.0770943 0.154164 -0.0118975 +-0.0484907 0.0833394 0.0445457 +-0.0238036 0.0798229 -0.0381557 +-0.0372926 0.0394674 -0.0291193 +-0.00273038 0.0683735 -0.0347173 +-0.0659296 0.14253 0.0416232 +0.0452769 0.0467388 0.0283148 +-0.0898014 0.11587 0.00528404 +0.0263587 0.0577877 0.0432503 +-0.0486968 0.067904 -0.0141574 +-0.0893812 0.113196 0.0217139 +-0.0841444 0.110242 0.00330414 +-0.0631329 0.17411 -0.0535854 +0.0348962 0.0387881 -4.46661e-05 +0.0431163 0.0888383 0.0261767 +-0.0444887 0.166716 0.00379579 +-0.0235591 0.0953745 -0.0271663 +0.0455985 0.0918132 0.00816712 +-0.0917403 0.12555 0.0418871 +-0.0890224 0.136404 0.0092064 +-0.0364114 0.175555 -0.00996795 +-0.0345906 0.0727451 -0.0199624 +0.0429111 0.040977 0.0196984 +0.00148534 0.0385845 0.0464325 +-0.0585016 0.0973698 0.0431908 +-0.0484982 0.0819185 0.0441136 +0.00821862 0.116409 0.0384227 +0.0456517 0.0413562 0.00923967 +-0.0769167 0.0873975 0.0382106 +-0.061867 0.101123 -0.0184855 +0.0202898 0.124676 0.0257091 +-0.0101432 0.130124 0.0117041 +-0.0138894 0.183111 -0.0237643 +-0.0707552 0.0792696 -0.0152786 +0.0465284 0.0761532 0.0136843 +-0.0888827 0.140531 0.0122011 +-0.0659605 0.110851 0.0377691 +-0.0638988 0.109582 -0.0144399 +0.0445103 0.0541956 0.0324876 +-0.0545376 0.0335773 0.0172858 +0.0156666 0.0726831 0.0525311 +-0.0224929 0.0448955 0.0530527 +0.00250097 0.0897336 0.0558646 +-0.0427601 0.128938 0.0129983 +-0.0749067 0.100837 0.0372176 +0.0100662 0.0792875 0.0550109 +0.031592 0.0738009 -0.0197207 +-0.0295595 0.111353 -0.0178807 +-0.0265381 0.155425 -0.00506198 +0.0110253 0.0793101 0.0546505 +0.0455932 0.0834007 0.019176 +-0.00963497 0.0389293 -0.00939263 +-0.0740278 0.157006 -0.00316778 +0.026879 0.121193 0.00250168 +-0.0840153 0.1376 0.000355984 +0.00144074 0.0344391 0.0153316 +-0.062494 0.0746373 0.0407954 +-0.0714338 0.100882 0.0394174 +-0.0511894 0.0558131 0.0154354 +0.0142545 0.0887312 0.0523539 +-0.0217647 0.0699552 -0.0378816 +0.042865 0.0958458 -0.000810373 +-0.0225278 0.18149 -0.0200273 +-0.0516224 0.0545433 -0.00792825 +-0.0894416 0.0943032 0.0194238 +-0.0450754 0.033637 -0.0171737 +-0.0189216 0.122512 -0.00768052 +-0.0278603 0.101566 -0.0234492 +0.0273313 0.094554 -0.020088 +-0.0568394 0.145329 0.0319256 +0.0299199 0.11779 -0.000781916 +0.0345811 0.0368089 0.0162808 +0.0130795 0.0927597 -0.0282037 +0.0239979 0.0768543 0.0488301 +-0.0560741 0.15232 0.0295584 +-0.0713082 0.165213 -0.0459899 +0.0214853 0.0948038 0.0473574 +-0.0124976 0.0472007 0.0479814 +0.0101747 0.096292 -0.0259611 +-0.0424942 0.0916602 0.0426604 +-0.000674255 0.10997 -0.0204918 +-0.0731036 0.0721584 0.0326952 +-0.0863191 0.0806349 0.0164939 +-0.0174959 0.0984963 0.0451272 +-0.0516134 0.0334804 0.007228 +0.0210892 0.0521114 0.044364 +-0.0767842 0.155599 0.0119802 +-0.0737106 0.0699801 -0.00251138 +0.0277999 0.0727164 0.0436883 +0.0605691 0.0637105 0.0171755 +-0.0720961 0.156364 0.000513559 +-0.0818934 0.154016 0.0102104 +-0.0184806 0.169783 -0.0146335 +-0.073631 0.173473 -0.03767 +-0.0385075 0.0888951 0.0435504 +-0.056184 0.0374619 -0.0105738 +-0.0164629 0.0616668 0.0525376 +-0.0214965 0.0525299 0.044709 +-0.0324599 0.0722556 -0.0254696 +-0.0781568 0.167257 -0.0305864 +-0.0633087 0.117017 0.0436447 +-0.084428 0.138004 0.0455627 +0.0287818 0.0480764 -0.0117305 +-0.0706135 0.175903 -0.0451833 +-0.0430742 0.0335089 -0.0222312 +0.0203664 0.0506236 -0.0244327 +-0.0807714 0.153393 0.00628177 +-0.0784635 0.138605 0.0489019 +-0.0754126 0.068174 0.019879 +-0.0105025 0.0773598 0.0576687 +-0.0399608 0.0418525 -0.0253044 +-0.0880973 0.137764 0.00820327 +-0.0862825 0.106347 0.0193454 +-0.0114851 0.123708 0.0326887 +-0.00700917 0.0348727 0.042072 +-0.0760973 0.0851761 -0.013541 +0.0421377 0.0912242 0.0276147 +0.0298218 0.119509 0.00500708 +-0.0550443 0.148674 -0.00204704 +-0.0107558 0.0386486 -0.0149703 +0.00849857 0.118254 0.0373924 +0.0373294 0.0848074 0.0364738 +0.0506886 0.0511228 0.0274131 +-0.0538924 0.106961 -0.0186698 +-0.0735555 0.105459 0.0371635 +-0.0532563 0.0343869 0.0309731 +-0.015483 0.0938222 0.0546278 +0.0454513 0.052559 0.0321398 +0.032601 0.100801 0.0367685 +-0.0688527 0.142579 0.0444582 +-0.0908832 0.150197 0.0161314 +-0.0811312 0.129963 0.0524484 +0.00846909 0.111301 0.0401143 +-0.0622744 0.0344133 0.0342699 +-0.0343155 0.0340522 0.0192395 +-0.0869096 0.111745 0.0223587 +0.0507656 0.0446256 0.0152142 +-0.0767707 0.151403 -0.00690852 +-0.00150011 0.103045 0.0440564 +-0.051019 0.147224 -0.00224048 +-0.025918 0.122982 0.0235755 +-0.0527617 0.0461943 0.0216742 +-0.0178184 0.0841429 -0.0390768 +-0.0345091 0.0461323 0.043875 +-0.0623881 0.149093 -0.0125752 +-0.0809179 0.0761444 0.0241516 +-0.00945917 0.175708 -0.0257473 +-0.0334992 0.0704401 0.0410454 +-0.0886682 0.141939 0.0121971 +-0.0120612 0.0383071 0.0127308 +-0.0853843 0.0980412 -0.000554198 +-0.0325205 0.0646875 0.0393461 +0.0503466 0.0615208 -0.00363326 +0.00449283 0.103624 -0.0217086 +-0.0698084 0.085099 -0.0171261 +0.0438316 0.0832073 0.0263179 +-0.0486418 0.0576652 -0.0108452 +0.0123248 0.0609207 -0.0293142 +0.0429772 0.0902337 -0.00478341 +-0.0619824 0.166238 -0.0535924 +0.0140441 0.0406072 0.0445814 +0.00249558 0.116934 0.0396534 +0.018473 0.0989902 0.0468145 +-0.0169827 0.0385945 -0.00497776 +0.0309161 0.0955754 0.0413413 +-0.0735982 0.110276 0.0438156 +-0.0903629 0.11521 0.0252935 +-0.0566835 0.124286 -0.00724626 +-0.0620082 0.134045 -0.00734981 +0.00521493 0.0852237 -0.0334342 +-0.0903999 0.124268 0.0448512 +0.0114719 0.1182 0.0365719 +0.0344326 0.0414166 -0.00330414 +-0.0403754 0.124077 -0.00919956 +0.0484547 0.0702338 0.00359645 +-0.0285016 0.113902 0.0349068 +-0.0526285 0.0596472 0.0276152 +-0.0325191 0.174119 -0.0148634 +-0.0204902 0.108532 0.041306 +0.010276 0.076623 0.0552854 +0.0133781 0.0537725 -0.0285433 +0.0402901 0.0698645 0.0318359 +0.0401742 0.0671588 0.0316675 +-0.0866887 0.120341 0.0484058 +0.0245253 0.0875975 0.0479106 +-0.050498 0.0890212 0.0452499 +-0.0598028 0.0853759 -0.0202992 +0.0354525 0.106753 -0.0069512 +0.0111874 0.0630268 0.0529412 +-0.0416003 0.12872 0.00602836 +0.0443487 0.0533892 -0.00643258 +-0.0229394 0.0985982 0.0448104 +-0.0678177 0.0894605 -0.0172539 +-0.0826703 0.0762102 0.00250991 +-0.0152189 0.172708 -0.0246075 +-0.0748382 0.0978559 -0.0133191 +0.0284295 0.0955564 0.0430179 +-0.04802 0.136068 0.0153684 +-0.0475691 0.0489734 -0.00936479 +-0.0813576 0.0734641 0.0155425 +-0.07594 0.14997 -0.0178724 +-0.0649871 0.152354 -0.0372683 +-0.0229947 0.122243 0.0275866 +-0.0108296 0.0855471 -0.0384547 +-0.0447583 0.0336472 -0.00973579 +-0.041838 0.0942787 -0.0228038 +-0.038857 0.101401 -0.0214118 +0.00839351 0.0342854 -0.0184828 +0.0436422 0.0748109 -0.00280304 +0.00409443 0.101828 -0.021842 +-0.0194474 0.054231 0.0477027 +0.0410346 0.0752467 0.03121 +0.0588047 0.0677091 0.00614939 +0.021598 0.10091 -0.0208238 +-0.0696323 0.156261 0.0232204 +-0.086966 0.0846591 0.00747852 +-0.0660124 0.176151 -0.0507054 +0.0425261 0.101486 0.00616657 +0.0305131 0.0418181 0.0291512 +-0.0554982 0.113948 0.0354054 +-0.0763852 0.108818 0.0389983 +-0.0785959 0.152697 0.00118419 +0.0184567 0.127794 0.00934393 +0.0105917 0.043143 0.0448676 +-0.0719858 0.0346482 0.00381826 +-0.0341243 0.0335931 -0.0280196 +-0.0564439 0.115317 0.036137 +-0.0928438 0.126838 0.0112559 +-0.0661071 0.164936 -0.0219713 +-0.0665376 0.142546 0.0425061 +-0.0167827 0.0388081 0.0329676 +-0.0614351 0.156032 0.020314 +0.0388231 0.106965 0.0221712 +0.0247856 0.0449735 0.0390757 +-0.0324984 0.0788891 0.0412743 +-0.068331 0.155325 0.0280685 +0.0267262 0.114038 0.0335472 +-0.0888783 0.111909 0.0103621 +-0.0772308 0.0920788 -0.012603 +0.0457689 0.0431024 0.0219801 +0.0474981 0.0737139 0.0139878 +-0.061487 0.0746791 0.0411579 +-0.0861526 0.148758 0.00721004 +0.0341879 0.0913684 -0.0166968 +-0.0200728 0.100101 -0.0240875 +-0.0286491 0.125506 0.0152069 +-0.0268606 0.0378639 0.0137313 +-0.0352216 0.0346633 0.0327857 +-0.0444613 0.12936 0.0182577 +0.0373383 0.0740435 0.0363986 +0.00751373 0.0869673 0.0561316 +-0.0888328 0.0942898 0.0224093 +0.00897858 0.127106 -0.00499333 +0.0363106 0.0994119 0.033375 +-0.0448194 0.0913346 -0.0221278 +0.000368669 0.0466323 -0.0286891 +-0.0606782 0.0639978 0.0300882 +-0.0735086 0.078138 -0.0125733 +-0.0358361 0.11045 -0.0189078 +0.0300578 0.0632721 0.0416198 +0.0173543 0.0349384 0.0362289 +-0.0104845 0.10863 0.0429333 +-0.0265155 0.115287 0.0336658 +0.0257868 0.0967214 -0.0203669 +0.0255714 0.119263 0.0291067 +-0.0404457 0.119913 -0.0128413 +-0.0596429 0.0622343 0.0265494 +-0.0522074 0.122732 -0.00965468 +0.00419216 0.0340885 -0.0190827 +-0.0614977 0.108395 0.0385563 +-0.0154933 0.0392591 0.0382209 +0.0568425 0.0592039 0.0011688 +0.033494 0.0619462 0.0395497 +0.0378948 0.0699732 0.0354084 +-0.0643687 0.155314 0.00767719 +-0.017163 0.124753 -0.00408239 +-0.0892062 0.128127 0.00426293 +-0.058497 0.101559 0.0426268 +-0.00170163 0.130406 0.0219933 +0.0258358 0.123453 0.0120756 +0.0200283 0.102079 0.0449293 +-0.0034976 0.0965806 0.0535793 +-0.0805988 0.090913 -0.0086158 +0.0307316 0.091606 0.0428217 +0.0293141 0.095566 0.0425395 +0.011103 0.0779768 0.0547588 +-0.0912353 0.14886 0.0211316 +0.0484812 0.0443317 0.021366 +-0.00581925 0.0868408 -0.0369183 +-0.0454559 0.0902978 0.0432333 +-0.0346794 0.119765 -0.0106544 +-0.00349323 0.113677 -0.0184484 +-0.0434907 0.101526 0.0420227 +-0.0385061 0.0986889 0.0419871 +-0.0599081 0.112539 -0.0152225 +-0.0242322 0.124794 -0.000701199 +0.0400813 0.104202 0.0221684 +-0.0828121 0.0830332 0.030132 +0.0159137 0.128436 0.00413586 +-0.0645186 0.0597262 0.00993302 +-0.0324512 0.0353306 -0.0309147 +-0.0484861 0.137101 0.00939484 +-0.0304745 0.0860755 0.0433189 +0.0188415 0.121733 -0.00718615 +-0.0643746 0.145275 -0.0151376 +0.0208541 0.11855 -0.00976629 +0.037465 0.0434297 0.0291248 +0.0517879 0.0461689 0.0072143 +-0.0837871 0.0829476 0.0282971 +-0.0917215 0.129668 0.0302355 +-0.0261628 0.0674202 -0.0335157 +-0.0631555 0.156855 -0.014582 +0.043463 0.077603 -0.00378219 +-0.0602407 0.058232 0.0121428 +-0.0458636 0.102811 -0.0213024 +-0.038884 0.108506 -0.019659 +-0.0705258 0.142815 0.0451961 +-0.0781039 0.070111 0.0193756 +-0.0758474 0.109198 0.0406016 +-0.0318501 0.0986369 -0.02282 +-0.038215 0.0471675 -0.018189 +-0.0134374 0.0516868 0.0502089 +0.0151412 0.0754034 0.0535569 +-0.043493 0.105703 0.0408668 +-0.0822959 0.0773319 0.0228488 +0.0452717 0.0903987 0.0151606 +0.0159567 0.120613 0.0338084 +-0.0623049 0.142641 -0.00633906 +0.000467241 0.105823 0.0432483 +-0.0177409 0.0671746 -0.0379913 +-0.0891252 0.0889064 0.0184472 +-0.0678748 0.125664 0.0510849 +-0.0337468 0.127104 0.0118588 +-0.0518684 0.102767 -0.0207881 +0.00221584 0.0364728 0.00081639 +-0.0296253 0.0759773 0.0411397 +0.00226876 0.0682822 -0.0333186 +-0.0542457 0.0574384 0.01981 +-0.0659991 0.136994 -0.00799651 +-0.00357593 0.127459 -0.0052112 +0.0103564 0.0538895 -0.0297771 +0.0272815 0.0718243 -0.0235929 +-0.0123281 0.0344052 -0.018857 +0.0416155 0.0404142 0.0199255 +-0.0106878 0.0598858 -0.0348312 +-0.0305006 0.116618 0.0322439 +0.0427332 0.084569 0.0284544 +-0.0712328 0.151001 -0.0437008 +0.0423623 0.0944394 0.0261744 +-0.000687654 0.0583509 -0.0327859 +-0.0779789 0.136876 -0.0051311 +-0.0657518 0.0780369 -0.0174491 +-0.0789069 0.155396 0.0141592 +-0.0701046 0.156748 -0.048906 +0.0281353 0.0593598 -0.0207767 +-0.066567 0.147777 -0.0287654 +-0.0167976 0.0383562 0.00264497 +-0.0708835 0.160996 -0.0449446 +0.0230988 0.111339 0.037076 +-0.0237033 0.091176 -0.0348871 +-0.0477118 0.073839 -0.0167643 +-0.0540526 0.0334248 -0.00589512 +-0.0535445 0.0389126 -0.0111352 +0.00251277 0.0675114 0.055914 +-0.0324736 0.0532348 0.0372028 +-0.0416459 0.056333 -0.0114534 +-0.0460476 0.0363198 0.0451262 +-0.0215027 0.163915 -0.00845889 +-0.0530817 0.139518 0.0266624 +-0.00971954 0.0656257 -0.0358484 +-0.0175293 0.038199 0.0153321 +-0.0388176 0.128112 0.00411022 +-0.0579212 0.120852 -0.00959233 +-0.0215953 0.03793 -0.0285032 +0.00849245 0.0473031 0.0488481 +-0.045123 0.157633 -0.00869072 +-0.0845016 0.0911794 -0.00456302 +-0.0130394 0.0384127 0.00153612 +-0.0054932 0.111405 0.0422861 +-0.00614297 0.0385457 0.0227705 +-0.0588822 0.108299 -0.017343 +-0.0647452 0.0766241 -0.0174472 +0.0333079 0.0768384 0.0411622 +-0.0345058 0.0704863 0.0415356 +-0.00385823 0.0988046 -0.0266644 +-0.0940576 0.125561 0.0242759 +-0.0406606 0.156554 0.00601794 +0.0458479 0.0724092 0.00333418 +-0.0536298 0.0345249 0.0429297 +0.0422446 0.0760949 -0.00580476 +0.0305908 0.106106 0.0356297 +-0.0744956 0.13026 0.0524093 +-0.060795 0.0853339 -0.0197774 +-0.0659276 0.123847 -0.00897257 +-0.0587952 0.0334058 0.000425547 +-0.0355002 0.111108 0.0360398 +0.0106562 0.0589179 0.0524466 +0.0220342 0.108737 -0.0152173 +0.0414017 0.104253 0.00516521 +-0.0487319 0.132909 0.0254731 +-0.073147 0.0648981 0.0178865 +-0.0655672 0.149686 0.0379738 +-0.0866855 0.14466 0.00818677 +-0.0690156 0.163795 -0.0519803 +0.0474899 0.0664975 0.0274045 +-0.0693729 0.175081 -0.056043 +-0.0811978 0.140383 -0.00182247 +-0.0609117 0.111106 -0.0154828 +-0.027448 0.125478 0.0053817 +-0.0601827 0.0460596 0.0101722 +-0.0116048 0.0377441 -0.0259987 +-0.0623577 0.147557 -0.00658086 +-0.0635933 0.167459 -0.0411888 +-0.0420303 0.153306 -0.00761985 +0.0045298 0.102977 0.0440255 +-0.0571296 0.124118 0.0402058 +-0.010491 0.0487865 0.0492904 +-0.00149595 0.0911539 0.0561263 +-0.0644925 0.0903995 0.0447493 +-0.0621097 0.156825 -0.0345957 +-0.0626845 0.0455625 -0.000282658 +-0.054778 0.0344845 0.0375447 +-0.0704967 0.156763 -0.0469167 +-0.0501084 0.0429877 0.0445637 +-0.074873 0.120838 -0.00772479 +0.0354301 0.112103 0.00127449 +-0.0218649 0.103029 -0.0235712 +-0.09096 0.148814 0.0141536 +-0.0645626 0.0459512 0.00669838 +0.0314584 0.111437 -0.00809824 +-0.022876 0.0362943 -0.0189473 +-0.0428901 0.0435976 -0.0193145 +-0.0746823 0.0663852 0.00625465 +-0.0476209 0.0547841 -0.0103184 +-0.0197585 0.171251 -0.0147167 +-0.0705035 0.0901829 0.0418541 +0.0494272 0.0628335 -0.00296645 +0.0266028 0.105322 -0.0155495 +0.0202061 0.126966 0.0100746 +0.013717 0.127103 0.0275992 +0.00956448 0.122301 -0.0117968 +-0.0846111 0.084433 -0.00253466 +-0.0889485 0.13651 0.0272017 +-0.000398103 0.0385343 0.0221462 +0.0428913 0.0402636 0.016655 +-0.0531156 0.156084 -0.00339606 +-0.0586999 0.141645 -0.00399496 +0.0175889 0.0549386 0.0481228 +0.0242735 0.0576737 -0.0247443 +-0.0435028 0.0548283 0.0392794 +-0.0509876 0.0343016 0.0280109 +-0.0371778 0.128019 0.00618657 +-0.067159 0.152634 -0.0476967 +-0.0524481 0.115128 -0.0157418 +-0.00787248 0.0390234 0.0328097 +-0.0368889 0.109941 -0.0191779 +0.0473251 0.0497353 0.0295737 +-0.0155015 0.10721 0.0425067 +-0.0607907 0.0609394 -0.0015406 +0.0214998 0.0358071 0.0181694 +-0.0152794 0.114388 -0.017154 +-0.0618553 0.153745 -0.0235803 +-0.00541506 0.100313 0.0476265 +0.0438051 0.0987511 0.0101628 +-0.0274965 0.0973724 0.0435854 +0.0448746 0.0601039 -0.00424277 +0.031559 0.0460718 0.0312637 +-0.0615188 0.0448284 0.0115308 +-0.0397761 0.115072 -0.015742 +-0.0918654 0.131039 0.0272344 +-0.0646035 0.156332 -0.00986181 +0.0383993 0.0413521 -0.00190432 +-0.026722 0.0386646 -0.0162927 +-0.0736148 0.0995067 0.0387799 +0.006499 0.119638 0.036869 +0.0405971 0.101404 0.0241737 +-0.0944613 0.121476 0.0212834 +-0.0105851 0.0337493 -0.0235512 +-0.0799934 0.136838 -0.00393652 +0.0529009 0.0462649 0.0122044 +-0.0539028 0.11125 -0.0176614 +0.00874316 0.130156 0.0228898 +0.0260633 0.114349 -0.00924148 +0.0113837 0.0449118 -0.0251572 +-0.0461015 0.150679 0.0086365 +0.00236523 0.128663 -0.00254763 +-0.0158845 0.0910066 -0.0366604 +0.0456174 0.0890068 0.0121612 +-0.0634393 0.144588 -0.0113838 +0.0175304 0.120577 0.0333463 +-0.0256229 0.0463679 -0.0270847 +-0.0606463 0.0343588 0.0329219 +-0.0622926 0.149098 -0.0115749 +-0.0266239 0.0463597 -0.0270834 +0.0142234 0.0864184 -0.0301272 +-0.0242795 0.0383175 -0.000652306 +-0.0599506 0.0340585 0.0228145 +-0.031899 0.0595768 -0.0154053 +0.0335035 0.0686838 0.0396083 +-0.00350655 0.105885 0.0441283 +-0.00849376 0.0576353 0.0542501 +-0.0596861 0.0693591 -0.0143393 +-0.0246408 0.0382637 -0.00251941 +0.0142384 0.0723592 -0.0308856 +0.0360996 0.112682 0.0101589 +0.00650478 0.0989998 0.0481043 +-0.0406764 0.0344836 0.0353061 +0.0208126 0.114503 -0.0133998 +-0.0664042 0.0385079 0.0306689 +-0.00851871 0.0471234 0.047663 +-0.0607941 0.143953 0.0367655 +-0.0469959 0.06153 0.0374819 +-0.0566078 0.0521283 0.00668717 +-0.0117953 0.0827249 -0.0387188 +-0.0651684 0.0346977 0.0334093 +0.0334291 0.0781951 0.0413414 +-0.00319773 0.0384234 0.00715593 +-0.0255204 0.115294 0.0339151 +-0.070852 0.100833 -0.0142398 +-0.0647775 0.0824087 -0.0188685 +0.0351918 0.0673501 0.0385292 +-0.0201767 0.0929008 -0.0346271 +-0.0292631 0.0351386 0.0510616 +-0.0487306 0.0345868 0.0335095 +-0.0909618 0.13376 0.0242167 +-0.0399614 0.0343338 -0.0130933 +0.0409886 0.0643095 0.0292691 +-0.0656099 0.0655077 0.0295065 +0.0113576 0.0509388 -0.0282254 +-0.0831709 0.101988 -0.00359129 +-0.0345055 0.113874 0.0339275 +0.0308648 0.0460986 0.0320207 +-0.023595 0.180085 -0.0196757 +0.056025 0.0493916 0.0151904 +-0.0805557 0.0977534 -0.00758611 +0.0084218 0.0346373 0.0418695 +-0.0774116 0.159696 -0.0249188 +0.0602932 0.0636878 0.00814035 +-0.0302474 0.125253 0.00290344 +-0.0741812 0.074527 0.0339368 +-0.0636646 0.15831 -0.045603 +-0.0332687 0.15271 -0.00392746 +0.0267163 0.0450608 -0.00869474 +0.0351226 0.0921155 -0.0154837 +-0.0278275 0.158128 -8.54892e-06 +-0.0771542 0.152814 -0.00588992 +0.00726262 0.0682112 -0.0321527 +-0.0590296 0.0424919 -0.00727859 +-0.0604873 0.0987275 0.0428004 +-0.0916073 0.128323 0.0352449 +0.0474407 0.0661575 -0.000283122 +0.03984 0.106962 0.00517391 +-0.0609078 0.155801 0.00889681 +-0.00849418 0.114178 0.0409373 +0.00894357 0.0819404 0.0551438 +-0.0767684 0.0756527 -0.0076025 +-0.0670227 0.0607355 0.00842954 +-0.0186908 0.0510113 -0.0307584 +-0.0706351 0.0733936 -0.01149 +-0.026674 0.0382695 0.00254021 +0.0585127 0.0649229 0.00410871 +0.0241246 0.0605253 0.0453245 +0.0172623 0.073643 -0.0290458 +-0.0564969 0.111123 0.0367634 +0.0543584 0.0674371 0.0258007 +-0.0511173 0.128308 0.0330935 +-0.075231 0.151315 -0.0248804 +-0.0492462 0.132382 0.000177088 +-0.0694944 0.11756 0.0525327 +-0.0721635 0.113702 0.0503204 +-0.0647819 0.0809531 -0.0185144 +0.00336694 0.130688 0.00234495 +0.0243671 0.0699418 0.0457082 +-0.000607851 0.0448652 -0.0263872 +-0.0506782 0.141637 0.0173818 +-0.0618089 0.0881716 -0.0191682 +-0.0886021 0.087516 0.0174642 +0.011433 0.034701 0.0261941 +-0.0405676 0.171048 0.000226569 +0.0111139 0.110132 -0.0191278 +0.0136046 0.121889 0.0339065 +-0.0107442 0.0742291 -0.0379783 +0.0438711 0.0959127 0.00218342 +-0.0299153 0.155169 -0.001314 +-0.0469317 0.0369443 -0.0162782 +-0.0887949 0.142048 0.03516 +-0.0459209 0.0346888 0.0375199 +-0.0022788 0.119988 -0.0131916 +0.00522675 0.0768423 -0.034472 +-0.0277078 0.0725313 -0.0348614 +-0.0679296 0.125304 -0.00887173 +-0.0528849 0.101359 -0.0212107 +0.0356786 0.076967 -0.014745 +-0.0567974 0.0854612 -0.0213212 +0.00206285 0.121236 -0.012553 +-0.0659186 0.159142 -0.0118027 +-0.0857862 0.0939971 -0.00056361 +-0.0318889 0.124978 0.0199371 +0.0110379 0.0712445 0.0546046 +-0.043282 0.147753 0.00390043 +0.0142589 0.0737441 -0.0304465 +-0.037534 0.168232 0.00175297 +0.0421124 0.0467315 0.0307997 +-0.0195242 0.0336044 -0.023287 +-0.0581683 0.0606896 -0.00283185 +-0.0892904 0.149814 0.024685 +-0.0328117 0.0335416 -0.0258378 +-0.0534094 0.150878 0.0234093 +0.0224588 0.120521 -0.00588511 +0.0297724 0.0549903 0.0393628 +-0.0689711 0.136995 -0.00816407 +0.0327608 0.11383 -0.00261931 +-0.0138771 0.164812 -0.0186885 +0.00401259 0.0341521 0.00329327 +-0.0776837 0.154812 0.0263001 +-0.0617213 0.0781294 -0.0185002 +0.0405341 0.105626 0.00416435 +-0.033143 0.157873 -0.0118064 +-0.0244152 0.0723023 0.0471532 +0.000983167 0.0373381 0.00163376 +-0.0227666 0.126779 0.0143916 +-0.0151278 0.128803 0.00988702 +0.000514565 0.0717586 0.0570729 +0.0202169 0.0591906 0.0484605 +-0.0591321 0.0334434 -0.0069378 +-0.0338188 0.0345795 0.040191 +-0.000499113 0.11695 0.0400287 +-0.0463678 0.13079 0.00400616 +0.0171482 0.0349466 -0.009792 +-0.064905 0.0607648 0.0196679 +-0.0624362 0.150651 -0.0105777 +-0.0354607 0.154847 -0.00919588 +-0.0211471 0.0377711 0.0538261 +-0.0691709 0.147293 -0.0286567 +-0.0360974 0.127648 0.0124754 +-0.0776508 0.151441 -0.00388634 +0.0365033 0.0512847 0.031619 +0.0193623 0.0370952 -0.00967348 +0.0153438 0.0522442 -0.0271619 +-0.0174947 0.0815257 0.0576296 +-0.0629203 0.122369 -0.00879811 +0.0168951 0.128644 0.0116162 +0.0397845 0.0699028 0.0328672 +0.00847616 0.0963576 0.0505263 +-0.0532837 0.0454354 0.0434394 +-0.0154326 0.0388218 -0.0141873 +0.058968 0.0691324 0.00813536 +-0.0155327 0.116851 0.0372458 +-0.0261049 0.0632214 -0.0314499 +-0.0580383 0.122682 0.0406302 +-0.0153478 0.0972963 0.0501876 +-0.0480268 0.116533 -0.0152488 +-0.0440293 0.0378087 0.0445145 +0.0122229 0.0822322 -0.030844 +-0.00477881 0.0390844 -0.0104359 +-0.0106511 0.0496684 -0.0311061 +-0.0197213 0.123533 0.0272668 +-0.000499702 0.119705 0.0381547 +-0.0497662 0.165331 0.00186024 +0.0034577 0.0989815 0.0493164 +-0.0623164 0.153672 -0.0306063 +-0.0676947 0.134039 0.046063 +-0.0536041 0.0588172 -0.00776341 +-0.0774688 0.144183 0.0446652 +-0.054123 0.064196 0.0330627 +-0.0515128 0.0452783 0.043411 +-0.0216106 0.0422609 -0.0287762 +-0.0721201 0.0655088 0.0210948 +-0.0214414 0.0682091 0.0499624 +0.0246691 0.103387 0.0411037 +-0.0584632 0.0480819 0.000648377 +-0.0193941 0.113623 -0.0183331 +-0.0642327 0.0431706 0.0367918 +-0.0673041 0.044774 0.00468689 +0.00124491 0.0726488 -0.0351082 +0.0293752 0.0646271 0.0424024 +0.0334188 0.0399387 -0.00226403 +-0.0648162 0.092445 -0.0185198 +-0.0588392 0.0371017 0.0463605 +-0.0464973 0.113852 0.0344899 +-0.0253214 0.158135 -0.00165461 +0.0565751 0.0564133 0.00219071 +-0.0628971 0.106793 -0.0162163 +-0.0672273 0.135447 0.0449702 +-0.0874127 0.118983 0.0477049 +0.0264339 0.0415833 -0.00518191 +-0.0649816 0.114139 0.0429675 +-0.087689 0.0861087 0.0184696 +-0.0759388 0.151364 -0.016882 +-0.00938485 0.0992897 -0.0251913 +-0.0906583 0.12815 0.00627512 +0.0420818 0.101483 0.016165 +-0.0366993 0.124957 -0.00615077 +0.0344101 0.0633165 0.0391255 +0.0312208 0.0578184 0.0397344 +-0.0245116 0.0679611 0.0445844 +-0.0494967 0.0932039 0.0445022 +-0.0762012 0.149986 -0.0138757 +-0.0469178 0.060141 0.0374462 +-0.0939221 0.128285 0.0202478 +-0.0488103 0.0898531 -0.0217755 +-0.013542 0.129298 0.0162538 +0.0557083 0.0616421 0.000366134 +0.0340796 0.0848941 0.0405554 +0.0303873 0.0525299 -0.0147333 +0.0173214 0.127268 0.00181685 +-0.0623602 0.164675 -0.0475927 +-0.0633366 0.0613129 -0.000511486 +-0.0663574 0.0370366 0.0151548 +-0.0567588 0.053509 0.00466959 +-0.082746 0.0802849 -0.00049163 +-0.00173892 0.0697883 -0.0347021 +-0.0444708 0.0888726 0.0431834 +-0.0676524 0.0720092 -0.0120172 +0.0578262 0.0552267 0.0219335 +-0.0418656 0.104235 -0.0206965 +0.0300166 0.0708304 -0.0207823 +-0.0533336 0.128311 0.0351755 +-0.0275965 0.0836272 0.048557 +-0.0894883 0.139285 0.0301857 +0.0461177 0.0511569 0.0313544 +0.0505588 0.0711508 0.00463977 +-0.0653079 0.154958 0.0291369 +-0.0185448 0.0460852 0.0515079 +-0.0843685 0.105877 0.0253348 +-0.0875722 0.151019 0.0254764 +-0.0711952 0.0805577 0.0397762 +0.0367726 0.100261 -0.0101361 +0.0280869 0.0432543 0.0332457 +0.000487446 0.041412 0.0465786 +-0.0266388 0.038336 -0.00299264 +-0.00342216 0.0391144 -0.00832149 +-0.0611289 0.0344725 0.039662 +-0.0517362 0.0738243 -0.0167692 +-0.0804236 0.104574 -0.00559216 +-0.0319013 0.0525534 -0.0124561 +-0.0616634 0.0612417 -0.00198952 +-0.0659473 0.151954 -0.0393992 +0.0336372 0.112962 -0.00230707 +-0.0699642 0.138462 -0.00776795 +0.00139789 0.0405023 -0.0245871 +-0.059508 0.0890036 0.0450344 +-0.0550222 0.141298 -0.00203484 +-0.0720681 0.0805547 0.0392361 +0.0126182 0.0846922 0.0534757 +0.0593665 0.0622129 0.00511321 +-0.0924363 0.118744 0.0263157 +-0.0166806 0.0510876 -0.0315182 +0.0119118 0.0342207 -0.00263798 +-0.0646486 0.156189 0.0162701 +-0.022872 0.104437 -0.0231879 +-0.0799264 0.129511 -0.00520384 +0.0394641 0.063132 0.032359 +-0.0114897 0.0951792 0.0542781 +-0.0474976 0.111158 0.0371638 +-0.0683525 0.155277 0.00186884 +-0.000867993 0.104495 -0.0223762 +-0.0462686 0.12794 -0.00315273 +-0.0306198 0.11135 -0.017885 +-0.0420238 0.0464078 -0.0143471 +-0.0115071 0.0801438 0.0578104 +-0.00552471 0.130134 0.0220582 +0.0553699 0.0651884 0.000788532 +0.000971023 0.0370418 -0.0149189 +-0.0695999 0.162389 -0.0499627 +-0.0593254 0.0447426 0.0431798 +-0.0163529 0.16023 -0.0109161 +-0.0074892 0.108662 0.0435531 +-1.59767e-05 0.130672 0.0211571 +-0.0414957 0.0762285 0.0430404 +-0.00181283 0.0854279 -0.036655 +-0.0573252 0.157131 0.000943525 +-0.0582662 0.0597287 0.0219286 +-0.0158083 0.0827626 -0.0393641 +-0.0636754 0.156752 -0.0416076 +-0.0399677 0.0461402 -0.0203282 +-0.025156 0.16972 -0.0189618 +-0.0527747 0.0826622 -0.0215537 +0.0251411 0.10209 0.0417928 +-0.043632 0.0462886 -0.0112814 +-0.0620154 0.164635 -0.0555847 +0.0104502 0.0343141 -0.0181143 +-0.0391566 0.162183 -0.0124024 +-0.0483573 0.129635 0.0282843 +0.00538744 0.0448871 -0.0255741 +-0.0054947 0.0533903 0.0535249 +-0.00732851 0.0942973 -0.033961 +-0.0241934 0.0388427 0.0350005 +-0.0181599 0.0393223 0.0394029 +0.0346554 0.10439 -0.0105413 +-0.0459466 0.0345121 -0.0200076 +-0.0409396 0.168342 -0.0108401 +0.0103005 0.0624571 -0.0307796 +-0.0681652 0.158429 -0.00684039 +-0.00243741 0.0385239 0.0217416 +0.060795 0.0623425 0.0151668 +-0.0927217 0.128206 0.0112525 +-0.0740576 0.168348 -0.0248615 +-0.0345432 0.114978 -0.015669 +-0.0591204 0.0334451 -0.00148219 +-0.0599836 0.043576 0.0142711 +-0.0568374 0.0898133 -0.021762 +-0.0727774 0.16869 -0.0244081 +-0.00877695 0.169647 -0.023748 +-0.0733702 0.171289 -0.0318245 +-0.0533609 0.033209 0.01963 +-0.012858 0.0386932 -0.00424091 +0.0446984 0.0804984 -0.000780025 +-0.0604981 0.105663 0.0403307 +-0.0437727 0.082626 -0.0206932 +-0.0251898 0.0388783 0.0347661 +-0.00550353 0.0561986 0.0539335 +-0.0649478 0.164181 -0.0229827 +-0.0145881 0.165422 -0.0124907 +-0.0415058 0.0577139 0.0401965 +0.0385298 0.0631329 -0.0097765 +-0.0643222 0.166215 -0.0313693 +-0.0769851 0.0690914 0.0187275 +-0.013127 0.120519 -0.0116431 +-0.0624813 0.156041 0.0199412 +-0.0475747 0.0390527 -0.0120963 +0.0154157 0.0433241 -0.0236953 +-0.00124361 0.130098 0.0236021 +-0.00149237 0.118319 0.0391398 +-0.0454304 0.130382 0.00608349 +0.0094151 0.117047 -0.0161127 +-0.0370213 0.0344129 0.0343812 +-0.0266349 0.121939 -0.00696588 +-0.0514954 0.0833657 0.0447762 +-0.0661547 0.1622 -0.0162285 +0.0354074 0.0446129 -0.00524037 +-0.0839561 0.144602 0.00415973 +-0.0114934 0.104435 0.0434539 +-0.0811445 0.153633 0.00754624 +0.0416181 0.0637615 0.0286411 +0.0336503 0.0646637 0.0398008 +0.00904657 0.129598 0.024451 +-0.075728 0.151337 -0.0208826 +-0.047856 0.132056 0.00259359 +-0.0635915 0.15525 -0.0109401 +-0.025528 0.0383109 0.0298198 +-0.0664625 0.145705 -0.0206681 +-0.0675712 0.139722 0.0445155 +-0.0630199 0.134039 -0.00765574 +-0.0859393 0.101835 0.0256124 +-0.0530219 0.147196 -0.00187885 +-0.00620458 0.038993 0.0313778 +0.0378425 0.10835 0.0231802 +-0.0877357 0.0860979 0.0084778 +0.0064767 0.115498 0.0396093 +-0.027105 0.162286 -0.015104 +-0.0801261 0.144525 -0.00183492 +-0.0858754 0.148602 0.0326009 +-0.060661 0.155018 0.0264156 +-0.0104794 0.0575747 0.0533869 +-0.0433 0.0336903 -0.024306 +-0.0668671 0.0980924 -0.0163226 +-0.0682097 0.171724 -0.0385204 +0.049328 0.0615911 -0.00371844 +-0.059497 0.0861573 0.0445009 +-0.0875265 0.087486 0.0224433 +-0.0660555 0.0600044 0.0111686 +-0.0578054 0.142438 0.0322424 +0.00123277 0.0783068 -0.0354173 +-0.0916354 0.132395 0.0252256 +-0.0117599 0.104933 -0.0231377 +-0.0346346 0.0548282 -0.01038 +-0.0222409 0.0383275 -0.000251248 +0.00824961 0.0725345 -0.0333305 +0.0313861 0.0740897 0.0418701 +0.0164934 0.100411 0.0468922 +-0.0719809 0.156292 0.0165776 +-0.0221908 0.175658 -0.0213821 +-0.00588737 0.108814 -0.0225516 +0.0336337 0.112484 -0.0031866 +-0.0393568 0.123991 -0.00912015 +-0.00841793 0.0387705 -0.00155909 +-0.0431088 0.0347881 0.0415217 +-0.0281377 0.171231 -0.00924208 +0.0317135 0.0955631 0.0407455 +0.0166807 0.124611 -0.00431903 +-0.0923991 0.132355 0.0192227 +0.0141807 0.0900592 0.0522594 +-0.0553478 0.054711 -0.00338754 +-0.0742948 0.147166 -0.0148659 +-0.0210322 0.0623911 0.0469253 +-0.0808524 0.0720445 0.00954101 +0.0185494 0.0379494 0.0423026 +-0.0841291 0.0817203 0.00248105 +0.0309459 0.0700081 0.0411857 +-0.0394974 0.0705046 0.0418138 +-0.0762918 0.169333 -0.0300921 +-0.0537237 0.0477139 0.0256667 +0.0448999 0.0861351 0.000186186 +-0.0313094 0.0384531 -0.00773361 +-0.0305219 0.0474445 0.0454913 +-0.0809514 0.0882189 -0.0076035 +0.0546575 0.0706779 0.0225865 +-0.0414965 0.0986758 0.0418571 +-0.0484435 0.0628471 0.0360579 +0.0594927 0.066407 0.020186 +-0.0627925 0.0838575 -0.0191674 +-0.0214511 0.184864 -0.013038 +-0.0935392 0.129637 0.0202382 +-0.0799546 0.100457 -0.00758867 +-0.0552688 0.126926 0.0376418 +0.0378584 0.0645918 0.0353403 +-0.0361046 0.0383233 -0.0122787 +-0.049226 0.14015 0.0123965 +-0.0164997 0.0938314 0.054193 +-0.0746007 0.0914774 0.0400082 +-0.0791205 0.0709783 0.00599758 +0.0253641 0.0347082 0.00521179 +-0.0594957 0.0918578 0.0453847 +0.0136708 0.0820393 0.0532361 +-0.0193315 0.182966 -0.0230088 +-0.000544127 0.127196 -0.00494172 +-0.030476 0.0664272 -0.0264734 +-0.0734051 0.0674458 0.022683 +-0.0136727 0.0337044 -0.0241151 +0.0214461 0.036336 0.0158614 +0.0583506 0.0662943 0.00413175 +-0.0639059 0.118033 -0.00945272 +-0.0454908 0.0987379 0.0426533 +-0.0318359 0.0344957 0.0406866 +-0.0657843 0.167288 -0.0290298 +0.0181885 0.053509 0.04724 +-0.0610973 0.169393 -0.058599 +-0.0167464 0.108538 -0.0209441 +-0.0826184 0.0802381 0.0286257 +-0.0731223 0.134062 0.0505767 +-0.0135829 0.03702 0.0510108 +0.0354665 0.0768048 0.0390018 +0.0499493 0.051169 0.0281186 +-0.00858939 0.0389741 -0.00922854 +-0.0482262 0.166987 -0.00394405 +0.000506781 0.0605965 0.0560209 +-0.0571262 0.0333733 -0.00101401 +-0.0527176 0.0611373 0.029069 +-0.0225206 0.0919822 0.0517607 +-0.0727584 0.158224 -0.0349231 +0.0221671 0.123584 -0.0006811 +-0.0697019 0.142554 0.0449861 +-0.0890361 0.146068 0.0101777 +0.0300144 0.0389449 0.0261617 +0.0457459 0.0834058 0.0171675 +-0.0828165 0.0790258 0.0245191 +-0.0216847 0.180158 -0.0138785 +-0.0260473 0.11708 -0.0139183 +-0.0263102 0.123352 0.021955 +-0.026277 0.0795343 0.0501986 +-0.04015 0.0473434 -0.014266 +-0.0911404 0.129685 0.035237 +-0.0376719 0.114063 -0.0167039 +-0.0138183 0.0855391 -0.0388001 +-0.0574963 0.111121 0.0367615 +-0.0459611 0.149058 -0.0040494 +-0.06359 0.153594 -0.035633 +0.0294595 0.116659 -0.00368699 +-0.0465112 0.0491437 0.0387964 +-0.0476612 0.135572 0.0133995 +-0.0122712 0.0385653 -0.000297189 +0.0438612 0.0930832 -0.000804157 +-0.00849948 0.0911907 0.056727 +-0.0554517 0.0444829 -0.0071986 +0.0112279 0.0808839 -0.0317275 +-0.0364414 0.0346808 0.041293 +-0.0768829 0.108524 0.037335 +-0.0212115 0.177139 -0.0220322 +-0.0498078 0.0898419 -0.0216876 +0.00832653 0.130915 0.00561741 +-0.0834391 0.153089 0.025871 +-0.0797915 0.0746069 -0.00248195 +0.0162926 0.0348913 0.030635 +-0.0720312 0.141354 -0.00781974 +-0.0640613 0.0606361 0.00380817 +-0.0616877 0.169385 -0.0545934 +-0.0180884 0.184586 -0.0174536 +-0.083714 0.0804887 0.0254979 +-0.0378459 0.0971527 -0.0224307 +-0.048763 0.120209 -0.0131018 +0.0257432 0.120365 -0.00224906 +0.0155215 0.0490175 0.0450471 +-0.0516538 0.162634 -0.00285466 +-0.00249513 0.0774404 0.0585569 +-0.0676995 0.0606833 0.0155957 +-0.0530523 0.0333885 -0.00566149 +0.00632209 0.0596079 -0.030662 +-0.075813 0.0681115 0.0180714 +0.0416741 0.0642804 0.0284921 +-0.04591 0.132311 0.0103278 +-0.0266282 0.0932643 0.045173 +-0.0409763 0.128303 0.0136557 +-0.0295455 0.0745738 0.040676 +-0.0236123 0.0408478 -0.0290846 +-0.062999 0.13114 -0.0082084 +-0.0282657 0.0357556 -0.0195136 +0.0383138 0.109087 0.0181423 +-0.0225227 0.0903335 -0.0360154 +-0.00581332 0.0840953 -0.0378871 +-0.0560848 0.155673 0.012015 +-0.0384894 0.0436513 0.0409963 +0.0250684 0.0912521 -0.0226015 +0.0327251 0.116757 0.0189485 +-0.00849679 0.081545 0.0579523 +0.00549376 0.116905 0.0389072 +-0.0684642 0.035536 0.0130279 +-0.0274333 0.0808284 0.0484505 +-0.0892338 0.0888828 0.0134587 +0.040773 0.0858024 -0.0107788 +-0.018787 0.0654231 0.0516453 +-0.057411 0.0334884 -0.00846165 +-0.0515646 0.0516091 -0.00736491 +-0.0341101 0.171131 -0.0149349 +0.0224908 0.0672402 0.0465227 +0.00748827 0.048894 0.0505047 +-0.0891497 0.139122 0.0375101 +-0.0324992 0.033739 0.00907408 +-0.00547868 0.112944 -0.019663 +-0.00364368 0.038223 0.0108877 +-0.00888297 0.175714 -0.027834 +-0.0616908 0.156845 -0.0305919 +-0.0454927 0.0747515 0.0421648 +-0.0628753 0.0333858 -0.000385113 +0.0200484 0.122759 0.029923 +-0.0624127 0.150637 -0.0175763 +-0.0772056 0.0717509 -0.00044869 +-0.070203 0.179305 -0.0507979 +-0.021805 0.0812974 -0.0389167 +0.00417139 0.0894659 -0.0333631 +-0.00354618 0.035584 0.0475305 +-0.0881296 0.100997 0.0213597 +-0.0344927 0.0803488 0.0420944 +-0.0142597 0.180104 -0.0279187 +-0.0772012 0.161073 -0.0279344 +0.0267764 0.0373043 0.025139 +-0.0764984 0.127442 0.0532158 +0.0305998 0.0741029 0.0424942 +-0.0429656 0.115061 -0.0157138 +-0.0569157 0.131148 0.0370227 +-0.087746 0.09368 0.0248353 +-0.0282695 0.0620042 -0.0284458 +-0.026741 0.0877745 0.0490115 +-0.0141005 0.0382966 0.0123251 +-0.040335 0.124745 0.0227896 +-0.0176742 0.109826 -0.020315 +0.0100598 0.0371564 0.0309489 +0.0330284 0.116174 0.0204895 +0.0194916 0.111179 0.0380087 +-0.0468321 0.144886 0.00412892 +0.00432629 0.0568097 -0.0310178 +0.0172994 0.0665713 -0.0290602 +-0.0776345 0.165887 -0.0268309 +-0.0754949 0.117024 0.0522099 +0.0129986 0.124708 -0.00640366 +-0.0551543 0.0561755 0.00960447 +0.0258384 0.0659192 0.0443144 +-0.0892157 0.0956404 0.0184193 +-0.062275 0.152174 -0.0245791 +-0.0712276 0.159591 -0.0429327 +-0.0468614 0.102797 -0.0212675 +-0.0888687 0.0942285 0.0104297 +0.00705483 0.113673 0.0402142 +-0.0846088 0.10754 0.00337493 +-0.0567766 0.0840541 -0.0213935 +0.0291103 0.0713139 0.0420683 +-0.0416245 0.172695 -0.00500345 +0.0467254 0.0741323 0.0166809 +0.0182946 0.123502 0.0292701 +-0.032545 0.0821172 -0.0295502 +0.0405942 0.0847142 0.0324234 +-0.063874 0.0967575 -0.0177619 +-0.0200635 0.0385408 -0.00554998 +-0.0617567 0.139364 -0.00656769 +-0.0151158 0.0388065 -0.0122456 +0.0258671 0.111418 0.0358303 +-0.0323169 0.126646 0.013854 +0.0128496 0.0432822 0.0446281 +0.0410596 0.104249 0.0151631 +0.0413114 0.0661977 -0.00477755 +-0.0524783 0.0442541 0.0446515 +-0.00534534 0.0423344 0.0481709 +-0.0154906 0.0587868 0.0517337 +-0.0768702 0.122267 -0.00710647 +0.018318 0.0607989 -0.0274966 +-0.0414689 0.101488 0.0411988 +-0.03948 0.109789 0.0371385 +-0.071689 0.171513 -0.0326505 +-0.0562412 0.0479891 0.0306662 +0.0198041 0.103539 -0.0196351 +-0.06089 0.146655 -0.00344226 +-0.0625194 0.150622 -0.0185752 +0.0162788 0.0421207 0.0443108 +-0.0926435 0.13098 0.0162303 +-0.0102744 0.0864318 -0.0379838 +0.0437196 0.0846401 -0.00379782 +-0.0575438 0.119835 0.0395668 +-0.0312754 0.118165 0.0306394 +-0.0384168 0.120732 -0.0116964 +-0.0133826 0.1039 0.0435877 +0.0232434 0.0804535 -0.0255191 +-0.0102585 0.0379591 0.0497745 +-0.0427371 0.0753968 -0.0185868 +0.0223381 0.0606785 -0.0258752 +-0.0124978 0.122374 0.0339942 +0.00450508 0.0688823 0.055725 +0.0471561 0.0614873 -0.00363177 +-0.0496676 0.0649029 -0.0122308 +-0.0360083 0.0485228 -0.0153235 +0.0255211 0.116701 0.0317994 +0.000516492 0.101662 0.0444028 +0.00434751 0.121547 -0.0129175 +-0.0374873 0.0959326 0.0432114 +0.0252705 0.0346338 0.0163557 +-0.0124579 0.0545987 0.0514221 +-0.0889602 0.131049 0.0432066 +-0.0372423 0.152141 0.00211029 +-0.0892956 0.0942653 0.013432 +-0.0518302 0.0344778 0.0329457 +-0.0187757 0.0756949 -0.0390019 +-0.0719603 0.0681626 0.0276375 +-0.0847959 0.147297 0.0357863 +-0.0683786 0.160357 -0.00982452 +-0.0326605 0.0863757 -0.0255732 +0.0456643 0.0848033 0.01617 +0.0560044 0.0608622 0.0263962 +0.0242808 0.034582 0.00510919 +-0.0255484 0.0414464 0.0539815 +0.0584482 0.0538047 0.0101717 +-0.0507323 0.0738128 -0.0166527 +-0.0145896 0.101524 -0.0235873 +0.00379349 0.0393361 0.0313217 +-0.060041 0.155524 0.0222725 +0.0330115 0.107346 -0.00970764 +-0.0356538 0.120932 -0.00987931 +0.0252334 0.114772 -0.00969056 +-0.0560291 0.051292 0.00869383 +0.039494 0.0484532 0.0321483 +0.0260206 0.095556 0.0448127 +-0.0144952 0.092498 0.0556089 +-0.0745303 0.0887706 0.0400356 +-0.0427423 0.0768225 -0.0188988 +-0.0254944 0.0348465 0.0469921 +0.0115755 0.104003 -0.020168 +0.0177398 0.128218 0.01192 +-0.0537709 0.0460941 0.0150722 +-0.0260174 0.0351047 -0.0290083 +0.0146321 0.0460649 0.043757 +-0.0725348 0.149777 -0.0387435 +-0.067793 0.0851703 -0.0179862 +-0.0345051 0.0491976 0.0390013 +-0.0575351 0.0727864 0.0407731 +-0.0902562 0.135043 0.0112131 +-0.0341019 0.0350895 0.0466468 +0.0354707 0.0862229 0.039086 +-0.0635111 0.15292 -0.0340962 +0.000752728 0.131478 0.01712 +0.0415962 0.101461 0.0191676 +0.0199544 0.117871 -0.0110405 +0.0125 0.0341066 0.00131673 +-0.0104877 0.105844 0.0434252 +0.000625364 0.130997 0.01994 +-0.00947876 0.108641 0.0432746 +0.0427329 0.0747306 -0.00479562 +0.0175177 0.121695 0.0318921 +-0.0724967 0.123205 0.0535111 +-0.0217998 0.0826894 -0.0387559 +-0.0474379 0.0384277 -0.0132876 +-0.0453217 0.127718 -0.00291517 +0.00149278 0.115548 0.0405079 +-0.00268673 0.0598311 -0.0338297 +-0.0282466 0.0410133 0.0533665 +-0.084979 0.0912122 -0.0035611 +-0.00188052 0.0377314 0.00623396 +-0.0719012 0.152408 -0.0434229 +0.0297667 0.100164 -0.016062 +-0.0446553 0.0615526 0.0394256 +-0.0935168 0.125484 0.0132627 +0.00892319 0.0349264 0.0435129 +-0.0906919 0.142015 0.0231619 +-0.0362968 0.126232 -0.00232089 +-0.0581074 0.0494572 0.00366497 +0.0584743 0.0538121 0.0171841 +0.0453685 0.090397 0.014157 +0.0451698 0.0903876 0.0161628 +-0.0648504 0.099576 -0.0170426 +-0.0336174 0.0385515 -0.0101375 +-0.0818746 0.144748 0.0414084 +-0.0921915 0.114676 0.0133297 +-0.0735116 0.140055 0.0477493 +-0.0625074 0.0334277 0.00145514 +0.0301634 0.0659717 0.0417895 +-0.0313891 0.0338671 0.0146006 +-0.0524964 0.0876231 0.0453765 +-0.0763164 0.155546 0.0238171 +0.0473804 0.0650284 -0.00116263 +-0.0203751 0.165368 -0.0103486 +-0.074953 0.131092 -0.00759533 +-0.0200723 0.0361973 0.0530852 +-0.0623326 0.164687 -0.0445921 +-0.0432796 0.127517 -0.00276726 +-0.0794589 0.155317 0.0154304 +0.0484584 0.0430177 0.0142199 +0.0516914 0.0635003 0.0289607 +0.0124992 0.111251 0.0392691 +-0.00916969 0.168123 -0.0207225 +-0.0624966 0.0987153 0.0424769 +0.0403564 0.0602895 0.0300713 +0.000529964 0.0745913 0.0578265 +-0.00430704 0.037991 -0.0149598 +-0.0458025 0.0336244 -0.00441422 +0.0244543 0.124393 0.0172632 +-0.0566778 0.0485827 0.00942267 +0.0118497 0.0354401 0.0310392 +-0.0460906 0.156154 -0.00788178 +0.0200436 0.125383 0.0241901 +-0.0110606 0.128229 0.000136123 +-0.0680155 0.149781 -0.0384715 +-0.0340535 0.158097 0.00328753 +-0.063246 0.0709836 0.037551 +0.00837353 0.0479453 -0.0272176 +-0.0704921 0.0944433 0.0420805 +0.0271048 0.0835778 0.0462962 +-0.0814225 0.0858535 0.0328878 +-0.0311244 0.126183 0.00987945 +0.00420219 0.0866314 -0.0335404 +-0.0160918 0.0359549 0.0514785 +-0.0387772 0.152061 -0.00669739 +-0.0394877 0.095879 0.0424449 +-0.0556734 0.0645255 -0.00818248 +-0.0721186 0.0637108 0.0173676 +-0.00866441 0.055565 -0.0335626 +0.034399 0.0476191 -0.006288 +0.0184894 0.03497 -0.0076507 +-0.0208903 0.0376209 0.05361 +-0.0721389 0.12842 0.0519775 +-0.0135421 0.093873 0.0547462 +-0.0114977 0.038716 -0.00213082 +-0.0444942 0.0761733 0.0424299 +-0.0162113 0.0387427 -0.00681752 +-0.0632795 0.162306 -0.0238202 +-0.0678999 0.11945 -0.00879052 +-0.0624555 0.163099 -0.0465902 +-0.0197676 0.0376635 -0.0177276 +-0.00982564 0.0339746 -0.0198462 +-0.0334993 0.115969 -0.0147052 +0.0241258 0.0914782 -0.0228484 +0.0393714 0.104176 0.025187 +-0.0877422 0.114422 0.00426669 +0.0169437 0.0346991 -0.00395051 +-0.0659364 0.0364202 0.0386491 +0.0236414 0.0741206 0.0482553 +0.0360643 0.108191 -0.003826 +-0.0498837 0.0340852 -0.0133065 +0.0109544 0.0459934 0.0454216 +0.0232194 0.06778 -0.026032 +0.0407755 0.0675587 -0.00776366 +0.0164452 0.127885 0.0214354 +0.0306214 0.073711 -0.0207585 +0.0310665 0.0768618 0.0431993 +-0.0326395 0.0549161 -0.0112709 +-0.0264479 0.0721314 0.0435447 +0.0185916 0.116689 0.0359263 +0.0210399 0.118016 0.0341276 +-0.0910253 0.115214 0.0323598 +0.000420695 0.0340758 -0.0179207 +0.011475 0.115421 0.0379758 +0.0558934 0.0728505 0.0127047 +-0.0168011 0.0813465 -0.0393174 +-0.0884013 0.103686 0.0143755 +0.00687166 0.100046 -0.0219438 +0.00938176 0.0463536 -0.0257255 +-0.0376115 0.11722 -0.0140038 +-0.0454999 0.102932 0.0417867 +-0.0638509 0.0597328 0.00826283 +-0.0626761 0.0691812 -0.0125769 +-0.0654105 0.124234 0.0493774 +-0.0585036 0.0790577 0.0434985 +0.025387 0.103408 0.0403826 +0.0322433 0.0896617 -0.0189276 +-0.0875821 0.0909427 0.0247332 +-0.0855607 0.103501 0.00239284 +-0.0436971 0.0419128 0.0432773 +-0.0946145 0.122826 0.0212791 +0.0282404 0.0858422 -0.0216043 +0.00524711 0.0726037 -0.0343433 +0.00348793 0.114165 0.0408953 +-0.0345349 0.108408 0.0380462 +-0.053757 0.152473 0.0202331 +-0.0684765 0.061182 0.0096252 +-0.0653795 0.17033 -0.0418012 +0.0335191 0.0398635 0.0260657 +0.00150101 0.0647986 0.0566673 +-0.0386685 0.0621637 -0.0127302 +0.0514753 0.0731205 0.0184716 +-0.0475108 0.159316 0.00812402 +-0.0418554 0.101378 -0.0213767 +0.059111 0.0580409 0.00617531 +-0.0235023 0.105779 0.0421282 +-0.0564932 0.0861648 0.0446121 +0.0463019 0.07925 0.0141776 +-0.037115 0.160706 -0.0129903 +-0.0454732 0.0917007 0.0431865 +-0.08762 0.143285 0.0101199 +0.0294825 0.0348729 0.0114843 +0.0351631 0.0941496 -0.0136388 +0.0169892 0.122251 -0.00777586 +-0.0286955 0.175698 -0.00647862 +-0.0586479 0.0629437 -0.00583333 +-0.0799097 0.0706493 0.0132254 +0.0440384 0.0959414 0.0171588 +0.00466861 0.0365644 -0.00250089 +-0.0368263 0.0929138 -0.0236695 +-0.0126068 0.0392015 -0.0264338 +0.014095 0.041997 0.0446638 +0.00757449 0.035092 0.025056 +-0.0564565 0.03337 -0.00815977 +-0.0774971 0.128861 0.0533302 +0.0348978 0.0613787 -0.0138096 +-0.0348784 0.10713 -0.0202183 +0.0074278 0.117326 -0.0164147 +-0.0416698 0.0345261 0.0350582 +-0.0711528 0.180791 -0.0525602 +-0.0633069 0.0343768 0.0340823 +-0.0795725 0.091329 0.0351135 +-0.00149388 0.0787876 0.0581499 +-0.0838841 0.12062 -0.00343109 +-0.0017512 0.0769296 -0.0360915 +0.00921045 0.0851252 -0.032 +0.0528986 0.056075 -0.00272531 +-0.088793 0.0888086 0.00747102 +0.0367516 0.061565 -0.0117718 +-0.00560731 0.0389273 -0.00299633 +-0.0145783 0.0348246 -0.0259715 +-0.0668255 0.162993 -0.016474 +0.0537671 0.0492093 0.00323447 +0.0164968 0.0990289 0.0471605 +0.0350254 0.0533499 0.0328505 +-0.0502577 0.127427 -0.00458948 +-0.0354996 0.0605317 0.0401535 +-0.0445094 0.0832466 0.0430632 +-0.061134 0.11687 0.0396165 +0.0288023 0.0594063 -0.0198054 +-0.0345743 0.120058 0.0294165 +-0.00577775 0.0812461 -0.0375203 +-0.0271582 0.125819 0.00840694 +-0.00487894 0.130442 0.0208375 +-0.0485449 0.165375 0.00344343 +0.00426734 0.0682596 -0.032922 +-0.0887148 0.12811 0.00328264 +-0.0688911 0.0610594 0.0132079 +-0.0845844 0.121705 0.0490448 +0.0086501 0.130656 0.00430717 +-0.0694892 0.109539 0.0380952 +-0.0883053 0.149858 0.0265188 +-0.0556122 0.136727 0.0318764 +0.00753471 0.0632773 0.055432 +-0.0675754 0.0334584 0.000400215 +0.0390555 0.064539 0.0335561 +0.00752021 0.073081 0.0562837 +-0.0898786 0.113438 0.0340422 +-0.0729585 0.134037 -0.00770509 +-0.0713317 0.151217 -0.0439201 +0.00350232 0.123774 0.0338316 +-0.0682244 0.142863 -0.0118107 +-0.0110454 0.113378 -0.0180964 +0.0539053 0.0478505 0.00821457 +-0.0614468 0.141404 -0.00570472 +-0.0113089 0.0383954 0.0218511 +-0.0281079 0.177558 -0.016771 +0.012409 0.0418787 -0.0238148 +-0.00282516 0.102957 -0.0229221 +0.0254031 0.123772 0.0104796 +-0.0305987 0.0803029 0.0419758 +-0.0750181 0.0761727 0.0341343 +-0.0144519 0.166922 -0.0140569 +0.00338055 0.0465728 -0.0280809 +-0.0162255 0.177147 -0.0257279 +0.0131167 0.108671 -0.0187213 +0.0272829 0.121723 0.00548626 +-0.0883907 0.115479 0.0451949 +-0.0879259 0.102339 0.0203636 +-0.0548201 0.128324 0.0365339 +-0.0820753 0.129944 0.0519532 +0.00724365 0.07823 -0.0340312 +-0.0819891 0.0923793 -0.00757573 +-0.0303556 0.168269 -0.0071929 +-0.00250456 0.0562401 0.0542942 +-0.0616678 0.143939 0.037247 +-0.0776245 0.151441 -0.00287924 +0.0374138 0.110303 0.0192381 +0.0348067 0.0902706 0.0399059 +-0.0127063 0.0671038 -0.0370425 +0.0160068 0.0347306 -0.00980024 +-0.0372246 0.0368821 -0.0130308 +0.0340234 0.0585319 -0.0137143 +0.0541559 0.0477549 0.017206 +-0.0405048 0.15944 0.00272423 +-0.0015963 0.0981039 -0.0279083 +-0.092935 0.117416 0.0233037 +-0.0832007 0.119017 0.0492012 +0.00140058 0.0348342 -0.0234319 +-0.0868724 0.106357 0.0173489 +-0.0166991 0.0570076 -0.034416 +-0.0907644 0.142021 0.0271708 +-0.0822477 0.106043 -0.00262262 +-0.0929753 0.11876 0.0253083 +-0.0263289 0.0434924 0.0526862 +-0.0374936 0.0733328 0.0420467 +-0.0355255 0.0818589 0.0431427 +-0.0650055 0.136996 -0.00788185 +-0.0705444 0.0712752 0.0339991 +-0.0549513 0.0339195 0.0239841 +-0.00779971 0.114512 -0.0173201 +0.0213851 0.0754916 0.050294 +0.0297243 0.0538559 -0.0167895 +-0.00746204 0.125196 -0.00874293 +-0.0385113 0.0973107 0.0424108 +0.0437641 0.0599949 -0.00412714 +0.00932784 0.0581716 -0.0301717 +-0.07404 0.148543 -0.0208687 +-0.067363 0.177688 -0.0512074 +-0.00213372 0.123188 0.0349488 +-0.0180211 0.168338 -0.0139614 +-0.0254657 0.0678395 0.0426887 +-0.0266217 0.0436536 -0.0288174 +-0.0498332 0.0956322 -0.0221283 +-0.0772795 0.155549 -0.0169029 +0.0369068 0.0799159 -0.0147176 +-0.0788489 0.119288 -0.00581129 +-0.0101059 0.171125 -0.0207965 +-0.0324932 0.0774699 0.0412179 +-0.0434937 0.0705308 0.0420517 +-0.0158265 0.0869335 -0.0385904 +-0.00548754 0.123746 0.0343085 +0.0610091 0.0623122 0.0111052 +-0.00962571 0.0451144 -0.0282927 +-0.0687445 0.160961 -0.0529537 +-0.00991099 0.115578 -0.0164445 +0.0199768 0.126969 0.0170274 +-0.0827793 0.0771313 0.0211566 +-0.0119077 0.0894805 -0.0370977 +0.0238643 0.100811 0.0434608 +-0.0130347 0.166801 -0.0212915 +-0.0934989 0.122762 0.0122811 +-0.0667245 0.0765676 -0.016644 +-0.0391998 0.0351247 -0.0118182 +-0.0445637 0.128075 -0.00132731 +-0.0258871 0.0377455 0.0194558 +-0.093776 0.124126 0.0142628 +-0.0698753 0.117966 -0.00835455 +-0.0515005 0.100157 0.0426446 +-0.0404873 0.112547 0.0355988 +-0.0674682 0.0382926 -0.00574154 +-0.0624974 0.0876076 0.0451456 +-0.0367451 0.0768715 -0.019149 +-0.00349748 0.0870382 0.0570453 +0.0243264 0.0591823 -0.0248233 +-0.0604582 0.154406 0.00215902 +-0.0742084 0.067281 0.00145303 +0.0461952 0.0834391 0.00817714 +-0.0246581 0.0664552 0.0433381 +0.0223219 0.0402539 -0.00770693 +-0.0269495 0.0511315 0.0418642 +-0.0426785 0.060742 -0.0126195 +-0.0470567 0.069722 0.0403886 +-0.057499 0.0889744 0.0446686 +-0.0925962 0.126825 0.0102659 +-0.0627541 0.166279 -0.0425846 +0.00227655 0.0655175 -0.0339267 +-0.0152717 0.181584 -0.0271612 +-0.0527991 0.0578707 0.0222512 +0.0181983 0.0768373 0.0527356 +-0.020287 0.0445184 0.0528933 +-0.0230546 0.0388523 0.0540611 +-0.0591948 0.0603156 -0.00052226 +-0.0356179 0.0505976 -0.0108834 +-0.0125985 0.0420542 -0.026434 +-0.0457346 0.0337173 0.00640665 +-0.0271239 0.117991 -0.0128729 +-0.0287901 0.105845 -0.0221143 +-0.0791947 0.116328 0.04948 +-0.037475 0.126933 -0.001254 +-0.0652274 0.172558 -0.0603808 +0.0249025 0.0659023 0.0447242 +0.0444853 0.062436 0.0294527 +-0.0584017 0.0411488 0.0207065 +-0.0637308 0.0380192 0.0421186 +-0.0224637 0.0768447 0.053535 +-0.0472049 0.132217 0.00449629 +-0.055985 0.033885 0.0237996 +-0.0637704 0.158563 -0.0153492 +-0.0889154 0.0875162 0.0124615 +-0.0630601 0.155204 -0.0366146 +-0.0858283 0.1008 0.00139713 +-0.00849876 0.0884233 0.057199 +-0.0464295 0.156494 0.00819518 +-0.0875333 0.0927687 0.0054156 +-0.0555067 0.053407 0.0086882 +-0.0319429 0.0346356 0.0246022 +-0.0532414 0.127751 -0.00500041 +-0.0324852 0.0946249 0.0445277 +-0.0652259 0.166727 -0.0597961 +0.0318258 0.090298 0.0426417 +0.0227624 0.0959793 -0.0216236 +0.0453464 0.0791637 0.00120688 +-0.00148178 0.0718081 0.0578063 +0.0484981 0.0664872 0.0276228 +-0.0638124 0.0339885 0.0132249 +0.0378702 0.100686 0.0303226 +0.0423416 0.0718943 -0.00578991 +0.0449549 0.0889654 0.0201657 +-0.0505604 0.0431885 -0.0101401 +0.0305345 0.113708 -0.00653825 +0.0175297 0.092684 0.048312 +-0.0405439 0.0338701 -0.0146326 +-0.0151193 0.0387785 0.0315419 +0.0425177 0.0660617 -0.00221978 +-0.0261619 0.0381432 0.054147 +-0.0435068 0.0576714 0.0396679 +-0.0531482 0.161241 0.00587596 +-0.0897425 0.0915834 0.0134432 +0.00549953 0.119637 0.0367537 +-0.00877042 0.130092 0.00788453 +-0.0417274 0.0725105 -0.0179617 +-0.0534984 0.0776159 0.0431279 +-0.0290767 0.121891 0.0239314 +0.0583737 0.0676977 0.00512132 +-0.0647358 0.157148 -0.0507072 +0.0435656 0.0945094 0.0231538 +-0.0220003 0.181634 -0.0125756 +-0.0298816 0.0621837 -0.0234188 +-0.0460097 0.127427 -0.00464706 +-0.0136152 0.0982979 -0.0261721 +-0.0662958 0.0637695 -0.0035905 +-0.0920915 0.118829 0.0424602 +-0.0157421 0.0686009 -0.0381423 +-0.063492 0.0819119 0.043822 +0.0519248 0.0461654 0.00821164 +-0.0528781 0.0490838 0.0346622 +-0.0896974 0.137929 0.0351902 +-0.0502406 0.140114 0.00340131 +-0.0460575 0.131197 0.00582383 +-0.0398248 0.0928735 -0.0232663 +-0.0287922 0.165339 -0.00670006 +-0.0017304 0.0712031 -0.0351875 +-0.0386191 0.118326 -0.013151 +0.0193849 0.126884 0.00540105 +0.0309645 0.0363887 0.0195722 +-0.0314998 0.155167 -8.72409e-05 +-0.000786782 0.0826169 -0.0366787 +-0.0771272 0.155133 0.00894547 +-0.00248977 0.112799 0.0419964 +-0.0279028 0.160261 -0.0136941 +-0.0431979 0.129461 0.00840104 +-0.0208217 0.0854768 -0.038298 +-0.01776 0.0714448 -0.0386564 +0.00624218 0.039472 0.0335072 +-0.0639011 0.119458 -0.00893676 +-0.0667029 0.176899 -0.0509708 +-0.0245413 0.0349941 -0.0287041 +-0.0487364 0.0753122 -0.0176891 +-0.0669945 0.169371 -0.0323347 +-0.00928822 0.0393788 0.0494849 +-0.0239808 0.0936155 -0.0313592 +0.0224894 0.0906371 0.0481279 +0.0242369 0.0748124 -0.0257049 +-0.0243462 0.1625 -0.00551798 +-0.0625942 0.153749 -0.0125838 +-0.0486891 0.137066 0.0163891 +-0.0679674 0.0350577 0.0131968 +-0.0626161 0.12969 0.0410793 +-0.0263812 0.120789 0.0279195 +-0.0802896 0.144766 0.0426469 +0.0132183 0.0794258 -0.0310561 +-0.0415045 0.0548576 0.0396938 +-0.00948994 0.0952069 0.0546127 +-0.0903261 0.135124 0.0222174 +-0.0574953 0.153709 0.0290191 +-0.0428742 0.10707 -0.020141 +0.057983 0.0674087 0.022273 +-0.0297438 0.0593588 -0.0214043 +-0.0562018 0.0589495 -0.00340637 +-0.0230647 0.0402418 0.0541248 +-0.062019 0.17397 -0.0618399 +-0.0412895 0.149153 -0.00363446 +-0.0485728 0.0503685 -0.00899002 +-0.00748812 0.10728 0.0439222 +-0.0336555 0.0709359 -0.0204834 +-0.0407158 0.171931 -0.00126808 +-0.0610791 0.151413 0.0351388 +-0.0221494 0.0384504 -0.005885 +0.00439305 0.11559 -0.018534 +-0.0241215 0.0944713 0.0461972 +-0.0547672 0.0812274 -0.0214088 +-0.0846583 0.0777659 0.00751712 +-0.0574282 0.0507609 0.000628334 +-0.00874511 0.0976201 -0.0294139 +-0.022979 0.0380859 0.023348 +0.043448 0.0916342 -0.00278755 +0.0145196 0.123096 0.0322223 +-0.0415646 0.125825 -0.00703356 +-0.0726695 0.171671 -0.0330178 +-0.010471 0.0378949 -0.0160892 +-0.0488368 0.0970812 -0.0221898 +-0.0586032 0.141 0.0328315 +-0.0117815 0.0347775 0.0429519 +0.0116378 0.0603198 0.0518663 +-0.0459594 0.0560107 0.0380589 +0.0399446 0.107028 0.0121641 +0.00710547 0.0893998 -0.032814 +0.0410678 0.10142 0.0221661 +-0.0244452 0.181836 -0.00961144 +-0.013259 0.121231 -0.0103976 +-0.0454789 0.123431 0.0251209 +0.0285377 0.0523356 -0.0187697 +0.0588289 0.0691072 0.0191593 +0.0125005 0.1007 -0.0226033 +-0.0595569 0.153648 0.0312116 +-0.00403867 0.0994311 -0.025339 +0.00148661 0.108625 0.0426664 +-0.0327389 0.0482896 -0.0213368 +-0.0380117 0.0344553 0.0341354 +-0.072467 0.0968801 0.0405541 +0.0151781 0.0847217 0.0519158 +-0.0425055 0.108838 -0.0192163 +-0.00749309 0.114174 0.0409291 +-0.0434968 0.119301 0.0295385 +0.0363932 0.0476439 -0.00624826 +-0.079546 0.0719865 0.0195582 +-0.0564882 0.042714 0.0457133 +-0.0113851 0.0383094 0.011049 +-0.0865431 0.106355 0.0183534 +-0.0313759 0.0553098 -0.0143786 +0.0515215 0.0651377 0.0281771 +0.0253513 0.0605347 -0.0238887 +-0.0627683 0.164709 -0.0355885 +-0.0520878 0.0489475 0.0226481 +-0.0371717 0.165191 -0.0136726 +0.0421423 0.0738117 0.0292393 +0.0499661 0.0451421 0.0208878 +-0.0394943 0.116662 0.0325452 +-0.085625 0.079203 0.01151 +-0.0716025 0.135501 0.0492566 +-0.00270958 0.0391757 0.033738 +-0.0911953 0.143381 0.0241598 +0.0418026 0.102869 0.0141608 +-0.0319458 0.0708051 -0.0254622 +-0.0626184 0.145978 -0.00858061 +0.0207857 0.0994851 0.0460447 +0.0275851 0.114088 0.0330397 +-0.040502 0.120714 0.028794 +-0.0853944 0.101863 0.0264831 +0.00328879 0.0668715 -0.0332298 +-0.0446453 0.0577855 -0.0118043 +0.0188777 0.03558 -0.00867348 +-0.064488 0.156133 0.0221359 +-0.00921165 0.172686 -0.0275682 +-0.0426232 0.0362716 0.0437883 +-0.0246131 0.0422659 -0.0289978 +-0.0766564 0.0773474 -0.00857073 +0.0281325 0.121698 0.0129367 +-0.00471394 0.0641886 -0.0352179 +-0.0274456 0.0382197 0.0539829 +-0.0417615 0.03357 0.00191851 +-0.0596536 0.0350995 0.0445384 +-0.0458215 0.091313 -0.0218951 +-0.00569643 0.0599053 -0.0346867 +-0.0728066 0.087878 -0.0157134 +0.00467021 0.0347458 0.0211501 +-0.0369631 0.0341718 -0.0179086 +-0.0700564 0.162427 -0.0118963 +-0.0938276 0.126933 0.0242666 +-0.0207424 0.110014 -0.0205123 +0.00150816 0.0911296 0.0556681 +-0.00874857 0.0727984 -0.0375275 +-0.0679476 0.156599 -0.00385029 +-0.076928 0.152806 -0.00788984 +-0.0860408 0.109124 0.0103593 +-0.0514909 0.0544833 0.0216233 +-0.0756545 0.151363 -0.0148873 +0.0423862 0.047532 -0.00502925 +-0.0895419 0.0916017 0.0194388 +-0.014074 0.128231 0.00303832 +-0.0747094 0.155646 0.00979649 +-0.0931712 0.117411 0.0223074 +-0.0548599 0.145302 0.0295141 +-0.058163 0.0467738 0.0296766 +0.00351191 0.0459363 0.0483003 +-0.091423 0.144753 0.0241539 +0.0174632 0.0948293 0.047857 +-0.0326373 0.119597 -0.0104942 +0.0206219 0.119357 0.0335278 +-0.0174992 0.0897364 0.0558751 +-0.00978193 0.0784455 -0.0377778 +0.0236993 0.12332 0.00130956 +-0.0792974 0.15265 0.00222093 +-0.0444956 0.102933 0.0417949 +0.0152822 0.129138 0.0167187 +0.0467013 0.0718392 0.0195936 +-0.0883363 0.112382 0.0405773 +-0.0515091 0.105631 0.0400498 +0.00121056 0.115576 -0.018509 +-0.0525671 0.0335472 0.0123651 +-0.0285962 0.0377287 0.0207135 +0.0043328 0.0341303 0.00522853 +-0.0914252 0.114627 0.0103302 +-0.0231203 0.163764 -0.0160465 +-0.0077447 0.0698983 -0.036343 +-0.0650951 0.162442 -0.0187197 +-0.0652725 0.0613084 0.02088 +0.0455972 0.0415054 0.0160287 +-0.0554928 0.148133 0.0286364 +-0.0709153 0.113624 -0.0087498 +-0.0390311 0.160893 0.00133569 +-0.0669712 0.156006 0.0125516 +-0.0607902 0.0334775 -4.36679e-05 +-0.0634989 0.108392 0.0384413 +-0.0239757 0.0768012 0.0522149 +-0.0671254 0.128435 0.0486555 +-0.0368355 0.153629 0.00272174 +-0.0280768 0.169745 -0.00916431 +0.00750786 0.0518308 0.0519822 +0.017486 0.112589 0.0378808 +-0.0694907 0.0930374 0.0422024 +-0.0457991 0.0336321 0.00104877 +0.0385285 0.0901386 0.0347352 +0.0154693 0.0976312 0.0477084 +-0.0134564 0.0347657 0.0443699 +0.0132374 0.123205 -0.00876652 +0.0204758 0.0975716 0.0468126 +-0.0702558 0.152263 -0.0463745 +-0.0361586 0.0382819 -0.0067057 +0.0546048 0.0478149 0.0122009 +-0.0455357 0.120317 -0.0132441 +-0.00750778 0.0828941 0.0575015 +-0.0338576 0.0347656 0.029445 +-0.0195033 0.118175 0.0352728 +0.0125203 0.0616669 0.0514026 +-0.0196496 0.0582641 0.0484904 +0.0383367 0.0910432 -0.012345 +-0.00538883 0.122125 -0.0114557 +-0.075455 0.0675485 0.016865 +-0.0362517 0.123246 0.0257763 +-0.0815948 0.123081 0.0504133 +-0.00479304 0.130806 0.0179661 +-0.0776418 0.158287 -0.0219264 +-0.0484803 0.117974 0.0310954 +-0.0386541 0.126132 0.0204051 +-0.0786087 0.102098 0.0338163 +0.0464344 0.0792618 0.0111808 +0.0289709 0.0848578 0.043728 +-0.0184969 0.10579 0.0426906 +-0.0245528 0.116739 0.0335827 +-0.0754858 0.146995 0.0422823 +-0.0528151 0.132539 0.0323863 +-0.00781365 0.086863 -0.0372016 +0.0145549 0.126574 -0.00243153 +-0.0834735 0.076324 0.00852235 +-0.0597355 0.0752692 -0.0179534 +-0.0853298 0.111023 0.0405559 +-0.0515948 0.137023 0.025408 +-0.0693375 0.168152 -0.0246084 +-0.0781507 0.115089 0.0495991 +-0.0468723 0.0587675 0.0374438 +0.0193537 0.0349459 0.0257791 +0.0243371 0.123621 0.0229269 +-0.0907106 0.133758 0.0262122 +-0.0542023 0.0435162 0.019691 +-0.036169 0.0335901 -0.0284162 +0.0196024 0.0858351 -0.0269873 +0.0084996 0.0488213 0.0500608 +-0.0308481 0.0664794 -0.025463 +0.0262324 0.0775308 -0.0242027 +0.0470911 0.0422949 0.0155431 +0.0315748 0.0605586 0.0402762 +-0.0722147 0.149455 -0.0385736 +-0.0695516 0.170347 -0.0304219 +-0.0404175 0.171209 -0.00987004 +0.0299365 0.0350356 0.00770058 +-0.0466417 0.133657 0.014443 +0.0130913 0.0937889 -0.0272955 +-0.0579449 0.059547 -0.000261977 +-0.0285818 0.121272 -0.00825717 +-0.0713326 0.0345571 0.00760774 +-0.0666503 0.135429 0.0440071 +-0.0303959 0.0762676 -0.0335676 +-0.00385838 0.101641 -0.0231016 +-0.0679568 0.13115 -0.00879393 +0.00350598 0.0870278 0.056972 +-0.0248582 0.0752289 0.048914 +-0.0588955 0.0336882 0.0145047 +-0.0563129 0.159837 0.00207063 +-0.064096 0.14766 -0.0219948 +-0.00992774 0.110288 -0.021044 +-0.0709029 0.110786 -0.0101311 +4.37647e-05 0.0392736 0.0324137 +0.0144567 0.0617415 0.0506755 +-0.0304982 0.117934 0.0308066 +-0.0124153 0.129138 0.0195683 +-0.0045458 0.042944 0.0478735 +-0.078629 0.155228 0.0230232 +-0.0793587 0.143462 0.044583 +-0.011946 0.163588 -0.0146751 +-0.0489654 0.138607 0.014392 +0.0130851 0.034266 -0.0137357 +0.0405023 0.0484755 0.0322215 +-0.0440255 0.0336276 -0.0225259 +-0.0185094 0.114097 0.0385959 +-0.0708508 0.173984 -0.0409178 +-0.0698895 0.170875 -0.0319754 +-0.0268752 0.105825 -0.0224483 +-0.0921157 0.118792 0.0303066 +-0.0715954 0.155396 -0.0419127 +0.0239203 0.108291 -0.0147313 +-0.0163998 0.119263 -0.0123023 +-0.0327198 0.0652554 -0.0184496 +0.0457714 0.0848094 0.0151676 +-0.062838 0.15526 0.00677387 +-0.0562712 0.146757 0.030967 +-0.00723161 0.0381024 0.0489495 +0.0208841 0.115302 0.0356376 +-0.0311112 0.162246 -0.0146263 +-0.0185025 0.0757876 0.0552584 +0.0369413 0.0993952 0.0325229 +-0.0597781 0.0668249 0.0348598 +-0.0676678 0.0697151 0.0342008 +-0.00507021 0.128586 -0.00238902 +0.035697 0.096801 0.0360155 +0.0179331 0.121039 -0.00844165 +0.00149286 0.100277 0.0469858 +0.0132581 0.0348304 0.0408908 +-0.0746487 0.0760382 -0.00984365 +-0.076866 0.0994719 0.0363813 +-0.00904748 0.0388121 -0.00544357 +-0.0378518 0.0985762 -0.0221892 +-0.0494929 0.0804959 0.044039 +0.0288964 0.120556 0.0189249 +0.0252898 0.0704815 -0.0246106 +-0.0831283 0.107448 0.000408412 +-0.0465019 0.129507 0.0239285 +-0.056621 0.0562362 0.00665228 +-0.00564116 0.0481924 -0.0303539 +-0.0944779 0.122838 0.0232837 +-0.0876178 0.105003 0.0113725 +0.0221833 0.125827 0.00929485 +-0.0376403 0.0562958 -0.0110081 +-0.027315 0.119916 0.0290701 +0.0347431 0.103404 0.0328426 +0.0317883 0.117354 0.00287906 +0.0203254 0.040014 -0.0146997 +-0.0780017 0.150056 -0.00287894 +-0.0106261 0.0451108 -0.0281505 +-0.0729498 0.156259 0.0191473 +0.0393029 0.10195 0.0270711 +0.0182702 0.0422045 0.0436952 +-0.0802626 0.147413 0.0397079 +-0.00132352 0.0966684 -0.0303753 +-0.015259 0.0984512 0.0471298 +0.0451952 0.0433405 0.023507 +-0.0438866 0.108471 -0.0191595 +-0.0159384 0.124168 -0.00545234 +-0.0654957 0.105611 0.0395613 +-0.0904683 0.135081 0.0142287 +0.025208 0.0874192 -0.0236148 +0.0366057 0.0954909 0.0355184 +-0.0887482 0.102363 0.0163794 +0.00249078 0.115545 0.0403845 +-0.0778809 0.0759658 0.0302027 +-0.045814 0.0898818 -0.0220292 +0.0125705 0.0658518 0.0532694 +-0.00597277 0.130385 0.0204408 +-0.0581881 0.125521 0.0404357 +-0.0307415 0.0374976 -0.017878 +-0.0742647 0.109022 0.03931 +0.0186443 0.123322 -0.00490878 +-0.0769902 0.154182 -0.00989517 +0.0130083 0.0956231 -0.0252421 +0.00953036 0.10442 0.0445691 +0.0186389 0.0520546 0.0461071 +-0.0463977 0.0397105 -0.0152844 +0.0444376 0.0959725 0.0121619 +-0.0216077 0.0350207 0.0511065 +0.0463433 0.054773 -0.00593764 +-0.0875696 0.115156 0.045661 +-0.00311195 0.130927 0.00709886 +-0.0627873 0.0335028 0.00493012 +-0.0894432 0.151569 0.0164701 +-0.0668923 0.109473 -0.0126504 +-0.053788 0.0854855 -0.0214384 +-0.00382944 0.108004 -0.0223654 +-0.0447162 0.0448943 -0.0112435 +0.0262334 0.121101 0.000829633 +0.0206734 0.0795401 0.0510479 +-0.0434655 0.127159 0.0186744 +-0.0273746 0.181651 -0.00921581 +-0.0045009 0.116806 -0.0157814 +-0.0529179 0.162663 -0.000927718 +0.0278575 0.109692 -0.0122334 +0.0114621 0.125412 0.0310862 +-0.055877 0.0984248 -0.0207921 +-0.0649536 0.0595166 0.0136311 +-0.0899789 0.116378 0.0441376 +-0.0344621 0.154617 -0.00886992 +-0.0641249 0.156393 -0.0431197 +0.0264267 0.0824949 -0.0235141 +-0.0699148 0.109401 -0.011164 +-0.0645122 0.0398643 -0.00676714 +-0.0927009 0.117475 0.0353038 +0.00812049 0.107282 -0.0201059 +0.0344124 0.0957227 -0.013333 +-0.0617126 0.170956 -0.0545977 +-0.0888439 0.150092 0.0112242 +-0.0600859 0.0421217 0.0440266 +-0.0535039 0.0805657 0.0446207 +0.00913683 0.0873343 0.0554698 +0.0318118 0.100781 0.0373962 +-0.0366211 0.124122 -0.00724685 +0.0255511 0.0463382 0.0384325 +-0.00473212 0.0386351 0.0247855 +-0.0857334 0.153425 0.016223 +3.04988e-05 0.11432 -0.019028 +-0.0622192 0.17721 -0.0606003 +-0.00533435 0.0930519 -0.0346806 +-0.0578363 0.0912193 -0.0212351 +-0.051575 0.132941 -0.0025104 +-0.0215094 0.0983521 -0.0242621 +-0.0663625 0.141125 0.0427387 +0.0411659 0.0952708 0.0280268 +-0.053497 0.0945663 0.0438533 +-0.0745177 0.171112 -0.0322615 +-0.0779361 0.129573 -0.00656407 +-0.0437814 0.0840812 -0.0212189 +0.00326914 0.0682665 -0.0330635 +-0.0739332 0.177709 -0.0464055 +0.0528574 0.0622185 0.0288955 +-0.0365021 0.101484 0.0413625 +-0.0445836 0.0476428 -0.0105653 +-0.0194973 0.101611 0.0435898 +-0.0137239 0.16215 -0.0118322 +-0.0287184 0.0806953 0.0455388 +-0.0933646 0.117392 0.0153085 +-0.0867701 0.113047 0.00428618 +-0.0052769 0.0941788 -0.0338289 +0.0134806 0.0976663 0.0482444 +-0.08743 0.111796 0.0214228 +0.00133097 0.0626915 -0.0339607 +0.0447988 0.0903457 0.000177034 +0.00183354 0.10009 0.0472603 +-0.0323685 0.0497273 -0.0163483 +-0.0848994 0.144621 0.00617242 +-0.0707871 0.0625817 0.00788057 +-0.0334706 0.0589721 0.0386927 +0.0458044 0.0834139 0.0161713 +-0.0638595 0.159101 -0.0532849 +-0.0169095 0.0379753 -0.0273392 +-0.0683614 0.15578 0.00913576 +-0.0841262 0.110345 0.0263651 +-0.0629048 0.1054 -0.0169977 +-0.00482937 0.038542 0.00854039 +0.00442082 0.039258 0.029719 +0.0287437 0.0416628 0.0306503 +-0.0480218 0.144366 0.00442748 +-0.0718881 0.109321 -0.0102252 +-0.0623027 0.153756 -0.0145815 +0.0312054 0.104936 -0.0131412 +-0.0502712 0.143189 0.0133798 +-0.0679015 0.120916 -0.00896008 +-0.0325574 0.126601 0.00788172 +0.00400981 0.0391328 0.0279405 +-0.0790033 0.16525 -0.0329555 +-0.0464892 0.117969 0.0304809 +-0.0171987 0.127433 0.00332106 +-0.0589607 0.145338 0.0340833 +-0.00576935 0.0346302 0.0443351 +-0.0894143 0.118584 0.00330542 +-0.0494955 0.0890237 0.0451636 +-0.0395958 0.118487 -0.0133369 +0.0256371 0.0346096 0.00722464 +0.0101261 0.0846794 0.0551401 +-0.000640169 0.0481947 -0.0300913 +0.00652044 0.0799801 0.0556018 +-0.0485004 0.157854 0.0090451 +-0.0674788 0.153589 0.0328337 +-0.0246191 0.0436702 -0.0286423 +-0.0380903 0.041957 -0.0274154 +-0.0592055 0.155872 0.0109493 +-0.0158317 0.0382446 0.00839116 +-0.0862834 0.141953 0.0402325 +-0.0178783 0.0381567 0.0189161 +-0.00165332 0.0511407 -0.0309868 +-0.0515122 0.0598238 0.030703 +0.0226361 0.118891 -0.00814073 +0.0433138 0.0902166 -0.00378785 +-0.0339799 0.0384942 -0.0120095 +-0.0424937 0.0748068 0.0427898 +-0.0640892 0.172567 -0.049571 +0.037431 0.0794424 0.0366005 +0.041759 0.0432404 0.0265421 +-0.0923571 0.121517 0.0426088 +0.0562687 0.0726263 0.0113628 +0.024692 0.100819 0.0429025 +-0.0729148 0.110726 -0.0089954 +-0.0295018 0.159581 0.00108834 +-0.0672997 0.0435653 0.00884843 +0.0172829 0.0651656 -0.0289948 +-0.0585687 0.0340745 0.0248573 +0.0320945 0.113613 -0.00441584 +-0.0726455 0.0655594 0.00286688 +0.0223162 0.0649555 -0.0263733 +-0.0636659 0.0691264 -0.011804 +-0.0495225 0.143222 0.00950726 +-0.0396922 0.156587 0.00568688 +0.00749975 0.089676 0.055015 +0.0495971 0.0465817 0.0239661 +-0.0390578 0.156263 -0.0100859 +-0.0708823 0.172457 -0.0366471 +0.0126883 0.0343606 -0.00448368 +-0.0454899 0.0690197 0.0407796 +-0.0413446 0.0335325 -0.0237744 +-0.0404379 0.124957 -0.00812413 +0.0440209 0.0945174 0.0011806 +-0.0627245 0.073729 -0.0165415 +-0.0286056 0.0475856 -0.0255224 +-0.0495036 0.153584 0.0107879 +-0.0896132 0.139307 0.0341845 +0.030074 0.119769 0.00796635 +-0.0517393 0.0517191 0.022632 +-0.023961 0.0723529 0.0481115 +-0.0309909 0.0384268 -0.00579914 +-0.00634516 0.0379873 -0.0153566 +-0.0547761 0.0333427 -0.00414144 +0.00202824 0.108029 -0.0204102 +0.0450661 0.0761937 0.0228711 +-0.084679 0.0869987 0.027663 +-0.0219636 0.0681726 0.0490783 +0.0226059 0.0375679 0.034289 +-0.0518654 0.101358 -0.0214215 +-0.0919525 0.126983 0.0392569 +-0.0663498 0.172859 -0.0450539 +0.00551307 0.0856288 0.0568655 +-0.0269831 0.0381412 0.0278748 +0.0430768 0.0411155 0.00329204 +0.0317014 0.117733 0.0199863 +-0.0326228 0.0506668 -0.0115219 +-0.0760639 0.155862 0.0136886 +-0.0581543 0.0337417 0.0181646 +0.0454926 0.0875897 0.015162 +-0.0197923 0.038435 -0.00354579 +-0.0461288 0.15913 -0.00829043 +-0.0235066 0.108523 0.0406075 +0.015525 0.127932 0.00115163 +0.00251501 0.0814623 0.0569927 +-0.0485603 0.131756 0.000870882 +-0.0909462 0.11476 0.0333322 +0.038369 0.0884214 -0.0137726 +0.0179084 0.127905 0.00771503 +0.0457915 0.0862101 0.0121678 +-0.0310416 0.0763051 -0.0325503 +-0.0584963 0.0946188 0.0448266 +-0.00142898 0.112626 -0.0193593 +0.0537506 0.0519895 0.000247391 +-0.00249736 0.0978288 0.0524276 +0.0474285 0.0692644 0.00256538 +-0.0157146 0.17719 -0.0193767 +-0.0688721 0.0369953 0.0119906 +0.0262296 0.0888085 -0.0227773 +-0.0876687 0.0981895 0.00443327 +-0.0435601 0.129686 0.00973169 +-0.0620348 0.146024 -0.00560988 +0.0228232 0.123119 -0.000681491 +0.0192101 0.0791931 -0.0277308 +-0.0285078 0.0348913 0.0463089 +-0.0295006 0.116619 0.032366 +0.00540344 0.040445 -0.0238712 +-0.0861937 0.0819823 0.0184808 +-0.0691313 0.170851 -0.0540166 +0.0232722 0.0691857 -0.0260989 +0.0346775 0.106404 -0.00868031 +-0.0626839 0.154165 0.00249175 +0.0203005 0.047637 0.041402 +0.0426083 0.0915862 -0.00481093 +-0.00121535 0.0394284 0.0356173 +-0.0290126 0.0606872 -0.0244213 +-0.0522249 0.152155 0.0138449 +0.0278367 0.0781921 0.0455692 +-0.0782715 0.168666 -0.0333616 +-0.0631194 0.0357147 0.0189543 +0.00237959 0.0976208 -0.0273765 +-0.0327796 0.0736593 -0.0265049 +-0.0590695 0.143884 0.0338908 +-0.0366032 0.0407784 -0.0289892 +-0.0564911 0.0400264 0.0468768 +-0.0891224 0.133627 0.00423095 +-0.00349883 0.095211 0.054715 +-0.0365564 0.0488017 -0.0133944 +-0.063603 0.0406323 0.0405017 +0.00388987 0.0987683 0.0495103 +-0.0341448 0.166698 -0.0152744 +0.0422984 0.0789118 -0.00576754 +-0.0821777 0.153468 0.0263012 +-0.0618022 0.0852922 -0.0192956 +-0.0825795 0.0937805 -0.00656944 +0.0526059 0.0476644 0.00422036 +-0.0617323 0.155315 -0.018581 +-0.0646798 0.158592 -0.0555006 +-0.0400438 0.127998 0.000725921 +-0.020826 0.0882193 -0.0372663 +-0.072774 0.083565 -0.0157894 +-0.0301375 0.0592681 -0.0204197 +0.053852 0.0700236 0.0237561 +-0.0192952 0.097132 0.0469462 +-0.0379042 0.0350553 0.0424096 +-0.0779467 0.170107 -0.0351609 +-0.0731753 0.162423 -0.0379582 +0.0293531 0.117442 -0.00254348 +0.00923639 0.0753581 -0.0333366 +-0.00523048 0.0381888 0.0482681 +0.0281109 0.0477624 0.0368744 +-0.00549683 0.095262 0.0547887 +0.016279 0.127286 0.0242335 +-0.000357095 0.0346671 0.0418309 +-0.0903031 0.113239 0.0103302 +-0.0435085 0.165227 0.00470373 +-0.000629686 0.0466337 -0.0288231 +-0.00267903 0.0583624 -0.0332032 +-0.0354553 0.163829 -0.00227816 +0.0329891 0.10525 -0.0114692 +-0.0511234 0.159083 -0.0045978 +-0.0738697 0.0672451 0.0209913 +-0.0513379 0.0345855 0.00988953 +0.0449495 0.041538 0.0177108 +0.0131716 0.128382 0.0245166 +-0.0119302 0.0975527 -0.0293786 +-0.0796395 0.11488 0.0476725 +-0.00554666 0.0429634 0.0481135 +0.0336755 0.115893 0.0150272 +-0.0865455 0.109036 0.0123603 +-0.0583287 0.0597422 0.0219213 +0.00142185 0.0361564 -0.0243567 +-0.0249379 0.182957 -0.0150514 +-0.00456935 0.0511652 -0.031379 +0.00983853 0.130485 0.0204326 +-0.020719 0.0739658 0.0533053 +-0.0922608 0.117447 0.0323019 +-0.0687753 0.15954 -0.0529632 +0.00943169 0.130854 0.0188531 +-0.0463671 0.133058 0.0160254 +0.0403868 0.0966272 0.0286723 +-0.0374342 0.125294 0.0223398 +-0.0254349 0.121225 -0.00822483 +-0.0287913 0.121291 0.025511 +-0.0275751 0.181449 -0.0130337 +-0.0292637 0.0364551 -0.0300736 +0.0333063 0.076755 -0.0177777 +-0.00838403 0.100228 -0.0241757 +-0.0917675 0.126924 0.040336 +0.0460105 0.0848241 0.0111686 +-0.0458316 0.03478 0.00723173 +0.0337176 0.0655129 -0.0167917 +-0.0900318 0.128311 0.0429434 +0.00340705 0.0404653 -0.0241388 +-0.0445167 0.0334752 0.00325528 +-0.0417025 0.170926 -0.000183345 +-0.0667272 0.0750614 -0.0156487 +-0.075008 0.0665773 0.0124915 +-0.0256788 0.0387085 -0.0161237 +0.0433708 0.0459415 -0.00338184 +-0.0333944 0.0420411 -0.0295771 +-0.0366574 0.173333 -0.0118804 +0.0279341 0.0376089 0.0251213 +-0.0591944 0.0589798 0.00447595 +-0.0117173 0.0642717 -0.0365887 +0.0284258 0.044601 -0.00619231 +0.0407559 0.0844033 -0.0107694 +-0.0149445 0.0386028 -0.00457425 +-0.0666364 0.150881 -0.0385507 +-0.0441588 0.156514 0.00623469 +-0.0338796 0.174703 -0.0134692 +-0.0700283 0.075334 0.0376711 +-0.0144851 0.120961 0.0347298 +-0.0394983 0.0690894 0.041721 +-0.0820593 0.0748753 0.013529 +-0.0262192 0.162456 -0.00472466 +-0.0573804 0.151726 0.0319973 +0.0238729 0.0463312 0.0395213 +-0.00887703 0.0985896 0.0509585 +-0.00180856 0.0881831 -0.0355551 +-0.0435257 0.128183 0.0171556 +-0.0137851 0.096091 -0.0318323 +-0.0776083 0.0770893 -0.00760024 +0.0515137 0.0637653 0.0289012 +0.0459041 0.087617 0.00917007 +-0.0946685 0.124165 0.0192665 +-0.0424078 0.0392874 -0.0253255 +0.0574465 0.0566575 0.0231489 +-0.0705315 0.0915903 0.0419348 +-0.062769 0.175495 -0.0615699 +-0.0614063 0.0419532 -0.0067475 +0.0222874 0.0635154 -0.025946 +-0.0325454 0.0624467 -0.016419 +0.0406665 0.105637 0.00516291 +0.00508145 0.125851 -0.00757191 +-0.0743566 0.148587 -0.0198592 +0.028537 0.0506236 0.0375191 +0.00550651 0.0897139 0.0554063 +-0.0165465 0.061194 0.0523676 +-0.0548344 0.113627 -0.016162 +-0.078421 0.120421 0.0514142 +0.0224472 0.0375897 0.0352799 +-0.0558038 0.116914 0.0367748 +0.0399293 0.104183 0.0231644 +0.00793957 0.0368635 -0.0077325 +-0.053287 0.119647 -0.012449 +0.0226022 0.1018 -0.0197774 +-0.0735157 0.102656 0.0375574 +-0.0544964 0.10974 0.0378742 +-0.0351154 0.127437 0.0128308 +-0.0759568 0.136911 -0.00615991 +-0.0228623 0.06956 0.0485197 +-0.00937118 0.0387712 0.0309279 +-0.0858362 0.103636 0.0243714 +-0.0777036 0.174395 -0.0426027 +0.0605358 0.0664822 0.0111446 +-0.0456637 0.0382067 -0.0202858 +-0.0494922 0.0833478 0.0446801 +-0.0717916 0.0893503 -0.0160567 +-0.0654224 0.156324 0.0217941 +0.0104303 0.128801 -0.000781749 +-0.0640931 0.122778 0.0478095 +0.012373 0.0343732 -0.00643255 +-0.00549358 0.0898053 0.0568842 +-0.0544984 0.0973596 0.0432594 +-0.0430782 0.154691 -0.00814248 +-0.058643 0.155634 0.0155202 +-0.0309118 0.10664 -0.0209245 +-0.0117675 0.0728437 -0.0380964 +-0.0685186 0.1456 0.0424246 +0.0168366 0.113017 -0.0157876 +-0.0567451 0.0768007 -0.0192338 +-0.0905785 0.121592 0.0451008 +-0.0564995 0.0889847 0.0448198 +-0.062649 0.164698 -0.0365908 +-0.0414211 0.0344456 0.0316667 +0.0235849 0.102638 -0.0186769 +0.0208761 0.115613 -0.0126037 +0.00135548 0.0496637 -0.030356 +0.0172645 0.0713208 0.051333 +0.0277553 0.0619298 0.0435605 +-0.0388696 0.105647 -0.0202518 +0.002402 0.041908 -0.0243037 +-0.00348806 0.11693 0.0398821 +-0.094215 0.120106 0.0172864 +-0.075338 0.161792 -0.0134783 +-0.0313944 0.0721215 -0.0285061 +-0.076236 0.178558 -0.0487103 +-0.0516597 0.0416063 0.0458402 +-0.0191702 0.169734 -0.0206461 +-0.0458479 0.0999438 -0.0215809 +-0.0608063 0.0939347 -0.0190005 +-0.0831639 0.108847 0.00132792 +0.0449523 0.0945963 0.00616781 +-0.089716 0.139255 0.0241831 +-0.0241715 0.165363 -0.00880477 +-0.0808978 0.121685 0.0496566 +-0.0776757 0.0873848 0.0375611 +-0.0575877 0.0343902 0.0335477 +0.0293569 0.0808765 0.0442663 +-0.0413959 0.1089 -0.0192706 +-0.0486555 0.0606014 -0.0118523 +-0.0263871 0.06465 -0.0314802 +-0.0479423 0.118344 0.0305757 +0.0368905 0.10997 0.023344 +0.00465961 0.0959425 -0.0295932 +-0.00250198 0.0647948 0.0567081 +0.0155008 0.0345049 -0.00593057 +-0.0414998 0.0944525 0.0421484 +-0.0425159 0.17187 -0.00332083 +-0.00662603 0.045146 -0.0285621 +-0.0728992 0.107873 -0.010241 +0.0162924 0.0680403 -0.0298148 +-0.058126 0.0494622 0.00265482 +-0.049929 0.0335244 -0.00515732 +-0.0592138 0.116352 -0.0129282 +-0.0876027 0.103683 0.0193632 +-0.0661658 0.170967 -0.0590604 +-0.00423283 0.0951855 -0.0328472 +-0.056711 0.153132 0.0293166 +0.0299135 0.0618945 0.0413957 +-0.0754312 0.179188 -0.0498593 +-0.0890756 0.0982905 0.00941744 +-0.0313333 0.114057 -0.0167329 +-0.0336201 0.0505969 -0.0107597 +0.0152428 0.0807565 -0.0298514 +0.000144172 0.129559 0.0255502 +-0.0166332 0.101644 -0.0236856 +0.0112856 0.0666869 -0.0306751 +-0.0719068 0.110755 -0.00961867 +-0.056773 0.082629 -0.0212703 +0.0224949 0.112674 0.0362232 +0.00494458 0.0356784 0.0456125 +-0.0401622 0.123949 0.0243503 +-0.0494029 0.0516267 0.0356191 +-0.000148869 0.0998138 -0.0237113 +-0.0494252 0.12902 -0.00225187 +-0.0351127 0.162221 -0.0139882 +-0.0801061 0.109977 -0.00253557 +-0.0583279 0.116979 0.0383609 +0.0214316 0.0768422 0.0503677 +-0.0637593 0.0357681 0.0182478 +-0.0679574 0.176267 -0.0485208 +-0.0466544 0.0636155 -0.0134601 +-0.018198 0.0896163 -0.0372798 +-0.0675078 0.167827 -0.0267933 +-0.0891218 0.136568 0.0391914 +-0.00634438 0.0961732 -0.0318818 +-0.0509131 0.144221 0.000402933 +0.020479 0.0822082 0.0508036 +0.0382522 0.0617095 -0.0097618 +0.0414447 0.0957847 0.0271584 +0.0495191 0.0624602 0.0299628 +-0.0525648 0.0515684 -0.00660684 +-0.0507038 0.0543653 0.0186143 +-0.0678764 0.117979 -0.00873338 +-0.0833731 0.0803286 0.00149951 +-0.0102345 0.169322 -0.0249254 +0.0161585 0.128774 0.0170439 +-0.0495011 0.0439447 0.0438293 +-0.0308936 0.0901442 -0.0248987 +-0.0380826 0.159224 -0.0120325 +-0.0684954 0.121776 0.0527683 +-0.0237994 0.178657 -0.0117033 +0.022476 0.125337 0.020807 +-0.0131867 0.0392232 0.050872 +-0.0828365 0.116201 -0.00217327 +-0.0792107 0.0760132 0.0281283 +-0.0418712 0.105657 -0.0205306 +-0.0265289 0.11806 0.03154 +-0.0485021 0.104259 0.0404773 +-0.0515007 0.164119 0.00202375 +-0.0628742 0.175671 -0.0555946 +-0.0385777 0.1595 0.00203018 +-0.0410438 0.162368 0.00371458 +-0.0683486 0.124257 0.0521552 +0.0311264 0.0469699 -0.00653546 +-0.0346775 0.127387 0.0115177 +0.0256926 0.105619 -0.0158649 +-0.0656817 0.0705232 -0.0118151 +-0.0889612 0.111861 0.0183359 +-0.027486 0.0646029 0.0384895 +0.0307322 0.108762 0.0340805 +-0.0647018 0.172123 -0.0473675 +-0.0914367 0.114681 0.021315 +-0.00481581 0.0882239 -0.0361964 +-0.0229882 0.0386094 0.0318708 +-0.0164825 0.0530314 0.0497852 +0.031763 0.0653471 -0.018741 +0.0313568 0.052068 0.0363454 +-0.0937998 0.118753 0.0153042 +-0.0460733 0.0336746 -0.01741 +0.00639772 0.0911374 -0.0325899 +-0.0665077 0.105605 0.0392145 +-0.037944 0.165312 0.00115508 +-0.0447719 0.0826286 -0.0206706 +0.015216 0.0849668 -0.0295884 +-0.00949197 0.121025 0.0361236 +-0.0728889 0.159628 -0.0359308 +-0.0212527 0.0696869 0.051144 +-0.0609844 0.0646638 0.031213 +-0.0787829 0.0926997 0.035689 +0.0098313 0.0644618 0.0545535 +-0.0435636 0.0476726 -0.0110362 +0.00292266 0.0383702 -0.00263564 +-0.0294982 0.0674485 0.03887 +-0.0594483 0.0590098 0.0188119 +-0.0331272 0.0335545 -0.0277881 +-0.0654135 0.17638 -0.0519366 +0.0381247 0.0827831 -0.0147803 +0.0274189 0.0834776 -0.02246 +-0.0754296 0.152593 -0.0138871 +-0.0626337 0.149615 -0.00617193 +0.0395378 0.100622 0.0273876 +-0.00317446 0.0951663 -0.0328247 +0.0284436 0.0721192 -0.0227379 +0.0256796 0.0353829 0.0212256 +-0.0100479 0.0388486 -0.00567581 +-0.0815042 0.149744 0.0353513 +0.0569923 0.0508892 0.0171854 +-0.0844404 0.100576 0.0283951 +-0.066663 0.0704664 -0.0109078 +0.011503 0.108488 0.0403225 +0.0346003 0.059954 -0.013776 +-0.00350072 0.0828956 0.0574459 +-0.0308908 0.0524482 -0.0143777 +0.0220365 0.0430228 -0.0147268 +-0.0499219 0.0558508 0.0334877 +-0.0315001 0.070354 0.040029 +0.0121741 0.0780107 0.0545179 +-0.040483 0.0423569 0.0419938 +-0.0438782 0.0343145 0.0294954 +-0.0243712 0.122748 0.0255975 +-0.013279 0.101966 -0.0239644 +-0.0635872 0.0445618 0.0346899 +-0.09116 0.146144 0.0251605 +0.0191385 0.125192 -0.000918824 +0.0439709 0.0776452 -0.00278508 +-0.034376 0.0448305 0.0451875 +-0.0292764 0.0508797 -0.0213979 +-0.0586802 0.148237 0.034554 +-0.0830867 0.0803012 0.027553 +0.0470243 0.0458757 -0.000608958 +-0.0124544 0.125711 -0.00519106 +-0.0316347 0.0511137 -0.0133654 +-0.0495769 0.126877 0.0317874 +0.0446953 0.0861142 -0.000824781 +-0.0164935 0.0744329 0.0555937 +-0.07397 0.135486 -0.00709777 +-0.0388049 0.0885478 -0.0231132 +-0.0738057 0.149865 -0.0338746 +-0.0612039 0.0347997 0.0427656 +-0.0248108 0.064983 0.0421327 +-0.0374965 0.120729 0.0294163 +-0.0773599 0.0940895 0.0370488 +-0.0221316 0.122996 0.0264112 +-0.0656835 0.180548 -0.0590311 +-0.0654403 0.114174 0.0440564 +-0.0576422 0.035457 -0.0105994 +0.0063341 0.0539359 -0.0303914 +-0.0624964 0.108382 0.0385383 +0.000507196 0.0474213 0.049671 +-0.0768403 0.0682209 0.0124564 +-0.0177152 0.0613627 -0.0358053 +-0.0708829 0.156323 0.0169624 +-0.0801272 0.0895173 -0.00861746 +-0.0681398 0.156014 0.0252192 +-0.0643944 0.0418449 0.0286723 +-0.0223108 0.122995 -0.00618559 +-0.0332179 0.0347336 0.0278325 +-0.0494838 0.129682 0.0301574 +-0.0874269 0.111566 0.0378689 +0.0078939 0.0373631 -0.01008 +-0.0556091 0.0372359 0.0469697 +-0.0495471 0.140136 0.00640196 +-0.0721891 0.0696552 -0.00460695 +-0.0645108 0.135348 0.0400634 +-0.00963836 0.0466527 -0.0295963 +-0.00450177 0.0856564 0.0572774 +-0.0726963 0.163825 -0.0409661 +-0.0831522 0.148677 0.0355101 +-0.0045943 0.109577 -0.0220661 +-0.0700292 0.14319 -0.0126949 +0.0170086 0.0672594 0.0509139 +-0.0184932 0.0842766 0.0574008 +0.0333985 0.0809938 -0.0187374 +-0.00658339 0.116828 -0.0157946 +-0.0830307 0.110356 0.0344756 +-0.0164574 0.11955 0.0353527 +-0.0437556 0.0335262 -0.0205177 +-0.0196754 0.180147 -0.0162801 +0.00748686 0.0427091 0.0452774 +0.047238 0.0525837 0.0312359 +-0.00150012 0.0842876 0.0575029 +-0.0647611 0.154265 0.00245101 +0.0385227 0.108358 0.00315989 +0.00616601 0.0343841 0.0199712 +0.0190967 0.127602 0.0138576 +0.0232916 0.104676 0.0408599 +-0.0209519 0.121676 -0.0087885 +-0.000475449 0.077417 0.0583222 +-0.0340577 0.0344858 -0.0194842 +-0.0449113 0.0342791 0.0293115 +-0.02963 0.125357 0.0045818 +-0.0442513 0.120873 0.0273959 +0.0233607 0.0713858 0.0478141 +0.0294074 0.0974659 -0.0171759 +-0.0251322 0.110719 -0.0192347 +-0.0168318 0.0883012 -0.0380546 +-0.0537516 0.078251 -0.0196488 +-0.0617185 0.155298 -0.026582 +0.0182327 0.0369462 -0.015679 +0.0204347 0.103384 0.043762 +-0.0271652 0.177189 -0.00775302 +-0.078183 0.161072 -0.0259393 +-0.000994284 0.0346324 -0.0168306 +-0.0369077 0.0407733 0.0449918 +-0.0117377 0.0685356 -0.0370961 +-0.0520176 0.136681 0.0271356 +-0.0244827 0.044849 0.0526821 +0.0122811 0.0490196 0.0473922 +-0.0310488 0.126128 0.0128475 +-0.0612252 0.0618413 0.0248018 +0.0110023 0.0872551 0.0546654 +0.0137177 0.0926941 0.0515916 +-0.050909 0.135812 0.0260882 +-0.0514988 0.090386 0.0447021 +-0.0776802 0.121779 0.0520726 +-0.0435045 0.0492094 0.0395536 +0.0427867 0.0445146 0.027427 +-0.0124587 0.0716774 0.0554083 +-0.0903482 0.115904 0.00630147 +-0.0676703 0.159658 -0.00956407 +-0.0534975 0.100135 0.0423919 +0.0299608 0.102103 0.0382304 +-0.0275896 0.0398384 -0.0294326 +-0.0354902 0.0576195 0.0391492 +-0.0365293 0.120277 -0.0112077 +0.000101878 0.111584 -0.0199068 +-0.0568115 0.11798 -0.012657 +-0.0134078 0.0383017 0.0160824 +-0.078485 0.131655 0.0526796 +-0.0630792 0.17626 -0.0613621 +0.00219436 0.0880897 -0.0340427 +-0.00664745 0.0511524 -0.0316637 +-0.0221856 0.122325 -0.00745001 +0.0517581 0.0684217 0.00143507 +-0.0206221 0.0450432 -0.0278804 +-0.0187788 0.181486 -0.0239544 +-0.0435029 0.119128 -0.0140097 +-0.0368374 0.0957548 -0.023046 +0.0360094 0.105316 -0.00780471 +-0.0310017 0.0339922 0.010953 +0.0468601 0.0467385 0.0270828 +-0.0800669 0.107282 -0.00460113 +0.0161405 0.0847501 0.0515574 +-0.0726437 0.152619 -0.0388965 +-0.030372 0.124909 0.019004 +-0.0532086 0.0387959 0.0470712 +-0.00947284 0.0717726 0.0568611 +-0.0417517 0.0449058 -0.0193246 +-0.0324319 0.159505 0.00208324 +-0.064273 0.0404086 0.0266782 +-0.0456914 0.0665681 -0.0150523 +-0.0317955 0.0901023 -0.0248195 +-0.0901544 0.148798 0.0121684 +-0.0448181 0.0898814 -0.0220536 +-0.00651 0.0385696 0.00453582 +-0.0505409 0.146308 0.012527 +-0.0736443 0.148637 -0.0247496 +0.0362923 0.0826461 -0.0167222 +-0.0582688 0.0380855 0.0465946 +0.0420736 0.0957824 -0.00279849 +0.059075 0.0677442 0.0201625 +-0.0118076 0.166362 -0.0213381 +-0.0293882 0.0593157 -0.02241 +-0.00750084 0.0688979 0.0559719 +-0.0834808 0.0763288 0.0055122 +0.0455463 0.0847945 0.0181695 +-0.0853379 0.139291 0.0436042 +-0.0127384 0.0714338 -0.0383051 +0.0288553 0.119043 0.000370228 +0.0382387 0.108322 0.00216703 +-0.0854254 0.147285 0.0350057 +-0.0290239 0.0918566 -0.0266024 +-0.089435 0.0996945 0.016394 +-0.0250572 0.0379934 0.0230062 +-0.0659224 0.108105 -0.0137141 +-0.0197383 0.064191 -0.0362126 +0.0332406 0.0828224 -0.0189128 +-0.050463 0.0627793 0.0338697 +-0.00332118 0.0928352 -0.0344367 +-0.0351624 0.0344214 0.0133327 +0.0337894 0.103744 -0.0118635 +-0.0685313 0.0435239 0.00368786 +-0.0915175 0.140609 0.0191776 +-0.0763247 0.0679089 0.0110614 +-0.0293662 0.0904135 -0.0285737 +-0.0268485 0.0931277 -0.028596 +-0.0493167 0.137038 0.00442458 +-0.0607789 0.121227 0.0419471 +-0.0167795 0.0984818 0.0458118 +-0.0218018 0.0947992 -0.0305488 +-0.0933659 0.118725 0.0133024 +-0.0263107 0.0780916 0.0488984 +-0.0689525 0.144454 -0.0174142 +-0.0698503 0.0980241 -0.015524 +0.0377251 0.0602627 -0.00973714 +-0.0616079 0.160003 -0.0285892 +-0.00362249 0.0451016 -0.0279234 +-0.0658161 0.0866791 -0.018673 +-0.0898976 0.132262 0.00523931 +-0.014426 0.0383347 0.0104075 +-0.0891789 0.14342 0.0311627 +-0.0516305 0.0633366 -0.0105425 +0.0421385 0.102872 0.00916356 +-0.073056 0.163825 -0.0399663 +0.0142799 0.0695538 -0.0310885 +-0.0191804 0.172724 -0.0156293 +-0.0111853 0.109046 -0.0214904 +-6.48961e-05 0.130222 0.00105503 +-0.037907 0.0368934 -0.0113278 +-0.0778791 0.116346 -0.00545689 +-0.0353032 0.042242 0.0460623 +-0.0732356 0.176411 -0.0530886 +0.0601048 0.0608967 0.00715985 +-0.052965 0.0595916 0.0265588 +-0.0564973 0.0762116 0.0428205 +-0.034872 0.104274 -0.0209307 +-0.058681 0.0336414 -0.0106847 +-0.082997 0.0883523 -0.00560613 +-0.0901456 0.140633 0.0231701 +0.059772 0.0594746 0.00715469 +0.0315129 0.0439606 0.0299133 +-0.0749354 0.108383 0.0378851 +-0.0718123 0.0950995 -0.0154446 +-0.017311 0.117579 -0.0145168 +-0.0492219 0.145089 -9.42983e-05 +-0.0492467 0.0335224 -0.00684693 +-0.077013 0.157587 -0.0116646 +-0.0395098 0.12077 0.029092 +-0.0676415 0.155906 0.0108585 +-0.0115046 0.0688083 0.054897 +0.00350877 0.068881 0.0557692 +-0.00832726 0.0349131 -0.024554 +0.00623924 0.0754282 -0.0343629 +-0.0601994 0.14968 0.0358889 +-0.0681006 0.0726203 0.0368546 +-0.0550659 0.154073 0.0197239 +0.0220423 0.0388246 -0.00567731 +-0.050633 0.0633988 -0.0111763 +0.0262673 0.0718723 -0.0242084 +0.00651709 0.084208 0.0565081 +-0.0508195 0.0927229 -0.0217389 +-0.0823617 0.110377 0.0328225 +-0.0443307 0.0345511 0.0362271 +-0.0664541 0.159015 -0.0105538 +-0.065725 0.180452 -0.0578644 +-0.00729397 0.0383333 0.0172997 +-0.083856 0.108875 0.00233606 +-0.0531754 0.160014 0.00733632 +-0.0617546 0.0335347 0.00511487 +-0.0436843 0.0666417 -0.0153695 +-0.0475053 0.16079 0.00736091 +0.0213151 0.0393899 0.0411211 +-0.0126085 0.0434839 -0.0264186 +-0.058072 0.135467 -0.00577889 +-0.0144744 0.0573903 0.0514423 +-0.0480757 0.15465 -0.00633475 +-0.0214326 0.158913 -0.0108411 +0.0317035 0.0927362 -0.0181479 +0.0258633 0.0505634 0.0389033 +-0.0916556 0.116096 0.0323166 +-0.0344737 0.0973629 0.0436701 +-0.0772898 0.158355 -0.013903 +0.00252455 0.078679 0.0567626 +-0.0768599 0.0852186 -0.0125783 +0.00638417 0.060281 0.0547831 +0.00351108 0.067509 0.0559028 +-0.0775506 0.172738 -0.0395384 +-0.0941076 0.120125 0.0222927 +0.0397169 0.0400457 0.0217023 +-0.00993012 0.125562 -0.00707028 +0.0207467 0.0387687 0.0412277 +-0.0770466 0.0947961 -0.0125384 +-0.0208658 0.163381 -0.0161046 +-0.0194871 0.0786419 0.0560662 +-0.00848562 0.0978428 0.0521021 +-0.00195749 0.0369571 0.00873581 +-0.0554658 0.14959 0.0286413 +-0.0613355 0.171315 -0.0617342 +-0.0405058 0.060576 0.0408455 +-0.019245 0.0381493 0.0168345 +0.0318352 0.0959581 -0.0155753 +-0.0894336 0.0956291 0.0144221 +-0.0562826 0.138192 -0.0042334 +-0.0587859 0.118384 0.0394982 +0.0557398 0.0577143 0.000186064 +0.021293 0.0347861 0.0208687 +-0.0521809 0.0564969 0.0230721 +-0.088994 0.140671 0.0361625 +-0.0626529 0.0336856 0.0101657 +-0.0346997 0.0808739 -0.0236048 +-0.0740754 0.0791322 0.0370556 +0.0424523 0.0958497 0.0251568 +0.0156501 0.129207 0.0125793 +-0.0758074 0.0766216 0.033593 +-0.053977 0.0335099 0.00491422 +-0.049617 0.115589 0.0334474 +-0.0151821 0.115592 -0.0164315 +0.0198002 0.113601 -0.0144182 +-0.0297803 0.0833036 -0.0335871 +-0.0888224 0.0929368 0.0224135 +-0.0255078 0.162179 -0.0150106 +-0.0468796 0.105628 -0.0200508 +0.0328144 0.0654355 -0.0177831 +0.0401246 0.0657991 0.0315825 +-0.0619246 0.161563 -0.0295917 +-0.0336612 0.0423072 0.0487868 +-0.0806782 0.140364 -0.00279029 +-0.0575747 0.034031 0.0251021 +-0.00250061 0.0856648 0.0572816 +-0.051497 0.0776631 0.0434639 +-0.0314085 0.177247 -0.00418119 +-0.0382796 0.035429 0.0243806 +-0.0273926 0.0381858 0.00428469 +-0.0590133 0.128179 -0.00718347 +-0.059761 0.058524 0.00837605 +-0.089717 0.142036 0.0301646 +-0.0708787 0.0634588 0.0196178 +0.017237 0.0368135 -0.0176915 +0.0283981 0.0848865 0.0446615 +0.042292 0.0669509 0.0276386 +-0.0400442 0.15362 -0.00816685 +-0.0666868 0.15458 -0.000433214 +0.00520355 0.0894816 -0.0332282 +-0.0438381 0.033833 0.0263899 +-0.0863798 0.100827 0.00341316 +-0.0560788 0.154579 -0.00133297 +-0.0130807 0.0387897 0.0319484 +0.0526374 0.0710929 0.00470311 +0.0114966 0.0923286 0.0527326 +-0.0637555 0.0336685 -0.00625178 +-0.0475689 0.0432884 -0.0109341 +-0.0725775 0.0367142 0.00725292 +-0.0374892 0.112529 0.0350998 +0.0350676 0.0395586 0.0248293 +-0.031508 0.0675059 0.0394967 +0.0422807 0.0831292 -0.00677447 +-0.0617624 0.0810326 -0.0192317 +-0.0601798 0.155861 0.0135147 +-0.0160151 0.185636 -0.0207096 +-0.0495589 0.141679 0.00640064 +0.0451001 0.0791381 0.000209359 +-0.00648871 0.115533 0.0401374 +-0.0179936 0.034905 0.0502652 +-0.0345243 0.0619374 0.0399691 +0.0253647 0.107408 0.0385761 +0.0241683 0.0795725 0.0490812 +-0.076883 0.154198 -0.00789596 +-0.022619 0.0436731 -0.0285417 +0.0302544 0.115002 0.0294335 +-0.0112354 0.0407042 0.0501624 +-0.0374964 0.118015 0.0312717 +-0.0264155 0.169752 -0.0102811 +-0.0325172 0.115309 0.0332233 +-0.0883434 0.0968836 0.00640652 +-0.0074894 0.104457 0.0437929 +-0.0122029 0.0391189 0.0354325 +0.0605626 0.0609358 0.0161739 +-0.0291057 0.0349617 0.0478282 +-0.00632683 0.0367419 -0.0160833 +0.0422139 0.06433 -0.00247442 +-0.0834639 0.0815548 0.0279962 +-0.091428 0.113787 0.018961 +-0.0164849 0.0911174 0.0558291 +-0.0521483 0.153554 0.0122178 +0.0344074 0.0446243 -0.00536213 +-0.09232 0.126938 0.0302595 +-0.0718881 0.12088 -0.00850233 +-0.0769692 0.155214 0.0250641 +-0.0847077 0.140411 0.00224002 +-0.0180254 0.171268 -0.0157212 +0.0102822 0.065327 -0.0312772 +-0.0271732 0.171194 -0.0185934 +-0.0475224 0.0587349 0.0366732 +-0.0815066 0.0980245 0.032594 +-0.0287322 0.0335484 -0.0250427 +0.000965074 0.0348235 0.00577003 +-0.0874433 0.114073 0.0447649 +-0.0745611 0.163685 -0.0159572 +-0.0504998 0.0931897 0.044287 +0.00144942 0.127679 0.0289378 +-0.0830551 0.128552 0.0515383 +-0.0537303 0.0473713 0.0135851 +-0.0226958 0.0380494 0.0144148 +-0.0698996 0.147518 -0.0298062 +-0.0374978 0.0833038 0.0438252 +0.0144108 0.118463 -0.013667 +-0.0810085 0.1097 0.0318734 +-0.0883068 0.151437 0.0121831 +0.0014962 0.114186 0.0411808 +-0.0457512 0.0782542 -0.0192962 +-0.0728503 0.107163 0.0374416 +-0.0546426 0.0335759 -0.00981752 +-0.0905935 0.133662 0.00922276 +-0.0777368 0.158322 -0.016916 +0.0333249 0.108715 0.0307644 +-0.0758319 0.0675199 0.00554661 +-0.0608714 0.0385134 0.0195368 +-0.0766234 0.167356 -0.0265012 +0.0324864 0.115764 0.0245556 +-0.051601 0.149349 0.0154046 +-0.0370133 0.1227 0.0269929 +-0.0556554 0.124247 -0.00722427 +-0.0272643 0.118767 -0.0116611 +-0.0284876 0.0660147 0.0384689 +-0.0890493 0.136506 0.0262024 +0.0455252 0.0918117 0.00617298 +-0.0739705 0.110854 0.0450522 +-0.054929 0.0378655 -0.0109689 +-0.0211646 0.0933284 0.0517404 +-0.00865087 0.0496719 -0.030975 +0.0599111 0.0692057 0.0151972 +0.0182222 0.0631608 0.0491228 +-0.0659867 0.134061 -0.00822741 +-0.0533518 0.117447 -0.0141574 +-0.0356207 0.0519761 -0.0103771 +-0.0674828 0.0383816 0.0133921 +-0.0179472 0.0391243 0.0360362 +-0.0353932 0.0352385 0.0143534 +-0.0381912 0.168168 -0.0127822 +0.0242439 0.0994852 0.044008 +-0.0331278 0.165217 -0.0153881 +0.0419441 0.102888 0.00516309 +-0.0744413 0.0833098 0.038687 +-0.0349807 0.177 -0.00919022 +0.00950876 0.0882899 0.055046 +0.0203114 0.0607424 -0.0267183 +-0.00473829 0.0684427 -0.0355801 +-0.0293549 0.0495451 -0.022456 +0.0213555 0.0521216 -0.0251867 +-0.0608025 0.132515 0.0384279 +-0.086306 0.0981081 0.00140707 +0.0124215 0.122685 -0.01021 +0.0534041 0.0547278 -0.00176167 +-0.0725172 0.105485 0.0374705 +-0.0925573 0.125589 0.0382552 +0.023685 0.124697 0.0198268 +0.0381226 0.0574698 -0.00591549 +-0.0358756 0.107103 -0.0202685 +-0.00445554 0.112864 -0.0195829 +-0.00333512 0.125963 -0.00760181 +0.0355639 0.058664 -0.0117324 +-0.0752743 0.171989 -0.0354168 +0.0264872 0.122262 0.00520712 +-0.0911855 0.114622 0.00933636 +-0.0888501 0.102361 0.0153809 +0.0303343 0.0358493 0.0181065 +0.0388945 0.108364 0.0171641 +0.0444906 0.0861036 -0.00180248 +-0.00457845 0.0388805 0.0300129 +-0.0689372 0.126774 -0.00892675 +0.0352594 0.113795 0.0141522 +0.0379749 0.0374097 0.0109015 +0.00640925 0.0404248 -0.023654 +-0.0569156 0.112617 -0.0162683 +-0.0161127 0.0388433 -0.0124778 +-0.0568734 0.0358081 0.0462717 +-0.0852004 0.111887 0.0434561 +-0.0393334 0.174116 -0.00798067 +-0.0335527 0.156609 0.00223348 +-0.06623 0.13826 0.0429445 +-0.029146 0.168214 -0.0173005 +0.0267233 0.0347365 0.00732658 +-0.0416725 0.0607151 -0.0124173 +-0.0304675 0.175749 -0.00423829 +-0.0888241 0.114444 0.00524771 +-0.00228102 0.038771 0.0269718 +-0.0353955 0.0337248 -0.0302701 +-0.0474965 0.0862056 0.045143 +-0.0615859 0.155307 -0.0235819 +0.0506383 0.0516722 -0.00273463 +0.0335552 0.036072 0.00748554 +-0.00436077 0.12603 -0.00766771 +-0.0239599 0.182991 -0.0170658 +-0.00549985 0.07185 0.0581365 +-0.0328429 0.0972178 -0.0231932 +-0.091474 0.148846 0.0181354 +0.0336134 0.0876336 0.0416906 +-0.0614982 0.101529 0.0422258 +-0.0495014 0.0464837 0.0411417 +-0.0551395 0.054088 0.00915623 +-0.0432223 0.147486 -0.00120685 +-0.0358825 0.108535 -0.0199213 +0.00990352 0.130871 0.0175976 +-0.00150184 0.0978367 0.052434 +-0.0334203 0.0667037 -0.0174892 +0.0289827 0.0467369 -0.00766304 +-0.0555362 0.0629843 -0.00681601 +-0.0758946 0.0992374 -0.0118631 +-0.0367472 0.127095 0.0166739 +-0.0571684 0.0576767 0.00966588 +-0.0823623 0.154598 0.0188308 +-0.0905142 0.129614 0.0405398 +-0.0677394 0.0764997 -0.0160371 +-0.0201192 0.163785 -0.0165508 +-0.0132881 0.113144 -0.01784 +0.0143956 0.046307 -0.0246969 +0.0117341 0.0390743 0.0447312 +-0.0746833 0.155701 -0.000366346 +-0.069527 0.156219 -3.70248e-05 +-0.0226679 0.0341396 -0.0206509 +-0.00924422 0.0344526 -0.0182921 +-0.0276907 0.0335904 -0.024878 +-0.00470812 0.0669686 -0.0349707 +-0.024291 0.106203 -0.0224613 +-0.0142085 0.0972199 -0.0290358 +-0.0465353 0.133196 0.0100953 +-0.0245088 0.108515 0.0403619 +-0.092997 0.116043 0.0153159 +-0.0517083 0.131123 0.0322407 +-0.0456135 0.053373 -0.0104441 +-0.0345226 0.0846315 0.0427551 +-0.00735617 0.0354566 -0.0169734 +-0.0865776 0.109066 0.0163469 +-0.0436408 0.0408205 -0.0223011 +-0.0526724 0.130856 -0.00431281 +-0.0516582 0.0647811 -0.0108241 +0.0182047 0.100313 -0.0224597 +0.0445886 0.0833307 0.0241696 +-0.0749819 0.151307 -0.0268775 +-0.0846364 0.0845811 0.0264985 +-0.0452001 0.165138 -0.00833108 +-0.0791947 0.168601 -0.0366432 +-0.0848581 0.120613 -0.00298955 +0.0319638 0.0780558 -0.0197042 +-0.0923737 0.128196 0.0102559 +0.0394261 0.0716433 -0.0107927 +0.0122035 0.115305 -0.0162457 +-0.0229162 0.0383263 0.00143492 +0.0428254 0.0986969 0.0191637 +0.0153612 0.0463061 -0.0243571 +-0.00764709 0.0511598 -0.0317878 +-0.0853621 0.135278 0.0465646 +-0.0829375 0.116994 0.0487646 +-0.085028 0.100559 0.0275605 +-0.0219183 0.0382906 0.00166561 +-0.0765591 0.0818865 0.0366215 +0.0417584 0.0971928 -0.00282344 +-0.064598 0.141073 0.0399979 +0.0464507 0.0764566 0.0101865 +-0.0788399 0.114858 -0.00418456 +-0.0825062 0.110166 0.000353593 +0.029005 0.0699505 0.0419019 +-0.0144969 0.0814706 0.0569355 +0.0278524 0.115393 0.0316598 +-0.0742949 0.17555 -0.0422185 +-0.0749686 0.158241 -0.0259415 +-0.0378653 0.102824 -0.0209313 +-0.0110297 0.11443 -0.0172182 +0.0092913 0.0739064 -0.0330363 +0.0274028 0.0416284 -0.00496361 +-0.0105374 0.130025 0.0158825 +-0.0530895 0.0530892 -0.00643833 +-0.0165413 0.0573347 0.0511714 +0.0165193 0.125294 -0.00303164 +-0.080526 0.109264 0.0359357 +-0.0639459 0.153257 -0.00670123 +0.0199666 0.126684 0.0198751 +0.0426813 0.101508 0.00916223 +0.0270307 0.0781852 0.0461538 +0.00819303 0.0342719 -0.00156322 +-0.0758021 0.154133 0.0299324 +0.0217183 0.114203 -0.013082 +-0.0761724 0.154401 0.00198863 +0.0253655 0.0814952 -0.0244829 +-0.0357817 0.0871994 -0.0240994 +-0.0181797 0.178658 -0.0176382 +-0.018211 0.0697307 0.0537615 +-0.0393811 0.154717 -0.00895732 +-0.014508 0.0659228 0.0537042 +-0.0294961 0.104302 0.0413374 +-0.0281692 0.171188 -0.018077 +-0.0564789 0.0833746 0.0446901 +-0.0817321 0.120346 0.0490739 +-0.0180945 0.124042 -0.00530863 +-0.0722448 0.0688588 0.0287217 +-0.064637 0.0404566 0.0276669 +-0.0642686 0.171043 -0.0609844 +-0.00150003 0.0520299 0.0541649 +0.0343966 0.0968432 0.0376227 +0.033587 0.0739599 -0.0167921 +-0.0916761 0.122705 0.00729331 +0.0435692 0.0691645 0.0259965 +-0.0583799 0.0342852 0.0299739 +0.0193411 0.0593649 -0.0271573 +-0.0630027 0.145885 -0.0118617 +-0.0492939 0.133961 0.00142725 +-0.0445641 0.0405033 0.0438121 +-0.0534909 0.101517 0.0419949 +-0.0137652 0.0728728 -0.0386088 +-0.000746952 0.0726633 -0.0355323 +-0.00426313 0.130924 0.016725 +-0.0833848 0.0776237 0.00250717 +0.0107457 0.127435 -0.00331768 +-0.0566099 0.136533 -0.00462162 +-0.0137664 0.0742812 -0.0386456 +-0.0253123 0.0865272 0.0518462 +0.0391332 0.0800655 -0.0117735 +-0.0595022 0.0987448 0.042776 +-0.031899 0.0792306 -0.0315346 +-0.074881 0.117904 -0.00727699 +-0.0755718 0.165165 -0.0201548 +0.0408155 0.0939721 0.0292858 +-0.0854938 0.096523 0.0281673 +-0.0644931 0.105621 0.039804 +-0.0196701 0.0554437 -0.0324495 +0.0139693 0.112639 -0.017366 +-0.00232624 0.124886 -0.00844394 +-0.0617679 0.0824635 -0.0193558 +-0.0599121 0.0588939 0.00621161 +-0.0826266 0.146034 0.0392943 +-0.0649084 0.165706 -0.0272764 +-0.0602113 0.0697286 0.0375341 +-0.00175042 0.0897209 -0.0353687 +-0.0275054 0.107176 -0.0215083 +-0.062122 0.0429616 0.0266943 +0.032428 0.0625798 -0.0177725 +-0.0663881 0.0677373 0.0326703 +-0.02076 0.0347198 -0.0277376 +-0.0519381 0.0597689 0.0297286 +-0.0595413 0.0582322 0.0158865 +-0.0445568 0.151229 -0.00569012 +-0.0210951 0.12531 -0.000542597 +-0.020213 0.178617 -0.0227863 +-0.00769265 0.0388371 -0.00333188 +-0.0344924 0.09037 0.0442186 +-0.0786032 0.107051 0.0327104 +-0.0434904 0.12843 0.000929671 +-0.058473 0.115363 0.0369711 +0.045085 0.0833373 0.00221176 +-0.0384977 0.0648621 0.0416261 +-0.0407478 0.0768336 -0.0187281 +-0.0578796 0.102621 -0.0187883 +-0.0846144 0.128516 0.0502768 +0.0170529 0.075444 0.0528157 +-0.018505 0.0786406 0.056357 +-0.0752579 0.0874199 0.0393733 +0.043967 0.0636126 -0.00172463 +-0.0914628 0.146095 0.0181484 +-0.0294715 0.117536 0.0312989 +-0.0581079 0.0480417 -0.000353036 +-0.0384621 0.172216 -0.000421117 +0.0412086 0.0684033 0.0296357 +-0.0332986 0.0384796 -0.0137148 +-0.0549774 0.0335456 0.00467992 +0.00953694 0.103082 0.0459273 +-0.048193 0.133027 0.0241926 +0.00364343 0.0960341 -0.0296841 +-0.0809226 0.0926448 0.0335946 +0.0316471 0.05126 -0.00972402 +-0.0622205 0.164668 -0.0515889 +0.0257137 0.0591918 0.0440938 +-0.0116637 0.0384284 0.00907266 +0.00758624 0.0341288 -0.016561 +-0.0732628 0.0731075 0.0335988 +0.0105031 0.0347322 0.0422156 +0.0273613 0.0592959 -0.0217662 +-0.0329323 0.126815 0.00921204 +-0.0462425 0.0615364 0.0381535 +0.00735972 0.130718 0.020957 +-0.0618449 0.152018 0.0348716 +-0.0311962 0.0475489 -0.0247586 +-0.0384898 0.113893 0.0344296 +-0.0268492 0.155368 -0.00477229 +0.0138974 0.0344287 -0.0156692 +-0.0374813 0.169748 0.00157136 +-0.0892091 0.137796 0.0122163 +-0.0705026 0.0958452 0.0418601 +-0.0862013 0.10903 0.0113533 +-0.0682521 0.15944 -0.00832765 +0.038441 0.100665 0.0293761 +-0.0639313 0.11526 -0.0113233 +-0.0664444 0.151761 -0.0404644 +0.0142088 0.034798 0.0302902 +-0.0244166 0.0931902 0.0479432 +-0.0714792 0.167875 -0.0225174 +-0.0161203 0.0383572 0.000963241 +0.0282773 0.0862159 0.0445154 +0.0375 0.107296 0.0262149 +-0.0891989 0.11586 0.044703 +0.00339178 0.0433892 -0.0247833 +-0.0790801 0.0704064 0.00826811 +-0.0237813 0.0756129 -0.0382516 +0.00190837 0.124868 -0.00847893 +0.0243137 0.119818 0.0300741 +-0.0758951 0.123764 -0.00763971 +0.052991 0.0735097 0.0116286 +-0.0175974 0.0393048 -0.0277532 +-0.013784 0.0799171 -0.0389774 +0.00451197 0.0619711 0.0562284 +-0.0331612 0.0342582 0.0246899 +0.0314823 0.114431 0.0284596 +-0.0530088 0.145722 -0.00115007 +-0.0684496 0.0369814 0.0129839 +-0.0203772 0.158233 -0.00725915 +0.0148967 0.0366228 -0.0205744 +-0.0250413 0.0925197 -0.0322644 +-0.0424949 0.168218 0.00285877 +-0.0414982 0.0719267 0.042103 +-0.0939163 0.120093 0.0142993 +-0.0164902 0.112704 0.0398029 +-0.000484486 0.0703477 0.056848 +0.060415 0.0678562 0.0151973 +-0.0550635 0.116914 0.036091 +0.0200483 0.0385661 -0.0116898 +-0.0250588 0.123734 -0.00291588 +0.0403936 0.0629925 0.0301493 +0.0379656 0.0874795 0.0356781 +-0.0548923 0.105518 -0.0186699 +-0.0311396 0.166714 -0.0162904 +0.0470624 0.0740285 0.0123586 +-0.0678676 0.100922 -0.0154166 +-0.0631629 0.124137 0.0456282 +-0.0731746 0.154066 -0.0319096 +-0.0307727 0.033545 -0.0254394 +-0.0890856 0.122978 0.0464209 +-0.0236634 0.123398 -0.00459221 +0.046259 0.0820395 0.0071847 +-0.000605347 0.130433 0.0223861 +0.0192013 0.0591556 0.0487522 +-0.0498987 0.124057 -0.00910218 +-0.0170638 0.168326 -0.0143421 +0.0265398 0.104204 -0.0163559 +-0.0938575 0.120136 0.0242923 +-0.0179474 0.100123 -0.0240926 +-0.058599 0.155538 0.0184341 +-0.0170777 0.0418831 0.0522589 +-0.0545484 0.0457621 -0.00683862 +0.00723985 0.076824 -0.0341303 +-0.0907031 0.148891 0.0231421 +-0.0174825 0.107148 0.0420092 +-0.0911131 0.129682 0.0362351 +-0.0499113 0.147776 0.0118822 +-0.0657818 0.152842 -0.0413063 +0.0528515 0.0592232 -0.00323634 +-0.0693828 0.0805427 0.0408087 +-0.060108 0.0423138 0.0158374 +0.0281616 0.0699505 0.0424355 +0.00679863 0.0347495 0.0432322 +-0.0458268 0.125298 0.0247658 +-0.0567225 0.043789 0.0226896 +-4.09913e-05 0.10064 0.0465907 +-0.0729374 0.129655 -0.00843737 +0.0415013 0.104244 0.010161 +0.0342459 0.0889575 0.0408509 +-0.0808289 0.138985 -0.00281163 +-0.0425095 0.171123 -0.00130836 +-0.0870569 0.137884 0.0425258 +0.00149552 0.116934 0.0397718 +-0.0158011 0.0388262 -0.0105326 +0.00549603 0.0413259 0.0457036 +-0.0325959 0.124521 0.0211556 +-0.058912 0.109738 -0.0167726 +-0.0772259 0.151416 -0.00590086 +-0.0077735 0.0770379 -0.0376668 +0.0385932 0.0436441 0.0291648 +-0.0778914 0.162484 -0.0299302 +-0.0641074 0.0639595 0.0276548 +0.0187103 0.0342934 0.0023932 +-0.0858293 0.151702 0.00893089 +0.0336067 0.0504819 0.0325279 +-0.0810076 0.10869 -0.00259876 +-0.0557401 0.0547516 -0.00240302 +-0.0335154 0.108413 0.0382413 +-0.00564795 0.049654 -0.0307584 +-0.0765497 0.0728479 -0.00560245 +-0.00214115 0.127727 0.0291435 +-0.0701217 0.159568 -0.0479252 +-0.0794787 0.104524 -0.00660043 +0.00849938 0.0366585 0.0454484 +-0.0305059 0.0889327 0.0438397 +-0.0638439 0.101082 -0.0177706 +-0.0045041 0.0801506 0.0577231 +0.013232 0.0835986 -0.0303791 +-0.0809796 0.0788834 0.0298322 +-0.0148841 0.0959887 -0.031739 +-0.0699437 0.0669048 0.0273786 +-0.0514117 0.134659 0.0288827 +0.0105257 0.123354 0.0336723 +0.0263222 0.107421 0.038207 +-0.0125183 0.095238 0.0536312 +-0.0634853 0.0904216 0.0451002 +0.0377424 0.110293 0.0150624 +-0.0700913 0.0419644 0.00613646 +-0.0565326 0.0401709 -0.00945456 +-0.0553504 0.0460785 0.0138247 +-0.0114916 0.0759418 0.0571389 +-0.0796666 0.0886389 0.0352895 +0.0338998 0.0888046 -0.0179815 +-0.0207237 0.0567772 0.0467736 +0.0293267 0.120376 0.00767428 +-0.0865466 0.137714 0.00320362 +-0.0815177 0.106 -0.00361682 +0.0360857 0.0784054 -0.0147648 +-0.0706254 0.129856 0.0506426 +0.0309103 0.088937 0.0430941 +0.0186908 0.127724 0.0151265 +0.0607002 0.0665033 0.01416 +-0.0347226 0.0711465 -0.0183854 +-0.0475247 0.0335798 -0.00289187 +0.00330662 0.0597508 -0.0323981 +0.0162777 0.117973 -0.0131407 +0.0260142 0.118212 -0.00538239 +-0.0524983 0.0477783 0.0397646 +0.00462528 0.109546 0.0419595 +-0.0848442 0.146005 0.0372765 +-0.0568876 0.0998079 -0.0197942 +-0.0478768 0.15504 0.00962757 +0.0236771 0.0956901 -0.0213272 +-0.0909699 0.113313 0.018324 +-0.0314956 0.0560344 0.0371147 +0.0419523 0.101425 0.00119033 +-0.0205212 0.118181 0.0347958 +0.00296971 0.0341513 0.00863676 +-0.0034922 0.0473569 0.0490622 +0.0168587 0.0347265 0.0236529 +-0.00422658 0.0396088 0.0480089 +0.0402871 0.104196 0.0211608 +-0.0211382 0.0985478 0.044502 +-0.0469324 0.0383628 -0.0152843 +0.0223386 0.0578809 -0.0262309 +-0.094679 0.122825 0.0202733 +-0.00649716 0.0619561 0.0561245 +-0.0530923 0.143138 0.0243879 +0.0586666 0.0690768 0.00715872 +-0.0632884 0.0444363 0.0372932 +-0.0584087 0.0421172 0.0451764 +0.0462769 0.0649494 -0.00109094 +-0.0892011 0.0983026 0.0104143 +-0.050311 0.033406 0.00395206 +-0.0171117 0.123425 0.0297114 +-0.0067867 0.0784694 -0.0378945 +-0.0413793 0.0448727 -0.0203291 +0.00613123 0.105885 -0.0208912 +-0.0209654 0.035527 0.0525237 +0.0515169 0.0664883 0.0274059 +-0.0186581 0.0985081 0.0446525 +0.00326552 0.127077 0.029619 +0.00950248 0.111292 0.0396928 +0.0420852 0.077848 0.0291974 +-0.0404715 0.0343242 0.0319689 +-0.0775002 0.156948 -0.0139048 +-0.0828255 0.0924347 -0.00656966 +-0.0256554 0.124701 0.019279 +0.00649798 0.107134 0.0414437 +-0.0067083 0.0613544 -0.0352012 +-0.0341277 0.165212 -0.0151261 +-0.0305288 0.0353431 -0.0195833 +0.00449494 0.105757 0.0421851 +-0.0313565 0.161046 -0.00157639 +0.00317447 0.0908801 -0.0331491 +-0.066706 0.0375681 0.0351923 +0.0146203 0.128223 0.0236197 +-0.0931816 0.121543 0.0372829 +-0.0390449 0.0344196 0.0339502 +0.0204938 0.0865196 0.0494812 +-0.0909512 0.147073 0.025026 +-0.0398753 0.149194 -0.00215183 +0.0371767 0.095465 0.0345819 +-0.0534525 0.116245 -0.0149003 +-0.00912597 0.168128 -0.0227626 +0.0103593 0.0509634 -0.0286117 +0.00839042 0.0434178 -0.024623 +0.012125 0.10869 -0.0190017 +-0.0749621 0.134014 -0.00721966 +-0.0789216 0.172194 -0.0440002 +-0.0258331 0.0561399 -0.0284181 +-0.0817922 0.143171 0.000171875 +0.0451306 0.0647669 -0.000900002 +-0.0514821 0.113924 -0.0164877 +0.00371763 0.0346901 0.0426483 +-0.0475701 0.0461114 -0.0100167 +0.0406981 0.104234 0.0181671 +-0.0453678 0.060156 0.0387657 +-0.0314314 0.0693522 -0.0254564 +-0.0154911 0.0702181 0.054969 +-0.0300755 0.123175 0.0220771 +-0.0216491 0.0479362 -0.0281524 +-0.0507589 0.144713 0.0133585 +-0.0670917 0.155954 0.0255845 +-0.0852375 0.1104 0.00532111 +-0.0573508 0.121267 0.0398601 +-0.0261065 0.0944666 -0.0262366 +-0.0897054 0.124293 0.0455762 +-0.000486036 0.047441 0.049521 +-0.0438029 0.167379 0.00334272 +0.0111963 0.0864748 -0.0310924 +0.0464517 0.0750534 0.00718936 +-0.036486 0.0619956 0.0409573 +-0.0314993 0.116609 0.0322344 +-0.0544997 0.117303 -0.0139925 +-0.0420673 0.0336103 0.00544111 +-0.0856626 0.0912736 -0.00055353 +-0.050495 0.0974075 0.0440057 +0.0309311 0.0355864 0.0055308 +0.0202177 0.109327 -0.0158556 +0.0249428 0.0968855 0.0450153 +-0.00751 0.070341 0.0568254 +-0.0604012 0.0335984 -0.00916237 +0.0245092 0.0406191 -0.00557292 +-0.0451779 0.152141 0.00822921 +-0.0607654 0.0668786 0.0346016 +-0.0593188 0.114075 -0.0145597 +-0.091214 0.143385 0.025163 +-0.0425978 0.0505652 -0.0109174 +-0.0423266 0.169779 -0.00887745 +-0.0224756 0.0348012 0.0476768 +0.0409735 0.0405135 0.0215425 +-0.0801239 0.110623 0.0438367 +-0.0138651 0.0987904 -0.0246748 +-0.043573 0.126043 -0.00725208 +-0.0208606 0.101617 -0.0238418 +-0.0425016 0.0605517 0.0404213 +-0.00249479 0.0590139 0.0541301 +0.0409984 0.102803 0.000176721 +0.0342014 0.0808856 0.0407312 +-0.0247835 0.166781 -0.00970724 +0.00931572 0.0725689 0.0556419 +-0.0642124 0.145356 0.038849 +-0.0716272 0.0748459 -0.0119866 +-0.012533 0.0458468 0.048979 +-0.0741728 0.15268 -0.0288898 +-0.0211868 0.174176 -0.0217698 +-0.054499 0.0761691 0.0426143 +-0.0851934 0.11068 0.0373035 +-0.00964195 0.120097 -0.0132573 +0.0149745 0.129329 0.00806984 +-0.0535552 0.0335918 0.0121227 +0.0387224 0.1084 0.018173 +-0.0858928 0.108988 0.00834067 +0.00426552 0.0697141 -0.0335935 +0.0304509 0.117992 0.000957505 +-0.0134723 0.0603845 0.0536243 +-0.0809665 0.133877 -0.00363658 +-0.0877284 0.0950339 0.0247524 +-0.0708769 0.155921 0.00969704 +-0.0388302 0.173903 -0.00342781 +0.0123125 0.0680946 -0.0309662 +-0.0540561 0.150161 -0.00256907 +-0.0662654 0.129803 0.0463681 +-0.0481341 0.0344887 0.0319692 +-0.0482356 0.137094 0.0133979 +-0.0638562 0.148524 -0.023921 +-0.0873971 0.140576 0.0399568 +-0.0920359 0.126943 0.0332532 +0.00766079 0.0616753 0.0549139 +-0.0820513 0.0882817 -0.00662822 +-0.0583711 0.0614813 0.0257087 +-0.046355 0.0345569 0.0357917 +0.0473411 0.0488863 -0.00367878 +0.0292435 0.0637114 -0.0199317 +-0.0250309 0.172718 -0.0117738 +0.0423872 0.0459654 -0.00393846 +-0.0484976 0.0805051 0.0439961 +-0.0497297 0.0737805 -0.0165746 +0.0463736 0.0682111 0.00160519 +-0.0334339 0.166782 -0.00461644 +-0.0772978 0.0685904 0.0138065 +-0.0645607 0.153661 0.00110457 +0.00849221 0.108496 0.0406568 +-0.0554287 0.1598 0.000101402 +-0.0412715 0.127285 -0.00254236 +-0.080968 0.0967089 0.0335048 +0.0225187 0.123964 0.0251042 +-0.0559057 0.0379831 0.047068 +-0.0594802 0.0716799 0.0395512 +-0.0618223 0.170491 -0.0617288 +-0.0564955 0.104323 0.0414899 +-0.0810442 0.152541 0.00426923 +-0.0435828 0.0345782 0.0398547 +0.0126008 0.128196 0.0257553 +-0.0526679 0.0579784 0.0235498 +0.0380115 0.110174 0.0108643 +0.0150842 0.114728 -0.0156323 +0.0148813 0.0348012 0.0286151 +-0.0479877 0.121051 0.028756 +-0.0883678 0.128089 0.00227451 +-0.0720422 0.15541 -0.0389078 +0.0112474 0.0724264 -0.0317987 +0.0267956 0.111385 0.0354031 +-0.0649586 0.160381 -0.0157887 +0.00550295 0.0702783 0.0558582 +-0.0238067 0.0899629 -0.0356649 +-0.090988 0.113988 0.0207121 +0.0194892 0.0934174 0.0476186 +-0.0655537 0.161293 -0.0160037 +-0.0625236 0.0609176 -2.19725e-05 +-0.0491589 0.162483 -0.00556124 +-0.042649 0.0378778 -0.0263104 +0.00374161 0.0952291 -0.0308324 +0.025598 0.0610493 -0.0236458 +0.00942462 0.0375116 -0.02327 +-0.00136682 0.125668 -0.00729488 +0.008486 0.0532759 0.0521458 +-0.00749086 0.0675042 0.0558082 +-0.092697 0.117351 0.0113077 +0.0251837 0.112665 -0.0114294 +-0.04997 0.140123 0.00440621 +-0.0534339 0.040168 0.0467985 +-0.0936376 0.124116 0.0132691 +-0.0222759 0.0382517 0.00526325 +0.0600635 0.0664445 0.00913698 +-0.0224559 0.092554 -0.0342812 +0.0582887 0.0538074 0.00917936 +0.046059 0.0834308 0.0121726 +-0.0619009 0.0678892 0.0352357 +-0.0566658 0.0473318 0.0108617 +-0.0457003 0.0694971 -0.0160523 +-0.0618544 0.174099 -0.0565963 +-0.0498016 0.128288 0.0314623 +-0.0225807 0.159177 -0.00302445 +-0.0623624 0.16436 -0.0595797 +0.0383958 0.0505315 -0.00659356 +-0.0332433 0.126938 0.0135159 +-0.0454819 0.0875316 0.0441596 +-0.0835389 0.110217 0.0023021 +0.0386074 0.0617702 0.0328492 +-0.0407686 0.0811968 -0.0203079 +-0.033827 0.0901076 -0.0243377 +0.0506567 0.0703381 0.00346635 +0.0228724 0.125195 0.0195238 +-0.0187529 0.0384803 -0.00337678 +0.0222732 0.12205 0.0293193 +-0.0294959 0.0645466 0.0380401 +-0.0689565 0.166538 -0.0215879 +-0.00506288 0.0387211 0.00101779 +-0.0647592 0.169439 -0.0415812 +0.00438439 0.037904 -0.00378653 +-0.0241621 0.125878 0.0168174 +0.0359934 0.0685324 -0.0147875 +-0.0182052 0.0381955 0.0170088 +-0.0753414 0.15612 0.015399 +0.0453867 0.0413474 0.00824507 +-0.00449218 0.123763 0.0343217 +0.0460213 0.0862262 0.00917159 +0.0346496 0.0972102 -0.0129196 +0.0196844 0.126554 0.00410284 +0.0202619 0.12651 0.00572713 +-0.00449958 0.0504123 0.0519892 +-0.0899789 0.133805 0.0362152 +0.00988218 0.0886651 0.0547874 +-0.00395268 0.131078 0.00966125 +0.00346471 0.0977538 0.051238 +-0.0236164 0.0422618 -0.0289626 +-0.0253603 0.124214 -0.00135534 +-0.00744498 0.124256 -0.00972454 +-0.0577765 0.0494102 0.000630355 +-0.0321623 0.172645 -0.015639 +-0.0661377 0.0669804 0.0316196 +-0.0240269 0.158277 -0.0107707 +-0.0762359 0.113613 0.0494664 +-0.0849952 0.141833 0.00418636 +-0.0569251 0.0366412 0.0466659 +-0.0283222 0.0749245 0.042497 +0.0216856 0.0878179 -0.0250022 +-0.0866951 0.0951098 0.0265657 +0.0296006 0.0982071 0.041203 +-0.0630317 0.060472 0.0203248 +-0.0304883 0.0574252 0.0370157 +-0.0638466 0.159519 -0.0168205 +-0.0544959 0.0848124 0.0452537 +0.0243406 0.113099 -0.011895 +-0.0900837 0.117534 0.0447346 +-0.00144097 0.0378708 0.018909 +-0.0699808 0.136988 -0.00795948 +-0.0823654 0.0815422 -0.00354068 +-0.00681555 0.0385421 0.0244437 +0.00431168 0.0611153 -0.0319161 +-0.0801269 0.10608 0.0309775 +0.0162329 0.0807169 -0.0293214 +-0.0158843 0.0377689 0.0515755 +-0.0829013 0.122118 -0.00412754 +0.0294673 0.106706 -0.01303 +-0.0534948 0.11254 0.0358256 +0.00150254 0.0605844 0.0560506 +-0.0234977 0.101642 0.0439992 +-0.0797566 0.074638 -0.000471413 +-0.00773143 0.0670178 -0.0355816 +-0.0705055 0.0342009 0.00809348 +0.0167377 0.0461846 0.0432665 +0.00646432 0.110948 0.0411124 +-0.0194753 0.160592 -0.0133076 +-0.00449865 0.115591 0.0404715 +0.0280707 0.046664 -0.00969251 +0.048051 0.0496945 0.0288529 +-0.0763852 0.114637 0.0504008 +-0.0886058 0.150235 0.0251076 +-0.0211531 0.0382979 0.0271326 +0.0408293 0.101363 -0.00180736 +-0.0203988 0.177179 -0.0155929 +-0.0718351 0.180364 -0.0513557 +0.00724322 0.0361893 0.0456372 +0.0124253 0.0374345 -0.0223624 +0.0378254 0.108706 0.0222481 +-0.0871672 0.127065 0.0471934 +-0.0686541 0.12565 0.0517171 +-0.0889642 0.136517 0.0281982 +-0.0304896 0.0559845 0.0366491 +-0.0839703 0.0843113 0.0284366 +-0.00895133 0.0384401 0.00779513 +-0.0942308 0.126903 0.0192529 +-0.0569855 0.0507747 0.00670607 +-0.063488 0.037094 -0.00797583 +0.0252887 0.122228 0.0247087 +-0.0433541 0.112279 -0.0167951 +-0.0255625 0.0532992 -0.0274025 +-0.00849647 0.0532799 0.0524507 +-0.0074932 0.0842694 0.0572981 +-0.0760467 0.0689134 0.00354542 +-0.0518697 0.144272 -0.000239851 +0.0302023 0.0808798 0.0437374 +-0.0276563 0.12199 -0.007026 +-0.0484978 0.100158 0.0428666 +-0.0654874 0.143443 -0.0120814 +-0.0308113 0.153953 -0.00248259 +0.0597604 0.0567164 0.0141707 +-0.0480122 0.0341726 0.0287503 +-0.0640462 0.0622661 0.0238361 +-0.0206969 0.0568414 -0.0326165 +0.0309722 0.116471 -0.00147933 +-0.0691516 0.0788347 0.0401452 +-0.058803 0.0883 -0.0207912 +0.00672447 0.0346721 0.0378883 +-0.0746893 0.154119 0.0302893 +-0.0529585 0.135327 0.0304274 +0.00863241 0.128438 -0.00238911 +-0.0478493 0.099947 -0.0217978 +-0.075086 0.0674684 0.00355063 +0.0326927 0.116394 0.0217802 +-0.0842229 0.144678 0.0395137 +-0.0166094 0.128602 0.0136868 +0.00411662 0.125005 -0.00865855 +-0.0754818 0.148362 0.0406222 +-0.065886 0.15405 -0.00011759 +-0.0425085 0.119367 0.0297171 +-0.0902093 0.131023 0.0402096 +0.0383601 0.0921445 -0.0115002 +-0.038495 0.0804525 0.0431634 +-0.0353039 0.0794833 -0.0226806 +0.0441637 0.0973591 0.0111613 +-0.0590115 0.153958 0.00054242 +0.0453728 0.0735622 0.00221503 +0.0569193 0.0710092 0.00714855 +-0.0114956 0.105842 0.0433599 +-0.0698279 0.181394 -0.0549266 +0.0375934 0.102015 0.0299178 +0.00590625 0.0356875 -0.00331654 +-0.0684622 0.16137 -0.0113077 +-0.0742229 0.109724 0.0423296 +-0.0202504 0.182971 -0.0220384 +-0.091455 0.148836 0.0171378 +0.0152238 0.0793568 -0.0300519 +-0.000512 0.107246 0.0433248 +-0.0428418 0.0971034 -0.0220359 +-0.0514947 0.0819216 0.0442721 +-0.00625132 0.0383797 0.0174726 +0.0252504 0.0789879 -0.0247523 +-0.0833347 0.0898073 0.030438 +-0.0509182 0.146274 0.0133981 +0.0202304 0.105998 0.0417108 +0.0571307 0.0508797 0.0151878 +-0.0330104 0.126012 0.0180287 +-0.0217816 0.0797281 0.0555871 +-0.00743438 0.120242 -0.0134406 +-0.0148225 0.086924 -0.0385597 +-0.0375897 0.174214 -0.00298303 +-0.00244861 0.0605864 0.0553645 +-0.00874133 0.128614 -0.000328304 +-0.00579055 0.0798611 -0.0376463 +-0.0096155 0.119132 -0.0142361 +0.000497149 0.0534577 0.0541163 +-0.0928025 0.131035 0.0222365 +0.0372258 0.108268 -0.000834485 +-0.0914674 0.129551 0.00825277 +-0.00149557 0.0675596 0.0566557 +0.0154848 0.0548588 0.0485877 +0.0396568 0.0815034 -0.0117853 +0.0174985 0.119533 0.0343583 +-0.0108678 0.0975625 -0.0293851 +0.0264007 0.116693 0.0313169 +0.005469 0.0964333 0.0520715 +-0.0455856 0.128182 -0.00140207 +-0.0175003 0.0499225 0.0470061 +-0.075934 0.0788992 0.0351468 +-0.0067913 0.0812637 -0.0377236 +-0.0769778 0.155918 0.0162848 +-0.0797877 0.0746142 -0.00147983 +-0.0599651 0.0469723 0.0336736 +0.0382386 0.084194 -0.0147697 +-0.0816947 0.113482 0.0465399 +0.00634478 0.0524665 -0.0299091 +-0.0112874 0.182441 -0.0284978 +-0.026226 0.178551 -0.0179991 +-0.0739945 0.1802 -0.0521965 +0.0105211 0.104445 0.0448284 +0.0580719 0.0523893 0.015182 +-0.0525108 0.0819776 0.0447141 +0.0148643 0.0961115 -0.0237665 +-0.00147854 0.0474532 0.049375 +0.00669444 0.0340637 0.00205518 +-0.0753884 0.151441 -0.0109145 +0.0413586 0.0394374 0.00625535 +-0.0196125 0.0381064 0.0149924 +-0.00986994 0.104508 -0.0232523 +-0.0720157 0.145244 -0.0182167 +0.0416371 0.0669849 0.0284796 +0.0284741 0.0381475 -0.00163189 +0.0474976 0.06778 0.0262203 +0.0259166 0.0434925 0.0371741 +0.0464333 0.0455453 -0.00066213 +-0.00640927 0.120163 -0.0133583 +-0.0236376 0.0387148 -0.0157231 +-0.092269 0.124069 0.00827163 +0.0144954 0.119572 0.0352389 +-0.0702988 0.15533 -0.0489684 +-0.0882036 0.143298 0.0111345 +-0.074863 0.0795889 -0.0115995 +-0.0174424 0.10313 -0.0232301 +-0.0686182 0.0628687 0.0026871 +-0.0620712 0.16624 -0.0525885 +0.058207 0.0538058 0.0191798 +-0.0333511 0.0463754 -0.0256604 +-0.0855025 0.0832965 0.0214753 +-0.0920057 0.11611 0.0343124 +-0.0227771 0.124071 -0.00329832 +-0.0610006 0.129721 0.0398956 +-0.0404973 0.0492165 0.0395965 +-0.0481836 0.0335793 0.00422402 +-0.0654948 0.160255 -0.0145439 +0.00736856 0.0479637 -0.0273222 +-0.0123571 0.12972 0.0137799 +0.0579783 0.0551346 0.00616127 +-0.0164763 0.064491 0.0530345 +-0.0608155 0.0896295 -0.0193008 +-0.0205289 0.0958269 0.048234 +-0.086716 0.132512 0.0465811 +-0.052836 0.095613 -0.0220115 +0.0406946 0.0647331 -0.00578164 +0.0121697 0.0950562 -0.0266386 +-0.00950093 0.0925586 0.0561384 +-0.0157375 0.0671877 -0.037968 +-0.0269293 0.0376983 0.0192799 +0.033595 0.0660055 0.039722 +-0.0481741 0.135565 0.0182752 +-0.0224128 0.163867 -0.00803238 +0.00810708 0.101446 -0.0211916 +-0.0458977 0.166944 -0.00688513 +-0.0238738 0.105835 -0.0226784 +0.0272653 0.121002 0.0240179 +-0.0701585 0.0623473 0.0172092 +0.0578867 0.0607943 0.0238444 +0.0565638 0.0695327 0.00435815 +0.012216 0.0753282 0.0545969 +-0.0583609 0.0339112 0.0215144 +-0.0664905 0.0861274 0.0441111 +-0.0514869 0.0987554 0.0433116 +0.0210708 0.0349944 0.0242708 +-0.0102986 0.126308 0.029096 +-0.0638201 0.089594 -0.0189434 +-0.0782747 0.174383 -0.0433933 +-0.0311143 0.16374 -0.0152454 +-0.0915885 0.128321 0.0362439 +-0.0379874 0.0336299 0.0062497 +-0.0854294 0.151325 0.0282936 +0.0124994 0.0909598 0.0531045 +-0.0434452 0.120253 -0.0131867 +0.0229768 0.0754886 0.0490742 +-0.0334786 0.100129 0.0429194 +-0.0741118 0.0819105 0.0384161 +0.0373216 0.0901862 0.036514 +-0.0565657 0.11693 0.0374284 +0.00334719 0.0481602 -0.0292882 +-0.0324526 0.0336078 -0.0239554 +0.0083446 0.116042 -0.0170347 +-0.00977658 0.0387467 -0.00366788 +-0.0206679 0.0509474 -0.0298149 +-0.0242736 0.181474 -0.0180054 +0.0160525 0.0350115 0.0395034 +-0.0543014 0.146215 0.0264084 +-0.00102573 0.0346607 0.0434939 +-0.0611888 0.155469 0.00589931 +-0.0406241 0.0520111 -0.0110025 +-0.0705109 0.148356 0.0407257 +0.0495286 0.0610841 0.0304744 +-0.019145 0.0893155 0.0554734 +0.00268229 0.12726 -0.0050686 +-0.0743228 0.155495 -0.0229079 +0.021268 0.0762952 -0.0266753 +-0.0239356 0.0374925 -0.0183912 +0.0262803 0.0660857 -0.0226574 +-0.0164998 0.0856439 0.0570811 +-0.0857415 0.120359 0.048887 +-0.0344903 0.0505305 0.0383369 +0.00230798 0.0346028 0.0406387 +-0.0929029 0.129672 0.0252445 +-0.0654938 0.0604629 0.00727621 +0.044722 0.0833037 0.0012072 +-0.0230106 0.0580182 0.0433839 +-0.0105663 0.0350401 0.0482738 +0.0582293 0.0690671 0.00613614 +-0.0600127 0.131125 -0.00733582 +-0.0321751 0.162395 -0.00280539 +-0.0555013 0.0623754 0.0293782 +-0.0252415 0.109687 -0.0201254 +-0.0560506 0.150155 -0.00188433 +-0.0600649 0.129705 0.039485 +0.0338293 0.0767952 -0.0167877 +0.01215 0.0919974 -0.0294248 +-0.0346452 0.0340944 0.0173387 +-0.050492 0.149246 0.012837 +-0.0550682 0.150156 -0.00218973 +-0.00881167 0.085499 -0.0379404 +-0.0780101 0.11134 -0.00369811 +-0.0795926 0.100727 0.0334268 +-0.0423449 0.122373 -0.0114097 +0.0248097 0.124191 0.0159771 +-0.0174692 0.0529782 0.0491698 +-0.0889728 0.101008 0.0133925 +0.00851959 0.0730626 0.056014 +-0.026729 0.159626 -0.000161004 +0.0222613 0.0720727 -0.026869 +0.0396492 0.0970274 -0.00677557 +-0.0301141 0.166809 -0.00684471 +-0.00834781 0.129635 0.0224773 +-0.0198097 0.0813191 -0.0390949 +-0.0489315 0.137078 0.0173942 +-0.0161123 0.0985355 -0.0244159 +0.0331161 0.0795687 -0.0187107 +-0.0365028 0.0761422 0.0420368 +-0.0315196 0.0834471 -0.0305496 +-0.0366299 0.0534085 -0.0105028 +-0.0844928 0.0979861 -0.00258986 +-0.049695 0.0693575 -0.0143663 +-0.0795053 0.148405 0.0389114 +-0.0143105 0.0338147 -0.022462 +-0.036834 0.0382539 -0.0105119 +-0.0528967 0.0476266 0.0236645 +-0.0431625 0.0436516 -0.0173214 +0.0442909 0.0959534 0.0041727 +-0.0499053 0.141681 0.0133989 +-0.084567 0.0897523 0.028848 +-0.035736 0.0740102 -0.0187661 +-0.0624191 0.163107 -0.0445959 +0.0553692 0.0711293 0.0213817 +-0.0384984 0.0634699 0.041507 +-0.0420929 0.156178 -0.00917116 +-0.0641565 0.166823 -0.0341745 +-0.0623968 0.162983 -0.056654 +0.0276466 0.0659543 0.0434322 +0.0454314 0.088986 0.0031764 +-0.0749519 0.164602 -0.018207 +-0.0345505 0.175605 -0.011982 +0.0363374 0.104678 0.0298648 +-0.00375231 0.128091 -0.0038931 +-0.0305006 0.100206 0.0434038 +-0.00849625 0.0547108 0.0528122 +-0.0485842 0.0517801 -0.00897412 +-0.00451507 0.0519264 0.0531932 +-0.0815948 0.0748474 0.0175368 +0.0572159 0.0648465 0.024658 +-0.0403921 0.162356 0.00287494 +-0.0749222 0.126715 -0.00818803 +-0.047238 0.0346371 0.0407654 +-0.0621416 0.141343 -0.00629843 +-0.0251564 0.113713 -0.0163747 +-0.00855727 0.119157 -0.0142712 +-0.074494 0.126019 0.0529923 +-0.0205102 0.0461853 0.0521703 +-0.084864 0.0789836 0.0191297 +-0.0187649 0.125661 -0.000995534 +-0.0218427 0.0567021 0.0450804 +-0.0622179 0.153696 -0.0295936 +-0.0364968 0.0576627 0.0395237 +-0.0368019 0.127806 0.00485952 +-0.0770975 0.0967852 0.0367 +-0.000433486 0.0366062 0.0184413 +0.0131024 0.123925 -0.00754958 +-0.0177683 0.0383192 0.0242073 +-0.0655356 0.0398001 0.0300899 +-0.0778591 0.161105 -0.0269202 +-0.0341012 0.162237 -0.0142117 +-0.017501 0.0842912 0.0575736 +-0.0280973 0.16079 -0.0140776 +-0.0421185 0.122004 0.0266511 +-0.0142563 0.178628 -0.0276625 +-0.0440063 0.0629698 0.0401358 +0.0128613 0.0347903 0.0336338 +-0.0248532 0.0348299 0.0453939 +-0.00152849 0.105863 0.0439958 +-0.0346038 0.123422 0.0248791 +-0.0346304 0.079471 -0.0235463 +-0.0639625 0.126764 -0.00871214 +0.0364026 0.0547846 -0.00674979 +-0.0064883 0.123768 0.0340789 +-0.0470974 0.168427 -0.00297818 +-0.0575443 0.0401418 -0.00909914 +0.0257874 0.0895854 -0.0228249 +0.0183006 0.0383341 -0.0177245 +-0.0524963 0.0848256 0.0453696 +0.0561175 0.0494119 0.0111925 +-0.0588172 0.123244 -0.00816875 +-0.00922198 0.0384881 0.0221926 +-0.0331235 0.126633 0.00621772 +-0.0119418 0.120727 -0.011899 +-0.0607049 0.145387 0.0368926 +-0.0306093 0.125854 0.0144859 +-0.0356146 0.127659 0.0111781 +-0.0776104 0.0802915 -0.00928059 +-0.0702074 0.0394853 -0.000301673 +0.0434891 0.0583702 0.0316051 +-0.0789513 0.128091 -0.00607242 +-0.042519 0.0534194 0.039352 +-0.00449744 0.0939058 0.0556112 +-0.0094927 0.0619497 0.0558121 +-0.0694824 0.0944579 0.0422945 +-0.0771177 0.0879695 -0.0126012 +0.014854 0.103191 -0.021265 +-0.043284 0.169832 -0.00794427 +-0.00983007 0.124748 -0.00821099 +0.048512 0.0692789 0.0025489 +-0.0620323 0.0343503 0.0308946 +-0.074493 0.145596 0.0437863 +-0.0375024 0.104216 0.0394845 +-0.047499 0.0451812 0.0421654 +-0.0836103 0.0769236 0.0176347 +-0.0636092 0.170093 -0.0469941 +-0.0483594 0.137097 0.0143972 +-0.087232 0.102325 0.0223672 +-0.035507 0.104243 0.0399833 +-0.0577119 0.0708497 -0.0156457 +-0.00436115 0.122059 -0.0113929 +0.0024069 0.037633 -0.0245625 +0.00251114 0.0911189 0.0554408 +-0.0357211 0.0710689 -0.0174927 +0.0183807 0.0432425 -0.0223469 +-0.0688327 0.09803 -0.0157395 +-0.0747491 0.155081 0.00248708 +0.0451476 0.0833704 0.0221542 +-0.0657925 0.14111 0.0417765 +-0.0365871 0.119162 -0.0120374 +0.0101976 0.131045 0.010577 +-0.0249388 0.183594 -0.0126758 +0.0330579 0.0598189 -0.0157593 +-0.0212823 0.0391811 0.0388836 +0.0144144 0.0403325 -0.0225056 +-0.0304932 0.104292 0.0413193 +0.0224755 0.0947811 0.0470955 +-0.0694247 0.0337382 0.00515427 +-0.00249301 0.118317 0.039019 +0.0288984 0.0924492 -0.0198656 +0.033052 0.0440867 0.029429 +-0.0616004 0.15843 -0.0275855 +-0.0438223 0.0615675 0.0400039 +-0.0452867 0.0410146 -0.0162976 +0.0314256 0.0991914 -0.015062 +-0.0524965 0.0833785 0.044899 +-0.0298946 0.0436977 0.0506861 +-0.076428 0.148619 -0.00986569 +-0.0761803 0.0914451 0.0387697 +-0.0730299 0.172199 -0.0345665 +-0.0274981 0.0960112 0.0443229 +0.0045023 0.13009 0.02428 +-0.0302254 0.162455 -0.00347789 +-0.0871035 0.11231 0.0319974 +0.00225053 0.0726262 -0.0348847 +-0.0748173 0.152727 -0.0208966 +-0.0354946 0.118017 0.0312708 +0.0436028 0.0973418 0.0171655 +-0.0754981 0.13448 0.0513067 +0.0513136 0.0574694 -0.00408483 +-0.0228193 0.0854366 -0.0379031 +-0.057217 0.0336859 0.0130711 +-0.0749012 0.110639 -0.0076926 +-0.00874782 0.125791 -0.00734235 +0.0343242 0.100732 -0.0126444 +-0.0155312 0.126827 -0.00025822 +0.0145856 0.0341976 0.00165401 +-0.0175043 0.114096 0.0387143 +0.0552517 0.0720728 0.0198735 +0.0406726 0.0731516 -0.00877611 +-0.0268119 0.082528 -0.0368734 +-0.0262156 0.0519422 -0.0264212 +-0.0464977 0.041126 -0.0122454 +-0.0711885 0.173044 -0.0381946 +0.0492058 0.0511603 0.0287949 +-0.00188013 0.105918 -0.0222309 +-0.046455 0.126722 0.0256927 +-0.0142526 0.181479 -0.0279552 +-0.0655009 0.0903733 0.0443899 +-0.0037337 0.131051 0.015481 +-0.0308026 0.0367564 0.0517774 +0.0277802 0.121908 0.0142262 +-0.0344815 0.0575696 0.0386716 +-0.0844149 0.0777754 0.0115138 +0.0294342 0.0383781 -0.00173395 +-0.0423644 0.120691 0.0280931 +-0.0350646 0.156323 -0.010574 +-0.0619093 0.0470515 0.00567882 +-0.00290933 0.0388493 0.0285794 +-0.059258 0.0467212 -0.00132733 +0.00450339 0.123789 0.033846 +-0.0229547 0.12614 0.0172488 +0.0410852 0.0394499 0.00526393 +0.0049695 0.0340349 0.00359293 +-0.0513689 0.0516822 0.0322144 +-0.0606335 0.122654 0.0421622 +-0.0645986 0.15064 0.0368964 +-0.0632078 0.143892 -0.00837073 +-0.0386435 0.0563025 -0.0111331 +-0.0658025 0.083802 -0.0186684 +-0.062835 0.128322 0.0425151 +-0.0715276 0.14003 0.0472238 +0.056383 0.0538774 0.0233551 +-0.0610939 0.0335153 0.00346695 +-0.00051118 0.0978394 0.0524335 +-0.0418663 0.0340021 -0.00580283 +-0.042485 0.0762268 0.0429934 +-0.0512844 0.138511 0.0223666 +0.0367682 0.0888721 0.037463 +0.00724928 0.0711363 -0.0334334 +-0.0505534 0.0543594 0.017626 +0.00614025 0.110185 -0.0202335 +-0.00850551 0.0561268 0.0532043 +-0.0295938 0.0789709 0.0427962 +-0.0287487 0.0349103 0.0496611 +-0.0584012 0.154047 0.0286827 +-0.0127037 0.064273 -0.0367671 +-0.0288624 0.0606727 -0.0254104 +-0.0376712 0.125956 0.0207679 +-0.0612726 0.0708854 0.0380779 +-0.0637251 0.155028 0.0282356 +0.0531328 0.0476715 0.00620176 +-0.00308571 0.124589 0.0331408 +-0.0186888 0.0352267 -0.0190015 +0.001497 0.119685 0.0377723 +-0.032734 0.120436 -0.00935257 +-0.054542 0.0631354 -0.00767633 +0.052054 0.0718585 0.0216053 +-0.00556188 0.116801 -0.0157696 +-0.0504949 0.138575 0.0203939 +-0.00542543 0.120041 -0.0132322 +0.0310541 0.0727142 0.0413756 +-0.0558801 0.045112 0.0236807 +-0.0167974 0.0382847 0.0190235 +0.0256741 0.0809122 0.047736 +-0.0199636 0.0668339 0.051351 +-0.0491191 0.159098 -0.00622225 +-0.0506725 0.0667938 0.036819 +-0.0492762 0.143079 0.00435473 +-0.0216794 0.0538141 -0.0303252 +0.0305352 0.10973 -0.0102674 +-0.0225945 0.157229 -0.0076361 +-0.0530851 0.151641 -0.00314317 +-0.0271151 0.122681 0.0231414 +-0.0134994 0.0884096 0.056966 +-0.0266886 0.0335519 -0.0246454 +-0.008499 0.12243 0.035017 +-0.0393069 0.033537 -0.0233717 +-0.033807 0.0461583 0.044586 +-0.0198183 0.158714 -0.00970491 +-0.0835554 0.0925405 0.0305699 +-0.0340008 0.0766042 -0.0254969 +0.00352334 0.12519 0.0325857 +-0.0424905 0.0424327 0.0427417 +0.0232877 0.123385 0.0253956 +0.0230237 0.100791 0.0439995 +0.0307365 0.117405 0.0253192 +-0.0772723 0.114862 0.0500033 +-0.0264336 0.0535943 0.0384453 +0.0177456 0.0350628 0.0325863 +-0.0121375 0.102128 -0.024127 +-0.000203909 0.130048 0.0239772 +0.00795806 0.127195 -0.00506697 +-0.0252695 0.156633 -0.00336931 +0.0179609 0.1201 -0.00942839 +-0.0769756 0.068555 0.0156381 +-0.0871021 0.111516 0.0397664 +-0.0544907 0.101557 0.0424048 +-0.0572843 0.0589766 -0.000464382 +-0.07902 0.0751794 0.0271309 +0.0102371 0.115602 -0.0165593 +-0.0105893 0.180273 -0.0272114 +-0.0528115 0.0913061 -0.0221889 +-0.064755 0.068231 0.0343382 +-0.0137258 0.125368 -0.00476898 +-0.0635922 0.178326 -0.0570781 +-0.0239683 0.126504 0.0139537 +-0.0600264 0.132579 -0.00719549 +0.044826 0.0791184 -0.000782084 +-0.00541885 0.0969111 -0.0306599 +-0.0301034 0.0537602 -0.0193727 +0.0409333 0.0900371 -0.0097907 +0.024446 0.115337 -0.010308 +-0.0283175 0.0963396 -0.0241496 +0.0299711 0.119398 0.020753 +-0.0265916 0.172718 -0.0105089 +-0.0586682 0.128313 0.0397417 +-0.0818638 0.147313 0.00119815 +-0.0254305 0.0357675 -0.0290845 +-0.038039 0.126372 -0.00365101 +-0.00149717 0.0815096 0.0574492 +-0.00738223 0.0931774 -0.0348179 +0.0558223 0.0493444 0.0161931 +0.0577347 0.0705061 0.0074689 +-0.0778727 0.096767 0.0360596 +0.0144985 0.11402 0.0378951 +0.00389123 0.0355229 -0.0148126 +0.0242948 0.124607 0.0114976 +0.0565412 0.0674698 0.002463 +-0.0308889 0.108768 -0.0191524 +0.011955 0.0349898 0.0332703 +-0.0129143 0.104805 -0.023047 +-0.0938592 0.11877 0.0212975 +0.0106595 0.0357626 0.0286983 +-0.0652684 0.163853 -0.0591668 +-0.0359879 0.0421738 0.0454409 +-0.0685089 0.100042 0.0409867 +0.03476 0.113033 0.0239837 +-0.0346506 0.126197 -0.000232823 +-0.0386758 0.0462873 -0.0214583 +0.0257808 0.10679 -0.0151172 +-0.0618601 0.153758 -0.0185818 +0.03067 0.0917687 -0.019137 +0.0275533 0.0672844 0.0433037 +-0.0414978 0.0748079 0.0427759 +-0.0218204 0.0840783 -0.0384285 +0.037815 0.0630498 -0.0108066 +-0.0602789 0.0617061 0.0251086 +-0.0768171 0.154199 -0.00689913 +0.00550054 0.0990386 0.0482677 +-0.0391759 0.16667 -0.0123913 +-0.0616525 0.116813 -0.0113459 +-0.0227683 0.0699063 -0.0373697 +-0.0825008 0.107588 0.0273509 +0.0253381 0.0418727 -0.00588506 +-0.014565 0.035318 -0.01827 +-0.00278761 0.0390101 -0.00997081 +-0.0895837 0.137934 0.0361877 +-0.0855599 0.112052 0.0307632 +-0.027858 0.0343176 -0.0296609 +-0.0325025 0.0675467 0.0400218 +0.0183334 0.0348857 0.00364336 +-0.0469365 0.0404762 -0.0121149 +-0.0777262 0.0825344 -0.0106004 +-0.00467074 0.0569349 -0.0330586 +-0.0194597 0.165415 -0.0107679 +-0.0210403 0.122456 -0.00761783 +-0.0388087 0.0446425 -0.0234233 +-0.0696543 0.0614896 0.0127042 +0.0440466 0.0931306 0.0221521 +-0.0647046 0.0352193 0.0243246 +-0.0166096 0.0435748 -0.0274243 +0.0441838 0.0712847 0.000450163 +-0.0285281 0.0522637 0.0377683 +-0.0599387 0.147394 -0.00221747 +-0.0440942 0.156163 -0.00853601 +0.0388076 0.0807597 0.0350812 +-0.0141543 0.161827 -0.01362 +-0.0210631 0.0385773 -0.00578617 +-0.0237266 0.161004 -0.00287357 +-0.0863431 0.0896619 0.0263909 +-0.0829431 0.0790271 0.0235207 +0.0268259 0.0605622 0.0439609 +-0.0224026 0.0384511 0.0303351 +-0.0635581 0.170962 -0.0485923 +-0.0456965 0.147701 -0.00292724 +-0.0532705 0.0373829 0.0469289 +0.0231843 0.0658868 0.0457612 +-0.0887459 0.132238 0.00325707 +0.00920248 0.0914355 -0.0308607 +-0.0298874 0.063588 -0.0244234 +0.00157852 0.12719 -0.00497022 +-0.0814436 0.153873 0.00890807 +-0.0624959 0.0607929 0.0219134 +-0.0680579 0.149988 0.0386907 +0.0166077 0.128469 0.0186355 +0.00550411 0.0731036 0.0564845 +-0.00249995 0.0661849 0.0567093 +-0.0735022 0.155469 -0.0279133 +-0.0851803 0.0899483 -0.00256663 +0.0394434 0.0585828 -0.00486619 +-0.0739433 0.134018 -0.00754124 +-0.038066 0.156257 -0.0102365 +0.00335185 0.118611 -0.0157819 +-0.00660848 0.0420213 -0.0257519 +-0.0639921 0.0605727 0.020032 +0.0252819 0.100786 -0.0187149 +-0.0820788 0.0765181 0.0218286 +-0.0167051 0.0584876 -0.0351851 +-0.023274 0.106158 -0.0224283 +-0.0878269 0.087472 0.021463 +-0.0786369 0.113551 0.047197 +0.0360644 0.0861926 0.0381664 +-0.082909 0.123594 -0.00426589 +-0.029497 0.177966 -0.015166 +-0.0170948 0.127006 0.022289 +0.0524062 0.0491022 0.00128138 +-0.0198015 0.10169 -0.0238258 +-0.0221328 0.166772 -0.0183109 +-0.00252234 0.038424 0.00547409 +-0.0255028 0.0606627 0.0401195 +-0.0385432 0.0337417 -0.0196892 +-0.0644389 0.0627719 0.0250864 +-0.0879688 0.113092 0.00628888 +0.000951329 0.10045 0.046938 +0.0386471 0.086118 0.0348681 +-0.0374734 0.0346441 0.0411075 +0.0233517 0.120203 -0.00555174 +0.0462175 0.0761811 0.0179689 +-0.0376403 0.0336717 0.00266115 +-0.0341867 0.172054 -0.0145892 +-0.0623617 0.0420762 0.0420515 +-0.0114712 0.0379322 -0.0163227 +-0.0177227 0.119786 -0.0108098 +-0.0801398 0.154387 0.00935749 +0.00187492 0.0398874 0.0463369 +-0.0730243 0.159629 -0.0349322 +0.0473276 0.0547587 -0.00564531 +-0.0376789 0.0636715 -0.0137557 +-0.0727421 0.180568 -0.051639 +-0.0616232 0.148175 -0.003118 +-0.0248231 0.0839948 -0.0375331 +-0.0652787 0.173897 -0.0604957 +-0.0740506 0.152673 -0.0298916 +-0.0571547 0.150227 -0.00146353 +-0.0903203 0.146073 0.0131505 +-0.0779569 0.132491 -0.00592536 +-0.0290048 0.0550494 -0.0223991 +-0.00849727 0.0898107 0.0570624 +-0.0324948 0.112838 -0.0174448 +-0.0523188 0.0518 0.026645 +0.0302802 0.0506319 0.0365295 +-0.0838507 0.103422 -0.00164978 +-0.0788492 0.100759 0.0340965 +-0.0874564 0.141909 0.0385732 +-0.0155155 0.115507 0.0382335 +-0.0777311 0.0887218 0.0375819 +-0.0730146 0.15545 -0.0319082 +-0.0523124 0.0360662 0.0464431 +-0.06188 0.164622 -0.0566003 +0.0367263 0.0794489 0.0373046 +-0.0734863 0.173577 -0.0500848 +0.00600107 0.0390612 0.028408 +-0.0278792 0.0339265 -0.0214795 +-0.000753868 0.0390895 -0.00403098 +-0.0578284 0.0450681 -0.00544742 +-0.0829344 0.129921 0.0513858 +-0.0111161 0.125335 -0.00680126 +-0.0679477 0.0860672 0.0434473 +-0.0705079 0.105505 0.0376955 +-0.0109443 0.0389825 -0.0115729 +-0.0399106 0.033865 0.000215963 +0.00351496 0.0924905 0.0549546 +-0.0424851 0.033913 -0.0262188 +-0.0792564 0.155246 0.0213567 +-0.0215304 0.127346 0.0119061 +-0.091259 0.117481 0.0430647 +-0.0404902 0.0790417 0.0431478 +-0.0945826 0.122834 0.0222802 +-0.0518346 0.0517811 0.0306554 +-0.0767129 0.161805 -0.0163426 +-0.0867595 0.107707 0.0143554 +-0.0693236 0.142228 -0.0102995 +-0.0204959 0.105781 0.0424626 +0.0438044 0.0987496 0.00916312 +-0.00281997 0.0854457 -0.0370162 +-0.00280088 0.0840687 -0.037315 +0.0293196 0.0632732 0.0423131 +0.00625559 0.0725849 -0.0341185 +0.0203077 0.0621778 -0.0269805 +0.0563556 0.0723446 0.0173318 +-0.0230123 0.107366 -0.0218426 +-0.00742046 0.035877 -0.0249268 +0.0374488 0.0402522 0.0247009 +0.0292061 0.055224 -0.0177993 +-0.0184858 0.127732 0.0173962 +-0.0921542 0.132321 0.0142287 +-0.0583136 0.145422 -0.00203607 +-0.0688478 0.0994593 -0.0152611 +-0.0615047 0.167821 -0.0555677 +-0.0915903 0.125424 0.00726612 +0.0199591 0.0564127 0.0480725 +0.0378679 0.0713179 0.0353865 +-0.000605671 0.129033 0.0267429 +0.0298673 0.0740916 0.0431977 +0.00443138 0.126024 0.0314422 +0.0239815 0.12134 -0.00278507 +-0.0246606 0.0521655 -0.0277657 +0.0146913 0.0820798 0.0529703 +0.0259518 0.075434 0.0462884 +-0.0332069 0.0609523 -0.0145937 +-0.0191994 0.0907344 -0.0364225 +0.0589179 0.0607855 0.00414854 +0.0361999 0.103252 -0.0093129 +-0.0498767 0.0529199 0.0166388 +-0.0681894 0.0774836 0.0397476 +-0.021626 0.038176 0.00908889 +-0.0723232 0.163826 -0.0419605 +0.0104934 0.109851 0.0397458 +-0.0177283 0.0627822 -0.0360863 +-0.0628376 0.161493 -0.0485893 +0.00323101 0.120377 -0.0136716 +0.0551973 0.0674594 0.0252672 +-0.0349319 0.127285 0.00554823 +0.0194228 0.125079 0.025397 +-0.00805064 0.130356 0.00959263 +-0.0314936 0.097435 0.044487 +-0.0557138 0.0342594 0.0288064 +0.0212843 0.0490624 0.0410711 +-0.0898642 0.114175 0.0316644 +-0.0868422 0.134936 0.00226938 +-0.0758819 0.156006 0.016671 +-0.00997005 0.175779 -0.0292074 +-0.0603522 0.0407823 0.0443369 +0.0416146 0.0598915 -0.00407392 +0.0165523 0.0922417 -0.0256623 +-0.0245975 0.0365494 -0.0290831 +-0.0381375 0.160902 0.00087141 +-0.0719085 0.064649 0.0201308 +0.0144227 0.0477589 -0.0252693 +0.0603421 0.0650847 0.0181826 +-0.0146479 0.0481463 -0.0303376 +0.00721829 0.131495 0.00948452 +0.0394741 0.102755 0.0261825 +-0.0127182 0.0685587 -0.0376659 +0.0338414 0.0392101 0.0249005 +-0.0639127 0.160548 -0.0182872 +-0.0885745 0.0901142 0.00646846 +-0.0497297 0.0416675 0.0451167 +-0.0695102 0.148387 0.0405048 +0.0369413 0.0618853 0.0357448 +-0.0614969 0.0987359 0.0427353 +0.0264406 0.0434552 0.0361928 +0.0457541 0.0497206 0.0308161 +-0.0184963 0.0486167 0.0482304 +-0.086692 0.140502 0.00718566 +-0.0116045 0.0420472 -0.0262702 +-0.0708693 0.149702 0.0392474 +-0.061676 0.0343224 0.032737 +-0.00749303 0.115552 0.0402888 +0.0603302 0.0678632 0.0121432 +-0.070517 0.146976 0.0420031 +0.0360463 0.0953891 -0.0118379 +0.0368862 0.0601656 -0.0107732 +0.0239184 0.116674 0.0330029 +-0.0804601 0.148683 0.000173633 +-0.0604926 0.0344653 0.0380756 +-0.0152525 0.177145 -0.0265204 +-0.0773226 0.108517 -0.00660544 +-0.0176381 0.0465514 -0.0286775 +0.0313677 0.11674 -0.000181085 +-0.0465999 0.111104 -0.0175509 +-0.0408947 0.172668 -0.00780492 +0.0241275 0.120631 -0.00401437 +-0.055903 0.111216 -0.0172629 +-0.0781607 0.0935055 -0.0115755 +0.0158369 0.105055 -0.0192576 +-0.0130717 0.0973914 -0.0292103 +0.00114663 0.103071 -0.022297 +-0.0545436 0.0443717 -0.00770843 +0.0381644 0.0887078 -0.0138852 +-0.0638458 0.0366675 0.0422565 +-0.0245954 0.122675 -0.00581505 +-0.0199502 0.0553853 0.0474489 +-0.0454976 0.13168 0.014882 +-0.0808086 0.113339 -0.00208766 +-0.0658194 0.154782 -0.0493821 +-0.0138747 0.104484 -0.023001 +-0.0293428 0.112771 -0.0173776 +0.0139014 0.0962996 -0.0239693 +-0.0834257 0.145967 0.00318768 +-0.0299391 0.175699 -0.00474628 +-0.00851553 0.0759427 0.057359 +-0.0679104 0.122376 -0.00896749 +-0.0104955 0.0731168 0.0565579 +-0.0480021 0.126873 0.0289133 +-0.052022 0.0561083 0.0186673 +-0.0627916 0.150662 -0.00757045 +-0.0667057 0.14638 -0.0236565 +-0.0714698 0.161004 -0.0429413 +-0.0459114 0.0657109 0.0391289 +-0.0127989 0.0827406 -0.0389623 +0.0240686 0.0436305 0.0398361 +0.00979486 0.0360464 0.02827 +-0.0144862 0.0715775 0.0549247 +-0.0798641 0.145899 -0.00181913 +-0.0607177 0.0335659 0.00529637 +-0.0635063 0.156747 -0.0406118 +-0.0171212 0.0383927 0.000728518 +0.02686 0.0646091 0.0440244 +0.0291243 0.117712 -0.00241857 +0.0411571 0.0846831 0.0314273 +0.0246298 0.0347052 0.0125163 +0.0376787 0.105425 -0.00281358 +-0.0520342 0.116871 0.0334143 +-0.0526315 0.0335173 0.00157493 +0.0103692 0.116852 -0.0159048 +-0.0299989 0.178534 -0.0140055 +0.0199608 0.126186 0.00277612 +-0.0226771 0.0567339 -0.0313199 +-0.0693087 0.165593 -0.0188405 +0.0435095 0.0527832 0.0325495 +-0.0292487 0.115981 -0.0147474 +0.0390778 0.105565 0.0241719 +-0.0449049 0.167415 0.00301648 +-0.0575339 0.0493779 -0.000368538 +-0.0396388 0.0548721 -0.0111311 +0.0314293 0.102107 0.036834 +0.000480507 0.104429 0.0436509 +-0.0299338 0.0468967 -0.0261593 +-0.0712424 0.155684 0.00373917 +0.0197271 0.0808668 0.051456 +-0.0761145 0.157637 -0.00836344 +-0.0144941 0.122325 0.033097 +-0.0597928 0.095429 -0.0195264 +0.0309421 0.0646254 0.0411415 +-0.0275054 0.104339 0.0416271 +-0.000516741 0.108636 0.04302 +-0.0777092 0.07194 0.024923 +0.0102045 0.0795083 -0.0323062 +-0.0379505 0.150881 -0.00456722 +-0.013105 0.0382607 0.0125563 +-0.0182317 0.187056 -0.0182936 +-0.0182699 0.166848 -0.0125771 +-0.0264587 0.0902029 -0.033595 +-0.0668807 0.112599 0.0436137 +-0.0537473 0.076818 -0.0192258 +-0.0306082 0.165302 -0.00581873 +-0.0796939 0.0873057 0.0353613 +0.0347714 0.100763 0.034674 +-0.035752 0.0415598 -0.0291214 +0.0289767 0.117846 0.0275093 +-0.000706682 0.0655468 -0.0343894 +-0.0610628 0.138403 -0.00654794 +-0.0625935 0.12412 0.0446596 +-0.0648295 0.14966 -0.0309451 +-0.0234815 0.0974495 0.044821 +-0.026575 0.0476865 -0.0258778 +-0.0528683 0.0367334 -0.0118941 +-0.0116753 0.0526919 -0.0331734 +-0.0615062 0.158429 -0.0265894 +0.0320656 0.117538 0.0186978 +-0.00988755 0.103466 -0.0236142 +0.0484958 0.0691068 0.025078 +0.0156548 0.128965 0.0154331 +-0.0665046 0.10698 0.0385746 +-0.0267998 0.0522633 0.0388472 +-0.058755 0.0782067 -0.0192512 +0.0211493 0.0672779 0.0481082 +-0.0288355 0.125617 0.00924976 +-0.0124826 0.0701993 0.05486 +0.0522007 0.0476683 0.00324556 +-0.0443004 0.130334 0.00946299 +-0.00241533 0.0389975 -0.0136337 +-0.0437474 0.0783133 -0.0194351 +-0.0629007 0.115475 0.040648 +-0.0311605 0.169689 -0.016551 +-0.0263193 0.0386673 0.0347214 +0.0366921 0.0807912 0.0372758 +-0.0395001 0.100068 0.0413695 +-0.0681116 0.112409 0.0451263 +0.0386091 0.0686148 0.0346703 +-0.0759482 0.152671 -0.0129066 +0.0145806 0.0953173 0.0493246 +-0.0385004 0.150676 0.00203305 +-0.0935499 0.129634 0.0192397 +-0.0619642 0.126755 -0.00826981 +-0.0537213 0.0709084 -0.0154466 +-0.0314688 0.175764 -0.00340966 +-0.046761 0.126023 -0.00719597 +0.0128678 0.128966 0.0229731 +-0.0721444 0.145534 -0.0189034 +-0.014649 0.0384586 0.0247211 +-0.0782079 0.165287 -0.027954 +-0.0738874 0.0695898 0.0277412 +-0.0880483 0.145895 0.0319999 +-0.00950131 0.0870429 0.0572309 +-0.082872 0.154403 0.0201091 +-0.0574419 0.0424556 0.0216968 +0.0432211 0.097315 0.0201647 +0.0484167 0.0567471 0.0312254 +-0.0899902 0.146067 0.012148 +-0.0384869 0.0860997 0.0437907 +-0.0677801 0.0837503 -0.017964 +-0.0304968 0.071744 0.0399232 +-0.0267649 0.0754486 -0.0363172 +0.0555795 0.068697 0.0240751 +-0.00326172 0.0994383 0.0499516 +-0.0539364 0.153495 0.0157968 +-0.0264808 0.0509031 0.0429156 +0.0477223 0.0435274 0.0201079 +-0.027646 0.071755 0.0409574 +-0.025483 0.0988427 0.0444451 +0.00433576 0.055339 -0.0305463 +-0.0809392 0.0721012 0.0145438 +-0.0859359 0.0980836 0.000413824 +-0.0660122 0.153896 -0.0475582 +-0.0275574 0.156658 -0.00139783 +-0.0134137 0.0581871 0.0521911 +-0.0774938 0.134462 0.0515018 +0.0104958 0.0560929 0.0526786 +-0.00951583 0.0848597 -0.0382215 +-0.0298676 0.0916468 -0.0252289 +-0.0751451 0.15577 0.0110973 +-0.0887521 0.0969152 0.00742291 +-0.00642846 0.119149 -0.0142793 +-0.0351305 0.127632 0.00987733 +-0.079479 0.1087 0.0330138 +-0.00387451 0.0384228 0.00884205 +-0.0794858 0.0940336 0.0349322 +-0.0809833 0.080323 0.0311985 +-0.0874477 0.148578 0.0299355 +0.015852 0.106086 -0.0183494 +-0.0799154 0.12806 -0.00573177 +-0.0810332 0.092317 -0.00857663 +-0.0428426 0.0956907 -0.0224311 +-0.0843197 0.0830919 -0.00150258 +0.0270369 0.0347621 0.0147774 +-0.0114905 0.108632 0.0428314 +-0.0298836 0.04486 -0.0282273 +-0.0675863 0.0915604 0.0429945 +-0.0858462 0.0806083 0.01849 +-0.0377888 0.0855996 -0.0220857 +-0.080296 0.0886098 0.0345053 +-0.0631283 0.163827 -0.0595262 +-0.0200798 0.0653829 0.0501099 +0.0101376 0.104418 -0.0202461 +0.00311717 0.113125 -0.0199945 +0.00740202 0.0404296 -0.0235788 +-0.0233436 0.179984 -0.0199453 +-0.0849416 0.153745 0.0179582 +-0.00950506 0.0660833 0.0554985 +-0.0149561 0.0997734 -0.0237179 +-0.0625045 0.160053 -0.0215634 +0.0134925 0.114016 0.0379994 +-0.0484084 0.144974 0.000471547 +-0.0765927 0.0770726 0.0330453 +-0.0522524 0.0566167 0.0245415 +-0.0446531 0.0607308 -0.0127894 +-0.077361 0.0729429 -0.00456158 +-0.0164852 0.0870004 0.0567616 +0.00917846 0.101539 -0.0214106 +-0.0114976 0.0883765 0.0564607 +-0.0365032 0.109752 0.0369592 +-0.0622101 0.169551 -0.0614764 +0.0134275 0.117615 -0.0147491 +-0.0194201 0.1246 -0.00382324 +0.000402662 0.121936 0.0359399 +0.0308218 0.101142 -0.0151148 +0.044544 0.0748845 0.0238506 +-0.0190349 0.0930706 -0.0347914 +-0.0284257 0.15795 -0.0115973 +-0.0835152 0.150011 0.0330149 +-0.0723608 0.0363259 0.00395733 +0.049239 0.0437392 0.0164633 +-0.0281399 0.0917982 -0.0286003 +-0.0894337 0.132252 0.00424863 +-0.0478863 0.033513 -0.0102384 +-0.0480003 0.126688 -0.00585567 +-0.0147076 0.0933085 -0.0349989 +-0.0344513 0.172765 -0.000813008 +-0.012881 0.107288 -0.0218461 +-0.0494996 0.111168 0.0370596 +0.0195435 0.100771 0.0459866 +0.0383256 0.0387198 0.0189634 +-0.0490718 0.151664 -0.00461846 +-0.0413062 0.123313 -0.010402 +-0.0764561 0.106685 0.0353026 +-0.0506178 0.0590261 -0.0100428 +-0.0085531 0.0385596 0.00412906 +-0.0510743 0.153146 -0.0044532 +-0.0168415 0.122494 -0.0076608 +-0.0724396 0.129821 0.051541 +-0.0447123 0.0336927 -0.0153017 +-0.0128672 0.038589 0.0285719 +-0.0769694 0.136896 -0.00565009 +-0.0204809 0.0526524 0.0459576 +-0.0190093 0.100114 -0.02409 +0.0491876 0.0602673 -0.00438234 +2.68966e-05 0.0991578 -0.0250032 +-0.0146066 0.0355634 0.0504427 +0.0437747 0.084485 0.0264379 +-0.0613665 0.0430534 -0.00574325 +0.0102029 0.0779579 0.0551886 +-0.0584973 0.109766 0.0377913 +0.0405117 0.0657145 0.0303349 +0.0123622 0.0523525 -0.0283928 +-0.0865442 0.107736 0.017365 +-0.0273471 0.0735222 0.0429845 +-0.076628 0.169808 -0.0316679 +-0.00310182 0.130332 0.00278812 +0.0456485 0.0904179 0.0101632 +0.0367704 0.109675 0.000243105 +-0.0088954 0.108786 -0.0222808 +-0.0722528 0.156819 -0.0369077 +-0.0343294 0.175491 -0.0032043 +-0.0612579 0.167808 -0.0576007 +-0.0225051 0.10854 0.0408657 +-0.0396128 0.0492137 -0.0115104 +-0.0528856 0.104156 -0.0198053 +-0.0114785 0.0965129 0.0526113 +-0.0493499 0.141685 0.00939558 +-0.053326 0.162717 0.00204741 +0.0382413 0.108427 0.0210592 +0.0250594 0.122946 0.0231962 +0.0436593 0.058746 -0.00488132 +-0.052188 0.0559056 0.0136207 +-0.0337241 0.163848 -0.00328844 +-0.0671575 0.17049 -0.0366968 +-0.0780353 0.0880327 -0.0115615 +-0.00752216 0.122122 -0.0114318 +-0.0578223 0.12834 0.0392194 +-0.0624397 0.16285 -0.0548313 +-0.00720215 0.0344571 -0.0178933 +0.0219696 0.0347867 0.0191885 +0.0134971 0.112635 0.0387508 +-0.0188778 0.168283 -0.0134663 +0.0418633 0.0718502 -0.00680416 +0.00188261 0.129936 0.0247306 +-0.0143909 0.0388658 -0.0140202 +-0.0866821 0.0819953 0.0154888 +0.0511122 0.059915 -0.00400422 +-0.0637796 0.0419038 0.0392448 +-0.0334673 0.0532523 0.0375728 +-0.0640539 0.142491 0.0390245 +-0.0197273 0.118003 -0.0129221 +-0.0739294 0.0686501 -0.000515794 +0.022253 0.0430673 -0.0137151 +0.0169102 0.120624 0.0334304 +-0.0533452 0.118341 0.0350731 +-0.0407313 0.0710722 -0.0172567 +-0.0444934 0.108473 0.0392485 +-0.0406946 0.0340162 0.0268873 +-0.0428689 0.104235 -0.0209095 +0.000289503 0.0391337 -0.00386275 +0.0202669 0.0819781 -0.0271085 +0.0339966 0.0363512 0.0147468 +-0.0623699 0.0366895 0.0436353 +0.0112859 0.0638878 -0.0308862 +0.044262 0.0945325 0.00218274 +0.0178069 0.0349979 -0.00592782 +0.00766772 0.130773 0.00395877 +-0.0518373 0.0337424 -0.0112411 +0.05138 0.0464792 0.0212617 +-0.054495 0.0932121 0.0445367 +0.0154864 0.0380581 -0.0207587 +0.0322412 0.0368006 0.00286913 +0.0226382 0.0714084 0.0485432 +-0.0474967 0.0761987 0.0428659 +-0.0433556 0.0337438 -0.00770024 +-0.0507933 0.0869468 -0.0215939 +-0.0428743 0.166323 -0.00997516 +0.0420989 0.0930078 0.0271705 +-0.0133438 0.11201 -0.0186315 +-0.0682581 0.156305 0.0164417 +-0.0709159 0.125294 -0.00875352 +-0.0758095 0.0920857 -0.0139153 +0.00691185 0.038861 0.0287775 +-0.0755745 0.0702081 -0.000465226 +0.0560342 0.0622175 0.0264602 +0.00750328 0.0532576 0.0522142 +-0.0557017 0.0693735 -0.0143448 +-0.0400399 0.0367774 -0.0284153 +0.0452718 0.0917995 0.0131601 +0.0113635 0.0534706 0.0514016 +-0.056641 0.0429978 -0.00777539 +-0.0163006 0.182966 -0.0260091 +-0.0724038 0.116078 0.0519992 +-0.0223961 0.161302 -0.0143028 +-0.016322 0.128515 0.00945034 +-0.0761998 0.14998 -0.0148766 +-0.084898 0.11701 -0.000772283 +0.0215009 0.111167 0.037529 +-0.0116746 0.164119 -0.0176003 +-0.0386977 0.0666031 -0.0147476 +-0.0475127 0.0411749 0.0444313 +-0.0741496 0.147181 -0.0158602 +0.0423699 0.0412112 0.0211935 +-0.0112343 0.126014 -0.00554296 +-0.0627796 0.16313 -0.0285907 +0.0598501 0.0664357 0.0191799 +0.0444747 0.0438727 0.000520461 +-0.0449903 0.16693 -0.00785376 +-0.0241862 0.125789 0.00366503 +0.0303543 0.0942493 0.0422823 +0.0385368 0.0800568 -0.0127167 +-0.0329258 0.120263 0.0285346 +-0.0277494 0.0764615 0.044728 +0.0072822 0.0344718 -0.00192729 +0.0164745 0.103092 0.0456772 +-0.000370674 0.0391495 0.0306363 +-0.0444932 0.109842 0.0382343 +-0.0228558 0.113062 -0.0177116 +-0.0323055 0.0384897 -0.00796454 +0.0330143 0.106332 -0.0106209 +-0.0905664 0.150208 0.0151282 +-0.0473203 0.122487 0.0279328 +-0.079976 0.076532 0.0275303 +-0.0185178 0.0383092 0.00415679 +-0.0400541 0.128036 0.0139949 +-0.0725037 0.079155 0.0383043 +-0.00705924 0.127865 -0.00358478 +-0.0474808 0.0518309 0.037336 +0.0281857 0.0888902 0.0443935 +-0.0325014 0.102916 0.0416129 +-0.0636379 0.131123 0.0413473 +-0.0194422 0.0952996 -0.0310527 +0.0343622 0.0673468 0.0390872 +0.00248248 0.0385592 0.0461627 +-0.0207428 0.0656176 -0.0364653 +-0.0354216 0.17545 -0.00362892 +-0.0186888 0.127303 0.00423263 +-0.0697675 0.129835 0.0501143 +-0.0645483 0.168715 -0.0400434 +0.0176026 0.0520233 0.0463575 +-0.0165066 0.11684 0.0369313 +-0.0539292 0.0475998 -0.00643542 +0.0206619 0.125677 0.022985 +0.0131 0.034428 -0.00821794 +-0.0884031 0.101017 0.0203758 +-0.089294 0.136502 0.0252035 +-0.0633961 0.0610267 0.0215327 +-0.0181382 0.0625693 0.0510808 +-0.0363013 0.0408102 0.0457892 +-0.0348891 0.0341588 0.0262022 +0.0321818 0.0994934 0.0379171 +-0.0650996 0.115729 0.046366 +-0.0446047 0.0505366 -0.0105481 +-0.0170833 0.0896859 -0.0373218 +-0.0135156 0.162506 -0.0153049 +-0.0264962 0.119343 0.030427 +0.053783 0.0561466 -0.00178141 +-0.0659739 0.131145 -0.00872206 +-0.022585 0.185119 -0.0131839 +-0.0902473 0.132271 0.00623314 +-0.0343818 0.038354 -0.0138166 +-0.087117 0.119846 -0.000719646 +-0.0514997 0.047729 0.0396118 +-0.0837154 0.0804764 0.0234959 +0.0452487 0.0681916 0.00167659 +0.0443433 0.0762807 -0.00178421 +0.0393871 0.0828883 -0.0127786 +0.0133395 0.0475307 0.0453837 +0.0393635 0.0445531 -0.00413158 +0.0464068 0.0778555 0.00918735 +0.0498828 0.0474685 0.000307011 +-0.0205115 0.114066 0.0379617 +-0.0795322 0.0826724 -0.00859002 +0.0277802 0.0692504 -0.0226951 +-0.0640511 0.139618 0.0390194 +-0.0622733 0.144309 -0.00616114 +-0.0598164 0.122657 0.0415831 +-0.039222 0.0363262 0.0107899 +-0.0476756 0.0694312 -0.0151035 +-0.0114975 0.12239 0.0342495 +-0.0759886 0.0701373 0.025079 +0.0247695 0.1047 0.0394768 +-0.0424955 0.0464529 0.0406301 +-0.0209812 0.0389557 0.0535988 +-0.0434801 0.0917165 0.0428888 +-0.0936604 0.128255 0.0172452 +-0.0319662 0.163855 -0.00423083 +-0.0864626 0.107749 0.0163884 +0.00261599 0.0960798 -0.0297441 +0.0192696 0.124452 -0.00213625 +-0.0635019 0.0945759 0.0438874 +-0.0434804 0.108484 0.0391565 +-0.0767016 0.15969 -0.0259195 +-0.0207953 0.0784993 -0.0390618 +-0.0168597 0.0382017 0.0136589 +-0.0128908 0.129601 0.0150315 +-0.063562 0.136724 0.0379539 +-0.0592557 0.146819 0.0355066 +-0.0102821 0.0421361 0.0498123 +0.00411674 0.108725 -0.0201726 +-0.0471696 0.16597 0.00363215 +-0.0324882 0.0560654 0.0375153 +0.016314 0.061771 0.0498607 +-0.0633808 0.154539 0.0298218 +0.0319993 0.108737 0.0323781 +0.0224822 0.0578106 0.0464363 +-0.0731478 0.0644323 0.00940567 +-0.0136846 0.0555659 -0.0339274 +-0.0485565 0.0335372 0.00238031 +-0.0485794 0.128753 -0.00187037 +-0.0761205 0.0927947 0.038671 +-0.00890397 0.114438 -0.0172305 +-0.0881957 0.146062 0.0092207 +-0.067835 0.0951999 -0.016639 +-0.0826594 0.0993103 0.0308836 +0.0194806 0.107063 0.040905 +-0.0755472 0.15139 -0.00989046 +-0.0619095 0.118087 -0.0102757 +-0.0770237 0.0716688 -0.00146855 +-0.0090472 0.129209 0.0236827 +0.0166896 0.0645037 0.050425 +-0.044493 0.0860963 0.0437549 +-0.0851043 0.10321 0.0261425 +-0.0929793 0.125561 0.0282631 +-0.0792446 0.0699823 0.0139682 +-0.0541984 0.150844 0.02639 +-0.0544369 0.147753 0.0264091 +0.029273 0.103313 -0.0154093 +-0.0661878 0.156038 -0.00610123 +0.0513324 0.0613858 -0.00348738 +-0.00765334 0.0905691 -0.0361471 +-0.0036313 0.046681 -0.0294588 +-0.0793953 0.154018 0.0066962 +0.0126509 0.103032 -0.0211055 +-0.0534982 0.0344579 0.0343548 +0.0254331 0.0400654 -0.00462996 +-0.0474929 0.163748 0.00542805 +-0.0174765 0.0514437 0.047967 +-0.023601 0.0379574 -0.0288347 +0.0380126 0.0687088 -0.0127776 +0.0454875 0.0624627 0.0298224 +-0.0929393 0.122846 0.0403052 +-0.0619477 0.0629617 0.0272004 +-0.0632548 0.171035 -0.0614506 +-0.062927 0.150005 -0.0233391 +-0.0539078 0.109837 -0.0181931 +-0.0143481 0.129147 0.0116153 +-0.00460956 0.130321 0.00366937 +0.00735598 0.0509889 -0.0291303 +-0.0480744 0.151666 -0.00489643 +-0.0220459 0.166878 -0.0109827 +-0.0178225 0.0869056 -0.0385387 +0.000268234 0.0669357 -0.034172 +-0.0454819 0.0861255 0.0441555 +-0.0606958 0.0340151 0.0191666 +0.0293305 0.049536 -0.0137505 +-0.0661283 0.153073 -0.0457545 +0.0127964 0.0685744 0.0536204 +-0.0806268 0.150792 0.0343829 +0.0338754 0.0626989 -0.015804 +-0.0415032 0.116675 0.0325492 +-0.00995367 0.16681 -0.0217203 +0.059153 0.0704954 0.0131546 +-0.084323 0.0804069 0.00350409 +-0.0217865 0.0742531 -0.0388026 +0.0333307 0.040756 0.0270424 +-0.00920453 0.175559 -0.0287981 +-0.0565093 0.148178 0.0306333 +-0.0476849 0.146264 0.00805502 +-0.0896679 0.144435 0.0294634 +0.028326 0.0882981 -0.0214817 +-0.0129215 0.129318 0.0179306 +-0.0275354 0.0822426 0.0485604 +-0.0727818 0.154043 -0.034905 +0.0264706 0.0430524 -0.00597567 +-0.0461097 0.129234 0.00159921 +0.00227538 0.0668963 -0.0335609 +-0.0869081 0.0847086 0.0134765 +-0.071509 0.105494 0.0375699 +-0.0564975 0.105681 0.0408231 +-0.0709683 0.136976 -0.00769814 +-0.0238604 0.0347884 0.0456435 +-0.0248096 0.123255 -0.00440954 +-0.0504992 0.0917781 0.0442368 +-0.0672114 0.120049 0.0520179 +-0.067142 0.163768 -0.057034 +-0.0628433 0.16149 -0.0495873 +-0.0851762 0.106326 0.0223754 +0.0111461 0.101633 -0.021979 +0.0319374 0.0568888 -0.0147656 +0.0282794 0.120663 0.00443205 +-0.0912918 0.116401 0.0420373 +-0.00467238 0.0555139 -0.0327809 +-0.0267099 0.0794912 0.0492298 +-0.0226371 0.0622591 0.0442913 +0.0496058 0.0730794 0.0103455 +0.0134712 0.0347114 0.0266012 +-0.027103 0.0633188 -0.0304321 +-0.00446177 0.12682 -0.00651375 +-0.0184963 0.10441 0.0431068 +0.0322846 0.110983 -0.00760517 +0.043549 0.0987325 0.00516762 +-0.0442869 0.166804 -0.00853834 +0.0150912 0.0940152 0.0500689 +-0.07081 0.110507 0.0424798 +-0.0141183 0.115602 -0.0164489 +-0.0567507 0.13816 0.0319811 +-0.0047515 0.0726952 -0.0359954 +-0.0647331 0.0606321 0.00547671 +0.0292295 0.102131 0.038919 +-0.0328692 0.104316 -0.0215625 +-0.0105189 0.165484 -0.0170149 +-0.062488 0.161561 -0.0255895 +-0.083006 0.110313 0.0398706 +0.00202549 0.0390793 -0.0109499 +0.0598509 0.0692231 0.0121425 +-0.0486599 0.0649886 -0.0131055 +0.0193632 0.0475344 -0.0219845 +-0.0505005 0.109789 0.0379415 +0.0227584 0.0942129 0.0471436 +-0.054587 0.123231 -0.00812744 +0.0595925 0.0636093 0.00613697 +-0.0304354 0.159526 0.00145329 +-0.0771836 0.152278 0.0340017 +-0.0641378 0.146153 -0.0169913 +-0.012496 0.0828987 0.0575341 +-0.062259 0.0636125 0.0283336 +-0.0543842 0.064934 0.034129 +-0.0580097 0.136726 0.0336791 +0.0431148 0.0723568 0.0271232 +-0.0719688 0.147362 0.0419058 +0.0324265 0.0414912 -0.00365574 +-0.0504972 0.083371 0.044762 +-0.0277551 0.121254 0.0258902 +0.0248126 0.0672364 0.0446067 +-0.0748658 0.148574 -0.0178655 +0.0199833 0.0422265 0.0426566 +0.00936651 0.0494737 -0.0282538 +-0.0209427 0.127053 0.0165011 +0.014824 0.0950266 -0.0246047 +0.0416966 0.0899224 0.0287651 +-0.0417723 0.0826397 -0.0208385 +-0.0228105 0.123961 0.023212 +-0.0701997 0.155611 0.00411308 +-0.0246949 0.0550734 -0.0288078 +-0.0220519 0.163768 -0.0162501 +-0.0324478 0.069454 -0.0224572 +-0.0827552 0.07629 0.0125227 +-0.0606527 0.151084 0.0352378 +-0.0798891 0.0706304 0.0135503 +0.0476495 0.073201 0.00955169 +-0.00859398 0.0391639 -0.0259828 +0.0142802 0.0873929 0.0523851 +-0.00841973 0.128157 0.0268439 +-0.0665531 0.160013 -0.0120422 +-0.029443 0.0834063 0.0447309 +-0.0564979 0.0776594 0.043476 +-0.0483279 0.119696 0.0300033 +0.0232683 0.0857035 -0.0248261 +0.0321971 0.112814 -0.0055615 +0.0190831 0.0713469 0.0504539 +-0.054494 0.0465534 0.0422647 +-0.0121699 0.165481 -0.0142428 +0.000511137 0.0814953 0.0573473 +-0.0115028 0.0730832 0.0562182 +-0.0401042 0.037954 0.0427598 +-0.0114161 0.0382303 0.016554 +0.0328182 0.0967204 -0.0144274 +-0.00449908 0.0732747 0.0586205 +0.00733671 0.115147 -0.0180672 +-0.0476206 0.111206 -0.0176722 +-0.0624082 0.147544 -0.00957064 +-0.0615795 0.156866 -0.0245858 +0.0175138 0.12671 0.0232635 +-0.0697118 0.0764164 -0.0147262 +-0.0543713 0.158326 -0.00178875 +0.00713327 0.105885 -0.0207766 +-0.033517 0.115303 0.0329858 +-0.0114926 0.0897634 0.0564161 +-0.0375058 0.171208 0.000818011 +0.00542741 0.0336773 0.0131964 +0.0379386 0.07401 0.0354837 +-0.0860277 0.0967286 0.000430639 +-0.0311614 0.0791685 -0.0325602 +-0.0541101 0.0531993 -0.0053725 +-0.0592659 0.0599215 0.0215991 +0.0586637 0.0709935 0.0122726 +-0.0792595 0.0894709 -0.0095871 +-0.026159 0.0918036 0.0468933 +-0.0249745 0.12528 0.0180213 +-0.0519836 0.0517496 0.0236325 +-0.0275449 0.178709 -0.00674077 +-0.0715237 0.165101 -0.0167379 +0.0256965 0.123446 0.00917645 +0.0235224 0.0727618 0.0480692 +-0.0144773 0.0603048 0.0528052 +0.0408807 0.0948081 -0.00628698 +-0.0515819 0.0344024 0.0295565 +0.0311435 0.0885162 -0.0196004 +-0.087234 0.0981695 0.00341761 +-0.0165631 0.165424 -0.0118502 +-0.0497796 0.0518319 0.0348836 +0.0296893 0.110128 -0.0107004 +-0.0212542 0.126244 0.0193308 +-0.0315215 0.0732244 0.0404306 +0.0265706 0.0535806 -0.0207269 +-0.0944184 0.12146 0.0172829 +-0.0780287 0.14129 -0.00491664 +-0.0653187 0.152492 0.0351215 +0.0369332 0.102635 -0.00864905 +-0.0100919 0.126182 -0.00573829 +-0.0589643 0.15508 0.0013052 +-0.00782857 0.0386419 0.00238313 +-0.0893654 0.145802 0.0291185 +-0.077209 0.110378 0.0446936 +-0.0127752 0.0770687 -0.0383028 +-0.060466 0.143311 -0.00379205 +-0.0907002 0.137837 0.017198 +-0.0553853 0.15628 0.0108911 +-0.0609254 0.0454597 -0.00231147 +0.041351 0.0574751 -0.0052144 +-0.0111235 0.0346639 0.0467191 +-0.0520649 0.148658 -0.00262972 +-0.0438434 0.0985095 -0.0215595 +-0.0678163 0.0866062 -0.0177767 +0.0287562 0.053781 -0.0187512 +0.0338991 0.057119 -0.0127141 +-0.0189243 0.181629 -0.0169471 +-0.0888863 0.113493 0.0234001 +-0.0456524 0.0621788 -0.0131898 +-0.0205797 0.0906821 0.0540574 +-0.0285047 0.059221 -0.0254142 +-0.0310985 0.154152 -0.00673494 +0.0362687 0.0941823 0.0368117 +0.0223945 0.0860763 -0.025219 +0.0228611 0.0741302 0.0488936 +-0.0274872 0.094655 0.0450969 +-0.0238248 0.0826344 -0.0380614 +-0.044527 0.0601701 0.0393419 +0.0160126 0.0658829 0.0512178 +-0.0663487 0.06206 0.00207137 +0.000401309 0.0390966 -0.0249339 +-0.027107 0.082291 0.0495314 +-0.0617626 0.0415173 0.0247032 +-0.093011 0.118839 0.0352993 +-0.0662787 0.168684 -0.0320741 +-0.000498287 0.0535066 0.0547347 +0.0431795 0.0737197 0.0272167 +-0.0565118 0.0454033 -0.00602573 +-0.0668006 0.086643 -0.0182518 +-0.0652487 0.163342 -0.0202167 +0.0392901 0.0766734 0.0339466 +-0.0619246 0.106845 -0.0166571 +-0.0611633 0.0334354 -0.00188959 +-0.0722746 0.15542 -0.0369062 +-0.0690618 0.110676 0.0409548 +0.0432493 0.100107 0.00716752 +0.0317499 0.0535218 0.0369319 +-0.0492036 0.131059 0.0288275 +-0.0693592 0.176521 -0.047588 +-0.0072207 0.0356289 0.0484876 +-0.0818563 0.150046 0.00220642 +-0.0435006 0.0534118 0.0391466 +-0.0714969 0.156283 0.0152923 +-0.0883581 0.0875191 0.0194553 +-0.0774993 0.127442 0.0532862 +0.0288434 0.0591735 0.0415864 +-0.053835 0.0329874 0.0179508 +-0.0855039 0.140637 0.0423198 +-0.0597327 0.156046 0.0093301 +-0.052462 0.0642313 0.0336351 +0.000500084 0.12107 0.0367737 +-0.0692573 0.169753 -0.0288779 +-0.0156709 0.0385345 -0.00280448 +-0.00949582 0.118295 0.0381649 +0.0330035 0.116489 0.00476188 +0.0153369 0.0552331 -0.0286287 +-0.0105333 0.0457993 0.0483516 +0.00652975 0.0380351 0.0455331 +-0.0714995 0.101334 0.0391804 +0.0236022 0.115739 -0.0107408 +-0.0580129 0.118724 -0.0113962 +-0.0543247 0.0500125 0.0112758 +0.0587422 0.0635506 0.00411936 +-0.0589036 0.112559 -0.0155981 +-0.0640258 0.15968 -0.0562568 +-0.00990982 0.175697 -0.0247542 +0.00695815 0.0340953 -0.0204902 +-0.0591465 0.152697 -5.16463e-05 +-0.00975768 0.167025 -0.0223761 +-0.0383481 0.0417109 -0.0273458 +0.0463963 0.0778578 0.0141787 +-0.0720541 0.0777606 0.0379027 +0.0259403 0.1091 -0.0135959 +-0.0758056 0.0891863 -0.013912 +0.0429603 0.0873797 -0.00580114 +-0.0676348 0.0704852 -0.0103532 +-0.066267 0.176761 -0.0601056 +-0.013866 0.129156 0.0103484 +-0.067642 0.150503 -0.040589 +-0.0180327 0.0404537 0.0526147 +0.0183116 0.0636834 -0.0282837 +-0.078386 0.154762 0.00850622 +0.030569 0.0491561 0.035175 +-0.0622212 0.169401 -0.0515858 +-0.0565139 0.0548538 0.00566103 +0.00623573 0.0382417 0.0273828 +-0.038479 0.0945169 0.0431902 +-0.00987706 0.108745 -0.0220853 +-0.0621803 0.161575 -0.027587 +-0.0176337 0.125847 -0.00119502 +0.0328914 0.0578172 0.038629 +-0.0414935 0.0776367 0.0431734 +0.0432388 0.0804742 0.027354 +-0.0137772 0.0770735 -0.0384143 +0.0572117 0.0509068 0.011186 +-0.0689532 0.132595 -0.00851473 +-0.0655849 0.0622273 0.00026904 +-0.0535585 0.062801 0.0308747 +-0.0779359 0.154614 0.00720975 +0.00448513 0.0964789 0.0523472 +-0.060329 0.11723 -0.0118118 +0.029915 0.0430998 0.0305942 +-0.0275027 0.115261 0.0337596 +-0.0635137 0.0412627 -0.00639269 +-0.0164929 0.11134 0.0406952 +0.0292409 0.0951488 -0.0187111 +0.0324104 0.0430965 -0.00468251 +0.0317605 0.08491 0.0425067 +0.0289099 0.0929198 0.0437028 +-0.0707001 0.15817 -0.0449161 +0.0551137 0.0732038 0.0153863 +-0.0823243 0.154364 0.0217732 +-0.0715111 0.145604 0.0434169 +-0.0325077 0.0632413 0.0389915 +-0.0696524 0.0680017 0.0300044 +0.0102276 0.0809104 -0.0321098 +-0.0244999 0.049902 0.0466266 +-0.0554111 0.0574706 -0.0044262 +-0.0628667 0.101101 -0.0182166 +-0.00650089 0.0661332 0.0560881 +-0.0330903 0.15925 -0.0128209 +0.042117 0.0792074 0.0292753 +-0.085793 0.0818712 0.00648437 +-0.0594817 0.0426754 0.0236965 +-0.0539359 0.0541543 0.0107637 +-0.00998113 0.12997 0.0175362 +-0.0633398 0.0410523 0.0148679 +0.0595186 0.0696512 0.0111197 +-0.0628106 0.0420167 0.0410925 +-0.0280399 0.038261 0.000453129 +-0.0314842 0.0386701 -0.0153847 +-0.0183396 0.183004 -0.0240946 +-0.0414917 0.0662628 0.0414077 +-0.0512875 0.0335238 -0.00177633 +-0.009723 0.0684621 -0.0362531 +-0.0736747 0.166615 -0.0419946 +-0.0678387 0.0966346 -0.0163917 +-0.0609822 0.170956 -0.0597011 +-0.0778143 0.0696403 0.00741827 +-0.00249339 0.0619776 0.0560364 +-0.0574944 0.0732758 0.0411576 +0.0174045 0.0834609 0.0516215 +0.0222999 0.0360441 0.0108303 +-0.0134047 0.0981882 0.0494032 +-0.0437579 0.0335748 -0.0150071 +0.0210813 0.123852 -0.00148905 +-0.0530498 0.14867 -0.00246875 +-0.00549096 0.105886 0.0440438 +0.0181231 0.0349865 -0.00397885 +0.011218 0.0822648 -0.0313395 +-0.0785671 0.172906 -0.0416992 +-0.0304948 0.094646 0.0448519 +-0.0315011 0.101567 0.0426346 +-0.0867319 0.116264 0.0471164 +-0.0745642 0.0928269 0.03994 +-0.0287411 0.0366033 0.0533099 +-0.0733382 0.158682 -0.00576511 +-0.011641 0.172783 -0.0205328 +-0.0261276 0.166758 -0.01752 +0.0323797 0.117481 0.0145242 +-0.073083 0.166616 -0.0429976 +0.00318323 0.0894801 -0.0335291 +-0.0592544 0.0696245 0.0378273 +0.00902499 0.0346466 0.0239397 +-0.0614627 0.0334736 0.00162861 +-0.081048 0.154699 0.0221975 +-0.0337735 0.0765809 -0.0265027 +-0.0440788 0.0336672 -0.00594116 +-0.0501186 0.0375352 0.0462556 +0.0383972 0.0931984 -0.0106151 +-0.0507798 0.0488052 0.0196439 +0.0480167 0.0525694 0.0306027 +-0.0715181 0.0657302 0.000515199 +-0.0584278 0.0383351 -0.00941724 +-0.0484961 0.0987927 0.0435149 +-0.00449408 0.088412 0.0569078 +0.00197552 0.0378956 -0.000532016 +-0.0538466 0.0665391 0.0363755 +-0.0736039 0.148578 -0.0278556 +-0.0406505 0.117474 -0.0142631 +-0.0354963 0.0690808 0.0415601 +-0.063566 0.148289 0.0378536 +0.0187266 0.0350257 0.0273865 +0.00460237 0.0388981 -0.00652166 +-0.0775459 0.0688051 0.0117853 +-0.0880987 0.13916 0.0101984 +-0.0871517 0.106348 0.0123653 +-0.0867616 0.0833332 0.0134846 +-0.053009 0.0343093 0.0275811 +-0.0793348 0.0980896 0.0346601 +-0.0751339 0.0669087 0.0157231 +0.0158163 0.0344928 -0.00398192 +-0.0754309 0.0981509 0.0378194 +-0.0695415 0.15615 0.0130838 +0.00196735 0.0370051 -0.0146847 +-0.0711264 0.142566 -0.0097279 +-0.0202009 0.17418 -0.0222934 +-0.0315791 0.125791 0.0170798 +-0.0460989 0.157633 -0.00826241 +-0.0164967 0.0701922 0.0547571 +0.0456793 0.0890097 0.00617442 +-0.0263303 0.0336202 -0.0227625 +0.0458885 0.0778077 0.00419775 +-0.0613708 0.044683 0.0409908 +0.00384566 0.0341227 -0.0209701 +-0.0771455 0.156966 -0.0119003 +0.0355806 0.113279 0.0157103 +-0.036902 0.0362143 0.0131672 +-0.0532397 0.146242 0.0224016 +-0.0474989 0.107059 0.0399589 +-0.0857477 0.109049 0.020349 +-0.0892569 0.122633 0.00330914 +0.054626 0.0562289 -0.00078591 +-0.0161012 0.16832 -0.0147108 +-0.0788763 0.0949177 -0.010577 +0.026592 0.0578126 -0.0217526 +-0.061825 0.164563 -0.0576805 +-0.0210306 0.180146 -0.0147237 +-0.0474984 0.0833402 0.0443799 +-0.0884317 0.131079 0.0440854 +-0.0591643 0.0341749 0.0263998 +0.0381002 0.078079 0.0357853 +-0.0515897 0.146262 0.0154112 +0.0121111 0.116449 0.0370148 +-0.0414388 0.033531 0.00382893 +-0.0200653 0.172726 -0.0151523 +-0.0170332 0.164657 -0.0177746 +-0.0212056 0.0336704 -0.0218021 +-0.0696662 0.0710058 0.0344116 +-0.0516682 0.152149 0.0128837 +-0.0125103 0.0687513 0.0543288 +0.0366353 0.0982561 -0.0107953 +-0.0789343 0.0700266 0.0104198 +-0.0897898 0.136552 0.0342 +-0.0127086 0.0383825 0.00890404 +-0.0624498 0.166273 -0.0455815 +0.0326592 0.0619445 0.0401066 +-0.0457467 0.132003 0.0161756 +-0.0886572 0.111878 0.019323 +-0.0532618 0.0335957 0.00317772 +-0.0164951 0.109966 0.0413377 +0.0543768 0.0731861 0.0106539 +-0.0174802 0.127364 0.0206736 +0.0567172 0.0621967 0.0256596 +0.0464307 0.0792576 0.0101822 +-0.0292965 0.0818454 -0.0346209 +0.0426284 0.0719164 -0.00480026 +0.0578503 0.0648244 0.0238145 +0.0430174 0.0637781 -0.0018983 +-0.0794408 0.0768726 0.0291038 +0.0545285 0.0622324 0.0277996 +0.0441819 0.0945484 0.0191589 +-0.0284244 0.119569 -0.0104891 +-0.0778403 0.10982 0.0432074 +0.0160506 0.0754058 0.0531341 +-0.0523159 0.0517943 0.0256431 +-0.0181754 0.17123 -0.0220272 +-0.049306 0.147765 0.0110054 +-0.0405044 0.166738 0.00354035 +0.0214342 0.0934308 -0.0229317 +0.0452295 0.0931909 0.0101587 +-0.0352058 0.126987 0.0025067 +-0.0177396 0.0642294 -0.0366219 +-0.0251728 0.1712 -0.0194857 +0.0122607 0.0538397 -0.0290819 +-0.0902417 0.133644 0.00722857 +-0.0815914 0.0767239 0.0235201 +-0.0534472 0.146228 0.0234079 +0.0235949 0.0875751 0.0483132 +-0.0647237 0.158466 -0.0128094 +-0.0260145 0.0688342 -0.034504 +-0.0770801 0.15139 0.0355785 +-0.0630768 0.0336712 -0.00794186 +-0.0574971 0.10156 0.0427298 +0.0435266 0.0664036 0.0265247 +-0.0500812 0.146304 0.0115954 +-0.0568525 0.0521385 0.00567837 +-0.0436626 0.0607395 -0.0127771 +-0.0426472 0.117732 -0.0145554 +-0.0805782 0.112389 0.0458728 +-0.0161125 0.127667 0.00290411 +-0.00749701 0.0576432 0.054379 +-0.0454968 0.0775542 0.0422104 +-0.0694956 0.0958583 0.0420894 +-0.0369639 0.0346855 -0.0305537 +-0.0640756 0.151735 -0.033508 +-0.00249095 0.0718247 0.0580407 +-0.0583644 0.065095 0.0331446 +-0.0748917 0.16378 -0.0359985 +-0.0710199 0.0662278 0.0242287 +0.035425 0.0754528 0.0389267 +-0.0547392 0.075379 -0.0185175 +0.0462455 0.0784487 0.0155769 +-0.0310503 0.155166 -0.00836756 +-0.0879532 0.117604 0.0468721 +-0.0630191 0.169374 -0.0476038 +-0.0445267 0.0423569 -0.0163056 +-0.0624997 0.0818785 0.0437679 +-0.0842794 0.115636 -0.000747849 +-0.0700345 0.0631474 0.0200567 +0.0125104 0.105746 0.0436503 +-0.0795696 0.0976882 -0.00856087 +-0.0495247 0.141678 0.0113921 +0.0166382 0.123302 0.0301317 +-0.0367737 0.0813353 -0.0218258 +0.0465043 0.0597504 0.0314309 +-0.0777677 0.0975799 -0.010556 +-0.0460219 0.166062 0.00401182 +0.0609087 0.0623561 0.0101482 +-0.0403969 0.033577 0.00400031 +0.0286533 0.0578113 0.0412965 +0.0447855 0.0917675 0.0181585 +-0.0238167 0.0929782 -0.0327062 +-0.0714891 0.129823 0.0511416 +-0.0235755 0.157761 -0.0033973 +-0.0525761 0.136549 0.0284096 +-0.0177757 0.0756957 -0.0389571 +-0.0184004 0.0383962 0.0258071 +-0.0162165 0.175672 -0.0252165 +-0.0326786 0.0835446 -0.0285522 +-0.0897198 0.135201 0.0382086 +0.0138704 0.12508 0.0305218 +-0.0334383 0.0383149 -0.00250434 +0.0173372 0.059408 -0.0277846 +0.02739 0.119413 -0.00163712 +-0.055795 0.129741 0.0368819 +-0.0124902 0.0560062 0.0517339 +0.00742257 0.034128 0.000278711 +0.0312441 0.0828649 -0.019558 +-0.0804968 0.149757 0.0362335 +0.0224909 0.107012 0.0395338 +-0.0282283 0.117946 -0.012805 +-0.0726553 0.180933 -0.0546755 +-0.0683563 0.134056 0.04686 +-0.0197453 0.163025 -0.0159769 +-0.0591933 0.155725 0.01387 +-0.0522733 0.13577 -0.00153662 +0.0413723 0.0971667 -0.00382246 +-0.0920493 0.125439 0.00826634 +-0.0522301 0.0388364 0.0467813 +0.0151427 0.107227 -0.0182666 +-0.0397192 0.03358 0.00232461 +0.0373971 0.049112 -0.00639066 +-0.0698932 0.120907 -0.00884856 +-0.0667865 0.156181 0.0155153 +-0.0865635 0.0819919 0.0164862 +-0.0276111 0.0476412 -0.0256716 +-0.050104 0.0515366 0.0156131 +-0.0466794 0.0620985 -0.0127944 +-0.0784369 0.170061 -0.0360578 +-0.0714268 0.173765 -0.0397048 +-0.0313808 0.0567165 -0.0143886 +-0.0309651 0.0347631 0.0441412 +0.0067865 0.130497 0.0221788 +-0.0524448 0.149335 0.0194038 +-0.0414976 0.0860064 0.0425981 +-0.0709701 0.155369 -0.0459101 +0.00322675 0.0810659 -0.0345434 +-0.0294909 0.0917678 0.0440939 +-0.0734658 0.151245 -0.0358847 +-0.079509 0.130274 0.0528999 +-0.00249263 0.0534855 0.0544759 +-0.070992 0.0395652 0.00837515 +-0.0868944 0.122556 -0.00173403 +-0.0574179 0.0608499 0.024689 +-0.0424855 0.09447 0.0423231 +-0.00342977 0.0386245 0.00511046 +-0.018769 0.037629 -0.017491 +-0.0527937 0.0869491 -0.0216809 +-0.0846182 0.106299 0.024344 +0.0443742 0.0818795 -0.000800454 +-0.0894613 0.148789 0.0111841 +-0.0867708 0.110409 0.0193573 +-0.0310025 0.176085 -0.0150686 +0.00863383 0.115058 0.0390007 +-0.0408994 0.163853 0.00394115 +-0.057289 0.0707546 0.0390509 +-0.0646832 0.0432745 0.0336962 +0.0205013 0.0892461 0.0486645 +-0.0625318 0.0662874 0.0329584 +-0.0608083 0.147764 -0.00265379 +0.00615212 0.112907 -0.0196236 +-0.0299927 0.0436118 -0.0290457 +-0.0158151 0.162561 -0.00896512 +0.00597686 0.130404 0.00157669 +0.0284244 0.0822003 0.0446831 +0.0211099 0.0605491 0.0480139 +-0.0234016 0.184697 -0.0149423 +0.00333349 0.0390305 -0.00876711 +-0.0635183 0.159851 -0.052592 +-0.0770983 0.150031 -0.00589737 +0.0214723 0.0878669 0.0490265 +-0.0679264 0.131258 0.0474463 +0.00194863 0.100763 -0.0227079 +0.00777681 0.0385776 0.0292039 +-0.022633 0.08929 0.0533197 +-0.00603192 0.127393 0.0291246 +-0.0911594 0.120221 0.0443019 +-0.0894985 0.121276 0.00330358 +-0.0368227 0.0914861 -0.023804 +-0.0530502 0.151987 0.0175947 +-0.0672887 0.121448 0.0519139 +-0.0568311 0.0912579 -0.0217399 +-0.0697681 0.0822532 -0.0170635 +-0.0874076 0.0990828 0.0243308 +-0.0355048 0.108366 0.0378272 +0.0287346 0.10342 0.0381993 +-0.0860991 0.0964962 0.0273389 +0.0321886 0.108821 -0.00928902 +-0.0781375 0.103077 -0.00856917 +-0.0630075 0.0458305 0.00872119 +-0.0737672 0.068042 0.0238437 +-0.0863239 0.111846 0.0325401 +-0.00949559 0.10164 0.0439977 +-0.0902184 0.117255 0.00530427 +-0.075404 0.0914629 0.0394057 +-0.0453927 0.0336614 -0.0191153 +-0.0827835 0.0790493 0.0255103 +-0.0912019 0.132413 0.0272298 +-0.0564798 0.081975 0.044689 +-0.072928 0.148723 -0.0327819 +-0.00163455 0.0466691 -0.0289171 +-0.0665675 0.0355377 -0.00701232 +-0.000953404 0.100702 0.0462281 +-0.00881786 0.169637 -0.0227487 +-0.0201288 0.165284 -0.0176913 +-0.0859703 0.127103 0.0488324 +0.0255102 0.106068 0.0387825 +0.0570523 0.0522954 0.00619533 +-0.0407044 0.0491484 -0.0113833 +-0.0394747 0.168236 0.00277528 +-0.0690053 0.160967 -0.0519594 +0.0161135 0.0534638 0.0477167 +0.0284604 0.079188 -0.0220838 +0.0113708 0.0523816 -0.0287924 +0.0393128 0.0955964 -0.00780286 +-0.020906 0.0387029 0.0322136 +-0.00871553 0.0642094 -0.0357226 +-0.0547883 0.08548 -0.0214211 +-0.0725291 0.0901409 0.0413911 +-0.0566631 0.0629472 -0.00640536 +0.00234532 0.0524899 -0.0301138 +-0.0938956 0.118755 0.0202995 +-0.0414996 0.0846033 0.0426094 +0.00904636 0.090083 -0.0314826 +0.00730102 0.131 0.00524198 +-0.0637681 0.0809918 -0.0188675 +-0.0414945 0.041025 0.0428519 +-0.087002 0.140499 0.00821758 +-0.0709364 0.151841 0.036169 +-0.0634902 0.106988 0.0392647 +-0.0628225 0.0910404 -0.0189489 +-0.0105509 0.165091 -0.0177492 +-0.00157082 0.0341515 -0.0183868 +-0.0378749 0.105661 -0.0201869 +-0.0689412 0.079144 0.0404114 +-0.0239658 0.0335277 -0.0259671 +-0.0732183 0.172207 -0.0490431 +-0.0205007 0.0971766 0.0453281 +-0.0778797 0.109167 0.0401678 +0.000488577 0.0965409 0.0535304 +-0.0172908 0.177187 -0.018141 +0.00409629 0.128905 0.0269756 +0.0212668 0.080528 -0.0265872 +-0.0484872 0.0931824 0.0442201 +-0.0703872 0.161044 -0.0469664 +-0.0556945 0.0334591 0.00641451 +0.043113 0.0972735 0.00118522 +-0.0465526 0.147719 0.00793526 +-0.0620051 0.0336477 0.00854436 +-0.0789484 0.130998 -0.00538086 +-0.0329884 0.0347673 0.0437059 +-0.011676 0.0389222 -0.00979553 +-0.0102112 0.168384 -0.01842 +-0.058489 0.0747585 0.0420339 +0.0115041 0.129313 0.00109395 +-0.0186879 0.0554617 -0.0328673 +-0.0198225 0.168315 -0.0130587 +-0.013087 0.0382629 0.0179922 +0.0130281 0.0916311 -0.029044 +0.0271142 0.0463333 0.0371793 +-0.0618303 0.167813 -0.0535931 +0.0164903 0.113991 0.0376096 +-0.0592845 0.0336203 0.0127024 +-0.0728419 0.0642516 0.016748 +-0.0527116 0.12267 0.0360612 +-0.091424 0.144749 0.0231531 +0.0225812 0.0946281 -0.0221802 +-0.073319 0.153662 0.0322986 +-0.0384844 0.109782 0.036904 +-0.0551177 0.156069 -0.00176933 +-0.0195075 0.0512747 0.046374 +0.0374508 0.109679 0.00217662 +-0.0624744 0.163093 -0.0485882 +-0.0482041 0.0335795 -0.00119996 +0.0115865 0.127977 -0.0019288 +0.00494704 0.131338 0.0186496 +0.00228726 0.131702 0.0133903 +-0.0890002 0.134996 0.00522535 +0.0114372 0.12283 -0.0103617 +-0.0719092 0.180772 -0.055937 +-0.0144633 0.051615 0.0495133 +0.0147782 0.034634 0.0233109 +-0.0647828 0.177875 -0.0546137 +-0.0882908 0.103675 0.012381 +-0.0631313 0.0343469 0.025414 +-0.0255881 0.169753 -0.0108444 +0.0323006 0.0361518 0.00522301 +-0.0682938 0.06404 -0.00150269 +-0.0705485 0.167591 -0.022181 +0.0271973 0.0508207 -0.0197147 +-0.01565 0.10151 -0.0235687 +-0.0233444 0.0380443 0.0215084 +-3.10615e-05 0.0346258 0.0437307 +-0.0391691 0.162354 0.00112683 +-0.0657552 0.0422954 0.0115704 +-0.0745006 0.142795 0.0461595 +0.0473913 0.0422357 0.0119475 +0.0144595 0.121944 0.0333941 +-0.00358089 0.036197 -0.0248262 +0.0394746 0.0459091 0.0309432 +-0.0744487 0.141666 -0.00675172 +-0.0615813 0.0380878 0.0442214 +-0.0393467 0.0392853 0.042122 +-0.0229052 0.0945537 0.0478017 +-0.0281182 0.0563778 -0.0244009 +-0.0325146 0.112544 0.0353443 +0.0114695 0.0949418 0.0507264 +-0.027899 0.0377311 0.0244577 +-0.0247344 0.0668597 -0.034525 +-0.0623338 0.163141 -0.0335899 +0.0341266 0.0993109 -0.0131459 +-0.0130965 0.169821 -0.0173751 +0.0250182 0.11137 0.036342 +-0.0513993 0.14316 0.0173798 +-0.0521465 0.121207 0.0350569 +0.0134264 0.0403382 -0.0227982 +-0.0919004 0.143349 0.0181646 +0.0256492 0.0831048 -0.024123 +-0.0614955 0.0973435 0.04311 +0.0110632 0.0360404 -0.022358 +-0.0702704 0.159573 -0.0469358 +-0.0135146 0.181607 -0.0231689 +0.0462675 0.0778418 0.00718957 +-0.057322 0.0452663 0.0256799 +-0.0473932 0.0337786 -0.0140697 +0.0180643 0.0577618 0.0488361 +-0.0840242 0.151932 0.0065796 +-0.0547337 0.0738545 -0.0174125 +-0.0647273 0.156687 -0.0474505 +-0.0184955 0.0513594 0.0472431 +0.0314014 0.0491212 -0.0073371 +-0.0336406 0.0339783 -0.0207966 +0.0302861 0.0722616 -0.0207987 +-0.0707237 0.135491 0.0487549 +0.0373244 0.0861524 0.0364715 +-0.0839874 0.129456 -0.00327263 +-0.0579656 0.0599816 -0.000771046 +-0.0374903 0.0917378 0.0437278 +-0.0421167 0.157651 -0.00983865 +-0.0774831 0.151439 -0.0048996 +-0.0664918 0.167987 -0.0292876 +-0.0348246 0.12664 0.0173665 +0.0288107 0.113482 -0.00830654 +-0.0939345 0.122834 0.0252963 +-0.0236453 0.0906062 0.0514725 +-0.0623453 0.151603 -0.000787959 +-0.0394885 0.0520168 0.0393574 +-0.0228668 0.103033 -0.0236969 +-0.0205005 0.115412 0.03703 +-0.0206187 0.158806 -0.0102834 +-0.00380864 0.0840797 -0.0375505 +-0.0846424 0.139002 0.00130344 +-0.0244403 0.0384399 0.0299279 +-0.0256136 0.0707601 0.0441795 +0.0431065 0.0733659 -0.00379081 +-0.0334964 0.0575473 0.0382542 +-0.0732341 0.100848 0.0383652 +-0.0417523 0.0392031 -0.0263092 +-0.0600247 0.0335577 0.00903367 +0.0319454 0.0782138 0.0427262 +-0.0478947 0.122501 0.0288841 +-0.0215102 0.0435311 0.0534788 +-0.0175036 0.0357848 -0.0270478 +-0.0659221 0.115196 -0.0104247 +-0.0452512 0.0574076 0.0387158 +-0.0318518 0.100063 -0.022678 +-0.062214 0.131105 0.0398962 +-0.0570307 0.151068 0.0316808 +-0.0390807 0.159219 -0.0117734 +-0.0575439 0.0421232 0.0457366 +-0.0434958 0.166715 0.00391556 +0.0435215 0.0973118 0.0181533 +0.0364745 0.0384289 0.0206775 +0.00783805 0.034796 0.0434029 +0.00550647 0.0519309 0.0530702 +-0.0452904 0.125307 0.0239255 +0.0384949 0.0469555 0.0314897 +-0.0344994 0.0860255 0.0426749 +-0.0604675 0.0334377 0.00185915 +0.00564306 0.109569 0.0416563 +-0.0341393 0.169665 -0.0151103 +0.0252174 0.115733 -0.00872379 +-0.0432318 0.0365168 -0.0263599 +-0.0648058 0.0881399 -0.0188881 +-0.0113055 0.0420913 0.0500945 +-0.0768733 0.0742923 -0.00658087 +-0.0718355 0.0757492 0.0369191 +-0.00552934 0.126815 -0.00649473 +-0.015298 0.113338 -0.0180384 +-0.0658513 0.168603 -0.0333515 +-0.0769239 0.160393 -0.0146649 +-0.0789031 0.0913518 0.0358575 +-0.0622512 0.175627 -0.0566298 +0.0427075 0.100107 0.0161639 +-0.0122664 0.0420539 0.0504523 +-0.0593768 0.116855 0.0386274 +-0.0207916 0.117992 -0.012906 +-0.0209967 0.0893299 0.0545201 +-0.0293388 0.0522666 -0.0213646 +0.042 0.102859 0.00616839 +-0.0915744 0.128321 0.0372423 +-0.0745556 0.104899 0.0367465 +-0.0874341 0.0860792 0.0144694 +-0.0893403 0.0983511 0.0184032 +0.0265834 0.0915781 0.0456097 +0.0111147 0.0359709 0.0304167 +-0.0251149 0.163764 -0.0159045 +0.0379525 0.0888235 0.0356698 +-0.0308593 0.102934 -0.0225503 +-0.0849458 0.0817985 0.00448942 +0.016843 0.101962 -0.021958 +-0.0602648 0.153206 0.0324327 +-0.00109974 0.118227 -0.0153259 +-0.0277867 0.0904111 0.0457123 +-0.0632329 0.149656 -0.0246848 +-0.0378318 0.0943285 -0.0232947 +0.00942926 0.0360304 0.00452751 +0.00308943 0.0346383 -0.0160359 +-0.0629538 0.164686 -0.0335942 +-0.0707579 0.0639499 0.00302292 +-0.0806378 0.0734203 0.0185511 +-0.0114878 0.0502762 0.0503958 +-0.051624 0.0589527 -0.00929309 +-0.0724662 0.156284 0.0178613 +-0.0755506 0.0791122 0.0357048 +-0.0599662 0.0605914 -0.00103222 +-0.0407972 0.128426 0.00338476 +-0.0685036 0.0972643 0.0418698 +0.0384545 0.081427 -0.0137424 +-0.0869304 0.137738 0.00419643 +-0.0915894 0.118845 0.0433559 +-0.0375104 0.0344317 -0.0164034 +0.0132714 0.0779991 -0.0309033 +-0.000460653 0.0717499 0.0573883 +-0.0689415 0.128234 -0.0091158 +-0.00449889 0.0389099 -0.0139692 +-0.00687105 0.104506 -0.0230032 +-0.0625734 0.0333471 -0.00389969 +-0.0466818 0.0680053 -0.0151447 +0.0325669 0.0564098 0.0381516 +-0.00676687 0.0770295 -0.0375725 +0.031043 0.0535582 0.0376713 +-0.0252324 0.0383969 -0.00646059 +-0.0781312 0.100777 0.0347873 +-0.0351912 0.0448435 0.0445858 +-0.0618482 0.0460583 0.00900481 +-0.0510378 0.148698 -0.00295565 +-0.0758068 0.170822 -0.0449998 +0.0228822 0.0407495 0.0397886 +-0.0556881 0.123137 -0.00801327 +0.041209 0.10285 0.0181659 +-0.057716 0.154704 0.0245626 +-0.0356589 0.0394362 0.046602 +-0.018436 0.0384553 -0.00144245 +-0.0725091 0.147853 -0.0287195 +0.0195403 0.0672509 0.0492981 +-0.00949487 0.11143 0.0422271 +0.0387128 0.0407096 0.0245464 +0.0274937 0.0354669 0.00307886 +0.0251817 0.0344441 0.0110044 +-0.0734653 0.11597 0.0519419 +-0.0517405 0.0367791 -0.0118947 +-0.0313584 0.0347088 0.042355 +-0.0271594 0.0577744 0.0376032 +0.0289959 0.083514 0.0437755 +-0.0609886 0.0421383 0.0435161 +-0.0642758 0.0379734 0.0412454 +-0.0669901 0.171097 -0.0394962 +0.00201718 0.0342688 0.0083365 +-0.0376227 0.0519888 -0.0106273 +-0.0604976 0.0761414 0.0420756 +0.0231651 0.0624431 -0.0251426 +-0.0444966 0.100126 0.0423688 +-0.0434704 0.0888362 0.0427012 +-0.0739012 0.112096 -0.00769672 +0.0113285 0.0381477 0.0446991 +0.0606492 0.0595518 0.0111602 +-0.0344028 0.0453249 -0.0266763 +-0.0238559 0.100178 -0.023968 +0.0124979 0.0363631 -0.0219171 +-0.0386629 0.0606634 -0.011982 +-0.0845122 0.0778323 0.0175087 +-0.0447652 0.0811738 -0.019998 +-0.0325802 0.0708663 -0.0234636 +-0.0428489 0.09852 -0.021578 +0.0343638 0.0491351 -0.00656846 +-0.00173319 0.108975 -0.0214067 +-0.0513914 0.0516798 0.0216239 +0.00608628 0.101527 -0.0214717 +-0.0746196 0.147202 -0.0138555 +-0.0464944 0.0733156 0.0418074 +0.0275533 0.0550749 -0.019815 +-0.0617588 0.0455326 -0.00130544 +-0.0627435 0.14749 -0.0135844 +0.0114636 0.0347788 0.020691 +0.0413154 0.0451948 0.0296022 +-0.0855482 0.149965 0.0308161 +0.045359 0.04899 -0.00489955 +0.000884291 0.038993 0.0274224 +-0.086804 0.0846773 0.00948205 +0.00217921 0.090906 -0.033534 +-0.0074916 0.0518487 0.0520774 +-0.000472995 0.0746288 0.0583091 +0.00707409 0.0348007 0.0234037 +0.0191098 0.127253 0.00673134 +-0.00312412 0.123427 0.0346626 +-0.0251492 0.0379137 0.0122303 +-0.030188 0.124116 0.0205603 +-0.0326284 0.178159 -0.00692862 +-0.0371849 0.0430027 -0.0273252 +0.000516139 0.0703294 0.0566091 +-0.061834 0.155291 -0.0275862 +0.0144787 0.103102 0.0461637 +-0.0601666 0.138122 0.0340792 +0.0447845 0.0903596 0.0201575 +-0.0175794 0.128153 0.00899134 +-0.0654784 0.133956 0.0422213 +-0.078379 0.0698242 0.00895098 +-0.0544145 0.0561001 0.0105768 +-0.0166845 0.0625881 0.0524778 +0.0283147 0.0712973 0.0426773 +0.00750546 0.105745 0.0420743 +-0.0365184 0.126747 -0.000928274 +-0.0297912 0.154227 -0.00467156 +0.0242356 0.0804257 -0.0251216 +-0.0507602 0.0797387 -0.0202693 +-0.0399713 0.112687 -0.0172474 +0.0170749 0.128355 0.00741174 +-0.0399375 0.150681 0.00347523 +-0.0608612 0.0435863 0.0137318 +-0.0365883 0.0485443 -0.0138981 +-0.0910601 0.132402 0.0282222 +-0.0795844 0.0759236 -0.00451678 +-0.0809274 0.12805 -0.00535084 +-0.0711513 0.132664 0.0498849 +0.0150413 0.120568 0.0342385 +0.00849911 0.119651 0.036768 +-0.0569109 0.033599 0.014995 +-0.0689033 0.0887623 0.0428815 +-0.020138 0.166773 -0.018707 +-0.0815894 0.0926183 0.0328436 +0.00319943 0.0866473 -0.0337836 +-0.0528475 0.140082 0.0254195 +0.0217844 0.118301 -0.00950952 +-0.0305318 0.0734349 -0.0315361 +-0.0355385 0.040818 0.0464546 +-0.0446309 0.0563208 -0.0114385 +-0.0779756 0.13395 -0.00568102 +-0.0924453 0.114684 0.0163206 +-0.0427865 0.0855262 -0.0214717 +-0.030041 0.0819074 -0.0335886 +-0.0350329 0.037518 0.0477355 +-0.0574727 0.0791252 0.0438951 +-0.0347822 0.124221 0.0233214 +0.0396853 0.0674479 -0.00978879 +-0.0280887 0.123076 -0.00418723 +-0.0357494 0.0383801 -0.010405 +-0.0896534 0.0983503 0.0154045 +-0.0393744 0.174134 -0.00504658 +-0.00548988 0.121033 0.0366102 +-0.0493281 0.143211 0.0074004 +-0.0618749 0.161566 -0.0365945 +-0.00486561 0.103096 -0.0233724 +-0.0158939 0.0387206 -0.00487532 +-0.0136298 0.0943834 -0.0340901 +-0.0708677 0.158014 -0.00345716 +-0.0679292 0.0674285 0.0308631 +-0.0698001 0.0894083 -0.0167108 +-0.0708742 0.117963 -0.00822963 +0.0544559 0.0679536 0.0254119 +0.0505447 0.0640078 -0.00213219 +-0.0328813 0.11004 -0.0184872 +-0.0329481 0.169751 -0.00390259 +-0.0730465 0.158091 -0.00419381 +-0.0642284 0.165303 -0.0599757 +-0.0393381 0.149359 -0.00118821 +0.027659 0.115893 0.031317 +0.00307915 0.03925 0.0330573 +-0.0268824 0.0338882 -0.0212482 +-0.076206 0.0892711 -0.0135327 +0.036558 0.0887304 -0.0159156 +-0.045503 0.0478046 0.0396725 +-0.00457894 0.0383459 0.0160278 +-0.014359 0.102532 0.0433738 +-0.0263218 0.038308 -0.00105771 +-0.0252694 0.0564528 0.0400125 +-0.0745038 0.137269 0.049596 +-0.0478639 0.102799 -0.0211716 +-0.0698236 0.144589 -0.0179026 +-0.00449355 0.112805 0.041803 +0.0395793 0.107012 0.0171684 +0.0320331 0.117177 0.0215305 +0.0319133 0.103439 0.0357737 +-0.0232571 0.160328 -0.0132723 +-0.0368559 0.101427 -0.0217814 +-0.0779001 0.105799 -0.00757653 +-0.0719733 0.155857 0.00930845 +-0.0667659 0.0664754 0.0301739 +-0.0116086 0.0384341 0.0253641 +-0.0828253 0.0815398 -0.00255091 +-0.00864403 0.0481881 -0.0304747 +-0.0695881 0.0687436 -0.00572614 +-0.053703 0.069339 -0.0141095 +-0.0875622 0.147255 0.0314849 +-0.060703 0.146825 0.0369155 +0.0559661 0.0563559 0.00119345 +-0.0899141 0.140577 0.0142032 +0.0290556 0.0480892 -0.0107335 +-0.0444676 0.0959215 0.0428438 +-0.0126944 0.0614008 -0.0362648 +-0.00712049 0.126279 0.0302479 +0.00717458 0.125139 0.032446 +0.0130051 0.123122 0.0330958 +-0.0658939 0.119442 -0.00885604 +-0.0535827 0.0550746 0.0114399 +0.00820634 0.0865719 -0.0325157 +-0.0358588 0.100033 -0.0223224 +-0.0816885 0.110103 -0.000571623 +-0.0517049 0.0693137 -0.014154 +-0.0304078 0.0499703 0.0425042 +0.0090211 0.0602846 0.0533569 +-0.0102692 0.126825 -0.00441849 +-0.0412575 0.123881 0.0239565 +-0.0304041 0.179805 -0.0103906 +-0.0119972 0.115638 -0.0165051 +0.0413233 0.102851 0.0171643 +-0.032272 0.0343596 0.0389523 +-0.0854712 0.0791996 0.00951147 +-0.0138083 0.082755 -0.0391488 +-0.0256473 0.0335939 -0.0244827 +0.0452831 0.0511563 0.0319003 +-0.0829803 0.153189 0.00837374 +-0.0435404 0.0351992 0.0428237 +0.0114184 0.0389206 -0.0228692 +0.0440394 0.0405103 0.0110966 +-0.0218345 0.0725147 0.0516294 +0.0173744 0.124995 0.027504 +-0.0771042 0.163136 -0.0202013 +0.0282746 0.0494546 -0.0167442 +-0.0703245 0.0805604 0.0403227 +-0.0558701 0.154311 0.0223113 +-0.0790495 0.0785612 -0.00658771 +0.0023439 0.122378 0.0350184 +-0.0220309 0.0609111 0.0451603 +-0.0853195 0.117662 0.0484974 +-0.0580048 0.0366442 0.0464062 +-0.00844255 0.0358982 -0.0250895 +0.0243113 0.119024 -0.0062727 +-0.0558892 0.141955 -0.00229647 +-0.0642262 0.115635 0.0441038 +-0.0719279 0.153998 -0.0419035 +0.0423481 0.0732982 -0.00579253 +0.0103113 0.0595614 -0.0298764 +-0.0818376 0.116236 -0.00283916 +0.0590795 0.0663557 0.00613696 +-0.039497 0.0436994 0.0413132 +-0.0702982 0.0846763 0.0415948 +-0.0167436 0.068615 -0.0382083 +-0.0690033 0.127063 0.0512206 +-0.0485018 0.102883 0.0409949 +-0.0541716 0.144673 0.0274046 +0.0243198 0.0564051 0.0438207 +-0.0308589 0.0382072 0.0517831 +-0.00548321 0.119649 0.0378412 +-0.0606463 0.0434636 0.0431332 +-0.008712 0.171156 -0.0257232 +-0.0444845 0.0846726 0.04342 +-0.0897848 0.135174 0.0342114 +-0.00690926 0.0349718 0.0473534 +-0.0808786 0.122166 -0.00503067 +-0.0779103 0.070378 0.00551561 +0.0134856 0.129689 0.00607818 +-0.0225837 0.0666453 0.0469216 +-0.0525012 0.046573 0.0420391 +-0.0444858 0.091688 0.0430295 +-0.0394965 0.0662956 0.0417788 +0.00897384 0.0364118 0.0277765 +-0.0782046 0.166684 -0.029962 +0.0192461 0.0777761 -0.0276631 +-0.0483417 0.137106 0.010396 +0.0258883 0.12226 0.00355652 +0.0398565 0.0384519 0.0122163 +-0.0408758 0.107069 -0.0201235 +-0.0315055 0.0689302 0.0397623 +-0.068912 0.148468 -0.034342 +-0.0496681 0.0705507 0.0391462 +0.00414266 0.131018 0.00407154 +0.0204354 0.100784 0.0455262 +-0.0587133 0.0708136 -0.0155469 +-0.00369415 0.0386815 0.0249596 +-0.0546088 0.0601814 -0.0071333 +0.0277597 0.0984362 -0.0181936 +0.00136992 0.128685 0.0274437 +-0.0166951 0.0555255 -0.0336624 +0.0054852 0.109984 0.0416767 +-0.079955 0.130987 -0.00485489 +-0.00265109 0.0497012 -0.030809 +-0.0697849 0.145343 0.0431021 +-0.0903934 0.12698 0.0433203 +-0.0409656 0.122163 0.0270528 +-0.056363 0.13673 0.0325483 +-0.00422605 0.0355815 -0.0164762 +-0.0158888 0.123338 -0.00654807 +0.0233356 0.0389315 -0.00470356 +-0.0377622 0.0797629 -0.0199128 +-0.0274204 0.12046 -0.00942796 +-0.0745042 0.0669844 0.00328572 +-0.0544992 0.0400332 0.0469658 +-0.022854 0.100181 -0.0240549 +-0.0748342 0.156367 -0.00257451 +0.00532997 0.0389553 -0.00830106 +-0.0591545 0.129731 0.0390508 +-0.0365933 0.117132 -0.0139142 +0.00710349 0.126169 0.0309735 +0.00420316 0.0838546 -0.0341295 +0.0424932 0.0541962 0.0323753 +-0.0447782 0.039524 -0.0212903 +0.0130456 0.0946785 -0.0262358 +0.0515873 0.047616 0.00226708 +-0.0226971 0.059684 -0.0328522 +-0.0489531 0.117804 -0.0145786 +-0.00521852 0.130779 0.0091953 +-0.0745798 0.155493 -0.021916 +-0.0211637 0.171222 -0.0207379 +-0.0681899 0.15036 -0.0415571 +-0.0645431 0.0356401 -0.00785526 +0.0444401 0.0776895 -0.00177282 +0.0191352 0.0356125 -0.00767677 +-0.0879901 0.0928029 0.00642738 +-0.0274823 0.0617236 0.037721 +0.0406194 0.104193 0.00117617 +-0.0205806 0.0342261 -0.0203167 +0.052283 0.0559902 -0.003254 +-0.0826845 0.0884898 0.0312484 +-0.0354914 0.0719062 0.0418497 +0.00222867 0.0810902 -0.0349213 +-0.0247631 0.123128 0.0239793 +0.00210157 0.111597 -0.0202587 +-0.029962 0.122606 -0.0056563 +-0.0642809 0.173904 -0.0612545 +0.0164873 0.128764 0.0128859 +-0.0290915 0.0334798 -0.0269263 +0.0563251 0.0686891 0.0234174 +0.0388229 0.0428364 0.0281231 +-0.0364553 0.171237 0.000642707 +-0.0695352 0.0422413 0.00168563 +0.0115865 0.119151 -0.014401 +-0.0445078 0.128204 0.0197407 +-0.0735439 0.101276 0.0379813 +-0.0842997 0.131249 0.0498733 +-0.0456134 0.0424471 -0.0132755 +0.00124079 0.0740793 -0.0353703 +-0.0590284 0.155612 0.0197248 +0.00626131 0.0696979 -0.0331897 +-0.0465413 0.123419 -0.0104793 +-0.0145087 0.0587885 0.0518852 +-0.0412993 0.127471 0.0164976 +-0.0621264 0.0457845 0.0326787 +0.00861617 0.0348422 -0.0132521 +-0.0699384 0.129684 -0.00901632 +-0.0174184 0.0961382 -0.0299203 +-0.0408477 0.0999502 -0.0215042 +-0.0629342 0.109643 -0.0151294 +-0.0588992 0.0593658 0.0203903 +-0.0622614 0.0594461 0.0178467 +0.0503092 0.0575099 -0.00459296 +0.0328071 0.0781213 -0.0187889 +0.0297936 0.0354746 0.0165125 +-0.0592597 0.0343664 0.034953 +-0.0736653 0.0761112 -0.0107553 +0.0358581 0.0686798 0.0377462 +-0.0814983 0.102013 0.0310531 +0.0072631 0.0968089 -0.0265119 +-0.0107695 0.0756601 -0.0381615 +-0.0665448 0.142647 -0.010737 +-0.0861837 0.0868588 0.0248974 +-0.0323987 0.114036 -0.016697 +-0.0526124 0.143167 0.0204083 +-0.00749979 0.118315 0.0383098 +-0.0366574 0.0591917 -0.011518 +-0.0854765 0.145991 0.0364919 +-0.0590102 0.131118 -0.0069845 +0.0099878 0.0342067 -0.0142754 +0.0406313 0.0833746 0.032449 +-0.0377389 0.0753784 -0.0182557 +-0.0265179 0.111211 0.0374625 +-0.0457781 0.109842 -0.0182449 +0.0106021 0.12463 0.0322012 +-0.0714609 0.172223 -0.0354286 +-0.0918002 0.143353 0.0191654 +0.009256 0.0681484 -0.0312392 +0.00426025 0.0352382 0.0224392 +-0.0497576 0.0782604 -0.019072 +-0.0628575 0.0953598 -0.0185102 +0.0594691 0.0677866 0.0081304 +0.0120479 0.124912 -0.00663019 +-0.0896003 0.111903 0.0133388 +-0.000572916 0.131478 0.0109076 +-0.0856485 0.103181 0.0252723 +-0.0825849 0.0762413 0.018536 +0.0357614 0.089262 -0.0164786 +-0.0853874 0.0978708 0.0280062 +-0.0250231 0.0373676 -0.0184933 +-0.0224668 0.0384735 -0.00782567 +-0.0215612 0.127036 0.0148264 +0.0375018 0.0527008 0.0316063 +0.0132903 0.0644915 0.0525417 +0.021025 0.0444507 -0.0197096 +-0.0230202 0.0380885 0.0125034 +-0.0190143 0.123258 -0.00649836 +-0.0634892 0.101502 0.0420523 +-0.0022961 0.120938 -0.0122094 +-0.0682754 0.155222 0.00480981 +-0.0105391 0.0444694 0.0492224 +-0.0314884 0.0988001 0.0440684 +-0.0162822 0.113495 -0.0182068 +0.0427502 0.0832247 0.0284671 +-0.0317184 0.124145 0.0214762 +-0.0228243 0.0868132 -0.0375213 +0.0112412 0.122679 0.0339481 +-0.0624726 0.093208 0.0448109 +-0.0195149 0.0474114 0.0506124 +-0.0305029 0.105682 0.0404793 +0.0297926 0.0510441 -0.0147439 +-0.0660587 0.0336733 0.00769062 +0.01375 0.126078 -0.00389468 +0.00623348 0.0768314 -0.0342539 +0.00723812 0.0725784 -0.0338132 +-0.0345032 0.0747169 0.0417978 +-0.0533429 0.0572662 -0.00744815 +-0.0588626 0.0344147 0.0367317 +-0.0597544 0.151092 0.0347772 +-0.066041 0.156288 0.0201296 +-0.0519452 0.0542248 0.0130044 +-0.0536545 0.154299 0.0129697 +-0.0553709 0.131821 -0.00535733 +-0.0165812 0.0355875 -0.0267111 +-0.0671293 0.149176 -0.0346332 +0.0364911 0.112064 0.0146153 +-0.0678122 0.0908837 -0.0169858 +-0.0433492 0.123979 0.0232099 +0.0233446 0.0489622 -0.0213372 +-0.0401353 0.162183 -0.0119788 +-0.0436993 0.0680874 -0.0160622 +-0.0575 0.0589785 0.0215704 +0.002504 0.0605716 0.0560843 +-0.0230753 0.078299 0.0540943 +-0.0532839 0.150877 0.0224035 +-0.0536299 0.144677 0.0243972 +0.0138044 0.129402 0.00474998 +0.0390959 0.0382591 0.0140545 +-0.0935248 0.128245 0.016248 +-0.017174 0.169749 -0.0215263 +-0.00210217 0.035143 0.0464295 +0.00913637 0.105871 -0.0204027 +-0.0861865 0.0926674 0.00242789 +-0.0615271 0.0344278 0.0378839 +0.0506397 0.0652197 -0.00133714 +-0.0859779 0.129848 0.0487451 +-0.0269007 0.0388242 0.0362546 +0.0349035 0.0987755 -0.0125611 +-0.0895593 0.13929 0.0311867 +0.0210026 0.126515 0.0102791 +0.0155029 0.119565 0.0348769 +-0.0660877 0.178333 -0.0536421 +-0.0134986 0.0911752 0.0564813 +-0.0462738 0.0671086 0.039469 +-0.0691002 0.0421453 0.000699576 +0.0106377 0.0658124 0.0539651 +-0.0372457 0.0381548 -0.00680953 +-0.0415057 0.0396254 0.0430594 +-0.0658022 0.0335619 0.00426403 +-0.0549779 0.135599 -0.00339213 +-0.0654711 0.157635 -0.0545345 +-0.0699145 0.135483 0.0481625 +-0.0647392 0.157599 -0.0538703 +-0.0405119 0.125571 0.0212459 +-0.0408461 0.0957242 -0.0225993 +-0.0211708 0.123144 -0.00636628 +0.0528302 0.048039 0.0216552 +0.0292509 0.119574 0.0033793 +0.0456488 0.0861985 0.00518381 +-0.0697746 0.169428 -0.052035 +-0.0583932 0.146765 0.0331817 +-0.0748301 0.174171 -0.0395847 +0.0397534 0.0685495 0.0327941 +0.0603506 0.0581587 0.0121666 +-0.0615125 0.0729203 0.0397926 +0.0320567 0.106099 0.0342281 +0.0259569 0.0632491 0.0444844 +-0.017781 0.12071 -0.00976707 +-0.00292868 0.129815 0.0244395 +0.042563 0.0650705 0.0275619 +0.051394 0.0726569 0.00804397 +-0.0147356 0.124887 0.0290085 +0.0124993 0.116805 0.0367613 +-0.0095857 0.128017 -0.00170998 +-0.0353912 0.0475494 -0.0206462 +-0.0197639 0.0714243 -0.0385337 +-0.0646745 0.0721957 -0.0143162 +-0.0418918 0.129001 0.00740866 +-0.0217734 0.0713925 -0.0382795 +-0.0493632 0.1301 -0.00139208 +0.0232238 0.0822541 0.0494986 +0.0449291 0.081953 0.02316 +0.0595997 0.0567108 0.0101713 +-0.0496185 0.140151 0.0144011 +-0.0524988 0.102874 0.0411998 +0.0342709 0.0876121 0.0408726 +-0.0295799 0.174217 -0.00600797 +-0.0251232 0.165382 -0.00841584 +0.0176002 0.124344 -0.00401113 +0.054323 0.064171 -0.000208879 +-0.0129906 0.0568055 0.0517595 +-0.0751884 0.153035 0.033144 +0.0124885 0.114028 0.0382457 +0.0104651 0.0444795 0.0447526 +-0.033472 0.124985 -0.00213286 +-0.0519318 0.0352921 -0.0124585 +-0.0621937 0.156854 -0.0175927 +-0.0755066 0.11755 0.0524265 +-0.0660809 0.135405 0.0431027 +0.0020291 0.0342762 0.0137843 +0.0320171 0.111398 0.0306261 +-0.0685791 0.147786 -0.0311476 +0.0139278 0.129741 0.0148027 +-0.075709 0.170829 -0.032719 +-0.0241819 0.175647 -0.0202251 +-0.0729646 0.147133 -0.0208616 +-0.0588824 0.0997395 -0.0190365 +-0.0396703 0.036174 -0.00733977 +-0.0195581 0.181635 -0.0160858 +-0.0449923 0.0381195 -0.0222607 +-0.0298707 0.101527 -0.0228594 +-0.0447239 0.169659 -0.000473292 +-0.0547075 0.153861 0.0184094 +-0.00344803 0.111769 -0.0204187 +-0.048864 0.162635 -0.0057974 +-0.0837218 0.154141 0.0154269 +-0.0709606 0.172226 -0.0520527 +-0.000498029 0.0505184 0.0529377 +-0.0916834 0.116094 0.0407438 +0.029535 0.0987313 -0.0165204 +-0.0649388 0.16711 -0.0315896 +-0.00669968 0.0599043 -0.0346663 +-0.0086066 0.042026 -0.0258639 +0.0380982 0.0589726 0.0320786 +0.0284966 0.0768217 0.0447581 +-0.0365356 0.155076 0.00317988 +0.0173692 0.0476632 -0.0235115 +0.0152466 0.0765161 -0.0298116 +-0.061679 0.175513 -0.061381 +-0.03626 0.0434916 0.0442696 +0.0033481 0.0346494 0.040814 +-0.0708559 0.177779 -0.0481346 +-0.0522853 0.153955 0.0120432 +-0.00577511 0.0770351 -0.037534 +-0.0279795 0.0577645 -0.0254 +-0.0474968 0.101477 0.0417865 +0.0418115 0.0872841 -0.00879032 +-0.0272728 0.0383881 -0.00686007 +-0.0828517 0.110648 0.028886 +-0.0677301 0.181168 -0.057983 +-0.0339959 0.0752105 -0.0234884 +0.0227878 0.0350417 0.0227582 +-0.0132511 0.177151 -0.0280569 +-0.0662758 0.159515 -0.0565111 +-0.0759663 0.179251 -0.0520449 +0.0494532 0.0710682 0.00472592 +-0.0158055 0.0931896 -0.0348885 +0.0506418 0.0475027 0.0012667 +-0.0220809 0.0348313 0.0494485 +-0.0681005 0.179488 -0.0529195 +-0.0457387 0.0767861 -0.0183415 +-0.0849611 0.0883696 0.0278927 +0.0410895 0.0670315 0.0294468 +0.0123862 0.0342845 -0.0119874 +-0.0861176 0.152173 0.0250218 +0.00146529 0.0341167 -0.0177588 +-0.0847663 0.132585 0.0488829 +0.041918 0.0732584 -0.00676718 +-0.0704834 0.174975 -0.0436743 +0.0101806 0.114501 -0.0173735 +-0.0274005 0.0647434 -0.0304718 +0.00306398 0.0374048 0.023868 +-0.0908043 0.122683 0.00627651 +-0.0126271 0.0337462 -0.0239473 +0.0294467 0.0623083 -0.0198501 +-0.031353 0.158667 -0.0125849 +-0.0600161 0.129661 -0.00742185 +0.0141451 0.0740257 0.0538731 +0.0348792 0.0378052 0.00236551 +-0.0223477 0.16248 -0.006155 +0.0184989 0.11258 0.037522 +-0.0107925 0.18028 -0.0267448 +0.0112772 0.0752122 -0.0313695 +-0.0481785 0.0341964 0.00728185 +-0.0564997 0.107064 0.0398466 +-0.0510086 0.119975 -0.0128249 +-0.0142596 0.175663 -0.0267921 +-0.028881 0.124884 0.00195054 +-0.0744184 0.069256 0.0261761 +-0.0527672 0.0812315 -0.0212685 +0.0424296 0.0696684 0.0278335 +-0.0272214 0.163934 -0.00616346 +0.0566888 0.0635446 0.0256358 +0.0446243 0.0959671 0.00617079 +-0.0160443 0.174209 -0.0181164 +-0.0310058 0.156198 -0.0100049 +-0.039513 0.166742 0.00312951 +-0.0651923 0.176525 -0.0608469 +-0.0649089 0.110873 0.0375872 +-0.0545067 0.0904158 0.0449797 +0.0328041 0.0682575 -0.0177764 +0.0296649 0.110072 0.0343033 +-0.00848516 0.121007 0.0363393 +-0.0284943 0.0674472 0.03888 +0.0207654 0.126697 0.0144664 +-0.0231479 0.0919482 0.0509374 +-0.0105985 0.0406145 -0.0262787 +0.0525369 0.0651172 0.0279377 +-0.0709498 0.165209 -0.0469921 +0.0101258 0.125306 -0.00703851 +-0.0198334 0.107697 -0.0220521 +0.0228667 0.107306 -0.0156684 +0.0410305 0.0422896 -0.000687891 +-0.0687631 0.080836 -0.0170666 +-0.0685062 0.142066 -0.00982847 +-0.0288706 0.171229 -0.00855169 +-0.0870246 0.129415 0.000309032 +-0.0367401 0.0754253 -0.0187666 +-0.0231137 0.159172 -0.011899 +-0.0445 0.113887 0.0346508 +-0.0617979 0.154608 0.0289232 +0.0322191 0.117688 0.00875184 +0.00258681 0.125467 0.0322572 +-0.0668846 0.117985 -0.00889164 +-0.0560239 0.144237 -0.00161522 +-0.0939473 0.122782 0.0142819 +-0.057663 0.155278 0.0187721 +-0.0653495 0.0459059 0.00467835 +-0.0838817 0.150077 0.00420446 +-0.0574972 0.100168 0.0430053 +0.0447715 0.070791 0.0233171 +0.0114258 0.129163 0.0238841 +-0.0415072 0.0605699 0.0406995 +-0.0495023 0.0862453 0.0455995 +-0.0309567 0.166794 -0.00630909 +-0.0310964 0.125815 0.0157855 +0.0577493 0.0579199 0.00320063 +-0.00748502 0.105882 0.0440003 +-0.0594987 0.0932573 0.0451741 +-0.0584823 0.080492 0.0436889 +0.0565518 0.0722252 0.0100192 +-0.0154726 0.123613 0.0307813 +-0.017794 0.0799068 -0.038901 +-0.0670193 0.0901061 0.04379 +-0.0506534 0.0619401 -0.0109597 +-0.0284985 0.0631152 0.0376198 +0.0405765 0.0793262 0.0323176 +0.0350622 0.0909926 -0.0162992 +-0.0679473 0.136882 0.0457212 +-0.0626008 0.160001 -0.0205855 +0.0143086 0.0623633 -0.0295361 +0.00349883 0.0605728 0.0559342 +0.0235231 0.0943993 -0.0219282 +0.0425314 0.0623712 0.0287546 +-0.0352518 0.156597 0.00331287 +-0.0807586 0.0950245 -0.00854945 +-0.085825 0.114595 0.0464925 +0.0420636 0.0915328 -0.00679501 +-0.0369296 0.0455099 -0.0248207 +-0.0610521 0.0460525 0.00962048 +-0.0476199 0.057734 -0.011287 +-0.0595357 0.0400627 -0.00844467 +-0.0604419 0.114971 -0.0134731 +-0.016194 0.128088 0.0051496 +-0.0365847 0.122192 -0.00920846 +-0.0464591 0.0345029 0.0305523 +-0.0644598 0.0432795 0.035714 +-0.0241405 0.168248 -0.0186857 +-0.0743787 0.145821 -0.0108474 +0.0173308 0.0566344 -0.0283721 +-0.0548894 0.136747 0.0311423 +-0.0579822 0.0343384 0.0317603 +-0.0262958 0.0634474 0.0394208 +-0.0183558 0.127798 0.00725695 +-0.0750251 0.152273 0.0347437 +-0.0648702 0.0334576 -0.000853911 +-0.0610584 0.138406 -0.00654552 +0.0224766 0.0920198 0.0478397 +0.044722 0.0945895 0.0131657 +-0.0873336 0.126682 -0.000726608 +-0.0880434 0.125329 0.00027907 +-0.0364509 0.174337 -0.00256774 +-0.053938 0.138144 0.0289679 +-0.00559979 0.114688 -0.0175182 +-0.00635915 0.0931082 -0.0347376 +-0.0861558 0.100815 0.00240792 +0.0184724 0.0934238 0.0476306 +-0.000245612 0.0350857 0.0144067 +-0.0547132 0.153591 0.0213081 +0.0445999 0.0931357 0.00219092 +-0.0649995 0.134056 -0.00807462 +-0.0360819 0.0351453 0.0214963 +0.0444988 0.0569914 0.0320977 +-0.0597101 0.0723346 -0.0163812 +-0.0468406 0.0985145 -0.021833 +-0.0397006 0.0666136 -0.0148744 +-0.0847301 0.0966436 -0.00257686 +-0.00176079 0.0741065 -0.0358743 +-0.0671962 0.0736816 0.0379285 +-0.0347085 0.169768 -0.00115359 +-0.0213445 0.0916844 -0.035421 +-0.0625559 0.150623 -0.0205762 +0.055585 0.0535517 0.00220948 +-0.0136228 0.128915 0.00609854 +-0.0654189 0.16417 -0.0217177 +-0.0613445 0.0434338 0.042412 +-0.0144732 0.096429 0.0522087 +-0.0707666 0.171245 -0.0323024 +-0.0713393 0.134067 0.0496215 +-0.0458732 0.104238 -0.0208285 +-0.0551833 0.07213 0.0401196 +0.0364832 0.0422343 0.0281778 +-0.0336503 0.0577563 -0.0112696 +-0.0810791 0.117571 0.0486733 +0.044724 0.0588042 -0.00496063 +-0.0568258 0.120959 -0.0097287 +-0.0257724 0.0797722 -0.0374309 +-0.0800654 0.121688 0.0502425 +-0.0569634 0.0335771 0.00964709 +-0.00939357 0.0354504 -0.0173725 +0.046214 0.0637709 -0.0019104 +0.00900714 0.0383394 0.0314785 +0.0457806 0.0890199 0.00717609 +-0.0524951 0.0747684 0.0423102 +0.0334058 0.0446363 -0.00548551 +-0.063072 0.0346346 0.0391063 +0.0073001 0.0907939 -0.0322622 +0.026147 0.0875952 0.0467145 +0.0130004 0.0419341 0.0448362 +0.0263999 0.0348437 0.0163952 +-0.0056357 0.0466988 -0.0297075 +-0.000747471 0.0987058 -0.0265343 +-0.0688283 0.0966095 -0.0161149 +0.00300687 0.0991424 0.049182 +-0.0154864 0.0814755 0.0571167 +-0.074497 0.120396 0.0533632 +-0.0748436 0.114924 -0.0060803 +-0.0168418 0.107354 -0.0217003 +-0.0459377 0.145792 0.000601046 +-0.0487849 0.0715634 0.0402545 +-0.0581679 0.154986 0.022946 +0.044397 0.0945546 0.0171571 +-0.0810292 0.0940061 0.0336494 +0.032953 0.0994589 0.0373001 +-0.0181454 0.0347978 0.0451006 +-0.0487902 0.0855221 -0.0217064 +-0.0776336 0.147268 -0.0038625 +-0.0891133 0.14743 0.0101992 +0.0134061 0.0767276 0.0545687 +-0.0451757 0.14769 0.00639824 +0.0340849 0.114614 0.00225198 +-0.0494981 0.105619 0.0396922 +-0.0291786 0.175627 -0.0167894 +0.0516271 0.0736236 0.0155669 +-0.0333156 0.0365169 -0.0174853 +-0.00225297 0.0388793 -0.00041461 +-0.0884617 0.14585 0.0310303 +-0.087958 0.12395 0.000268768 +-0.0637456 0.154158 0.00252195 +-0.0680618 0.0606588 0.013756 +0.00946449 0.0616923 0.0540126 +-0.00707285 0.12974 0.0027455 +-0.0190315 0.0389958 0.035931 +-0.00971778 0.0670387 -0.0360005 +0.0406669 0.102735 -0.000789188 +-0.085128 0.0845897 0.0244984 +0.00248558 0.111415 0.0422707 +0.00320889 0.0824712 -0.0345101 +-0.0467495 0.117966 -0.0147678 +0.0250223 0.110364 -0.0129553 +-0.044347 0.146755 0.000226372 +-0.0616655 0.144455 -0.00523057 +0.000474346 0.0977989 0.0522897 +0.0207702 0.036271 0.0339301 +0.0400498 0.0387801 0.0063192 +-0.0199993 0.185902 -0.0200623 +0.018427 0.0917703 -0.0251723 +-0.0354635 0.0860418 0.0431394 +-0.0475855 0.0518372 -0.00929506 +0.0429858 0.0691484 -0.00178958 +-0.0244489 0.052187 0.0413714 +-0.0500639 0.141673 0.0143962 +0.0144323 0.129298 0.0192627 +-0.0561449 0.04824 0.0383427 +0.0358665 0.0404526 0.0260172 +-0.0213253 0.0444675 0.0531428 +-0.0609289 0.112535 -0.0147528 +-0.0699845 0.139935 -0.00772138 +-0.0748631 0.106362 -0.00967707 +-0.0346028 0.0344648 0.0366099 +-0.0425153 0.118993 -0.0138741 +0.0153464 0.0537553 -0.0279934 +-0.0719831 0.170733 -0.0298702 +0.0460203 0.0848226 0.00718276 +-0.0760167 0.15688 -0.0219252 +-0.010059 0.109235 -0.0217082 +0.0010095 0.0346721 0.0439005 +-0.0198215 0.0841085 -0.0387066 +-0.020574 0.115387 -0.0161841 +-0.00203672 0.0345877 -0.0169988 +-0.0424883 0.0846004 0.0426298 +-0.0313435 0.0707327 -0.0274782 +-0.0490828 0.13552 0.0213898 +-0.0481015 0.157608 -0.00698963 +-0.0579692 0.0408152 0.0462221 +-0.0682257 0.127075 0.0505767 +-0.0434944 0.0733818 0.0425428 +-0.0905017 0.114314 0.0223543 +0.0242723 0.0647548 -0.0237835 +0.050682 0.0731977 0.010749 +0.0604945 0.0595549 0.015166 +-0.0490636 0.126668 -0.00583208 +0.00647697 0.0459611 0.0484012 +0.0279051 0.0395203 0.0288639 +-0.0314585 0.0335695 -0.0237257 +-0.0485262 0.0344313 0.0301756 +-0.0386172 0.0505956 -0.0110053 +-0.000657388 0.0511382 -0.0308268 +-0.0630072 0.0689485 0.0358468 +0.0316541 0.0351286 0.0116939 +-0.0517065 0.163863 0.00241874 +-0.0634695 0.0445577 0.0356919 +-0.0832566 0.147367 0.0370632 +0.02323 0.0762417 -0.0259573 +-0.0735922 0.0833012 0.0392631 +-0.00431736 0.130694 0.00665461 +-0.021599 0.0382532 0.00358087 +0.0465019 0.0778624 0.0111839 +0.0604451 0.0678689 0.0141533 +0.0213931 0.0489728 -0.0223035 +-0.0630692 0.153725 -0.0105955 +-0.0236572 0.0507797 -0.028024 +0.00430293 0.0625774 -0.0325544 +0.0421362 0.0845969 0.0293292 +0.010951 0.0562864 0.05258 +0.0369412 0.107321 0.0271722 +0.0502975 0.0560957 -0.00457555 +0.0410804 0.10284 0.0191681 +0.0102664 0.0739304 0.0552835 +-0.0397448 0.172952 -0.00234724 +-0.0829232 0.125068 -0.00442148 +-0.0284893 0.0903534 -0.0305816 +-0.0616586 0.172539 -0.056588 +0.0182369 0.0749953 -0.0283712 +-0.0168303 0.0382802 0.00815469 +0.0453551 0.0805854 0.0221747 +-0.0718567 0.0701514 0.0311867 +-0.0814119 0.152728 0.0295837 +0.0555021 0.0730293 0.0140468 +0.00650419 0.123782 0.0339598 +0.0422452 0.0986357 -0.000817871 +-0.072904 0.112135 -0.00834183 +-0.00786498 0.13001 0.00533674 +-0.0614753 0.15686 -0.0265876 +-0.0234913 0.103006 0.0434545 +-0.0093342 0.174192 -0.0247468 +0.048187 0.0717514 0.00605259 +-0.0554773 0.0820103 0.045038 +-0.091005 0.124034 0.00628346 +-0.0147917 0.0951887 -0.0329173 +-0.00125147 0.122854 0.0353 +-0.017497 0.0485942 0.047882 +0.0194854 0.0989751 0.0466096 +-0.0889579 0.0901579 0.00845534 +-0.065396 0.0605193 0.0180241 +-0.0469507 0.168415 -0.00396135 +0.0205156 0.111203 0.0377036 +-0.0928924 0.122885 0.0362699 +0.0213879 0.0686569 0.0484685 +0.0214143 0.0463213 0.0412437 +0.00882931 0.0373958 0.0286749 +0.0465562 0.0764652 0.0121829 +-0.0618529 0.153757 -0.0195806 +-0.0262234 0.119963 0.0294562 +-0.0354913 0.0889091 0.0432238 +0.037993 0.109314 0.0194453 +-0.0377299 0.0739307 -0.0178742 +-0.0184902 0.0815159 0.0575038 +-0.0314396 0.0637247 -0.0204391 +-0.0825513 0.110697 0.0307352 +-0.0728404 0.156111 0.0119063 +-0.0663982 0.164105 -0.0192035 +0.0062922 0.0654161 -0.0325779 +-0.0624759 0.0959475 0.043683 +-0.033686 0.0637452 -0.0146972 +0.0353693 0.102677 -0.0107148 +-0.0710479 0.166372 -0.0194754 +-0.059243 0.0367531 0.0461369 +-0.0908243 0.114994 0.023547 +-0.0650258 0.156351 -0.0487028 +-0.034444 0.159452 0.00265373 +0.0357616 0.0967769 -0.0118087 +0.044965 0.0903773 0.0181662 +0.0498767 0.0734333 0.0134213 +-0.031608 0.0496402 -0.0193495 +0.0404724 0.0408436 0.0229665 +-0.0473115 0.134637 0.0112388 +0.00743122 0.0352845 0.0446812 +-0.0297131 0.0509006 -0.0193584 +-0.0241845 0.177125 -0.0200954 +-0.0632603 0.157387 -0.0151607 +-0.0598965 0.0343774 0.0365453 +-0.0242309 0.0382399 0.0265535 +0.0433792 0.0972945 0.00218055 +-0.00691412 0.124317 0.0332409 +0.00451269 0.0561377 0.0533474 +-0.00250438 0.0842991 0.0575402 +-0.0903673 0.145762 0.0273033 +-0.0523714 0.143148 0.0193902 +0.0362345 0.0967824 0.0350211 +0.0264539 0.106068 0.0383874 +-0.0729303 0.131104 -0.00814819 +0.0116228 0.130194 0.0054038 +-0.0409771 0.113795 -0.0164017 +-0.0828306 0.150071 0.00319212 +-0.0676468 0.0338307 -0.00583252 +-0.0857374 0.0792227 0.0125087 +-0.0651015 0.0410328 0.0295625 +-0.0136795 0.0987823 0.0477955 +0.0258821 0.0794179 -0.0243188 +0.0449394 0.0734628 0.0226146 +-0.0694849 0.173671 -0.0550315 +0.0142482 0.127965 9.03059e-05 +0.0564285 0.0727253 0.0143999 +-0.0172735 0.180097 -0.0253788 +-0.0699136 0.162391 -0.0489495 +-0.09118 0.143373 0.022161 +-0.0644984 0.100116 0.0422372 +-0.0564709 0.0847764 0.0446514 +-0.043754 0.152254 -0.00662286 +-0.0547181 0.0708998 -0.0155975 +-0.0401471 0.163848 0.00326215 +-0.0814342 0.154656 0.0132857 +-0.0513196 0.0514695 0.0138904 +0.00680734 0.129132 0.0265205 +-0.0614938 0.0959769 0.0438595 +-0.0091676 0.171172 -0.0227371 +-0.0769695 0.154154 -0.0139015 +-0.0502302 0.126885 0.0326315 +0.00555777 0.034446 -0.000384949 +-0.0206136 0.0379294 -0.0283016 +0.00719386 0.0810104 -0.0336874 +0.0390033 0.0387188 0.0172773 +-0.0737727 0.0928414 0.040556 +-0.0829975 0.0763193 0.0155222 +0.0461381 0.0792322 0.00519228 +0.0313444 0.106098 0.0349666 +-0.0157326 0.0383302 0.0246146 +-0.0739329 0.072514 0.0322154 +-0.0287063 0.168278 -0.00832187 +-0.02709 0.0386639 -0.0126398 +-0.0689895 0.156345 -0.00130196 +-0.0622523 0.152181 -0.0215758 +-0.0408691 0.158042 0.00401656 +-0.0324935 0.0903869 0.0442776 +0.0156162 0.0904755 -0.0278196 +0.00543406 0.120555 -0.0138758 +-0.0874054 0.110457 0.012344 +-0.0534973 0.0903982 0.0447559 +-0.0007305 0.0683317 -0.0340878 +-0.0847135 0.152577 0.00925173 +0.0453586 0.0547792 -0.00610681 +-0.0513173 0.146268 0.0144074 +0.0146587 0.125796 -0.00358107 +-0.0790281 0.166651 -0.0329632 +-0.0519257 0.0563169 0.0201359 +-0.0206011 0.0382174 0.00381729 +-0.0499923 0.0342577 0.028256 +0.0222487 0.0365239 0.0303911 +-0.0762222 0.0981393 0.0371985 +-0.0381245 0.162196 -0.0129852 +-0.0462852 0.149202 0.00834502 +0.039774 0.0618507 -0.00575724 +0.0461841 0.0778325 0.00618859 +-0.0770439 0.154813 -0.0101321 +-0.0615001 0.152383 0.000341367 +-0.0665808 0.0334125 0.000644743 +-0.0212653 0.0381372 0.0218515 +-0.071123 0.111741 0.0467572 +-0.0265438 0.177186 -0.00862049 +-0.0523481 0.125498 -0.00654313 +-0.0522635 0.0343446 0.0312176 +0.0191745 0.060499 0.0487078 +-0.0855607 0.111744 0.0263451 +-0.0360977 0.156596 0.00383263 +-0.0479431 0.0356599 -0.0132734 +0.0366613 0.0821332 0.0372523 +-0.0478798 0.107016 -0.0192852 +-0.0356524 0.0460406 0.0421919 +0.00919662 0.0865327 -0.0319845 +-0.0808705 0.11922 -0.0043482 +-0.0335583 0.116878 -0.0136466 +-0.0112898 0.0395292 0.0388441 +-0.0194927 0.0814879 0.0571676 +0.0239403 0.124821 0.0127882 +-0.0444942 0.105717 0.0408954 +-0.0484929 0.162245 0.00645185 +-0.00849807 0.0801615 0.0580203 +-0.0487025 0.121311 -0.0122547 +0.00400584 0.0386131 0.0458842 +-0.00449485 0.0488681 0.0504112 +-0.0507263 0.122615 0.0336033 +-0.0801811 0.108648 -0.00360377 +0.029758 0.0352966 0.00556049 +-0.0236293 0.0665652 0.045154 +0.0470549 0.0602552 -0.00440662 +-0.059554 0.155543 0.0209921 +-0.00550703 0.0787847 0.0579843 +-0.0451509 0.0424209 -0.0143059 +-0.0674032 0.144345 -0.0161484 +-0.0621766 0.125515 0.0434733 +-0.0885651 0.0963045 0.0227197 +-0.0623911 0.154382 0.0301734 +-0.078298 0.0745267 0.0278337 +0.00377395 0.13125 0.00536065 +-0.0351573 0.0361738 0.0471926 +-0.0517432 0.0487299 0.0143843 +-0.0578034 0.0854472 -0.0211977 +0.0151488 0.10026 -0.0226403 +0.0225321 0.104677 0.0415312 +-0.0605798 0.155686 0.00466574 +-0.0891628 0.0942977 0.0214104 +0.0393896 0.106975 0.00316583 +0.00351619 0.0800296 0.056385 +0.0405703 0.105644 0.0131657 +-0.0507419 0.0753249 -0.0179378 +0.0269605 0.111014 -0.0116501 +0.0303852 0.098223 0.0405823 +0.0431361 0.0419917 0.0224684 +-0.0738026 0.1492 0.0397758 +-0.0725455 0.148857 -0.0337299 +-0.072371 0.0860632 0.0407672 +0.0158441 0.0475203 0.043749 +0.0104341 0.0346525 0.0368683 +0.0344146 0.0399125 -0.00185272 +-0.0764595 0.111219 0.0459768 +0.042138 0.101461 0.00217211 +-0.0213522 0.127058 0.00761225 +-0.0556879 0.0677603 -0.0123408 +0.00811587 0.129858 0.0241077 +-0.0637641 0.044271 -0.0022694 +-0.0104962 0.0897854 0.05669 +-0.0147283 0.0657495 -0.0376113 +-0.0881508 0.144556 0.0335371 +-0.0807759 0.0773963 -0.00349851 +-0.0388999 0.0345526 0.0391301 +0.0239365 0.0972468 -0.020928 +-0.0559996 0.126683 -0.00642409 +0.015329 0.118191 -0.013375 +-0.0894904 0.112329 0.0187618 +-0.0771865 0.153815 0.000183792 +0.00297917 0.0389607 -0.010651 +-0.0571826 0.122684 0.0401181 +0.0453844 0.091806 0.0121583 +-0.0908751 0.135104 0.0182068 +0.0216273 0.125269 0.00337714 +0.0572674 0.0722428 0.0147076 +-0.0417782 0.0473939 -0.012205 +-0.0658407 0.0938498 -0.0179236 +0.0102801 0.12364 -0.00922404 +0.00517588 0.113065 -0.0197995 +0.0139965 0.0343089 -0.00230394 +-0.0757024 0.160453 -0.0116926 +-0.0694905 0.10551 0.0380162 +0.0123252 0.0595168 -0.0292981 +0.00242842 0.0916453 -0.033159 +0.0363451 0.0519755 -0.00662669 +-0.0899083 0.121615 0.0458595 +-0.0569713 0.125238 -0.00711806 +-0.0616474 0.0458147 0.0384356 +-0.0816857 0.104685 0.0297488 +0.0417455 0.0760505 -0.00673474 +-0.0249373 0.175681 -0.0116247 +0.0233583 0.0592365 -0.0255115 +0.0296356 0.107455 0.0360045 +-0.0171544 0.0383178 0.00624466 +-0.0338857 0.12324 -0.00632922 +-0.0295434 0.168268 -0.00777595 +0.0237606 0.105983 -0.0162548 +-0.0636907 0.124164 0.0466174 +0.0299589 0.119939 0.0150519 +0.0387947 0.101959 0.0281808 +0.0346979 0.108688 0.0292348 +-0.00481267 0.108148 -0.0225124 +-0.0921162 0.126957 0.038246 +-0.0708767 0.0346286 -0.00100073 +-0.0434981 0.0803632 0.0422528 +-0.00776303 0.0742012 -0.03739 +-0.0164203 0.103082 -0.0232082 +-0.0368601 0.0336856 -0.0211611 +-0.0794788 0.13585 0.0504167 +-0.0622192 0.166249 -0.0495907 +-0.0632785 0.0347611 0.0232648 +-0.0678048 0.17421 -0.0455841 +-0.0292876 0.113893 -0.0165575 +-0.0116236 0.0451107 -0.0281433 +-0.0853661 0.0910995 0.0281927 +0.0152572 0.124805 0.0295869 +-0.0730257 0.141351 -0.00730576 +-0.0694123 0.111827 0.045291 +-0.048008 0.0642705 0.0370013 +-0.000600787 0.0405329 -0.0249772 +-0.0932444 0.124186 0.027283 +-0.050904 0.119772 0.0333476 +-0.00274076 0.0726647 -0.0356738 +-0.0635974 0.151927 -0.0324488 +0.025021 0.085012 -0.0240764 +-0.0749218 0.0661459 0.00857247 +0.0115292 0.119123 0.0361473 +0.0363972 0.0461521 -0.00588406 +0.0385505 0.0378908 0.0124577 +-0.0599745 0.14101 0.03437 +0.00637279 0.049483 -0.0283693 +-0.0896361 0.0969931 0.0144152 +0.0291455 0.0491758 0.0366259 +-0.013551 0.0588296 0.0525443 +-0.0381244 0.127641 0.0146907 +-0.00888364 0.107351 -0.0226177 +-0.0497129 0.165582 0.00102101 +0.0449595 0.0889486 0.000172046 +-0.0339085 0.177047 -0.0109944 +-0.0278445 0.0535534 0.0370258 +-0.0334735 0.0337737 0.0142583 +-0.0926366 0.121498 0.0312794 +-0.0298476 0.105726 -0.0219826 +-0.0771466 0.113816 0.049094 +0.0166749 0.0347919 -0.00596505 +-0.0767718 0.0716181 -0.00247133 +-0.0788159 0.0818529 0.0346403 +-0.0751616 0.0715622 0.0292788 +-0.0629391 0.12384 -0.00881569 +0.0155707 0.100538 -0.0224673 +0.0252284 0.116758 -0.00782512 +0.00112155 0.035712 0.0195623 +-0.0623204 0.0448503 0.0109236 +0.0577561 0.0565381 0.00419435 +-0.000697034 0.0626894 -0.03411 +-0.0739419 0.129646 -0.00820737 +-0.0552142 0.155428 0.0123927 +-0.0749344 0.128178 -0.00819506 +0.0183304 0.0579992 -0.0277502 +-0.0259227 0.123138 -0.0042558 +0.0130981 0.124462 0.0316831 +-0.0723893 0.172498 -0.0357772 +-0.015947 0.124632 0.0285893 +-0.0583387 0.0706756 0.0389009 +-0.0347052 0.0384254 -0.0102399 +-0.0149752 0.125602 0.0274605 +-0.0153278 0.0389782 0.0349161 +-0.0482032 0.131003 0.0267578 +0.0538412 0.0539826 0.0267309 +-0.0845696 0.12714 0.0502672 +0.0343613 0.111866 -0.00251995 +-0.0679623 0.16261 -0.0140168 +0.0251056 0.0902557 0.0469821 +-0.0373144 0.033633 0.00457247 +0.00149673 0.110036 0.0425823 +-0.0886162 0.100967 0.00940891 +-0.0734724 0.155984 0.0233451 +0.00740252 0.0402134 0.0455033 +0.0454345 0.0918112 0.0111626 +0.0252284 0.0420597 0.0372934 +0.026048 0.117275 -0.00637096 +-0.0768401 0.178514 -0.0509284 +-0.0719676 0.138437 -0.00730592 +0.00750673 0.0758763 0.0563548 +-0.0485658 0.0404434 -0.0115683 +-0.0402074 0.168164 -0.0113973 +-0.044494 0.0987314 0.042632 +-0.0530679 0.140053 0.026392 +0.0521064 0.0510719 0.0259326 +-0.0545309 0.0352136 0.0455493 +-0.0717133 0.0715245 -0.00752229 +-0.0899797 0.128138 0.00527223 +0.0045004 0.121001 0.0358516 +-0.0641393 0.143504 -0.0105249 +-0.0769685 0.156212 -0.0102521 +-0.0645952 0.155196 -0.0084031 +0.0323835 0.0460752 0.0307026 +-0.023205 0.178608 -0.0204967 +-0.042033 0.113762 -0.0163433 +-0.0512269 0.150712 0.0135153 +0.00120164 0.0839391 -0.0353946 +0.0300054 0.104778 0.0365239 +-0.00649214 0.0965537 0.0536631 +-0.0289152 0.0846603 -0.0346291 +0.0207024 0.0373647 0.039246 +-0.0386568 0.0577511 -0.0111914 +-0.0605191 0.153857 0.0308432 +0.0410047 0.0395957 0.0043142 +-0.0837262 0.151367 0.00522149 +-0.0378805 0.108506 -0.019759 +-0.0169176 0.183111 -0.0193016 +-0.0614849 0.0946016 0.0445824 +0.0332816 0.116574 0.0106008 +-0.0378618 0.101418 -0.0215553 +0.0383745 0.038179 0.01581 +0.010493 0.111264 0.0393941 +0.0353685 0.0600237 -0.0127796 +-0.0203175 0.0933679 0.052311 +-0.0434938 0.0619471 0.0402773 +-0.0393599 0.0418158 -0.0263353 +-0.0588856 0.105471 -0.0181522 +-0.0278953 0.124828 0.00229374 +-0.0894349 0.136561 0.0381888 +-0.0455406 0.124353 -0.00945534 +-0.0850289 0.111596 0.00326083 +0.01399 0.106595 -0.01887 +-0.0765357 0.0692333 0.0204809 +-0.0741239 0.165568 -0.0191297 +-0.056116 0.131133 0.036427 +-0.0715838 0.158191 -0.0409255 +-0.077037 0.111295 -0.0046823 +-0.0135016 0.0573891 0.0517499 +0.0374899 0.0469458 0.0313688 +-0.0297919 0.108873 -0.0192723 +-0.0616758 0.113831 0.0370124 +-0.0157188 0.0628375 -0.0366012 +-0.0879795 0.148554 0.029057 +-0.0890892 0.0955882 0.00942496 +-0.0709327 0.178806 -0.0496057 +0.0454967 0.0611109 0.0306935 +0.0193158 0.0835035 0.0508805 +0.000580692 0.131584 0.0113306 +-0.0615895 0.155312 -0.0215829 +-0.0134922 0.122339 0.0335983 +0.0458248 0.0806172 0.0201703 +-0.0225646 0.0983245 -0.0242201 +-0.0682478 0.066271 0.0282875 +0.0302092 0.117283 0.0265434 +-0.0829482 0.128017 -0.00457928 +-0.0715343 0.141411 0.0464325 +-0.0800761 0.0936246 -0.00957758 +-0.0851808 0.153525 0.0149377 +-0.0865771 0.124349 0.048115 +-0.0221188 0.100222 -0.0241961 +0.0224909 0.111137 0.037371 +0.00736705 0.0494733 -0.028237 +0.0432386 0.0750761 0.0273062 +-0.0564476 0.153922 0.0264803 +-0.0288608 0.0448354 -0.0281934 +-0.0776003 0.156937 -0.0149108 +-0.0784376 0.171472 -0.0389273 +-0.0178474 0.12806 0.016159 +-0.0284556 0.0472262 0.0488083 +-0.0677451 0.0629578 0.0224748 +-0.0567391 0.0576068 -0.000420382 +-0.0769537 0.132513 -0.00657383 +-0.0837476 0.0952109 -0.00455405 +-0.0427254 0.0358312 -0.0275925 +0.00623069 0.0782309 -0.0341321 +-0.0758642 0.117897 -0.00698249 +-0.0903736 0.13787 0.0221843 +-0.027962 0.155009 -0.00579987 +-0.0193391 0.0386082 -0.00732295 +-0.0237931 0.0698259 -0.0366341 +-0.015124 0.037267 -0.0266656 +0.0113671 0.0479427 -0.0268055 +0.0141489 0.0347135 0.0249225 +-0.0669549 0.160975 -0.0568649 +0.0208979 0.0359371 0.0087849 +-0.0570669 0.0493259 -0.00137722 +-0.0186112 0.0386738 -0.00909396 +-0.0055195 0.0443362 0.047543 +-0.0714237 0.153981 -0.0448933 +0.0119572 0.125728 -0.00550935 +-0.0310683 0.0679104 -0.0254551 +0.0514754 0.0531199 -0.00283685 +0.0135274 0.12988 0.0160733 +-0.0728856 0.148047 -0.0249504 +-0.0233454 0.122752 0.0259903 +-0.0578948 0.0983776 -0.0200563 +-0.0203263 0.0825295 0.0568715 +-0.0643532 0.142586 -0.00864957 +-0.0793976 0.151048 0.0347829 +0.0356609 0.104701 0.030636 +0.0063888 0.115364 -0.0182909 +-0.0289964 0.0383539 -0.00532847 +-0.0834239 0.0965619 -0.00458039 +0.019508 0.109842 0.0390589 +-0.0767379 0.10491 0.0348158 +-0.0825915 0.143398 0.0421649 +0.0182147 0.0834619 -0.0281698 +-0.0633435 0.060722 0.00207171 +0.0428335 0.076148 -0.00478426 +-0.0724349 0.0644357 0.0131399 +-0.0114637 0.165492 -0.0149909 +-0.0493961 0.033823 0.00737414 +0.0502518 0.0446339 0.0182039 +-0.0439305 0.0432632 0.0429545 +-0.0713305 0.0628284 0.00935991 +-0.0276378 0.158958 -0.0125395 +0.0600492 0.0581198 0.0161748 +0.00134506 0.0511101 -0.0304682 +-0.0692332 0.158118 -0.0519432 +-0.0133594 0.127978 0.0236019 +0.0292021 0.0619142 0.0421314 +-0.0667582 0.180263 -0.0553199 +-0.0197539 0.0671131 -0.0375162 +-0.0704746 0.040884 0.00781861 +-0.049499 0.112564 0.0357174 +-0.0322502 0.0367926 -0.0305484 +-0.00789583 0.129197 0.00105287 +-0.016169 0.117727 -0.0146898 +0.0295964 0.0580473 -0.0178274 +-0.0883598 0.0874311 0.00547496 +-0.0274913 0.101587 0.0432231 +-0.0768992 0.155831 0.0192356 +-0.0364902 0.0634253 0.0412069 +-0.0388025 0.125966 -0.00521606 +0.0196905 0.0550135 0.047657 +0.0571135 0.071717 0.0176058 +-0.0064991 0.0952675 0.0547927 +0.0174901 0.0346463 0.0220409 +-0.0024963 0.10305 0.0439671 +-0.0184804 0.0543192 0.0487134 +-0.0334418 0.0335662 -0.0297364 +-0.0620472 0.176838 -0.0608311 +-0.0308715 0.0522855 0.0371048 +-0.0367079 0.0695483 -0.0163464 +0.0158791 0.123986 0.0298499 +-0.0320536 0.0356449 0.0500425 +-0.0493943 0.14168 0.0103932 +-0.0558858 0.106922 -0.0182628 +0.059454 0.0647075 0.0208869 +0.0152596 0.125955 0.0281714 +0.038478 0.0980354 0.0312187 +-0.0744916 0.146991 0.0423999 +-0.0846211 0.0992422 0.0286106 +-0.0661191 0.156294 0.0171964 +-0.0794888 0.111206 0.0453002 +0.00519891 0.0880579 -0.0334439 +0.0153315 0.0346194 -0.0136599 +0.0395267 0.0632302 -0.00776648 +-0.0463407 0.0629206 0.0382092 +-0.0514201 0.121192 0.0343754 +-0.0528867 0.0334295 0.0213081 +-0.062446 0.163101 -0.0455941 +-0.0770308 0.167319 -0.027484 +-0.041999 0.126936 -0.00419358 +0.0289857 0.090239 0.0438092 +-0.0634397 0.158343 -0.0445972 +0.00692319 0.0630369 0.0555875 +-0.0294344 0.0381755 0.00387704 +0.0228628 0.0351973 0.0171792 +-0.0738758 0.0993275 -0.0132564 +-0.0668982 0.151542 -0.0415298 +-0.0629724 0.133897 0.038809 +-0.0928035 0.121507 0.0322842 +0.0305387 0.0609912 -0.0187852 +0.0385799 0.0739884 0.0346445 +-0.0814052 0.08555 -0.00656718 +-0.0621323 0.0602572 0.0206983 +-0.0294013 0.0804353 -0.034602 +0.0164763 0.0348375 -0.0136598 +-0.0659203 0.122383 -0.00896938 +-0.0328324 0.0929676 -0.0240794 +0.000521824 0.0801146 0.0573693 +0.0221547 0.0979182 -0.0216266 +-0.0649149 0.0392337 0.0390271 +0.0351689 0.0928995 0.0387113 +-0.0125327 0.0502379 0.050201 +-0.05553 0.12546 -0.00656458 +0.0330446 0.111446 -0.00610948 +0.0255618 0.120425 0.027665 +-0.0243325 0.126263 0.00798048 +-0.0654853 0.0944999 0.0429585 +-0.0478356 0.0970782 -0.0220591 +-0.0332116 0.0851655 -0.0254848 +0.00641089 0.036109 -0.0234066 +-0.0192798 0.0610993 0.0494354 +0.0363164 0.11089 0.0231265 +-0.0705311 0.0972485 0.0414142 +-0.0514267 0.135712 0.0273837 +-0.0564984 0.0918565 0.0453856 +-0.042499 0.113906 0.034677 +-0.0717955 0.156396 0.0195489 +-0.0215446 0.0942792 -0.0320343 +-0.0246821 0.177174 -0.0112336 +0.0177118 0.0944604 -0.0240064 +-0.0881735 0.15196 0.0139234 +-0.000296991 0.0392472 -0.00781836 +-0.00248723 0.115552 0.0407434 +-0.0147779 0.0756914 -0.0387415 +0.0503819 0.0717878 0.00597587 +-0.0396993 0.117276 -0.0140617 +-0.0628784 0.16149 -0.0515871 +-0.0769868 0.0713943 0.0255408 +-0.01852 0.115493 0.0376203 +-0.0632135 0.155458 0.00808821 +-0.0244921 0.103004 0.0433541 +-0.0392444 0.0481623 -0.0129943 +0.0317796 0.0647744 0.0406274 +-0.00516147 0.100957 0.0442706 +-0.0196118 0.040807 -0.0284935 +-0.0288146 0.0436325 0.0510094 +-0.0690473 0.0727409 0.0365464 +-0.0478629 0.125952 -0.00709772 +-0.0456346 0.123874 0.0250844 +-0.0214969 0.0498836 0.0466158 +0.0515378 0.0461489 0.00621743 +0.0472621 0.0627303 -0.00287883 +-0.0738666 0.0846755 0.0394915 +0.0247439 0.0490967 0.0390469 +0.0150281 0.097439 -0.0231662 +0.0456884 0.0904192 0.00716979 +0.0173787 0.046209 -0.0233857 +-0.00349533 0.123738 0.0342998 +-0.0905223 0.128294 0.0420009 +-0.0733752 0.0741466 0.034437 +-0.0106209 0.130105 0.0129711 +-0.0754549 0.158227 -0.0249553 +-0.0125993 0.0922824 -0.0359459 +-0.064348 0.0611447 0.0212332 +-0.0246221 0.0450443 -0.0281165 +-0.0383306 0.0379343 0.0437226 +-0.0423655 0.110099 -0.0185262 +-0.0750214 0.166563 -0.0400315 +-0.0338231 0.0915286 -0.0241849 +-0.0857793 0.088721 -0.000547834 +-0.00485752 0.103786 0.0439754 +-0.0334914 0.0960174 0.044365 +-0.040497 0.0705056 0.0418211 +0.0309495 0.065969 0.041175 +-0.0649024 0.119454 -0.00881631 +-0.0326689 0.0382268 0.0507498 +0.0366581 0.0727136 0.0371657 +0.0102886 0.13098 0.0134608 +0.0549839 0.0534895 0.00121219 +0.0229081 0.0608908 -0.0255785 +-0.0578484 0.0576892 0.00460939 +-0.0380707 0.123893 0.0251235 +0.0425051 0.049941 0.0324381 +-0.0208164 0.0797246 0.0560382 +-0.0600611 0.155861 0.0164593 +0.0128031 0.126304 -0.00413421 +0.0254584 0.0383883 -0.00303811 +-0.0782251 0.104799 0.0333593 +-0.011635 0.0466548 -0.0295721 +-0.0227746 0.0968676 -0.024693 +0.00330234 0.0626197 -0.0330565 +-0.00750217 0.0787518 0.0577101 +-0.043485 0.109867 0.0381531 +0.000280959 0.0655552 -0.0344559 +0.0303619 0.0982175 -0.0159971 +-0.0671228 0.150867 0.0375155 +-0.0251523 0.0635221 0.0411049 +-0.0732036 0.147141 -0.0198634 +-0.0403541 0.121097 -0.0120881 +0.0144177 0.0388354 -0.0218485 +-0.0912331 0.114706 0.0382141 +0.0261502 0.120654 0.0264581 +-0.0131682 0.0974746 0.0509922 +-0.0718669 0.115007 -0.00776782 +0.0425779 0.0929869 -0.00379718 +-0.0228308 0.0881946 -0.0369029 +-0.00860718 0.0361712 0.0494902 +-0.0685057 0.159542 -0.0539539 +-0.0864902 0.103559 0.00540359 +-0.0697818 0.16064 -0.00887941 +-0.05157 0.0657725 0.0357523 +0.036411 0.0430004 -0.00393346 +-0.0617308 0.0752409 -0.0175405 +-0.0384866 0.112537 0.0353486 +0.0446565 0.076299 -0.00080692 +-0.0444716 0.165339 -0.00887164 +0.0234256 0.0994865 0.0445818 +0.0411691 0.0899632 0.029736 +-0.0188353 0.12777 0.00853266 +-0.079023 0.172207 -0.0429929 +-0.0509196 0.141445 0.00173554 +-0.013506 0.0486161 0.0481837 +0.0193259 0.0665212 -0.0284749 +-0.0472913 0.128011 -0.00322004 +-0.0626481 0.167836 -0.0465871 +-0.0304696 0.0875178 0.0438182 +-0.0917743 0.120197 0.0434965 +-0.0648107 0.0617811 0.00082735 +0.000497836 0.114196 0.0414191 +0.0574118 0.0647963 0.00219725 +-0.0558676 0.0941545 -0.0217392 +-0.0336084 0.073768 -0.0234794 +0.00599322 0.131555 0.0161709 +0.00890036 0.0630937 0.0549611 +-0.062689 0.110949 0.0372761 +0.000505603 0.092515 0.0555251 +0.0223468 0.121292 -0.00473526 +-0.0486224 0.0562169 -0.0104362 +-0.00349838 0.0938964 0.0554871 +-0.0444734 0.111133 -0.0175908 +-0.0110869 0.111309 -0.0199045 +-0.0706182 0.161097 -0.00919138 +-0.0852334 0.0992128 0.0278144 +-0.0739196 0.15466 0.0290556 +0.0296062 0.0693912 -0.0207509 +-0.0310679 0.0435994 -0.0290446 +-0.0381696 0.0351458 0.0102677 +0.0601731 0.0664558 0.0181654 +-0.0779755 0.159708 -0.0199256 +-0.0656034 0.0619186 0.0220381 +-0.0875197 0.139142 0.00819442 +0.057949 0.0523838 0.0161799 +-0.0789979 0.165257 -0.0319521 +-0.0651299 0.139658 0.0409855 +-0.021445 0.0539977 0.0453008 +-0.0896519 0.136557 0.0371913 +-0.0534965 0.0890047 0.0449968 +-0.0534319 0.15708 0.0101259 +-0.0328837 0.0835575 -0.0275315 +-0.0164672 0.0659336 0.0534892 +-0.0354329 0.0383545 -0.00847377 +-0.0708675 0.102264 -0.0137609 +-0.023563 0.126621 0.00971624 +0.0103735 0.0460953 0.0463477 +-0.0660593 0.179544 -0.0550745 +-0.0527874 0.0854974 -0.0215293 +-0.0859388 0.0819759 0.019473 +0.0105508 0.12954 0.0235608 +-0.0103855 0.174149 -0.0227989 +-0.0669072 0.0448192 0.00702222 +-0.0284871 0.0932302 -0.0255941 +-0.0674877 0.041922 -0.00126982 +-0.0650925 0.142629 -0.00933509 +0.0420248 0.0845075 -0.00777453 +-0.0790747 0.0713835 0.0198308 +-0.0261077 0.0372445 -0.0185929 +-0.0370217 0.0410946 -0.0286549 +-0.0635554 0.166233 -0.0355972 +-0.0218769 0.105849 -0.0224625 +-0.0880158 0.125695 0.0466833 +-0.0621699 0.128298 0.0417254 +-0.0849635 0.115612 0.0476218 +-0.0132844 0.180127 -0.0228495 +-0.0282267 0.181005 -0.00798034 +-0.0312929 0.0665317 -0.0234435 +0.0182349 0.0355117 -0.0116753 +0.0151438 0.128336 0.0223847 +-0.0440686 0.0364096 0.0444754 +0.00518099 0.090879 -0.0329112 +-0.00712692 0.130239 0.0200248 +-0.00350074 0.0760658 0.0587997 +0.0285239 0.105924 -0.0141978 +-0.0560757 0.0486306 0.0102324 +-0.0647346 0.0751547 -0.0168067 +-0.0681413 0.163425 -0.0155251 +-0.0632877 0.151202 -0.0295741 +-0.0467953 0.0573798 0.0374139 +-0.0434795 0.10013 0.0422114 +0.0285718 0.0898068 -0.0210622 +0.0330592 0.116487 0.0176444 +-0.0241054 0.0348343 0.0490127 +-0.0124791 0.0354015 -0.0179384 +0.0405961 0.0624185 0.0297312 +-0.081387 0.11145 0.0446717 +0.00150869 0.0675259 0.0561223 +0.00629906 0.0381702 -0.0111411 +-0.0201579 0.171232 -0.0211109 +-0.0418025 0.1163 -0.0150397 +0.00651017 0.0786147 0.0558016 +-0.0940189 0.11877 0.0172997 +-0.0685972 0.0635876 0.000162346 +-0.0328398 0.0722904 -0.0244709 +-0.0455312 0.131052 0.00748081 +-0.023441 0.181825 -0.0105699 +0.0108694 0.130662 0.0179509 +0.0123886 0.0463398 -0.0252064 +-0.0652697 0.118619 0.0495916 +0.00206776 0.0348089 0.0386094 +-0.0298407 0.0705727 -0.0304857 +-0.0632339 0.164684 -0.0315914 +0.0353918 0.0491057 -0.00653987 +-0.0392946 0.123101 -0.0101877 +-0.0885378 0.137788 0.0102157 +-0.0234958 0.100256 0.0443804 +0.04037 0.0460545 -0.00454494 +-0.016752 0.0336597 -0.0246752 +0.0413281 0.0697537 0.029756 +-0.077268 0.161738 -0.0185704 +0.00995573 0.0897855 -0.0311748 +-0.0494127 0.0345257 0.0351696 +-0.00258654 0.0376582 -0.0251248 +-0.0538672 0.149311 0.025406 +0.0281029 0.0968693 0.0425418 +-0.0296256 0.0384042 -0.00919904 +-0.0659714 0.070335 0.0357803 +-0.0792849 0.109686 0.041215 +-0.0609581 0.142927 -0.00458074 +-0.064489 0.16418 -0.0242498 +-0.0585553 0.060477 0.023496 +-0.0851998 0.104954 0.024348 +0.0164098 0.126062 -0.00187701 +0.0235925 0.125057 0.0140956 +-0.00865281 0.123002 -0.0103525 +-0.0132305 0.174198 -0.0268981 +-0.0453894 0.130637 0.0193744 +0.0162761 0.0694793 -0.03005 +-0.0894525 0.128349 0.0437622 +-0.0562473 0.0708294 0.0392023 +0.0180456 0.044911 0.0433906 +-0.0626788 0.119898 0.0446407 +-0.0206698 0.116197 -0.0150314 +0.051506 0.0461707 0.0202521 +-0.0541367 0.13422 -0.00388726 +0.0303748 0.106409 -0.0127112 +0.0453408 0.0805541 0.00120995 +-0.00350137 0.0788045 0.0582113 +-0.052917 0.144693 0.0213981 +-0.0810085 0.136808 -0.00286908 +0.0435987 0.0482711 0.0311843 +-0.00549934 0.085642 0.0570911 +-0.0414264 0.125093 -0.00826982 +-0.0534716 0.0490986 0.0276613 +-0.0833044 0.10329 0.0285866 +-0.0394866 0.111153 0.0363447 +0.00954728 0.0389439 0.0451085 +-0.035694 0.0666325 -0.0153314 +-0.0301817 0.12316 -0.0042413 +-0.0383432 0.127011 0.0175779 +-0.0603252 0.0707596 0.0383929 +-0.0249438 0.0380891 0.0543244 +0.0144999 0.10985 0.0401157 +-0.0387789 0.0392857 0.0427431 +-0.0390181 0.126516 -0.0038056 +-0.0628844 0.116571 -0.0108779 +-0.0718222 0.0666154 0.0237319 +-0.0176233 0.0640054 0.0519373 +-0.0878362 0.112676 0.0422322 +-0.0661452 0.115702 0.0482687 +-0.0464951 0.116619 0.0318843 +-0.0501411 0.130626 -0.00198394 +-0.0497482 0.0767922 -0.0184367 +-0.0234881 0.0462034 0.0522022 +-0.0739006 0.162422 -0.0359639 +-0.0262017 0.0878115 0.0498853 +-0.0133444 0.0389099 -0.0138542 +0.040243 0.0970923 -0.00582991 +-0.011153 0.129981 0.0142184 +0.0309714 0.035145 0.0133989 +-0.0426252 0.0534503 -0.0112074 +-0.0538286 0.0338166 -0.0117099 +-0.0622047 0.0394245 0.0433885 +-0.0746849 0.14995 -0.0294029 +-0.0611865 0.0441212 -0.00432669 +-0.0182092 0.177147 -0.0243125 +0.0435018 0.0542009 0.0324922 +0.0364352 0.0371002 0.0145635 +-0.0321091 0.03378 0.0163326 +-0.0627516 0.145959 -0.00957815 +-0.0054968 0.061946 0.0559894 +-0.0738575 0.159643 -0.0319319 +-0.0640268 0.154208 0.0310565 +-0.0679826 0.0819454 0.0421862 +-0.0571357 0.158766 0.00595884 +0.0416081 0.101418 0.000182195 +-0.0235633 0.0565791 0.042552 +-0.0707052 0.0656331 -0.000502385 +0.0151645 0.126939 0.0266898 +0.0319146 0.0808971 0.042698 +0.0591439 0.0594194 0.00516163 +-0.0517306 0.164095 4.31123e-05 +-0.0802487 0.109228 0.032428 +-0.0124889 0.0964872 0.0522501 +0.0122905 0.06666 -0.0305971 +-0.00890819 0.0389895 -0.0111716 +-0.0414812 0.0634467 0.0412468 +0.0440882 0.090317 0.0231627 +-0.048759 0.14421 0.00252118 +-0.0240109 0.113853 -0.0165323 +-0.0863077 0.083293 0.0084931 +-0.0848578 0.117602 -0.00112226 +-0.0758939 0.107753 -0.00831552 +-0.0240922 0.0551393 0.0417051 +-0.048723 0.134043 0.0239744 +-0.075211 0.159631 -0.0279486 +-0.0458972 0.108476 -0.0187253 +-0.0827664 0.0789303 0.000509537 +-0.0413647 0.150284 -0.00509832 +0.00543597 0.131652 0.0145423 +-0.0567655 0.0797174 -0.020408 +-0.0314842 0.0875139 0.0436743 +-0.0272508 0.169746 -0.00972716 +-0.055503 0.0918468 0.0452512 +-0.0250407 0.11597 -0.0147569 +-0.0757456 0.155966 0.0196325 +0.0124869 0.0936385 0.0515089 +-0.0205861 0.122762 0.0284276 +-0.0807235 0.116228 0.0481624 +0.0260285 0.0450625 -0.0106845 +-0.0593728 0.0579489 0.0125735 +-0.049763 0.132774 0.0280532 +-0.0486523 0.128248 0.029602 +-0.0786364 0.0880738 -0.010561 +-0.0292743 0.157003 -0.0105584 +-0.0728269 0.0950692 -0.0149677 +-0.0571361 0.0333705 -0.00647115 +0.00471531 0.10507 -0.02128 +-0.0617504 0.158434 -0.0225881 +-0.044324 0.0573856 0.0392571 +-0.0231291 0.0608213 0.0434196 +-0.0736852 0.109489 0.0408578 +-0.0434867 0.102921 0.0416521 +-0.0745585 0.102629 0.0369846 +-0.00580621 0.0826794 -0.0377615 +-0.0293232 0.155967 -0.00892475 +-0.0785045 0.111148 0.0455755 +-0.0789041 0.126621 -0.00628203 +0.0387126 0.0984064 -0.00782785 +-0.00546749 0.0386155 0.00470576 +-0.00150095 0.0925253 0.0558525 +-0.0200678 0.0384268 0.0272406 +-0.0900294 0.114549 0.0240977 +-0.0775366 0.070359 0.00451989 +-0.0719896 0.139908 -0.00735583 +-0.0574975 0.0987515 0.0429871 +-0.0321271 0.107425 -0.0197503 +0.0188647 0.126347 0.0223312 +0.00641604 0.0962346 -0.0278978 +0.00311817 0.108714 -0.0201476 +-0.0160251 0.0375717 -0.0270066 +-0.0497158 0.140127 0.00540861 +-0.0603383 0.155998 0.00765284 +-0.0315045 0.100214 0.0434156 +-0.0865647 0.0978132 0.0263535 +0.030619 0.119354 0.0124235 +-0.0618449 0.153748 -0.0225793 +0.0357348 0.111877 0.0229152 +-0.0825172 0.108952 0.0273498 +-0.06497 0.156112 0.0234152 +-0.0141713 0.0391912 0.0511685 +0.0418096 0.0482673 0.0320498 +0.0293522 0.0768437 0.0442363 +-0.00664275 0.113752 -0.0185066 +-0.0339572 0.173519 -0.0141904 +-0.0868865 0.136539 0.0438118 +-0.0358508 0.0350331 0.0126434 +-0.0538363 0.0491492 0.0306601 +-0.0555251 0.040203 -0.0098178 +0.00654381 0.0340863 -0.0167284 +0.00392426 0.0984839 -0.0242888 +-0.0798351 0.078638 0.0310296 +-0.0520723 0.122646 0.0352105 +-0.0550812 0.153793 0.0226168 +0.014566 0.128157 0.000776346 +-0.0875094 0.103632 0.00838188 +0.0565843 0.0508466 0.00719292 +-0.0301736 0.0353405 0.0506988 +-0.054126 0.0491389 0.0369634 +-0.0213227 0.0927441 -0.0344661 +-0.0512299 0.133896 0.029412 +-0.0175551 0.0668893 0.0531861 +-0.0306537 0.125522 0.0174226 +0.00435638 0.0524337 -0.0297062 +-0.030037 0.0383331 -1.37538e-05 +-0.0748829 0.104948 -0.0102086 +0.0281452 0.12091 0.0214948 +-0.00129242 0.0339647 -0.0219341 +-0.0193753 0.114664 -0.0174341 +-0.0226586 0.185005 -0.0161016 +0.0333802 0.116202 0.0163348 +-0.0182505 0.0920203 0.0545129 +0.0291993 0.0821983 0.0440432 +0.040955 0.104188 0.00218636 +-0.0221399 0.16826 -0.0191908 +-0.0160775 0.128732 0.0124337 +-0.0494959 0.115246 0.0337414 +-0.0623926 0.155248 -0.0336012 +-0.0504873 0.0646576 0.0351978 +-0.0738463 0.114952 -0.00659368 +-0.0195012 0.0351765 0.0514244 +-0.0448823 0.107056 -0.0197924 +-0.0768765 0.119334 -0.00688293 +0.0107885 0.0345143 -0.0106366 +0.024237 0.0727429 0.0473317 +-0.00865103 0.0511695 -0.0319029 +-0.0877012 0.0963902 0.0247068 +-0.0518399 0.0559545 0.028629 +-0.00150749 0.0442279 0.0463824 +-0.066685 0.0361231 0.0351414 +-0.0298413 0.0511486 0.0404908 +-0.0104881 0.125079 0.0309157 +-0.0478366 0.0336224 0.000642732 +-0.0567073 0.152073 0.0307854 +-0.0772744 0.177812 -0.051035 +-0.0147745 0.0770701 -0.0384436 +-0.0929915 0.122891 0.0372721 +-0.0104786 0.116885 0.0389916 +0.0382147 0.0603208 -0.00873991 +-0.0754893 0.145614 0.0436847 +-0.0484504 0.134772 0.0211152 +0.013378 0.056283 0.0508299 +-0.00197361 0.0339973 -0.0202101 +0.0414332 0.100023 0.0231582 +0.0306311 0.076191 -0.0209647 +-0.0663516 0.155012 0.0287678 +-0.0710496 0.158811 -0.00499394 +-0.0554619 0.115432 0.0354757 +-0.0357408 0.0754574 -0.0191515 +0.000523827 0.0787529 0.057707 +-0.0189564 0.187079 -0.0195498 +-0.0849859 0.149949 0.0316738 +-0.0578691 0.0427244 -0.00751381 +-0.0739068 0.123785 -0.00803832 +-0.0355104 0.105608 0.0391036 +-0.0437169 0.0336921 -0.00956971 +0.0503986 0.0446075 0.0172106 +0.028338 0.0371627 0.023798 +-0.0835031 0.123045 0.0493423 +-0.051023 0.051637 0.0206282 +0.00799809 0.131294 0.0169006 +-0.0154642 0.0617228 0.0531313 +-0.0548148 0.0898539 -0.0222515 +0.0183688 0.0727072 0.0511848 +-0.0528816 0.143158 0.0234068 +0.0423208 0.0885482 0.027912 +-0.0489879 0.148715 -0.00337283 +0.0536516 0.0710277 0.00477709 +-0.0558317 0.154614 0.0193814 +-0.078074 0.0921324 -0.0116061 +-0.0138482 0.126055 -0.00351425 +-0.0484951 0.107035 0.0396855 +-0.0617568 0.113454 -0.0138737 +-0.0539631 0.0449066 0.021682 +-0.0323187 0.0763806 -0.0295323 +0.0441984 0.0917353 0.0221589 +-0.0830674 0.136771 -0.000769185 +-0.0741071 0.154101 -0.0239055 +-0.0686886 0.176906 -0.0487674 +-0.0561408 0.0460708 0.0131999 +-0.0685022 0.101419 0.0404594 +-0.0739688 0.0653923 0.0119616 +0.001175 0.0909253 -0.0339059 +0.0263146 0.0782009 0.0468843 +0.00192116 0.123969 -0.00948312 +-0.0587405 0.0737726 -0.0173801 +-0.0627949 0.167828 -0.0455908 +-0.0508006 0.0883889 -0.0215985 +-0.0481052 0.0559539 0.0359192 +0.0442623 0.0959503 0.0151546 +-0.0608758 0.0968112 -0.0186271 +-0.0345924 0.0485568 0.0396695 +-0.0618805 0.102572 -0.018381 +0.024797 0.0615121 -0.0241542 +0.0398079 0.0440192 0.0290809 +-0.0138249 0.0869198 -0.0385386 +-0.00950254 0.0801627 0.0580817 +-0.0893667 0.135016 0.00621309 +-0.0210328 0.0946153 0.0501685 +0.0124741 0.0347469 0.026362 +-0.0837947 0.100615 0.0291484 +-0.0677074 0.147127 -0.0273126 +-0.080936 0.0720826 0.0105433 +-0.0486367 0.0591511 -0.0114572 +-0.0856634 0.1104 0.0223511 +-0.0321401 0.16671 -0.0160336 +-0.0724955 0.174948 -0.0415233 +-0.0260317 0.0348457 -0.0200988 +-0.0274922 0.0497667 0.0454723 +-0.0394917 0.0534182 0.0393765 +0.0515114 0.0691441 0.0252354 +-0.0257438 0.12256 -0.00564443 +0.0437634 0.0832354 -0.00281017 +-0.0247629 0.0727034 -0.0370836 +-0.0655551 0.156269 0.0188465 +-0.0629848 0.136718 0.0370028 +0.0602499 0.0678328 0.0161531 +-0.0168173 0.0841632 -0.0392397 +-0.0683543 0.152019 -0.0462463 +-0.0567286 0.155485 0.0133042 +-0.0124895 0.119639 0.0367572 +-0.0620219 0.161552 -0.0385959 +-0.0485081 0.0504118 0.037253 +-0.0681426 0.159579 -0.055037 +-0.0339899 0.0738027 -0.0224777 +0.0187727 0.038419 -0.0166964 +-0.00951396 0.0647096 0.055646 +0.0373151 0.0659642 0.0362985 +-0.0697681 0.156742 -0.0499137 +-0.07512 0.161006 -0.0309706 +0.0445653 0.094573 0.0151616 +-0.0642545 0.154418 -0.039754 +0.0245051 0.108393 0.0385583 +-0.0423597 0.0337264 -0.0019814 +0.0111186 0.130773 0.0109156 +-0.0366056 0.0484481 -0.0142844 +-0.00762999 0.0387797 -0.0144679 +-0.0695561 0.0340783 0.00839793 +-0.0566909 0.0334951 0.00618234 +-0.0565711 0.159859 0.00306588 +0.000399482 0.0419381 -0.024642 +-0.0505546 0.0490872 0.0373101 +-0.0513639 0.0402537 0.0462611 +-0.0256858 0.0575487 -0.0293997 +-0.0524956 0.0890116 0.0451123 +0.044036 0.0973464 0.00517085 +-0.0774531 0.156901 -0.0199195 +0.0267966 0.0534918 0.0403155 +-0.0887231 0.0888754 0.0204484 +0.014348 0.0534071 0.0486823 +-0.0495075 0.0490436 0.0377607 +-0.0321324 0.154142 -0.000565596 +-0.0856354 0.143297 0.0395519 +-0.0344784 0.0932112 0.0445123 +-0.0688653 0.0860793 0.0429202 +-0.068567 0.167578 -0.0243154 +-0.0155024 0.084237 0.0568519 +-0.0768438 0.0975378 -0.0115852 +-0.054418 0.142404 0.0282888 +-0.00749562 0.091199 0.0567536 +0.0202715 0.077733 -0.0270961 +-0.0748613 0.102114 -0.0115761 +-0.0102609 0.0389601 -0.0132864 +-0.060805 0.0953608 -0.018741 +-0.0557308 0.0738305 -0.0174435 +-0.0789903 0.0900056 0.0359819 +0.0427074 0.0831548 -0.00579292 +-0.00549246 0.097843 0.0523265 +0.046038 0.0679968 0.0252834 +-0.0235521 0.116765 0.0343279 +0.0302394 0.0759037 -0.0212804 +-0.0212883 0.0638258 0.0471454 +0.0285217 0.0480557 -0.0127278 +-0.0326422 0.080708 -0.0295257 +-0.0545922 0.126915 0.0368606 +-0.07894 0.12954 -0.00577029 +-0.0871517 0.0874756 0.0234341 +0.0457525 0.0862068 0.0131643 +-0.0636848 0.163906 -0.0268361 +-0.01113 0.175691 -0.0290055 +-0.0644352 0.0424097 0.0302481 +0.00751322 0.0883379 0.0556646 +0.0450791 0.0411084 0.0144119 +-0.0801842 0.0990978 -0.00757647 +0.00942317 0.0752723 0.0558271 +-0.0720162 0.169175 -0.0255925 +-0.0706469 0.0749114 -0.0128891 +-0.0231537 0.124452 0.0216177 +-0.0354775 0.0932002 0.0444179 +-0.0467494 0.0782878 -0.0191673 +0.0402616 0.088708 0.0319407 +-0.0668021 0.0909191 -0.0174744 +-0.0798777 0.0922401 -0.00961163 +-0.00990791 0.168128 -0.0187599 +-0.0538472 0.144686 0.025416 +-0.0506923 0.0693793 -0.0143111 +-0.0628457 0.158366 -0.0406006 +-0.0472527 0.147738 0.00869118 +-0.0798492 0.140347 -0.0037915 +-0.0633595 0.155022 0.00583483 +0.0194938 0.0948135 0.0473832 +-0.0235952 0.03653 -0.0288249 +-0.0625329 0.155555 0.0257427 +-0.0293056 0.125075 0.00323421 +-0.0848075 0.100731 -0.000569426 +0.0362036 0.112389 0.0159326 +0.0148576 0.0726711 0.0531263 +-0.0648898 0.0353536 0.0257632 +-0.0225355 0.115413 0.0360839 +0.0344395 0.062733 -0.0148459 +-0.0404982 0.0548597 0.0396645 +0.0241838 0.0363666 0.0254891 +0.0185331 0.065881 0.0495848 +0.0124938 0.0589954 0.0513278 +0.00977817 0.131153 0.0118468 +0.0100829 0.0519948 0.0512903 +-0.0361503 0.127316 0.0154104 +-0.0482545 0.05323 0.0361705 +-0.0940988 0.124142 0.016266 +-0.0100812 0.168118 -0.0236136 +-0.00900002 0.1303 0.0121232 +0.044368 0.0832642 0.000211132 +-0.0417803 0.126317 0.0192991 +-0.0875576 0.0954908 0.0044419 +-0.0679508 0.168029 -0.055011 +-0.0131452 0.0346678 0.0462791 +0.00685606 0.0990064 -0.0228407 +0.0328304 0.0354201 0.0116657 +0.0278048 0.121695 0.017093 +0.0445188 0.0721805 0.0237826 +-0.0754994 0.115715 0.0515239 +-0.0115085 0.0815323 0.0578355 +-0.0530625 0.0625594 0.0307632 +-0.0510483 0.053037 0.0206135 +-0.0505791 0.0488657 -0.00826795 +-0.0426076 0.0338549 0.0069173 +0.0392521 0.0940728 0.0323259 +-0.0394892 0.0846821 0.0435801 +-0.0451321 0.0560164 0.0386443 +-0.00431394 0.0929621 -0.0345661 +-0.0559672 0.149602 0.0296453 +-0.0635672 0.159894 -0.0552656 +-0.0854828 0.0924603 0.0282645 +-0.000403311 0.102922 0.0441774 +-0.0728513 0.077742 0.0372898 +-0.0264927 0.0850795 0.0502634 +0.00748229 0.118415 -0.0155852 +-0.0301257 0.165235 -0.016018 +-0.00266679 0.0554838 -0.0324138 +0.0588141 0.0660698 0.0217199 +-0.0227042 0.0651451 0.0456598 +-0.0254758 0.0447668 0.0519525 +-0.0221249 0.165275 -0.017299 +-0.0673863 0.146352 -0.0244353 +0.0358297 0.112651 0.00431137 +-0.0600953 0.0345101 0.0398512 +-0.0315135 0.112545 0.0354646 +-0.0495533 0.0335732 0.00214603 +0.00748118 0.122397 -0.0118721 +-0.017033 0.0949215 -0.0326512 +-0.0465027 0.162256 0.00645028 +-0.0377072 0.0695284 -0.0160926 +0.0515389 0.0638758 -0.00198972 +-0.0406583 0.0577787 -0.0115563 +-0.078333 0.108337 0.035368 +-0.00970184 0.120973 -0.0121849 +0.0223756 0.0822421 0.0500191 +-0.0598969 0.0982824 -0.0189251 +-0.000418527 0.128183 0.0282442 +0.0398162 0.107019 0.0141667 +-0.0275139 0.118013 0.031246 +-0.0270215 0.0563432 0.0375362 +0.0105198 0.130786 0.00926843 +0.00339772 0.0418993 -0.0241367 +-0.0275013 0.113896 0.0350206 +0.0202412 0.0763232 -0.0271232 +-0.0919625 0.126955 0.0342506 +-0.0433008 0.0345877 0.0364134 +0.0433553 0.0860087 -0.00480358 +0.0208045 0.119446 -0.00872458 +-0.0930264 0.120177 0.0342925 +-0.0379377 0.157973 0.00463177 +-0.0253167 0.177183 -0.0103739 +-0.0366224 0.0519804 -0.0105023 +-0.0707047 0.079127 0.0393559 +-0.0260772 0.0606359 0.0392914 +-0.0238556 0.126292 0.00669874 +0.00550694 0.0561304 0.0532033 +-0.0537237 0.147766 0.0244131 +-0.0691531 0.167331 -0.0231015 +-0.0596786 0.0738084 0.0412039 +0.0326792 0.103442 0.0351236 +-0.0614661 0.174127 -0.0585981 +-0.0717687 0.0836085 -0.0162896 +-0.0457927 0.0869975 -0.0219586 +0.0105224 0.0990052 0.0483243 +-0.0829648 0.129479 -0.00406234 +-0.0356761 0.0343506 0.0364799 +-0.0884531 0.0888833 0.0214341 +-0.0627252 0.0416196 0.0257026 +-0.0564562 0.159872 0.00406757 +-0.0891671 0.0942549 0.0124334 +0.00850148 0.0561026 0.0528172 +-0.0897269 0.113038 0.0361809 +0.0510319 0.0481609 0.0243415 +-0.0355318 0.0341909 0.0278174 +0.0439268 0.0945301 0.0211547 +-0.0579061 0.0357757 0.046064 +-0.0154366 0.0383652 0.00473292 +-0.0175221 0.187321 -0.0198494 +-0.00549946 0.0842482 0.0569765 +0.0601999 0.0678503 0.0111396 +0.0144807 0.0658974 0.0525165 +0.0293268 0.0963357 -0.0179631 +-0.0397817 0.126122 -0.00537397 +0.0345713 0.109241 -0.00571538 +0.0142478 0.0846938 0.0523116 +-0.00151223 0.107257 0.0435513 +-0.0568094 0.0336832 0.0202688 +-0.00449913 0.108643 0.0435023 +0.0366018 0.0989128 -0.0107075 +-0.0520805 0.0552272 0.0244826 +-0.0564227 0.125779 -0.00685719 +-0.045508 0.0519257 0.0382686 +0.0321211 0.116144 0.000111339 +-0.0560271 0.142758 -0.00201441 +-0.0204991 0.12085 0.0318342 +-0.0572069 0.155002 0.0203881 +-0.0683862 0.0434928 0.00469407 +-0.0749362 0.167415 -0.0237916 +0.00950453 0.0758273 0.0557308 +0.0134626 0.0962698 0.0490469 +-0.0352581 0.0336435 0.0104036 +0.0033475 0.0524625 -0.0299019 +-0.0200406 0.0417644 0.0532372 +-0.020634 0.03806 0.0202475 +-0.0354822 0.0590569 0.0395591 +-0.0633421 0.145588 -0.0131138 +0.0560276 0.0714782 0.0201554 +-0.034079 0.157748 -0.0116645 +0.0430592 0.0871926 0.0271788 +-0.067061 0.0617728 0.0200983 +0.0054202 0.0385344 -0.0060218 +-0.0562382 0.115455 0.0360976 +0.0318915 0.0727133 0.0408308 +0.00701986 0.131464 0.0165435 +-0.00758439 0.038449 0.00988421 +-0.0401838 0.128459 0.00507702 +0.0467715 0.0482711 0.0287479 +-0.0918049 0.126804 0.00826817 +-0.0821184 0.0782385 0.0256306 +-0.0812562 0.103354 0.0307723 +-0.0639536 0.144435 -0.0123561 +-0.0108662 0.129871 0.00999779 +0.0155048 0.112635 0.0385412 +0.0182534 0.0792348 -0.0283217 +-0.0893331 0.0983151 0.0114073 +-0.00325216 0.0396403 0.0476826 +-0.0241255 0.089259 0.0519927 +-0.0858632 0.106258 0.00536057 +0.00408474 0.0346021 -0.0158016 +-0.0407936 0.0869784 -0.0214607 +-0.0166484 0.0480949 -0.029815 +-0.0157153 0.0613848 -0.0360938 +-0.0566239 0.0482507 0.0375737 +-0.0424946 0.0619914 0.040787 +-0.0676789 0.0735575 -0.0139417 +-0.00550026 0.0815011 0.0573318 +-0.0466697 0.166955 -0.00590454 +0.050335 0.0531616 -0.00370253 +-0.075448 0.162419 -0.0329687 +-0.0614914 0.089051 0.0454546 +-0.0467107 0.0709021 -0.0159388 +0.0485116 0.0611011 0.0306918 +0.0308141 0.0862286 0.0429136 +0.041033 0.0788113 -0.0077656 +-0.0332536 0.0434286 -0.0288825 +-0.0599631 0.0455474 0.028679 +-0.0106693 0.0383927 0.00930564 +0.00450171 0.04895 0.0512539 +-0.0567297 0.0738308 -0.0175741 +-0.0395016 0.128216 0.0127148 +-0.0236465 0.18441 -0.0150532 +-0.0541007 0.0517729 -0.00535724 +-0.00963566 0.0383633 0.0204127 +-0.072501 0.11898 0.053434 +-0.072483 0.0356257 0.00284128 +-0.0164962 0.0815146 0.0575151 +0.0321311 0.10568 -0.0119259 +-0.0628015 0.0867155 -0.0190743 +-0.0747157 0.155426 0.0258403 +-0.0655092 0.0986926 0.0420188 +-0.0621042 0.153787 0.0317461 +0.0075074 0.0702645 0.0557506 +-0.0873725 0.140519 0.00919988 +-0.0816979 0.073476 0.0105355 +-0.0251078 0.125921 0.00624226 +0.0143125 0.129601 0.0135477 +0.0537172 0.0701657 0.00367339 +-0.0658178 0.165764 -0.0247368 +-0.0706171 0.164859 -0.0164358 +-0.0268181 0.0385613 -0.0106363 +-0.0308492 0.121938 -0.00695618 +-0.0240991 0.0708914 0.0469009 +0.00836584 0.0509624 -0.0290525 +0.0146552 0.0361528 0.0436042 +-0.0759244 0.155422 0.00936737 +0.00291872 0.0383891 0.0247663 +-0.0483005 0.12541 0.0300666 +0.00749081 0.093253 -0.0307631 +-0.0441374 0.160646 -0.00957119 +-0.0454954 0.0945383 0.0433792 +0.0153865 0.0350801 0.00287497 +-0.0507565 0.078263 -0.0192091 +-0.014682 0.0540945 -0.0332776 +-0.0697195 0.0625059 0.018914 +-0.0850789 0.151288 0.0289026 +0.000998881 0.131517 0.0100563 +-0.0866192 0.111201 0.0383037 +-0.0257526 0.069725 -0.0351721 +-0.0832913 0.0938266 -0.00556456 +-0.00149798 0.121047 0.037107 +-0.0164922 0.103019 0.043564 +-0.00175716 0.0797524 -0.0362245 +-0.065193 0.165273 -0.0595568 +-0.00746087 0.0391472 0.0345828 +-0.0384976 0.0790115 0.0428361 +-0.00149834 0.095227 0.054625 +-0.00277478 0.078376 -0.0365291 +-0.0780329 0.155476 0.0217657 +-0.0632159 0.147647 -0.016402 +-0.0801569 0.0817921 0.0331577 +-0.0500022 0.16408 -0.00389251 +-0.0747874 0.0892505 -0.0147771 +-0.00949475 0.122405 0.0348735 +-0.0322196 0.0423712 0.0501883 +-0.00876131 0.174216 -0.0276966 +-0.0545091 0.161256 6.9518e-05 +0.0181832 0.102054 0.0457705 +-0.0604933 0.102915 0.04183 +0.0437773 0.0804492 0.0262342 +0.0388648 0.0842467 -0.0137667 +-0.00550336 0.0647558 0.0562438 +-0.0929299 0.122874 0.0352771 +-0.043447 0.0338958 0.0281851 +-0.0649274 0.155826 -0.0455264 +-0.00117719 0.0381217 -0.0144579 +-0.0146742 0.180146 -0.0213737 +-0.0911602 0.113316 0.0133388 +0.0114933 0.0990667 0.0482243 +-0.030492 0.093206 0.0443051 +-0.00885946 0.13031 0.0150517 +-0.073851 0.0979023 -0.0138506 +0.00349864 0.0505127 0.0525247 +0.0579498 0.0621469 0.0239372 +-0.0266127 0.121438 0.026306 +-0.0640364 0.138454 -0.00746704 +-0.0881537 0.0875035 0.020457 +-0.0693202 0.16097 -0.0509443 +-0.0258632 0.0384431 -0.0103374 +-0.0445084 0.162276 0.00597583 +0.002127 0.0994865 0.0488443 +-0.00523434 0.128086 0.0279795 +0.0441694 0.0706598 0.0245614 +0.00913312 0.10443 -0.020596 +-0.00849151 0.104452 0.0437135 +-0.0709552 0.134052 -0.00817596 +0.040546 0.0860518 0.0323351 +0.026933 0.109961 -0.012516 +0.0171797 0.119654 -0.0109592 +-0.0154871 0.10859 0.0421893 +-0.0544999 0.0945829 0.0441089 +-0.0942376 0.122836 0.024283 +0.0145822 0.10067 -0.0225932 +0.0416553 0.0900846 -0.00877196 +-0.0627089 0.0722313 -0.0153832 +-0.0265055 0.0946665 0.044662 +-0.0241067 0.108647 -0.0210644 +-0.0475093 0.0504634 0.0377677 +-0.0271626 0.0836755 0.0495254 +-0.0707023 0.155807 0.00247134 +0.0113316 0.0343299 -0.00659923 +0.0271512 0.0740976 0.0445232 +-0.00214312 0.101026 -0.0230018 +-0.0518271 0.094161 -0.0217872 +-0.0685768 0.0699128 0.0338326 +-0.0538957 0.0344051 0.0325721 +-0.0280624 0.17271 -0.00913079 +-0.0710555 0.148357 -0.0346175 +-0.0392482 0.165334 0.00281642 +-0.0494961 0.159354 0.00844009 +-0.0887346 0.0956375 0.0224045 +-0.0856504 0.126624 -0.00269798 +-0.0486707 0.147744 0.0101492 +-0.0735613 0.16372 -0.0149978 +0.0180716 0.0350245 0.0344937 +-0.0307362 0.053835 -0.015374 +-0.0887393 0.0928617 0.00944255 +-0.016725 0.0627999 -0.0362248 +-0.0190611 0.063953 0.0505398 +-0.0441816 0.0346721 0.0413945 +-0.0593157 0.126918 0.0405689 +-0.0111259 0.174182 -0.0282833 +-0.0436679 0.0621935 -0.0131864 +0.0275209 0.088828 -0.0220264 +-0.0297851 0.0890261 -0.0295849 +-0.0303849 0.154168 -0.00247422 +-0.0425281 0.128954 0.00568377 +0.0162787 0.126801 -0.0006607 +-0.0727179 0.0806647 -0.0147187 +-0.0753424 0.0928083 0.039305 +-0.0798316 0.111318 -0.00180655 +0.0192462 0.0346832 0.00400718 +-0.088108 0.129743 0.0452172 +-0.0103013 0.038437 0.0111565 +-0.0466082 0.166842 0.00289141 +-0.0459915 0.152139 0.00880917 +-0.02765 0.0504128 -0.0240838 +-0.00316977 0.101093 -0.0230747 +-0.081903 0.123614 -0.00465545 +0.0308134 0.104771 0.0359398 +-0.0649698 0.0444252 -0.000282601 +-0.0411724 0.128614 0.0047134 +-0.0566724 0.0661356 -0.00992741 +-0.0768027 0.1218 0.0526081 +0.0286707 0.0432432 0.0323583 +-0.0776442 0.112189 0.0467134 +-0.0599288 0.0595089 0.00385673 +-0.0751102 0.148577 -0.0168689 +-0.0422557 0.0435263 -0.021317 +-0.0109825 0.18157 -0.0273657 +0.0160657 0.128852 0.0141586 +0.0353395 0.113619 0.00703904 +-0.0746273 0.149901 -0.0298709 +-0.0108803 0.105927 -0.0227775 +-0.0134961 0.0472092 0.0480936 +0.0366578 0.0576635 0.0335112 +-0.019761 0.0984382 0.0445534 +-0.0662568 0.117183 0.0498756 +-0.0659606 0.17389 -0.0478108 +-0.0116079 0.0434695 -0.0263093 +-0.0926722 0.117507 0.0393006 +-0.0764843 0.145607 0.0435529 +-0.0467321 0.0337537 0.00617309 +-0.0558876 0.104087 -0.0189213 +-0.0920931 0.126941 0.031257 +-0.0204778 0.086949 0.0559493 +0.0205756 0.0550317 0.0471809 +0.0164894 0.10985 0.0397676 +-0.0639427 0.125311 -0.00880074 +-0.0233699 0.0380458 0.0160874 +0.00571651 0.037694 -0.0126956 +-0.0305064 0.059434 -0.0194047 +-0.0286182 0.0422955 -0.0294891 +-0.074262 0.155148 0.0274653 +-0.0780672 0.161102 -0.0219327 +-0.0710541 0.174778 -0.0424234 +-0.0641619 0.126957 0.0459503 +-0.0724375 0.0643068 0.0185598 +-0.0568864 0.106915 -0.0181412 +0.0293195 0.0995163 0.0407971 +-0.0644558 0.155894 0.01199 +0.00534877 0.131711 0.0116581 +-0.070964 0.169422 -0.0500317 +0.0101411 0.103018 -0.0207697 +0.0413802 0.0547717 -0.00646982 +-0.0385096 0.0776202 0.0427509 +-0.0239792 0.115969 -0.0147616 +-0.0225483 0.119525 0.0321637 +-0.060198 0.152175 0.0339452 +-0.0535114 0.0452153 0.0437642 +-0.0037319 0.0346421 0.0447442 +0.0102653 0.0944766 -0.0280245 +0.0270364 0.0347184 0.00926922 +-0.0660514 0.11246 0.0412419 +-0.0427238 0.072521 -0.0180673 +-0.057924 0.0453324 0.0266819 +0.0321473 0.0354374 0.0133726 +-0.0750002 0.0776536 0.0352037 +-0.0404922 0.11531 0.0337051 +-0.0201478 0.16826 -0.0196016 +-0.0263171 0.178663 -0.00829314 +0.0232364 0.0706221 -0.0263108 +-0.0228968 0.117028 -0.0138782 +-0.0477554 0.130992 0.0255865 +-0.05149 0.104281 0.0405196 +-0.00121687 0.120006 -0.0132177 +-0.0299396 0.0649723 -0.0274594 +-0.0187899 0.0784905 -0.0388371 +-0.0498267 0.109983 -0.0185775 +0.00334971 0.0510613 -0.029847 +0.0259096 0.0534724 0.0407837 +-0.0455367 0.111121 -0.0175743 +-0.0124237 0.0348026 0.0445556 +-0.0887181 0.123977 0.00228597 +-0.088156 0.151596 0.0228856 +-0.0530084 0.149326 0.0224058 +0.0191744 0.125775 0.0238749 +-0.0735068 0.118971 0.0531919 +-0.0585002 0.0987496 0.0428962 +-0.0310887 0.159271 -0.0130615 +0.000886159 0.12297 -0.0104051 +-0.0872227 0.0941086 0.00335062 +-0.0273424 0.0931435 -0.0275899 +0.0213306 0.126248 0.00896939 +0.0549036 0.0506667 0.00319831 +-0.0245658 0.115393 0.0346209 +-0.0908157 0.133668 0.01022 +0.011387 0.126452 0.0296316 +0.0342091 0.0430428 0.0288022 +-0.0759039 0.154928 -0.00089291 +-0.0834635 0.136224 -0.000676656 +-0.0242249 0.124407 -0.00155437 +-0.00949715 0.103034 0.0436292 +-0.0448632 0.102817 -0.0213129 +-0.0762912 0.162417 -0.0319674 +-0.087261 0.137734 0.00520439 +0.0359972 0.0915666 0.0381116 +0.0515419 0.0610093 0.0297195 +-0.0759846 0.168851 -0.0284951 +0.0192535 0.076364 -0.0276613 +0.00153258 0.130437 0.0231622 +-0.0552695 0.058846 -0.00542677 +-0.0478299 0.094184 -0.0219241 +0.0413096 0.0957202 -0.00478826 +0.00646546 0.131591 0.014917 +-0.0921802 0.132348 0.0172238 +-0.00096127 0.131397 0.0150615 +0.0373767 0.0519575 -0.00666499 +0.000499624 0.0661631 0.0564081 +-0.0624427 0.149095 -0.00857615 +-0.0158277 0.127263 0.00131837 +-0.0534778 0.0544994 -0.00645482 +-0.0393097 0.122071 -0.0111029 +-0.0552136 0.0346314 0.0441945 +-0.062546 0.0614527 -0.00215685 +0.0190515 0.0781917 0.0522129 +-0.00645816 0.122156 -0.0114796 +0.0547648 0.068691 0.024634 +-0.0165146 0.104417 0.0427511 +-0.0914381 0.133727 0.0162105 +-0.0621573 0.163143 -0.0375929 +-0.0927674 0.130992 0.0172311 +0.00308348 0.0981539 0.0507387 +0.0223728 0.0658814 0.0463438 +-0.039497 0.060614 0.0410267 +-0.0547684 0.0513541 0.0102674 +0.00252507 0.0561606 0.0537161 +-0.0427018 0.0681213 -0.0161497 +0.0102881 0.063916 -0.0312717 +-0.0443833 0.12939 0.00495951 +-0.0186027 0.160444 -0.0128213 +0.0371116 0.111176 0.0148387 +0.0282213 0.0875505 0.0444323 +-0.0274771 0.120676 0.0274866 +-0.0584936 0.0439589 0.0439647 +0.0240603 0.0822578 0.0489414 +0.0351443 0.071382 0.0384881 +-0.0164918 0.0897515 0.056205 +-0.0781864 0.161095 -0.0229348 +-0.0701455 0.111146 0.0439061 +-0.00742751 0.0346718 0.0457358 +-0.0757375 0.106056 0.0359296 +-0.0735163 0.138649 0.0485985 +-0.0786866 0.073183 -0.00146774 +-0.0425028 0.11664 0.0325093 +-0.0294965 0.105676 0.0405837 +-0.0253323 0.089221 0.0503626 +-0.00687638 0.105938 -0.022783 +-0.0680331 0.17369 -0.0570223 +-0.0709606 0.152484 -0.0460812 +-0.0145326 0.0386197 0.0300043 +-0.0284453 0.0903864 0.0448476 +-0.0688215 0.145351 0.0427408 +-0.0488146 0.109958 -0.0184987 +-0.0764868 0.144228 0.0448323 +-0.0204228 0.0384821 -0.0074254 +-0.050433 0.0505709 0.0355945 +0.00517866 0.131021 0.00445011 +-0.0697426 0.08081 -0.0166425 +-0.084857 0.0924919 0.0290512 +-0.00149439 0.0870302 0.0569025 +-0.072621 0.142849 -0.00891964 +0.0127783 0.105278 -0.0195273 +0.00375967 0.0343287 0.0177156 +-0.0724944 0.126022 0.052902 +-0.0520295 0.0429585 0.0453289 +-0.0373786 0.0478297 -0.016773 +-0.0165095 0.0446732 0.0513338 +0.0115347 0.118055 -0.0152175 +-0.0461946 0.0601644 0.0381445 +-0.0730192 0.156843 -0.0319176 +-0.0665818 0.173704 -0.0590137 +-0.0904622 0.133649 0.00822658 +-0.0661919 0.0387353 0.0332699 +0.0285711 0.0632767 0.0429905 +-0.0191373 0.0348399 0.0448528 +-0.0144945 0.115487 0.0386767 +-0.0885619 0.129493 0.00323888 +-0.00509715 0.039098 -0.012386 +0.00551873 0.0842341 0.0568816 +-0.0784525 0.0962411 -0.0105211 +-0.0126763 0.05824 0.052838 +-0.00571704 0.0642049 -0.0354496 +-0.0659809 0.169803 -0.037696 +0.00534315 0.0567731 -0.0307134 +-0.0104849 0.101611 0.0440429 +-0.0320291 0.108616 -0.01899 +0.0442879 0.0415947 0.0193873 +0.0261947 0.0449183 0.0375802 +-0.0626054 0.158425 -0.0185846 +-0.0321937 0.0694259 -0.0234551 +-0.0597828 0.0810723 -0.0197911 +-0.0274915 0.0602914 0.037483 +0.0278788 0.120142 0.00144262 +-0.00359535 0.0391334 -0.025473 +-0.0104902 0.0619157 0.0554492 +-0.0851123 0.133936 0.0477712 +0.0133897 0.0389058 -0.0222843 +-0.0778477 0.159718 -0.0189229 +-0.0817169 0.081448 -0.00456785 +0.00880568 0.131337 0.0114907 +-0.0885025 0.144515 0.032494 +0.00248318 0.0413744 0.0461608 +0.0393065 0.105567 0.023165 +0.0485408 0.0662379 -0.000364329 +-0.074114 0.159638 -0.0309374 +-0.0656277 0.0636798 0.0258038 +0.0326128 0.0934199 -0.0168733 +-0.0691845 0.152183 -0.0467119 +-0.0356328 0.0347409 0.0201566 +-0.067463 0.166618 -0.0559977 +0.0410852 0.0860175 0.0313838 +-0.0465484 0.0404249 0.0444582 +-0.0884823 0.147207 0.0295866 +-0.047064 0.168385 -0.0010022 +0.0204505 0.044377 -0.0207645 +-0.0460107 0.0426896 -0.0115747 +-0.0892694 0.136527 0.0301984 +-0.00170296 0.0612915 -0.034176 +0.016206 0.0927227 0.0499244 +-0.0816886 0.154881 0.0175845 +-0.0434863 0.0776041 0.0427475 +-0.0883068 0.098239 0.00641854 +-0.045625 0.056311 -0.011298 +-0.0524843 0.150872 0.017395 +-0.0641668 0.0334738 0.00287677 +0.0361211 0.0586877 -0.0107678 +0.0141254 0.0589894 0.0501816 +-0.0864962 0.112872 0.0280752 +-0.0863885 0.112851 0.0441987 +-0.0524922 0.0384865 -0.0115467 +-0.0776496 0.163935 -0.0239336 +-0.0554697 0.0345193 -0.0117205 +0.0176795 0.0740469 0.0519763 +-0.0728932 0.0642808 0.0113714 +0.0261658 0.0809584 -0.0239333 +0.058376 0.0713467 0.0136326 +0.0257313 0.0968616 0.0444005 +0.00516452 0.0344202 0.0197338 +-0.0686185 0.0687175 -0.00655491 +-0.0803464 0.147298 -0.000827063 +0.000190276 0.131527 0.0154789 +-0.0687909 0.0354139 0.0127136 +-0.05562 0.146743 0.0301728 +0.0240878 0.0645552 0.0452968 +0.0313304 0.0475675 0.0327114 +-0.0107396 0.0713653 -0.0375278 +-0.0444884 0.0733739 0.0424053 +-0.0892862 0.137904 0.0301929 +0.0430064 0.0930319 -0.00281527 +0.00152278 0.0688979 0.0560686 +0.02743 0.0663837 -0.0217206 +-0.0610765 0.167736 -0.0598039 +0.0469057 0.0738955 0.00933063 +0.010569 0.0630758 0.0538717 +-0.0636657 0.175908 -0.0542108 +-0.00887643 0.105922 -0.0227472 +0.0366768 0.0861722 0.0373065 +-0.00750518 0.0661146 0.0558703 +-0.0311481 0.174122 -0.0158676 +0.0165049 0.115408 0.0369209 +-0.0599957 0.135288 0.0360766 +0.023446 0.0385037 -0.00396461 +-0.0512658 0.0335234 0.00365116 +-0.0640041 0.0417908 0.0276702 +0.0505407 0.062451 0.0297568 +0.0381071 0.0767371 0.0357901 +0.0348186 0.114435 0.00971518 +-0.0808584 0.15153 0.0328055 +-0.0292731 0.0691492 -0.0304581 +-0.0482843 0.133992 0.00441773 +-0.0151264 0.0382524 0.0175843 +0.0457402 0.0749932 0.00321166 +-0.0514912 0.0529568 0.0308804 +-0.0841758 0.0777074 0.00551439 +-0.0724891 0.168081 -0.0228518 +-0.0578499 0.140998 0.0321632 +-0.0824678 0.0844329 0.0311552 +-0.035201 0.0380831 0.0475916 +-0.0225654 0.0336394 -0.0239171 +0.0463796 0.0792543 0.0131749 +0.0210505 0.125312 0.00175976 +-0.0835133 0.0843594 0.0293933 +-0.00767881 0.0555674 -0.03337 +-0.052489 0.159007 -0.00340529 +-0.0244459 0.156552 -0.00701262 +-0.0598434 0.0384999 0.0207227 +-0.0725078 0.160609 -0.0083559 +0.0429565 0.0986678 0.00218951 +-0.00967767 0.118026 -0.0150602 +0.038419 0.105512 0.0261645 +-0.00651495 0.0746355 0.058305 +0.0450144 0.0945871 0.00816469 +-0.0454802 0.123445 -0.0105099 +-0.00122028 0.0938312 -0.0334376 +-0.067038 0.143551 -0.013347 +0.043578 0.0888313 -0.0037919 +-0.0238161 0.078256 0.0534268 +-0.0455234 0.131922 0.0119481 +-0.0735087 0.137262 0.0493527 +-0.0183224 0.184952 -0.0232094 +-0.0148238 0.091051 -0.0367095 +-0.000496937 0.0620135 0.0565388 +-0.0217336 0.0611778 -0.0340471 +-0.0922703 0.125567 0.0322584 +0.0255559 0.0952317 -0.0208124 +-0.0748894 0.152721 -0.0218881 +-0.0770206 0.0981288 0.0365817 +-0.0262775 0.073604 0.0447421 +0.00842909 0.131472 0.01278 +-0.0815194 0.125984 0.0522053 +-0.0768497 0.156895 -0.0209209 +-0.0774933 0.0717304 0.000534742 +-0.0610597 0.172553 -0.0606091 +-0.00957846 0.178815 -0.0287373 +-0.062208 0.167823 -0.0505845 +-0.0225076 0.125867 0.0188793 +-0.0580565 0.0334897 0.00410791 +-0.00649004 0.112763 0.0415025 +-0.00176067 0.0755229 -0.0360316 +0.0456774 0.0904203 0.00916591 +0.0441351 0.0749462 0.0250125 +-0.0810675 0.11076 0.0435122 +0.00990869 0.048971 0.0492516 +-0.0728744 0.10362 -0.0122376 +0.0374772 0.106859 -0.00183322 +0.0151574 0.0988592 -0.0229537 +-0.016863 0.0640072 0.0526042 +-0.0418006 0.0462579 -0.0152948 +-0.0768234 0.0927696 0.0379671 +-0.0661935 0.155092 0.00556387 +-0.0810703 0.0752023 0.0214152 +-0.0235527 0.156826 -0.00518035 +-0.0194871 0.0883195 0.0557235 +-0.0716986 0.077793 -0.0140498 +-0.010631 0.0389663 -0.00962591 +-0.0570892 0.0602319 -0.00257411 +-0.0419839 0.128576 0.0133734 +-0.0151399 0.0382506 0.0121533 +-0.0759996 0.139851 -0.00609906 +-0.0506105 0.0694238 0.0381651 +-0.0658919 0.11864 0.0504465 +-0.0528899 0.106976 -0.018917 +-0.0521172 0.0545658 0.0256302 +-0.005498 0.103045 0.0437796 +-0.0524893 0.156469 0.0106374 +-0.0439563 0.147482 -0.0018962 +0.00349012 0.116915 0.0395094 +-0.0116538 0.0496371 -0.0310034 +-0.0360677 0.156277 -0.0104898 +0.0262747 0.0376552 0.0265482 +0.00369465 0.0390982 -0.00688719 +0.037401 0.0414131 -0.00242752 +-0.010004 0.0383201 0.0185669 +-0.0807853 0.0817556 0.0323751 +-0.00609738 0.037339 0.0487481 +-0.0254987 0.0945485 0.0446378 +-0.0446176 0.0345408 0.0396657 +-0.0522913 0.124591 -0.00759738 +-0.0244524 0.16187 -0.0148048 +-0.0144465 0.128429 0.00434765 +-0.0238211 0.0384511 -0.00993154 +0.0184111 0.122524 0.0307587 +-0.0815439 0.112456 0.0456165 +0.0549908 0.0567623 0.0266396 +0.0309112 0.0754873 0.0429619 +-0.0278697 0.103003 -0.0233536 +-0.0640545 0.149152 -0.0269946 +-0.0594536 0.133932 0.0368692 +0.0130152 0.130057 0.0144613 +0.0491953 0.0732159 0.0116573 +-0.0364993 0.0733348 0.0420574 +-0.0859116 0.107692 0.0193681 +0.0386236 0.109277 0.0110826 +0.00584547 0.0353648 -0.01428 +0.0198737 0.0358544 0.0359282 +-0.0174269 0.182963 -0.0250022 +0.0258436 0.0563286 -0.0217568 +0.0362122 0.112176 0.0188059 +-0.0564979 0.0805451 0.0445004 +0.0450117 0.0805305 0.000199058 +-0.043786 0.126623 -0.00583839 +0.0366462 0.100736 0.0320541 +-0.0198519 0.0357263 0.0525976 +-0.0872471 0.125707 0.0473263 +-0.0180735 0.0611876 0.0510587 +-0.0608049 0.0596005 0.019786 +0.0269735 0.121605 0.0224835 +0.033449 0.0380742 0.000639692 +-0.0174889 0.0856455 0.0572522 +-0.0298765 0.0607745 -0.022409 +-0.0371209 0.127449 0.0017956 +-0.0397839 0.0471068 -0.0160895 +-0.0245336 0.118082 0.0325274 +-0.0715136 0.0887445 0.0416191 +0.00419323 0.0880606 -0.0335488 +0.0353118 0.0520079 -0.00674902 +-0.00049849 0.101653 0.0443576 +-0.0570055 0.133804 -0.00545801 +-0.0215772 0.158162 -0.00503193 +-0.0640639 0.0351963 0.0227232 +-0.00287353 0.108795 -0.0218002 +0.0462936 0.0792458 0.00718673 +-0.00951316 0.0575536 0.0537045 +-0.0477812 0.0840973 -0.0215817 +-0.0526608 0.0504363 0.0276515 +-0.0340312 0.123966 -0.00509105 +0.00648697 0.11688 0.0387497 +0.0343069 0.0578226 0.0371782 +-0.0220745 0.169763 -0.0127977 +-0.0106374 0.0466553 -0.0295813 +0.0335656 0.114779 0.000629741 +-0.0269131 0.180109 -0.00739997 +0.0390081 0.105539 0.000161276 +-0.00175381 0.0993639 -0.0251444 +0.040909 0.0985658 0.0261474 +-0.0617277 0.159994 -0.0345941 +-0.0434138 0.111151 -0.0176174 +0.0319241 0.0700307 0.0408624 +-0.0349471 0.109117 -0.019515 +-0.0733885 0.111282 0.0466166 +0.0354121 0.0430461 -0.00417186 +-0.093028 0.117371 0.013308 +-0.0756832 0.149968 -0.01987 +0.0201512 0.0605237 0.0483852 +-0.0639979 0.158311 -0.048587 +0.0410638 0.0928718 -0.0077952 +-0.0845757 0.151155 0.0298105 +-0.0752762 0.167899 -0.0253615 +0.0587584 0.0580034 0.00517536 +-0.070971 0.166609 -0.0480118 +-0.0488701 0.10281 -0.0210946 +-0.0609926 0.128204 -0.00783795 +-0.0772884 0.155547 -0.0128979 +0.0120566 0.130535 0.0112565 +-0.0655484 0.039711 0.0142785 +-0.0465128 0.0438401 0.043121 +-0.0215234 0.0739469 0.0526909 +0.0238579 0.0490757 0.0395236 +-0.00446924 0.111373 0.0424038 +-0.0646993 0.150616 -0.0327557 +-0.0547216 0.118372 0.0366122 +0.055991 0.067441 0.024671 +-0.0164973 0.0485745 0.0476342 +-0.0243246 0.0415463 0.0540712 +-0.0679818 0.0653371 -0.00356488 +-0.0887934 0.125677 0.0460403 +-0.0672794 0.176766 -0.0591515 +-0.0201696 0.169725 -0.0202727 +0.0232197 0.0818757 -0.0256198 +-0.0521106 0.0503642 0.0236349 +-0.00378569 0.0826645 -0.03749 +0.0103848 0.03606 -0.0224393 +0.0144027 0.129384 0.00642559 +0.0154718 0.101771 0.0468044 +-0.0222044 0.174173 -0.0211642 +0.0605561 0.0664891 0.0161665 +-0.0110072 0.128401 0.0244439 +0.00979123 0.127622 -0.00353983 +-0.0586426 0.0335837 0.0110854 +-0.0324964 0.0518418 0.0373712 +0.0339681 0.114736 0.0222644 +-0.0278327 0.179989 -0.0150111 +0.0505141 0.0610459 0.0301699 +-0.084345 0.0818627 0.0244959 +-0.0780694 0.106243 0.0333548 +-0.0400434 0.149481 0.00241998 +0.0415851 0.0779004 0.0302476 +-0.0934884 0.117419 0.0203018 +0.0145324 0.0686382 0.0526166 +0.0105088 0.0546576 0.0523588 +-0.0166719 0.128014 0.0194984 +0.0111864 0.115382 -0.0163281 +0.0433489 0.0761902 -0.00378764 +0.00361131 0.0929227 -0.0324448 +0.0374765 0.0967619 0.0332563 +0.0118435 0.0418607 0.0449613 +0.00151372 0.070315 0.0563646 +-0.089555 0.092956 0.0194329 +-0.0309867 0.0458642 -0.0271867 +-0.0127025 0.0628523 -0.0366298 +-0.0211402 0.175693 -0.0149194 +-0.0410644 0.0466663 -0.0156422 +0.0229642 0.0564103 0.0453711 +-0.0689131 0.06155 0.0163724 +-0.0351956 0.0394954 0.0475468 +0.0545544 0.0478595 0.011201 +0.0307617 0.0848812 0.0428147 +-0.0854234 0.100771 0.000422318 +-0.00263926 0.0481807 -0.0301073 +0.0341204 0.0781827 0.0405841 +-0.0753485 0.151324 -0.0238793 +-0.040104 0.0359968 0.0427867 +0.00880995 0.127795 -0.00370552 +-0.0546717 0.0587861 -0.00643621 +-0.0527782 0.0338002 0.0103069 +-0.0644915 0.087588 0.0448694 +-0.0649403 0.125308 -0.00887181 +-0.0623267 0.035582 -0.00867786 +-0.0178682 0.127784 0.00598386 +-0.0477624 0.119115 -0.0139706 +-0.0272958 0.178509 -0.0169626 +-0.036773 0.0446897 0.0419462 +-0.0643144 0.0445281 -0.000908113 +0.0310215 0.117934 0.00259488 +-0.0657027 0.155342 0.0275329 +0.00812544 0.105869 -0.0206053 +-0.0845132 0.150109 0.0051703 +0.0147267 0.0343671 -0.00408399 +-0.0738652 0.150214 0.0382196 +-0.0396346 0.151103 -0.0056598 +-0.0548476 0.0665624 0.0361422 +-0.053656 0.116868 0.0345992 +0.0407085 0.0956949 -0.00580768 +-0.0407505 0.126266 0.0196745 +0.0327193 0.0632979 0.0402054 +-0.0423878 0.124291 -0.00941969 +0.0148847 0.0378033 0.0441286 +-0.0385893 0.036902 -0.00962928 +-0.0735502 0.095526 0.040254 +-0.0625469 0.169393 -0.0495927 +-0.0666556 0.0360676 0.0353877 +0.00702297 0.127188 0.0294846 +0.0123661 0.0479119 -0.026429 +0.00707963 0.0365612 -0.00575515 +0.00660499 0.0617786 0.0553203 +-0.056364 0.156406 0.0105108 +-0.02141 0.0511007 0.0448554 +-0.0417892 0.0855226 -0.0213401 +-0.0454873 0.0789625 0.0423892 +0.0541155 0.0731329 0.017974 +0.0124978 0.092313 0.0523832 +-0.0184886 0.0801089 0.0571361 +-0.0426749 0.0622014 -0.0131851 +-0.0711139 0.162407 -0.0449498 +-0.0234912 0.0474961 0.0510145 +-0.0722633 0.0367738 0.0082856 +-0.0207862 0.0638606 0.0480406 +-0.0570496 0.0562866 0.00362097 +0.023226 0.077646 -0.0258357 +0.00592655 0.0339685 0.0148513 +0.0327331 0.0942636 0.0404449 +0.0170625 0.0448711 0.043693 +0.0335588 0.0862851 0.0416032 +-0.0588111 0.0334057 -0.00501142 +-0.0718597 0.148728 0.0404251 +-0.0700765 0.0619608 0.0139832 +-0.0302069 0.174221 -0.00514504 +-0.088803 0.151599 0.0211964 +0.0155832 0.0893609 -0.0286847 +0.0270636 0.120631 0.00113345 +0.033576 0.0781814 -0.0177928 +-0.0894235 0.0942851 0.0164251 +-0.0386513 0.0344774 0.0357393 +-0.0348698 0.176878 -0.00628812 +-0.0102548 0.179004 -0.0295955 +-0.0708792 0.115031 -0.00817569 +0.0203316 0.0551325 -0.0272049 +-0.0942207 0.120117 0.0202902 +-0.0704743 0.121802 0.053345 +0.0441954 0.0847004 0.0251589 +-0.0662148 0.171945 -0.0435535 +-0.0579078 0.0494657 0.0056917 +-0.0364996 0.0789928 0.0425809 +0.00849936 0.0744764 0.056192 +-0.0263916 0.0563779 0.0383176 +-0.0556017 0.0336949 -0.0101219 +-0.0593537 0.140997 0.0335026 +-0.0941834 0.120103 0.0162919 +0.0184196 0.0442138 -0.0226321 +-0.0628603 0.033866 0.0135258 +-0.0229828 0.0566251 0.0433992 +-0.0295276 0.0383617 0.0343291 +-0.0439439 0.166904 -0.00881722 +-0.00750585 0.0633646 0.0562436 +-0.0553809 0.0486564 0.0109541 +0.0106398 0.0390088 0.044914 +0.0440071 0.0846602 -0.00280808 +-0.0184891 0.0743773 0.0548673 +0.0214529 0.0415824 -0.013701 +-0.0137336 0.0383402 0.0141683 +-0.0895155 0.0983259 0.0124123 +0.0129339 0.063079 0.0520141 +-0.0749499 0.112554 -0.00662315 +-0.0128237 0.0855345 -0.0387685 +-0.0175101 0.0381991 0.0207599 +-0.065046 0.0423247 0.012291 +-0.0570589 0.0507155 -0.000374425 +-0.0630045 0.132588 -0.00795426 +-0.0415001 0.0972709 0.0420669 +0.0313679 0.117954 0.0212794 +-0.00373539 0.0684024 -0.0350771 +-0.0896129 0.139294 0.0321884 +-0.0239769 0.0381215 0.0231095 +0.0347467 0.0670098 -0.0158076 +0.0178644 0.101883 -0.0218675 +-0.064813 0.0428917 0.034688 +-0.0618962 0.0443648 0.0286813 +0.0425837 0.100055 0.002186 +-0.056712 0.0708617 -0.0156392 +-0.066713 0.154086 0.0315791 +-0.0348246 0.0872331 -0.0245609 +-0.0155018 0.080076 0.0569734 +-0.0431381 0.128903 0.00398376 +0.0456202 0.0421608 0.019117 +-0.0637474 0.0766435 -0.0177206 +-0.070335 0.0339385 0.00479187 +-0.0452276 0.131073 0.0164666 +0.0175902 0.128186 0.00902123 +-0.0332219 0.0344808 0.0386469 +-0.000130337 0.0395577 0.0357254 +-0.0384117 0.12376 -0.00887525 +-0.0384745 0.0533908 0.0391471 +-0.0105486 0.0921685 -0.035821 +-0.0292627 0.125707 0.0105611 +-0.0740612 0.16798 -0.0430295 +-0.0794475 0.0732175 0.0216948 +-0.0525459 0.0430871 -0.00935537 +-0.0275149 0.0591111 -0.027433 +-0.0608279 0.0910686 -0.0191968 +0.0214831 0.0388585 0.0402401 +-0.0185078 0.0382343 0.0205228 +-0.0193476 0.0973552 -0.0251961 +-0.014626 0.03858 -0.00263697 +0.0364765 0.110061 0.0246179 +0.0394879 0.0499122 0.0322705 +-0.0738314 0.151256 -0.033887 +-0.0276072 0.0488225 -0.0246209 +0.0254616 0.0727112 0.0456024 +-0.054118 0.157553 -0.00229988 +-0.0100751 0.129607 0.0204184 +-0.0507271 0.115538 0.0335799 +-0.064203 0.176904 -0.0544031 +-0.0327997 0.0624741 -0.0154176 +-0.050486 0.0585567 0.0325562 +-0.0115057 0.0716604 0.0558672 +-0.041271 0.0338554 -0.00188008 +0.00149737 0.0969588 -0.0286791 +0.0222207 0.0833264 -0.0261432 +-0.0379669 0.0433397 0.0417712 +0.0433566 0.094461 -0.000803958 +-0.0485055 0.0490796 0.0381424 +-0.0398915 0.109923 -0.0189257 +-0.00650042 0.0533369 0.0530605 +-0.0902689 0.112791 0.0182006 +-0.0256204 0.0436547 -0.0287136 +-0.0432877 0.171276 -0.00598005 +0.00651867 0.0674599 0.0552944 +0.00755739 0.101711 0.046537 +0.0201484 0.0899648 -0.02526 +0.00621941 0.0351341 0.00654928 +-0.0641258 0.0611318 0.00140431 +-0.0841699 0.0979316 0.0296062 +-0.0893171 0.151601 0.0194969 +-0.0509112 0.0517382 0.0331779 +-0.0345095 0.0761212 0.0417709 +-0.0210879 0.0852798 0.0561484 +-0.0647084 0.033787 -0.00655215 +0.0485032 0.0638048 0.0293893 +0.0553414 0.0563023 0.000211666 +0.031191 0.0977616 -0.015509 +-0.0271419 0.168228 -0.0179326 +-0.0594934 0.0832968 0.0436941 +0.00712427 0.107292 -0.0202517 +-0.0670075 0.139964 -0.00790796 +-0.072631 0.169409 -0.0470274 +-0.0668128 0.0894987 -0.0177562 +-0.0638648 0.166212 -0.0336016 +-0.0305285 0.0348948 0.0458677 +-0.07494 0.0707543 0.0282709 +0.0217204 0.105135 -0.0173432 +0.0129112 0.111627 -0.0182976 +-0.0346615 0.0395406 0.0484261 +-0.0244963 0.105758 0.0419767 +-0.0275166 0.057436 0.037149 +-0.071563 0.151347 -0.0436244 +-0.00477478 0.0812297 -0.0373809 +-0.0544968 0.108447 0.0390956 +0.0191276 0.0370481 -0.0116797 +-0.0477678 0.125154 -0.0082648 +0.00907863 0.112423 -0.0191367 +-0.0148223 0.129108 0.012888 +-0.0685095 0.148391 0.0402581 +0.0438124 0.093116 0.0231537 +-0.0295173 0.175738 -0.0052542 +-0.0580932 0.155356 0.0200663 +-0.0140302 0.116852 -0.0157862 +-0.00427283 0.034883 0.0462122 +-0.0365117 0.0860935 0.0436284 +0.0428337 0.0789534 -0.0047828 +0.0143759 0.121374 -0.0108038 +-0.0478629 0.0335429 0.00613354 +0.0399096 0.0632641 -0.00677014 +0.0382182 0.0855917 -0.0147556 +-0.0586226 0.156199 0.00971481 +-0.0768739 0.0698402 0.0216311 +0.0359859 0.0660034 0.0379002 +-0.0517494 0.0782459 -0.0193853 +-0.0836382 0.0870656 -0.00453769 +0.0314216 0.0415146 -0.00377022 +-0.0633942 0.159878 -0.0495887 +-0.0762229 0.149992 -0.0128764 +0.0360298 0.0573371 -0.00970954 +-0.0378631 0.100009 -0.0219618 +-0.0631703 0.172516 -0.0516045 +-0.0893681 0.0902559 0.0194368 +0.0559048 0.0631077 0.000905369 +0.00350533 0.0758855 0.0563752 +0.0327662 0.0475454 0.0312717 +-0.0144964 0.104421 0.0432413 +-0.0925078 0.121485 0.0292837 +-0.0225266 0.123574 -0.00478676 +0.027859 0.114683 -0.0075901 +0.0336358 0.0725575 -0.0168317 +0.0133955 0.0900754 0.0528858 +-0.0320964 0.160758 -0.0138294 +-0.0665218 0.173689 -0.0465659 +-0.0314315 0.062325 -0.0194293 +0.0355057 0.0498307 0.031489 +0.0409937 0.0830284 -0.00976566 +-0.0484259 0.152144 0.0105657 +-0.0760489 0.0702549 0.00053996 +-0.0939567 0.121435 0.0142863 +0.0458128 0.0848143 0.0141708 +-0.088753 0.130866 0.00325856 +-0.0762076 0.0680671 0.0162505 +0.0295583 0.0594698 -0.0188239 +-0.0470685 0.0362699 0.0454096 +0.0515085 0.0678015 0.0264788 +0.0229945 0.0535474 0.0436214 +0.0102584 0.0738736 -0.0323425 +-0.0208293 0.0841002 -0.0385977 +0.013479 0.118711 -0.0139326 +-0.0577142 0.0723919 -0.0167433 +0.0343469 0.0740244 -0.0157906 +-0.0384895 0.050603 0.0393394 +-0.0411819 0.166655 -0.0111213 +-0.0314187 0.0525029 -0.0133876 +-0.0530781 0.119794 0.0354828 +0.0402398 0.0815675 -0.0107641 +-0.0334936 0.0817447 0.0419617 +-0.0284374 0.0381394 0.00411543 +-0.0669412 0.126769 -0.00883964 +-0.089797 0.129515 0.00524651 +-0.0607661 0.0796035 -0.0191344 +-0.0878523 0.0860961 0.00747941 +-0.00447426 0.0385132 0.0213354 +0.0222429 0.0463236 0.0406841 +-0.0167958 0.0799195 -0.0388883 +-0.0714505 0.16941 -0.0490283 +-0.00251639 0.0442645 0.0466529 +-0.0648891 0.0981501 -0.0170112 +0.00754987 0.100371 0.0472771 +-0.0694963 0.16803 -0.0520069 +-0.0920162 0.126943 0.0352547 +0.0233968 0.0355618 0.0133136 +-0.0660161 0.169448 -0.0590294 +-0.0555411 0.128344 0.0372391 +-0.0488244 0.0927169 -0.0215945 +0.0343104 0.114465 0.0209626 +-0.0501985 0.140132 0.0173988 +-0.0658096 0.0445087 0.000718728 +-0.0512856 0.136981 0.000438627 +-0.0269157 0.0703179 -0.0345192 +-0.0636699 0.112355 0.0376208 +-0.0754912 0.144221 0.0449451 +-0.062524 0.167829 -0.0475902 +0.030542 0.0511254 -0.0127382 +-0.0237052 0.0596068 -0.0321069 +-0.0547922 0.153188 0.0241866 +-0.0414961 0.0902351 0.0425692 +-0.0494981 0.0477699 0.0395132 +0.0289271 0.110086 0.0349831 +-0.0402206 0.0433137 -0.0233156 +-0.0246897 0.0560336 -0.0294195 +0.00733033 0.058195 -0.0305865 +-0.0633574 0.155908 0.0123853 +-0.0679376 0.162368 -0.0549778 +-0.0588165 0.0667309 0.0351477 +-0.0598716 0.0453976 -0.00333599 +-0.0238165 0.0812337 -0.0381734 +-0.047565 0.0370224 -0.0142792 +-0.010699 0.104948 -0.0231645 +0.0375184 0.0915609 -0.0128884 +-0.056974 0.0573893 0.011763 +-0.00401542 0.033994 -0.0206047 +0.0133173 0.0638081 -0.0300932 +-0.0402517 0.127178 -0.0024642 +0.00549546 0.0489597 0.051102 +-0.0755445 0.0668624 0.00857418 +-0.0465015 0.0643139 0.0383309 +0.00586085 0.130491 0.00185259 +-0.00908444 0.0392597 0.0359512 +-0.0724815 0.0696506 0.0297377 +-0.0588318 0.146817 0.0344225 +-0.0460118 0.126697 0.0245216 +-0.044079 0.0336811 -0.000461832 +-0.0565021 0.0946206 0.04473 +-0.0615844 0.155311 -0.0225818 +-0.0650869 0.155169 -0.00713868 +-0.089472 0.092961 0.0204149 +-0.0824758 0.0764829 0.0200121 +0.0429803 0.0916104 -0.003806 +-0.0914285 0.144743 0.0221537 +0.00329581 0.06408 -0.0335736 +-0.0554437 0.158541 0.0079523 +-0.0624977 0.0789785 0.042462 +0.00538842 0.0383711 -0.011506 +-0.0682947 0.162375 -0.0539731 +-0.0809901 0.135346 -0.00326263 +-0.0418435 0.0928469 -0.022966 +-0.0664939 0.0917254 0.0436166 +-0.0741328 0.170753 -0.0306566 +0.00842498 0.094018 -0.0295425 +-0.00912603 0.126983 -0.00460672 +-0.0144839 0.0911543 0.0563071 +-0.0247385 0.124904 0.000549003 +-0.064327 0.034541 0.0284972 +-0.0668589 0.156842 -0.00635476 +-0.0565065 0.0629707 0.0300974 +0.0567694 0.0522665 0.0211855 +0.0120332 0.0793354 0.0543348 +0.00749695 0.108523 0.0409368 +-0.0385157 0.0761871 0.0423388 +-0.0861163 0.11208 0.0430934 +-0.0554974 0.0776601 0.0434775 +-0.0519782 0.0531903 0.0286494 +0.00382899 0.0387567 -0.00467455 +-0.0437453 0.0348723 0.00757323 +-0.0876033 0.102265 0.00739801 +-0.0538689 0.152421 0.0214004 +0.0305964 0.0407785 0.0282841 +0.0465387 0.0750529 0.00819241 +-0.0664147 0.112558 0.0425241 +-0.0212669 0.123736 0.0252343 +-0.0144966 0.0485988 0.0478804 +-0.0270125 0.0891105 0.0478066 +-0.0328048 0.0886955 -0.0250147 +-0.0387676 0.0812185 -0.0204237 +-0.0179622 0.106228 -0.0225141 +-0.0121468 0.17267 -0.0267827 +-0.0155019 0.119619 0.0357771 +-0.0763961 0.0968047 0.0374195 +-0.00349611 0.0897823 0.0565938 +-0.0378917 0.0335733 -0.0268663 +-0.0464981 0.0451704 0.0419279 +0.0287219 0.115289 -0.00622497 +-0.0639806 0.135327 0.039077 +-0.045498 0.105695 0.0408472 +0.0546227 0.0668075 0.00110467 +-0.0690913 0.143 -0.0123014 +0.0356753 0.0619319 0.0374332 +-0.0141081 0.128922 0.00736661 +-0.0561495 0.0341243 0.0270787 +-0.038546 0.128369 0.00715642 +-0.0876142 0.116272 0.0465171 +-0.0722303 0.134063 0.0500963 +-0.0156039 0.0392636 -0.0272219 +-0.0361326 0.034299 0.0293707 +0.0285657 0.120967 0.00738594 +0.0111022 0.114226 -0.0170859 +-0.0218549 0.118022 -0.0129203 +0.0460721 0.0848306 0.00817735 +-0.0800935 0.138964 -0.00379173 +-0.0574953 0.0747475 0.0420563 +-0.00684325 0.130599 0.0100344 +0.020602 0.0768409 0.0509288 +0.0342103 0.0795441 0.0407378 +-0.0387822 0.0841715 -0.021953 +0.00854197 0.104373 0.044167 +0.0284181 0.0835438 0.0446794 +-0.0809789 0.0720684 0.0125422 +-0.0870329 0.152942 0.0187545 +0.0227098 0.105005 -0.0172062 +-0.0259693 0.156664 -0.00260696 +0.00630512 0.0970077 -0.026738 +-0.0293004 0.175699 -0.00559167 +-0.00764633 0.048167 -0.0303862 +-0.045682 0.0680577 -0.0156409 +-0.0545225 0.0645764 -0.00897215 +-0.0511988 0.137011 0.0243968 +-0.00714364 0.101607 -0.0236448 +0.00975279 0.123922 0.0333795 +-0.069363 0.163799 -0.0509746 +-0.000145407 0.0355938 -0.0156782 +0.0251101 0.0562501 -0.0227775 +0.047185 0.0692848 0.0242283 +-0.0610844 0.0335982 -0.00747508 +-0.0215973 0.0387212 -0.015323 +0.00621551 0.0824281 -0.0337654 +-0.0768656 0.120803 -0.0071099 +-0.072234 0.147352 -0.0242316 +-0.0251276 0.16525 -0.016804 +-0.00350994 0.110634 -0.0212045 +-0.051883 0.143128 0.0183637 +0.0388034 0.0687739 -0.0117998 +0.0522529 0.049588 0.0243549 +-0.0484974 0.0974063 0.0440017 +0.0292296 0.08295 -0.0208022 +0.0215976 0.121636 0.0305088 +-0.0576661 0.143885 0.0324483 +-0.062789 0.152113 -0.0295989 +-0.0686144 0.0632303 0.0220506 +-0.0812769 0.136213 -0.00276757 +-0.0898521 0.112924 0.020019 +0.0399617 0.0984844 -0.00581339 +-0.0197337 0.0627381 -0.0357065 +-0.0715197 0.0915892 0.0417662 +-0.0176796 0.037751 -0.0173923 +-0.0034931 0.0519852 0.0535284 +-0.0477302 0.0753108 -0.0175447 +-0.0720239 0.158203 -0.0389152 +0.012618 0.0562866 0.0514947 +-0.00341476 0.129699 0.000449344 +0.00761699 0.0345564 0.0219225 +0.0197796 0.101487 -0.0214363 +-0.0718751 0.150885 -0.0428436 +0.0226049 0.0994887 0.0451477 +-0.0275114 0.0379423 0.00991362 +0.0449899 0.0861501 0.00118902 +-0.0724942 0.0928706 0.0413391 +-0.0668563 0.151928 -0.044894 +-0.00758529 0.0395118 0.037828 +-0.0717266 0.143977 -0.0139286 +-0.0485566 0.0446478 -0.0101195 +-0.0498454 0.098516 -0.0220736 +-0.0687032 0.155739 0.000270534 +0.0305837 0.118921 0.00529549 +0.0181431 0.0408036 0.0434958 +-0.0644897 0.161538 -0.0184978 +-0.082117 0.127195 0.0520765 +0.0194801 0.0975854 0.0469408 +-0.0593004 0.0460479 0.0107053 +-0.051494 0.097382 0.0437255 +-0.0629042 0.151488 -0.0283316 +-0.0520794 0.132523 0.0317044 +-0.0086348 0.124041 -0.00947049 +-0.0408505 0.0971293 -0.022095 +-0.0501242 0.144161 0.00100252 +-0.0374501 0.127748 0.0031441 +-0.0242006 0.107431 -0.0217757 +-0.0185705 0.0597254 0.0501838 +0.0506634 0.0663167 -0.000433246 +-0.0778197 0.0981202 0.035968 +-0.0344836 0.0604651 0.0395531 +0.0141481 0.100268 -0.0227789 +-0.0201048 0.0920391 0.0535514 +0.0405223 0.0582848 0.0307512 +-0.0234669 0.126337 0.0156088 +-0.0879353 0.140547 0.0390784 +0.0495003 0.0691238 0.025332 +-0.0550177 0.034541 0.0409139 +-0.0558687 0.156831 -0.000812957 +-0.033113 0.162236 -0.0143657 +-0.0040053 0.127195 0.0298616 +0.00247063 0.0977635 0.0514765 +-0.0372934 0.126961 0.0179492 +0.00433485 0.120467 -0.0137766 +0.00930976 0.0595795 -0.0301167 +0.0437257 0.0902921 0.0241674 +-0.0363397 0.0344675 0.0327184 +0.000637516 0.0346318 0.0420689 +0.0283669 0.0563832 0.0408635 +-0.0890554 0.136524 0.0291987 +-0.0526322 0.0603614 -0.00917272 +-0.0555168 0.0610654 0.0262173 +-0.0398616 0.102806 -0.020798 +-0.0554959 0.0959795 0.0436611 +-0.0625279 0.0435825 0.012569 +-0.012539 0.0432081 0.0504383 +-0.0295399 0.0777526 0.042206 +0.0250153 0.0699448 0.0449142 +0.0418505 0.0929433 -0.00581175 +0.00749052 0.0923616 0.0534281 +-0.0508873 0.105589 -0.0194525 +-0.0577516 0.0752955 -0.0185275 +-0.0341251 0.166782 -0.00385534 +0.0204867 0.0961927 0.0470968 +-0.0860696 0.110951 0.0368762 +-0.0623929 0.0445563 0.039213 +0.0212831 0.0679005 -0.027755 +-0.0459741 0.03576 0.00812075 +-0.0128757 0.105895 -0.0226089 +-0.0713104 0.164383 -0.0152637 +-0.00570768 0.129479 0.0248833 +-0.0759611 0.0715461 -0.00349282 +-0.0154987 0.0485755 0.0476399 +-0.0271627 0.125166 0.0172175 +-0.052909 0.0559665 0.0126205 +0.0445771 0.0875296 0.0231612 +-0.0679602 0.132601 -0.00851511 +-0.0735016 0.14861 -0.0288774 +0.0321816 0.0968615 0.0396789 +-0.0617331 0.156868 -0.0205842 +-0.0310423 0.0467686 -0.0260418 +-0.0285615 0.0382432 0.0537594 +-0.0934477 0.121479 0.0262963 +-0.0220941 0.0710555 0.0505203 +-0.0299308 0.0348009 0.0443343 +-0.0161025 0.0382877 0.022773 +-0.0328698 0.101492 -0.0223548 +0.0454742 0.0412367 0.0106737 +-0.028101 0.0890412 0.0460663 +-0.0440047 0.127209 -0.00443148 +0.0593281 0.0649895 0.00613553 +0.0127896 0.130142 0.00867876 +0.0391468 0.0887707 0.0338836 +0.0223265 0.0535979 0.0444334 +-0.0897234 0.125377 0.0042981 +0.0287018 0.0447465 0.0341399 +-0.0924969 0.121493 0.0302824 +-0.0717492 0.0821807 -0.0161321 +-0.0756445 0.156326 -0.00458549 +0.00148921 0.104407 0.0433078 +-0.0361895 0.0355992 0.0192692 +-0.0662775 0.0734947 0.0382764 +-0.0730867 0.169281 -0.0259539 +-0.00640617 0.0386668 0.0262232 +-0.053287 0.0610602 0.0282137 +-0.0820828 0.0871799 0.032118 +-0.0474969 0.0477925 0.0396528 +0.0505278 0.0445977 0.0162148 +0.0314571 0.0378867 -6.50808e-05 +0.0244076 0.117212 -0.0083203 +0.0193833 0.052146 -0.0261511 +0.0213663 0.0593118 -0.0264401 +-0.0223265 0.0696009 0.0493961 +-0.0803036 0.100707 0.0327244 +0.0516025 0.0650498 -0.00116678 +-0.0572939 0.0597447 0.0223608 +0.0272121 0.088765 -0.0222319 +-0.0760712 0.152304 0.0343668 +0.0287584 0.0359201 0.00291435 +-0.00327774 0.125061 -0.00864173 +-0.0492123 0.134029 0.0252722 +-0.0157732 0.0799164 -0.0389165 +0.0137184 0.0699424 0.0531931 +0.0181521 0.124421 0.0277923 +0.0195548 0.127052 0.0182976 +-0.0788582 0.171448 -0.0399026 +-0.0820398 0.150272 0.03397 +0.0134064 0.0478115 -0.0258783 +-0.0637307 0.0344451 0.0269565 +0.00741391 0.0920665 -0.0315473 +0.0394368 0.0688303 -0.0107955 +-0.064416 0.154996 0.00586526 +-0.066663 0.144317 -0.015468 +0.0353499 0.042038 0.028119 +-0.00141558 0.03896 -0.0133998 +-0.0338581 0.0334994 -0.0260028 +0.0142608 0.0359816 -0.0203372 +-0.0776263 0.175005 -0.043567 +-0.0525965 0.0345626 0.0431188 +0.0335361 0.0372674 0.00265432 +0.0308902 0.0632769 0.0410591 +-0.0895335 0.144692 0.0121557 +-0.0612693 0.0337096 0.0122134 +-0.00661675 0.0976221 -0.0294208 +-0.0504448 0.128295 0.0323161 +-0.0571803 0.062383 0.0287138 +-0.0529076 0.136719 0.0287121 +-0.0247725 0.0390001 0.0365321 +-0.00277907 0.0769693 -0.0364873 +-0.0894255 0.0956236 0.0134235 +0.0183336 0.0566072 -0.0279953 +-0.0945117 0.124183 0.0222757 +-0.0670539 0.154574 0.0299913 +0.0377471 0.104052 -0.00484079 +-0.0277489 0.0877005 0.0471838 +-0.0465602 0.122394 -0.0114017 +0.0512982 0.0545874 -0.00353058 +-0.0255237 0.116678 0.0329121 +-0.0558854 0.0479468 0.0296668 +-0.0384602 0.127124 -0.00162988 +0.00941217 0.040392 -0.0233006 +-0.0788042 0.109939 0.0428886 +-0.00952807 0.0385271 0.0257083 +-0.0151514 0.041952 0.0515406 +-0.0896796 0.114349 0.0422656 +-0.0130415 0.0639857 0.0543784 +-0.0709434 0.168021 -0.0490096 +-0.042508 0.0562794 0.0398023 +-0.0723361 0.155599 0.00334302 +-0.0804662 0.0800422 -0.00555374 +-0.0320486 0.122707 -0.00572396 +0.0215589 0.120837 -0.00625561 +0.0181166 0.118416 -0.011621 +-0.0473179 0.0397941 -0.0120624 +-0.0797756 0.0706254 0.0155549 +0.00931098 0.130351 0.0216675 +-0.0082877 0.0388999 0.0310374 +-0.0475138 0.156385 0.00914965 +-0.000599084 0.0391028 -0.0250468 +-0.0114889 0.103024 0.0436761 +-0.0176179 0.0378672 -0.0275216 +-0.0423688 0.123346 -0.0104204 +-0.0387324 0.156611 0.00532643 +0.0047217 0.0940547 -0.0316305 +-0.0728512 0.152626 -0.0378881 +-0.00186255 0.103074 -0.0227526 +0.0529842 0.0692584 0.0249064 +-0.0792715 0.107765 0.0320009 +0.0324709 0.0353558 0.0097886 +-0.083008 0.154405 0.0171359 +0.0123335 0.0581189 -0.0294366 +-0.0570144 0.0335354 0.00427397 +-0.0520347 0.0349067 0.0446489 +0.0239781 0.084017 -0.0250643 +0.0450177 0.0875447 0.000184881 +-0.00260981 0.0434451 -0.0255195 +-0.00349422 0.0718336 0.0581766 +-0.0470698 0.154668 -0.0068409 +-0.0764224 0.152995 0.0327283 +-0.0382612 0.0345343 0.0375294 +-0.00240135 0.128537 0.0275513 +-0.0924704 0.117461 0.033305 +-0.0714888 0.127424 0.0521873 +-0.0439578 0.12961 0.0140149 +-0.0725837 0.0763091 -0.0123208 +-0.0595593 0.0341176 0.0246105 +-0.00343172 0.0385593 0.0215021 +0.0311358 0.0782102 0.04331 +-0.0494476 0.122586 0.0319364 +-0.0665119 0.0621274 0.0216726 +0.0544596 0.058178 0.0276568 +-0.0495972 0.118308 0.0316941 +-0.0314789 0.174225 -0.0034609 +-0.0728795 0.116451 -0.00740226 +0.00249754 0.108619 0.0424686 +0.0280724 0.0678498 -0.0217391 +-0.0278862 0.165359 -0.00713919 +-0.0117661 0.182389 -0.0287496 +-2.83383e-05 0.0370817 -0.0151505 +-0.0721646 0.155417 -0.0379087 +0.0297368 0.100819 0.0396604 +0.0224793 0.124852 0.00370943 +-0.0278708 0.104417 -0.0229648 +-0.0388092 0.0372561 -0.0289196 +0.0393949 0.0519685 -0.00680892 +-0.0114113 0.0387598 0.0305221 +-0.0668989 0.0372019 0.0312012 +-0.0634206 0.167809 -0.0425955 +-0.0738654 0.102167 -0.0123482 +0.000515293 0.09714 -0.0288497 +0.00321341 0.034575 0.0192003 +-0.0313524 0.158102 0.00192058 +-0.0879015 0.148743 0.00925863 +-0.0552908 0.158294 -0.000771282 +0.00144018 0.127924 -0.00374837 +-0.0374859 0.0491992 0.0393813 +0.0225251 0.100664 -0.0205487 +-0.0149527 0.0339242 -0.0208085 +0.00432828 0.0582523 -0.0314184 +0.0463488 0.0792498 0.00918224 +-0.0375014 0.105589 0.0387333 +-0.062506 0.149124 -0.0145611 +0.00329475 0.129383 -0.00133175 +-0.00689488 0.0384553 0.0136435 +-0.0384034 0.0343958 0.0323426 +-0.062465 0.163086 -0.0495893 +-0.0639661 0.0690471 0.0355624 +-0.0131121 0.0626059 0.0545133 +-0.0449324 0.0358062 0.00829108 +0.0406445 0.0871881 -0.0107716 +-0.0230795 0.0932192 0.0494322 +-0.0186385 0.0465274 -0.0284289 +-0.0571213 0.0576422 0.00058007 +-0.0705055 0.0343308 -0.00278598 +-0.0578994 0.112578 -0.0159728 +-0.0106785 0.0383169 0.0202432 +-0.0593417 0.119814 0.0404797 +-0.0505461 0.0403717 -0.011217 +-0.0453989 0.0342539 -0.0215146 +-0.011074 0.178648 -0.0249266 +-0.0523515 0.0582314 0.0273813 +-0.0254941 0.0486931 0.0489695 +0.0374187 0.0855245 -0.0157145 +0.0453002 0.0932088 0.00816687 +-0.0612769 0.133878 0.0377403 +0.00152786 0.0745369 0.0570999 +0.0245032 0.122816 0.00162459 +-0.00938967 0.130192 0.0162996 +-0.0703883 0.0339052 -0.000577152 +-0.0733601 0.156855 -0.0299134 +-0.0171472 0.166778 -0.0196136 +0.0116998 0.0819851 0.0538895 +-0.0502854 0.11522 -0.0158495 +0.050316 0.0546413 -0.00421167 +-0.0667548 0.115724 0.0491405 +-0.0609102 0.120922 -0.00906619 +-0.0866023 0.111811 0.0414218 +-0.0669546 0.128237 -0.00895731 +-0.0654028 0.177571 -0.0533847 +-0.0437352 0.0753785 -0.0184868 +-0.0329958 0.0793378 -0.0275102 +-0.00469334 0.101051 0.0441761 +-0.0137252 0.0671481 -0.0375067 +-0.0531289 0.138241 -0.000765665 +-0.0361236 0.163705 -0.0141169 +-0.0249029 0.0722756 0.0462509 +-0.0119797 0.0383916 0.0235247 +-0.0246067 0.157782 -0.00250374 +-0.0748771 0.109206 -0.00842538 +-0.0314894 0.0845774 0.0421902 +-0.0849159 0.123546 -0.00333555 +0.052731 0.0672551 0.000627241 +0.0453449 0.0710055 0.0220458 +-0.0665131 0.0419133 -0.00333369 +0.0194908 0.113962 0.0368661 +-0.0674148 0.142782 -0.0112266 +-0.0931203 0.121503 0.0403997 +-0.0084076 0.0932235 -0.0348708 +0.0125532 0.0900642 0.0534187 +0.0432399 0.0747788 -0.00379578 +0.00477967 0.130785 0.0214562 +0.0461172 0.0759623 0.0190037 +-0.0870553 0.118453 0.000244653 +0.00651257 0.056103 0.0529931 +-0.0623783 0.167824 -0.0485899 +-0.0258496 0.0864897 0.0509722 +0.0602482 0.0581464 0.0141691 +-0.0923082 0.120116 0.0282975 +0.00750533 0.0660627 0.0552439 +0.060666 0.0609482 0.0151682 +-0.0674289 0.114212 0.0481237 +-0.0514122 0.146842 -0.00193867 +-0.0768562 0.117877 -0.00659127 +-0.0825551 0.152911 0.00706582 +-0.0839745 0.0804809 0.0225006 +0.041166 0.0819934 0.0314416 +-0.0655442 0.155124 -0.0481259 +-0.0384965 0.0620329 0.0413169 +-0.0627141 0.159943 -0.0425974 +-0.0767176 0.159013 -0.0120318 +-0.0856607 0.0832001 0.00448541 +-0.0278526 0.181478 -0.0120494 +0.0114013 0.0419017 -0.0239008 +0.0243085 0.123343 0.00295625 +-0.0474528 0.119349 0.0293599 +-0.0304487 0.0334492 -0.0290445 +-0.0696417 0.0422524 0.0026904 +-0.0644028 0.146849 -0.019975 +0.0503218 0.0589081 -0.00447436 +0.0476236 0.0467222 0.0264254 +-0.0303554 0.117939 -0.0127791 +0.0338995 0.0591949 0.0383404 +-0.0746238 0.166812 -0.0222329 +-0.0186858 0.118957 -0.0119398 +0.0507854 0.0445928 0.0142166 +-0.0844285 0.0832425 0.0264792 +0.0593532 0.0636103 0.0211835 +-0.073524 0.16243 -0.0369561 +-0.0525841 0.0574366 -0.00812203 +0.0221795 0.040783 0.0405434 +0.0281375 0.0902298 0.0443276 +0.0214874 0.0892516 0.0486681 +-0.0702718 0.110271 0.0410027 +0.0386345 0.0753534 0.0347776 +-0.0646561 0.0344494 0.0319916 +-0.00663677 0.109707 -0.0221975 +-0.029185 0.0634891 -0.02746 +-0.0671416 0.145678 -0.0214457 +-0.0135214 0.0353632 -0.0181023 +-0.0376703 0.125135 -0.00632213 +0.0114179 0.0489704 0.047894 +-0.0923638 0.118682 0.00930083 +0.0483264 0.0430255 0.0152188 +0.00550628 0.0441375 0.0457857 +-0.0652333 0.0338884 0.0112389 +0.0482587 0.0460086 0.000382582 +0.0586626 0.0538435 0.0111779 +-0.000982862 0.0386959 0.0236934 +-0.0245147 0.119422 0.0312229 +-0.0155858 0.183111 -0.0209193 +-0.0867126 0.0819778 0.0134931 +-0.0785905 0.0980977 0.0353146 +-0.0907184 0.115992 0.0263684 +-0.0614986 0.158424 -0.0305881 +-0.090971 0.141997 0.0221703 +0.049023 0.0722611 0.00748575 +-0.0495658 0.0446328 -0.00989725 +0.000576288 0.0353387 0.0179719 +-0.00263978 0.131127 0.015882 +0.0260716 0.115341 -0.00830033 +-0.0571034 0.0535249 0.00264062 +-0.0471993 0.162132 -0.00733312 +-0.0750917 0.0664543 0.00723246 +-0.0617686 0.159987 -0.035592 +-0.0267825 0.079725 -0.0369434 +-0.061465 0.0438948 -0.0044823 +0.0457823 0.0862054 0.00618349 +-0.065804 0.0609905 0.0192925 +0.0197913 0.0781802 0.0515303 +0.0377275 0.0928421 0.0353087 +-0.0179367 0.12631 0.000372783 +0.0437374 0.0902563 -0.00280325 +-0.00792408 0.0384127 0.0189094 +0.0556221 0.0493651 0.00819776 +0.00641397 0.0375702 -0.0238447 +-0.0274537 0.0485303 0.0479606 +-0.0610187 0.152669 0.0336579 +-0.078775 0.170042 -0.0371202 +0.0527843 0.0462443 0.0112063 +0.0173793 0.0631583 0.049653 +-0.0359664 0.162375 -0.00125909 +-0.0559722 0.134715 -0.00446003 +-0.0484961 0.113915 0.0346796 +-0.00776872 0.0756191 -0.0375185 +-0.085947 0.104892 0.00437979 +-0.0866438 0.152376 0.0233632 +-0.0520552 0.0559741 0.0276222 +0.060777 0.0637293 0.0161648 +-0.0634196 0.15027 -0.0277557 +-0.0514307 0.12406 0.0344067 +-0.00747581 0.101243 0.0443796 +-0.0489909 0.133982 0.00241474 +-0.0174145 0.118412 -0.0133815 +0.0106556 0.0345311 0.0225637 +0.0207029 0.0950845 -0.0226908 +-0.000596635 0.0433605 -0.0249736 +-0.0628762 0.0967673 -0.0179048 +0.0102648 0.0752773 0.0552991 +-0.0281556 0.17562 -0.0175208 +-0.00541266 0.130784 0.0163058 +-0.0708319 0.0345819 -0.00103676 +-0.0204551 0.0879984 0.0554627 +-0.0640233 0.0347562 0.0388023 +-0.0255632 0.0589456 -0.0304089 +-0.0856596 0.0858717 -0.000523015 +0.000533962 0.0773889 0.0579724 +-0.0911932 0.147489 0.0241289 +-0.0536699 0.0338623 0.0207675 +-0.0330023 0.0807475 -0.0275162 +-0.0598207 0.148547 -0.00150215 +-0.0292722 0.116973 -0.0137779 +0.0389134 0.0603588 -0.00677348 +0.00149281 0.111426 0.0424095 +-0.0567184 0.0723883 -0.016755 +-0.0557727 0.0333786 -0.00437552 +-0.0514926 0.0503999 0.033682 +-0.00426203 0.129106 -0.000929037 +0.0209419 0.0535563 0.0459234 +-0.0665114 0.0931036 0.0430214 +-0.0313926 0.112895 -0.0174931 +-0.0358232 0.127618 0.00522677 +-0.0126066 0.128516 0.0224096 +0.0435838 0.0705579 0.0258591 +-0.00308793 0.0379842 0.0148477 +-0.0348769 0.105695 -0.0204457 +-0.0787914 0.0724652 0.0224838 +0.022277 0.0678419 -0.0269851 +0.021809 0.1242 0.000142479 +0.00528322 0.0682375 -0.0327226 +-0.0813944 0.0817284 0.031574 +0.0109283 0.0616839 0.0526314 +-0.0233033 0.0429927 0.0537933 +0.0135067 0.1196 0.0353985 +-0.0856435 0.0805169 0.00650219 +-0.0555634 0.0386377 0.0471443 +-0.0925953 0.129683 0.0262582 +-0.0908852 0.150208 0.0181276 +0.0274474 0.0591653 0.0430806 +-0.0143101 0.113201 -0.0178955 +-0.0695125 0.145609 0.0428052 +0.002489 0.103843 -0.0219556 +0.034067 0.0981569 0.0371457 +-0.0663951 0.140334 -0.00790584 +-0.0462961 0.162745 -0.00789878 +0.0286561 0.108194 -0.012625 +-0.0852651 0.14863 0.0333956 +-0.0290693 0.0677067 -0.0294879 +0.0414097 0.104256 0.00616512 +-0.0693963 0.0393871 -0.00132267 +0.0255358 0.0435625 -0.00763706 +0.0562825 0.0508178 0.0201866 +-0.0867977 0.144597 0.036443 +-0.0252829 0.0751884 0.0479421 +-0.0224834 0.0681349 0.0481925 +0.0575606 0.0537805 0.0213286 +0.00845802 0.129083 -0.00108013 +0.0113649 0.0538487 -0.0294289 +-0.0501252 0.138572 0.00341268 +-0.074971 0.152728 -0.0179063 +-0.0312043 0.0422041 -0.0297469 +-0.0846068 0.0791109 0.00453817 +-0.0536323 0.0602894 -0.00841331 +-0.0171387 0.171259 -0.0162017 +0.0409378 0.0397959 0.0185201 +-0.0781974 0.153502 0.00273811 +-0.0824089 0.107319 0.0275588 +-0.0723216 0.169832 -0.0271166 +-0.0716176 0.109058 0.0379622 +0.000146179 0.101649 -0.0227639 +-0.0522094 0.0517797 0.0246371 +0.0118426 0.0562933 0.0521284 +-0.0625131 0.11843 0.0430565 +0.00861514 0.0345206 0.0221572 +0.0244049 0.0741131 0.0475942 +0.00453562 0.128718 -0.00265628 +0.0138565 0.129875 0.0119166 +-0.070378 0.149076 -0.0386493 +0.0445575 0.0847276 0.0241575 +-0.0157056 0.0599572 -0.0358177 +-0.0558806 0.154815 0.016521 +0.000379078 0.127909 -0.00372478 +0.0266539 0.122169 0.0209401 +-0.0679962 0.167786 -0.0255431 +-0.0920426 0.126958 0.0362532 +-0.0594207 0.0398239 0.0196241 +0.0364837 0.0469104 0.0311466 +-0.0568261 0.139571 0.0318926 +-0.053019 0.141421 -0.000504477 +0.0435234 0.0433666 0.0249665 +-0.0277895 0.06758 -0.0314768 +0.0362342 0.0398741 0.0247937 +-0.0212837 0.0381384 0.0164325 +0.0257555 0.0994695 0.0426751 +0.0399676 0.101315 -0.00381805 +-0.0152962 0.0433291 0.0513434 +0.0573469 0.0674291 0.0231143 +-0.0520755 0.0475411 0.0216528 +0.0328365 0.0876935 -0.0188869 +0.0143568 0.0522918 -0.0274834 +-0.0725069 0.145589 0.0436497 +0.00651279 0.0647152 0.0557475 +0.00953758 0.128186 0.0275085 +-0.052193 0.119749 -0.012566 +-0.0686715 0.165205 -0.0529941 +-0.0896326 0.092928 0.0134378 +0.0289756 0.116666 0.0289439 +-0.0642519 0.118577 0.0476092 +-0.0257723 0.182903 -0.0115399 +-0.0844232 0.100698 -0.00156743 +-0.0206629 0.0479548 -0.0285983 +-0.0532393 0.0448331 0.0206817 +0.00230145 0.0612209 -0.0331693 +0.020878 0.117607 -0.0107498 +-0.0818428 0.103274 -0.0045788 +-0.0184976 0.101625 0.0435583 +-0.0305 0.0674574 0.0390127 +-0.0485029 0.0452121 0.0424266 +-0.0929791 0.124188 0.0282747 +-0.0302252 0.0523701 -0.0173649 +0.00350969 0.0897377 0.0556751 +-0.0219245 0.161037 -0.00376903 +-0.0619129 0.0458194 0.037691 +-0.00376935 0.0769928 -0.0369082 +0.0411698 0.0806497 0.0314486 +-0.0115592 0.100495 0.0448823 +-0.063251 0.15135 -0.00497603 +-0.0271171 0.059077 -0.028426 +0.0053978 0.0390279 -0.0240405 +-0.0676491 0.065582 -0.00407795 +-0.063925 0.0448804 0.0097039 +-0.00969446 0.0598719 -0.0345693 +-0.0860777 0.110355 0.00735249 +-0.0152136 0.174214 -0.0186712 +0.00434041 0.0596672 -0.031584 +0.0213842 0.125707 0.00472943 +-0.0835093 0.13127 0.0505027 +0.0165672 0.128654 0.015768 +0.0285444 0.0459645 -0.0070843 +-0.0721129 0.15894 -0.00533295 +-0.0525858 0.147787 0.0204037 +-0.0465092 0.0776139 0.042786 +-0.00623267 0.10133 -0.0233757 +0.0572046 0.0564633 0.00317356 +-0.0122436 0.112093 -0.0187249 +0.00624351 0.0810351 -0.0338384 +0.0462734 0.0764388 0.00619417 +-0.0168246 0.0855538 -0.0389836 +-0.0869607 0.111738 0.00633151 +-0.0370469 0.152854 -0.00726744 +0.0405338 0.105622 0.0141627 +-0.0164738 0.10119 0.0439603 +-0.0854876 0.0791977 0.0105097 +0.0272664 0.0760665 -0.0234764 +-0.0438604 0.102816 -0.0213031 +0.00350403 0.0533854 0.0535456 +0.0169167 0.127898 0.0201801 +0.0184941 0.0838333 0.0510457 +-0.00847869 0.123725 0.0338017 +0.0387498 0.0659721 -0.0107606 +-0.0437917 0.0422818 -0.0193111 +-0.0126098 0.0384695 0.0251301 +0.0135799 0.0887495 0.0531421 +0.00935699 0.131232 0.0131197 +0.0135065 0.109861 0.0400106 +-0.0850182 0.0831804 0.00149618 +-0.0740846 0.0657329 0.0152043 +-0.0265661 0.0706408 0.0422848 +-0.0847398 0.106178 0.00238203 +-0.0345218 0.0818067 0.0425242 +-0.0428232 0.12861 0.00263817 +0.0121427 0.100268 -0.0226753 +0.0447259 0.0749152 0.000215102 +0.0232974 0.0648673 -0.0252072 +-0.0822784 0.0951136 -0.0065238 +-0.0614844 0.158425 -0.031588 +-0.0521163 0.12407 0.0351298 +-0.0424777 0.104302 0.0409096 +-0.00407779 0.0345848 -0.0173958 +-0.0284243 0.0487716 0.0462084 +-0.0184625 0.0729785 0.0545802 +-0.015609 0.128774 0.0111587 +-0.0694586 0.153877 0.0321166 +-0.0484639 0.149215 0.0104667 +-0.0526002 0.146245 0.0194042 +-0.0263327 0.111444 -0.0179843 +-0.0331847 0.0445939 -0.0279862 +-0.0538972 0.104145 -0.0195691 +-0.0294956 0.124519 0.0193203 +0.0346714 0.0916012 0.0397133 +-0.0247788 0.0379568 0.0140716 +-0.0643494 0.153359 -0.00540282 +-0.00557634 0.0347311 -0.0241073 +-0.0258097 0.0766327 0.0484243 +-0.00867178 0.0387364 -0.0146344 +-0.0783855 0.0873596 0.0368663 +-0.0346878 0.0651683 -0.0148251 +0.0404983 0.0499404 0.0324741 +-0.0738591 0.0964804 -0.0142486 +0.0267717 0.107644 -0.0140409 +-0.0404701 0.104257 0.0399236 +-0.0381489 0.0448685 -0.0242105 +-0.0095211 0.045789 0.0480158 +-0.0311715 0.171175 -0.0164295 +-0.0695038 0.173637 -0.0418473 +-0.0823392 0.111551 0.0443764 +-0.0227424 0.0655154 -0.0353045 +-0.0508568 0.0999518 -0.0219402 +-0.0589296 0.1241 0.041105 +0.000488727 0.108629 0.0427903 +-0.0412638 0.110187 -0.018624 +-0.0147098 0.0613984 -0.0362354 +0.0459347 0.0413813 0.0124396 +0.00323976 0.128177 0.0281353 +-0.0743879 0.143042 -0.00684484 +-0.0264004 0.0577755 0.0382862 +-0.00692431 0.038377 0.0191445 +-0.0864209 0.080641 0.0154973 +-0.077237 0.0721326 0.0266059 +-0.0686311 0.136892 0.0464956 +-0.0792347 0.153789 0.0287725 +-0.0537819 0.0840761 -0.0215562 +-0.0117053 0.0909225 -0.0365538 +0.0365178 0.0541167 0.0317039 +-0.0616584 0.114654 -0.0131207 +0.0390548 0.0884875 -0.0128108 +-0.0887111 0.101017 0.0193703 +0.0162822 0.0666125 -0.0295206 +-0.064714 0.0600149 0.00783247 +-0.0175786 0.180143 -0.0185198 +-0.0408442 0.152602 -0.00723164 +0.0352097 0.0379704 0.0208298 +-0.0618294 0.0342021 0.0275686 +0.0185142 0.0412688 -0.0207398 +-0.0195264 0.159643 -0.00556617 +0.0318624 0.0768516 0.0425881 +0.0347681 0.0641816 -0.0148052 +-0.0479777 0.147732 0.00938552 +-0.0126851 0.0570335 -0.0344182 +0.00495057 0.130435 0.00152594 +-0.0486835 0.0664435 -0.0136416 +-0.0356438 0.0562686 -0.010631 +-0.084499 0.088474 -0.00355332 +-0.0503848 0.141583 0.00270968 +-0.0858587 0.125737 0.0487678 +-0.0426772 0.14763 -0.000244299 +-0.0378831 0.156583 0.00477982 +0.00350659 0.0388434 0.0262887 +-0.0887855 0.102363 0.0143842 +-0.0646755 0.142507 0.0398915 +-0.0909161 0.13091 0.00724248 +-0.055962 0.0343325 0.0321978 +-0.0723047 0.162425 -0.0409479 +-0.0696851 0.11012 0.0394623 +-0.083003 0.0803028 0.000504056 +0.0247589 0.0435818 0.039017 +-0.0218764 0.182954 -0.0200262 +0.0236525 0.124901 0.0169603 +0.0463445 0.0561751 -0.00589814 +-0.0218308 0.117001 -0.0138605 +-0.0747558 0.067415 0.00253432 +-0.0625552 0.176839 -0.0611671 +-0.0660641 0.0384249 0.0148213 +-0.000107958 0.12991 0.000141982 +-0.054081 0.071101 0.0394438 +-0.00558231 0.0361988 -0.024956 +-0.0684451 0.117201 0.0519481 +0.0333957 0.0461492 -0.00598528 +-0.0146115 0.03779 -0.0266447 +0.00133195 0.0385877 -0.00128958 +-0.0348901 0.0738831 -0.020486 +0.0373363 0.105992 0.0277645 +0.0084546 0.131034 0.0184964 +-0.0324996 0.0498708 0.0403614 +-0.0444999 0.0719382 0.0422118 +0.0369643 0.0405549 -0.00158789 +-0.0354954 0.0733233 0.0419636 +-0.0457735 0.0826328 -0.0207974 +0.00732527 0.0595899 -0.0304419 +-0.0874242 0.111776 0.00733879 +-0.0592783 0.115234 -0.0137669 +-0.0928043 0.11882 0.0332998 +-0.0116325 0.0385039 0.00355749 +-0.0398903 0.0344806 0.00870734 +-0.0722375 0.138308 0.048356 +0.0262204 0.0344897 0.0111735 +-0.0200589 0.0348282 0.0498878 +-0.0246346 0.0382795 0.00294393 +-0.0889887 0.147168 0.0287003 +-0.0574968 0.1584 0.00209189 +-0.0329778 0.0448862 0.0466174 +-0.0605914 0.0623502 0.0262507 +-0.0785506 0.0699758 0.0176232 +-0.0362833 0.17342 -0.00108904 +-0.0627087 0.161508 -0.0465953 +-0.0397898 0.0855606 -0.0217035 +-0.0064056 0.10047 0.0472751 +-0.0646908 0.166411 -0.0300665 +-0.0508247 0.0941547 -0.0216781 +0.00716942 0.125754 -0.00749941 +0.000702847 0.0392103 -0.00758345 +-0.0407154 0.0462046 -0.018322 +-0.0401921 0.166668 -0.0117758 +0.0124864 0.11785 -0.0149995 +-0.0887986 0.114294 0.0264066 +-0.0614886 0.156862 -0.0235899 +0.0301602 0.0673157 0.0417954 +-0.0697061 0.156309 0.0202886 +0.0512708 0.0700979 0.0242688 +-0.00208274 0.0390983 0.0321346 +-0.091649 0.146116 0.0221478 +-0.0423664 0.0392174 0.0434612 +-0.0288487 0.0944704 -0.0247187 +-0.0724483 0.148649 -0.034807 +0.0270658 0.12207 0.0196667 +-0.0370838 0.159234 -0.0122889 +-0.00750248 0.0619634 0.0561006 +-0.0533112 0.162693 5.53048e-05 +-0.00276518 0.0755391 -0.036261 +-0.0186814 0.0539839 -0.0321072 +-0.0875792 0.134961 0.00324767 +0.0120758 0.0363869 0.044646 +-0.0753955 0.0901087 0.0394375 +0.0338247 0.108829 -0.00728203 +-0.0444976 0.0789577 0.0421738 +0.0235632 0.0862591 0.0483322 +0.0465947 0.0750442 0.0151558 +-0.0733825 0.135448 0.0501828 +-0.0150618 0.0383341 0.0229424 +-0.00891681 0.0351082 0.0414685 +0.0315143 0.0525771 -0.0117816 +0.045527 0.0791773 0.00219591 +-0.0464963 0.076159 0.0423522 +-0.0708979 0.122353 -0.00862039 +-0.08595 0.110378 0.0213654 +-0.0783775 0.103446 0.0335489 +-0.0758029 0.111217 -0.00664466 +-0.0554837 0.0805968 0.0447827 +-0.0353516 0.166776 -0.00214363 +0.0562979 0.0633024 0.00123284 +0.0465716 0.0440008 0.0231655 +-0.0476369 0.0591928 -0.0118235 +-0.0288774 0.169748 -0.00856256 +0.0153133 0.121135 -0.0105519 +-0.0397313 0.072486 -0.017441 +-0.016397 0.0337307 -0.02279 +0.0603039 0.0650788 0.0091381 +-0.0878637 0.152463 0.0169978 +-0.0754938 0.127441 0.0530403 +-0.067202 0.162346 -0.0569974 +-0.0865386 0.147279 0.0332936 +-0.0535025 0.0440354 0.0449405 +-0.0735938 0.149845 -0.0348818 +-0.0728566 0.162156 -0.0114327 +0.0495045 0.0651553 0.0285253 +0.012555 0.130318 0.0128667 +0.0220735 0.113988 0.0356074 +0.0224569 0.125562 0.0179459 +-0.0810243 0.0936828 -0.00856919 +-0.0756675 0.155622 -0.00260296 +-0.0431622 0.0422126 -0.0213185 +-0.000694781 0.0597985 -0.0333207 +0.0271246 0.0849281 0.0463473 +0.0173609 0.0897252 -0.0270298 +-0.0358944 0.0334964 -0.0263993 +-0.0576531 0.0612704 -0.00372094 +-0.00707611 0.0386628 0.0278929 +-0.0560526 0.151627 -0.00172465 +-0.030326 0.045 0.0496314 +-0.00103499 0.117326 -0.0163697 +-0.0252491 0.162472 -0.00507229 +0.00208806 0.113117 -0.0199282 +-0.0939 0.124133 0.015262 +-0.0129795 0.0384272 0.0232864 +0.00120237 0.0867098 -0.0346725 +0.0353317 0.112044 0.0241962 +0.00450167 0.0459455 0.0484199 +-0.0863511 0.0872693 0.000483167 +-0.0164554 0.0963571 0.0512639 +0.0121283 0.11013 -0.0187853 +-0.0778795 0.103388 -0.00866618 +0.0245137 0.102392 -0.0184072 +0.0201875 0.0974057 -0.022456 +-0.0168907 0.0921233 -0.0358082 +-0.0691832 0.153837 -0.0495596 +0.0155185 0.129225 0.0096832 +-0.00814574 0.0386661 0.000442505 +-0.0927289 0.125458 0.0102641 +-0.0846445 0.0832051 0.023501 +-0.0527541 0.0782706 -0.0196088 +-0.0206459 0.171255 -0.0142383 +0.0273486 0.110085 0.0362063 +-0.0144833 0.105825 0.0431811 +-0.0295885 0.120405 -0.00932945 +-0.0914492 0.117418 0.0293041 +-0.0259115 0.159753 -0.0130913 +-0.0498456 0.123179 -0.0101809 +0.0474532 0.047084 -0.00164907 +0.0201466 0.0658754 0.0483972 +-0.0546819 0.0486825 0.0116705 +0.0366139 0.0573407 -0.00875458 +0.016382 0.0888799 -0.0281622 +-0.0128318 0.0653357 0.0541739 +-0.0495043 0.073253 0.0416255 +0.0380257 0.084795 0.0357219 +-0.055962 0.148162 0.0296522 +-0.00335679 0.11693 -0.0159223 +-0.0164885 0.0382449 0.0155037 +-0.0943085 0.12145 0.0162821 +-0.0604949 0.104288 0.0411949 +-0.0485787 0.153602 0.0103738 +0.0214629 0.119376 0.0329783 +-0.00921964 0.0390042 -0.0131222 +0.046038 0.044353 0.0245911 +0.00963825 0.115048 0.0386641 +-0.077742 0.161125 -0.0199262 +-0.0274983 0.0932247 0.0447643 +-0.0237144 0.062529 -0.0332478 +0.0256802 0.0685786 0.0440967 +-0.000627469 0.039269 0.0340794 +0.0387649 0.0834441 0.0350467 +-0.0144799 0.123658 0.0314246 +-0.0415001 0.0733705 0.042415 +0.0543119 0.0722872 0.00750454 +-0.0799536 0.133905 -0.00443135 +-0.0728995 0.10646 -0.0108772 +0.0465866 0.0714909 0.00427537 +-0.0734754 0.158245 -0.0309204 +-0.0217961 0.0784868 -0.0389208 +0.0328256 0.0611992 -0.0167775 +-0.00849082 0.119665 0.0373867 +-0.0345047 0.106995 0.0387065 +-0.0624367 0.153758 -0.0135798 +0.0343704 0.104711 0.0323207 +-0.0583832 0.0335298 0.00219999 +0.0202943 0.113982 0.0365633 +0.0149493 0.0344805 -0.015521 +0.0238985 0.104719 0.0399907 +-0.0270163 0.155641 -0.00359794 +-0.0207265 0.111071 -0.0196229 +0.00439792 0.0404664 -0.024069 +-0.0314988 0.165308 -0.00534483 +-0.0506374 0.0334455 0.00204379 +-0.0518913 0.130385 -0.00375074 +0.00347876 0.039945 0.0459765 +-0.0174912 0.108558 0.0415716 +-0.0618685 0.158412 -0.0345942 +-0.0509699 0.122064 -0.0109984 +-0.0801245 0.0746668 0.000525034 +0.0485976 0.0429932 0.0132228 +0.0202555 0.0707617 -0.0282449 +-0.086473 0.130788 0.000288786 +-0.0859798 0.13928 0.042828 +-0.0419021 0.157999 0.00424081 +0.0301266 0.0646197 0.0417292 +-0.0241332 0.0349697 0.043675 +-0.0554996 0.0466308 0.0421953 +0.0244135 0.114257 -0.0111426 +-0.0687634 0.168362 -0.025835 +-0.0212185 0.178615 -0.022031 +0.0451425 0.0775553 0.0229667 +0.0084768 0.116844 0.0380952 +-0.0619218 0.112503 -0.0143567 +0.0015045 0.0661578 0.0563313 +-0.0473123 0.0369901 -0.0152765 +0.0576745 0.0551294 0.00518333 +-0.0736262 0.148585 -0.0238576 +0.055706 0.0507437 0.0211984 +0.0038008 0.130941 0.0210967 +-0.0360463 0.0347343 0.0430826 +-0.0865396 0.139093 0.00420465 +-0.000664914 0.0539666 -0.0309917 +-0.0785368 0.0694183 0.0145853 +-0.0521695 0.144678 0.0173655 +0.0205519 0.0414936 -0.0177079 +-0.0764027 0.109871 -0.00664525 +-0.0455151 0.0533187 0.0381544 +-0.010362 0.0388675 -0.00761727 +-0.0465826 0.121367 -0.0123258 +0.060067 0.0636708 0.0191758 +-0.0214848 0.0347602 0.0479269 +0.0295458 0.115836 -0.00482165 +0.0188031 0.106638 -0.0169667 +-0.00873489 0.068452 -0.036144 +-0.0504955 0.0733248 0.0417999 +0.00250961 0.101617 0.0444387 +-0.0134598 0.0645734 0.0539775 +-0.0304851 0.038633 -0.015152 +-0.00443456 0.111901 -0.0205597 +-0.038606 0.0392918 -0.0284798 +-0.022624 0.0450535 -0.0281102 +0.0262273 0.117277 0.0307934 +0.0282585 0.063629 -0.0207965 +-0.0649158 0.115218 -0.010913 +-0.0197994 0.0799106 -0.0390737 +-0.042508 0.0930307 0.0424902 +-0.0683794 0.0434664 0.00169373 +-0.0648724 0.131147 0.0430922 +-0.00487539 0.105927 -0.0225105 +-0.0678583 0.112732 0.0457592 +0.00821621 0.124741 -0.00840458 +-0.0564446 0.0520481 -0.00138381 +-0.020896 0.107686 -0.0220438 +-0.0919111 0.120015 0.00829626 +-0.0188214 0.0841215 -0.0388306 +-0.00848834 0.10866 0.0434392 +-0.0674721 0.0639504 -0.00252382 +-0.0321962 0.0487152 0.0429222 +0.0422051 0.0972089 -0.00180239 +-0.0312857 0.125233 0.0186818 +0.0348151 0.0605689 0.0379285 +-0.07566 0.1555 -0.0199215 +-0.0582195 0.03947 0.0465299 +-0.0144966 0.0687907 0.0546395 +-0.0630713 0.173863 -0.0616798 +0.0398379 0.0874103 0.0331324 +0.0167269 0.0821369 0.052401 +0.0403742 0.101353 -0.00282827 +-0.0622911 0.150653 -0.0125749 +-0.0707931 0.0879477 -0.0165704 +0.048521 0.043083 0.00923259 +0.0132697 0.0603324 0.0507028 +-0.0230427 0.038006 0.0179945 +0.0585617 0.0538351 0.0161785 +-0.0548868 0.108372 -0.0183778 +-0.0712698 0.156094 0.0241098 +-0.0053845 0.126096 -0.00772897 +-0.076026 0.151346 0.0359505 +0.00881068 0.127643 0.0286728 +-0.0229191 0.119996 -0.0109969 +-0.0702091 0.156071 0.0113882 +-0.0285896 0.0704574 -0.0325207 +-0.0373694 0.173381 -0.00150317 +0.043508 0.0438731 -6.08517e-05 +-0.0434927 0.0747943 0.0426652 +-0.0817644 0.0758778 0.0206878 +-0.00439411 0.0968663 -0.0305974 +0.00748123 0.0937253 0.0527164 +0.0101565 0.0860282 0.0551829 +-0.0132478 0.039072 0.0352601 +-0.0786774 0.168631 -0.0343418 +-0.0500333 0.148713 -0.00320857 +0.00694939 0.128215 0.0280149 +0.0132662 0.0737717 -0.03084 +-0.089989 0.142041 0.0291697 +-0.0298412 0.0944347 -0.0243277 +-0.0866185 0.103641 0.022352 +0.0179014 0.114016 -0.0148856 +0.0537258 0.0735615 0.0163564 +-0.0413654 0.128702 0.0120304 +-0.0855876 0.0939777 -0.00157288 +-0.0828574 0.0764021 0.018249 +-0.0454932 0.0491469 0.0390026 +-0.0317045 0.0693753 -0.0244624 +-0.0587034 0.0579543 0.010904 +-0.0269178 0.034755 0.0450156 +-0.0520173 0.146257 0.0174096 +-0.0759561 0.112612 -0.00567952 +-0.0164906 0.0786958 0.056769 +-0.0778425 0.108614 0.0370385 +0.0422463 0.0403355 0.0183005 +-0.0845698 0.0831877 0.0245094 +0.00429984 0.0654625 -0.0332399 +-0.0572715 0.0482006 0.0365817 +0.0290027 0.0741128 0.0436952 +-0.0600502 0.143934 0.0360579 +0.0366467 0.0673305 0.0371158 +-0.0199983 0.126616 0.0197793 +-0.0728415 0.165906 -0.0186805 +-0.0634251 0.128316 0.0434644 +-0.0437757 0.12944 0.0066621 +0.000274533 0.0683164 -0.033854 +0.00152244 0.03707 0.0220484 +-0.0349517 0.151884 -0.00344832 +-0.0271199 0.0347243 -0.0201972 +0.0433938 0.0426486 0.00136855 +0.000501319 0.0576739 0.0545888 +-0.0636327 0.155181 -0.0386163 +-0.0884108 0.0928321 0.00744302 +-0.0495652 0.0614019 0.0343808 +-0.0434939 0.0930777 0.0427388 +-0.0662865 0.178231 -0.0601734 +-0.054498 0.111159 0.0367038 +-0.0460532 0.057401 0.0380948 +-0.0820259 0.0858257 0.0320864 +-0.0277337 0.0521019 -0.0243965 +-0.00442413 0.130145 0.0224484 +-0.00149759 0.0549023 0.0548542 +-0.035558 0.0430076 -0.0284728 +0.0593498 0.066038 0.0207029 +0.0515344 0.0624078 0.0294591 +-0.0197872 0.118912 -0.0118682 +-0.0168075 0.0827608 -0.0394117 +-0.0487872 0.0545643 0.0352206 +-0.0311424 0.174761 -0.015609 +-0.0326324 0.0534241 -0.0105104 +0.00577065 0.131636 0.0103849 +-0.0185368 0.123815 0.0276913 +-0.0454963 0.0818291 0.0431013 +-0.0634376 0.179008 -0.0598746 +-0.00652958 0.0443624 0.0478753 +-0.0308041 0.0566412 -0.01742 +0.0448472 0.0735234 0.00122364 +-0.00349567 0.0504603 0.052334 +-0.0298753 0.0537337 -0.0203803 +-0.00256734 0.0388997 -0.00235847 +-0.0502892 0.0334774 -0.00701976 +-0.00481396 0.0840888 -0.0377627 +0.0387801 0.058953 0.031306 +-0.0243507 0.0852386 0.0537426 +-0.077502 0.0785105 0.0333799 +-0.0695501 0.0378481 -0.00149869 +-0.0313945 0.0862693 -0.0285563 +-0.0759552 0.133992 -0.00682355 +-0.0783042 0.161088 -0.0239376 +0.0512217 0.0595245 0.030012 +0.0455105 0.0777762 0.00219892 +-0.0860997 0.0805682 0.0085045 +-0.0347118 0.121713 -0.00868145 +-0.0621446 0.0384632 0.0179813 +-0.0124987 0.115524 0.0391996 +-0.0407326 0.0341812 -0.0112599 +-0.0762949 0.0689313 0.00454567 +-0.0900211 0.137875 0.0231818 +0.0335661 0.0612752 -0.015761 +-0.0620569 0.121268 0.0436785 +0.0389827 0.104151 0.026189 +-0.0724692 0.135469 0.0497506 +0.0222613 0.0692548 -0.0269722 +-0.0614967 0.0876222 0.0452319 +-0.0694862 0.120387 0.0531587 +0.0384699 0.0786144 -0.011749 +-0.0225096 0.10992 0.040117 +0.0140839 0.123776 -0.0073928 +0.0455444 0.0774866 0.0217209 +0.0421217 0.0751567 0.0292241 +-0.0637125 0.165316 -0.0311513 +0.00714876 0.108764 -0.0200496 +-0.0613421 0.118288 0.041013 +0.0150763 0.0900809 0.0517899 +0.0392297 0.0926988 -0.0100859 +-0.0707648 0.0836514 -0.0167885 +0.0199669 0.107838 -0.0162613 +-0.0573264 0.0521522 0.00163442 +0.03817 0.0983612 -0.0088053 +-2.43522e-05 0.0348774 0.0110061 +-0.0647928 0.0346609 0.0159953 +-0.0765127 0.164562 -0.0208538 +-0.0398786 0.107079 -0.0200332 +-0.0315509 0.053914 -0.013393 +-0.0689152 0.109432 -0.0116742 +-0.0426992 0.0344898 0.0348747 +-0.0113643 0.182132 -0.0288209 +-0.0251052 0.162299 -0.0151004 +-0.0745879 0.156108 0.0200327 +-0.0686632 0.162379 -0.0529737 +-0.0867316 0.100467 0.0250232 +0.0335218 0.0499029 0.0322045 +0.0110844 0.0345718 0.0406762 +0.047975 0.0710438 0.0215578 +-0.0471313 0.132491 0.00541336 +0.0385464 0.0954957 -0.00890109 +-0.055495 0.154378 0.0181054 +-0.0486202 0.0403225 0.04496 +-0.0918049 0.121541 0.0434848 +-0.0427276 0.129253 0.0100405 +-0.0641572 0.150753 -0.03179 +0.0203307 0.08353 0.050588 +-0.0025157 0.127417 -0.00520554 +-0.0664375 0.153657 -0.0486366 +0.00823253 0.112336 0.0401545 +-0.0239671 0.075324 0.0508435 +-0.0519769 0.0340995 -0.0134375 +-0.0444607 0.0902688 0.0428496 +-0.043053 0.153237 -0.00732462 +-0.0520076 0.145723 -0.00116844 +-0.0587286 0.0620484 0.0269094 +-0.0876727 0.111787 0.0358475 +-0.0843489 0.0925325 -0.00454911 +-0.00849886 0.0856701 0.0574538 +-0.0681283 0.146379 -0.0251159 +-0.0800217 0.102057 0.0324029 +-0.0662458 0.167287 -0.027765 +0.0214869 0.0865002 0.0492244 +-0.0485551 0.129676 -0.000935313 +-0.021529 0.17126 -0.0137526 +0.0263623 0.0808978 0.0469671 +-0.00180556 0.0384438 0.0201303 +0.0199827 0.116932 -0.0120267 +0.000700235 0.0374335 0.0215506 +-0.0849215 0.130733 -0.00170191 +-0.0566837 0.0492811 -0.00237706 +0.013902 0.054865 0.0498147 +-0.0487235 0.0738176 -0.0166605 +-0.0588289 0.089737 -0.0207103 +-0.00415565 0.0996194 0.0496007 +0.00922789 0.0860105 0.0556146 +-0.052373 0.126911 0.0347775 +-0.0647638 0.0397203 0.0149016 +-0.0375028 0.102851 0.0403695 +0.012678 0.130036 0.0186174 +0.01582 0.0346802 0.0234839 +-0.0834012 0.146003 0.0386574 +-0.0855432 0.111388 0.0330811 +-0.0905559 0.1297 0.0402277 +0.0225 0.108418 0.039052 +-0.034538 0.033729 0.00866796 +0.0580527 0.0523859 0.0111812 +0.0489522 0.045877 0.023734 +-0.0741385 0.0703655 0.0287707 +-0.0261092 0.0409213 0.0540071 +-0.0124916 0.0801274 0.0575032 +-0.0480938 0.0362157 0.0456887 +0.0295798 0.047722 0.0354768 +-0.051366 0.129708 0.032749 +-0.0258406 0.0339312 -0.0210821 +-0.0627466 0.0751872 -0.0173542 +-0.0208698 0.104444 -0.0228641 +0.0391583 0.108387 0.0121653 +-0.0217873 0.0728206 -0.0385569 +-0.00162182 0.0363065 0.0130228 +-0.0125908 0.182249 -0.0250896 +-0.0463216 0.125305 0.0258345 +0.00739775 0.110951 0.0406753 +-0.0698286 0.0965949 -0.0159812 +0.0495953 0.0662964 -0.000416722 +0.0214 0.116687 0.0346491 +0.0355013 0.0605581 0.0371681 +0.0347485 0.0981702 0.0363481 +-0.0784998 0.130283 0.0530344 +-0.0139533 0.0338864 -0.0205741 +-0.0185901 0.128007 0.0115203 +-0.0538047 0.0884108 -0.022116 +0.0213383 0.0635548 -0.0266585 +-0.0194915 0.120861 0.0324568 +-0.0347476 0.127441 0.00854521 +-0.0126238 0.0952928 -0.0330113 +-0.00102634 0.107271 -0.0216101 +0.0225395 0.0352111 0.00978173 +0.0193228 0.0679612 -0.0287395 +0.00111873 0.0344764 0.0134191 +0.0375161 0.110639 0.00638069 +0.0222494 0.0762728 -0.0263867 +-0.0729386 0.0646873 0.0146181 +-0.0397368 0.0739371 -0.0178005 +-0.0543178 0.0387289 0.0471882 +0.016338 0.0566541 -0.0286494 +0.0299119 0.0491593 0.0359714 +0.0525507 0.0462401 0.0172033 +0.0138891 0.0942573 -0.0257865 +-0.00745761 0.0338748 -0.0230567 +-0.073507 0.121801 0.0535653 +-0.0771635 0.0705018 0.0227664 +0.014215 0.083589 -0.0300782 +0.0187635 0.105558 -0.0177865 +-0.0943455 0.121485 0.0232874 +-0.0190471 0.0582949 0.0492947 +-0.0482842 0.164088 -0.00583628 +0.00750123 0.074495 0.0564449 +0.0114903 0.0896115 0.0540357 +0.0111129 0.0739356 0.0547693 +-0.0243199 0.0387345 -0.0140132 +0.0343886 0.107359 0.0305696 +0.0280618 0.0416802 0.0314173 +0.01142 0.0374719 -0.022733 +0.0330999 0.114889 0.024788 +-0.0199406 0.122541 -0.00772092 +-0.0662581 0.15274 0.0347724 +0.00215199 0.101646 -0.0224127 +0.0164932 0.112605 0.0382483 +-0.06512 0.166493 -0.0287867 +-0.0848366 0.0898781 -0.00356125 +-0.0321536 0.0380399 -0.0168 +-0.000666067 0.037425 0.0194672 +-0.0009793 0.0356154 0.0137824 +-0.0338572 0.100054 -0.0225702 +-0.0466969 0.0694537 -0.0155404 +-0.0236112 0.0386852 0.0334692 +0.0506847 0.044695 0.00922239 +0.0143403 0.11733 -0.0144441 +0.0447757 0.0875223 -0.000814326 +0.0359341 0.0727624 -0.0138488 +-0.0526285 0.0588799 -0.00854194 +-0.090746 0.114598 0.00833305 +0.0454568 0.0819591 0.00221362 +-0.0191965 0.175667 -0.0232885 +-0.062765 0.0780997 -0.0182585 +0.0414338 0.0676164 -0.00577635 +-0.053491 0.113891 0.0350292 +0.0043588 0.0510132 -0.0293749 +-0.00874604 0.0713519 -0.0371122 +0.0193852 0.0915557 -0.024942 +-0.0944514 0.122808 0.0172688 +-0.00774122 0.115628 -0.0165086 +-0.0406319 0.0534345 -0.0110028 +0.0230588 0.0463265 0.0401038 +-0.0769246 0.0689689 0.00654258 +0.0278197 0.108769 0.0368873 +-0.078478 0.142827 0.0455967 +0.0339472 0.0368914 0.0179028 +0.0140143 0.0357038 0.00388789 +-0.0699623 0.155307 -0.0499609 +-0.0144161 0.0343188 -0.0191903 +-0.044261 0.122001 0.0258917 +-0.064466 0.170264 -0.0443864 +-0.0614851 0.112533 0.0365644 +-0.0649074 0.120907 -0.00883756 +0.0114806 0.097647 0.0487825 +0.00178793 0.0344587 0.00626566 +0.0404914 0.098527 -0.00482713 +-0.0714142 0.166619 -0.0469903 +0.0553639 0.0729653 0.0110394 +-0.00645384 0.126073 -0.0076982 +-0.042494 0.0676556 0.0412962 +-0.0328931 0.0486572 0.0421875 +-0.0218312 0.0882119 -0.0370399 +0.0433826 0.0987102 0.00417641 +-0.034498 0.0533048 0.037996 +-0.0749535 0.0823401 -0.0135889 +-0.0755022 0.131669 0.0524935 +-0.0118269 0.118985 -0.0140536 +-0.0698809 0.100876 -0.0145572 +-0.0920212 0.128183 0.00926455 +-0.0277533 0.155598 -0.00253083 +-0.0155991 0.0421323 -0.0272897 +0.0125549 0.119968 -0.0132874 +-0.0862929 0.15121 0.027304 +-0.0726068 0.147127 -0.0218633 +-0.0713282 0.0982044 0.0407618 +-0.023785 0.0621839 0.0426152 +-0.0294793 0.0446083 0.0503994 +0.050676 0.0693821 0.00244948 +-0.0520559 0.142894 8.38275e-05 +-0.085494 0.083212 0.00349969 +0.0219046 0.0892697 -0.0245066 +-0.0923861 0.125586 0.0352607 +-0.0578149 0.12313 -0.00798101 +-0.0630458 0.0345815 0.0177326 +-0.0890554 0.0888307 0.00946144 +-0.066735 0.167252 -0.0265095 +0.0143257 0.0594816 -0.0287805 +0.00349695 0.0519735 0.0532512 +-0.0658642 0.141582 -0.00840157 +0.014169 0.0603418 0.050255 +-0.0638047 0.152122 -0.00224548 +0.0332402 0.0814034 -0.0189012 +-0.0246071 0.0408479 -0.0291354 +-0.0320867 0.0651952 -0.0194497 +-0.0719291 0.0394019 0.00652921 +-0.0297834 0.0409697 0.0520218 +-0.035582 0.0336826 0.00849877 +-0.088744 0.0996845 0.0203875 +0.0516874 0.0662489 -0.000355134 +-0.0802571 0.096729 0.0342047 +-0.0669809 0.135535 -0.00827796 +-0.069479 0.0337046 -0.000209101 +-0.0675145 0.148386 0.0398761 +-0.0805311 0.123088 0.0509172 +-0.0084955 0.0503277 0.0510127 +0.00205693 0.129985 1.8398e-05 +-0.0172313 0.12808 0.0178394 +0.00170313 0.0343139 0.0118694 +-0.0773727 0.156953 -0.0129034 +-0.0717154 0.0632455 0.0160979 +0.00858548 0.0340902 -0.01633 +0.0124197 0.0403679 -0.0230567 +-0.0511271 0.116882 0.0329705 +-0.0728598 0.0355014 0.00645302 +-0.0791962 0.16801 -0.0379842 +-0.00268972 0.128069 -0.00389854 +0.0597918 0.0567046 0.013171 +0.0154995 0.111258 0.0392925 +-0.019299 0.0668878 0.052102 +-0.0233826 0.0866124 0.0541509 +0.0432138 0.091668 0.0251628 +-0.0396808 0.0636721 -0.0135815 +0.00652038 0.0518639 0.0525018 +0.0124104 0.0389053 -0.0225983 +-0.0119403 0.171322 -0.0192115 +-0.069435 0.0972593 0.0417284 +-0.0942583 0.125557 0.0232684 +0.030238 0.0814876 -0.0201701 +0.0449279 0.0945923 0.00916323 +-0.0553588 0.131132 0.0357618 +0.00929414 0.0653548 -0.0316941 +-0.0357484 0.0768864 -0.0192776 +-0.062693 0.156802 -0.0376031 +-0.0460193 0.128067 0.0236255 +0.0133301 0.0609017 -0.0290805 +0.00152141 0.0773467 0.0574533 +-0.0636035 0.156128 0.0166435 +-0.0361137 0.162217 -0.0137308 +-0.0595062 0.0386574 -0.00901889 +-0.0620309 0.153757 -0.0155846 +-0.0533723 0.122605 0.0368904 +-0.0264702 0.0676761 0.0408217 +-0.0147452 0.123455 -0.00671201 +-0.0703548 0.0643588 0.00158224 +-0.0814272 0.0752484 0.0195365 +0.0402499 0.0787503 -0.00875238 +-0.00644119 0.0828529 0.0570838 +0.0242228 0.0902502 0.0474811 +0.0336268 0.0557054 -0.0117007 +-0.0623153 0.13671 0.0362243 +0.0149059 0.124307 -0.00595517 +-0.0401601 0.165169 -0.0119868 +-0.077431 0.108115 0.0357399 +0.0402513 0.0940026 0.0302416 +0.0370616 0.0382621 0.0191175 +0.0225195 0.106011 0.0397482 +-0.0255993 0.037974 -0.029094 +-0.0759547 0.129619 -0.00760722 +-0.0360191 0.153642 0.00214438 +0.0596848 0.0566967 0.0151763 +-0.0264473 0.181471 -0.0150302 +-0.0346676 0.0359024 -0.017193 +0.0391135 0.0904981 -0.0117677 +0.00550174 0.0745058 0.0566062 +-0.0615874 0.117934 -0.0105067 +-0.0897323 0.115129 0.0291209 +0.0371127 0.037099 0.0128773 +0.000643571 0.127035 0.0301068 +0.04471 0.0789677 0.024116 +-0.0294983 0.0588236 0.0368769 +0.0243457 0.102123 0.0424029 +-0.0890326 0.125361 0.00330134 +-0.0671124 0.0618759 0.00376788 +0.0207378 0.105279 -0.0174962 +-0.0640597 0.156709 -0.043612 +-0.053836 0.112592 -0.0169505 +-0.0738585 0.0762694 0.0355202 +-0.00709045 0.130506 0.0171336 +-0.0735939 0.077695 0.036626 +-0.0453238 0.169855 -0.00399069 +-0.0609112 0.060145 0.00105228 +-0.0602298 0.119796 0.0409592 +-0.037803 0.0885803 -0.0235006 +0.0220645 0.0375334 0.0362702 +-5.6077e-05 0.112952 -0.0196345 +-0.0156034 0.097548 -0.0273897 +0.0330435 0.104766 0.033885 +0.0234619 0.0343557 0.00702041 +0.0309186 0.094253 -0.0177648 +-0.0406484 0.0563266 -0.0113192 +0.0305338 0.0929359 0.042541 +-0.0713282 0.155382 -0.0439108 +-0.0246656 0.0492403 -0.0269082 +-0.0344954 0.118007 0.0312549 +0.03264 0.0822319 0.0419892 +0.0393737 0.0381589 0.0105128 +0.00986741 0.131059 0.0147331 +-0.0521114 0.156091 -0.00406652 +0.0125143 0.121868 -0.0113432 +-0.019839 0.0610753 0.0486026 +-0.0714347 0.109953 0.0409933 +-0.0435006 0.115257 0.0335166 +-0.0700918 0.147968 0.0410511 +-0.0628279 0.151059 0.0360546 +-0.0269995 0.0383068 0.000625566 +-0.0459023 0.0546326 0.0380387 +-0.0705411 0.0860609 0.0417748 +-0.0360717 0.157766 -0.0114869 +0.018169 0.108481 -0.0169141 +-0.0656915 0.0720893 -0.0135891 +-0.0604976 0.0847283 0.0441029 +0.00648432 0.0413231 0.0455852 +-0.0757282 0.0754387 0.0328339 +0.00417753 0.0922823 -0.0325433 +-0.0272993 0.0381948 -0.0178418 +-0.0315044 0.0860003 0.0426216 +-0.00681874 0.0868473 -0.0370495 +0.0396972 0.0744788 -0.00980523 +0.0376515 0.0947835 -0.010301 +-0.078491 0.121738 0.0515581 +-0.0274838 0.105666 0.0409158 +-0.0202559 0.0365056 -0.0280118 +0.0201693 0.125674 0.00144037 +-0.0587501 0.0482189 0.00571238 +-0.013346 0.168342 -0.0159797 +-0.0683811 0.149044 -0.0363633 +-0.0558475 0.0343686 0.0374162 +-0.0590903 0.0626036 0.0281123 +-0.0331372 0.0336314 -0.0222436 +-0.0678611 0.0980605 -0.0159397 +-0.0472308 0.0334623 0.00452598 +-0.0167567 0.0714512 -0.0386579 +-0.0184671 0.10319 -0.0232847 +-0.0675365 0.0805511 0.0417814 +-0.0666009 0.15275 -0.0468174 +-0.00387787 0.10737 -0.022403 +-0.0300213 0.0579734 -0.0204069 +-0.00579466 0.103184 -0.0232761 +-0.0775304 0.143071 -0.00473432 +-0.00757151 0.0346922 -0.0244599 +-0.0355091 0.0676694 0.0413832 +-0.0185092 0.127137 0.00354165 +0.0289004 0.0650837 -0.0199869 +-0.0224914 0.04868 0.0491885 +-0.0194885 0.0856172 0.056795 +-0.0625301 0.147537 -0.0105732 +0.00324634 0.0726279 -0.0347233 +-0.0117444 0.129778 0.0154481 +0.0381223 0.106958 0.0251953 +0.0134297 0.0343278 -0.0118215 +0.00450615 0.0772491 0.0561317 +0.00914326 0.112364 0.0397506 +0.0165994 0.0933382 -0.024824 +-0.0530349 0.0448324 0.0176964 +-0.0861503 0.0818963 0.00748815 +-0.07574 0.144451 -0.00587632 +-0.0796195 0.104749 0.0319273 +0.0404835 0.052774 0.0322642 +0.0420568 0.0986443 0.0231563 +-0.0887511 0.102351 0.0133854 +0.0132668 0.0723896 -0.0312102 +-0.0507233 0.0723393 -0.0157137 +-0.00754786 0.039018 -0.00905888 +-0.0488259 0.138613 0.00940263 +0.0057745 0.128094 -0.00399317 +-0.0523396 0.147791 0.0193952 +-0.048265 0.136372 0.0159973 +-0.0604426 0.0470258 0.0346715 +0.0367367 0.0902141 0.03744 +-0.0895793 0.136441 0.0122186 +0.0376089 0.108292 0.000165208 +0.0353713 0.0915869 0.0389643 +-0.0211976 0.0347654 0.0444796 +0.00223085 0.129379 -0.00131325 +-0.0737831 0.0864021 -0.0154104 +-0.0127393 0.0700008 -0.0380391 +-0.0657273 0.0751276 -0.0164058 +0.00937487 0.0377648 0.0302588 +-0.035816 0.0448118 0.0437923 +-0.0549046 0.102722 -0.0198351 +0.0460481 0.046714 0.0276632 +0.00759173 0.131318 0.00819364 +-0.0721931 0.161015 -0.0399435 +0.0102622 0.0710503 -0.0323195 +0.0194745 0.0851519 0.050256 +-0.0399319 0.0345158 0.0389424 +-0.0616692 0.167812 -0.0545903 +-0.0056922 0.0584499 -0.034018 +-0.0203692 0.094546 -0.032294 +-0.070351 0.158156 -0.0469171 +-0.023866 0.103031 -0.0237009 +0.0528846 0.0533107 -0.0017243 +-0.0319516 0.077812 -0.0315646 +0.00951738 0.0660057 0.0546772 +0.0137336 0.122464 0.0333928 +-0.0199595 0.125484 -0.000738697 +0.00049871 0.116947 0.0399069 +-0.0359892 0.0344491 0.0345711 +-0.0443682 0.129764 0.015339 +0.0452819 0.0932028 0.00617084 +-0.00813465 0.0391286 -0.0130168 +0.0394097 0.0618135 -0.00677045 +-0.0701845 0.158483 -0.00465374 +0.0322675 0.102123 0.0362847 +-0.0374987 0.0819015 0.0436538 +0.0396969 0.0616754 0.0309066 +-0.0455673 0.0475992 -0.010259 +-0.0527627 0.115451 0.034109 +0.0208176 0.0631975 0.0476002 +-0.0618301 0.0924936 -0.0189652 +-0.053883 0.150856 0.0253998 +0.0245243 0.105615 0.0392344 +0.00385761 0.129628 0.0254511 +-0.00549072 0.0488848 0.0502608 +-0.0300389 0.036799 0.0524219 +-0.0580426 0.153536 0.0303048 +0.0220166 0.125337 0.0220596 +0.0312265 0.0393227 0.0260732 +-0.0171047 0.17569 -0.0178772 +0.016571 0.0940211 0.0486896 +-0.0505514 0.0338848 0.0267025 +-0.0625417 0.0410514 0.0154849 +0.0355348 0.112677 0.0214127 +0.00150774 0.0897546 0.056027 +-0.0190957 0.0968508 -0.0266962 +0.0511508 0.0608575 0.0299274 +0.0163905 0.0491901 -0.024833 +0.0345652 0.114846 0.0110543 +0.0581139 0.0523629 0.0131822 +-0.0417396 0.0754091 -0.018561 +-0.0814751 0.118981 0.0489466 +0.00013405 0.105909 -0.0216496 +-0.0908345 0.139239 0.02018 +-0.0424766 0.101515 0.0416909 +-0.0260624 0.0837492 0.0512652 +-0.0500875 0.0531258 0.0337221 +-0.0706477 0.0874116 0.0418374 +-0.0366978 0.0363155 -0.0300943 +0.00451245 0.064772 0.0563635 +-0.0753069 0.109577 0.0422017 +-0.0284025 0.119846 0.0286714 +0.033406 0.0822268 0.04133 +0.0595932 0.0608555 0.0201843 +-0.00204808 0.0983649 0.051847 +-0.0574847 0.0623327 0.0283417 +-0.0229389 0.126187 0.00412352 +0.0390327 0.0744186 -0.0107818 +-0.0855097 0.129367 -0.00169404 +-0.0647036 0.0653044 0.0298737 +-0.0064934 0.10867 0.043581 +-0.0685164 0.0669975 0.0293604 +-0.0705096 0.1624 -0.046948 +0.0125251 0.129483 0.0214195 +-0.0221845 0.172691 -0.0208918 +0.0153262 0.0767707 0.0538598 +-0.0905235 0.137837 0.0161933 +-0.0545439 0.0402656 -0.0102441 +-0.0688509 0.171089 -0.0344529 +-0.0884641 0.0887716 0.00547605 +-0.0903526 0.116014 0.0283099 +-0.0623807 0.147545 -0.00857398 +-0.061927 0.109672 -0.0156348 +-0.0579856 0.116646 -0.0132522 +0.0395731 0.0448559 0.0300931 +0.00658391 0.130753 0.00354793 +-0.0647804 0.153444 -0.00410741 +0.00522677 0.078235 -0.0342467 +-0.0495662 0.0335706 -0.0032948 +0.00181081 0.131692 0.0146438 +-0.0635975 0.15411 -0.00948093 +-0.0855227 0.133522 0.000289437 +-0.025262 0.107417 -0.0217613 +-0.0340021 0.0409714 0.0491624 +-0.0146057 0.0406867 -0.0271172 +-0.0174894 0.0687336 0.053904 +-0.01522 0.183001 -0.0269465 +-0.0500642 0.142991 0.00242772 +-0.0679313 0.0622594 0.0032802 +-0.0551811 0.133216 -0.00483226 +-0.0284216 0.0792864 0.045297 +0.00824429 0.0809884 -0.0331618 +0.00929618 0.123787 -0.00937811 +0.0228212 0.0889774 -0.0242065 +-0.0185099 0.0883573 0.0560195 +0.0282298 0.0717826 -0.0228933 +-0.0251238 0.125152 0.00185767 +0.019545 0.103378 0.0442321 +-0.0673703 0.122848 0.0518073 +0.0357587 0.067099 -0.014806 +0.00197653 0.0987575 -0.0246237 +-0.0655762 0.155146 -0.00586759 +0.012488 0.119576 0.0355898 +-0.0514967 0.101534 0.0419051 +-0.0095351 0.0444416 0.0488648 +-0.00470695 0.0982478 -0.0280611 +-0.05601 0.0575293 -0.00241387 +-0.0602761 0.139548 0.0339321 +-0.0517453 0.0753545 -0.0181561 +-0.038969 0.042042 0.0415955 +-0.0636896 0.064322 -0.00564195 +-0.0398457 0.0985451 -0.0219087 +-0.0191826 0.127252 0.0185952 +-0.0873123 0.0886781 0.00248146 +-0.0488082 0.0884112 -0.0217819 +-0.0498768 0.104205 -0.0203216 +-0.0409029 0.149467 0.00342301 +-0.069185 0.156032 0.0248455 +-0.0506717 0.0501974 0.0196351 +-0.0301161 0.0396403 0.0523893 +-0.000520242 0.104454 0.0440018 +-0.0290025 0.0578755 -0.022406 +-0.0610145 0.0336026 0.00878975 +-0.0917872 0.143341 0.0171661 +-0.0279974 0.0383174 -0.0050935 +-0.0913132 0.113305 0.0163255 +0.0313508 0.109263 -0.00976359 +-0.00332487 0.0387243 0.0268007 +0.0222104 0.125239 0.00503339 +-0.04503 0.129294 0.00327025 +-0.0176724 0.0933571 0.0538975 +-0.0234883 0.0487024 0.0493089 +0.0421092 0.0724515 0.0291612 +-0.0653912 0.159256 -0.0130566 +-0.00402317 0.0387663 0.0011878 +-0.0338313 0.0929547 -0.0239607 +0.00379004 0.0367184 0.046186 +-0.0186801 0.0525094 -0.0314832 +-0.0351354 0.165203 -0.0147634 +-0.0705038 0.108294 0.0372772 +0.0246817 0.0360382 0.0240669 +-0.0204805 0.0828473 0.0567838 +0.0326609 0.0673309 0.0401471 +-0.0296335 0.0635627 -0.0254272 +-0.0548571 0.0546624 -0.0043828 +0.00968485 0.0342244 -0.0162577 +-0.0810826 0.144759 0.0420272 +0.00767659 0.0346834 0.0054103 +-0.0830301 0.110196 0.00131843 +-0.00544058 0.119032 -0.0141551 +-0.0255852 0.0930492 -0.0306058 +-0.0714911 0.116102 0.0521112 +0.0318609 0.0710037 -0.0187224 +0.0280264 0.121739 0.0100361 +-0.0514799 0.0384723 -0.0115832 +-0.0764395 0.0988661 -0.011539 +-0.0186212 0.04503 -0.027692 +0.0334766 0.0519565 -0.00767966 +-0.0541438 0.151337 0.0259237 +-0.00148294 0.0606073 0.0558577 +0.0148272 0.0344434 -0.00977208 +-0.0391932 0.171233 -0.0109027 +-0.035755 0.0783248 -0.0195335 +0.0355134 0.0795005 0.0390801 +0.0603494 0.0609121 0.0171857 +0.0394635 0.075864 -0.00982057 +-0.0470363 0.0359078 0.0451061 +-0.0608634 0.154346 0.0292597 +-0.0748097 0.109257 0.0407877 +-0.0262745 0.0692227 0.0420449 +0.0243768 0.0533073 -0.022554 +-0.0530668 0.0348658 0.0444554 +0.0259946 0.0347155 0.014606 +-0.0591124 0.121234 0.0408265 +-0.0144894 0.112737 0.0404341 +-0.0838486 0.0803675 0.00250235 +-0.0582446 0.13534 0.0351018 +-0.0214986 0.100246 0.0444424 +-0.0713881 0.068562 0.0291565 +-0.0155474 0.160527 -0.0107791 +0.0215063 0.107058 0.0398344 +-0.0331542 0.158077 0.00281987 +-0.0863235 0.110381 0.0203696 +-0.0312005 0.162424 -0.00314295 +0.0384543 0.0395883 0.0218564 +0.0385307 0.0554981 0.0313684 +-0.0114896 0.0560578 0.0523304 +0.0593092 0.0622231 0.0211664 +-0.0648434 0.0339553 0.0130374 +0.0180082 0.0355585 0.00482766 +0.0399371 0.077993 0.0331058 +0.00160174 0.0351275 0.0454175 +-0.032718 0.0396362 0.0507617 +-0.0524899 0.0973506 0.0433264 +-0.032502 0.104286 0.0408563 +-0.00468764 0.0584239 -0.0337898 +-0.0672529 0.0760725 0.0393761 +0.0584714 0.0552095 0.0201836 +-0.0416396 0.0548863 -0.0113812 +0.014767 0.129313 0.0151085 +0.0271615 0.0578042 0.0426556 +-0.0133509 0.0384568 0.00507202 +-0.0770775 0.0703016 0.00351307 +-0.0514866 0.0748352 0.0426181 +-0.0882111 0.0936365 0.0238814 +-0.0906238 0.143032 0.0276653 +0.0233319 0.059176 0.0459237 +-0.036826 0.0446589 -0.0260242 +0.0332346 0.0955533 0.0394336 +-0.000484271 0.038989 -0.00201961 +0.0427221 0.101476 0.00816485 +0.0419002 0.102864 0.0131587 +-0.0208004 0.181643 -0.0143459 +0.0352424 0.0726953 -0.0147969 +-0.0234839 0.0509996 0.0435588 +0.0352381 0.0443124 0.029693 +0.000403091 0.0348316 -0.0232847 +-0.0684959 0.10279 0.039811 +0.019265 0.0708008 -0.0287723 +-0.0516068 0.0345225 0.0433683 +0.0391514 0.0617239 0.0318804 +0.0135008 0.111258 0.0394003 +0.0304359 0.108504 -0.0109544 +-0.038743 0.0768256 -0.018638 +-0.0223183 0.094515 0.0486399 +-0.0435018 0.0478421 0.040059 +-0.0727332 0.173623 -0.0510446 +-0.00349112 0.118315 0.0390164 +-0.0884421 0.133772 0.0426038 +-0.0454967 0.109818 0.0383281 +-0.0145 0.0392233 0.0384538 +-0.00466385 0.129429 0.0252614 +-0.00582274 0.088227 -0.0364178 +-0.0454902 0.0352033 -0.0224188 +-0.0348607 0.100046 -0.0224582 +-0.0792519 0.17071 -0.0410714 +-0.0376133 0.0393512 -0.0290006 +-0.0640598 0.170094 -0.0457055 +0.0303225 0.119467 0.0166127 +-0.0902791 0.116199 0.0435835 +0.0222032 0.0352055 0.0243097 +-0.073336 0.0968702 0.0400088 +-0.0376144 0.0393494 0.044329 +-0.0105011 0.0870252 0.0569814 +-0.0507332 0.161533 -0.00440491 +-0.0779412 0.162504 -0.0229403 +-0.0754919 0.128859 0.0530266 +-0.0541372 0.0344723 0.0359505 +0.0113242 0.0581457 -0.0297724 +-0.0442953 0.0391467 0.0441537 +0.0242713 0.035754 0.000294462 +-0.0615051 0.159991 -0.0325895 +-0.00166807 0.0568963 -0.03242 +-0.0119937 0.164096 -0.013967 +0.0166698 0.0900802 0.0505874 +0.0232051 0.0672264 0.0457926 +-0.0547028 0.0693497 -0.0142348 +-0.0645039 0.15312 0.03389 +-0.0344884 0.0918084 0.0445658 +0.0553932 0.0493283 0.0071983 +-0.047221 0.115086 -0.0157836 +-0.0737507 0.0835282 -0.0152437 +-0.00700363 0.0992954 0.0501023 +-0.0124605 0.0646213 0.0545516 +-0.0529942 0.0345374 0.0413527 +-0.0926054 0.122844 0.0302746 +-0.0652377 0.0419529 0.0337045 +0.0450967 0.0889619 0.00117113 +-0.0632063 0.0448721 0.0103941 +-0.0177692 0.074285 -0.0389303 +-0.0226723 0.0582322 -0.0321918 +-0.0233871 0.0380454 0.010662 +0.0144228 0.120472 -0.0118376 +-0.00758227 0.0362053 -0.0250795 +-0.0394882 0.0804267 0.0429074 +0.0505096 0.0651476 0.0284061 +0.0412879 0.0914659 -0.00877665 +-0.0613587 0.0343255 -0.00949544 +-0.0739143 0.148544 -0.0218644 +-0.0607701 0.0447346 0.0418038 +-0.0300938 0.0476999 -0.0248901 +-0.0666558 0.0720875 -0.0129051 +-0.0732714 0.156195 0.0132096 +-0.0340151 0.0498932 -0.013349 +-0.0484988 0.0762375 0.0432182 +-0.0614924 0.0384787 0.0187446 +-0.0572292 0.155416 0.0145778 +-0.0105966 0.0391805 -0.0262222 +0.00120442 0.117582 -0.0166604 +-0.070211 0.165211 -0.0489867 +0.0483875 0.0444574 0.00325794 +-0.0764978 0.13308 0.0521415 +-0.035201 0.0345651 0.0381519 +-0.00449959 0.107273 0.0439086 +-0.0266181 0.042276 -0.0292233 +-0.0364985 0.120712 0.0292752 +-0.0735593 0.15583 0.0102013 +-0.0554797 0.0848037 0.0450617 +-0.0845128 0.0817443 0.00347449 +-0.0169788 0.106067 -0.0223329 +-0.0699464 0.151677 0.0365135 +-0.0160243 0.0897174 -0.0373532 +-0.035698 0.0857595 -0.0237144 +-0.0308696 0.105755 -0.0215547 +-0.0475005 0.084795 0.044997 +0.00720445 0.088027 -0.0329216 +0.0388792 0.085648 -0.0137779 +-0.0451911 0.163637 -0.00858913 +-0.0752855 0.176467 -0.0519633 +-0.0568165 0.155074 0.0161832 +0.0369538 0.108295 0.0261877 +-0.0788782 0.172865 -0.0427748 +-0.0439777 0.0345259 0.038072 +0.0238242 0.0981836 0.0451545 +-0.0394936 0.0548399 0.0395943 +0.0242629 0.0790161 -0.0251629 +-0.0665084 0.0903473 0.0440273 +0.0291366 0.0495584 -0.0147305 +0.0191581 0.0357679 0.0376614 +-0.0278785 0.0535209 -0.0244081 +-0.00947834 0.12371 0.0334225 +-0.0570388 0.149629 0.0316784 +0.0117574 0.130329 0.0182774 +-0.00158005 0.131357 0.0134024 +-0.0657222 0.0431534 -0.00229362 +0.0404535 0.0689201 -0.00879299 +-0.0195496 0.161752 -0.0147401 +0.0435566 0.0695959 0.0259839 +-0.0893231 0.14203 0.0321578 +-0.0832597 0.10897 0.0263609 +0.00296745 0.0390391 -0.00510833 +0.0160439 0.0505074 0.0458237 +-0.0213985 0.181639 -0.0134576 +0.000249699 0.0347599 0.0129869 +-0.0138688 0.163706 -0.0171714 +-0.0787597 0.163865 -0.0299483 +-0.0321103 0.178539 -0.0110044 +-0.0062818 0.102371 0.0437669 +-0.0504236 0.113946 -0.0165184 +-0.0808373 0.0858965 0.0337281 +-0.0833697 0.0790868 0.0225099 +0.0174757 0.101745 0.0462033 +0.0562413 0.0521934 0.00418603 +-0.0386753 0.127489 0.0159666 +-0.0714887 0.0860678 0.0412957 +0.00930465 0.0639279 -0.0315779 +-0.038992 0.126654 0.0188148 +-0.0617292 0.0435742 0.0131822 +-0.0807044 0.109603 0.0338418 +0.01567 0.0343236 0.00175615 +-0.0151083 0.184586 -0.0219884 +-0.0792845 0.0704649 0.0170607 +-0.0611161 0.170955 -0.0586033 +-0.0656715 0.0684169 0.0339875 +-0.0346163 0.0505906 -0.0107587 +0.0292004 0.0566287 -0.0178044 +0.0402348 0.101386 0.0251818 +-0.0356488 0.118923 -0.0117804 +-0.00759062 0.117967 -0.0150103 +-0.0344873 0.0959942 0.0440904 +-0.0675456 0.035487 -0.00647 +-0.0177849 0.0784811 -0.0386843 +-0.0357813 0.0828042 -0.0224653 +-0.0217893 0.122494 0.0280004 +-0.040789 0.084093 -0.0212481 +-0.0448136 0.0629573 0.0395248 +-0.0851812 0.137956 0.0449006 +-0.0879612 0.103656 0.0103875 +-0.0558857 0.0998486 -0.020419 +0.017256 0.079507 0.0531399 +-0.0315382 0.178553 -0.0120253 +-0.06991 0.11224 -0.0100103 +-0.0512969 0.0556828 0.0150377 +0.0224682 0.0520683 0.0428376 +0.0143831 0.0448677 -0.0245168 +-0.0794364 0.144805 0.0432098 +-0.0638846 0.103946 -0.0172176 +-0.0284346 0.0849121 0.0465284 +0.0144928 0.11263 0.0387455 +-0.0860797 0.0882889 0.0261675 +-0.00931865 0.0862591 -0.0377315 +-0.0226749 0.0380487 0.0198364 +-0.0875543 0.0861148 0.0194651 +-0.0578317 0.0344516 0.0369209 +-0.0410907 0.157679 -0.0102957 +-0.0680436 0.0337635 0.00720288 +-0.0778811 0.104813 -0.00803583 +0.0518058 0.0553999 0.0290848 +-0.0504997 0.160817 0.00728082 +0.0241356 0.0632152 0.0453534 +-0.0268604 0.100151 -0.0237263 +0.0127955 0.0874066 0.0537621 +-0.0616261 0.155549 0.00719382 +-0.0593595 0.0336431 -0.00899455 +-0.065903 0.0643977 0.026882 +0.0278843 0.0536982 -0.0197695 +-0.0335041 0.0789099 0.0415331 +0.0414488 0.0873044 0.0301508 +-0.0627531 0.161513 -0.0475897 +0.0292606 0.0447502 0.0332372 +0.0105493 0.122164 -0.0116505 +-0.0908004 0.115922 0.00730178 +0.0306755 0.0581744 -0.0167704 +-0.0745653 0.158254 -0.0269305 +0.0417869 0.088692 -0.00877741 +-0.0765465 0.107865 0.0361429 +0.0291715 0.104768 0.0370747 +-0.0435198 0.0436724 -0.0163157 +-0.0639905 0.155091 0.00636862 +-0.0676976 0.156296 0.0180917 +0.0361371 0.0605355 0.0363255 +-0.0831336 0.135327 0.0485953 +-0.0205283 0.125395 0.0225414 +0.0218584 0.126105 0.0106 +-0.0573551 0.0335045 0.00783858 +-0.0766685 0.144473 -0.00485242 +0.0215827 0.0449804 0.0414892 +-0.0623027 0.152202 -0.0135791 +-0.0124889 0.118271 0.037774 +-0.058999 0.129653 -0.00698695 +0.0212269 0.035264 0.00760182 +-0.0558448 0.0533792 -0.00239414 +-0.042206 0.147853 0.000366775 +-0.0732213 0.156852 -0.0309091 +0.00482377 0.0349755 -0.00101746 +0.00553205 0.131427 0.00744951 +-0.0606157 0.0459479 0.0402046 +0.00228793 0.0626666 -0.0335374 +-0.00869718 0.172706 -0.0257786 +0.0265924 0.0466157 -0.0146569 +0.0293044 0.0481199 -0.00974071 +-0.0278981 0.0863323 0.047373 +0.029421 0.0461183 -0.00671048 +-0.058539 0.0588103 0.0191792 +-0.0577583 0.0479183 0.03595 +0.0299489 0.069977 0.0415097 +-0.0877683 0.149882 0.0273982 +-0.0403006 0.122206 -0.0112466 +-0.0731823 0.109139 0.039466 +0.00748061 0.115492 0.0392535 +-0.0323193 0.0339823 0.0197127 +-0.00249248 0.0911617 0.056251 +-0.0410706 0.0335739 0.0056728 +-0.0167629 0.120643 -0.00969861 +0.0170314 0.126681 0.0245104 +-0.0933703 0.118789 0.0242915 +-0.0167466 0.161131 -0.0135692 +-0.037714 0.0710075 -0.016855 +-0.0748306 0.094995 -0.0139518 +-0.0653015 0.169027 -0.0374543 +-0.0171592 0.0387994 -0.0126424 +-0.0649264 0.112407 -0.0127033 +0.0089357 0.131311 0.0143899 +-0.0695053 0.106913 0.0375568 +-0.0679519 0.129695 -0.00900682 +0.0196594 0.10025 -0.0221259 +0.0187375 0.0672729 0.0498973 +-0.0634922 0.0626336 0.0253957 +-0.0640428 0.0593154 0.0139941 +-0.0365043 0.0691064 0.0417512 +-0.0509946 0.0547172 0.0191515 +-0.0684996 0.106934 0.0379267 +-0.0391114 0.149509 -0.00165293 +0.00150153 0.0534013 0.0535077 +-0.0610153 0.131125 -0.0076807 +-0.015856 0.0980295 -0.0258983 +0.0549279 0.0723085 0.00788581 +0.0296197 0.117006 0.0277632 +0.00535242 0.130989 0.0202309 +-0.000691446 0.0612541 -0.0338404 +0.00150093 0.0441835 0.0459725 +-0.0611099 0.11531 0.0378549 +-0.0695161 0.108303 0.0373324 +-0.0543547 0.158623 0.00837339 +-0.0945603 0.124158 0.0182654 +-0.0535009 0.111177 0.0367213 +-0.0119534 0.0385403 0.00164014 +-0.0370531 0.166795 0.000693639 +0.0161005 0.115637 -0.0146217 +-0.0669681 0.132599 -0.00847972 +-0.0192376 0.0362049 0.0528295 +-0.0510947 0.138549 0.00140254 +0.0199501 0.126815 0.00703133 +-0.0280876 0.0511424 0.0415727 +0.0021184 0.108719 -0.0202691 +-0.0455158 0.0889126 0.0438293 +0.00898082 0.0376394 0.0339008 +-0.0913279 0.147458 0.016148 +-0.00573884 0.0712887 -0.036141 +0.0184912 0.0906471 0.0481735 +-0.0240484 0.159369 -0.0122932 +-0.00386335 0.103093 -0.0232514 +-0.0903131 0.126767 0.00528424 +-0.00141239 0.101018 0.0444401 +-0.0265472 0.0384572 -0.00862977 +-0.0461338 0.160629 -0.00828859 +0.0434078 0.0958974 0.0221477 +-0.0323682 0.0778417 -0.0305703 +-0.0104869 0.166942 -0.0170857 +0.0335642 0.11614 0.00925074 +-0.0679156 0.112303 -0.0110315 +0.0448529 0.0917799 0.0171662 +-0.0902457 0.140661 0.0271695 +0.0361358 0.102075 -0.0100705 +-0.0774559 0.158948 -0.0154272 +-0.0718839 0.142969 -0.00986002 +0.0254315 0.0862638 0.0474376 +0.0233509 0.0549381 -0.0249484 +0.0445042 0.0650854 0.0275412 +0.0472882 0.0731371 0.0168777 +0.0310703 0.0352449 0.00774073 +-0.0540072 0.144242 -0.000990452 +-0.0901845 0.132425 0.0322244 +-0.0305014 0.066031 0.0387492 +-0.0636396 0.163113 -0.0245909 +0.0265757 0.0754454 0.0454823 +0.0560761 0.0692634 0.0230866 +0.0323242 0.117657 0.0116569 +-0.0744896 0.128852 0.0526631 +-0.092535 0.126933 0.0292581 +-0.021881 0.107267 -0.0220871 +0.0216673 0.125834 0.0205048 +-0.0892808 0.140568 0.013241 +-0.0188177 0.0683045 0.0530002 +0.0181426 0.117476 -0.0126083 +-0.0562843 0.049932 0.00898241 +0.0271917 0.0858851 -0.0222975 +-0.0354636 0.172718 -0.000342918 +-0.0113055 0.0991708 0.0485876 +-0.0512476 0.149342 0.0143776 +0.0112062 0.129253 0.000760937 +-0.027273 0.123571 -0.00271305 +-0.0942867 0.122796 0.0162787 +-0.0731111 0.152638 -0.0358925 +-0.0630631 0.0351206 0.0420909 +-0.0638567 0.0981567 -0.0173229 +-0.0886136 0.0969805 0.0223931 +0.0376971 0.0381803 0.0174952 +-0.0389196 0.163835 0.00150184 +0.0470726 0.048551 -0.0036464 +-0.0195067 0.119545 0.0340058 +-0.0154952 0.101637 0.0439764 +-0.0615198 0.167807 -0.0565879 +0.000487515 0.110024 0.0426254 +0.0218587 0.0714183 0.0491823 +-0.0891206 0.0888853 0.014456 +0.00728906 0.0602827 0.0543511 +0.0159015 0.122788 0.0313235 +0.0287151 0.0982016 0.0416756 +-0.0515592 0.162515 0.00512403 +-0.0562626 0.0437454 0.0167126 +-0.0181312 0.0948304 -0.0325641 +-0.0375002 0.0337858 -0.019518 +-0.0283411 0.0368095 0.0535577 +0.0138368 0.126165 0.029064 +-0.0698832 0.115052 -0.00855978 +-0.0166197 0.126668 0.0238945 +-0.062914 0.11807 -0.00990368 +-0.0489018 0.129654 0.0292632 +-0.0524468 0.0489914 0.023647 +-0.0590382 0.132561 -0.00680716 +-0.0429798 0.150656 0.00610371 +-0.0708619 0.0368523 0.00979504 +0.0198172 0.102563 -0.0205962 +0.0416527 0.0846461 0.030449 +-0.0215106 0.119492 0.0328652 +-0.0144877 0.185446 -0.0257702 +0.0475192 0.0568404 0.0316921 +-0.0913388 0.115949 0.00831473 +0.0281313 0.0591962 0.0423168 +-0.035495 0.171374 -0.0137494 +-0.0736292 0.156748 -0.0014693 +-0.00249426 0.0505094 0.0526827 +-0.0909607 0.144377 0.0265412 +-0.0410851 0.123071 0.0255089 +-0.0226414 0.0961417 -0.0259441 +0.0264078 0.120534 -0.000510633 +-0.0193661 0.126578 0.00214409 +0.0465619 0.0568462 0.0320779 +0.0207007 0.040829 0.0419301 +-0.0564899 0.0440403 0.0448345 +0.000863008 0.0381264 -0.0140589 +-0.0418598 0.102811 -0.0210501 +-0.00158954 0.0376715 -0.025054 +-0.0723294 0.177884 -0.0550149 +-0.0544961 0.0732542 0.0409056 +-0.00649673 0.121064 0.0364033 +0.0504194 0.0446982 0.00822878 +-0.0153541 0.0337728 -0.0226273 +-0.0303696 0.0486908 0.0439216 +-0.0334968 0.033775 0.00883944 +-0.0685163 0.108328 0.0375372 +-0.0304988 0.0603029 0.0376116 +-0.0662971 0.0363734 0.0376513 +0.0311541 0.072342 -0.0197804 +0.016819 0.0860765 0.050782 +-0.067492 0.0944588 0.0423306 +-0.0187655 0.0714126 -0.0384549 +-0.0605051 0.128314 0.040613 +0.00838174 0.0449018 -0.0251393 +-0.0164768 0.122235 0.0319313 +0.0227625 0.125142 0.00666699 +-0.0528343 0.0337802 -0.0114802 +0.0451301 0.0903696 0.00218472 +-0.0576106 0.148673 -0.00161022 +0.00250457 0.100333 0.0462614 +-0.0262513 0.0350951 0.0517484 +-0.054684 0.067848 -0.0128124 +-0.0441291 0.159145 -0.00944971 +-0.0440467 0.0380432 -0.0230799 +-0.0447681 0.146394 0.00358641 +-0.0894274 0.0915536 0.0114438 +-0.0751139 0.0954949 0.0389973 +0.0383178 0.106879 0.000185785 +-0.0732998 0.0654414 0.00491231 +-0.00228741 0.13015 0.0232201 +-0.0372213 0.150899 -0.00386632 +-0.0261116 0.0809919 0.0513952 +0.0322341 0.112712 0.0291688 +-0.0690565 0.0338884 -0.00389811 +0.0101437 0.101615 -0.0217271 +0.0425651 0.10009 0.017161 +-0.0355201 0.16973 -0.000114667 +0.00176571 0.0954911 -0.0311224 +0.0373922 0.0461028 -0.00552229 +-0.0261166 0.163762 -0.0159025 +-0.0651006 0.0458549 0.00368955 +0.0212923 0.0982999 -0.0220426 +0.026467 0.0383015 -0.00253304 +-0.0231343 0.0383693 -0.0171708 +0.00758009 0.121578 -0.0129987 +-0.0491724 0.116402 -0.0151155 +-0.0174383 0.038419 -0.00120725 +-0.0368548 0.0985914 -0.0223265 +-0.0599288 0.145383 0.0362513 +0.00646924 0.0964123 0.0516046 +-0.0630484 0.138442 -0.00719818 +-0.0266978 0.0917701 0.0460149 +-0.0534968 0.0790911 0.0438637 +-0.0203653 0.0682964 0.0517114 +0.0203853 0.049027 -0.0227929 +-0.0539349 0.0527611 0.0108042 +0.0460422 0.0848268 0.0101717 +-0.0728228 0.148718 -0.0323717 +0.0337238 0.11401 0.0250189 +-0.0718098 0.0864713 -0.016231 +-0.000525817 0.0352062 0.0124275 +0.0044963 0.0605551 0.0556784 +0.0278498 0.045613 -0.00720046 +0.0242032 0.0987613 -0.0205495 +0.0133536 0.0359529 -0.0210721 +-0.00614443 0.0386147 0.00639011 +-0.091603 0.144731 0.0191577 +-0.00870302 0.0387758 0.0292604 +0.00137957 0.0343513 0.00995357 +0.0580311 0.0716366 0.0149943 +0.029585 0.0495591 -0.0127459 +-0.0873232 0.0873446 0.00247822 +-0.0562907 0.154938 0.0178178 +0.0227189 0.116065 -0.0110894 +-0.089541 0.143417 0.0301691 +-0.0295204 0.0607307 -0.0234192 +-0.072166 0.0982206 0.0402281 +0.0461397 0.0764263 0.0052018 +-0.0650238 0.0405393 0.0286621 +-0.0357662 0.0798799 -0.0213145 +-0.0210545 0.100222 -0.024166 +-0.051798 0.0884029 -0.0218862 +-0.0585235 0.0425717 0.0226979 +-0.0581184 0.132538 0.0370402 +-0.0500652 0.125773 -0.00688378 +-0.0570027 0.145725 -0.00171879 +-0.000114754 0.120081 -0.0133088 +-0.0558569 0.135328 0.0332838 +-0.071744 0.162192 -0.0110365 +-0.0533559 0.0609747 0.0280244 +-0.0678966 0.110866 -0.0116376 +-0.0708871 0.119431 -0.00850422 +-0.0743754 0.0995209 0.0381506 +-0.0827936 0.110133 0.0365 +0.0274001 0.0354299 0.0197116 +-0.0700593 0.152584 0.0349486 +-0.0594807 0.0398598 0.0207095 +-0.0506478 0.0648447 -0.0114426 +-0.0548507 0.0955893 -0.0216695 +-0.0735032 0.144216 0.0449341 +-0.0746874 0.169403 -0.0279937 +-0.041349 0.172669 -0.00697494 +-0.0879813 0.0968653 0.0054141 +-0.0639066 0.158701 -0.0499459 +-0.0295413 0.0348538 0.0461198 +0.0425062 0.0610428 0.0297234 +-0.0761006 0.0693618 0.0222283 +0.0350916 0.102085 0.0333486 +-0.0434936 0.107078 0.040105 +-0.0210995 0.166843 -0.0113898 +-0.0599936 0.0459773 0.0409964 +0.0260763 0.0726986 0.044735 +0.0368852 0.111459 0.00613554 +-0.00301536 0.127034 0.030217 +-0.0313536 0.0384061 -0.00216621 +0.0173795 0.0350198 0.030737 +-0.072846 0.165216 -0.0419869 +-0.0344415 0.176449 -0.00471515 +0.00170995 0.0392427 0.0309786 +-0.04085 0.0985381 -0.021696 +-0.0479764 0.135553 0.00940627 +-0.0332667 0.0835875 -0.0265323 +0.0206498 0.0781917 0.0510092 +0.0122103 0.0893249 -0.030653 +-0.0464803 0.0335784 -0.0137021 +-0.0367962 0.0383714 -0.00507539 +-0.00449141 0.0911839 0.0565229 +0.0243337 0.0605883 -0.0247185 +-0.0826166 0.123078 0.0498508 +0.0540378 0.0525213 0.0252382 +-0.0675101 0.0369158 -0.0062949 +-0.0205096 0.124449 -0.00369667 +0.0285796 0.107031 -0.0133812 +0.0320794 0.0526694 -0.0107538 +-0.0203373 0.0610131 0.0476733 +-0.0674469 0.0396367 -0.00494886 +-0.0599339 0.120955 -0.00911512 +0.0168017 0.105866 -0.0181237 +-0.0787857 0.0744548 -0.00455566 +0.0193044 0.127372 0.00964815 +-0.038368 0.0457007 -0.0229731 +-0.025877 0.125557 0.00449924 +-0.0609237 0.0414243 0.0237035 +-0.0433646 0.153626 0.00736711 +-0.0513808 0.0500433 0.0347314 +-0.0212772 0.0382158 0.00549847 +0.0220013 0.0348195 0.00816409 +-0.0519377 0.0335199 0.00532131 +0.00789859 0.0999878 -0.0218807 +0.0337096 0.115696 0.0178949 +-0.0404258 0.0418709 -0.0242648 +-0.0188763 0.105884 -0.0226282 +-0.0648153 0.175482 -0.051724 +-0.070065 0.148313 -0.0344143 +-0.0584005 0.0439707 0.0246877 +0.0215152 0.0795452 0.0505127 +-0.000765864 0.0811873 -0.0364626 +-0.0633527 0.0454486 0.000289555 +-0.0455004 0.113892 0.0345333 +-0.0205229 0.0336428 -0.0235211 +-0.0658189 0.0895406 -0.0182783 +0.00772286 0.0346363 0.0381279 +0.044441 0.093115 0.00120191 +-0.0859796 0.119771 -0.00178632 +0.00662772 0.0374926 -0.0123303 +-0.0495602 0.0418248 -0.0110192 +-0.0863354 0.129395 -0.000699295 +-0.00570279 0.0613633 -0.0351663 +-0.0195101 0.114089 0.03835 +-0.0679008 0.1038 -0.0147014 +0.045275 0.0917907 0.0041773 +0.0258455 0.110181 -0.0127425 +-0.00858661 0.0376839 -0.0256139 +-0.0494924 0.160775 0.00747898 +-0.0186783 0.101771 -0.0238107 +-0.0870678 0.11107 0.0203515 +-0.0692028 0.135485 0.0474165 +-0.0665472 0.0446244 0.00170489 +-0.0679768 0.0791427 0.0408622 +0.0184726 0.0851741 0.0505075 +-0.0203373 0.158355 -0.00674555 +-0.0364979 0.119358 0.0304421 +-0.0395021 0.0450562 0.0411081 +-0.00309828 0.0379762 0.00940157 +-0.054497 0.10568 0.0405938 +-0.0354869 0.0903478 0.043788 +-0.0882673 0.102346 0.019362 +-0.0518479 0.128319 0.033784 +0.0163666 0.0522247 -0.0268816 +-0.0216233 0.0450569 -0.0280185 +-0.0332919 0.124337 -0.00345787 +-0.0603705 0.118249 -0.0108601 +-0.0883316 0.128385 0.0454834 +-0.0681462 0.033688 -0.00353141 +0.0232453 0.12098 -0.00440593 +-0.0294449 0.038677 -0.0149866 +0.0110249 0.0988999 -0.0227192 +-0.0218748 0.174208 -0.0142339 +0.0205417 0.0741225 0.0508294 +-0.0627477 0.148893 -0.0169766 +-0.0398023 0.0338119 -0.0274661 +-0.0319551 0.0348046 0.0438977 +0.0104998 0.108437 0.040345 +-0.0139772 0.164028 -0.0115888 +-0.0247602 0.0379556 0.0194943 +-0.000934383 0.0340393 -0.0200439 +0.0476809 0.0472678 -0.00164326 +-0.0400291 0.0354632 0.00960076 +-0.0671756 0.0610764 0.00625684 +-0.0852257 0.114326 0.001271 +-0.0754019 0.151364 -0.0118956 +-0.0437605 0.146927 0.00133694 +-0.0619528 0.15527 -0.030594 +0.0363929 0.0490985 -0.00642376 +-0.0100186 0.0981603 -0.0280043 +-0.0119452 0.129197 0.00527137 +-0.0346207 0.0519685 -0.0102527 +0.0527588 0.0510331 0.0250995 +-0.0635082 0.148832 -0.022668 +-0.0147336 0.0671673 -0.0377424 +-0.0704174 0.170744 -0.0307374 +0.0105902 0.125785 0.0307704 +-0.0258145 0.0894344 -0.0348302 +-0.0177853 0.0383982 0.00785589 +-0.0875073 0.0954698 0.00341799 +-0.0424838 0.105689 0.0405023 +0.049326 0.0581361 0.0307698 +-0.0426568 0.0578158 -0.011891 +-0.0506189 0.0517055 -0.00806622 +-0.0751298 0.155996 0.0213056 +-0.0740765 0.0662649 0.0182774 +-0.055953 0.151039 0.0297159 +0.00149895 0.0519342 0.0529111 +-0.0476623 0.135572 0.0124001 +0.00259703 0.093007 -0.0325523 +-0.021995 0.185609 -0.0143485 +0.0421516 0.0805501 0.0292856 +-0.014868 0.104453 -0.022832 +-0.0398868 0.108509 -0.0195593 +0.0259209 0.122835 0.0206655 +-0.0616544 0.15599 0.0144357 +-0.0733101 0.14716 -0.0188577 +-0.0262613 0.119664 -0.0106051 +0.0355444 0.109985 0.0269213 +0.04069 0.0703475 -0.0087868 +-0.0658232 0.100991 -0.0166158 +0.0443888 0.0846966 -0.000809941 +-0.0235014 0.109891 0.0398372 +0.0275195 0.0713136 0.0432798 +0.0364601 0.111481 0.0203251 +-0.0766191 0.168746 -0.0293719 +0.041872 0.069712 0.028792 +-0.0188551 0.177186 -0.0168879 +-0.0430291 0.148351 -0.00306372 +0.0241638 0.0853333 -0.0244737 +0.017675 0.127712 0.00477874 +-0.0888835 0.0983415 0.0204012 +-0.0202474 0.0582316 0.0476806 +-0.0719293 0.126758 -0.00881076 +-0.0294958 0.0960659 0.0449891 +-0.0491744 0.14016 0.00939463 +-0.0284952 0.105677 0.0407009 +0.0215711 0.035903 0.0289947 +0.0112282 0.0780681 -0.031821 +0.0343153 0.115038 0.0152609 +0.0213375 0.0536353 -0.0261911 +-0.0754641 0.149954 -0.0208706 +0.0174704 0.1044 0.0442882 +0.00640724 0.0390095 -0.0238414 +-0.0396234 0.150027 -0.00409811 +-0.0900489 0.137821 0.0141988 +0.0252808 0.0733562 -0.0251315 +-0.0492373 0.132883 0.0267635 +-0.0430533 0.034543 -0.0263375 +0.0217093 0.0520814 0.0434982 +-0.0333828 0.0807789 -0.0265175 +-0.0761052 0.14997 -0.0158781 +-0.0707786 0.0690222 0.0306409 +0.0401031 0.0589615 -0.00453029 +-0.0260252 0.0904818 0.0482145 +-0.0895062 0.0902087 0.0114561 +-0.0526923 0.0334338 -0.00380212 +-0.0114811 0.0646532 0.0550744 +-0.0370678 0.157759 -0.0113588 +0.00952731 0.105746 0.0431674 +-0.0410118 0.126885 0.0180931 +0.0197485 0.105413 -0.017636 +-0.0629292 0.155832 0.0110869 +-0.0581695 0.15592 0.011334 +-0.00650086 0.0561902 0.0537938 +-0.0338729 0.15688 -0.0110666 +0.0405297 0.0779725 0.0322363 +-0.0642469 0.0423257 0.0129047 +0.0237846 0.0476926 0.0394013 +-0.0217726 0.172729 -0.0141007 +-0.0416287 0.0534443 -0.0111279 +-0.077087 0.154176 -0.0108977 +0.0304203 0.0366341 0.0210583 +-0.0306156 0.0552316 -0.0163811 +-0.0584355 0.0482117 0.00674018 +-0.0284904 0.0917855 0.0443788 +-0.0347085 0.0681808 -0.0168555 +0.0286267 0.117101 -0.00417221 +0.000831008 0.0996342 -0.0235195 +0.00330328 0.0611715 -0.0325304 +-0.0739165 0.113504 -0.00683708 +-0.0898235 0.126994 0.0441831 +-0.0889746 0.0942393 0.0114303 +-0.0279086 0.0704216 -0.0334901 +-0.041504 0.0562873 0.0399374 +0.0394095 0.0793879 0.0341721 +-0.0669825 0.112069 0.0420748 +-0.0847653 0.103459 0.000382003 +-0.00649785 0.0801379 0.0576218 +-0.0226054 0.126675 0.00715587 +-0.000755212 0.130746 0.00366553 +-0.0328403 0.0348519 -0.0195836 +0.0396279 0.0857065 -0.0127726 +-0.0805255 0.14991 0.0359696 +0.0353489 0.0955322 0.0372114 +0.0102384 0.0781052 -0.0323493 +-0.0296143 0.0551126 -0.0213868 +-0.0699315 0.126779 -0.00900092 +-0.0795103 0.126002 0.0528073 +-0.000474921 0.0732072 0.0579427 +0.00749418 0.095088 0.0520151 +-0.0841797 0.101927 0.0280813 +0.0424909 0.101472 0.00517268 +0.00951997 0.0673959 0.0546877 +-0.0472854 0.0671503 0.0390298 +0.0376148 0.100847 -0.00874384 +-0.0374929 0.116616 0.0320198 +0.029259 0.120361 0.0176317 +-0.0737149 0.158251 -0.0299203 +-0.0114976 0.116917 0.038689 +0.0413371 0.0444728 -0.00290745 +-0.0627029 0.150609 -0.0235776 +-0.0302691 0.080511 -0.0335682 +0.0300872 0.0497043 -0.0117138 +0.0222773 0.0620859 -0.0257917 +-0.0570144 0.147201 -0.00173114 +-0.0760781 0.173825 -0.0400503 +-0.00149572 0.101631 0.0441885 +-0.0261888 0.17564 -0.0188354 +0.0231825 0.0577956 0.0456852 +-0.0924811 0.125593 0.0372603 +0.00115082 0.131147 0.0187057 +-0.0841614 0.142011 0.042356 +0.042729 0.0901813 -0.0058099 +0.0213045 0.0372836 -0.00268556 +-0.0160362 0.0338015 -0.0209075 +0.0394869 0.10531 0.000602508 +-0.0239168 0.0383626 0.00119722 +-0.0164538 0.0343139 -0.019589 +-0.0592802 0.154415 0.0283608 +-0.0609269 0.155849 0.0219449 +-0.0250081 0.0361291 -0.0192131 +-0.0853634 0.14876 0.00617316 +-0.0253618 0.0386908 -0.0141849 +-0.0881693 0.0922771 0.0238938 +-0.0728038 0.0921924 -0.0153063 +-0.0708783 0.150832 0.0377201 +0.00548074 0.111376 0.0414038 +-0.0524967 0.0945727 0.0438723 +0.0115063 0.0343546 -0.0179688 +0.00151312 0.081484 0.0572224 +-0.0149936 0.0395459 0.0398583 +0.0120392 0.129427 0.0226627 +0.0591195 0.05666 0.00817454 +0.0328155 0.102974 -0.0130264 +-0.0371359 0.123595 0.025439 +0.0450698 0.0805625 0.0231647 +-0.028064 0.0385407 0.0362565 +-0.00648913 0.0732625 0.0583326 +-0.0374981 0.0719295 0.0420686 +-0.0736872 0.176894 -0.0449171 +-0.0672224 0.0339784 0.0107486 +-0.0758756 0.104904 -0.00955908 +0.0439403 0.083251 -0.00181959 +-0.0614723 0.15843 -0.0295877 +0.0442849 0.0945485 0.0181566 +-0.065503 0.044849 0.00843715 +0.00357616 0.0395385 0.0347033 +-0.028754 0.0634689 -0.0284339 +0.0315757 0.0914687 -0.0188156 +0.00716348 0.0343484 0.0202029 +-0.0216788 0.0493937 -0.0287126 +-0.0716516 0.139715 0.0474384 +-0.043721 0.033715 -0.00407894 +-0.0817894 0.0909919 -0.00761357 +0.0425053 0.0513815 0.0326154 +-0.0638693 0.170945 -0.0476012 +0.0316414 0.11271 0.0301021 +-0.0306212 0.159741 -0.0134031 +-0.0214041 0.0879871 0.0549671 +-0.0670934 0.0625692 0.00143601 +-0.0365003 0.087456 0.0430956 +0.00150165 0.0919153 -0.0334107 +-0.024293 0.124271 0.0211991 +-0.0604952 0.0932426 0.0451145 +0.00516194 0.0978455 -0.0256065 +-0.00249882 0.081515 0.0574957 +-0.0636907 0.146369 -0.0159165 +-0.0129939 0.103563 -0.0236849 +0.00282967 0.131401 0.0178813 +0.00250691 0.0883899 0.0564027 +0.0220994 0.0476682 0.0404859 +-0.0466625 0.12523 -0.00836412 +0.00382851 0.0992997 -0.0231609 +-0.0879384 0.126705 0.000268669 +-0.0725213 0.0636798 0.0102197 +-0.00645782 0.0338359 -0.0228235 +-0.0523786 0.138216 -8.53499e-05 +-0.041943 0.114992 -0.0156494 +0.0435142 0.0513638 0.0325031 +0.0432433 0.0958712 0.000187851 +-0.0729725 0.170894 -0.0302341 +-0.0303619 0.0381166 0.0307902 +-0.0942177 0.125518 0.0172578 +0.0446543 0.0959754 0.00716634 +-0.0263933 0.0864552 0.0500994 +0.0352313 0.064664 0.0385641 +-0.0913521 0.14609 0.0171489 +-0.00798473 0.0348553 0.0472244 +-0.00181216 0.086792 -0.0360393 +-0.0153678 0.09644 0.0517723 +0.0268857 0.117842 -0.00498093 +-0.0354986 0.0747267 0.0419454 +-0.0573263 0.0481094 0.0336642 +-0.0386241 0.125328 -0.00654651 +-0.020119 0.0431531 0.0531418 +-0.0226834 0.174208 -0.0136486 +-0.0554979 0.0889982 0.0448936 +-0.0321193 0.0366883 0.0508235 +0.013731 0.104072 -0.0202068 +0.0407967 0.0661529 -0.00677209 +-0.0792933 0.16941 -0.0399858 +-0.0250378 0.174204 -0.0117666 +-0.0718111 0.0631642 0.010775 +-0.0710553 0.181198 -0.0554882 +-0.058796 0.0868581 -0.0207882 +-0.0136362 0.0466649 -0.0295427 +-0.0924917 0.124196 0.0312677 +-0.0331602 0.171158 -0.0153905 +-0.0724259 0.0727975 0.0340482 +-0.0566618 0.0645338 -0.00803085 +-0.0705221 0.098629 0.0408842 +0.0118568 0.126524 -0.00436904 +-0.0784161 0.116342 0.0501163 +-0.0677948 0.160582 -0.0110564 +-0.0456903 0.11799 -0.0148012 +0.0526315 0.0462656 0.0102089 +0.0453672 0.0456539 0.0269438 +-0.00726729 0.129761 0.0228793 +-0.0659232 0.105312 -0.014993 +-0.087769 0.118492 0.00124641 +-0.00149512 0.0562755 0.0546084 +-0.089164 0.0928946 0.0114433 +-0.0841907 0.078353 0.0198111 +-0.0679412 0.0656184 0.0271584 +0.0224551 0.0368363 -0.00219983 +-0.0356854 0.0435567 0.045098 +-0.0457595 0.0797224 -0.0196258 +-0.0405031 0.0762353 0.0429954 +-0.0640239 0.14106 0.0390925 +-0.0797368 0.119028 0.049952 +-0.0864815 0.0846104 0.00248575 +-0.0774908 0.137247 0.0499166 +-0.0586931 0.0693474 -0.0143558 +-0.0340813 0.159269 -0.0127772 +-0.0889533 0.124321 0.0462453 +-0.0611638 0.0468972 0.00167818 +-0.0925249 0.130961 0.0132346 +-0.0707251 0.033867 0.00298473 +0.0514024 0.0510939 0.0266785 +-0.000225629 0.097747 0.0525183 +0.0260546 0.112325 -0.0110571 +-0.0429452 0.0345628 0.0382617 +-0.0174331 0.0625913 0.0517909 +0.0422611 0.0397457 0.00959333 +-0.0374974 0.0705158 0.0419336 +-0.0368535 0.0362973 -0.0142764 +-0.0132005 0.128825 0.00480743 +-0.0808442 0.110042 -0.00155764 +-0.0890966 0.114815 0.0438036 +-0.0195037 0.11681 0.0364149 +-0.0653439 0.127011 0.0477296 +-0.0749324 0.152731 -0.0198994 +-0.0131083 0.128689 0.020774 +-0.0761869 0.149999 -0.0118749 +-0.0657951 0.0852369 -0.0187501 +-0.0515872 0.0558557 0.0146208 +0.0414903 0.0541829 0.0322405 +-0.0094881 0.112787 0.0415502 +-0.0473098 0.0390167 0.04506 +-0.076903 0.112654 -0.00467049 +-0.0792829 0.109073 0.0381388 +0.0277273 0.0646184 0.0435417 +-0.0923959 0.132359 0.0202239 +-0.0505803 0.0502828 -0.00813802 +0.00549299 0.117639 -0.0167508 +-0.0166687 0.038571 -0.00303984 +-0.0728836 0.119408 -0.00813229 +-0.00373228 0.0669631 -0.0346735 +0.0373953 0.0445589 -0.00471693 +0.00577997 0.0365296 -0.0134893 +0.0065091 0.0772612 0.0561769 +-0.0785581 0.153669 0.00407716 +-0.0631137 0.14437 -0.00863045 +0.0335076 0.0453895 0.0300756 +-0.00148382 0.131063 0.00627096 +-0.0117022 0.0613984 -0.0359464 +-0.0390182 0.0473551 -0.0162983 +0.0174871 0.10577 0.0429453 +0.0173606 0.128011 0.00608341 +-0.0587951 0.0337712 0.0197789 +-0.0554323 0.145321 0.0304155 +-0.021174 0.184521 -0.0131308 +-0.0546552 0.0656851 0.0351815 +-0.00872132 0.0656071 -0.0355909 +0.00329381 0.0654903 -0.0335962 +-0.0874212 0.0861211 0.0204627 +0.0341358 0.0641297 -0.0158137 +-0.063479 0.0384929 -0.0076832 +0.0174063 0.0417452 -0.0219906 +-0.069028 0.0409064 0.00923732 +0.0577041 0.0703778 0.00716237 +-0.0506338 0.0663851 -0.0124105 +-0.04882 0.119077 -0.0139102 +-0.0660878 0.161167 -0.014759 +0.060054 0.0678303 0.0101401 +-0.063913 0.169258 -0.0441943 +-0.053845 0.0463107 0.0236764 +-0.0784828 0.175619 -0.0475153 +-0.0313957 0.12387 -0.00298136 +0.0154947 0.107116 0.0420405 +-0.036876 0.0434502 0.0434666 +-0.06715 0.145376 0.0416405 +-0.0155327 0.181625 -0.0208343 +-0.0715781 0.0968766 0.0410625 +0.0306462 0.0968954 0.0409575 +0.00964614 0.0589005 0.0527021 +0.0527245 0.0736707 0.0159788 +-0.0861826 0.104908 0.00538017 +-0.0812551 0.138069 0.0480599 +0.0475108 0.0597433 0.0313293 +-0.0156256 0.0450397 -0.0279587 +-0.0221316 0.125526 0.0205056 +-0.0322922 0.122832 0.0242564 +-0.0132407 0.164048 -0.012311 +-0.0415061 0.0620057 0.0410722 +-0.0657901 0.128396 0.0470862 +0.0282252 0.0760107 -0.0227881 +-0.0701785 0.136914 0.0477863 +0.03413 0.0822192 0.0406334 +0.0609039 0.0609671 0.0121585 +-0.0515277 0.136697 0.0258426 +-0.00994091 0.089177 -0.0367642 +0.0451266 0.0727442 0.0219703 +0.0336533 0.110026 0.0294894 +-0.0721725 0.156265 0.0135984 +0.0312336 0.051167 -0.0107736 +-0.0023355 0.0926921 -0.0342848 +-0.0524965 0.0790864 0.0437156 +-0.0095237 0.0431051 0.0494016 +0.000300907 0.0626948 -0.0340909 +-0.0905968 0.140629 0.0221693 +-0.00800869 0.0388567 -0.00527149 +-0.0584939 0.0847167 0.0439692 +-0.0635243 0.0334646 -0.00419693 +-0.090351 0.14066 0.0261698 +-0.0588327 0.0911696 -0.0205864 +-0.020414 0.0541289 0.0465389 +-0.056688 0.067746 -0.0120827 +-0.0344045 0.152028 -0.00248634 +-0.0154988 0.114109 0.0392017 +-0.0384878 0.168246 0.00236894 +-0.0115711 0.100192 -0.0241483 +-0.0167308 0.0657547 -0.0377116 +-0.0466962 0.147986 -0.00319779 +-0.0926613 0.122825 0.0414622 +0.0312237 0.0871647 -0.0198177 +-0.0257476 0.0682496 -0.0344079 +-0.0524537 0.0504524 0.0306643 +-0.0768211 0.0804727 0.0355147 +-0.00449363 0.0456798 0.0470573 +0.0418422 0.0690449 -0.00578965 +-0.0262667 0.110544 -0.0190457 +-0.00251293 0.105882 0.0441369 +-0.0707082 0.0395895 0.000643319 +0.0128917 0.127573 0.0272919 +-0.0354687 0.054727 0.0384538 +0.00920102 0.0837298 -0.0322138 +0.0094791 0.0347704 0.0365664 +-0.0435038 0.0438236 0.0424673 +-0.0551839 0.140262 -0.00246039 +0.00523902 0.0341335 -0.0189244 +0.0273731 0.0578707 -0.0207586 +0.0119495 0.129938 0.00409466 +-0.0494983 0.102885 0.0411106 +-0.0370447 0.0379826 0.045213 +0.0150108 0.0349639 0.0393317 +0.0345233 0.0498189 0.0314944 +-0.0153828 0.128676 0.0170423 +-0.0618725 0.160013 -0.0255862 +-0.0525544 0.0504168 0.0256484 +-0.073344 0.0672327 0.000494062 +0.0393875 0.0460438 -0.00485579 +-0.0152754 0.103231 -0.0233341 +-0.0753549 0.104884 0.0361423 +0.0108274 0.0362708 -0.0225637 +0.0342152 0.0862629 0.0407864 +-0.088758 0.143311 0.0121502 +-0.0572353 0.0465198 -0.0043437 +0.0198267 0.035157 0.00555798 +0.0261922 0.0507168 -0.0207207 +0.0268986 0.0357578 0.0211357 +-0.0349846 0.0837189 -0.0236297 +-0.0222119 0.158173 -0.00418672 +0.024391 0.115338 0.0336864 +-0.0200061 0.124102 0.0256765 +-0.069632 0.0719472 -0.0104624 +-0.0322859 0.0792627 -0.0305329 +-0.0506516 0.033429 -0.00887801 +-0.0358626 0.101452 -0.0219425 +0.0293657 0.0447288 -0.00609588 +-0.0662305 0.0339335 0.0109932 +-0.00786973 0.104508 -0.0230207 +-0.0712429 0.177886 -0.0560058 +-0.00159432 0.129182 0.0263815 +-0.0283933 0.0831937 -0.0356194 +0.0443268 0.0511334 0.0322609 +-0.0318469 0.0958266 -0.0236233 +0.0205346 0.0937418 -0.0232686 +-0.012793 0.0813325 -0.0389447 +-0.0235889 0.0983837 -0.0242804 +-0.062496 0.105649 0.040196 +-0.0194646 0.0347564 0.0483645 +-0.0124518 0.038713 0.0303489 +-0.0444408 0.0335855 -0.0133031 +-0.00148369 0.0732377 0.0582942 +-0.0837769 0.153466 0.0110188 +-0.0898767 0.135147 0.0252168 +0.0369605 0.105409 -0.00483089 +-0.0255274 0.113962 0.0353265 +-0.0539587 0.0338764 0.0242313 +-0.0789197 0.104773 0.0326412 +0.0105421 0.118176 -0.0153416 +-0.0256953 0.0385914 0.0331228 +-0.0336328 0.126783 0.00457249 +-0.0470116 0.0710509 0.0409961 +-0.0930389 0.129675 0.0242521 +-0.0464764 0.0861628 0.0446798 +-0.0561893 0.159558 0.00559608 +-0.0091854 0.130144 0.00917512 +-0.0798951 0.0840617 -0.00859358 +-0.0336645 0.0339705 0.0230467 +0.00935764 0.0539048 -0.0300706 +-0.0831098 0.0777207 0.0215128 +-0.0470469 0.155045 0.00906939 +-0.0135887 0.169514 -0.0234669 +0.0418337 0.0395215 0.00781447 +-0.0276517 0.15535 -0.00385533 +-0.0201931 0.18164 -0.0152257 +-0.0335046 0.177862 -0.00863199 +0.0345014 0.0513521 0.0321623 +-0.0804527 0.143139 -0.00181198 +-0.0816965 0.144555 0.000152955 +0.0607459 0.0623413 0.0091502 +-0.0779458 0.175786 -0.0452228 +-0.0577187 0.146758 0.0323537 +-0.0403111 0.127303 0.0168527 +0.0204871 0.0934146 0.0476927 +0.00588424 0.100173 -0.0220733 +-0.00768539 0.0584014 -0.0338334 +-0.0447099 0.069553 -0.0165571 +-0.0287391 0.0620637 -0.0274208 +0.0157473 0.0947545 -0.0243195 +-0.063441 0.156071 0.0225051 +0.00824182 0.0753956 -0.0338579 +0.00561249 0.0927088 -0.0322048 +-0.0475077 0.0732702 0.0416223 +0.0145005 0.11127 0.0394252 +0.00450182 0.0413372 0.0458645 +0.00631667 0.061015 -0.0309472 +-0.0794763 0.0926775 0.0349659 +-0.0718543 0.111061 0.0453722 +-0.0891984 0.129697 0.0434765 +0.0151955 0.129241 0.0138359 +0.0236821 0.0824052 -0.0254011 +-0.0015019 0.110031 0.0427805 +-0.0215043 0.109928 0.0403615 +-0.0939826 0.118759 0.0192971 +-0.0624131 0.11535 0.0394932 +-0.0833865 0.140392 0.00124854 +-0.0465624 0.124393 -0.00950278 +-0.0146513 0.0496822 -0.0311895 +-0.0641648 0.15616 0.0149932 +-0.0729217 0.126742 -0.00866826 +-0.0253625 0.126177 0.010523 +0.0277777 0.108556 -0.0130095 +-0.0788017 0.0846357 0.0359502 +-0.0247742 0.180145 -0.00956802 +0.0188129 0.101666 -0.0216414 +0.00516264 0.131576 0.00874185 +-0.0633822 0.164679 -0.0305938 +-0.0375944 0.116238 -0.0149818 +0.0194959 0.111012 -0.0156283 +-0.0342918 0.0780403 -0.0245107 +-0.0861846 0.083225 0.00647736 +-0.0161451 0.166792 -0.0199866 +-0.0872007 0.147399 0.00826035 +0.0567195 0.0508531 0.00818949 +-0.0594966 0.100149 0.0427407 +-0.0584967 0.0761953 0.0427061 +-0.0218317 0.124906 0.0220793 +-0.00826101 0.0384472 0.0115633 +-0.0383343 0.121902 -0.0109317 +-0.0521665 0.136903 -0.000627156 +-0.0215605 0.0383186 -0.00194746 +0.0481264 0.060275 -0.00442661 +0.0154998 0.108504 0.0406925 +-0.0729927 0.08468 0.0400334 +0.0156625 0.0631375 0.0506866 +-0.0244911 0.101622 0.043846 +-0.0464946 0.131544 0.00524728 +-0.0496757 0.0678792 -0.0135965 +0.0429479 0.0845778 -0.00579145 +-0.0889655 0.0969901 0.0204055 +-0.0641121 0.152654 -0.0038572 +0.0409571 0.0971716 0.0271682 +-0.0171621 0.0382418 0.0171791 +0.00646008 0.118492 -0.0156628 +0.0328247 0.054955 0.0367483 +-0.0843958 0.13208 -0.00165487 +-0.0521768 0.0517998 0.0286453 +0.0415397 0.0690275 -0.00677 +-0.00193982 0.12966 0.0247961 +-0.0686037 0.157344 -0.00409918 +-0.0332546 0.12417 0.0223928 +-0.0762473 0.0920177 -0.013581 +0.0392491 0.0672477 0.0338308 +-0.0841314 0.0776758 0.00449933 +-0.0638136 0.0680952 0.0346563 +-0.00579523 0.10109 0.0444886 +-0.0717812 0.166615 -0.0459981 +-0.0474379 0.0355948 -0.0152688 +0.0581028 0.0523658 0.0121806 +-0.0787218 0.0967552 0.0354897 +-0.0561139 0.139571 -0.00370722 +-0.0605064 0.0394509 -0.00845033 +-0.0890965 0.111935 0.0113594 +-0.0579064 0.158452 0.00407429 +0.0204977 0.0920241 0.0479175 +-0.0224928 0.0988548 0.044702 +-0.0289733 0.124361 0.000543811 +-0.00750575 0.0457415 0.0474579 +0.043354 0.053395 -0.00666154 +0.0230359 0.124766 0.00534006 +-0.0773785 0.174262 -0.0420678 +-0.0273153 0.0387018 0.0344821 +-2.85469e-05 0.0391507 -0.00580542 +-0.0653748 0.149517 -0.0319115 +-0.0386792 0.0336259 0.00249375 +-0.0655034 0.106997 0.0388261 +0.0203192 0.0679349 -0.0283363 +0.0395784 0.104495 -0.000545476 +-0.0239953 0.114912 -0.0156465 +-0.0660228 0.160133 -0.0132914 +0.0397718 0.0940445 0.031303 +-0.0719497 0.132579 -0.00806719 +-0.0634812 0.0760895 0.041143 +-0.0484925 0.14723 -0.00252533 +0.054748 0.0690996 0.0027667 +-0.0723713 0.156038 0.0237254 +0.034267 0.0613198 -0.014809 +-0.0483876 0.0348751 0.0437589 +-0.05979 0.0839541 -0.0202843 +0.0501248 0.0723145 0.00745971 +0.0347025 0.105449 -0.00966587 +-0.0352566 0.0382472 -0.0299775 +0.0470963 0.045623 0.0254581 +-0.0855435 0.108961 0.00733555 +-0.0206804 0.112216 -0.0188434 +0.00523056 0.0796312 -0.0340387 +-0.0465619 0.047561 -0.00986957 +-0.033587 0.0348608 0.0452447 +-0.0202523 0.125914 0.000840735 +-0.0501104 0.138566 0.0193811 +-0.0264363 0.125919 0.0130719 +-0.0691022 0.159548 -0.0519447 +-0.0245412 0.057448 -0.0303989 +-0.046121 0.0336712 -0.000864342 +-0.0742841 0.155582 0.00848891 +-0.0298186 0.154044 -0.00457012 +0.0302323 0.0969553 -0.0166472 +0.0266877 0.104744 0.0387392 +-0.0843417 0.109004 0.0243603 +-0.0496377 0.143234 0.0104059 +0.0174929 0.0962345 0.0475335 +0.0450677 0.0917906 0.015163 +0.0374841 0.076757 0.0366434 +-0.0215406 0.0711033 0.0513847 +-0.0282153 0.125116 0.00364014 +-0.0284773 0.177212 -0.00607735 +-0.0204956 0.109916 0.0405701 +-0.0784664 0.0703272 0.00666705 +-0.0031698 0.0384355 0.0180459 +-0.0655548 0.153788 -0.00146085 +-0.0229763 0.0945367 -0.0302901 +-0.0192339 0.166857 -0.012207 +-0.0866345 0.094046 0.00237751 +-0.0759405 0.177963 -0.0471435 +0.0442559 0.0973532 0.00916034 +-0.071904 0.103673 -0.0126696 +-0.00666902 0.0541115 -0.0328784 +0.0144947 0.105783 0.0434399 +-0.029312 0.0383797 -0.00726542 +0.0562076 0.0536042 0.00319408 +-0.0829319 0.114342 0.0473556 +-0.069928 0.113662 -0.00916203 +-0.080837 0.120705 -0.00484118 +-0.0680148 0.177312 -0.0499759 +-0.077886 0.0811556 -0.0096326 +0.0350121 0.104701 0.0314746 +-0.0571796 0.0582032 0.0181974 +-0.0932449 0.120197 0.0372886 +-0.0536204 0.0647024 -0.00963527 +0.00250481 0.0870342 0.0569864 +-0.0802055 0.0754813 0.024867 +-0.062996 0.0444935 0.0306768 +-0.00402267 0.0975528 0.0526596 +-0.0883984 0.103684 0.0133796 +-0.0637361 0.133925 0.0394224 +-0.00469624 0.0613427 -0.0349676 +-0.0570417 0.148685 -0.00168484 +-0.062221 0.119852 0.0434664 +-0.0361997 0.0483313 -0.0162949 +0.00950265 0.0517655 0.0513753 +0.00822226 0.0366869 -0.011267 +-0.0383571 0.0360437 0.0112202 +-0.0890914 0.0956431 0.0204208 +-0.0256081 0.0408536 -0.0292407 +0.0374062 0.0397236 -0.000139169 +-0.094388 0.124185 0.0232804 +-0.0615536 0.151288 -0.000477545 +-0.0674057 0.140585 -0.00814985 +-0.0913588 0.113353 0.0143394 +-0.0162447 0.115598 -0.0164334 +-0.00395415 0.0388026 0.0284096 +0.0272466 0.0774691 -0.0233342 +0.0337889 0.112917 0.0264745 +-0.0342171 0.0808501 -0.0245506 +0.0395831 0.0953666 0.0310696 +0.0424402 0.100042 0.00119598 +0.0588348 0.0704992 0.0161593 +0.0129551 0.034265 -0.00247291 +-0.0884357 0.140552 0.0112052 +-0.0545209 0.0388646 -0.0108239 +-0.00760223 0.0406064 -0.0259713 +-0.0671149 0.0634665 0.0239226 +-0.0571873 0.13241 -0.00599886 +-0.0652367 0.0347413 0.0281307 +-0.0733817 0.154066 -0.0309045 +-0.00253313 0.0428829 0.047136 +-0.0768102 0.145866 -0.00487051 +-0.0675702 0.166262 -0.0225175 +-0.0425031 0.0662262 0.0410651 +-0.0579829 0.147131 -0.0018633 +0.0230336 0.049071 0.0400904 +-0.0829949 0.0843947 0.0302754 +-0.0147977 0.0813547 -0.0393324 +-0.015272 0.0385359 0.0263224 +-0.0764401 0.163184 -0.0180705 +-0.00855639 0.121127 -0.0123669 +-0.018702 0.0459339 0.0516744 +-0.0274925 0.0577126 -0.0264141 +-0.0571934 0.155255 0.0174937 +-0.0620081 0.0469936 0.00367346 +-0.010275 0.170544 -0.0261793 +0.0537831 0.0477401 0.0192041 +0.0402375 0.104169 0.000177419 +0.0289937 0.118368 -0.00105099 +-0.039498 0.118035 0.0314 +0.0367284 0.0875226 0.0373878 +0.0431893 0.0764104 0.0272109 +0.0404723 0.0752779 0.0321515 +-0.071418 0.176406 -0.0454588 +-0.0570823 0.138706 -0.0047975 +-0.0666306 0.0689692 -0.00898899 +-0.0691773 0.0628504 0.020491 +0.0144923 0.104443 0.0448169 +-0.0227823 0.0798633 -0.0386035 +0.0278587 0.0463325 0.0365003 +-0.00850193 0.0391005 0.0344133 +-0.0677578 0.16996 -0.0326164 +-0.0367265 0.0725274 -0.0180009 +-0.0681226 0.115765 0.0506532 +-0.0824105 0.154634 0.0158747 +-0.0197211 0.109971 -0.0204733 +-0.0626214 0.149057 -0.0155813 +-0.0414792 0.111213 0.0366505 +0.0570161 0.0508675 0.0161892 +-0.0934473 0.129632 0.0182372 +-0.0463999 0.150559 -0.00488163 +-0.0823822 0.144566 0.00117046 +-0.0310391 0.0892178 -0.0256627 +-0.065854 0.172894 -0.0463248 +-0.069909 0.0416997 0.00317022 +0.0312116 0.11742 0.0240751 +-0.0118175 0.0387383 -0.00407256 +0.01303 0.126665 0.0287751 +-0.0440446 0.129866 0.0080667 +-0.0797747 0.106127 0.0313842 +0.00451933 0.0800063 0.0560543 +0.00739517 0.116252 -0.017256 +0.0277812 0.063284 0.0436054 +-0.0569949 0.126695 -0.00683103 +-0.00960244 0.0420101 -0.025949 +0.0084074 0.123136 -0.0106652 +-0.0428042 0.0338676 0.0265755 +-0.0325056 0.0760815 0.0412743 +-0.0386562 0.0591953 -0.0114762 +-0.0405007 0.0690879 0.0417151 +0.0419622 0.102841 0.00417469 +-0.047644 0.121343 -0.0122933 +-0.0729009 0.105047 -0.011511 +-0.0927931 0.126937 0.0282668 +-0.0656106 0.156261 -0.00734027 +-0.0802248 0.0719997 0.00554401 +-0.00476651 0.0755803 -0.0368945 +-0.0779912 0.139819 -0.00526751 +-0.0864372 0.14049 0.00618869 +-0.0427881 0.157985 0.00470835 +-0.0697618 0.112838 0.0482345 +-0.0800017 0.0786467 -0.00556567 +-0.00794001 0.0994214 0.049751 +0.00252738 0.0716721 0.0561852 +0.0244581 0.0366925 -0.000851561 +-0.0618581 0.153131 0.03333 +-0.0730605 0.177343 -0.046073 +-0.0670133 0.0791411 0.0413099 +-0.00657967 0.0361819 -0.0249969 +0.0332241 0.115988 0.0034015 +-0.0314758 0.118803 -0.0116777 +-0.0714107 0.144356 -0.0151846 +-0.0414986 0.120686 0.028403 +0.0126257 0.034994 0.0315996 +-0.0344792 0.0382691 -0.00267158 +-0.0696814 0.0354769 0.0114289 +-0.0454423 0.0336713 -0.00255197 +-0.0611633 0.0698433 0.0372322 +-0.0520495 0.147795 0.0183962 +0.0467993 0.0745196 0.0137565 +-0.00850445 0.0619527 0.0559735 +-0.0157643 0.0353272 -0.0263783 +-0.0915821 0.144732 0.0201581 +-0.0274038 0.123285 0.0215594 +-0.0667152 0.0419014 -0.00231002 +-0.0408646 0.104225 -0.0205494 +-0.092402 0.129661 0.0272343 +-0.0876501 0.0954829 0.0054069 +-0.063731 0.0751942 -0.0171769 +-0.016949 0.0909918 -0.0366612 +0.0216857 0.0374896 0.0372608 +-0.0733019 0.081934 0.0390113 +-0.033579 0.117839 -0.0126505 +0.00291054 0.0385481 0.0460492 +-0.0648688 0.0938916 -0.0183701 +-0.0931568 0.120191 0.0362904 +-0.0105693 0.129741 0.0187791 +-0.0330922 0.108613 -0.0189923 +-0.0867528 0.121192 -0.00171893 +-0.0398856 0.0351398 0.0419144 +-0.0500753 0.0599861 0.0335137 +-0.0362769 0.163827 -0.00170672 +-0.0161498 0.040504 0.0518582 +0.0390213 0.100628 0.0284944 +-0.0525203 0.0581461 0.0261597 +-0.06389 0.0397139 0.0154457 +-0.0114781 0.0589986 0.0537512 +-0.00335674 0.0424141 0.0475525 +-0.0200738 0.0389483 0.0357554 +0.0112326 0.0738116 -0.0315294 +0.0128141 0.0504969 0.0481838 +-0.0548971 0.104115 -0.019193 +-0.0887169 0.125354 0.00227396 +-0.0712974 0.0669397 0.02531 +-0.0542529 0.0545999 -0.00539104 +-0.0538048 0.159768 -0.00183632 +0.0171004 0.120495 -0.00987579 +0.00927611 0.0667424 -0.0314011 +-0.0928802 0.118867 0.0402859 +-0.0167191 0.0613704 -0.0359554 +-0.0515886 0.0460739 0.0176829 +-0.0182635 0.180096 -0.0244849 +-0.0014996 0.0938866 0.0553603 +-0.0518826 0.071407 0.0396894 +-0.0529375 0.0335557 0.00508499 +-0.0597956 0.0925385 -0.0196216 +-0.0869937 0.104951 0.00838372 +0.0481666 0.0731681 0.01124 +-0.00827202 0.0394277 0.049182 +-0.0607911 0.0810335 -0.0194373 +0.000667625 0.0985049 0.0513232 +0.00310867 0.129093 0.0266332 +0.0296013 0.119582 0.02204 +-0.0285282 0.0378067 0.0260568 +-0.0367133 0.0353138 0.0122122 +-0.0468392 0.132859 0.0202702 +-0.0139293 0.126622 0.0263262 +-0.0191687 0.171226 -0.0215143 +0.0205957 0.0394417 0.0417168 +-0.0692562 0.143958 0.0438704 +-0.037992 0.128312 0.00883318 +-0.0237829 0.0770195 -0.0382449 +-0.0940603 0.120098 0.0152926 +-0.0545976 0.139948 -0.00193829 +-0.0869674 0.103645 0.0213508 +-0.0689616 0.177928 -0.0580053 +-0.079103 0.0731629 0.0235749 +-0.0563149 0.0534289 -0.00138708 +-0.00430179 0.125159 -0.00873129 +-0.0217957 0.119089 -0.0120655 +0.047344 0.0721054 0.0183678 +-0.0206715 0.0524183 -0.0304469 +-0.0292161 0.178518 -0.014988 +-0.0567221 0.0575063 0.0096837 +0.00796175 0.131494 0.0140347 +-0.0163209 0.175704 -0.0185048 +0.0207575 0.0645289 0.0475184 +-0.0365005 0.0676756 0.0415398 +-0.0504985 0.079101 0.0439987 +0.0338763 0.0978118 -0.0135516 +-0.00887371 0.0385959 0.0022117 +-0.0644851 0.0755505 0.0404189 +-0.0877008 0.0923103 0.0248018 +-0.082219 0.074838 0.0095308 +-0.0554964 0.111163 0.0367062 +0.0260064 0.0465031 -0.0156607 +-0.0633419 0.155193 -0.0376165 +-0.0732519 0.0648877 0.00719031 +-0.0769992 0.155545 -0.0179052 +0.0377103 0.0955073 -0.00984226 +0.0174667 0.122816 0.0304302 +-0.0366198 0.0505806 -0.010756 +-0.0144968 0.0472352 0.0484474 +0.00848126 0.0936832 0.0524446 +0.0197906 0.106497 -0.0168156 +-0.0930778 0.121531 0.0352811 +-0.0613674 0.169388 -0.0565896 +-0.0301276 0.038694 -0.0132786 +-0.0662928 0.044787 0.00771957 +-0.0195138 0.0448322 0.0525308 +-0.0886025 0.0887878 0.00646717 +0.0380432 0.109702 0.0166041 +-0.024753 0.0755695 -0.0376923 +-0.089639 0.0983559 0.0164014 +0.0373474 0.083464 0.036489 +0.0200866 0.0429332 -0.0206714 +-0.0362408 0.12776 0.00652715 +-0.0114267 0.182822 -0.0276369 +0.033977 0.115595 0.0137221 +0.016644 0.0381609 -0.019755 +-0.0160134 0.0959893 0.0521651 +-0.0194344 0.115555 -0.0163687 +0.00996296 0.0988804 -0.0226985 +0.0207021 0.0348049 0.000449352 +-0.0655859 0.0333717 0.000880867 +-0.0387964 0.0870429 -0.0222174 +-0.0365713 0.0483594 -0.015218 +0.0310154 0.110075 0.0327245 +-0.0376939 0.0665912 -0.0149459 +0.0401046 0.0466866 0.0313873 +-0.0110827 0.102149 -0.0241692 +0.00841559 0.0375405 -0.0234702 +0.0448731 0.0945767 0.0111579 +0.0145335 0.034759 0.0322003 +-0.059392 0.149673 0.0353015 +0.000291607 0.0641338 -0.034343 +0.00429568 0.0640516 -0.0331969 +0.0450422 0.0931924 0.0131619 +-0.00448954 0.122402 0.0358368 +-0.0326251 0.166779 -0.00520273 +-0.0566266 0.157159 0.00899778 +-0.0131915 0.184654 -0.0268832 +0.0372616 0.0915229 0.0364203 +0.0164447 0.0548852 0.0482217 +-0.0124867 0.11689 0.0385307 +0.00769138 0.039029 0.0323953 +-0.0150057 0.127967 0.0215456 +-0.0860589 0.113009 0.00328149 +-0.0718647 0.175275 -0.0427173 +0.000497507 0.112823 0.0420607 +-0.0832204 0.140695 0.0442806 +-0.0316065 0.039499 -0.0303181 +-0.0689448 0.129685 -0.00899835 +-0.020775 0.0742803 -0.0390259 +-0.0727533 0.0995199 0.0393322 +0.0032483 0.071196 -0.0343078 +-0.0400491 0.154783 -0.00892819 +-0.0345081 0.0832025 0.0425625 +-0.0522702 0.141391 0.00017327 +0.0278273 0.0795375 0.0455649 +0.0269552 0.122658 0.0110745 +0.0348501 0.112087 -0.000408122 +-0.0694924 0.0846972 0.0421957 +-0.0861949 0.139089 0.00320204 +-0.0823568 0.0802033 -0.00152209 +0.00894636 0.0644445 0.055029 +0.0266313 0.0563972 -0.0207832 +0.023933 0.0390696 0.0352942 +-0.0656041 0.136814 0.0420793 +0.0407616 0.105622 0.0111617 +0.058143 0.0551653 0.0211996 +-0.0138904 0.0897489 -0.0373664 +0.0117209 0.130528 0.015412 +-0.0181782 0.126773 0.00187925 +0.039239 0.0589589 -0.00512401 +0.0118091 0.0576645 0.0520801 +0.0101538 0.113447 -0.018237 +0.00107085 0.0391982 -0.0112505 +-0.0726176 0.0747594 -0.0108396 +-0.0504976 0.104261 0.040368 +-0.06047 0.0776106 0.0424994 +-0.0726162 0.166612 -0.0440006 +-0.0345099 0.109779 0.0372255 +0.0371511 0.110987 0.0177157 +-0.0594963 0.1084 0.0386802 +-0.0218558 0.120004 -0.0110164 +-0.0726436 0.159626 -0.0369279 +0.0162217 0.120841 -0.0102336 +0.0462172 0.0729792 0.0194263 +0.0503974 0.0595708 0.0303584 +-0.069034 0.139725 0.045939 +0.0222487 0.0359069 0.0273161 +-0.083623 0.0857135 0.0294569 +-0.0427492 0.0421438 -0.0223063 +-0.0635342 0.161573 -0.0210278 +-0.0632778 0.158345 -0.0436013 +0.049468 0.0445737 0.00523787 +-0.00949755 0.0856659 0.0574293 +0.0137231 0.129888 0.00901711 +-0.0849311 0.0980032 -0.00158096 +0.0094116 0.0360543 -0.0227822 +0.029005 0.115546 0.0303821 +-0.0136476 0.0481469 -0.0303471 +0.0203578 0.0985304 -0.0223097 +0.0386883 0.0767039 0.0348633 +0.0505119 0.0665023 0.0275359 +-0.0236064 0.038163 0.0249493 +-0.0662075 0.060375 0.00901189 +-0.0309847 0.0381919 0.0323901 +-0.0577888 0.0439091 -0.00660137 +0.0319539 0.0795563 0.0427459 +-0.0888256 0.100978 0.0104077 +-0.0149675 0.0986909 -0.0245721 +0.0080932 0.126458 -0.00628099 +-0.0629819 0.128219 -0.0083429 +0.00592947 0.0982847 -0.0240623 +-0.0791963 0.120405 0.0507691 +0.0385114 0.0583288 0.0314228 +0.0327231 0.116168 0.00178038 +-0.0838537 0.110728 0.0339922 +-0.0559583 0.0478125 -0.00439058 +-0.0864154 0.152983 0.0204471 +-0.0846489 0.0778245 0.0165124 +-0.0244888 0.120706 0.0294035 +-0.0565129 0.051223 0.00779351 +-0.00649552 0.111418 0.0421995 +-0.0400289 0.0336199 0.00584373 +0.00964377 0.120482 -0.0138306 +-0.0819198 0.126566 -0.00507678 +-0.023502 0.180157 -0.0112302 +-0.033578 0.0448331 0.0458046 +-0.0771053 0.177652 -0.0476237 +-0.0244946 0.0357757 0.0532784 +0.044574 0.0903504 0.0211613 +0.0317623 0.0938577 -0.0173357 +-0.0767292 0.0860417 0.0380634 +-0.0291365 0.165225 -0.016186 +-0.0558064 0.0562012 0.00862658 +-0.0197239 0.0612902 -0.0351879 +-0.0624763 0.163084 -0.0515885 +-0.00157869 0.0347285 -0.0237137 +0.0250862 0.0741055 0.0468243 +-0.00657564 0.0346831 -0.0243352 +-0.0927326 0.12419 0.0292678 +-0.0642565 0.0418897 0.0384072 +0.0074848 0.0976824 0.0494394 +-0.0324803 0.0436623 0.0489836 +0.0309993 0.0686673 0.04128 +-0.00959045 0.0337105 -0.0233226 +-0.0692347 0.176505 -0.0570351 +-0.0524975 0.111152 0.036921 +0.0434926 0.056984 0.0319757 +-0.0448698 0.104232 -0.0209188 +-0.0689139 0.148999 -0.0367601 +-0.0366298 0.0344715 0.0361774 +-0.0772403 0.0846603 0.0372078 +-0.0866727 0.139248 0.0421058 +-0.0692038 0.156713 -0.0519425 +-0.0286406 0.154979 -0.0065778 +-0.0516452 0.119776 0.0340339 +-0.0604002 0.0591276 0.0185111 +-0.0789005 0.172846 -0.0440952 +-0.0733588 0.0659821 0.00263497 +-0.0644533 0.0351399 0.0400818 +0.0349985 0.0619413 0.0382049 +-0.0116935 0.0584778 -0.0346471 +0.0397873 0.104095 -0.000789682 +0.0261507 0.0923065 -0.0217116 +-0.0643301 0.156694 -0.0446094 +0.0312874 0.108108 -0.0105276 +-0.0718754 0.119424 -0.00835095 +-0.0897483 0.0929448 0.0154361 +-0.0322408 0.125589 0.00213325 +0.0193474 0.0551603 -0.0276297 +-0.0355381 0.0335618 -0.0245193 +-0.0323633 0.175433 -0.0143069 +0.0591153 0.0705615 0.014025 +-0.0685156 0.168032 -0.0539935 +-0.0408127 0.127672 -0.0010356 +-0.070932 0.129672 -0.00889239 +-0.0315034 0.0717826 0.0402663 +0.0139874 0.0924572 -0.0278842 +-0.00310937 0.0390986 -0.00637767 +-0.0315484 0.0749387 -0.030532 +-0.0658202 0.0597996 0.0132017 +-0.074125 0.079542 -0.012586 +-0.042758 0.0336059 0.00168497 +-0.0376274 0.0534153 -0.0106276 +-0.0609006 0.106856 -0.0171292 +-0.0465015 0.112315 -0.0168133 +-0.00832405 0.129364 0.00227931 +0.000993844 0.0989182 -0.0247915 +-0.092775 0.128304 0.0272531 +-0.0024916 0.073257 0.0585379 +-0.0354714 0.0959602 0.0437897 +-0.0798628 0.122191 -0.00554615 +-0.0379836 0.153062 -0.00765575 +-0.0574689 0.0413481 0.0461934 +-0.0681352 0.166058 -0.0212868 +-0.0655788 0.037063 0.0157921 +-0.0104996 0.03868 -0.00189881 +0.00192546 0.0390395 0.0275923 +-0.0598545 0.0467827 -0.000327155 +-0.0510269 0.136724 0.0245519 +-0.0626706 0.0343644 0.032487 +0.0368248 0.11128 0.0190303 +0.047871 0.0733255 0.0156276 +-0.0291332 0.059286 -0.0234112 +-0.0554108 0.0344947 0.0391385 +-0.0892997 0.0956389 0.0174174 +-0.0880049 0.11182 0.00834875 +0.0309816 0.102484 -0.0145328 +0.0183118 0.0665429 -0.0287115 +0.00448658 0.111391 0.0416751 +-0.0902127 0.122664 0.0052855 +-0.0900898 0.119956 0.00430245 +-0.026505 0.174198 -0.0103819 +-0.0214492 0.0963545 -0.0261739 +0.0574071 0.0691343 0.00477569 +-0.0755392 0.154957 0.000803149 +-0.0205078 0.049871 0.046386 +-0.0302748 0.116055 -0.0148216 +0.0522643 0.0732287 0.00987093 +-0.0353184 0.153664 -0.00782609 +-0.0468563 0.101377 -0.0215448 +0.0252483 0.0713214 0.0452679 +-0.01624 0.0963836 -0.0301721 +-0.0374901 0.0505918 0.0391881 +-0.000727236 0.069749 -0.034387 +-0.0295801 0.0368886 0.052851 +0.0174262 0.0350846 0.00327627 +-0.0408044 0.0884947 -0.0224789 +-0.0540496 0.0546601 0.0106814 +-0.0841802 0.136658 0.046769 +0.0265654 0.0388814 0.0291555 +-0.0365515 0.115187 -0.0158874 +-0.0746646 0.0981736 0.0384691 +-0.0461647 0.162128 -0.00806097 +-0.0838755 0.106118 0.000396239 +-0.0634664 0.0345901 0.0373297 +-0.0487026 0.0708482 -0.0151225 +-0.0490488 0.150196 -0.0040443 +-0.0454995 0.107082 0.0401134 +0.015502 0.109895 0.0399577 +0.0339767 0.0796167 -0.0178174 +-0.064903 0.110966 -0.0133006 +-0.0884279 0.0874564 0.00647862 +0.0303366 0.0352283 0.0150252 +-0.0476647 0.15359 0.00991943 +0.0491492 0.0460297 0.00132033 +0.0571336 0.0721807 0.0116675 +0.0423629 0.0398964 0.0150374 +-0.0075036 0.12108 0.0363047 +-0.0304017 0.0791045 -0.033577 +-0.0707511 0.0654954 0.0231537 +-0.0344941 0.171246 -0.000779029 +-0.0516393 0.0618882 -0.0103104 +0.0364959 0.064355 -0.0127735 +0.0258636 0.0344283 0.00929921 +-0.06094 0.0410414 0.0167056 +0.0388283 0.102661 -0.00481845 +0.00951185 0.0560842 0.0527429 +0.0250009 0.0629104 -0.0235842 +-0.0883814 0.100948 0.00841627 +-0.0896675 0.150196 0.0231327 +-0.0502775 0.0487457 0.0176637 +-0.0574379 0.0576833 0.0026039 +-0.0889127 0.145822 0.0300758 +0.00105802 0.0387062 0.0241019 +0.0432951 0.0987146 0.0161577 +-0.00981592 0.123797 -0.00918874 +-0.0235467 0.119499 0.0316537 +-0.0203743 0.127028 0.00506457 +-0.0546314 0.138445 -0.00241154 +0.0144977 0.11819 0.0360011 +-0.0468871 0.150669 0.00925072 +0.00310943 0.110155 -0.0202398 +-0.0315082 0.0817114 0.0416031 +-0.0361907 0.169669 -0.0137878 +-0.0266475 0.0904555 0.0474235 +0.00393808 0.131671 0.0154244 +-0.0594984 0.109765 0.0377884 +-0.0632488 0.167828 -0.0435907 +0.02054 0.116646 0.0351499 +0.046015 0.0862238 0.00817489 +-0.0472066 0.033531 -0.00644781 +-0.0382901 0.126893 -0.00216373 +0.0358746 0.0755562 -0.0137901 +-0.00915886 0.0385694 0.027547 +-0.083022 0.132397 -0.0026267 +-0.0665414 0.155108 -0.00331096 +-0.0344162 0.168264 -0.00253059 +-0.0891077 0.101031 0.0163881 +-0.0165765 0.119912 -0.0109781 +0.00442197 0.11861 -0.0157775 +-0.0234514 0.0892984 0.0527307 +0.0565327 0.0523952 0.0217798 +-0.0515006 0.111173 0.0369493 +-0.0218128 0.183092 -0.0122978 +0.0044132 0.0376001 -0.0242202 +-0.0654801 0.0675388 0.0330326 +-0.010497 0.0717087 0.0563199 +-0.065424 0.0399796 0.0326661 +-0.0228869 0.180156 -0.0121058 +0.0203379 0.125091 8.19329e-05 +-0.0802772 0.089954 0.0344521 +-0.0772906 0.165906 -0.0257637 +-0.012412 0.0382658 0.0163183 +0.0102284 0.0616887 0.0533551 +-0.00987882 0.105925 -0.0227673 +-0.00348977 0.122389 0.0359468 +-0.0759061 0.0675035 0.00967604 +-0.0414986 0.0874028 0.042497 +-0.0605969 0.06056 0.0225173 +0.0395569 0.0702481 -0.0107925 +-0.0329324 0.0638892 -0.016427 +-0.000943594 0.0381622 0.0205587 +-0.0338755 0.107095 -0.0200162 +-0.0125023 0.0486789 0.0487656 +0.0274856 0.0400248 0.0301572 +-0.0008153 0.10869 -0.0211159 +0.0343096 0.0419726 0.0279684 +-0.0247603 0.0865587 0.0527086 +-0.00553736 0.113796 -0.0185731 +-0.021633 0.035044 -0.0280533 +0.00828872 0.130472 0.0213052 +-0.0242184 0.0593353 0.0417104 +0.0288386 0.111536 -0.010211 +-0.0581339 0.0334069 -0.00670381 +0.037704 0.0574555 -0.00668675 +-0.0710158 0.13691 0.0483444 +-0.0305078 0.112529 0.0355647 +0.0343502 0.114842 0.0181324 +-0.0485971 0.0359097 0.00925535 +-0.0288479 0.0578621 -0.0233922 +-0.051497 0.0890197 0.045238 +0.0121456 0.0347039 0.0353715 +-0.0716902 0.155937 0.00211062 +-0.0790692 0.0804499 0.033529 +0.0545445 0.0589886 -0.00181806 +0.0529955 0.0716182 0.0219676 +-0.056511 0.121265 0.0393235 +0.032607 0.0527076 -0.00976892 +-0.0376644 0.0335909 0.0081569 +-0.0936994 0.128298 0.0232525 +-0.0809806 0.0720629 0.0115411 +-0.0239408 0.0886576 -0.0363455 +-0.0859344 0.107632 0.00736881 +-0.0277915 0.0782183 -0.0359607 +-0.0571511 0.0394305 0.0468685 +-0.0839381 0.0791399 0.0214982 +-0.0234217 0.0359155 0.0533704 +-0.0739011 0.106421 -0.010241 +-0.0567145 0.0334976 0.000765085 +-0.0241329 0.157302 -0.00905689 +-0.0128819 0.126866 -0.00238505 +-0.0250553 0.0707727 0.0450037 +-0.0444963 0.119293 0.0294103 +-0.0463222 0.0411097 -0.0132713 +-0.0451547 0.0437693 -0.0122411 +0.0475648 0.0553802 0.031711 +-0.0494965 0.11266 -0.0171746 +0.00314926 0.122256 -0.0116623 +-0.089161 0.137877 0.0251937 +-0.0171561 0.0387671 0.0311342 +-0.0659181 0.10388 -0.0158661 +-0.062107 0.163118 -0.0365927 +0.0444569 0.0444867 0.0259758 +-0.0206484 0.0464719 -0.0278809 +-0.0668387 0.144945 -0.0185544 +-0.0574928 0.102919 0.0421703 +-0.0655518 0.166572 -0.0275081 +-0.0339393 0.126307 0.017694 +-0.0176989 0.0554882 -0.03328 +0.012239 0.0794574 -0.0314827 +-0.0344963 0.094609 0.0443801 +0.0228685 0.123786 0.00100726 +-0.0920259 0.132307 0.0132318 +-0.0713267 0.169665 -0.0267525 +-0.081588 0.0788215 -0.00249997 +-0.0755712 0.102178 0.0364401 +-0.0482055 0.0335674 -0.00667883 +-0.0295069 0.109802 0.0378356 +-0.0819634 0.103331 0.0300688 +-0.0766364 0.0788383 -0.00918256 +-0.0472353 0.12392 0.0280317 +-0.0424858 0.064826 0.0410217 +-0.00749383 0.112788 0.0415528 +-0.0321607 0.174124 -0.015122 +-0.0148084 0.124344 -0.00565133 +-0.0630295 0.126909 0.044075 +-0.0122771 0.129643 0.0167063 +-0.0137469 0.0714346 -0.0382786 +0.0253964 0.0981715 0.0439168 +-0.0105339 0.100499 0.0452584 +-0.0909546 0.139232 0.0191849 +-0.0239226 0.16684 -0.0101968 +-0.00433796 0.0387886 -0.000752538 +0.00920046 0.0879669 -0.0320124 +-0.0404937 0.0662835 0.0416604 +-0.0569887 0.118401 0.0385929 +-0.0715396 0.0362187 -0.000138838 +0.0226226 0.0591926 0.0466634 +-0.0544937 0.112536 0.0358256 +-0.0843481 0.145997 0.00513587 +-0.022811 0.0756351 -0.0385829 +-0.0666897 0.0735998 -0.0145924 +-0.0404977 0.116683 0.0325662 +0.0032744 0.114489 -0.0193505 +0.00148054 0.0413996 0.0463959 +-0.0245078 0.0767611 0.0513331 +-0.0308625 0.101511 -0.0227041 +0.00533966 0.0345787 0.0412861 +-0.0774755 0.170095 -0.0341987 +-0.0650593 0.125632 0.048098 +0.0112751 0.0505364 0.0494832 +-0.0786212 0.0976351 -0.0095679 +-0.0726748 0.0647223 0.00565049 +-0.0350102 0.158094 0.00367693 +0.0175012 0.11539 0.036772 +-0.0205761 0.0350586 0.0512942 +-0.0408828 0.108487 -0.0195205 +-0.0324978 0.0661054 0.0396515 +-0.0860138 0.0845642 0.00148082 +0.00924462 0.0710839 -0.0326657 +-0.0573888 0.0342428 0.0302238 +-0.0809405 0.141759 -0.00181375 +0.0351408 0.0931106 -0.0145377 +0.0391769 0.106978 0.0201683 +-0.0378047 0.0342916 0.0307956 +-0.0614885 0.0932285 0.0449784 +-0.00750736 0.0561433 0.0534652 +0.0317881 0.0564278 0.038783 +-0.0258626 0.0378286 0.0139698 +-0.0515546 0.0445278 -0.00899667 +-0.010869 0.165486 -0.0158779 +-0.0297303 0.109983 -0.0184292 +-0.0469177 0.0346518 0.0071269 +-0.0286016 0.109083 -0.0194963 +-0.0109096 0.172768 -0.0212178 +0.00821291 0.0711477 -0.0331375 +0.00315167 0.10307 -0.0219554 +-0.0472567 0.132959 0.0215876 +-0.0825276 0.142074 0.0435561 +-0.0136058 0.093388 -0.035076 +-0.0179202 0.0385865 -0.0163394 +-0.0641268 0.0405801 0.0396199 +0.0124469 0.129111 0.00141235 +-0.0637038 0.0343279 0.0323025 +0.0354218 0.100763 0.0338403 +0.0121385 0.130422 0.0141392 +0.00281822 0.126541 -0.00629609 +0.000901863 0.122026 -0.0113896 +-0.0702669 0.176516 -0.0559875 +-0.0576072 0.0336162 0.0112663 +0.0129045 0.125515 -0.00527553 +-0.021518 0.115416 0.036565 +-0.01542 0.16691 -0.0137031 +-0.0365035 0.168234 0.000585726 +0.00464616 0.034105 0.00716872 +-0.0319348 0.125225 0.000800634 +-0.0169495 0.0390889 0.0362738 +-0.024481 0.104364 0.0426891 +0.0161036 0.0393372 0.0440174 +-0.0397156 0.127552 0.0155957 +-0.0063009 0.09425 -0.0339062 +-0.00549064 0.104476 0.0440202 +-0.0455034 0.104326 0.041412 +-0.0625466 0.16468 -0.0375945 +-0.0334032 0.0765382 -0.0275106 +-0.0118225 0.0855318 -0.0386599 +0.0100166 0.0833203 0.0549696 +-0.0685481 0.156429 0.0206858 +-0.0705717 0.158164 -0.0459142 +-0.0185161 0.125172 -0.00248935 +-0.0185539 0.095955 -0.0297446 +0.0191428 0.127427 0.0167214 +-0.0145095 0.171282 -0.0176637 +0.0352621 0.0826509 -0.01774 +-0.0526579 0.0504274 0.026653 +0.00237351 0.0465882 -0.0283321 +-0.0854761 0.132564 0.04817 +-0.0868299 0.0846427 0.00348465 +-0.0105903 0.0377043 -0.0258398 +0.00953188 0.0455622 0.0461832 +-0.0662037 0.154495 -0.0505507 +-0.0856221 0.107687 0.0203552 +-0.0858054 0.102155 0.00239755 +-0.0248162 0.126254 0.00926143 +-0.0398081 0.128271 0.00374611 +-0.00949649 0.0546877 0.0525704 +-0.0474662 0.0960033 0.0439936 +-0.0787761 0.1431 -0.00379727 +0.0264606 0.0663192 -0.0226274 +-0.0294891 0.119549 -0.0104626 +-0.0285179 0.0948797 -0.0246293 +-0.0561001 0.14389 0.0312058 +-0.0930288 0.116051 0.018311 +-0.00894653 0.174179 -0.0257648 +-0.0524908 0.113899 0.0349209 +0.0158504 0.0959717 -0.0236278 +-0.0694879 0.0368888 0.0112092 +-0.0802884 0.146109 0.0411929 +-0.0498232 0.0349806 0.0446412 +0.0342731 0.115225 0.0123899 +0.0283978 0.0955434 -0.019149 +-0.0515486 0.141607 0.0193759 +-0.0458573 0.147704 0.00717141 +-0.0735436 0.175947 -0.0433626 +-0.0758292 0.0935231 -0.0136873 +-0.0554898 0.041398 0.0465154 +0.0604856 0.0623173 0.00815473 +0.0135991 0.100782 -0.0226731 +-0.021666 0.16235 -0.015178 +-0.0474866 0.0573572 0.0366835 +-0.0645248 0.154173 -0.00692339 +0.0454055 0.0747572 0.0215389 +-0.0497578 0.0797288 -0.020162 +-0.0463447 0.129406 0.0234768 +0.0153317 0.0580768 -0.0287753 +0.0124861 0.100431 0.0478938 +-0.0288456 0.0986889 -0.0235542 +-0.00949656 0.0471698 0.047803 +-0.0644726 0.165628 -0.0285568 +0.0564615 0.0703554 0.0055259 +-0.0477419 0.0345444 0.0337565 +-0.0415114 0.0520187 0.0393909 +-0.0165872 0.128419 0.0166112 +-0.0649318 0.168832 -0.0387572 +-0.0230309 0.0906523 0.0522978 +-0.0289316 0.0889882 -0.0316153 +-0.0522528 0.0567257 0.0259279 +-0.0113061 0.169739 -0.0249506 +0.0329977 0.0514306 -0.00763543 +-0.0104801 0.120983 0.0360777 +-0.0848294 0.111312 0.0422165 +0.0597675 0.0609389 0.00613027 +-0.0264774 0.0473675 0.0499125 +-0.00223749 0.0939165 -0.0335391 +-0.0188762 0.171241 -0.0152046 +0.0460317 0.0820288 0.0151733 +-0.00015619 0.0389464 0.0272511 +-0.0490964 0.156122 -0.00621407 +0.0240569 0.111353 0.0367066 +-0.0427705 0.0826571 -0.0207663 +-0.0844768 0.0856095 0.0274708 +-0.0120306 0.174239 -0.0210892 +-0.00550834 0.0689154 0.0563731 +0.0289606 0.0679277 -0.0207366 +-0.0308933 0.12367 0.0217821 +-0.00650569 0.0675101 0.0559953 +-0.0789661 0.0859916 0.0360799 +-0.0291346 0.177171 -0.00534178 +-0.0560039 0.140764 -0.00299974 +-0.0584999 0.107052 0.0397144 +0.00834583 0.0539265 -0.0302958 +-0.0169173 0.16018 -0.0117745 +-0.0698587 0.0680767 -0.00467294 +0.00525002 0.0740223 -0.0345195 +0.0110199 0.0860342 0.0546992 +0.0173361 0.0608154 -0.0277985 +0.0111302 0.107269 -0.019511 +-0.021494 0.10578 0.0424616 +0.0436775 0.0859385 0.0262014 +-0.0587477 0.0767588 -0.0188591 +0.0107799 0.0548821 0.052327 +0.0185294 0.0358466 0.0392699 +-0.0859998 0.135257 0.0457789 +-0.0767885 0.154209 -0.0148974 +-0.0613392 0.0587193 0.00967832 +-0.0712669 0.0381904 0.00872646 +0.00351715 0.0561463 0.0534882 +-0.0427983 0.0884442 -0.0218161 +-0.0898373 0.133802 0.0342135 +-0.0414226 0.150668 0.00483874 +0.0173651 0.049165 -0.0241471 +-0.0213294 0.0783028 0.0551779 +0.0143433 0.0537792 -0.0282321 +-0.0784743 0.140032 0.0478552 +-0.0334891 0.0889549 0.0439078 +0.0190476 0.0795376 0.0522219 +0.0286264 0.0638437 -0.020406 +-0.054069 0.139552 0.0288194 +-0.0132381 0.0385471 0.0267309 +0.0118566 0.0887261 0.0541581 +0.0316481 0.100683 -0.014625 +-0.093138 0.120057 0.0112982 +0.0244505 0.0384021 -0.00302114 +0.0122037 0.0864617 -0.0308592 +-0.0121165 0.0973987 0.0513433 +0.0371269 0.09285 0.0362758 +0.00753839 0.119505 -0.0147629 +-0.0698326 0.0937229 -0.0162704 +-0.046496 0.105677 0.0407002 +-0.00449814 0.0870358 0.0571267 +-0.00560579 0.042007 -0.0256504 +-0.0748416 0.154048 -0.0189002 +0.0138852 0.0348367 0.0283807 +-0.0890009 0.118943 0.0464523 +-0.0703858 0.16802 -0.0500308 +-0.0208115 0.124915 -0.0021319 +-0.0399669 0.0343914 -0.00210399 +-0.0188044 0.120762 -0.00982397 +-0.0825182 0.0816676 0.0298907 +-0.0625957 0.0588736 0.0128867 +-0.0908844 0.150204 0.0171288 +-0.073715 0.17176 -0.0333959 +0.0304194 0.0446109 0.0313507 +-0.0364972 0.0605644 0.0405385 +-0.0684905 0.158118 -0.0539401 +0.011386 0.0343226 -0.0122219 +-0.0375464 0.119352 -0.0122401 +-0.036497 0.102841 0.0405772 +0.0373988 0.0430101 -0.00376662 +-0.00864037 0.0526884 -0.0330777 +-0.0505191 0.112725 -0.0172384 +0.000747713 0.131321 0.00709666 +-0.0821064 0.110205 0.0294137 +-0.0338319 0.0498039 0.0388148 +-0.0399647 0.128635 0.00811119 +0.0262642 0.0479348 -0.017662 +-0.093142 0.118716 0.0123041 +-0.0234219 0.0537493 0.0424994 +0.0109672 0.0977693 -0.023517 +-1.32571e-05 0.13145 0.0125463 +0.0200527 0.0618555 0.0482337 +-0.0119089 0.128954 0.021205 +-0.0524994 0.0903873 0.0447034 +-0.0334979 0.0845774 0.0421828 +0.0190672 0.117213 -0.0123322 +-0.0263135 0.0381467 0.0262093 +0.034589 0.108233 -0.00663102 +0.0435886 0.091694 0.0241609 +-0.00849618 0.0939016 0.0554996 +-0.0579701 0.125253 -0.00738272 +-0.016138 0.0382862 0.0119165 +-0.0709351 0.0742605 0.0366097 +-0.0125367 0.128434 0.00198737 +-0.0244307 0.0379986 0.0104913 +-0.0681277 0.152206 0.0356633 +-0.0279464 0.0689892 -0.032513 +0.0398535 0.0752995 0.0330037 +-0.0636875 0.0722354 -0.0149801 +0.00569987 0.0949071 -0.0304911 +0.0217235 0.120687 0.0315848 +0.0306109 0.0549842 0.038821 +-0.0719231 0.155792 0.0253493 +-0.0350091 0.168257 -0.00164334 +-0.0919787 0.13239 0.0232249 +-0.0781961 0.0730005 -0.00359699 +0.0587114 0.0663183 0.00513779 +-0.0669656 0.147091 -0.0266318 +-0.0880403 0.150094 0.0102212 +-0.0137235 0.0657235 -0.0372342 +-0.0884987 0.102354 0.0183681 +-0.0219433 0.0386564 0.0320445 +-0.0629896 0.0341974 0.0167609 +0.0436977 0.0404602 0.0147575 +-0.0413787 0.124797 0.0224172 +-0.0255118 0.0931431 0.0461963 +-0.0122206 0.175683 -0.0283056 +-0.0580888 0.115436 0.0369297 +-0.0783607 0.150068 -0.00187639 +0.0561422 0.049398 0.0141897 +-0.0334907 0.0932064 0.044455 +-0.0784392 0.144133 0.0443751 +0.0134754 0.0990564 0.0479483 +-0.0673994 0.0396352 0.0118227 +-0.0719379 0.131113 -0.00828186 +-0.0675058 0.060447 0.0122781 +-0.0276134 0.0408758 -0.0294796 +0.0326756 0.117173 0.0132168 +-0.0741715 0.151271 -0.0318825 +0.0191559 0.0577995 0.0486799 +-0.0624968 0.102902 0.0415908 +-0.0467288 0.054632 0.0374442 +0.0400692 0.0773178 -0.00879643 +-0.0293794 0.119962 0.0282913 +0.026315 0.0849274 0.0469361 +0.00747158 0.0458651 0.0478111 +-0.0644149 0.0731789 0.038947 +0.0243686 0.118145 -0.00732959 +0.0357612 0.0614637 -0.0127934 +-0.00578852 0.0784633 -0.0377499 +-0.0177178 0.125534 0.0250034 +-0.0264348 0.0891318 0.0486594 +0.000504451 0.0842848 0.0575158 +0.00240772 0.0390703 -0.0246208 +-0.0401081 0.172699 -0.00896014 +-0.0494967 0.101524 0.042218 +-0.0255895 0.0365546 -0.0292581 +0.0458597 0.0428246 0.0032848 +-0.0627733 0.141026 0.037362 +-0.0278525 0.100136 -0.023576 +0.03144 0.0681325 -0.0188162 +0.0112459 0.129755 0.00240428 +-0.0872718 0.144583 0.0355002 +-0.0552077 0.119827 0.0376818 +-0.0324974 0.0859857 0.0423469 +-0.0872251 0.0950749 0.0256867 +-0.0468678 0.104213 -0.0207743 +-0.0445775 0.0462028 -0.0108205 +-0.0612826 0.0343712 0.0345145 +-0.0144859 0.0951551 0.0535558 +-0.0770239 0.141306 -0.00545257 +-0.0572927 0.0447946 0.0143752 +0.0334156 0.0430777 -0.00456693 +-0.073856 0.154091 -0.0259028 +0.0392277 0.108354 0.00916622 +-0.0254312 0.0379511 0.0211651 +-0.0579761 0.145744 -0.00191597 +0.016043 0.107446 -0.0178315 +0.0243862 0.0955601 0.0459654 +-0.0527854 0.146248 0.0203946 +-0.0908456 0.137855 0.0191944 +-0.0688648 0.111591 0.0438135 +0.00950305 0.108494 0.0403312 +-0.0846701 0.133487 -0.000689201 +-0.0146178 0.161254 -0.0115208 +-0.0517406 0.0704199 0.0388209 +-0.00483682 0.0910121 -0.035647 +-0.0455024 0.0438631 0.0430524 +-0.0269915 0.165366 -0.00760144 +-0.000429299 0.131494 0.0138246 +-0.0108252 0.0340132 -0.0200775 +-0.053792 0.141582 0.0273817 +-0.0807416 0.0720213 0.00853917 +-0.0886543 0.102345 0.0123871 +0.00450201 0.0745047 0.0565768 +-0.0651106 0.120024 0.049809 +-0.0816493 0.14593 0.000178819 +-0.0317919 0.0396266 0.0512352 +-0.0868829 0.105004 0.0193534 +-0.0587854 0.0839965 -0.0207846 +-0.0568787 0.10406 -0.0186489 +0.0234195 0.0349614 0.0211471 +-0.0247363 0.0683356 -0.0352871 +-0.0124919 0.105832 0.0432095 +0.040945 0.0957511 0.0281635 +-0.0357042 0.0681118 -0.016092 +0.0393973 0.0899152 -0.0117774 +-0.00550412 0.0547964 0.0538028 +0.0275305 0.105074 -0.0152759 +0.0436438 0.0973161 0.0031761 +-0.0642775 0.0356785 0.0173446 +-0.0578787 0.118384 0.0390612 +-0.0235304 0.111308 0.039012 +-0.0248685 0.10443 -0.0231858 +0.0332298 0.0870923 -0.0186827 +-0.050788 0.13247 -0.00197537 +0.0485095 0.0723104 0.0188157 +0.0122831 0.123395 -0.0089862 +0.0075079 0.0786108 0.055765 +0.00110358 0.114412 -0.0192684 +-0.0434472 0.0344528 0.0312293 +0.0149724 0.0740286 0.0533099 +-0.0773286 0.0696655 0.0199272 +-0.000294503 0.124716 -0.00828566 +0.0391665 0.0916193 -0.0109453 +-0.0671371 0.169442 -0.0570354 +-0.0101504 0.0993437 0.0489973 +-0.0383111 0.172675 -0.0109203 +-0.048519 0.137086 0.0153953 +0.0537553 0.0686728 0.0251859 +-0.0642372 0.158555 -0.0140759 +-0.0177679 0.0959988 0.0511065 +-0.071022 0.0408196 0.00705143 +-0.0272272 0.0562777 -0.0264072 +-0.0594982 0.10293 0.0419773 +-0.0516777 0.0668198 0.0365892 +-0.00645905 0.128953 0.0260767 +0.0161504 0.121694 -0.0091598 +0.0437177 0.0457281 0.0283091 +-0.092911 0.118706 0.0113064 +0.0110654 0.0346569 0.0243461 +-0.0131306 0.0351789 0.049391 +0.0159998 0.123366 -0.00698095 +-0.0668407 0.0952437 -0.0171577 +-0.071815 0.0936645 -0.0155813 +-0.0350082 0.162373 -0.00163299 +-0.00952557 0.169814 -0.0256004 +-0.0483792 0.0345623 0.0353569 +0.042732 0.0733313 -0.00479409 +-0.0838195 0.113254 0.0462465 +-0.0700699 0.0415411 0.00206928 +-0.0834164 0.110194 0.0380909 +0.0395682 0.0582726 0.0307001 +-0.0527297 0.0738092 -0.0169322 +-0.0800112 0.0826849 -0.00756298 +0.0378591 0.102628 -0.00683982 +-0.010049 0.165099 -0.0207588 +-0.0214981 0.0486638 0.0490621 +-0.0429934 0.0337652 -0.0113325 +-0.000805756 0.0881637 -0.035184 +-0.0796191 0.0899783 0.0351979 +-0.0774871 0.138654 0.0489668 +-0.0910383 0.131037 0.0312282 +-0.0353528 0.121762 0.0276148 +-0.0692517 0.16944 -0.0530112 +-0.0314965 0.0760483 0.040909 +0.0238425 0.124265 0.00565298 +0.00628938 0.0341841 -0.018778 +-0.0581165 0.0576994 0.00562055 +0.0291881 0.120758 0.0119009 +-0.0722612 0.0718535 0.0331389 +0.00962203 0.129808 0.0232185 +-0.0350797 0.159271 -0.0126349 +-0.0536324 0.0335534 0.00133593 +-0.0104359 0.0944019 -0.0340934 +-0.00347107 0.112728 -0.01944 +0.0492065 0.0445737 0.00425603 +-0.014689 0.0555534 -0.0339367 +-0.0729302 0.110914 0.0452396 +0.0128104 0.0891816 -0.030491 +0.0173644 0.052219 -0.0267492 +-0.0755038 0.138646 0.0489499 +-0.0664863 0.0657678 0.0290911 +0.014321 0.0608889 -0.0289153 +-0.0109854 0.0891937 -0.0368255 +-0.0714642 0.155388 -0.0429121 +-0.0674015 0.178779 -0.0526749 +-0.0136021 0.0406665 -0.0268707 +-0.0656159 0.148667 -0.029991 +-0.0795217 0.0705829 0.00954625 +-0.0757838 0.06757 0.0150388 +-0.0619636 0.125289 -0.00856668 +-0.0639176 0.153606 -0.0366205 +-0.0839617 0.114292 0.0471508 +-0.0125655 0.164041 -0.0130929 +-0.0519903 0.161388 0.00628165 +0.0020129 0.0391581 -0.00540617 +-0.0585951 0.0582039 0.0052961 +0.034843 0.0862437 0.0399362 +-0.0416697 0.0377451 -0.0272469 +0.0488349 0.0718069 0.020409 +0.0223863 0.0449715 0.0408911 +-0.0822334 0.107404 -0.00162196 +-0.0602698 0.154572 0.0280125 +0.0297856 0.120093 0.00926746 +-0.0669649 0.131148 -0.00876196 +-0.0800697 0.154441 0.0255089 +-0.0849288 0.12649 -0.00334252 +-0.000500036 0.0952296 0.0545194 +0.0151613 0.0863718 -0.029541 +0.0388132 0.0794166 0.0350891 +-0.0171133 0.0390763 0.0521827 +-0.0784063 0.0886978 0.0368492 +-0.0643001 0.179479 -0.0601392 +-0.0766538 0.11399 -0.00481419 +-0.016912 0.0931258 -0.0348233 +0.0379841 0.0406211 -0.00115448 +-0.0331507 0.0821697 -0.0275285 +0.0162383 0.0953367 0.0482094 +-0.0326141 0.0638332 -0.0174509 +-0.0725041 0.146981 0.0423864 +-0.0910261 0.12541 0.00626868 +-0.0833424 0.104748 -0.00163012 +0.0153058 0.128412 0.00248962 +0.0403512 0.038719 0.00830945 +-0.0325027 0.0603855 0.0384943 +-0.0195554 0.0387278 -0.0149268 +-0.0839725 0.0897798 0.0296574 +-0.00149888 0.0634085 0.0566876 +0.0387554 0.108357 0.00416438 +-0.0444079 0.0409084 -0.0203048 +-0.0868827 0.0896245 0.0255163 +0.0430409 0.10011 0.0131585 +0.0194835 0.105739 0.0423148 +0.032957 0.115724 0.0233075 +-0.0114871 0.063283 0.055206 +-0.0528865 0.15117 0.0191272 +0.0045048 0.104341 0.0428855 +0.00104791 0.0346359 -0.0164332 +-0.0674529 0.180926 -0.0583799 +-0.0344427 0.15352 -0.00733684 +0.0397392 0.0658643 0.0327972 +-0.0465986 0.120315 -0.0132329 +0.015269 0.034844 0.035887 +-0.0554963 0.0791301 0.0442202 +-0.0342911 0.0473692 0.0421968 +-0.0842876 0.108899 0.00336188 +-0.0262668 0.179961 -0.0169689 +-0.0836964 0.0763445 0.00752427 +-0.0696635 0.159559 -0.0499324 +-0.0661058 0.151041 -0.0375744 +-0.0455019 0.122005 0.0261109 +-0.0890685 0.0969888 0.0194042 +-0.0946116 0.124177 0.0212718 +0.00351301 0.0828608 0.0571024 +-0.0555168 0.154658 0.0152234 +0.00450223 0.0730917 0.0563795 +-0.0125112 0.037888 -0.0164908 +-0.0595378 0.0337212 0.0161226 +-0.0645332 0.120008 0.0489179 +-0.0396568 0.0577566 -0.0113194 +-0.052454 0.13854 0.0254099 +-0.0106577 0.165418 -0.0198106 +-0.0477868 0.0855382 -0.0218048 +-0.07021 0.168534 -0.0249229 +0.0345025 0.0454126 0.0301845 +-0.0261438 0.168232 -0.0181898 +-0.0685956 0.0422314 0.00876662 +0.00130397 0.128647 -0.00252095 +-0.0558871 0.108356 -0.0181276 +-0.0163928 0.0384645 -0.00103951 +-0.0364756 0.0917702 0.0440382 +0.0409317 0.0971197 -0.00479362 +-0.015772 0.160715 -0.00958045 +-0.0428613 0.102811 -0.0212634 +-0.0285136 0.112565 0.0358423 +0.0484971 0.0678077 0.0264809 +-0.0319101 0.121969 -0.00695975 +-0.0200308 0.127492 0.00809368 +-0.0860481 0.114371 0.00228673 +-0.0597203 0.0638916 0.0303834 +0.00627327 0.0682324 -0.0325665 +0.0114155 0.128646 -0.000626619 +-0.0516778 0.140064 0.0213757 +-0.0218071 0.110009 -0.0205036 +-0.0218161 0.0798852 -0.0388524 +-0.02847 0.045966 0.0500228 +0.0429765 0.0987175 0.0181666 +-0.0795395 0.117686 0.0497856 +0.0342026 0.113899 0.000840527 +0.0067112 0.0353739 0.0246266 +0.0402464 0.0618954 -0.00472398 +-0.049455 0.118007 0.0316443 +-0.0442176 0.170815 -0.00391429 +0.00731658 0.0846292 0.0563131 +-0.0542668 0.0504201 -0.00539584 +-0.00648076 0.0969085 -0.030657 +0.0597202 0.067814 0.0181758 +-0.0267919 0.0380272 0.00817341 +-0.0702433 0.163232 -0.0134117 +0.0368364 0.0754262 0.037436 +-0.077497 0.168713 -0.0313178 +0.00996165 0.130854 0.00764162 +0.0133618 0.0523173 -0.0278769 +-0.0337147 0.120592 -0.00951232 +-0.0398766 0.113891 -0.0165093 +-0.089592 0.111931 0.0163329 +-0.0841359 0.0832101 0.027497 +-0.0848856 0.0792043 0.0194951 +-0.0291817 0.0832547 -0.0346104 +0.013224 0.0341678 -0.000459678 +-0.00759782 0.103673 0.0436498 +-0.0514921 0.0804912 0.0440592 +-0.0929632 0.124088 0.0102675 +-0.0586925 0.0677294 -0.0118268 +0.0392263 0.0874331 0.033936 +-0.052704 0.143169 0.0214165 +-0.0286941 0.0380883 0.0293671 +0.0183138 0.0348993 0.0256062 +-0.0644855 0.101502 0.0419335 +-0.0547363 0.159762 -0.000811248 +0.0123244 0.0567269 -0.0296218 +0.0294314 0.0509988 -0.0157519 +0.0386176 0.0874608 0.0348475 +-0.0759101 0.148612 -0.0128604 +0.0152406 0.0723235 -0.0303843 +-0.0475913 0.133999 0.00741747 +-0.0109726 0.115573 -0.0164387 +-0.040716 0.0681271 -0.0158645 +-0.000345107 0.127203 0.0297544 +-0.0856388 0.100529 0.0267624 +0.0372748 0.0576283 0.0326444 +0.0454709 0.0664599 0.0266758 +-0.040383 0.152127 0.00460721 +-0.0503264 0.131112 0.0307063 +-0.061863 0.0953699 -0.0186332 +-0.0356336 0.11996 -0.0108661 +-0.000498349 0.118323 0.0391474 +-0.00744633 0.0386202 0.0260498 +-0.0702648 0.156758 -0.047919 +-0.0607772 0.146055 -0.00361746 +-0.0557733 0.0797194 -0.0205764 +-0.0286229 0.0450027 -0.0280846 +-0.0400285 0.0339876 -0.0295458 +-0.0244818 0.0974513 0.0444604 +-0.0736592 0.0887741 0.0405778 +-0.0626256 0.150596 -0.021578 +-0.0455006 0.117978 0.0306048 +-0.0153159 0.119411 -0.012435 +0.00132313 0.0358703 0.0464707 +-0.0231138 0.0666037 0.0460408 +-0.0487946 0.0869761 -0.0218357 +0.0312031 0.0842875 -0.0196213 +-0.0866673 0.109085 0.0143521 +-0.0716243 0.157487 -0.00225608 +0.0404941 0.0555582 0.0318463 +-0.0624591 0.155071 0.0054624 +-0.043713 0.0695592 -0.0168487 +0.00662363 0.128671 -0.00261559 +0.0292045 0.0356392 0.0180684 +0.0152063 0.0878077 -0.0294658 +0.0560899 0.059136 0.000193317 +0.0162996 0.0623114 -0.0287447 +0.00333411 0.0539266 -0.0303683 +-0.0212016 0.0383732 -7.87452e-05 +-0.0683674 0.147186 -0.0280671 +-0.0614001 0.124084 0.0428232 +-0.0273522 0.0939518 -0.0257303 +-0.0526652 0.0647199 -0.0102 +-0.032486 0.0449059 0.0475402 +-0.0090473 0.168146 -0.0217175 +-0.069891 0.119438 -0.0086356 +-0.0744393 0.114503 0.0509494 +-0.0648928 0.0350374 0.038379 +-0.00019365 0.125094 0.0326823 +-0.039166 0.0355671 -0.0293815 +-0.0258209 0.0692735 0.0430043 +-0.0620187 0.175667 -0.057604 +-0.0903815 0.130904 0.00623191 +-0.00457753 0.11466 -0.0174869 +-0.0733982 0.114573 0.051125 +0.00137655 0.0380516 0.0229424 +-0.0197661 0.0728664 -0.0388949 +-0.0370853 0.162227 -0.0135318 +-0.0166846 0.109701 -0.0201927 +-0.0564987 0.0932477 0.0451284 +-0.086761 0.084678 0.016478 +-0.0201321 0.0568083 0.0475876 +-0.0893331 0.111939 0.012355 +-0.0291964 0.162421 -0.00376774 +-0.0840799 0.143223 0.00416483 +-0.0550692 0.121281 0.0379498 +-0.0258999 0.0382697 0.0279803 +-0.0881372 0.150234 0.0261027 +-0.0189632 0.0385431 -0.0165058 +0.0252198 0.0478964 -0.0186081 +-0.0250024 0.118057 -0.0129436 +-0.0341053 0.162392 -0.00207929 +-0.0455587 0.0461599 -0.0105245 +-0.0673284 0.11863 0.0518333 +-0.0767393 0.157602 -0.0105393 +-0.0460199 0.0377083 0.0451098 +0.00937824 0.0346871 0.0203526 +-0.0232543 0.181611 -0.01087 +-0.0185423 0.0342292 -0.0199208 +0.0094823 0.034855 0.0256576 +-0.00349094 0.060529 0.0547186 +-0.0536823 0.0678463 -0.0129474 +0.0573543 0.0687146 0.022093 +0.0297466 0.036015 0.0196643 +0.0183828 0.0447123 -0.0227438 +-0.00451438 0.1296 0.000561158 +-0.0575172 0.037335 -0.0101901 +-0.0273178 0.113609 -0.0162558 +-0.0127855 0.0392769 0.0369668 +0.0359154 0.0915824 -0.0149202 +-0.0321871 0.0680263 -0.0214501 +0.0373115 0.0673123 0.0362946 +-0.0482709 0.0345995 0.0405757 +-0.0586992 0.142676 -0.00307276 +-0.0720231 0.149543 -0.0391183 +-0.0926193 0.122848 0.0312739 +-0.00649959 0.103045 0.0436802 +-0.0172605 0.128293 0.0149127 +0.0500544 0.0553974 0.0300563 +-0.0459009 0.131661 0.0191601 +-0.0355139 0.176726 -0.00796363 +-0.0132739 0.162396 -0.014817 +-0.0205091 0.112696 0.0389743 +0.0400974 0.0943736 -0.00783899 +0.0445099 0.0945603 0.0161557 +-0.00940844 0.100291 -0.0242411 +-0.0880121 0.147225 0.0305337 +-0.0134729 0.17718 -0.0214028 +0.0289055 0.0408264 0.0297172 +-0.0386238 0.0335154 -0.0250853 +-0.0474847 0.0931518 0.0438057 +0.0385195 0.109282 0.00815775 +-0.0094889 0.119647 0.0372435 +-0.0558334 0.0358523 0.0464479 +0.0391497 0.108397 0.00837586 +-0.0166742 0.0668915 0.0537111 +-0.0514343 0.0647808 0.0348885 +-0.0506054 0.0575708 -0.00965819 +0.0186225 0.0355557 -0.00967449 +-0.0507888 0.0855066 -0.0215873 +-0.0563207 0.0562341 0.00763908 +0.00416104 0.0393786 0.0331643 +0.00410872 0.110162 -0.02034 +-0.0326921 0.152804 -0.00294992 +-0.0105902 0.0385498 0.00372703 +-0.0450772 0.0337168 -0.000691764 +0.00110427 0.111585 -0.0201254 +-0.086661 0.123026 0.0482846 +-0.00349688 0.0633763 0.0563118 +0.0181674 0.0959966 -0.023265 +0.0171824 0.126495 -0.000336309 +0.0349695 0.0577828 0.0363582 +-0.0893883 0.0956403 0.0164184 +-0.0132244 0.172771 -0.0193112 +-0.0115098 0.0702302 0.0553956 +0.0292762 0.0431552 0.0314362 +0.0355897 0.0411906 0.0271165 +-0.0396848 0.0344413 0.0355548 +-0.0488762 0.0335766 0.000473902 +-0.0845392 0.0778023 0.0145171 +-0.0600467 0.0342661 0.0313871 +-0.0484946 0.156406 0.00957752 +-0.0435279 0.0506014 0.0392212 +-0.0581322 0.0624985 0.0284102 +-0.0319273 0.126498 0.0125244 +-0.0692254 0.124258 0.0526584 +0.0346263 0.114673 0.0139267 +-0.0707453 0.113137 0.049314 +0.0440515 0.0722274 0.0248494 +-0.0190238 0.0384735 0.0274147 +0.0318733 0.11664 0.0243218 +-0.00980958 0.166665 -0.0207735 +-0.075878 0.0954761 0.0383509 +0.04237 0.0533961 -0.00679891 +-0.00515103 0.127241 0.0295045 +-0.0386117 0.0406767 0.0425487 +0.0591522 0.0552732 0.011174 +0.0399613 0.0806226 0.0334139 +-0.0892353 0.14446 0.0304266 +-0.0104754 0.127368 -0.00300647 +-0.0635158 0.162004 -0.0583208 +-0.0801984 0.0868229 -0.00856132 +-0.0600399 0.13696 -0.00647222 +-0.0777335 0.153443 0.0307864 +-0.046469 0.119345 0.0289808 +-0.0313084 0.126018 0.00688499 +-0.0190244 0.0385858 -0.00538325 +-0.0698329 0.112058 0.0465849 +-0.0761752 0.110468 0.0448594 +0.0607736 0.0651167 0.0161629 +-0.0738077 0.102191 0.0374953 +-0.0406116 0.0337811 0.00738645 +-0.0152574 0.166467 -0.0199789 +0.0135127 0.0860479 0.0530247 +-0.072308 0.159721 -0.00687103 +0.00549414 0.130728 0.00313392 +-0.00649655 0.0870315 0.0570873 +-0.0353742 0.125928 -0.00196324 +0.00551011 0.0870055 0.0566199 +0.00569172 0.093878 -0.0314287 +0.0453353 0.0533808 -0.00616451 +-0.0788788 0.16526 -0.0309581 +0.0122616 0.0765812 -0.0308581 +-0.0471876 0.131943 0.0231102 +0.0442177 0.0860807 -0.00279659 +-0.0735334 0.165176 -0.017728 +-0.0896904 0.116203 0.0443945 +-0.0887705 0.0969872 0.0214096 +-0.0201887 0.0754016 0.0541402 +0.0203245 0.0636 -0.0272806 +-0.0513256 0.0345659 0.0399502 +-0.0461113 0.034482 0.0324006 +-0.0773794 0.109459 0.0418273 +0.0262228 0.0747294 -0.0245497 +-0.0281178 0.0845911 -0.0356125 +-0.029049 0.0511502 0.0411139 +-0.0685509 0.065132 0.0256966 +-0.0660181 0.127026 0.048508 +-0.0475948 0.0403553 0.044655 +-0.0711998 0.15079 -0.0434624 +0.0346942 0.0401467 0.0260507 +-0.0803051 0.0719229 0.0175051 +0.0266708 0.121701 0.00384182 +-0.0637803 0.118542 0.0465326 +0.0257185 0.0699313 0.0441746 +-0.0865836 0.11378 0.0451954 +-0.0543656 0.153368 0.0199938 +-0.0147843 0.0981951 -0.0260468 +-0.0480746 0.134034 0.00539884 +-0.0172971 0.0386165 -0.00691824 +0.024363 0.0867852 -0.0239669 +0.000502788 0.056275 0.0546165 +0.0460119 0.0750141 0.00420589 +-0.0813458 0.154098 0.0250842 +-0.0504992 0.111154 0.0370407 +0.0480441 0.0725423 0.0171549 +0.0177377 0.0821568 0.0520978 +-0.0634907 0.0833477 0.0441845 +-0.0287709 0.04365 -0.0290051 +0.0412886 0.0858436 -0.00978207 +-0.0434867 0.0959016 0.0426578 +-0.0685902 0.112767 0.0465657 +0.0446015 0.0889424 0.0221651 +0.0387218 0.0993392 0.0297824 +-0.0569101 0.0984236 -0.0203516 +0.0460228 0.0834207 0.0061859 +-0.0608711 0.101136 -0.0186334 +0.0198592 0.123572 0.0284223 +-0.0670185 0.155095 -0.00202392 +0.00194178 0.0353485 0.0200578 +-0.0202225 0.0381837 0.0220241 +0.0372544 0.111046 0.00772111 +-0.0226761 0.0552382 -0.0304344 +-0.0500773 0.15315 -0.00486218 +0.0361622 0.075448 0.0382492 +0.00638813 0.0448624 -0.0253374 +0.0240783 0.123806 0.00430528 +-0.0874625 0.123933 -0.000723767 +0.0191746 0.064523 0.0487473 +-0.0528554 0.116872 0.0339893 +0.0012658 0.0697321 -0.0339789 +0.0363552 0.112269 0.0088181 +-0.0336364 0.0836212 -0.0255231 +0.0394621 0.0820907 0.0342997 +-0.0759857 0.112794 0.0483899 +0.042364 0.0505846 -0.00668018 +-0.0878291 0.0895228 0.0236162 +-0.0717396 0.156144 0.0122972 +-0.0118777 0.107304 -0.0220947 +-0.0518036 0.0898543 -0.0220029 +-0.0605307 0.142151 -0.00455603 +-0.00730388 0.0394625 0.048838 +-0.0695099 0.151355 -0.0447129 +0.0461391 0.0820336 0.0131698 +-0.0680095 0.151244 0.0371953 +-0.0696447 0.155522 0.00577511 +0.0106458 0.0343542 -0.00488721 +-0.0717447 0.165221 -0.0449739 +0.00872274 0.0346011 0.0383625 +-0.0601559 0.0472008 0.00728305 +-0.072526 0.149972 -0.0424686 +-0.0921507 0.129567 0.0102504 +-0.0195451 0.0382679 0.00943 +0.017351 0.0351839 -0.014686 +0.026638 0.0619848 -0.0226053 +-0.0779425 0.0757661 -0.00656744 +0.0456648 0.0834028 0.0181693 +-0.00238392 0.0391586 -0.00815532 +-0.0760947 0.171183 -0.0343205 +-0.037685 0.127343 0.0163262 +0.0200653 0.084847 0.0502217 +-0.0576821 0.0438911 0.0236882 +-0.00181158 0.0365903 0.0109133 +-0.0227414 0.0640418 -0.0345473 +-0.0607804 0.0397294 0.0180031 +0.00451899 0.0966593 -0.0283637 +-0.00904759 0.0994069 0.0493883 +0.036694 0.0368281 0.0111245 +-0.0476151 0.0378648 -0.0125385 +-0.0374934 0.0620193 0.0412021 +-0.0678369 0.0706443 0.0351197 +0.0262359 0.122255 0.0222063 +-0.0258834 0.0347926 0.045205 +-0.0730191 0.0808411 -0.0145801 +0.0272041 0.0968528 0.0430049 +-0.0387216 0.0710357 -0.0169218 +-0.0802983 0.0953773 0.0342868 +-0.0928216 0.122866 0.0342742 +0.0288283 0.120572 0.00606361 +-0.0872644 0.139206 0.0412952 +-0.0528885 0.108408 -0.0187758 +-0.0614742 0.149784 0.0364078 +-0.0888928 0.113895 0.0428033 +0.0133289 0.0681229 -0.0310343 +-0.000536732 0.10034 0.0474846 +0.0582707 0.0579579 0.00417743 +-0.0896629 0.124003 0.00427429 +-0.0333755 0.0483636 -0.0203394 +-0.0335104 0.169764 -0.00293532 +-0.0488446 0.119728 0.0310062 +0.0426741 0.0972641 0.0231497 +-0.0441044 0.0451364 -0.0122986 +-0.059855 0.0594826 0.0200848 +0.0270691 0.0942437 0.0445649 +-0.0896385 0.0969877 0.0134181 +-0.0456599 0.0636306 -0.0135866 +0.0575548 0.053733 0.00618309 +-0.054499 0.0776179 0.0432703 +0.0434163 0.0464179 0.0294988 +-0.0134899 0.0951663 0.0534531 +0.0324423 0.0754774 0.0416539 +-0.0117218 0.0382705 0.0200729 +-0.0308456 0.0396262 0.0517145 +0.0564645 0.0594668 0.0252844 +-0.0475135 0.0491287 0.0385522 +-0.0396908 0.0651397 -0.0142325 +0.0201781 0.0351992 0.0293411 +-0.0219159 0.175693 -0.0142737 +-0.0688718 0.063973 0.0231175 +0.0174279 0.12392 0.0289777 +-0.0699032 0.0687756 0.0310328 +-0.0528961 0.143026 -0.000455911 +-0.0475121 0.0438565 0.0432608 +-0.0275879 0.0384125 -0.00879832 +0.0421339 0.102871 0.00816377 +0.0276939 0.085014 -0.0220629 +-0.0593718 0.0422854 0.0165091 +0.0245725 0.122909 0.0244414 +0.00141552 0.0990584 0.0500955 +-0.0208664 0.103024 -0.023442 +-0.04595 0.0351008 -0.0224117 +0.0425933 0.066459 0.0273252 +-0.085327 0.0926016 -0.00256332 +-0.0496528 0.0345916 0.0385506 +-0.023191 0.178657 -0.0125853 +-0.0179257 0.0971306 -0.0269629 +0.0383787 0.0575308 -0.00558257 +-0.0190955 0.0939751 -0.033709 +-0.0659978 0.135528 -0.00820667 +-0.0379695 0.0348544 -0.0150276 +0.0231948 0.0344554 0.00500709 +-0.0577114 0.148197 0.0324041 +0.0473189 0.0638822 -0.00202275 +-0.091122 0.115466 0.0410527 +-0.0499316 0.141822 0.00385784 +-0.0663647 0.0360087 0.0372253 +-0.0453211 0.0345932 0.035979 +-0.00367712 0.0569332 -0.0329252 +-0.0883137 0.103697 0.0153744 +0.0333218 0.0981688 0.0378146 +0.0206459 0.0429683 -0.0197059 +-0.0718069 0.0887788 0.0415418 +-0.050581 0.0445938 -0.00942218 +-0.0589701 0.121961 -0.00876657 +-0.0786152 0.163841 -0.0309629 +-0.0919702 0.114664 0.0123319 +-0.0387263 0.127561 -0.000266265 +0.0573405 0.0635192 0.0248021 +-0.0778913 0.126656 -0.00702073 +-0.0685283 0.0434892 0.00727271 +-0.0779351 0.161108 -0.0209335 +-0.0892037 0.0956419 0.0194144 +-0.091675 0.147474 0.0191435 +0.00817319 0.0832888 0.0558122 +-0.051142 0.0627417 0.0330975 +0.00546913 0.116627 -0.0176566 +-0.0278605 0.124718 0.0184442 +-0.0689992 0.150311 0.0384044 +-0.0690062 0.162382 -0.0519693 +-0.00661995 0.130084 0.0216557 +0.0403849 0.0533789 -0.00673496 +0.0156377 0.0348863 0.0377268 +0.0577131 0.0523367 0.00917793 +-0.00120988 0.105335 0.044053 +-0.00579434 0.0351694 0.0474261 +0.0411666 0.0833385 0.031438 +-0.0325019 0.0988116 0.0438807 +0.00307304 0.124054 -0.00961404 +-0.0350636 0.0383682 -0.0121121 +-0.073931 0.128192 -0.0084465 +0.015055 0.123588 -0.00721903 +0.0455542 0.0875891 0.00417683 +-0.006733 0.0684593 -0.0359965 +0.00394905 0.100531 -0.0224465 +-0.0399008 0.128531 0.0110866 +-0.0778707 0.177255 -0.0480374 +-0.0310993 0.177108 -0.0141677 +-0.0307989 0.0833965 -0.031578 +0.00828982 0.0846467 0.0559983 +-0.0926147 0.121379 0.00928006 +-0.0309131 0.0848198 -0.0305724 +-0.0610919 0.155915 0.0160896 +0.0269409 0.117743 0.0296345 +-0.029909 0.0904807 -0.0265953 +0.0341142 0.0605859 0.0386759 +0.04958 0.0652138 -0.00133913 +-0.0406916 0.0651596 -0.014333 +-0.0186192 0.0393436 -0.0280481 +-0.0321414 0.16968 -0.0161315 +-0.0303394 0.0344325 -0.0205625 +-0.0749113 0.125246 -0.00804661 +0.0179783 0.035483 -0.0126728 +-0.0572916 0.0479655 -0.00237378 +-0.030388 0.0876244 -0.0295653 +-0.00273996 0.130454 0.0216129 +-0.0785777 0.0907895 -0.0106208 +-0.0237519 0.0683934 -0.0360687 +0.0305158 0.11943 0.00953878 +0.0436886 0.0777182 0.0262206 +-0.00223658 0.0383059 0.0473338 +-0.0174973 0.104415 0.0431217 +0.045327 0.0519476 -0.00589943 +-0.022701 0.0611501 -0.0334866 +-0.0334865 0.126881 0.00753677 +0.0458812 0.084809 0.00618736 +-0.0775185 0.147451 0.0411778 +-0.00849166 0.110041 0.0429425 +-0.00827497 0.0389568 -0.00728452 +-0.0154767 0.0545272 0.0507241 +0.0455115 0.0861913 0.0171661 +-0.0286176 0.124173 0.0196508 +-0.0903937 0.142028 0.0281621 +-0.00750142 0.0590729 0.0550185 +-0.0691508 0.152358 -0.047074 +-0.00484252 0.0384695 0.0194856 +-0.00149467 0.116953 0.0400314 +-0.0148242 0.128616 0.018702 +-0.00749757 0.0939067 0.0556187 +0.031866 0.115189 -0.00211013 +-0.0515259 0.0439564 0.0445165 +-0.0773104 0.159761 -0.0159076 +0.0205013 0.108449 0.0395681 +-0.0648774 0.159303 -0.0143091 +0.0267364 0.0606633 -0.022785 +0.00150878 0.0883997 0.0564367 +-0.0659091 0.06022 0.0163937 +-0.0625921 0.1213 0.0447428 +-0.0789765 0.135392 -0.00472816 +-0.0709567 0.0767623 0.0380194 +-0.0506142 0.0560954 -0.00917258 +-0.0707687 0.155356 -0.0469258 +-0.0675837 0.112197 0.043642 +-0.0159686 0.128428 0.0182857 +-0.0564715 0.132545 0.0359114 +-0.044247 0.157947 0.00609665 +-0.011089 0.038804 -0.005846 +-0.0380666 0.0385186 -0.00730796 +0.0253529 0.0520143 0.0399629 +0.00465347 0.0341223 0.0126365 +-0.0905147 0.136459 0.016202 +-0.0184793 0.0336465 -0.023124 +0.0165026 0.118175 0.0355154 +0.0109305 0.0685438 0.0544088 +-0.00849797 0.0952525 0.0545557 +-0.050269 0.11691 0.032477 +-0.0301947 0.125922 0.0102205 +-0.0914405 0.117414 0.0273008 +-0.0231534 0.0352107 0.0523184 +-0.0922901 0.125582 0.0342578 +-0.0703512 0.170836 -0.0520339 +-0.0881528 0.129472 0.0022725 +-0.0125497 0.0445369 0.0499253 +0.0104221 0.127848 0.0278469 +-0.0114754 0.0546403 0.0519269 +-0.0665146 0.16661 -0.0580261 +-0.0384984 0.169734 0.00180247 +0.0290438 0.0509642 -0.0167532 +0.0292682 0.0673021 0.0422638 +-0.0643695 0.149877 -0.0298747 +-0.0741326 0.180484 -0.0536706 +-0.0484658 0.144752 0.00741107 +0.02369 0.10485 -0.01704 +0.0383652 0.101327 -0.00724085 +-0.0516205 0.0604369 -0.00991236 +-0.0080847 0.125292 0.0313586 +-0.0117515 0.0714338 -0.0381291 +-0.0358096 0.12684 0.0170169 +-0.0620073 0.155313 -0.0175819 +-0.0861256 0.0937891 0.0274526 +-0.0627193 0.152197 -0.01058 +0.0557633 0.0538969 0.024211 +-0.0501537 0.152144 0.0115744 +-0.0504041 0.0345678 0.0349233 +-0.0622094 0.0655019 0.0319825 +-0.0630381 0.154049 0.0314099 +-0.0864944 0.112209 0.0250023 +-0.0765838 0.178662 -0.0494737 +-0.0880478 0.0908955 0.0237752 +-0.0540202 0.0513732 0.0109294 +0.0220807 0.125732 0.0192313 +0.000503516 0.0856702 0.0573793 +-0.0624013 0.116928 0.041368 +-0.0687693 0.0793684 -0.0165822 +0.0312024 0.114939 -0.00384217 +0.0394926 0.052754 0.032086 +-0.076502 0.12459 0.0526576 +0.0461265 0.0736153 0.00421619 +0.0493794 0.0453908 0.0224152 +0.0422961 0.0655994 0.0276352 +0.0444235 0.0917457 0.0211574 +-0.04812 0.128214 0.028687 +-0.0256026 0.0837946 0.0522209 +-0.00959872 0.0391743 -0.0260833 +0.0242446 0.0762105 -0.0254816 +-0.050147 0.145259 -0.000515581 +-0.0729617 0.136954 -0.00717713 +-0.0321019 0.119786 0.0288381 +-0.0723819 0.152607 -0.0408904 +0.0595077 0.0567056 0.0171693 +-0.0647247 0.16489 -0.0257757 +0.0214018 0.0473917 -0.0206345 +-0.0652965 0.147932 -0.0271042 +0.0404164 0.0647148 -0.00677085 +-0.0440757 0.0335994 -0.0169421 +-0.0658186 0.154852 0.00425231 +-0.0457713 0.156483 0.00739285 +-0.0550494 0.0577849 0.0202145 +-0.0233757 0.163881 -0.00766181 +-0.0658954 0.166616 -0.0590008 +0.0309109 0.0511672 -0.0117352 +0.0380176 0.101228 -0.00786632 +0.0272437 0.0732614 -0.0238068 +-0.0161865 0.0377383 0.0516902 +-0.051271 0.0356477 0.0458842 +-0.0184884 0.107161 0.042158 +0.0143121 0.0753991 0.0540935 +0.012486 0.0990688 0.0481132 +-0.069936 0.13258 -0.0084535 +-0.0324718 0.0546382 0.0373194 +-0.0637186 0.179242 -0.0585917 +-0.0560047 0.159776 0.00109778 +-0.0940215 0.120122 0.0233001 +-0.0734929 0.154069 -0.0299022 +0.0334431 0.0930091 -0.0164312 +-0.0568079 0.0869026 -0.0213473 +0.0600207 0.0595165 0.0181686 +-0.0282716 0.0376885 0.0226211 +-0.0608814 0.102587 -0.0185388 +-0.0689777 0.172299 -0.0388012 +-0.0333033 0.176609 -0.00426163 +-0.0726003 0.145757 -0.0168539 +-0.0351155 0.0460859 0.0430647 +-0.0668221 0.16563 -0.0222317 +0.0223344 0.0535713 -0.0254238 +-0.0555068 0.0341015 0.0254741 +0.0591828 0.0594427 0.0211715 +-0.076476 0.07597 0.0322323 +-0.0548438 0.043635 0.0177242 +-0.0545598 0.0616597 -0.0074577 +-0.0717138 0.073474 0.0353741 +-0.0123858 0.0383448 0.0108168 +-0.0878417 0.140531 0.0102059 +-0.0338438 0.0337316 0.012415 +-0.0362549 0.153841 -0.0082413 +-0.066147 0.0353356 0.0361254 +-0.0149468 0.125073 -0.0044168 +-0.0517378 0.0545135 0.0226244 +-0.0791517 0.0792478 0.0324066 +-0.0311673 0.0386498 -0.0134468 +-0.00138514 0.0391216 -0.00791905 +0.0249209 0.0782259 0.0483953 +-0.0288805 0.079237 0.0443379 +-0.0499299 0.0335056 -0.0106454 +0.000248169 0.0726618 -0.0353693 +-0.00679601 0.100851 0.0456503 +0.00749727 0.121002 0.0360768 +0.0281364 0.0448054 0.035097 +-0.0616338 0.0739295 0.0406212 +-0.0184922 0.11816 0.035496 +-0.0231843 0.0348489 0.0439808 +0.0524989 0.0718135 0.00595977 +-0.0114982 0.0943996 -0.0340943 +-0.0574587 0.045976 0.042703 +0.0272754 0.0703879 -0.0233186 +-0.0208041 0.127131 0.0063587 +-0.0449931 0.152736 -0.00651735 +-0.0154877 0.167822 -0.0210841 +-0.0738833 0.122317 -0.0079807 +0.0163998 0.0834424 0.0519345 +-0.0615988 0.156867 -0.0225865 +-0.0504372 0.0529682 0.0186225 +-0.0607622 0.0781498 -0.0187637 +-0.0208042 0.125974 0.0209606 +-0.0245306 0.112636 0.0373469 +-0.030708 0.121227 -0.00820323 +-0.0511359 0.0502476 0.0206335 +-0.0384993 0.0733372 0.0420402 +-0.0588719 0.102608 -0.018764 +-0.0774969 0.130279 0.0531227 +-0.0375712 0.124334 -0.00748059 +-0.0119956 0.0882297 -0.0377812 +0.0547499 0.0492946 0.00521444 +0.017211 0.088423 -0.0276786 +0.0381646 0.0644978 -0.0107883 +-0.04783 0.0927226 -0.0216222 +-0.0132756 0.0597275 0.0533794 +-0.00158335 0.0361983 -0.0246741 +-0.0612049 0.174131 -0.0607222 +-0.0655175 0.0356165 -0.00754656 +-0.0874441 0.0860134 0.00347726 +-0.00749507 0.10164 0.0441128 +-0.0175041 0.0382782 0.00983265 +0.00351386 0.100332 0.0462561 +0.0252498 0.0645397 -0.0230446 +-0.0717344 0.131221 0.0507858 +0.0525721 0.0648669 -0.000960413 +-0.0901978 0.11358 0.0212183 +-0.0560194 0.129616 -0.00591188 +0.0441279 0.0748554 -0.00179683 +-0.0307721 0.0349136 0.04922 +-0.0554801 0.0452738 0.0437595 +0.000511374 0.0503823 0.0524384 +0.0295573 0.0375392 0.0237122 +-0.00766545 0.0541253 -0.0331554 +-0.0226026 0.0379508 -0.0287016 +-0.0187506 0.162746 -0.0157051 +0.0546767 0.0732977 0.0167178 +0.042064 0.10006 0.0201605 +-0.0889838 0.099691 0.0193911 +-0.0644638 0.129733 0.0437115 +-0.043484 0.0987241 0.0424341 +-0.0252565 0.120536 -0.00953586 +-0.0159529 0.0390542 0.0365141 +-0.0915486 0.143335 0.0161726 +-0.0405267 0.169768 0.0017705 +-0.0726712 0.0651053 0.0195713 +-0.0132255 0.182074 -0.023933 +-0.0456018 0.0629458 0.0388902 +0.0287985 0.0385521 0.0262584 +0.0314095 0.0695437 -0.0187779 +-0.0625738 0.156865 -0.0165766 +0.0106756 0.0489592 0.0485841 +-0.0781956 0.163891 -0.0259488 +0.0262919 0.101687 -0.017683 +-0.0681573 0.180556 -0.0543707 +-0.0464942 0.100125 0.0422537 +-0.0294775 0.17726 -0.00505881 +0.00976325 0.0346476 0.0385339 +0.0351088 0.100136 -0.012024 +0.0398312 0.0992984 0.027798 +-0.0544975 0.080589 0.0448325 +-0.0251898 0.177123 -0.0193397 +-0.00463984 0.12746 -0.00519523 +0.0365694 0.109049 0.0260841 +-0.062967 0.159919 -0.044604 +0.0156331 0.0915267 -0.0269033 +-0.0577811 0.0472143 0.0403119 +-0.086179 0.107645 0.0083646 +-0.00357674 0.0347286 -0.0239915 +-0.0205507 0.066817 0.0505282 +-0.0590047 0.132542 0.0375172 +0.00657766 0.034511 0.0217547 +-0.0730595 0.110042 0.0423406 +-0.0725117 0.163674 -0.014076 +-0.0130193 0.115677 -0.016537 +0.0190348 0.0768352 0.0521916 +0.00221518 0.114462 -0.0193126 +-0.0142885 0.0390252 0.0350884 +-0.0492809 0.152135 0.0110836 +0.0378754 0.0980648 0.0320906 +-0.0377624 0.0420706 0.0430123 +0.00890997 0.125517 0.0316176 +0.00478616 0.0342999 0.00145343 +-0.0220536 0.0952953 -0.0290683 +-0.0883767 0.125344 0.00127971 +-0.055499 0.0761852 0.0427309 +-0.0505039 0.0487703 0.0186583 +0.0374548 0.0781001 0.0366194 +0.00520505 0.129939 3.61829e-05 +-0.0464525 0.146291 0.00643191 +-0.0545162 0.049049 -0.0054035 +-0.0209524 0.0920017 0.0529687 +-0.0534945 0.105667 0.0403502 +-0.0355002 0.174151 -0.00180627 +-0.0654804 0.146553 -0.0219125 +-0.0577458 0.131139 0.0375772 +0.0440584 0.0860884 0.0251529 +0.0484396 0.0486951 -0.00266239 +-0.0510317 0.0544187 0.0196187 +-0.0305049 0.0720397 -0.0305133 +-0.0513349 0.057067 0.0306313 +-0.0444577 0.123407 -0.0104693 +-0.0404418 0.0351129 -0.0289386 +-0.0611441 0.169381 -0.0576009 +-0.0704838 0.120388 0.0533274 +0.00150053 0.0591133 0.0550768 +-0.0504978 0.159322 0.00851944 +-0.0127755 0.126776 0.0267341 +0.00508634 0.0345614 -0.0155701 +-0.0433649 0.150829 -0.00565896 +-0.0276025 0.0888516 -0.0335952 +-0.0536948 0.0661603 -0.0107375 +0.0453129 0.0698237 0.023466 +-0.0407211 0.150643 0.00408479 +0.0111265 0.120476 0.0355761 +0.000791005 0.0398223 0.046536 +0.0460187 0.0482649 0.029417 +-0.0748889 0.119375 -0.00765967 +0.0240318 0.0591603 0.0451764 +0.0102193 0.129407 0.000604352 +-0.0662744 0.179701 -0.0600508 +-0.0165098 0.0772307 0.0561424 +0.0294369 0.0781918 0.0443709 +-0.0510278 0.0474301 0.0166894 +-0.0808293 0.0720933 0.0155437 +0.0139163 0.0953242 -0.0249235 +-0.0756827 0.0823892 -0.0125945 +0.00119778 0.0825383 -0.0355009 +-0.0614832 0.0775692 0.0421583 +-0.0816839 0.0830971 0.0318157 +-0.0257584 0.0736396 0.0456283 +0.0071927 0.124822 -0.00847934 +-0.0749667 0.0683767 0.0215337 +-0.0415307 0.127763 -0.00103989 +0.0217652 0.0862022 0.0491664 +-0.0758742 0.102063 -0.0106997 +0.00933423 0.0567711 -0.0303022 +-0.010684 0.0584354 -0.034314 +-0.0126507 0.0350556 0.0425263 +0.0424994 0.0597124 0.0306347 +-0.0147222 0.0643235 -0.037347 +0.0579415 0.0716454 0.0119821 +-0.000418875 0.0389219 -0.0131688 +-0.0480228 0.144604 0.00545108 +-0.0124881 0.120998 0.0354929 +-0.0941295 0.121483 0.024294 +0.0533093 0.0573451 -0.00263239 +-0.0426699 0.0336999 -0.0149012 +-0.0466248 0.0577591 -0.0115398 +-0.0628785 0.0393963 0.0426563 +-0.072166 0.063706 0.0120556 +-0.0912059 0.14882 0.0151457 +-0.033491 0.0904012 0.0444067 +0.0152459 0.0821521 -0.0296185 +-0.0608506 0.0333964 -0.00541551 +0.0483298 0.0694277 0.0246416 +-0.0144087 0.0383376 0.0158464 +-0.00316996 0.131012 0.0171239 +0.0247594 0.0929114 0.046503 +-0.0615203 0.153356 0.00130737 +-0.0618578 0.099667 -0.0183374 +0.0303629 0.0483136 -0.00765132 +0.00253507 0.0394917 0.0345311 +-0.0713444 0.144531 -0.0156116 +-0.0188175 0.159674 -0.00630165 +-0.0174928 0.111329 0.0404434 +-0.0425002 0.0437706 0.0420539 +0.038489 0.0484512 0.0319961 +-0.011814 0.163592 -0.0157611 +-0.0526941 0.0334208 -0.00928256 +-0.0613494 0.131082 0.0393909 +-0.0276253 0.0450182 -0.0280952 +-0.0449077 0.159414 0.00690868 +0.00747686 0.0474111 0.0493962 +-0.0535025 0.0917839 0.0444757 +0.0372578 0.0658262 -0.0127785 +-0.0616099 0.158421 -0.0325909 +-0.0443417 0.035118 -0.0243716 +0.0228959 0.0358901 0.0147404 +-0.0312846 0.119331 0.0291556 +-0.0748251 0.0906869 -0.0145799 +-0.0607901 0.0839118 -0.0197808 +-0.060035 0.0645406 0.0315175 +-0.0506187 0.0531538 -0.00831388 +0.0189959 0.104672 0.0434338 +-0.0328687 0.10291 -0.0220775 +0.0293781 0.0721886 -0.0217847 +0.0490097 0.0482239 0.0267018 +-0.00202044 0.0386496 0.0235231 +0.00793635 0.0980328 -0.0238123 +-0.0353308 0.0347033 0.016646 +0.00129902 0.039118 0.0292011 +0.0433693 0.0561672 -0.00598915 +0.0455002 0.059749 0.0314265 +-0.0891212 0.0888935 0.0154552 +-0.00853579 0.044404 0.0484956 +0.0227707 0.10612 -0.0163977 +-0.0830074 0.117688 0.0489709 +-0.0652397 0.150467 -0.0337229 +-0.0787271 0.0954037 0.0355432 +0.0320582 0.11345 0.0286813 +-0.0641355 0.160881 -0.0576174 +0.0459242 0.0806108 0.00418728 +0.0093871 0.0434015 -0.0246765 +-0.0501776 0.124028 0.032677 +-0.0486159 0.0547593 -0.0100622 +0.000494108 0.118289 0.0391022 +-0.0267825 0.0768545 -0.0363352 +0.039504 0.0914002 0.0327084 +0.0495572 0.0525985 0.0293193 +-0.0221892 0.177131 -0.0213718 +0.00724524 0.0369774 0.0269173 +0.0174748 0.0934539 0.0481542 +-0.021119 0.180019 -0.0220004 +-0.0938873 0.12827 0.0192438 +-0.0558806 0.138039 -0.00386657 +-0.0754975 0.123189 0.0531282 +-0.0682563 0.169911 -0.0313673 +0.00486454 0.131282 0.0057704 +-0.0544491 0.156028 0.0112408 +0.0259161 0.0713197 0.0444841 +-0.0205993 0.0408181 -0.0286892 +0.0326751 0.0902947 0.0421046 +0.0303546 0.107428 0.0353018 +-0.043641 0.0451148 -0.0133235 +0.0453399 0.0504735 -0.00539794 +-0.0640884 0.160897 -0.0576117 +-0.015926 0.178652 -0.0196554 +0.0285634 0.0463012 0.0357516 +-0.00467538 0.0353718 0.0474871 +0.00649755 0.131366 0.0177838 +-0.0721007 0.175064 -0.0530188 +-0.0454824 0.0959409 0.0431744 +-0.0892808 0.0888643 0.0124572 +0.00219675 0.0376886 0.0234384 +-0.0084105 0.095275 -0.0329664 +-0.0384962 0.11803 0.0312871 +-0.0451864 0.146266 0.00463419 +-0.0870838 0.0846865 0.0114769 +-0.0855325 0.107606 0.0053458 +-0.0457969 0.126831 -0.00605616 +-0.0164306 0.0384009 0.00449856 +-0.0355073 0.0662414 0.0411418 +0.0174851 0.0852069 0.0507856 +0.0160687 0.122524 -0.00804645 +-0.0586545 0.152137 0.0330321 +-0.0294308 0.0847062 -0.0336139 +-0.0725432 0.15415 0.0310449 +0.0567814 0.0724634 0.0130365 +0.0378457 0.0726607 0.0353699 +0.00540963 0.0375924 -0.0240752 +-0.0555707 0.033544 0.017104 +0.0295902 0.119982 0.0063504 +0.0197767 0.104476 -0.0186365 +-0.0484985 0.160789 0.00748776 +-0.0928176 0.120043 0.0102955 +-0.0427809 0.0464775 -0.012357 +-0.0285046 0.0645461 0.0380462 +0.00349921 0.126284 0.0311054 +-0.0670064 0.156281 0.0226936 +-0.0656496 0.0339611 -0.00733584 +-0.00649844 0.0814993 0.0573243 +0.0421622 0.0427592 0.0252421 +-0.0873651 0.0927561 0.00443631 +-0.00151033 0.108645 0.043169 +-0.0908157 0.116185 0.0427025 +0.0200734 0.0372985 0.0402199 +-0.062954 0.125297 -0.00870732 +-0.0633546 0.0720236 0.0383997 +-0.0691914 0.171601 -0.0360136 +-0.0688255 0.0937312 -0.0163709 +-0.0485029 0.112572 0.035725 +-0.00574267 0.0339825 -0.0190499 +-0.0604857 0.094604 0.0446906 +-0.0257335 0.166803 -0.00931015 +-0.0159771 0.186924 -0.0221541 +0.0463322 0.0743214 0.0180018 +0.0030519 0.130996 0.00365966 +-0.0421665 0.16366 -0.0107342 +-0.0225871 0.168294 -0.0117855 +-0.0484917 0.0718083 0.0405326 +0.0122698 0.0710113 -0.031719 +-0.0857101 0.0869161 0.0258492 +-0.0715046 0.0901731 0.0417302 +-0.0699133 0.123828 -0.00875488 +0.0279019 0.110786 -0.0114065 +-0.0354864 0.12379 0.0245568 +0.0305321 0.081181 -0.0200863 +0.0102651 0.128706 0.0263309 +0.0148603 0.0562539 0.0494599 +-0.0366932 0.0665933 -0.0149481 +0.041469 0.0711384 0.0300167 +-0.0554857 0.0834027 0.0450839 +-0.0113051 0.0389162 -0.0134542 +-0.0701665 0.143936 0.0443089 +0.0424986 0.0527982 0.0326152 +0.0132 0.115178 -0.01612 +-0.0566151 0.0335713 0.0115144 +-0.0746759 0.158036 -0.00628607 +-0.0710897 0.0678996 0.0280309 +-0.0684162 0.160948 -0.0539628 +-0.0788405 0.11444 0.0481937 +0.0425653 0.0859482 -0.00679004 +0.00508264 0.128731 0.0273249 +-0.0460392 0.132757 0.0146796 +-0.0644245 0.0335892 0.00631261 +-0.0779562 0.0727271 0.0259414 +-0.0320811 0.1577 -0.0118106 +-0.08561 0.123026 0.0486561 +-0.0183468 0.0445922 0.0521871 +-0.0646788 0.0378404 0.0247428 +-0.09254 0.118824 0.0413658 +0.0439353 0.0973509 0.0141605 +-0.0925657 0.116008 0.0123183 +-0.00476329 0.0770151 -0.03731 +-0.0647922 0.176686 -0.0531637 +-0.0267774 0.122204 0.0247423 +-0.0331437 0.169673 -0.0156322 +-0.0663865 0.0388997 0.0348294 +0.0255945 0.0477251 0.0385093 +0.0336609 0.0968599 0.0382997 +-0.0916539 0.147467 0.0181472 +-0.0336992 0.0435791 0.0473765 +-0.0785063 0.162438 -0.0279579 +-0.0756712 0.0759423 -0.00884701 +-0.0623186 0.155306 -0.0155862 +-0.0754942 0.124603 0.052984 +-0.0710841 0.0626658 0.0113319 +-0.0214966 0.101664 0.0441706 +0.0325091 0.0454335 0.0302933 +0.023348 0.0930459 -0.0224955 +-0.0477168 0.123954 0.0291105 +0.026559 0.119879 -0.0019388 +-0.0671262 0.150692 -0.0396095 +-0.054551 0.0416447 -0.00949548 +-0.0689 0.115705 0.0512836 +0.0420833 0.0409609 0.00227771 +0.021477 0.0961774 0.0469631 +-0.0517663 0.0812234 -0.0211522 +0.0324154 0.0541402 -0.0117355 +-0.0283184 0.0383801 -0.00152859 +-0.0454995 0.122409 -0.0114255 +-0.0786209 0.174303 -0.0444916 +-0.0570614 0.151623 -0.00120922 +0.0242791 0.118022 0.0317589 +-0.0639993 0.0370815 0.0170442 +-0.0395018 0.0733502 0.0421461 +-0.0174724 0.0388154 -0.0145918 +-0.0829949 0.115554 0.048125 +-0.0155328 0.0386551 0.0297691 +-0.00449743 0.110031 0.0429169 +-0.062341 0.164692 -0.0435908 +-0.016985 0.0384848 0.0278228 +0.0153998 0.109294 -0.0177665 +-0.0121134 0.0347053 0.046472 +0.0238752 0.0421864 0.0394869 +-0.0510476 0.139892 0.00172061 +-0.073661 0.147179 -0.0178577 +-0.0673436 0.155169 0.0284164 +-0.0375089 0.0790164 0.0426336 +-0.0881282 0.0888644 0.0224361 +-0.0165385 0.0459978 0.0505746 +0.0187298 0.0489829 0.0426596 +0.00514365 0.0400743 0.045751 +-0.0405081 0.080404 0.0427771 +-0.0559081 0.112628 -0.0165116 +-0.0414824 0.100082 0.0415393 +0.0326734 0.101648 -0.0136311 +0.0591059 0.0677548 0.00712748 +-0.00525238 0.0350087 0.0405181 +0.0272291 0.0788716 -0.0231926 +0.0526679 0.0554283 0.0285725 +-0.074839 0.15964 -0.0289433 +-0.0475589 0.0335011 0.00261705 +0.0224079 0.0809035 0.0500644 +-0.0774544 0.072993 0.0275707 +-0.0817516 0.140386 -0.000790241 +-0.0203273 0.127615 0.0123404 +-0.0570931 0.0535244 0.00162534 +-0.0775213 0.124569 0.0523637 +-0.0267733 0.15662 -0.0020223 +-0.0341168 0.0383136 -0.000825234 +-0.0926373 0.122856 0.0322729 +0.00549857 0.09243 0.054294 +0.0202616 0.0749268 -0.0272874 +0.0133552 0.13008 0.0103074 +0.0423653 0.0519948 -0.00681796 +-0.0627003 0.150649 -0.00857321 +0.0200754 0.0713524 0.0501382 +-0.0182235 0.123174 0.0292543 +-0.0130686 0.183424 -0.0252779 +-0.0128628 0.0896836 -0.0372956 +-0.0301706 0.0421547 -0.0296993 +0.0403707 0.0444834 -0.00362771 +-0.0253772 0.0722169 0.0453002 +-0.0241328 0.0565311 0.0416958 +-0.0657729 0.0378142 0.038507 +-0.0475733 0.0504004 -0.00924022 +0.0347756 0.0548514 0.0342768 +-0.01273 0.098974 -0.0248693 +-0.0749897 0.139866 -0.00647617 +0.0541381 0.0477755 0.0182012 +0.026052 0.121668 0.00219807 +-0.0178133 0.0827451 -0.0392154 +-0.00506384 0.129812 0.0236663 +-0.0022335 0.116052 -0.016996 +0.0194826 0.0892535 0.0485994 +-0.00549695 0.108658 0.0435455 +0.0411799 0.0844321 -0.00979241 +-0.0546525 0.154186 0.0155249 +0.0209039 0.0386887 -0.00868617 +-0.0522987 0.0504261 0.0316576 +-0.00860205 0.0406149 -0.0260948 +-0.0064872 0.119657 0.0377321 +-0.0794636 0.141716 -0.00376694 +-0.0494618 0.0347575 0.043629 +-0.0282938 0.176171 -0.0172378 +-0.0337476 0.119587 0.029726 +-0.0548148 0.0883935 -0.0220325 +-0.0759162 0.179384 -0.0516058 +-0.0444968 0.0747696 0.0424527 +0.0361181 0.111694 0.0216233 +-0.0677747 0.0370061 0.0137537 +-0.0497774 0.0826759 -0.0213753 +0.0238372 0.12269 -3.58731e-05 +-0.0478227 0.148347 -0.00331487 +-0.00860618 0.0968801 -0.0306409 +-0.0545965 0.0575496 0.0196126 +-0.06512 0.0430832 -0.00329452 +-0.0719312 0.128266 -0.00893149 +-0.0409612 0.0344092 -0.00782476 +0.0534457 0.0510274 0.0243391 +0.0276856 0.0494518 -0.0176966 +-0.0336693 0.0607336 -0.0127906 +-0.0284587 0.0446173 0.0507119 +-0.0255118 0.0936195 -0.0293755 +-0.0717668 0.172238 -0.0510285 +-0.047089 0.156143 -0.00736831 +-0.0756553 0.0837701 -0.0135751 +-0.013224 0.172718 -0.0260103 +-0.0301691 0.174141 -0.0165339 +-0.00226303 0.0382357 0.0184109 +0.0412731 0.0417215 0.0241695 +-0.0559192 0.0335546 0.0152404 +0.0277966 0.12141 0.0199376 +-0.0649916 0.0659907 0.0309635 +-0.0512719 0.127504 -0.00467957 +0.0313718 0.118521 0.0155758 +-0.0621134 0.0350003 0.0423988 +0.00602626 0.127371 -0.00517179 +-0.0500909 0.0358963 0.0459805 +-0.0852266 0.0854944 0.0253873 +-0.0209874 0.04034 0.0536055 +-0.0719403 0.179282 -0.0559874 +-0.0521219 0.120842 -0.0117106 +0.0579437 0.0700837 0.0193768 +-0.0786649 0.0764169 0.0296559 +-0.0724896 0.12743 0.0524304 +0.0400371 0.107017 0.0091647 +-0.0677955 0.0355805 0.0137906 +-0.0212083 0.0825271 0.0563448 +0.0305816 0.112813 -0.00758269 +0.0546919 0.0524816 0.0244106 +0.000503407 0.0647904 0.0566018 +-0.0211614 0.183089 -0.0130948 +-0.0364897 0.0648519 0.0414613 +0.00739557 0.0347435 -0.0216037 +-0.091466 0.14613 0.0241501 +-0.0496442 0.0620141 -0.0117058 +-0.0844141 0.083121 -0.000497419 +0.00924009 0.0846665 0.0556174 +-0.00137013 0.0367929 0.00718583 +0.0499211 0.0443554 0.0178724 +-0.0257693 0.158564 -0.0117505 +-0.08951 0.140665 0.0311774 +0.0074706 0.129229 -0.00123166 +0.0318377 0.0822312 0.0425933 +0.0347555 0.0768972 -0.0157225 +-0.0103619 0.179472 -0.0295714 +0.0350602 0.0968439 0.0368099 +0.0192972 0.063662 -0.0278633 +-0.0758841 0.106327 -0.00893896 +0.0225495 0.119713 -0.00701355 +0.0522449 0.0480372 0.0225432 +-0.0142613 0.0350279 0.0492532 +0.0588535 0.0566417 0.00718098 +-0.0834209 0.0911774 0.0304851 +-0.0354827 0.0945899 0.0441989 +0.0491837 0.0442045 0.019604 +-0.0441515 0.0335185 0.00510187 +-0.0605024 0.111127 0.0368734 +-0.0368482 0.0336146 -0.0266993 +0.0043237 0.131753 0.0112849 +-0.0519904 0.135575 0.0286552 +-0.0628904 0.102548 -0.0180123 +-0.0194395 0.062521 0.0495605 +0.0173831 0.0447578 -0.0232543 +-0.0925995 0.118805 0.0322947 +0.00218481 0.0838969 -0.0348518 +0.0331279 0.0428909 0.0287274 +-0.0528013 0.0884055 -0.0219839 +0.0151848 0.115917 -0.0149184 +0.0567976 0.0508328 0.0181941 +-0.0621222 0.0345142 0.0394173 +-0.0642021 0.071089 0.0372614 +-0.0701839 0.0658802 0.0247105 +0.0178908 0.0563588 0.0485803 +0.0392199 0.073038 -0.0108301 +0.0263921 0.0549677 -0.020802 +-0.0858835 0.0833066 0.0204824 +-0.0812999 0.0747823 0.0185535 +0.0025057 0.0688921 0.0558596 +-0.0804035 0.0745659 0.0220984 +-0.0604943 0.0804378 0.0430854 +0.0220864 0.122759 -0.00230579 +0.0416849 0.100037 0.02216 +-0.0387577 0.150948 -0.00516845 +0.0420841 0.090131 -0.00780186 +0.0270265 0.12251 0.0139387 +-0.0715501 0.0763344 0.0374538 +-0.0885696 0.137819 0.0397738 +0.00156461 0.124373 0.0333352 +-0.00526883 0.0355403 -0.0166416 +-0.0769711 0.133968 -0.00621304 +-0.0750334 0.0851031 -0.01456 +-0.00549741 0.0675328 0.0561955 +0.00134414 0.0524973 -0.030237 +-0.0573916 0.0718042 0.0398933 +0.0283911 0.0672932 0.0427559 +-0.0910025 0.133774 0.0232232 +-0.0354998 0.17123 0.000174393 +0.0458285 0.0801218 0.0204223 +-0.0574741 0.0819362 0.0441691 +0.0510603 0.0729911 0.0094016 +-0.0363492 0.0338444 -0.0305686 +-0.024023 0.17718 -0.0120308 +-0.0625429 0.143922 0.0377415 +0.0323895 0.0490788 -0.00667281 +0.00525838 0.123196 -0.010701 +-0.0294162 0.0890096 -0.030595 +0.0479414 0.0588591 -0.00500215 +0.0158474 0.128954 0.00837281 +0.0170299 0.0590745 0.0491032 +0.0534095 0.0553934 0.0278769 +-0.0600285 0.134031 -0.00683616 +-0.0595027 0.0876292 0.04502 +-0.0323351 0.172733 -0.00297212 +-0.0374903 0.172653 -0.000576721 +0.00749482 0.0546914 0.0525351 +0.0383894 0.0519545 -0.00670373 +-0.0331162 0.0436399 0.0481995 +0.0444193 0.0734774 0.000193217 +-0.0392699 0.127033 -0.00231305 +-0.0377966 0.0870844 -0.0227292 +0.0398005 0.0712586 0.0329247 +0.0227875 0.0348957 0.00078699 +-0.0825515 0.0748682 0.00752949 +-0.0162407 0.125507 -0.00287714 +-0.0654856 0.0398574 0.0313799 +-0.0623389 0.163139 -0.0325913 +-0.0686122 0.0432054 0.00454593 +-0.0379623 0.174733 -0.00453553 +-0.0563002 0.154681 0.0207165 +-0.0455391 0.0396225 -0.0172907 +0.033177 0.0592197 0.0390624 +-0.030845 0.0944191 -0.0240931 +0.0149304 0.0913967 0.05159 +-0.0283564 0.125587 0.00796681 +-0.0364861 0.0547872 0.0389196 +-0.0284285 0.0821494 0.0466355 +-0.0626767 0.0346583 0.0408688 +0.0226817 0.0618915 0.0467691 +-0.00273397 0.0346073 0.0449802 +-0.0747362 0.0663817 0.0145125 +-0.0135041 0.11966 0.0364252 +-0.0466771 0.0355018 -0.0172702 +-0.0711048 0.153963 -0.0459144 +-0.0910141 0.11449 0.034742 +-0.0801763 0.0854684 -0.0085384 +-0.0199842 0.183117 -0.0149159 +-0.0705018 0.155741 0.00837641 +-0.0229946 0.0381678 0.00700416 +-0.0428236 0.0913841 -0.0227682 +-0.0679787 0.154919 -0.0513588 +-0.0787367 0.168047 -0.0389551 +-0.0308479 0.0972408 -0.0233409 +-0.0127769 0.0784711 -0.0383296 +-0.0528408 0.0970645 -0.0221327 +0.0578361 0.0662412 0.00314493 +0.0132266 0.0822053 -0.0304726 +-0.058487 0.113928 0.0361856 +-0.0609416 0.0341022 0.0225725 +0.0498583 0.0540108 0.0297623 +-0.00985903 0.128582 0.0248602 +0.0180859 0.068641 0.0507282 +-0.0275932 0.0779206 0.0459339 +-0.0474983 0.11254 0.0358059 +-0.00306313 0.0346488 0.0430839 +-0.0494839 0.141682 0.00839735 +-0.0444006 0.0337168 -0.00238543 +0.0222885 0.0564166 0.0461469 +0.00464996 0.0378242 0.0256263 +0.00823548 0.113838 -0.0186606 +-0.0404969 0.0634536 0.0414219 +0.0464934 0.0638096 0.0291729 +-0.0275092 0.181505 -0.00874152 +-0.0850366 0.134888 0.000298852 +-0.053967 0.0687802 0.0379578 +0.0458863 0.0820184 0.0171704 +-0.0630174 0.113067 -0.0134471 +0.0163641 0.0348027 -0.00791773 +-0.0668226 0.0923514 -0.017257 +-0.073517 0.104058 0.0373151 +-0.0520334 0.0346252 0.0362685 +0.00147793 0.131501 0.00880182 +-0.0874177 0.131128 0.0459004 +-0.0124954 0.103038 0.0437348 +-0.0148129 0.0841518 -0.0390669 +-0.061937 0.111099 -0.0150221 +0.0286115 0.078186 0.0449305 +-0.0884601 0.0976543 0.0226015 +-0.0196643 0.111086 -0.0196461 +-0.0196772 0.178663 -0.0162873 +-0.0220478 0.0811409 0.0558034 +0.00850296 0.118331 -0.0155001 +-0.0404972 0.0506061 0.0393715 +-0.0833705 0.0767799 0.0142875 +-0.085765 0.112351 0.0286477 +0.0363022 0.0619082 0.0365841 +-0.000508059 0.0576316 0.0544767 +-0.089275 0.0969971 0.0184044 +-0.0708142 0.0694524 -0.00574088 +-0.0186131 0.0378854 -0.0277917 +0.0283679 0.103615 -0.0157324 +-0.0354292 0.0472715 0.0405203 +-0.0748611 0.163212 -0.0154286 +-0.0862421 0.14327 0.00816028 +0.0357067 0.0981492 -0.0118335 +0.0223181 0.0592817 -0.0260832 +-0.0625553 0.041701 -0.00649092 +-0.0824187 0.100645 0.0306028 +-0.0598691 0.101152 -0.0187591 +-0.0309758 0.0383278 -0.0168292 +0.0239145 0.0835849 0.0487444 +-0.00271812 0.0380275 0.0166967 +-0.00631097 0.0354995 -0.0168068 +-0.0435801 0.0491173 -0.010788 +-0.0586891 0.065984 -0.0090861 +-0.072851 0.148958 0.0401319 +0.0442902 0.0875035 0.0241471 +-0.0155441 0.165408 -0.0121335 +-0.084276 0.107651 0.0243439 +-0.0705376 0.04043 0.00377428 +-0.0107227 0.165105 -0.0188107 +-0.0550975 0.13533 0.0326236 +-0.0735773 0.0648576 0.0107478 +-0.0227215 0.0797443 0.0551012 +-0.0404988 0.043751 0.0418177 +-0.0507215 0.132501 0.0301542 +-0.0728912 0.11354 -0.00756484 +0.00242535 0.0343652 0.00462872 +-0.0556704 0.0335434 0.000932366 +0.00528142 0.0509933 -0.0292119 +0.0213389 0.0621093 -0.0262711 +-0.0275166 0.0348502 0.0465557 +-0.0826299 0.110259 0.0284001 +-0.00850001 0.125156 0.0314578 +-0.0707102 0.149836 -0.0414255 +0.0204972 0.107072 0.0404393 +-0.0215031 0.108553 0.041118 +-0.0404837 0.0818282 0.0429123 +-0.0586314 0.0580318 0.0162523 +-0.0648762 0.109524 -0.0137682 +-0.0687139 0.0394283 -0.00171366 +0.00150188 0.0938741 0.0550191 +0.027072 0.122359 0.0168201 +-0.0275307 0.0918372 0.0449329 +-0.00320104 0.131164 0.014241 +0.00886384 0.130684 0.0200808 +0.0402562 0.0857576 -0.0117696 +-0.0823675 0.147331 0.00217458 +-0.082659 0.0776741 0.0225196 +-0.0388763 0.107081 -0.0200218 +0.0151073 0.108635 -0.0180644 +0.0460054 0.0746307 0.0193568 +-0.0735009 0.117559 0.0527975 +-0.0337749 0.0338108 0.0177666 +0.032372 0.116958 0.0202394 +-0.0763319 0.15494 -0.00387485 +-0.0687774 0.0837142 -0.0175822 +-0.010498 0.0517545 0.0512545 +0.0210632 0.038679 -0.00769573 +0.0140028 0.091392 0.0520062 +-0.0842337 0.150005 0.032317 +0.0332536 0.0916169 0.0411931 +-0.0394897 0.0874644 0.0433271 +0.0207921 0.106393 -0.0166835 +-0.0368012 0.111669 -0.0181954 +-0.0495137 0.0503617 0.0366255 +-0.0314035 0.121359 0.0260922 +-0.0745094 0.140045 0.0479791 +-0.020484 0.0842242 0.0566713 +-0.00549585 0.0911858 0.0567127 +-0.0870672 0.0882048 0.024333 +-0.0377523 0.0783086 -0.0194038 +0.0407806 0.0717592 -0.0087638 +0.00365619 0.131646 0.00960837 +-0.0157548 0.0714554 -0.0386719 +0.0597099 0.0650292 0.0201784 +-0.0675187 0.0874976 0.0437834 +0.0405833 0.0670896 0.0305002 +-0.0180479 0.0418467 0.0526068 +-0.0427079 0.151894 -0.00649313 +-0.0220141 0.0388944 0.0538623 +0.00616925 0.0895403 -0.0330971 +-0.0064158 0.0391939 0.0347568 +0.0557201 0.0581302 0.0259556 +0.0563341 0.0711373 0.00671617 +-0.0727258 0.157431 -0.00265266 +0.0125423 0.120941 -0.012332 +0.00414764 0.103055 -0.021794 +-0.029166 0.0762862 0.0418904 +-0.0268469 0.0423164 0.0533212 +-0.0621198 0.0344764 0.0202314 +-0.0618524 0.169383 -0.0535961 +0.0250825 0.10872 0.0381638 +-0.0908254 0.142021 0.0251655 +-0.046283 0.129949 0.00285861 +0.0179105 0.0350278 -0.0116533 +-0.0397746 0.0826803 -0.0210594 +-0.0651763 0.16954 -0.0402745 +-0.0621336 0.16002 -0.0235787 +-0.0355709 0.168274 -0.000671324 +-0.037536 0.159586 0.00182669 +-0.0681305 0.148403 -0.0333773 +-0.0364875 0.100095 0.0421869 +0.0545857 0.0608947 0.0278753 +0.0195769 0.0347391 0.0223805 +-0.0765172 0.154938 0.0266851 +0.0329357 0.0710876 -0.0177809 +-0.0434945 0.111176 0.0370674 +-0.0144911 0.124164 0.030554 +-0.0644813 0.157544 -0.049277 +0.0162463 0.0722881 -0.029887 +0.0292794 0.111414 0.0337321 +-0.0730559 0.14548 -0.015959 +-0.032702 0.0694797 -0.021456 +-0.0682487 0.153053 0.0340661 +-0.0810659 0.143393 0.0434586 +-0.0508913 0.0474088 0.0186488 +-0.041491 0.0832013 0.0425516 +-0.0689521 0.151509 0.0368557 +0.00620362 0.0387395 0.045605 +-0.0437238 0.0739429 -0.018203 +-0.0589977 0.125247 -0.00779139 +0.0113495 0.0553023 -0.0296776 +-0.0665061 0.0972756 0.0420058 +0.00151221 0.0828796 0.0573767 +-0.000819486 0.131234 0.00795191 +0.0463579 0.0575632 -0.00556359 +-0.0223022 0.165377 -0.00961273 +0.0177451 0.0379283 0.0429098 +-0.0914397 0.143364 0.0211639 +-0.0366139 0.0493085 -0.0123994 +-0.0374871 0.0576725 0.0398228 +-0.0252778 0.0383536 -0.00088571 +-0.0593549 0.0410534 0.0179552 +-0.0667502 0.0337781 -0.00695475 +-0.0206534 0.0391059 0.0372895 +-0.0144184 0.0997913 0.0448499 +-0.0451841 0.16983 -0.00497124 +-0.017913 0.184413 -0.0239895 +-0.0265191 0.0388768 0.0380618 +-0.0908997 0.126938 0.0424248 +-0.000826517 0.0853922 -0.0362438 +-0.0534467 0.125409 -0.00644153 +-0.0368662 0.104233 -0.0205194 +-0.02728 0.181917 -0.0121056 +-0.0487731 0.0349958 0.0444688 +-0.0894993 0.135155 0.0302067 +0.0152294 0.0345961 -0.00794828 +-0.0135581 0.166929 -0.0145181 +-0.00316211 0.129199 -0.00103699 +0.0125106 0.108449 0.040622 +0.0494051 0.0734301 0.0147277 +-0.0427147 0.0710705 -0.0176966 +-0.0505553 0.136728 0.0232523 +-0.055076 0.154226 0.0167194 +-0.0598887 0.10828 -0.0169771 +-0.00348603 0.0489394 0.050606 +-0.0325038 0.107028 0.0393329 +-0.0558273 0.114722 -0.0152839 +-0.024429 0.062147 0.0418364 +0.0610039 0.0637491 0.0121545 +-0.0307981 0.0381678 0.00179566 +-0.0224893 0.0462052 0.0523041 +-0.0626699 0.13529 0.0374908 +-0.0871093 0.106357 0.0153576 +0.018535 0.0346925 0.0222104 +-0.0633642 0.142485 0.0383017 +0.0395752 0.0602985 0.0307005 +0.0196495 0.0356664 -0.00567711 +-0.00666974 0.0555272 -0.0330407 +-0.0554731 0.154191 0.0210182 +-0.00998984 0.177238 -0.0295136 +0.0366228 0.111865 0.00747742 +-0.00322809 0.0999661 -0.0238789 +0.00852647 0.0349744 0.0253569 +0.0337455 0.11169 -0.0043358 +-0.033869 0.10148 -0.022225 +0.0215013 0.108432 0.0393095 +0.027565 0.119234 0.026993 +-0.0477832 0.129154 -0.000397631 +-0.057288 0.0521607 0.00365094 +0.0119513 0.0873992 0.0542929 +0.0510679 0.0720267 0.021243 +-0.0525522 0.0487323 -0.0069784 +0.0419877 0.102851 0.0121565 +-0.0154922 0.126886 0.0243264 +-0.010476 0.0965182 0.0531854 +-0.0107078 0.0628117 -0.0359649 +-0.0848416 0.0858026 -0.00253503 +-0.0300028 0.125562 0.00590559 +-0.0137234 0.0643092 -0.0370705 +0.025242 0.0761745 -0.0249679 +-0.0268088 0.0852978 -0.0363495 +0.028746 0.0693043 -0.0217828 +-0.0525052 0.112524 0.0359139 +0.0608734 0.0637391 0.0151617 +-0.0820606 0.151973 0.00432386 +-0.065153 0.0712063 0.036955 +-0.0590564 0.0335255 0.00387291 +-0.0726667 0.0777379 -0.0132872 +-0.0639501 0.166025 -0.0326719 +0.033089 0.0892132 -0.0184699 +-0.0410037 0.148494 -0.000715623 +0.0152676 0.11708 -0.0141694 +-0.0405102 0.127658 -0.000961794 +0.0135046 0.108467 0.0407674 +-0.0598038 0.0341949 0.0280011 +-0.025416 0.0905129 0.0490114 +-0.0383992 0.0420226 0.0422608 +-0.0414999 0.0478558 0.040117 +-0.0525584 0.0501546 -0.00685551 +-0.0394783 0.0832832 0.0435432 +-0.0409872 0.0335947 -0.0218947 +-0.0234596 0.184384 -0.0119315 +-0.00549722 0.0633676 0.0561862 +-0.0249111 0.0958255 0.0441185 +-0.0794946 0.12171 0.0507273 +0.0218787 0.0430332 -0.0157248 +-0.0284679 0.0718578 -0.0335433 +-0.0287174 0.0344722 -0.0298467 +-0.0375646 0.0407082 -0.0285349 +-0.0684694 0.153743 0.0324784 +0.0275012 0.1187 -0.00304813 +-0.0654981 0.100096 0.041968 +-0.0728966 0.155445 -0.0329107 +-0.024103 0.171237 -0.0122056 +-0.0213641 0.0384977 0.0305062 +-0.00878734 0.0798675 -0.0379507 +-0.0034971 0.0703995 0.0574239 +-0.0628591 0.0679841 0.0349557 +-0.0205114 0.0512056 0.0456176 +-0.0215925 0.0364837 -0.0283556 +0.0308475 0.0751439 -0.0207339 +0.0345069 0.0483661 0.0310725 +0.00650269 0.044152 0.0457422 +-0.0404948 0.0733395 0.0422389 +0.00152573 0.0717149 0.0566366 +-0.00449638 0.110771 -0.0213478 +-0.0786622 0.0733343 0.0252726 +-0.00997021 0.129828 0.00744342 +-0.0368781 0.107107 -0.0201846 +0.0114979 0.112659 0.03891 +-0.0516419 0.126901 0.0340875 +-0.05391 0.13392 0.032587 +-0.0537085 0.0491368 0.0316573 +-0.086972 0.143283 0.00915353 +-0.0889751 0.0969295 0.00842099 +-0.0378902 0.121927 0.0281694 +-0.0870357 0.141902 0.00919077 +-0.056635 0.0350546 0.0452244 +-0.019816 0.0347801 0.0465131 +0.0392931 0.086096 0.0340337 +-0.0869334 0.0861006 0.0224549 +-0.0643967 0.0646443 0.0287462 +-0.0398612 0.101404 -0.0212384 +-0.0536876 0.0334698 -0.00403732 +-0.0785163 0.162478 -0.0269418 +-0.0638695 0.16329 -0.0240265 +-0.087202 0.10043 0.0240701 +-0.0736795 0.145791 -0.0128538 +0.0436314 0.0736519 0.026072 +-0.0326308 0.0352345 0.0485487 +-0.0158901 0.160985 -0.0130889 +0.0154243 0.0781303 0.053988 +0.00317805 0.0980649 -0.0258881 +-0.00360287 0.0419944 -0.0253901 +-0.0681856 0.169443 -0.0550153 +-0.0937199 0.12277 0.0132819 +-0.0335083 0.11115 0.0363293 +-0.0897769 0.0915868 0.0144438 +-0.00790609 0.0389527 -0.0109414 +-0.0512486 0.0474505 0.019655 +0.0299943 0.101654 -0.0156302 +-0.0688114 0.086573 -0.0173858 +-0.0425222 0.0435673 -0.0203211 +-0.0411345 0.037889 -0.0275181 +-0.0451234 0.0336213 -0.00611106 +-0.0513475 0.115214 -0.0158415 +-0.0135796 0.18457 -0.0255034 +0.0514482 0.0490026 0.000289284 +-0.0154766 0.160714 -0.011803 +-0.0871595 0.128427 0.0471391 +0.0253818 0.0487646 -0.0196147 +-0.0226623 0.0866242 0.0548392 +-0.00567144 0.0569411 -0.0332111 +0.046481 0.0764536 0.00918999 +0.0579995 0.0690441 0.020859 +-0.0371 0.126156 -0.00341777 +-0.073756 0.0716254 0.0312714 +-0.0320938 0.0457263 -0.0270587 +-0.0109396 0.165104 -0.0156606 +-0.088578 0.151544 0.0220955 +0.00637955 0.131641 0.0120332 +-0.00648723 0.114138 0.040862 +-0.058347 0.0335497 0.00759386 +0.00578775 0.0392649 0.0317966 +-0.0571091 0.140994 0.0314586 +-0.00487882 0.107372 -0.0225382 +-0.0806197 0.114932 0.047462 +-0.0334955 0.0874648 0.043047 +-0.0460993 0.132381 0.0175967 +-0.0638759 0.0334217 -0.000619218 +-0.0121322 0.038759 -0.00601251 +-0.0743637 0.153685 0.0319267 +-0.0445292 0.0547767 0.038815 +0.0265401 0.0686018 0.0436052 +0.0300756 0.0946988 -0.0182345 +-0.00649809 0.0703887 0.0571625 +-0.0574852 0.0861616 0.0444185 +-0.0204789 0.081458 0.0566556 +-0.045663 0.0367902 -0.0212772 +-0.0660163 0.156182 0.0230465 +0.0105014 0.112682 0.0391847 +-0.0863368 0.153207 0.0174967 +-0.0314199 0.0595176 -0.0174145 +-0.0903295 0.150229 0.0211233 +-0.0394972 0.0648803 0.0416583 +-0.0107858 0.0386823 0.0289151 +-0.0567014 0.0534733 -0.0003903 +-0.00348704 0.121028 0.0369539 +0.0367923 0.0967547 0.0340658 +-0.0206904 0.0538665 -0.0309758 +0.0171483 0.0535046 0.047456 +-0.052342 0.035529 0.0457534 +-0.0350351 0.0408695 0.0473482 +-0.0364795 0.0519621 0.0386972 +0.0339284 0.0669478 -0.0167571 +-0.0277715 0.0852268 -0.0356683 +0.00655622 0.121628 -0.0130526 +-0.0586532 0.0645395 -0.00761311 +-0.0582249 0.0344034 0.0351394 +-0.00633129 0.0388612 -0.00122239 +-0.0669198 0.113752 -0.0107887 +-0.0667337 0.0374088 0.0337222 +-0.00249774 0.0520145 0.0539036 +-0.0450377 0.0345968 0.0325315 +0.0242293 0.119847 -0.00515511 +-0.0932424 0.12021 0.0392849 +-0.0535442 0.129727 0.0348674 +-0.00517846 0.0367339 0.04845 +-0.0734548 0.0752713 0.0352251 +-0.0687371 0.155896 0.0104629 +-0.0471614 0.0336254 -0.00103179 +-0.00441737 0.117961 -0.0150091 +-0.0238639 0.0825121 0.0547585 +-0.0132802 0.102485 0.0435875 +-0.0649278 0.105334 -0.0156241 +0.0286778 0.116188 -0.00517917 +-0.0236663 0.0381653 0.00868472 +-0.0645999 0.0432992 0.0347148 +-0.0856886 0.0926246 -0.00156242 +-0.0835056 0.0777286 0.0204901 +0.0321567 0.107734 -0.010124 +-0.0895151 0.151559 0.0181181 +0.0110134 0.130158 0.00376449 +-0.0202842 0.16977 -0.0137262 +-0.00591514 0.12799 -0.00376372 +0.0143906 0.0373653 -0.0212799 +-0.0719296 0.11219 -0.00889601 +-0.0157228 0.0642918 -0.0372774 +0.0269219 0.115924 -0.00692402 +-0.0665225 0.0435914 0.00948645 +-0.0747288 0.102175 0.0369848 +0.0207343 0.120306 -0.00765281 +-0.0240392 0.0380418 0.0177619 +-0.0806691 0.107746 0.0299304 +0.0541727 0.0734662 0.0150335 +-0.0828869 0.0763004 0.0145215 +-0.0490771 0.154645 -0.00592496 +0.0211784 0.0973838 -0.0221644 +-0.0576844 0.0467193 0.0286753 +0.00985328 0.0602892 0.0527986 +0.0232608 0.0748451 -0.0261321 +-0.0524982 0.0862336 0.045539 +-0.0783198 0.147274 -0.0028373 +0.0082875 0.114937 -0.017843 +0.018445 0.0456517 -0.0226728 +-0.0239275 0.1816 -0.0100979 +-0.040758 0.0797297 -0.0196637 +-0.0485257 0.121087 0.0297472 +-0.0345208 0.0633716 0.0403553 +-0.00118398 0.0362533 0.0473478 +0.000189104 0.0867348 -0.0351526 +0.0231695 0.0520348 0.0420858 +-0.0324783 0.0337381 0.0144953 +-0.0597681 0.0334439 0.00560092 +0.0177557 0.0344112 0.00209212 +0.0159863 0.0860656 0.0513294 +-0.0393291 0.127134 0.01721 +-0.0628998 0.1209 -0.00884208 +0.04086 0.101423 0.0231764 +-0.0146702 0.122522 -0.00773793 +-0.0292113 0.156649 -0.000270817 +-0.0415254 0.172553 -0.00373349 +-0.0365135 0.084703 0.0437856 +-0.0208969 0.0381794 0.0236923 +0.011579 0.120136 -0.0134617 +-0.0347516 0.0383809 -0.00467189 +-0.0166266 0.172732 -0.0172138 +-0.0531086 0.126902 0.0355005 +-0.0154789 0.0347707 0.0439361 +-0.0110657 0.112343 -0.0190003 +0.0286979 0.0806527 -0.0216026 +-0.00681305 0.0345833 0.0441587 +-0.0245442 0.0708437 0.0459353 +-0.0613991 0.0718897 0.0389316 +-0.0682443 0.179461 -0.0589214 +-0.00573885 0.0698843 -0.0361103 +-0.0875967 0.100907 0.00640641 +0.0169866 0.0348952 0.0343866 +0.0228667 0.0444458 -0.0147763 +-0.0536029 0.162357 0.00297376 +-0.0723862 0.156822 -0.0359122 +0.000140075 0.103071 -0.0225088 +-0.0543692 0.0334679 -0.00234676 +-0.0771859 0.109877 -0.00559641 +-0.0922148 0.11614 0.0373108 +0.00616718 0.124896 -0.00854967 +-0.00125449 0.12189 -0.0112382 +0.0349132 0.114353 0.0126105 +-0.0534959 0.107052 0.0398334 +0.0553645 0.0492819 0.0192078 +0.0496613 0.0501912 -0.00270335 +-0.0917143 0.128313 0.0332436 +0.00552678 0.0619607 0.0559576 +-0.0252475 0.0736694 0.0465167 +-0.0656879 0.156227 0.015899 +0.0167178 0.128574 0.00869666 +-0.0616277 0.154191 0.00244865 +-0.0845352 0.136246 0.000324782 +-0.0835033 0.0804619 0.0265017 +-0.0380583 0.154792 -0.00920218 +-0.0683549 0.0382578 0.0114352 +-0.0713665 0.156324 0.018248 +0.0326986 0.0781958 0.0420379 +-0.0267044 0.158758 -0.0121466 +0.0274612 0.0417732 0.0323464 +-0.00748374 0.116886 0.0393445 +-0.0618946 0.0333508 -0.00558837 +-0.022958 0.166842 -0.0105567 +0.000373363 0.0349968 0.00734292 +-0.0437553 0.033642 0.00144997 +0.0267259 0.120866 0.0252428 +-0.0859248 0.0832079 0.00547822 +-0.00269975 0.109146 -0.0216168 +0.055733 0.052157 0.00319809 +-0.0704697 0.181218 -0.0537747 +0.00698645 0.0818884 0.0558396 +0.0424628 0.0943961 -0.00280162 +-0.0560128 0.0334549 0.00994988 +-0.000497737 0.11557 0.0407823 +0.0115122 0.104463 0.0449641 +0.0113328 0.124014 0.0325236 +-0.0257103 0.0983522 -0.0242349 +0.0385114 0.038461 0.00447642 +0.0274866 0.0994982 0.0416519 +-0.0205044 0.11679 0.0360351 +-0.0287307 0.0748955 0.0414817 +0.021677 0.0354914 0.00935068 +-0.0604978 0.109778 0.0376942 +0.0349482 0.114159 0.0154869 +-0.0891171 0.11284 0.0400327 +-0.0525174 0.133925 0.0310668 +-0.0467675 0.0811826 -0.0202513 +0.0148515 0.129255 0.0180171 +0.0134018 0.0418881 -0.0236384 +-0.0196836 0.0524593 -0.0309769 +-0.0907522 0.136478 0.0191999 +-0.0282073 0.178522 -0.0159874 +-0.0456817 0.146626 -0.00135754 +-0.0234782 0.174205 -0.0130294 +0.0157394 0.128861 0.0183169 +-0.049553 0.0432181 -0.0104928 +-0.0364431 0.0379518 -0.0296736 +-0.0342528 0.161016 -0.000502552 +-0.0106993 0.061373 -0.0355475 +0.0155546 0.034804 0.0269401 +0.0445305 0.0664178 0.0264316 +-0.0692603 0.166617 -0.0519986 +0.00900275 0.0343116 -0.0200681 +-0.0789639 0.13393 -0.00512141 +0.0183835 0.0490953 -0.0235496 +-0.0211568 0.177178 -0.0149257 +-0.0459855 0.0341655 0.0291843 +0.0234635 0.12256 0.0268857 +-0.0437241 0.0724973 -0.0179849 +-0.0492665 0.143175 0.00640774 +0.0310235 0.0363382 0.00298341 +-0.0703389 0.0353326 0.0107638 +-0.0505002 0.0762293 0.0432414 +-0.0641035 0.141307 -0.00745692 +-0.0474934 0.115292 0.0331905 +-0.050108 0.144746 0.0113816 +0.0325029 0.117364 0.00744623 +-0.0183192 0.124686 -0.00393431 +-0.00150748 0.059016 0.0544507 +-0.0104895 0.115533 0.0397944 +-0.023487 0.0435372 0.0536017 +-0.0655471 0.154522 0.00288522 +-0.0675989 0.156142 0.0239498 +-0.03165 0.0339865 0.0180432 +-0.0447604 0.0336698 -0.00424497 +-0.0348481 0.110331 -0.0188 +-0.0114927 0.0938853 0.0554733 +-0.0700706 0.155642 0.00707306 +0.0444883 0.05975 0.0312137 +-0.0788477 0.0773102 0.0306071 +-0.0712203 0.0706743 0.0326242 +0.00153616 0.078717 0.0572683 +-0.0243177 0.0607418 0.04177 +0.0445696 0.0677675 0.0254424 +0.0516179 0.0503639 -0.000756444 +-0.0610049 0.129668 -0.00770337 +-0.0731244 0.174613 -0.0403365 +-0.021137 0.166765 -0.0184531 +-0.068723 0.163208 -0.0142948 +-0.0415011 0.0676725 0.0415782 +-0.0829782 0.147345 0.00316952 +-0.056007 0.145723 -0.001571 +-0.023276 0.0768174 0.0529315 +-0.0303597 0.158405 -0.0122944 +-0.0594923 0.107014 0.0396564 +-0.0680504 0.156343 0.0223236 +-0.050518 0.054445 0.0327051 +-0.0324286 0.126663 0.0108668 +-0.0629263 0.108221 -0.0156274 +-0.0283572 0.0862879 0.0464179 +0.0304249 0.0399897 -0.00292852 +-0.0820851 0.106006 0.028693 +-0.081432 0.0776141 0.0263044 +0.0121657 0.0990535 -0.0228743 +-0.0148931 0.161809 -0.0143393 +0.0322568 0.0814321 -0.0193234 +-0.0249634 0.0631201 -0.0324542 +-0.0844782 0.152284 0.0269844 +-0.0284889 0.100156 0.0431683 +0.0335187 0.113275 -0.00203325 +0.0243141 0.0347256 0.0105738 +-0.0189924 0.127884 0.0157415 +-0.0555 0.0488797 0.0362241 +-0.0675079 0.104205 0.0395869 +-0.0181173 0.0384288 0.000495732 +-0.0138101 0.0841459 -0.0389466 +-0.0343542 0.0367977 0.0484644 +0.0170352 0.0393356 0.0436644 +-0.0255828 0.0620727 0.0401653 +0.0012257 0.0797035 -0.0352779 +-0.0033226 0.122983 -0.0103909 +0.0377895 0.0954381 0.0337234 +-0.0779478 0.107702 0.034147 +0.0309974 0.0673207 0.0412553 +0.0125192 0.0833344 0.053329 +-0.0569108 0.0471914 0.0407265 +-0.0765896 0.172837 -0.038783 +-0.0243798 0.168291 -0.0108587 +-0.0849208 0.114388 0.046865 +0.0270076 0.100021 -0.0178938 +-0.00936568 0.0388306 -0.00738531 +0.0124903 0.101789 0.047403 +0.0153634 0.050802 -0.0265798 +-0.051492 0.107057 0.0393982 +0.00022872 0.0769217 -0.0357549 +-0.073138 0.156184 0.0161734 +-0.0171943 0.171219 -0.0224352 +0.0282636 0.073195 -0.0229429 +-0.0554943 0.112513 0.0359102 +0.0268698 0.0448976 0.0368034 +-0.0567448 0.0548796 0.00465654 +0.00393342 0.0340406 0.014385 +-0.0269434 0.0864227 0.0492292 +-0.050859 0.0487888 0.015667 +-0.0524919 0.0762203 0.042799 +-0.025733 0.0751362 0.0469781 +-0.0870453 0.0846718 0.00449266 +-0.0765303 0.0961207 -0.0124976 +0.0303449 0.112749 0.0317399 +-0.070531 0.151779 -0.0453729 +0.0534729 0.0645627 -0.000631784 +0.0104112 0.0375138 -0.0230668 +0.0592863 0.0552837 0.0131736 +0.00525297 0.069736 -0.0335357 +0.0167263 0.0350159 0.0378322 +-0.0679113 0.0395796 0.0109828 +0.013918 0.129208 0.0205036 +-0.079478 0.142827 0.0451049 +-0.0708238 0.0631793 0.00551684 +-0.0687786 0.16979 -0.0301319 +-0.0187811 0.119777 -0.0107944 +0.021663 0.053586 0.0452157 +0.015783 0.0914175 0.0510677 +0.0258521 0.119872 -0.00319504 +-0.0172292 0.104564 -0.022745 +-0.0618136 0.0453397 -0.00172473 +0.0207685 0.0449736 0.0420523 +-0.0231964 0.0651165 0.0447582 +-0.0305175 0.0847809 -0.0315638 +-0.0658758 0.122838 0.0504663 +-0.0148324 0.107132 -0.0214612 +0.0460436 0.0778241 0.00519064 +0.00396334 0.0346642 0.000955872 +-0.000496537 0.0675633 0.0565514 +0.0342214 0.0813611 -0.0182381 +-0.0464961 0.0464761 0.0407845 +0.0547176 0.0680176 0.00187225 +-0.0580682 0.132534 -0.0063879 +0.0331199 0.0754691 0.0408773 +0.0401875 0.102783 0.0241636 +-0.0783656 0.151459 -0.000884796 +0.0238113 0.0754906 0.0485213 +0.0164183 0.0726599 0.0518741 +-0.0674097 0.173701 -0.0580011 +-0.0179511 0.175707 -0.0173471 +-0.0334973 0.0859864 0.0423406 +-0.0416172 0.17268 -0.00599082 +-0.0883846 0.119913 0.00130167 +-0.0154061 0.185475 -0.025609 +0.0464852 0.0429053 0.00427528 +0.0545912 0.0717149 0.021096 +-0.0661916 0.0334877 0.00245273 +-0.0495852 0.124005 0.0317323 +-0.0537144 0.0491343 0.0296614 +-0.0818927 0.122139 -0.0045131 +-0.0718108 0.0955414 0.0413269 +0.0221671 0.0444704 -0.016762 +-0.0798314 0.0733447 0.0205614 +0.0166594 0.125691 0.027245 +-0.0892473 0.0888575 0.0104669 +0.00551166 0.0504095 0.0521406 +-0.0627982 0.16724 -0.0607839 +-0.0646154 0.0457888 0.00269728 +-0.0485702 0.047508 -0.00937813 +0.026502 0.121591 0.0237374 +-0.0353601 0.152626 -0.00619729 +0.0403422 0.10564 0.0161674 +-0.0615416 0.034204 0.0241166 +0.0380593 0.0869714 -0.0147288 +0.0319925 0.114417 -0.00326976 +-0.0267368 0.0385445 0.0329521 +-0.0618964 0.108239 -0.0162152 +-0.063845 0.150027 0.0371387 +-0.0739579 0.155489 -0.0249104 +-0.0709691 0.153934 -0.0469289 +0.0249948 0.0405751 0.0353079 +-0.0304784 0.0381297 0.00370653 +-0.0247632 0.0741431 -0.0374571 +-0.0216593 0.0509046 -0.0292926 +-0.0446505 0.0592548 -0.0123035 +-0.0410267 0.172571 -0.00282243 +-0.060985 0.168641 -0.0594898 +0.0260213 0.111246 -0.0119 +-0.0224982 0.103036 0.0436276 +-0.0720537 0.0640001 0.00639175 +-0.08755 0.12805 0.000278104 +-0.0790371 0.0873264 0.0361062 +-0.055031 0.152471 0.0270238 +0.0537262 0.0622241 0.0283948 +0.0248385 0.107021 -0.0153684 +-0.0817292 0.154617 0.0205129 +-0.0776054 0.0804635 0.0348861 +-0.0644463 0.0769092 0.0410862 +-0.0737119 0.082093 -0.0148287 +-0.0782342 0.0694181 0.011104 +-0.0678631 0.0335656 -0.00155997 +-0.0771555 0.15282 -0.00488816 +0.028309 0.049176 0.0371723 +0.0122273 0.0342048 -0.000691958 +-0.0643947 0.15704 -0.046105 +-0.0276636 0.0522618 0.0383069 +-0.0587411 0.154535 0.0270999 +0.0275645 0.122014 0.00844231 +-0.0465457 0.0337901 0.0276252 +-0.0853906 0.110991 0.0352247 +-0.0338206 0.0367327 0.0490996 +-0.0145535 0.06115 0.0532234 +0.0367927 0.111755 0.0132988 +0.0458177 0.0820138 0.0181729 +-0.0444555 0.121377 -0.0123561 +0.0224202 0.0430392 -0.0127301 +0.0158478 0.102035 -0.022 +-0.0100884 0.0347013 0.0469069 +0.0374928 0.0498822 0.031843 +0.0351777 0.0559301 -0.00964394 +-0.00946358 0.169654 -0.0207426 +-0.0656264 0.15567 -0.0512009 +-0.0254805 0.0434932 0.0531599 +-0.0270955 0.0576776 -0.0274029 +-0.0228583 0.0350556 -0.0196661 +-0.0139903 0.169817 -0.0169155 +0.0176377 0.0348968 0.0272836 +-0.0144859 0.107222 0.0429439 +-0.0291189 0.15522 -0.00190906 +-0.0411739 0.165162 -0.0113688 +-0.0123514 0.0384213 0.00530714 +-0.0527141 0.141625 0.0234145 +-0.0612038 0.154834 0.027675 +-0.0338487 0.098628 -0.022813 +-0.000859642 0.105926 -0.0219248 +-0.0203431 0.186558 -0.0166005 +-0.01883 0.0882728 -0.037792 +-0.0635094 0.0987058 0.0422669 +-0.000483407 0.0787781 0.0579546 +-0.0700187 0.074071 0.0369567 +-0.0201986 0.186115 -0.0151371 +0.00141145 0.0376391 -0.024717 +0.0439647 0.0888964 0.0241631 +-0.0774025 0.100791 0.0354679 +-0.078513 0.145668 0.0427459 +0.0241305 0.0618675 0.0453428 +0.0109129 0.0833325 0.0545132 +-0.0798758 0.117757 -0.00451351 +0.0302928 0.119677 0.0137476 +0.0354021 0.0399255 -0.00156043 +-0.0489211 0.0687544 0.0390214 +-0.0493842 0.0558982 0.0343669 +-0.0524939 0.0776533 0.0431774 +-0.00761105 0.112944 -0.01965 +-0.0631004 0.038056 0.0429096 +-0.078061 0.117721 0.0511362 +-0.0228935 0.0375359 -0.0182249 +0.0168546 0.104974 -0.0191686 +-0.062493 0.0385506 -0.00796777 +-0.0814183 0.138999 -0.00180871 +-0.0585811 0.0344322 0.0332983 +-0.0299241 0.172727 -0.00652243 +0.0112861 0.130316 0.0195341 +-0.0325036 0.10978 0.0375732 +-0.0826224 0.141799 0.00118353 +-0.0805022 0.0831735 0.0334637 +0.0122352 0.0808526 -0.0312408 +-0.0771876 0.0907032 -0.0125611 +-0.0140608 0.038299 0.0231793 +-0.0386607 0.116212 -0.0149511 +-0.0276455 0.0376114 0.0210157 +-0.0832306 0.0871025 0.0304136 +-0.0334887 0.0471143 -0.0243565 +-0.0400971 0.153595 0.0050429 +-0.0647302 0.154215 -0.0408208 +-0.0194396 0.0527865 0.0471813 +-0.0665534 0.156088 0.0243177 +0.00850109 0.107119 0.0411949 +-0.0740753 0.174982 -0.0510829 +-0.0131928 0.11434 -0.0171133 +-0.00874908 0.0742103 -0.037697 +0.00967799 0.130572 0.00468392 +0.0318663 0.0862689 0.0426688 +0.0197994 0.0399634 -0.0167042 +0.0141672 0.0347073 0.00296826 +-0.0334912 0.0604137 0.038899 +-0.010802 0.0812949 -0.0382665 +-0.0626127 0.0339199 -0.00909656 +-0.0225179 0.0594554 0.0442529 +-0.0744235 0.152695 -0.0268913 +-0.0148262 0.181632 -0.021586 +-0.0501691 0.0348773 0.00986405 +0.0104481 0.102845 -0.020901 +-0.0127527 0.177163 -0.0221029 +0.008145 0.103004 -0.0207662 +-0.0548867 0.101301 -0.0205491 +-0.0772028 0.162464 -0.0309387 +0.0379552 0.0588939 -0.00773658 +-0.0134957 0.0925258 0.0558596 +0.0248886 0.0970269 -0.0206985 +-0.0393214 0.0342416 -0.0147308 +-0.0458838 0.129671 0.00293555 +-0.0574217 0.135337 0.0345321 +-0.0820284 0.13533 -0.00235647 +0.038582 0.0659177 0.034606 +-0.0494896 0.157875 0.00921755 +-0.0225598 0.125982 0.00280455 +0.0216881 0.102085 -0.0200779 +-0.0136509 0.0496769 -0.0312069 +-0.0615955 0.15529 0.0260796 +-0.0115193 0.0773584 0.0574493 +0.0404486 0.0745397 -0.00879543 +-0.057886 0.0969698 -0.0206731 +-0.0109392 0.038438 0.0236915 +-0.0148475 0.162865 -0.0159421 +-0.0183748 0.0353493 0.0515278 +0.029169 0.114081 0.0318014 +0.0232083 0.0449556 0.0403488 +-0.0234883 0.122057 0.0276339 +0.0359605 0.0936242 -0.0130764 +-0.0175335 0.0392471 0.0378093 +-0.0308588 0.171231 -0.00613945 +0.0247031 0.0463341 0.0389677 +-0.0925247 0.128292 0.0282327 +-0.0665656 0.122847 0.0512252 +0.0584586 0.0607609 0.022909 +-0.00884754 0.115581 -0.0164541 +-0.00309453 0.0984522 0.0515066 +0.0115015 0.119616 0.0358941 +-0.0494977 0.0903933 0.0446494 +-0.0126691 0.0348865 0.0479592 +-0.0149576 0.0897382 -0.0373658 +-0.0152002 0.174208 -0.0254562 +-0.0756281 0.167353 -0.024657 +-0.0627225 0.0402195 0.0247088 +-0.058955 0.151077 0.0341866 +-0.00932165 0.17502 -0.028678 +-0.0123491 0.183911 -0.0264322 +-0.0896074 0.135171 0.0322127 +-0.0426789 0.168728 0.0023488 +-0.0748775 0.0739125 0.0325733 +0.03891 0.10882 0.00971935 +-0.0633729 0.0431313 0.0286681 +-0.0551792 0.0336096 0.018904 +0.0268834 0.0875842 0.0460207 +-0.0168782 0.0351038 0.0503404 +-0.00549453 0.0590678 0.0548923 +-0.0286315 0.0383676 -0.00896928 +-0.0332631 0.177035 -0.011981 +-0.0748045 0.167943 -0.0420608 +-0.0851109 0.0939488 -0.00257672 +0.00096833 0.121103 -0.0124156 +-0.0558825 0.0465312 0.026676 +0.00712802 0.0975509 -0.0252935 +-0.00450103 0.0746726 0.0587526 +-0.0754962 0.141423 0.0471972 +-0.0514204 0.0548853 0.0209522 +-0.0107189 0.0642451 -0.0362023 +0.0428473 0.0944698 0.0251639 +0.0161732 0.12869 0.00706423 +0.0172673 0.128465 0.0103258 +-0.0624218 0.113827 0.0376933 +-0.0694289 0.039567 0.00968578 +-0.00956353 0.172645 -0.0227849 +-0.036529 0.0344176 0.0112583 +0.00747563 0.0378784 -0.00876072 +-0.0105064 0.0884021 0.0567868 +-0.0306153 0.0495713 -0.0203608 +-0.0832173 0.13898 0.000315163 +-0.00610064 0.0339097 -0.0209348 +-0.0081869 0.0386049 0.00598379 +0.0213573 0.057915 -0.0266602 +0.0391712 0.0402919 0.0231925 +-0.0346283 0.0533938 -0.0102529 +-0.00324688 0.0367886 -0.0155194 +-0.0734226 0.0711647 -0.00664488 +-0.0628413 0.144409 -0.0076345 +-0.0258745 0.104437 -0.023108 +-0.0100477 0.178214 -0.0295899 +-0.0839857 0.132609 0.0495198 +-0.0498484 0.121182 -0.0121 +0.0108333 0.130856 0.0150885 +-0.0104958 0.0939039 0.0555039 +-0.0863431 0.112514 0.0302243 +0.0475429 0.0429463 0.00623912 +-0.0334893 0.050539 0.0382432 +-0.0209099 0.158178 -0.00579641 +0.011514 0.10312 0.0464311 +0.0350456 0.0627954 -0.0138277 +-0.0161876 0.171234 -0.0230543 +-0.0268555 0.0987274 -0.0239779 +0.0118541 0.0404814 0.0449158 +-0.0104973 0.0856567 0.0572952 +0.0271955 0.0520724 0.0391174 +0.00248489 0.105788 0.0426651 +-0.0037871 0.0812341 -0.0371832 +-0.0231675 0.184436 -0.0160624 +-0.0612844 0.044277 0.027687 +0.0239731 0.061977 -0.0246362 +-0.00946933 0.0932363 -0.0348935 +-0.0178949 0.0971863 0.0483787 +-0.00196639 0.0392296 -0.0118812 +-0.0067485 0.0755804 -0.0372256 +-0.00967937 0.0555867 -0.0337759 +0.000980617 0.120181 -0.0134191 +-0.0806495 0.10968 0.039129 +0.0358807 0.0812282 -0.0166923 +0.0146499 0.0699433 0.0528108 +-0.034478 0.0590226 0.0391844 +0.0203856 0.0348183 -0.00149748 +0.0142674 0.0709686 -0.0310685 +-0.0334971 0.119329 0.0299275 +-0.0341948 0.0435484 0.0464376 +-0.00450247 0.056202 0.0539356 +-0.0721189 0.15515 0.0282101 +-0.000346509 0.12561 -0.00723663 +-0.0756644 0.0774182 -0.00947264 +0.014908 0.106309 -0.0185911 +0.0267515 0.102116 0.0406018 +-0.0626019 0.174089 -0.0546038 +-0.0574874 0.0805202 0.0440851 +-0.0609158 0.169795 -0.0608698 +0.0438296 0.0973504 0.015162 +-0.072512 0.104082 0.0376881 +0.0359801 0.0821479 0.0380155 +-0.0573808 0.129734 0.0381066 +-0.0236825 0.0566574 -0.0305632 +-0.0351787 0.0336265 -0.0226404 +-0.0257826 0.0783385 -0.0372231 +-0.0733446 0.159645 -0.0339252 +-0.024717 0.169741 -0.0113487 +-0.0597904 0.0825229 -0.0201763 +-0.0638365 0.0996097 -0.0175199 +-0.0897172 0.118919 0.0457459 +0.00851027 0.105753 0.0425683 +-0.0857293 0.121702 0.0488414 +-0.00654714 0.043 0.0484741 +-0.0524991 0.109798 0.0378325 +0.0089719 0.130372 0.00300057 +-0.0912936 0.114724 0.0218532 +-0.0758153 0.155373 0.0254598 +0.0443256 0.0931523 0.0201621 +-0.00159763 0.0391157 -0.0252097 +0.0358716 0.112393 0.0201061 +-0.0582724 0.0345955 0.0435663 +0.0444341 0.0861163 0.024155 +-0.0798668 0.12036 0.0500614 +-0.0486801 0.12235 -0.0113455 +0.044671 0.0931702 0.0171607 +-0.0867731 0.0820034 0.0144903 +-0.0444986 0.0465011 0.0409291 +-0.0132439 0.178631 -0.0284206 +-0.0014976 0.0856652 0.0573264 +-0.0555627 0.0351736 0.0453577 +-0.0757755 0.0948358 -0.0134771 +0.0116939 0.0459283 0.0447695 +-0.0334941 0.0690232 0.0409338 +-0.0717098 0.161007 -0.0419418 +-0.0620707 0.163126 -0.0385937 +0.0188526 0.103753 -0.0198618 +-0.0699102 0.14965 -0.0409667 +-0.0405063 0.0902417 0.0426463 +-0.071716 0.148756 -0.0367532 +-0.0218007 0.0637891 0.0462553 +0.0567259 0.0536428 0.00417778 +-0.0893948 0.09291 0.012442 +-0.0603715 0.133894 0.0372893 +0.0314991 0.054058 -0.0137198 +0.0203015 0.126964 0.0128708 +-0.0845068 0.120355 0.0490624 +-0.0624258 0.0342984 0.0291094 +-0.0395093 0.0930879 0.0428865 +-0.0277909 0.0380629 0.00793761 +0.0321502 0.106752 -0.0110706 +0.0298444 0.106115 0.0363002 +-0.054857 0.0970227 -0.0215362 +-0.0397671 0.127634 -0.000654541 +-0.0249592 0.0767123 0.050372 +-0.0265277 0.10717 0.0404632 +-0.0283702 0.0535742 -0.0233936 +0.00450189 0.050474 0.0524519 +0.00174762 0.0944417 -0.0320379 +-0.0810711 0.076096 -0.000474637 +0.0169426 0.11422 -0.015094 +-0.0380634 0.127686 0.00145512 +-0.0320932 0.0877303 -0.0254981 +-0.0569735 0.056267 0.00463231 +-0.0692551 0.175557 -0.0461164 +-0.0461819 0.130936 0.0220239 +0.0424151 0.101486 0.0141591 +-0.0816004 0.110405 0.0418977 +-0.0486814 0.0634873 -0.0123857 +-0.0354984 0.0491504 0.038916 +0.0232288 0.125257 0.0153837 +0.0251982 0.123641 0.0075622 +-0.0357278 0.07254 -0.0181295 +0.0451439 0.0802684 0.0230283 +-0.00649644 0.0605343 0.0557379 +-0.0697973 0.159564 -0.0489352 +-0.037469 0.120514 -0.011464 +-0.0869577 0.133848 0.0453706 +0.0185257 0.0352322 0.0362088 +-0.0206549 0.0768238 0.0545752 +0.0458945 0.0764062 0.00420006 +-0.0137194 0.091107 -0.0367438 +-0.0375014 0.106979 0.038117 +-0.0446156 0.0437685 -0.0132939 +-0.064545 0.156137 -0.0442784 +0.0275233 0.0621538 -0.0218174 +-0.0642285 0.0429095 -0.00424321 +-0.00460043 0.0434181 -0.0258683 +-0.0778454 0.158312 -0.0179205 +0.00252706 0.0800582 0.0567791 +0.0174798 0.0919971 -0.0254067 +-0.08982 0.133788 0.032216 +0.0343452 0.114918 0.0052408 +-0.0630651 0.167844 -0.0445874 +0.0164152 0.127597 0.00146207 +-0.0755176 0.120378 0.0530566 +-0.00615627 0.0994928 -0.025355 +-0.0501125 0.157587 -0.00554245 +-0.0332242 0.152554 -0.00262082 +0.0104732 0.0962984 0.0498872 +-0.0184975 0.111326 0.0402128 +-0.0228147 0.0826618 -0.0384205 +0.025553 0.0822419 0.0475803 +-0.0841632 0.11158 0.00227497 +-0.0198477 0.126879 0.00378288 +-0.069852 0.0951674 -0.0161643 +-0.0306901 0.0678681 -0.026462 +0.0155988 0.0699697 0.0524229 +-0.0167333 0.0642714 -0.0369951 +-0.0167796 0.121583 -0.00869919 +-0.0594953 0.0747194 0.0418121 +-0.0630515 0.152177 -0.00858675 +-0.0111714 0.129564 0.00700207 +-0.0890821 0.101017 0.0143926 +-0.0145147 0.116898 0.0378441 +-0.0462973 0.0368721 -0.0182757 +0.0251418 0.056415 0.0432482 +-0.0114906 0.0532044 0.051601 +-0.0514985 0.0931716 0.0440238 +-0.0536498 0.152894 0.0173581 +-0.0226294 0.157855 -0.00422736 +-0.0723402 0.0380689 0.00697334 +-0.0100211 0.0383173 0.0131334 +-0.0469913 0.0345734 0.0373898 +0.0117235 0.127254 -0.00315056 +0.0163555 0.0343012 4.3653e-05 +-0.000810177 0.084021 -0.0366442 +-0.0417008 0.153622 0.00625938 +-0.0695833 0.156717 -0.0509483 +-0.00967078 0.0541668 -0.0336446 +-0.0862734 0.13657 0.044609 +0.0363518 0.0562159 0.0330449 +-0.0528028 0.0666303 0.0365007 +0.0263615 0.0352587 0.00303932 +0.00111992 0.10872 -0.0203906 +0.00958242 0.0350342 0.0036093 +-0.0639107 0.108163 -0.0148371 +-0.00462988 0.0451748 -0.0282624 +0.00356053 0.130245 0.0239041 +-0.0428482 0.128274 0.00047704 +-0.0896015 0.136498 0.0242003 +-0.011119 0.163582 -0.018751 +-0.0521911 0.0531856 0.0256383 +0.02777 0.0808734 0.0454779 +0.0197898 0.0754906 0.0515075 +-0.0405912 0.0404909 -0.0262976 +-0.0184208 0.185917 -0.0222223 +-0.0738815 0.117926 -0.00764413 +0.0124741 0.0346639 0.0372734 +-0.057552 0.0336321 0.0166122 +0.0220421 0.0848959 0.0495666 +0.0184956 0.0962193 0.0472822 +-0.0577255 0.0578321 0.0166151 +0.00647696 0.11413 0.0402504 +-0.073854 0.100736 -0.0128364 +-0.0528758 0.0985097 -0.0219976 +0.0185485 0.111232 -0.0158588 +0.0257216 0.0672521 0.0441644 +-0.000523566 0.0428273 0.0465064 +-0.0354915 0.050532 0.0385401 +-0.0294972 0.0602632 0.0372614 +0.00410653 0.111609 -0.0202712 +0.0583904 0.0706508 0.00920486 +-0.0644959 0.084745 0.0443622 +-0.0182219 0.0954777 -0.0312615 +0.0163111 0.0608546 -0.0282401 +-0.0725001 0.120391 0.0535845 +-0.0164977 0.0828905 0.0574138 +0.0130474 0.0490028 0.046739 +-0.072956 0.173805 -0.0388399 +-0.0264766 0.0576077 -0.0284232 +-0.0644961 0.0602892 0.0183972 +0.0357477 0.074144 -0.0137952 +-0.0655596 0.171143 -0.0433207 +-0.0784904 0.133065 0.0521095 +-0.0651287 0.156206 0.0175513 +-0.0205565 0.183109 -0.0139659 +-0.0680156 0.156066 0.0121787 +0.0233417 0.0549864 0.0441504 +-0.0745084 0.134461 0.0510337 +-0.0489659 0.12587 -0.00699728 +-0.0422261 0.0339521 -0.0076663 +0.00337017 0.091416 -0.0329064 +0.040054 0.0998936 -0.00479776 +-0.0939204 0.128289 0.0212475 +-0.0301543 0.157156 -0.0110394 +-0.0456539 0.0606919 -0.0125779 +-0.0534986 0.0833862 0.0450488 +-0.047648 0.0614917 0.0367154 +-0.0486267 0.13356 0.00299082 +-0.0895466 0.0969995 0.0164128 +-0.0339552 0.0695264 -0.0185169 +-0.0176031 0.0711548 0.0545194 +0.0454033 0.0457238 -0.00184235 +-0.0546836 0.0478194 0.0276676 +-0.0875304 0.0861027 0.015468 +0.00919687 0.124582 -0.00824181 +0.0404579 0.0971405 0.0281735 +0.0219677 0.0346711 0.00269802 +-0.0114833 0.0618754 0.0549615 +-0.0209254 0.127401 0.0135903 +-0.0681737 0.074979 0.0383298 +-0.0357386 0.176065 -0.00515676 +0.0340797 0.115381 0.00660331 +-0.0207606 0.0670735 -0.0371287 +-0.075369 0.155134 0.0270903 +0.000773445 0.126081 0.0315854 +0.0414985 0.058326 0.0311197 +-0.03873 0.0340634 -0.0163036 +-0.0929281 0.121393 0.0102886 +-0.0680681 0.061235 0.0168081 +-0.0756991 0.0688679 0.00254149 +-0.0138611 0.0386244 0.0283378 +-0.0806333 0.120347 0.049427 +-0.0534714 0.115278 0.0343029 +-0.0365049 0.169731 0.000981263 +-0.0624922 0.100117 0.0423224 +0.00907886 0.126317 -0.00613291 +-0.0935493 0.125561 0.0262639 +0.022475 0.0933993 0.047467 +-0.015827 0.0921385 -0.0358122 +-0.0210449 0.0384562 -0.0168371 +-0.0207268 0.0612423 -0.0346723 +-0.0134967 0.109686 -0.0201653 +0.0456137 0.0708816 0.00289794 +-0.0090863 0.16966 -0.0247514 +-0.0889386 0.0888873 0.0194501 +-0.0532128 0.133944 -0.00360453 +0.0195053 0.0351963 0.0310168 +-0.0255119 0.104394 0.0424048 +-0.0174974 0.103031 0.0436129 +-0.0299173 0.0383162 -0.0299848 +0.00451386 0.0856474 0.057126 +0.0147725 0.0939169 -0.0254338 +0.0242867 0.0719771 -0.0256393 +0.0172719 0.0348529 0.0254373 +0.0558147 0.064873 0.0261542 +-0.0364911 0.0662596 0.041455 +-0.0758603 0.151341 -0.0198831 +-0.0616679 0.0643653 -0.00651734 +0.0383551 0.0603737 0.0324667 +-0.0477542 0.0782681 -0.0190718 +-0.0550269 0.0560444 -0.00440953 +-0.0395059 0.0972892 0.042147 +-0.0777926 0.167262 -0.0295303 +0.0604641 0.0623144 0.017179 +-0.0777137 0.177848 -0.0500546 +-0.0521757 0.0461175 0.0166821 +-0.0754874 0.130275 0.0528009 +0.0116887 0.0343979 -0.00472037 +-0.0617898 0.16156 -0.0335933 +0.0442649 0.0973538 0.00716867 +-0.0616258 0.0641254 0.029779 +0.00550935 0.0688576 0.0555484 +-0.053845 0.0955972 -0.0217935 +0.00741716 0.0375454 -0.0236134 +-0.0596132 0.113903 0.0363038 +-0.0508811 0.108424 -0.0190099 +-0.0437584 0.079737 -0.0197567 +-0.0733029 0.15632 0.000130521 +-0.003234 0.0960652 -0.0317479 +-0.0575581 0.0507849 0.00163524 +0.00435827 0.129372 -0.0013469 +-0.025212 0.123605 0.0223303 +-0.0669175 0.115159 -0.00990572 +-0.0722654 0.153589 0.032663 +-0.0147591 0.033582 -0.024214 +-0.00115893 0.11911 -0.0142672 +0.019441 0.0384709 -0.0146972 +-0.0772499 0.172214 -0.0459981 +-0.069531 0.14702 0.0417131 +-0.0343373 0.0443897 -0.0277936 +-0.0705699 0.152776 -0.0468148 +-0.0918951 0.117319 0.00831437 +0.0103421 0.0567446 -0.0299462 +-0.0336919 0.119642 -0.0105178 +-0.0629712 0.145905 -0.0115915 +0.00646739 0.0342464 -2.28584e-05 +0.00713618 0.103008 -0.0210892 +-0.018026 0.0384381 0.0276504 +0.0433583 0.0505545 -0.0063311 +-0.0882504 0.0900881 0.0054683 +0.00248872 0.118285 0.0387448 +-0.0227774 0.0713561 -0.0378898 +-0.0154972 0.122303 0.0324651 +-0.0322294 0.0708154 -0.0244722 +-0.025189 0.174162 -0.0196112 +-0.0871031 0.0846537 0.0064784 +0.00836869 0.0928852 -0.0303774 +-0.0424793 0.0958739 0.0423242 +-0.0640607 0.152536 -0.00179872 +0.00949301 0.118213 -0.015379 +0.0461867 0.0806341 0.00618373 +-0.0408599 0.102809 -0.0209257 +-0.0431187 0.159159 -0.0099383 +-0.0154785 0.0828416 0.0569929 +-0.0775215 0.161144 -0.0189221 +0.0358655 0.112954 0.0143927 +-0.0759551 0.131077 -0.00722143 +0.0465282 0.0726943 0.00507292 +-0.0784776 0.134439 0.0514602 +-0.0718916 0.0995338 0.0398851 +0.0174027 0.127944 0.018931 +-0.0494895 0.143125 0.00338457 +0.0333197 0.0357288 0.0133458 +0.0132595 0.0751478 -0.0304595 +-0.0324893 0.100164 0.0432113 +0.0343769 0.112004 0.0266888 +-0.0108703 0.180136 -0.0264173 +-0.0872312 0.1132 0.0437313 +0.0353616 0.106017 0.0302164 +-0.0282335 0.0382933 0.0310718 +-0.0646654 0.132541 0.0415985 +-0.0416682 0.0336125 -0.0201879 +-0.0690362 0.134069 0.0476421 +0.023852 0.057789 0.0449027 +0.0440963 0.0735854 0.0249308 +-0.0624573 0.163073 -0.0525854 +-0.0341025 0.169759 -0.00204136 +0.0589446 0.0649523 0.0051412 +-0.0602752 0.0336649 0.0124615 +-0.0628859 0.1495 -0.0200671 +-0.0722644 0.0671374 -0.000515551 +0.0135851 0.0658847 0.0529797 +-0.00198691 0.0368792 0.0142478 +0.0367682 0.0700097 -0.0138015 +-0.0296169 0.0408892 -0.0298249 +-0.0376612 0.0606745 -0.0122764 +0.00800811 0.0345328 -0.00370443 +0.0105539 0.104067 -0.0202515 +-0.0488192 0.0586801 0.0351334 +-0.0557857 0.0840569 -0.0214422 +0.0308153 0.0525508 -0.0137522 +0.0423969 0.0451283 0.0286278 +-0.0332147 0.036763 0.0499127 +-0.0736682 0.0730938 -0.00832442 +-0.0175484 0.124749 0.0265509 +-0.063425 0.163107 -0.0254606 +-0.0727351 0.0832969 0.03983 +0.0319929 0.088146 -0.0193446 +-0.0444371 0.122416 -0.011439 +-0.0858505 0.116285 0.047652 +-0.00444148 0.0916785 -0.0352643 +0.022957 0.0981907 0.0456622 +-0.053144 0.0595659 0.0253997 +-0.0788525 0.107465 0.0324362 +-0.0457478 0.130844 0.0207105 +-0.0684896 0.172346 -0.0400602 +-0.034733 0.0498868 -0.0123113 +0.0415062 0.0499285 0.0325086 +-0.0665679 0.0404538 -0.00528616 +-0.00650346 0.112991 -0.0197156 +-0.0448474 0.0999398 -0.0215303 +-0.0816586 0.137613 -0.00180043 +-0.0585618 0.124728 -0.00774237 +-0.0466281 0.0592297 -0.0120314 +-0.0670784 0.0653289 0.0275882 +-0.0835882 0.125784 0.0507488 +-0.0164643 0.0842755 0.0572298 +-0.0904705 0.135055 0.0132171 +-0.022546 0.116788 0.03495 +-0.0334891 0.091814 0.044517 +-0.0719917 0.151909 0.0358108 +-0.0151953 0.168341 -0.0151527 +-0.0590718 0.156479 0.0080978 +-0.0154402 0.120098 -0.0111735 +-0.036496 0.17271 -0.000384966 +0.0392898 0.0993144 0.028831 +0.024983 0.0795787 0.048494 +0.0483695 0.0734096 0.0143189 +0.0196959 0.0394038 0.04222 +-0.00886334 0.103392 -0.0235214 +-0.0118005 0.0841384 -0.0387163 +0.0252205 0.0888413 -0.0232794 +0.0298168 0.052105 0.0376191 +-0.0776927 0.169444 -0.0419634 +-0.0314915 0.057461 0.0373842 +-0.0504539 0.0558071 0.0326022 +0.0138422 0.0901622 -0.0294996 +-0.0510104 0.149266 0.0138316 +-0.0341485 0.0337694 0.0159272 +-0.085608 0.144617 0.0380805 +-0.0475132 0.0875996 0.0450977 +-0.091127 0.143391 0.0261688 +-0.0781968 0.0778917 0.0320122 +0.0284509 0.104793 -0.0149826 +-0.0223025 0.0957816 -0.0275832 +-0.0179573 0.123303 -0.00653742 +0.0369901 0.111103 0.00416682 +-0.0643667 0.159406 -0.0155654 +-0.0701684 0.165994 -0.0191552 +-0.0863906 0.0819518 0.00951177 +-0.0224965 0.100254 0.0443771 +-0.0757302 0.147214 -0.00986768 +0.0357939 0.0699287 -0.0148404 +-0.0376499 0.0577418 -0.0112619 +0.019292 0.0988007 -0.0225555 +-0.00992376 0.097544 0.0521376 +-0.0493712 0.0572598 0.0342952 +0.0255474 0.054922 0.0420386 +-0.0494259 0.144129 0.00171058 +-0.0624989 0.104282 0.0409609 +-0.0430319 0.0336432 -0.0167728 +0.0179185 0.121996 -0.0074786 +-0.0190623 0.127503 0.00554509 +-0.0474205 0.145822 -0.000777163 +0.0526083 0.0475984 0.0212218 +0.00022388 0.0797271 -0.0356555 +-0.0301525 0.168207 -0.0169318 +-0.00151732 0.0576213 0.0542293 +-0.00248496 0.0548872 0.0545581 +-0.0502022 0.12654 -0.00566411 +-0.0529063 0.0676787 0.0373317 +0.00249985 0.107203 0.0424791 +0.0029144 0.125773 -0.00745627 +0.00334453 0.0496343 -0.0297987 +0.00449641 0.11692 0.039168 +0.0399282 0.041091 0.0244564 +0.0178192 0.126124 0.0248053 +-0.0799402 0.132433 -0.00455304 +-0.0649027 0.179945 -0.0575726 +0.0404255 0.0914089 -0.00978781 +-0.065797 0.132562 0.0435297 +-0.0372368 0.172627 -0.0118528 +-0.0554974 0.10569 0.0407246 +-0.076892 0.165957 -0.0247772 +-0.0587093 0.0344925 0.0418625 +0.00823978 0.0768076 -0.0338586 +-0.0626545 0.150596 -0.0225786 +-0.0384668 0.0931237 0.0434147 +0.0141618 0.0576523 0.0502255 +-0.0683767 0.176522 -0.0580176 +-0.0129882 0.119781 -0.0128781 +0.00848559 0.0950467 0.0516302 +-0.0429797 0.127137 -0.00436425 +-0.0497252 0.141657 0.00538484 +-0.0179056 0.127636 0.0191062 +-0.0520277 0.0563658 0.0215194 +-0.02384 0.0968692 -0.0247025 +-0.0561697 0.0684762 0.0377129 +0.0120601 0.0343849 -0.00838478 +0.0299331 0.0362092 0.00288494 +-0.0763652 0.1528 -0.0108857 +-0.0736067 0.154075 -0.0289008 +0.00533532 0.0538992 -0.0301758 +-0.0599208 0.0394628 0.0453423 +-0.0184879 0.0856371 0.0571362 +-0.0208094 0.0376226 -0.0178912 +-0.0137231 0.183161 -0.0241068 +-0.0648137 0.0346657 0.0352478 +-0.0271872 0.0379033 0.0118238 +0.0264669 0.0477487 0.0380114 +-0.0723733 0.0352474 0.00704331 +-0.0322701 0.0835031 -0.0295487 +0.0272688 0.122366 0.00977001 +-0.0603093 0.0652594 0.0325934 +-0.00180254 0.0385071 0.00372255 +-0.0522762 0.123638 -0.00859751 +-0.0776201 0.171284 -0.03689 +-0.0802965 0.0872747 0.0345612 +-0.0889001 0.136394 0.00820864 +0.000412609 0.0393166 0.0342543 +-0.0642567 0.0344972 0.033776 +-0.0921303 0.11612 0.0363104 +-0.0679654 0.134068 -0.0084026 +-0.0839818 0.115583 0.0478751 +-0.00536465 0.129031 -0.000823415 +0.00514522 0.103044 -0.0216473 +-0.0496209 0.0517545 -0.00857532 +-0.0757023 0.177226 -0.0456228 +-0.0298766 0.05514 -0.0203901 +-0.0861039 0.0846923 0.0224682 +-0.0238144 0.0879301 0.05313 +-0.0611505 0.153585 0.0321143 +-0.0917527 0.113836 0.0170127 +-0.0374964 0.0591338 0.0402834 +-0.0187977 0.0799028 -0.0389405 +-0.0680553 0.17056 -0.0341587 +-0.0658521 0.0361993 0.0388506 +0.0111435 0.100252 -0.0225401 +-0.0425873 0.125894 -0.0070983 +-0.0265027 0.0498541 0.0461184 +0.00111147 0.110147 -0.0201294 +-0.00249391 0.119678 0.0379989 +-0.0117585 0.0742488 -0.0381827 +-0.0586841 0.0466878 -0.00234651 +0.0295244 0.0750328 -0.0218147 +-0.0218606 0.101624 -0.0238704 +0.0287102 0.0942447 0.0434182 +-0.0709345 0.0627948 0.0166551 +-0.0225064 0.10717 0.041634 +-0.0335027 0.074683 0.04142 +-0.092242 0.128315 0.0292604 +-0.0374976 0.0888821 0.0433743 +0.0303768 0.0578247 0.0402716 +-0.00891857 0.0338467 -0.0251248 +-0.0533378 0.162724 0.0010506 +-0.0869041 0.141929 0.0394374 +-0.047972 0.135544 0.0173874 +0.0485157 0.0597129 0.0310438 +-0.00667005 0.0904165 -0.0359686 +-0.0759966 0.0994807 0.0369297 +-0.0625222 0.149113 -0.00558111 +-0.0718118 0.14996 0.0389054 +-0.0844416 0.147376 0.00515339 +-0.0165344 0.0392124 0.0380479 +-0.079893 0.0949635 -0.0095262 +0.0236407 0.0347514 0.0177381 +-0.0196654 0.0683158 0.0524244 +0.0245994 0.0981921 0.0445203 +-0.0849795 0.0952966 -0.00257745 +-0.0528207 0.121242 0.0358805 +-0.0236049 0.0394052 -0.0289635 +-0.0332166 0.165305 -0.0043102 +-0.0251865 0.160795 -0.0139572 +-0.0865509 0.152927 0.0144746 +-0.0693964 0.157876 -0.00437702 +-0.0628145 0.169399 -0.0485883 +-0.0643644 0.153473 -0.0380226 +-0.081904 0.115723 0.0482136 +0.0101277 0.0911581 -0.0305812 +-0.0405043 0.0944618 0.0422679 +0.021919 0.118008 0.0336347 +-0.0203338 0.123782 -0.00500918 +0.0111252 0.108699 -0.019265 +-0.0574976 0.0776487 0.0433498 +-0.0354848 0.0987251 0.0428224 +-0.0651932 0.141087 0.0409428 +-0.0240513 0.0386342 -0.0120079 +0.039324 0.106993 0.0191699 +-0.0754947 0.142836 0.0460912 +-0.0122699 0.0338184 -0.0220638 +-0.0246982 0.0551057 0.0409028 +-0.0578691 0.105465 -0.0183362 +-0.0264983 0.10435 0.041876 +-0.07915 0.166638 -0.0349654 +-0.0578202 0.140285 -0.0045343 +0.0220783 0.0686046 0.0476717 +-0.0770892 0.107143 -0.00760422 +-0.0902136 0.13513 0.0232187 +-0.0723372 0.156305 0.0208189 +-0.0650055 0.135525 -0.0079735 +-0.0549293 0.154823 0.0139773 +0.0292317 0.0773621 -0.0219141 +-0.0817276 0.0964548 -0.00656413 +-0.018203 0.175668 -0.0239316 +-0.0553377 0.0457536 -0.00639551 +-0.0161975 0.0432999 0.0517769 +0.0304284 0.0383851 -0.001443 +-0.0345483 0.152531 -0.00560476 +-0.0629676 0.160574 -0.0208244 +-0.0935783 0.124186 0.0262856 +-0.0311645 0.0580869 -0.017406 +-0.0317989 0.0382037 0.00155838 +0.0576172 0.0686777 0.0217698 +-0.00505811 0.0339518 -0.0207718 +-0.0696447 0.166615 -0.0510113 +-0.0629867 0.155807 0.0241223 +-0.0340215 0.0794269 -0.0255119 +-0.0867747 0.0981404 0.0024092 +-0.0880604 0.13085 0.0022566 +0.0184887 0.0948214 0.0475148 +-0.021497 0.0988475 0.0444941 +-0.0416678 0.0592681 -0.0121392 +-0.0567258 0.0480405 0.0316684 +-0.0423133 0.129133 0.00872164 +-0.000508444 0.105851 0.0435843 +-0.0592465 0.046889 0.0316721 +0.0461219 0.0806353 0.0161697 +-0.0281528 0.0348412 0.0481365 +-0.0702797 0.180333 -0.0522624 +-0.0478122 0.134031 0.00640478 +-0.0077489 0.0713239 -0.0366154 +-0.0122439 0.168894 -0.023749 +0.0212552 0.0777078 -0.0266851 +-0.0917522 0.132325 0.0122241 +-0.0361034 0.165201 -0.01444 +-0.052501 0.0805516 0.0443114 +-0.0654153 0.0336345 0.00606909 +-0.0623235 0.139333 -0.00679766 +-0.0616576 0.170967 -0.0555865 +0.00174509 0.0392548 -0.00741822 +-0.0260001 0.0677977 0.0418131 +-0.0684331 0.0336931 0.00540027 +-0.0448348 0.0942101 -0.0220316 +-0.0731091 0.158237 -0.0329184 +0.0078778 0.0989406 -0.0227671 +0.0314417 0.115539 0.0270138 +-0.00906667 0.129748 0.004892 +0.00649868 0.108551 0.0413323 +-0.0382124 0.150071 -0.00262103 +0.0332799 0.0564373 0.0374441 +-0.00349826 0.0647878 0.0565544 +-0.0487816 0.084091 -0.021606 +-0.0568391 0.118972 -0.0116757 +-0.0644875 0.156696 -0.0456027 +-0.0411616 0.152146 0.00524032 +-0.0636742 0.142603 -0.0078783 +-0.0711318 0.0777267 0.0384114 +0.00321355 0.0796602 -0.0346071 +0.00447281 0.110003 0.0420134 +-0.0174998 0.0772311 0.0559767 +-0.0263139 0.182659 -0.010558 +-0.0322455 0.15809 0.00238998 +0.045843 0.0760483 0.0203743 +-0.0548028 0.0464121 0.0246755 +-0.0376206 0.0376543 -0.029358 +-0.0523414 0.0402098 0.0465679 +-0.0432186 0.121963 0.0262727 +-0.0321664 0.125608 0.018357 +-0.0857232 0.0792432 0.0155047 +-0.0782439 0.151233 0.0351897 +-0.0187146 0.058392 -0.0343021 +0.0452185 0.0847535 0.00320441 +-0.0640415 0.167322 -0.0369994 +-0.0823499 0.132665 0.0507367 +-0.0301219 0.0493909 -0.0214267 +-0.0843946 0.0818335 0.0225112 +-0.0246526 0.0386383 0.0332956 +0.0563147 0.0580894 0.0250386 +0.00021169 0.0389894 0.029096 +-0.00241379 0.126666 -0.00637642 +-0.0301429 0.0551656 -0.0193914 +0.0331811 0.0417541 0.0279348 +-0.0861938 0.104994 0.0213645 +-0.0824118 0.0788951 -0.000494108 +-0.0743937 0.157452 -0.00470821 +0.0187225 0.127515 0.0179893 +-0.0829047 0.0763015 0.0175246 +-0.0650238 0.0641454 0.0272956 +0.0355567 0.0878311 -0.0169845 +-0.0887171 0.117597 0.0462102 +-0.0760085 0.141318 -0.005968 +-0.0127703 0.0756733 -0.0384193 +-0.0158456 0.122449 -0.00760827 +-0.0842393 0.107513 0.00238784 +-0.0674898 0.0986608 0.0416951 +-0.0554949 0.0427291 0.0458455 +-0.0201912 0.0383436 0.00560257 +-0.0372682 0.0344921 0.0377782 +-0.0357437 0.0380351 0.0467216 +-0.0450103 0.054631 0.0385549 +-0.0369768 0.047531 -0.0185543 +0.0520769 0.0581909 0.0294992 +-0.0329038 0.153455 -0.00604291 +-0.0725184 0.128806 0.0519752 +-0.0270556 0.0706113 0.0413767 +-0.0285061 0.116641 0.0323888 +-0.0144886 0.109993 0.0419529 +-0.0285168 0.0803552 -0.0356291 +0.00952067 0.0702149 0.0551678 +-0.0355616 0.151785 -0.00432824 +-0.0826529 0.0796856 0.0277856 +-0.0365963 0.127614 0.0137714 +-0.0657008 0.139678 0.041893 +-0.0758694 0.0777615 0.0343673 +-0.00737907 0.0367231 0.0491533 +-0.0704775 0.114632 0.0510417 +-0.059558 0.128315 0.0402204 +-0.0538405 0.0941624 -0.0218364 +-0.0274601 0.124651 0.00100866 +-0.0637125 0.0705931 -0.0131267 +-0.0644549 0.043254 0.0326925 +-0.0746657 0.154121 -0.0198989 +-0.0348879 0.043516 0.0457289 +-0.0234602 0.17569 -0.0129988 +-0.0720698 0.176015 -0.0442709 +-0.043544 0.157959 0.00535766 +-0.0407405 0.0739506 -0.0180651 +-0.0696125 0.150354 -0.0430103 +0.0418343 0.0943991 0.0271656 +-0.0932461 0.129666 0.0232459 +-0.0398464 0.0957237 -0.0225845 +-0.0764914 0.171559 -0.0359139 +0.0408836 0.0614281 -0.00367417 +-0.0356978 0.0346221 -0.0180732 +-0.0895729 0.151493 0.0191084 +0.0263253 0.122966 0.0165355 +0.0113407 0.0567362 -0.0298085 +-0.0736511 0.180693 -0.0540178 +-0.042544 0.16227 0.00511409 +-0.0522198 0.0374253 0.0467614 +-0.0777691 0.0689598 0.0151422 +0.0463347 0.0428813 0.020444 +0.0509435 0.0554131 0.029582 +0.0233146 0.125046 0.00829766 +0.00834665 0.0958673 -0.0275066 +-0.00680856 0.127356 -0.00506622 +-0.0554704 0.157309 0.00940753 +-0.0754721 0.103526 0.0362863 +0.044978 0.086159 0.0221711 +-0.0716236 0.170198 -0.0283222 +-0.0196387 0.0464931 -0.0280998 +0.0569791 0.0686933 0.0226042 +-0.0233118 0.182976 -0.0180572 +0.0290367 0.060539 0.0418753 +-0.0708458 0.0980019 -0.0152545 +-0.044501 0.0562098 0.0390177 +-0.00787685 0.105931 -0.0227718 +-0.0774743 0.140015 0.0480697 +0.0275361 0.10477 0.0382193 +0.00254476 0.127971 -0.00383507 +0.0235041 0.108407 0.0388101 +-0.055098 0.146723 0.029184 +-0.0257112 0.0634738 0.0402437 +0.0222133 0.103397 0.0428172 +0.0239484 0.0901184 -0.0234122 +-0.0265532 0.080945 0.0504296 +-0.0801014 0.0881671 -0.00858727 +-0.0467634 0.0560036 0.0374321 +0.0562967 0.0661688 0.0251012 +-0.0323569 0.124066 -0.00320487 +-0.00891511 0.126415 -0.00600997 +0.0343206 0.094597 -0.0141158 +-0.0876587 0.151372 0.0112162 +-0.0723621 0.114661 0.051285 +-0.033385 0.126374 0.00317306 +-0.0465636 0.146777 -0.00183655 +-0.0086601 0.174145 -0.0268323 +0.0224333 0.0422246 0.0409441 +-0.0723219 0.171178 -0.0314543 +-0.0633454 0.159973 -0.0185957 +-0.0741825 0.156237 0.0158024 +0.0283215 0.117455 0.0287048 +-0.0518625 0.050332 0.0226347 +-0.0345112 0.112532 0.034973 +0.0102504 0.0766955 -0.0323547 +-0.0628937 0.146875 -0.0135938 +-0.0913593 0.126907 0.0414668 +-0.0755221 0.11896 0.0528247 +-0.0186351 0.0933648 0.0534492 +-0.00679579 0.0826768 -0.0377354 +0.00822704 0.0782053 -0.033734 +-0.0942744 0.126919 0.0202522 +-0.0462848 0.131856 0.0204922 +-0.05065 0.0706021 0.0388719 +-0.00522459 0.0384215 0.0122026 +-0.0524927 0.0987339 0.0429361 +-0.0388306 0.112851 -0.0174267 +-0.0268641 0.101582 -0.02361 +-0.0846396 0.153647 0.0136585 +0.0166715 0.0353808 -0.0156588 +-0.0553627 0.139574 0.0304759 +-0.0257886 0.0768981 -0.036857 +-0.0402218 0.0342366 0.0285657 +-0.045101 0.156152 -0.00816042 +-0.0348248 0.0473223 0.0413292 +0.0145592 0.0672414 0.0526521 +-0.0436275 0.0548777 -0.0111987 +-0.0248971 0.163359 -0.0156802 +-0.0449755 0.115277 -0.0159431 +-0.0492995 0.0345621 0.0403913 +-0.0257365 0.0348667 0.0503471 +-0.0754593 0.159053 -0.00907047 +-0.0632614 0.0601538 0.00426714 +-0.0265686 0.0382637 0.0296453 +-0.0355718 0.165308 -0.0024565 +-0.0727498 0.180616 -0.0549771 +-0.0381364 0.171203 -0.0118442 +0.0153228 0.0362397 0.00366285 +-0.0383106 0.0336688 0.00433881 +-0.0125102 0.0897843 0.0566766 +-0.0484982 0.0890084 0.0450201 +-0.0889791 0.0915153 0.00944503 +-0.0511466 0.124736 -0.0077758 +-0.00758688 0.0376797 -0.0254717 +-0.0509981 0.147813 0.0138388 +-0.0147745 0.0382944 0.014 +-0.0305049 0.0617476 0.0379767 +-0.0109155 0.0356188 0.0494667 +-0.0703667 0.142544 -0.0104932 +-0.0424925 0.0902452 0.0426486 +0.0099296 0.113714 0.0390911 +0.0145599 0.088488 -0.0297413 +-0.00249512 0.122376 0.0359373 +-0.0216559 0.0972103 0.0449705 +-0.0717874 0.0850294 -0.0163139 +0.0281202 0.0348895 0.0148787 +-0.0582075 0.154657 0.0258383 +0.0103893 0.0434318 -0.0247637 +0.0283214 0.115107 0.0315696 +-0.0408808 0.115001 -0.0156637 +-0.0569818 0.0548922 0.00263009 +-0.0347008 0.0666358 -0.0153327 +-0.0518449 0.146252 0.0164181 +-0.0388328 0.0943088 -0.0230504 +-0.0315145 0.0788556 0.0411289 +0.0268942 0.0988154 -0.0185978 +-0.0875561 0.0968363 0.00343541 +0.0426825 0.0805137 0.0283126 +-0.0683872 0.0690317 0.0328821 +-0.0609319 0.0343399 0.0363539 +-0.0258016 0.0867079 -0.0364604 +-0.0891389 0.120288 0.0465529 +-0.062692 0.155999 0.0140721 +0.0223974 0.0473356 -0.0199928 +-0.0616833 0.0676348 -0.0109359 +-0.0752375 0.0864841 -0.0145142 +0.014283 0.0681091 -0.0306905 +-0.0603219 0.0470192 0.0356706 +-0.015495 0.104397 0.0428489 +-0.0698499 0.0994423 -0.0150141 +-0.0293842 0.08757 0.0444817 +-0.00548831 0.112771 0.0416249 +-0.0120723 0.0353434 0.0494553 +0.0118631 0.0894057 -0.0307263 +0.0362901 0.0769906 -0.0138255 +-0.0372663 0.033541 -0.0229762 +0.0110129 0.0846936 0.0546683 +-0.0563673 0.0575771 -0.00141956 +0.0162242 0.0835192 -0.0290783 +-0.0466776 0.13337 0.0173732 +0.0116668 0.0548951 0.0518589 +-0.0175019 0.0758159 0.0556202 +-0.0865692 0.133541 0.00131146 +-0.0366797 0.0636525 -0.0138021 +-0.074087 0.0734714 0.0331119 +-0.0762512 0.156264 -0.00677505 +-0.0414995 0.168206 0.00296291 +0.0023065 0.128418 0.0277808 +-0.0141822 0.0378114 0.0510973 +-0.0674332 0.127053 0.0499702 +-0.0482072 0.0335431 -0.012174 +-0.072499 0.117558 0.0529308 +-0.0281279 0.03862 -0.0128123 +-0.0616129 0.149191 -0.00221638 +0.0436181 0.0416961 0.0210317 +-0.0758657 0.097813 -0.01246 +-0.0818672 0.120683 -0.00433302 +0.00940058 0.0342529 -0.0182643 +-0.018805 0.0625267 0.0503254 +-0.053876 0.126919 0.0361236 +-0.0884983 0.0941957 0.00744581 +-0.0165005 0.120964 0.0336371 +0.0433486 0.0519969 -0.00665823 +-0.0624811 0.149792 0.0367836 +-0.0615025 0.16984 -0.0615386 +-0.0364388 0.0352264 0.0443258 +0.0340769 0.0556934 -0.0107486 +-0.00261634 0.0450445 -0.0274328 +-0.0328486 0.0986298 -0.0228073 +0.0198481 0.0795335 0.0516115 +-0.0599778 0.148254 0.0362061 +-0.00849422 0.0674811 0.0555845 +-0.0530196 0.144246 -0.000696127 +-0.0836424 0.0924862 -0.00555232 +-0.0691184 0.165207 -0.0519806 +-0.0305063 0.111166 0.0367005 +-0.0447319 0.125394 0.0226968 +-0.0165708 0.056922 0.0510974 +-0.0568794 0.0548721 0.000601057 +-0.0355126 0.10012 0.0421792 +-0.00149054 0.131258 0.0163007 +-0.0814469 0.0761204 0.000521161 +-0.0700369 0.0765697 0.0383694 +-0.0791449 0.166643 -0.0339646 +0.0151117 0.0434234 0.0444141 +-0.0568399 0.0344097 0.0371692 +-0.0180623 0.177182 -0.017491 +0.0492456 0.0728121 0.0176064 +-0.0178752 0.105871 -0.0225888 +0.00334696 0.0342028 0.0159318 +0.0153617 0.0344714 0.021761 +-0.0945397 0.121475 0.0202819 +-0.073516 0.18065 -0.0535934 +-0.0934071 0.117385 0.0163015 +-0.0631359 0.0699525 0.0366992 +-0.0252161 0.0550594 0.0400126 +-0.00605897 0.125119 0.0321155 +-0.0360017 0.17408 -0.0118959 +-0.00638198 0.124385 -0.00985914 +-0.0145975 0.0378025 -0.0168233 +0.00417447 0.127894 0.028461 +-0.0410286 0.0345047 0.0334549 +0.0292997 0.0538256 -0.0177694 +0.0372061 0.0980869 0.0328651 +-0.0745356 0.104026 0.0368301 +-0.00436707 0.0386778 0.0266309 +0.0189949 0.0449386 0.0430002 +0.00529011 0.0668325 -0.0327227 +0.00166319 0.130955 0.0203219 +-0.0905947 0.115833 0.0426569 +0.00338984 0.116722 -0.0177517 +0.0203176 0.126182 0.0214303 +-0.0598293 0.139488 -0.00569497 +0.0142784 0.11622 -0.015243 +0.0231289 0.0835821 0.0493611 +0.0515475 0.0540038 0.0286923 +-0.0317664 0.058161 -0.0143983 +-0.0397537 0.0782783 -0.0191449 +0.012627 0.12184 0.0342326 +-0.0823735 0.148711 0.0361489 +-0.012301 0.110982 -0.0195491 +-0.0883046 0.122998 0.0470686 +-0.0315077 0.113893 0.0345441 +-0.0888952 0.137894 0.0271916 +-0.0610259 0.126912 0.0416133 +-0.0475344 0.05323 0.0369443 +-0.00961348 0.0434416 -0.0262361 +-0.0541404 0.124102 0.0375109 +0.0509994 0.044648 0.0132154 +0.0303038 0.118886 0.0223059 +-0.0596345 0.0336285 0.0108415 +-0.0196267 0.0450293 -0.0277098 +-0.0247099 0.0381195 0.00851258 +-0.0774982 0.133088 0.0521596 +0.0276359 0.0629152 -0.0215123 +0.0535119 0.0717543 0.00602975 +-0.0334971 0.0831472 0.0419572 +-0.0596476 0.14187 -0.00422882 +-0.0924522 0.125595 0.0392516 +-0.068714 0.143769 -0.0144235 +-0.0468988 0.126761 -0.00595632 +-0.0303571 0.0537911 -0.0173707 +-0.0709316 0.147597 -0.0300096 +-0.0514754 0.115278 0.0338114 +0.0190263 0.120653 0.0329746 +-0.0340031 0.1089 -0.0192874 +-0.0335001 0.116617 0.0321346 +-0.0671562 0.0724925 0.0371747 +-0.0746759 0.152711 -0.0238933 +-0.0590669 0.120714 -0.00943474 +0.00548706 0.108567 0.0416722 +-0.0114996 0.101652 0.0440245 +-0.0649779 0.141437 -0.00794337 +0.0112608 0.130411 0.00668952 +0.0436616 0.0987354 0.0121603 +-0.0558948 0.101262 -0.0199275 +-0.0309036 0.0436875 0.0502489 +0.0142962 0.0652331 -0.0300484 +0.000574283 0.0347216 0.0149023 +-0.00623443 0.0389648 -0.00688285 +-0.0810472 0.147398 0.0390836 +-0.0491606 0.0375682 0.0458781 +-0.055978 0.0534457 0.00767233 +-0.0685375 0.17487 -0.0458569 +0.0289287 0.100617 -0.0165368 +-0.0709835 0.0353942 0.00988845 +0.0337836 0.0754424 0.0400679 +0.041497 0.0527902 0.0324777 +-0.0204109 0.178661 -0.0155986 +-0.0623894 0.149097 -0.0105741 +-0.0644192 0.16051 -0.0170316 +-0.0350535 0.0346922 0.0433273 +-0.0740398 0.145796 -0.011857 +0.0214237 0.0444841 -0.0187153 +-0.0570526 0.113331 -0.0158151 +0.0134717 0.127798 0.0260714 +0.0324011 0.0446474 -0.00561054 +0.00231866 0.0568936 -0.0320023 +-0.0273763 0.112504 -0.0170987 +-0.0224223 0.072452 0.0507888 +-0.0614531 0.154118 0.0305097 +-0.0222065 0.179998 -0.0209469 +0.00315207 0.102056 -0.0221009 +0.0413778 0.0561233 -0.00592276 +0.037882 0.105959 0.026802 +-0.0607248 0.0722644 -0.016058 +0.00061382 0.126415 -0.00611002 +0.0592992 0.0566775 0.0181738 +0.0474969 0.0638142 0.0292952 +-0.0321069 0.162239 -0.0144989 +-0.0520198 0.147215 -0.00210798 +-0.0819286 0.0748755 0.0145293 +-0.0333602 0.0339348 0.0195439 +-0.0555018 0.0987713 0.0432834 +-0.0630837 0.164691 -0.0325918 +-0.0473982 0.0343754 -0.0164682 +-0.0807821 0.0980376 0.0332837 +-0.0645109 0.0370591 -0.00764757 +-0.085403 0.141865 0.00516647 +0.0420715 0.0859357 0.0292923 +0.0391529 0.107674 0.00402907 +0.024552 0.110059 0.0374287 +-0.0631521 0.0360725 0.0429133 +-0.0619885 0.156033 0.0186659 +-0.024223 0.17569 -0.0123366 +-0.0138299 0.0392302 0.0367944 +-0.0306217 0.126038 0.0115365 +-0.0714938 0.120397 0.053531 +-0.0869305 0.151358 0.010227 +-0.0788893 0.125151 -0.00625598 +-0.0447778 0.0409599 -0.0173005 +-0.09234 0.131039 0.0252374 +0.0321511 0.0724311 -0.0187615 +-0.0735819 0.0777026 -0.0122023 +-0.0678037 0.166983 -0.024036 +-0.0897153 0.135171 0.0332079 +-0.0447805 0.0840976 -0.0212945 +0.0371007 0.10968 0.00116733 +0.0112368 0.0836448 -0.0310335 +-0.036484 0.0505609 0.038833 +-0.0118972 0.116803 -0.015741 +-0.0346708 0.0621866 -0.0131726 +-0.0397664 0.0812015 -0.0202928 +-0.069532 0.172114 -0.0375728 +0.00626682 0.131047 0.00486423 +-0.0590022 0.0579904 0.014414 +-0.00972298 0.0642282 -0.0359259 +-0.0269413 0.181454 -0.0140289 +0.033222 0.0842418 -0.0188996 +0.00639168 0.0433788 -0.024537 +0.00926262 0.129557 0.000393265 +-0.00751646 0.0732149 0.0579299 +-0.0513203 0.142869 0.00077197 +-0.0288553 0.0385536 -0.0110371 +0.0555265 0.0728462 0.0170262 +-0.085954 0.146023 0.00719275 +-0.0371011 0.0461641 -0.0234326 +0.0579592 0.0537863 0.0201793 +0.0104003 0.0418913 -0.0239147 +-0.0396188 0.0505923 -0.0110041 +0.0326207 0.0944486 -0.0159568 +-0.0170933 0.0554767 0.0502631 +-0.0891859 0.139294 0.0371595 +-0.0637097 0.166224 -0.0345967 +0.00422867 0.0824562 -0.0341922 +-0.0594261 0.151258 -0.000475846 +-0.0552814 0.0464664 0.0256754 +-0.0424851 0.0776249 0.0430145 +0.0184693 0.111176 0.038468 +-0.0294978 0.0574079 0.0367222 +-0.0435452 0.0405422 0.0435069 +-0.0600989 0.0598417 0.00157193 +0.0526979 0.0525681 0.0268245 +-0.0625031 0.0602955 0.00246046 +-0.0675133 0.108346 0.0377589 +-0.00349512 0.111424 0.0424267 +-0.00549779 0.110034 0.0429298 +0.0164758 0.0713296 0.0519403 +0.0458506 0.0876137 0.00718075 +0.0244747 0.0400424 -0.00510986 +0.00547063 0.131454 0.017409 +-0.0728779 0.117943 -0.00788041 +-0.0142717 0.17714 -0.027303 +-0.0257193 0.0617764 -0.0314442 +-0.050991 0.0504175 0.03464 +0.00152343 0.0759482 0.0573355 +-0.0304944 0.064586 0.038393 +0.016253 0.0794879 0.0534651 +-0.00764651 0.0496471 -0.0308946 +-0.077844 0.0743656 -0.00558198 +-0.0326464 0.0563525 -0.0113988 +-0.061813 0.175696 -0.0586065 +-0.0681691 0.0682156 0.031879 +-0.0493845 0.0657885 0.0368321 +-0.019309 0.0362824 -0.0277788 +-0.063712 0.167032 -0.0383216 +-0.0379003 0.123041 0.0266516 +-0.000679533 0.0554388 -0.0315999 +-0.0886752 0.135106 0.0413889 +0.011146 0.128332 0.0266558 +-0.0740639 0.178692 -0.0478641 +-0.0809318 0.142082 0.0447817 +-0.00975763 0.0742329 -0.0379217 +-0.0600964 0.0334795 0.00370066 +-0.0566436 0.0657735 0.0346839 +-0.0767139 0.070678 0.0244626 +-0.0810351 0.0787684 -0.0035164 +0.0405001 0.076619 0.0321646 +-0.0283979 0.155793 -0.00852382 +-0.0535904 0.0617699 -0.00886774 +-0.0149347 0.127911 0.00262222 +-0.0197362 0.181499 -0.0230211 +-0.0781409 0.0718256 0.0231698 +-0.0337588 0.121858 0.0267132 +-0.0741051 0.0686193 0.025039 +0.0417534 0.0788713 -0.00674491 +-0.0515024 0.0340065 0.0263967 +-0.0763933 0.111249 -0.00565203 +-0.0538034 0.0898608 -0.0222645 +-0.000575856 0.0980296 -0.0278345 +0.0581094 0.0704417 0.00814168 +-0.0891434 0.137902 0.0291936 +0.00340212 0.0390598 -0.024445 +-0.0620333 0.153738 -0.0275809 +-0.0177087 0.0584461 -0.0348025 +-0.0823897 0.104663 0.0290404 +-0.0194981 0.10024 0.044034 +0.0242883 0.0705502 -0.0254969 +-0.0899225 0.133822 0.0382154 +-0.0195055 0.108574 0.0413935 +-0.0446392 0.0548635 -0.0110876 +0.00035867 0.048192 -0.0299591 +0.0364284 0.0413843 -0.00274773 +0.0187875 0.0351105 0.0327558 +-0.0568852 0.111179 -0.0170834 +0.0118445 0.0806629 0.0540991 +-0.0687285 0.155709 0.0264626 +0.00655625 0.109588 0.0412446 +0.00917706 0.113608 -0.0184169 +-0.0613933 0.155777 0.0101812 +-0.0314952 0.0903684 0.0441958 +0.0124021 0.0448701 -0.0249804 +-0.0241038 0.0865955 0.0534593 +-0.0631641 0.149054 -0.0215452 +-0.0401934 0.0365351 0.0429119 +-0.0898981 0.135185 0.0362087 +-0.0526397 0.0618282 -0.00966488 +-0.0844214 0.0777776 0.012517 +0.0222568 0.0748707 -0.0265095 +-0.0150366 0.0384845 0.00106724 +0.0180702 0.0879847 -0.0272411 +-0.0142291 0.127243 0.024765 +0.0382486 0.104643 0.0273123 +-0.0748494 0.0964384 -0.0137204 +-0.0808743 0.136754 0.0491531 +-0.0568962 0.0970004 -0.0209687 +-0.0803034 0.072641 0.00422068 +-0.0584156 0.0459799 0.0422363 +-0.0579142 0.114001 -0.0151155 +-0.0561079 0.0571065 0.0121919 +0.00037651 0.0978532 -0.0276151 +-0.0336642 0.082217 -0.0255373 +0.0457702 0.0735931 0.00320764 +-0.056498 0.07472 0.0419593 +0.00305684 0.124987 -0.00863513 +-0.0272404 0.0877435 0.0480762 +-0.040496 0.0577326 0.0402811 +-0.0202415 0.0392282 0.0390567 +-0.020926 0.0334921 -0.0253378 +-0.0690953 0.0751628 0.0379926 +-0.0520047 0.0344961 0.0416004 +-0.0141843 0.128965 0.0174774 +0.0288353 0.0368345 0.0223773 +-0.0444076 0.0394861 -0.0222996 +-0.0838483 0.119157 -0.00284212 +-0.0034971 0.0732704 0.0586485 +-0.03681 0.0886191 -0.0239226 +-0.0669297 0.105269 -0.0144963 +-0.07603 0.0941366 0.0385416 +-0.0716625 0.145448 -0.0198949 +-0.0165056 0.0382425 0.0100681 +-0.0909349 0.113307 0.0123445 +-0.0192269 0.0381483 0.0222601 +0.026296 0.0862676 0.0469202 +-0.0118259 0.0386358 0.028745 +-0.0513331 0.0334323 -0.00718543 +-0.0685946 0.0353745 -0.00558788 +-0.0370306 0.151785 -0.00571407 +-0.0891386 0.129503 0.00423129 +-0.0447856 0.0348265 0.00740272 +0.040097 0.105566 0.00218117 +0.00862183 0.120558 -0.0139068 +-0.0679053 0.171131 -0.036968 +0.0164071 0.0345184 0.0219352 +-0.0501179 0.137029 0.00241503 +0.0125996 0.0459414 0.0443461 +-0.0654928 0.0818627 0.0433416 +-0.0215596 0.0891328 -0.036783 +-0.0685096 0.147001 0.0412847 +0.0400896 0.0702922 -0.00980716 +-0.0291528 0.0378835 0.0276599 +-0.0624944 0.145991 -0.00758108 +-0.029375 0.0621337 -0.0244169 +-0.0655919 0.151202 -0.0366034 +-0.064581 0.128354 0.0453237 +-0.0626195 0.153328 0.0013944 +-0.0863817 0.148632 0.0316852 +-0.0153553 0.112218 -0.0188504 +-0.0602045 0.0441634 0.0266895 +-0.0204995 0.111306 0.0398343 +-0.0454802 0.112265 -0.0167776 +0.0212764 0.0693138 -0.0277613 +-0.0458225 0.146281 0.00549558 +-0.065521 0.0335373 -0.00466605 +-0.00710114 0.0339482 -0.0211688 +0.0551094 0.0539301 0.0250409 +-0.0781434 0.0927222 0.0364655 +0.0291436 0.0707502 -0.0218013 +-0.091117 0.143373 0.0231646 +-0.0575628 0.0576989 0.003607 +-0.0745558 0.0684435 0.0233437 +0.000679346 0.0933957 -0.0329817 +0.0136703 0.0446634 0.0441067 +0.0425933 0.0791563 0.0282081 +-0.0098481 0.112657 -0.0193422 +-0.0678577 0.102354 -0.0152646 +-0.0245236 0.0838729 0.0539551 +-0.0522319 0.125489 0.0349878 +-0.0331359 0.168192 -0.0157544 +0.0437182 0.0944809 0.000197915 +-0.0271741 0.161328 -0.0145155 +-0.0635247 0.139599 0.0380296 +-0.0105236 0.0787711 0.0579243 +0.0221704 0.109999 -0.014573 +-0.0626188 0.166275 -0.0435849 +-0.0162218 0.186444 -0.0207352 +-0.00481374 0.128076 -0.00386981 +-0.0761439 0.154623 0.0283179 +-0.00628506 0.0952929 -0.0329709 +-0.0244623 0.0348843 0.0471798 +-0.0764469 0.175411 -0.0430646 +-0.0374817 0.0903202 0.0435434 +0.0448755 0.0917539 0.00218552 +-0.0464937 0.0411703 0.0442462 +0.00738566 0.0463583 -0.0259834 +-0.0269838 0.158131 -0.000540227 +-0.0195125 0.0800523 0.0567242 +0.0535386 0.0505579 0.00123438 +-0.0704829 0.066568 0.025804 +-0.0478545 0.117892 -0.0146818 +-0.0645863 0.144373 -0.0132186 +-0.0619148 0.161553 -0.037594 +-0.0328555 0.100056 -0.0225692 +-0.0605435 0.0660534 0.0336067 +-0.00290962 0.037693 0.0115129 +-0.0101883 0.0876449 -0.0371912 +-0.0625754 0.042738 -0.00542472 +0.00650044 0.0910463 0.0545358 +-0.0756811 0.154032 -0.0169094 +-0.0034723 0.130516 0.00409153 +0.00232953 0.116694 -0.0177181 +-0.0378274 0.0929022 -0.0235348 +-0.02161 0.158057 -0.00899889 +0.0304133 0.0415863 -0.00412062 +-0.0728954 0.176495 -0.0445729 +-0.0420309 0.0335517 -0.0220625 +-0.0187514 0.0906841 0.0550582 +-0.0855548 0.125248 -0.00272359 +-0.0137086 0.0614344 -0.0364468 +-0.020723 0.0597726 -0.0340423 +-0.0708646 0.0384387 0.000437312 +0.0310181 0.112726 0.0309619 +0.0131047 0.129972 0.0173477 +-0.0216432 0.124246 -0.00349177 +-0.0626999 0.0706798 -0.0138683 +-0.0865991 0.0833319 0.0164838 +-0.0644302 0.0384213 0.0160253 +-0.0187164 0.0611476 0.0502898 +-0.0791607 0.170809 -0.0419883 +0.00181256 0.0994772 -0.0233519 +0.0199074 0.11877 -0.0100039 +-0.0361903 0.151017 -0.000604378 +-0.084275 0.0897993 -0.00457099 +-0.0554832 0.0861944 0.0449632 +-0.0623633 0.0458155 0.0336786 +0.034658 0.114539 0.0168181 +-0.0736982 0.167846 -0.0232955 +-0.0181465 0.166773 -0.0192359 +0.0113761 0.0494361 -0.0277541 +-0.0440746 0.154693 -0.007872 +0.0606816 0.0664976 0.015162 +0.044367 0.0575454 -0.00546316 +0.0134639 0.0616949 0.0510096 +0.0400149 0.0829397 -0.0117765 +0.0423451 0.0690926 -0.00378897 +-0.0691689 0.0336248 0.00172074 +0.0582234 0.0593447 0.00320204 +-0.0900566 0.133779 0.0292173 +-0.0381652 0.0336678 -0.0288809 +0.0397017 0.104178 0.024171 +-0.0755036 0.121787 0.0531411 +-0.025634 0.122393 0.025161 +0.058528 0.0565928 0.00617045 +-0.0801768 0.155046 0.0137223 +0.0277963 0.0835666 0.045536 +-0.0628566 0.145948 -0.0105775 +-0.0133824 0.0383808 0.0105781 +-0.049358 0.146268 -0.00147688 +-0.0484712 0.0517504 0.0365675 +-0.0467968 0.0869913 -0.021986 +0.0553821 0.0590684 -0.000816519 +-0.0179551 0.0921164 -0.0358084 +-0.0789524 0.0921836 -0.0106406 +0.0374058 0.0893177 -0.0145297 +-0.032345 0.0473443 -0.0245628 +0.0173629 0.0537245 -0.0278081 +-0.0616059 0.160004 -0.0295877 +-0.0123225 0.124091 -0.00743567 +-0.0401607 0.163674 -0.0120006 +-0.06497 0.154244 -0.00563561 +-0.0510279 0.0336678 0.0250302 +-0.0771941 0.0893363 -0.0125642 +0.0224953 0.109772 0.0381484 +-0.0545656 0.13815 0.0298405 +-0.00171216 0.066944 -0.0344014 +-0.00330066 0.124033 -0.00952648 +-0.0724141 0.159616 -0.0379306 +-0.0128309 0.0869146 -0.0385108 +0.0379635 0.103337 0.0286718 +0.00150556 0.0870476 0.0569313 +0.0339501 0.0683557 -0.0167775 +-0.0296157 0.053701 -0.0213818 +-0.0239053 0.0350134 -0.0198326 +0.00348633 0.110018 0.042298 +-0.00459976 0.0405792 -0.0256485 +0.0313837 0.0352278 0.00968341 +-0.0524893 0.105673 0.0402508 +-0.0334757 0.072353 -0.0224701 +-0.00165204 0.0347369 0.0450897 +-0.0251253 0.179165 -0.0186166 +0.0418909 0.0939077 0.0272858 +-0.0417165 0.069628 -0.0168617 +-0.0751265 0.0670609 0.00488552 +-0.0702901 0.063891 0.0211244 +-0.0777094 0.170825 -0.0439812 +-0.0735195 0.135848 0.0500526 +-0.0690768 0.0739443 0.0372765 +0.0123912 0.116671 -0.0157278 +-0.0504991 0.105636 0.0396146 +0.0194996 0.0489742 0.0420155 +-0.0652338 0.145869 -0.0189253 +0.0183651 0.124757 -0.00246117 +-0.067493 0.105571 0.0389191 +0.00451331 0.0814276 0.0565046 +-0.0126391 0.0466477 -0.0295757 +-0.043534 0.0422491 -0.0203181 +-0.0576807 0.133928 0.0359191 +-0.0847679 0.10454 0.0257763 +-0.0763966 0.0748983 0.0314167 +-0.0163248 0.0390132 0.0346782 +0.0455396 0.083395 0.0201668 +-0.0404951 0.0747761 0.0426102 +0.0326457 0.113685 0.0274718 +-0.0533008 0.118582 -0.0133417 +-0.0548347 0.0518559 -0.00436961 +-0.0444358 0.0344955 0.0309851 +0.0022525 0.0986072 0.0504164 +0.0280941 0.107442 0.0372758 +0.0311382 0.100809 0.0381724 +-0.0608693 0.0982413 -0.018491 +-0.0808258 0.116274 -0.00349703 +-0.00493749 0.124022 0.0339675 +-0.0202041 0.0383371 0.000156328 +0.000176932 0.0881362 -0.0348875 +-0.0122454 0.128019 0.000407111 +-0.0750529 0.0860661 0.0392001 +-0.0200226 0.0403705 0.0532551 +-0.0196618 0.127752 0.0140421 +-0.0544977 0.0747139 0.0418232 +-0.0850765 0.107567 0.00438106 +-0.0759578 0.071995 0.0287387 +-0.0434567 0.155083 0.00724724 +-0.090134 0.132434 0.0362229 +0.022282 0.0706591 -0.0268891 +-0.090924 0.128274 0.0409748 +-0.0889908 0.13778 0.0388031 +-0.0788715 0.122217 -0.0060966 +-0.00443014 0.100204 0.0479984 +0.0327247 0.0646521 0.0402099 +-0.066223 0.15556 -0.0520809 +0.0118954 0.0685639 0.0540604 +-0.0805181 0.12599 0.0525745 +0.0465562 0.0753029 0.0092212 +-0.0743025 0.151276 -0.0308835 +-0.0905476 0.146077 0.0141502 +-0.0715441 0.112225 0.0480665 +-0.0679786 0.137002 -0.008171 +-0.0672001 0.044789 0.00569382 +-0.0714328 0.168025 -0.0480185 +-0.0584837 0.088969 0.0446761 +-0.0444852 0.0411138 0.0436529 +0.0142229 0.0821798 -0.0300828 +0.0137354 0.10206 -0.0220537 +-0.0532836 0.0335112 0.0086601 +-0.046743 0.0767653 -0.0182293 +-0.0653246 0.173014 -0.0475844 +-0.0105123 0.0633015 0.0555068 +-0.0652467 0.122825 0.0496059 +-0.0587837 0.0940397 -0.0203993 +-0.061496 0.107016 0.0394252 +0.032159 0.0404592 0.0270704 +-0.0550412 0.129739 0.0362139 +0.0187645 0.036357 0.00611202 +-0.051625 0.0474378 0.0157122 +-0.0945263 0.121474 0.0192827 +-0.0874631 0.104981 0.0103802 +-0.0444225 0.0587761 0.0392912 +0.00550135 0.107149 0.041587 +-0.0023107 0.0375379 0.0154093 +0.0365396 0.111887 0.0174946 +-0.0667677 0.0809002 -0.0178421 +0.0212994 0.0550028 0.0464604 +-0.00474995 0.0391641 0.0333259 +0.0385436 0.103322 0.0277283 +-0.0350927 0.168167 -0.014918 +-0.0381943 0.124735 0.0235454 +-0.0436117 0.125739 0.0201433 +-0.0122465 0.124398 0.0313659 +-0.018196 0.038272 0.00607299 +-0.0454731 0.0675709 0.040115 +0.0397094 0.0887389 0.0329441 +-0.0612601 0.0653881 0.0322823 +0.0358388 0.063303 0.0376893 +-0.0894207 0.0969969 0.0174102 +0.0247051 0.054807 -0.022754 +-0.0362363 0.0345287 0.0379647 +-0.0134852 0.104433 0.0435318 +-0.0390753 0.0353444 0.00990175 +-0.032893 0.0386199 -0.0119052 +-0.066881 0.172737 -0.0437921 +-0.0844296 0.0777425 0.00651672 +0.0102401 0.13009 0.0220074 +-0.0184847 0.091067 0.0550019 +-0.048793 0.155022 0.0100543 +-0.042488 0.1112 0.0368617 +-0.00484603 0.0989761 -0.0268273 +-0.0667655 0.079447 -0.0174677 +-0.0520123 0.033434 -0.00549431 +-0.0309502 0.0376665 0.0292806 +0.0125353 0.118934 -0.0141702 +0.0393762 0.0393721 0.0023232 +-0.0154839 0.0388074 -0.00858919 +-0.027433 0.108265 -0.0206521 +-0.0335566 0.11282 -0.0174155 +-0.0428158 0.126503 0.0190139 +0.0359007 0.0374161 0.00496434 +0.030827 0.118499 0.003976 +0.0482689 0.0616107 -0.00376704 +0.0172995 0.0637271 -0.0287659 +0.0352999 0.0727523 0.0387329 +0.0325099 0.0439072 0.0294151 +0.0434928 0.0597185 0.030951 +-0.0849411 0.14333 0.0402714 +-0.0419573 0.15213 0.00584722 +-0.0478585 0.101383 -0.0215741 +0.0158763 0.121559 0.0327664 +0.0196134 0.0505877 0.0439573 +-0.0408143 0.0899706 -0.0230035 +0.0179499 0.0360095 0.0408071 +-0.0491945 0.137084 0.0184007 +0.0422067 0.0898824 0.0277847 +-0.0568073 0.122 -0.00880521 +-0.0535468 0.0500774 -0.00609453 +-0.0791017 0.171279 -0.0410322 +-0.0812381 0.0774347 -0.00249764 +0.00451011 0.08973 0.0555486 +0.0360129 0.0947297 -0.0122566 +-0.0267986 0.0839175 -0.0367186 +-0.0336466 0.125738 0.0192922 +-0.0645061 0.0384674 -0.00726163 +-0.069197 0.145134 -0.0204031 +-0.0453102 0.150665 0.00801555 +-0.016121 0.0347931 0.0455365 +0.0372267 0.0827114 -0.0157704 +-0.0586519 0.047167 0.0396282 +-0.0723413 0.0352299 0.00501169 +-0.00850771 0.0457646 0.047699 +-0.0361402 0.0481769 -0.0171107 +-0.0694918 0.0986232 0.041191 +-0.0145821 0.0365575 -0.0175497 +-0.0152331 0.178626 -0.0269991 +-0.0375015 0.0761535 0.0421853 +0.0230994 0.0700125 0.0474321 +-0.0769031 0.149462 0.0386995 +-0.0160344 0.0394989 0.0396851 +-0.077278 0.155614 0.0132673 +-0.0461472 0.0695191 0.0407559 +0.013766 0.105146 -0.0193832 +-0.00180961 0.102694 -0.0227875 +-0.0404787 0.102851 0.0403978 +-0.0256602 0.0491814 -0.0262646 +-0.0640267 0.155773 0.0106957 +-0.0188798 0.0381919 0.018679 +0.0251044 0.111527 -0.0122017 +-0.00771141 0.130468 0.0154714 +-0.0143198 0.128437 0.0203415 +0.000556364 0.0427979 0.0462128 +-0.0107039 0.129221 0.0216334 +-0.0755898 0.0796389 -0.010614 +-0.0618567 0.156837 -0.0325918 +-0.0516893 0.0678068 -0.0129959 +-0.0631142 0.178334 -0.0583576 +-0.0386855 0.0651385 -0.0142461 +-0.0594798 0.0790546 0.0431577 +-0.029726 0.121561 0.0251755 +-0.0328596 0.153633 -0.000344229 +0.0339626 0.0356317 0.0117064 +-0.0718527 0.158151 -0.00382487 +-0.0194857 0.0486564 0.0485018 +0.0319575 0.0889685 0.042819 +0.00933955 0.0624337 -0.0310444 +-0.0172265 0.113695 -0.0184196 +-0.0866231 0.0846922 0.0194779 +-0.0663134 0.0608279 0.00678018 +-0.0718125 0.0922256 -0.0157107 +0.0550352 0.064867 0.0267865 +-0.0446824 0.0651214 -0.0145177 +-0.066499 0.0958724 0.0422345 +-0.0484771 0.135525 0.0064169 +0.0419641 0.0872658 0.0291034 +-0.0144336 0.120974 -0.0101151 +0.00537913 0.115468 -0.0184153 +-0.0169313 0.0940904 -0.0338108 +-0.0311219 0.087675 -0.0275557 +-0.0733475 0.129801 0.0519745 +-0.0628563 0.0432731 0.0396846 +-0.0181419 0.159077 -0.00932452 +-0.0244219 0.0752703 0.0498831 +0.0278638 0.0367181 0.000104301 +0.0464062 0.0525822 0.0317783 +-0.0352134 0.127051 0.0157486 +-0.037493 0.0605801 0.0408152 +0.0435542 0.0709351 0.0259153 +-0.061811 0.0896079 -0.0190442 +-0.0487502 0.167013 -0.00197199 +-0.011981 0.180127 -0.0244833 +-0.0273118 0.0346998 0.0432305 +0.0260624 0.113339 -0.0101501 +0.00139388 0.0977439 -0.0275242 +0.0217437 0.0348491 0.000619009 +-0.0598385 0.0385019 0.0199857 +-0.0742583 0.12978 0.0523998 +0.0125017 0.103142 0.0463418 +0.0222613 0.0768462 0.049813 +0.0226846 0.125635 0.0109073 +-0.0664848 0.153437 0.0331838 +-0.0635064 0.100118 0.0422551 +-0.0884181 0.136485 0.0410708 +-0.0821317 0.151156 0.0323844 +-0.035019 0.035354 0.0462574 +-0.0445836 0.049099 -0.0105442 +-0.0913513 0.126793 0.00727091 +-0.00465552 0.0526099 -0.031899 +-0.0536395 0.0361733 0.0466553 +-0.0624928 0.0775409 0.0419345 +-0.0454844 0.1652 0.00481603 +-0.0176555 0.10171 -0.0237622 +-0.0517386 0.139928 0.000994108 +-0.0894422 0.0969694 0.0114146 +0.0282036 0.106111 0.0374341 +-0.0930784 0.128223 0.0132485 +-0.0710378 0.113905 0.0504272 +-0.0589666 0.06768 0.0360494 +0.0249541 0.12014 0.0288767 +-0.0467094 0.0345808 0.0339444 +-0.0627411 0.0766785 -0.0179436 +-0.00548466 0.051944 0.0528973 +-0.0355056 0.0705073 0.0417804 +0.00377856 0.127353 -0.00517835 +-0.0595895 0.0659394 0.0339087 +-0.0639025 0.0344657 0.0356117 +-0.0549717 0.132532 0.0345672 +-0.0762259 0.0790445 0.0349679 +-0.0259103 0.0721759 0.0444214 +0.0315716 0.117859 0.00423829 +-0.0696582 0.0642657 0.000568637 +-0.0882731 0.143189 0.0351319 +-0.031681 0.0679763 -0.0234472 +-0.0699144 0.1253 -0.00883057 +0.0435982 0.0888699 0.0251665 +-0.0914617 0.144737 0.0211556 +-0.0205009 0.126788 0.0181341 +0.0311284 0.103423 0.0364018 +-0.0196184 0.043638 -0.0281382 +-0.0192518 0.185941 -0.0210687 +0.0556563 0.0725898 0.00964459 +-0.0899954 0.135014 0.00922069 +-0.0658394 0.170333 -0.0405107 +-0.0487066 0.064243 0.0362896 +0.0115006 0.100446 0.0479384 +-0.0479295 0.132887 0.00374503 +0.0216229 0.0700379 0.048827 +0.0151599 0.050478 0.0463014 +0.00510611 0.0386758 0.0457599 +-0.0284578 0.0789297 -0.0355663 +-0.081069 0.152209 0.0312004 +-0.0814521 0.13302 0.0511119 +-0.0115065 0.0517326 0.051159 +0.0190773 0.108184 -0.0165978 +-0.0879813 0.0860844 0.0054873 +-0.0565924 0.0442297 -0.00693458 +-0.0358918 0.166781 -0.00116722 +0.0263229 0.122689 0.0193841 +-0.0305096 0.0608404 -0.0204127 +-0.0790435 0.0718734 0.00353541 +-0.0264818 0.101588 0.0434387 +0.0224815 0.0892515 0.0484736 +-0.07435 0.0711851 0.0297739 +-0.0366402 0.0563002 -0.0110085 +-0.0858069 0.133905 0.0470456 +-0.0347686 0.16678 -0.00304399 +-0.0318926 0.0385829 -0.0116716 +0.0173027 0.0680054 -0.0293377 +-0.084368 0.114299 0.000284663 +-0.0761089 0.149998 -0.0108814 +0.0437289 0.0987183 0.00617361 +0.0134057 0.0374127 -0.0219366 +0.000807934 0.124791 -0.00838237 +-0.0406768 0.0621783 -0.0128097 +-0.0926608 0.121474 0.0282925 +-0.0595443 0.155728 0.018094 +-0.0646509 0.168222 -0.0372156 +-0.0197896 0.127727 0.0110836 +0.0112619 0.069597 -0.0315203 +-0.0784667 0.141403 0.0468168 +-0.0881381 0.0996585 0.0223676 +-0.0495985 0.048927 -0.00879829 +-0.0567267 0.15478 0.0220083 +-0.0273659 0.119585 -0.010507 +0.0191093 0.0375318 0.0414884 +-0.054786 0.147744 0.027387 +0.0185111 0.114004 0.0370685 +-0.0106027 0.171925 -0.0271985 +-0.0795217 0.0748572 0.0255446 +0.0527001 0.0462105 0.0152086 +0.0191089 0.0889764 -0.0262512 +-0.0917278 0.114662 0.0113396 +-0.0311696 0.0749025 -0.031542 +0.0103976 0.0505032 0.04997 +0.00150167 0.0504398 0.0522275 +-0.00913054 0.0987984 -0.026694 +-0.0607072 0.0707896 -0.0151427 +-0.0314435 0.033488 -0.0292746 +0.0322402 0.0842577 -0.0191914 +-0.0617587 0.160001 -0.0265888 +0.0366758 0.0659888 0.0371374 +-0.0410386 0.153314 -0.00775366 +-0.0916156 0.146104 0.0201482 +-0.008275 0.130081 0.0196055 +-0.0716229 0.0395313 0.00756641 +-0.0555501 0.0448059 0.0154665 +-0.0519883 0.0545681 0.0276385 +-0.063796 0.145383 -0.0141799 +-0.0204903 0.107154 0.041938 +-0.00950118 0.06052 0.0554819 +-0.0297859 0.073336 -0.0325546 +0.0225502 0.0873848 -0.0245875 +-0.0658345 0.0367656 0.0273328 +-0.0335698 0.0354174 0.0482024 +-0.0826039 0.0829175 -0.00455606 +0.0133284 0.055284 -0.0292269 +-0.000932932 0.0363158 0.0167895 +0.0190541 0.116198 -0.0132311 +-0.000494259 0.0911454 0.0560111 +0.0112951 0.130595 0.0166808 +-0.0164761 0.0673645 0.0539812 +-0.0180225 0.0385494 -0.00514634 +-0.0610891 0.0339525 0.017372 +-0.0707478 0.147309 -0.0278341 +-0.0189873 0.180146 -0.0170482 +0.0237757 0.0343382 0.00896337 +-0.00265737 0.0899953 -0.0354905 +-0.0718661 0.100809 -0.0137558 +-0.00649817 0.0939276 0.0556503 +-0.0246455 0.126418 0.012252 +-0.0157508 0.070024 -0.0384074 +0.0256059 0.12104 -0.000826914 +0.00250363 0.0489881 0.0513443 +-0.029644 0.125848 0.0118936 +-0.024804 0.0737635 0.0475256 +-0.0672658 0.131206 0.0466969 +-0.0817178 0.0953366 0.0328835 +-0.0286351 0.0918211 -0.0275955 +0.0414472 0.0971985 0.0261597 +-0.0680972 0.121444 0.0525081 +-0.0683202 0.166619 -0.0540065 +-0.0375072 0.0775843 0.0424046 +-0.0143913 0.0384112 0.00490303 +-0.0518947 0.109852 -0.0185479 +0.0338477 0.0711662 -0.016803 +-0.0450894 0.154663 -0.00752455 +-0.0564919 0.0875695 0.0445907 +0.0391967 0.0726247 0.033788 +0.0574073 0.0717824 0.0103168 +-0.0237163 0.0380022 0.0196686 +0.0120538 0.0907862 -0.0301745 +-0.0669793 0.134061 -0.00834965 +-0.00947746 0.116894 0.0392479 +-0.0328734 0.0680853 -0.0194707 +0.030263 0.116206 0.0279976 +-0.0348513 0.0345425 0.0400019 +-0.0532018 0.0733522 0.0412342 +-0.0577592 0.033805 0.0199655 +-0.00439966 0.119978 -0.0131705 +0.0162591 0.0434903 0.0442636 +-0.0567225 0.0423764 0.0206991 +0.00325132 0.12142 -0.0127844 +0.0145581 0.125506 0.0293407 +0.00448398 0.0989824 0.0487111 +-0.0896848 0.0929338 0.0144339 +-0.04491 0.13036 0.00775303 +-0.048947 0.138616 0.00839947 +-0.0307428 0.0552453 -0.0153798 +-0.0826044 0.1367 0.0480323 +-0.0749507 0.0661289 0.00944516 +-0.00473325 0.069866 -0.0358872 +-0.0167995 0.0347343 0.0471976 +-0.0426342 0.12559 0.0204963 +-0.0444709 0.120321 -0.0132547 +0.010477 0.116818 0.0374755 +-0.0744965 0.123196 0.0533572 +-0.047302 0.16443 0.00497116 +-0.0859996 0.118394 -0.000793117 +-0.0326967 0.0849828 -0.026556 +-0.0843669 0.106153 0.00138874 +0.0167493 0.127305 0.0229819 +0.0223908 0.0489358 -0.0217863 +-0.0762839 0.155844 0.0209052 +-0.0839499 0.0979633 -0.0036111 +-0.0216926 0.126501 0.0176944 +0.0378596 0.0914955 0.035553 +0.0420895 0.102851 0.00717012 +0.0366464 0.103365 0.0302885 +-0.0696779 0.086056 0.0423345 +-0.0340311 0.0339294 0.0212063 +0.0162763 0.0361212 0.00396256 +-0.0426327 0.0338426 -0.00397459 +-0.027617 0.125471 0.0155889 +-0.0937433 0.118772 0.0222988 +-0.0518432 0.133909 0.0302884 +-0.0413643 0.124214 -0.00934406 +-0.0413386 0.121239 -0.0122322 +-0.0396582 0.0336638 0.00768797 +-0.0853564 0.091162 -0.00253932 +0.0179914 0.120614 0.0332262 +-0.0717184 0.0792466 -0.0147262 +0.0215785 0.11262 0.0367657 +0.0236405 0.0366106 0.026972 +-0.07448 0.0662148 0.0164657 +-0.00149557 0.0973426 -0.0290749 +0.0342448 0.0842103 -0.0184253 +0.0045204 0.0661365 0.0560558 +-0.0072649 0.0384115 0.0117959 +0.0362267 0.104294 -0.00842134 +0.0232091 0.0782074 0.0494446 +-0.0204762 0.0786229 0.0556935 +0.0189956 0.125897 0.000310264 +0.0582502 0.0661055 0.0226582 +-0.0884672 0.113635 0.0306037 +-0.0595891 0.155231 0.0238846 +-0.0540479 0.142765 -0.001179 +0.0139994 0.0807368 0.0537041 +-0.0660333 0.155202 -0.00458552 +-0.0371914 0.175481 -0.00856986 +-0.0114786 0.114128 0.0403922 +0.00280587 0.10648 -0.0207933 +-0.061629 0.148291 0.0370712 +-0.0305056 0.115271 0.0335326 +-0.0847456 0.0911272 0.0289858 +0.0294623 0.103445 0.0374919 +-0.0884887 0.122612 0.00129126 +-0.0869453 0.0846809 0.01048 +0.04631 0.0778469 0.00818385 +-0.077491 0.135849 0.0507593 +0.00650523 0.0745046 0.0565842 +-0.0193751 0.0711448 0.0534686 +-0.03164 0.0581442 -0.0153958 +0.00337821 0.0392113 0.0295452 +0.026954 0.116596 0.0310646 +-0.0623115 0.16311 -0.0435951 +0.0154275 0.0350916 0.0411096 +-0.0724818 0.165221 -0.0429802 +-0.0359956 0.151076 -0.00202594 +0.0162209 0.0779008 -0.0293961 +-0.0478366 0.133877 0.0213554 +0.0569921 0.0661536 0.0243514 +-0.0318346 0.0915622 -0.0244444 +-0.0864107 0.0819973 0.0174801 +-0.0497993 0.0677848 0.0379447 +-0.0671663 0.164687 -0.0194859 +-0.00868026 0.111843 -0.0204858 +-0.0195177 0.0933631 0.0529187 +-0.0535918 0.114983 -0.0155816 +-0.068804 0.18096 -0.0579804 +-0.0846698 0.148755 0.00515607 +-0.0808035 0.0868637 -0.00756861 +-0.0309282 0.156627 0.000764301 +-0.0561456 0.0642166 0.0326189 +-0.0864523 0.0899653 0.00147962 +-0.0802598 0.0734072 0.0195467 +-0.025101 0.114847 -0.0155729 +-0.0348703 0.102876 -0.0215726 +0.00151752 0.0547965 0.0538164 +-0.0216758 0.0969718 -0.024798 +0.0367496 0.0931371 -0.012555 +0.00330684 0.0583228 -0.0321215 +-0.0697412 0.154452 0.0305168 +-0.0618525 0.0343021 0.022204 +-0.00886294 0.171168 -0.0237423 +-0.0216854 0.168305 -0.0122385 +-0.0435207 0.0562403 0.0394546 +-0.0620233 0.159983 -0.0376027 +-0.0751309 0.154085 -0.0179327 +-0.0480694 0.153165 -0.00566954 +0.0283556 0.0605487 0.0426528 +0.0115864 0.0348612 0.0423222 +-0.064559 0.11407 0.0417666 +0.0210547 0.0358177 -0.00168489 +-0.042575 0.0491291 -0.011035 +-0.0742409 0.113562 0.0499634 +-0.0659446 0.146784 0.0398667 +-0.0670071 0.172276 -0.0580562 +0.0251821 0.0357118 0.0226481 +-0.0129957 0.0883892 -0.0379783 +0.01814 0.0713245 0.0508426 +0.0161851 0.0347246 0.0253316 +-0.0234485 0.122824 -0.00599554 +0.00849456 0.0412846 0.0453159 +-0.0253871 0.124202 0.0208009 +0.00860136 0.121512 -0.0129363 +-0.0764996 0.128859 0.0532215 +-0.0637886 0.083851 -0.0191517 +-0.073438 0.175304 -0.0418354 +-0.0464485 0.132668 0.0189406 +-0.018505 0.112714 0.0394706 +-0.0579749 0.117711 -0.0123561 +-0.0241311 0.0384069 -0.0174035 +0.0286891 0.119649 0.00175522 +0.0135044 0.118213 0.0361594 +0.00748569 0.0942514 -0.0297902 +0.0223281 0.111319 -0.0139783 +0.00796203 0.131149 0.00690102 +-0.0888712 0.101031 0.0183836 +0.0208523 0.0352023 0.0276656 +-0.0939805 0.118754 0.0182968 +-0.0886426 0.129716 0.0443401 +-0.0562403 0.128346 0.0379943 +-0.0946719 0.122818 0.0192736 +-0.0844496 0.151409 0.0062115 +-0.0488054 0.124161 -0.00921799 +-0.0495787 0.0503337 -0.00863311 +-0.0642728 0.174473 -0.0515364 +-0.0355869 0.116022 -0.0147547 +0.0353133 0.0362497 0.0114171 +-0.0570854 0.136926 -0.00500822 +-0.033504 0.079379 -0.0265108 +-0.062469 0.033932 0.0153305 +-0.000579953 0.0361804 -0.0245898 +-0.0314067 0.0423682 0.0507901 +-0.0112759 0.125368 0.030237 +-0.00950387 0.075936 0.0571919 +-0.0424487 0.125177 -0.00834623 +-0.0077039 0.113721 -0.0184781 +-0.00342161 0.0338005 -0.0221963 +-0.0140717 0.118746 -0.0137718 +-0.0231943 0.0388081 0.0352395 +-0.0639512 0.156212 0.0208686 +-0.0624954 0.0890364 0.0453804 +-0.0303734 0.125779 0.00722581 +0.003605 0.0340592 0.00699628 +-0.0765794 0.15423 -0.00189723 +-0.0759273 0.08606 0.0386654 +0.0508473 0.0446622 0.0112162 +0.00609443 0.127443 0.0291456 +-0.0428742 0.105667 -0.0205602 +-0.0188968 0.0381911 0.0132528 +-0.086324 0.106283 0.0073644 +-0.0320928 0.0336737 -0.0220791 +-0.0466544 0.119173 -0.0140371 +-0.0710688 0.156192 0.0139947 +-0.055712 0.155088 0.0136896 +-0.0525045 0.159361 0.00819169 +-0.0543637 0.116891 0.0353365 +0.0318466 0.0424663 0.0288342 +-0.051547 0.125478 0.0342157 +-0.00249266 0.0760635 0.0587913 +-0.00575365 0.0727093 -0.0362416 +-0.00680153 0.129324 0.00093339 +0.0495021 0.0664943 0.0276338 +-0.0282448 0.11486 -0.0155715 +0.031224 0.0786608 -0.0202592 +-0.0148026 0.0827563 -0.0392327 +-0.071855 0.0993885 -0.014251 +0.0177513 0.0462342 0.0429632 +-0.0242082 0.121982 0.0271598 +-0.0922854 0.116039 0.0223382 +0.0434814 0.0832239 -0.00379707 +-0.0384996 0.171162 0.000767348 +-0.0712408 0.114861 0.0513991 +-0.0157632 0.12799 0.00385748 +0.019082 0.126548 0.00245443 +-0.00388013 0.0394939 0.0368098 +-0.0204678 0.122105 0.0297617 +-0.0285693 0.0399846 -0.0296196 +-0.0831878 0.0764607 0.0163622 +0.0190867 0.0428243 -0.0216805 +0.0483631 0.0628304 -0.00297175 +-0.0927311 0.120157 0.0322864 +-0.0241838 0.0579409 0.0417219 +-0.0517297 0.0723507 -0.015831 +-0.0217729 0.0684817 -0.0372671 +-0.00949546 0.0829261 0.0578441 +0.0172524 0.0778474 -0.0286871 +-0.0441607 0.162142 -0.00945516 +-0.00587725 0.105934 -0.0226578 +0.0253567 0.0518232 -0.0216362 +-0.0494861 0.156424 0.00985611 +-0.0174771 0.0924389 0.0547456 +-0.0151406 0.126373 0.0259068 +-0.0852968 0.0818288 0.005494 +-0.0244818 0.0988555 0.0446892 +-0.0930791 0.118839 0.037294 +-0.0662836 0.114247 0.046332 +0.0127465 0.0672208 0.05354 +-0.0414757 0.109827 0.0377618 +-0.0435203 0.0519967 0.0390799 +-0.0417672 0.0812092 -0.0204027 +-0.0786424 0.0732312 0.000545367 +-0.0358502 0.0986071 -0.0225695 +0.0443653 0.0561662 -0.00597205 +0.0226111 0.0458717 -0.017849 +-0.0108336 0.116804 -0.0157483 +-0.0865451 0.110395 0.00835385 +0.031421 0.0399741 -0.00264961 +0.0363991 0.039859 -0.00104313 +-0.0468008 0.0347657 0.0424884 +-0.0398282 0.0914347 -0.0233046 +-0.025008 0.0334859 -0.0261337 +-0.0465231 0.0804789 0.0433941 +-0.0689665 0.135529 -0.00828838 +-0.0264689 0.0379883 0.0100865 +-0.0345116 0.111154 0.0360997 +-0.0225694 0.0387321 0.0336407 +0.0372794 0.0574491 -0.00767997 +-0.0707981 0.0672067 0.0269443 +-0.0150683 0.0384098 0.0065829 +-0.0592389 0.0452743 -0.00430196 +-0.0334924 0.102881 0.0413291 +-0.079025 0.153836 0.00536375 +-0.0229321 0.055215 0.043371 +-0.0601957 0.0341396 0.0262143 +-0.0688541 0.147497 -0.029579 +-0.0613597 0.172535 -0.0585911 +-0.0748166 0.0921259 -0.0144369 +-0.0632016 0.165278 -0.0601981 +0.0402098 0.04091 0.000378677 +-0.047469 0.117985 0.0306301 +0.0368134 0.0781201 0.03746 +0.000515748 0.0349973 0.0453092 +-0.0534255 0.124412 -0.00739059 +-0.000488424 0.0801341 0.0575904 +-0.0706455 0.0701231 -0.00669595 +-0.0477034 0.0649971 -0.0135628 +-0.0348898 0.0767003 -0.020496 +-0.00451076 0.0788064 0.0581316 +-0.0693915 0.117164 0.0523368 +-0.0200653 0.164398 -0.0170398 +-0.073544 0.177863 -0.0540307 +0.0427163 0.0399244 0.0113768 +0.0240483 0.0713748 0.0470522 +-0.0154968 0.0659374 0.0537935 +-0.0686329 0.175846 -0.0473222 +-0.0628372 0.172536 -0.0525874 +-0.0796429 0.148681 -0.00084361 +-0.0663392 0.0600723 0.0146241 +-0.00400483 0.123769 0.0343163 +0.0322222 0.0597861 -0.0166881 +-0.0640918 0.158696 -0.0546245 +-0.00248901 0.0456504 0.0469622 +-0.072774 0.10871 0.0380686 +-0.0810086 0.154578 0.0119766 +-0.0695005 0.091616 0.0421021 +-0.0665162 0.155345 0.00690315 +-0.030539 0.0748507 -0.0325674 +-0.0672648 0.0680031 0.0322561 +-0.0660205 0.131186 0.0449542 +-0.0246171 0.125897 0.00496292 +-0.077893 0.12518 -0.00689701 +-0.0883724 0.121658 0.047175 +-0.0773948 0.167309 -0.02854 +-0.0604 0.0470132 0.0371523 +-0.027746 0.0753954 -0.0356568 +-0.0748509 0.0782361 -0.0105914 +-0.0571323 0.14819 0.0314465 +-0.0415029 0.0803953 0.042616 +-0.0628829 0.0649103 0.0305991 +-0.00169833 0.0598396 -0.033652 +0.0151569 0.107807 -0.0181851 +0.0566945 0.0674374 0.0239376 +-0.0717279 0.155642 0.00502354 +-0.00382186 0.102465 0.0438439 +-0.0587089 0.155741 0.0125904 +0.0572801 0.0608152 0.0247108 +0.017703 0.0913635 0.0485583 +0.0260543 0.116303 -0.00733098 +-0.0345036 0.0690703 0.0414109 +-0.0292922 0.117943 -0.0127907 +0.0213023 0.0835644 0.0502546 +0.0464907 0.0664648 0.0271426 +-0.0564929 0.14962 0.0306387 +0.0282135 0.118937 -0.00132982 +-0.000391601 0.123621 0.0341495 +-0.00114981 0.12653 0.03091 +0.0304544 0.114562 -0.00546317 +-0.0547437 0.0337519 0.0206417 +-0.0468823 0.107031 -0.0193009 +-0.0631801 0.0406886 0.0415101 +-0.0910325 0.133669 0.0112223 +-0.0592476 0.145654 -0.00231326 +-0.0125718 0.100502 0.0445971 +-0.0298246 0.0378766 0.0293214 +-0.0839351 0.123564 -0.00377373 +-0.0621407 0.163665 -0.0567978 +-0.0389566 0.155104 0.00497717 +-0.0878144 0.105004 0.012374 +-0.0794305 0.0908376 -0.00963692 +-0.0246551 0.0507167 -0.0273858 +-0.0796103 0.0799856 -0.0065507 +0.0330411 0.10941 -0.00791346 +-0.00231596 0.121888 -0.0112268 +-0.0597326 0.154693 0.0267485 +0.0339669 0.0697663 -0.0167955 +0.0205734 0.0999616 -0.0218299 +-0.0354929 0.0917868 0.0443508 +0.00339585 0.0355203 0.0220096 +-0.0315414 0.125778 0.00387502 +-0.0478194 0.135564 0.0104014 +-0.00879058 0.0812731 -0.0379859 +-0.0037488 0.0386615 0.00318783 +-0.0464486 0.0959731 0.0434949 +-0.0306087 0.0394849 -0.0300968 +-0.00234671 0.0967246 -0.0304442 +-0.0312616 0.0735186 -0.0295121 +-0.0423301 0.0340883 0.0282541 +0.0355908 0.113068 0.0185826 +0.000833787 0.106762 -0.0210825 +-0.021676 0.184465 -0.0190713 +-0.0305406 0.0566147 -0.0184018 +-0.0876394 0.113262 0.0257017 +-0.0851868 0.0966727 -0.00156833 +-0.0465061 0.0425232 0.0438042 +0.0106037 0.121274 -0.0126925 +0.0290611 0.0523826 -0.0177704 +-0.000764451 0.0769261 -0.0359174 +-0.0416101 0.0338187 0.00715256 +-0.0893298 0.0969555 0.0104169 +-0.0345694 0.163827 -0.00275159 +-0.0888276 0.090232 0.0214359 +0.0208395 0.034464 0.00266226 +0.0428658 0.0623821 -0.00251673 +-0.00588102 0.130577 0.00751387 +-0.0133142 0.0337765 -0.0222266 +-0.0435242 0.0590876 0.0398271 +0.0545899 0.0478435 0.0151974 +-0.0107349 0.0699421 -0.0371274 +0.027906 0.0578072 0.0419759 +-0.0416225 0.0520166 -0.011127 +-0.0207276 0.168298 -0.0126147 +0.0256959 0.0491338 0.0386649 +-0.0550795 0.153114 -0.00215772 +-0.0380808 0.0483205 -0.0131774 +-0.0276317 0.056316 -0.0254148 +-0.00815144 0.127733 -0.00346398 +-0.0627849 0.0852772 -0.0191174 +-0.0619877 0.169385 -0.052596 +0.0234401 0.112665 0.0358138 +-0.0659073 0.110934 -0.0126703 +0.0280721 0.0360499 0.0211097 +0.0105243 0.0687767 0.0545753 +-0.00679638 0.0982761 -0.0281107 +-0.0309109 0.0462432 0.0473418 +-0.0196031 0.0393462 -0.028238 +-0.0871129 0.152836 0.0157593 +-0.0911632 0.133688 0.01322 +-0.0464961 0.102903 0.0415914 +-0.0206991 0.0553418 -0.0317435 +-0.00949277 0.073156 0.0570282 +-0.0864179 0.083353 0.0184733 +-0.0841891 0.111446 0.02976 +-0.0940387 0.126929 0.0232615 +0.0406221 0.0899944 0.0307666 +0.0208423 0.104696 0.0425993 +0.0445354 0.0407636 0.0127885 +-0.0623396 0.172509 -0.0536126 +0.0342346 0.0852576 -0.0183147 +-0.0866427 0.151554 0.0100877 +-0.0470988 0.0345244 0.0321531 +-0.080576 0.154494 0.0106641 +-0.0137759 0.0756859 -0.0386228 +0.0216235 0.0430155 -0.0167288 +0.0376424 0.109732 0.0031582 +0.0589875 0.0607291 0.021951 +-0.0923003 0.132372 0.0212228 +0.0311691 0.0942449 0.0417029 +-0.0174159 0.162512 -0.00777918 +-0.0156178 0.12076 -0.00985742 +-0.0507328 0.121196 0.0335979 +0.028716 0.119662 0.0245591 +-0.0738138 0.0950345 -0.0145557 +0.0204425 0.0350747 0.0258809 +-0.0207737 0.0351435 -0.019333 +0.0223353 0.12586 0.0121947 +-0.0155009 0.0951913 0.0533641 +-0.0143883 0.038338 0.0212719 +0.00741103 0.0391504 0.030425 +0.0433932 0.0691823 -0.000799598 +-0.0760543 0.149976 -0.0168736 +-0.0701178 0.170154 -0.0291958 +-0.0483555 0.146018 -0.00117385 +0.0336441 0.0578174 0.0379601 +-0.0913716 0.140622 0.0201693 +-0.0308539 0.0958394 -0.0237431 +-0.0766992 0.0702795 0.00252119 +-0.0544948 0.107078 0.0398767 +-0.0587729 0.0796565 -0.019784 +-0.013621 0.128874 0.0191382 +-0.0634727 0.156127 0.0195874 +-0.0880436 0.0977019 0.0235765 +-0.0606626 0.0738612 0.0409255 +0.0348653 0.0795228 0.0399156 +0.0387467 0.0828368 -0.0137708 +-0.0573402 0.0424553 0.0177175 +-0.0784976 0.148406 0.0395361 +-0.0917148 0.117385 0.0263102 +-0.0330041 0.122377 0.0254817 +0.0172403 0.0768113 0.0531129 +0.0595736 0.0691817 0.0101411 +0.0306903 0.0708797 -0.0198199 +-0.0845462 0.119028 0.0490922 +-0.0501127 0.0337803 -0.0127711 +-0.0670049 0.0372923 0.032499 +-0.0915067 0.129676 0.0312386 +-0.0550517 0.0504886 -0.00434688 +-0.0484873 0.0790818 0.0439275 +-0.0635173 0.159862 -0.0515858 +-0.0706155 0.173275 -0.0394062 +0.0352172 0.0952034 -0.0127755 +0.0251052 0.0382735 0.0297226 +-0.0668809 0.106639 -0.013906 +-0.0678418 0.143634 -0.0139334 +-0.0235762 0.184403 -0.0123621 +-0.0257601 0.0726356 -0.0363191 +-0.0573375 0.0472769 0.0101218 +-0.085611 0.106332 0.02136 +-0.0265671 0.0617846 0.0387137 +-0.0126044 0.12951 0.0108053 +0.0214416 0.0362735 0.0322576 +-0.0354711 0.126342 0.0186171 +-0.0594976 0.0904384 0.0451853 +0.00310705 0.0348555 0.0387811 +0.0254813 0.0942452 0.0457882 +-0.0308576 0.10008 -0.0228293 +-0.0176768 0.0510699 -0.0312435 +-0.0162281 0.181624 -0.0200739 +-0.0195138 0.038345 0.00392275 +-0.0645154 0.121409 0.0489254 +-0.0248162 0.0593033 0.0409035 +-0.0571389 0.136712 0.0331888 +-0.0435213 0.0379732 -0.0242868 +-0.0606582 0.12408 0.0421371 +0.0346832 0.0519191 0.0323364 +-0.0913706 0.116528 0.0258009 +-0.0426868 0.0651551 -0.0146214 +-0.0215064 0.116765 0.0355266 +-0.0581012 0.158247 0.00415445 +0.00842312 0.0385006 0.0330183 +-0.0523141 0.162661 -0.0019165 +0.0606845 0.0623337 0.0161711 +-0.0495055 0.0848369 0.0453213 +0.0333786 0.06058 0.0393695 +-0.0689469 0.131135 -0.00874709 +-0.078943 0.132461 -0.00522567 +-0.0196521 0.0386292 -0.00926197 +-0.0594457 0.0334843 -0.00338966 +-0.054161 0.0337073 0.0136843 +-0.0384829 0.0959056 0.0428235 +-0.0869182 0.148604 0.0308154 +-0.0323987 0.116048 -0.0147978 +0.0359194 0.0798211 -0.0157295 +-0.0328255 0.12127 -0.00820532 +0.0414852 0.0569681 0.0316528 +-0.0270871 0.0520359 -0.0253933 +0.0508347 0.0727393 0.0196905 +-0.0198767 0.105865 -0.0225965 +0.0206869 0.0400703 -0.0126929 +-0.0285033 0.0616825 0.0373869 +-0.0714181 0.143109 -0.0104276 +-0.0804568 0.138622 0.0481167 +-0.0458049 0.0532278 0.0379952 +-0.0509023 0.125469 0.0333647 +-0.0871853 0.145927 0.0339699 +0.0558536 0.0594884 0.0261475 +-0.0889169 0.126733 0.0032966 +0.0110737 0.125093 -0.00680678 +-0.0358405 0.094357 -0.023472 +0.0259145 0.102099 0.0411479 +0.0426389 0.0764517 0.0281735 +0.00597565 0.131268 0.0190237 +-0.0475211 0.165506 -0.00586183 +0.0138473 0.035286 0.0424107 +-0.0544751 0.0987674 0.042954 +0.0329063 0.0668566 -0.0177475 +-0.0715523 0.0819441 0.0400873 +-0.0483263 0.149906 -0.00403153 +0.0417112 0.0986332 0.0241669 +-0.0591403 0.039472 0.0459797 +-0.0649985 0.156251 0.0205012 +-0.0389795 0.034282 0.00907489 +-0.0627215 0.0592404 0.0161384 +-0.0367435 0.0437017 -0.0271198 +-0.0164726 0.0387782 -0.0143554 +0.0302495 0.0773125 -0.0211724 +0.0378723 0.109729 0.00416584 +-0.0033562 0.120959 -0.0122202 +-0.0465665 0.0433151 -0.011194 +-0.0597431 0.093988 -0.019461 +-0.0756514 0.0743685 0.0320217 +0.0461779 0.083439 0.010174 +-0.0757827 0.151399 -0.00889222 +-0.0417451 0.0768346 -0.0188724 +-0.0617437 0.0421117 0.0428503 +0.00176163 0.130465 0.00157228 +0.0429689 0.0696277 0.0268653 +-0.0432762 0.0450842 -0.0143236 +-0.0525312 0.0475838 0.0226634 +-0.0153636 0.128543 0.00690549 +-0.0685053 0.109678 0.0379594 +0.0174805 0.103096 0.0453391 +0.0217176 0.0632088 0.0471364 +0.0359993 0.0955223 0.036379 +-0.0451488 0.0335546 0.00486717 +-0.0681193 0.15804 -0.05439 +-0.0661021 0.155727 0.025928 +-0.00573558 0.0684573 -0.035843 +-0.0181282 0.187252 -0.018852 +-0.0445141 0.050571 0.038927 +-0.00049716 0.0856626 0.0573342 +0.016507 0.0913965 0.0503683 +-0.0333397 0.0410057 0.0499212 +-0.0351946 0.125334 -0.00338173 +-0.0616183 0.16622 -0.0565931 +-0.0624979 0.0760891 0.0414437 +0.0350466 0.107363 0.0297386 +-0.0720199 0.063399 0.00874547 +-0.0877434 0.135138 0.0431967 +0.0458379 0.0588925 -0.00503856 +-0.0385014 0.119389 0.0303589 +-0.0647267 0.0417808 0.0373932 +-0.0226655 0.0537608 -0.0296706 +-0.0584982 0.105689 0.0406051 +-0.0137228 0.0685659 -0.0377913 +-0.0817302 0.142079 0.0441697 +-0.0426358 0.0548841 -0.0113796 +-0.0135008 0.082884 0.0573146 +-0.00338001 0.130095 0.0228247 +0.0172769 0.0708593 -0.0295557 +-0.0246932 0.065394 -0.0335995 +-0.0314011 0.178523 -0.00645128 +-0.0575589 0.154615 -0.000238768 +-0.0407441 0.0753914 -0.0183192 +-0.084936 0.144668 0.0388142 +-0.0365092 0.108385 0.0376381 +-0.0851088 0.102115 0.000391121 +-0.0646522 0.0642554 -0.00503339 +-0.0754983 0.145823 -0.00786764 +-0.0474148 0.133778 0.0200381 +0.012958 0.0904818 -0.0298536 +-0.0425054 0.0705013 0.0420152 +0.0369946 0.0686204 -0.0137746 +0.0462743 0.0775122 0.0165366 +-0.0417874 0.128546 0.00302224 +0.00250208 0.0547919 0.0536548 +-0.0543206 0.140979 0.0284164 +-0.0492132 0.138613 0.0153977 +-0.0204064 0.162527 -0.00684616 +-0.0194926 0.111309 0.040066 +-0.00849594 0.0829198 0.0577964 +-0.0467773 0.0826601 -0.021013 +-0.0535197 0.0472233 -0.00680686 +-0.0092432 0.169141 -0.0244221 +-0.0594862 0.0804633 0.0433033 +-0.0764447 0.154164 -0.0158984 +0.0585888 0.0538213 0.0151823 +-0.0588396 0.0925945 -0.0203375 +-0.0761105 0.167387 -0.0256061 +0.0432176 0.0401728 0.0130684 +-0.0395679 0.152136 0.0040279 +-0.0685344 0.180035 -0.058648 +-0.0404998 0.0930589 0.0424923 +0.0428754 0.100088 0.00417324 +-0.0320271 0.0553591 -0.0124271 +0.0199862 0.0348656 0.0241629 +-0.069479 0.123198 0.0530616 +-0.0239594 0.117024 -0.0138685 +-0.013157 0.175712 -0.0209577 +0.00451102 0.0674972 0.0557889 +0.0304128 0.0431004 -0.0051324 +-0.0887794 0.151473 0.0131594 +0.0317917 0.0949031 -0.0164462 +0.0342895 0.112223 -0.00202032 +-0.0728652 0.170808 -0.0480355 +0.0253565 0.075473 0.0472224 +-0.0754952 0.15561 -0.00190651 +0.060278 0.0581371 0.013168 +0.00444274 0.131539 0.0170385 +0.00950273 0.0546854 0.0525766 +-0.028415 0.178753 -0.00594863 +-0.011518 0.0431769 0.0500228 +-0.0504724 0.141671 0.0164028 +-0.0424936 0.045133 0.0413379 +0.0207994 0.125738 0.00307388 +-0.0689469 0.0433261 0.00632212 +0.0111753 0.0766426 0.0548499 +0.0297504 0.0462054 0.0339396 +-0.0674791 0.0622216 0.0214031 +0.0131787 0.0793804 0.0542326 +-0.0630395 0.136976 -0.00741235 +-0.0026931 0.0386465 0.0251959 +-0.0862725 0.103636 0.0233541 +-0.072832 0.162419 -0.0389636 +-0.0670825 0.156321 0.0197603 +-0.0572305 0.057508 0.0152056 +-0.0876158 0.136354 0.00421533 +-0.0214752 0.0609386 0.0459919 +-0.007347 0.0952877 -0.0329727 +-0.0613578 0.0586321 0.0151557 +0.00350505 0.0590839 0.0549927 +-0.0372275 0.160948 0.000450465 +-0.0457572 0.0336839 -0.00997088 +0.0106658 0.0351593 0.00371028 +-0.0714997 0.16363 -0.0138384 +0.00840839 0.117161 -0.0162388 +-0.0493716 0.143224 0.00839291 +0.0251748 0.123444 0.0203849 +0.0329112 0.096871 0.0389677 +0.044554 0.0917551 0.0201604 +-0.0384935 0.0562767 0.0397971 +-0.0785284 0.123123 0.0516319 +0.0426769 0.101505 0.0101616 +0.00833271 0.0567886 -0.0305627 +-0.0876135 0.100396 0.0230423 +-0.0327059 0.0779055 -0.0285245 +0.0119151 0.0860485 0.0542349 +-0.0675927 0.17056 -0.0354212 +-0.0807265 0.0770568 0.0269252 +-0.0384859 0.0520062 0.0392089 +0.0452145 0.0482364 0.0300085 +0.0204736 0.0851385 0.0500118 +-0.0600179 0.155783 0.0193707 +0.0164701 0.0976264 0.0474551 +-0.0456663 0.0410589 -0.0152981 +-0.0821974 0.128571 0.0521036 +-0.0304964 0.0974331 0.0445755 +-0.0540878 0.128312 0.0358453 +0.0390858 0.0407779 -0.000614316 +-0.0725241 0.13724 0.0489632 +-0.0620129 0.0587144 0.0113478 +0.0455822 0.0848004 0.0171734 +-0.0839185 0.112898 0.00127069 +-0.0728197 0.155564 0.00463235 +0.0277412 0.121021 0.0227689 +0.0301995 0.0768447 0.0437008 +-0.0106344 0.174261 -0.0225996 +-0.0617342 0.0737271 -0.0167014 +-0.0414956 0.0464933 0.0408152 +0.03243 0.0535036 0.0361605 +-0.0377322 0.150234 -0.00179971 +-0.0847627 0.109032 0.02334 +-0.0642974 0.167953 -0.0385345 +-0.0221614 0.0825281 0.0558751 +-0.0504951 0.0960175 0.0443724 +-0.0508177 0.0501221 0.014822 +-0.0436492 0.0577877 -0.0118151 +-0.0189776 0.0390241 0.0529956 +-0.0623698 0.169401 -0.0505859 +-0.0105368 0.0850533 -0.0384463 +-0.0181795 0.183113 -0.0176247 +0.0314401 0.110365 -0.00894711 +-0.0127075 0.065682 -0.0367743 +-0.0273345 0.172717 -0.009826 +-0.0666857 0.141706 -0.00893584 +0.0408833 0.10285 0.0201769 +-0.0876525 0.145908 0.0330215 +-0.0436328 0.056346 -0.0115255 +-0.0611631 0.0428583 0.0256966 +-0.0330915 0.16076 -0.0136886 +-0.085208 0.150101 0.00618898 +-0.0615069 0.172523 -0.0575905 +0.0555907 0.0604655 -0.000426808 +-0.0850315 0.151395 0.00719993 +-0.0728007 0.0864364 -0.0158265 +-0.003188 0.127967 0.0287063 +0.0455462 0.0861954 0.016167 +-0.0217098 0.115215 -0.0159934 +-0.0414975 0.0916447 0.0424797 +0.0487043 0.0430197 0.0122221 +-0.0869351 0.106366 0.0163624 +-0.0156753 0.0541059 -0.0332392 +-0.06162 0.150156 -0.00124665 +-0.00577101 0.098213 -0.0280417 +0.0223236 0.0550419 -0.0260567 +-0.00429403 0.131101 0.0138416 +-0.0636168 0.143654 -0.00954122 +-0.0855598 0.0912595 -0.00155473 +-0.0404413 0.10705 0.0387043 +0.0547917 0.0553704 0.0263503 +-0.0822116 0.101996 0.0303518 +-0.0437463 0.128889 0.0155826 +-0.0664819 0.0397537 -0.00588584 +-0.067283 0.161835 -0.0137578 +-0.061699 0.0599431 0.00295203 +-0.0715633 0.170815 -0.0500445 +-0.0861137 0.0805676 0.00950062 +-0.0502228 0.125461 0.0326401 +0.0589666 0.0552427 0.017183 +-0.0327176 0.125444 0.0196276 +-0.0632934 0.151996 -0.00122225 +-0.0512927 0.135429 -0.000552487 +-0.0184842 0.0897075 0.0555921 +-0.0260646 0.11803 -0.0129143 +0.0198889 0.0631747 0.0480195 +-0.0465912 0.145038 0.00283923 +0.0534733 0.0728245 0.019221 +-0.0352804 0.0341155 -0.0193879 +-0.0829241 0.126549 -0.00467577 +0.0279852 0.0352646 0.0181572 +-0.0531741 0.150869 0.0213978 +0.0202497 0.0347399 0.020698 +-0.062763 0.149042 -0.0175788 +0.00226918 0.115596 -0.0185376 +0.0250704 0.12404 0.011788 +-0.045498 0.101529 0.0420301 +-0.058497 0.0426323 0.0447374 +0.0455164 0.0904085 0.0121603 +0.0215692 0.0352857 0.025924 +-0.0274987 0.0631476 0.0380009 +-0.0140602 0.172758 -0.0187663 +0.0587826 0.0538552 0.0121765 +-0.0628795 0.15219 -0.00958093 +-0.0468135 0.1536 0.00939603 +-0.0928405 0.121514 0.033281 +-0.0622964 0.150648 -0.0145762 +0.0475064 0.0611159 0.0308231 +0.00412571 0.107297 -0.0203039 +-0.0703978 0.156305 0.0156818 +-0.053643 0.135335 0.0311995 +0.0067064 0.0341407 0.0184863 +-0.0466442 0.0397388 -0.0142756 +0.0119051 0.0711889 0.0540767 +-0.0447375 0.0357143 0.0441717 +-0.0228183 0.0840509 -0.0381648 +-0.023326 0.122164 -0.00726067 +0.0441999 0.0790177 0.0251667 +-0.0276246 0.160982 -0.00149388 +-0.0399791 0.126816 0.018458 +0.0222264 0.09191 -0.0233017 +-0.0627692 0.156841 -0.0155919 +0.044508 0.0412168 0.00624902 +-0.0731279 0.155455 -0.0309078 +0.0183024 0.0347298 -0.00182982 +-0.01652 0.0715906 0.0550352 +-0.091634 0.141989 0.0201675 +0.0440337 0.0734407 -0.000804833 +-0.0524198 0.0648658 0.0346087 +0.0572481 0.0508905 0.0141872 +-0.0164766 0.111102 -0.0196668 +-0.0418874 0.108498 -0.0194287 +0.0321354 0.0549697 0.0375085 +-0.0644897 0.102874 0.0413067 +0.0465079 0.0583728 0.0318256 +-0.0334582 0.0518969 0.0377238 +-0.0729908 0.139888 -0.00698816 +-0.0534544 0.124093 0.0367404 +0.0173165 0.0622663 -0.028279 +-0.0554104 0.0513256 0.00948897 +-0.014903 0.172738 -0.0182312 +-0.0502115 0.141667 0.015397 +0.0229958 0.0375848 0.0332895 +-0.0749615 0.135451 -0.00681495 +-0.0855353 0.0938173 0.0282665 +-0.069508 0.102769 0.0393316 +-0.0205392 0.0971418 -0.0249761 +-0.0312923 0.0362769 0.0513145 +0.0260175 0.0991397 -0.0189626 +-0.00594641 0.0989148 -0.0267499 +-0.0708605 0.0347825 0.00928864 +-0.0845393 0.103233 0.0269979 +0.0406232 0.0953057 0.0289912 +-0.0456818 0.0650665 -0.0140257 +-0.0326318 0.168236 -0.00522072 +-0.0765723 0.0689281 0.00553415 +-0.0176728 0.049548 -0.0303695 +0.00113463 0.130461 0.00151005 +-0.08699 0.0859713 0.00247197 +-0.0338357 0.095789 -0.0234311 +-0.0304987 0.10293 0.0419798 +0.0336335 0.0713894 0.0398251 +-0.0224957 0.101642 0.0440993 +0.0309373 0.119109 0.0111337 +-0.0734894 0.156164 0.020416 +-0.000755237 0.0740961 -0.035785 +0.0354988 0.0469226 0.030944 +-0.00617179 0.128513 -0.00228639 +-0.00460988 0.0388908 -0.00276124 +-0.0678289 0.135464 0.0458614 +0.0345596 0.114411 0.00388032 +-0.0884532 0.112251 0.0353052 +-0.0709934 0.170517 -0.0295248 +0.0284454 0.0995183 0.0412905 +0.0402167 0.0685122 0.0317439 +-0.0665769 0.0362823 0.0365183 +-0.0765583 0.148625 -0.00886956 +0.0576507 0.0606695 0.00219201 +0.060413 0.0664733 0.017165 +0.022246 0.0835763 0.0498509 +-0.0821459 0.0912329 0.0320422 +-0.0746727 0.145787 -0.00986958 +0.0345089 0.111329 0.0271807 +0.0594367 0.0663847 0.00713811 +0.0282217 0.0664463 -0.0207545 +-0.0619747 0.170963 -0.0535908 +-0.0394944 0.0492076 0.0395541 +-0.0787666 0.165266 -0.0299591 +-0.0749441 0.129634 -0.00796551 +-0.00112962 0.125371 0.0323555 +-0.0154803 0.0500282 0.047966 +0.0153592 0.0953434 0.0487033 +-0.085237 0.147388 0.00618456 +-0.0128008 0.0841443 -0.0388521 +0.024383 0.0518665 -0.0223004 +-0.0342551 0.0766309 -0.0244955 +-0.0670839 0.173532 -0.0453192 +-0.0772544 0.0764799 0.0316515 +-0.0270646 0.053566 0.0376661 +-0.0225205 0.112681 0.0384786 +-0.0884304 0.0874699 0.00847782 +-0.0737584 0.0914853 0.0405847 +-0.064968 0.128232 -0.00872903 +0.000512384 0.127929 0.028588 +-0.0599553 0.0610872 0.0239566 +-0.0384792 0.116679 0.0322191 +-0.0485119 0.112536 -0.0170517 +-0.0304781 0.0523954 -0.0163632 +0.0387588 0.108855 0.00681782 +-0.0406156 0.155109 0.0060988 +-0.0471466 0.149481 -0.0040486 +0.0179495 0.127337 0.00345096 +-0.0395837 0.0336987 -0.0198537 +-0.0633751 0.0344193 0.0288044 +-0.0424853 0.128365 0.0145816 +-0.0364913 0.113889 0.0338295 +0.0353283 0.112832 0.00268414 +-0.0653226 0.0343003 0.0144151 +0.0435313 0.065065 0.0273105 +-0.0795726 0.0867837 -0.00954059 +-0.0104381 0.171321 -0.0205524 +-0.0737003 0.156269 0.0145144 +-0.0733818 0.155466 -0.0289107 +-0.0198527 0.0382258 0.0238627 +-0.0188257 0.0725897 0.0542693 +-0.0778777 0.117832 -0.00599287 +-0.0365049 0.10423 0.0397359 +-0.00948278 0.0978353 0.051868 +-0.0103201 0.0393296 0.0497389 +-0.0876274 0.137747 0.00620032 +0.0416732 0.0819555 0.0304093 +0.0608524 0.0609661 0.0101561 +-0.0767143 0.154218 -0.0048969 +0.0174945 0.0838575 0.0514031 +-0.066433 0.0337378 -0.00503676 +-0.0232113 0.177135 -0.0206374 +0.0100949 0.034771 0.018605 +0.042675 0.0751161 0.0282624 +-0.0866662 0.0833296 0.0114916 +-0.0504965 0.157865 0.00943584 +0.0433406 0.0973216 0.0191637 +-0.0888303 0.0915034 0.00845607 +-0.0555242 0.0415797 -0.00918326 +-0.0337405 0.075174 -0.025488 +-0.0906275 0.137865 0.0211926 +-0.0123027 0.0389534 -0.0136872 +-0.045835 0.0941966 -0.0219229 +-0.0238433 0.163025 -0.0155105 +-0.0522937 0.12758 -0.00475935 +0.0308793 0.0356029 0.0166157 +0.0423563 0.0588819 -0.00453174 +-0.00663392 0.0466819 -0.0297341 +-0.0484493 0.0656843 0.0374132 +-0.0270407 0.125883 0.0113821 +-0.0910269 0.129538 0.0072515 +-0.0455907 0.0447683 -0.0109766 +0.00905498 0.0971664 -0.0248901 +0.00396755 0.0341147 0.00886829 +0.00550365 0.123767 0.0339438 +0.0400787 0.0432895 0.0279756 +-0.00815712 0.126302 0.0298556 +-0.0609217 0.118124 -0.010668 +-0.0141549 0.129252 0.0145753 +0.0274448 0.120188 0.0255104 +-0.0485004 0.111187 0.0370789 +0.0451596 0.0789195 0.0230398 +-0.0138991 0.162654 -0.0155462 +-0.0528814 0.0447887 0.0196824 +0.0277468 0.0465681 -0.0107176 +-0.0580291 0.124109 0.0406616 +-0.0404897 0.0874362 0.0429424 +0.0316544 0.117354 0.0228159 +0.0277648 0.098182 0.0420578 +-0.0391765 0.165177 -0.0125287 +-0.0691207 0.112747 0.0474107 +-0.0614963 0.102908 0.0417081 +0.0393676 0.0927337 0.0325144 +0.0214921 0.125223 0.0232941 +-0.0167077 0.059948 -0.0356741 +-0.0619704 0.118373 0.041992 +-0.0359339 0.109235 -0.0196158 +-0.0150259 0.185694 -0.0231645 +0.0245929 0.0577938 0.0442192 +-0.00233157 0.122878 -0.010278 +-0.0434949 0.0817618 0.042266 +0.0298844 0.0350171 0.0132987 +-0.00424346 0.0409986 0.0479883 +-0.0776115 0.15005 -0.0049035 +-0.0124244 0.108763 -0.0212047 +-0.0798966 0.083235 0.0342815 +-0.0813623 0.104616 -0.00457868 +-0.0167402 0.0671791 -0.0380101 +0.0259555 0.123153 0.0178233 +0.0406613 0.0638232 0.0297482 +-0.0129458 0.117871 -0.0148632 +-0.0708515 0.0937008 -0.0159297 +-0.0688238 0.1383 0.0462399 +-0.0886846 0.136388 0.00720801 +0.0460186 0.0714912 0.0208033 +0.0465334 0.07646 0.0111853 +0.000795729 0.0345137 0.0115011 +0.0318042 0.0661523 0.0406683 +-0.0277917 0.0810724 -0.036339 +-0.012329 0.0361667 0.050366 +-0.0672863 0.151256 -0.0426939 +0.0328851 0.0556122 -0.0127142 +-0.0444939 0.107088 0.0401229 +-0.088037 0.113814 0.026966 +-0.0228073 0.184465 -0.0170667 +-0.00369909 0.0598617 -0.0340393 +-0.0698551 0.16523 -0.017589 +-0.0464984 0.047794 0.0396541 +-0.0756919 0.143067 -0.00582827 +-0.0208788 0.0383361 0.00183886 +-0.0768287 0.154208 -0.00589938 +-0.0147866 0.0799249 -0.0391233 +-0.0699384 0.150598 0.0380766 +-0.0866088 0.126656 -0.00171455 +-0.0792409 0.168033 -0.0359701 +-0.0650871 0.0417056 0.03635 +0.0353256 0.109535 -0.00390394 +0.00651309 0.0828012 0.0562471 +-0.0512535 0.0528689 0.0137817 +-0.0635072 0.0590749 0.0125217 +-0.0892074 0.127019 0.0449806 +0.0451896 0.0875706 0.0191665 +-0.0576689 0.0350157 0.0450337 +-0.0441239 0.129077 0.0169132 +0.00351519 0.0634007 0.0566286 +-0.0456618 0.0741031 -0.0174455 +-0.045802 0.0382259 -0.0192856 +-0.0774749 0.141413 0.0470689 +0.019092 0.0350694 0.0292369 +-0.0721908 0.176974 -0.0457483 +-0.0228049 0.0784515 -0.0385457 +-0.0196863 0.0539295 -0.0316066 +0.0370985 0.0632585 0.0359995 +-0.0097823 0.0613531 -0.0352263 +-0.0518485 0.147799 0.0174109 +-0.0424957 0.11253 0.0356818 +-0.00161218 0.0387745 0.0252993 +0.0432025 0.0777701 0.0272794 +0.0158912 0.0644868 0.0510299 +-0.0624956 0.0861834 0.0447184 +0.0226823 0.0605452 0.0467602 +-0.0345153 0.0780634 -0.0235017 +-0.0693572 0.156301 0.0160519 +-0.0848272 0.110715 0.0391424 +0.00397477 0.0389229 -0.0104191 +-0.0107444 0.0685007 -0.0365794 +0.0105122 0.0673666 0.0542979 +-0.0493982 0.113885 -0.0164603 +0.0292359 0.120576 0.0147663 +0.0143954 0.0433708 -0.024029 +-0.0548811 0.099887 -0.0210509 +-0.0345638 0.113971 -0.0166195 +-0.00945158 0.0346766 0.0453022 +-0.0114995 0.0486859 0.0490069 +0.047721 0.0729559 0.00883547 +0.00782583 0.131487 0.0111342 +0.018385 0.126365 0.000765748 +-0.0801977 0.117632 0.0490824 +0.0508224 0.0446928 0.0102182 +-0.0792484 0.154932 0.0111245 +-0.0616259 0.175734 -0.0596865 +-0.0554957 0.10156 0.042627 +-0.0693451 0.162383 -0.0509602 +0.0464905 0.0624784 0.0299685 +-0.0626979 0.149033 -0.0165859 +-0.027787 0.0838632 -0.0360686 +-0.068908 0.112267 -0.0105177 +-0.0464636 0.157957 0.00818306 +-0.0656199 0.0690554 -0.0100807 +-0.0594903 0.081873 0.0434438 +-0.042501 0.0803745 0.0423542 +-0.0715599 0.0733863 -0.0105456 +-0.00392373 0.129832 0.00104637 +0.0231411 0.0844685 -0.0255261 +-0.0582906 0.0411368 0.01871 +-0.0231503 0.121506 -0.00857745 +0.0353371 0.0534224 -0.00701071 +-0.028498 0.108421 0.0390601 +-0.0161996 0.0386499 0.0314325 +0.0417053 0.0943445 -0.00480688 +-0.037505 0.0874848 0.0436782 +-0.0859867 0.140484 0.00417932 +-0.0394569 0.124785 -0.00795634 +-0.0629125 0.111049 -0.0145904 +-0.0697706 0.0337438 0.00328799 +0.0353216 0.0863185 -0.0174167 +-0.0529232 0.125495 0.0357533 +-0.0145001 0.0870236 0.0569643 +-0.00422597 0.10111 -0.0231367 +0.026954 0.114984 -0.00791167 +0.0123614 0.0509077 -0.0278502 +-0.0705953 0.157132 -0.0018785 +-0.0270301 0.0604609 -0.0294673 +-0.0252429 0.163867 -0.00684922 +0.0164575 0.0900289 -0.0273543 +0.0182356 0.126981 0.00216332 +-0.0276261 0.15573 -0.00786612 +-0.0687195 0.165823 -0.0200644 +-0.0237576 0.0713185 -0.0373359 +-0.0350727 0.157773 -0.0116201 +-0.0115095 0.129073 0.00398865 +-0.000506085 0.0442149 0.046198 +0.0372544 0.109701 0.0220387 +-0.0154921 0.0382096 0.0157388 +-0.0500202 0.131989 -0.0014354 +-0.025472 0.0851651 0.0520429 +-0.0328435 0.125555 0.000439943 +-0.0773991 0.152954 0.0323974 +-0.0504161 0.144734 0.0123765 +-0.0576549 0.124438 -0.00742698 +0.0532901 0.0621073 -0.00218568 +-0.0298754 0.0748068 -0.0335581 +-0.0642433 0.0338438 0.0114826 +-0.0316113 0.0409091 -0.0301005 +0.00142887 0.0392678 -0.00936829 +0.0274179 0.122108 0.0155174 +-0.0144987 0.0884006 0.0568363 +-0.0184962 0.109943 0.0409607 +0.0379028 0.0997575 -0.00879746 +-0.0244855 0.0461464 0.0516096 +0.03717 0.0713299 0.0361376 +0.0442521 0.0804694 -0.00179963 +-0.0693598 0.153979 -0.049866 +-0.045049 0.0367204 -0.0222184 +0.0226853 0.115014 -0.0119595 +0.0308676 0.0713453 0.0410867 +-0.0253533 0.0381958 0.00468802 +0.0115087 0.101793 0.0474223 +0.0122157 0.0346138 -0.0197432 +-0.078807 0.10613 0.032485 +0.0412927 0.101424 0.0211601 +0.0449984 0.0413097 0.00725015 +-0.0614983 0.0861808 0.0447299 +0.0201601 0.0357218 -0.00467829 +-0.0270641 0.0376545 -0.0293745 +-0.0491197 0.137061 0.00540677 +-0.00249881 0.0829011 0.0575494 +0.021052 0.0358187 -0.0026817 +-0.0154895 0.0559453 0.0511175 +-0.0718433 0.0833097 0.0403454 +-0.087976 0.141871 0.0376917 +-0.0787586 0.163869 -0.0289482 +-0.0485008 0.0732772 0.0415918 +-0.0366615 0.0606699 -0.0121541 +0.0262206 0.0435744 -0.00668237 +0.000219502 0.0370979 0.0467851 +-0.00149685 0.0456811 0.047029 +-0.0545635 0.122251 -0.00910565 +-0.0186556 0.0480312 -0.0293255 +0.0387854 0.0701818 -0.0117862 +-0.0654945 0.0398115 -0.0063825 +-0.0437744 0.116579 -0.0153348 +-0.0344901 0.0987486 0.043091 +0.0610023 0.062364 0.012157 +0.0141007 0.120583 0.0346592 +-0.0823269 0.108767 -0.000607289 +0.0214843 0.092023 0.0479434 +-0.070667 0.0763937 -0.014042 +0.021114 0.0592021 0.0480036 +0.0252499 0.0775815 -0.0248688 +-0.0601377 0.0338299 0.0176745 +-0.0579501 0.0592474 0.0206872 +-0.0769058 0.154074 0.0295482 +0.0198639 0.11968 -0.0089705 +0.0022305 0.0754937 -0.0353597 +-0.00780413 0.0840976 -0.0379648 +-0.0611789 0.172541 -0.0596341 +-0.0447417 0.0768063 -0.0185987 +-0.017374 0.0569064 0.0504968 +0.00450466 0.087016 0.0568401 +-0.0709391 0.109631 0.0395791 +-0.0674006 0.0406253 -0.00334064 +-0.0311093 0.169745 -0.00652433 +0.0242906 0.0676576 -0.0247124 +-0.0326084 0.171239 -0.00339173 +-0.0325897 0.0666513 -0.0194517 +0.0319052 0.0437397 0.0295375 +-0.0450254 0.127281 -0.00449582 +-0.0226309 0.0478785 -0.0276417 +-0.0583127 0.0580812 0.00726379 +-0.037778 0.0827556 -0.0219531 +-0.0518874 0.106988 -0.0190452 +0.0163996 0.044784 -0.0236657 +0.0103374 0.0553349 -0.0300221 +0.0206753 0.126786 0.0115854 +-0.0850979 0.131233 0.0492505 +-0.0192324 0.177141 -0.0234526 +-0.0199616 0.0697296 0.0526775 +-0.0561055 0.158254 0.000206899 +-0.055732 0.115927 -0.0145408 +-0.0417663 0.162365 0.00442786 +-0.0305905 0.119479 -0.0103702 +0.0234999 0.0955508 0.0464417 +-0.0498856 0.149233 0.0119087 +-0.0154824 0.185702 -0.0219175 +0.00917376 0.125511 -0.00726227 +-0.0913426 0.147495 0.0231401 +-0.00381375 0.0896299 -0.0357356 +-0.0686943 0.154419 0.0308917 +-0.02552 0.111233 0.0379672 +-0.0705473 0.1414 0.0460484 +-0.00201946 0.100869 0.0458524 +-0.0876244 0.129442 0.00130199 +-0.00449535 0.0965559 0.0536663 +-0.0271292 0.0850573 0.0494379 +-0.0914908 0.1337 0.0152201 +0.00523694 0.126704 0.0302977 +-0.0470651 0.153179 -0.00606436 +-0.0672153 0.156284 0.0168104 +-0.0427934 0.0869807 -0.0215837 +0.0423379 0.0683118 0.0277209 +-0.0295859 0.0790353 -0.0345348 +-0.0477964 0.062891 0.036824 +-0.00968443 0.0570101 -0.0338896 +0.0451851 0.0861731 0.0211635 +0.00951284 0.0532319 0.0521285 +0.0302906 0.0787129 -0.0208549 +-0.0738862 0.104992 -0.0108534 +0.0453646 0.0575572 -0.00557548 +-0.0663103 0.0759418 0.0397029 +0.0143833 0.128699 0.00214848 +0.00580886 0.130668 0.0218239 +-0.0131274 0.0387957 -0.00624825 +-0.00997898 0.172997 -0.0279186 +-0.0620827 0.174072 -0.0556227 +-0.0546337 0.0334816 0.0119976 +0.0208676 0.121124 0.0316774 +0.0220436 0.125932 0.0163676 +0.0377227 0.0561747 0.0314909 +-0.0721609 0.147032 -0.0238695 +-0.0738111 0.0907253 -0.0150698 +-0.0362217 0.0335837 -0.0228111 +0.0387097 0.105846 2.20656e-05 +-0.0556277 0.0365615 0.0468082 +-0.0836005 0.0763298 0.006515 +0.0280677 0.100848 0.0407486 +-0.0831241 0.100626 0.0298981 +-0.0305493 0.0479587 -0.0242789 +0.0165747 0.0519808 0.0466207 +0.0447673 0.0847221 0.00118921 +-0.0146056 0.0435263 -0.0269315 +0.0273074 0.0346174 0.0112772 +-0.0683005 0.139737 0.0452157 +-0.0485925 0.132707 0.00186362 +0.00897502 0.113705 0.0394792 +0.010104 0.0343592 -0.0200136 +-0.0769339 0.126684 -0.00758482 +0.00350625 0.0547769 0.0535608 +-0.0850528 0.0993835 -0.000573805 +0.00144009 0.0350568 0.0184024 +-0.0301745 0.17266 -0.0167996 +-0.0732751 0.148715 -0.0303812 +-0.0837086 0.0952625 0.0306499 +-0.0742711 0.149885 -0.0318724 +-0.00654578 0.0384949 0.010053 +-0.0248989 0.0968475 -0.0246804 +-0.0633856 0.148243 -0.0195768 +-0.0647288 0.126998 0.0468559 +-0.058406 0.0598457 0.000248469 +0.0425358 0.0710418 0.0280089 +-0.0915343 0.140602 0.0181819 +-0.0407824 0.116214 -0.0149415 +-0.0445073 0.0491885 0.039305 +0.0294698 0.0801098 -0.0210213 +-0.0277559 0.0348695 0.0499059 +-0.0137302 0.107232 -0.0215702 +-0.0482685 0.037339 -0.0123839 +-0.0673815 0.0659915 0.0287149 +-0.0567046 0.11983 0.0390246 +0.0211901 0.113994 0.0360983 +0.0319596 0.11565 0.0257836 +-0.050462 0.0402796 0.0458238 +-0.0364752 0.09732 0.0430461 +0.00119043 0.0895238 -0.0341779 +-0.0699807 0.149351 0.039589 +0.0439472 0.0917185 0.0231564 +-0.0559199 0.113507 -0.0160179 +-0.0853556 0.095327 -0.00158429 +-0.0662723 0.154476 -0.00173975 +-0.0186027 0.111108 -0.0196906 +-0.0563562 0.140993 0.0307629 +-0.00358231 0.0383094 0.0162632 +-0.0568935 0.0562594 0.000567085 +-0.00649422 0.0590504 0.0549316 +-0.0245507 0.183147 -0.010424 +-0.032468 0.175717 -0.00291757 +-0.0132616 0.175663 -0.0275653 +0.00407218 0.0361395 0.0234015 +-0.00250245 0.104479 0.0441797 +0.00787676 0.127927 0.0283381 +-0.0760841 0.164579 -0.0198769 +-0.0814657 0.130234 0.0522094 +0.0322493 0.109934 -0.00848346 +-0.0747758 0.152715 -0.0228916 +-0.0360726 0.1261 0.0198793 +0.00651921 0.0869957 0.0564058 +-0.0863282 0.151358 0.00923307 +-0.00766666 0.0527037 -0.0328501 +0.0329828 0.110047 0.0302661 +-0.0819069 0.0844754 0.0320139 +0.020413 0.0521197 0.0451417 +-0.043267 0.149185 0.00566881 +0.03267 0.0767015 -0.0187757 +-0.0861456 0.140625 0.0415389 +-0.0665323 0.154667 0.00252946 +-0.0231566 0.158136 -0.0102789 +-0.0217907 0.0957944 0.0466571 +-0.0638349 0.156748 -0.0426051 +-0.0346441 0.117803 -0.0126135 +0.00980894 0.0658051 0.0545289 +-0.080258 0.0859229 0.0345477 +-0.0117542 0.0386862 -0.015202 +-0.080536 0.135397 0.0502642 +-0.0325368 0.0792892 -0.0295289 +-0.0784828 0.0717889 0.00251767 +-0.00149343 0.0883979 0.0566431 +-0.0137942 0.0386802 -0.0156021 +-0.0444896 0.101534 0.0420576 +-0.00192307 0.107424 -0.021877 +-0.0440699 0.153194 -0.00699527 +0.00318991 0.0880718 -0.0337792 +-0.0344943 0.0718865 0.0415833 +-0.030416 0.0692532 -0.0284548 +-0.0622359 0.167822 -0.0495929 +-0.0344858 0.100109 0.0424402 +0.00649387 0.0590149 0.0539921 +0.0360791 0.111295 0.00152105 +-0.0587368 0.0434475 0.0440841 +-0.0417025 0.0666657 -0.0153449 +-0.0533816 0.0513995 0.0117052 +-0.0285002 0.097396 0.0440561 +-0.0690491 0.153118 -0.0485047 +-0.0144923 0.093841 0.0546527 +-0.0633747 0.036885 -0.0080479 +-0.0706693 0.165215 -0.0479768 +0.0127157 0.0350729 0.0423657 +0.00853944 0.100396 0.0475311 +0.0211162 0.126093 0.00605375 +-0.0514924 0.113914 0.0348157 +0.0172187 0.117738 -0.0128881 +-0.01069 0.0969192 -0.0307004 +0.0121568 0.0930338 -0.0284961 +-0.0772387 0.158974 -0.0142914 +-0.0667905 0.0852019 -0.0183581 +0.0154254 0.0834009 0.0522607 +-0.0487147 0.0723044 -0.01565 +-0.0464696 0.0675313 0.0396048 +-0.0110203 0.0383532 0.0129011 +-0.0205151 0.114503 -0.0172551 +-0.0556769 0.0499718 0.00979142 +-0.0503626 0.0642656 0.0349674 +-0.00189958 0.130575 0.00323807 +-0.00749418 0.0533074 0.0526841 +-0.0781504 0.0736081 0.0268981 +-0.00216638 0.09997 -0.023881 +-0.0374964 0.119384 0.0304732 +-0.0237883 0.0932085 0.0487292 +-0.0846322 0.139314 0.044315 +0.00579995 0.0355749 0.0242599 +-0.0498385 0.0970763 -0.0221981 +0.0311277 0.0795524 0.0433085 +-0.080771 0.105947 -0.00458985 +-0.0541694 0.136721 0.0304424 +-0.0158788 0.038593 -0.0159367 +0.0375503 0.0588742 -0.00872526 +-0.0278572 0.0972984 -0.0239915 +-0.0609119 0.0678343 0.0355003 +0.0406749 0.0801882 -0.00878559 +-0.0891047 0.101026 0.0153901 +0.0370023 0.11146 0.00905905 +-0.00649525 0.0576581 0.0543368 +0.0215982 0.0645366 0.046975 +-0.0290293 0.160675 -0.0139931 +0.00903586 0.100133 -0.0220275 +-0.0584961 0.104303 0.041452 +-0.0664115 0.162305 -0.0579417 +0.0239006 0.0520481 0.0413924 +-0.0216874 0.126575 0.00458035 +-0.0485184 0.0438796 0.0435224 +-0.0231474 0.0384868 -0.00611954 +-0.00826521 0.0380456 0.0491273 +-0.0528526 0.147782 0.0214111 +-0.0907516 0.137857 0.0201957 +-0.0758557 0.103473 -0.0101675 +-0.0397582 0.079747 -0.0196231 +-0.0147733 0.078434 -0.0385776 +0.00381296 0.0379313 -0.0132938 +-0.0694673 0.0635361 0.0216095 +-0.0528954 0.105563 -0.0191967 +0.0343906 0.0529675 -0.00763383 +-0.0293172 0.172724 -0.00740528 +0.00850711 0.0688384 0.055257 +-0.016261 0.181575 -0.0262548 +0.0213104 0.0415776 -0.0147 +-0.0780733 0.100357 -0.00962255 +-0.0846334 0.108922 0.00436756 +-0.0186964 0.0569405 -0.033635 +-0.037924 0.175153 -0.00739726 +-0.049768 0.081217 -0.020889 +0.0335081 0.0942386 0.0398247 +-0.0729901 0.154042 -0.0338982 +-0.0233975 0.156883 -0.00572928 +-0.0873262 0.103661 0.0203534 +-0.0501055 0.129693 0.0310292 +0.029581 0.0907082 -0.0200166 +0.043329 0.066441 -0.000599376 +-0.00664168 0.0482162 -0.0304375 +0.021889 0.0963552 -0.0220144 +-0.0265893 0.161003 -0.00174275 +0.044803 0.0945847 0.0121616 +-0.0725608 0.109721 0.0409258 +-0.0372497 0.126436 -0.00264816 +0.005339 0.0971934 -0.026912 +-0.0241177 0.120704 -0.00972559 +-0.0462757 0.0390662 0.0448146 +-0.00565778 0.12946 0.000751082 +0.0213227 0.122349 -0.00385694 +-0.0414913 0.0790271 0.0430475 +0.0190905 0.127062 0.0195525 +-0.0805286 0.124537 0.0519983 +-0.0782836 0.0860139 0.0367982 +0.0219644 0.126042 0.013483 +-0.0325696 0.0410226 0.0505793 +0.0295979 0.039453 0.0274445 +-0.0475678 0.0446906 -0.0104074 +-0.0654918 0.0917539 0.043991 +-0.0307813 0.122738 0.0233033 +-0.0854845 0.112639 0.0445732 +0.0231366 0.0404268 -0.00664294 +-0.00398687 0.126095 0.0313534 +-0.0641503 0.0436305 0.0113748 +-0.0314872 0.0646167 0.0387865 +-0.0776274 0.0692865 0.00957677 +-0.0195579 0.0946763 0.0515134 +0.014517 0.0344542 -0.0117299 +-0.0376663 0.0621956 -0.0129723 +0.00459507 0.101613 0.0450146 +-0.0281642 0.0346776 -0.0203658 +0.0147654 0.125019 -0.0047274 +-0.0344283 0.0338921 0.0139586 +-0.0364985 0.117968 0.0313259 +-0.0456444 0.0592254 -0.0120696 +-0.0260288 0.0381935 0.00636573 +-0.088169 0.124336 0.0468831 +-0.0540681 0.135339 -0.00310003 +-0.0291607 0.171183 -0.0175503 +0.0104455 0.0488162 0.0487077 +-0.0881632 0.0861128 0.0124706 +-0.0258758 0.0578187 0.0391737 +0.00450037 0.0427385 0.0456181 +-0.0537204 0.0491564 0.0326591 +0.0388727 0.0645792 -0.00975725 +-0.0500679 0.0501277 0.0166633 +-0.0669104 0.120913 -0.00889891 +-0.036233 0.0469115 -0.0220883 +-0.0118859 0.163867 -0.0168515 +-0.0619905 0.129678 -0.00799355 +-0.0652279 0.0397522 0.0288372 +-0.0508809 0.104197 -0.0202021 +-0.00186382 0.104504 -0.0225214 +-0.0619023 0.120903 -0.00899386 +0.00323955 0.0754773 -0.0351385 +-0.0384934 0.105604 0.0386511 +-0.0905225 0.118622 0.0053153 +-0.0284893 0.0835322 0.0466293 +0.00823162 0.0387858 0.0309201 +-0.0616053 0.156855 -0.0285887 +-0.0508615 0.101367 -0.0215394 +-0.0318582 0.102916 -0.0222908 +0.00526525 0.0350275 0.0444668 +-0.0646344 0.0337755 0.00968147 +-0.0640121 0.136992 -0.00763419 +-0.0456074 0.0345826 0.0394197 +-0.0864043 0.111678 0.00530063 +-0.0207807 0.0581858 0.0468036 +-0.0608886 0.105445 -0.0177606 +0.0417928 0.0746499 -0.00676608 +0.0195225 0.0821843 0.0511684 +-0.0464961 0.0833304 0.0442498 +0.0164933 0.119532 0.0345952 +-0.0626731 0.158367 -0.0396045 +0.00725591 0.129807 0.000165614 +-0.0909094 0.114612 0.0400043 +-0.0496217 0.0532216 -0.00894483 +-0.0204558 0.0772045 0.0549311 +-0.0225647 0.184728 -0.0122995 +-0.0389284 0.111648 -0.0181691 +-0.0312712 0.125373 0.00251041 +-0.0157734 0.075693 -0.0388238 +0.0245364 0.0862451 0.0478999 +-0.0296756 0.125596 0.0148252 +-0.0446861 0.130064 0.0166863 +-0.0225936 0.0382891 0.00334965 +-0.0787949 0.0758277 -0.00557109 +-0.0665305 0.155586 -0.0523326 +-0.0631388 0.0620641 0.0242 +0.0275571 0.0875682 0.0452466 +-0.0838788 0.153353 0.0242347 +-0.0365497 0.124951 0.0226726 +0.0318595 0.0673315 0.0407335 +0.00950257 0.0896505 0.0545501 +-0.0597218 0.118329 0.0399103 +-0.0840037 0.0992695 0.0294026 +-0.0777723 0.0832737 0.0363717 +0.0427594 0.0986702 0.00117933 +-0.0422677 0.111306 -0.0177858 +-0.0762231 0.16043 -0.0125715 +-0.0634008 0.115527 0.0417242 +-0.036507 0.106984 0.0382357 +-0.0384749 0.0351927 -0.0135871 +-0.0744578 0.144386 -0.00789461 +0.0593202 0.0701868 0.012517 +-0.0226744 0.0522819 -0.0290541 +-0.0875766 0.122583 -0.000713178 +-0.0170034 0.127025 0.0015954 +-0.0705369 0.155342 -0.0479286 +-0.0709342 0.128224 -0.00904999 +0.00705252 0.0346309 0.0397936 +-0.0585604 0.133937 0.0364008 +-0.0863384 0.102179 0.00442425 +0.0107631 0.0671702 0.0541647 +-0.0695537 0.163673 -0.0146023 +-0.0452915 0.1298 0.0046882 +0.00836647 0.0494746 -0.0282442 +-0.0691053 0.0641529 -0.000471523 +-0.0065051 0.0518538 0.05236 +-0.0557789 0.0811944 -0.0212002 +-0.0801928 0.109885 0.0408487 +-0.0136098 0.0997657 0.0454373 +0.0375013 0.045461 0.0306904 +-0.0857877 0.152992 0.0221351 +-0.00139702 0.0346206 0.0416594 +-0.0501963 0.061364 0.033592 +0.0161097 0.0974052 -0.0230873 +-0.0194917 0.0568426 0.0483686 +0.0492985 0.0561391 -0.00508332 +0.0184753 0.100361 0.0464541 +-0.0504953 0.154968 0.0107183 +0.0147875 0.105075 -0.0193 +0.023524 0.11536 0.0341991 +0.0310013 0.118944 0.0140014 +-0.0172406 0.178621 -0.0252251 +-0.0367055 0.112873 -0.0174612 +-0.026888 0.0344315 -0.0290471 +-0.052616 0.0542078 0.012269 +-0.0374932 0.0478153 0.0397186 +-0.0727381 0.151148 -0.0398146 +0.0042421 0.0740405 -0.0347398 +-0.0170835 0.187214 -0.0216216 +-0.0744375 0.0658205 0.00791081 +-0.0225303 0.159751 -0.00283877 +-0.015413 0.0343578 -0.0194213 +0.0138178 0.034673 0.033937 +-0.0756035 0.0846721 0.0383975 +-0.0823671 0.0939609 0.0321712 +-0.0597053 0.0675469 -0.0111319 +-0.0911321 0.146088 0.0161475 +0.0350128 0.0797448 -0.0167143 +-0.0835371 0.151134 0.0310567 +-0.0125098 0.0759113 0.0569785 +-0.014877 0.12853 0.00563728 +-0.067594 0.162379 -0.0559888 +-0.0299722 0.0523401 -0.0183637 +-0.0175125 0.109971 0.0410978 +-0.0602175 0.0443014 -0.00489461 +0.047415 0.0539813 0.0314992 +-0.0695317 0.0366687 -0.00405392 +-0.0710533 0.04057 0.0057746 +-0.0594926 0.112518 0.0361699 +-0.0870454 0.128039 -0.000695727 +-0.0548606 0.0532734 -0.00439052 +0.0197584 0.121448 -0.00690816 +-0.0217284 0.0919768 0.0523353 +-0.0331407 0.073693 -0.0254949 +-0.0165233 0.0472885 0.0494939 +0.0430185 0.100102 0.00517011 +-0.0941673 0.124186 0.0242853 +0.0398988 0.106999 0.0131638 +-0.0388567 0.0985732 -0.0220835 +-0.013744 0.0347692 0.0478272 +0.0525444 0.0728335 0.00848027 +0.0340202 0.108707 0.0300072 +0.0135389 0.0341511 0.00148413 +-0.0255703 0.121939 -0.00698176 +-0.0627659 0.0795658 -0.0187488 +0.0159163 0.0366121 0.0434543 +-0.0677812 0.0823162 -0.0178553 +-0.00231448 0.129778 0.000344647 +-0.0224096 0.15809 -0.00961754 +-0.0369427 0.15804 0.00437449 +-0.0557441 0.0768187 -0.0193441 +-0.0661875 0.165349 -0.0586121 +-0.0764308 0.11585 0.051182 +0.00923994 0.0795457 -0.0327494 +-0.0141356 0.103403 -0.0235224 +-0.0725643 0.165173 -0.0170441 +-0.0708131 0.0922561 -0.0160967 +-0.052837 0.143168 0.022419 +-0.0289488 0.0487095 0.0453204 +-0.033511 0.104273 0.0404948 +0.0173468 0.0552065 -0.0282783 +-0.0643722 0.0392301 0.0399397 +0.0154605 0.100515 0.0471558 +-0.0389991 0.0361252 0.0429011 +-0.0912831 0.133698 0.0142161 +-0.042206 0.166657 -0.0103803 +-0.0829702 0.111001 0.0428895 +-0.0244677 0.122018 -0.00707965 +-0.00847955 0.107265 0.0437628 +-0.0410173 0.12678 -0.00403845 +-0.00247117 0.091392 -0.0349524 +-0.0733228 0.17276 -0.036126 +-0.0584972 0.102936 0.0420973 +-0.0275816 0.0549129 -0.0253866 +-0.0567567 0.0416998 -0.00856929 +0.00796329 0.0376774 0.0282412 +-0.0764966 0.130271 0.0529935 +-0.0385029 0.0346069 0.040918 +-0.0178242 0.0882801 -0.0380186 +-0.0592916 0.0381211 0.04617 +-0.0507734 0.0826521 -0.0214824 +-0.011501 0.0787467 0.0576654 +0.0135076 0.115425 0.0371825 +-0.0649944 0.132589 -0.00831046 +0.00449953 0.0474774 0.0501288 +-0.0183564 0.0639745 0.0512546 +-0.0454992 0.0425256 0.0437126 +0.00186325 0.0380873 -0.0138264 +0.0213321 0.100802 0.0450693 +-0.0855641 0.121149 -0.00272592 +-0.0898794 0.136494 0.0232114 +-0.0498262 0.0941747 -0.0218116 +0.0413792 0.0533854 -0.00680998 +-0.0912918 0.11477 0.0353243 +0.0585317 0.0565811 0.0212119 +0.000449556 0.130948 0.00412356 +-0.0343831 0.0766477 -0.0234928 +-0.0394659 0.108422 0.0377073 +-0.0477552 0.161949 -0.00697323 +-0.0278288 0.122593 -0.00568164 +-0.0563034 0.124125 0.0396482 +-0.0656415 0.129793 0.0454963 +0.0484031 0.0553841 0.03118 +-0.0455014 0.116621 0.0320048 +-0.0728613 0.102198 -0.0128504 +-0.0867252 0.0994863 0.00342747 +-0.00226785 0.0370021 0.0122687 +-0.0557143 0.0709328 -0.0156898 +-0.0610115 0.132585 -0.00747053 +0.00217526 0.0894962 -0.0338845 +-0.012585 0.0933765 -0.0350613 +-0.0553875 0.143884 0.0305002 +-0.0920989 0.117453 0.031314 +-0.0616144 0.155309 -0.0245851 +0.0502575 0.0602229 -0.00418894 +-0.0735402 0.0708078 0.0302704 +0.00614005 0.103026 -0.0213684 +-0.00271026 0.0669475 -0.0345168 +-0.049518 0.0344739 0.029929 +-0.0525731 0.128311 0.0345149 +-0.0605331 0.151186 -0.000375192 +-0.0866695 0.135213 0.0450386 +-0.0515626 0.0460585 0.0186779 +-0.00891802 0.0982381 -0.0280905 +-0.0170028 0.0977503 -0.0256286 +-0.0541413 0.128093 -0.005327 +-0.0234618 0.0385102 -0.00806272 +-0.0234875 0.125296 0.0010065 +0.0238248 0.0404881 0.03829 +-0.0564079 0.0334582 -0.0027528 +-0.0667678 0.0695012 0.0345692 +-0.00845839 0.0346349 0.045549 +-0.0748544 0.15611 0.0141114 +-0.0718277 0.141507 -0.00801564 +-0.0263582 0.120444 -0.00943021 +-0.0384861 0.0847024 0.0437961 +0.0154742 0.126309 -0.00212525 +-0.0329093 0.0461288 0.0451027 +-0.00179731 0.0390446 -0.00419837 +-0.0830843 0.0843065 -0.0045636 +-0.00849798 0.051815 0.0518583 +0.0211703 0.0458979 -0.0197309 +0.0250466 0.0534973 0.0413033 +-0.00301309 0.0994095 -0.0252863 +-0.0286636 0.0662687 -0.0294695 +-0.0275164 0.0588544 0.0372755 +0.021248 0.0707121 -0.0275992 +0.0118973 0.0699023 0.0540919 +-0.0850671 0.0831487 0.00248224 +0.0112963 0.123527 -0.00913288 +-0.0471043 0.0355495 0.00808039 +-0.0305886 0.0341169 0.0127308 +0.0232695 0.0795597 0.0495474 +-0.0781795 0.165241 -0.0349583 +-0.00548333 0.122374 0.0356916 +0.02636 0.0531741 -0.0208871 +-0.0117787 0.0784571 -0.0380559 +-0.0374622 0.0945463 0.043653 +0.0298506 0.0915959 0.0433109 +-0.063716 0.150986 -0.0306408 +-0.0915859 0.128175 0.00825933 +0.0456498 0.0806034 0.02116 +-0.0483119 0.0614742 0.035964 +0.0375235 0.0968947 -0.00979522 +-0.0923144 0.132364 0.0182222 +0.0175115 0.118187 0.0352964 +-0.027798 0.0824702 -0.0362167 +-0.0679219 0.123838 -0.00890383 +-0.0136906 0.0585033 -0.0353384 +-0.0560167 0.0334996 0.00451355 +-0.00170896 0.0655406 -0.0343993 +-0.0134843 0.053101 0.0504987 +-0.0675811 0.143978 0.0427672 +-0.0395371 0.165252 0.00310729 +-0.00177026 0.0987839 -0.0266092 +0.0449905 0.0917771 0.0161555 +-0.0142754 0.0385008 0.0265607 +-0.024936 0.0546494 -0.0284077 +-0.0737754 0.0849525 -0.0153987 +-0.00225491 0.0393816 0.0354457 +0.00953649 0.101759 0.0470503 +-0.030493 0.0731979 0.0402297 +0.0418277 0.0395362 0.0134182 +-0.0622707 0.058834 0.014793 +-0.0042883 0.0999626 -0.0238822 +-0.0511241 0.157581 -0.00475152 +-0.0110467 0.0382737 0.0183997 +-0.0111844 0.110115 -0.0206413 +-0.0906536 0.150215 0.0201223 +-0.0636975 0.0593607 0.0104272 +-0.00965605 0.0527028 -0.0331963 +0.011809 0.0846857 0.0540696 +-0.0439904 0.115156 -0.0158426 +0.00534103 0.0581999 -0.0308279 +-0.00449084 0.119679 0.0378771 +0.00251006 0.102973 0.0437486 +-0.0256326 0.0383152 0.00270994 +0.0101829 0.0893384 -0.0312282 +0.0359735 0.108741 0.0274101 +0.000505152 0.0675448 0.0563482 +-0.0431097 0.0335646 0.0052718 +-0.0748156 0.16245 -0.0339456 +-0.0890383 0.09964 0.0104144 +0.0425362 0.0972508 -0.000830625 +-0.0136711 0.162609 -0.0156561 +0.0241599 0.0418198 -0.00678118 +-0.0181519 0.16827 -0.0202389 +-0.0404977 0.0986657 0.0417206 +-0.0809707 0.15134 0.0022444 +0.0151979 0.0420601 0.0445385 +-0.00221102 0.0959857 -0.0316631 +-0.0329609 0.0709036 -0.0224656 +-0.079699 0.101798 -0.00757602 +-0.0725189 0.144585 -0.0159026 +-0.0466234 0.165492 -0.0068396 +0.0185106 0.12405 -0.00369129 +-0.014344 0.183095 -0.0226028 +-0.0788576 0.105851 -0.00657974 +-0.0240104 0.109837 -0.0203148 +0.00980942 0.110782 -0.0193656 +0.0108601 0.117776 0.0369396 +0.0193075 0.0536075 0.0470681 +-0.0925525 0.131032 0.0242364 +0.00749212 0.131495 0.0152913 +0.00495998 0.131626 0.0157979 +-0.00415159 0.0385426 0.00685716 +-0.0241881 0.038442 -0.0062907 +-0.0114972 0.0870124 0.0568248 +0.0383205 0.0589284 -0.00670105 +-0.050793 0.124044 0.0335488 +0.0216558 0.0436146 0.0415846 +-0.0488766 0.0663121 0.037594 +-0.0460367 0.115268 -0.015925 +0.0354061 0.0981387 0.0355669 +-0.0414966 0.064844 0.0412967 +-0.0492702 0.0334521 0.00412227 +-0.0788564 0.173596 -0.0449928 +-0.0720001 0.0374977 0.00101403 +-0.0745188 0.135846 0.0503978 +-0.0705133 0.0930254 0.0420143 +0.0544062 0.0520207 0.00120422 +-0.016347 0.159993 -0.0102438 +0.00949781 0.0440631 0.0448456 +-0.0123976 0.0991026 0.0482068 +-0.00535711 0.0347531 0.0461025 +0.026456 0.0929171 0.0454329 +0.0245089 0.042142 0.038636 +0.043716 0.0750115 0.0261739 +-0.0839359 0.102045 -0.00261805 +-0.0806754 0.155074 0.0150117 +-0.0689 0.172262 -0.0550342 +-0.0523543 0.073291 0.0414729 +-0.0301406 0.0636155 -0.0234264 +0.0407753 0.0452541 0.0299878 +0.00638455 0.0464233 -0.0264515 +-0.0755977 0.151334 -0.0218791 +-0.00594273 0.0383379 0.0139478 +-0.0600908 0.115373 0.0375616 +-0.0424965 0.0733822 0.0425454 +-0.00260003 0.0405608 -0.0253579 +0.00350637 0.0702767 0.0558823 +-0.0897267 0.135137 0.0262095 +-0.0591547 0.117476 -0.0120923 +-0.024542 0.0428919 0.0537128 +-0.0054972 0.0576157 0.054162 +-0.0397846 0.0841362 -0.0215764 +0.0415613 0.0751972 0.0301802 +-0.0631728 0.0596464 0.0174802 +0.0423363 0.101455 0.00317956 +-0.0533301 0.1416 0.0264013 +-0.0464855 0.0931347 0.0435353 +-0.0629725 0.150532 -0.00369044 +-0.0853889 0.108959 0.00634578 +-0.0909761 0.118636 0.00631645 +-0.0384966 0.101445 0.0410637 +0.0194941 0.107309 0.0406484 +0.0396169 0.0843072 -0.0127653 +-0.0223745 0.0566587 0.0441983 +0.0607493 0.059571 0.0121639 +-0.0844811 0.123027 0.0489478 +-0.0570341 0.144219 -0.00185162 +-0.0723674 0.177806 -0.0472523 +-0.0466801 0.130916 0.0233152 +-0.02246 0.183226 -0.0115124 +-0.0707386 0.165621 -0.0179174 +-0.0739884 0.1541 -0.0249038 +0.00161401 0.13159 0.0117114 +0.0295344 0.0524338 -0.0167463 +0.00137166 0.0465972 -0.0284573 +-0.0349979 0.152158 8.20736e-05 +-0.0459591 0.0424584 -0.0122548 +0.032247 0.0800194 -0.0194064 +-0.0215329 0.0768164 0.0540336 +0.0182351 0.12763 0.00640475 +0.0169629 0.0348939 0.0289563 +0.0193977 0.0490363 -0.0230642 +-0.0596322 0.0604401 0.0228281 +0.0145003 0.108488 0.0407955 +-0.0720741 0.0646161 0.00403373 +-0.0712116 0.15818 -0.0429219 +-0.0175993 0.15966 -0.00802789 +-0.0759222 0.159085 -0.0100036 +-0.0384682 0.15361 0.00387723 +-0.0725333 0.0379686 0.00575754 +0.0455601 0.0904134 0.011166 +0.0375907 0.0937201 -0.0111657 +0.00483671 0.039382 0.0314929 +-0.026559 0.0377408 0.0211248 +0.0385027 0.0454964 0.0307784 +-0.0564952 0.047766 0.0395183 +-0.0198831 0.107284 -0.0222237 +-0.0779551 0.163899 -0.0249456 +-0.0563521 0.0342791 0.0304121 +-0.00751948 0.0746046 0.0579524 +-0.0827498 0.154172 0.0128373 +-0.00710449 0.125174 0.0317411 +-0.0367613 0.0798086 -0.0204262 +-0.036915 0.175546 -0.00898243 +-0.0705043 0.0887655 0.0418556 +-0.0522651 0.0335597 0.0034159 +-0.0677174 0.0409231 -0.00173026 +-0.0113677 0.180126 -0.0253581 +-0.0161521 0.03911 0.0518105 +-0.0690092 0.122845 0.052951 +0.00570986 0.0341754 0.0182505 +0.0184933 0.0865452 0.0498488 +6.3531e-05 0.129314 -0.00119744 +-0.0804587 0.135827 0.0500319 +-0.0754196 0.111293 0.0461553 +0.0424555 0.0902012 0.0271644 +-0.0928081 0.120209 0.0412843 +-0.0634884 0.0789934 0.0424288 +-0.0615251 0.0457206 0.0316818 +-0.0115387 0.0458293 0.048671 +-0.066289 0.0747237 0.0389788 +-0.0173046 0.166847 -0.0129407 +0.0331853 0.116604 0.00769666 +0.0445518 0.069148 0.0246508 +-0.091691 0.12831 0.0342454 +0.0434619 0.0930961 0.0241585 +-0.0678925 0.0435809 0.00801004 +0.0234224 0.0519071 -0.0231048 +-0.0208141 0.0595795 0.0467936 +-0.087519 0.112 0.0410625 +-0.0213082 0.126358 0.00326486 +-0.0606822 0.0362429 0.0450162 +-0.0576914 0.0693962 -0.0144511 +-0.0769716 0.13837 -0.00578148 +-0.0653565 0.1551 0.00564588 +0.0264433 0.0485879 -0.0182655 +0.039746 0.101828 -0.00373788 +-0.0610724 0.144529 -0.00434459 +-0.0662237 0.145026 -0.0176812 +-0.0283728 0.156641 -0.000811787 +-0.00971651 0.0348541 0.0433186 +-0.00481466 0.0868424 -0.0368113 +-0.031088 0.0335574 -0.0273919 +-0.0544366 0.120435 -0.011246 +0.00248882 0.121002 0.0363406 +-0.00349433 0.0911707 0.0563818 +-0.0931447 0.118854 0.0382959 +0.0254683 0.121415 0.0262007 +-0.0467966 0.0336683 0.000813328 +0.0319522 0.103353 -0.0134365 +-0.0633409 0.155276 -0.011594 +-0.0720139 0.180999 -0.0528377 +-0.0164541 0.0630817 0.0527623 +0.016475 0.0352036 0.002978 +-0.00226088 0.124171 0.0334893 +0.0391263 0.0631992 -0.00875738 +-0.0818614 0.114723 -0.0022038 +-0.0930555 0.120208 0.0402916 +-0.0904236 0.116034 0.0273085 +-0.0705028 0.159578 -0.0459334 +-0.0862816 0.117641 0.0480424 +0.0531688 0.0733724 0.0176223 +-0.0578751 0.134121 -0.00585274 +0.0423147 0.091604 0.0271557 +0.0101515 0.071231 0.055077 +-0.0435318 0.087421 0.0430041 +-0.0560394 0.131064 -0.00575471 +0.00125071 0.0712122 -0.0347068 +-0.0348542 0.165303 -0.00316457 +-0.0860328 0.0912972 0.00145067 +-0.00116523 0.0371346 0.0178171 +-0.0637756 0.0795327 -0.0183843 +0.00482779 0.0366504 -0.0137865 +0.0435599 0.0987371 0.0131605 +0.00150087 0.101618 0.0443156 +0.0314312 0.0625198 -0.0186445 +-0.0672777 0.169987 -0.0338702 +-0.0903951 0.118903 0.0450094 +-0.0501563 0.11976 0.0326732 +-0.0750921 0.156856 -0.022942 +-0.0275197 0.109846 0.0382427 +-0.0535612 0.0416919 -0.00977582 +0.0556505 0.0677792 0.00213147 +-0.0685182 0.0368214 -0.0053939 +-0.0780099 0.114072 0.0486721 +-0.0248787 0.0796614 0.0530244 +-0.0638477 0.164736 -0.0283363 +0.0142201 0.0793919 -0.0305544 +0.00713749 0.130032 0.0237524 +-0.0187348 0.175696 -0.0167204 +-0.00682337 0.088234 -0.0365489 +-0.0217663 0.11209 -0.0186927 +-0.0171714 0.0432613 0.0521182 +0.00513012 0.0373402 0.0458408 +0.0461568 0.0626078 -0.00274862 +-0.0412659 0.160879 0.0033623 +-0.0853172 0.110382 0.0233555 +-0.0158006 0.108342 -0.0207487 +0.00813236 0.110171 -0.0197068 +0.0265802 0.0345508 0.0130494 +-0.0660018 0.133981 0.0432166 +0.041807 0.0885902 0.0288907 +-0.024509 0.109889 0.0396002 +0.0354948 0.10491 -0.00909103 +-0.00850916 0.0688709 0.0557558 +-0.054442 0.0373135 0.0469328 +-0.010539 0.0390893 0.0340058 +-0.0858022 0.150106 0.00719342 +-0.0451719 0.0347129 0.0411467 +-0.00510128 0.0385919 0.0229448 +-0.0521978 0.0336397 0.008764 +-0.0162925 0.180099 -0.0261659 +-0.0902934 0.147439 0.0121579 +-0.0793826 0.0705862 0.00854889 +0.0209269 0.0658956 0.0477693 +-0.0116051 0.171103 -0.0260001 +-0.0635102 0.151152 0.0361873 +-0.0865918 0.127084 0.0480364 +-0.0756208 0.166729 -0.0233779 +-0.0507818 0.0840955 -0.0217037 +-0.0623945 0.164686 -0.0405941 +0.0109143 0.034258 -0.00287102 +-0.0326136 0.0384639 -0.0154224 +-0.0883155 0.139178 0.0394996 +-0.0317158 0.0383538 -0.00403424 +-0.00682874 0.0896331 -0.0361816 +-0.060744 0.0766988 -0.0182193 +-0.00743574 0.129906 0.00405669 +-0.0792494 0.0723341 0.0207326 +-0.036173 0.152719 -0.00677506 +-0.0305128 0.10708 0.0396423 +-0.0435905 0.0505542 -0.0107756 +-0.0204554 0.0347978 0.0481157 +-0.0591045 0.0344689 0.0400978 +-0.0840365 0.147342 0.0364323 +0.00340018 0.0348289 -0.0229504 +-0.0693319 0.141141 0.045512 +-0.0561609 0.0344771 0.0355158 +0.00119588 0.0881146 -0.0344258 +0.0583564 0.0538008 0.0181861 +0.0342539 0.0387023 0.0236157 +-0.0264982 0.125984 0.010106 +-0.0611832 0.146298 -0.00395593 +-0.0910251 0.124245 0.0440568 +-0.089862 0.115281 0.0432597 +0.0247433 0.124313 0.0130924 +-0.000820873 0.128641 -0.00248283 +-0.0554557 0.0533368 -0.00338183 +-0.0464641 0.122081 0.0270508 +-0.0451868 0.126658 0.0224837 +0.00145793 0.0977369 0.0519067 +0.0405445 0.0610221 0.0298369 +-0.0744952 0.0941746 0.0398302 +-0.0351234 0.033632 -0.0282515 +-0.0839267 0.145982 0.00417548 +-0.0224934 0.0435545 0.0535652 +0.0159352 0.127804 0.0226817 +-0.0572144 0.154757 0.0232881 +-0.0498753 0.0336124 0.000239655 +-0.0191672 0.0596981 0.049368 +-0.0242921 0.0918773 0.0492675 +-0.0523718 0.133555 -0.00317026 +-0.0557218 0.0723836 -0.0166307 +-0.00457986 0.0361758 -0.0248798 +-0.0737533 0.0901294 0.040627 +-0.00549531 0.10728 0.0439307 +-0.0181568 0.165005 -0.0179156 +-0.0554997 0.108443 0.0389722 +-0.0144882 0.101623 0.0437286 +0.0215585 0.0387445 -0.00669407 +-0.0752039 0.0696978 0.0256249 +-0.0569183 0.115707 -0.0143002 +-0.0731283 0.155734 0.00889607 +0.0347498 0.081125 -0.0176886 +0.00113903 0.131571 0.0129682 +-0.0279379 0.155215 -0.0039665 +0.0438288 0.0860483 -0.00379124 +-0.0202818 0.0386671 -0.01315 +-0.0639713 0.0651159 0.0301523 +-0.0729034 0.123797 -0.00826534 +-0.00948854 0.0965445 0.0534324 +-0.0616146 0.158432 -0.0255892 +0.0348698 0.112104 0.0254475 +0.0462561 0.0792459 0.0151754 +0.0132092 0.0348336 0.0300558 +-0.0650018 0.0435996 0.0108034 +-0.0629926 0.156114 0.0183129 +0.0432806 0.100121 0.0101615 +-0.0634166 0.118511 0.0453283 +-0.0718747 0.151003 0.0373736 +-0.0693203 0.155248 -0.0509683 +-0.058528 0.0400924 -0.008802 +0.0150592 0.0590177 0.0497649 +-0.0136861 0.0570325 -0.0345667 +-0.02332 0.0391695 0.0384733 +0.0410592 0.0985428 -0.00379645 +-0.042915 0.0436274 -0.0183221 +-0.0324875 0.068969 0.0402984 +-0.0927384 0.122733 0.00927055 +-0.0697859 0.156365 0.01735 +-0.0525617 0.0403541 -0.0109145 +-0.0163792 0.186908 -0.0208435 +0.00555045 0.034504 0.00513967 +0.0259201 0.0406241 0.0333279 +0.0340795 0.103399 0.0336714 +-0.0295185 0.0579228 -0.0214101 +0.0443631 0.0475049 -0.00446946 +0.00261537 0.0341134 0.0122343 +-0.0104909 0.104437 0.0435533 +0.0240885 0.124582 0.018553 +-0.084606 0.0993653 -0.00159598 +0.0315994 0.0505647 0.0349136 +-0.0887091 0.0983318 0.0213821 +-0.0109917 0.177231 -0.0295208 +-0.00927372 0.0384768 0.00588152 +-0.0731505 0.0794744 -0.0135813 +0.0377774 0.0672774 -0.012792 +-0.0257539 0.157476 -0.0102144 +-0.0524923 0.0340498 0.0261507 +0.0359032 0.0905437 -0.0158269 +-0.0358241 0.0900699 -0.0240653 +-0.0507764 0.0715485 0.0397729 +-0.0857724 0.0872268 -0.000524277 +0.0122145 0.0850407 -0.0307351 +-0.0818191 0.154205 0.0234297 +0.0239009 0.12202 -0.0014718 +0.0509663 0.0446851 0.0122122 +0.0405026 0.0469928 0.0315524 +0.00123226 0.0769082 -0.0355253 +0.0395203 0.0569025 0.0311403 +-0.0861982 0.144641 0.0372484 +-0.0218898 0.0382146 0.0234539 +0.0278568 0.0643129 -0.0209613 +-0.06664 0.0601639 0.0127094 +-0.0682452 0.17678 -0.058273 +-0.0326534 0.0578275 -0.0120318 +0.0449519 0.0847263 0.00223902 +-0.0243874 0.0379977 0.0213348 +-0.0375049 0.0648832 0.0416292 +-0.049486 0.0531643 0.034537 +-0.00680823 0.0840973 -0.0379387 +-0.00662043 0.0383357 0.0156226 +0.0246827 0.0347978 0.0179097 +0.052528 0.0664738 0.0271694 +-0.017323 0.112508 -0.01916 +-0.0589359 0.0481542 0.00467247 +0.0560814 0.0704234 0.0216351 +0.0445162 0.087501 -0.00181141 +0.0204668 0.0400207 -0.013702 +-0.0828557 0.0979824 0.0311146 +0.0393677 0.0547517 -0.00623241 +-0.0301563 0.0382285 0.0524978 +-0.0740972 0.155492 -0.0239137 +-0.0266047 0.0397022 -0.0293069 +0.0044664 0.0344032 0.010526 +-0.0644057 0.16752 -0.0356951 +-0.085796 0.123875 -0.00272102 +-0.0251727 0.175641 -0.0195733 +-0.0147266 0.0922559 -0.0359307 +0.0166529 0.120978 0.0330533 +-0.0652865 0.1555 -0.0467797 +-0.0622893 0.15065 -0.0135783 +-0.0173344 0.128368 0.0119773 +-0.044366 0.0366412 -0.0232589 +-0.0913152 0.114759 0.0363194 +-0.0647364 0.118589 0.0486106 +0.011956 0.0976358 -0.0233787 +-0.0378922 0.04725 -0.0183117 +-0.079848 0.116269 0.0487575 +0.0431642 0.0987038 0.0171581 +-0.0334777 0.0546734 0.0376709 +-0.0677151 0.171772 -0.0397619 +-0.0124935 0.123722 0.0323282 +-0.00945147 0.0352364 0.0483453 +-0.0729035 0.125275 -0.00849683 +-0.0837744 0.107497 0.00138169 +-0.0529962 0.0461208 0.0157076 +-0.0677529 0.141137 0.0442717 +-0.0840303 0.151908 0.0287412 +-0.0636039 0.0445634 0.0326846 +0.0192911 0.109605 -0.016128 +-0.0838969 0.104764 -0.000610535 +-0.0887185 0.143427 0.0331607 +-0.0929968 0.130998 0.0182299 +-0.0543463 0.160987 0.00512087 +-0.0909281 0.132287 0.0082314 +-0.0354987 0.113848 0.0338946 +-0.0465077 0.088954 0.0443573 +0.0301352 0.0955658 0.0419698 +-0.0199202 0.0381456 0.0185107 +-0.0186134 0.161522 -0.0143726 +-0.0646921 0.0617226 0.0224003 +0.0222832 0.066418 -0.0268569 +-0.0661617 0.0353568 0.0288449 +0.0192795 0.122165 0.0310901 +-0.00560235 0.0406015 -0.0258376 +-0.0404738 0.108409 0.038128 +0.0420248 0.0710795 0.0289899 +0.0450277 0.0945898 0.0071675 +-0.0490784 0.153156 -0.00527602 +-0.00149713 0.0689596 0.0566805 +-0.0709057 0.106531 -0.0119068 +-0.0626824 0.0436041 -0.00418427 +-0.066536 0.166455 -0.0250024 +-0.0218698 0.104438 -0.0229686 +-0.0731886 0.149857 -0.036868 +-0.0122347 0.0392642 0.0504717 +-0.0935435 0.118764 0.0233045 +-0.0797382 0.10948 0.0394939 +-0.0892801 0.091541 0.0104497 +-0.0547119 0.146209 0.0284156 +-0.00241231 0.037367 0.0100902 +0.000818555 0.130756 0.00282721 +0.04586 0.0820013 0.00419826 +-0.0250963 0.0348756 0.0487637 +-0.0673565 0.112647 0.0446949 +-0.0634506 0.15272 2.24523e-05 +-0.0706828 0.180611 -0.0569213 +-0.0205931 0.163965 -0.00888333 +0.0115331 0.101889 -0.0218781 +-0.0664983 0.102849 0.0407048 +0.0185027 0.118159 0.035136 +0.0458454 0.0834099 0.00517797 +-0.00887527 0.109466 -0.0219533 +-0.0858669 0.119072 -0.00140229 +-0.0102872 0.0344076 -0.0184603 +-0.0211482 0.169745 -0.0200914 +-0.00849115 0.111421 0.0423213 +-0.0613599 0.128292 0.04114 +-0.0076798 0.0569676 -0.0334142 +-0.0710297 0.16381 -0.0459687 +-0.0454992 0.112558 0.0357052 +-0.0343115 0.126654 0.00282732 +0.0360267 0.110062 0.0258818 +0.0368044 0.0942002 -0.0116901 +-0.0421812 0.123012 0.0251172 +-0.066012 0.139954 -0.00779963 +0.00198723 0.123051 -0.0105036 +0.0172553 0.072257 -0.0294021 +-0.013113 0.184484 -0.0260544 +-0.072893 0.152634 -0.0368963 +-0.0938278 0.128299 0.0222532 +-0.0675171 0.0409229 0.0105489 +-0.0735479 0.162209 -0.012171 +-0.0517008 0.0626767 0.0322349 +-0.0433082 0.037957 -0.0253239 +-0.0516781 0.0345962 0.0381142 +-0.0046354 0.0467251 -0.0296701 +-0.0777504 0.112676 -0.00382147 +-0.0281162 0.181397 -0.0109687 +-0.047699 0.144615 0.00435323 +-0.0663959 0.148276 0.0393784 +-0.0249816 0.15956 -0.0126947 +-0.00758477 0.0968518 -0.0305822 +-0.019536 0.116371 -0.0152209 +-0.0298632 0.102958 -0.0228236 +-0.0224181 0.05387 0.0440179 +-0.0625128 0.145366 0.0377954 +-0.0843383 0.133967 0.0484219 +-0.00452146 0.0443187 0.0472734 +0.000177098 0.0839833 -0.0361114 +0.0207016 0.113271 -0.0140876 +-0.065484 0.0847424 0.0442074 +-0.0201913 0.175663 -0.0226485 +-0.0364476 0.166788 -0.00019754 +-0.0206091 0.162049 -0.0149623 +0.0350254 0.0700182 0.0383083 +-0.0455491 0.131451 0.0178282 +0.00819795 0.130005 0.00128654 +-0.0353536 0.12061 0.029103 +-0.0271732 0.169704 -0.0183584 +-0.0657382 0.0436129 0.0101245 +-0.0722291 0.166627 -0.044985 +0.0309191 0.0539829 -0.0147501 +-0.0308747 0.056662 -0.0163864 +-0.0867734 0.123909 -0.00174219 +-0.0279078 0.0347965 0.0447705 +0.0191594 0.100268 -0.0222959 +-0.0154293 0.0382918 0.0211029 +-0.0578159 0.0636603 0.0309898 +-0.024177 0.172689 -0.0201134 +-0.0669849 0.0359436 0.0326963 +-0.0879792 0.086094 0.00648058 +-0.0181742 0.169737 -0.0210312 +-0.0170499 0.122405 0.0312344 +0.00906582 0.123154 0.0343752 +-0.034503 0.0874637 0.0428605 +0.0391693 0.108394 0.0111647 +-0.0917004 0.143358 0.0201656 +0.027747 0.0902677 -0.021551 +0.0430843 0.0496743 0.0322331 +-0.0791989 0.150078 -0.000876106 +-0.0259631 0.177171 -0.00957335 +-0.0395279 0.079033 0.0429651 +0.0302372 0.118499 0.00231637 +0.0449793 0.061326 -0.0034541 +-0.0376334 0.0548474 -0.0107543 +-0.0274342 0.111364 -0.0178958 +-0.0315627 0.048073 -0.0232988 +-0.018823 0.121694 -0.0088173 +0.00895989 0.0979651 -0.0237371 +-0.0254423 0.0473682 0.0503166 +-0.046654 0.0606571 -0.0123502 +0.0606526 0.0595573 0.0131644 +-0.0873547 0.094105 0.00537923 +-0.0202891 0.184471 -0.0210772 +-0.093713 0.126863 0.0152623 +0.00938205 0.0449001 -0.0251557 +-0.0903092 0.140666 0.025165 +-0.0676501 0.0667159 0.0297862 +-0.0164899 0.0602176 0.0520938 +0.019355 0.0565693 -0.0275356 +0.0104604 0.0340987 0.00091581 +-0.0785409 0.166665 -0.0309637 +-0.018017 0.0390618 0.0526069 +0.0189962 0.123953 0.0281041 +-0.0814357 0.0734392 0.00553468 +-0.0223732 0.03801 0.0163235 +0.0110271 0.112101 -0.0187639 +0.0456518 0.0904151 0.00617296 +-0.0789509 0.170805 -0.0389931 +-0.0312407 0.0510927 0.0390643 +0.0359235 0.106756 -0.00582268 +-0.0815808 0.0950721 -0.00753639 +-0.0849546 0.0871617 -0.00253673 +-0.0265403 0.0592021 0.0383808 +0.0398305 0.0739567 0.0329917 +-0.00085919 0.0358547 0.00813469 +-0.0747624 0.0700921 -0.00148683 +0.0313786 0.113275 -0.00606229 +-0.0902327 0.124018 0.00527185 +0.0268091 0.0506065 0.038521 +-0.0727909 0.0685075 0.0271607 +-0.0578274 0.0666818 0.0354001 +-0.0738208 0.0921589 -0.0148323 +-0.0390631 0.127858 0.0143467 +-0.00922314 0.174168 -0.0285672 +-0.0035205 0.039017 -0.00265492 +0.0435098 0.098719 0.0141568 +-0.0493916 0.144765 0.00938332 +0.0189816 0.0563976 0.0484166 +-0.0731928 0.064943 0.0125198 +0.0453289 0.0833826 0.0211694 +-0.0211162 0.1638 -0.0163957 +-0.0306102 0.125527 0.00421635 +-0.0262987 0.113585 -0.0162365 +0.0252163 0.1238 0.0175509 +-0.0237403 0.0669252 -0.0352956 +-0.00549562 0.0472961 0.0485942 +0.0045023 0.122399 0.0348631 +-0.0701614 0.178224 -0.0493215 +-0.0173769 0.125333 -0.00267782 +-0.0470115 0.129603 0.00120357 +-0.0317094 0.0374952 0.0310681 +-0.0297217 0.0382812 -0.0035606 +-0.0415986 0.169934 0.00129157 +-0.064505 0.152553 -0.0362048 +-0.0667255 0.178008 -0.0524224 +-0.0236086 0.0335974 -0.0240827 +-0.0156885 0.0555599 -0.0339026 +0.0182783 0.0708328 -0.0291795 +0.0541184 0.0510309 0.0235647 +-0.0765193 0.119025 0.0524244 +-0.0118673 0.0339713 -0.0202424 +0.00548892 0.118228 0.0378342 +-0.067477 0.0336926 -0.00520632 +0.0168316 0.0926978 0.0490711 +0.0255432 0.0768418 0.0475089 +-0.0617634 0.0795901 -0.0189973 +-0.0156786 0.0526029 -0.032522 +0.000420458 0.036172 -0.0244623 +-0.0256593 0.0810401 0.0523557 +0.026836 0.0634537 -0.0220606 +-0.0621975 0.166246 -0.0505873 +0.0578529 0.0523616 0.0171842 +-0.0217254 0.126122 0.00269746 +0.0235742 0.124212 0.0226421 +-0.0578055 0.0883401 -0.0213124 +-0.0798409 0.103395 0.0321858 +-0.0123464 0.178658 -0.023274 +0.0212154 0.0476501 0.0409677 +-0.0342487 0.0752311 -0.0224883 +-0.0230529 0.0839079 0.0553134 +-0.0214993 0.112665 0.0388138 +-0.0327955 0.0873016 -0.0254019 +0.0258836 0.0605349 0.0443599 +-0.0096598 0.0907753 -0.0363722 +0.0450284 0.0875565 0.0211548 +0.0334239 0.0414863 -0.00351395 +-0.0488087 0.138617 0.0133952 +-0.0658054 0.0924099 -0.017991 +0.0104979 0.0896334 0.054299 +-0.0043048 0.123153 -0.010566 +-0.0174665 0.17272 -0.016673 +-0.0344763 0.0561322 0.0383021 +-0.0857072 0.152777 0.0118249 +-0.0575671 0.0494422 0.00671449 +-0.0430533 0.0345113 0.0330204 +-0.065164 0.147357 -0.0239331 +-0.0326268 0.0520227 -0.0107626 +-0.067905 0.106631 -0.013438 +-0.0258738 0.125824 0.0147443 +0.0544233 0.0635568 0.0276516 +-0.0872747 0.139127 0.00719289 +-0.0315055 0.109789 0.0377033 +-0.0763386 0.161799 -0.0152953 +0.0232414 0.0663429 -0.0257954 +0.0174948 0.109841 0.0394103 +-0.0507289 0.129704 0.0318965 +-0.0425042 0.0577064 0.0400486 +0.022545 0.0955327 0.0468247 +0.0403951 0.0475373 -0.00531603 +0.0183271 0.0475932 -0.02269 +-0.0572639 0.0601869 -0.00219809 +-0.0852337 0.104506 0.0248257 +-0.0933098 0.126856 0.0132534 +0.0352918 0.108619 -0.00504659 +-0.0628349 0.0939281 -0.0188357 +0.00277101 0.099815 0.0475918 +-0.0637196 0.147938 -0.020833 +-0.0636347 0.156368 -0.0124044 +-0.0882602 0.111934 0.0373837 +0.0451564 0.0931924 0.00517592 +-0.0883906 0.0874807 0.0144622 +-0.0179879 0.0654395 0.0522544 +-0.0334338 0.0382234 0.0500909 +-0.00283875 0.0389996 -0.00436591 +-0.0295052 0.11528 0.03366 +-0.00151332 0.104469 0.0441334 +0.0194927 0.0906432 0.0481529 +-0.0877693 0.113692 0.0289151 +-0.0661933 0.0335338 -0.00299624 +-0.0273899 0.0499801 0.045145 +-0.0338474 0.0972112 -0.023083 +-0.075849 0.149415 0.0390624 +0.0325609 0.114759 0.0260072 +-0.0821806 0.0776422 0.0235195 +-0.0759474 0.151351 -0.0188826 +0.013384 0.043414 -0.024368 +-0.0077421 0.0340597 -0.0195129 +-0.00965525 0.0511768 -0.0320162 +-0.0677487 0.111258 0.0407689 +-0.0214969 0.0461967 0.0522939 +-0.0466073 0.0518764 -0.00969859 +0.0357625 0.0364791 0.0131618 +-0.0124847 0.111379 0.041672 +-0.079194 0.0832222 0.0349745 +-0.0926331 0.130966 0.0142325 +0.00419789 0.123154 -0.0106599 +0.00969178 0.121836 0.0352946 +-0.0295306 0.123946 -0.00125424 +-0.0711733 0.128436 0.0516087 +-0.0585141 0.0386878 -0.00928985 +-0.0739244 0.0668664 0.00165643 +-0.0424856 0.0410553 0.0431368 +-0.0176939 0.162435 -0.0154936 +-0.00215916 0.0369163 -0.0154166 +0.0205271 0.126116 0.00440152 +0.000359464 0.0907103 -0.0342066 +0.038908 0.0631632 0.033303 +0.0223132 0.124739 0.023599 +-0.070737 0.159582 -0.0449318 +-0.0281334 0.155101 -0.00344078 +0.0323761 0.107397 0.032947 +0.0390072 0.0393837 0.00207442 +0.0420748 0.0457918 0.0297783 +-0.0187683 0.0699858 -0.0381989 +0.0176298 0.0382941 -0.0187111 +-0.0688111 0.0922897 -0.0164711 +0.0419266 0.101462 0.0171593 +0.00341059 0.0376223 -0.0244648 +0.0461634 0.0792418 0.0171768 +-0.0637535 0.0431846 0.0296789 +-0.0273632 0.0534705 -0.0254085 +-0.0394955 0.0562825 0.0399491 +0.00548498 0.0590856 0.0545593 +-0.0934182 0.124107 0.0122673 +0.0324897 0.100233 -0.014155 +-0.00952254 0.0688375 0.0554289 +0.0191204 0.042209 0.0431814 +0.0195848 0.035993 0.00660837 +-0.0748916 0.10354 -0.0108565 +-0.0685642 0.0406581 -0.00126009 +-0.0225344 0.118142 0.03379 +-0.013583 0.0386256 -0.002471 +-0.0898618 0.113382 0.0394321 +0.0601893 0.0595178 0.0171788 +-0.0630097 0.121328 0.0458592 +-0.0196415 0.0725672 0.0536854 +-0.0211896 0.172692 -0.021286 +0.024653 0.104647 -0.0168345 +-0.0795268 0.096746 0.0348816 +0.0485163 0.0672488 0.000612911 +0.0400064 0.0422019 -0.00166327 +-0.0197891 0.0785016 -0.0390423 +-0.0260568 0.0375908 -0.0291887 +-0.00717802 0.130589 0.0142265 +0.0156678 0.0346738 -0.0117297 +0.0424576 0.0845381 -0.00679736 +-0.0302701 0.0365155 -0.0302567 +-0.0274598 0.0863801 0.0483431 +-0.0831854 0.11075 0.0323354 +-0.0514986 0.109783 0.0378241 +-0.0183396 0.126605 0.021835 +-0.0497522 0.0716181 0.0399477 +0.0165016 0.116787 0.0362663 +-0.0670324 0.0672056 0.0312385 +0.0201473 0.0414664 -0.0187017 +0.0364932 0.0484054 0.0314672 +-0.0501327 0.159092 -0.00542351 +-0.0752763 0.0667216 0.0105318 +-0.0341695 0.0337715 0.0105094 +0.0137891 0.103175 -0.021246 +-0.073587 0.148629 -0.0261691 +-0.0169441 0.184483 -0.0249355 +-0.0097273 0.130072 0.0104159 +-0.00405402 0.0391419 -0.01222 +-0.0887371 0.0955614 0.00743378 +-0.0864769 0.0806081 0.0125015 +0.040053 0.107027 0.0101639 +-0.042812 0.14778 0.00347562 +0.0248383 0.0835695 -0.0246296 +0.0277899 0.116538 -0.00556904 +-0.0291577 0.0380555 0.005854 +-0.0525571 0.150877 0.0178 +-0.0639921 0.134062 -0.00777265 +-0.0838901 0.110998 0.0281595 +-0.0134922 0.107228 0.0429665 +-0.0586918 0.149676 0.0345486 +-0.0616651 0.119834 0.0424717 +0.0456475 0.0890064 0.00517807 +-0.0089791 0.0383636 0.0133044 +-0.0903646 0.135051 0.0122148 +0.0317594 0.0835691 0.0424885 +-0.0240368 0.11082 -0.0193477 +0.0271768 0.112761 0.0342135 +-0.0356473 0.116902 -0.0136714 +-0.0739197 0.151223 0.0366634 +0.0410535 0.0759945 -0.00777525 +-0.0734182 0.169757 -0.0275332 +-0.00232938 0.0359607 0.0474459 +-0.085737 0.110915 0.0387737 +-0.0775985 0.123137 0.0521223 +-0.0748309 0.100681 -0.0121692 +-0.0866976 0.109058 0.0133472 +-0.0701875 0.0395708 0.00901355 +-0.0306891 0.120328 -0.00923215 +-0.045477 0.1214 -0.012376 +-0.033489 0.172734 -0.00156283 +-0.0565822 0.0339881 0.0253464 +-0.0404955 0.0451407 0.0414639 +-0.0555537 0.0420256 -0.00889368 +-0.0598777 0.102599 -0.0186645 +0.0592051 0.0552531 0.0121703 +-0.0758111 0.0741872 -0.00760517 +-0.038197 0.0342285 0.0289964 +-0.00312706 0.0390512 0.0319597 +0.0476183 0.0426691 0.0171605 +-0.0306281 0.0831438 0.0423752 +-0.049274 0.1386 0.00640083 +-0.0210747 0.0753924 0.0536136 +-0.093596 0.126936 0.0252692 +-0.0629825 0.129686 -0.00825839 +0.00470729 0.128083 -0.0039713 +-0.0335515 0.0373466 -0.0164398 +0.0425502 0.0637218 0.0280932 +-0.0707401 0.13973 0.0469958 +-0.0644842 0.0804582 0.0430441 +-0.0618671 0.112377 0.0367302 +-0.0698247 0.169548 -0.0276555 +-0.0863191 0.0806082 0.0115067 +-0.0216814 0.0523409 -0.0297011 +0.0377238 0.110496 0.0121805 +-0.0689171 0.158096 -0.0529848 +-0.067181 0.156627 -0.0534662 +-0.0268045 0.0811284 -0.0369845 +-0.0546722 0.139567 0.0297056 +-0.0554146 0.0649279 0.0339175 +-0.0193967 0.186852 -0.0171886 +-0.0357817 0.0351096 0.0179926 +-0.0718839 0.173642 -0.0520314 +-0.0409497 0.0337305 -0.016439 +0.0396966 0.105593 0.0211678 +-0.0789279 0.0699144 0.0158521 +-0.0414163 0.0476371 -0.0122303 +-0.00671791 0.0642099 -0.0355692 +0.0547677 0.0509942 0.0227339 +-0.0686614 0.0735088 -0.0131618 +-0.0738123 0.0655371 0.0172042 +-0.0904479 0.129526 0.00625875 +0.0197334 0.044328 -0.0216983 +-0.0896348 0.140659 0.0301806 +-0.00748945 0.0870384 0.0571349 +0.0217161 0.119158 -0.00841047 +-0.0545346 0.125365 -0.00640975 +0.0368294 0.108237 -0.00182731 +-0.0672538 0.152901 0.0344187 +-0.0807043 0.0827741 -0.00656651 +-0.0305099 0.113915 0.0346878 +-0.0721764 0.154012 -0.0399025 +-0.045061 0.130334 0.0180279 +-0.00652053 0.0688834 0.0561767 +-0.0444953 0.0817848 0.0424707 +-0.0874489 0.105009 0.0173545 +-0.0175711 0.0387182 -0.00892429 +0.000506539 0.0883906 0.0565122 +-0.0265193 0.12549 0.0159805 +-0.0464789 0.0917181 0.0434263 +0.0455125 0.0918121 0.0101608 +-0.0834627 0.110719 0.0412267 +-0.057205 0.0480928 0.032667 +0.00517049 0.0350387 0.0228068 +0.0457999 0.0820138 0.0191697 +-0.0420324 0.171559 -0.00171063 +-0.0475118 0.128596 -0.00180437 +0.0204841 0.0948066 0.0474378 +-0.0719895 0.163815 -0.0429694 +-0.0644943 0.0861671 0.0446171 +0.00851416 0.06604 0.0550264 +-0.0670308 0.141141 0.0435296 +-0.0848818 0.142006 0.0416598 +-0.0384808 0.106985 0.038039 +0.0180116 0.0754634 0.0524537 +-0.0725251 0.155433 -0.0349062 +0.0182337 0.128007 0.0135344 +-0.0233093 0.162498 -0.00577898 +-0.0850563 0.112998 0.00231897 +-0.0823398 0.145942 0.00119384 +-0.0852211 0.103481 0.00138673 +-0.071875 0.136886 0.0488574 +-0.0794627 0.138625 0.0485832 +-0.0435009 0.117967 0.030956 +-0.038588 0.0341641 0.0271976 +-0.0408255 0.0914222 -0.0231618 +-0.0551021 0.154591 -0.0020359 +-0.0748456 0.159073 -0.00827714 +-0.0621666 0.152205 -0.0155784 +-0.0494972 0.0776899 0.0438666 +0.00751862 0.0799738 0.0554444 +0.00532494 0.0625045 -0.0319907 +0.00237701 0.131635 0.0162813 +-0.0546261 0.151324 0.0271982 +-0.0236176 0.123316 0.0244011 +0.00251869 0.05336 0.0534808 +0.0225511 0.0888829 0.0485585 +-0.0370273 0.174099 -0.0109221 +-0.090997 0.129691 0.0382289 +-0.0732672 0.148476 -0.0292583 +-0.053498 0.0465766 0.0420409 +-0.0330184 0.0474571 0.0438647 +-0.0246064 0.033636 -0.0243161 +-0.0234471 0.125053 0.0200484 +-0.0830784 0.138234 -0.000100609 +0.0406549 0.0820323 0.0324674 +-0.0842996 0.0965857 0.0297797 +-0.0527544 0.03448 0.0379838 +-0.0799451 0.15529 0.0167266 +-0.057093 0.0521243 0.00061739 +0.0154036 0.0477404 -0.0246897 +-0.060782 0.082481 -0.019648 +-0.0700267 0.166609 -0.0500213 +0.0451823 0.091796 0.014161 +0.0346837 0.106039 0.030986 +-0.0396713 0.0621627 -0.012718 +-0.05111 0.0375368 0.0465746 +-0.0688918 0.119449 -0.00874323 +0.000197079 0.035652 0.0464555 +-0.00149822 0.0661867 0.0567241 +0.00350858 0.074484 0.056374 +-0.0284992 0.0703316 0.0397848 +-0.0555164 0.0482866 0.0387265 +-0.0908309 0.136473 0.0182032 +-0.0634905 0.0861851 0.0447067 +-0.00918339 0.033864 -0.0215021 +-0.0748916 0.123775 -0.00787892 +-0.0270496 0.033483 -0.0265278 +0.00488911 0.035483 -0.0145807 +-0.0442085 0.165146 -0.00911238 +-0.0322103 0.0386054 -0.0136114 +0.0190336 0.11528 0.0364777 +-0.000494586 0.0897644 0.0562541 +-0.0350004 0.157209 -0.0112204 +-0.0635638 0.147341 -0.0176577 +-0.0902987 0.121315 0.00530766 +-0.0705068 0.102745 0.0389474 +-0.0662636 0.175335 -0.0598585 +-0.0239792 0.0680021 0.045464 +0.0413142 0.0637288 -0.00386959 +-0.051889 0.108419 -0.0189045 +-0.0477652 0.131125 0.00158524 +-0.0400469 0.169775 -0.0108504 +-0.0755266 0.109807 -0.00760163 +0.00107791 0.130709 0.0215491 +-0.0655994 0.0349763 0.0155159 +-0.0628742 0.161547 -0.05443 +0.0359645 0.0981106 0.0346243 +0.00934693 0.129002 0.0260013 +-0.0768843 0.109139 0.0404116 +-0.010503 0.0674297 0.0550101 +-0.028646 0.0535523 0.0364431 +-0.072824 0.0936306 -0.0150907 +0.028615 0.035804 0.0196241 +0.0282076 0.0706829 -0.0227535 +0.0596824 0.0622541 0.020173 +-0.0025152 0.0575969 0.0540026 +0.000110958 0.036978 0.020027 +-0.0273656 0.0360131 -0.0296152 +-0.0624735 0.0344952 0.0183787 +-0.0360892 0.159232 -0.0124312 +0.0418577 0.100066 0.0211691 +-0.063571 0.122754 0.0468224 +0.0523857 0.0624129 -0.0025136 +0.0383109 0.0632029 0.0342252 +-0.0144971 0.0786767 0.0566892 +-0.0928565 0.129591 0.0132418 +-0.0681034 0.152856 -0.0481556 +-0.0746787 0.169356 -0.0440586 +-0.0335137 0.107031 0.0389932 +0.0424926 0.0583469 0.0313486 +-0.0223256 0.0637459 0.0453694 +-0.0648797 0.106687 -0.0146649 +0.0250125 0.0632249 0.0448766 +-0.0624284 0.159959 -0.0405984 +0.00349445 0.12099 0.0360851 +0.022067 0.0981797 0.0461337 +-0.0734899 0.123206 0.0535424 +-0.0321688 0.171168 -0.015915 +-0.0848969 0.106313 0.0233612 +-0.067172 0.174543 -0.0467986 +0.0246727 0.0884534 -0.0236513 +-0.0504949 0.0477308 0.0397221 +-0.064202 0.155431 -0.0413859 +0.00347944 0.095162 0.0537659 +0.0105108 0.100431 0.0479236 +0.021311 0.123415 0.0275211 +0.0415141 0.104253 0.009162 +-0.0617635 0.0387159 0.0237173 +-0.0044982 0.0952431 0.0547633 +0.0398123 0.066053 -0.00878746 +-0.00271622 0.0627636 -0.0349069 +-0.00914442 0.0387021 0.000210725 +-0.0814422 0.106028 0.0294684 +-0.0136643 0.0922643 -0.0359313 +0.0420557 0.0676716 -0.00377172 +-0.0364793 0.0945677 0.0439429 +-0.05033 0.0517928 0.0340061 +-0.0470088 0.130577 0.00217989 +-0.0286777 0.158132 0.000508817 +0.0185266 0.0345532 0.000246197 +-0.0147199 0.184604 -0.0232088 +-0.0384921 0.111131 0.0361977 +-0.0384978 0.102835 0.0403416 +-0.0215751 0.0667511 0.0487462 +-0.0887264 0.0996152 0.00841821 +-0.060662 0.0644224 -0.00688354 +0.0397235 0.080129 -0.010751 +-0.0136601 0.0389486 0.0334846 +-0.0106876 0.129553 0.00573838 +0.00810435 0.0348429 0.0181346 +0.0256081 0.104449 -0.0166247 +-0.0682325 0.168499 -0.0270627 +-0.0474794 0.0917467 0.0438194 +0.00950115 0.119644 0.0365249 +0.0437324 0.0790794 0.0263023 +-0.0905234 0.132421 0.0302253 +-0.0748541 0.107208 0.0370405 +-0.0943565 0.12553 0.0182582 +-0.0131926 0.0378477 0.0507876 +-0.0570855 0.0480965 0.0356642 +-0.04493 0.0346468 0.0377647 +-0.0665925 0.064199 -0.00375071 +-0.0829976 0.133839 -0.00205551 +-0.0406365 0.0548831 -0.0112562 +-0.00950098 0.0884225 0.0571104 +0.0335068 0.0468989 0.0306812 +4.31947e-06 0.034593 -0.0165995 +-0.0725884 0.155473 0.0265843 +-0.0755167 0.0714511 -0.00453448 +-0.0669139 0.0704667 0.0354638 +-0.069981 0.180634 -0.0574865 +-0.0116389 0.034923 0.0481436 +-0.0307766 0.0720324 -0.0295197 +-0.0178239 0.107521 -0.0218927 +0.020822 0.043607 0.0421342 +-0.025466 0.0460651 0.0509844 +0.0349766 0.11396 0.0183585 +-0.0599273 0.122373 -0.00867944 +0.0365334 0.0980835 0.033685 +-0.0621481 0.159972 -0.0385982 +-0.0915531 0.115336 0.039285 +-0.0888763 0.0982745 0.00841224 +-0.00324635 0.130613 0.0199814 +-0.0668526 0.0914559 0.0435065 +0.0175786 0.0475536 0.0427473 +0.0318002 0.118052 0.00717688 +-0.0414667 0.104283 0.0404247 +0.0562407 0.0648113 0.00118357 +-0.0753758 0.170369 -0.0311391 +-0.0620405 0.138434 -0.00686017 +-0.00249822 0.0870283 0.0569791 +-0.0542914 0.129735 0.0355428 +-0.0274963 0.100194 0.0434874 +-0.00951883 0.17115 -0.0217635 +-0.0305995 0.121953 0.0248664 +-0.0770757 0.068957 0.00853894 +0.0135031 0.119752 -0.013055 +0.0413777 0.0491221 -0.00619394 +-0.0669027 0.0396709 0.012801 +-0.0249365 0.0607087 0.0409751 +-0.0124795 0.0517352 0.0508543 +-0.0304 0.0650386 -0.0254348 +-0.0267061 0.0765373 0.0464972 +0.0196875 0.0385058 -0.013693 +0.0518591 0.0461434 0.019211 +-0.0447475 0.146272 0.00240034 +-0.0336457 0.0562895 -0.0107616 +0.0237552 0.0887468 -0.0239425 +-0.000502572 0.0965565 0.053664 +-0.0664522 0.0376478 0.0363332 +-0.041205 0.169789 -0.00987939 +-0.0630084 0.142674 -0.00705706 +-0.0305333 0.178655 -0.00565353 +-0.0137626 0.0784616 -0.0384771 +-0.0616465 0.0397266 0.0174413 +0.00939844 0.0418898 -0.0239164 +0.0403895 0.0519763 -0.00684208 +0.00239172 0.0434053 -0.0248906 +-0.0663598 0.15609 0.0142173 +-0.0667166 0.136853 0.0439657 +-0.0132042 0.171245 -0.025107 +-0.0511148 0.117699 -0.0144446 +-0.0686887 0.0620968 0.00507892 +-0.066502 0.0889512 0.0442634 +-0.0531749 0.0487012 0.0129919 +-0.0464945 0.0532702 0.037612 +-0.0763048 0.0702707 0.00153293 +0.00237024 0.0481449 -0.0294793 +-0.0669085 0.108072 -0.0133167 +-0.0614834 0.166203 -0.0576271 +0.028089 0.0929174 0.0442737 +-0.0239187 0.036252 -0.0191133 +-0.0394562 0.0347283 0.0406132 +-0.0679286 0.17514 -0.0470724 +-0.0737519 0.14858 -0.0228576 +-0.0335079 0.105635 0.0395993 +-0.0780357 0.0769322 0.031104 +0.047273 0.0720618 0.00573289 +-0.0566027 0.0562228 -0.000407584 +-0.0336617 0.0592604 -0.0121578 +0.0390714 0.108406 0.0131668 +-0.067572 0.158668 -0.00806913 +-0.0668441 0.0995074 -0.0160123 +-0.0155786 0.0348181 -0.0259692 +0.0524799 0.0636428 -0.00173686 +-0.0666208 0.161046 -0.0135117 +0.012487 0.118181 0.036207 +0.00850767 0.067431 0.0550095 +-0.0568164 0.0333332 -0.00454462 +-0.00056724 0.0909565 -0.0345037 +0.0122553 0.0695892 -0.0315106 +-0.0747099 0.0713354 -0.00558545 +-0.0151964 0.178666 -0.0203777 +-0.0707468 0.161979 -0.010709 +-0.00364517 0.0496603 -0.0307711 +0.0292759 0.0787271 -0.0215887 +-0.0606931 0.0659255 -0.00858452 +-0.055281 0.0594285 0.0232183 +0.0168274 0.0658911 0.0506364 +-0.0286315 0.159193 -0.0128611 +-0.0753259 0.0689002 0.0227894 +-0.0278046 0.0364789 0.0536304 +-0.020238 0.0938075 -0.0335417 +-0.0787919 0.108745 0.0367247 +-0.0627356 0.150882 -0.0252578 +-0.0374903 0.111156 0.0359971 +0.0123741 0.0494269 -0.0274814 +-0.0550935 0.0685958 0.0378502 +0.0152655 0.0695272 -0.0306629 +0.0304209 0.0460912 -0.00653037 +-0.0896888 0.137919 0.0321971 +-0.076768 0.156222 -0.00903892 +-0.0177411 0.17422 -0.017052 +-0.0582856 0.0695544 0.0380966 +-0.0710157 0.179813 -0.0510815 +-0.0283604 0.112635 -0.0172343 +-0.0441537 0.0408799 -0.0213021 +0.0104769 0.0949778 0.0509942 +-0.00239285 0.100006 0.0487279 +0.0421962 0.0929549 -0.00479827 +0.0401191 0.0900359 0.0318057 +0.0226855 0.103953 -0.0180758 +-0.0705692 0.037778 -0.000833243 +0.0213756 0.0429924 -0.0177346 +0.0141656 0.0475343 0.0448184 +0.02539 0.0849287 0.0474039 +-0.0485578 0.0361757 -0.0124661 +0.0237226 0.0699627 0.0465409 +-0.062494 0.155703 0.00979223 +-0.0499478 0.135176 0.00116888 +-0.0731261 0.154051 -0.0329012 +-0.0565591 0.0344267 0.0337344 +-0.0757231 0.155771 0.0225635 +-0.081733 0.0783168 0.0273929 +-0.0465781 0.0504461 -0.00966731 +0.0370638 0.0376395 0.0160314 +0.0401736 0.0801429 -0.00978947 +-0.0295615 0.171229 -0.00778742 +-0.0625363 0.158377 -0.0386027 +-0.0482692 0.133969 0.0226705 +0.00454759 0.0341639 -0.0171912 +-0.0620171 0.153759 -0.016582 +-0.0878261 0.11219 0.0337097 +-0.05597 0.0519966 -0.00239063 +0.0400386 0.0871415 -0.0117889 +0.0205921 0.0807207 0.0509473 +-0.0296224 0.0352251 0.019146 +-0.0381589 0.163687 -0.0131595 +-0.0675595 0.163657 -0.0167503 +-0.0522361 0.15086 0.0163848 +0.0360023 0.103374 0.0311349 +0.0272712 0.0929162 0.0448522 +-0.0277389 0.0423333 0.0528015 +-0.0824451 0.140729 0.0449221 +-0.0329396 0.0386558 -0.0303928 +0.0296623 0.114075 -0.00693776 +-0.0221975 0.0652175 0.046591 +0.045212 0.0819736 0.0221688 +-0.0258761 0.0796032 0.0512286 +0.0272389 0.0873294 -0.0222582 +0.00242016 0.0361514 -0.024222 +-0.0615581 0.145382 0.0374116 +-0.0695688 0.160974 -0.049948 +-0.0858053 0.0953564 -0.000572964 +-0.0464927 0.165223 0.0045927 +-0.0624159 0.15064 -0.016574 +0.0473464 0.0561746 -0.0057008 +0.0237088 0.0942271 0.0467477 +-0.0494979 0.0762481 0.043343 +-0.078769 0.165248 -0.0339573 +-0.00950205 0.12806 0.0264334 +0.05377 0.0682444 0.00163269 +-0.0679209 0.163786 -0.054975 +0.0290078 0.087549 0.0438096 +-0.0840398 0.132376 -0.0018283 +-0.0306543 0.0650659 -0.0244333 +0.0322458 0.0355363 0.00770856 +0.00335212 0.131364 0.00663122 +-0.0154115 0.128891 0.0141212 +-0.0372876 0.0421099 0.0439093 +0.0308492 0.0931255 -0.0185705 +-0.029871 0.0459583 -0.0272702 +0.0300675 0.0822073 0.0435477 +0.000382137 0.128869 0.0270967 +-0.0174793 0.0730127 0.0550809 +-0.0387497 0.0782817 -0.0191475 +-0.0433943 0.0335852 -0.0186462 +0.0391881 0.0673984 -0.0107969 +-0.0280713 0.175691 -0.00734553 +0.0316149 0.0916151 0.0423373 +-0.0762132 0.0879097 -0.0135406 +-0.0316751 0.0665766 -0.0214412 +-0.00307655 0.0345443 -0.0171652 +-0.0426807 0.0636637 -0.0138633 +-0.0921228 0.126953 0.0372491 +-0.0235086 0.0347636 0.0474886 +-0.0506072 0.0546369 -0.00878713 +-0.0685971 0.162283 -0.0128033 +-0.0637348 0.156074 0.0136991 +0.0233928 0.0475951 -0.0196868 +-0.0519018 0.105587 -0.0193502 +-0.00551889 0.0746529 0.0585785 +0.000500504 0.0519731 0.0534094 +-0.0412672 0.0338015 -0.0128657 +-0.0819225 0.125087 -0.0048212 +0.00722702 0.0796252 -0.0338785 +-0.0893296 0.0956153 0.0124232 +-0.00167125 0.0554598 -0.0320096 +0.0267785 0.0402768 0.0313512 +-0.0867821 0.10632 0.010369 +-0.0451957 0.131364 0.0135329 +0.018149 0.0699846 0.0508404 +-0.0878008 0.119885 0.00028492 +-0.0612546 0.0341987 0.0206565 +0.0115009 0.111256 0.0392728 +0.0152633 0.0751002 -0.0297036 +-0.0351444 0.0865581 -0.0244792 +0.000649673 0.0963928 -0.0300705 +-0.0345272 0.121283 0.0279162 +0.0296818 0.0815643 -0.0205093 +-0.03348 0.115008 -0.0157024 +-0.0728312 0.136891 0.0492499 +-0.00265601 0.0540246 -0.0319128 +-0.0422272 0.127744 0.0161624 +-0.0494399 0.119744 0.0319359 +-0.0574019 0.116942 0.0379675 +-0.0468361 0.0970763 -0.0219471 +-0.0616292 0.146031 -0.00460349 +-0.0933662 0.126937 0.0262691 +-0.0228186 0.161021 -0.00330981 +-0.0635624 0.152855 0.034229 +-0.0625195 0.144437 -0.00658249 +-0.0839827 0.0830482 -0.0025149 +0.0144965 0.116791 0.0366152 +-0.0766305 0.155099 0.0076657 +-0.0365494 0.127902 0.0108341 +0.02042 0.126659 0.0186188 +-0.0470606 0.0628926 0.0375096 +-0.00665705 0.114661 -0.0174859 +0.0409886 0.104212 0.016155 +0.0264254 0.054947 0.041554 +-0.064618 0.0659249 -0.00682147 +0.0143052 0.127349 0.0263844 +-0.0254714 0.0379526 0.0103195 +0.0213669 0.0851498 -0.0262488 +-0.0469792 0.133264 0.00837709 +-0.0845615 0.0777561 0.014943 +0.0384886 0.0513309 0.0319844 +-0.0128833 0.165453 -0.0135102 +-0.0811951 0.147316 0.000164965 +-0.0523892 0.141597 0.0213852 +-0.045982 0.130505 0.00444274 +0.0279356 0.0520839 0.0384098 +-0.0931866 0.124098 0.0112689 +-0.0316005 0.0707575 -0.0264789 +0.00339515 0.0448431 -0.0258796 +-0.019688 0.0352649 -0.0192337 +-0.0492398 0.164062 -0.00484765 +-0.00759694 0.039172 -0.0259394 +-0.0456148 0.043386 -0.0114089 +-0.0706825 0.163806 -0.0469738 +-0.0111277 0.166928 -0.0162357 +0.0150914 0.0873948 0.0517971 +-0.0488841 0.0335499 -0.0104742 +0.0191832 0.0974256 -0.0227258 +-0.068761 0.17368 -0.0560297 +0.0347852 0.0821986 0.0398055 +-0.0656191 0.164967 -0.0232289 +0.0488884 0.0431235 0.0112233 +-0.0204394 0.0725535 0.0530664 +0.0198178 0.127196 0.0112616 +-0.0870347 0.13912 0.00619253 +-0.0619782 0.15683 -0.0335967 +0.0192552 0.0735767 -0.0281447 +-0.0582892 0.0589697 0.00149643 +-0.0794885 0.131664 0.0524764 +-0.0625817 0.159955 -0.0415973 +-0.0344319 0.0350721 -0.0182387 +0.0339652 0.0955609 0.0387182 +-0.0350568 0.0344135 0.0294961 +-0.00649976 0.0842428 0.0569087 +-0.0606247 0.0394421 0.0446315 +-0.066026 0.146409 -0.0228827 +0.0265887 0.0491527 0.0382012 +-0.0447519 0.078285 -0.0193632 +0.0442188 0.0833029 0.0251703 +-0.025021 0.178659 -0.00994683 +0.0382789 0.10977 0.00952257 +-0.0756137 0.176488 -0.0441876 +-0.0706968 0.169922 -0.0279808 +-0.0514769 0.0344526 0.0347935 +0.00449209 0.108585 0.0419458 +0.0591616 0.0552765 0.0151753 +0.0295012 0.0578054 0.0407589 +0.0323993 0.0505614 -0.00746951 +-0.0570338 0.131087 -0.00617819 +-0.0304972 0.101559 0.0427282 +-0.00116978 0.0991573 0.0506694 +-0.0238077 0.0811303 0.0547388 +-0.00701023 0.0988653 -0.0267279 +-0.0156999 0.0584946 -0.0353551 +0.00922562 0.0809438 -0.0326125 +0.0453737 0.0474164 -0.00383546 +0.0044338 0.117686 -0.0167913 +0.0239341 0.0561524 -0.0247597 +0.0591083 0.0705376 0.015147 +-0.0594646 0.151494 0.0342364 +-0.0657091 0.157202 -0.00882727 +-0.0250337 0.0381576 0.00660247 +0.0420581 0.102887 0.0101643 +0.0436509 0.0403831 0.00924323 +-0.00449056 0.130995 0.0108991 +0.0044777 0.112767 0.0412512 +0.00553763 0.100304 0.04669 +-0.0942962 0.120123 0.0192891 +-0.0620801 0.0339964 0.0171254 +-0.0160023 0.128658 0.015367 +-0.0432963 0.128843 0.0142751 +-0.0634932 0.104261 0.0408123 +-0.0746115 0.103538 0.0368408 +-0.0222463 0.0739152 0.0519932 +-0.0544743 0.034136 0.0256577 +-0.0252277 0.12616 0.0135052 +-0.0320296 0.171249 -0.00429305 +-0.0132393 0.1837 -0.0278845 +-0.0324962 0.0718107 0.0406773 +-0.0765269 0.165965 -0.0237196 +-0.0833313 0.0829966 0.0292517 +0.0259015 0.0902483 0.0463733 +0.0095961 0.0354723 -0.00987583 +0.0511798 0.0581784 0.029952 +-0.0848476 0.0845966 0.0254873 +-0.0509379 0.131197 -0.00260501 +0.00252027 0.0730778 0.0562797 +-0.0135504 0.122737 -0.00796322 +-0.00761024 0.0420402 -0.0258045 +-0.0508461 0.134795 0.0276114 +-0.0804072 0.155064 0.0209566 +0.00350727 0.103765 -0.0218529 +-0.0106066 0.0420419 -0.0261259 +-0.0713436 0.0632651 0.0179295 +-0.067959 0.169303 -0.0298283 +-0.0236585 0.049302 -0.027521 +-0.069473 0.158882 -0.00587612 +-0.0766843 0.15421 -0.00390102 +-0.0220401 0.0852804 0.0556778 +0.0275877 0.0465825 -0.0117097 +-0.00852427 0.130326 0.0108566 +0.0130382 0.0344991 0.00293188 +0.0559458 0.0605187 0.000117677 +-0.0348266 0.0900917 -0.0242073 +-0.0890869 0.135136 0.0402764 +-0.0897624 0.136545 0.033205 +0.00547548 0.112757 0.0410095 +-0.0712367 0.159654 -0.00650092 +-0.0121993 0.177175 -0.0288808 +-0.0823069 0.0748418 0.00552391 +-0.054558 0.0460859 0.0144477 +-0.070487 0.0669606 -0.00253268 +-0.0556924 0.159448 0.00648476 +-0.00649361 0.105887 0.04408 +-0.0602281 0.059992 0.0213112 +-0.0580325 0.0579587 0.00923969 +-0.0338627 0.110196 -0.0186635 +0.0546876 0.0597691 -0.00173886 +-0.0625369 0.149102 -0.00757295 +0.0542703 0.0575789 -0.00178727 +-0.0088618 0.129865 0.0208462 +-0.0801514 0.109359 0.0377151 +-0.00679227 0.0798757 -0.0378854 +-0.0424904 0.0860159 0.0426903 +0.0479819 0.0723794 0.00739708 +-0.0560722 0.13957 0.0312222 +-0.0365138 0.0804626 0.0431357 +0.00167631 0.105337 -0.0215515 +-0.0775111 0.0860271 0.0374369 +0.0259521 0.11908 -0.00433188 +-0.0558236 0.0526652 0.00846948 +-0.0846054 0.11036 0.02536 +-0.0765518 0.15421 -0.000899711 +0.0127846 0.0699169 0.0536174 +0.0208082 0.1264 0.00735797 +-0.0504584 0.0502644 0.0363006 +0.0174244 0.125027 -0.00283112 +-0.0308709 0.178515 -0.0130008 +-0.00718543 0.0385691 0.00621806 +0.0407891 0.0886694 0.0309807 +-0.0357951 0.124657 -0.0058294 +-0.0554873 0.0400326 0.0469712 +-0.057026 0.0675163 0.0366088 +-0.0497286 0.133927 0.0265636 +-0.00790814 0.0384861 0.0079669 +-0.0811308 0.0841829 -0.00653469 +-0.010479 0.0991873 -0.02508 +0.00856046 0.0354979 0.0447263 +-0.0634822 0.166302 -0.0366942 +-0.0223475 0.0360366 0.0535038 +-0.0795325 0.124539 0.0521412 +-0.00951606 0.0745243 0.0569833 +-0.0130122 0.127478 0.0251829 +-0.0936226 0.120076 0.0132919 +-0.0540996 0.154592 -0.00271527 +-0.0879876 0.132208 0.00230713 +-0.034669 0.15585 -0.0101443 +-0.0197012 0.0598498 -0.0346368 +-0.0276791 0.155231 -0.00339809 +-0.0842452 0.0818537 0.025498 +-0.054537 0.0560032 -0.00541843 +-0.0497623 0.0665865 0.0371903 +-0.0891577 0.092949 0.0214162 +-0.0577737 0.0782037 -0.0194332 +-0.064492 0.104249 0.0405622 +-0.0336047 0.0695556 -0.0194645 +-0.0558611 0.0955845 -0.021564 +-0.0184974 0.0869962 0.0565805 +0.00637923 0.0372606 0.0264872 +-0.0665048 0.104229 0.0399675 +0.0566718 0.0553009 0.0238011 +-0.0283123 0.0383433 -0.00703005 +-0.0114184 0.169868 -0.0184586 +0.0211822 0.0909362 -0.0242734 +0.0406295 0.0806796 0.0323988 +0.0123659 0.128443 -0.000397752 +-0.0384845 0.0833049 0.0437838 +-0.01051 0.0531978 0.0517663 +0.00250545 0.0842781 0.0574483 +-0.0674995 0.0972695 0.0419768 +-0.0618921 0.119466 -0.00942759 +-0.00594439 0.13066 0.0175514 +-0.0188708 0.0382701 0.00775373 +-0.0605698 0.0727907 0.0401099 +-0.0115041 0.115551 0.0394745 +0.0300401 0.11902 0.00366373 +-0.0812551 0.10738 0.02923 +-0.0704758 0.123201 0.0533571 +-0.0711231 0.141136 0.0464522 +-0.0222312 0.125137 -0.000350139 +0.0436968 0.0818627 -0.00278544 +-0.00557531 0.0383818 0.0157938 +-0.0175218 0.187118 -0.0194148 +0.000510392 0.0689287 0.0563645 +0.0339979 0.0519394 0.0331121 +0.00286804 0.129802 0.0250965 +-0.0290472 0.0777737 0.0431405 +0.0209137 0.102084 0.0444516 +-0.00628355 0.0409075 0.0485853 +0.0605521 0.0595441 0.0141714 +0.0386236 0.0898511 -0.0127692 +0.0302987 0.0539206 -0.0157566 +-0.0421651 0.149301 -0.00412295 +-0.0126067 0.040646 -0.0265976 +-0.0788091 0.168052 -0.033971 +0.0359211 0.112779 0.0172688 +-0.0394762 0.17111 0.000601324 +-0.0330305 0.0384181 -0.00620006 +-0.0859939 0.0940196 0.000445293 +-0.0359122 0.158048 0.00410154 +-0.0745011 0.151286 -0.0298782 +0.0531496 0.0491587 0.00225551 +-0.0243767 0.179986 -0.0189674 +-0.0891975 0.0996627 0.0124046 +-0.0742533 0.17954 -0.0493425 +-0.0510836 0.145457 -0.000907293 +0.0483282 0.0561556 -0.00540695 +-0.0224848 0.0474635 0.0510926 +-0.0647533 0.163375 -0.0214725 +-0.0127683 0.163589 -0.0126806 +0.0112702 0.0766287 -0.031501 +-0.0460801 0.153165 -0.0063697 +-0.0396673 0.0606846 -0.0120669 +0.0304753 0.100799 0.0389817 +0.0504441 0.0731136 0.0180651 +0.0195371 0.122997 -0.00457304 +-0.0455152 0.0505363 0.0385492 +-0.0525396 0.0458696 -0.00783738 +-0.0679101 0.109459 -0.0121777 +0.0257715 0.122252 0.0234619 +-0.0641925 0.158337 -0.0512857 +-0.0679573 0.0636968 0.0236258 +0.0336501 0.0872305 -0.0183746 +-0.081408 0.0801232 -0.00353296 +-0.068364 0.143961 0.043402 +-0.060807 0.170968 -0.0607383 +-0.0530022 0.0712206 0.0395879 +-0.0629233 0.149038 -0.01858 +-0.0911763 0.131044 0.0302322 +-0.0866097 0.0859466 0.00148078 +-0.0213048 0.0567472 0.0459531 +-0.0884724 0.111842 0.0093465 +-0.0232358 0.0382045 0.0267906 +-0.0687325 0.178002 -0.0502345 +0.0171734 0.0960138 -0.0234178 +-0.0336295 0.0533957 -0.0102549 +0.0404048 0.0661215 -0.00776758 +0.0352114 0.113974 0.0112756 +-0.0509894 0.131098 0.0315417 +-0.0825925 0.0857998 0.0312629 +0.0165569 0.0367823 -0.018664 +-0.0158447 0.163118 -0.0162484 +0.0463618 0.0504062 -0.00492067 +-0.0256024 0.0918183 0.0477571 +0.0401119 0.105635 0.0181717 +-0.075865 0.120825 -0.00747435 +-0.0515138 0.0502892 0.0216268 +-0.0597307 0.0737738 -0.017073 +0.0327302 0.0795508 0.0421017 +0.0561478 0.0493933 0.0131905 +-0.0491927 0.149222 0.0111539 +-0.0505664 0.0459962 -0.00889176 +-0.0346044 0.0381371 0.0484275 +-0.0571418 0.0341673 0.0268338 +-0.0508978 0.0335658 0.00549258 +0.0499018 0.0460625 0.00228276 +0.000648366 0.101032 0.0453587 +-0.064515 0.0945534 0.0434117 +-0.00933623 0.127529 -0.00319765 +-0.0931674 0.126844 0.0122586 +-0.0775055 0.120428 0.0519362 +-0.00412302 0.0390868 0.0317249 +-0.0444953 0.12065 0.0276432 +-0.0808257 0.114785 -0.00282613 +0.00848893 0.0976878 0.0492062 +-0.0204952 0.119495 0.0334766 +-0.0744171 0.1312 0.052182 +-0.0354802 0.0365931 -0.0303176 +-0.0158225 0.127346 0.0227279 +-0.0622273 0.163125 -0.0345932 +-0.0308039 0.0345326 0.0408762 +-0.0684942 0.0944611 0.0423345 +-0.0282259 0.115945 -0.0147131 +-0.00496131 0.0393649 0.0367022 +0.000507606 0.089764 0.0561546 +0.0184391 0.121423 0.0322194 +-0.0293563 0.0761839 -0.0345604 +-0.0798193 0.0993879 0.0336913 +-0.0260706 0.125207 0.0176138 +-0.0466789 0.0383303 -0.0162856 +-0.0551627 0.0709645 0.0393255 +-0.0708102 0.086505 -0.0166182 +-0.0534691 0.0491595 0.0373719 +-0.0176627 0.0365106 -0.0181139 +0.00950436 0.0910078 0.0538342 +-0.0895706 0.136541 0.0322035 +0.0538065 0.0721186 0.0208488 +-0.00549555 0.115561 0.0401898 +0.00964519 0.0349724 -0.00752839 +-0.0134864 0.112741 0.0406725 +-0.00206815 0.039143 -0.00620903 +0.0130247 0.112857 -0.017601 +-0.0790398 0.119048 0.050662 +-0.0808858 0.0872378 0.0337267 +-0.0123796 0.124965 -0.00637162 +-0.0213885 0.125739 0.00103732 +-0.089509 0.125659 0.045333 +-0.05553 0.137483 -0.00349047 +0.0417216 0.100008 -0.000812454 +-0.0294372 0.045874 0.0494957 +0.0458807 0.0774123 0.0204549 +-0.010796 0.120869 -0.0120713 +-0.0650859 0.171096 -0.0446086 +-0.0309091 0.0594671 -0.0184147 +0.0318276 0.102039 -0.0140664 +-0.050474 0.137043 0.0223997 +-0.0892111 0.0956026 0.0114219 +-0.0551272 0.0478339 0.0400497 +-0.0376142 0.115213 -0.0159111 +-0.0262205 0.0604134 -0.0304432 +-0.0395514 0.159448 0.00235113 +-0.0548296 0.0912974 -0.0221769 +0.0140209 0.113717 -0.0165571 +-0.0376838 0.0651596 -0.0143574 +-0.0357596 0.0367769 0.0465803 +0.0218833 0.124858 0.00205716 +-0.0515413 0.0403485 -0.0110842 +0.0196453 0.0521206 0.045827 +-0.0274751 0.109286 -0.019717 +-0.054346 0.125513 0.0372066 +-0.061806 0.172532 -0.0555873 +0.0193853 0.0367967 0.0404 +0.00315064 0.0340463 -0.0192491 +-0.0419902 0.127061 0.0177443 +-0.0753578 0.0671035 0.0137678 +-0.017747 0.0685932 -0.0381265 +0.0502404 0.0581527 0.030355 +-0.01349 0.11138 0.0414506 +-0.088473 0.0908539 0.022804 +-0.0623246 0.0380624 0.0435494 +-0.0315191 0.0831203 0.0417649 +-0.0908528 0.131057 0.0322319 +-0.0524868 0.0959601 0.0436811 +0.0383485 0.10917 0.00520513 +0.0405643 0.0599899 -0.00408877 +-0.00769877 0.0598808 -0.0345717 +0.0253549 0.0875981 0.0473346 +-0.0126907 0.166905 -0.0150111 +0.0384994 0.0541178 0.0316123 +-0.034906 0.0367338 -0.0161439 +-0.057208 0.048538 0.00854022 +-0.0255159 0.108511 0.0401259 +0.0305676 0.0350004 0.0115893 +-0.0520943 0.0559627 0.0266271 +-0.0610057 0.155949 0.0190169 +-0.067333 0.1766 -0.0497355 +0.0258363 0.0844839 -0.0235493 +-0.0689178 0.164003 -0.0158096 +-0.00849374 0.116931 0.0393004 +-0.0752784 0.113511 0.0497641 +-0.0888148 0.144497 0.0313918 +-0.0453871 0.145929 0.00156561 +-0.0599561 0.0677317 0.0357891 +-0.0125434 0.0386707 -0.00229897 +-0.000271447 0.0356914 0.00658166 +-0.0415825 0.0366566 0.0434527 +-0.0297036 0.165315 -0.00626903 +-0.0467885 0.0855251 -0.0217462 +-0.0827882 0.125806 0.051363 +-0.0176693 0.0966335 -0.0284397 +-0.0464991 0.115243 0.033257 +-0.0569748 0.146758 0.0317266 +-0.0430879 0.156177 -0.00890493 +-0.00350236 0.0774419 0.0585703 +-0.0699027 0.158151 -0.0489236 +0.0362459 0.112339 0.00591924 +0.0367118 0.0920329 -0.0133924 +-0.0539202 0.0610131 0.0274265 +-0.0093317 0.127279 0.0279745 +-0.0726772 0.112018 0.047983 +-0.0451365 0.160644 -0.00892562 +-0.0209165 0.172715 -0.0146234 +-0.0477839 0.125387 0.0290716 +-0.0734873 0.156859 -0.0289164 +0.00860516 0.061703 0.0545256 +-0.0246606 0.0422329 0.0539554 +-0.0315436 0.153515 -0.00448892 +0.0345459 0.0571781 -0.011728 +-0.0791321 0.170818 -0.0399882 +0.0254504 0.0415949 -0.00563526 +0.0230318 0.0355156 0.0114574 +-0.0554984 0.107053 0.0399469 +-0.0296361 0.0522471 0.0373693 +-0.0438179 0.0928034 -0.0224841 +-0.0199243 0.0387302 -0.0112686 +0.0212455 0.0791286 -0.0267859 +-0.0532861 0.0527919 0.0115704 +0.00450017 0.0441843 0.0459802 +-0.0329932 0.0339759 0.0213799 +0.0553011 0.0604636 -0.000842819 +0.00165238 0.0932332 -0.0327923 +-0.0552284 0.0527023 0.00927604 +-0.0783599 0.0708413 0.0204513 +-0.0767777 0.176413 -0.0510191 +-0.0394918 0.104211 0.0396007 +0.0327921 0.0889736 0.0422708 +-0.00991923 0.0986226 0.0505787 +-0.0806729 0.108958 0.0307202 +-0.0822864 0.135367 0.0491747 +-0.0649369 0.0609076 0.00327394 +0.0386477 0.0715748 -0.0117783 +-0.0240415 0.126597 0.0109996 +-0.0781422 0.141688 -0.0047364 +-0.0427782 0.0841106 -0.0212812 +-0.0641686 0.178174 -0.0558405 +0.0252976 0.0661311 -0.0233121 +0.0189895 0.0631559 0.0484766 +0.0182463 0.0722224 -0.0290012 +-0.0777504 0.161717 -0.020949 +-0.051966 0.138521 0.000416067 +-0.0605353 0.155832 0.0177371 +0.0437866 0.098742 0.00716534 +-0.0494703 0.0370271 -0.0120635 +0.0464078 0.0806576 0.0101793 +0.0218218 0.116393 -0.0114503 +-0.0533273 0.132699 -0.00427378 +-0.0681775 0.0762505 0.039044 +-0.0250035 0.0896 -0.0352857 +0.000769534 0.0946028 -0.0322154 +-0.0158082 0.0346932 0.0474464 +-0.076979 0.148604 -0.00699397 +0.0467055 0.0730498 0.0181295 +-0.0496483 0.0634464 -0.0118311 +-0.0197535 0.0700012 -0.0382558 +0.0232727 0.0989983 -0.0208236 +-0.0777 0.16251 -0.0219398 +-0.0908755 0.147455 0.0141474 +-0.0334742 0.0638502 -0.015538 +0.00219672 0.0825025 -0.0349885 +-0.0814773 0.128835 0.0524787 +-0.0784807 0.13724 0.0497912 +0.0361312 0.11046 8.71157e-05 +-0.0454849 0.0931252 0.0434035 +-0.0635463 0.153079 -0.00800928 +-0.0529285 0.0339107 0.0244154 +-0.00862356 0.0451919 -0.0286362 +0.0192377 0.117984 0.0350388 +-0.000496915 0.0883839 0.0565827 +0.0316988 0.118246 0.0142694 +-0.0398347 0.169198 -0.01127 +0.0219416 0.125622 0.00635903 +-0.092876 0.129604 0.0142376 +-0.023566 0.0579721 0.0425175 +-0.0447621 0.126552 0.0211574 +-0.0390659 0.157734 -0.0109824 +-0.0038734 0.104505 -0.022849 +-0.0810823 0.146103 0.0405774 +-0.00499552 0.038756 0.0282379 +0.00659654 0.102942 0.0449664 +-0.0528078 0.0898592 -0.0221628 +-0.0415043 0.0340515 -0.0039392 +-0.0118724 0.166916 -0.0155725 +0.00801932 0.113693 0.0398597 +-0.0873717 0.0895698 0.0245766 +0.0235801 0.11767 -0.00881398 +-0.0592051 0.0411249 -0.00803844 +-0.0631955 0.174736 -0.0540401 +-0.00904474 0.102005 -0.0240096 +-0.0893459 0.0888735 0.0114634 +-0.0847817 0.111591 0.0313073 +-0.0318636 0.155275 -0.00893878 +0.020119 0.0578214 0.0483165 +-0.0884363 0.140505 0.0381916 +0.0268748 0.0768062 0.0459093 +0.00650425 0.06886 0.0554952 +-0.0600274 0.155812 0.00342033 +0.00439509 0.0433687 -0.0246925 +-0.0644393 0.157952 -0.0526177 +-0.0626717 0.152516 0.0345768 +-0.0686641 0.0435432 0.00268116 +-0.0668913 0.155545 0.00822429 +-0.0513204 0.0545255 0.0306253 +-0.0216946 0.055283 -0.031103 +0.0201038 0.121698 0.0313961 +-0.0435092 0.0973014 0.0425845 +-0.0598342 0.124083 0.0415696 +-0.0290584 0.0385824 0.0360072 +-0.0211666 0.0959679 -0.0277597 +0.0393164 0.0948581 -0.00836399 +-0.0465497 0.0354834 -0.0182685 +-0.0577953 0.0577539 0.0112722 +0.0343862 0.0533953 0.033694 +-0.0356597 0.12459 0.0229985 +-0.0703962 0.0382223 -0.000484462 +0.0394034 0.0772645 -0.00977482 +0.0374516 0.110677 0.0163977 +0.022681 0.0549804 0.0449373 +-0.00661876 0.0388692 0.029605 +-0.0298463 0.0958488 -0.0239617 +-0.0500656 0.165567 2.77718e-05 +-0.0624265 0.163056 -0.0535855 +0.0182459 0.035082 -0.00972071 +-0.0535426 0.139527 0.0278286 +0.0535157 0.0664189 0.0268642 +-0.0618871 0.044625 0.0401036 +0.0279315 0.0813321 -0.0222629 +-0.0364738 0.0959436 0.0435424 +-0.0648009 0.0867059 -0.0190299 +-0.0910478 0.113254 0.017639 +0.0328625 0.115479 0.000361714 +-5.55454e-05 0.1192 -0.0143689 +0.00440015 0.0419024 -0.0241382 +-0.0356548 0.0459643 -0.0252685 +-0.00874142 0.0699019 -0.0364843 +-0.0786816 0.173602 -0.0460003 +-0.0750442 0.11265 0.048722 +0.0132032 0.0850348 -0.0305799 +-0.0275703 0.070462 0.0404211 +-0.0333885 0.082189 -0.0265241 +-0.0498121 0.0912811 -0.0216901 +-0.0121305 0.129539 0.00953518 +-0.0888371 0.0942243 0.00943852 +-0.0733262 0.151241 -0.0368807 +0.0159012 0.0347663 0.0342789 +-0.0464698 0.0336288 0.00272222 +-0.0219797 0.0381347 0.0126751 +-0.0434985 0.112577 0.0357301 +0.0374146 0.0807844 0.0365828 +-0.0150623 0.160937 -0.0114195 +0.00882514 0.0347544 -0.00561715 +-0.0793646 0.150083 0.036366 +0.0444807 0.0526489 0.0324592 +-0.0140843 0.0382987 0.0177555 +0.0371109 0.0630101 -0.0117592 +-0.0795655 0.0711751 0.0181423 +0.0314182 0.0968966 0.040312 +0.0553211 0.0622297 0.0271921 +-0.0344916 0.0789231 0.04184 +-0.0708134 0.0893817 -0.0163657 +-0.0786856 0.174223 -0.045863 +-0.0497628 0.0345507 0.0333201 +-0.026557 0.0646504 0.0393284 +0.0499455 0.0733656 0.0164225 +0.0233132 0.0902311 0.0479207 +-0.0441494 0.163638 -0.00943446 +-0.048497 0.0464891 0.040915 +-0.0638143 0.15519 -0.0396115 +0.0296208 0.115866 0.0291818 +-0.0505003 0.100168 0.042883 +0.00450871 0.0910904 0.0550512 +0.0223914 0.093257 -0.0227104 +-0.0346391 0.0469045 -0.0241611 +0.0600903 0.0608951 0.0181821 +0.0174829 0.0976104 0.0472234 +0.0245219 0.0382712 0.0311236 +0.0373902 0.0561474 -0.00613784 +-0.0725233 0.143597 -0.0104167 +-0.0755086 0.133058 0.0519758 +-0.0469091 0.134066 0.0158053 +-0.0365004 0.0719314 0.0420432 +0.0599383 0.0692126 0.0131498 +-0.0228512 0.126901 0.0114323 +0.0370832 0.0408236 0.0259314 +0.0430366 0.0709859 0.0269587 +0.0442558 0.0917077 -0.00080891 +0.0366443 0.0915417 0.0373244 +0.0149217 0.127634 0.0251635 +-0.0260773 0.0547586 -0.0274003 +0.0223322 0.0348324 0.0210401 +-0.0674741 0.169344 -0.0310786 +-0.0943935 0.125559 0.0222675 +0.000334373 0.0554042 -0.031412 +-0.023822 0.0694685 0.046666 +0.024828 0.0768588 0.0482443 +-0.0593221 0.0615947 0.0254084 +-0.0274704 0.0506795 -0.0243965 +-0.0172176 0.177147 -0.0249576 +0.0433823 0.0490357 -0.00560381 +0.0244317 0.116294 -0.00934411 +0.0184177 0.0350663 0.0309125 +0.0404265 0.102791 0.0231613 +-0.0243375 0.1639 -0.00728245 +-0.0675442 0.151908 -0.0456642 +-0.0311974 0.0474073 0.0447828 +-0.0726957 0.175719 -0.0430358 +-0.0165027 0.0499584 0.0473896 +0.0323852 0.0461686 -0.00610484 +0.0214495 0.0822346 0.0504578 +0.016822 0.123899 -0.00554312 +-0.0694694 0.178653 -0.050518 +-0.0741019 0.156119 0.0187476 +0.0510202 0.0736047 0.0138558 +-0.0739033 0.14718 -0.0168588 +-0.0165785 0.162548 -0.00831661 +-0.0414778 0.0347327 0.0401772 +0.0319294 0.118052 0.0100791 +-0.0502835 0.146495 -0.00183305 +-0.0758664 0.116415 -0.00636144 +-0.0824071 0.136209 -0.001703 +-0.0519598 0.0335208 -0.000101812 +-0.0819554 0.0993316 0.0315904 +0.0213579 0.055075 -0.0266156 +-0.0422106 0.112435 -0.0169649 +0.0150002 0.128745 0.00378903 +-0.0430993 0.157658 -0.00954173 +-0.0816795 0.117485 0.0486704 +-0.00999143 0.0383941 0.00762464 +0.0248936 0.12332 0.00461274 +-0.0644877 0.0972949 0.0424471 +-0.032514 0.105674 0.0400124 +-0.0517751 0.0826668 -0.0215624 +0.00214252 0.103065 -0.0221511 +-0.0609083 0.169363 -0.0596932 +0.0270498 0.0919981 -0.0213752 +0.00735643 0.038818 0.0454516 +0.0115845 0.121127 -0.0125402 +0.0591992 0.0552614 0.014176 +-0.0901723 0.112303 0.0149799 +-0.0627834 0.035148 0.0195098 +-0.074757 0.111898 0.0475989 +0.0570719 0.0578424 0.00217676 +-0.0528487 0.0500508 0.0126245 +-0.00477608 0.0784365 -0.0374195 +-0.0645432 0.0673992 0.033354 +-0.0540085 0.145723 -0.00127177 +-0.010995 0.0388834 0.0322933 +0.00247314 0.0964836 0.053027 +-0.0624566 0.177245 -0.0586155 +0.0368789 0.0941727 0.035906 +-0.0219544 0.120804 -0.00985027 +0.0570851 0.0508934 0.0101876 +0.0102738 0.0724526 -0.032232 +0.0544954 0.0655564 0.000403771 +0.0210681 0.0415437 -0.0156999 +-0.0692317 0.155651 0.00154206 +0.0527009 0.0518645 -0.000768796 +0.0334294 0.116181 0.00636312 +0.0448957 0.0945828 0.0101613 +0.00249575 0.0952068 0.0540463 +-0.0124032 0.0388598 -0.00801871 +0.045282 0.0889737 0.0021781 +-0.00350234 0.0388725 -0.0137373 +-0.0678317 0.0335757 0.00383638 +0.00921578 0.0767579 -0.0331902 +-0.0534996 0.0987387 0.0427565 +-0.0124888 0.126191 0.0283067 +0.0103285 0.130654 0.00635323 +0.0314005 0.0446447 -0.00577901 +-0.0295471 0.0804664 0.0436378 +0.00584239 0.0374362 -0.00493399 +0.0435663 0.0408867 0.018056 +-0.0206234 0.0950485 -0.0308006 +-0.0216102 0.0408331 -0.028871 +-0.0256808 0.0663835 0.041558 +0.0103698 0.0351865 0.034574 +0.0249548 0.0809223 0.0484627 +-0.0551501 0.0641879 0.0328568 +-0.0633147 0.132484 0.0400888 +-0.062948 0.163113 -0.0275941 +-0.0620302 0.141028 0.0366839 +-0.0484797 0.126826 0.0298997 +0.00950548 0.107102 0.041296 +0.0390056 0.0914413 0.0336848 +0.0300323 0.108764 0.0348296 +-0.0198832 0.0335337 -0.0251748 +0.0128315 0.0391361 0.0445812 +-0.0263531 0.11244 -0.0170322 +0.0359611 0.109622 -0.00183337 +-0.0572001 0.0380562 0.0469117 +0.00550248 0.121034 0.0357708 +-0.0667821 0.14845 -0.031825 +-0.016957 0.186039 -0.0193264 +-0.0878947 0.131105 0.044958 +0.0363312 0.107346 0.0280412 +-0.0614985 0.0833224 0.0439406 +0.0542552 0.0478973 0.00920996 +-0.0787615 0.0867217 -0.0105634 +0.0226207 0.0360088 0.0127544 +0.00886878 0.0343168 0.00225753 +-0.0266191 0.0618553 -0.0304537 +-0.00302574 0.0387303 0.00142158 +-0.019905 0.038668 0.0324503 +0.0527798 0.0683653 0.00150186 +0.021964 0.0402022 -0.00870612 +-0.0126432 0.0481635 -0.0303259 +-0.0124951 0.0925417 0.056096 +-0.0373842 0.0433946 0.0425967 +0.0243858 0.124139 0.00725423 +-0.0540808 0.0434992 0.0186914 +-0.0590026 0.0609591 0.0242669 +-0.0846496 0.129332 -0.00265191 +0.0108129 0.0887938 0.0544498 +-0.0599027 0.106882 -0.0174092 +0.0235199 0.123889 0.00267512 +-0.0364958 0.116629 0.0319219 +-0.0274016 0.0386836 -0.0145853 +0.0575354 0.0620414 0.00218896 +-0.0617076 0.156842 -0.0315932 +-0.0566848 0.0344893 0.0422998 +-0.0515556 0.0459336 -0.00836292 +0.034036 0.037677 0.020853 +0.0440634 0.064827 -0.000963389 +-0.0783551 0.090033 0.0367591 +-0.0451437 0.162134 -0.00879907 +-0.0870992 0.0913786 0.00345195 +-0.0896332 0.0983435 0.0144056 +0.00267954 0.131212 0.00494959 +-0.0521038 0.0531706 0.024633 +0.033292 0.0856433 -0.0187503 +-0.0284873 0.0606333 -0.0264114 +-0.0366237 0.123115 -0.00817194 +-0.0417568 0.0797359 -0.0197866 +-0.0466787 0.0650533 -0.0138917 +0.0360448 0.0392022 -6.35907e-05 +-0.0192403 0.0387115 -0.0129795 +0.0431391 0.098698 0.00317491 +-0.0224767 0.091498 -0.0352097 +0.0093588 0.0524416 -0.0295377 +-0.0833358 0.105954 0.0271122 +-0.0146006 0.127548 0.000963555 +0.0122907 0.0652688 -0.0305463 +-0.0515682 0.0488001 -0.00762593 +0.0214986 0.122612 0.0290301 +-0.0271235 0.11599 -0.0147668 +0.0381316 0.109734 0.0151646 +-0.00681664 0.0854791 -0.0376549 +-0.0147515 0.07145 -0.0385454 +-0.0659657 0.129697 -0.00887578 +0.0359834 0.11203 0.00292702 +-0.0631298 0.144906 -0.0101196 +0.00903132 0.0343268 -0.014573 +-0.0348704 0.101474 -0.022105 +-0.0693077 0.0614952 0.0145437 +0.0349262 0.0896582 -0.0169179 +-0.037886 0.109925 -0.0191545 +-0.0372775 0.0472266 -0.0193178 +0.0112393 0.0349033 0.0350041 +0.0430009 0.0705508 -0.00279727 +0.0400623 0.0956447 -0.00679711 +-0.0676126 0.155322 0.00651001 +0.0598737 0.0581052 0.00916393 +-0.061495 0.100138 0.0425963 +-0.0575075 0.0435504 0.0160321 +0.0228298 0.0827896 -0.0258286 +-0.0115004 0.0925527 0.0561224 +-0.0223058 0.184466 -0.0180708 +-0.0624348 0.161527 -0.0435948 +-0.0143997 0.0383922 -0.000568703 +-0.0793362 0.0881239 -0.0095476 +-0.0548971 0.10981 -0.018029 +-0.0707512 0.156365 0.0199172 +0.0244407 0.0405616 0.0372831 +-0.0545055 0.113958 0.0351234 +-0.00749363 0.0547355 0.05304 +0.044284 0.0819099 0.0251484 +0.0117499 0.0519912 0.0501875 +-0.0706809 0.109318 0.0378585 +-0.0640006 0.161566 -0.01976 +-0.0122192 0.0378665 0.050479 +-0.0715061 0.148353 0.0408514 +-0.0652549 0.0667307 0.0320259 +0.0162842 0.118981 -0.0122323 +-0.0584978 0.0959813 0.0440843 +-0.0261553 0.169713 -0.0187023 +0.0163086 0.108997 -0.0174538 +0.019812 0.035154 0.0274956 +0.0403843 0.0547484 -0.00641578 +-0.0370524 0.128064 0.00917633 +-0.0181528 0.0388364 -0.0128782 +-0.0703699 0.144073 -0.0154773 +-0.0821317 0.15265 0.0057634 +-0.0121975 0.182647 -0.0286755 +-0.0179487 0.126229 0.0234428 +-0.0713342 0.065071 0.0216423 +-0.0135059 0.0357879 0.0504712 +-0.0551243 0.0482803 0.0389113 +-0.043841 0.0970933 -0.0219235 +0.0307935 0.0619124 0.0409121 +-0.0872404 0.149912 0.0282765 +-0.0777833 0.0694772 0.0182331 +-0.0479563 0.0699321 0.0400053 +-0.0325179 0.0704032 0.0404934 +-0.04199 0.0336868 -0.0166047 +0.00497409 0.0340864 0.0145521 +-0.0449304 0.0643377 0.0396087 +-0.0778694 0.106226 -0.00738941 +-0.0126221 0.0389953 0.033657 +-0.0632121 0.172304 -0.0615699 +-0.0276205 0.0874255 -0.0346253 +-0.0625254 0.138119 0.0359126 +0.00425284 0.0711834 -0.0342035 +-0.0788838 0.153282 0.0303949 +0.00652169 0.0362747 0.0255863 +-0.0662316 0.0345008 0.0140489 +-0.02106 0.174206 -0.0148174 +0.0185004 0.109841 0.0391791 +-0.0646081 0.0450546 0.000685835 +-0.0136021 0.0363077 -0.0261392 +-9.29522e-05 0.131467 0.0096514 +-0.0451771 0.128971 0.00184527 +0.00750493 0.0561002 0.0528313 +0.0361319 0.074097 0.0381795 +0.022807 0.125614 0.0138049 +-0.0196774 0.0509888 -0.0303435 +-0.0930693 0.120128 0.0262942 +-0.0230193 0.120798 -0.0098328 +-0.0271496 0.0384219 0.0311819 +-0.0748224 0.0935599 -0.014192 +-0.0354943 0.119369 0.0303337 +0.060906 0.0609648 0.0111554 +0.0112135 0.130703 0.0137986 +-0.0266186 0.0589226 0.0382515 +0.0218458 0.0672628 0.0473581 +0.00922858 0.116392 0.0380826 +-0.0579872 0.0576809 0.00662705 +-0.0151861 0.168246 -0.0215615 +0.0431809 0.0791159 0.0272636 +-0.0755673 0.0727762 -0.00660131 +0.0242315 0.0818412 -0.0251267 +-0.0250124 0.0782139 0.0518051 +-0.0338224 0.0338142 0.00692539 +-0.00946746 0.0362215 -0.025425 +-0.0416936 0.0652006 -0.0145392 +-0.0546754 0.0335075 0.00116676 +-0.0233106 0.15969 -0.00223977 +-0.0842752 0.141807 0.00320102 +-0.0818378 0.131303 0.0516681 +-0.0234556 0.161598 -0.0145283 +-0.0499699 0.150693 0.011804 +-0.010495 0.0471724 0.0477907 +0.0380379 0.075373 0.0356471 +-0.0450739 0.0363473 0.0448052 +-0.0737333 0.15548 -0.0259091 +-0.0716137 0.178389 -0.0484 +-0.0384987 0.0691035 0.0417776 +0.00141943 0.122927 0.0347542 +-0.057332 0.137224 -0.00518105 +-0.0557698 0.136063 -0.00393718 +0.0558337 0.0494217 0.00919997 +-0.0580135 0.04944 0.00163802 +-0.0357372 0.111668 -0.0181975 +-0.0550044 0.145721 -0.00143834 +0.00110225 0.0344701 0.00796988 +-0.0157589 0.038402 0.00281447 +-0.0521458 0.121812 -0.0107191 +-0.00850406 0.11834 0.0382239 +-0.0498654 0.102788 -0.0210486 +-0.0630574 0.15313 -0.033029 +-0.0734528 0.143001 -0.00787011 +-0.0577717 0.0334512 -0.00484461 +-0.0926703 0.124234 0.0402542 +-0.0236253 0.0450591 -0.0281331 +0.0444641 0.0686626 0.00115575 +-0.0394989 0.0620307 0.0413298 +-0.0489043 0.0531988 0.0353928 +-0.0549375 0.140991 0.0293007 +0.0134789 0.100443 0.0476777 +0.0344381 0.102088 0.0341795 +-0.0629237 0.112473 -0.0138486 +0.0456048 0.0918125 0.0071715 +-0.0679688 0.135528 -0.00836676 +-0.0561131 0.145329 0.0311927 +0.0222077 0.0403059 0.0403109 +-0.0930104 0.131018 0.0202297 +-0.073597 0.161047 -0.0349306 +-0.073142 0.0762988 0.0362199 +-0.0868887 0.102318 0.0233696 +-0.074876 0.107788 -0.00905848 +-0.061968 0.159998 -0.0366167 +0.0234524 0.0505688 0.0407158 +-0.0374809 0.113893 0.0340704 +-0.052457 0.144675 0.0183665 +0.000496502 0.103028 0.0440499 +-0.0107515 0.039289 0.0373765 +0.0177346 0.123618 -0.0052308 +-0.0278908 0.0903405 -0.0316075 +0.0555538 0.0665692 0.0013688 +-0.0679616 0.181138 -0.0572245 +-0.0246921 0.156571 -0.00408158 +-0.0295045 0.112518 0.0356692 +-0.0523224 0.146252 0.0184018 +-0.0831779 0.111548 0.00129095 +0.0381693 0.109765 0.0141664 +-0.0465876 0.132486 0.00741919 +0.0351546 0.112861 0.0227039 +0.00752051 0.0855871 0.0562726 +-0.0236256 0.0464233 -0.0274769 +-0.0820555 0.138062 0.0474469 +-0.0332203 0.171246 -0.00251328 +-0.0471051 0.157621 -0.00763511 +-0.0883909 0.0874867 0.0154625 +-0.0769362 0.0914256 0.0381174 +-0.075265 0.148568 -0.0158698 +0.015355 0.119233 -0.0124997 +-0.0073165 0.13056 0.0112981 +-0.0167502 0.070002 -0.0383082 +-0.0672167 0.147775 -0.0296135 +0.00424945 0.126892 0.0299609 +0.0188897 0.120837 -0.00821554 +-0.0628446 0.0334683 -0.00588606 +0.0333858 0.103442 0.0343819 +-0.0748011 0.0878022 -0.0147955 +0.00250445 0.0519435 0.0530423 +-0.0565994 0.0548437 -0.000400453 +-0.0657591 0.0794867 -0.0178324 +-0.0893947 0.113204 0.00833335 +0.00550466 0.122397 0.0349805 +-0.0593516 0.0471429 0.038917 +-0.0691412 0.109612 0.0381472 +0.012166 0.127075 0.0284779 +0.00215147 0.0340847 -0.0194818 +-0.0357383 0.152143 0.000762654 +-0.0225608 0.0608496 0.0442445 +-0.00675345 0.0727271 -0.0364938 +-0.0504985 0.0776737 0.0437561 +0.012653 0.128571 8.59956e-05 +-0.0775017 0.148428 0.039927 +0.0194833 0.0961991 0.0471957 +-0.00134544 0.0999407 0.0490888 +-0.00745251 0.100521 0.0469096 +0.0293349 0.108769 0.0355782 +-0.0628076 0.0881622 -0.0190458 +0.0438908 0.0973298 0.0041758 +-0.0618594 0.154827 0.00385225 +0.0224603 0.0878572 0.0487762 +-0.0684419 0.0805248 0.0412962 +-0.0414824 0.0817867 0.0423837 +-0.0394972 0.0591632 0.0405173 +-0.0699138 0.0616664 0.0106715 +-0.0256486 0.050648 -0.0266189 +-0.0189668 0.125144 0.0245507 +-0.0548939 0.161294 0.00305835 +0.0593671 0.0566851 0.00917266 +-0.0619624 0.0371632 0.0192279 +-0.0458599 0.129594 0.0221735 +-0.078334 0.175787 -0.0461739 +-0.00822607 0.100046 0.0481626 +-0.0580744 0.136937 -0.00566118 +-0.0915979 0.115467 0.0229868 +0.0255167 0.123738 0.0133816 +-0.0331932 0.0348891 0.047012 +-0.076964 0.129602 -0.00711544 +-0.0598599 0.0358888 0.0454954 +0.0450831 0.0463904 0.0280485 +-0.0315243 0.0802674 0.0412906 +-0.0239631 0.11903 -0.0119726 +-0.0346068 0.0483825 -0.0183276 +-0.0825971 0.103328 -0.00360734 +-0.0887132 0.118572 0.00232339 +-0.0188128 0.082729 -0.0390748 +-0.0866936 0.0833424 0.0154842 +0.00371617 0.0348648 0.0208524 +0.0267042 0.122545 0.0181085 +-0.0738109 0.0935956 -0.0146814 +0.0287557 0.0348074 0.0132587 +-0.0344434 0.174206 -0.0015497 +-0.053794 0.086942 -0.0216962 +-0.0584166 0.126929 0.0401124 +-0.0837712 0.127162 0.0508887 +-0.0249431 0.0907384 -0.0344432 +-0.0817429 0.0748341 0.0165378 +-0.0709721 0.148372 0.0407622 +0.0453179 0.0861686 0.00320477 +-0.052904 0.159748 -0.00276649 +-0.0630387 0.15529 -0.0125891 +-0.0628558 0.170957 -0.0505963 +0.0198342 0.0408002 0.0424386 +0.0114164 0.0403794 -0.0231815 +-0.0270194 0.12568 0.0143315 +-0.0340325 0.126267 0.001455 +-0.0096483 0.171546 -0.0270746 +0.0461889 0.0792428 0.016179 +-0.0314795 0.0774889 0.0410863 +0.00441886 0.0361314 -0.0238164 +0.0140504 0.0379362 -0.0217239 +-0.0064667 0.128955 -0.000718006 +-0.00729042 0.0388645 0.0312728 +-0.0537922 0.14151 -0.001138 +-0.0843649 0.125772 0.0501053 +-0.0489003 0.033496 0.00596365 +-0.00972794 0.166651 -0.0186764 +-0.0537672 0.0812389 -0.0213883 +-0.0327797 0.0337757 0.0180041 +-0.0738907 0.107101 0.0373066 +0.0441357 0.0659575 -7.19207e-05 +-0.0929503 0.128215 0.0122521 +-0.0898716 0.133794 0.0302191 +-0.0643705 0.154697 0.0294695 +0.023375 0.0504685 -0.0225374 +-0.052801 0.0690675 0.0379843 +-0.0823518 0.0966615 0.0320686 +0.00650836 0.0813916 0.0558754 +0.0249135 0.0390596 0.0323329 +0.0422621 0.0746939 -0.00581448 +-0.0239734 0.0636045 0.0427616 +-0.0648684 0.0967433 -0.0176098 +-0.0661842 0.163921 -0.0584969 +-0.0338218 0.0886934 -0.0246941 +-0.0545067 0.102902 0.0418134 +-0.0298032 0.034287 0.0163531 +0.00993007 0.126906 -0.00476687 +-0.0376745 0.0379475 0.0444361 +-0.0658844 0.114191 0.045149 +0.0205436 0.121905 -0.00538746 +-0.0134808 0.108609 0.0426611 +-0.0484883 0.0960313 0.0444485 +-0.0326323 0.125019 -0.000941466 +-0.0254216 0.0999543 -0.0239282 +-0.0410688 0.11258 -0.017122 +-0.0434945 0.0676224 0.0409141 +0.0153651 0.0493118 -0.0259325 +0.00422707 0.0782528 -0.0345112 +0.0285181 0.0968051 -0.0184722 +-0.0597676 0.0796261 -0.0193897 +-0.0714963 0.118989 0.0533881 +-0.0566004 0.0335105 0.0169198 +-0.0880799 0.113511 0.0432934 +-0.0208348 0.0956185 -0.0294009 +-0.010501 0.0759377 0.0571751 +-0.0797391 0.110092 0.0425713 +0.0423965 0.0704871 -0.00480867 +-0.071352 0.110742 0.0439553 +-0.0617103 0.0604885 0.000571471 +-0.000492298 0.0605899 0.0560413 +-0.0819087 0.121685 0.0492514 +0.0133657 0.116504 -0.0155461 +-0.0035043 0.0589584 0.0540181 +-0.0700245 0.0833021 0.0413654 +0.0410401 0.0656705 0.029359 +-0.0623583 0.164673 -0.0485921 +0.027252 0.0549488 0.0409918 +-0.0568093 0.0883611 -0.0215879 +0.0409151 0.0390283 0.00994476 +0.0189976 0.0408013 0.0429893 +0.038497 0.0527286 0.031838 +-0.0436566 0.0592613 -0.0123074 +-0.0456035 0.0504974 -0.010193 +-0.0427107 0.0335694 -0.0203532 +-0.0107484 0.0348144 0.0431359 +0.0366972 0.106807 -0.00382741 +-0.0475 0.109814 0.0383224 +-0.0581584 0.0685383 0.037238 +-0.0888985 0.128369 0.0446279 +-0.0618211 0.164489 -0.0586698 +-0.0622151 0.166391 -0.0605094 +0.000668194 0.039196 0.03081 +-0.0494963 0.0974185 0.0440407 +-0.0327214 0.154341 -0.00788327 +0.00831584 0.0624371 -0.0312473 +-0.0441024 0.124581 0.0229348 +-0.00474585 0.0712867 -0.0359934 +-0.0211964 0.0725528 0.0524066 +0.0440002 0.0888695 -0.00280666 +0.0083541 0.0524293 -0.0297113 +0.0104364 0.0472441 0.0475563 +0.0130443 0.113867 -0.0167218 +0.035717 0.0533288 0.0320909 +-0.0439793 0.169659 0.00035763 +-0.0261771 0.0395393 0.0541115 +0.0142627 0.0751304 -0.0300927 +0.0172008 0.0849074 -0.0286671 +-0.0301348 0.156065 -0.00950629 +0.0153602 0.0672491 0.0520407 +0.038354 0.0547461 -0.00609927 +0.0326073 0.112448 0.0288842 +-0.0230436 0.0879523 0.0537722 +-0.0507107 0.0708743 -0.0151986 +0.00170937 0.0361659 0.0210822 +-0.0106905 0.18126 -0.0286694 +-0.0543257 0.121248 0.0372193 +-0.086895 0.143263 0.0379805 +-0.0300853 0.179019 -0.00589649 +-0.0624495 0.15591 0.022857 +-0.0597659 0.0448149 0.0126042 +0.00226448 0.0346925 0.0189009 +0.00270214 0.10527 -0.0214784 +-0.0843731 0.110309 0.0377873 +-0.0603328 0.153535 0.00105643 +-0.00601124 0.0348376 0.0423067 +-0.0419337 0.160883 0.00416203 +0.025639 0.0740461 0.0458389 +-0.0724467 0.0361675 0.00255211 +-0.0515329 0.0431219 -0.00982617 +-0.0668209 0.036036 0.0339126 +0.0328708 0.0740673 0.0404957 +0.0429413 0.0682748 0.0268013 +-0.0687158 0.171626 -0.0372714 +0.0231488 0.116662 0.0336476 +0.0322304 0.0505255 0.0340589 +-0.0869233 0.112018 0.0232463 +-0.078057 0.0907599 -0.0115869 +-0.0538087 0.119788 0.0361741 +0.00650273 0.121045 0.0359095 +-0.00425882 0.128035 0.0283342 +-0.0558184 0.158024 -0.000144968 +-0.0699106 0.10657 -0.0124287 +0.0101685 0.124401 -0.00806495 +-0.0774125 0.06897 0.0169693 +-0.0204069 0.09844 -0.0243451 +-0.0678094 0.180556 -0.0587896 +-0.0490427 0.0341369 0.0285626 +-0.0112286 0.0338605 -0.0218986 +0.0300773 0.0754873 0.0435133 +0.00030024 0.0612559 -0.033673 +0.000950727 0.129943 0.000110463 +-0.083524 0.154076 0.0213615 +-0.0688604 0.0819375 0.0416515 +-0.0674926 0.0889102 0.043735 +-0.000658033 0.0525337 -0.0307361 +-0.0805064 0.103384 0.0314383 +-0.0596514 0.142474 0.0348633 +-0.00849673 0.105867 0.0437425 +-0.0317522 0.0735748 -0.0285005 +0.0171692 0.0345228 -0.00186568 +-0.0229141 0.111944 -0.0185359 +-0.00375332 0.07411 -0.0361467 +-0.00849121 0.103027 0.0437022 +-0.0323725 0.16532 -0.00484492 +0.0250885 0.119458 -0.00473925 +0.00228893 0.0341509 0.0103163 +0.03989 0.0630598 0.0312004 +-0.0146968 0.175692 -0.019662 +-0.00218576 0.0355897 -0.0160761 +0.0318792 0.0686784 0.0407831 +-0.0783091 0.16249 -0.0249404 +-0.0807007 0.0752735 0.0231846 +-0.00686818 0.0385321 0.0081342 +-0.0114932 0.036278 -0.0256312 +-0.076524 0.178854 -0.050295 +-0.093475 0.1283 0.0242551 +-0.063929 0.0354009 0.0416662 +-0.064733 0.15377 0.0322824 +0.0293628 0.105677 -0.0139766 +-0.0544684 0.119419 -0.0121872 +-0.0878486 0.143233 0.0360974 +-0.0866257 0.081991 0.0115028 +0.0324736 0.0490215 0.0326282 +-0.0472578 0.121113 0.0280085 +0.0275416 0.0349624 0.00541796 +-0.0827616 0.091206 0.0312465 +-0.0627318 0.159944 -0.0435973 +0.0444941 0.0637658 0.0284543 +0.0512305 0.0723962 0.00737259 +-0.0374845 0.100078 0.0419234 +0.00446502 0.0977292 0.050995 +-0.090055 0.132436 0.0352224 +-0.0771832 0.107237 0.0346968 +0.0132863 0.0695708 -0.0313558 +-0.0833513 0.099287 0.0301656 +-0.050588 0.0599426 0.0326193 +-0.0116999 0.0599414 -0.0352829 +-0.0629554 0.156782 -0.0386059 +0.0452979 0.0875774 0.0181674 +0.0367705 0.074074 0.0373409 +-0.0378297 0.12794 0.00447467 +0.000472166 0.0388678 0.0256446 +0.00293826 0.0356401 -0.0151121 +0.0194959 0.11257 0.0373879 +0.0178674 0.103889 -0.0200126 +-0.0197782 0.075693 -0.0390468 +-0.0162539 0.171251 -0.016682 +-0.0719027 0.156807 -0.0389123 +-0.0816716 0.0734987 0.0125379 +0.00248698 0.0399628 0.0461692 +-0.0118767 0.105907 -0.0227385 +-0.0633264 0.159631 -0.0180726 +-0.0147126 0.0384481 0.00298688 +-0.0598094 0.0896854 -0.0200419 +-0.0586861 0.0603162 0.0231261 +-0.0518133 0.0531756 0.0296409 +-0.0201151 0.123178 -0.00639815 +-0.0197736 0.0998405 0.0442778 +-0.00649912 0.118331 0.038456 +-0.0868133 0.0846987 0.0154763 +-0.0052065 0.0389581 0.0316148 +-0.0886495 0.113065 0.0417436 +0.0045077 0.107168 0.0418669 +-0.0635616 0.174109 -0.0525858 +-0.0657828 0.082373 -0.0185031 +0.00281465 0.0379685 -0.0135285 +-0.0863919 0.099468 0.00241821 +0.0544797 0.0539552 0.0258897 +-0.0865727 0.08823 0.0252282 +-0.0778042 0.156927 -0.0169128 +-0.00349196 0.114194 0.0413026 +-0.0523232 0.13528 0.029621 +0.0359531 0.0673443 0.0378699 +0.0103588 0.130588 0.0191927 +0.0383356 0.10264 -0.0058258 +-0.0906686 0.139207 0.0161786 +-0.0534974 0.0876167 0.045276 +-0.0609918 0.138116 0.0346365 +-0.010493 0.114167 0.0405696 +-0.0260866 0.0349169 0.0485155 +-0.0519529 0.0531525 0.0236322 +-0.0670544 0.153567 -0.0495044 +-0.000486159 0.0689333 0.056515 +-0.034827 0.0929417 -0.0239227 +0.0157074 0.0821031 0.0526782 +-0.0185046 0.116829 0.0366774 +-0.0357116 0.0358916 0.0155029 +-0.0711005 0.148774 -0.0369587 +-0.0146296 0.185817 -0.0244743 +-0.0871678 0.11039 0.0183619 +-0.0897192 0.129664 0.0425949 +-0.0278047 0.074956 0.0433932 +-0.0408028 0.033851 -0.0276993 +-0.0260362 0.165356 -0.00798775 +-0.022832 0.0348259 0.0458328 +-0.0327846 0.0346162 0.0403814 +0.0292084 0.0350186 0.0149853 +-0.0908558 0.14471 0.0151666 +-0.0389013 0.0336802 -0.0215651 +-0.00950572 0.0590791 0.0548422 +-0.0252687 0.0931263 -0.0308668 +0.00727173 0.0667978 -0.0321541 +-0.0478216 0.109884 -0.018362 +0.00164525 0.0348132 0.00406568 +0.0377191 0.0632143 0.0350986 +-0.0468821 0.108426 -0.0186436 +0.0252001 0.0818001 -0.0245703 +0.00238035 0.127411 0.0292755 +0.0255053 0.103245 -0.0173339 +0.011492 0.0445292 0.0444785 +0.0458991 0.0414061 0.011234 +-0.0302302 0.0537755 -0.0183734 +-0.0870355 0.111737 0.0342553 +0.0298569 0.0835122 0.0432289 +0.0344154 0.0409101 0.0271225 +0.00697892 0.131225 0.0065571 +0.0443985 0.0748779 -0.000803542 +-0.0703751 0.112557 0.0480687 +0.0398576 0.101362 0.0261824 +-0.0146217 0.0450296 -0.0279689 +0.0305372 0.0592022 0.0405121 +-0.0427308 0.169809 0.000879537 +-0.00260639 0.0419888 -0.0252454 +0.000821596 0.0412233 0.0465397 +0.0447686 0.0889311 -0.000811854 +-0.00992934 0.166943 -0.0180552 +-0.0743075 0.170773 -0.046055 +-0.0564797 0.0356812 -0.0108166 +0.0302902 0.078207 0.0438447 +-0.0601407 0.0410386 0.0173224 +-0.0404944 0.0478337 -0.0126145 +-0.00989846 0.0384846 0.0238656 +-0.0338875 0.0780022 -0.0265044 +-0.0309197 0.0805646 -0.0325792 +-0.0788495 0.1177 0.0505094 +0.00204515 0.0345955 -0.0162029 +-0.0115453 0.0445033 0.0495732 +-0.048476 0.116631 0.0320328 +-0.0121876 0.113225 -0.0179296 +-0.0193167 0.0754023 0.0546877 +-0.0653246 0.0648097 0.0284194 +-0.0417336 0.0739469 -0.0182277 +0.0129121 0.0806948 0.0538726 +-0.087913 0.0900756 0.00446758 +-0.0459794 0.167363 0.00259136 +-0.00407632 0.124795 0.032822 +0.00214512 0.131665 0.0104804 +-0.0242177 0.0387671 0.0542484 +-0.0864391 0.131188 0.0477462 +0.0208043 0.12624 0.020186 +-0.0682771 0.163789 -0.0539724 +-0.0225729 0.172715 -0.0135004 +-0.0434823 0.12913 0.00531313 +-0.0465355 0.0790498 0.0431447 +0.0415243 0.0623608 0.0290336 +0.0206713 0.0868458 -0.0260413 +-0.0616015 0.0614498 -0.00273471 +-0.0698033 0.087974 -0.016854 +0.00908719 0.0358267 -0.00842564 +-0.0333922 0.068118 -0.0184774 +-0.0820819 0.150001 0.0344048 +0.0348029 0.113058 0.00110003 +-0.00477205 0.0345951 0.0445699 +-0.0740526 0.172196 -0.0480444 +-0.0192069 0.125855 0.0229991 +-0.0404977 0.0520197 0.0394004 +-0.0367886 0.156481 -0.0105439 +-0.0531367 0.0490718 0.026657 +0.015473 0.0962531 0.0481291 +-0.0492612 0.115146 -0.0157671 +0.0536465 0.0728799 0.00890065 +-0.0263571 0.0549776 0.0383278 +0.0333229 0.0997779 -0.013667 +-0.0551968 0.138069 -0.00309725 +-0.0563111 0.122698 0.0396267 +-0.02088 0.107273 -0.0222055 +0.000924532 0.100829 -0.0227814 +-0.0907853 0.117276 0.00630342 +-0.0134985 0.11551 0.0389419 +-0.0921826 0.114725 0.0193089 +-0.0218136 0.116051 -0.0148581 +-0.0915139 0.140599 0.0171878 +-0.0723659 0.100858 0.0389128 +-0.0227439 0.0669905 -0.0360641 +0.0133914 0.0448806 -0.0247967 +-0.0334245 0.0346344 0.0419763 +-0.083931 0.103265 0.0277985 +-0.0172469 0.116672 -0.0155678 +0.0141307 0.108667 -0.0183815 +-0.0676215 0.0688155 -0.00772966 +-0.049646 0.138599 0.0173958 +-0.0836562 0.0966099 0.0305537 +-0.0662913 0.165749 -0.0234747 +0.0434836 0.0734019 -0.00279222 +-0.0672802 0.0405919 -0.00423161 +-0.0468922 0.0334761 -0.010008 +-0.00688399 0.107372 -0.022762 +-0.0471129 0.13404 0.0104021 +-0.0613177 0.0470312 0.00669678 +-0.0857102 0.0912822 0.000468321 +-0.0564836 0.0589584 -0.00242578 +-0.0544716 0.0607811 0.0269495 +0.0392359 0.0685928 0.0338195 +-0.0907738 0.125596 0.0437739 +-0.0123469 0.0383491 0.0216787 +-0.00750765 0.123161 -0.01054 +0.0441233 0.0959295 0.00318315 +0.0262791 0.0675449 -0.0231801 +-0.0432671 0.0465873 -0.0113888 +0.00633058 0.0567988 -0.0308016 +-0.0135852 0.123715 -0.00700086 +-0.00140945 0.12836 0.0278943 +-0.0283882 0.0380697 -0.0179434 +0.0478387 0.0734572 0.0126134 +0.0038745 0.0367677 -0.0140867 +-0.05057 0.0335281 0.00739754 +0.036728 0.111857 0.010401 +-0.00844614 0.128164 -0.00189615 +-0.0247501 0.0578943 0.0408638 +-0.0467618 0.0657183 0.0385512 +0.038544 0.0726461 0.034619 +-0.00748755 0.111393 0.0423782 +-0.0658988 0.116581 -0.00961273 +-0.0415297 0.118854 -0.0137293 +-0.062219 0.164671 -0.0505894 +-0.00870995 0.128748 0.0252759 +-0.0315128 0.115295 0.0334421 +0.0503991 0.0466746 0.0233055 +-0.0753594 0.113961 -0.00568407 +-0.0866603 0.10494 0.00737931 +-0.0457163 0.0345386 0.0341935 +-0.0466235 0.0548092 -0.0105711 +-0.0516722 0.0693248 0.037985 +-0.0826957 0.0898386 0.0312187 +-0.0154881 0.0758696 0.0561745 +-0.0518084 0.0913012 -0.0220555 +-0.0751346 0.145812 -0.00886348 +-0.0732189 0.155097 0.0278276 +-0.0127272 0.0348945 -0.0256797 +-0.0698308 0.071946 0.0353261 +-0.0657288 0.163321 -0.0189522 +-0.0464914 0.08757 0.0446532 +0.0296359 0.112746 0.0324848 +0.0275411 0.044881 0.0360262 +-0.0187772 0.186086 -0.0166294 +-0.0884282 0.0874635 0.00747939 +0.0325508 0.115423 -0.000329209 +-0.0410423 0.0336551 0.000178151 +-0.0638018 0.0632948 0.0265284 +-0.0224569 0.0524128 0.0435307 +0.057327 0.0700157 0.00587175 +0.0345611 0.0740948 0.0394254 +-0.0409173 0.0351021 0.0417247 +-0.0742127 0.154103 -0.0229066 +-0.0824094 0.151775 0.0307901 +-0.0803828 0.11899 0.049226 +-0.010458 0.0953808 -0.0330949 +-0.0630414 0.149018 -0.0195802 +-0.0293211 0.123712 0.0208659 +-0.0231795 0.0622145 0.0434152 +-0.0287301 0.172704 -0.00834509 +0.00364827 0.128043 -0.00393793 +-0.0642706 0.166732 -0.060237 +-0.0108397 0.175678 -0.0290324 +0.0244048 0.112688 0.0354614 +-0.047561 0.0361661 -0.0123414 +-0.0534987 0.0427392 0.045857 +-0.0231257 0.165273 -0.0171671 +0.0388181 0.104067 -0.00210374 +-0.0356652 0.156121 -0.0104266 +-0.072524 0.106883 0.0374001 +-0.0331471 0.172636 -0.0149853 +0.040265 0.0391745 0.017119 +-0.0342456 0.0708723 -0.0195447 +-0.0687416 0.11428 0.0497375 +-0.0559525 0.0473442 0.0115659 +-0.0244817 0.107102 0.0411704 +-0.00571075 0.0627939 -0.0354611 +0.00805559 0.124767 0.0327601 +-0.0144892 0.0800879 0.0568709 +-0.0444848 0.0775765 0.0423436 +-0.063261 0.129725 0.0418859 +0.0349031 0.111324 -0.00180439 +0.00654043 0.0954774 -0.0291051 +-0.0290961 0.0410008 0.0527549 +-0.0234218 0.0738847 0.0503501 +-0.0567453 0.0342237 0.02862 +0.0376516 0.0425419 0.0281451 +0.0336732 0.115326 0.0207292 +-0.0174938 0.122238 0.0311921 +-0.073145 0.152886 0.0338966 +0.0392908 0.0660103 -0.00977956 +-0.0671096 0.125666 0.0504247 +-0.0815589 0.10988 0.0387619 +-0.00472043 0.0655745 -0.0349603 +-0.0584923 0.0818911 0.043717 +0.0395145 0.0415874 0.025748 +-0.0134628 0.0989564 0.047529 +-0.086226 0.143316 0.0387173 +-0.0675131 0.145595 0.0418048 +-0.0142233 0.174199 -0.0261217 +-0.0564238 0.0718073 0.0399857 +-0.0748487 0.0664559 0.00653551 +0.0254329 0.0835701 0.0474102 +-0.0735012 0.145587 0.0437725 +-0.0684894 0.104161 0.0391613 +0.046334 0.0533506 -0.00578803 +0.0111342 0.034487 -0.019828 +-0.0362745 0.033679 0.00474125 +-0.0580289 0.129633 -0.0066561 +-0.0674348 0.171149 -0.0382253 +0.0172278 0.0353072 0.0394845 +0.0290523 0.120756 0.00899975 +-0.0788357 0.148682 -0.00186858 +-0.0257486 0.0365571 0.0540093 +-0.076603 0.120411 0.0526033 +-0.0107827 0.0784509 -0.0379132 +-0.0283013 0.0648191 -0.0294785 +-0.0318386 0.0929851 -0.0242124 +-0.0504991 0.156412 0.0101915 +0.0435836 0.0722927 0.0259867 +0.0187342 0.112585 -0.0153321 +-0.0434831 0.0762058 0.0427502 +-0.00415334 0.0367895 0.0481682 +-0.0469304 0.116649 -0.0154073 +-0.0434764 0.0335212 0.0034233 +-0.0527322 0.0723715 -0.0160877 +-0.0593593 0.0651443 0.0328932 +-0.05784 0.0926528 -0.0211082 +-0.07134 0.156839 -0.0007386 +-0.000856246 0.103081 -0.0226647 +-0.000582144 0.0347482 -0.0236897 +-0.0384944 0.0464446 0.0402202 +0.0567142 0.0522491 0.00518691 +-0.0616825 0.0346164 0.0411183 +0.00851655 0.0758606 0.0561295 +0.0196258 0.127091 0.0083394 +-0.0719446 0.159605 -0.0399328 +-0.0356475 0.0379034 -0.0136529 +0.0172444 0.125917 0.0260258 +0.0094903 0.116849 0.0377607 +0.0232634 0.124781 0.0210949 +-0.0349607 0.125018 0.0217662 +0.0185443 0.12732 0.00510228 +0.0118903 0.0349087 0.0279111 +-0.00450764 0.0842735 0.0572857 +-0.0148777 0.0364156 0.0513074 +-0.0861402 0.0859086 0.000475654 +-0.0472303 0.164057 -0.00679428 +0.010042 0.0970288 -0.0247384 +0.0134328 0.0846923 0.0528905 +0.0456558 0.0449086 0.0258493 +-0.00349992 0.0746709 0.0587938 +-0.0719223 0.112846 0.049279 +-0.0117304 0.0670858 -0.0365895 +-0.0107336 0.0670714 -0.0363227 +0.0281295 0.110111 0.0355841 +0.00524969 0.0395071 0.0332712 +-0.030417 0.0360576 0.0517185 +-0.0191865 0.172705 -0.0222871 +0.032634 0.0954843 -0.0150589 +-0.0901468 0.129651 0.0415795 +0.015143 0.0346779 0.0251566 +-0.0926446 0.122835 0.02928 +-0.0735699 0.131215 0.0516643 +-0.0342826 0.126777 0.01609 +0.00752119 0.0813632 0.0555605 +-0.0325031 0.116645 0.0321616 +0.0237641 0.0349876 0.0120857 +-0.0592101 0.142401 0.0336275 +0.0449966 0.0931749 0.00418165 +0.0373285 0.0874946 0.0364747 +0.0175277 0.0348888 -0.0135142 +0.0451983 0.0889806 0.0171667 +0.0123957 0.0434077 -0.0245497 +-0.0759299 0.126701 -0.00794305 +-0.0895421 0.090213 0.0124508 +0.0392717 0.0938049 -0.00924672 +-0.087269 0.112677 0.0244432 +0.0369017 0.0770479 -0.0128074 +-0.019615 0.127443 0.00679651 +-0.058632 0.131139 0.0380532 +-0.0759599 0.0675387 0.00855626 +-0.0867924 0.139107 0.00519652 +-0.051888 0.0528335 0.0130005 +-0.0604943 0.108372 0.0386396 +-0.0620497 0.155563 0.0244621 +-0.0414999 0.0690877 0.0417125 +-0.000194321 0.121911 -0.011267 +0.0260147 0.0563895 0.0427437 +-0.00627779 0.0395112 0.048561 +0.0073902 0.0433817 -0.0245369 +0.00650458 0.105723 0.0419107 +-0.0890324 0.144705 0.01118 +0.0241216 0.0968854 0.045587 +-0.0284948 0.111359 -0.0178892 +-0.0842319 0.104575 0.0266516 +-0.0575865 0.0586919 0.0194779 +-0.0281815 0.125725 0.0109634 +-0.0638193 0.158306 -0.0465978 +-0.0355455 0.11407 -0.0167228 +-0.0683421 0.111385 0.0423299 +-0.0144529 0.178665 -0.0210547 +-0.00977952 0.0372711 0.0498001 +-0.0625714 0.164724 -0.0395894 +-0.088699 0.0915828 0.0224195 +-0.0594754 0.144099 -0.00268098 +-0.0925679 0.116061 0.0213084 +-0.0317212 0.0350332 0.0489115 +-0.0106525 0.165176 -0.016643 +0.00734712 0.12316 -0.0106668 +-0.0554936 0.104327 0.041387 +0.00250176 0.0620246 0.0566613 +-0.00947595 0.130265 0.0133884 +0.0276842 0.0768145 0.0453329 +0.00629218 0.0639808 -0.0323017 +0.00798329 0.130466 0.00265255 +0.0573764 0.0621793 0.0248727 +-0.0628961 0.158419 -0.0175871 +-0.0639761 0.129691 -0.00851425 +-0.0630898 0.161515 -0.0224551 +-0.0838815 0.111187 0.0425305 +0.0464938 0.0778639 0.0121785 +-0.0265128 0.116639 0.0325108 +-0.0545075 0.047347 0.012948 +-0.0677458 0.149084 -0.0355035 +-0.0687437 0.173038 -0.0415702 +-0.0258142 0.0389536 0.0363636 +0.0354622 0.0808406 0.0390375 +-0.028407 0.156859 -0.0100656 +-0.0728523 0.100773 -0.0133449 +-0.000973441 0.0353569 0.0464761 +0.0217031 0.104101 -0.0182402 +-0.0900893 0.135135 0.0242145 +-0.0209098 0.0382599 0.00734769 +-0.0384975 0.0676842 0.0417259 +0.0505086 0.0461176 0.0032623 +-0.0324927 0.0932098 0.0444316 +-0.029469 0.17882 -0.00554327 +-0.0770271 0.0743283 0.0300122 +0.0313581 0.116535 0.0255569 +-0.0772285 0.173502 -0.0405421 +0.0114915 0.130592 0.00962923 +-0.0739058 0.125263 -0.00826143 +-0.0709356 0.0780686 0.0386829 +-0.0450603 0.156487 0.00667449 +-0.00258285 0.0361873 -0.0247048 +-0.00135222 0.101336 0.0444015 +-0.0894746 0.139279 0.0281819 +-0.00967152 0.0968708 -0.0306358 +-0.0704928 0.117562 0.0527864 +-0.0678494 0.155094 0.00351036 +-0.0752747 0.175704 -0.0425921 +-0.032145 0.0863362 -0.0265533 +-0.0345086 0.0775176 0.0416541 +0.0409071 0.0711839 0.0309718 +0.0182107 0.084868 -0.0280483 +0.037986 0.0861315 0.0356473 +-0.0158582 0.107196 -0.0215252 +-0.0536497 0.0382495 -0.0113033 +0.0400088 0.107038 0.00721094 +-0.0111671 0.0867859 -0.0382994 +-0.0758579 0.0963896 -0.0129621 +0.00275941 0.0343655 0.0174794 +-0.0528912 0.109829 -0.018387 +0.0352142 0.037348 0.0177424 +-0.0770086 0.090082 0.0382275 +-0.0537852 0.0344427 0.037794 +-0.0317722 0.0335835 -0.0256749 +-0.0533077 0.12062 -0.0114531 +-0.0670377 0.155239 -0.0519345 +0.0248201 0.0343822 0.00913252 +-0.077345 0.0838842 -0.0115833 +0.0143045 0.0638067 -0.0299257 +-0.00129201 0.123843 -0.0093277 +0.0380905 0.0941294 0.0341306 +-0.0932985 0.125478 0.0122618 +-0.034118 0.163722 -0.0147399 +0.0298704 0.114081 0.0310466 +0.0255132 0.110081 0.0370706 +-0.0476672 0.0405803 -0.0117113 +-0.0472716 0.130968 0.0245047 +-0.0619845 0.128209 -0.0080954 +-0.0644855 0.0917771 0.0443552 +0.00846054 0.0341727 0.000449307 +0.000942621 0.0347668 0.0167534 +-0.0160225 0.0958165 -0.0315688 +-0.0534556 0.0353304 0.0456783 +0.0142349 0.129723 0.0106274 +-0.0726014 0.0365856 0.00586956 +0.033081 0.038417 0.0236373 +-0.0678588 0.128454 0.0493479 +0.0276968 0.0797349 -0.0226793 +0.0317217 0.0639399 -0.0186866 +-0.00482566 0.0896201 -0.0359284 +-0.0704978 0.124601 0.053003 +-0.00149487 0.115594 0.0408235 +-0.0360812 0.0358497 0.0136623 +-0.00514848 0.0385788 0.00662082 +-0.0791696 0.110508 0.0441428 +-0.0215028 0.0448835 0.0530162 +0.0173223 0.0699836 0.0514025 +0.0379734 0.0672941 0.0355158 +-0.0858805 0.0926571 0.00145452 +0.00396412 0.0977772 0.0510597 +-0.0656399 0.11715 0.0490043 +-0.0771179 0.165222 -0.035974 +-0.0198829 0.0383003 0.00206982 +-0.0187849 0.159551 -0.0109781 +-0.0655235 0.0347285 0.0315692 +0.0298088 0.0848631 0.0431899 +-0.0202144 0.186446 -0.0187314 +-0.0737921 0.165213 -0.0399888 +-0.0287531 0.0767493 -0.0350292 +-0.0108764 0.178532 -0.0297831 +0.00248459 0.114158 0.0410016 +0.0523216 0.0588453 -0.00357691 +-0.0424144 0.147803 0.00244515 +-0.0387777 0.0827042 -0.0213153 +-0.0338762 0.105703 -0.0205658 +-0.087924 0.1365 0.0420055 +-0.0747046 0.0837005 -0.0145969 +-0.0657521 0.033742 -0.00672308 +-0.045381 0.0381676 -0.0212668 +-0.0868004 0.0846768 0.00848321 +0.0294149 0.118962 0.0248216 +-0.034174 0.107559 -0.0198979 +0.0280502 0.0740858 0.0440821 +-0.0776167 0.0914005 0.037394 +0.0235133 0.0407023 0.0389233 +-0.0568656 0.102623 -0.018982 +-0.0678684 0.063022 0.000880975 +0.0360361 0.100737 0.0329764 +-0.0922724 0.125575 0.0332589 +-0.0929242 0.120168 0.0332909 +-0.018498 0.108568 0.0416031 +0.0174435 0.128281 0.0160914 +-0.0242219 0.178615 -0.0196227 +-0.0704096 0.163806 -0.0479588 +-0.0810819 0.0814326 -0.00557353 +-0.0595808 0.0380953 -0.00917151 +-0.00023307 0.0988811 0.0510016 +0.00703854 0.0344034 -0.0150394 +-0.092972 0.125468 0.0112596 +-0.00348845 0.115565 0.0406522 +-0.000499736 0.11143 0.0424297 +-0.00349598 0.0562185 0.05401 +0.0274875 0.0380349 0.0264602 +-0.0191507 0.168261 -0.0198644 +-0.0708777 0.131245 0.0502751 +-0.0591241 0.1154 0.0371963 +0.015252 0.122005 -0.00948865 +-0.0238533 0.0958019 -0.0255967 +-0.0225065 0.111294 0.03935 +0.0394335 0.0834241 0.0342316 +-0.0599597 0.121237 0.0413621 +-0.0151227 0.160977 -0.0122661 +-0.0856126 0.0792275 0.0145081 +-0.0304111 0.0336116 -0.02356 +-0.0300276 0.0875944 -0.030572 +-0.0387164 0.0695709 -0.0161311 +-0.0658849 0.153363 -0.0443952 +-0.0108819 0.168382 -0.0176467 +0.0450682 0.090383 0.0171641 +-0.0624967 0.149081 -0.013576 +-0.0222042 0.178612 -0.0212581 +0.0294982 0.120461 0.0105965 +-0.0414977 0.115265 0.0337662 +-0.0499421 0.135837 0.0234945 +-0.0843142 0.152356 0.00793113 +-0.0410616 0.156231 -0.0095971 +-0.0238697 0.104438 -0.0232028 +-0.0067213 0.065597 -0.0353344 +-0.0108037 0.0827117 -0.0384206 +0.0138699 0.049008 0.0461763 +0.016266 0.0750624 -0.0291952 +-0.0813824 0.099165 -0.00657823 +-0.0355882 0.126454 -0.000576513 +-0.0627783 0.0343233 0.0272634 +-0.0864194 0.133874 0.0462429 +-0.0424946 0.0972875 0.0422451 +-0.00875136 0.116762 -0.015718 +-0.00610573 0.035829 0.0485597 +-0.0634859 0.146784 0.0381458 +0.00949393 0.109876 0.0399119 +-0.0286135 0.0817842 -0.0355888 +-0.0785092 0.126003 0.0529555 +-0.0564526 0.0602802 -0.00348733 +-0.0632263 0.153648 -0.0346156 +-0.0212315 0.0839098 0.0563274 +-0.0185478 0.0382321 0.00966598 +-0.0629734 0.126755 -0.00855487 +-0.0607657 0.139716 -0.00595313 +-0.0192289 0.178619 -0.0235673 +-0.0154933 0.0730227 0.0553537 +0.0208153 0.0564412 0.0475406 +-0.0390833 0.0486663 -0.0122287 +-0.065493 0.153273 0.0335324 +0.0608914 0.0637395 0.0141606 +-0.0153829 0.18014 -0.0206255 +-0.0822314 0.0842513 -0.00555381 +-0.0678037 0.0880304 -0.0174902 +0.0361089 0.0577094 0.0344737 +-0.0464121 0.035458 -0.0187253 +-0.0666201 0.0338653 0.00919115 +-0.0674808 0.0688292 0.0332504 +-0.0659293 0.156005 0.0129201 +-0.0294246 0.0861745 0.0444819 +-0.0581309 0.155502 0.017154 +-0.0726537 0.15621 0.0148854 +-0.0168438 0.180138 -0.0192059 +-0.0656741 0.0356447 0.0159226 +0.0163545 0.0507599 -0.025927 +-0.0293383 0.123554 -0.00265044 +0.00679991 0.131589 0.0107583 +-0.0398245 0.0942915 -0.0229995 +-0.0945717 0.122812 0.0182725 +0.00440363 0.0390362 -0.0241943 +-0.0798195 0.105901 -0.00558882 +-0.0117856 0.0813065 -0.0386038 +0.00749342 0.0372096 -0.0118978 +-0.0744971 0.176396 -0.0436946 +-0.00968478 0.0584187 -0.0340646 +0.0312312 0.117425 0.00123717 +0.0184875 0.0976002 0.0470854 +-0.0716235 0.0693585 0.0301698 +0.039816 0.0393083 0.00327619 +-0.0835287 0.11032 0.027366 +-0.0245014 0.043543 0.0534366 +0.0370893 0.106835 -0.00283087 +-0.0567623 0.154944 0.0190948 +-0.0275761 0.125766 0.0126577 +-0.00827698 0.0408222 0.049207 +0.0553826 0.0699889 0.0228528 +0.012476 0.0976634 0.0485624 +0.0597169 0.0580863 0.0181825 +-0.0261346 0.168251 -0.00989215 +-0.0319337 0.0680008 -0.0224492 +-0.0367004 0.0680804 -0.0157124 +-0.0192371 0.0959207 0.0497533 +-0.0482812 0.115062 -0.0157267 +-0.0625405 0.132491 0.039434 +-0.0464975 0.163768 0.00545168 +-0.0809296 0.0885877 0.0337432 +-0.0341216 0.0395911 0.0493113 +0.0322123 0.0856789 -0.0192748 +-0.0822934 0.0775365 0.000511811 +0.00709964 0.0342068 0.00386204 +-0.086438 0.0832915 0.00949498 +-0.0244616 0.0474336 0.050725 +0.00565547 0.0365592 0.0251573 +-0.0274618 0.045988 0.0503593 +0.010522 0.119127 0.036469 +-0.0736141 0.151246 -0.0348888 +-0.024687 0.0892375 0.0511394 +0.00296667 0.0390863 0.0277676 +-0.0494919 0.154959 0.0103413 +-0.058864 0.139321 -0.00549203 +-0.0327877 0.082138 -0.0285334 +-0.0423065 0.150496 -0.00548521 +-0.0631749 0.149 -0.0205832 +-0.0218319 0.0363367 -0.0187811 +-0.0723757 0.0638786 0.0154336 +-0.0358563 0.126885 0.000788129 +0.0192111 0.080597 -0.0276192 +-0.0620809 0.0336347 -0.00771095 +-0.0313625 0.0510794 -0.0143586 +-0.063822 0.115596 0.0429106 +-0.0645614 0.138204 0.0400205 +-0.0824235 0.124446 0.0510342 +0.0555936 0.0567472 0.0257684 +-0.0293723 0.0422984 0.0515712 +0.0526995 0.0702438 0.0035897 +-0.0647148 0.06349 0.0261636 +0.00450679 0.0702611 0.0557926 +-0.0421206 0.171253 -0.0079388 +-0.00823225 0.127328 0.0283641 +0.0085198 0.0716538 0.0557746 +-0.0603515 0.116839 0.0389782 +-0.0758447 0.151365 -0.0158827 +-0.0913489 0.117296 0.00730629 +-0.0787438 0.101744 -0.00857364 +-0.0758718 0.109158 -0.00765228 +0.0141976 0.0850086 -0.0301852 +0.0110282 0.0968851 -0.0245853 +-0.0821235 0.0802564 0.0295192 +-0.0500787 0.154631 -0.00525635 +-0.0278864 0.105837 -0.0222471 +-0.0355149 0.0804148 0.0426568 +0.0156112 0.0519525 0.0469795 +-0.0758417 0.114903 -0.00554375 +-0.00130995 0.124776 -0.00834251 +-0.0285122 0.180211 -0.00692909 +0.0124807 0.0949598 0.0504131 +-0.0679136 0.113718 -0.0102762 +-0.0871543 0.105024 0.0183639 +0.0375648 0.0926236 -0.0120119 +-0.0297787 0.125132 0.0177406 +-0.0253546 0.121816 0.0267508 +0.0463872 0.0806547 0.00917972 +-0.0386145 0.0492284 -0.011639 +-0.0604969 0.0918487 0.0452694 +-0.0754744 0.151328 -0.022882 +0.0184783 0.101734 0.0458501 +-0.0250671 0.0385158 0.031526 +-0.0384759 0.091717 0.0434324 +-0.0394992 0.0916803 0.0429883 +-0.0668335 0.143964 0.0420823 +-0.0653424 0.0629827 0.0247148 +-0.0644392 0.112372 0.0382632 +0.0242087 0.039076 0.0343007 +-0.0535427 0.0402957 -0.0106063 +-0.082326 0.0748249 0.00451639 +-0.0544972 0.0959632 0.0436086 +-0.020823 0.0868434 -0.0377816 +-0.0636947 0.167813 -0.0415938 +-0.0448731 0.128505 0.000263047 +-0.0608825 0.0996865 -0.0185327 +0.0079329 0.0630739 0.055296 +0.00434495 0.0973121 -0.027058 +-0.091323 0.113292 0.0153266 +-0.0074977 0.0801462 0.0578122 +-0.0899881 0.118599 0.00429898 +-0.072593 0.155911 0.00171291 +0.00944326 0.128939 -0.000930002 +-0.0669203 0.110822 0.0381745 +-0.0378406 0.0957387 -0.0228102 +-0.00994641 0.0339021 -0.0251924 +-0.0261195 0.0706905 0.0432458 +0.0285346 0.121033 0.017364 +-0.0702811 0.17421 -0.0421289 +-0.00949024 0.104446 0.0436658 +-0.0877186 0.105023 0.0153645 +0.0487537 0.043125 0.0102298 +-0.0709615 0.148056 -0.0324394 +-0.0785455 0.146115 0.0422588 +-0.0777749 0.150053 -0.00387978 +-0.0747481 0.158885 -0.00783629 +0.022966 0.0347513 0.0194226 +-0.000497806 0.0842866 0.0575088 +0.0329127 0.116986 0.00902312 +0.0303386 0.119339 0.00661655 +0.0335365 0.0483507 0.0312493 +-0.0506321 0.0530807 0.0328365 +-0.0283907 0.123379 0.0211752 +0.043167 0.0831963 -0.0047762 +-0.00976599 0.121876 -0.011136 +-0.0836817 0.0786288 0.0214472 +-0.0584699 0.0344613 0.0385122 +-0.031399 0.116965 -0.0137545 +-0.0679334 0.145349 0.0422649 +0.0355447 0.11347 0.012835 +-0.0343438 0.0384811 -0.00836679 +-0.0303159 0.0678299 -0.0274662 +0.030827 0.0835413 0.0428747 +-0.0367713 0.0871639 -0.0235593 +-0.0249824 0.117062 -0.0139085 +-0.0633873 0.169402 -0.0465883 +-0.0567938 0.0498747 0.00808849 +-0.0719281 0.148635 -0.0350398 +-0.0764024 0.150045 -0.00692327 +-0.085242 0.115675 0.000251725 +0.0352163 0.0367258 0.0146563 +-0.0476332 0.0345872 0.0389835 +-0.0306482 0.0819602 -0.032565 +-0.0258283 0.172717 -0.011167 +-0.0745076 0.115686 0.0517763 +-0.0625234 0.0413191 -0.00677899 +-0.02745 0.110307 -0.0187882 +-0.0444951 0.104328 0.0415155 +-0.0774643 0.155549 -0.0139037 +0.0154943 0.105779 0.0433144 +-0.00688511 0.0982482 0.0516445 +-0.0476227 0.122378 -0.0113753 +-0.0830725 0.139367 0.045586 +-0.0431901 0.039319 -0.0232745 +0.00551778 0.0828244 0.0566316 +-0.0364708 0.152123 0.0014574 +-0.00749897 0.0815283 0.0577578 +-0.0165021 0.118207 0.0361456 +0.013481 0.0358562 0.0436245 +0.0102178 0.0836927 -0.0316174 +0.0514697 0.0462224 0.00523719 +0.0399822 0.0910991 -0.010396 +-0.0510223 0.0339346 0.00874224 +-0.0327803 0.0793117 -0.0285199 +0.0549936 0.0732019 0.0123756 +0.0461994 0.0750316 0.00518987 +0.0371924 0.0391306 0.0220088 +-0.0737191 0.152664 -0.0318934 +-0.0548531 0.149577 0.0276913 +-0.00305215 0.125834 0.0316944 +-0.021742 0.0389771 0.0371835 +0.0252695 0.0532659 -0.021679 +-0.0633235 0.0388939 0.025715 +-0.053898 0.105542 -0.0189379 +-0.0718855 0.122345 -0.00846405 +-0.0334848 0.0561021 0.0379001 +-0.0635384 0.061476 -0.00191873 +0.0137785 0.0346695 0.0230735 +0.0204936 0.1267 0.00866396 +-0.0258672 0.156547 -0.00846874 +-0.089402 0.0996815 0.0144017 +-0.010288 0.172711 -0.0218803 +0.00772266 0.115023 0.0394097 +-0.0363729 0.176071 -0.00683571 +-0.0525546 0.0444744 -0.00849373 +-0.0577063 0.155408 0.0158579 +-0.0512663 0.12652 -0.00563382 +-0.0277699 0.0661915 -0.0304661 +-0.0394907 0.0422995 0.0416287 +-0.0592646 0.0346371 0.0433189 +-0.0917594 0.117442 0.030311 +0.0188028 0.0349604 -0.00569856 +-0.0184644 0.0528818 0.0482087 +-0.0649365 0.1467 -0.0209465 +-0.0397769 0.152293 -0.00702124 +0.056742 0.0696177 0.0218717 +0.0435205 0.0637429 0.0281056 +0.0514429 0.0626408 -0.00275857 +-0.0668197 0.100942 -0.0159632 +-0.078886 0.0812827 -0.00855752 +0.0483563 0.0710513 0.00477309 +-0.0415729 0.151549 -0.00635576 +-0.0122139 0.169818 -0.0178463 +-0.0454996 0.163749 0.00555272 +-0.0779251 0.168693 -0.0322923 +-0.0455017 0.0973341 0.0429686 +-0.0932761 0.122751 0.0112823 +-0.00193792 0.0388572 0.00152241 +0.0379602 0.108292 0.00117706 +0.0447742 0.0777119 -0.00080388 +-0.0365645 0.0341557 0.0276322 +-0.077566 0.155252 0.0102497 +-0.00781043 0.0346187 0.0439246 +0.0218954 0.061892 0.0473866 +0.0229726 0.108506 -0.0149598 +0.0350891 0.111006 -0.00183676 +0.00866181 0.128565 0.0271896 +0.00435977 0.0481043 -0.0288152 +-0.00551112 0.0390255 -0.00865823 +-0.0205328 0.113457 -0.0181494 +-0.0851368 0.0832799 0.0224738 +0.00348766 0.115539 0.0402625 +-0.0174898 0.105786 0.0424611 +-0.087451 0.133828 0.0444349 +0.00492538 0.111581 -0.020193 +0.0318279 0.0713659 0.0407221 +-0.0121811 0.0984293 0.0498089 +-0.0747959 0.149331 0.0394056 +-0.0571923 0.0344404 0.0353306 +0.0154304 0.0417921 -0.0229429 +-0.0481114 0.159106 -0.00699154 +-0.0285 0.0960446 0.0448096 +0.0354946 0.0642547 -0.0137843 +-0.0204882 0.0388257 0.0339872 +0.0353716 0.0741014 0.0388421 +-0.0157653 0.161968 -0.0148041 +0.00551566 0.0799926 0.0558154 +0.0181043 0.128017 0.0106305 +-0.0644854 0.0986987 0.0423063 +-0.0415014 0.0492193 0.0396812 +-0.0900528 0.132428 0.0342227 +-0.0126494 0.0496668 -0.0310907 +-0.0321289 0.0337822 0.0109163 +-0.0625403 0.149101 -0.00657536 +-0.0124899 0.104431 0.0434394 +-0.0728072 0.15012 0.0385587 +-0.0275374 0.156717 -0.00957418 +-0.0627683 0.04307 0.0276693 +0.00651507 0.0344231 0.0163793 +-0.0631947 0.163133 -0.0265887 +-0.0264832 0.105687 0.0411729 +0.0072963 0.0341516 -0.018557 +-0.018657 0.109944 -0.0204332 +-0.0843505 0.0842533 0.0274024 +-0.0531944 0.139931 -0.000456373 +-0.0741436 0.100877 0.037779 +-0.0658548 0.0952898 -0.0176963 +-0.0504071 0.163936 0.00393123 +-0.00384396 0.0384339 0.019723 +-0.0889438 0.137894 0.0261932 +-0.017832 0.0346972 0.047013 +0.0156145 0.128768 0.00543431 +-0.0517309 0.0489114 0.0216412 +-0.0358204 0.046598 -0.0238768 +-0.059344 0.139552 0.0335155 +0.0510761 0.0567889 0.0297952 +-0.0787812 0.166656 -0.0319662 +0.030718 0.111397 0.0323042 +0.0535299 0.049514 0.0226619 +-0.0446433 0.0346533 0.0343218 +-0.0169852 0.186593 -0.0230311 +-0.0743965 0.149892 -0.0310959 +-0.0373231 0.0354917 0.0439186 +-0.000691629 0.100255 0.0478272 +-0.0818959 0.141783 0.000186922 +-0.0304023 0.0382885 -0.00186367 +-0.00349386 0.0925503 0.0560196 +-0.088924 0.151541 0.0211005 +-0.0824519 0.0856305 -0.00554258 +0.0469336 0.0511672 0.030779 +-0.0852791 0.132127 -0.000702015 +-0.0891862 0.112803 0.0347042 +0.0229651 0.0928857 0.047441 +-0.0442655 0.127665 -0.00291939 +-0.0917744 0.132406 0.0242297 +0.00738689 0.0359942 0.0260187 +0.0456627 0.0890114 0.0111648 +-0.0860966 0.11232 0.0268196 +-0.0556879 0.117086 -0.0137514 +0.0093902 0.0739182 0.0557875 +-0.0794167 0.137236 0.0495785 +-0.0893497 0.130881 0.0042394 +-0.0656682 0.0337431 0.00949839 +-0.0263524 0.059005 -0.029433 +0.0104643 0.0346107 -0.00703394 +-0.0631576 0.119928 0.0457283 +0.0423355 0.0972587 0.0241615 +0.0603447 0.0595379 0.00916361 +0.0495034 0.0488243 -0.00166079 +-0.0740753 0.155198 0.0041876 +-0.0656926 0.125639 0.0489587 +-0.00648958 0.0503786 0.0513549 +0.0381951 0.102007 0.0289909 +-0.0592102 0.0595951 0.00211544 +0.0285202 0.0622348 -0.0207982 +-0.0876555 0.144675 0.00917716 +0.0519851 0.0567984 0.0293579 +-0.0300707 0.124739 0.00148409 +-0.0725865 0.0874189 0.0409577 +-0.00281209 0.0882041 -0.0358187 +-0.0637344 0.0736795 -0.0161836 +0.0142616 0.0794232 0.0540604 +0.0458875 0.0787805 0.0205292 +0.0245051 0.0849065 0.0478503 +-0.0617895 0.083881 -0.0194032 +0.0333636 0.0364347 0.0163708 +0.0165102 0.111269 0.0389693 +0.033894 0.111352 0.0280456 +-0.00616098 0.0344967 -0.0177303 +-0.0662325 0.14347 -0.0127636 +-0.0199914 0.0962147 -0.0280142 +-0.0259005 0.126064 0.0117956 +-0.0929641 0.121523 0.0342815 +0.00656148 0.101677 0.0461619 +-0.0600389 0.0627348 0.027804 +0.0335486 0.0889696 0.0416029 +-0.0688127 0.0908552 -0.0166124 +-0.0856608 0.0854539 0.0244177 +-0.0759458 0.0974591 -0.0125133 +-0.0667171 0.171901 -0.0422833 +-0.0191016 0.0431933 0.0528315 +-0.0589426 0.0357407 0.0458703 +0.013481 0.127543 -0.00145794 +-0.0239185 0.0383353 -0.00428996 +-0.0627701 0.0824471 -0.0192325 +-0.0614696 0.136692 0.0357094 +-0.0810116 0.0734375 0.0175497 +-0.0759173 0.12523 -0.00781198 +-0.00824401 0.0384507 0.0170014 +-0.0641628 0.157463 -0.0125984 +-0.0178575 0.122517 -0.00769635 +-0.0596856 0.0659756 -0.00895149 +-0.0807952 0.106052 0.0302403 +0.0156574 0.0925729 -0.0260099 +-0.081817 0.0734713 0.00853447 +-0.052947 0.1293 -0.00466978 +0.0313864 0.0929268 0.0420114 +-0.0242749 0.174204 -0.0124276 +-0.0678958 0.0610238 0.00808464 +-0.0477867 0.135371 0.0169352 +-0.0514248 0.0500855 0.0140283 +0.0463863 0.075041 0.00619921 +-0.0120829 0.121468 -0.0106691 +0.0474936 0.0651497 0.0284001 +-0.0370341 0.127886 0.0121304 +-0.0240288 0.0385625 0.0316972 +0.0484803 0.0651161 -0.0012457 +-0.0516556 0.0569841 0.0295138 +-0.0639861 0.131146 -0.00837414 +-0.0504965 0.087636 0.0455301 +0.03603 0.0808066 0.0380541 +-0.0869174 0.117103 0.00125292 +-0.0617229 0.155313 -0.01958 +-0.0631289 0.15403 -0.0107687 +0.00528045 0.114267 -0.0191116 +-0.0639453 0.167747 -0.0398404 +0.0288613 0.0520696 0.0379853 +-0.0623548 0.166257 -0.0465894 +0.000543528 0.123331 0.0344653 +0.0375704 0.0618629 0.0348997 +-0.0391935 0.128299 0.00543562 +-0.0593991 0.0472653 0.0079341 +-0.0244003 0.0390404 0.0383653 +-0.0676508 0.0338326 0.0090061 +-0.0292136 0.07193 -0.032514 +-0.0374976 0.0861098 0.0439188 +0.0247244 0.0549721 0.0426251 +-0.0892169 0.151457 0.0141575 +-0.02429 0.121354 -0.00839434 +-0.0618416 0.098205 -0.0180486 +-0.0320742 0.0383234 -0.000421092 +-0.0488761 0.107007 -0.0192731 +-0.0476462 0.123357 -0.010393 +0.0220922 0.12286 0.0278182 +-0.00150357 0.0647954 0.0567431 +0.000502823 0.0870298 0.0569751 +-0.0581295 0.0643065 0.0321224 +-0.0188005 0.0568615 0.0490899 +-0.0794271 0.0732336 0.00151817 +0.019219 0.0848258 -0.027423 +-0.0344972 0.116614 0.0320154 +0.000192029 0.0811649 -0.0359709 +-0.0741702 0.0968478 0.0394202 +0.00621596 0.083814 -0.033411 +-0.0671177 0.159814 -0.0107973 +-0.0187526 0.0641914 -0.0363857 +0.0556876 0.0493473 0.0181935 +-0.0364983 0.059104 0.0398977 +-0.071802 0.181053 -0.0556554 +-0.0116602 0.168404 -0.0170453 +-0.0478952 0.0713156 0.0406183 +0.0354015 0.0476244 -0.00628637 +-0.0262003 0.0750789 0.0460261 +-0.0550327 0.0674609 0.0370807 +-0.0565425 0.0415574 -0.00871771 +-0.0546448 0.115434 0.0349037 +-0.0682182 0.15577 -0.00101225 +-0.066899 0.132617 0.0454244 +-0.0743656 0.172848 -0.0365047 +-0.0734703 0.155395 0.00293075 +-0.0125152 0.0589286 0.0534547 +0.00233104 0.0554199 -0.0313859 +-0.0805618 0.101855 -0.00659893 +-0.0537592 0.0797599 -0.020636 +-0.0237797 0.125538 0.0184413 +-0.0508814 0.161419 0.0066624 +-0.0742588 0.0655235 0.0100016 +0.0457502 0.0805926 0.00319942 +-0.0764848 0.142819 0.0460732 +-0.0442438 0.113637 -0.0162318 +-0.00550074 0.0870334 0.0571343 +-0.059876 0.0997119 -0.0187764 +-0.069062 0.149033 -0.0371338 +-0.0598711 0.154188 0.0296083 +-0.044481 0.0973337 0.0428134 +0.0255359 0.118038 0.0305151 +-0.000498881 0.112805 0.0421187 +-0.073083 0.0981963 0.0397086 +-0.0766217 0.068534 0.0175211 +-0.038773 0.11398 -0.0166127 +0.0194763 0.0837958 0.0507486 +-0.0809353 0.145916 -0.000819165 +0.0301953 0.0476864 0.0346108 +-0.0284906 0.0932063 0.0444855 +-0.071967 0.162417 -0.0419522 +-0.0647895 0.0838376 -0.0190209 +-0.00994817 0.0389455 -0.0113423 +0.00268547 0.035256 0.0455248 +-0.0587181 0.0481161 0.00163754 +-0.0537032 0.140954 0.0276054 +-0.0166811 0.0377146 -0.0171581 +-0.0896263 0.0969991 0.0154111 +-0.0475653 0.166962 -0.00492463 +-0.0684985 0.0986495 0.0414678 +0.0399619 0.0730961 -0.00981181 +-0.0433911 0.121364 -0.0123522 +-0.0619851 0.167813 -0.0525933 +-0.0768904 0.0733563 0.0291265 +-0.058879 0.104045 -0.0185386 +-0.0154965 0.0573571 0.0513792 +-0.0115598 0.09531 -0.0330219 +-0.0335104 0.125389 -0.00127044 +0.0292004 0.119729 0.0233163 +-0.0141909 0.171251 -0.024451 +0.00225805 0.0711729 -0.0343766 +0.000838494 0.130009 0.0243594 +-0.0186635 0.0360947 0.0525267 +0.0441946 0.0874765 -0.00278813 +-0.0347028 0.122731 -0.00776716 +-0.0478246 0.129609 0.027299 +-0.0784918 0.144814 0.0436628 +0.020477 0.0989516 0.0463466 +-0.0870404 0.113136 0.0295379 +0.012093 0.120504 0.0352323 +0.00825492 0.0739666 -0.0336091 +0.00112807 0.104475 -0.0219821 +-0.0142621 0.120334 -0.0114431 +-0.0507965 0.0345143 0.033135 +0.0311896 0.0857114 -0.0197343 +-0.0894234 0.0956355 0.01542 +-0.0775093 0.0961888 -0.0115304 +-0.0358262 0.0929298 -0.0238031 +-0.0774962 0.131676 0.0527303 +-0.0421326 0.160667 -0.0107094 +-0.0276983 0.125752 0.00966815 +-0.045336 0.129618 0.020889 +-0.00368188 0.0613041 -0.0346439 +-0.0748644 0.171601 -0.033829 +-0.0207882 0.0770942 -0.0390427 +-0.044533 0.160785 0.0064482 +-0.0789135 0.0799145 -0.00757704 +-0.0700794 0.154941 0.0289273 +-0.0313268 0.0609036 -0.0184352 +-0.0853384 0.107683 0.0213404 +-0.0624789 0.152144 -0.0275875 +-0.0427656 0.0797392 -0.0197597 +0.00722196 0.0865913 -0.0328221 +-0.0720619 0.109399 0.0395074 +-0.0911632 0.132299 0.00922827 +-0.00610552 0.129863 0.0232869 +0.02524 0.115374 0.03316 +0.00541955 0.0912903 -0.0327619 +0.00896308 0.0344141 -0.00340754 +-0.0356782 0.0636593 -0.0138055 +-0.0555057 0.153886 0.023914 +0.0207355 0.0349558 0.0059225 +0.0360179 0.0848402 0.038086 +-0.0488433 0.098515 -0.0220378 +-0.0633934 0.178218 -0.0607118 +-0.0846638 0.0778105 0.0155166 +0.0437393 0.0720229 -0.000789276 +-0.0288953 0.122588 -0.00566495 +-0.025973 0.0851197 0.051146 +-0.0782416 0.0913778 0.0366028 +-0.0494978 0.0960237 0.0444817 +-0.0785831 0.0731535 -0.00247436 +-0.0698391 0.165209 -0.0499791 +-0.0586839 0.0335669 0.00570948 +-0.0610591 0.155387 0.024814 +-0.0642828 0.163385 -0.0227384 +-0.0658667 0.0334936 -0.00108817 +0.037341 0.0888457 0.0365275 +0.02301 0.0347163 0.00286296 +-0.0590207 0.126708 -0.0075139 +0.0463679 0.0792556 0.0081871 +-0.00960203 0.0406207 -0.0262166 +-0.0771598 0.160359 -0.0157997 +-0.0425011 0.163766 0.00491011 +-0.00971544 0.177216 -0.0294611 +0.021747 0.102101 0.0439088 +-0.087802 0.139216 0.0403868 +-0.0694557 0.0421945 0.00370163 +0.0173244 0.0580274 -0.0281164 +-0.011686 0.178646 -0.0240587 +-0.0245154 0.158144 -0.00224812 +0.021637 0.0948486 -0.0224193 +0.00951901 0.0504027 0.0504431 +-0.0252093 0.112572 -0.0171753 +-0.0736758 0.108402 0.0380105 +-0.0551152 0.0341599 0.0272668 +-0.0462814 0.155049 0.00841735 +-0.0164865 0.0730277 0.0553332 +-0.0853981 0.109039 0.0213496 +-0.0817879 0.0734817 0.0075372 +-0.0543644 0.15733 0.00977334 +-0.0391365 0.0406682 0.0418102 +0.00445432 0.130749 0.00275136 +0.0247455 0.105845 -0.0161092 +-0.0554962 0.0904299 0.0451691 +-0.00849692 0.0731924 0.0575239 +-0.0665361 0.11864 0.0512424 +-0.0771905 0.152834 -0.00389169 +-0.0684956 0.0958684 0.0422138 +-0.086559 0.0806364 0.0135028 +-0.065258 0.156162 0.0146042 +-0.0134788 0.105828 0.0432751 +-0.00273284 0.0712345 -0.035418 +0.0276777 0.0972525 -0.0189451 +-0.0768441 0.113421 -0.00459179 +-0.0291819 0.174148 -0.0171874 +-0.0392913 0.0344977 0.0373408 +-0.00249868 0.0965524 0.0536599 +-0.026518 0.10985 0.0386071 +-0.0272212 0.114809 -0.0155223 +-0.0617195 0.0669875 0.0343055 +-0.0824261 0.101938 -0.00456304 +-0.0889571 0.0955775 0.00843273 +-0.0288529 0.100117 -0.0233232 +-0.0899265 0.130893 0.00523191 +-0.0346189 0.112824 -0.0174204 +-0.0154754 0.111334 0.0410203 +-0.053649 0.0335392 -0.00958395 +-0.000215874 0.126274 0.0312521 +0.00810763 0.0366956 0.0273459 +-0.0915032 0.133721 0.0182157 +0.0193574 0.0537071 -0.027254 +-0.0617049 0.070743 -0.0146345 +-0.0745149 0.121791 0.0533186 +-0.070524 0.0682803 0.0295828 +-0.0206697 0.0697068 0.051972 +-0.0918785 0.141976 0.0181723 +-0.0408421 0.0345979 0.00840679 +-0.0738542 0.15551 0.00718209 +0.0055205 0.0427186 0.0455303 +-0.065431 0.168513 -0.0346313 +0.0194077 0.0659 0.0490938 +-0.0485039 0.0876217 0.0453743 +-0.0622817 0.0458517 0.0346831 +0.0349983 0.0362655 0.0094693 +-0.0912374 0.140583 0.0161703 +-0.0884146 0.113764 0.0250911 +0.0142472 0.0860448 0.0523279 +-0.0131413 0.127389 -0.000900164 +0.0289187 0.0580129 -0.0187889 +0.00423189 0.0768627 -0.0347545 +0.0204663 0.0385832 -0.00969847 +-0.0217971 0.0348633 0.0460203 +-0.0864575 0.101794 0.0247295 +0.00132582 0.0568889 -0.0321653 +-0.0697484 0.0793376 -0.0160307 +-0.0845391 0.102087 -0.000621587 +-0.0733924 0.0656461 0.018954 +-0.0391909 0.0342717 0.0287528 +-0.065551 0.112475 0.040245 +-0.0628947 0.161497 -0.0505862 +-0.0455612 0.125305 -0.00846085 +0.0204165 0.110729 -0.0153427 +-0.0119941 0.16759 -0.0225943 +-0.0778434 0.153328 0.00140062 +-0.0743032 0.152688 -0.027892 +-0.0719627 0.134048 -0.00796724 +-0.0322554 0.0722092 -0.0264952 +-0.0689145 0.123836 -0.00886831 +-0.0292201 0.0564848 -0.022383 +-0.0336564 0.0343441 0.0369141 +0.0587559 0.0579922 0.0215357 +0.0331644 0.1138 0.0262385 +0.0155789 0.125536 -0.0032763 +-0.0511913 0.034459 0.0313456 +0.0336899 0.0357287 0.00969367 +0.0540437 0.0734433 0.0120297 +-0.0588961 0.106893 -0.0176578 +-0.0158316 0.18484 -0.0207268 +0.0120317 0.0342138 -0.0138856 +0.0335354 0.0380053 0.0222769 +-0.0118847 0.117889 -0.0148923 +0.00991822 0.0342953 -0.00310719 +0.00806259 0.0342288 -0.0204182 +-0.00962665 0.0384388 0.00947704 +-0.00349166 0.0534503 0.0541192 +0.0248931 0.108132 -0.0145556 +-0.0355172 0.106999 0.038376 +0.0298839 0.118971 0.0235707 +-0.0896201 0.0969823 0.0124196 +0.00795856 0.126912 0.0298215 +-0.0734288 0.149863 -0.0358672 +-0.0513643 0.132495 0.031006 +-0.056967 0.0535025 0.000612409 +-0.0226813 0.0349023 0.0509736 +0.0573538 0.0634191 0.00214341 +-0.0178849 0.0387376 -0.0108688 +-0.0690262 0.170476 -0.0316587 +-0.0162544 0.183109 -0.0200888 +-0.0569078 0.052097 -0.000371255 +-0.0845703 0.11062 0.0357089 +0.035496 0.0454077 0.0303438 +-0.00267498 0.100539 0.0471075 +-0.080721 0.0845507 0.0336553 +-0.0900133 0.150126 0.0131697 +-0.0628916 0.0631016 0.0268901 +-0.0739067 0.163816 -0.0379732 +-0.0313311 0.0487062 0.0434625 +-0.036476 0.0533606 0.0387027 +-0.0636484 0.15559 0.00937973 +0.0135801 0.0874029 0.0531363 +-0.0259964 0.0967524 -0.0245741 +-0.0665286 0.168031 -0.0580342 +-0.0794099 0.141428 0.0463829 +-0.0496093 0.0334738 -0.00871292 +0.0373859 0.082128 0.0365587 +-0.00650329 0.0547609 0.0534371 +0.0253836 0.0503366 -0.0210264 +-0.00332845 0.128773 0.0271941 +0.0363318 0.0601344 -0.0117401 +-0.0258635 0.103016 -0.0235702 +-0.0251408 0.168241 -0.0184358 +0.018845 0.0956057 -0.0232473 +-0.0712372 0.167165 -0.0209901 +-0.0759412 0.151358 -0.0178788 +-0.0784019 0.152013 0.0336008 +0.000968412 0.0391138 -0.00557511 +-0.0865136 0.106289 0.0083757 +-0.0623969 0.0335761 0.00673913 +-0.0769787 0.135423 -0.00568624 +0.021851 0.0591836 0.0473037 +-0.0524335 0.115217 0.0341034 +-0.0884925 0.144689 0.01017 +-0.0774954 0.147028 0.0416906 +0.00429953 0.0340852 0.0162355 +-0.0489061 0.0346101 0.0421693 +-0.0377668 0.0812615 -0.0209367 +-0.0321125 0.0496937 -0.0183514 +-0.00333701 0.121977 -0.0113118 +-0.063853 0.129717 0.0428324 +0.0122687 0.0724051 -0.0314733 +-0.0295052 0.113904 0.0347936 +0.0428284 0.0676747 -0.00179274 +-0.0665096 0.0944832 0.0425185 +-0.0324964 0.117987 0.0309791 +-0.0240568 0.0972281 0.0446316 +-0.0729302 0.128204 -0.00868672 +-0.0930613 0.118852 0.0392987 +-0.0179932 0.0940702 -0.0337993 +-0.0276364 0.0917699 -0.0296042 +0.0270825 0.114018 -0.00875387 +-0.0701334 0.160982 -0.047936 +0.0160414 0.0343167 -0.00190332 +-0.0407181 0.0336157 0.00208844 +0.0537368 0.0581963 0.0283843 +0.0459393 0.0792136 0.00418579 +0.00219887 0.0866713 -0.0341557 +-0.0874475 0.125307 -0.000719081 +0.0171658 0.0974165 -0.0229214 +-0.0555243 0.0344634 0.0339194 +0.00337546 0.131746 0.0137901 +-0.037361 0.155079 0.00374727 +-0.00966712 0.0394179 0.0374824 +0.0401633 0.102703 -0.00178896 +-0.0792807 0.167978 -0.037009 +0.0137845 0.0344 -0.00993851 +-0.0224906 0.034851 -0.0281799 +-0.0815485 0.124491 0.0516101 +0.0440694 0.0973609 0.0121636 +-0.0361101 0.0351289 -0.0167641 +-0.0672139 0.168667 -0.0295504 +0.00726635 0.0696573 -0.0326992 +-0.0474987 0.0987688 0.0431343 +-0.0879643 0.115809 0.00328051 +0.0212116 0.083355 -0.0266295 +-0.0413155 0.0345032 0.0369079 +-0.0830031 0.148729 0.00315098 +-0.0365029 0.0818729 0.0434567 +-0.0265303 0.0632322 0.0390504 +0.0560084 0.0549549 0.0021707 +-0.00162661 0.100486 0.0474782 +-0.00782745 0.0882395 -0.0367822 +-0.0874416 0.113109 0.00532366 +-0.0755108 0.126011 0.0529241 +0.0317406 0.107408 0.0337947 +-0.0280888 0.121741 0.0242898 +-0.0114519 0.126605 -0.00415103 +-0.00942316 0.129915 0.019193 +0.0305901 0.117314 -0.000462026 +-0.00449008 0.116939 0.0397737 +-0.0174829 0.0365879 0.0522725 +-0.0480399 0.136313 0.0145941 +0.0078895 0.0386539 0.0453509 +-0.059976 0.125502 0.0413668 +0.00922467 0.131237 0.0102208 +-0.0164537 0.0924837 0.0552632 +-0.0397063 0.0680709 -0.01554 +0.0144891 0.0990552 0.047648 +-0.0194892 0.0771957 0.0553527 +0.00314961 0.0344334 0.00286196 +0.0322227 0.0828447 -0.0192606 +-0.086166 0.115735 0.00128445 +-0.0628659 0.161473 -0.0525859 +-0.0897633 0.133813 0.0392039 +-0.0931113 0.126933 0.0272608 +0.0442448 0.0902943 -0.00180307 +0.0383075 0.041189 0.0258499 +-0.038679 0.0636652 -0.0136088 +-0.0640888 0.165507 -0.029848 +0.00695321 0.13108 0.0193768 +-0.0281007 0.162292 -0.0150733 +0.0192374 0.0749637 -0.0278698 +0.0244608 0.0941673 -0.021671 +0.0131476 0.100265 -0.0227775 +-0.0301385 0.166718 -0.0165418 +-0.0651412 0.159482 -0.0565006 +0.0342867 0.0700233 0.0389954 +-0.0695171 0.141232 -0.00845814 +-0.0904292 0.148866 0.0241237 +-0.0253439 0.0693349 0.0439513 +-0.0623474 0.166249 -0.0485903 +-0.0193027 0.0445534 0.0525624 +-0.0258791 0.105846 -0.022482 +-0.0331634 0.0381954 -0.000525199 +-0.0640739 0.0617863 -0.0011495 +0.0413993 0.0942972 -0.00577735 +-0.030183 0.155051 -0.00785968 +-0.0209835 0.159643 -0.00415092 +0.0227131 0.118044 0.0330191 +-0.0268485 0.124528 0.000469072 +-0.0241773 0.17417 -0.0202285 +-0.012912 0.0339283 -0.0204101 +0.0235417 0.109895 0.0378397 +-0.0800641 0.107437 0.0308747 +-0.0374695 0.0383458 -0.0088734 +0.0372523 0.0646113 0.0362056 +-0.0324907 0.0817336 0.0416408 +0.0138217 0.125251 -0.00497301 +-0.0427639 0.126553 -0.0057736 +-0.0467249 0.0753156 -0.0175399 +-0.0861037 0.109061 0.0193453 +0.0206619 0.0348672 0.0224824 +-0.0804996 0.127434 0.052885 +0.00919876 0.0964636 -0.0261302 +-0.0321423 0.0806683 -0.0305334 +0.0242996 0.120934 0.0286395 +-0.0429021 0.171269 -0.00696466 +0.0145253 0.126603 0.0278836 +-0.0657391 0.142564 -0.0101503 +-0.0125598 0.0943837 -0.0340846 +-0.0809608 0.0720856 0.0135459 +-0.0230054 0.0386784 -0.0118395 +-0.0234022 0.157317 -0.0083471 +-0.0700956 0.06197 0.00856658 +0.0361469 0.0875521 0.038321 +-0.00703497 0.101085 0.0445106 +-0.0217097 0.181473 -0.0209735 +-0.0310875 0.179405 -0.00921261 +0.00340822 0.117733 -0.0168392 +-0.0306641 0.062253 -0.0214244 +-0.00851812 0.0604987 0.0555487 +-0.0105044 0.0745085 0.0567054 +-0.00265316 0.0511482 -0.0311061 +-0.0764634 0.157616 -0.00941011 +-0.0224335 0.0371726 0.0541058 +-0.0432016 0.171084 -0.00202068 +-0.0523174 0.057382 0.0266177 +0.0595665 0.0566863 0.0161765 +0.00171621 0.126464 -0.00619605 +-0.0635036 0.095949 0.0432601 +-0.00748541 0.0856517 0.0572176 +-0.0142172 0.114376 -0.0171381 +-0.0106623 0.0511436 -0.032067 +-0.0292482 0.0345559 -0.0204636 +-0.0369573 0.0340894 0.0258321 +-0.0544756 0.0413314 0.0465715 +-0.0940023 0.125512 0.016258 +-0.0685195 0.0916417 0.0424016 +-0.076491 0.140037 0.0480957 +-0.021763 0.159801 -0.0034487 +0.0107652 0.110575 -0.0191667 +-0.0296434 0.0486725 0.0446006 +0.0205709 0.0463131 0.0417824 +0.0371829 0.0726727 0.036151 +0.00170794 0.1258 0.0319097 +0.00812607 0.108726 -0.0199063 +-0.088847 0.0874807 0.0104655 +-0.0614823 0.0761372 0.0417782 +-0.077632 0.077285 -0.00766199 +-0.0914347 0.132413 0.0262297 +-0.0380759 0.16073 -0.01276 +-0.0580841 0.132712 -0.00634758 +-0.00546375 0.117984 -0.0150376 +-0.0825526 0.110518 0.0415894 +-0.0567945 0.0589511 -0.00142935 +-0.00849356 0.0842936 0.0575382 +-0.0464941 0.0987388 0.0427545 +0.0199235 0.0365522 0.038924 +-0.0181358 0.159669 -0.00704365 +0.0214919 0.0906421 0.0482356 +-0.0308996 0.107699 -0.0200324 +0.0310327 0.118783 0.0168832 +-0.049761 0.069112 0.038562 +-0.0388211 0.091456 -0.0235256 +-0.0139638 0.180133 -0.0220777 +0.0153381 0.127037 -0.000904662 +-0.0219975 0.107603 -0.0219593 +-0.0448317 0.0927682 -0.0220335 +-0.0127292 0.0909963 -0.036642 +0.0174939 0.0350076 -0.00788091 +-0.016176 0.165587 -0.0188354 +0.0276821 0.0862408 0.0453967 +-0.00121407 0.102594 0.0440764 +-0.0167645 0.162218 -0.0151135 +-0.0446938 0.0665983 -0.0153032 +-0.0709583 0.135514 -0.00804855 +0.0152869 0.0794603 0.0538116 +-0.028039 0.0849631 0.0475609 +-0.0252122 0.108563 -0.020971 +-0.0501485 0.141642 0.00337658 +-0.0802229 0.143442 0.044034 +-0.0728736 0.0659781 0.0205309 +-0.083982 0.134868 -0.000717316 +-0.070349 0.172644 -0.037875 +-0.015485 0.0673895 0.0543529 +-0.0374989 0.108379 0.0375203 +0.0194281 0.0399108 -0.0177171 +-0.0508059 0.0898498 -0.0218327 +-0.0916067 0.130926 0.00923792 +-0.0657827 0.158229 -0.0103034 +0.00352818 0.0386899 -0.0121702 +-0.0147383 0.10835 -0.0207588 +-0.0496313 0.111407 -0.0178803 +-0.0413837 0.128875 0.00906534 +-0.0523163 0.134709 -0.00240246 +0.00961512 0.122501 0.0348066 +-0.0755017 0.140041 0.0481 +-0.0678883 0.145704 -0.022127 +-0.0230319 0.0374462 0.0541561 +-0.00425848 0.0961384 -0.0318255 +-0.0895594 0.135155 0.0312102 +-0.0623104 0.0594537 0.00702264 +0.00422975 0.0796448 -0.0342885 +-0.0618471 0.153751 -0.0215773 +-0.00905798 0.034739 0.0470958 +-0.0575286 0.126935 0.0396404 +-0.0298496 0.180049 -0.0116061 +-0.0317613 0.0567558 -0.0133876 +-0.0839019 0.105911 0.0262878 +-0.0715304 0.102729 0.03849 +0.0144241 0.127312 -0.00121761 +-0.0787914 0.14589 -0.00282549 +-0.00925999 0.0421824 0.0495336 +-0.0284001 0.0385729 0.034376 +-0.0690967 0.148938 0.0398784 +-0.0561651 0.153258 0.0280528 +0.0408211 0.10424 0.0171662 +0.0569661 0.0701435 0.00568959 +-0.0318479 0.09723 -0.023215 +0.00233723 0.0391647 0.0293747 +-0.0839319 0.117006 0.0485566 +-0.0310508 0.0693178 -0.0264576 +-0.0270974 0.0794315 0.0481933 +-0.00975454 0.0728065 -0.0376393 +-0.0907216 0.131054 0.0332303 +-0.00149823 0.0535022 0.0547476 +-0.0920442 0.126938 0.0322524 +-0.049095 0.140149 0.0113941 +-0.0605441 0.113772 -0.0142303 +-0.00976932 0.0756525 -0.0380331 +-0.0878532 0.127045 0.0464651 +-0.010533 0.178644 -0.025906 +0.0593699 0.0691831 0.0171767 +-0.024781 0.0769658 -0.0376048 +0.0423711 0.0575006 -0.00528711 +0.0460928 0.061454 -0.00359733 +-0.0408554 0.101386 -0.0212924 +-0.0446853 0.169846 -0.00596698 +-0.0499657 0.0572278 0.0334797 +-0.0145604 0.127706 0.0231688 +-0.0624931 0.153672 -0.0316068 +0.0559752 0.0635544 0.0263749 +-0.0741944 0.0678888 0.022137 +0.0128784 0.0534523 0.0500797 +-0.014497 0.082865 0.0570346 +0.0100519 0.0351376 0.0435561 +-0.0764979 0.135856 0.0507679 +-0.0505672 0.0545537 0.0173366 +-0.073291 0.0682485 0.025526 +0.0168973 0.0504721 0.0453108 +0.0597511 0.0567143 0.0111681 +0.00962081 0.119433 -0.0146957 +-0.0261763 0.0931476 0.0454624 +-0.0034975 0.0661744 0.0565538 +-0.0174573 0.0601724 0.0514531 +0.0587589 0.059387 0.00417226 +-0.0388249 0.122181 0.0278208 +-0.0685252 0.175096 -0.0570393 +-0.0628061 0.0896011 -0.0190246 +0.0306772 0.118704 0.0210209 +-0.0655003 0.083298 0.0438708 +0.0560223 0.0713695 0.00682475 +-0.0298518 0.100096 -0.0230635 +-0.0422245 0.148296 -0.00246029 +-0.00149333 0.112805 0.0421166 +-0.0829153 0.0925695 0.0313446 +-0.0394018 0.0468721 -0.0179145 +-0.0784825 0.135851 0.0506454 +-0.0734876 0.127439 0.0525898 +-0.0280931 0.033441 -0.0266965 +0.0607571 0.0609589 0.0141669 +-0.0692316 0.172989 -0.0403442 +-0.0397906 0.162354 0.00198884 +-0.0505067 0.0805184 0.044061 +-0.0716519 0.156794 -0.0409079 +0.0407885 0.10564 0.00816522 +-0.00717727 0.0999816 0.0485274 +-0.0646289 0.156694 -0.0465976 +-0.089623 0.0983355 0.0134109 +0.00279805 0.0339767 -0.0211497 +-0.0142152 0.17272 -0.0253585 +-0.0396036 0.174135 -0.00601981 +-0.0669938 0.0358141 0.0313063 +-0.0497731 0.0627792 0.0345527 +0.0229897 0.121378 0.0295865 +-0.0457551 0.0336493 -0.0154708 +-0.0539285 0.152376 0.0223916 +-0.0664975 0.108359 0.0380432 +0.0293811 0.04325 -0.00550019 +-0.0166832 0.0525719 -0.0322771 +0.0164877 0.105762 0.0431793 +-0.0171637 0.0956465 -0.0313986 +-0.0314959 0.111117 0.0366419 +-0.0788622 0.169438 -0.0409605 +-0.0673163 0.13687 0.0448543 +-0.00450662 0.0828853 0.0572758 +-0.086732 0.125284 -0.00171301 +-0.0339024 0.123839 0.0236394 +-0.0665906 0.0686018 0.0336345 +-0.0647932 0.143933 0.0397518 +0.0283692 0.0466516 -0.00870467 +0.0329293 0.104175 -0.0123189 +-0.0761401 0.0728821 0.0296904 +-0.0142042 0.169737 -0.0232161 +-0.068634 0.151185 -0.044245 +-0.0135754 0.0347863 -0.0255909 +0.019989 0.0436019 0.0426848 +-0.015693 0.057044 -0.0346551 +-0.00164401 0.0482043 -0.0300627 +-0.0311183 0.172722 -0.00474304 +-0.0250193 0.118984 -0.0119284 +-0.0325683 0.124672 -0.00180773 +-0.0781672 0.0694403 0.0164131 +0.0335232 0.0673414 0.0396281 +-0.0927165 0.117489 0.0383035 +0.0402856 0.10561 0.017163 +-0.0284035 0.166813 -0.0078902 +-0.00473635 0.13076 0.00793547 +-0.0216948 0.0386212 -0.00966204 +-0.0436382 0.11786 -0.014681 +0.0533192 0.0587911 -0.00291354 +-0.0153516 0.0970497 -0.0288687 +-0.0434963 0.0661943 0.0406667 +-0.0466152 0.145766 -0.000178732 +-0.0206008 0.0386838 -0.0150911 +-0.0509261 0.0335608 -0.00538789 +-0.0896998 0.137926 0.0341919 +-0.0278811 0.0378156 0.0189805 +0.0364086 0.0854455 -0.0167057 +0.0349072 0.0875927 0.04003 +-0.0243811 0.0738035 0.0484997 +-0.0470246 0.133586 0.0187098 +0.00950521 0.0772084 0.0556135 +-0.0192998 0.0985099 -0.0244 +0.0447739 0.0438422 0.0248039 +-0.0504965 0.0819144 0.0441383 +-0.0346492 0.0577427 -0.0111408 +-0.048101 0.135891 0.0168055 +0.00147386 0.103921 -0.02207 +0.0494979 0.0678406 0.0265165 +0.00621357 0.0880484 -0.0332214 +-0.0763594 0.158279 -0.023921 +0.0359549 0.0646627 0.0378653 +-0.0462327 0.128102 0.0242709 +-0.0570384 0.142741 -0.0023851 +-0.0156536 0.0496375 -0.0309655 +-0.0157015 0.164 -0.0105798 +0.0160661 0.0349193 -0.0155613 +-0.0555615 0.0615422 -0.00607893 +-0.0506452 0.142899 0.00154993 +0.0227041 0.124378 0.0023667 +-0.0690811 0.0343024 0.0100819 +0.0296092 0.114943 -0.00583865 +0.0252655 0.0864752 -0.0236184 +-0.0579352 0.153021 -0.000467328 +-0.0699851 0.168026 -0.0510102 +-0.0649515 0.126767 -0.00875296 +-0.0310902 0.124844 0.00108587 +-0.07951 0.149797 0.0367578 +-0.0514931 0.156432 0.0104716 +-0.0854224 0.0885478 -0.00153705 +-0.0622051 0.0333895 -0.00205752 +-0.00958914 0.0376967 -0.0257201 +0.0438525 0.0874765 0.0251696 +-0.00448652 0.114189 0.0411781 +-0.0741351 0.0860483 0.039718 +-0.0162681 0.118552 -0.0135478 +-0.00571384 0.0655793 -0.035147 +-0.051609 0.164108 -0.000948719 +-0.0346229 0.116833 -0.0136016 +0.0105065 0.107115 0.0414414 +-0.0484736 0.0917654 0.0440291 +9.10767e-05 0.108392 -0.0207972 +0.0522547 0.0611036 -0.00320855 +0.00856462 0.11946 -0.0147195 +0.0326237 0.0768475 0.0419257 +0.0282302 0.0872832 -0.0216049 +-0.0693757 0.155378 0.0277002 +-0.0182673 0.180142 -0.0177524 +-0.0285043 0.0545632 0.0363758 +-0.0218074 0.0756618 -0.0388536 +-0.0633749 0.1608 -0.057006 +-0.0892506 0.151522 0.0201032 +-0.0472272 0.0642822 0.0376403 +-0.0699509 0.134055 -0.00826728 +-0.0820286 0.074884 0.0125291 +-0.0576046 0.151067 0.0326375 +-0.0425494 0.0346163 0.040046 +-0.0619058 0.105434 -0.0174028 +-0.0753497 0.108878 0.0391875 +-0.0594974 0.0946317 0.0447571 +0.013384 0.078066 0.0545225 +-0.0431375 0.160652 -0.0100842 +-0.0258359 0.0945143 -0.0266147 +-0.0245117 0.0536384 0.0409132 +-0.0664072 0.169883 -0.0364165 +-0.0726615 0.0640995 0.00799778 +-0.0451579 0.0395668 -0.0202936 +-0.00773777 0.0727528 -0.0370634 +0.0135086 0.116829 0.0366875 +-0.0836964 0.106272 0.0263573 +-0.0303071 0.0339954 0.0147064 +-0.000759903 0.102685 -0.0227147 +0.0258263 0.0624492 -0.0231007 +-0.0674047 0.179923 -0.0541082 +-0.0857367 0.111526 0.0418488 +-0.0560454 0.148678 -0.00182226 +-0.0476918 0.0635243 -0.0129244 +-0.0642806 0.164881 -0.0270495 +-0.0574962 0.108397 0.0389105 +0.00241269 0.0347278 -0.0230504 +-0.00449379 0.0548276 0.0540049 +-0.0627171 0.147502 -0.0125815 +-0.0213288 0.0581411 0.0459349 +-0.0608837 0.0367165 0.0449842 +0.0211328 0.126504 0.0131782 +0.00740015 0.0418656 -0.0238182 +-0.0737971 0.148055 0.0412991 +-0.00374732 0.0726737 -0.0357771 +-0.0204954 0.103009 0.0433484 +-0.0210495 0.127369 0.0106273 +0.0306407 0.0431175 0.0298982 +0.0109957 0.0698921 0.0545336 +-0.0439898 0.0350927 -0.0256307 +-0.0670986 0.0347786 0.0136227 +0.0215717 0.0401714 -0.00970048 +0.0214864 0.0934187 0.0477129 +-0.0174765 0.0715932 0.0547125 +-0.0246025 0.0824997 0.0540808 +-0.0774249 0.155543 -0.015906 +-0.00557868 0.109705 -0.0221876 +-0.00234233 0.10113 0.044176 +0.0314145 0.0384146 -0.00113672 +-0.0708385 0.0965734 -0.0156262 +-0.0358426 0.0345846 0.0397566 +0.0166934 0.111749 -0.0164123 +-0.0461447 0.0396778 -0.0162811 +0.0460542 0.0820303 0.0141751 +0.024254 0.0776067 -0.0252579 +-0.0585858 0.14384 -0.00236725 +-0.0590542 0.155341 0.0226214 +-0.0425019 0.049221 0.0396798 +-0.0737231 0.156865 -0.0279142 +-0.0640946 0.155219 -0.00966954 +-0.0136075 0.0420889 -0.0267571 +-0.0149109 0.0391012 0.0366853 +-0.0768619 0.116386 -0.00596474 +0.0464851 0.0651547 0.0281822 +-0.0672589 0.077344 0.0400985 +-0.0768893 0.176966 -0.046083 +-0.0870251 0.136346 0.00321516 +-0.046566 0.128368 -0.00156221 +-0.0881324 0.103677 0.0173573 +-0.0358716 0.10426 -0.0206916 +-0.00158589 0.110252 -0.0207823 +-0.0645869 0.117148 0.0471018 +-0.0493593 0.121175 0.032055 +0.00351232 0.0575709 0.0538233 +-0.0114209 0.107659 -0.022044 +-0.0134464 0.0388153 -0.00818864 +-0.0485053 0.108444 0.0391022 +-0.0783276 0.0839475 -0.0105972 +-0.0422429 0.129048 0.0117038 +0.0230175 0.0903576 -0.0236845 +-0.0840147 0.0993167 -0.00358504 +-0.0538991 0.108397 -0.0185513 +-0.00168424 0.0583535 -0.0329231 +0.00135578 0.0347199 0.040341 +-0.0858041 0.131212 0.0485351 +0.0546169 0.0694261 0.0240301 +0.0349752 0.0684447 -0.0157877 +0.0095201 0.0716259 0.0554078 +-0.00749453 0.0952341 0.0547544 +-0.019553 0.163976 -0.00913576 +-0.0640343 0.0457636 0.00169557 +-0.017901 0.0381554 0.0134869 +0.0133255 0.0594987 -0.0290386 +0.00648582 0.047441 0.0497645 +-0.0239518 0.123773 0.0227902 +-0.0318252 0.0609455 -0.0174329 +-0.0928746 0.122834 0.0282828 +0.00226062 0.131309 0.0062251 +-0.0414935 0.112526 0.0356807 +0.0202561 0.0791555 -0.0271913 +-0.0331056 0.0338156 0.0161014 +0.0297787 0.0446629 0.032196 +-0.0792621 0.084024 -0.00957002 +-0.0697175 0.155623 0.0028257 +-0.0391149 0.0337868 -0.0291782 +-0.0893977 0.135151 0.0292068 +0.04371 0.0987542 0.0111628 +-0.0281559 0.0380199 0.00608926 +0.0552084 0.0493743 0.00621284 +-0.0861539 0.149931 0.0300167 +0.042296 0.0775058 -0.00576261 +0.0415736 0.0765545 0.0302447 +-0.0532046 0.133931 0.0318349 +-0.0939252 0.118758 0.016301 +-0.027019 0.123094 -0.00421217 +-0.0471842 0.0355635 -0.0162689 +0.0137449 0.12859 0.0232984 +-0.0388402 0.0957243 -0.0226737 +0.0393482 0.0966985 0.0306886 +0.0405486 0.0596459 0.0301455 +-0.083332 0.0992842 -0.00460735 +0.0403123 0.0491555 -0.00629774 +-0.0135559 0.0378433 -0.0166597 +-0.0655014 0.0958911 0.0424957 +-0.00976126 0.0358952 0.049479 +-0.0624412 0.150596 -0.00171821 +-0.064981 0.131148 -0.00860586 +-0.0763864 0.109432 0.0420745 +-0.00149437 0.0801423 0.0576885 +-0.0163316 0.166866 -0.0132843 +-0.0862104 0.140486 0.00518463 +-0.0484837 0.159357 0.00832828 +-0.063685 0.169395 -0.0455915 +-0.0676574 0.0344024 0.0120657 +-0.0324957 0.0889348 0.0439847 +-0.0285919 0.0494861 -0.0235098 +-0.0925344 0.124191 0.0302708 +-0.0898664 0.135182 0.0372006 +-0.0675175 0.146991 0.0409028 +-0.0643109 0.0721294 0.0381075 +0.0336777 0.107392 0.0312726 +0.0416487 0.0806113 0.0304012 +0.0108925 0.130607 0.00797847 +0.00350574 0.071674 0.0559901 +-0.0687556 0.0680025 -0.00564855 +-0.0668955 0.116554 -0.00922261 +-0.0147132 0.0599449 -0.0358879 +-0.023059 0.0825255 0.0553698 +-0.0305016 0.108423 0.0388291 +-0.0575086 0.0507939 0.00466306 +-0.0811465 0.155009 0.0163089 +-0.0281138 0.125637 0.0139342 +0.00450187 0.0575756 0.0536585 +-0.0124992 0.0745024 0.0565746 +0.030795 0.119096 0.00823469 +0.0112449 0.0943173 -0.0278535 +-0.00350029 0.0856691 0.0572933 +-0.0135749 0.18083 -0.0284353 +-0.0387321 0.0724952 -0.0174162 +-0.0366243 0.151025 -0.00298791 +0.0282135 0.0579727 -0.0197309 +-0.0828916 0.0775885 0.00151125 +-0.00164877 0.0496874 -0.0307148 +0.0386307 0.106935 0.00116239 +-0.0871923 0.0861012 0.021463 +-0.0760841 0.104861 0.0354581 +-0.0244788 0.0486839 0.0492934 +-0.0883766 0.141855 0.0366703 +-0.0509887 0.143164 0.0163768 +-0.0496168 0.0561697 -0.00993077 +-0.00378208 0.0390472 -0.0102032 +-0.0843646 0.087116 -0.00354087 +0.00990951 0.0819581 0.0548044 +-0.0425006 0.0888114 0.0424593 +-0.0728637 0.099356 -0.013752 +-0.0206243 0.0436469 -0.0283402 +-0.0828496 0.117685 -0.00271563 +-0.0715585 0.181081 -0.0541999 +-0.0338561 0.0475081 -0.0226504 +0.00224005 0.0768974 -0.0352993 +-0.0935755 0.117419 0.0183042 +-0.0754318 0.155396 0.00808247 +-0.0674328 0.172594 -0.0425404 +0.027377 0.122298 0.0126488 +0.0174898 0.0874014 0.0499964 +0.0109848 0.123169 0.033628 +-0.0367194 0.0710436 -0.0172369 +-0.0285781 0.0423048 0.0521933 +0.033068 0.0984004 -0.0141329 +-0.0475947 0.0601221 0.0367025 +-0.0635768 0.155628 0.0253794 +0.0262764 0.100811 0.0416679 +0.0147323 0.129513 0.0122405 +0.0321413 0.0366814 0.019545 +-0.00794631 0.127212 -0.00487976 +0.0374618 0.0376657 0.00680115 +-0.0450017 0.0355455 0.0439167 +-0.0613089 0.0634913 0.028639 +-0.0275028 0.0988006 0.0435593 +0.051337 0.0560222 -0.00385605 +-0.0701879 0.175082 -0.0550269 +-0.0424973 0.155091 0.0068798 +-0.0156018 0.0435495 -0.027203 +-0.0387577 0.0797624 -0.0199123 +0.036687 0.0909845 -0.0142871 +-0.0621605 0.170953 -0.0526019 +-0.0503178 0.0515583 0.0186309 +0.0183954 0.0645286 0.0493775 +-0.0816036 0.0774754 -0.00149976 +-0.0167638 0.0728801 -0.0389011 +-0.0612458 0.141043 0.0360828 +-0.0650382 0.153613 0.000196596 +-0.0506214 0.0416531 0.0455899 +-0.0218256 0.086832 -0.0376579 +-0.0368977 0.110447 -0.0189068 +-0.0390704 0.124042 0.0247581 +-0.0145052 0.0544906 0.0506759 +0.0346875 0.0955379 0.0380285 +-0.0427281 0.0478381 -0.0112773 +-0.0589463 0.0436711 -0.00636451 +0.044641 0.0945606 0.00417916 +0.0417801 0.041383 0.0227466 +-0.066757 0.170863 -0.0580345 +-0.0104152 0.0998773 0.0473736 +-0.0467325 0.133652 0.0114554 +-0.0376877 0.163829 -0.000238726 +-0.0725153 0.142823 0.0458217 +0.0207674 0.103342 -0.0194283 +-0.00540678 0.121074 -0.0123374 +-0.0424989 0.102887 0.0413486 +-0.0462349 0.0354247 -0.01929 +0.0180016 0.125305 0.0262968 +-0.0162469 0.184587 -0.0200786 +-0.079084 0.0994215 0.0343706 +-0.0557053 0.132552 0.0352577 +-0.0512629 0.0388692 0.0464256 +-0.0515065 0.160835 0.00704803 +-0.0826893 0.152358 0.0291683 +-0.0584964 0.0932599 0.0452695 +0.024564 0.103479 -0.0175815 +-0.0846694 0.0831371 0.000497005 +-0.0865668 0.118992 0.0483015 +-0.0192412 0.184576 -0.0155995 +-0.00659114 0.03769 -0.0254352 +-0.0245806 0.124862 0.0196194 +-0.0368731 0.105664 -0.0202847 +-0.0621883 0.177235 -0.0596222 +-0.0672213 0.1608 -0.0122924 +-0.0303274 0.0375897 0.0276802 +-0.0234293 0.0522884 0.0423691 +0.0538492 0.0711959 0.0223128 +0.00550075 0.0772523 0.0562045 +0.0438483 0.076237 -0.00278527 +0.00633738 0.0581963 -0.0307089 +-0.0646256 0.0674757 -0.0084666 +-0.0310521 0.0450006 0.0489427 +0.0109104 0.126748 -0.00460652 +-0.0409513 0.128783 0.00774742 +-0.000502218 0.0938722 0.0552243 +-0.0166066 0.035315 -0.0186674 +-0.02118 0.169768 -0.013264 +-0.048723 0.166988 -0.000980568 +0.0301667 0.116977 -0.00204442 +-0.0129037 0.181603 -0.0240442 +-0.0461681 0.033576 -0.00628041 +0.0377831 0.0813859 -0.0147095 +-0.050774 0.143198 0.0153986 +-0.0591392 0.118534 -0.0111826 +0.0601642 0.0622865 0.0071402 +0.0055201 0.0674746 0.0556049 +0.0539548 0.0603844 -0.00239402 +0.0345037 0.0468848 0.0307194 +-0.0226112 0.04084 -0.0289768 +-0.088041 0.0995721 0.00642464 +0.0313753 0.111403 0.0314731 +-0.0818093 0.0776109 0.0245029 +0.0196586 0.112307 -0.0150514 +-0.0547371 0.114833 -0.0154193 +-0.00335753 0.11894 -0.0140663 +-0.0675878 0.0614559 0.0185068 +-0.0374891 0.0973119 0.0427062 +-0.0618754 0.0967815 -0.0181397 +-0.0177948 0.161129 -0.00657359 +-0.0762411 0.0901005 0.0388673 +-0.00749994 0.0647419 0.0560829 +-0.0872439 0.132483 0.0457019 +-0.0207923 0.0756874 -0.0390657 +0.00773677 0.0341095 0.00222437 +-0.00405506 0.101077 0.0451334 +-0.0537766 0.0826585 -0.0215583 +-0.0484986 0.0425777 0.0442245 +0.0370248 0.10907 0.0248298 +0.0550045 0.0727719 0.0183019 +-0.0531047 0.0345095 0.0361399 +0.0240424 0.122784 0.0256717 +-0.0321586 0.0349269 0.0472031 +-0.0487458 0.123267 -0.0102852 +0.0164927 0.107123 0.0418084 +-0.0518639 0.0999443 -0.0218198 +-0.0259535 0.0592275 0.0392168 +-0.0169683 0.186741 -0.0196674 +0.012157 0.123544 0.032833 +-0.0236685 0.0919017 0.0500491 +0.0048864 0.127407 -0.00526463 +-0.00324909 0.0389153 -0.000648163 +0.0108689 0.0576426 0.0524778 +0.0396737 0.107002 0.0161655 +-0.0816849 0.073475 0.00953613 +-0.0743109 0.165184 -0.0390136 +-0.0728909 0.120866 -0.00826881 +0.040969 0.0926354 0.0294955 +-0.00410534 0.0385566 0.0231802 +-0.0167703 0.0742961 -0.0390024 +0.0376363 0.109584 0.0207569 +0.00538144 0.0464854 -0.0270709 +-0.0503176 0.0388958 0.046006 +-0.0793777 0.154922 0.0242883 +-0.0476898 0.0679558 -0.0146484 +-0.0108886 0.108738 -0.0217426 +-0.0532571 0.151368 0.0204421 +-0.068651 0.163792 -0.0529788 +-0.0441151 0.0643553 0.040206 +-0.0275094 0.107088 0.0401149 +-0.0275566 0.0890776 0.0469337 +-0.0274957 0.102963 0.0425886 +-0.0266136 0.0837142 0.0504396 +0.015157 0.122808 -0.00836184 +-0.0234279 0.0636514 0.0436342 +-0.00941329 0.0943623 -0.0340451 +-0.0174189 0.178658 -0.0183022 +-0.0187779 0.183117 -0.0166827 +0.0130462 0.129592 0.0201813 +-0.0751825 0.149958 -0.0238676 +0.00897367 0.131122 0.0172577 +0.0483469 0.0589383 -0.00490848 +0.0422406 0.0986762 0.0221715 +-0.0921564 0.130934 0.011242 +-0.0327106 0.0764924 -0.028531 +0.0102149 0.0725802 0.055192 +-0.0636711 0.0593571 0.0158341 +-0.0123306 0.0394822 0.0386711 +-0.0718333 0.156164 0.022455 +-0.0864971 0.150096 0.00821548 +-0.0110742 0.123419 -0.00875247 +-0.080097 0.11274 -0.00201289 +-0.00271881 0.0655507 -0.0345764 +0.00140103 0.0390882 -0.0248121 +-0.0618299 0.0939366 -0.0189413 +-0.0716693 0.147461 -0.0281971 +-0.0231858 0.17269 -0.0205136 +-0.0637876 0.155678 -0.0402328 +-0.0228589 0.0637031 0.0444908 +-0.0238626 0.169762 -0.0118641 +-0.0752191 0.155599 0.0242023 +-0.0345019 0.0461718 -0.0254652 +-0.01605 0.0946681 0.0536372 +0.0246905 0.0477085 0.0389599 +0.0101881 0.0341976 -0.00109267 +-0.0293326 0.154386 -0.00360575 +0.00276097 0.131717 0.0121378 +-0.0859012 0.0899317 0.000454719 +-0.0297834 0.121969 -0.0069874 +-0.0297126 0.0508986 -0.0203549 +-0.0888501 0.151809 0.0151852 +-0.0824868 0.0965084 -0.00559576 +-0.0279025 0.124426 0.000511349 +-0.0111071 0.0879305 -0.0374747 +-0.0895782 0.133632 0.00522749 +-0.0325779 0.0341004 0.0231549 +-0.087069 0.100891 0.00537711 +-0.0182966 0.038653 -0.00715499 +-0.0181652 0.097581 -0.0254283 +0.00716304 0.0378885 -0.010707 +-0.0117789 0.0582633 0.0533407 +-0.0679898 0.154859 0.0296647 +0.0270346 0.0384464 0.0278157 +-0.0446977 0.147484 -0.0025954 +-0.0797208 0.0757926 0.0264575 +-0.0827795 0.113314 0.0464356 +-0.0405007 0.118003 0.0314814 +0.00913581 0.103011 -0.0206427 +-0.0712761 0.153449 0.0330143 +0.0296113 0.108994 -0.0114792 +0.0120747 0.0958655 -0.0254962 +-0.0357119 0.0695868 -0.0167299 +-0.0777217 0.159728 -0.0179219 +-0.0619192 0.0343817 0.0361087 +-0.0839142 0.0843714 -0.00355138 +0.0295472 0.11806 0.0262972 +-0.0344935 0.0733008 0.0417052 +0.0305902 0.0996469 -0.0155371 +-0.0731059 0.151228 -0.0378853 +-0.0740388 0.151266 -0.032878 +-0.0419789 0.152954 -0.00736227 +-0.00349089 0.112806 0.0419152 +0.00607582 0.0348373 0.023168 +-0.000568628 0.0388214 0.0254737 +0.0445611 0.0931651 0.0181595 +-0.0469298 0.126751 0.026776 +-0.0318643 0.104333 -0.0219242 +0.0119312 0.0725978 0.0541603 +-0.0435985 0.108724 -0.0190759 +-0.0274517 0.043312 0.0519115 +-0.00149233 0.077429 0.0585147 +-0.0618993 0.0433992 0.0415482 +0.0131559 0.129936 0.00738875 +0.00749621 0.107111 0.0412811 +0.0354668 0.0573224 -0.0106723 +-0.0211412 0.0652998 0.0483526 +-0.00680045 0.129424 0.0244883 +-0.0187344 0.126979 0.0202236 +0.00853139 0.0813381 0.0552215 +-0.0254455 0.0389929 0.0381911 +-0.0507728 0.111366 -0.017973 +-0.027716 0.0387019 -0.0165247 +-0.000266462 0.0936214 -0.0332218 +-0.0855847 0.0806062 0.0194802 +0.0100369 0.130324 0.00340984 +-0.0449017 0.148739 -0.00386394 +-0.0321132 0.0482449 -0.0223421 +-0.0893696 0.140675 0.0341739 +0.0448261 0.0875458 0.0221634 +-0.0454912 0.0719252 0.0419203 +-0.0718306 0.148291 -0.0327712 +-0.0812513 0.108802 0.0293202 +0.0429574 0.0859786 -0.00579554 +-0.0338336 0.0380945 -0.0153271 +-0.060738 0.148827 -0.00180261 +-0.0568701 0.141076 -0.0033696 +-0.0358396 0.125396 0.0214464 +-0.0789386 0.168616 -0.0354931 +-0.0315115 0.108439 0.0386203 +-0.0842691 0.117693 0.0488129 +-0.032501 0.101545 0.0423652 +-0.0289779 0.174216 -0.00689295 +-0.0622726 0.163207 -0.0582148 +-0.00885889 0.172674 -0.0247544 +-0.0519291 0.13698 0.0263868 +-0.0829532 0.112769 0.000219247 +-0.0237394 0.038003 0.0142418 +0.0321413 0.0513188 -0.0087021 +-0.0473947 0.0359569 0.0452833 +-0.0488828 0.108449 -0.0190525 +0.0415402 0.0928967 -0.0067838 +-0.0800241 0.0745873 0.0239149 +0.005197 0.0866258 -0.0333998 +0.00148166 0.107215 0.0427825 +-0.0694376 0.159556 -0.0509365 +-0.0306541 0.0650706 -0.0234343 +-0.0653365 0.167223 -0.0303028 +-0.0262324 0.15581 -0.00635861 +-0.0362329 0.165306 -0.00162934 +-0.00330758 0.0379537 -0.0147265 +-0.0267799 0.0893467 -0.0340353 +-0.0591073 0.155657 0.0168017 +-0.0331866 0.15511 0.000984746 +-0.0671323 0.152011 0.0359968 +0.0112495 0.0710359 -0.0320326 +-0.0289103 0.0508426 -0.0224168 +-0.0582351 0.043574 0.0153571 +-0.0770169 0.112922 0.0479771 +-0.0146932 0.0570315 -0.0346956 +-0.0735209 0.134443 0.0506533 +-0.0445794 0.130477 0.0137726 +-0.0744939 0.127436 0.052791 +-0.0376156 0.0492564 -0.0118933 +-0.0462534 0.123907 0.0259058 +-0.0434909 0.104315 0.0413728 +-0.0779429 0.0893818 -0.0115854 +-0.067492 0.10005 0.0413205 +-0.0882017 0.0949941 0.0238463 +0.0438775 0.06952 0.000229591 +-0.0171444 0.168289 -0.0207283 +-0.0236004 0.0383091 -0.00235181 +-0.0697889 0.172796 -0.0390999 +-0.0291426 0.042089 -0.0296009 +-0.0446441 0.0338442 0.00651202 +-0.000500925 0.121055 0.0369996 +0.022042 0.12426 0.000701449 +0.00803725 0.125889 0.0313 +-0.0517799 0.0840941 -0.0216716 +-0.0145005 0.0842486 0.056982 +-0.0886066 0.113065 0.00725433 +0.0156656 0.0713152 0.0525386 +-0.0164665 0.068805 0.0544258 +0.0182285 0.0820502 -0.0281776 +-0.00610364 0.0386755 0.000846714 +-0.0599938 0.126727 -0.00781868 +-0.0155017 0.100285 0.044225 +-0.0638562 0.0423917 -0.00506847 +-0.0444796 0.0338614 0.0280014 +-0.000499767 0.100727 0.0463954 +-0.0162094 0.172709 -0.0239586 +-0.0690346 0.0338087 0.00696066 +-0.062316 0.158431 -0.019584 +0.00644358 0.129282 -0.00129108 +0.0188124 0.0393785 0.042705 +-0.0847946 0.140657 0.0430258 +-0.0835274 0.0979539 0.0303801 +-0.0241902 0.160559 -0.0136368 +-0.06502 0.161419 -0.0172527 +-0.0772789 0.154395 0.0279022 +-0.0681261 0.15638 0.0193912 +-0.0337268 0.111492 -0.0180397 +-0.0323736 0.176483 -0.0134412 +-0.0291608 0.0806486 0.0445728 +-0.0846331 0.0781756 0.0181083 +-0.0498753 0.106996 -0.0192538 +0.00350083 0.0730867 0.0562031 +-0.0231171 0.0347933 0.0492623 +-0.0616059 0.0342155 0.0188015 +-0.0516 0.0545447 0.0296397 +-0.0763817 0.169448 -0.0429673 +-0.069513 0.17974 -0.0519891 +-0.0588484 0.13671 0.0342246 +-0.0780833 0.1597 -0.0209281 +0.00109253 0.113026 -0.0199046 +-0.0227366 0.157094 -0.00651614 +0.0344933 0.0929192 0.0394802 +-0.000408544 0.126448 -0.00615558 +-0.0805024 0.128853 0.052889 +-0.00020637 0.0947598 -0.0324026 +-0.089811 0.143072 0.0296513 +0.0321792 0.0929416 0.0413986 +-0.0145721 0.168692 -0.0222333 +0.0595491 0.0594739 0.0201736 +-0.0810451 0.0800939 -0.00453207 +-0.0267843 0.0880044 -0.0350453 +-0.040033 0.126629 -0.00388698 +-0.0208083 0.0348218 0.0462671 +-0.082826 0.11472 -0.00162443 +-0.0301654 0.12556 0.01613 +-0.0485613 0.0418518 -0.011173 +-0.0784181 0.163881 -0.0269512 +0.0387541 0.0617571 -0.00875906 +0.0464006 0.0792571 0.0121793 +-0.00359562 0.043415 -0.0257386 +-0.0333921 0.126443 0.0164188 +-0.00106292 0.130975 0.00499363 +-0.0668008 0.060458 0.0159676 +-0.0254977 0.107106 0.0408331 +-0.0682758 0.06442 0.0246162 +-0.0298175 0.125729 0.00888885 +-0.088267 0.147416 0.00925394 +0.0542609 0.050631 0.00222604 +0.0422118 0.100079 0.0191646 +-0.081175 0.14869 0.00117764 +-0.0344163 0.0346761 0.0417292 +-0.0623017 0.163119 -0.0425932 +-0.0298952 0.0565521 -0.0204023 +-0.076686 0.0781369 0.0338733 +-0.0338704 0.102893 -0.0218261 +-0.0355104 0.0775398 0.0419002 +-0.0584924 0.0630612 0.0296076 +0.0454221 0.0889974 0.0141646 +-0.0417964 0.0347181 0.00810808 +0.0363875 0.0505227 -0.00658574 +-0.053281 0.144674 0.0233765 +0.0262687 0.0352193 0.019674 +-0.0168964 0.123328 -0.00656517 +-0.0606083 0.118309 0.0403758 +0.00639612 0.0418759 -0.0239341 +0.0231261 0.0431609 -0.0107258 +-0.00718079 0.0390105 -0.0127195 +-0.00364386 0.0901332 -0.0356262 +-0.00854262 0.033753 -0.0231542 +-0.0124761 0.0531764 0.0512005 +-0.0231395 0.168252 -0.0189417 +0.0233331 0.0354178 0.02435 +-0.000241537 0.0397743 0.0467748 +-0.0723661 0.147118 -0.0228625 +-0.0517688 0.0612265 0.030932 +-0.063068 0.161146 -0.0557557 +-0.0279123 0.0793217 0.046185 +-0.0627986 0.0441541 -0.00325511 +-0.0165065 0.100263 0.0439632 +-0.0217072 0.0582569 -0.0327502 +0.0254642 0.12325 0.0062381 +-0.086501 0.0833246 0.0174861 +-0.074502 0.11613 0.052068 +0.032458 0.0910982 -0.0184345 +-0.0729629 0.155811 0.0249814 +-0.0506733 0.162525 0.00564316 +-0.0697867 0.034416 -0.00452426 +0.0189467 0.0754919 0.0520404 +-0.0165401 0.0997826 0.0440769 +-0.086829 0.0847067 0.0174745 +-0.0474936 0.146975 -0.00223523 +-0.065417 0.154594 -0.0449582 +-0.0614906 0.0590888 0.0075192 +-0.0686207 0.128453 0.0500102 +-0.023162 0.0958328 0.0451924 +-0.0258056 0.0550238 0.0391969 +-0.0102599 0.0407381 0.0498453 +-0.0664749 0.0875478 0.0443297 +0.0581415 0.0538012 0.00818348 +-0.0384918 0.0903063 0.0434643 +-0.0457684 0.132352 0.0133121 +-0.0728932 0.0941961 0.0410307 +-0.0809085 0.111715 -0.000772193 +-0.0833393 0.0979244 -0.00460929 +-0.0671961 0.15591 -0.00355939 +-0.0455114 0.0338265 0.027816 +0.01975 0.0343373 0.00255688 +-0.0875501 0.120326 0.0478169 +0.0353576 0.0505704 -0.00670224 +0.00356645 0.0339958 0.0125338 +0.0590653 0.0552605 0.0161784 +-0.084435 0.0791603 0.0205035 +-0.0255122 0.0349295 -0.0287387 +-0.0724789 0.110508 0.0438845 +0.00447986 0.0385716 -0.0118677 +-0.066989 0.136993 -0.00809827 +0.0384287 0.064558 0.0344028 +-0.0516036 0.0560273 -0.00839821 +-0.00350028 0.110017 0.0429859 +-0.0111634 0.0391658 0.035606 +0.0183426 0.0906063 -0.0259275 +-0.031909 0.154239 -0.00732019 +-0.0800971 0.0773092 -0.00453369 +-0.0190564 0.0920061 -0.0357108 +0.0133608 0.0494245 -0.0271921 +-0.0787339 0.140316 -0.00472414 +-0.0275167 0.116662 0.0324113 +0.00652621 0.104352 0.0432895 +0.0358497 0.0713653 0.0377445 +-0.0918605 0.116299 0.0240619 +-0.0522199 0.061167 0.0299696 +-0.0201447 0.166816 -0.0117812 +-0.0433732 0.122414 -0.0114499 +-0.0645963 0.0430073 0.0358234 +-0.0779043 0.1583 -0.0209193 +0.0367132 0.0547551 0.0317845 +-0.0351109 0.16372 -0.0144674 +-0.0434603 0.109995 -0.0184047 +-0.0576869 0.0677197 -0.0118328 +0.00623854 0.074018 -0.0343382 +0.0443987 0.0959613 0.0131589 +-0.089865 0.120262 0.0458544 +0.0103837 0.0449023 -0.0251665 +-0.0770006 0.139838 -0.00569476 +-0.072687 0.0955359 0.0408041 +-0.0569361 0.046073 0.0125834 +-0.0604913 0.0818799 0.0434166 +-0.0460645 0.151688 -0.00554828 +-0.015331 0.0349099 0.0491212 +-0.0229594 0.0811266 0.055321 +0.0274663 0.0754645 0.0450048 +-0.00267666 0.0374926 0.0135597 +-0.011518 0.0673875 0.054571 +0.013368 0.122467 -0.00997636 +-0.0722821 0.143895 -0.0129091 +0.0454962 0.0443878 0.000424365 +-0.0127602 0.0382241 0.0199007 +-0.091546 0.146121 0.023146 +0.00392744 0.0371222 0.0242968 +-0.0385489 0.119476 -0.0123722 +0.0114833 0.0936471 0.0518498 +-0.0643328 0.146767 0.0386771 +-0.0624894 0.163088 -0.0505885 +-0.0375004 0.0464372 0.040096 +0.0460037 0.0834239 0.0131685 +0.033027 0.108336 -0.00876159 +0.013228 0.0990749 -0.0229052 +0.034148 0.0442132 0.0295363 +-0.0907186 0.113289 0.0113419 +0.0210633 0.106016 0.0411627 +-0.0454948 0.119311 0.0290591 +-0.0676975 0.0607342 0.0101856 +-0.0195364 0.0461211 0.0518679 +0.0161339 0.0672434 0.0514025 +-0.0693216 0.0620201 0.0176481 +0.0429729 0.0944315 -0.00180352 +-0.0494828 0.135763 0.0221907 +-0.060805 0.0867676 -0.0196616 +-0.0247298 0.125997 0.0151584 +0.059297 0.0608379 0.0211666 +-0.080116 0.153024 0.0299773 +0.0574282 0.0681585 0.00377242 +-0.0535498 0.0486673 -0.00635158 +-0.0304741 0.177281 -0.004356 +-0.0855011 0.0792275 0.0175034 +-0.0804698 0.130248 0.0526854 +0.000343862 0.0539275 -0.0306641 +-0.0900062 0.133811 0.0372136 +0.0104354 0.0347372 0.0259595 +-0.0574962 0.0440189 0.0444763 +-0.0573422 0.0335757 0.00237022 +0.0404449 0.0739232 0.0320846 +-0.00464724 0.0496642 -0.0307417 +-0.0311133 0.0510509 -0.015361 +0.0169782 0.128539 0.0144983 +-0.0872732 0.151714 0.0113029 +-0.0345546 0.0409268 0.0482929 +-0.0745628 0.173554 -0.0490908 +-0.0213027 0.0381376 0.0110019 +0.0223647 0.0782061 0.0499784 +0.0111959 0.0879068 -0.0311136 +0.0141654 0.115006 -0.0159235 +-0.0175094 0.116845 0.0368185 +0.0185047 0.0369619 -0.0146835 +-0.0924063 0.129578 0.0112381 +-0.00949945 0.0517772 0.0514996 +-0.0666563 0.0656524 -0.0048951 +-0.0494962 0.100168 0.0429965 +0.00776642 0.130336 0.022539 +-0.0564976 0.0904367 0.0452654 +-0.0648339 0.153263 -0.0390895 +0.0140569 0.12802 0.0248446 +-0.00977705 0.174183 -0.0237537 +-0.0154865 0.0530505 0.0500296 +-0.0627622 0.0810191 -0.0190992 +-0.0385594 0.173184 -0.00190958 +-0.00314149 0.0972112 0.0530078 +-0.0418773 0.107078 -0.0201516 +0.0363342 0.109637 -0.000829727 +0.021507 0.126326 0.01189 +-0.030496 0.0988081 0.0439786 +-0.0769628 0.150462 0.0371334 +-0.0941104 0.126894 0.0182531 +-0.0255083 0.112568 0.0366767 +-0.0746801 0.157704 -0.00556618 +-0.0418449 0.0971142 -0.0220611 +-0.0359493 0.125342 -0.00457539 +-0.0258164 0.0853463 -0.0368715 +0.0497106 0.0482066 0.0259506 +-0.0716942 0.1568 -0.0399156 +-0.0618117 0.0590403 0.0165038 +-0.0714498 0.15679 -0.0419165 +-0.0701989 0.0368637 0.0105096 +0.0597267 0.0636404 0.0201833 +-0.0915748 0.124221 0.0431828 +-0.0690929 0.156328 0.0219534 +-0.0302767 0.0622182 -0.0224251 +-0.00771091 0.0627931 -0.0356131 +0.0394872 0.0513548 0.03224 +-0.0229845 0.0724431 0.0499564 +-0.0290201 0.125445 0.00626167 +-0.0729777 0.138423 -0.00695981 +-0.00991212 0.111561 -0.0201766 +0.000200297 0.0825801 -0.036136 +0.0364442 0.0590953 0.0349595 +0.0364996 0.0928818 0.0370772 +-0.0181329 0.0432293 0.0524811 +0.00280759 0.0350639 0.0204847 +-0.0626379 0.152126 -0.0285986 +-0.0704211 0.15543 0.027334 +0.000301963 0.100099 0.0481787 +-0.049492 0.0917757 0.044207 +-0.015502 0.0897786 0.0564851 +-0.0318792 0.156356 -0.0104816 +0.0416778 0.102863 0.015161 +0.0504722 0.048918 -0.000684915 +-0.0611415 0.0359024 -0.0090437 +-0.0264937 0.098817 0.0439871 +-0.000436317 0.122463 0.0356275 +-0.0875676 0.129767 0.0460862 +-0.0312863 0.0777611 -0.0325602 +-0.0303664 0.112853 -0.0174686 +-0.00773829 0.0684701 -0.0360951 +-0.0647534 0.156678 -0.0475943 +-0.0891175 0.0983455 0.0194044 +0.00833741 0.055373 -0.0305597 +-0.0550257 0.131065 -0.00539027 +-0.0305029 0.0689001 0.0393777 +-0.0596554 0.0343168 0.0331724 +0.0436089 0.0680569 -0.000247417 +-0.0786395 0.163873 -0.0279533 +-0.0574243 0.0613459 0.0260206 +-0.0338728 0.0483909 -0.0193366 +-0.0287306 0.074519 0.0412207 +0.016916 0.0577101 0.0489225 +-0.0184307 0.0347944 0.0485523 +-0.0655112 0.0803784 0.0426229 +-0.0332327 0.160967 -0.000804209 +-0.0533105 0.0541891 0.0115512 +-0.0356689 0.117866 -0.0126779 +-0.0699903 0.034504 0.00971713 +-0.0588141 0.0341524 0.0282501 +-0.0177813 0.0770869 -0.0388032 +0.0445157 0.0467554 0.0289718 +0.00964716 0.128306 -0.00229994 +-0.0666126 0.148623 0.0392621 +-0.0325544 0.0348985 0.0454309 +-0.0623108 0.039732 0.0166963 +-0.0917483 0.122888 0.0433845 +0.0271866 0.0819517 -0.0229154 +-0.00863658 0.0467032 -0.0298179 +-0.0620847 0.166243 -0.0515916 +-0.0912832 0.125583 0.0428488 +-0.0588072 0.0481223 0.00266039 +-0.0913122 0.133748 0.0212171 +0.0482658 0.0433313 0.0185611 +0.00774922 0.0351262 -0.0136823 +0.0357585 0.0562848 0.0339755 +-0.029123 0.166739 -0.016877 +-0.0338028 0.122413 -0.00742547 +0.0216799 0.0415358 -0.0117265 +-0.0257594 0.171231 -0.0110774 +-0.0641199 0.162494 -0.0212451 +-0.0535748 0.155622 0.0115317 +0.0531674 0.0736169 0.0146631 +0.0135129 0.0347107 0.0374491 +0.0227019 0.123147 0.0266031 +0.025252 0.0719314 -0.0249494 +0.0309797 0.118122 0.0225615 +0.0415492 0.0724945 0.03012 +0.000493498 0.119652 0.0380928 +0.0229975 0.123119 -0.000380287 +0.0234322 0.100371 -0.0202365 +-0.0620057 0.153738 -0.0265835 +-0.0398723 0.105663 -0.0203219 +-0.0632416 0.0445478 0.0366988 +-0.0310386 0.154131 -0.00157547 +-0.0042992 0.0348909 0.0408189 +-0.00181562 0.0826307 -0.0368615 +0.0388816 0.0927717 0.0335536 +-0.0335058 0.0760991 0.0415371 +-0.0314963 0.0917789 0.0442247 +-0.0512549 0.0612644 0.0318233 +-0.00281159 0.131227 0.0100802 +-0.0531145 0.157563 -0.00324336 +-0.0635867 0.03486 0.0405057 +-0.0627936 0.15522 -0.0356106 +0.0166245 0.122097 0.0315907 +-0.0106759 0.119083 -0.0141801 +-0.0465015 0.0689677 0.0402969 +-0.0626599 0.0423324 0.0141491 +-0.0515376 0.053149 0.0306286 +0.00413437 0.124074 -0.00964261 +-0.0105331 0.127013 0.0275477 +-0.042312 0.0337552 -0.0130352 +0.0472026 0.0681414 0.0256953 +0.0213439 0.0741385 0.0502206 +0.0156241 0.128368 0.0211329 +0.0358549 0.0843357 -0.0172902 +-0.0533892 0.064921 0.0343521 +0.0273368 0.091573 0.0449418 +-0.0440333 0.0423079 -0.0173091 +-0.0764978 0.13864 0.0490601 +0.00750117 0.0716903 0.0560753 +0.0454321 0.0861887 0.0181684 +-0.0812985 0.084505 0.0328118 +-0.0605375 0.155317 0.003221 +-0.0065332 0.130449 0.0187888 +0.0247646 0.122114 0.0259409 +-0.0711064 0.152637 0.0345827 +-0.0155013 0.0716083 0.0551341 +0.0277791 0.0822205 0.0455159 +-0.0445183 0.0675631 0.0404632 +-0.0772746 0.147261 -0.00486297 +-0.0868795 0.0927253 0.00342064 +-0.0458425 0.0985138 -0.0217256 +-0.0906083 0.131058 0.0342318 +-0.091547 0.146101 0.0191506 +-0.00249086 0.116945 0.0398999 +0.0385734 0.0699568 0.0346425 +-0.0129648 0.116833 -0.0157687 +0.0215791 0.120444 0.0319368 +-0.0899229 0.115405 0.0270455 +-0.0697992 0.0836733 -0.0171139 +-0.0415794 0.128056 0.0149128 +-0.0734779 0.180121 -0.0504836 +-0.0466973 0.0665278 -0.0146823 +-0.0673893 0.156703 -0.00509746 +0.00108438 0.119342 -0.0145393 +-0.019494 0.0842608 0.0571688 +0.0285713 0.0551672 -0.0188053 +0.00650695 0.0731027 0.0564796 +-0.0557862 0.0854763 -0.0214113 +-0.0743851 0.163815 -0.0369793 +-0.0286768 0.123948 -0.00103929 +-0.0301123 0.163751 -0.0154896 +0.0410386 0.099944 -0.00278716 +0.00848446 0.0518256 0.0516867 +-0.051108 0.0530218 0.0319282 +-0.0905758 0.113954 0.0388293 +-0.00470317 0.038779 0.00289117 +-0.0247258 0.0638997 -0.032873 +-0.04111 0.159177 -0.0108205 +-0.0892399 0.140676 0.0351725 +-0.075004 0.141334 -0.0064915 +-0.0463338 0.132474 0.00863126 +-0.0541416 0.034749 0.0443256 +-0.0781873 0.168068 -0.0319708 +0.0328915 0.0696754 -0.0177356 +0.0346158 0.0369318 0.00517598 +-0.0694908 0.124597 0.0526574 +0.0581844 0.0711857 0.0106064 +-0.0378081 0.0841771 -0.022143 +-0.0281622 0.169703 -0.0179592 +0.0305485 0.118199 0.0238252 +-0.0289649 0.0747374 -0.0345478 +-0.0272221 0.0904382 0.0465675 +-0.0514982 0.0848246 0.0453901 +-0.051623 0.0531083 0.0226238 +-0.0398125 0.0899922 -0.0232612 +-0.0236559 0.0709438 0.0478646 +-0.053816 0.0559281 -0.00642904 +0.0603322 0.0636924 0.0181801 +-0.0884616 0.136381 0.00620417 +-0.0394936 0.046476 0.0404962 +-0.0530638 0.0723343 0.0404003 +0.0102711 0.0695708 -0.0315811 +0.0339253 0.115718 0.0108315 +-0.0295473 0.0358282 0.0521362 +0.0116453 0.090034 0.0538428 +0.0450904 0.0875663 0.0201674 +0.0326336 0.0519746 0.0346532 +0.03367 0.072742 0.0398859 +0.024638 0.124378 0.010214 +0.0415181 0.0484385 0.0321463 +-0.044143 0.159411 0.00624881 +-0.0495653 0.047469 -0.00900107 +-0.0894571 0.131034 0.0422704 +-0.075804 0.161028 -0.0299559 +-0.0164919 0.0968814 -0.0286925 +0.0229929 0.0371968 0.0317242 +0.0352506 0.101471 -0.011425 +-0.049558 0.0389942 -0.0116749 +-0.0223649 0.171249 -0.0132085 +-0.0667327 0.078026 -0.0171522 +0.0442166 0.0846846 -0.00180459 +-0.0518774 0.104165 -0.0200373 +-0.0393536 0.0336231 0.00416845 +0.00720473 0.0823989 -0.0333538 +-0.0288578 0.101545 -0.0231915 +0.0245524 0.106048 0.0391612 +-0.0851811 0.0897279 0.0280525 +-0.00334607 0.0347739 0.0411187 +-0.0430221 0.128224 0.015861 +0.0243931 0.0503998 -0.0217952 +-0.0394902 0.0506047 0.0393469 +0.0293799 0.0892796 -0.0205263 +-0.0574934 0.0875623 0.0444505 +-0.0644211 0.0347126 0.0370276 +-0.0169241 0.181626 -0.0193127 +-0.0564978 0.0732565 0.0410435 +-0.0544221 0.144671 0.0284168 +0.0203184 0.0650483 -0.0276666 +-0.0648645 0.041891 0.032665 +-0.0451284 0.159142 -0.00893675 +0.0451235 0.093189 0.0121575 +-0.0577489 0.0479998 -0.00135721 +-0.0606371 0.0448145 0.012064 +0.0495086 0.0638139 0.0293036 +0.0458685 0.0862133 0.0111669 +-0.0531099 0.136165 -0.00197183 +0.0285441 0.0509095 -0.0177614 +-0.013074 0.0383381 0.00704947 +-0.0223231 0.0391341 0.0387105 +0.0393846 0.0429207 -0.00283799 +0.0202147 0.0847891 -0.0269071 +0.00923869 0.035402 -0.0117616 +-0.060367 0.11933 -0.00999174 +-0.0772797 0.157576 -0.0127941 +-0.0732669 0.179344 -0.0490063 +-0.0683896 0.0420777 -0.000309277 +-0.0539058 0.102757 -0.0202213 +-0.0453256 0.169857 -0.00299568 +-0.0616838 0.0659304 -0.00830259 +0.00414244 0.129952 4.9397e-05 +-0.0404915 0.113924 0.0347061 +-0.0942425 0.120105 0.0182851 +-0.0324906 0.080327 0.0414535 +0.0529677 0.0595446 0.0290441 +-0.0904857 0.114242 0.0332623 +-0.0703591 0.181312 -0.0565189 +-0.0475241 0.112407 -0.0169253 +0.0109831 0.0341684 -0.0140433 +-0.089612 0.139257 0.0251846 +-0.0373738 0.0365422 0.044687 +0.0564401 0.0662549 0.00171258 +-0.0581251 0.0334091 -0.00125013 +-0.0407273 0.0696207 -0.0166002 +-0.0669961 0.165196 -0.05701 +0.0131268 0.120538 0.0349816 +0.0367009 0.0812747 -0.0157528 +-0.0077824 0.0784642 -0.0379203 +-0.0647128 0.155185 0.0278857 +0.00549498 0.0951378 0.0528545 +-0.0108057 0.0342947 -0.0255969 +-0.0911579 0.129687 0.0342384 +-0.080608 0.0720682 0.0165498 +-0.073439 0.148627 -0.0298053 +-0.0271937 0.174158 -0.0183459 +-0.0244966 0.0509689 0.0431921 +-0.00162246 0.0450436 -0.027024 +-0.0775221 0.104823 0.0340694 +0.0154861 0.0927165 0.0506449 +-0.0599536 0.123822 -0.00839074 +-0.079866 0.0706372 0.0115498 +-0.0815235 0.0899003 0.0328752 +0.0313378 0.118325 0.00558524 +0.0248331 0.123944 0.0188283 +-0.0898787 0.112224 0.0169361 +-0.0662043 0.065068 0.0280019 +0.0246717 0.0434401 -0.00867806 +-0.0469681 0.134154 0.0128397 +-0.0291377 0.0860908 -0.0335904 +0.0147704 0.0519654 0.0475176 +-0.0296475 0.169744 -0.0079151 +-0.0211888 0.175661 -0.0220113 +-0.0347689 0.0780934 -0.0215038 +-0.013019 0.129549 0.0120959 +0.0421932 0.0662609 -0.00283376 +0.0111358 0.0352671 0.0436641 +-0.0705399 0.100871 0.0399167 +-0.0604975 0.0832903 0.0437356 +-0.0659485 0.126772 -0.00885106 +-0.0702518 0.06756 0.0285092 +-0.00688661 0.108791 -0.0226031 +-0.0786437 0.112204 0.0464731 +0.00637271 0.130879 0.0205945 +-0.066894 0.110895 -0.0121462 +0.0123118 0.0623753 -0.0299343 +-0.0285044 0.109801 0.0380702 +0.00650421 0.0883449 0.0558788 +-0.0545694 0.124267 -0.00721739 +-0.0626588 0.161511 -0.0455953 +-0.0861214 0.132549 0.0473951 +-0.0627776 0.125519 0.0444184 +-0.0177321 0.160293 -0.0123373 +-0.0490182 0.0345781 0.0369526 +-0.0297799 0.106834 -0.0211406 +-0.079558 0.151858 0.0332132 +-0.0404921 0.0648693 0.0415314 +-0.0530069 0.153493 0.0132253 +-0.0339683 0.0485791 0.0404406 +-0.0421354 0.0449426 -0.0173193 +-0.0517467 0.076797 -0.0188523 +-0.060863 0.0583083 0.0137477 +0.0112347 0.0794806 -0.0318525 +0.00351036 0.0856577 0.0572413 +-0.0648576 0.101039 -0.0173044 +-0.0601123 0.0381131 0.0455939 +-0.015494 0.0515277 0.0489706 +-0.0275254 0.1668 -0.00838328 +-0.0365126 0.077567 0.0421306 +-0.0195832 0.1596 -0.0115811 +0.00251466 0.0744821 0.0563666 +0.0589788 0.062133 0.0220601 +-0.066902 0.117219 0.0507079 +-0.0396194 0.0335538 -0.0253204 +-0.0297618 0.107877 -0.0202294 +-0.00601771 0.0990415 0.0504631 +-0.084398 0.0778007 0.013518 +0.0271613 0.0368693 0.0238228 +-0.0589877 0.0335902 0.00921609 +0.029871 0.0968887 0.0415927 +0.00949394 0.0426698 0.0450285 +-0.0697739 0.0382195 0.0100596 +0.0231426 0.0768603 0.0493195 +-0.00501253 0.125042 0.0324689 +-0.00710159 0.0387114 0.00061319 +-0.0177128 0.0599179 -0.0354327 +-0.045698 0.157938 0.00750606 +0.00190257 0.130874 0.00322319 +-0.0444648 0.0945053 0.0429498 +-0.0772757 0.148645 -0.0058688 +-0.069822 0.156776 -0.00162593 +-0.0445001 0.117958 0.0308281 +-0.0409685 0.0462375 -0.0173222 +-0.0305996 0.0509893 -0.0173575 +0.00196704 0.0385066 0.0244659 +-0.00668986 0.0584241 -0.0339312 +-0.0587805 0.0811174 -0.0202922 +-0.0492044 0.143127 0.00539863 +-0.0686509 0.155409 0.00612964 +-0.0404209 0.150087 -0.00469474 +-0.00449521 0.0925603 0.0561444 +-0.000397233 0.131333 0.0167016 +-0.0552402 0.138165 0.0306253 +0.0215752 0.056436 0.0468827 +-0.0248564 0.100174 -0.0239639 +-0.0165731 0.0386082 0.0295958 +0.0232801 0.125085 0.0182493 +0.0228318 0.0357435 0.0257706 +-0.0492021 0.127407 -0.00458885 +-0.0878029 0.112934 0.0313303 +0.0465727 0.0554592 0.0320923 +-0.0288967 0.0499669 0.0438168 +-0.000173892 0.120963 -0.0122496 +-0.0704499 0.154022 0.0317661 +-0.0151711 0.0346724 0.0458457 +-0.0640566 0.138182 0.0390191 +0.0398408 0.105612 0.0201716 +0.0444976 0.0583814 0.0318302 +0.031639 0.0370094 0.0209702 +-0.0104878 0.112778 0.0413082 +-0.0672962 0.0785128 0.0408262 +-0.0760729 0.0675487 0.00755458 +-0.0571409 0.0642584 0.0323718 +0.0261418 0.0859362 -0.0230192 +-0.015502 0.0856307 0.0568812 +0.0189265 0.119915 -0.00924366 +-0.0119328 0.103575 -0.0236984 +-0.00622128 0.0384574 0.0119659 +-0.0779451 0.128117 -0.00684087 +-0.0657248 0.120041 0.0506761 +-0.0623817 0.147548 -0.00757469 +-0.0875561 0.121673 0.0477803 +0.0222529 0.0365833 0.0139797 +-0.00142937 0.126525 -0.00622577 +-0.0226373 0.0386776 -0.0154938 +-0.0648114 0.0335165 0.00450366 +0.0210136 0.0713836 0.0497227 +-0.0348346 0.0347214 0.0345782 +-0.027609 0.0850124 0.048532 +-0.0856119 0.0819492 0.0204815 +-0.0601038 0.0347331 -0.00989443 +0.00929494 0.0956507 -0.0272714 +-0.0915391 0.118654 0.00731945 +-0.00449819 0.0604864 0.0551163 +0.0204818 0.0854612 -0.0266087 +-0.0429251 0.129071 0.00699388 +-0.0789967 0.138332 -0.00474353 +0.0343592 0.0519767 -0.00689954 +-0.0921408 0.125525 0.040859 +0.0516782 0.0702939 0.00352664 +-0.022659 0.0508417 -0.0286643 +-0.00138527 0.0424799 0.0468649 +0.0452912 0.0903849 0.0031762 +0.0401652 0.0717052 -0.00977551 +-0.0905185 0.148805 0.0131551 +-0.0470106 0.149195 0.00904699 +-0.0201874 0.0711262 0.0528634 +-0.0555353 0.0388223 -0.0103544 +-0.0714965 0.154091 0.0314059 +0.0232354 0.0968772 0.0460698 +-0.020264 0.0381835 0.0111715 +-0.0267635 0.177003 -0.0181719 +-0.0755105 0.151351 -0.0138965 +-0.00749931 0.0925693 0.0562701 +-0.063994 0.152679 -0.0352218 +0.0453927 0.0833662 0.00319518 +-0.0137973 0.081348 -0.0391911 +-0.0433806 0.120699 0.0278302 +0.0462048 0.0792353 0.00618416 +-0.0498122 0.141672 0.00439987 +-0.0592291 0.156682 0.00368263 +-0.0525972 0.055954 -0.00763978 +-0.0796979 0.108952 0.0363543 +-0.0334959 0.0335656 -0.024125 +0.0047441 0.131688 0.0100125 +-0.0530342 0.15087 0.0203968 +-0.0794975 0.133078 0.0519067 +0.0231582 0.125381 0.0124998 +-0.0898343 0.122953 0.0457467 +0.0336909 0.115719 0.00499933 +-0.0364989 0.0705154 0.0419282 +-0.0641133 0.155183 -0.0406054 +-0.0303694 0.034667 0.0426012 +-0.0474034 0.126784 0.0277907 +0.0312862 0.107094 -0.0114403 +-0.0399374 0.122179 0.0274746 +-0.0715157 0.106884 0.0372861 +0.0432452 0.100105 0.0111579 +-0.0264035 0.0386467 -0.0143525 +-0.053047 0.162457 0.00378602 +-0.0573985 0.155942 0.000257732 +-0.0104925 0.119661 0.037142 +-0.0107108 0.0656519 -0.03625 +0.0153129 0.0637748 -0.0295702 +-0.047649 0.128193 0.0275289 +-0.0395091 0.0986823 0.0417741 +0.0582857 0.0709436 0.0165587 +0.0144142 0.0418406 -0.0232939 +-0.0406818 0.0636695 -0.0135779 +-0.0700194 0.0408862 0.000674154 +-0.0898984 0.139201 0.0142132 +-0.0368759 0.102855 -0.0211016 +-0.031161 0.177923 -0.0048433 +-0.0216559 0.0380957 0.0145856 +-0.00121026 0.129846 0.000241032 +-0.0176504 0.0583335 0.0507279 +0.0492902 0.0704301 0.0235452 +0.008888 0.126629 0.0301427 +-0.0897638 0.136555 0.0361946 +-0.0903944 0.113745 0.0354564 +0.0327067 0.0659933 0.0401778 +-0.0167299 0.0383654 0.0243772 +0.0403616 0.0561214 -0.00579676 +-0.0891677 0.150225 0.0241083 +-0.0128992 0.165641 -0.0199242 +-0.0596113 0.0581543 0.0105384 +0.0326521 0.108705 0.0315863 +-0.0448105 0.126695 -0.00590468 +0.0440256 0.0973461 0.0131583 +-0.0694635 0.0618968 0.00696654 +-0.0667991 0.06462 0.0265045 +0.0388894 0.060327 0.0314833 +0.0120611 0.11304 -0.0178164 +-0.0635386 0.151731 -0.00361755 +-0.00656125 0.130634 0.0158888 +0.0344174 0.0430387 -0.00433126 +-0.00549778 0.129792 0.00189197 +-0.0499313 0.134148 0.000258943 +-0.0563569 0.155043 0.0148967 +-0.00737522 0.0388161 -0.00139235 +0.0283929 0.0347449 0.011384 +-0.010683 0.0908469 -0.0364652 +-0.048501 0.109818 0.0382143 +-0.0690431 0.169001 -0.0273587 +0.0102657 0.0954683 -0.0270889 +0.0126468 0.0820043 0.0535026 +-0.0507783 0.0613366 0.0327704 +0.00559724 0.128727 -0.00267638 +-0.044734 0.0724552 -0.0176324 +-0.0283736 0.0336157 -0.0231629 +-0.0679859 0.155562 0.00782161 +-0.0939853 0.126886 0.0172543 +-0.0238126 0.0840242 -0.0378907 +-0.0152029 0.16973 -0.0225848 +0.0303318 0.0382842 0.0249985 +-0.0463034 0.0382871 -0.0172845 +-0.012857 0.0968183 -0.0306036 +0.0139515 0.0933972 -0.0268828 +-0.0598089 0.0334419 -0.0052474 +-0.0682308 0.180685 -0.0584278 +-0.0564615 0.0452367 0.0437224 +0.0122525 0.036039 -0.0217262 +-0.0324956 0.119317 0.0295507 +-0.050852 0.0985174 -0.022094 +0.0359226 0.0926166 -0.0140085 +0.0475195 0.0583521 0.0315949 +0.00440154 0.12483 0.0329119 +-0.0725064 0.152612 -0.0398907 +-0.00124079 0.0388178 0.0271443 +-0.0855936 0.143251 0.00719107 +-0.0618131 0.161554 -0.0315928 +-0.0315498 0.0848744 -0.0295692 +-0.0167783 0.0770825 -0.0387039 +-0.024832 0.0930098 -0.0316179 +-0.0356976 0.121856 -0.0088333 +0.0456324 0.0875991 0.0131626 +0.0344601 0.0660136 0.0392214 +0.008313 0.0639391 -0.0318667 +0.0352496 0.0656442 -0.0147977 +-0.0468498 0.0999476 -0.0216953 +-0.0215077 0.111305 0.0395987 +-0.0345319 0.122423 0.0264163 +0.0333657 0.0835669 0.0412915 +-0.0594982 0.143919 0.0350801 +-0.0210079 0.184692 -0.0198306 +-0.09225 0.125605 0.0402535 +-0.0764966 0.117544 0.0520468 +0.0261457 0.100404 -0.0183041 +0.0314049 0.0431209 -0.00494122 +-0.000675964 0.056864 -0.0322097 +-0.0759667 0.135448 -0.00632576 +0.0194608 0.0865014 0.0497298 +0.0480114 0.0447211 0.0227621 +0.0382636 0.109749 0.0121659 +-0.0191397 0.0920316 0.0539979 +0.0148906 0.112386 -0.0170744 +-0.0156084 0.0378086 -0.0269252 +0.0166879 0.0355485 0.0409566 +-0.0719103 0.125286 -0.00863314 +0.0390766 0.0901064 0.0338413 +0.0238446 0.123573 0.0241681 +0.0180905 0.1262 -1.26099e-05 +-0.0241861 0.0351713 0.0521271 +-0.0864494 0.107673 0.0113573 +0.00554907 0.0341243 -0.0169616 +-0.0740319 0.152138 0.0351116 +-0.00773495 0.12664 -0.00628182 +-0.0408221 0.0343419 0.0301151 +0.0589083 0.0700926 0.0167877 +-0.0321537 0.168198 -0.0161712 +-0.0504087 0.0385253 -0.0116443 +-0.0719982 0.132651 0.0504199 +-0.0314938 0.0946271 0.0446065 +0.0415387 0.0610238 0.0295203 +0.0439094 0.0623682 -0.0025277 +-0.0745832 0.173457 -0.038075 +-0.0135013 0.163627 -0.011822 +0.00544999 0.097676 0.0507202 +-0.0233157 0.0695067 0.0475588 +0.0280693 0.112767 0.0337398 +0.0217645 0.057833 0.0471676 +-0.0875176 0.123015 0.0477063 +-0.0696847 0.0339658 -0.0022881 +-0.0251326 0.166747 -0.01768 +-0.0196064 0.177176 -0.0161969 +-0.0704588 0.109521 0.0380634 +-0.068398 0.171087 -0.0357069 +0.0111209 0.0908234 -0.0303895 +-0.0634854 0.149796 0.0371525 +0.00199826 0.122137 -0.0115071 +-0.0620402 0.161574 -0.0285866 +0.0543448 0.0567886 0.0274783 +0.00150309 0.0619973 0.0566118 +-0.0476286 0.0532889 -0.00972253 +0.0589424 0.064749 0.0219118 +0.00619535 0.0866083 -0.0331365 +0.00933928 0.0947261 -0.0283032 +0.0354634 0.113562 0.00993821 +-0.0622597 0.0337543 0.0119702 +-0.0286126 0.0778208 0.0441079 +-0.0291848 0.0649007 -0.0284708 +0.00716146 0.130043 0.000903466 +0.00854238 0.122369 -0.0118647 +0.0207709 0.0422154 0.0420468 +-0.0728566 0.114991 -0.00711315 +-0.062327 0.161572 -0.0265871 +-0.029645 0.121258 -0.00823608 +-0.0358448 0.0971832 -0.0228124 +-0.0241278 0.166765 -0.0179136 +-0.0833762 0.111067 0.0302504 +-0.0714085 0.0715566 0.0335759 +-0.0285052 0.11799 0.0309781 +-0.0436341 0.171062 -0.00299049 +-0.0254563 0.120601 0.0288472 +0.029856 0.0552774 -0.0168073 +-0.0277474 0.076815 -0.0357774 +-0.0305568 0.0845973 0.042796 +-0.0927119 0.117479 0.0363033 +0.00128405 0.131584 0.0158806 +-0.0853072 0.129862 0.0494994 +-0.0379579 0.11044 -0.0188969 +-0.0647113 0.0736859 -0.0158833 +-0.055064 0.0698751 0.038539 +-0.049499 0.0747526 0.0426395 +-0.0315694 0.0461612 0.0465874 +-0.0452548 0.169651 -0.00135352 +-0.0891941 0.0888738 0.0164555 +-0.0424866 0.0396651 0.043393 +-0.0870945 0.0846532 0.00548002 +-0.0530436 0.142764 -0.000526483 +-0.0664988 0.146992 0.0401715 +-0.0606301 0.0613516 -0.00265703 +-0.0321846 0.121876 0.025771 +0.0462743 0.0806463 0.0131736 +0.0355309 0.0527205 0.03199 +-0.0515418 0.0389441 -0.0114685 +0.0203586 0.0565379 -0.0271575 +-0.065976 0.0624665 0.0232686 +-0.0399438 0.0336374 -0.0217314 +-0.0584862 0.0833066 0.0438144 +-0.0449507 0.157934 0.00683281 +-0.0161733 0.168253 -0.0210405 +-0.0807961 0.0747709 0.0205502 +-0.0450711 0.153185 -0.00674331 +0.0122509 0.0766796 0.0546284 +-0.0165839 0.159908 -0.00982549 +-0.000693426 0.0367942 0.0054988 +-0.051438 0.0643214 0.0343604 +0.0173166 0.0411975 -0.0216758 +-0.0350925 0.0344983 0.0186791 +-0.0263041 0.10845 -0.0208491 +-0.0233997 0.0384863 0.0301002 +0.0336304 0.116029 0.0121428 +-0.084184 0.106292 0.0253661 +-0.0668605 0.102389 -0.0157781 +-0.0617744 0.0585089 0.0133805 +-0.037501 0.0634549 0.0414009 +0.0430852 0.0973049 0.0211625 +-0.0895621 0.0902365 0.017449 +0.0358939 0.0591552 0.0359628 +0.00041272 0.0994106 0.0497851 +0.0297429 0.112241 -0.00897067 +-0.0614607 0.155749 0.0232098 +-0.0190678 0.0347878 0.0501361 +0.0278403 0.121636 0.00711658 +-0.0293538 0.0475081 0.0471486 +-0.0878748 0.0861246 0.0134664 +-0.065267 0.132559 0.042478 +-0.0557536 0.0782586 -0.0197587 +0.0163546 0.0537375 -0.0279072 +-0.0768389 0.102007 -0.0101454 +-0.0762457 0.0708701 0.0261488 +-0.0434929 0.0410777 0.0433607 +-0.0820951 0.100566 -0.0055776 +-0.0124865 0.114128 0.0400495 +0.0495003 0.0496818 0.0274333 +0.0157351 0.0562704 0.0489701 +-0.0269138 0.0660937 -0.0314934 +-0.0205217 0.0448565 0.0528623 +-0.0147659 0.0742889 -0.0388052 +0.0292558 0.120076 0.0204837 +-0.0416192 0.0505822 -0.0110011 +0.00560187 0.0957087 -0.0293479 +-0.00449169 0.0575673 0.0538908 +0.0302324 0.0374168 2.32521e-05 +0.0404422 0.105635 0.0151656 +-0.0407521 0.0782965 -0.0192261 +-0.0321404 0.106348 -0.0206098 +0.0240312 0.1242 0.0213823 +0.0163901 0.0476981 -0.0240512 +-0.0540847 0.0341953 0.0274512 +0.0565883 0.0716209 0.0188851 +-0.063971 0.0343652 0.0164556 +0.0222263 0.0790988 -0.0263649 +-0.0480529 0.15019 -0.0042011 +-0.0364615 0.155102 -0.00949574 +-0.0107913 0.165034 -0.0192459 +-0.0720629 0.166594 -0.0198059 +0.0596228 0.0581166 0.00817617 +0.0193916 0.12656 0.0211758 +-0.029103 0.162278 -0.0149633 +-0.0114929 0.118282 0.0379089 +-0.0766495 0.0810868 -0.0106019 +-0.00184307 0.128669 -0.00252946 +-0.0100488 0.177211 -0.0257537 +-0.0544738 0.0624824 0.0299832 +-0.0840733 0.0966087 -0.0036103 +-0.0707265 0.080778 -0.0161096 +-0.0214771 0.122102 0.0291424 +-0.0428932 0.0358165 0.00869673 +0.0135568 0.129672 0.01894 +-0.00280854 0.081222 -0.0368531 +0.00517895 0.130408 0.0230466 +-0.067269 0.167119 -0.0252721 +-0.00747948 0.0919417 -0.035549 +-0.0365036 0.0478079 0.0395886 +-0.0569665 0.0548885 0.00161507 +-0.0744851 0.0663284 0.00571192 +0.0455621 0.0889987 0.00417598 +-0.0292503 0.036802 0.0530596 +-0.0435044 0.0605182 0.0400424 +-0.0915766 0.14196 0.0161629 +-0.0696706 0.14899 -0.0379959 +-0.0770107 0.152809 -0.00688788 +-0.0705529 0.0628294 0.0184736 +-0.044794 0.0870021 -0.0219374 +-0.0107414 0.120001 -0.0131465 +-0.000720709 0.0669492 -0.0343521 +-0.0214315 0.0906458 0.0534872 +-0.0354995 0.0619703 0.0405316 +-0.0628269 0.1502 -0.00476792 +-0.0640626 0.136748 0.0389546 +-0.0474986 0.102884 0.0412273 +-0.0116527 0.129557 0.00826831 +-0.0347732 0.0337732 -0.0208295 +-0.0214023 0.161048 -0.0139992 +-0.0752954 0.15636 -0.00353298 +-0.0688076 0.150274 -0.0424283 +-0.0238582 0.0382811 0.0283891 +-0.0935937 0.118737 0.0143019 +0.0184606 0.0475775 0.0422564 +0.00850874 0.0575011 0.0529664 +-0.0532082 0.149319 0.0233918 +-0.0320154 0.082069 -0.0305372 +-0.0190294 0.0739916 0.05444 +-0.00216392 0.0992947 0.0503069 +-0.0162644 0.11453 -0.017303 +0.0278981 0.113772 -0.00862034 +0.0459848 0.0602104 -0.00435135 +-0.0564936 0.0465915 0.0420515 +0.0169002 0.103075 -0.0211457 +-0.00731691 0.128182 0.0272242 +0.0205916 0.112587 0.0371117 +-0.0176105 0.0435992 -0.0276633 +-0.0274971 0.0619365 -0.0294418 +0.000272434 0.109746 -0.0202486 +0.0416377 0.084481 -0.00877138 +-0.0784224 0.0725404 0.0242536 +-0.00880164 0.0826803 -0.0379328 +-0.0147316 0.0685868 -0.0380387 +0.0333786 0.0476367 -0.00619535 +0.00348805 0.0413645 0.0460201 +-0.0227229 0.0625945 -0.0340193 +-0.0669932 0.138471 -0.00790807 +-0.037224 0.169679 -0.0130647 +0.0535575 0.0477942 0.0072134 +-0.0575878 0.158069 0.0020235 +0.0345395 0.0727588 0.0393885 +-0.0699466 0.072981 0.0361776 +0.020686 0.0367224 0.0371237 +-0.0728722 0.0355547 0.00103582 +0.00487825 0.131703 0.0129125 +0.0580945 0.0523756 0.014183 +-0.0866528 0.145956 0.0348405 +-0.00749813 0.125151 0.0317009 +0.0403042 0.0398794 0.0201445 +0.0355341 0.0875716 0.0391778 +-0.0249398 0.157384 -0.00964166 +0.00350274 0.0489558 0.0513808 +-0.00381736 0.131135 0.0125816 +-0.00837752 0.0353543 0.048476 +0.0140849 0.129676 0.00773008 +-0.010101 0.102023 -0.0240718 +0.0446756 0.091763 0.0191604 +-0.0637279 0.173384 -0.0513558 +-0.031495 0.061765 0.0382603 +0.0366571 0.0968397 -0.0108144 +-0.0285085 0.115306 0.0336868 +-0.00497421 0.126254 0.0309961 +0.00248615 0.104372 0.0430232 +0.00642086 0.116423 -0.0174422 +-0.0636795 0.0658475 -0.00727738 +-0.0891519 0.0956005 0.0104313 +-0.0860649 0.0994533 0.00140442 +-0.0735831 0.152654 -0.0328925 +0.00651157 0.066084 0.0555109 +0.0344822 0.102017 -0.0120204 +-0.0637552 0.15245 -0.00517189 +-0.077532 0.159745 -0.0169143 +0.00251128 0.0661582 0.0562906 +0.0151093 0.0887421 0.0518346 +-0.00945842 0.0387253 -0.00172767 +-0.0471724 0.133935 0.00981498 +-0.0188178 0.158773 -0.00942574 +-0.0194961 0.0654004 0.0509321 +-0.0774489 0.163906 -0.0229523 +-0.0267283 0.156621 -0.00899742 +-0.0465008 0.111213 0.0371008 +-0.00249784 0.0939038 0.0553992 +-0.0715513 0.0342218 0.00249626 +0.0107439 0.130936 0.0122066 +0.0266603 0.0421651 0.0343135 +0.011996 0.0344545 0.00276628 +-0.0653727 0.074532 0.0393295 +-0.0417745 0.172541 -0.00446528 +-0.0368752 0.0345479 0.0395694 +0.00440907 0.131695 0.0141669 +0.0189748 0.0699869 0.0502663 +-0.0690298 0.155601 0.00744971 +-0.0265663 0.0356908 0.0529027 +-0.0621593 0.13389 0.0382274 +-0.0375341 0.0356789 0.0117182 +-0.00861273 0.0434199 -0.0261503 +0.0317849 0.0490447 0.0333888 +-0.0637123 0.0445754 0.0336875 +0.0376665 0.0374378 0.0089364 +-0.058497 0.0904388 0.0452323 +-0.0442728 0.0437529 -0.0143172 +0.0204519 0.0357096 0.00704168 +0.0282191 0.0941913 -0.0197138 +-0.0688839 0.117973 -0.00851105 +0.0338372 0.104851 -0.0110391 +0.024912 0.0505255 0.0392969 +0.0125119 0.107097 0.0421465 +-0.00117532 0.0998676 -0.0237773 +0.0246952 0.0420222 0.0382704 +-0.0398433 0.0971287 -0.022179 +0.0268619 0.108823 -0.0133055 +-0.0799271 0.140795 0.0466609 +0.0180138 0.0808533 0.0524986 +-0.0868879 0.111328 0.0363925 +0.000567537 0.0921561 -0.0336854 +-0.0892038 0.0969467 0.00941895 +0.00816432 0.0904541 -0.0318561 +-0.064746 0.155508 0.00899366 +-0.0911853 0.113324 0.0173235 +-0.00120622 0.113981 -0.0187843 +-0.00924245 0.0407867 0.049553 +-0.00349897 0.0575855 0.053786 +-0.0375091 0.0407357 0.0441865 +-0.0584982 0.108398 0.0387966 +0.0391307 0.0786589 -0.0107679 +-0.0474967 0.100136 0.0424923 +0.0275962 0.102142 0.0400686 +0.0233313 0.0578274 -0.025582 +-0.0510235 0.0723937 0.0407728 +0.0280639 0.121158 0.0057742 +-0.0318235 0.0637622 -0.0194381 +-0.038893 0.0378836 0.042947 +-0.0455156 0.14919 0.00769333 +-0.0724664 0.0678961 0.0260135 +-0.0614699 0.156861 -0.0255852 +0.0511802 0.0687267 0.0256724 +-0.0639329 0.153712 -0.0368711 +-0.055548 0.0628794 0.0303893 +0.0228246 0.0344564 0.00866393 +0.0333583 0.0505553 -0.00686804 +-0.0436286 0.0534388 -0.0110764 +0.0170321 0.128388 0.0173658 +-0.0484634 0.122511 0.0297787 +-0.0908772 0.119982 0.00630567 +-0.0251882 0.121015 0.0283088 +-0.0621056 0.167818 -0.0515918 +-0.0434918 0.0451945 0.0416496 +-0.0261859 0.172679 -0.0191085 +0.0581533 0.0685799 0.00535861 +-0.0308235 0.12443 -0.00028071 +-0.088653 0.0982606 0.00741366 +0.000114549 0.110154 -0.0201623 +0.032895 0.11463 -0.00105927 +0.0393368 0.0984458 -0.00682083 +0.0171551 0.0988258 -0.0226279 +0.0605804 0.0651016 0.017176 +-0.0528261 0.149337 0.0214103 +-0.0213292 0.159914 -0.0125433 +0.000685965 0.124734 0.0330095 +0.0425127 0.0872289 0.028142 +-0.0754377 0.172239 -0.0469918 +-0.00949675 0.039136 0.0341772 +-0.0750736 0.0773173 0.0349007 +-0.0204972 0.104391 0.0429524 +0.044682 0.0804275 0.0241291 +0.0288766 0.0477511 0.0362254 +-0.0590849 0.0584397 0.0175987 +-0.0187468 0.0685918 -0.0381091 +-0.0908268 0.137853 0.0181986 +-0.0934137 0.128236 0.0152484 +-0.0722094 0.155629 0.00630789 +-0.0701241 0.109501 0.0382316 +-0.0833629 0.0829469 -0.00357326 +-0.0219158 0.177176 -0.0142605 +-0.0038834 0.0389548 -0.00453366 +-0.0468309 0.0956366 -0.0220125 +0.0589161 0.0621713 0.00415053 +-0.0518659 0.144686 0.0163701 +-0.0589723 0.0448133 0.0132235 +0.05973 0.0664208 0.00812497 +-0.0911185 0.128332 0.0402364 +0.0082766 0.0667723 -0.0317926 +-0.0557755 0.0826404 -0.0214196 +-0.0254275 0.181837 -0.00892324 +-0.0899879 0.140645 0.0281829 +-0.0725199 0.141421 0.0466976 +0.0173961 0.0343459 0.000212982 +-0.0435004 0.0424369 0.0431009 +-0.0397849 0.155107 0.00553982 +0.0474231 0.0702463 0.00356979 +0.00935197 0.130836 0.00599246 +-0.0466333 0.0562665 -0.0109539 +-0.0134154 0.0393527 0.0385623 +0.0202221 0.0721388 -0.0279345 +-0.0855696 0.139064 0.00222203 +-0.0690425 0.0382325 0.0107396 +-0.0147406 0.129011 0.0158201 +-0.0436768 0.0636379 -0.0137577 +0.058107 0.0694858 0.00643586 +-0.0523916 0.160438 -0.00307609 +-0.0208502 0.120881 -0.00994613 +-0.0144972 0.0772805 0.0565653 +0.0146633 0.0548535 0.0491553 +-0.0872189 0.103599 0.00739967 +-0.013497 0.0701643 0.0543951 +-0.0727808 0.161025 -0.0379399 +0.0541744 0.0495318 0.0218692 +-0.0180637 0.122407 0.0308158 +-0.0437406 0.150663 0.00676805 +-0.0471693 0.128157 0.0265222 +0.000324051 0.0583269 -0.0327186 +0.0183373 0.109817 -0.016338 +-0.0826495 0.137607 -0.000712655 +0.0256839 0.122773 0.00490001 +0.0354824 0.111268 -0.000157004 +-0.0457208 0.0643263 0.038969 +0.0547017 0.0700348 0.00381661 +-0.00761606 0.128811 0.0256727 +-0.0687402 0.156349 0.0177202 +-0.085121 0.108927 0.00536277 +-0.0739548 0.136937 -0.00691386 +-0.00649589 0.0884166 0.05709 +-0.068322 0.144999 -0.0199128 +-0.0891584 0.142048 0.0331685 +-0.0282821 0.0889315 -0.0326167 +-0.0270715 0.0381475 0.00619785 +0.0226739 0.0430625 -0.011732 +-0.0895091 0.147137 0.0278175 +-0.0396286 0.0534411 -0.011004 +-0.0570587 0.0521462 0.00466373 +-0.0421407 0.162162 -0.0108328 +-0.0831356 0.0816494 -0.00150376 +-0.0274399 0.180304 -0.00715734 +-0.055838 0.0927189 -0.0219026 +-0.0624754 0.163097 -0.0475912 +-0.064973 0.0365283 0.0405192 +-0.0434783 0.0690982 0.041489 +0.0407433 0.102836 0.021176 +-0.0588838 0.0468495 0.0306747 +0.00493781 0.100395 -0.0223096 +0.00122691 0.116615 -0.0176232 +-0.035551 0.0451135 -0.0264751 +-0.025842 0.091626 -0.0326108 +0.0509675 0.0463703 0.0218015 +-0.077144 0.164539 -0.0230622 +-0.0613807 0.122656 0.0428396 +0.0364941 0.0454217 0.0304675 +-0.0655017 0.0931357 0.0435076 +-0.0869021 0.114398 0.00327085 +-0.0624965 0.109755 0.0377659 +-0.0219613 0.124807 -0.00195706 +-0.0564977 0.109762 0.0379025 +-0.0489044 0.0413839 -0.0112514 +-0.0464999 0.104301 0.0412272 +-0.0689362 0.173831 -0.0430963 +-0.0274521 0.175685 -0.00821886 +-0.00850113 0.0633575 0.0560799 +-0.0350673 0.0752529 -0.020583 +-0.0702674 0.128451 0.0511564 +-0.0318141 0.156607 0.00124178 +0.0187844 0.127527 0.00803838 +-0.0133229 0.0978873 -0.0277326 +0.00349851 0.0356817 -6.66678e-05 +-0.0714787 0.0630924 0.012741 +-0.0723877 0.16801 -0.0460141 +-0.0314985 0.12639 0.0112101 +0.0103131 0.0935662 -0.0290602 +0.0162881 0.0708862 -0.0299631 +-0.0486922 0.0693814 -0.0146213 +-0.00965082 0.0496857 -0.0310806 +-0.0472721 0.035073 0.043832 +-0.0505797 0.0528906 0.0145102 +-0.00843296 0.037899 -0.0156923 +-0.0276376 0.0383723 -0.00322479 +-0.0394609 0.174124 -0.00699657 +-0.0444987 0.125316 -0.00848377 +0.0413134 0.0732089 -0.00778125 +-0.0654437 0.17819 -0.0606312 +-0.0194942 0.0498847 0.046612 +-0.0470957 0.0376632 0.0453493 +-0.0435029 0.0832144 0.0426759 +-0.0134871 0.123689 0.0319378 +-0.0174978 0.0744121 0.0553624 +0.0333782 0.11597 0.0192002 +-0.0203318 0.0946383 0.0508766 +-0.0412055 0.0419705 -0.0232873 +-0.0815038 0.0885533 0.0328994 +-0.0703591 0.0620888 0.0120183 +-0.0334658 0.0396217 0.0500837 +-0.036771 0.0343273 0.0309808 +-0.0165061 0.126041 -0.00139683 +0.0369819 0.102039 0.0307859 +-0.0207502 0.0626823 -0.0352205 +0.0061481 0.104478 -0.0212191 +0.0323926 0.117262 0.0173907 +-0.0357746 0.08137 -0.0222094 +-0.0375579 0.0341991 0.0273875 +-0.0503289 0.0543622 0.0156654 +-0.0287388 0.076371 0.0428795 +-0.0631791 0.0597373 0.0065938 +-0.00649181 0.104468 0.0439265 +0.00653601 0.0924318 -0.0319265 +-0.0371937 0.168177 -0.0134205 +-0.0375614 0.128197 0.00751871 +-0.0898903 0.135179 0.0352087 +0.037196 0.0699864 0.036159 +0.0276189 0.0564968 -0.0197599 +0.0447325 0.0931835 0.0161662 +0.0398803 0.0927067 0.0314285 +-0.0468272 0.125328 0.0268353 +-0.0715318 0.0347543 -0.000134182 +-0.0859938 0.0978404 0.0272064 +-0.0460065 0.0410789 -0.0142843 +-0.0499829 0.0586014 0.0334591 +-0.0614235 0.172219 -0.0618413 +0.00350193 0.0474397 0.0500395 +0.0226438 0.0875613 0.0487078 +0.0374992 0.0644481 -0.0117672 +-0.00648083 0.111994 -0.0206545 +-0.0934649 0.120072 0.0123034 +0.00542168 0.12935 -0.00135496 +-0.0765071 0.126009 0.0528667 +-0.0308338 0.109919 -0.0183719 +0.018594 0.125548 0.0250901 +-0.0205082 0.0474421 0.0508554 +-0.0252811 0.168282 -0.0104061 +-0.051716 0.150726 0.0145842 +-0.0317716 0.0863018 -0.027557 +-0.0793223 0.151473 0.000118749 +-0.0823192 0.154091 0.0115231 +0.0432611 0.071972 -0.00279979 +-0.0761461 0.154973 -0.00265921 +-0.032878 0.156591 -0.0107994 +0.0360211 0.0628935 -0.0127986 +-0.0321679 0.120788 0.027294 +-0.00521106 0.038426 0.0176436 +0.0377365 0.0388851 0.0205214 +0.0183131 0.127887 0.0164149 +-0.0580398 0.0608775 0.0245548 +-0.0791963 0.108632 0.0349508 +-0.00201716 0.131125 0.0175388 +0.0407504 0.0633497 -0.00473671 +0.0447287 0.0917385 0.00119217 +-0.0534928 0.0848236 0.0453456 +0.00605741 0.0346665 0.039556 +-0.0276244 0.0436594 -0.0289391 +-0.00868086 0.056987 -0.0336771 +-0.058573 0.0613666 -0.00334192 +0.00741372 0.0360842 -0.0231635 +0.00514996 0.0337963 0.0112147 +-0.064123 0.113942 -0.0123233 +0.0527625 0.0723674 0.0204268 +-0.0354974 0.0634085 0.0409173 +0.0287147 0.0352518 0.00538775 +-0.0522813 0.0461425 0.0206748 +0.0547864 0.0548406 0.00018303 +0.00557978 0.101599 0.0456072 +0.00472897 0.0950887 -0.030676 +0.0355131 0.0781566 0.0390786 +0.0402454 0.0843611 -0.0117637 +-0.0605819 0.0468615 0.000669297 +-0.0394923 0.074754 0.042367 +-0.0331798 0.0779303 -0.0275261 +-0.0683095 0.178205 -0.0587107 +-0.00995429 0.0389301 0.0324647 +-0.0495001 0.108413 0.0388185 +-0.0659124 0.113781 -0.0114133 +-0.0404538 0.105662 0.0393313 +-0.0654729 0.17978 -0.0563035 +-0.0614888 0.0918402 0.045217 +0.0333657 0.0640658 -0.0168115 +-0.0809488 0.144539 -0.000825536 +-0.0545043 0.0918174 0.0448821 +-0.0504943 0.147794 0.0128405 +-0.0745085 0.118967 0.0529255 +-0.0596424 0.0629313 -0.00554826 +0.0600133 0.0636587 0.00714888 +0.0272456 0.0746657 -0.023693 +0.0433693 0.0575272 -0.00543691 +-0.0084928 0.0591086 0.0550857 +0.0327041 0.0686805 0.0402125 +-0.0371896 0.166685 -0.0135589 +0.0115191 0.107071 0.0419973 +0.0398757 0.096658 0.0297176 +-0.0882102 0.118977 0.047099 +-0.0794917 0.134473 0.0511764 +-0.0147562 0.0388704 -0.0103641 +-0.0729608 0.135493 -0.0074448 +-0.0829718 0.144576 0.00217748 +0.0121355 0.107265 -0.0192728 +0.00249537 0.0427747 0.0458993 +-0.0590743 0.136941 -0.00615344 +-0.0740187 0.0822617 -0.01463 +0.0274881 0.0349726 0.0165028 +0.0249311 0.118938 0.0303034 +-0.0860712 0.137702 0.0022107 +-0.00546373 0.0337972 -0.022595 +-0.0425018 0.0506116 0.0394181 +0.0044907 0.119648 0.0370088 +-0.066886 0.129814 0.0472408 +-0.033949 0.0667384 -0.0165589 +0.0265464 0.0699406 0.043619 +-0.0486667 0.134012 0.00340208 +0.0201914 0.117982 0.0346477 +-0.033458 0.0353739 -0.0310204 +-0.0251991 0.0536651 0.0400375 +-0.0689113 0.147966 -0.0319204 +-0.0650665 0.151369 -0.0356223 +-0.065894 0.118002 -0.00906639 +-0.00150449 0.0350731 0.0394353 +0.00648653 0.0951017 0.0524749 +0.0322641 0.11194 -0.00663069 +0.0356067 0.113152 0.00567562 +-0.0317604 0.120314 -0.00921321 +-0.0666072 0.0846933 0.0437683 +-0.0745085 0.13306 0.0516401 +-0.0914301 0.133749 0.0202171 +-0.0271327 0.0917299 -0.030613 +0.0356733 0.107346 0.028881 +0.021724 0.104691 0.0421173 +-0.0214953 0.0474568 0.0509792 +0.0189666 0.119003 -0.0102495 +0.0330783 0.0534528 0.0353209 +-0.0796959 0.154266 0.00805358 +-0.0370933 0.175555 -0.00565624 +-0.0324183 0.116998 -0.0137964 +-0.015069 0.117815 -0.0147928 +-0.0541455 0.0482522 0.0392578 +-0.017538 0.18639 -0.0186026 +-0.0486882 0.138613 0.0123943 +-0.0134995 0.0786948 0.0569449 +-0.0792474 0.0803083 0.033239 +-0.0523607 0.12647 -0.00557636 +-0.0261456 0.180134 -0.00803266 +-0.0654933 0.0875673 0.0446215 +0.0410795 0.0647663 -0.00478377 +0.038759 0.104954 -0.0010414 +0.0213206 0.103387 0.0432887 +0.00249002 0.112797 0.0416669 +-0.02662 0.157614 -0.0107103 +-0.0524373 0.0487028 0.0136696 +0.0367672 0.0605146 0.0354804 +-0.0769184 0.0832691 0.0369336 +-0.0650248 0.0337055 0.00787315 +-0.0515046 0.159378 0.00834015 +-0.0547588 0.079768 -0.0207581 +-0.0799475 0.0796892 0.0318714 +-0.0819371 0.129486 -0.00455242 +0.0162371 0.0359566 0.0423025 +-0.052497 0.108432 0.038849 +-0.0330169 0.0750953 -0.0275046 +-0.0367909 0.0856326 -0.0224706 +-0.0909792 0.143017 0.0266346 +-0.0790213 0.169435 -0.0369802 +-0.0224887 0.120777 0.0306794 +-0.0714154 0.063966 0.00470687 +-0.0833338 0.121705 0.0492392 +-0.00224884 0.0410819 0.0473849 +-0.0064961 0.0647536 0.0562043 +-0.0154675 0.0382885 0.0102401 +0.0316901 0.0754766 0.0423249 +-0.0682663 0.0409329 0.00988698 +-0.0397472 0.0753921 -0.0181662 +-0.0404974 0.0534278 0.0394751 +-0.027235 0.0964545 -0.0242996 +0.01346 0.094917 0.0501359 +-0.0101655 0.178729 -0.0267529 +-0.0368558 0.0971787 -0.022608 +-0.0618627 0.061311 0.023361 +-0.00785703 0.0384956 0.0242725 +-0.00828946 0.0422134 0.0491908 +-0.0626761 0.177191 -0.057627 +-0.0197826 0.0770974 -0.0390157 +-0.0283747 0.0368322 -0.0186629 +-0.0678325 0.165206 -0.0549947 +-0.0762767 0.179149 -0.050884 +-0.0126939 0.0585083 -0.0350263 +0.0259904 0.108758 0.0377477 +0.042201 0.0819186 0.0294354 +0.0164623 0.11028 -0.0168584 +-0.000216315 0.0411702 0.046762 +-0.0166283 0.0393036 -0.0275139 +-0.0660426 0.171124 -0.0420386 +0.0456785 0.0862046 0.0141695 +0.00138117 0.044939 -0.0263139 +0.0461205 0.0704224 0.0223322 +-0.0776245 0.0703136 0.0210685 +-0.0756983 0.148597 -0.0138657 +-0.00849865 0.0773628 0.0576515 +-0.0145231 0.0446315 0.0506096 +-0.0683418 0.0625091 0.0209713 +0.0172542 0.0764235 -0.0285503 +0.00803706 0.0343648 -0.0148062 +0.02126 0.0748992 -0.0268979 +-0.0630463 0.113863 0.0385547 +-0.0145507 0.0980154 0.0489953 +-0.0546077 0.131128 0.0350935 +-0.012492 0.061843 0.0546212 +-0.028497 0.0550003 -0.0233987 +0.0217846 0.11532 -0.0122874 +-0.0931885 0.121553 0.0392843 +-0.0522878 0.055669 0.0133058 +-0.0592645 0.138135 0.0336221 +-0.0895773 0.139272 0.0261794 +-0.0653179 0.156011 -0.0499494 +0.0382996 0.103126 -0.00513692 +-0.00322923 0.0355467 -0.0162422 +0.0141613 0.0988714 -0.0229756 +-0.0404979 0.0776396 0.043177 +-0.000517251 0.0386237 0.0468325 +-0.0745039 0.117561 0.0526615 +-0.0404908 0.101464 0.0408992 +0.00150976 0.0562224 0.0541662 +-0.0302058 0.0649962 -0.0264588 +-0.0427465 0.0393017 -0.0242897 +-0.0680504 0.12005 0.0525411 +0.0105239 0.101777 0.0472989 +-0.051788 0.0855011 -0.0215694 +0.0121427 0.124109 -0.00776299 +-0.0714952 0.123214 0.0534125 +-0.0377025 0.0444987 -0.0253388 +-0.0285008 0.0573948 0.0366096 +-0.0557355 0.0753549 -0.0185519 +-0.0136024 0.0377623 -0.0264268 +-0.055443 0.13396 0.033868 +-0.0329956 0.122915 -0.00595413 +-0.0659107 0.120913 -0.00886784 +-0.00952503 0.0920885 -0.0357277 +-0.0437604 0.036567 -0.0252782 +-0.020729 0.181491 -0.0220031 +0.00793492 0.130935 0.0197362 +-0.00287417 0.10736 -0.0221559 +-0.0531678 0.0503031 -0.00638771 +-0.0649059 0.116607 -0.0100071 +0.0311853 0.0491232 0.0343139 +-0.0464498 0.034849 -0.0185661 +-0.0448976 0.168579 0.00154181 +0.0324248 0.0752705 -0.0187807 +0.00488488 0.0387234 -0.0100497 +-0.0607447 0.0752603 -0.0176616 +-0.0575406 0.0387439 -0.00960491 +-0.0874426 0.110454 0.0173412 +-0.0517698 0.0516016 0.0312301 +-0.0727656 0.156832 -0.0339136 +0.0123073 0.0638424 -0.0304488 +-0.00866157 0.0541436 -0.0334268 +0.00183737 0.0373069 0.04638 +-0.0298138 0.0344903 0.0411187 +-0.0674167 0.149888 -0.0375972 +-0.0770317 0.088754 0.0382806 +-0.0857815 0.0897033 0.0272482 +-0.0125983 0.037741 -0.0261872 +0.0182378 0.0893522 -0.0266421 +-0.0766704 0.154203 -0.00290271 +-0.0684648 0.0617211 0.0180797 +0.0505111 0.0637895 0.0291551 +-0.0497918 0.143216 0.0113941 +-0.0616227 0.156855 -0.0295846 +0.0290304 0.0968725 0.0421292 +-0.0756542 0.0679921 0.00394259 +-0.0526765 0.0514226 0.0124143 +-0.0625972 0.0348156 0.0215996 +-0.0544966 0.0791235 0.0440855 +-0.0544133 0.159808 0.00694146 +2.76528e-05 0.0391548 -0.0114154 +-0.00549746 0.0503818 0.0516227 +-0.0646199 0.0359342 0.0410351 +0.0410489 0.0445052 0.0289111 +-0.0356376 0.0548341 -0.0105043 +0.0272051 0.0465425 -0.0127095 +-0.0513967 0.161204 -0.00381805 +-0.0424671 0.124776 0.022048 +-0.0300883 0.0335187 -0.027157 +-0.0362553 0.0336801 0.0101688 +0.0513156 0.0588831 -0.00408417 +0.0399488 0.0688733 -0.0097971 +-0.0617146 0.155302 -0.0255819 +-0.0112103 0.129394 0.0199977 +-0.0552256 0.153277 0.0254807 +-0.0697772 0.0409122 0.00855159 +-0.0257631 0.0755055 -0.0369491 +-0.0601959 0.0422699 -0.00706205 +-0.0475933 0.134581 0.0184866 +0.0267481 0.0659374 0.0438828 +-0.0790343 0.0886679 0.0360671 +0.0606094 0.0637127 0.00915317 +-0.0823359 0.140394 0.000222625 +-0.0792589 0.1445 -0.00280742 +0.0288607 0.118772 0.0260462 +-0.000258207 0.0388058 4.93079e-05 +0.0142249 0.0779815 -0.0305449 +0.0279207 0.111816 -0.0105079 +-0.0649061 0.108122 -0.0141961 +0.0372666 0.0547889 -0.00619261 +-0.0258342 0.159627 -0.000620301 +-0.0761165 0.0874143 0.0388159 +0.0425599 0.101502 0.0121632 +0.0533305 0.0723883 0.0073663 +-0.0814882 0.139397 0.0468344 +-0.0119496 0.127575 -0.00116297 +0.0308488 0.116432 0.0267923 +-0.0342458 0.127284 0.0102001 +0.0488271 0.0733963 0.0130056 +-0.017912 0.059765 0.0509406 +0.0133103 0.0753629 0.0544488 +-0.0896061 0.126751 0.00429509 +0.034401 0.0461473 -0.00601616 +-0.0485411 0.166778 0.000587101 +0.0342862 0.0782566 -0.0167489 +-0.00549615 0.0925657 0.0562617 +-0.0700277 0.153659 -0.0489787 +0.00562336 0.034628 0.021452 +-0.0825014 0.0978733 -0.00561152 +-0.0665019 0.0818141 0.0428543 +-0.0628077 0.166262 -0.0415912 +0.0329576 0.0753133 -0.0177979 +0.0159612 0.0887478 0.0513106 +-0.0348521 0.0972102 -0.0229902 +0.00689753 0.13043 0.00224143 +0.0163113 0.0637479 -0.0291811 +-0.0681449 0.144372 -0.0168262 +-0.0709402 0.170831 -0.0510269 +-0.0618586 0.161576 -0.034591 +-0.05709 0.0562779 0.00261705 +-0.0511762 0.163872 0.00329038 +-0.0295002 0.0688631 0.0391758 +-0.0548706 0.0634738 0.0317723 +0.00519565 0.0838361 -0.0338494 +0.0412244 0.0703917 -0.00779979 +-0.0485608 0.164 0.00493162 +0.0405319 0.0913292 0.030651 +-0.0364055 0.0394201 0.0459276 +-0.0885895 0.126718 0.00227148 +-0.00135158 0.0925397 -0.0341169 +-0.0155034 0.0472755 0.0490261 +-0.0533709 0.0334238 -0.0075905 +-0.0135602 0.174221 -0.0197865 +0.0151695 0.0534137 0.0481113 +0.00249824 0.119676 0.0375233 +-0.0574904 0.0847348 0.0442092 +-0.0706266 0.111419 0.0453421 +-0.0498404 0.122243 -0.0112035 +-0.0580787 0.133988 -0.00600022 +-0.0856455 0.0845341 0.000486997 +-0.0677324 0.0847093 0.0432514 +-0.0516192 0.112658 -0.0171697 +-0.0294883 0.101537 0.0426799 +-0.0562967 0.0548357 0.00668262 +-0.0870689 0.0968011 0.00243877 +-0.0809104 0.126584 -0.00546143 +0.0226682 0.115322 0.0347114 +-0.0702279 0.156078 0.0244771 +0.00613975 0.0976727 -0.0254362 +-0.0654107 0.0782591 0.0414837 +0.0154936 0.104462 0.0445958 +-0.0557216 0.125528 0.0387388 +-0.0708946 0.1037 -0.0131771 +0.0207514 0.10232 -0.0203322 +0.040798 0.105646 0.00916422 +-0.0789759 0.136856 -0.00458832 +0.00163159 0.126824 0.0304308 +0.0217692 0.0444645 -0.0177596 +0.00149843 0.0965502 0.0531993 +0.00416774 0.034456 0.0194982 +-0.022279 0.185099 -0.0171819 +-0.0144819 0.0759021 0.0565083 +-0.062395 0.163038 -0.0545883 +0.0386856 0.0757975 -0.0108084 +0.0230618 0.0389706 0.0372995 +-0.0661823 0.154393 0.00121795 +-0.0751879 0.179229 -0.0530087 +-0.000499764 0.0590718 0.0548831 +-0.0616117 0.16 -0.0305904 +-0.0254372 0.0796492 0.0521904 +-0.087722 0.128407 0.0462822 +-0.0361331 0.122312 0.027301 +-0.0259579 0.0383264 -0.00469023 +-0.0615278 0.0399873 -0.00779984 +-0.0911978 0.147452 0.0151543 +-0.0776353 0.15693 -0.0189052 +-0.048662 0.0345502 0.0387985 +0.00500615 0.0390969 0.0281732 +-0.0664605 0.152204 -0.0437352 +-0.0514963 0.157854 0.00954267 +-0.0893902 0.139278 0.0291842 +-0.092072 0.128303 0.0302461 +-0.0166194 0.0421642 -0.027592 +-0.0880283 0.128084 0.00127828 +-0.06275 0.178179 -0.0598124 +-0.0242491 0.0796961 0.0538111 +-0.0575802 0.14965 0.0326026 +-0.0598499 0.0364094 -0.00954648 +0.0260337 0.0639191 -0.0225668 +-0.0215138 0.185205 -0.0184453 +0.00733204 0.0567933 -0.0307054 +-0.0394107 0.125604 0.021627 +-0.0805747 0.154604 0.0238516 +0.0319556 0.0942571 0.0410831 +-0.0503335 0.0345244 0.0401985 +-0.0521615 0.159088 -0.00368491 +-0.0816591 0.0828436 -0.00556986 +0.0120628 0.0346214 0.0245844 +0.00946799 0.112678 0.0395888 +-0.00501719 0.0348021 0.0425449 +-0.080434 0.0763484 0.0258387 +0.0419394 0.0802864 -0.00678235 +-0.0270715 0.179993 -0.0160072 +-0.00929516 0.17029 -0.0258484 +0.028889 0.0549767 0.0398373 +-0.0324184 0.123701 0.0227019 +-0.00768132 0.0976452 -0.0294292 +-0.0534956 0.0478266 0.0400304 +-0.0637998 0.0852745 -0.0191701 +0.0175395 0.0364962 0.0420884 +0.0289699 0.100814 0.0402993 +-0.0384924 0.0478181 0.0398313 +-0.00649796 0.0457161 0.0472731 +0.00861625 0.13122 0.00857267 +-0.0424707 0.0634258 0.0409808 +-0.0147714 0.163994 -0.0109737 +0.0514504 0.0735674 0.0125302 +0.0157166 0.0461353 0.0435597 +-0.0886232 0.152074 0.0182297 +-0.0732612 0.155462 -0.02991 +0.0560042 0.0728404 0.0157211 +-0.0465551 0.0447198 -0.0107805 +-0.020486 0.18455 -0.0138786 +0.00948927 0.0976692 0.0490505 +0.0112322 0.0342419 -0.000927635 +0.0153695 0.0617406 0.0502582 +-0.0137598 0.0382596 0.0196658 +0.0302365 0.0828976 -0.0200496 +-0.00484087 0.0994589 -0.0252596 +-0.0335771 0.177292 -0.00581839 +-0.0706171 0.160991 -0.0459386 +-0.0381352 0.155099 0.00439417 +0.0262713 0.112733 0.0346521 +-0.0288992 0.0377652 0.0242203 +-0.0741081 0.174769 -0.0407073 +0.0312687 0.106096 -0.0123707 +-0.0467828 0.168244 0.000200438 +-0.0544952 0.0440117 0.0450302 +0.00623037 0.129867 0.000104943 +-0.043169 0.163647 -0.0101027 +-0.0034944 0.103046 0.0439357 +-0.0265042 0.106069 -0.02235 +-0.0577843 0.0811473 -0.0206854 +-0.0358177 0.0886369 -0.024178 +-0.0726405 0.148337 -0.0310398 +-0.0454975 0.111194 0.0370842 +-0.0671848 0.0335335 0.00220964 +-0.0117936 0.0667192 0.0544625 +-0.0609674 0.125285 -0.00834926 +-0.080841 0.0760714 -0.00147772 +-0.0522091 0.118697 -0.0134778 +-0.074349 0.162439 -0.0349528 +-0.0740415 0.112641 0.0489542 +-0.0294567 0.0847909 0.044594 +-0.0204364 0.038385 0.0254029 +-0.0497015 0.070866 -0.0150622 +-0.0525829 0.113848 -0.0164008 +-0.0415348 0.163761 0.00444738 +-0.0644934 0.106993 0.039043 +0.0437981 0.0734503 -0.00176783 +-0.0284962 0.0946634 0.0451029 +0.0309795 0.0506032 0.0357766 +-0.0395331 0.128532 0.0067941 +-0.0424235 0.12018 -0.013117 +-0.0197167 0.103079 -0.0233045 +-0.0430994 0.12944 0.0113807 +-0.0913339 0.117411 0.0283055 +0.026348 0.0463448 0.037827 +-0.0406738 0.0606904 -0.0121867 +-0.071511 0.0930107 0.0417462 +-0.0866623 0.0964635 0.0264805 +0.00386952 0.131337 0.0182591 +0.0282305 0.08443 -0.0217055 +0.0128412 0.0347905 0.0282102 +0.00434097 0.053874 -0.0300717 +-0.0754795 0.0704499 0.0266608 +-0.0699695 0.135529 -0.00821968 +-0.0305143 0.0348089 0.0211376 +0.00750189 0.118272 0.0376599 +-0.0504996 0.108397 0.0385655 +-0.0779682 0.135412 -0.00525448 +-0.0273965 0.0380183 0.0261038 +-0.0520915 0.129726 0.0334448 +-0.0221568 0.157426 -0.00647102 +-0.0562219 0.0560519 -0.00142054 +-0.0817829 0.110167 0.0313299 +-0.0502435 0.0335698 -0.00160666 +0.0331444 0.0584441 -0.0147212 +-0.00651273 0.0760152 0.058184 +-0.0285619 0.108073 -0.0204718 +-0.0157027 0.123907 0.0301351 +-0.0175006 0.10024 0.0438179 +-0.0297515 0.154263 -0.00514597 +-0.0475033 0.113884 0.0346438 +-0.0154952 0.087016 0.0568367 +0.0435889 0.0706095 -0.000776861 +-0.0930208 0.116049 0.0173125 +-0.0783399 0.174997 -0.0480125 +-0.0650728 0.117149 0.0481049 +0.0600369 0.0650499 0.00814341 +-0.0678832 0.147765 -0.0303891 +-0.0802136 0.0813857 -0.00655277 +-0.0356852 0.127701 0.00820492 +0.0154871 0.0990335 0.0473819 +-0.019377 0.127678 0.00978651 +-0.0208657 0.123339 0.0268408 +-0.0553906 0.073233 0.0409139 +0.0560337 0.0553031 0.0245952 +-0.0306612 0.0816984 0.0420491 +0.04335 0.0902653 0.0251673 +-0.0137008 0.0599733 -0.0359611 +-0.0535493 0.045819 -0.00734382 +0.0152704 0.07093 -0.0305648 +-0.0706849 0.0819434 0.0406373 +0.0104915 0.114065 0.0387753 +-0.052073 0.150157 -0.00315276 +0.00150908 0.0458287 0.0477014 +-0.00149907 0.122451 0.0357652 +0.0346578 0.114254 0.0196698 +-0.0263079 0.125672 0.00579971 +-0.0662371 0.173912 -0.0594768 +-0.0111949 0.178453 -0.0296295 +-0.039457 0.0403768 -0.0273046 +-0.0321606 0.153429 -0.00535973 +0.0505072 0.0678423 0.0265215 +0.0377143 0.106919 0.0261871 +-0.0717609 0.172825 -0.0369735 +-0.034656 0.0592094 -0.011649 +-0.0237103 0.0348634 0.0507821 +-0.0409865 0.0355803 0.00929737 +0.0240747 0.0915746 0.0472686 +-0.0576816 0.0336048 -0.0104516 +0.034582 0.0563647 0.0357928 +-0.0304985 0.0631621 0.0381216 +-0.0145978 0.0392398 -0.0269855 +-0.0446029 0.130656 0.0108143 +0.0240159 0.124704 0.0156714 +0.00222038 0.0796794 -0.0348837 +-0.029229 0.179986 -0.0130226 +-0.0371614 0.0338798 0.00980443 +-0.0654857 0.101487 0.0416824 +-0.0386286 0.0534191 -0.0107521 +-0.0743388 0.0659419 0.0131754 +-0.0775178 0.172972 -0.0399134 +-0.0704983 0.0999903 0.0403231 +-0.0754673 0.153642 0.0315487 +-0.0567915 0.158113 0.00751453 +-0.0733158 0.165215 -0.0409863 +-0.0878452 0.096803 0.00445868 +0.02849 0.120167 0.00308975 +-0.0866911 0.107697 0.0133542 +-0.0422556 0.127428 -0.00269381 +-0.0684868 0.135467 0.0467048 +-0.0187173 0.108826 -0.0212527 +-0.0109134 0.038586 0.0018115 +-0.0689089 0.106601 -0.012938 +0.00232768 0.0597693 -0.0328325 +-0.0759088 0.150426 0.0375079 +-0.0642836 0.175364 -0.0612207 +-0.0626162 0.142488 0.0376248 +-0.0388973 0.150052 -0.00339157 +0.0187974 0.0398349 -0.0187285 +0.0404333 0.0725805 0.0320798 +-0.0863763 0.0991625 0.0261078 +0.0544186 0.0725633 0.0195702 +-0.076294 0.155585 0.0106948 +-0.0611522 0.045903 0.0393286 +-0.0167746 0.0756989 -0.0389455 +-0.0578115 0.0619893 0.0271205 +-0.0127071 0.179586 -0.0289228 +-0.0568431 0.0926948 -0.0216401 +-0.0900812 0.150215 0.0221142 +0.0222403 0.0416489 -0.00972259 +-0.0504069 0.135839 0.0247969 +-0.0304966 0.0545819 0.0366047 +-0.0103146 0.180354 -0.0288775 +0.0320122 0.117952 0.0129635 +0.0440424 0.0496996 0.0318585 +0.0393181 0.0603877 -0.00577734 +-0.071953 0.16101 -0.0409434 +-0.0437665 0.168716 0.00196199 +-0.0498819 0.105595 -0.0195612 +0.0217639 0.0458254 -0.0188683 +-0.0921421 0.116123 0.0383102 +-0.0636791 0.157483 -0.0138656 +0.0266706 0.04428 -0.00700704 +0.0433132 0.0818321 0.0274518 +-0.0580456 0.0494852 0.00468232 +-0.0735836 0.159386 -0.00731186 +-0.0544231 0.0344532 0.039385 +-0.00150237 0.089761 0.0564112 +0.015933 0.126357 0.0269718 +-0.0425015 0.0719333 0.0422422 +-0.0589488 0.147198 -0.00200697 +-0.087209 0.0941073 0.00444199 +-0.0120214 0.178126 -0.0292101 +-0.0835465 0.101952 0.0288636 +0.041496 0.0555737 0.0320634 +-0.0025007 0.0675576 0.0566246 +-0.0756877 0.15767 -0.00739081 +-0.0105023 0.0829243 0.0578427 +-0.00627368 0.128136 0.0276028 +-0.0404708 0.109814 0.0374017 +-0.00378356 0.130498 0.0212315 +0.0580765 0.0566038 0.0222343 +-0.0853725 0.111782 0.0273822 +0.0428559 0.0972978 0.0221679 +0.00122739 0.121444 0.0362285 +-0.0274798 0.0446461 0.0507675 +-0.0304832 0.12104 0.0263992 +-0.0371379 0.127502 0.0150528 +-0.0778671 0.177131 -0.0494084 +-0.0775564 0.166657 -0.0379504 +-0.0605167 0.0386224 -0.00865968 +-0.0171147 0.161213 -0.00734926 +-0.0726687 0.161352 -0.00991102 +0.032766 0.0700345 0.0403232 +-0.0458559 0.10138 -0.0215412 +0.017353 0.0374009 0.0430484 +0.000357196 0.0347559 0.0401008 +-0.0604421 0.0427792 0.0246961 +-0.0440271 0.128143 0.0184429 +0.0423724 0.056151 -0.00596664 +0.00534844 0.0596161 -0.0309806 +0.0320447 0.061134 -0.0177676 +-0.00279591 0.0988433 -0.0266823 +0.0289846 0.0664902 -0.0199255 +0.000300027 0.0360761 0.019065 +-0.0250833 0.0379957 0.0175874 +0.0345167 0.0754586 -0.0157294 +0.0153241 0.0623295 -0.0291944 +-0.0609083 0.0612023 0.0236586 +-0.0698972 0.0655268 -0.00153079 +0.00337067 0.115645 -0.0185908 +-0.0315398 0.0589058 0.0377684 +-0.00748372 0.0488969 0.0502433 +-0.0877886 0.0861226 0.0174689 +0.0414464 0.101443 0.020163 +0.0252372 0.0926012 -0.0220221 +-0.0572172 0.0498044 0.00711465 +-0.0384957 0.0719179 0.0419735 +0.0143485 0.0552312 -0.0288146 +-0.0512659 0.0360808 0.0462964 +-0.0880011 0.0941555 0.00641769 +-0.0508873 0.109845 -0.0186279 +-0.0514991 0.112527 0.0359192 +-0.0338144 0.0342727 0.0263277 +-0.0615036 0.0804118 0.0430159 +-0.0663263 0.0606754 0.0176657 +-0.0909825 0.11607 0.0303184 +0.0184707 0.107054 0.0413783 +-0.0243398 0.183957 -0.0138554 +-0.0158705 0.161111 -0.00904539 +-0.0335094 0.0647262 0.0398847 +-0.0782927 0.098997 -0.00960155 +0.0486963 0.0730972 0.0159514 +-0.0478872 0.0335336 -0.00475407 +-0.0154917 0.0883884 0.056678 +-0.077344 0.119067 0.051823 +-0.0560293 0.0674866 0.0368481 +-0.0635813 0.138158 0.0379352 +-0.0217661 0.0670215 -0.0366181 +0.0483442 0.0575601 -0.00531363 +-0.0237817 0.0727523 -0.0377511 +0.0443603 0.0490341 -0.0052894 +-0.0604973 0.0904382 0.0452731 +-0.0627563 0.152415 -0.0301468 +-0.0714195 0.067071 -0.00151156 +-0.0861662 0.147397 0.00721409 +0.011631 0.0474937 0.0464252 +0.0254946 0.0406248 0.0343049 +0.035443 0.111045 0.0256623 +-0.000588677 0.037658 -0.0249499 +-0.0388448 0.0971399 -0.0223049 +-0.0660244 0.166553 -0.0262486 +-0.048499 0.0848032 0.0451307 +0.0371019 0.111384 0.0119604 +-0.00927598 0.177254 -0.0287785 +-0.0389846 0.1533 -0.00797514 +-0.0351198 0.0484277 -0.0173281 +-0.00353807 0.0389271 0.0301841 +0.0132013 0.0864568 -0.0307211 +-0.0390625 0.110364 -0.0188163 +0.033372 0.106071 0.0326127 +-0.0831505 0.0857608 0.0304017 +0.0552187 0.0635647 0.027041 +0.0399168 0.0999289 0.0271558 +-0.0579697 0.0339719 0.0233097 +-0.0137397 0.178677 -0.0217984 +-0.0203244 0.0385446 0.0306811 +0.00122549 0.0359125 0.00298025 +0.0117447 0.0343946 -0.0103375 +-0.0913959 0.132306 0.0102259 +-0.0429194 0.0898997 -0.0223492 +-0.0511515 0.0337361 -0.0129379 +-0.0750027 0.155319 0.00677634 +-0.0771027 0.0689891 0.00817725 +-0.0353224 0.0340121 0.0244595 +-0.0291276 0.0386567 -0.0130433 +0.0303577 0.105377 -0.0136057 +0.0235082 0.12516 0.0112114 +-0.00249775 0.0787967 0.0582683 +0.0533686 0.0732758 0.0102917 +-0.0586915 0.0472669 0.00864036 +0.0328626 0.0738919 -0.0178203 +-0.017795 0.038392 0.00241319 +-0.044502 0.0478297 0.0399289 +-0.0747378 0.0687745 0.000531905 +0.0172248 0.12732 0.0217261 +0.0428517 0.0885116 0.026874 +-0.078089 0.159705 -0.0229182 +-0.00858725 0.0362397 -0.025275 +-0.0867205 0.102198 0.00542391 +-0.0926774 0.131034 0.0232376 +0.0167938 0.128074 0.00445644 +0.0541315 0.0553714 0.0271399 +-0.000925431 0.131188 0.0179397 +0.0288719 0.121048 0.0132077 +-0.00849451 0.0965679 0.0534544 +0.0226575 0.102902 -0.0189538 +-0.0787984 0.113337 -0.0032043 +-0.0099585 0.1135 -0.0182227 +-0.0282274 0.162443 -0.0041123 +-0.082525 0.0896742 -0.00660526 +-0.0477053 0.0708612 -0.0154107 +-0.0435026 0.0465062 0.0407289 +0.00126756 0.0669175 -0.0339113 +-0.0341799 0.0335887 -0.0224091 +-0.0623664 0.0443972 0.0296888 +-0.0374964 0.0676867 0.0416821 +0.00859545 0.0382141 0.0296981 +0.0458872 0.0834155 0.0151706 +-0.0908205 0.132399 0.0292201 +-0.0191683 0.0336751 -0.0214022 +-0.0140554 0.126614 -0.00210251 +-0.0260065 0.0335246 -0.026366 +0.0324259 0.0399358 -0.00240332 +-0.0296544 0.0346993 -0.0301222 +-0.0669615 0.129698 -0.00899609 +-0.0471845 0.0383965 -0.0142868 +-0.0572808 0.0345537 0.0438127 +-0.0627957 0.153425 0.0330074 +-0.0515105 0.13416 -0.00180112 +-0.0434907 0.171345 -0.00503558 +-0.0677742 0.0808646 -0.0174732 +0.00350312 0.0441648 0.0458711 +0.0291321 0.0686302 0.0420784 +0.0132792 0.0343795 0.0214237 +-0.0866978 0.12169 0.0483599 +-0.00350013 0.0801522 0.057807 +0.0371657 0.0997172 -0.00981258 +-0.0447383 0.0738987 -0.0178782 +-0.0605228 0.155495 0.0235493 +-0.0362392 0.151744 -0.00510561 +0.0454797 0.0637982 0.0288243 +-0.0672083 0.0609402 0.0172424 +0.0241031 0.0782197 0.0489777 +0.0442629 0.0672699 0.000591455 +-0.0289948 0.0522303 -0.0223864 +-0.0645013 0.0774777 0.0413253 +0.0444938 0.0959562 0.00517859 +-0.00459579 0.039143 -0.025596 +0.0184671 0.0913654 0.0479185 +0.0146407 0.129582 0.00935921 +-0.0505573 0.0439128 0.0441317 +-0.0141262 0.119616 -0.0126879 +-0.0849191 0.117035 0.0482987 +0.0280536 0.119554 5.13011e-05 +-0.0247655 0.0712486 -0.0365856 +0.0034971 0.091096 0.055256 +-0.0641848 0.0432086 0.0316934 +-0.0881185 0.151555 0.0230923 +-0.0680885 0.16093 -0.05501 +0.0474345 0.0682488 0.00159582 +0.0111403 0.105858 -0.0199086 +-0.0369545 0.0349347 0.0427177 +-0.0604782 0.144516 -0.00363507 +-0.0394712 0.08608 0.0435352 +-0.0548214 0.143869 0.0295389 +-0.028506 0.107069 0.0398546 +0.0281659 0.121502 0.0158045 +-0.0797197 0.143117 -0.0027917 +-0.0616803 0.166235 -0.0555923 +-0.0204271 0.0893191 -0.0369723 +0.0361287 0.085855 -0.0169039 +-0.00251199 0.107268 0.0437857 +-0.0114962 0.0842854 0.0575311 +-0.0738001 0.0651206 0.00865838 +-0.0114808 0.0353662 -0.0177045 +0.0391473 0.0421646 0.0269754 +-0.0565891 0.129759 0.0374849 +-0.0720408 0.171996 -0.0342175 +-0.0139288 0.0883705 -0.0380287 +-0.0562656 0.0335637 0.0133743 +-0.0196985 0.0957936 -0.0295783 +-0.00486881 0.104509 -0.0228932 +-0.0550525 0.129598 -0.0055846 +-0.0584858 0.0776493 0.0431837 +-0.0898534 0.121302 0.00430136 +-0.0191218 0.165312 -0.0179178 +-0.0249563 0.0383168 0.00102848 +-0.0199274 0.0958752 0.0490354 +-0.0574825 0.113918 0.0359516 +-0.00850157 0.101663 0.0440465 +-0.0873724 0.124348 0.0475064 +0.00764213 0.03621 -0.0128239 +-0.0264494 0.0648769 0.0395324 +0.0541546 0.0547912 -0.000791322 +-0.0434926 0.0789866 0.0425224 +0.0241906 0.121901 0.0271611 +-0.0866809 0.0819772 0.0124969 +-0.0717212 0.0344863 0.00580157 +0.0302841 0.11623 -0.00325108 +-0.0737112 0.155478 -0.0269075 +-0.0424683 0.108486 0.0389261 +0.0176716 0.0658898 0.0500991 +0.0494857 0.064014 -0.00214923 +-0.0514961 0.0945888 0.044111 +0.0340749 0.0901032 -0.0173771 +-0.0719584 0.0942006 0.0415089 +-0.0544894 0.0594391 0.0238452 +-0.0877192 0.101 0.0223776 +-0.0758319 0.173116 -0.0385323 +-0.0114857 0.119632 0.0369891 +-0.0313874 0.0581183 -0.0163942 +-0.0157652 0.0728861 -0.0388826 +0.0167046 0.0945555 -0.0241181 +-0.000498244 0.0647983 0.0567029 +0.0256473 0.0420743 0.0363142 +-0.0630437 0.12273 0.0457647 +-0.0540131 0.144678 0.0264098 +0.0135054 0.10711 0.0421551 +-0.00428335 0.124198 -0.00969837 +0.0415325 0.0816649 -0.00777347 +-0.0392229 0.0337594 -0.0179786 +0.0593141 0.0691549 0.00914325 +-0.0219522 0.0382139 0.00717586 +0.0288925 0.112764 0.0331675 +-0.0524014 0.152599 0.0134601 +-0.0628726 0.147915 -0.0152353 +-0.030456 0.158107 0.0014598 +0.0308953 0.0400111 0.0272142 +-0.0757616 0.109947 0.0435791 +0.0253341 0.0591059 -0.0237971 +-0.0261555 0.155801 -0.00568703 +-0.0679463 0.128236 -0.00906158 +-0.0156387 0.0377596 -0.0169892 +-0.0757064 0.112028 0.0472849 +-0.0155135 0.0631057 0.0533345 +-0.0512066 0.125627 -0.00670494 +-0.0896222 0.111892 0.015334 +-0.0493777 0.160927 -0.00574679 +-0.0630274 0.166296 -0.040584 +0.058244 0.0580344 0.0225642 +0.0413547 0.102812 0.0011821 +-0.0162922 0.125122 0.0270033 +0.02338 0.0632213 0.0460213 +0.0609114 0.0623534 0.0131596 +-0.0691061 0.164802 -0.0173282 +-0.0870447 0.0977755 0.0254107 +-0.00849378 0.112803 0.0415796 +0.0145027 0.115416 0.0371643 +-0.0184257 0.066889 0.0526426 +-0.0448982 0.123992 0.0241166 +-0.050497 0.0903958 0.0446608 +-0.0315626 0.0348573 0.0456798 +-0.0684915 0.0902546 0.0428415 +-0.0180785 0.0337977 -0.021304 +0.0043349 0.0389929 -0.00853324 +-0.0830349 0.153941 0.0230111 +-0.0800798 0.103192 -0.0065999 +0.0437731 0.0973301 0.016155 +0.00944321 0.131132 0.0160037 +-0.0514165 0.0627417 0.0327301 +-0.0528926 0.154865 0.0118243 +0.0187407 0.0740964 0.0517477 +-0.0721682 0.0657282 0.00147121 +0.00959045 0.131031 0.00893055 +-0.0694847 0.181423 -0.0563964 +-0.0569551 0.11454 -0.0150747 +-0.0821005 0.0885236 0.0320901 +-0.0174725 0.0383553 0.00432532 +-0.00258809 0.0348892 -0.0237423 +0.0413648 0.0939401 0.0283252 +-0.00375638 0.13079 0.0183493 +-0.0686466 0.0719376 -0.0111307 +-0.0688202 0.180176 -0.0531787 +-0.0397209 0.0710215 -0.0169451 +0.0184831 0.105752 0.0426872 +0.00809551 0.112572 -0.0192987 +0.0206432 0.121117 -0.00652883 +-0.0718516 0.0979698 -0.0147575 +-0.0662716 0.170413 -0.0392349 +0.0237477 0.0605032 -0.0251433 +-0.0340875 0.177472 -0.00744261 +-0.0167857 0.0784752 -0.0385587 +-0.0565291 0.0373798 -0.0104777 +0.00297843 0.0341587 0.014086 +-0.0667756 0.124253 0.0509201 +-0.026364 0.0359692 -0.029405 +-0.0550408 0.0334649 -0.000671931 +-0.0697701 0.0874139 0.0423816 +0.0246944 0.0835826 0.0481083 +0.0199488 0.115322 0.0360728 +0.0383916 0.042968 -0.00337479 +-0.0365829 0.0335193 -0.0246869 +-0.0355007 0.112502 0.0349387 +-0.0689238 0.125301 -0.00884615 +0.0395927 0.0385536 0.0157178 +-0.0889313 0.0875027 0.0114635 +0.0448665 0.0945715 0.00517989 +-0.0477042 0.0664777 -0.0141832 +-0.0434727 0.125255 -0.0084227 +-0.0166904 0.169787 -0.0155577 +-0.0134983 0.0501789 0.0495792 +-0.0624968 0.0833205 0.0441176 +-0.0342132 0.0345231 0.0384015 +0.043295 0.084533 0.027498 +-0.0819819 0.112797 -0.000848269 +0.0121624 0.129948 0.0198557 +-0.0674677 0.10143 0.0408399 +-0.0626754 0.059895 0.0191264 +-0.0367892 0.0459324 0.0404864 +-0.027194 0.0764697 0.0455544 +-0.0824053 0.0748814 0.00852871 +-0.0656294 0.0642362 -0.0044412 +0.032725 0.116988 0.0160848 +-0.0764226 0.102162 0.0358668 +0.00148048 0.0952613 0.0542408 +0.0228866 0.122341 0.0280976 +-0.0584486 0.139576 0.0330542 +-0.0402835 0.123242 -0.0103332 +-0.012241 0.0406566 0.0504983 +-0.0489426 0.0614374 0.0351759 +-0.0844851 0.0778045 0.00951927 +-0.0369817 0.156591 0.00432745 +-0.0882804 0.103688 0.0163664 +-0.0258065 0.0825691 -0.0373737 +-0.0355052 0.102861 0.0407303 +-0.0524183 0.131115 0.0329855 +-0.0227031 0.175691 -0.0136597 +0.050697 0.0684106 0.00144017 +0.000504835 0.0911354 0.0558722 +0.00231832 0.0583343 -0.0324165 +-0.0148886 0.169807 -0.0164639 +-0.0722033 0.152534 -0.0417656 +-0.0134817 0.073078 0.0557755 +-0.0255231 0.109882 0.0391184 +-0.0655581 0.135384 0.0421104 +-0.024745 0.0698061 -0.0360534 +0.0559546 0.0524347 0.0227151 +-0.0283257 0.118773 -0.011655 +-0.0335185 0.0974234 0.0440535 +-0.0817699 0.0748179 0.0155353 +-0.027189 0.162441 -0.00437298 +-0.0267454 0.0711222 -0.0350441 +-0.03015 0.171175 -0.0170282 +-0.026605 0.06607 0.0397555 +-0.074698 0.179765 -0.0510072 +0.0143367 0.0504741 0.0468665 +-0.0594975 0.111137 0.0367915 +-0.0346758 0.127158 0.0144691 +-0.0465015 0.0847604 0.0446321 +0.00381747 0.0354686 0.0455691 +0.0172732 0.0792708 -0.0288683 +0.0323738 0.104756 0.0346971 +-0.0794458 0.0813481 -0.00752304 +-0.0312226 0.0367355 -0.0304453 +-0.0110616 0.168437 -0.0238044 +-0.0579369 0.119806 -0.0105246 +-0.0337394 0.0355643 0.0323212 +0.0312129 0.0525777 -0.012761 +-0.0346988 0.120729 -0.0096591 +-0.0388776 0.0364147 0.043017 +-0.0271127 0.16377 -0.0158754 +-0.0114338 0.0347606 0.0448027 +-0.0897559 0.114544 0.00631807 +0.0408171 0.04213 0.0255289 +-0.0648854 0.102482 -0.0170908 +-0.0137359 0.061178 0.0537969 +-0.00359581 0.130946 0.00835725 +0.0439346 0.0959403 0.0181595 +-0.0194977 0.104404 0.0429832 +-0.0691323 0.0776098 0.0394254 +-0.00248627 0.097432 -0.0292057 +0.00445885 0.0387258 0.0265895 +0.0492859 0.0567642 0.0307116 +-0.077476 0.164468 -0.0240677 +-0.0666867 0.175728 -0.049503 +-0.0251661 0.0664206 0.0424455 +-0.027701 0.0549269 0.0368456 +-0.018943 0.164042 -0.0169159 +-0.0435133 0.0846552 0.0431729 +-0.0888345 0.136443 0.0400961 +0.00149473 0.112812 0.0419217 +-0.0298299 0.09304 -0.0247313 +-0.0836967 0.0790161 0.00252063 +-0.000924151 0.039273 -0.0117161 +-0.0567677 0.0811908 -0.0210238 +-0.0934681 0.120116 0.0253121 +-0.0429479 0.170625 -0.000616016 +-0.075975 0.156283 -0.00563956 +-0.00861288 0.0384077 0.0151551 +-0.00160584 0.0434015 -0.0251635 +-0.00451637 0.113738 -0.0185133 +-0.0780673 0.0690482 0.0132523 +-0.0237986 0.0784163 -0.0381462 +0.0404558 0.0643575 0.0302495 +0.00150103 0.0576486 0.0543674 +-0.0314973 0.0746234 0.0406619 +-0.0430409 0.0337266 -0.000289053 +-0.0303409 0.0462461 0.0481864 +0.0215433 0.04083 0.0414017 +-0.0328294 0.0901297 -0.0245803 +-0.0654933 0.0370192 -0.00733845 +-0.0128512 0.129269 0.0078276 +-0.0102634 0.129467 0.00444971 +-0.0525768 0.0530264 -0.00686565 +0.0152424 0.0737083 -0.0300265 +-0.0523202 0.0474101 0.0149978 +-0.03228 0.059616 -0.0144015 +0.0262796 0.0733084 -0.0244949 +-0.091934 0.128302 0.0312437 +-0.0556539 0.153362 0.0267778 +0.00449629 0.118272 0.0381357 +-0.00902947 0.129018 0.00125187 +-0.00169837 0.0391357 -0.00987107 +0.0277845 0.0849076 0.045525 +-0.0241779 0.1712 -0.0197595 +0.0450874 0.0847681 0.0221666 +-0.0251342 0.0878826 0.0516343 +0.00641806 0.0347537 -0.00236123 +-0.0411191 0.111396 -0.0179091 +0.027653 0.0506012 0.0379885 +0.0219297 0.123716 0.0263137 +-0.0688294 0.148429 -0.0341374 +-0.0315292 0.124197 -0.00202254 +0.00150698 0.0801002 0.0571866 +-0.0615835 0.0366556 0.0444374 +-0.0481389 0.160609 -0.00688834 +-0.0254054 0.0766649 0.0494071 +-0.0774728 0.155537 -0.0149084 +-0.0401214 0.159176 -0.0112287 +0.0596647 0.0691741 0.016158 +-0.011487 0.110004 0.0424075 +-0.0381186 0.128235 0.00584498 +0.048576 0.0464424 0.0249843 +-0.0923754 0.118793 0.0312942 +-0.0639323 0.123848 -0.00887264 +-0.0798905 0.126603 -0.00582167 +-0.0413231 0.0462396 -0.0163116 +-0.0908165 0.145736 0.0263481 +0.0446156 0.0959646 0.00916087 +-0.0821218 0.075868 0.0188618 +0.05068 0.0673838 0.000483718 +-0.0501479 0.0515412 0.017644 +-0.00617289 0.130741 0.0117189 +-0.051836 0.0956238 -0.0221428 +-0.074878 0.122304 -0.00772392 +-0.00159817 0.0419657 -0.0250292 +-0.0474982 0.162268 0.00647513 +-0.0331161 0.0498057 0.0395103 +0.00234342 0.0510926 -0.0302041 +-0.0851404 0.125756 0.0494653 +-0.0699016 0.160977 -0.0489386 +-0.0798846 0.0706301 0.0125498 +-0.0697873 0.0819627 0.0411407 +-0.0547576 0.161266 0.00105716 +-0.0895055 0.0902528 0.0184453 +-0.0261075 0.162258 -0.0150297 +0.046501 0.0611194 0.0308227 +0.0238707 0.0929061 0.0469915 +-0.0533713 0.0334322 -0.00211203 +0.0417012 0.085878 -0.00880084 +0.0288139 0.110493 -0.0110929 +-0.083716 0.087071 0.0295098 +-0.0798758 0.155212 0.019678 +0.0049172 0.0339971 0.00916661 +0.0160048 0.0590435 0.0493667 +0.0573849 0.0699459 0.0206376 +0.0345802 0.103262 -0.0113359 +-0.0797481 0.0789376 0.0314228 +-0.0346581 0.0340056 0.0228095 +-0.0631272 0.0656833 0.0316274 +-0.0145321 0.0459268 0.0498594 +-0.0364091 0.0339112 -0.0194195 +0.0181222 0.116444 -0.0134944 +0.0341932 0.113962 0.0237708 +-0.0761778 0.148614 -0.0108668 +-0.0044937 0.0473352 0.0489501 +-0.0328741 0.0807299 -0.0285171 +-0.0724981 0.121807 0.0536688 +-0.0657234 0.153927 0.0319321 +-0.0548973 0.112625 -0.01673 +0.0464212 0.0764513 0.00819032 +0.0272261 0.0451183 -0.00768323 +-0.0629092 0.156144 0.021238 +-0.0631603 0.151216 -0.00238889 +-0.0347632 0.076687 -0.0214942 +-0.0906385 0.147509 0.0131579 +-0.0122779 0.122169 -0.00937841 +-0.0588974 0.156171 0.00210438 +-0.0123378 0.123047 -0.00831897 +-0.0496312 0.0590927 -0.0108209 +-0.0409256 0.153594 0.00561766 +-0.0405007 0.0860467 0.0431081 +0.0445131 0.0735224 0.0237705 +-0.0213844 0.123724 -0.0049697 +-0.0633941 0.159891 -0.0485891 +0.0364077 0.044553 -0.00488844 +-0.0739928 0.155924 0.011504 +-0.0111043 0.0366055 0.0502176 +0.03375 0.0929319 0.0401542 +-0.00645978 0.0918654 -0.0354548 +-0.0827096 0.131285 0.0511192 +-0.0835459 0.133987 0.0490485 +-0.0294951 0.0617035 0.0376524 +-0.0493817 0.138599 0.0163919 +-0.055623 0.120216 -0.0109924 +-0.00449347 0.121049 0.0367461 +-0.048904 0.144756 0.0084067 +0.00645901 0.0392685 0.0301228 +-0.0913214 0.114759 0.0373166 +-0.0265805 0.0377426 0.0157053 +-0.00572231 0.0669806 -0.0352658 +-0.0525421 0.050441 0.0296546 +0.0313831 0.11825 0.0184294 +-0.0288441 0.0958675 -0.0242091 +-0.0149484 0.177196 -0.0200335 +0.0230906 0.0973761 -0.0211755 +-0.0134888 0.11412 0.0398002 +-0.0652337 0.169622 -0.0599681 +-0.069106 0.161031 -0.0101008 +-0.0147444 0.0700214 -0.0382575 +0.000412578 0.0376462 -0.0248548 +-0.0694764 0.165214 -0.0509787 +-0.0817245 0.100671 0.0313188 +-0.0464909 0.0704463 0.0410366 +-0.0604958 0.0890419 0.0453253 +-0.0356646 0.155102 0.0026804 +0.0313895 0.0549645 0.0381834 +-0.0390844 0.149487 -0.000628748 +-0.0799141 0.109193 0.0343277 +-0.033406 0.159477 0.0024166 +0.0461298 0.0806288 0.00519237 +-0.00455042 0.0384226 0.0105194 +0.054633 0.0708998 0.00492223 +0.0466692 0.0754291 0.0122452 +-0.0510158 0.118895 -0.0136999 +0.0442088 0.0931449 0.0211603 +-0.026052 0.036748 0.0540507 +-0.0121151 0.0568039 0.0522997 +-0.0605217 0.0372227 -0.00906293 +-0.0505374 0.138563 0.00240881 +-0.0499851 0.135487 0.00142097 +0.0375229 0.0590309 0.0330268 +0.00350924 0.0842701 0.0573364 +0.0132839 0.0652538 -0.0302637 +-0.0742776 0.161639 -0.0118948 +-0.0507685 0.164108 -0.00292996 +-0.0198709 0.104468 -0.0228058 +0.0376047 0.0616532 -0.0107499 +-0.0773811 0.108845 0.0387481 +0.0226208 0.102094 0.0434114 +-0.0882171 0.135133 0.0423395 +-0.0506614 0.0515945 0.0196285 +-0.0603044 0.155837 0.0105687 +-0.0124866 0.11001 0.0423152 +0.02167 0.125998 0.00768374 +0.0323984 0.0396183 0.0260504 +-0.0709343 0.126767 -0.00893718 +-0.0135132 0.116917 0.0382221 +-0.0116656 0.051126 -0.0319435 +-0.0309822 0.125744 0.00553845 +0.0459345 0.0862193 0.0101703 +0.00749696 0.119642 0.0368719 +-0.00350244 0.107276 0.0438161 +-0.0521339 0.128852 -0.00413976 +-0.0786185 0.152695 0.0319953 +0.0163345 0.0781449 0.0535802 +0.0377538 0.0771288 -0.0117747 +-0.0215296 0.0387791 0.0338148 +-0.0350693 0.0384092 -0.00660408 +-0.0919891 0.124178 0.0422069 +-0.0444587 0.11222 -0.0167423 +-0.0171725 0.0985232 -0.0244048 +-0.057494 0.112512 0.0360215 +0.0396241 0.0900718 0.0328369 +-0.0621913 0.163125 -0.0405922 +-0.0255449 0.0384207 -0.00839698 +0.0162606 0.0736784 -0.0295549 +-0.0663455 0.040996 0.0121932 +-0.0292314 0.114996 -0.0157151 +0.0252254 0.095572 0.0454222 +0.00388853 0.130454 0.00153712 +-0.0454814 0.0335414 -0.0134702 +-0.08387 0.148679 0.0348187 +-0.0174749 0.184587 -0.0183292 +0.0188962 0.0370007 -0.0126843 +-0.0625159 0.163122 -0.0305925 +-0.0433987 0.03363 -0.0131325 +0.0291629 0.037982 0.025034 +0.0129127 0.129715 0.00445998 +0.0182606 0.0778122 -0.0281935 +-0.0476906 0.0356242 -0.0142735 +-0.0190478 0.0404047 0.0529202 +-0.00364871 0.0982082 -0.0280452 +-0.0195235 0.184467 -0.0220738 +0.00382729 0.106411 -0.0207174 +0.00350781 0.064793 0.0565955 +-0.0205171 0.0383642 -0.00178242 +0.0122268 0.0836141 -0.0306261 +-0.0444606 0.147723 0.0056898 +-0.0869664 0.148754 0.00824898 +-0.0689807 0.155012 0.0293114 +0.0302795 0.0795477 0.0438394 +-0.0660235 0.174935 -0.0492702 +-0.0804891 0.133061 0.0515278 +-0.0447252 0.109884 -0.0183457 +-0.0902839 0.137831 0.0151959 +-0.0702292 0.153353 0.0333614 +-0.0915979 0.146114 0.0211525 +-0.0905232 0.122929 0.0450175 +0.00448177 0.0951431 0.0532987 +-0.0234909 0.120747 0.0300444 +0.0274801 0.0445395 -0.0065618 +-0.091814 0.116108 0.0403567 +-0.0537253 0.151161 0.0246275 +-0.0205455 0.126353 0.00242085 +-0.00205946 0.129266 -0.00113907 +0.00252933 0.0758769 0.0564116 +0.00824452 0.129671 0.000311795 +-0.000397685 0.0923281 -0.0338988 +-0.0559448 0.126938 0.0384169 +-0.0428369 0.0942645 -0.0226678 +-0.0598806 0.105454 -0.017999 +-0.0837054 0.10067 -0.00361944 +-0.0545817 0.152467 0.0257328 +0.0103827 0.0365006 0.0297934 +-0.0898089 0.133793 0.0332137 +-0.0618767 0.15376 -0.0175826 +-0.0665983 0.155819 0.0112334 +-0.0454977 0.108441 0.0393231 +0.000688563 0.105475 -0.0216898 +0.0156183 0.0348875 0.0323047 +0.0598096 0.0622539 0.00613597 +0.0222628 0.0359732 0.0163557 +-0.0492522 0.165358 0.00274428 +-0.018422 0.0583296 0.0500808 +-0.0233794 0.126748 0.0127038 +-0.0635915 0.172518 -0.0506017 +0.000120368 0.0351316 0.0162576 +-0.0286059 0.0564269 -0.0233938 +0.0373643 0.110979 0.0106211 +-0.0143444 0.162546 -0.0104323 +0.0174821 0.10039 0.0467276 +0.00834248 0.0609508 -0.0305126 +-0.0650557 0.129761 0.0446036 +0.0584157 0.0647883 0.022872 +0.0450662 0.0889731 0.0191643 +-0.0554099 0.0334223 -0.00251784 +-0.00144558 0.106667 0.0437112 +-0.0626402 0.0627915 -0.00434322 +-0.0406608 0.0335117 -0.0254825 +-0.0621215 0.15372 -0.0285871 +-0.0304827 0.0538056 -0.016375 +0.0276877 0.0607373 -0.0218456 +-0.0332153 0.107417 -0.0197253 +-0.0709666 0.138448 -0.00754922 +-0.0554983 0.0973521 0.0432389 +0.0051585 0.127708 0.0288034 +-0.0497318 0.0354763 -0.0126201 +-0.0713898 0.160567 -0.00801414 +-0.0135985 0.108507 -0.0209218 +-0.0701499 0.0695315 0.0320822 +-0.0618453 0.155287 -0.0285878 +-0.0774937 0.145636 0.0432119 +-0.0499442 0.140127 0.0163925 +-0.0622517 0.147555 -0.00557481 +0.0112895 0.0624411 -0.0303571 +-0.054281 0.0573695 -0.00641449 +-0.0468263 0.128888 -6.3255e-05 +0.0167125 0.0343686 0.00192575 +0.025374 0.0938744 -0.0213667 +0.0374202 0.110869 0.0135214 +-0.0202897 0.0381028 0.016664 +0.0122214 0.13032 0.0170232 +-0.0424979 0.0817557 0.0420871 +0.0247834 0.123596 0.021665 +0.0458295 0.0890233 0.00817039 +-0.0246722 0.05361 -0.0281576 +-0.0368219 0.0900544 -0.0239252 +-0.0331266 0.0338175 0.0106794 +-0.0863242 0.111849 0.0243217 +-0.0881544 0.121251 0.000301062 +-0.0639205 0.112438 -0.0133308 +0.00114374 0.101639 -0.0226194 +0.0117494 0.0671858 0.0538619 +-0.0177987 0.0336176 -0.0248428 +0.0384483 0.10837 0.0201721 +-0.0895436 0.0902218 0.014448 +-0.0441053 0.129054 0.00361434 +-0.0447524 0.033564 -0.0207541 +-0.040486 0.0346908 0.0404235 +0.0158804 0.124131 -0.00578699 +-0.0301445 0.169695 -0.0171502 +-0.0906194 0.139243 0.0211829 +-0.0653253 0.142516 0.0407395 +-0.0320761 0.0447291 -0.0281131 +-0.0764158 0.0699842 0.0233785 +-0.0254497 0.052221 0.0403383 +0.0262523 0.076131 -0.0243472 +-0.0174971 0.101623 0.0437353 +0.00533357 0.055349 -0.0305496 +-0.0493266 0.134948 0.0237381 +0.0053984 0.122421 -0.0118951 +0.038604 0.108395 0.0191762 +-0.0638345 0.0431637 0.0378429 +-0.0748055 0.0863518 -0.0148055 +0.0157558 0.127182 0.025475 +0.0337414 0.0384723 -6.48206e-05 +-0.0564853 0.0791423 0.0441771 +0.0234983 0.102092 0.0429315 +-0.00524932 0.101176 -0.023207 +-0.0804177 0.153092 0.00488677 +-0.0764988 0.13725 0.0499203 +-0.0550791 0.134447 -0.00412579 +0.0139517 0.124505 -0.00617757 +-0.0839821 0.127994 -0.00381712 +-0.0571198 0.115445 0.0365816 +-0.0622396 0.155257 -0.0325976 +-0.0454972 0.0761548 0.042184 +0.0313815 0.0461664 -0.00629419 +-0.0438412 0.0942345 -0.0223045 +-0.0236613 0.0852675 0.0544729 +-0.0616609 0.147135 -0.00399772 +-0.0600825 0.0413306 0.0227014 +-0.0105535 0.180959 -0.0288535 +-0.0676833 0.155656 0.026832 +0.0282931 0.118599 0.0272385 +-0.0871972 0.102223 0.00642609 +0.0103624 0.0494805 -0.028102 +0.0154246 0.0685991 0.0521564 +-0.0416312 0.117641 -0.0144485 +-0.0276264 0.046347 -0.026964 +-0.0916136 0.132311 0.0112256 +0.0178346 0.0505132 0.0449253 +-0.0444935 0.155066 0.00750552 +-0.037487 0.115255 0.0329307 +-0.0185008 0.119534 0.0344711 +-0.052516 0.0452355 0.0436109 +-0.00977222 0.11683 -0.0157853 +-0.0558279 0.0635792 0.0314789 +-0.0607324 0.0592584 0.00571875 +-0.0621725 0.160005 -0.022587 +-0.0603904 0.152423 0.000272984 +-0.0697355 0.134074 0.048407 +-0.0688943 0.103764 -0.0141878 +-0.0871513 0.117629 0.0474896 +0.0463722 0.0764454 0.00719365 +0.0582269 0.0686747 0.0208601 +0.0410646 0.07659 0.0312229 +-0.0298717 0.104385 -0.0225787 +-0.0346365 0.0766699 -0.022492 +-0.0639324 0.147049 -0.0189093 +0.0414492 0.10286 0.0161642 +0.041276 0.104245 0.0131611 +-0.0550666 0.151635 -0.00215779 +-0.0723648 0.0763024 0.0368597 +-0.0166996 0.0540293 -0.0329391 +-0.0108856 0.107334 -0.0222671 +-0.0609787 0.126745 -0.00811044 +-0.0495024 0.109811 0.0380885 +-0.0814376 0.0978185 -0.00662583 +-0.0771326 0.163938 -0.0219397 +-0.0690818 0.18144 -0.0564572 +0.031034 0.0964814 -0.0161287 +0.0445032 0.0555996 0.0323503 +-0.0335401 0.0732865 0.0413362 +0.0315592 0.035603 0.0149292 +-0.0625155 0.0344693 0.0376364 +0.0223706 0.0505198 -0.0231651 +-0.051638 0.0663266 -0.0117848 +0.0132667 0.0519749 0.0488584 +-0.0568732 0.108333 -0.017952 +0.0448639 0.0833492 0.023175 +-0.0316705 0.0806285 -0.0315587 +-0.0714676 0.155482 0.0269686 +0.0118001 0.034659 0.0389456 +-0.0860496 0.128472 0.048867 +-0.0155071 0.175699 -0.0190868 +-0.058019 0.131103 -0.00658932 +0.0113955 0.0434069 -0.0246972 +0.0568205 0.0566796 0.0240006 +-0.0267763 0.0365192 0.0538225 +-0.0564971 0.0987696 0.0431638 +0.0353453 0.0835128 0.0388598 +-0.0602464 0.144668 -0.00329576 +-0.00749863 0.0884246 0.0571361 +-0.0816964 0.0734472 0.00653139 +0.0399806 0.105624 0.0191716 +-0.0676913 0.172275 -0.0570278 +-0.0358314 0.0356542 0.0457978 +0.0503129 0.0516868 -0.00299828 +-0.0414959 0.0705202 0.0419075 +0.0246022 0.0942401 0.0462765 +-0.0735775 0.170801 -0.0470392 +0.0373196 0.105416 -0.00382358 +0.0463401 0.0518943 -0.00540594 +0.0400167 0.0646852 -0.00776271 +-0.0597593 0.07671 -0.0185219 +-0.0237194 0.0639841 -0.033754 +-0.0473867 0.0345201 0.0356021 +0.00159304 0.131118 0.00454966 +-0.073925 0.126728 -0.0084362 +-0.0243269 0.0616478 -0.0324508 +0.0457562 0.0904226 0.00816981 +-0.0688748 0.159133 -0.00709894 +-0.0394914 0.0944889 0.0427101 +-0.0687998 0.0822684 -0.0173873 +-0.0455924 0.119193 -0.014062 +-0.0369476 0.033676 0.00641963 +-0.09079 0.1297 0.0392322 +-0.0389556 0.0350986 0.042208 +-0.0414578 0.107073 0.0393054 +-0.00265934 0.098112 -0.0279111 +-0.0331649 0.0652734 -0.0174782 +-0.0343312 0.0836736 -0.0246034 +0.0134882 0.101805 0.0472084 +-0.0594997 0.0846925 0.0439263 +-0.0423306 0.040657 -0.0232664 +0.0092124 0.114671 -0.0175632 +0.0538026 0.0595499 0.0284925 +-0.0256867 0.0380701 0.0246091 +-0.0693658 0.16286 -0.0130912 +0.0333604 0.037057 0.0194583 +0.00949693 0.121023 0.0358683 +0.0321446 0.0360609 0.0164637 +0.0341544 0.0548861 0.0351403 +-0.000334987 0.0965293 -0.0302242 +0.0585628 0.0673807 0.0213416 +-0.053406 0.12345 -0.00838645 +-0.0749578 0.132548 -0.00734349 +0.0282219 0.0816125 -0.0219304 +-0.0351889 0.171161 -0.0140358 +0.00949153 0.0936876 0.0522363 +-0.0157849 0.172748 -0.017746 +-0.0175848 0.169785 -0.0150947 +-0.0835905 0.112379 0.0452164 +-0.0404862 0.0846544 0.0431896 +0.0231358 0.0404562 0.0392455 +-0.00366205 0.0540631 -0.0322696 +0.00959837 0.0403395 0.0451906 +-0.0692421 0.0422187 0.00798097 +-0.0285258 0.0717501 0.0402231 +-0.00789542 0.108803 -0.0224197 +0.0159009 0.113257 -0.0160529 +-0.00149436 0.0620061 0.056412 +-0.0420891 0.0363826 -0.0272583 +-0.00449341 0.104477 0.0440393 +-0.0683512 0.0607717 0.0117847 +-0.0927055 0.120137 0.0415853 +-0.0484911 0.115278 0.0334198 +0.02514 0.0350088 0.0196342 +-0.065935 0.125307 -0.00885715 +-0.0621483 0.0699034 0.036962 +-0.0178695 0.104461 -0.0227631 +0.0351768 0.0563002 0.0348659 +0.0105044 0.115477 0.0381888 +-0.0938558 0.126876 0.0162567 +-0.0632514 0.033799 0.0117273 +-0.0736013 0.0654333 0.0137843 +-0.0577792 0.0341881 0.0284371 +-0.0763952 0.0838159 -0.0125906 +-0.0296632 0.180174 -0.00867233 +0.00819029 0.0851531 -0.0324575 +-0.071633 0.174549 -0.0412084 +-0.0538265 0.0927341 -0.0220469 +-0.0471905 0.156504 0.00887867 +-0.0661815 0.0615106 0.0205126 +0.0144985 0.107111 0.0421568 +-0.0721929 0.152802 0.0342528 +0.0142765 0.0666697 -0.0302658 +0.0349485 0.0942163 0.0384062 +-0.0664891 0.0369705 -0.00688594 +-0.077495 0.158339 -0.0149115 +-0.0739383 0.160975 -0.0103701 +-0.00971429 0.0386927 -0.0148008 +-0.0618555 0.155289 -0.0295874 +-0.0621574 0.152203 -0.016578 +-0.032494 0.096035 0.0446186 +0.044345 0.0519693 -0.00630996 +0.0319954 0.0520213 0.0354999 +-0.0300925 0.0509394 -0.0183595 +-0.018449 0.0388382 0.0343981 +-0.0670639 0.154762 0.000889218 +0.0361767 0.0888967 0.0383392 +0.0262873 0.0942382 0.0451936 +0.0186534 0.103359 0.0446898 +-0.0523328 0.0334686 -0.00741897 +0.0507066 0.0540083 0.0292331 +0.0529037 0.0462692 0.0142047 +-0.0888522 0.0996312 0.00941041 +0.0275656 0.0563642 0.0414619 +-0.0371627 0.0336289 -0.0286501 +-0.0198294 0.0882519 -0.0375379 +-0.0907603 0.140585 0.0151783 +-0.00458896 0.0376652 -0.0252351 +-0.093041 0.12831 0.0262642 +-0.0743429 0.0955133 0.0396401 +-0.089704 0.111925 0.0143387 +0.0453684 0.0889907 0.0151607 +0.0456444 0.086201 0.0151659 +-0.0635175 0.0399079 -0.00714576 +-0.0294925 0.0903536 0.0441109 +-0.0888771 0.100994 0.011394 +-0.0121064 0.0869584 -0.0384624 +0.0373352 0.108319 0.0251875 +-0.0882187 0.112165 0.0210064 +0.0349174 0.110993 0.0268865 +-0.0849268 0.122064 -0.00322109 +0.0124968 0.112648 0.0387734 +-0.0662562 0.163203 -0.0177078 +-0.0640701 0.113939 0.0406208 +-0.0654246 0.0794919 0.0421931 +-0.0519669 0.0569186 0.0284516 +-0.0519207 0.0493094 0.0353906 +0.00333114 0.0341656 0.00499397 +-0.056914 0.133942 0.035273 +-0.0780215 0.158305 -0.0199209 +0.0276406 0.111416 0.0348725 +-0.0172565 0.181572 -0.0253576 +0.0372544 0.0379189 0.00466817 +-0.0211197 0.1653 -0.017528 +-0.0557637 0.121264 0.0386516 +0.0274329 0.121878 0.0183804 +-0.0623369 0.16467 -0.04959 +0.00450432 0.0883672 0.0562441 +-0.0649333 0.145142 -0.016034 +-0.0918355 0.118761 0.0292947 +0.0503561 0.073461 0.0121181 +-0.0732571 0.0860546 0.040246 +-0.0543933 0.14384 0.0284354 +0.0235922 0.124679 0.00697037 +0.049638 0.0724241 0.0192263 +-0.0691135 0.0647604 0.0241382 +-0.0277318 0.0385796 0.0327127 +0.0249679 0.0605263 0.0447882 +0.0220764 0.0741142 0.049509 +-0.012493 0.16839 -0.0164935 +0.0220311 0.0550166 0.0457656 +-0.0197467 0.0364265 -0.0184459 +0.000577278 0.0388845 -0.0129362 +-0.0178004 0.121647 -0.00876548 +-0.0516521 0.0334655 -0.0091126 +0.0221612 0.0754835 0.0496518 +-0.0384539 0.162349 0.000413916 +-0.0711225 0.0388168 0.00193457 +0.0334725 0.0950337 -0.0145821 +-0.00505247 0.102417 0.0438081 +0.0159216 0.0348476 0.0287894 +0.0277666 0.0347822 0.00749516 +-0.0675802 0.144972 -0.0192338 +-0.0477088 0.132967 0.0228963 +-0.0134912 0.0386664 0.0301779 +-0.0590273 0.134027 -0.00648451 +0.0244484 0.124114 0.020115 +0.0218798 0.0374214 -0.00364164 +-0.0658775 0.102439 -0.0164403 +-0.0743971 0.166132 -0.0206985 +-0.0634619 0.0339766 0.015084 +-0.0497324 0.138579 0.00441928 +-0.00151689 0.0428507 0.0468014 +0.00660528 0.0935786 -0.0311099 +-0.0862444 0.0819176 0.00849345 +-0.0634827 0.0876134 0.0450541 +0.0182388 0.0763952 -0.028136 +-0.0765343 0.0681368 0.0143622 +-0.092883 0.116038 0.0143172 +0.000494981 0.0442085 0.0460563 +-0.0518518 0.0970732 -0.0222063 +-0.0248173 0.0693751 0.0448313 +-0.089421 0.135156 0.0282104 +-0.0566159 0.0573558 0.0107416 +0.0312695 0.0800594 -0.0199503 +-0.03437 0.0738393 -0.0214808 +0.0226051 0.113885 -0.0127298 +-0.0658838 0.16421 -0.0204509 +-0.0417953 0.0435116 -0.0223513 +-0.0710782 0.156778 -0.0439119 +0.00348525 0.108604 0.0422849 +-0.0239399 0.118058 -0.0129545 +-0.0498545 0.0999668 -0.0218887 +0.0176793 0.0852191 -0.0283526 +-0.0426623 0.0592741 -0.0122692 +-0.0642751 0.044386 -0.00129652 +-0.0456062 0.127883 0.0223049 +-0.0818286 0.147374 0.0384552 +0.0125066 0.10443 0.0450477 +-0.0763281 0.174543 -0.0415648 +-0.0144887 0.0387707 -0.00835843 +-0.00853122 0.0430617 0.0490142 +-0.0783677 0.176339 -0.0480853 +-0.0408918 0.109911 -0.0187996 +-0.0634329 0.159891 -0.0505847 +-0.0278615 0.0987172 -0.0237448 +0.0172353 0.0806842 -0.0288156 +-0.0768582 0.104852 -0.0089026 +0.0310274 0.118497 0.0197321 +0.0262422 0.122687 0.00652555 +-0.000524008 0.041433 0.0467891 +0.0292827 0.060879 -0.0197951 +0.00853553 0.0366751 -0.00931803 +-0.092315 0.125571 0.0312621 +-0.000472926 0.0972534 -0.0289903 +-0.0604964 0.0861621 0.0446513 +0.0117525 0.0432202 0.0447834 +-0.0738828 0.103582 -0.0116089 +-0.00249719 0.0488761 0.0505372 +-0.0307845 0.0580469 -0.0184096 +-0.00234994 0.125819 -0.00745455 +-0.0301636 0.153871 -0.00371356 +-0.0815418 0.0912589 0.0328461 +-0.0901131 0.132441 0.0382173 +0.037389 0.0476423 -0.00613109 +-0.0646684 0.155196 -0.0425404 +-0.0928057 0.124227 0.0372672 +-0.0297999 0.12434 0.000117203 +-0.032492 0.0746402 0.0409516 +-0.0555716 0.122697 0.0389476 +-0.0717789 0.154685 0.0298089 +-0.0930714 0.12018 0.0352857 +0.0144798 0.109585 -0.0180587 +0.00343169 0.0361267 -0.0240106 +-0.0288758 0.046967 -0.0262149 +-0.0616418 0.158426 -0.0235923 +0.0103202 0.0609665 -0.0299301 +-0.0910325 0.14477 0.0261671 +-0.083926 0.0775674 0.0187821 +-0.0575363 0.138153 0.0326058 +-0.0295 0.0703058 0.0395502 +-0.0217308 0.0626511 -0.0346671 +-0.0640717 0.164086 -0.0255357 +-0.063271 0.158522 -0.0165888 +0.0210264 0.0895934 -0.0248804 +-0.0731992 0.145774 -0.0148545 +-0.0334943 0.0803079 0.0415842 +-0.0862122 0.111364 0.0347412 +0.0338239 0.11087 -0.00547119 +-0.0135288 0.0458914 0.0493586 +-0.0643715 0.139866 -0.00735458 +-0.0568939 0.158351 0.00118769 +-0.0405106 0.151258 -0.00613685 +-0.00551608 0.110856 -0.0214408 +-0.0787639 0.0696569 0.0125705 +0.00378339 0.0381062 0.0251953 +-0.0650446 0.154908 -0.0437098 +-0.089228 0.114813 0.0276717 +-0.00277394 0.0797805 -0.0365537 +-0.0661523 0.136835 0.0429956 +-0.0434818 0.0902492 0.04268 +-0.0184702 0.0959697 0.0503933 +-0.0801387 0.142096 0.0454029 +-0.00485582 0.0989472 0.0508482 +-0.0336234 0.153659 0.000337049 +0.00250661 0.0924946 0.055168 +-0.0729484 0.132565 -0.00781242 +0.0194715 0.127423 0.0125674 +0.00484292 0.129473 0.025811 +-0.0576054 0.0658547 0.0344063 +-0.0502601 0.0543084 0.0166402 +-0.027407 0.0396009 0.0539527 +-0.0105297 0.0560622 0.0527517 +-0.0456126 0.0519231 -0.010201 +0.000501847 0.0590908 0.0549783 +-0.0569845 0.0535242 0.00365398 +-0.0671097 0.0432428 -0.000257978 +0.0214666 0.0975514 0.0465681 +-0.08997 0.132328 0.0399309 +-0.0761969 0.167972 -0.0410261 +0.0170202 0.121328 -0.0087569 +-0.0138948 0.17568 -0.0202542 +-0.0281655 0.17267 -0.018055 +-0.0638531 0.04136 -0.00615806 +-0.0348821 0.0342989 0.0153052 +-0.000342105 0.0380462 0.00257941 +-0.00749789 0.0898138 0.0570783 +0.028524 0.0808687 0.0448153 +-0.0331206 0.0356024 -0.0184705 +0.0043586 0.119499 -0.0147306 +0.0467625 0.0462832 0.0266316 +0.0368364 0.111573 0.0161776 +0.00851174 0.0799624 0.0552814 +-0.00244825 0.112634 -0.0193375 +-0.0235385 0.11268 0.0379979 +-0.0115345 0.0922826 -0.0359317 +-0.09304 0.122895 0.0392709 +-0.0271645 0.17563 -0.018169 +-0.0772929 0.117422 0.0514809 +0.0179164 0.102978 -0.02104 +-0.0709646 0.0754682 0.0373385 +0.0216627 0.126095 0.0176515 +-0.0640284 0.119984 0.047923 +-0.0444795 0.0874935 0.0436599 +-0.0893861 0.0943037 0.0204146 +-0.0720651 0.173384 -0.0385311 +-0.0894927 0.14204 0.0311659 +-0.0454987 0.120637 0.0275066 +-0.0250745 0.0954862 -0.0252675 +-0.0895496 0.13918 0.0132126 +0.0192289 0.0820148 -0.027672 +-0.0154803 0.0645289 0.0535158 +0.0164872 0.108442 0.0405002 +-0.00663864 0.115688 -0.0165748 +-0.0494985 0.104247 0.040228 +-0.0673252 0.149334 0.0390086 +0.0300883 0.0872505 -0.0203879 +-0.0278877 0.0633808 -0.0294488 +0.0182732 0.069417 -0.0291542 +0.0171905 0.116688 -0.0137466 +0.0502632 0.0713497 0.022405 +0.0350985 0.114043 0.00837763 +-0.0505103 0.0452467 0.0429196 +0.0302544 0.113856 0.0308506 +-0.0605348 0.0333568 -0.0034971 +-0.00390558 0.0383472 0.0143493 +0.0270583 0.122199 0.00683201 +-0.0241505 0.0378782 0.0124647 +-0.0606031 0.0352186 0.0442288 +-0.0906667 0.113308 0.0195238 +-0.00876475 0.075634 -0.0378123 +-0.0531345 0.0641573 0.0333061 +-0.0262078 0.123609 -0.00273748 +-0.0629032 0.154793 0.00389792 +0.00322165 0.0782734 -0.0348651 +-0.0232226 0.0950277 -0.0288098 +-0.0497962 0.0869626 -0.02172 +0.0239811 0.109404 -0.0139261 +-0.00287196 0.105931 -0.0223953 +0.00350624 0.0619975 0.0564502 +0.0152965 0.129062 0.00674245 +-0.0198254 0.120831 -0.00989132 +-0.0672111 0.0749069 0.0386416 +-0.0199192 0.0375867 0.0533971 +-0.0507132 0.054338 0.0146004 +0.0338375 0.109906 -0.00644408 +-0.052068 0.0531865 0.02764 +-0.0665349 0.0638845 0.0254353 +-0.0340904 0.160759 -0.0135462 +-0.0456409 0.0577841 -0.0117617 +0.0425336 0.0678584 0.0273676 +-0.0549188 0.148123 0.0275408 +0.0178543 0.0352284 0.0378786 +-0.0254848 0.100235 0.0442056 +-0.014497 0.0856418 0.0570702 +0.0151023 0.0860518 0.0518047 +-0.0616341 0.0628646 -0.00472902 +0.02366 0.0848996 0.0483924 +-0.0496187 0.054694 -0.00943972 +-0.0328776 0.105721 -0.0208169 +-0.0144506 0.103914 0.0432646 +-0.0248813 0.105869 -0.0225199 +0.024788 0.0591582 0.0445118 +-0.0159391 0.0999021 -0.023843 +-0.0539979 0.153168 0.0186815 +-0.0738816 0.120852 -0.00799698 +0.0296461 0.118491 0.000643936 +-0.0540045 0.13652 -0.00234857 +-0.0593798 0.0335176 0.00740926 +0.0366379 0.08347 0.0371909 +-0.0520867 0.151648 -0.00355308 +-0.0188227 0.0387965 0.0325596 +0.00898388 0.131012 0.0072855 +-0.0682589 0.154325 -0.0506473 +-0.0521805 0.0531921 0.0266366 +-0.0617514 0.175333 -0.0614739 +-0.0169338 0.185679 -0.0240586 +0.015477 0.103104 0.045929 +-0.0729148 0.0713134 0.0317175 +-0.0172476 0.114664 -0.0174436 +-0.0126734 0.0384579 0.00339052 +-0.0832791 0.0884633 0.0304387 +-0.0858155 0.103519 0.00339021 +-0.0146369 0.0466344 -0.0294365 +-0.0773163 0.098935 -0.0105842 +-0.0145015 0.0631456 0.0536787 +-0.0689178 0.0717538 0.0356819 +-0.0255986 0.0394109 -0.0291464 +-0.0623671 0.0719748 0.0386642 +-0.0301518 0.0360809 0.0236741 +-0.030565 0.0383245 0.0341404 +-0.0574984 0.0918591 0.045399 +-0.0861528 0.0951452 0.0274373 +-0.0644941 0.0412041 -0.00599039 +-0.0363521 0.126723 0.0183002 +0.00755707 0.10303 0.0452955 +-0.0396625 0.0399023 -0.0274567 +-0.0838382 0.11616 -0.00137187 +0.0166591 0.0349342 0.0324763 +-0.0647933 0.15319 -0.00116291 +0.00911841 0.110151 -0.0195223 +-0.0697747 0.155761 0.0260978 +0.045415 0.0763654 0.00219579 +-0.0127734 0.171309 -0.0186592 +0.00748545 0.0964088 0.0510363 +0.0125027 0.109886 0.0398286 +-0.0779306 0.0866645 -0.0115691 +-0.0830177 0.0951656 -0.00554205 +-0.0184064 0.186879 -0.0179354 +-0.0866419 0.0923952 0.0266005 +0.026251 0.103389 0.0398709 +0.0333357 0.116389 0.013468 +-0.0452756 0.131436 0.0105618 +-0.035474 0.0519266 0.0383228 +-0.0536233 0.0657097 0.0353836 +0.0013977 0.0433563 -0.0248502 +0.0269244 0.118903 0.0281816 +0.0395 0.055533 0.0316092 +-0.0723024 0.111428 0.0467445 +-0.0364387 0.0357946 -0.0155844 +-0.0276413 0.159598 0.000270855 +-0.00596208 0.0394 0.0364646 +-0.00479094 0.0798443 -0.0373862 +-0.00779065 0.130523 0.0125627 +-0.0464848 0.12067 0.0277891 +-0.0645002 0.0889975 0.0448988 +-0.0896121 0.0902414 0.0154476 +0.0130231 0.0965172 -0.0241956 +-0.0452605 0.0391077 0.0445023 +0.0587398 0.0709245 0.0152557 +-0.0596114 0.0726835 0.0404064 +0.0240499 0.0348797 0.0195293 +-0.0682817 0.156606 -0.0532672 +0.0178388 0.104825 -0.0190099 +-0.0288938 0.180785 -0.00982491 +0.0323759 0.0738626 -0.0187418 +0.0314474 0.112439 -0.00717966 +-0.074091 0.144362 -0.00888576 +0.0510178 0.0461394 0.00424124 +0.00750963 0.0646928 0.0554932 +-0.0643093 0.0665984 0.0323388 +0.0133515 0.0566849 -0.029233 +-0.0243216 0.10004 -0.0240037 +-0.00749239 0.096543 0.0535421 +-0.00533786 0.0388247 -0.000985585 +-0.0884258 0.0996766 0.0213895 +-0.0320326 0.0609937 -0.0164107 +0.0535495 0.0533436 -0.000784809 +0.0393899 0.0533602 -0.00667374 +-0.0717205 0.168577 -0.0240459 +-0.0704919 0.126012 0.052539 +-0.0388888 0.109926 -0.019043 +-0.0507025 0.140081 0.0193694 +-0.0263231 0.034658 0.0434735 +0.0398861 0.0766416 0.0330246 +-0.0941682 0.126929 0.0222624 +-0.0117712 0.0770642 -0.0382004 +-0.0417668 0.040639 -0.0243092 +-0.0517327 0.164109 0.00103678 +-0.0721705 0.158208 -0.0379206 +-0.0356893 0.0651361 -0.0144415 +-0.065143 0.156205 -0.00860924 +0.00354988 0.0342019 -0.0174252 +0.00312416 0.107287 -0.0203844 +-0.0340011 0.127005 0.00589371 +-0.0418419 0.09571 -0.0225712 +-0.0333161 0.126997 0.0105451 +-0.0717391 0.165925 -0.0182956 +0.0559734 0.0494153 0.0101945 +0.0174969 0.108466 0.0401752 +-0.0507291 0.133637 -0.00121966 +0.0083246 0.0581885 -0.03043 +-0.0711713 0.176467 -0.0550529 +0.0165931 0.100464 -0.0223776 +-0.0544905 0.0862124 0.0452239 +-0.0574075 0.0649991 0.0334306 +0.0195092 0.092819 -0.0242669 +-0.0856512 0.0899172 -0.000541045 +0.0081342 0.104445 -0.020865 +-0.0752567 0.160324 -0.0108988 +-0.0376087 0.118212 -0.0130418 +-0.055019 0.14719 -0.00165707 +-0.04909 0.0628007 0.0352845 +-0.018783 0.0770899 -0.0389016 +-0.0336421 0.175583 -0.0129563 +-0.082659 0.0871422 0.0312687 +-0.0621779 0.061949 0.0245023 +-0.0782836 0.162467 -0.0289415 +0.0339055 0.0599168 -0.014725 +-0.0414124 0.128336 0.00169512 +-0.0398827 0.035133 -0.0101165 +-0.00781609 0.0854881 -0.0377912 +0.0082433 0.13138 0.00986533 +-0.0358714 0.105673 -0.0204021 +0.00749975 0.0589567 0.0535286 +-0.072631 0.0670284 0.0231935 +0.0525192 0.0691267 0.0251103 +-0.0688901 0.0621533 0.0194032 +-0.0824666 0.11008 0.0383967 +-0.0438038 0.0884337 -0.0219011 +-0.00534725 0.0379464 -0.0151277 +-0.0425045 0.0478596 0.0401075 +0.0214753 0.11175 -0.0144217 +-0.000497779 0.0489051 0.0509033 +0.0236032 0.116718 -0.00979024 +-0.0648062 0.0852609 -0.0190538 +-0.0395435 0.101505 0.0409276 +0.0209425 0.124573 -0.000263497 +-0.0286807 0.0383267 -0.00339493 +-0.0585081 0.0422988 0.0170665 +-0.0316383 0.0367739 0.0511824 +-0.085482 0.104867 0.00337403 +-0.00926648 0.100073 0.0477845 +-0.00448593 0.118295 0.0389891 +-0.0377467 0.0768482 -0.0188928 +-0.0640837 0.156142 0.0179222 +-0.0515285 0.144709 0.0153879 +-0.0267903 0.0866521 -0.0358137 +-0.0626407 0.163129 -0.0295903 +-0.00752629 0.0443832 0.0481509 +-0.0750304 0.169881 -0.0295693 +-0.0907748 0.12133 0.00629364 +0.0164129 0.0417834 -0.0225068 +-0.0317772 0.169741 -0.00573949 +-0.0546238 0.0527377 0.0100793 +0.0453589 0.0561811 -0.00597324 +-0.0651505 0.0366918 0.0402161 +-0.032507 0.108409 0.0384637 +0.0185107 0.108486 0.0398481 +0.0450172 0.0749324 0.00120229 +0.00251449 0.0702821 0.0560425 +-0.0434424 0.160833 0.00573037 +0.056541 0.064854 0.0254614 +-0.0648306 0.156078 0.013307 +-0.00545884 0.111961 -0.020621 +-0.0222505 0.0336283 -0.0219672 +-0.0319114 0.16826 -0.00591385 +0.0045246 0.0828376 0.0569094 +-0.0849678 0.0844642 -0.00152644 +0.0277057 0.120723 0.00280565 +-0.0133613 0.182397 -0.0284169 +-0.0569294 0.13993 -0.00415472 +-0.0104844 0.118266 0.038122 +-0.0725121 0.144203 0.0447958 +-0.0661037 0.0713259 0.0366501 +-0.050851 0.138527 0.021367 +-0.0580927 0.0577897 0.0147789 +-0.0157117 0.033701 -0.0245127 +-0.00261732 0.0341102 -0.0185505 +-0.0614975 0.10975 0.0377559 +0.00661243 0.131425 0.00784474 +-0.0602206 0.142504 0.0358229 +0.0126673 0.104052 -0.020179 +-0.0624955 0.0904382 0.0452713 +0.0164839 0.0699861 0.0519409 +-0.0334933 0.0946149 0.0444857 +-0.0904058 0.114907 0.0416618 +-0.0182558 0.178619 -0.0243596 +-0.0436529 0.0346111 0.0345638 +-0.00297107 0.0340356 -0.0204416 +-0.0246065 0.0394112 -0.0290873 +-0.0257404 0.0712076 -0.0359148 +-0.0285156 0.0433359 0.0513164 +0.0262381 0.119658 0.0279158 +-0.0734823 0.0649094 0.0160661 +0.0249492 0.109234 -0.0137375 +-0.0651326 0.157423 -0.0100634 +-0.0578906 0.0600472 -0.00173427 +-0.0868853 0.0847213 0.0144753 +-0.0610173 0.135506 -0.00686914 +0.0547011 0.0728313 0.00929699 +0.00513733 0.104474 -0.0214038 +-0.0199542 0.180019 -0.0229778 +0.022195 0.0344915 0.00477409 +-0.0509846 0.123023 -0.00999375 +0.0173702 0.0506958 -0.0254566 +0.0327797 0.0727287 0.040356 +-0.0376189 0.0505906 -0.0108802 +-0.057408 0.0521648 0.00264452 +-0.0845698 0.111358 0.0279354 +0.045113 0.0861573 0.00219478 +-0.0694333 0.0348816 0.0112742 +-0.0621334 0.15599 0.0157191 +0.0379075 0.0398433 0.0233434 +-0.0695824 0.180796 -0.0534457 +0.00287682 0.0368053 -0.01432 +0.0592296 0.0635939 0.00512091 +-0.0326951 0.0680731 -0.0204474 +-0.017619 0.161286 -0.0140538 +-0.00121244 0.0358159 0.011737 +-0.0485025 0.167013 -0.00296472 +0.0139694 0.0974449 -0.0231882 +0.0336763 0.102539 -0.0125747 +-0.0769165 0.147253 -0.00586064 +-0.0894763 0.140666 0.0321759 +-0.079441 0.139988 0.0475582 +-0.019773 0.0742847 -0.0390372 +-0.066871 0.0626922 0.0228964 +-0.0473301 0.134807 0.0120125 +0.0244991 0.106997 0.0390493 +0.0296386 0.114736 0.0306143 +0.0275719 0.0433403 0.0342886 +-0.0524918 0.107066 0.0397432 +-0.0544973 0.0427375 0.0458563 +-0.0837407 0.129905 0.0507752 +0.0390362 0.108381 0.0141662 +0.0136873 0.0685864 0.0531495 +-0.0780988 0.162499 -0.0239377 +-0.0804325 0.078146 0.029561 +-0.0720693 0.0709772 0.0321852 +-0.036497 0.0903135 0.0436162 +-0.0157593 0.121529 -0.00864145 +-0.0640118 0.135519 -0.00771971 +-0.0096474 0.0481504 -0.030386 +-0.0889991 0.11248 0.0367803 +-0.0718704 0.117956 -0.00810673 +-0.00253303 0.110473 -0.0210263 +-0.0151271 0.118705 -0.0137294 +-0.0533766 0.126536 -0.00565695 +-0.050165 0.0501393 0.0176523 +-0.0617795 0.126914 0.0422805 +-0.0077906 0.079881 -0.0380243 +-0.0181903 0.172708 -0.0227977 +0.0362974 0.0657667 -0.0137187 +-0.0193672 0.122992 0.0288371 +0.0118921 0.127946 0.0270512 +-0.0528594 0.0344415 0.0327571 +-0.0440834 0.0344755 0.0328349 +0.00820576 0.0343954 0.0203732 +-0.0384853 0.0819001 0.0436414 +0.0279153 0.112797 -0.00956049 +-0.0233818 0.177171 -0.0128784 +0.00211138 0.110155 -0.0201605 +-0.0214231 0.0385184 -0.00765668 +-0.0590379 0.13549 -0.00623086 +-0.0654804 0.152163 -0.03833 +-0.0328363 0.0957996 -0.0235469 +-0.0574937 0.0333307 -0.00285911 +-0.0723124 0.154022 -0.038905 +-0.00125765 0.0383424 0.0470318 +0.022422 0.125761 0.0150782 +-0.0285891 0.0935252 -0.0252241 +-0.0395009 0.16971 0.00189803 +-0.0211973 0.0363196 0.0534993 +-0.0671438 0.037039 0.0145094 +-0.0455015 0.115241 0.0333765 +-0.0416597 0.057808 -0.0117566 +-0.0597745 0.0434652 0.0436848 +-0.0594246 0.0334838 0.00203125 +-0.0609255 0.122379 -0.00879585 +-0.0633414 0.0357702 0.0187502 +-0.0629834 0.0594485 0.00869517 +-0.0240199 0.0537379 0.0416895 +-0.0382462 0.044597 -0.024375 +-0.00732189 0.100225 -0.0241674 +-0.0425982 0.0463965 -0.0133084 +-0.0889045 0.133745 0.0416542 +0.00049898 0.0385943 0.0466363 +-0.0295864 0.0462965 0.0488628 +0.00439164 0.0448792 -0.025855 +-0.0608362 0.0341593 0.0278122 +-0.0547243 0.0723714 -0.0165135 +-0.0274694 0.155208 -0.00473974 +0.0246484 0.0713321 0.0461382 +0.0124372 0.0548875 0.0512192 +-0.00549842 0.0828666 0.0570203 +-0.0616148 0.0337181 0.0103501 +-0.0346312 0.0752701 -0.0214845 +-0.0629229 0.058915 0.0109817 +-0.0424386 0.147805 0.00141712 +-0.0363751 0.12414 0.0242241 +0.0176113 0.111464 -0.0161155 +-0.0314976 0.0603384 0.0380002 +-0.0138112 0.128252 0.0219818 +-0.0603076 0.0409502 -0.0078507 +-0.0735166 0.141431 0.0469479 +0.0326456 0.111384 0.0297678 +-0.0635438 0.0341847 -0.00786744 +0.02297 0.122414 -0.00191144 +0.0401375 0.0953636 -0.00688813 +-0.0141538 0.0965092 0.052175 +-0.00422659 0.0383846 0.0124357 +-0.0311024 0.0343581 0.019624 +-0.0780471 0.153854 0.029137 +-0.0581213 0.151582 -0.000807379 +-0.0267449 0.0725846 -0.0356647 +-0.0191918 0.174184 -0.0227992 +-0.00378536 0.0798194 -0.0370348 +-0.0249464 0.0349691 -0.0199992 +-0.0564664 0.0423189 0.0186897 +0.0266976 0.119444 -0.00271582 +-0.023525 0.0349287 -0.0283944 +-0.0800951 0.15261 0.00324045 +0.0268493 0.119915 0.0267269 +0.0354747 0.0390827 0.0235255 +-0.0127812 0.17424 -0.0204206 +-0.0338617 0.168258 -0.00349456 +-0.0144845 0.0744882 0.056153 +0.0261935 0.0402752 0.032238 +0.0102706 0.0681153 -0.0309054 +-0.00974239 0.0387292 0.0290909 +-0.0644512 0.125591 0.047275 +0.010367 0.0479585 -0.0270631 +-0.0246099 0.0984431 -0.024327 +-0.0476227 0.0370311 -0.0128189 +-0.0780422 0.0846436 0.0366002 +-0.0566171 0.135321 0.0339425 +-0.0556004 0.0505584 -0.00338763 +-0.0907186 0.136468 0.0172046 +-0.0245124 0.180278 -0.0098524 +0.00742535 0.0346722 0.0416328 +-0.0699342 0.0651273 0.0236486 +-0.0124071 0.172769 -0.0198823 +-0.041856 0.149196 0.00419837 +-0.0809107 0.103235 -0.00559799 +-0.0631328 0.0335051 0.0030611 +-0.00851461 0.0647289 0.0558918 +0.0154483 0.127759 0.0239281 +0.0255922 0.123349 0.0191129 +0.0138934 0.0631004 0.0516475 +0.00118569 0.0983354 -0.0261952 +-0.0325387 0.118791 -0.011658 +-0.000757843 0.0354065 0.0103826 +-0.0248998 0.158417 -0.0112592 +-0.035233 0.0374002 -0.014964 +-0.0541243 0.156074 -0.00260128 +-0.0584646 0.0588965 0.0024905 +-0.0615294 0.0333928 -0.00373148 +-0.0602915 0.0343294 0.0347628 +0.0265767 0.0994658 0.0420977 +0.0347214 0.0712416 -0.0157876 +-0.040399 0.128703 0.00942739 +0.00251855 0.096887 -0.0286022 +-0.076485 0.148385 0.0403892 +-0.0606115 0.155938 0.0148123 +0.010878 0.0806434 0.0544608 +0.0384784 0.105492 -0.00082855 +0.0438672 0.0916755 -0.00180444 +-0.0513529 0.0733082 0.0416893 +0.0451032 0.0777437 0.000209071 +-0.0817242 0.148679 0.0369003 +0.0461375 0.0834298 0.00718398 +-0.0514739 0.135214 -0.000924577 +-0.00531173 0.100039 -0.0239686 +-0.0176147 0.042187 -0.0278695 +0.00727636 0.114035 -0.0188609 +0.0268989 0.0632714 0.044083 +0.0102735 0.0924657 -0.0299319 +0.010651 0.121836 0.0349107 +0.00895558 0.0361581 -0.0106394 +-0.0905601 0.144393 0.0275534 +0.043756 0.0467626 0.0296361 +-0.0417806 0.126404 -0.00562318 +-0.0358424 0.095771 -0.0231986 +-0.0809037 0.153834 0.0267225 +-0.0777263 0.156926 -0.0159116 +0.00417967 0.034897 0.044357 +-0.0351879 0.125718 0.0201989 +-0.0284012 0.038721 -0.0148192 +-0.0351226 0.169652 -0.0145814 +-0.0203438 0.180146 -0.0154935 +0.0345359 0.11019 -0.00473263 +-0.0932568 0.121548 0.0382795 +-0.0334767 0.152548 -0.00159465 +-0.0271731 0.174192 -0.00959576 +0.0159989 0.11444 -0.0153318 +-0.054238 0.13299 -0.00459005 +0.0366798 0.105376 -0.00582172 +0.0386277 0.0672715 0.0346845 +-0.0227209 0.162682 -0.0153632 +-0.0760409 0.0677685 0.0130189 +0.00250507 0.0772798 0.0565792 +-0.0345053 0.101515 0.0417518 +-0.0546003 0.0541349 0.0100271 +-0.000643212 0.127926 -0.00376413 +0.00284904 0.131659 0.0150261 +-0.0184884 0.186846 -0.021092 +0.0335193 0.114014 -0.000843968 +0.00632048 0.123167 -0.0106939 +-0.0564752 0.0624455 0.0290854 +-0.0138322 0.105995 -0.0224296 +0.00423384 0.0754618 -0.0348642 +-0.0281096 0.0778495 0.0450018 +-0.0776289 0.158329 -0.0159141 +0.0148253 0.0447411 0.0439981 +-0.0859023 0.122521 -0.0027014 +-0.0578481 0.0940916 -0.0211113 +0.00150378 0.0842858 0.0575429 +0.0326379 0.0849202 0.042017 +-0.0549752 0.0499938 0.0105067 +-0.0568824 0.10976 -0.0175883 +-0.00970298 0.0627929 -0.0357349 +-0.0178968 0.163686 -0.0167578 +-0.074969 0.105672 0.0364824 +0.00650677 0.0702743 0.0558788 +0.00487604 0.0992462 -0.0230983 +0.042474 0.101514 0.0131646 +-0.0643723 0.0593574 0.0120942 +0.0593748 0.0580631 0.00716733 +-0.00149842 0.111423 0.0424113 +-0.00749339 0.119159 -0.0142858 +-0.0771313 0.0754374 0.0308061 +-0.0477996 0.0869772 -0.0218762 +0.014411 0.0833733 0.0525453 +-0.0202678 0.159643 -0.00488449 +-0.0159305 0.0950186 -0.0327431 +-0.0279294 0.0931359 -0.0265478 +-0.0855021 0.102147 0.00137916 +-0.0938092 0.125562 0.0252741 +-0.058744 0.140559 -0.00481674 +-0.031677 0.126244 0.00820251 +-0.0264922 0.0447022 0.0511549 +-0.0205862 0.0382221 0.00925741 +-0.053491 0.104292 0.0408761 +-0.0370674 0.156264 -0.0103696 +-0.0634966 0.109514 0.0378318 +-0.0867621 0.084687 0.0184803 +-0.0830364 0.104646 0.028271 +0.0442212 0.0804374 0.0252067 +-0.0448473 0.0339909 -0.0230279 +-0.0037539 0.0755488 -0.0365646 +-0.0661663 0.158028 -0.0551775 +-0.0238007 0.0741774 -0.0380398 +-0.018731 0.0627665 -0.0359648 +0.0446574 0.0720977 0.0012022 +-0.0927955 0.121487 0.0416389 +-0.0620012 0.1241 0.0437622 +0.0300963 0.0995295 0.0401727 +-0.0719316 0.149607 -0.0394232 +0.0355637 0.0889227 0.0392444 +0.0493081 0.0547033 -0.00484617 +-0.0668328 0.0604514 0.0106116 +0.00304719 0.123088 -0.0105402 +-0.0255191 0.118043 0.0319974 +-0.0394865 0.115305 0.0335817 +-0.0326614 0.0592947 -0.0125392 +0.0575508 0.0523393 0.00818574 +-0.0893959 0.0942918 0.0174254 +-0.0269084 0.160002 -0.0134029 +-0.0506856 0.0345547 0.0383582 +-0.0800885 0.0739226 0.0209531 +-0.0277305 0.073972 -0.0353872 +-0.0320496 0.0849187 -0.0285721 +-0.0217999 0.0866355 0.0553929 +-0.0322022 0.0465812 -0.0258568 +-0.0442317 0.12547 0.021384 +0.0214935 0.0781932 0.0504764 +-0.0444883 0.150664 0.00744383 +-0.0303843 0.0566029 -0.0193937 +-0.0723854 0.155427 -0.0359059 +-0.0245149 0.0811097 0.0540325 +0.0189031 0.068639 0.0501604 +-0.0650109 0.041163 0.0307556 +-0.0194954 0.107168 0.0420699 +-0.0325124 0.113906 0.0343195 +-0.0544418 0.118427 -0.0131672 +-0.0536811 0.113759 -0.0162997 +-0.0559476 0.153959 0.0252069 +-0.0675391 0.124252 0.0515729 +0.0440796 0.0450784 0.0271934 +-0.0594971 0.101543 0.0424741 +-0.0184988 0.100234 0.0438197 +0.0434554 0.0790039 -0.00377815 +0.0140981 0.0343905 -0.0079847 +-0.0615105 0.0406302 -0.00752326 +0.0320683 0.0578123 0.0392046 +0.0144666 0.0962642 0.0485999 +-0.0315047 0.0631978 0.0384961 +-0.0306251 0.038441 -0.00943325 +-0.0847861 0.0804507 0.00450965 +-0.0549519 0.160962 0.00433648 +-0.0470839 0.131413 0.00333034 +-0.00104546 0.0391448 0.0323048 +-0.0526926 0.151783 0.016281 +-0.0223808 0.0958588 0.045836 +-0.0841478 0.15365 0.0123539 +0.0536189 0.0735747 0.0133449 +-0.00350831 0.0975151 -0.0292875 +-0.0571277 0.155869 0.0117051 +0.00341369 0.131576 0.0166618 +-0.0237378 0.0654511 -0.0345337 +-0.0858145 0.0991904 0.0269676 +-0.0759199 0.0783227 -0.00959072 +0.032684 0.0640121 -0.0177767 +-0.056282 0.132113 -0.00567386 +0.00328959 0.131137 0.0194851 +0.00882643 0.110931 -0.0195298 +-0.00876485 0.1716 -0.0262973 +-0.0151483 0.0405525 0.0515137 +-0.0498071 0.0343093 0.00865348 +-0.0569766 0.0339283 0.0235563 +-0.0226683 0.0381298 0.00891697 +-0.0855438 0.106245 0.00446783 +0.0454924 0.0651146 0.027904 +0.0150017 0.0576648 0.0496654 +0.00644791 0.119491 -0.0147367 +-0.0156486 0.0481142 -0.0300898 +-0.0650134 0.13537 0.0410634 +0.0113952 0.116794 -0.0158535 +0.0173388 0.0781757 0.0532571 +0.0536226 0.0587546 -0.00269037 +-0.0709897 0.0340252 0.000991695 +0.038384 0.106978 0.0241932 +-0.0385431 0.038993 -0.0286239 +-0.0451337 0.127804 0.0210049 +-0.0690676 0.152436 0.0353067 +-0.0883368 0.137775 0.00920322 +-0.0714828 0.0362083 0.00943052 +-0.0717062 0.159603 -0.040933 +-0.0255949 0.125933 0.00752005 +-0.047874 0.0346487 0.0423594 +0.0367516 0.111162 0.00316661 +-0.00949217 0.110042 0.0428369 +-0.0572015 0.0336196 0.0184714 +0.0150246 0.0392642 0.0442415 +-0.00832489 0.0993422 -0.0252442 +-0.0304761 0.0342807 0.0180201 +-0.026997 0.0382812 -0.00486026 +-0.0916784 0.144722 0.0181573 +-0.0703317 0.172249 -0.0530308 +-0.0159101 0.1643 -0.0176565 +-0.0850976 0.106195 0.00337687 +-0.035284 0.173981 -0.0126295 +-0.032733 0.155408 -0.00943888 +0.00217615 0.12934 0.0262849 +0.00123579 0.075497 -0.0355058 +-0.0332024 0.0455956 -0.0269373 +-0.0155006 0.103015 0.0432792 +0.0396392 0.106988 0.00416547 +-0.021523 0.118151 0.0342827 +-0.0184974 0.103009 0.0434402 +-0.047784 0.038449 -0.0122332 +-0.0104903 0.0604984 0.0550813 +0.0293518 0.0659692 0.0423806 +0.0185572 0.0930309 -0.0244868 +0.0173756 0.109987 -0.0165543 +-0.0865489 0.109072 0.0153468 +0.0363255 0.10537 -0.00683316 +-0.0394998 0.076195 0.0426907 +-0.0603651 0.0470889 0.0366883 +-0.0144951 0.119623 0.0361429 +0.0406661 0.105634 0.0121644 +0.0383891 0.0460848 -0.00524865 +0.0295409 0.0942529 0.0428642 +0.0373159 0.0880544 -0.0152271 +-0.0784316 0.0799342 0.0337318 +-0.0548348 0.124111 0.0382711 +0.0178682 0.0672532 0.0504022 +-0.0788979 0.123682 -0.00614143 +-0.0298552 0.0986755 -0.0232224 +-0.0771653 0.156191 -0.0114635 +-0.0923833 0.130942 0.0122392 +-0.0651094 0.121429 0.0498115 +-0.042493 0.0690949 0.0416622 +0.0416337 0.0792551 0.0303335 +0.0189066 0.0808659 0.0520326 +-0.029145 0.125694 0.0135548 +-0.0619967 0.14761 -0.00462246 +0.0255017 0.0449453 0.0383425 +-0.0925798 0.11747 0.0343056 +-0.00233027 0.0339229 -0.0220991 +0.00799401 0.0819204 0.0555296 +-0.0699548 0.147947 -0.0321477 +0.0415131 0.0394077 0.00724875 +-0.0712173 0.0846981 0.0410753 +-0.0880447 0.0874003 0.00446864 +0.00798497 0.0890814 -0.0324293 +-0.0117258 0.0656807 -0.0365783 +-0.0114796 0.112753 0.0411508 +-0.0817304 0.107364 -0.00260486 +-0.0293156 0.0820403 0.0446588 +-0.0495645 0.0375773 -0.0119604 +-0.043838 0.0956679 -0.0221641 +-0.00869681 0.129559 0.00358698 +-0.0933816 0.129671 0.0222434 +-0.0700603 0.163804 -0.0489659 +-0.00755399 0.0384559 0.0207545 +0.0159604 0.125249 0.0284184 +-0.0514974 0.0791051 0.0438079 +-0.0840796 0.0818676 0.0264914 +0.037525 0.0785071 -0.0127982 +0.0299804 0.119686 0.0179058 +-0.0638039 0.0881523 -0.0190251 +-0.0272788 0.0350567 0.0515587 +-0.00562089 0.115673 -0.0165634 +-0.0104428 0.0347186 0.0450504 +-0.0427898 0.116428 -0.015168 +0.0165768 0.126998 0.000104849 +-0.0238911 0.0738255 0.0493988 +-0.0485539 0.0376116 -0.0123218 +-0.0396922 0.0460798 -0.021311 +-0.0485652 0.0335345 -0.00306359 +0.0414749 0.104231 0.00716597 +-0.0445241 0.0409237 -0.0192998 +-0.0220397 0.0354083 0.0523916 +-0.0380711 0.0340829 0.00944176 +0.0139247 0.0348347 0.0392218 +-0.0297288 0.0335868 -0.0252735 +-0.00107263 0.0385746 0.00195199 +0.0117524 0.0352863 0.00381322 +0.0170772 0.0847646 0.051153 +-0.0656775 0.067321 -0.00750664 +-0.00543271 0.0918052 -0.0353894 +0.0133691 0.0343357 -0.00620151 +0.0451372 0.0875619 0.0011816 +0.0503362 0.0703636 0.0239238 +-0.0474927 0.0804818 0.0437565 +-0.00542063 0.0391587 0.0349931 +0.00193935 0.03568 -0.0153447 +-0.0774115 0.160346 -0.0169397 +0.049877 0.0727457 0.00893584 +-0.0640788 0.0598458 0.0171155 +-0.00650105 0.0472142 0.0482843 +-0.0241121 0.163789 -0.0160029 +-0.0173263 0.0611887 0.051725 +0.0171559 0.100271 -0.022436 +-0.0604932 0.155795 0.0206537 +-0.0609595 0.142497 0.0365005 +-0.0668489 0.0966702 -0.0167929 +-0.0149394 0.183104 -0.021718 +-0.0321779 0.0750041 -0.0285287 +-0.0226305 0.0710127 0.0496427 +0.0463117 0.0820487 0.00917902 +-0.0795939 0.112319 0.0461682 +-0.0658419 0.0995396 -0.0165139 +-0.0810165 0.134048 0.0507919 +-0.0486855 0.131027 0.0278379 +-0.0788429 0.112725 -0.00283498 +-0.0784933 0.0832425 0.0356821 +-0.0258381 0.0781035 0.0498012 +0.0426426 0.0858997 0.0283401 +-0.0677549 0.154168 0.0312275 +-0.0306743 0.0383989 -0.00386137 +-0.0857757 0.0926386 -0.000557841 +-0.0210104 0.0417331 0.053591 +0.0161529 0.100264 -0.0224296 +0.0387814 0.0821002 0.0350599 +0.0484193 0.0639761 -0.00211304 +-0.0858985 0.111778 0.0253403 +-0.0389634 0.128304 0.0114309 +-0.0634823 0.0352819 -0.00824664 +0.0395163 0.0646366 -0.0087647 +-0.0591064 0.0435686 0.0148077 +0.00621882 0.12419 0.0335647 +-0.0171539 0.0347559 0.0453522 +-0.0314811 0.0546225 0.0370229 +-0.0182701 0.114743 -0.017523 +-0.0605388 0.141029 0.0353291 +-0.063605 0.126943 0.0449774 +-0.03749 0.0533987 0.0390423 +-0.0573191 0.0507885 0.00568774 +-0.0424884 0.109818 0.0380938 +-0.082569 0.0790202 0.0265184 +-0.0653913 0.0757553 0.0400472 +-0.0105137 0.0589924 0.0541839 +0.0198393 0.0700116 0.0497622 +-0.0814721 0.135361 0.0497671 +0.00809889 0.111578 -0.0196036 +-0.0276072 0.038217 0.0294729 +-0.0647783 0.173212 -0.0488362 +-0.0760415 0.0675654 0.00655947 +-0.0322855 0.0610195 -0.0154117 +-0.00948933 0.0674612 0.0553354 +-0.0922478 0.11733 0.00930597 +0.0325339 0.116751 0.00316678 +-0.0788837 0.117794 -0.00533035 +0.0177807 0.10571 -0.0179484 +-0.0648315 0.0895741 -0.0187043 +-0.0303114 0.0384164 -0.0075003 +-0.0728418 0.0685704 -0.00149472 +0.0396278 0.103602 -0.00160767 +-0.0575003 0.109781 0.0378101 +-0.0359224 0.034124 0.026018 +-0.0230844 0.126658 0.00843513 +-0.0904612 0.131068 0.0382266 +-0.0782718 0.165861 -0.029036 +0.0284552 0.0607955 -0.0208488 +-0.0495337 0.163976 0.00447865 +-0.0665318 0.134006 0.0442059 +-0.0622043 0.0590015 0.0092504 +0.0124693 0.0962821 0.0494059 +0.0199668 0.115907 -0.0129188 +-0.0101559 0.0386047 0.027311 +-0.0224495 0.0580629 0.0442448 +-0.0768471 0.09916 -0.0110394 +-0.0438495 0.0999429 -0.0214407 +-0.0642587 0.173261 -0.0500973 +-0.0291541 0.123106 -0.00418201 +-0.0785185 0.16527 -0.0289621 +-0.0773807 0.0774654 0.0325309 +0.0184997 0.0892768 0.0486726 +-0.0147168 0.0628748 -0.03682 +0.0133075 0.062355 -0.0296823 +0.0174899 0.111215 0.038757 +-0.0829923 0.130939 -0.00341376 +-0.0749763 0.152739 -0.0169005 +-0.00979029 0.0798633 -0.0379189 +-0.0243904 0.183518 -0.0110527 +0.0382626 0.0899111 -0.0131489 +0.0353274 0.107617 -0.00596632 +-0.0649093 0.06918 0.0352438 +0.0545625 0.0595427 0.0278248 +-0.0664402 0.128427 0.0478848 +0.0302544 0.035019 0.00964843 +-0.0212084 0.186026 -0.0155815 +-0.00559653 0.0391515 -0.0257085 +-0.00382316 0.0854518 -0.0372434 +0.0556932 0.0688929 0.00299188 +0.0435925 0.0958855 0.00119521 +-0.061875 0.156868 -0.0195857 +-0.0283944 0.174224 -0.00779385 +0.000326986 0.131385 0.00837406 +0.0583787 0.0621209 0.00318289 +0.0262357 0.0740751 0.0449841 +-0.0747322 0.0729443 0.0316828 +-0.0650821 0.148822 -0.0290175 +-0.0436469 0.0601588 0.0398932 +0.0443703 0.0410834 0.0161644 +-0.0674507 0.155183 -0.000720573 +-0.0165017 0.177176 -0.0187481 +0.0352588 0.0755049 -0.0148105 +0.00551455 0.110936 0.0415028 +0.0248664 0.0898261 -0.023121 +0.00550646 0.078617 0.0558754 +-0.0698407 0.127049 0.051763 +-0.0375072 0.123454 -0.00854988 +-0.052616 0.0657163 0.0355847 +-0.0748963 0.0690517 0.0244939 +0.023431 0.11936 -0.00662051 +-0.0185076 0.120924 0.0327413 +0.0394332 0.101324 0.027167 +-0.00864992 0.124983 -0.00848236 +-0.0872247 0.152479 0.0216964 +-0.0215688 0.0623472 0.0460467 +-0.0475797 0.035695 0.0449374 +-0.0510737 0.151654 -0.00393732 +-0.0415 0.0930514 0.0423592 +-0.0544965 0.100156 0.0427594 +0.049267 0.0717276 0.00605578 +0.0292141 0.0815364 -0.0209002 +-0.0052585 0.095242 -0.0329133 +0.0151527 0.129419 0.0109697 +-0.0294996 0.100187 0.0432585 +0.0363367 0.0432226 0.0290731 +0.0327757 0.035977 0.0148418 +0.00349523 0.0427434 0.0456833 +0.046121 0.0848311 0.00917504 +-0.067462 0.157723 -0.00658264 +-0.0876012 0.0995367 0.00546504 +-0.0356487 0.0352259 -0.0310792 +-0.0585981 0.0658974 0.0341563 +-0.0639239 0.116652 -0.0103062 +-0.0525394 0.0472909 -0.00733632 +-0.0398304 0.034299 0.0303636 +0.0252131 0.0803965 -0.024704 +-0.0721022 0.165224 -0.0439746 +-0.058758 0.148538 -0.00150368 +-0.0625812 0.150647 -0.00957658 +-0.0878641 0.137757 0.00720039 +0.0109534 0.0475021 0.0472035 +-0.0699012 0.105141 -0.0130553 +0.0318353 0.0540522 -0.0127622 +-0.0866591 0.107689 0.0123597 +0.0552547 0.0595292 0.0270628 +0.0320484 0.11465 0.0272407 +0.0433462 0.0818009 -0.00379375 +-0.0294668 0.176906 -0.0160057 +-0.0169961 0.094658 0.0531741 +-0.0202578 0.0596247 0.0476545 +-0.0798939 0.123658 -0.00558813 +0.0482025 0.0703533 0.0231278 +-0.0206189 0.186125 -0.0151754 +0.0100127 0.0349584 -0.0111996 +-0.0661914 0.152591 -0.0424622 +-0.0478408 0.098515 -0.0219326 +0.026913 0.0619271 0.0440949 +-0.0328507 0.126562 0.0151396 +-0.0689146 0.108019 -0.0123122 +-0.00583756 0.0390351 0.0332216 +-0.0125377 0.0365668 -0.017148 +-0.0373858 0.0446552 0.0411638 +-0.0759006 0.161818 -0.014334 +0.0304033 0.107421 -0.0117891 +-0.0654084 0.175187 -0.050486 +-0.0633716 0.143922 0.0382956 +0.0194957 0.0920261 0.0477827 +-0.0288404 0.0972702 -0.0238091 +-0.00475508 0.0741241 -0.036385 +-0.0104985 0.0362063 -0.0254961 +-0.0625516 0.147537 -0.0115723 +-0.0816708 0.0869142 -0.00660013 +-0.00823999 0.130343 0.0167173 +-0.0809733 0.130966 -0.00434035 +-0.0437659 0.0811743 -0.0201658 +0.00743904 0.129465 0.0253135 +-0.00451238 0.0760575 0.0586977 +0.0302883 0.103408 0.0369471 +-0.0379006 0.151906 -0.00621808 +-0.00550346 0.076042 0.0585145 +-0.0217032 0.0597401 -0.0334972 +-0.0868755 0.112781 0.0262639 +-0.0336701 0.155604 -0.00983793 +-0.0126927 0.0599517 -0.0357172 +-0.0638978 0.150075 -0.0288161 +-0.0144059 0.112046 -0.0186792 +-0.00421023 0.0383902 0.0178766 +-0.0453052 0.113634 -0.0162273 +0.0147972 0.102084 -0.0220848 +-0.0484999 0.105649 0.0400819 +0.0216294 0.0875507 0.0490393 +-0.0124184 0.175705 -0.0216387 +-0.0328373 0.163842 -0.00376818 +-0.0666614 0.0672261 -0.0064803 +-0.0395052 0.119385 0.0302298 +-0.0489243 0.0675117 0.0383488 +-0.0552807 0.0343936 0.0305403 +0.00553119 0.0603997 0.0554086 +-0.0914264 0.14884 0.0201323 +0.0231929 0.110938 -0.0135659 +-0.065154 0.164972 -0.0244937 +-0.050496 0.074792 0.0427038 +-0.0657515 0.154274 -0.0462128 +-0.0343486 0.0367995 -0.0305331 +-0.0826303 0.103323 0.0293175 +-0.0597443 0.0338929 0.0194732 +-0.0425056 0.0591222 0.0401769 +-0.0743438 0.156862 -0.0249223 +-0.00222977 0.0396912 0.0474006 +-0.00562206 0.0388337 0.0298422 +-0.0338556 0.0723894 -0.0214737 +-0.0635465 0.0333817 0.00128463 +-0.0330138 0.0356955 0.0305887 +-0.0730865 0.16659 -0.0202232 +-0.0570856 0.153101 -0.000954757 +0.0275543 0.0960379 -0.019637 +-0.0229677 0.169763 -0.0123298 +0.0217819 0.106251 -0.0165369 +-0.0575003 0.0630187 0.0298519 +-0.00864981 0.171144 -0.0247734 +-0.053919 0.0587242 -0.00741756 +-0.0595 0.105675 0.0404663 +0.0351077 0.0740897 -0.0147891 +-0.0620479 0.155306 -0.016587 +0.0278721 0.0522836 -0.0197543 +0.0325208 0.0469245 0.0310812 +-0.06629 0.139698 0.0427919 +-0.078132 0.172939 -0.0407193 +-0.0294988 0.0559628 0.0364214 +-0.0374897 0.0562507 0.0395531 +-0.0662219 0.155662 0.00991681 +-0.0408786 0.0346362 0.0386374 +-0.0208999 0.185581 -0.0139755 +-0.0330517 0.0624982 -0.0144201 +-0.0767419 0.164619 -0.0220172 +-0.0697905 0.0865423 -0.0170841 +-0.0784816 0.0755217 0.0287043 +0.0172033 0.118701 -0.0119316 +-0.0185134 0.0473863 0.05026 +0.00729554 0.0653986 -0.0323322 +-0.0415011 0.0506114 0.0394281 +-0.0541424 0.033642 0.0190888 +-0.0921005 0.132392 0.0222257 +-0.0136741 0.0384938 0.00315386 +-0.0383322 0.163825 0.00056966 +-0.0762889 0.0738479 0.0305832 +-0.0875285 0.133568 0.00229932 +-0.0736181 0.0688668 0.0266732 +0.02687 0.0981666 0.0425225 +-0.051308 0.153569 0.0116824 +4.86222e-05 0.11836 -0.0154829 +-0.0517937 0.0583908 0.0296448 +0.0605105 0.0595417 0.010156 +-0.0573945 0.0371513 -0.0102727 +0.00965733 0.0345667 0.0223294 +0.0463647 0.0703187 0.00350637 +-0.0625718 0.1468 0.0377209 +-0.089178 0.137924 0.0381661 +-0.0134956 0.0759117 0.0568004 +-0.00574286 0.0755721 -0.037104 +0.0261865 0.123233 0.0107875 +-0.0580499 0.11553 -0.0140963 +-0.00762589 0.0451743 -0.028662 +0.0535357 0.0635428 0.028124 +-0.0718987 0.123811 -0.00847645 +-0.0635357 0.119961 0.0469254 +0.00211859 0.130671 0.0219319 +0.00252859 0.0358017 0.021576 +0.0527591 0.0693467 0.00250314 +-0.0451218 0.0335948 -0.0116042 +-0.0769111 0.100434 -0.0105662 +0.0223237 0.0564658 -0.026195 +0.0394644 0.107011 0.0181712 +-0.0776021 0.0994637 0.0357144 +-0.0632381 0.170981 -0.0495819 +-0.00862433 0.122038 -0.0113292 +-0.0548269 0.0450002 0.0157095 +-0.0506815 0.134691 -0.000340536 +-0.0495888 0.146296 0.0105853 +-0.00908464 0.173025 -0.027717 +-0.00410488 0.0346022 0.0429088 +-0.0260906 0.0386266 -0.0124061 +0.0283176 0.118208 -0.00273298 +-0.0318098 0.121167 -0.00811427 +-0.0737276 0.154081 -0.027902 +0.0162665 0.119939 -0.0112703 +-0.0270805 0.0349584 0.0482667 +-0.0284917 0.101554 0.0428228 +-0.0249764 0.159657 -0.0011434 +-0.0585904 0.142433 0.0328417 +-0.0486888 0.138617 0.0104009 +-0.0234979 0.0724108 0.049066 +-0.019247 0.158526 -0.00845424 +-0.0716194 0.0382939 0.000706648 +-0.0412769 0.0356814 0.042879 +0.0483353 0.0532726 -0.00489034 +0.0606695 0.0664968 0.0121468 +-0.069489 0.104131 0.0386578 +0.00750734 0.0990008 0.0480837 +-0.0624532 0.126929 0.0430601 +-0.0629568 0.15367 -0.0336031 +-0.0374985 0.0747273 0.041938 +0.0426086 0.0930422 0.0261716 +-0.0849422 0.153595 0.0209155 +-0.0543959 0.12661 -0.00573734 +-0.0742502 0.161028 -0.0329547 +-0.0627767 0.112367 0.0371562 +-0.0532977 0.158553 0.00873827 +-0.0769168 0.123731 -0.00719316 +0.0393533 0.0847596 0.0341247 +-0.0692244 0.15634 0.0190049 +0.0343018 0.0936044 -0.01506 +-0.0165008 0.0800909 0.0572191 +-0.014166 0.184338 -0.0242563 +-0.0631574 0.159924 -0.0465929 +-0.0374857 0.0519831 0.0389557 +0.03646 0.112262 0.0117392 +-0.0411413 0.0364371 -0.0278037 +0.0185712 0.126949 0.0207922 +-0.0603223 0.0385556 0.0217181 +-0.0769591 0.131054 -0.00672048 +-0.0295123 0.0565107 -0.0214026 +0.0430875 0.0930739 0.0251589 +-0.00582403 0.0390405 -0.0106025 +-0.0553855 0.0337802 0.0222515 +0.014479 0.100435 0.047468 +-0.0548752 0.0984577 -0.0213117 +-0.0501571 0.0529434 0.0176286 +0.0183573 0.0461568 -0.0227219 +-0.0554809 0.0440191 0.0450323 +-0.0877934 0.0860475 0.0044818 +0.00321463 0.130705 0.0223233 +-0.0505315 0.0389504 -0.011562 +-0.0819835 0.132406 -0.00340088 +-0.0758067 0.0877331 -0.0139103 +-0.091338 0.14476 0.0251578 +-0.0649682 0.034557 0.0300942 +-0.0283013 0.113756 -0.016413 +0.0259713 0.0619044 0.0444933 +-0.0535159 0.0640852 0.0330775 +-0.0046427 0.0482096 -0.0303136 +-0.0584956 0.0861498 0.0443498 +-0.0655423 0.145055 -0.0169033 +-0.0423586 0.123855 0.0235885 +-0.0864234 0.0806346 0.0145003 +-0.033107 0.125984 0.00180258 +0.000400525 0.0433705 -0.0249688 +-0.0337351 0.126905 0.0148106 +0.0594437 0.0677773 0.0191638 +-0.0433018 0.0342732 -0.0267127 +-0.0668634 0.040937 0.011312 +-0.0651408 0.146773 0.0392721 +0.0142259 0.080787 -0.0303234 +-0.0564981 0.0973554 0.0431547 +0.0234826 0.113521 -0.012343 +-0.022737 0.0385766 -0.00982941 +-0.0695434 0.0352232 -0.00418951 +0.060768 0.0651161 0.0111484 +-0.00338536 0.100168 0.0483773 +-0.0154942 0.0772732 0.0564359 +-0.0581438 0.114319 -0.0148345 +-0.0758612 0.165153 -0.0370257 +-0.0666041 0.164889 -0.0207192 +-0.0401309 0.160681 -0.0117333 +-0.00727995 0.0389199 -0.00704692 +-0.0726288 0.07489 0.035733 +0.0572537 0.0657957 0.00220085 +-0.0564793 0.151056 0.0307055 +-0.0459743 0.153608 0.00885524 +-0.046245 0.034596 0.0410145 +-0.0611658 0.168359 -0.0606871 +-0.0242347 0.0401682 0.0541848 +0.0432765 0.10012 0.00816425 +0.0330202 0.102118 0.0356213 +-0.00368236 0.0583856 -0.0334327 +-0.016783 0.0973001 -0.0271368 +0.018711 0.100467 -0.0223545 +-0.0500289 0.122604 0.03284 +-0.063243 0.0333437 -0.00222576 +-0.0187202 0.0613304 -0.0355606 +-0.0268504 0.0548324 -0.0264063 +0.0215374 0.086463 -0.0256391 +-0.0138967 0.099791 -0.0237429 +-0.00550708 0.0774167 0.0583085 +0.055466 0.0507517 0.00421414 +0.00822806 0.0344179 0.00390084 +0.028423 0.0535254 0.0391477 +-0.00689074 0.103109 -0.0232386 +-0.0320031 0.0370471 -0.0177181 +-0.0255422 0.0377889 0.0158759 +-0.0476682 0.165409 0.0039929 +-0.0673807 0.115762 0.049991 +0.00348136 0.111402 0.0420175 +-0.081586 0.0734778 0.0135382 +0.0427229 0.10007 0.00318201 +-0.0456223 0.0548403 -0.0108081 +-0.0226179 0.0464363 -0.0275647 +-0.0201905 0.172698 -0.0217858 +0.0374948 0.0941477 0.0350502 +0.0227469 0.0686119 0.0468992 +-0.012216 0.174205 -0.0276647 +-0.0906322 0.112714 0.0163744 +-0.0599044 0.111127 -0.0158584 +0.00535116 0.0480874 -0.0284111 +-0.0295604 0.158116 0.000994125 +0.0104513 0.122961 -0.0105071 +-0.0619452 0.123832 -0.00870252 +0.00605345 0.0341614 0.00369541 +-0.0696099 0.138316 0.0468524 +0.00349102 0.11963 0.0373483 +-0.0495577 0.0338416 0.0269497 +-0.0500211 0.0529295 0.0155558 +-0.0534917 0.0491191 0.0286591 +0.0546976 0.0478581 0.0131951 +-0.0803392 0.0841108 -0.00756769 +-0.0693719 0.180628 -0.057909 +-0.0247145 0.161052 -0.00252569 +0.0299408 0.0713176 0.0415086 +-0.0779905 0.173544 -0.0470087 +-0.0168218 0.086916 -0.0386596 +-0.0658968 0.109505 -0.0131657 +0.0326969 0.10609 0.0333845 +0.0191388 0.0356129 -0.00667825 +-0.0168818 0.100112 -0.0240537 +-0.0620293 0.135502 -0.00717407 +0.0377405 0.110012 0.0179226 +0.0360001 0.0381146 0.00239588 +-0.0151683 0.160834 -0.010917 +-0.0894324 0.117571 0.0455052 +0.0402874 0.063301 -0.00576463 +0.000231956 0.0755133 -0.0357459 +-0.0663652 0.0422587 0.0107808 +-0.0908359 0.114163 0.0368153 +0.0456753 0.0833922 0.00418733 +-0.0426429 0.0563425 -0.0115708 +-0.0472127 0.168412 -0.001987 +0.0163989 0.0433061 -0.0232691 +-0.0181224 0.165314 -0.018178 +0.014203 0.08785 -0.0301032 +0.00716038 0.0832586 0.0561062 +0.0547452 0.0661481 0.0263648 +0.0207672 0.0700064 0.0493524 +-0.0820552 0.1102 0.0401793 +0.0336664 0.0753805 -0.0167583 +-0.0827158 0.108829 0.000295564 +0.0250546 0.0420912 0.0376641 +-0.0866523 0.0868042 0.0239447 +-0.082018 0.151309 0.00327526 +0.0209029 0.107601 -0.0159886 +-0.0134952 0.0659366 0.0537869 +-0.0902062 0.143054 0.0286714 +0.0484774 0.0431365 0.00824398 +0.00679595 0.0352467 -0.0139815 +0.0154 0.0448131 -0.0240573 +-0.0715189 0.0972122 0.0409969 +0.0152962 0.0652155 -0.0297912 +0.0106046 0.128135 -0.0020835 +0.0273536 0.106086 0.0379553 +-0.0176729 0.0540415 -0.0325983 +-0.00110521 0.131378 0.0121444 +-0.0724827 0.124619 0.0532114 +-0.0738593 0.174047 -0.0391959 +-0.0646169 0.109762 0.0377795 +0.00521659 0.0824462 -0.0340286 +-0.0280135 0.0591603 -0.0264206 +-0.0676617 0.0433934 0.000689977 +0.0407264 0.0999947 0.0251764 +-0.0322885 0.177691 -0.00536129 +-0.0547546 0.035972 0.0465789 +-0.0425002 0.115266 0.0336474 +-0.0687451 0.0708436 0.0347552 +-0.0375019 0.0804666 0.0432825 +-0.0182946 0.181579 -0.0243778 +-0.0789826 0.115456 0.0491224 +-0.0415063 0.0534301 0.0394734 +-0.0708913 0.0403263 0.00282802 +-0.0548298 0.0927311 -0.0220321 +-0.0745142 0.138634 0.0488155 +-0.0807745 0.102028 0.0317433 +-0.0249646 0.181509 -0.0170525 +-0.0727415 0.154031 -0.0358995 +-0.0698172 0.0908437 -0.0164973 +-0.0366476 0.0577363 -0.0111372 +-0.0192308 0.0947234 -0.0324688 +-0.0118669 0.165326 -0.0197278 +-0.0804375 0.137229 0.0490949 +0.0134351 0.129972 0.01319 +0.0457654 0.0791979 0.00319646 +-0.0469166 0.129554 0.0250362 +-0.0581769 0.137607 -0.00562722 +0.04256 0.0817421 -0.00578018 +-0.0478101 0.0884245 -0.0219224 +-0.0424147 0.0344885 0.0314161 +-0.0645764 0.139638 0.0400104 +0.00451352 0.10035 0.0463879 +0.0423459 0.0915624 -0.00580854 +-0.0833163 0.106091 -0.000625527 +-0.0510681 0.0429687 0.0449412 +-0.0258019 0.0564099 0.0391373 +-0.0908661 0.142018 0.0261694 +-0.0222707 0.180155 -0.0129798 +-0.0375032 0.0987213 0.042382 +-0.0135516 0.0445689 0.0502862 +-0.0749157 0.0818909 0.0378096 +-0.042351 0.0336287 -0.0184783 +-0.0104895 0.0660607 0.0552117 +-0.0713722 0.163817 -0.0449613 +-0.0170629 0.040485 0.0522671 +-0.0629502 0.151043 -0.0063137 +-0.0420636 0.159404 0.00394669 +-0.0438717 0.105649 -0.0205239 +0.00352724 0.10161 0.0446753 +-0.00861199 0.118019 -0.01506 +-0.0658335 0.0881117 -0.0184537 +0.00251222 0.126485 0.0307749 +-0.0485567 0.0390246 -0.0119389 +-0.0600846 0.0399274 0.0217122 +0.0128427 0.034706 0.0391137 +-0.0306178 0.0409006 -0.0300462 +-0.0635449 0.0356868 -0.00823988 +-0.0063607 0.125295 -0.00886018 +-0.025376 0.059259 0.0400414 +0.0015066 0.0490028 0.0513272 +-0.0107915 0.0798668 -0.0380291 +0.0455381 0.0540654 0.0323771 +-0.0645999 0.0347243 0.0265296 +-0.074389 0.0874223 0.0399149 +0.0147945 0.0909396 -0.0283095 +-0.0256418 0.0382997 -0.00275652 +-0.0249427 0.17123 -0.0116584 +-0.0860007 0.147303 0.0341634 +-0.00989368 0.129282 0.00314288 +-0.056803 0.119986 -0.0107265 +0.0131837 0.129339 0.0031365 +0.0204173 0.0925165 -0.0239466 +-0.0881399 0.122604 0.000302573 +-0.0687931 0.166618 -0.053004 +-0.0116307 0.0337076 -0.023716 +-0.0395047 0.0776369 0.0429957 +-0.0435015 0.086056 0.04322 +0.0313221 0.0899509 -0.0192278 +-0.0512591 0.0544504 0.0206222 +0.0450165 0.0718833 0.00186291 +-0.0240342 0.0381218 0.00683415 +-0.0643335 0.153058 -0.000307605 +-0.0553413 0.0491317 -0.00437815 +0.0461434 0.0834347 0.0111711 +0.0469552 0.0427274 0.0188429 +0.0403147 0.061632 0.0300225 +-0.0345217 0.127119 0.00425139 +-0.0560415 0.0335011 -0.000906542 +0.0458803 0.0848141 0.013166 +0.0355169 0.0713149 -0.0148173 +-0.00649249 0.0978569 0.0522238 +-0.0720202 0.152598 -0.0428872 +0.00936768 0.0509673 -0.0289075 +-0.017803 0.0813337 -0.0391893 +-0.0164921 0.101629 0.0439544 +-0.0749763 0.136928 -0.00646616 +-0.018438 0.165372 -0.011068 +-0.0749694 0.0749712 0.0333987 +-0.0344916 0.0547205 0.0381399 +-0.0252176 0.0351344 0.0519405 +-0.0785113 0.10447 -0.00758869 +-0.0837382 0.0804711 0.0245022 +0.0352492 0.043109 0.0289456 +-0.0657408 0.0353871 0.0379044 +-0.0633722 0.04322 0.0387983 +0.0187703 0.0504962 0.0444745 +0.0134519 0.128957 0.00181284 +0.00181742 0.106617 -0.0209271 +-0.069971 0.156225 0.0143836 +-0.0793623 0.0739499 0.024599 +0.0192573 0.0903239 -0.0256184 +-0.0785673 0.0716608 0.0214639 +0.0207235 0.123161 0.0287274 +-0.0694864 0.116115 0.0518347 +-0.022007 0.0754165 0.0531212 +0.00541958 0.0361021 -0.0235849 +0.0126937 0.0345417 0.0229719 +-0.0272554 0.0377383 0.0173779 +0.0183414 0.126234 0.023568 +-0.0782171 0.159705 -0.021925 +0.0319954 0.11684 0.00152318 +-0.0364949 0.0747255 0.0419725 +-0.00631217 0.0422986 0.0485312 +-0.0696892 0.0733745 -0.0120577 +-0.0574743 0.0452883 0.0435332 +0.0270163 0.115378 0.0322111 +0.0100342 0.126121 -0.00591235 +-0.0765631 0.160404 -0.0136187 +0.0104935 0.0976882 0.0488434 +-0.088546 0.102334 0.0113879 +-0.0488628 0.0600536 0.0351294 +-0.0102645 0.038442 0.0220215 +-0.0471272 0.159118 -0.00765489 +0.0282711 0.0480264 -0.0137299 +0.0106928 0.0341923 -0.0160349 +-0.0413207 0.122297 -0.0113384 +-0.0112299 0.173502 -0.0278641 +-0.0702692 0.146349 -0.0238997 +-0.0311686 0.0820079 -0.0315681 +-0.058698 0.0349789 0.0448461 +0.0225489 0.0444802 -0.0157666 +0.00650352 0.0547197 0.0529464 +0.0375985 0.10834 0.0241868 +0.026474 0.110098 0.0367031 +0.0104332 0.0344417 -0.0125223 +-0.00834994 0.0943471 -0.0340215 +-0.0726673 0.155437 -0.0339106 +-0.0830075 0.0762889 0.0105229 +-0.0846192 0.0805533 0.0214764 +-0.0805239 0.148418 0.0381727 +-0.087237 0.106355 0.0143591 +-0.0447805 0.0423866 -0.0153071 +-0.0837301 0.147364 0.00414541 +-0.0832136 0.0770175 0.0194025 +-0.0259181 0.0649186 0.0404266 +0.0449079 0.0931824 0.0151569 +0.0348585 0.0808647 0.0399076 +-0.000497657 0.066177 0.0565989 +-0.081976 0.138997 -0.000769762 +-0.0164973 0.088378 0.056467 +-0.0655061 0.041163 -0.00538315 +0.0250139 0.0449606 -0.012685 +-0.0684343 0.0667749 -0.00454154 +0.0313723 0.0597573 -0.0175925 +-0.073748 0.0805288 0.0380979 +-0.0431166 0.0378307 0.0441123 +-0.0704863 0.169511 -0.0510127 +-0.0418064 0.0884466 -0.0220226 +-0.0725566 0.0737794 0.034925 +-0.0432285 0.12305 0.0247373 +0.0537086 0.0670896 0.000808459 +-0.0318715 0.0510682 0.0382665 +0.00533718 0.124533 0.0332195 +-0.0234982 0.0988724 0.0447778 +-0.0873895 0.143261 0.0370491 +0.0450408 0.0625178 -0.00265494 +-0.0618764 0.138649 -0.0067701 +-0.0637266 0.174609 -0.0527846 +-0.0739864 0.158247 -0.0289285 +-0.0616651 0.174109 -0.0575903 +-0.0346424 0.0780819 -0.0225024 +-0.0310543 0.0337173 -0.0219116 +-0.0769455 0.154831 -0.00883158 +-0.0339952 0.0752026 -0.0244888 +0.0354333 0.111001 -0.000827134 +-0.0790203 0.0935614 -0.0105962 +-0.0879913 0.136375 0.00520661 +-0.0582272 0.048399 0.00675942 +-0.00714757 0.130278 0.00704353 +0.0114556 0.0340617 0.001148 +0.0458421 0.0876102 0.0101629 +0.00312017 0.129984 5.00643e-07 +-0.0376568 0.0591992 -0.0116433 +0.00923557 0.129984 0.00166977 +-0.0579608 0.139021 -0.00516612 +-0.0909934 0.148856 0.0221303 +-0.0611919 0.0341824 0.0259657 +-0.0917869 0.115969 0.00931507 +0.00445187 0.116712 -0.0177471 +0.00711096 0.111601 -0.019782 +-0.00341693 0.115827 -0.0167447 +0.0411288 0.0792971 0.0313687 +-0.0358185 0.0337288 -0.0209957 +-0.0304972 0.0703216 0.0396594 +-0.076218 0.0887607 0.0388797 +-0.0701244 0.0632147 0.00385793 +0.0432229 0.0888059 -0.00480108 +-0.0321931 0.123411 -0.0044713 +0.0221624 0.0959197 -0.0219723 +0.0234605 0.0367801 -0.00165856 +-0.0234711 0.183379 -0.010712 +-0.0461137 0.0368295 -0.0192985 +0.023814 0.119372 0.031074 +-0.0617151 0.0722545 -0.0157777 +-0.0697425 0.164473 -0.0161193 +-0.0700395 0.077854 0.0390736 +-0.0793237 0.108591 -0.00458021 +-0.0622625 0.155951 0.0127725 +-0.0579896 0.126711 -0.00710506 +-0.0819874 0.0788394 -0.00151395 +-0.051802 0.111349 -0.0178923 +-0.0548009 0.0547174 0.00969263 +0.0456361 0.0819814 0.00319705 +-0.0362696 0.0447516 0.0428152 +-0.0678285 0.156225 0.0151421 +-0.0441012 0.15765 -0.00916962 +-0.0698712 0.102299 -0.0142744 +-0.0434973 0.0719505 0.0423325 +-0.0385101 0.124563 -0.00772445 +-0.0720478 0.154003 -0.0409023 +-0.0415192 0.155101 0.00654483 +0.030443 0.0496674 -0.00974777 +0.0100263 0.0352289 0.0272451 +-0.0657931 0.0349145 0.0296068 +-0.00453349 0.0975685 -0.029357 +-0.0575464 0.0576229 0.00774375 +-0.0675655 0.156308 0.0210392 +-0.0625478 0.177823 -0.0603383 +-0.0164994 0.107189 0.0421238 +-0.0628199 0.164682 -0.0345962 +-0.0725695 0.162422 -0.0399552 +-0.0295698 0.0377598 0.0258888 +-0.0285577 0.048864 -0.0238529 +-0.051128 0.0487627 0.0151791 +0.0297172 0.11319 -0.0079908 +-0.0129858 0.0389757 -0.0119758 +-0.0519687 0.0514416 0.0131188 +0.00659366 0.0345497 0.005308 +0.0431201 0.0959054 0.0231686 +0.0426395 0.101487 0.00716583 +-0.0326038 0.039499 -0.0302708 +-0.022273 0.0879769 0.0544159 +-0.0501719 0.132485 0.029178 +-0.0104724 0.123683 0.0330383 +0.0158783 0.103153 -0.0212298 +-0.0380583 0.0406922 0.0433465 +-0.05672 0.0341106 -0.0113244 +0.00284082 0.0994342 -0.0233056 +-0.00189869 0.037664 0.017192 +0.00849573 0.122392 0.0350922 +-0.0911887 0.13375 0.0222165 +0.0145889 0.124413 0.0307966 +0.0365837 0.0686678 0.0370221 +0.00534141 0.0341316 0.016402 +-0.0652159 0.16242 -0.0585196 +-0.0708983 0.120893 -0.00865195 +-0.0790974 0.103427 0.0328545 +-0.0233223 0.0386973 -0.0137829 +-0.0870669 0.0909973 0.0256595 +-0.0237781 0.0389651 0.0367703 +-0.0314981 0.107032 0.0395669 +-0.0488684 0.125064 -0.00815774 +0.0188255 0.104686 -0.0188612 +-0.0214383 0.162534 -0.00657802 +-0.0923673 0.124202 0.041188 +-0.0116952 0.0383509 0.0145738 +-0.0933085 0.117399 0.0213072 +0.00147085 0.0388322 0.0258794 +0.041327 0.0986069 0.0251647 +-0.063339 0.160302 -0.0538579 +0.0235731 0.114695 -0.0116124 +-0.0828981 0.101969 0.02963 +-0.0616452 0.139553 0.0354433 +-0.0343725 0.0357923 0.047703 +-0.0451209 0.0377458 0.0446873 +-0.0920088 0.118668 0.00830639 +-0.0495672 0.135498 0.00241956 +-0.0603606 0.0633645 0.0289482 +-0.067238 0.175347 -0.0588701 +0.053058 0.0705565 0.0234346 +0.0380671 0.0821074 0.0357563 +-0.0797544 0.0720045 0.0191472 +-0.0844521 0.153452 0.0225801 +-0.0749035 0.113464 -0.00617122 +-0.0384926 0.0605846 0.0409778 +-0.075255 0.0832856 0.0380964 +-0.0198342 0.0855003 -0.0383524 +-0.0649244 0.113824 -0.0119395 +0.0421 0.0690665 -0.00478535 +-0.0615968 0.0595411 0.0052883 +0.0357976 0.0378059 0.0192762 +-0.0314223 0.0343059 -0.0206653 +-0.0805979 0.0786983 -0.00455339 +-0.0516467 0.0481272 0.0388737 +-0.0325014 0.0618008 0.0386259 +0.0188656 0.11384 -0.0146811 +0.0360105 0.106014 0.0293761 +-0.0489136 0.125469 0.0310273 +-0.0702125 0.173659 -0.0540385 +0.0100557 0.112263 -0.0189498 +-0.0643724 0.0341771 0.0147182 +-0.023212 0.165344 -0.00918469 +0.059734 0.0692161 0.0111359 +0.0164747 0.104398 0.044527 +-0.0870127 0.10633 0.011369 +0.030786 0.0765476 -0.0208061 +-0.0657333 0.121445 0.0506733 +-0.00450341 0.0703715 0.0573471 +-0.0525943 0.0544911 -0.00726112 +-0.0226202 0.181624 -0.0117104 +0.00179227 0.0340095 -0.0213712 +-0.0768516 0.103431 -0.00952853 +-0.0773369 0.105608 0.0341784 +-0.0364954 0.0987325 0.0427313 +-0.0532526 0.161216 -0.00188451 +-0.0658747 0.0981197 -0.0167177 +-0.00202406 0.126832 0.0305449 +0.0396296 0.0392572 0.0187428 +0.0114981 0.0658063 0.0534716 +-0.0660116 0.154522 0.0303582 +0.0322049 0.0871235 -0.0192744 +-0.0161934 0.116736 -0.0156361 +-0.00805531 0.101876 -0.0238922 +-0.0425065 0.0548487 0.0395533 +-0.0623557 0.152158 -0.0235797 +-0.0550956 0.0333795 -0.00606735 +0.0194036 0.123725 -0.00335403 +0.0149002 0.0348014 0.0340409 +-0.0174953 0.112701 0.0395679 +-0.0824727 0.0992304 -0.00559052 +-0.0428553 0.101381 -0.0214106 +-0.0291214 0.0621103 -0.0254198 +-0.0530392 0.146248 0.021397 +-0.0658806 0.040185 0.0344505 +0.0298766 0.0889056 0.0433386 +0.0206783 0.0361727 0.0176735 +-0.029331 0.0791866 0.0433726 +-0.0474654 0.135069 0.0155888 +-0.0798447 0.116298 -0.00419638 +0.0278259 0.115624 -0.00659973 +-0.0400692 0.157713 -0.010751 +-0.087695 0.0860952 0.016472 +0.0119148 0.0630446 0.0522963 +-0.0586388 0.0367329 -0.00984378 +-0.0545581 0.0628278 0.0306388 +-0.0904983 0.133768 0.0272133 +0.0424823 0.0958192 -0.00180898 +-0.085893 0.115781 0.0473131 +-0.0827739 0.0762807 0.0135216 +-0.0783317 0.109572 0.0415234 +-0.0535658 0.132546 0.0330634 +-0.0901834 0.114057 0.0406088 +0.0134074 0.0463149 -0.0249889 +0.0112253 0.0952809 -0.0268838 +0.0150227 0.080777 0.0534508 +-0.0278391 0.168266 -0.00883037 +-0.0698489 0.175309 -0.0448893 +-0.0895811 0.137877 0.0241855 +-0.0790004 0.100402 -0.00859092 +-0.062851 0.116991 0.0425454 +0.0239206 0.0352552 0.0228022 +-0.000501715 0.0634055 0.0567322 +0.046037 0.0806318 0.0171753 +-0.0766672 0.154399 0.00327135 +-0.0117177 0.129576 0.0183624 +-0.0885031 0.148521 0.0281728 +-0.0728479 0.14776 0.0416103 +-0.015205 0.175685 -0.0260892 +-0.082938 0.100617 -0.00458659 +0.0398543 0.102779 0.025179 +-0.0336965 0.120802 0.028215 +-0.0625742 0.17727 -0.0581696 +-0.00806953 0.0988363 -0.0267114 +-0.0560752 0.0602595 -0.0044615 +0.0597447 0.0594744 0.0191904 +-0.0106444 0.0481591 -0.0303544 +0.00351281 0.081445 0.056735 +-0.0672464 0.173921 -0.0582812 +0.00251634 0.0459065 0.0480561 +0.000471055 0.038278 0.000679374 +-0.0002129 0.122901 -0.0103152 +-0.0382613 0.0393263 0.043596 +0.00848754 0.0426921 0.0451471 +-0.0482154 0.137103 0.0123981 +-0.015727 0.0657542 -0.0377517 +-0.0282054 0.0676114 -0.0305119 +-0.0306807 0.0363386 -0.0186663 +-0.0476849 0.119711 0.0291692 +-0.0663764 0.12565 0.049733 +-0.0488788 0.134867 0.0224297 +-0.0877229 0.0888584 0.0234132 +-0.0756171 0.172473 -0.0369846 +-0.033348 0.0384446 -0.00813352 +-0.0442894 0.126542 0.0198398 +0.0235131 0.101506 -0.0194672 +0.0538716 0.0661448 0.0268494 +-0.073604 0.148628 -0.0255988 +-0.0671901 0.0335697 -0.00322908 +-0.0886344 0.0949473 0.0228281 +-0.0761608 0.175035 -0.0499961 +0.0306065 0.111866 -0.00856301 +-0.0317456 0.124703 -0.000629789 +-0.0904268 0.150188 0.0141369 +-0.0639022 0.10675 -0.0154602 +-0.0541798 0.157923 -0.00210942 +-0.00323215 0.0940338 -0.0336602 +-0.0164901 0.115444 0.0380258 +0.053298 0.0648217 0.0277585 +-0.0843615 0.0993477 -0.00259153 +-0.00674006 0.0712942 -0.0362643 +-0.0653258 0.140047 -0.00770568 +-0.00635478 0.123294 -0.010702 +-0.055158 0.0361639 -0.0112393 +0.00412979 0.113096 -0.0199676 +-0.064574 0.0418551 0.0316967 +0.0525746 0.0462075 0.0162071 +-0.0234833 0.0448815 0.0530288 +-0.071322 0.138326 0.0479203 +0.0425401 0.0986672 0.000167984 +0.0273648 0.102724 -0.0167839 +0.0332874 0.111381 0.0289227 +-0.0537039 0.0594504 0.0244709 +-0.0227345 0.0390118 0.0369431 +-0.00354236 0.0429091 0.0474905 +-0.0724136 0.156792 -0.00114359 +-0.00249623 0.0689511 0.056733 +-0.0482461 0.131793 0.0256765 +-0.0515081 0.0490357 0.0376444 +-0.0944953 0.125552 0.0212653 +0.00638447 0.0346255 0.0414585 +0.0141724 0.0940368 0.0505038 +-0.0688973 0.120914 -0.00896239 +-0.0520364 0.14934 0.0173988 +0.00422853 0.0810435 -0.0341743 +-0.0515685 0.0473635 -0.00788512 +-0.0237608 0.156715 -0.0053038 +-0.0356104 0.127425 0.0141251 +0.035299 0.113666 0.0170439 +0.0334236 0.0903004 0.0414245 +-0.0251823 0.172681 -0.0196186 +-0.08807 0.113074 0.0239452 +0.0189601 0.036126 0.0191857 +0.00788239 0.0363273 0.00580236 +-0.0173959 0.0348327 0.0487444 +-0.0878896 0.111968 0.039224 +-0.064655 0.115706 0.0452756 +0.0311169 0.0445787 0.030603 +0.0441778 0.076309 0.025099 +-0.0896358 0.0915718 0.0124456 +-0.065807 0.090969 -0.0181206 +-0.0709064 0.123821 -0.00862928 +0.00649864 0.0924086 0.053834 +-0.0704989 0.134077 0.0490714 +-0.0596081 0.0614162 -0.00289701 +0.0242732 0.0346695 0.0161217 +-0.0464984 0.101529 0.041912 +-0.0498635 0.101385 -0.021584 +0.00433106 0.0496013 -0.0292546 +0.0107427 0.041795 0.045086 +-0.0739382 0.132552 -0.00766265 +-0.0162071 0.174195 -0.0247085 +-0.0886736 0.132413 0.0428724 +0.0320792 0.05838 -0.0156698 +-0.0192343 0.038226 0.00590432 +-0.0445033 0.11527 0.0334071 +-0.0847891 0.15265 0.0254465 +-0.0933214 0.129622 0.0172404 +-0.0346417 0.056288 -0.0107606 +-0.072488 0.172225 -0.0500329 +0.0233375 0.0606402 -0.0253621 +0.0366723 0.106016 0.0285439 +-0.0276074 0.0356491 0.0527176 +-0.053407 0.152198 0.0189083 +-0.0742721 0.166608 -0.0409997 +-0.0457331 0.0753099 -0.0177194 +-0.00672552 0.0670096 -0.035497 +-0.00219357 0.131295 0.0117423 +-0.0261647 0.0620468 0.0393395 +-0.0553241 0.0335005 0.00825618 +-0.0228582 0.119091 -0.0120569 +0.0213076 0.110412 -0.0149847 +-0.0314817 0.0889488 0.0439042 +0.0313336 0.0477022 -0.006755 +-0.0386183 0.174771 -0.00621679 +0.040988 0.0392554 0.0153655 +0.0608733 0.0623548 0.014161 +-0.00841473 0.0366574 -0.0164161 +-0.0191613 0.038383 0.000326194 +-0.00880856 0.0882704 -0.0368626 +-0.0596465 0.149865 -0.00094307 +0.00994371 0.0978413 -0.0235989 +0.0455086 0.055594 0.0323303 +-0.0860233 0.102167 0.0034068 +-0.0281256 0.165243 -0.0164075 +0.00425042 0.072607 -0.0344972 +0.0235113 0.118015 0.0324132 +-0.000261091 0.0350803 0.00896105 +-0.0532978 0.147774 0.0234078 +-0.0554295 0.0433 -0.00807812 +-0.0771312 0.155572 -0.0108986 +-0.0841536 0.0790628 0.0035277 +-0.0900384 0.135039 0.0102136 +-0.0727986 0.0849862 -0.0158247 +0.0336101 0.0962478 -0.0138935 +-0.0284441 0.0732827 -0.0345293 +0.00969167 0.0357093 0.0447693 +-0.0267255 0.0380235 0.0244373 +-0.0572883 0.132547 0.0364836 +-0.0528311 0.0941603 -0.0218064 +0.0400501 0.0644468 0.0314841 +-0.036531 0.116238 -0.0149852 +-0.00649604 0.0912014 0.0567618 +0.0144842 0.101799 0.0469727 +0.00323629 0.131729 0.0108817 +-0.0308992 0.0734931 -0.0305082 +0.0172066 0.068625 0.0512164 +-0.0657497 0.0765846 -0.017077 +-0.0737602 0.111876 0.0478461 +-0.0694356 0.066827 -0.00357005 +-0.0585001 0.119809 0.0399342 +0.0441644 0.0931187 0.000177172 +-0.0843417 0.0952366 0.029868 +-0.054753 0.0782755 -0.0197234 +-0.00738705 0.0379427 -0.0155249 +-0.0910658 0.143334 0.0151805 +-0.00249685 0.08015 0.0577289 +0.0340507 0.0835544 0.0405264 +-0.0523382 0.161184 -0.00281855 +-0.0812419 0.109765 0.0353982 +-0.0582589 0.129739 0.0385905 +0.0543559 0.049285 0.0042337 +0.015086 0.0406501 0.0443863 +-0.0280294 0.0835807 0.0475884 +-0.0393811 0.128131 0.00244283 +0.0208178 0.0415166 -0.0167046 +-0.0881465 0.111869 0.0203319 +0.0179003 0.0347727 0.0238228 +-0.0656433 0.0657616 -0.0058195 +-0.0840769 0.0911454 0.0297191 +0.00624923 0.0796338 -0.0339546 +0.0328487 0.0876389 0.0423414 +0.0276661 0.034679 0.0131567 +-0.00286572 0.104506 -0.0226523 +-0.0862889 0.10771 0.0183439 +0.0408829 0.0937805 -0.00720194 +0.000164408 0.0895345 -0.0346177 +-0.0843436 0.144613 0.00514953 +-0.0675701 0.180805 -0.0555973 +0.0220024 0.0727679 0.0493999 +-0.0156461 0.186781 -0.0233704 +-0.0187078 0.0364661 -0.0182818 +-0.0254003 0.0649585 0.0413183 +0.0122459 0.0780339 -0.0313519 +-0.0555013 0.0547806 0.00866941 +-0.0521449 0.157571 -0.00396744 +-0.073564 0.156227 0.0174776 +-0.00865052 0.104822 -0.0230347 +-0.0529425 0.0516633 -0.00638853 +-0.0652396 0.0384193 0.0154218 +0.0233172 0.0809188 0.0496338 +-0.0494012 0.054529 0.0344155 +0.0222475 0.0847573 -0.0259093 +0.0413844 0.0438265 0.0277643 +-0.0818597 0.146076 0.0399402 +0.0111047 0.0345035 -0.00868495 +-0.006336 0.10011 -0.0240468 +0.0245413 0.0819542 -0.0249712 +-0.00496439 0.130958 0.0121612 +-0.00978935 0.0841125 -0.0382567 +0.00551162 0.104351 0.0429177 +-0.0384918 0.0874952 0.0437107 +0.00946556 0.123094 -0.0106511 +-0.0897739 0.137922 0.033196 +-0.0653284 0.0349129 0.0366619 +0.00350126 0.104382 0.0428343 +-0.0368171 0.04253 -0.0279956 +-0.0634962 0.0775171 0.0416907 +-0.0558399 0.0666 0.0358943 +-0.033501 0.113967 -0.0166209 +-0.0105678 0.0384807 0.0255376 +-0.0875349 0.110472 0.0163392 +-0.0221423 0.0430524 0.0536615 +-0.0485662 0.0337988 0.0271958 +-0.0681764 0.0335792 0.00196619 +-0.00165753 0.05399 -0.0314052 +0.0457818 0.0746903 0.0202853 +-0.0845781 0.148672 0.0341151 +0.0452897 0.0861791 0.0201631 +0.00831626 0.0356874 -0.00657792 +-0.0196215 0.042233 -0.0284571 +-0.0649431 0.145366 0.0395451 +-0.0704953 0.104114 0.0382884 +-0.0414996 0.117985 0.0314618 +-0.0712521 0.17555 -0.0439596 +0.0452514 0.0931962 0.00916141 +0.00133085 0.058325 -0.0325937 +-0.0620033 0.158406 -0.0355965 +0.030344 0.1101 0.0335023 +0.0463602 0.0692197 0.00260588 +0.0444762 0.0945372 0.00319063 +-0.0491293 0.0430398 0.0442413 +-0.0789669 0.172206 -0.0419919 +0.0106503 0.130383 0.00504386 +-0.0484141 0.113756 -0.016334 +0.00450584 0.0547654 0.053433 +0.0441531 0.0720542 0.000197496 +-0.0134923 0.120989 0.0351213 +-0.0907438 0.135107 0.0202099 +-0.0590287 0.0481317 0.00366474 +0.0364319 0.108205 -0.00282023 +0.0178615 0.122874 -0.00643626 +-0.0356427 0.112876 -0.017464 +-0.0668607 0.154942 0.00387089 +-0.0486527 0.162759 0.00599863 +-0.00949915 0.105857 0.0435217 +-0.0615042 0.121243 0.0426924 +-0.0784762 0.0731416 -0.000473316 +-0.0740322 0.156054 0.0216877 +-0.0847959 0.101901 0.0272869 +-0.0596957 0.14074 -0.00502874 +-0.050497 0.0987878 0.0435099 +-0.071801 0.0745407 0.0361884 +-0.0549619 0.14242 0.0292765 +-0.0427321 0.0739589 -0.0183224 +-0.0508117 0.0354248 -0.0125858 +-0.0642011 0.0410429 0.0143098 +-0.0132685 0.101107 0.0437078 +-0.0475187 0.0790945 0.0436556 +0.0209941 0.0373175 -0.00464913 +-0.0204991 0.100239 0.044421 +-0.0684679 0.110537 0.0393979 +0.0243777 0.124503 0.0143821 +-0.0830368 0.0762381 0.00350806 +-0.073622 0.0747015 -0.00970199 +-0.0461368 0.13275 0.0116924 +0.0104091 0.0389479 -0.0231008 +0.0155004 0.116786 0.0363781 +0.0387891 0.096727 0.0316453 +0.0196906 0.074125 0.0513576 +-0.0225582 0.0383546 -0.00218286 +0.0487458 0.0724992 0.00846572 +-0.0668418 0.138273 0.0438208 +-0.0309771 0.0339917 0.0163773 +0.0411176 0.0661976 -0.00575682 +-0.0229076 0.0852723 0.0551257 +0.000828067 0.123861 -0.00936286 +-0.0250326 0.0621165 0.0410328 +-0.0651714 0.128382 0.0462127 +-0.0434333 0.15941 0.00551467 +-0.0264854 0.0348879 0.0467436 +-0.0628107 0.150584 -0.0245802 +-0.0123081 0.181626 -0.0249909 +-0.00919366 0.172678 -0.0237455 +0.0126063 0.0576596 0.0514859 +-0.0332159 0.0709306 -0.0214641 +0.0240158 0.0658883 0.0452055 +-0.0660765 0.124251 0.0501642 +-0.0588552 0.0351368 -0.0102919 +0.0124134 0.0346609 0.020994 +0.0122384 0.0644368 0.0527864 +0.0452304 0.0763569 0.00121116 +0.0242611 0.0448626 -0.0136813 +-0.0304238 0.12007 0.0279522 +0.0145126 0.0347575 0.026768 +-0.0217663 0.065545 -0.0358558 +0.00816067 0.125635 -0.0073679 +0.0183075 0.0679765 -0.028974 +-0.0180555 0.0909221 -0.0366017 +0.00824317 0.0602927 0.0539848 +-0.0687967 0.0894213 -0.0168337 +-0.0450098 0.146255 0.00342574 +-0.0335022 0.0661629 0.0402747 +-0.0781465 0.155117 0.0246877 +0.00450914 0.0758818 0.0564153 +-0.0135396 0.0366033 -0.0173816 +0.045728 0.077798 0.00320493 +-0.0913745 0.142001 0.0211607 +-0.0284862 0.102933 0.0423265 +-0.0302445 0.16108 -0.00171322 +0.0327554 0.116907 0.00609585 +0.0201031 0.0379621 0.0410367 +-0.090178 0.113449 0.0375353 +0.0422255 0.0887323 -0.00780894 +-0.0632995 0.045657 0.000708444 +-0.0344955 0.0889014 0.0434521 +-0.0735138 0.0874308 0.0404487 +-0.081144 0.11 0.0405445 +-0.046701 0.144949 0.00345496 +0.0239825 0.114006 0.0348506 +0.00951792 0.0799496 0.0550675 +-0.0589753 0.0343808 0.0315144 +-0.0715764 0.0724969 0.0344898 +-0.0763465 0.151411 -0.00788806 +0.0476241 0.0444058 0.00228058 +-0.0865319 0.0910336 0.0265354 +-0.0761893 0.0686573 0.0192806 +-0.0738377 0.169377 -0.0450494 +-0.013497 0.089796 0.0568243 +-0.003677 0.129286 0.0256231 +0.00334505 0.0372684 -0.00154693 +0.0285394 0.0735396 -0.0227021 +-0.067513 0.132633 0.0463034 +0.0459145 0.0862168 0.00717824 +-0.0631406 0.152896 -0.00931447 +-0.0777879 0.113218 0.0476364 +-0.023707 0.0340979 -0.0208155 +-0.0144671 0.110884 -0.0194361 +0.0102739 0.0667155 -0.0310192 +-0.00350236 0.0842813 0.0574606 +-0.0664798 0.0832826 0.043443 +-0.0635622 0.0403137 0.0257086 +-0.0426942 0.0666296 -0.0154091 +-0.017221 0.187225 -0.0211553 +-0.0336762 0.062222 -0.0135529 +-0.0673972 0.0641749 0.025006 +-0.0740248 0.149858 -0.0328754 +-0.0467235 0.128128 0.0253508 +-0.0262045 0.163884 -0.00647025 +-0.0271883 0.118982 0.0306038 +0.033772 0.0543003 -0.00971113 +-0.0758953 0.12228 -0.00740649 +0.00448236 0.11415 0.0407558 +-0.0698932 0.103728 -0.0136756 +-0.0567617 0.0782351 -0.019665 +0.0543638 0.0534389 0.000229046 +-0.081811 0.11456 0.047449 +-0.0565132 0.053486 0.0056729 +-0.057003 0.128342 0.0386502 +-0.0664962 0.0370022 0.0293944 +-0.0624918 0.101519 0.0421076 +-0.0687869 0.155336 0.00316719 +-0.0685122 0.141137 0.0449382 +-0.0527211 0.0709092 -0.0154358 +-0.00549985 0.0703921 0.057296 +-0.0709113 0.107952 -0.0112859 +0.00912605 0.108716 -0.0196568 +0.0361188 0.0794771 0.0382118 +-0.0588731 0.101172 -0.0189069 +-0.068257 0.129831 0.0487832 +0.0374605 0.0754022 0.0365814 +-0.032324 0.161031 -0.00122654 +0.0285746 0.0351013 0.0166057 +0.0394117 0.0870933 -0.0127933 +0.0113423 0.0644371 0.0532354 +-0.0583019 0.0447396 0.0435847 +-0.00749863 0.0773617 0.0576592 +-0.050194 0.116459 -0.0151638 +-0.0481437 0.0545922 0.0360102 +-0.0104704 0.100279 -0.0242341 +-0.0347529 0.111555 -0.0180951 +-0.0155011 0.120965 0.0341268 +-0.0784442 0.154274 0.027518 +0.0120599 0.0739551 0.0543847 +-0.0633352 0.0436031 0.0119653 +0.0217763 0.115313 0.0351727 +-0.0415089 0.165252 0.00421093 +0.0335736 0.0700381 0.039723 +0.00251112 0.0647983 0.0566425 +-0.0654261 0.0391693 0.0381077 +-0.0695564 0.114278 0.0502908 +-0.00162211 0.0369274 0.0160989 +-0.058966 0.123797 -0.00809452 +-0.0942641 0.126921 0.0212556 +-0.0335104 0.175675 -0.00315318 +-0.0368415 0.0943464 -0.0233446 +0.0133357 0.128238 -0.000223601 +0.00322397 0.0768846 -0.0351052 +0.00583724 0.038604 -0.0097514 +0.0244991 0.0390622 0.0333159 +0.039204 0.0699354 0.0337973 +-0.00749309 0.122405 0.0352331 +-0.0204932 0.0624346 0.0477982 +-0.0366651 0.0353042 0.023032 +0.0167127 0.0887461 0.050636 +-0.0697357 0.167099 -0.0218834 +0.0364696 0.0632797 0.0368445 +-0.0745038 0.141441 0.0470955 +-0.0621205 0.0458041 0.0366793 +-0.0544906 0.0820201 0.0451936 +-0.0645123 0.172574 -0.0485643 +-0.0421309 0.128083 -3.62159e-05 +0.0281636 0.121218 0.0186511 +-0.0121987 0.171236 -0.0257581 +-0.0281113 0.0605968 -0.0274147 +-0.0631879 0.0449558 -0.00115255 +-0.056884 0.0955743 -0.0213395 +-0.0516987 0.131736 -0.00321408 +0.00826283 0.110977 0.0402103 +-0.0738401 0.154086 -0.0269016 +0.00525204 0.071179 -0.0340737 +-0.0710521 0.173649 -0.0530415 +-0.0508226 0.162642 -0.00385759 +-0.0802179 0.141741 -0.00280512 +-0.0104908 0.12238 0.0346088 +-0.082839 0.145958 0.00218243 +-0.0764995 0.134472 0.0515165 +0.0572674 0.0552579 0.0228777 +-0.0459192 0.038241 -0.0182827 +0.0212995 0.0664627 -0.0275106 +-0.00266999 0.131274 0.0130017 +-0.0615996 0.159996 -0.0335919 +-0.0172476 0.12413 0.0281151 +0.0257469 0.104744 0.0391433 +0.033213 0.112692 0.0276861 +0.0156033 0.0352036 -0.0174539 +-0.030256 0.0608147 -0.0214135 +-0.0554996 0.0746996 0.0418498 +0.0250243 0.0618819 0.0448807 +0.0333333 0.0528011 -0.00875184 +0.0462789 0.0820452 0.011174 +0.0413782 0.0519867 -0.00685663 +-0.0228771 0.11806 -0.0129657 +-0.0608849 0.0381036 0.0449409 +-0.0255027 0.103002 0.0430099 +-0.0102615 0.128766 0.00159795 +-0.0140304 0.0389318 -0.0121434 +0.0242826 0.0691154 -0.0252241 +-0.0262141 0.0383199 -0.0177378 +0.000134491 0.116503 -0.0174981 +-0.0556551 0.0575 -0.00342108 +-0.0641179 0.115013 -0.0114251 +-0.0523454 0.059725 0.0287459 +-0.039493 0.0888698 0.0432118 +-0.0635876 0.0600882 0.0187607 +-0.0527647 0.138519 0.0263974 +-0.0421778 0.150669 0.00550662 +-0.0898169 0.147438 0.0111767 +-0.0440117 0.149183 0.00634807 +-0.0124981 0.0842783 0.057419 +-0.041501 0.0888244 0.0425932 +0.0390954 0.0814754 -0.0127535 +-0.00978632 0.0812687 -0.0379822 +-0.0143122 0.127128 -0.000614565 +0.043146 0.0650339 -0.00117659 +0.0508787 0.0465582 0.0223162 +-0.0187679 0.0341854 -0.027695 +0.0104088 0.0403968 -0.0232872 +-0.0615714 0.111062 0.0370307 +-0.0574772 0.0344195 0.038759 +-0.029988 0.0381577 0.0326274 +-0.0293835 0.0775974 -0.0345936 +-0.0174998 0.115454 0.0379182 +-0.0492034 0.0336154 -0.00143623 +-0.0160718 0.124871 -0.00420428 +0.0153397 0.120197 -0.0115352 +-0.0588103 0.157344 0.00530008 +-0.0448304 0.0956436 -0.0219722 +0.0199962 0.120682 0.0326204 +0.050389 0.0482108 0.0251806 +0.0208954 0.116644 -0.0117151 +-0.079388 0.147286 -0.00182539 +-0.0747645 0.0849032 -0.0147477 +-0.0505016 0.107064 0.0390734 +-0.0174992 0.03427 -0.0197565 +-0.01005 0.166619 -0.017705 +-0.0581312 0.0342101 0.0265873 +-0.0613803 0.17096 -0.0575947 +-0.0304965 0.0917653 0.0441169 +-0.0458806 0.10564 -0.0201801 +0.0202101 0.0833915 -0.0271395 +0.0323169 0.0376319 0.0223694 +-0.0223063 0.0380908 0.0216787 +0.035616 0.10962 -0.00284805 +0.0484836 0.0582148 0.031165 +-0.0809138 0.125107 -0.00520991 +-0.00566591 0.0540919 -0.0326394 +-0.00149662 0.114206 0.0415504 +-0.0263202 0.0930635 -0.029586 +-0.0680426 0.110046 0.0381289 +0.0249883 0.12025 -0.003603 +-0.0736149 0.155479 0.0262237 +-0.0299566 0.122268 0.0236125 +0.0238471 0.107154 -0.0155051 +-0.0566015 0.0451895 0.0246815 +-0.028491 0.0987621 0.0434122 +-0.0338535 0.0870951 -0.024854 +-0.0478322 0.0956344 -0.0220665 +-0.0226614 0.177177 -0.0135831 +-0.0810787 0.154935 0.0192662 +0.0439336 0.0428821 0.0236685 +-0.0114115 0.128814 0.0228458 +-0.0417827 0.0840916 -0.0212196 +0.0249862 0.118037 0.0310154 +-0.0641215 0.0336259 -0.00810847 +-0.0795112 0.081834 0.0339273 +-0.041505 0.119362 0.0299569 +-0.0033398 0.119986 -0.0131833 +0.0411805 0.0745986 -0.0077775 +-0.0446675 0.0636475 -0.0137193 +0.00937092 0.0937948 -0.0292997 +0.0415042 0.104246 0.00816492 +-0.0792333 0.169423 -0.0379787 +-0.0414888 0.0437926 0.0421195 +-0.00148881 0.0760516 0.0586512 +-0.0126769 0.0541386 -0.0335166 +-0.00577674 0.0385885 0.0246132 +-0.0394947 0.0676998 0.0417669 +0.0147262 0.129115 0.00511474 +-0.0045144 0.0774415 0.0584948 +0.0334512 0.0365216 0.00521608 +-0.0662857 0.0625946 -0.00141881 +-0.0659868 0.0418098 -0.00430732 +-0.0485691 0.0460686 -0.00963735 +0.0269239 0.0493817 -0.018692 +-0.0652895 0.175332 -0.0607504 +0.0558431 0.0722822 0.0186151 +0.0389971 0.039341 0.0203664 +-0.0252734 0.05785 0.0399799 +-0.0537245 0.0723552 -0.016258 +-0.0214963 0.104399 0.0429755 +-0.0649507 0.13395 0.041174 +-0.0641915 0.179229 -0.0572988 +-0.00649249 0.110023 0.0430195 +-0.0925801 0.120153 0.0312943 +0.0364682 0.111067 0.00216795 +-0.0487462 0.118344 0.031163 +0.0272987 0.047751 0.0374572 +-0.0235246 0.079724 0.0545007 +0.044563 0.0819287 0.0241608 +0.018083 0.0887399 0.0491141 +0.0180337 0.115273 -0.0142355 +-0.0838753 0.135332 0.0479212 +-0.0707318 0.154624 0.0301689 +-0.0897339 0.0916034 0.0174376 +-0.0487526 0.0782553 -0.019094 +-0.021696 0.0567795 -0.0319795 +-0.0524624 0.139899 0.000243693 +-0.016317 0.0384896 0.0261516 +-0.0172081 0.172701 -0.0233314 +-0.0664965 0.109745 0.0377695 +-0.0117557 0.0345134 -0.025836 +-0.000654571 0.0391799 -0.00969942 +0.00820345 0.083757 -0.0326005 +-0.0458982 0.107069 -0.0194756 +-0.0567459 0.15948 0.00480369 +0.00650779 0.0575337 0.0533257 +0.037787 0.0377202 0.0142753 +0.00846774 0.13132 0.015646 +-0.0475009 0.0425468 0.0439593 +-0.0766415 0.100814 0.0361238 +-0.028614 0.0408765 -0.0296027 +0.00929873 0.115842 -0.01682 +-0.0828745 0.119161 -0.00328383 +-0.0769895 0.0790529 0.034321 +-0.0878006 0.151251 0.0245374 +0.0208653 0.122279 0.030221 +-0.00768551 0.130297 0.0183702 +-0.0545511 0.0430136 -0.00860983 +0.030217 0.0843227 -0.0201565 +-0.0467665 0.152145 0.00944802 +-0.0631219 0.156103 0.0153645 +-0.0681832 0.155264 -0.0517309 +0.0142805 0.0345676 -0.0138073 +-0.0664934 0.0624679 -0.000297249 +-0.0641994 0.16384 -0.059407 +0.0464327 0.0769932 0.014129 +-0.041507 0.0591281 0.0403212 +0.0223695 0.0993436 -0.0211483 +-0.088603 0.087513 0.0164636 +0.00038562 0.0392239 -0.00953586 +0.0270604 0.0795391 0.0462139 +-0.0684865 0.0611195 0.0150424 +0.0105195 0.053345 0.0519069 +-0.0620106 0.15528 -0.0315878 +-0.00991465 0.0385501 0.00204441 +-0.0151984 0.171233 -0.0237028 +-0.026193 0.171192 -0.0190186 +0.0404914 0.0541681 0.032094 +-0.0115119 0.181449 -0.0261319 +-0.027122 0.166756 -0.0173778 +0.0338583 0.105892 -0.0101458 +-0.0671444 0.0628365 -0.000338348 +-0.0788571 0.120751 -0.0060883 +-0.0525645 0.0417313 -0.0101531 +0.0278652 0.0996344 -0.0174729 +-0.0681363 0.122845 0.0524474 +-0.0228108 0.0770465 -0.0385748 +-0.0135961 0.12464 -0.00600832 +-0.00365126 0.0525899 -0.0316543 +-0.068996 0.139931 -0.00789046 +-0.0310262 0.153728 -0.00354608 +-0.0497211 0.131062 0.0298847 +-0.00109314 0.103948 0.0441727 +-0.0204702 0.16083 -0.0136222 +-0.0865394 0.109089 0.0183378 +0.0400949 0.095337 0.0300286 +-0.0693797 0.128452 0.0506772 +-0.0438868 0.107083 -0.0199439 +-0.0470477 0.150201 -0.00445632 +-0.0370064 0.121579 0.0285082 +0.0198288 0.120602 -0.00797301 +-0.0549804 0.0334872 0.0101333 +0.00782186 0.127915 -0.00384433 +-0.0495314 0.12548 0.031876 +-0.0926082 0.117405 0.0243082 +-0.0215209 0.0382567 0.0252967 +0.00181128 0.125691 -0.00735123 +-0.0771897 0.117737 0.0516815 +-0.0554751 0.0519418 -0.00338574 +-0.0771699 0.154422 0.00455736 +-0.00649896 0.092559 0.0563419 +-0.0704303 0.164039 -0.0149268 +-0.036643 0.118048 -0.0128637 +-0.0535056 0.136701 0.0296589 +-0.0594928 0.0761776 0.0424443 +-0.00649656 0.0856337 0.0569558 +-0.0586618 0.0637687 0.0307411 +-0.0650964 0.155112 0.00596226 +-0.0626129 0.0371673 0.0184653 +0.0330114 0.107386 0.0320976 +0.0333812 0.0490928 -0.00645546 +-0.069711 0.1744 -0.043385 +-0.00744712 0.0961017 -0.0318028 +0.0413373 0.0392631 0.0117259 +-0.0487556 0.137056 0.00741027 +-0.0845701 0.112449 0.0449336 +0.0531449 0.0608429 -0.00288049 +-0.0358592 0.10284 -0.0213952 +-0.0778493 0.11932 -0.00645768 +0.0172333 0.0750251 -0.0287502 +-0.0195083 0.11546 0.0373373 +-0.0542618 0.0348321 -0.0120282 +-0.0344386 0.125663 -0.00162003 +-0.0690003 0.160066 -0.00858817 +0.0285895 0.0979793 -0.017709 +0.015268 0.0341755 -6.02454e-05 +-0.012432 0.12921 0.00653602 +-0.0222335 0.171216 -0.0204735 +-0.0656059 0.0615317 0.0026003 +-0.0324965 0.174231 -0.00238999 +-0.0398336 0.0384391 -0.0280596 +-0.0513902 0.122634 0.0344378 +-0.0735123 0.142806 0.0460464 +-0.0703661 0.16678 -0.0206717 +0.0128439 0.0343776 -0.0158182 +-0.074941 0.152735 -0.0189 +-0.0785348 0.0771858 -0.00655705 +0.0347176 0.114447 0.00679736 +-0.0192836 0.0385916 0.0308544 +-0.00226925 0.130756 0.00454173 +-0.0622845 0.161545 -0.0405978 +-0.0687671 0.0900946 0.0427048 +-0.028252 0.050761 -0.0234049 +-0.0818245 0.107456 0.0283887 +0.0216927 0.103078 -0.0191449 +-0.0539655 0.0364915 -0.0115887 +-0.0577688 0.142406 -0.00278963 +0.0347443 0.08354 0.0397721 +0.041088 0.0912985 0.0296287 +0.0209984 0.0578395 0.0478214 +-0.0607897 0.155834 0.0118473 +-0.0427999 0.167662 -0.00952768 +-0.0135045 0.0870342 0.0571061 +0.0551275 0.0637038 0.000299703 +-0.0500088 0.124901 -0.00796654 +0.040891 0.0917758 -0.00909975 +-0.057302 0.152908 0.030569 +-0.0490908 0.140152 0.0103957 +-0.062514 0.0399436 -0.00751704 +-0.0901142 0.14065 0.0241685 +-0.0614977 0.0847334 0.0442553 +0.00401707 0.125848 -0.00755459 +-0.0295217 0.0402041 -0.0298306 +-0.0770884 0.0866038 -0.0125752 +0.00250242 0.0441898 0.0459568 +-0.0884166 0.13498 0.0042424 +-0.0144984 0.11138 0.0412273 +-0.0543527 0.155034 0.0127444 +-0.0485461 0.135607 0.0194861 +-0.0763654 0.155962 0.0179624 +0.0194741 0.0351845 0.0201392 +0.0604235 0.0678625 0.0131519 +-0.0147437 0.0383723 0.00849375 +0.0123077 0.035562 0.0436453 +-0.0878555 0.0861109 0.00948006 +0.0461918 0.0820393 0.0121748 +-0.0376617 0.0344352 0.0359896 +-0.0640313 0.13251 0.040793 +0.00650251 0.122426 0.0350167 +0.046473 0.0747304 0.00699979 +-0.090578 0.13228 0.00723516 +-0.0665138 0.0986787 0.0417758 +-0.0753611 0.0724331 0.0302407 +-0.0737585 0.160179 -0.00884095 +-0.0875779 0.102333 0.0213648 +-0.0213902 0.0905176 -0.0361974 +-0.0663379 0.132604 0.0444522 +0.0420458 0.0817019 -0.00677657 +-0.0739471 0.131099 -0.00783391 +-0.00249367 0.0925505 0.0559214 +-0.0748382 0.149925 -0.0278668 +-0.0734967 0.126028 0.0530224 +-0.0386362 0.117281 -0.0140679 +0.00347668 0.0964809 0.0526894 +0.0453833 0.074968 0.00220665 +0.012072 0.11405 -0.0168987 +-0.0774663 0.168085 -0.0299733 +-0.0534988 0.0761753 0.0426023 +-0.0233682 0.126286 0.00541909 +-0.00704598 0.0392708 0.0363567 +-0.0791658 0.0990564 -0.00863296 +-0.0464518 0.0945568 0.0436355 +-0.0404194 0.128239 0.00205017 +0.0393898 0.107905 0.00701069 +-0.0398611 0.0338561 -0.0163385 +-0.0665222 0.156255 0.0214077 +-0.0672076 0.171872 -0.0410051 +-0.0708261 0.144835 -0.0182015 +-0.0650483 0.0701635 0.0361166 +-0.00764186 0.11082 -0.0214014 +-0.0836837 0.151385 0.0303528 +-0.0496912 0.162854 0.00564102 +-0.0114821 0.125053 0.0306553 +-0.0713615 0.158186 -0.0419305 +-0.0348112 0.0336186 -0.0263013 +-0.0652015 0.0334423 0.00269659 +-0.00682217 0.0390777 -0.0108403 +-0.0745121 0.155307 0.0054919 +0.00849016 0.0441134 0.0451901 +-0.041821 0.0914074 -0.0230213 +0.0243874 0.048835 -0.0205112 +-0.0578612 0.158406 0.00308521 +-0.0781467 0.116431 0.0503206 +0.0429791 0.071952 -0.00379352 +-0.00196689 0.131088 0.00752604 +-0.0728984 0.156837 -0.0329194 +0.00543206 0.119469 -0.0147017 +-0.00442631 0.0386612 0.00487339 +-0.089531 0.0983552 0.0174009 +0.00679264 0.0379024 -0.00704418 +-0.0255688 0.0356598 0.0531386 +-0.0343151 0.0794495 -0.0245241 +-0.0124944 0.0870249 0.0570339 +-0.0710693 0.155098 0.0285743 +-0.0663511 0.0350877 0.0310837 +0.00349789 0.122445 0.0347995 +-0.0414975 0.045132 0.0414403 +0.0348194 0.0365264 0.00732462 +-0.0740113 0.141343 -0.00688783 +-0.0303332 0.0706347 -0.0294852 +0.0503042 0.0691243 0.0253774 +-0.0701319 0.158154 -0.0479233 +-0.0358242 0.0915039 -0.0239402 +-0.0645394 0.0596403 0.015406 +0.0213135 0.0650138 -0.0271409 +0.0262112 0.0873747 -0.0229809 +-0.052671 0.112615 -0.017101 +-0.0592898 0.045994 0.0417021 +-0.0717164 0.163822 -0.0439567 +0.0178664 0.127935 0.017674 +-0.0655034 0.108381 0.0382088 +0.0278762 0.0942373 0.043974 +-0.0457869 0.0855328 -0.0217062 +-0.0643109 0.169365 -0.0428818 +0.0100266 0.0346111 0.0241784 +-0.00361434 0.0341476 -0.0187856 +-0.0389438 0.047744 -0.0146455 +-0.0676963 0.0648397 0.0261272 +-0.0374998 0.0691046 0.0417769 +-0.0568378 0.0613597 0.0260949 +-0.0369296 0.036554 0.0451414 +-0.0284901 0.0688983 0.0393825 +-0.0534824 0.0340932 0.0259063 +-0.0631168 0.15992 -0.0455978 +-0.0444353 0.0335419 -0.0188134 +-0.0168224 0.0960286 0.0515795 +-0.076233 0.145832 -0.00587217 +-0.0231748 0.0709692 0.0487695 +-0.0104382 0.0354056 -0.0175403 +-0.0897878 0.136555 0.0351995 +-0.0717761 0.0344583 0.000444464 +0.0353682 0.103387 0.0319873 +-0.00977607 0.0770524 -0.0379416 +0.00551406 0.0375423 0.0260562 +-0.00350144 0.0675505 0.0564719 +-0.0564947 0.102955 0.042036 +-0.061361 0.0336079 0.00692461 +0.00850062 0.121038 0.0360118 +0.0202826 0.0693621 -0.0284085 +-0.00908512 0.169637 -0.0217386 +0.0255848 0.123614 0.0162626 +0.0234098 0.0871372 -0.0242525 +0.0269727 0.112042 -0.0107557 +0.0262833 0.0935743 -0.0210485 +-0.059 0.0412164 0.021703 +0.0345357 0.0373492 0.0194302 +0.0530102 0.0462982 0.0132036 +-0.00365111 0.0511553 -0.0312289 +-0.0591025 0.0338635 0.0178635 +-0.0144888 0.0673806 0.0542261 +-0.0416194 0.0336308 -0.0257822 +-0.0186097 0.0407857 -0.0282477 +-0.0298888 0.0474725 0.0462905 +-0.00306646 0.0386027 0.0233477 +0.0330707 0.110451 -0.00703014 +0.0146846 0.037467 0.0442233 +-0.0390505 0.154795 -0.00905663 +-0.0306702 0.0891071 -0.0265975 +-0.090498 0.131069 0.0362301 +-0.0189866 0.10628 -0.022556 +-0.0125142 0.181139 -0.0289621 +-0.0236648 0.0522261 -0.0284113 +-0.0564969 0.100177 0.0431307 +-0.0314961 0.10429 0.0412052 +-0.0509168 0.0335668 6.7085e-05 +-0.0773495 0.081875 0.035997 +-0.0834254 0.141805 0.00220396 +0.00104126 0.108173 -0.0205653 +0.0181741 0.0988563 -0.0226017 +-0.0797776 0.115912 0.0485816 +-0.0816869 0.0734846 0.011537 +0.00150486 0.0856703 0.0573817 +-0.00849476 0.0745791 0.0575173 +-0.00549893 0.0939194 0.0556385 +0.0221626 0.0490425 0.0405889 +0.0363661 0.0873006 -0.0164353 +0.0491174 0.0712134 0.0219878 +-0.079214 0.155524 0.0184351 +-0.0654627 0.0598015 0.0150426 +0.0330982 0.0626311 -0.0167961 +-0.0839336 0.126519 -0.00402298 +-0.00950667 0.125161 0.0310898 +0.0292092 0.0563773 0.0403225 +-0.0273861 0.0720614 0.0416635 +-0.0647467 0.0379255 0.0402853 +-0.0521847 0.140082 0.0224024 +-0.0276164 0.0422898 -0.0293674 +0.0360108 0.100867 -0.0107814 +-0.0946899 0.124172 0.0202666 +0.0446233 0.0903218 -0.000806954 +-0.00230838 0.0348204 0.04129 +0.00391726 0.126651 -0.0064175 +-0.0633881 0.0336212 0.00649796 +0.00838362 0.046349 -0.0258656 +-0.0577252 0.156918 0.00853143 +-0.0693669 0.17099 -0.0332104 +0.0249955 0.0347512 0.0143719 +0.00961895 0.12141 -0.0128393 +0.021665 0.0416371 -0.0126942 +-0.0521438 0.0568294 0.0272279 +-0.0628733 0.0996403 -0.0179913 +0.0218834 0.0415901 -0.0107198 +-0.0546838 0.0435714 0.0206922 +-0.0176301 0.183064 -0.0184359 +-0.00750517 0.0471136 0.0478292 +-0.0520933 0.154615 -0.00405641 +-0.0865732 0.0860822 0.023453 +-0.0665787 0.163768 -0.0579853 +0.00636801 0.0479975 -0.0276935 +0.0368613 0.0587703 -0.00975684 +-0.0879266 0.10368 0.0183585 +-0.016623 0.0450359 -0.0278307 +-0.0895401 0.135156 0.0272131 +0.000356348 0.0496808 -0.0306188 +-0.0836962 0.138005 0.0462469 +0.0441945 0.077668 0.0251701 +-0.0685147 0.0930476 0.0422841 +-0.0232574 0.100051 -0.0240138 +-0.03748 0.0548048 0.0392179 +-0.0293599 0.15815 -0.0119938 +-0.021522 0.0336815 -0.0237529 +0.00128503 0.0655494 -0.0343406 +-0.0861178 0.0953813 0.000442214 +0.0350885 0.099465 0.0350983 +-0.0779853 0.13835 -0.00526914 +-0.0857179 0.124363 0.0486993 +-0.0309707 0.163858 -0.00458082 +-0.0722468 0.174258 -0.0400013 +-0.0149026 0.105901 -0.0222117 +-0.0673665 0.165482 -0.0209987 +-0.0876017 0.152029 0.0126504 +-0.0220763 0.0666765 0.0478151 +-0.0624814 0.094591 0.0443423 +-0.0196147 0.0379102 -0.0280301 +-0.0346582 0.0422066 0.0469558 +-0.0199036 0.0739897 0.0538964 +-0.00877818 0.0387104 -0.00343461 +0.000535895 0.0548656 0.0545076 +-0.0454881 0.10014 0.0423159 +-0.0404927 0.0958661 0.0421915 +-5.87354e-05 0.100974 -0.0229378 +-0.0283024 0.0362399 -0.0299084 +0.026308 0.0822369 0.0469135 +-0.06337 0.156813 -0.0136043 +-0.0624231 0.0357528 0.0196573 +-0.0709978 0.0698591 0.0316215 +-0.00550273 0.0661441 0.0562254 +0.00539692 0.0418924 -0.0240197 +-0.0711187 0.0642492 0.0206358 +-0.0614458 0.0606683 0.0222701 +0.0189142 0.0353585 0.00519133 +0.0315596 0.0497964 -0.00774264 +-0.0548596 0.0462919 -0.006395 +0.0010398 0.0392387 0.0326514 +0.0448141 0.0889533 0.0211601 +-0.0898897 0.136442 0.013225 +0.0409408 0.0873455 0.0311847 +-0.0866496 0.106304 0.00937201 +0.0315171 0.118424 0.0085036 +-0.091229 0.14471 0.0161551 +-0.00263717 0.12924 0.026005 +0.0142425 0.0645148 0.0521595 +-0.0509259 0.0571242 0.0316152 +-0.0585706 0.155353 0.0213449 +0.0242207 0.111888 -0.0125803 +-0.0305755 0.0788685 0.0415824 +-0.0664528 0.145477 0.0410093 +-0.00432524 0.0423738 0.047881 +-0.0434528 0.12491 0.0216806 +-0.0610445 0.045667 0.0306816 +-0.0148175 0.0855384 -0.0388203 +0.0594886 0.0594575 0.00616841 +-0.0740871 0.156873 -0.0259173 +-0.0414785 0.105663 0.0400022 +-0.0376995 0.0680509 -0.0154542 +-0.0698935 0.122364 -0.00881274 +-0.00848477 0.0718045 0.0573713 +-0.0394932 0.127549 -0.000886358 +-0.0856022 0.136615 0.0453504 +-0.0889467 0.143422 0.0321606 +-0.0738723 0.109242 -0.00905672 +-0.0222267 0.0906414 0.0528718 +0.00551724 0.0661119 0.0558057 +-0.0588983 0.0582416 0.00880815 +0.0225876 0.0388978 0.0383164 +0.0022443 0.0974458 0.0519249 +-0.056455 0.12554 0.0394323 +-0.00949777 0.091187 0.0566315 +0.00149085 0.103013 0.043912 +-0.00374904 0.0712712 -0.0357267 +-0.0394946 0.119701 -0.0126173 +-0.0631669 0.152168 -0.0312981 +-0.0139477 0.0625843 0.0539847 +-0.0604937 0.100137 0.0425915 +-0.0749718 0.138395 -0.00644263 +0.00624486 0.0401371 0.0456279 +0.0193551 0.0475975 0.0417872 +-0.0303971 0.0890708 -0.0275789 +0.0196022 0.0462781 0.0421275 +0.0317544 0.0632771 0.0405733 +-0.0662966 0.156977 -0.00759157 +0.0183734 0.0506657 -0.0252113 +0.0404388 0.0427247 -0.00185446 +0.0115151 0.105777 0.0436811 +-0.0301364 0.0349235 0.0476426 +0.0254917 0.0369057 0.0252691 +-0.0850483 0.109026 0.0223524 +0.0157867 0.112048 -0.0167369 +0.0360751 0.0370336 0.00715793 +-0.0781026 0.0818813 0.0353359 +-0.00650962 0.0773868 0.0579538 +-0.0494324 0.0586474 0.0343285 +0.0112135 0.116429 0.0374582 +-0.0555782 0.159581 0.0063787 +-0.0454954 0.160804 0.00677344 +-0.0709975 0.139911 -0.00751202 +-0.0547852 0.0339346 -0.0120065 +-0.079504 0.128859 0.053141 +-0.0155349 0.0459646 0.0502157 +-0.0704857 0.116111 0.0520944 +-0.0454716 0.0404727 0.0442216 +-0.0890267 0.148493 0.027289 +0.0192952 0.126057 0.00111502 +0.00542039 0.0392223 0.0299552 +-0.0509634 0.152153 0.0121451 +0.0432798 0.100122 0.00916351 +-0.0722295 0.16736 -0.0213426 +-0.0311459 0.0354418 0.0504241 +-0.0834736 0.114211 -0.000781836 +-0.0258217 0.181482 -0.0160394 +-0.0517798 0.115481 0.0337859 +-0.0763629 0.108471 -0.00759882 +-0.0757916 0.155001 0.00503825 +-0.0893649 0.111932 0.017326 +-0.0619999 0.132592 -0.00773229 +-0.033844 0.171255 -0.00164046 +-0.0352015 0.153653 0.00157065 +-0.0722895 0.147809 -0.0265569 +-0.0217088 0.114301 -0.017023 +0.026785 0.0955535 0.0441601 +-0.0481378 0.0672057 0.0386531 +-0.026667 0.0823364 0.0504973 +0.00619086 0.131536 0.009113 +-0.0526119 0.0580506 0.0248562 +0.00250286 0.0576093 0.0540213 +-0.0810169 0.0953587 0.0335948 +0.029848 0.0875415 0.0432926 +0.0464379 0.0778615 0.0131806 +-0.0134997 0.0856507 0.057198 +0.0263535 0.0795425 0.0469281 +-0.0265857 0.0603669 0.0385952 +-0.0334943 0.11802 0.0311453 +-0.00337868 0.117905 -0.0149619 +-0.0660268 0.177263 -0.0521591 +-0.0238887 0.156697 -0.00604726 +-0.00760592 0.125948 -0.00752899 +-0.0221488 0.0383333 0.0268965 +-0.0293863 0.155004 -0.00725783 +0.0105543 0.126889 0.0293082 +0.0501729 0.0446765 0.00723117 +0.0310879 0.115727 -0.00269046 +-0.0191314 0.122285 0.0303949 +-0.0777065 0.155692 0.0145746 +-0.0797904 0.152563 0.0316147 +-0.0710154 0.0391332 0.00421404 +-0.0889531 0.100999 0.0124002 +-0.0147295 0.0942902 -0.0339999 +-0.0812191 0.0785924 0.0290188 +-0.0766463 0.0803349 -0.0100768 +-0.0435275 0.152141 0.00710463 +-0.0608313 0.092512 -0.0191943 +0.0227948 0.124775 0.0223512 +-0.0831943 0.132626 0.0501472 +-0.0317593 0.0449779 0.048226 +0.00552401 0.0633596 0.0561453 +-0.0492065 0.128269 0.0305743 +-0.0634388 0.152153 -0.00650488 +-0.0568117 0.135044 -0.00489316 +0.0252231 0.117755 -0.00691168 +-0.0716366 0.0874136 0.0414306 +-0.0725279 0.091561 0.0413901 +-0.0764449 0.084677 0.0378167 +-0.00880306 0.0841017 -0.0380883 +-0.0688616 0.033602 -0.00179476 +0.0161578 0.0988387 -0.0226848 +-0.0829912 0.0966357 0.0312921 +0.00854504 0.101743 0.0468013 +-0.0161113 0.0419173 0.0519008 +-0.0115772 0.0991016 -0.0249869 +0.026625 0.0839457 -0.0229857 +0.0451532 0.0931968 0.0111604 +-0.0264982 0.113889 0.035131 +-0.00351628 0.0442826 0.04692 +-0.0202282 0.0639107 0.048901 +0.0154069 0.0403121 -0.0220991 +-0.0725345 0.140015 0.0475615 +-0.0340447 0.1653 -0.00374721 +0.00850451 0.0883096 0.055394 +-0.0516913 0.0680528 0.0372779 +-0.070167 0.162396 -0.0479528 +-0.0174382 0.127681 0.00469302 +0.0354105 0.0965418 -0.0122281 +-0.0427202 0.152139 0.00651185 +-0.00023381 0.123831 -0.00932637 +-0.073929 0.152666 -0.0308896 +0.0244967 0.0375596 0.0281073 +-0.038496 0.0450464 0.0406484 +0.0424477 0.0803262 -0.00578172 +-0.017618 0.163994 -0.00984759 +0.042638 0.101488 0.0111603 +-0.0114747 0.111375 0.0418865 +-0.0878262 0.152428 0.0199936 +-0.0605498 0.0341606 0.0243603 +-0.0474966 0.088987 0.0447599 +0.0139221 0.0913152 -0.0287052 +-0.0182228 0.038194 0.0115761 +-0.0697006 0.0619862 0.0158161 +0.0317346 0.0619381 0.0405155 +0.0470668 0.0701831 0.0226957 +-0.0222639 0.0783263 0.0546841 +-0.0624118 0.148891 -0.00459657 +-0.0245152 0.111258 0.0385919 +-0.0623581 0.164692 -0.0425931 +0.0189449 0.0348191 0.0239933 +-0.0489525 0.123989 0.0308621 +-0.0294789 0.0732089 0.0403736 +-0.0912678 0.12968 0.0332366 +0.0188735 0.102787 -0.0208351 +-0.0542898 0.0343509 0.030786 +0.0541934 0.0628656 -0.00090927 +-0.024607 0.037979 -0.0290368 +-0.0461075 0.164061 -0.00779976 +-0.00480748 0.0854817 -0.0373491 +-0.0398973 0.160894 0.00183362 +0.0122013 0.0878954 -0.0308742 +-0.0609826 0.13955 0.0346529 +0.01801 0.126774 0.0220214 +-0.0720383 0.149669 -0.0395937 +0.0268545 0.0350543 0.018119 +-0.00249757 0.0952299 0.0546317 +-0.0177632 0.0728777 -0.0388934 +-0.00835092 0.0354934 -0.0172056 +-0.0123646 0.109877 -0.0203825 +-0.0385 0.120755 0.0293207 +-0.0614467 0.0335533 -0.00933279 +-0.0144984 0.108621 0.0424908 +-0.071459 0.151188 -0.0433221 +-0.0227544 0.0753712 0.0524561 +-0.0581897 0.157381 0.00697939 +-0.0588054 0.0825509 -0.0205914 +-0.0254269 0.0781373 0.050782 +-0.0176233 0.0450417 -0.02779 +-0.0345002 0.10287 0.040969 +0.0398172 0.0390737 0.00420564 +-0.0642915 0.169488 -0.0607786 +-0.0391909 0.150688 0.00279786 +-0.0817139 0.108721 -0.00159489 +-0.0691226 0.174646 -0.044619 +0.0542982 0.0579702 -0.00188368 +-0.0903603 0.143336 0.0142018 +-0.0554977 0.109766 0.0379077 +-0.0646073 0.15754 -0.0113176 +-0.0857257 0.0994313 0.000394941 +-0.0634657 0.0730594 0.0392535 +-0.0114926 0.0604332 0.0544994 +0.00136064 0.0481752 -0.0296995 +-0.0476605 0.124307 -0.00939578 +0.00152589 0.0731231 0.0568629 +0.0454513 0.0412382 0.0102351 +-0.0555526 0.124119 0.0389742 +0.0111749 0.035437 0.032711 +-0.0631468 0.156791 -0.0395997 +-0.0364943 0.115224 0.0327734 +-0.0687764 0.180487 -0.0583042 +-0.0558353 0.0912839 -0.0220329 +-0.0487756 0.0826651 -0.0212781 +0.0222353 0.0804964 -0.0261413 +-0.0698715 0.11424 0.0504282 +-0.0534972 0.0732542 0.0410474 +-0.0354707 0.0874527 0.0429689 +-0.0522647 0.117566 -0.0142997 +-0.0687471 0.158212 -0.0056007 +0.0254863 0.0578069 0.043747 +-0.0625026 0.0973365 0.0428841 +-0.00849427 0.0925522 0.0562249 +-0.076914 0.17371 -0.0479126 +0.0285085 0.121244 0.0144975 +-0.0649629 0.0620542 -0.00149187 +-0.0487919 0.135536 0.0203921 +-0.0406031 0.160882 0.00257136 +-0.0717214 0.0807275 -0.0154713 +-0.0759462 0.128163 -0.00785989 +0.0065117 0.129736 0.0249737 +-0.00106791 0.0391062 -0.00597311 +-0.0539473 0.03352 0.0103166 +0.0264479 0.103016 -0.017087 +0.0368588 0.0672041 -0.0137655 +-0.0209608 0.0380992 0.0183358 +-0.0922682 0.12272 0.00827864 +-0.0758891 0.119352 -0.00728174 +-0.0619808 0.0469192 0.00268857 +0.0286963 0.0991802 -0.016993 +0.0173223 0.125777 -0.00156033 +-0.071812 0.0879125 -0.0161091 +-0.0634945 0.102894 0.0414572 +-0.0534816 0.0491363 0.0336594 +-0.0677428 0.164471 -0.018256 +0.0418243 0.102828 0.00318021 +-0.0345003 0.0347932 0.0310568 +-0.0508009 0.0912872 -0.0218676 +0.0344847 0.0868408 -0.0179179 +0.0193386 0.0579734 -0.027391 +-0.0621388 0.0334692 0.00329381 +-0.017215 0.175671 -0.0245809 +-0.0538714 0.0449084 0.0167075 +0.0201621 0.124133 -0.00175315 +0.00612185 0.108732 -0.0201634 +0.0101112 0.110138 -0.0193681 +0.0407992 0.0698146 0.0307925 +-0.0186672 0.0495328 -0.0300927 +-0.0804551 0.134426 0.050865 +-0.0719585 0.0377493 0.00378419 +0.00950065 0.0688226 0.0549942 +0.0451024 0.091769 0.003186 +0.0116064 0.121838 0.0345253 +-0.07744 0.155698 0.0205089 +0.0154982 0.118174 0.0357451 +0.0455409 0.0918154 0.00916522 +-0.0825371 0.14737 0.037761 +0.00019241 0.0853625 -0.035651 +-0.0413557 0.0405762 -0.0252979 +-0.00795135 0.129264 0.0240771 +-0.00779714 0.0812765 -0.0379169 +0.0279176 0.0508447 -0.0187774 +-0.0851867 0.0791254 0.00650076 +-0.071556 0.161392 -0.00951947 +0.0302201 0.119789 0.0108648 +-0.0664004 0.120055 0.0514481 +-0.0652563 0.0459546 0.00568144 +-0.0484523 0.0349311 0.00836568 +0.050668 0.0451751 0.0191374 +0.0235092 0.118527 -0.00774096 +-0.0799897 0.135372 -0.00407226 +0.0454193 0.0875784 0.00318139 +0.0218862 0.107458 -0.0158341 +0.0519418 0.0525693 0.0274887 +-0.0174883 0.044685 0.0517611 +-0.0503006 0.134918 0.0263293 +-0.0797918 0.11331 -0.00252121 +0.0170867 0.039703 -0.0206999 +-0.00603107 0.130744 0.0146461 +-0.0614566 0.0372076 0.0201515 +-0.0634342 0.039353 0.0417984 +-0.0520389 0.0545474 0.0246248 +-0.0700192 0.172057 -0.036324 +0.0425828 0.0778099 0.0282065 +-0.0943409 0.12415 0.0172628 +-0.03739 0.165304 0.000185179 +0.0380556 0.0834519 0.0357476 +-0.0140374 0.0384483 0.0012996 +-0.0834291 0.14469 0.0401339 +-0.055347 0.0335038 0.00284205 +-0.0577441 0.0590406 0.000553128 +-0.0586534 0.154964 0.024223 +-0.0627416 0.148221 0.0374769 +-0.0597552 0.0781833 -0.0189903 +-0.0882134 0.141936 0.0111996 +0.0441966 0.0973694 0.0101636 +0.00324014 0.0740573 -0.0349749 +-0.0320743 0.0763998 -0.0305477 +0.0424682 0.0642865 0.0278791 +0.00647808 0.111357 0.041027 +0.0241747 0.0351145 0.0138772 +-0.0842625 0.100702 -0.00260902 +-0.0538049 0.0486373 0.0382673 +0.0033632 0.097467 -0.0272178 +-0.0526204 0.141613 0.022402 +0.0331357 0.0570437 -0.0137102 +0.00753436 0.104363 0.0436686 +-0.029494 0.0631194 0.0377814 +0.0357221 0.0994501 0.0342567 +0.0398205 0.0604422 -0.00479028 +-0.0134826 0.109991 0.0421694 +-0.0618817 0.161578 -0.0325898 +-0.00560304 0.0434101 -0.0260312 +-0.0274608 0.0473022 0.0495228 +-0.065855 0.0967089 -0.0173163 +-0.00276158 0.0698244 -0.0351738 +-0.00250067 0.110029 0.0428965 +0.0142116 0.123033 -0.00860213 +-0.0633963 0.145356 0.0382744 +-0.033621 0.0519746 -0.0102559 +0.0385319 0.0997972 -0.00779458 +0.0312326 0.118751 0.0098088 +-0.011143 0.128894 0.00267925 +-0.0574832 0.0833327 0.0441985 +-0.0668542 0.114225 0.0472279 +0.0369848 0.0561762 0.0322 +-0.0688663 0.102328 -0.014772 +-0.0246521 0.0478035 -0.0267776 +-0.0806498 0.110292 0.0422048 +-0.0475911 0.163428 -0.00670042 +-0.00358669 0.0376696 -0.025221 +-0.0499193 0.118992 -0.0138138 +-0.0766944 0.171427 -0.0358927 +0.0174979 0.126711 0.000451693 +-0.0107378 0.177152 -0.0244143 +0.0397983 0.0672171 0.0328832 +0.00289976 0.039936 0.0460731 +0.030847 0.0875798 0.0429743 +-0.0394926 0.102848 0.0402648 +0.00332264 0.0568618 -0.0316357 +-0.0367537 0.0783235 -0.0195335 +-0.038823 0.0928858 -0.0233898 +-0.0644838 0.0931562 0.0439721 +-0.0298466 0.0385336 -0.0167929 +-0.0548009 0.0449973 0.0226803 +0.0118375 0.0344099 -0.0160341 +-0.0683506 0.181259 -0.055895 +-0.0107728 0.0387832 -0.00390135 +-0.0300375 0.0890464 -0.0285748 +-0.0710857 0.168903 -0.0252489 +-0.0757782 0.149978 -0.0188682 +0.030839 0.0995119 0.0394948 +-0.0329249 0.0369927 0.0503412 +-0.0732448 0.144163 -0.0109449 +-0.0897565 0.140652 0.029182 +-0.0735905 0.154201 0.0306806 +0.00579855 0.0347845 0.042995 +-0.0519166 0.0545256 0.0236155 +-0.01212 0.102458 0.0438351 +-0.0211595 0.178661 -0.0149212 +-0.014608 0.0421127 -0.0270124 +-0.0885789 0.0922253 0.0228661 +-0.0145885 0.128899 0.00863716 +0.010498 0.0909888 0.0536897 +-0.0066489 0.0388823 -0.00316153 +-0.0258212 0.0839605 -0.0371412 +-0.0797525 0.15498 0.0124103 +-0.0414563 0.108465 0.0385585 +-0.0525315 0.149847 0.0192949 +-0.0156627 0.184575 -0.0209705 +0.0428837 0.0887839 -0.00581701 +0.0242564 0.0734016 -0.0257301 +0.0192994 0.062217 -0.0274738 +-0.0310269 0.122601 -0.0056394 +-0.0569847 0.153801 0.0277423 +-0.0526515 0.0504392 0.0286525 +0.00150192 0.0634213 0.0567922 +-0.0838556 0.139345 0.0449552 +-0.0476133 0.0562658 -0.0107838 +-0.0527007 0.0693372 -0.0141095 +-0.0311494 0.157393 -0.0113544 +0.00313658 0.0348497 0.0441849 +-0.0311581 0.17265 -0.0162683 +0.0453494 0.0847845 0.0201731 +0.0285114 0.0619268 0.0428923 +0.000499004 0.0634057 0.0567297 +0.00751117 0.0575089 0.0530994 +-0.000499443 0.114191 0.0415203 +-0.0794921 0.146102 0.0417961 +-0.0252738 0.0381933 0.0263814 +-0.0376796 0.16681 0.00156763 +0.0387661 0.0870401 -0.0137857 +0.0296088 0.12015 0.0163431 +-0.0938694 0.121489 0.0252875 +-0.0396002 0.125498 -0.0067103 +0.0370837 0.103994 -0.00683208 +-0.0465559 0.0461276 -0.0102455 +0.0404351 0.0389029 0.0137659 +-0.0424925 0.100104 0.042001 +-0.0285717 0.12063 0.0270994 +-0.0800863 0.148726 0.0380799 +0.00214563 0.119376 -0.0145717 +-0.0288792 0.104408 -0.0227314 +-0.0312735 0.034639 0.0229335 +-0.0669165 0.12238 -0.00897156 +-0.0890273 0.0956446 0.021399 +-0.0897683 0.091592 0.0154417 +-0.0739499 0.156872 -0.0269145 +0.00919729 0.039194 0.0451612 +-0.0374937 0.109757 0.0368609 +0.0523694 0.0545712 -0.00274385 +-0.0339801 0.0348087 0.0434578 +-0.00541562 0.128879 0.0264449 +-0.0636022 0.151642 0.0357576 +-0.0693902 0.0672718 0.0289371 +-0.0220481 0.121595 -0.00868192 +-0.0390536 0.127857 0.00108873 +-0.090122 0.144414 0.0285066 +-0.0629168 0.114269 -0.0126902 +-0.0930993 0.129616 0.0162363 +-0.0325132 0.0575193 0.0378292 +-0.0193156 0.162502 -0.00702982 +0.00550789 0.0910775 0.054811 +-0.0234801 0.168298 -0.011313 +0.0473422 0.0575607 -0.00551801 +0.0214637 0.0989203 0.04607 +-0.0827604 0.106087 -0.00164696 +-7.52397e-05 0.037877 0.020989 +-0.0345343 0.126083 0.0189612 +-0.0512338 0.164096 -0.00192926 +-0.0477776 0.0826677 -0.0211258 +-0.0368214 0.16531 -0.000729186 +-0.0673944 0.162815 -0.015253 +-0.0186701 0.0971551 0.0477534 +-0.0366241 0.0360289 0.0452882 +-0.0195815 0.0341867 -0.0200865 +0.0298019 0.0862025 0.0431971 +-0.0932655 0.120203 0.038289 +-0.000505415 0.110024 0.0426421 +-0.0191383 0.16678 -0.0189611 +0.0173062 0.0421724 0.0440438 +0.0105403 0.105742 0.0436489 +-0.0345641 0.11594 -0.0146748 +-0.0944618 0.125537 0.019259 +-0.0679091 0.108046 -0.0128123 +0.0268137 0.118694 -0.00391821 +-0.0577288 0.0738232 -0.0175832 +-0.0494959 0.0988033 0.0435442 +0.0425948 0.0873487 -0.0068057 +-0.0366079 0.114094 -0.0167422 +-0.0064886 0.118022 -0.0150746 +-0.0694599 0.155751 0.00874428 +-0.0727804 0.0887809 0.0411113 +-0.0921325 0.117269 0.0252198 +-0.0769942 0.154149 -0.012901 +0.00413641 0.0979047 -0.0256761 +-0.0504737 0.113932 0.0347324 +-0.00655213 0.0389811 -0.00882376 +-0.021105 0.0431099 0.0534593 +-0.0732611 0.161033 -0.0359392 +-0.0668535 0.0938084 -0.0173106 +0.0523234 0.0724358 0.00729932 +-0.02575 0.0536249 0.0391706 +-0.0529014 0.114056 -0.0162353 +-0.0887923 0.1378 0.0112057 +-0.0604332 0.0585193 0.0100455 +-0.0105014 0.0546468 0.0522278 +0.0475389 0.0482604 0.0280949 +0.00247406 0.123881 0.0337357 +0.0282809 0.0389301 0.0276504 +-0.0903128 0.141958 0.0142327 +-0.0457178 0.0724199 -0.0170809 +-0.0393802 0.149525 0.00137589 +-0.0384762 0.128323 0.0101316 +-0.0387951 0.0343342 0.0305488 +-0.0627886 0.154765 0.0285735 +-0.044804 0.0884409 -0.0220028 +0.00621048 0.0851628 -0.0331463 +-0.0124997 0.0938947 0.0551641 +-0.0760018 0.163203 -0.0170986 +-0.0568081 0.154369 0.0248865 +0.0141304 0.056278 0.0501629 +-0.000201542 0.0357861 0.0174114 +-0.0687337 0.0764635 -0.0155195 +-0.0465141 0.0518831 0.0377757 +0.0306859 0.0377485 0.0237503 +-0.0887758 0.149859 0.0255696 +-0.0468066 0.088437 -0.0220186 +-0.0104567 0.111397 0.0420636 +0.00949238 0.0487693 0.0494463 +-0.0344171 0.0343826 0.0278837 +-0.0747225 0.161031 -0.0319529 +-0.00127097 0.123959 0.0338052 +0.0484686 0.0511467 0.0294828 +0.0216142 0.042218 0.0415059 +0.0159587 0.0874032 0.0512942 +-0.0579584 0.0336225 0.00939861 +0.0262865 0.0689766 -0.0234385 +-0.0457839 0.11676 -0.0154906 +-0.0431023 0.149502 -0.00451393 +0.0575358 0.0592738 0.00218909 +-0.0907151 0.116093 0.0293225 +-0.0626986 0.0658458 -0.00782349 +-0.0680529 0.0874243 0.0435129 +-0.0323521 0.0336874 -0.0296376 +-0.0208013 0.108893 -0.0213287 +0.00800637 0.0345135 0.0400968 +0.0600686 0.0650603 0.0191749 +-0.0881094 0.0861284 0.0104766 +-0.0292466 0.166794 -0.00735295 +-0.0455037 0.159315 0.00726546 +-0.0361152 0.127822 0.0095198 +-0.00430156 0.130062 0.00233767 +-0.032509 0.0506603 0.0384213 +-0.0316129 0.119551 -0.0104429 +0.0414143 0.104258 0.0111621 +-0.075527 0.0733333 0.0311756 +-0.0549715 0.161246 0.00205939 +-0.0503915 0.140104 0.0183826 +0.0152276 0.0835585 -0.0295949 +-0.0464862 0.0718998 0.0415251 +-0.00551998 0.0732424 0.0584734 +-0.0900165 0.133639 0.00622839 +-0.069719 0.0887582 0.0422978 +0.00474777 0.0367585 0.0247919 +-0.027126 0.165248 -0.0165316 +-0.0283135 0.0350192 0.0513697 +-0.0318897 0.0721821 -0.0275085 +0.0437433 0.0945326 0.0221692 +-0.0126802 0.0961728 -0.031918 +-0.0567215 0.04662 0.0276747 +-0.00532834 0.0367049 -0.0158504 +-0.0529595 0.0335568 -0.000338033 +-0.0240311 0.112816 -0.0174462 +0.01097 0.0520216 0.0508135 +-0.0328411 0.0915526 -0.0242438 +-0.0552728 0.0335199 0.0136226 +-0.0820994 0.104661 -0.00359906 +0.035799 0.0558975 -0.00871505 +-0.0868952 0.0991223 0.0252196 +-0.0296012 0.120713 0.0267425 +-0.0695324 0.125657 0.0522171 +-0.0424937 0.0790081 0.0428161 +-0.0632658 0.0419596 0.040132 +-0.0699149 0.161541 -0.0103834 +-0.0345105 0.0676457 0.041143 +-0.00514301 0.0997589 0.0492461 +-0.0697588 0.147131 -0.0275571 +0.0580762 0.0648724 0.00314588 +0.0241035 0.1245 0.0085821 +0.0377445 0.110141 0.00501649 +0.0413546 0.0999884 -0.00181466 +0.0180964 0.0604579 0.0488964 +-0.0341434 0.0780256 -0.025502 +0.0365014 0.0756142 -0.0127863 +0.0485013 0.0651587 0.0285278 +-0.0331365 0.162399 -0.0024379 +-0.0578171 0.08688 -0.0211007 +-0.0591308 0.125513 0.0408421 +-0.0248084 0.0826031 -0.0377611 +-0.00847175 0.0920515 -0.0356471 +-0.0281451 0.166722 -0.0170726 +0.0321478 0.0740867 0.0412125 +-0.0318598 0.0496767 -0.0173511 +-0.0683644 0.0381281 -0.00463362 +-0.0293612 0.0383343 -0.00169706 +-0.0546971 0.0334232 0.00665025 +-0.0604511 0.0584329 0.0155226 +0.0356702 0.108162 -0.00482135 +-0.087994 0.0981671 0.00544953 +0.042672 0.0737568 0.0282004 +-0.0414969 0.095865 0.0421344 +0.0227593 0.0727654 0.0487302 +0.0247922 0.121532 -0.00113746 +0.0282353 0.0775351 -0.0225519 +-0.0487687 0.0559317 0.0351683 +-0.0192566 0.180095 -0.0235875 +-0.0250606 0.0603159 -0.031412 +-0.0310964 0.160762 -0.0139612 +0.0143682 0.0767494 0.0542274 +-0.0714649 0.159596 -0.0419316 +0.0454023 0.0875829 0.0161653 +-0.0354973 0.0470472 -0.0223112 +-0.0465703 0.0490167 -0.00974944 +0.025334 0.0435501 0.0381106 +-0.0785372 0.168054 -0.0329755 +-0.0148858 0.0985034 0.047376 +-0.0302927 0.117007 -0.0138211 +-0.0802651 0.0963563 -0.00854135 +-0.030624 0.0348272 -0.0303515 +-0.000406928 0.0996624 0.04942 +-0.0576871 0.0335309 0.00594357 +-0.0923088 0.114683 0.0143254 +0.00732004 0.0351406 -0.00439972 +-0.00948171 0.174183 -0.0285537 +-0.0320503 0.12646 0.00953655 +0.0270529 0.0822264 0.0462092 +-0.0900419 0.139254 0.023178 +-0.0498185 0.0927102 -0.0215416 +-0.00751389 0.102333 0.0437439 +-0.0775302 0.161724 -0.0197184 +-0.044496 0.0451943 0.0419603 +-0.0362032 0.160944 0.000172036 +-0.0314741 0.053189 0.0369367 +-0.072385 0.158213 -0.0369175 +-0.0860963 0.145967 0.0357039 +-0.0554937 0.100184 0.0430705 +-0.0523102 0.116406 -0.0150785 +-0.0518166 0.09273 -0.0219218 +-0.024907 0.0916549 -0.0335476 +-0.0634479 0.141036 0.0381413 +0.0152366 0.121915 0.0327966 +-0.0631227 0.0445391 0.0377156 +-0.0865336 0.141884 0.00820248 +0.00748358 0.11412 0.0398951 +-0.071965 0.136965 -0.0074383 +-0.0608999 0.058839 0.0168686 +-0.0886398 0.102364 0.0173768 +-0.0688031 0.0659098 0.026726 +0.02824 0.0686155 0.0425458 +-0.0196877 0.127428 0.0169554 +0.0332508 0.0906175 -0.0178979 +0.019654 0.122236 -0.00577023 +-0.0457281 0.151677 -0.00565337 +-0.0685681 0.156629 -0.0529972 +0.0455148 0.0801982 0.0216904 +0.0232513 0.0734458 -0.026356 +-0.0856264 0.110331 0.00634317 +0.032415 0.0383305 -0.000488607 +-0.0697489 0.17084 -0.0530327 +0.0127518 0.0887452 0.0537008 +-0.0650469 0.168333 -0.0359323 +-0.0312058 0.066507 -0.0244549 +-0.0481456 0.14427 0.00342034 +-0.0250932 0.0385898 -0.0121739 +-0.0268796 0.181867 -0.0133655 +-0.0624905 0.0804598 0.0431805 +-0.0664501 0.0353918 0.0342807 +-0.0287674 0.078167 -0.0351681 +0.0384815 0.0729589 -0.0117402 +-0.0325668 0.0347124 0.0262002 +0.0258782 0.0645831 0.0443789 +-0.0486546 0.0620591 -0.0122264 +-0.086684 0.149909 0.029141 +0.0138472 0.123867 0.0319554 +-0.0513866 0.0584422 0.0306256 +-0.00251219 0.0378133 0.00785027 +-0.00926128 0.126278 0.029483 +0.0147315 0.0347337 -0.0176578 +0.0417187 0.066227 -0.00378154 +-0.0149615 0.0883672 -0.0380383 +-0.0678931 0.0900993 0.043242 +0.0149683 0.113515 -0.0163113 +-0.0719356 0.110274 0.042413 +-0.0333618 0.0751438 -0.0264858 +0.0116984 0.034577 0.0227351 +-0.0670519 0.166375 -0.0237602 +-0.0454276 0.0345386 0.0307405 +-0.00249621 0.0883993 0.0567366 +-0.0235661 0.115415 0.0353667 +-0.0944357 0.121484 0.0222838 +0.0334736 0.0940135 -0.0155006 +-0.0436018 0.0519969 -0.0109067 +-0.0781065 0.0948585 -0.0115273 +0.0456581 0.0729488 0.0206934 +-0.0274951 0.157765 -0.0111917 +-0.00306441 0.100922 0.0454807 +-0.0618021 0.116863 0.0404147 +-0.0344937 0.041903 -0.0294247 +-0.0427476 0.159417 0.00474491 +0.0374917 0.0484328 0.0317174 +-0.00814387 0.0339061 -0.0213361 +-0.0737927 0.132633 0.0513524 +-0.0397231 0.116184 -0.0149076 +-0.00950395 0.0773592 0.0576807 +-0.0505908 0.03436 0.0298011 +0.0187381 0.119283 0.0342968 +0.00523462 0.075444 -0.0346019 +-0.0321194 0.165225 -0.0156285 +-0.0276791 0.1239 0.019992 +0.0190254 0.061825 0.0484929 +-0.0821717 0.11152 0.00033013 +0.0241621 0.0505303 0.0399762 +0.0378012 0.0604211 0.0334272 +-0.0182252 0.159192 -0.00975232 +0.0423754 0.100105 0.0181719 +-0.0546942 0.0661242 -0.0103565 +-0.0685912 0.131247 0.0482807 +0.000498438 0.0938703 0.0551155 +-0.0281544 0.168213 -0.0175818 +-0.0417796 0.0485307 -0.0113147 +0.0287445 0.109341 -0.0118595 +-0.00260812 0.130913 0.0187596 +-0.0454889 0.0660999 0.0395126 +-0.0655106 0.0972881 0.0421527 +-0.0194848 0.0869694 0.0563134 +-0.0264967 0.121204 -0.00819998 +0.00829502 0.0653838 -0.032076 +-0.0287456 0.0753309 -0.0348961 +-0.0727338 0.0821447 -0.0156124 +-0.0470607 0.146242 0.00718592 +-0.0209665 0.0386858 -0.0114366 +-0.0600079 0.128191 -0.00754937 +-0.0653109 0.180421 -0.0593142 +-0.0559148 0.0548054 0.00768529 +-0.0524976 0.0917711 0.0441581 +0.0212182 0.0847586 -0.026404 +-0.0579878 0.0414274 -0.0083271 +-0.0726954 0.0791971 -0.0139413 +-0.0307256 0.0915724 -0.0247467 +-0.0556334 0.11822 -0.0129265 +-0.0457806 0.0841121 -0.0213757 +0.00438413 0.0465246 -0.0275852 +-0.010477 0.110005 0.0426237 +-0.0896333 0.0929554 0.018431 +0.0397783 0.106996 0.0151622 +-0.0127593 0.0728576 -0.0383837 +0.0319543 0.0766492 -0.0197037 +0.00131984 0.0612266 -0.0334746 +-0.0834451 0.136657 0.0474496 +-0.0558128 0.0869147 -0.0214989 +0.00250708 0.0474439 0.0499052 +0.0125018 0.115423 0.0374065 +-0.00563766 0.13083 0.0104776 +-0.0658527 0.144237 -0.0148815 +-0.089646 0.0929438 0.0164332 +0.0436072 0.041137 0.00426675 +0.0444767 0.0889055 -0.00179899 +-0.057137 0.0562876 0.0015684 +0.00522768 0.0810328 -0.0339223 +-0.0137183 0.0628763 -0.0368336 +0.00133514 0.0554198 -0.0315391 +-0.0188851 0.0334951 -0.0249427 +0.052927 0.0495927 0.0235839 +0.0522184 0.0461787 0.0182078 +0.0165976 0.0348504 0.0271124 +-0.0589342 0.12267 0.0410891 +-0.0669714 0.163891 -0.0179699 +-0.0703202 0.132668 0.0493213 +-0.0776493 0.0787462 -0.00818258 +-0.0881736 0.132451 0.0437642 +-0.0632228 0.141176 -0.0069873 +-0.0713401 0.171022 -0.0310853 +-0.047409 0.166836 0.00227952 +-0.0141433 0.181604 -0.0223083 +-0.0619045 0.104018 -0.0180451 +-0.0483068 0.13712 0.0113971 +0.0136813 0.0952834 0.0497668 +0.035272 0.0660164 0.0386352 +0.0461881 0.0785676 0.017326 +-0.0532105 0.0335853 0.013987 +-0.0171786 0.0971676 0.04907 +-0.0725346 0.145512 -0.0179133 +-0.0333802 0.0498304 -0.01435 +0.0509184 0.0496314 0.0259504 +-0.0572784 0.0576838 0.00160501 +-0.0619689 0.153737 -0.0245819 +-0.0544985 0.104295 0.0412117 +-0.0500704 0.137041 0.0213927 +-0.0191411 0.0697535 0.053261 +0.0582061 0.0634965 0.00313887 +-0.0204853 0.0800483 0.0563065 +-0.0472097 0.0335059 -0.0119372 +-0.0749299 0.155492 -0.0209193 +-0.0698715 0.116492 -0.00825865 +0.0375436 0.055493 0.03143 +-0.0538462 0.137744 -0.0016929 +-0.0607335 0.034496 0.0414254 +0.0295159 0.107768 -0.0121736 +-0.0689178 0.168027 -0.0530164 +-0.0779935 0.171503 -0.0379488 +-0.0881443 0.0887489 0.00447233 +-0.00442605 0.128738 0.0268092 +0.00451348 0.0633892 0.056472 +-0.0818952 0.134036 0.0502533 +-0.0372574 0.124492 0.0238955 +0.0138426 0.11139 -0.0180298 +-0.0818741 0.119187 -0.00382424 +-0.0756587 0.0744591 -0.00795246 +-0.026115 0.158145 -0.00104516 +0.037495 0.0513025 0.031739 +0.0589255 0.0580383 0.0211692 +0.0434376 0.0874432 0.0261531 +-0.0260776 0.125932 0.00880255 +-0.0740662 0.155757 0.0246008 +-0.0178239 0.0387614 0.0327968 +0.0417114 0.091515 -0.00780409 +-0.0241449 0.0905492 0.0505682 +-0.074497 0.124608 0.0532356 +-0.0458334 0.0927472 -0.0217986 +-0.0804383 0.111326 0.0449881 +-0.00529252 0.125273 -0.00885488 +-0.0889223 0.0888194 0.00846703 +-0.00624295 0.130196 0.00449841 +-0.0669483 0.0447271 0.0026821 +-0.0548497 0.0941617 -0.0218342 +-0.0534962 0.0931826 0.0441514 +-0.0347147 0.0696617 -0.0176192 +-0.0440132 0.0366004 -0.0242792 +-0.0474979 0.0464882 0.040801 +-0.0653409 0.0600919 0.00943789 +-0.0231718 0.171204 -0.0201308 +-0.00587295 0.130011 0.00319127 +-0.0664676 0.0383698 -0.00648508 +-0.0886456 0.0935942 0.0229142 +-0.0447618 0.116708 -0.0154556 +0.0194756 0.100345 0.0462123 +-0.0154951 0.0911415 0.0560918 +-0.0371641 0.0342638 0.0291868 +0.0162971 0.0651874 -0.0294171 +-0.0291548 0.169699 -0.0175574 +-0.0704877 0.0623972 0.0153213 +-0.0774944 0.092744 0.0372295 +-0.00984328 0.0975178 -0.0293224 +-0.0784995 0.162482 -0.0259435 +-0.0145068 0.0730096 0.0554058 +0.0203473 0.0727595 0.0505294 +-0.0616196 0.156864 -0.0215888 +-0.0832232 0.0789707 0.00151853 +0.0163786 0.0403059 -0.0216745 +0.000325641 0.0568761 -0.0321896 +-0.0192766 0.0554309 0.0481999 +-0.00592104 0.0389465 -0.0049376 +-0.0499986 0.143197 0.012378 +-0.0355049 0.076131 0.0419036 +0.053394 0.0525543 0.0260735 +0.00630024 0.125509 0.0321214 +-0.0349082 0.033686 0.00682403 +-0.0714928 0.117552 0.0529474 +-0.0589919 0.15382 0.0299308 +0.0585035 0.0621132 0.0229868 +0.00569406 0.0341002 0.00181761 +-0.0155184 0.118264 0.0365807 +-0.0424989 0.16674 0.00381643 +-0.0863225 0.128011 -0.00168174 +-0.0553953 0.118382 0.0373919 +0.0469197 0.0444607 0.00136465 +-0.056091 0.0334157 -0.00629765 +-0.0361548 0.166687 -0.0142688 +-0.0127937 0.0386426 -0.0153707 +-0.0118501 0.11995 -0.013068 +-0.00670797 0.0627873 -0.0354975 +-0.079327 0.169353 -0.0390258 +-0.0437872 0.0855322 -0.0215732 +-0.0280896 0.0549613 -0.0243859 +-0.0584052 0.033525 -0.00869675 +-0.0482395 0.144672 0.00644062 +-0.0554929 0.0932384 0.0449182 +-0.0347045 0.0851136 -0.0245778 +-0.0494996 0.0791204 0.0440794 +0.0372047 0.0385834 0.00228863 +0.0193241 0.0607694 -0.0271316 +0.00852018 0.0702413 0.0555324 +-0.0778099 0.148638 -0.00388521 +-0.06539 0.178765 -0.0548301 +-0.04996 0.133052 -0.000571002 +-0.0847199 0.0939171 -0.00356265 +-0.0326229 0.0385148 -0.00990233 +0.032773 0.036599 0.0179277 +0.0427869 0.0611675 -0.0033403 +-0.0366336 0.0548529 -0.010755 +-0.0870489 0.0900041 0.00248653 +0.0416085 0.0656213 0.0284032 +0.00293844 0.100629 -0.0225769 +-0.0728162 0.0907583 -0.0154663 +-0.0718707 0.116473 -0.00776413 +-0.0937263 0.121427 0.0132848 +0.00471758 0.0346554 0.0428856 +-0.0704897 0.0719829 -0.0097429 +-0.050201 0.0344166 0.0315946 +-0.0796522 0.0704439 0.0152371 +-0.0425023 0.0986936 0.0421906 +0.0383887 0.0445417 -0.00444706 +0.0311086 0.103751 -0.0138751 +-0.0667119 0.155932 -0.00484005 +-0.0912006 0.121567 0.0443209 +-0.019019 0.0418114 0.0529435 +-0.0892823 0.141954 0.0132429 +-0.0221125 0.0389367 0.0353489 +-0.0563218 0.0335364 0.00802021 +-0.0896372 0.0929496 0.0174335 +0.0130767 0.125591 0.0302496 +0.0537776 0.0692651 0.00258827 +0.0106605 0.0363802 0.031763 +-0.0297187 0.0523119 -0.0193651 +-0.0140732 0.0383739 0.00681638 +0.0269054 0.0726895 0.0441444 +0.0246103 0.075474 0.0479027 +-0.00359864 0.0405713 -0.0254999 +0.0269298 0.0804165 -0.0233375 +-0.0488158 0.0912881 -0.0217052 +-0.00415439 0.0390536 -0.00654274 +0.000507304 0.0828912 0.0574668 +-0.0158173 0.038248 0.0138275 +-0.0624172 0.0599054 0.00479638 +0.0162074 0.0821136 -0.0291532 +-0.0419982 0.0337727 -0.000124238 +0.0250957 0.0348061 0.00319961 +-0.0309108 0.0608665 -0.0194213 +-0.0387236 0.174145 -0.00898261 +0.0464355 0.0778581 0.0101835 +-0.0639936 0.132595 -0.00811291 +-0.0340062 0.0381682 0.049242 +-0.0477004 0.131837 0.0244001 +-0.00268932 0.130846 0.00581897 +0.0302059 0.0857499 -0.020278 +0.0384903 0.0499056 0.0320993 +0.010384 0.0463357 -0.0254801 +-0.00660048 0.0405957 -0.0258634 +-0.0114989 0.0366056 -0.0169842 +0.0105059 0.0348976 0.020389 +-0.0487973 0.070279 0.0395574 +-0.0394971 0.057712 0.040203 +-0.0253679 0.125634 0.0163937 +0.0361389 0.0902387 0.0383091 +-0.0654905 0.0889779 0.0446185 +-0.0197462 0.0656505 -0.036857 +0.0320676 0.117774 0.0158308 +0.00351414 0.0661565 0.0562774 +-0.0226137 0.0422636 -0.0288734 +-0.019191 0.123923 -0.00519119 +-0.0532423 0.046246 0.0226735 +-0.021638 0.0464604 -0.0276852 +0.0272834 0.0689403 -0.022937 +0.0211914 0.124678 0.000362022 +0.04653 0.0760573 0.0105389 +-0.0338201 0.127158 0.00888963 +-0.077651 0.154407 0.00585132 +-0.0417202 0.0710768 -0.017536 +-0.0887218 0.0874968 0.0134639 +0.0165095 0.0354073 -0.0166384 +-0.0454406 0.0336534 -0.00804117 +-0.0504088 0.153575 0.0112235 +-0.0286428 0.107004 -0.0213195 +-0.0218765 0.0933131 0.0510401 +0.0329715 0.116865 0.0119087 +-0.0914625 0.148845 0.019136 +-0.0596259 0.155781 0.0151651 +0.0375784 0.099381 0.0316743 +-0.0157845 0.0784788 -0.0385671 +-0.0795217 0.123111 0.0512585 +-0.0418108 0.0343847 0.029868 +0.0389991 0.108356 0.0151637 +-0.0709225 0.109376 -0.0106672 +0.0579353 0.0634887 0.0239229 +-0.058577 0.0727277 0.0406017 +-0.062479 0.152546 0.000181648 +-0.0544934 0.0834141 0.0452404 +0.0357112 0.102065 0.0324889 +-0.0715263 0.0944187 0.0416527 +-0.0651404 0.112408 0.0390225 +-0.0545541 0.160714 0.00540511 +-0.0144079 0.183333 -0.0275579 +-0.0621531 0.152198 -0.0185797 +-0.0657166 0.14722 -0.0249021 +-0.0460756 0.154674 -0.00723534 +0.01519 0.127729 0.000331934 +-0.0489579 0.137072 0.00640402 +-0.0485683 0.0335187 -0.00854361 +-0.0885037 0.114225 0.0283481 +-0.0540375 0.141288 -0.0013423 +-0.0472373 0.134368 0.0171539 +-0.0272298 0.037736 0.022792 +-0.0518585 0.0985114 -0.0220738 +-0.0110867 0.180248 -0.025982 +-0.0236236 0.0593674 0.0425181 +-0.0408247 0.092859 -0.0231395 +0.0561988 0.0567015 0.0248562 +-0.0086058 0.172644 -0.0268228 +0.0163504 0.0552051 -0.0284322 +-0.0344945 0.0336038 -0.0243554 +-0.0556539 0.0345276 0.0424927 +-0.0348371 0.155104 0.00211833 +0.0276605 0.0605608 0.0434107 +-0.0623508 0.146001 -0.00658982 +-0.0248115 0.081196 -0.037776 +0.0240847 0.110594 -0.013209 +-0.0895075 0.148492 0.0263454 +-0.0926235 0.124077 0.00926903 +0.0292051 0.0843756 -0.0209031 +-0.0353048 0.127501 0.00687019 +-0.0859011 0.134922 0.00126737 +-0.0742444 0.0756609 0.0347079 +-0.0752605 0.157705 -0.0064221 +-0.0337955 0.0808164 -0.0255276 +-0.0288635 0.154571 -0.00355817 +0.0360371 0.0547702 0.0325687 +-0.0101249 0.0392126 0.0357767 +0.0288986 0.120838 0.016073 +-0.0106831 0.0570151 -0.0340192 +-0.0628045 0.144114 -0.00718004 +-0.0895701 0.151478 0.0161361 +-0.0176156 0.0385615 0.0294218 +-0.0211148 0.0389017 0.0355855 +0.0329392 0.0541774 -0.0107445 +-0.00428899 0.0367463 -0.0156853 +-0.0458368 0.0956376 -0.0219211 +0.0381262 0.080772 0.035847 +0.0268148 0.0976356 -0.019356 +-0.0625367 0.161521 -0.0446005 +-0.0517979 0.0869425 -0.0216307 +0.0344672 0.111064 -0.00366583 +-0.0911264 0.115738 0.024682 +-0.0753098 0.0805155 0.0368289 +-0.0133248 0.129244 0.00909724 +-0.0272428 0.0370384 -0.018628 +-0.0384762 0.0423266 0.0418914 +0.0203738 0.0521374 -0.0257342 +0.0585485 0.0552063 0.00817117 +0.0134367 0.121611 -0.0110511 +-0.089438 0.113514 0.0412091 +0.0444691 0.0790854 -0.00178456 +-0.000786355 0.0797462 -0.0360298 +-0.0269011 0.155694 -0.0071882 +-0.08839 0.0995952 0.00742201 +-0.0662162 0.0396687 0.0135434 +-0.0355277 0.0846755 0.0433772 +-0.0858238 0.104979 0.0223569 +-0.0778773 0.120773 -0.00663343 +-0.0263675 0.107348 -0.0216948 +-0.0927086 0.12286 0.0332776 +-0.0661966 0.15171 0.0363078 +-0.0202018 0.177138 -0.0227808 +-0.0855834 0.141979 0.0409477 +-0.0504886 0.0946205 0.0445363 +-0.0604928 0.101522 0.0423039 +0.0379519 0.0659398 0.0354557 +-0.0840048 0.140674 0.0436515 +-0.0558989 0.109796 -0.0177742 +0.00991096 0.0343624 0.00242681 +-0.0506409 0.0514954 0.0146147 +-0.0324809 0.117911 -0.0127388 +-0.0621631 0.164652 -0.0535815 +0.0025214 0.130289 0.0235241 +-0.0506513 0.150706 0.0125676 +-0.0175006 0.0829087 0.0576844 +-0.00809599 0.0347439 0.04196 +-0.0340295 0.0384544 -0.00643688 +-0.0694928 0.101384 0.0400561 +0.0446992 0.0776181 0.0241159 +-0.0935142 0.126862 0.0142561 +0.0248702 0.121138 0.0274186 +0.00114443 0.118463 -0.015597 +-0.053795 0.115431 0.0343764 +-0.0905823 0.131055 0.0352302 +-0.00177837 0.0811944 -0.0365591 +0.0316669 0.110076 0.0318865 +0.0355137 0.0902592 0.0391607 +-0.0911524 0.122908 0.0442317 +-0.0909787 0.118866 0.0441649 +-0.0647368 0.0350417 0.0261211 +-0.0694997 0.166373 -0.0203616 +-0.0256221 0.0450194 -0.0280788 +-0.0652445 0.171051 -0.0600934 +-0.0773393 0.152802 -0.0018868 +-0.00223434 0.118045 -0.0151238 +-0.0662482 0.063188 0.0243484 +0.0400602 0.0922366 -0.00959201 +-0.00562712 0.0451708 -0.0285409 +0.000501495 0.0457296 0.0472541 +-0.0123701 0.125297 0.0298351 +-0.0778681 0.101964 -0.00928868 +-0.0609537 0.123826 -0.00859412 +0.0224677 0.112582 -0.013341 +0.00921575 0.0781468 -0.0329463 +-0.0349236 0.126603 0.0011375 +-0.00878487 0.0784493 -0.0377777 +0.00650569 0.075888 0.056486 +0.0412418 0.0802411 -0.00774788 +-0.093262 0.128309 0.02526 +-0.0314363 0.171254 -0.00518552 +-0.0520579 0.0336325 0.0248414 +-0.0815026 0.127419 0.0524098 +-0.0894637 0.136534 0.031204 +-0.084288 0.111698 0.0438155 +0.0333653 0.0918289 -0.0171871 +-0.0324333 0.126109 0.00355422 +-0.00141447 0.0391026 0.0304627 +0.00110904 0.0340429 -0.0196452 +-0.0650297 0.138462 -0.00769967 +-0.015954 0.105864 -0.0221228 +-0.0523859 0.0626167 0.0314055 +0.026783 0.122575 0.00815739 +-0.0385209 0.128019 0.0130694 +-0.029395 0.125597 0.00758806 +-0.0328882 0.0666632 -0.0184721 +-0.0494036 0.13704 0.0193807 +-0.0782331 0.109897 -0.00456592 +0.0157741 0.036715 -0.0196413 +-0.0294956 0.0660091 0.0384906 +-0.0679029 0.105215 -0.0140793 +-0.0620463 0.158428 -0.0205873 +-0.0703503 0.159267 -0.00619145 +-0.0378682 0.104226 -0.0203027 +-0.0918252 0.118761 0.028299 +-0.0411447 0.163664 -0.0114686 +-0.0574975 0.0426993 0.0453715 +-0.0747471 0.147201 -0.0128585 +-0.0134963 0.0744967 0.0564394 +-0.054142 0.0722337 0.0402304 +-0.0642908 0.169609 -0.0607929 +-0.0154978 0.0977476 0.0489325 +-0.0800099 0.07203 0.0185532 +-0.0921132 0.115989 0.0103178 +0.00725505 0.0754138 -0.0341479 +0.0536301 0.0568087 0.0282148 +-0.0479854 0.0346149 0.0371396 +-0.00149257 0.0746611 0.0586297 +0.0203189 0.05934 -0.026848 +-0.0115998 0.0391898 -0.02633 +-0.0295596 0.0663471 -0.0284716 +0.00348965 0.105764 0.0424132 +-0.0703543 0.0703917 0.033048 +-0.0606347 0.0629111 -0.00512698 +-0.01408 0.166026 -0.0199736 +-0.061044 0.0400333 0.0227114 +-0.0810735 0.143155 -0.000828212 +-0.0617474 0.0766736 -0.0179709 +0.0217467 0.124535 0.0248197 +0.00507814 0.101571 -0.0215886 +0.0346034 0.0592134 0.0376264 +-0.0712039 0.0342165 0.00436442 +-0.0288195 0.0384506 0.0326078 +-0.053518 0.1534 0.0145047 +-0.0556759 0.0661408 -0.010195 +-0.0677895 0.175109 -0.0580246 +-0.0699291 0.0421822 0.0072491 +-0.0067422 0.0741543 -0.0369448 +0.0199779 0.0885978 -0.0258535 +-0.0488263 0.0941792 -0.0218889 +0.0343607 0.0505331 -0.00657713 +-0.0725404 0.162229 -0.0113532 +-0.00793663 0.0384098 0.0134736 +-0.0556415 0.043673 0.0216881 +-0.0145298 0.100345 0.0444168 +-0.0815281 0.1484 0.0374104 +-0.0387388 0.0753845 -0.0180569 +-0.0116442 0.0481633 -0.0303354 +0.0363562 0.0559126 -0.00774494 +-0.0652193 0.1682 -0.0598394 +-0.0776736 0.10169 -0.00957801 +-0.0196644 0.0494984 -0.0297043 +-0.0282432 0.0763981 0.0437868 +-0.0328471 0.033696 0.0126517 +0.00347146 0.128699 -0.00262952 +0.0461484 0.0806375 0.015174 +0.0337656 0.111689 0.027893 +-0.0271752 0.172675 -0.0185845 +-0.0693701 0.141497 -0.00893397 +0.0317719 0.115994 -0.000976469 +0.0347163 0.0544411 -0.00865089 +-0.0651886 0.172101 -0.0460875 +-0.0678768 0.1616 -0.0125361 +-0.0634522 0.0423282 0.0135276 +0.0601313 0.0581272 0.0101639 +-0.0107388 0.117999 -0.0150205 +0.0339646 0.0916099 0.0404552 +-0.0498374 0.138571 0.0183794 +-0.0934962 0.117401 0.0173034 +0.0383972 0.0491164 -0.00642484 +-0.0280195 0.0378733 -0.0295429 +-0.0146147 0.12166 -0.00880985 +0.0372641 0.0686531 0.0362559 +0.0239959 0.0549509 0.0433236 +0.00994394 0.0362916 0.0335003 +-0.0208017 0.0799082 -0.0390716 +0.0233991 0.0534151 -0.0239637 +0.00722024 0.0851796 -0.0327872 +-0.0639758 0.128226 -0.00858393 +0.0238189 0.124864 0.00990899 +0.00150975 0.0474485 0.049901 +-0.0361905 0.168183 -0.0140562 +-0.0174884 0.0801344 0.0573382 +-0.0918829 0.116106 0.0333156 +0.00614351 0.12581 -0.00755937 +0.0340287 0.115127 0.0194375 +-0.0908622 0.135106 0.0192089 +-0.000650637 0.0496936 -0.0307015 +-0.0856199 0.144636 0.00717286 +0.0438423 0.0804362 -0.00278861 +-0.00949487 0.0503088 0.0507661 +0.0271211 0.103444 0.039376 +-0.0386188 0.04066 -0.0277325 +-0.0654456 0.154232 -0.00436037 +-0.0264896 0.100224 0.0439794 +-0.0715324 0.144165 0.0446205 +-0.0694829 0.118967 0.0529378 +0.0378869 0.110163 0.00793964 +0.0353212 0.108669 0.0283742 +0.0601522 0.0581329 0.0151721 +-0.0542607 0.057796 0.0208407 +0.00222051 0.130562 0.00190808 +-0.0641033 0.156361 -0.011127 +0.0432299 0.0944972 0.0241641 +-0.0229686 0.033489 -0.025736 +-0.0221215 0.127119 0.0131583 +-0.0671797 0.0604061 0.0141816 +-0.0288776 0.0903901 -0.0295833 +0.0603694 0.0609168 0.00815448 +-0.0494359 0.138587 0.00541192 +-0.0023893 0.0424447 0.047211 +-0.0543474 0.135324 0.0319505 +0.0228597 0.125444 0.016672 +-0.0334812 0.0737514 -0.024477 +0.0348071 0.0781711 0.0398247 +0.0054972 0.0547598 0.0532635 +0.00645879 0.122419 -0.0119062 +-0.0438011 0.128754 0.0022734 +-0.0849152 0.0791131 0.00550947 +-0.0506838 0.0678366 -0.0132392 +0.0126337 0.110109 -0.0186257 +-0.0497701 0.140145 0.0153991 +-0.0724387 0.0819305 0.0395669 +0.0576036 0.0717386 0.0163116 +0.00802743 0.0346823 0.0237027 +0.00218868 0.098191 -0.0260404 +-0.0368205 0.162344 -0.00074381 +-0.070799 0.0908224 -0.0163205 +-0.0539828 0.0700164 0.038652 +0.0135945 0.128354 0.000408423 +-0.0264981 0.0959784 0.0437675 +0.0190214 0.118116 -0.0113006 +-0.0618485 0.153752 -0.0205795 +-0.0552085 0.151192 0.0284379 +-0.0266144 0.0408668 -0.0293519 +0.00698354 0.131641 0.013682 +-0.0316463 0.0595496 -0.0164023 +-0.0758985 0.159659 -0.0269354 +-0.0491601 0.160603 -0.00598464 +-0.00858383 0.0384847 0.0096485 +-0.0717673 0.146065 -0.0213605 +-0.0899696 0.15095 0.0147905 +-0.00955085 0.0385956 0.00389466 +-0.0607249 0.0737695 -0.0169262 +-0.0751542 0.0995011 0.0375123 +-0.0707959 0.0850638 -0.0167146 +-0.0312047 0.123257 -0.00431908 +-0.053995 0.0675039 0.0372692 +-0.0419532 0.0345214 0.0385087 +-0.0289695 0.0380956 -0.0297496 +-0.0121936 0.163667 -0.0136225 +0.021294 0.0721108 -0.027322 +0.0597965 0.0678036 0.00914167 +-0.0657015 0.0736405 -0.0152375 +0.00697022 0.12731 -0.00520393 +0.033357 0.100796 0.0361067 +0.0587791 0.0686289 0.0199155 +0.00149398 0.0394449 0.0343588 +-0.0875531 0.12123 -0.000692815 +-0.0744527 0.154114 -0.0209063 +-0.0172261 0.0356447 0.0515267 +-0.0200013 0.0389743 0.053287 +-0.0569508 0.0343746 0.0319473 +-0.0184875 0.0829081 0.0576141 +-0.019368 0.183116 -0.0157888 +-0.0626506 0.153382 -0.0318715 +-0.00943219 0.095325 -0.0330289 +0.0431395 0.100108 0.0121576 +-0.0608162 0.0881975 -0.019441 +0.0357777 0.070014 0.0376374 +0.0505254 0.0735568 0.0151501 +0.0307633 0.0476275 0.0336614 +0.0294554 0.0416168 0.02991 +-0.0611913 0.173613 -0.0615062 +-0.0146115 0.109635 -0.0201085 +0.0379445 0.0686366 0.0354907 +-0.076675 0.154077 0.000107436 +-0.0315189 0.0351239 -0.0306591 +-0.0768434 0.109781 0.0434593 +-0.0522791 0.0490314 0.0356585 +-0.0380005 0.12652 0.0191796 +-0.0861323 0.103534 0.00440203 +-0.0659084 0.106679 -0.0142087 +0.000468869 0.0388702 -0.00172096 +-0.0623487 0.141045 -0.00649873 +-0.0484952 0.0862244 0.0454118 +-0.0685451 0.170527 -0.0328985 +-0.037499 0.101465 0.0412127 +0.0274201 0.0431121 -0.00573463 +-0.0197554 0.158352 -0.00754965 +-0.0567366 0.0753362 -0.0185878 +0.0533817 0.063336 -0.00140725 +0.0135006 0.105771 0.0435499 +-0.0631905 0.166285 -0.0395881 +-0.0932173 0.122834 0.0272862 +-0.0284888 0.0396421 0.053637 +-0.0134794 0.0559661 0.0512091 +-0.04424 0.130203 0.0124253 +0.0196407 0.0940896 -0.0236062 +-0.0625219 0.151129 0.0359075 +-0.0585008 0.0732388 0.0410714 +0.0608111 0.0651191 0.0151635 +-0.0275116 0.0560234 0.0370088 +-0.0127931 0.0799092 -0.038653 +-0.0544725 0.0478754 0.0402183 +-0.0905041 0.147099 0.0259896 +0.0291224 0.0877617 -0.0209279 +0.0381679 0.0993665 0.0307411 +0.00549435 0.0474709 0.0500045 +-0.0842531 0.102059 -0.0016008 +0.0164869 0.128389 0.00575868 +-0.043156 0.162156 -0.0100947 +0.0445553 0.0846952 0.000180444 +0.0409145 0.07739 -0.0077683 +0.0297353 0.111221 -0.00987421 +-0.0220481 0.0379707 0.0182323 +-0.0636401 0.0337302 0.00992182 +-0.0277909 0.0796672 -0.0363416 +-0.0247513 0.0944605 0.0453863 +-0.0291577 0.0733109 -0.0335988 +-0.0264744 0.0486202 0.0485825 +-0.0654948 0.104238 0.0403184 +-0.054309 0.153692 0.0171048 +0.000886988 0.0365316 0.0205866 +0.025787 0.114054 0.0339562 +-0.0624998 0.091833 0.0450322 +-0.0825753 0.107428 -0.000626511 +-0.0879726 0.100935 0.0073995 +-0.0849555 0.110375 0.0243559 +-0.00450509 0.0815118 0.0573962 +0.0411647 0.0886413 -0.00977915 +0.00923376 0.0823418 -0.0323881 +0.0250818 0.0983923 -0.0201688 +-0.0460388 0.0353834 -0.0203139 +-0.0563344 0.154371 0.0236088 +-0.0786725 0.15564 0.0171569 +-0.0174933 0.120917 0.0332266 +-0.0405771 0.0447491 -0.0223069 +-0.0706839 0.0363372 -0.00115986 +-0.0827485 0.134001 0.0496722 +-0.0566419 0.0336495 -0.0102846 +-0.0932956 0.12823 0.014251 +-0.0183957 0.116542 -0.0154107 +0.03698 0.0590759 0.0339965 +-0.0709427 0.132583 -0.00826816 +-0.0697213 0.0778913 -0.0154943 +-0.0222445 0.159024 -0.0114139 +-0.0571999 0.0684533 0.0375014 +-0.04663 0.0533425 -0.0102323 +0.00628325 0.0668147 -0.0324472 +-0.0477443 0.0767654 -0.0182192 +0.000336625 0.0525175 -0.0304496 +-0.0562455 0.0345922 0.0440034 +-0.00249349 0.0474079 0.0491587 +-0.00849662 0.115566 0.0401952 +-0.0346349 0.176996 -0.009991 +-0.0315471 0.0665587 -0.0224416 +-0.0114919 0.121016 0.0357517 +-0.00348929 0.0884115 0.0568027 +-0.0275554 0.0689002 0.0398598 +0.0463861 0.080656 0.0111753 +-0.0335046 0.109774 0.0374515 +-0.0104184 0.179993 -0.0295246 +0.0299649 0.0370453 0.0224182 +-0.0229027 0.109901 -0.0203838 +0.0326144 0.117295 0.0103313 +0.0369028 0.0954111 -0.0108822 +-0.0564742 0.041367 0.0464242 +-0.0770729 0.168746 -0.0303374 +-0.0310065 0.124592 0.0202545 +-0.06762 0.17339 -0.0440641 +-0.0124743 0.0632507 0.0548154 +-0.06879 0.067714 0.0304363 +-0.0188136 0.124392 0.0261122 +-0.0775236 0.155819 0.0175602 +-0.0744868 0.14835 0.0408614 +-0.0798509 0.120721 -0.00541034 +-0.0474977 0.0747299 0.0422594 +-0.0819076 0.08016 -0.00254028 +-0.0104535 0.0366522 -0.0168147 +0.0107598 0.0346122 0.0387698 +-0.0618853 0.158437 -0.0215849 +-0.0248668 0.103031 -0.023615 +0.0521945 0.0697716 0.0245573 +0.0156704 0.0936059 -0.0251021 +0.0371318 0.111041 0.00479819 +-0.0835634 0.0897492 -0.00557879 +0.00648846 0.118239 0.0378444 +-0.0454996 0.0464888 0.0408011 +0.00251072 0.0388788 0.0260522 +-0.0757603 0.10082 0.036651 +-0.072674 0.131225 0.051196 +-0.0107806 0.0770662 -0.0381287 +-0.0336363 0.153436 -0.00674709 +-0.0843022 0.0938821 0.0298739 +-0.00957953 0.177197 -0.0268263 +-0.06621 0.148552 -0.030869 +-0.0367939 0.127143 0.000444502 +0.0450752 0.0819431 0.00117926 +0.00252922 0.0387278 -0.0124032 +0.0124259 0.130345 0.00996559 +-0.039483 0.112566 0.0355031 +-0.0896451 0.11724 0.00430849 +-0.0307561 0.0876495 -0.0285591 +-0.0336555 0.0363317 0.0490618 +0.00481949 0.0349074 0.0372909 +0.0324749 0.095557 0.0400886 +-0.0601974 0.126918 0.041055 +0.0561271 0.0494063 0.0121912 +-0.0663732 0.0796127 0.0418746 +-0.0634873 0.105626 0.040045 +-0.0348887 0.174114 -0.0129217 +-0.0331172 0.123673 -0.00477506 +-0.0158191 0.0855498 -0.0389623 +-0.0630684 0.138136 0.036884 +0.00839558 0.0418967 -0.0238735 +-0.000234213 0.0957245 -0.0313684 +-0.00270805 0.0387067 0.00335713 +-0.0066107 0.0434378 -0.0261152 +0.0267348 0.0889072 0.0458132 +-0.057498 0.0762057 0.0428357 +-0.0559977 0.128155 -0.00607843 +-0.0652856 0.176792 -0.0608019 +-0.0847322 0.10481 0.00139005 +0.0045205 0.0842507 0.0571459 +-0.0540417 0.148675 -0.00217424 +0.00157845 0.0388465 -0.0127005 +-0.0649294 0.123847 -0.00887936 +0.0268943 0.0906576 -0.0219805 +-0.0692389 0.149629 -0.0402111 +0.0424058 0.101483 0.00416631 +-0.069135 0.0354547 0.0122501 +-0.0311414 0.168206 -0.0166543 +0.0247254 0.0405634 0.0363023 +-0.035656 0.0591967 -0.0115208 +-0.0492298 0.13342 0.00108021 +0.0186953 0.0943115 -0.0238444 +-0.0632815 0.159908 -0.0475928 +-0.0744952 0.144184 0.0450216 +-0.0273351 0.0750142 0.0443436 +0.0129485 0.0726239 0.0538836 +-0.0256504 0.178665 -0.00908499 +-0.0152817 0.126335 -0.00175389 +0.0171854 0.035921 0.00432788 +0.00536983 0.0385261 0.026955 +-0.069701 0.0749104 -0.0135814 +-0.0936513 0.125496 0.0142597 +-0.0218218 0.0854612 -0.0381675 +-0.0670338 0.0819342 0.0426575 +-0.0637771 0.0824308 -0.0191299 +-0.0579197 0.0410941 0.0197057 +0.004329 0.114453 -0.0192954 +-0.0743852 0.111313 0.0463698 +0.0153242 0.0566704 -0.0288596 +0.0201589 0.0349933 -0.00358051 +-0.0674387 0.0336478 0.00564073 +0.0380425 0.109755 0.0161689 +0.0214264 0.0348625 -0.00133145 +0.0129483 0.0405423 0.0447572 +-0.00171529 0.0627358 -0.0345403 +-0.0206569 0.0494682 -0.0293042 +0.0369479 0.0784891 -0.0137448 +-0.0877279 0.139146 0.00920485 +-0.0228745 0.0383806 -0.00412065 +0.0407791 0.105635 0.00716484 +-0.0164884 0.161116 -0.0081783 +0.0261701 0.115347 0.0327443 +-0.0171143 0.0393698 0.0395766 +0.0364251 0.0840505 -0.0167267 +-0.0413094 0.0336719 -0.0183114 +-0.00449481 0.0619627 0.0557718 +0.0354002 0.054813 0.0334165 +0.0257124 0.0795754 0.0477924 +-0.0900689 0.132434 0.0392074 +0.0111597 0.124256 -0.00791398 +0.023574 0.105697 0.0395934 +0.0172046 0.061784 0.0493931 +-0.0738846 0.110669 -0.00843945 +0.00601824 0.128477 0.0276707 +-0.0581623 0.155642 0.0142378 +-0.046474 0.0903329 0.04369 +-0.0204963 0.0988407 0.0444811 +0.0448392 0.0847511 0.0231667 +-0.0246346 0.0464142 -0.0272665 +-0.0164056 0.0347921 0.0489909 +-0.048358 0.146267 0.00883601 +-0.0626778 0.0407451 0.0424121 +-0.06586 0.154377 -0.00304604 +0.0375072 0.103901 -0.00584413 +-0.00221994 0.0380783 -0.0146251 +0.00247871 0.110023 0.0425049 +0.0588331 0.0552392 0.0181818 +-0.0156079 0.0352742 -0.0184368 +-0.0112854 0.0344473 -0.0186905 +-0.0170355 0.0338392 -0.0211402 +-0.0137571 0.128142 0.00234571 +0.0353694 0.082169 0.0388786 +-0.065182 0.160968 -0.0576695 +-0.0324895 0.0874934 0.0434306 +-0.0637445 0.0781022 -0.0180675 +-0.0882379 0.0914593 0.00646904 +0.0256941 0.120543 -0.00190068 +-0.0750751 0.149943 -0.025867 +-0.0477253 0.135673 0.0140062 +-0.0678845 0.116524 -0.00880656 +-0.0627671 0.15529 -0.013592 +-0.0588282 0.0408079 0.0456406 +-0.056691 0.0506774 -0.00137882 +-0.0828622 0.0910525 -0.0066104 +-0.0499126 0.0515141 0.0166499 +-0.0490107 0.146266 0.00962371 +0.0122318 0.130219 0.0070475 +-0.0116803 0.0570084 -0.0342026 +-0.0651676 0.167884 -0.0330971 +-0.0730453 0.0699885 -0.00346826 +0.0174821 0.0990004 0.0469682 +-0.0908453 0.133761 0.025216 +-0.0657306 0.150277 -0.0347821 +-0.0671422 0.159475 -0.0561779 +-0.00377564 0.078412 -0.0370359 +-0.0617811 0.042326 0.0146867 +-0.0252077 0.0348536 0.0435448 +-0.028493 0.0602587 0.0370952 +-0.08903 0.119932 0.00232561 +-0.0345174 0.105629 0.0392495 +-0.0234134 0.181486 -0.0190275 +-0.0664685 0.0611724 0.00451786 +0.0367619 0.0414833 0.0270934 +-0.0275613 0.121213 -0.00819283 +0.0347392 0.0848817 0.0397697 +-0.0655835 0.0626949 -0.00273961 +-0.0187525 0.0671388 -0.037784 +-0.0904123 0.13106 0.0392156 +0.0183728 0.0521803 -0.0265242 +-0.0394837 0.113931 0.0345962 +-0.050497 0.0848226 0.0453947 +-0.026736 0.125755 0.00710307 +-0.0284884 0.0890334 0.0453918 +-0.0441667 0.0657175 0.0402548 +0.0109368 0.035027 0.0276086 +-0.0219243 0.0335307 -0.0255712 +-0.0865855 0.100865 0.00437928 +-0.0114057 0.038823 -0.00778731 +-0.0606205 0.136712 0.0351771 +-0.0938957 0.124187 0.0252761 +-0.0877217 0.151511 0.024071 +0.0027861 0.0392982 -0.00725238 +-0.0435747 0.127942 -0.00117905 +0.00626863 0.114136 -0.0189815 +-0.0182416 0.0386382 0.0310248 +-0.065785 0.145733 -0.0198954 +-0.0867571 0.0833567 0.0144816 +0.0263294 0.0517767 -0.02097 +0.0205436 0.0357642 -0.00368285 +-0.0174561 0.0544373 0.0497557 +0.0051136 0.11017 -0.0202785 +0.0320036 0.0972394 -0.014969 +0.018368 0.0537078 -0.0275601 +0.00449367 0.115547 0.0400425 +0.030957 0.0564285 0.0393343 +-0.0480871 0.166778 0.00155196 +-0.0374511 0.122567 -0.00961353 +-0.067466 0.154933 0.00219081 +-0.0645473 0.0334176 0.0010517 +-0.0507826 0.0530079 0.0196214 +-0.0269873 0.0549465 0.0375414 +-0.0318114 0.0361324 -0.0187 +0.0211923 0.12581 0.0217553 +-0.0485738 0.111377 -0.0178292 +-0.0790938 0.10996 -0.003593 +0.0410408 0.0408917 0.00130956 +-0.0171973 0.174198 -0.0240623 +-0.0136738 0.0526181 -0.0325173 +-0.0194987 0.0828823 0.05729 +-0.00149547 0.119691 0.0381347 +0.0125362 0.127772 -0.00169738 +0.00352032 0.0772514 0.0561756 +-0.0037108 0.0392109 0.0335024 +-0.0682887 0.164315 -0.0170259 +-0.0861823 0.107654 0.00936346 +0.0116633 0.0616767 0.0519085 +-0.0828359 0.104706 -0.00261356 +-0.0473623 0.129578 0.0262098 +0.0143608 0.0508459 -0.0270896 +-0.0265586 0.171236 -0.0104749 +0.0203688 0.0459169 -0.020834 +-0.0404996 0.0591463 0.0404229 +-0.0164937 0.0758406 0.0558352 +-0.00649647 0.0898144 0.056995 +-0.070489 0.118975 0.0531649 +-0.0665486 0.169315 -0.0336077 +-0.0869443 0.101766 0.0237835 +0.0413201 0.104267 0.012164 +-0.0705201 0.0646959 0.0221381 +-0.0345088 0.104256 0.0402356 +0.0590657 0.0691634 0.0182335 +0.0274527 0.103904 -0.0160338 +-0.0321732 0.0461161 0.0457813 +-0.0446011 0.0519723 -0.0106716 +-0.0932418 0.125562 0.0272746 +-0.0458642 0.128671 0.00011454 +-0.0885465 0.0902329 0.022415 +-0.0693724 0.136902 0.0471868 +0.0383558 0.102292 -0.0062663 +-0.0638617 0.125566 0.0463833 +-0.017504 0.0870094 0.0567302 +-0.0370734 0.0393951 0.0451959 +0.00329134 0.119473 -0.0147093 +-0.0543235 0.0334648 0.00849253 +0.0274945 0.0381011 -0.00197122 +-0.0703836 0.151592 -0.0450749 +0.0441667 0.0973563 0.00616912 +0.0240844 0.0547426 -0.0237664 +-0.015779 0.0770791 -0.0385675 +-0.0731035 0.0667848 0.0215468 +0.0455074 0.0569933 0.0321208 +-0.0438752 0.128361 0.000408951 +-0.0622566 0.0709345 0.0378148 +-0.0713089 0.156055 0.0109968 +0.0323876 0.047596 -0.00623106 +-0.0610541 0.068813 0.0363796 +-0.0175437 0.119111 -0.0121224 +-0.0136792 0.0541002 -0.0332811 +-0.0477406 0.135604 0.0113959 +-0.0709176 0.112214 -0.00951227 +0.0301974 0.0887542 -0.0200097 +-0.0734581 0.168 -0.0440151 +-0.0685258 0.165031 -0.0185494 +-0.0264962 0.0690788 0.0415599 +-0.0249134 0.0383716 -0.00452352 +-0.086697 0.114875 0.0460769 +-0.0752073 0.156095 0.0183637 +-0.0189411 0.0376177 0.0530488 +-0.0634886 0.064446 0.0291098 +-0.0261594 0.066324 0.0406106 +-0.0142604 0.0974009 0.0506069 +-0.0316679 0.0763713 -0.0315414 +-0.040787 0.0855384 -0.021437 +0.0590343 0.06983 0.00945078 +-0.07763 0.165322 -0.0259443 +-0.0631195 0.176032 -0.0554618 +-0.0918958 0.129686 0.0292517 +-0.029505 0.0545565 0.0362962 +-0.0356809 0.123888 -0.0070042 +0.0421291 0.070468 -0.00580336 +0.0297749 0.0920783 -0.0194766 +-0.0415439 0.148326 -0.00168489 +-0.090059 0.136447 0.0142016 +-0.0555057 0.0946 0.044463 +-0.0945025 0.125547 0.0202583 +-0.0304869 0.0532061 0.0367531 +0.00830607 0.0917456 -0.031199 +0.0182274 0.125477 -0.00123802 +0.0138055 0.0712841 0.0533593 +0.0294478 0.0506302 0.0370841 +-0.0802909 0.104732 0.0311813 +0.0308738 0.115323 0.0282321 +-0.0889738 0.137888 0.0281941 +-0.0750897 0.149941 -0.0248696 +0.0395014 0.0469731 0.0315971 +-0.0599935 0.0586398 0.0172334 +-0.0790056 0.166641 -0.0359617 +-0.00233373 0.114874 -0.0177321 +-0.0241436 0.180147 -0.0104229 +-0.0746876 0.0700138 0.0272066 +-0.00503592 0.13043 0.00494647 +-0.069435 0.179317 -0.0579979 +-0.0896062 0.137812 0.0131974 +-0.0625358 0.155244 -0.0346054 +-0.071543 0.155755 0.00800576 +-0.0746181 0.165272 -0.019163 +-0.0386347 0.0548667 -0.0110053 +0.00350742 0.103001 0.0436938 +-0.0629079 0.15056 -0.0255866 +0.0200283 0.0371524 -0.00668325 +-0.0375331 0.127856 0.0134298 +-0.075576 0.155851 0.0124034 +-0.0145239 0.118305 0.0371093 +-0.0528711 0.15259 0.0147483 +-0.0639569 0.158297 -0.0475943 +-0.0437953 0.0869983 -0.0218056 +0.0183 0.0651194 -0.0285252 +0.0410434 0.0689808 -0.00777311 +-0.0391241 0.157933 0.00465789 +-0.0617079 0.155317 -0.0205813 +0.049194 0.055373 0.030576 +-0.0577821 0.0826022 -0.0210434 +0.00750154 0.123796 0.0339733 +-0.0844011 0.0777797 0.0105147 +-0.0508742 0.137048 0.0234112 +-0.0487311 0.13178 0.0269763 +-0.0224768 0.123487 0.0248086 +0.0572102 0.0550739 0.00417234 +0.0523558 0.0647992 0.0281407 +-0.0804668 0.131637 0.0521945 +0.0276827 0.0480336 -0.0156964 +-0.0121824 0.178673 -0.0292354 +-0.0228778 0.10587 -0.0225138 +-0.0644637 0.0743344 0.0396953 +-0.0655821 0.153706 -0.0431373 +-0.0176845 0.0525387 -0.0318817 +0.0256228 0.0363687 8.49366e-07 +-0.0208533 0.0866413 0.055877 +-0.0490886 0.157599 -0.00632625 +0.00958152 0.0417197 0.0451866 +-0.0135001 0.0800899 0.0570677 +-0.0885594 0.112819 0.0222051 +0.0440561 0.0945388 0.0201582 +0.00630898 0.0624816 -0.0315869 +-0.0560997 0.155362 -0.00113519 +-0.0238123 0.0867774 -0.0372362 +-0.0711896 0.155374 -0.0449035 +0.018728 0.0549999 0.0480114 +-0.0696134 0.172257 -0.054028 +-0.00359831 0.101107 0.0440537 +-0.033095 0.0723179 -0.02347 +0.0338305 0.107861 -0.00824999 +-0.0354812 0.0383051 -0.00290933 +-0.0238593 0.0838986 0.0547079 +0.0239371 0.103424 0.0418106 +-0.076687 0.14724 -0.00686649 +-0.0113442 0.129847 0.0112634 +-0.0595215 0.131137 0.0385262 +-0.00250336 0.0633801 0.0564795 +-0.0765967 0.152807 -0.00988734 +0.00617007 0.126444 0.0306412 +0.0264293 0.0400385 -0.00421056 +-0.0261224 0.165258 -0.0166522 +-0.00669164 0.129496 0.00145082 +-0.0531001 0.154605 -0.00338641 +0.0347186 0.113797 0.00249877 +-0.0746345 0.0660496 0.0075612 +-0.0897609 0.0915993 0.0164407 +-0.0848984 0.0965537 0.0289739 +-0.0217829 0.111029 -0.0195757 +-0.0890662 0.123985 0.0032876 +0.0609254 0.0637423 0.0131584 +-0.0495476 0.147557 -0.00269468 +-0.00609162 0.0391352 -0.0126175 +-0.047607 0.144918 0.0010701 +-0.0484709 0.165547 -0.00491912 +0.0489576 0.0466396 0.0248167 +-0.0391315 0.160685 -0.012118 +-0.0530423 0.14778 0.0224018 +-0.0471085 0.0683456 0.0397676 +-0.0785029 0.128864 0.0532728 +0.0368255 0.109713 0.0241821 +0.0163171 0.0686116 0.0516854 +-0.0729482 0.0914984 0.0411605 +-0.0805357 0.113778 0.0465863 +0.0302378 0.0727042 0.0419554 +-0.0625354 0.122703 0.0447625 +-0.0615083 0.170965 -0.0565878 +-0.0124852 0.0659775 0.0542376 +0.0219313 0.0605513 0.0474343 +-0.048186 0.135579 0.00839494 +-0.014696 0.0585192 -0.0354314 +-0.0818834 0.109932 0.0368633 +-0.0564976 0.101562 0.0427397 +-0.0692156 0.0343564 -0.00463486 +-0.0924819 0.125444 0.00927262 +-0.0116015 0.0406252 -0.0263738 +0.000388646 0.0448955 -0.0263577 +-0.0474886 0.05462 0.0367747 +-0.0150651 0.12575 -0.00315467 +-0.0225002 0.104414 0.0430095 +-0.016108 0.038364 0.00641286 +-0.0474972 0.105664 0.0404447 +0.053572 0.0650953 0.0274823 +-0.068963 0.0874301 0.0429809 +-0.0206158 0.0422474 -0.0286271 +-0.0745126 0.131657 0.0521168 +0.0246516 0.122175 0.000230276 +-0.00982514 0.16696 -0.0220459 +-0.00885716 0.0385311 0.024037 +-0.0568241 0.063612 0.0312362 +-0.0787856 0.109366 0.039802 +0.0392221 0.075321 0.0338531 +-0.0725057 0.102685 0.0380563 +0.0318729 0.0380045 0.0237472 +-0.0704322 0.13832 0.0474328 +-0.0325018 0.177105 -0.00443384 +-0.0226059 0.0381278 0.0251854 +-0.00949201 0.129843 0.00617837 +-0.00878563 0.110674 -0.0212403 +0.0347324 0.0882263 -0.0174421 +-0.046782 0.0841151 -0.0215173 +-0.0692662 0.0692944 0.0324707 +0.00925419 0.0696192 -0.0318888 +-0.0303184 0.0423041 0.0510935 +-0.0780856 0.0784826 -0.00760345 +0.0256389 0.0929167 0.0460121 +0.00457646 0.108164 0.0418882 +-0.0519222 0.0461016 0.019678 +0.00234204 0.0367065 0.0225428 +0.0457266 0.0847913 0.00519644 +0.0292205 0.0857953 -0.020938 +-0.0196964 0.0384682 0.0290787 +0.0127826 0.0926962 0.0520031 +0.0390362 0.0980073 0.030266 +0.0186124 0.127837 0.0122439 +-0.0535608 0.0430661 -0.00900679 +-0.0509276 0.0346131 0.0417321 +0.0233086 0.0634336 -0.024957 +0.00850697 0.0546686 0.0524774 +-0.0275662 0.123979 -0.00112939 +-0.0688326 0.13265 0.047942 +0.0112159 0.0922395 -0.029689 +0.00233442 0.0539469 -0.0306143 +-0.0446508 0.040942 -0.0182992 +-0.00948977 0.114167 0.0408028 +0.0254079 0.10205 -0.0180571 +-0.0850056 0.146006 0.00617966 +-0.00850241 0.0870443 0.0572609 +0.0097783 0.1251 0.0319006 +-0.0222638 0.126605 0.016039 +-0.0722117 0.0348867 0.00176609 +-0.0327045 0.111423 -0.0179721 +-0.057835 0.0897878 -0.0213715 +-0.076573 0.153595 0.0311713 +0.0595629 0.058084 0.0191786 +-0.0323163 0.155148 0.000487548 +0.0120506 0.0505153 0.0488388 +-0.0524497 0.140085 0.0234103 +-0.0325359 0.172727 -0.00270207 +-0.0711683 0.149278 -0.039104 +-0.0641214 0.155412 0.0266328 +0.0288394 0.112544 -0.00929606 +-0.0217358 0.0384567 0.028668 +-0.0719124 0.168014 -0.0470137 +-0.0448486 0.0351369 -0.0234128 +0.0159855 0.12897 0.0112743 +0.0311432 0.0373381 0.0223917 +-0.000793766 0.0867716 -0.0355698 +-0.0900654 0.132428 0.033223 +-0.0935895 0.122834 0.0262964 +-0.0520638 0.0723523 0.0405753 +-0.0111299 0.129809 0.0171219 +-0.0491641 0.0344528 0.0317811 +-0.0849325 0.0938555 0.0290926 +-0.0809703 0.132422 -0.00393108 +-0.0887798 0.140493 0.0370948 +-0.0577868 0.0840301 -0.0211707 +-0.0814849 0.0872077 0.0329213 +0.0191348 0.102061 0.0453843 +0.0573171 0.0523102 0.00718519 +0.039991 0.0847392 0.0332858 +-0.0668403 0.0335301 0.004077 +-0.0117893 0.0392416 0.0372019 +0.0216437 0.120011 -0.00733339 +-0.0125093 0.0883992 0.0567932 +-0.0378236 0.125803 -0.00505851 +-0.0750347 0.154671 0.0286993 +-0.0887093 0.112351 0.0387402 +-0.0638899 0.102518 -0.0176142 +-0.0600535 0.138395 -0.00620678 +-0.0103882 0.129888 0.00873113 +-0.0610188 0.119808 0.0416066 +0.0158574 0.104091 -0.0202309 +-0.0839121 0.122095 -0.00374203 +-0.0841686 0.143365 0.0409129 +-0.00166671 0.12799 -0.00382866 +-0.0434723 0.0647942 0.0406198 +0.0406639 0.0815903 -0.00978474 +-0.0652464 0.154114 0.00157024 +-0.0257535 0.0740897 -0.0368116 +-0.0739579 0.13841 -0.00677972 +-0.0288788 0.0592582 -0.0244095 +0.0093177 0.0926652 -0.0301396 +-0.0452267 0.150119 -0.00491516 +-0.0319894 0.0384633 -0.00603174 +-0.0794952 0.0854073 -0.00956797 +-0.0675492 0.129835 0.0480321 +-0.0523266 0.033478 -0.00194369 +-0.00450192 0.0718383 0.058171 +-0.0535372 0.0578641 0.0215172 +-0.0140108 0.0596764 0.0527295 +-0.000532268 0.111266 -0.0199168 +0.0523683 0.0540101 0.0281247 +0.0211966 0.123092 -0.002693 +-0.00468835 0.0598784 -0.0344633 +-0.0718785 0.102239 -0.0132694 +-0.0678239 0.15109 -0.0436673 +0.0350895 0.0686836 0.0383949 +0.0422361 0.101506 0.0151693 +0.0317521 0.0794454 -0.0197442 +-0.0577724 0.0796775 -0.0200459 +-0.0461631 0.0335506 -0.0117706 +-0.0827169 0.105982 0.0279083 +-0.0922534 0.122854 0.0424865 +0.0128317 0.0712714 0.0536973 +-0.0126798 0.126321 -0.00380105 +-0.00116162 0.0980337 0.0521962 +-0.0814909 0.0788596 0.028943 +-0.0501013 0.15611 -0.00554414 +0.00939521 0.0609325 -0.0302492 +-0.030101 0.160758 -0.0141091 +-0.031497 0.117989 0.0308563 +0.0231755 0.0916964 -0.0230758 +0.0434109 0.0987186 0.0151565 +-0.0514982 0.108428 0.0386132 +-0.0644896 0.0833289 0.0440861 +-0.0238622 0.101613 -0.0238665 +0.04258 0.0422624 0.0239479 +0.0354547 0.103863 -0.00997386 +0.0217345 0.0994968 0.0456553 +-0.0743457 0.168929 -0.0264214 +0.01504 0.0343531 -0.00213727 +0.00148487 0.0399885 0.0464307 +0.0273636 0.0699427 0.0430425 +-0.0548013 0.086928 -0.0216118 +-0.0729344 0.0901459 0.0411907 +0.0305961 0.110839 -0.00946183 +-0.0721093 0.0846859 0.0405598 +-0.067036 0.180898 -0.0568882 +0.0496382 0.068363 0.00147832 +-0.0149904 0.165173 -0.0188028 +-0.0928971 0.117368 0.0123132 +-0.000378579 0.101174 0.0451223 +-0.00167056 0.0392225 0.0339103 +0.0308479 0.0567691 -0.0158074 +0.00821609 0.0823703 -0.0328688 +0.0179771 0.0393777 0.0432522 +-0.0917891 0.141969 0.0171701 +0.0284614 0.0398271 -0.00325429 +-0.0273719 0.0335777 -0.022929 +-0.0799767 0.138308 -0.00390962 +0.0224205 0.0519815 -0.0241272 +-0.0206006 0.0393656 -0.0285093 +-0.075081 0.147222 -0.0118498 +-0.0748806 0.0992858 -0.0126164 +0.0126717 0.127043 -0.00291981 +-0.0321779 0.0474216 0.0442941 +0.0248435 0.0822524 0.0483141 +-0.087169 0.0964235 0.0255876 +-0.00114332 0.0356309 -0.0159104 +-0.0674627 0.138295 0.0446438 +-0.0656974 0.169193 -0.0361564 +-0.065794 0.155512 0.00862557 +0.0346025 0.0754478 0.0394941 +-0.0145323 0.043279 0.0510718 +-0.0739879 0.139879 -0.00672352 +-0.0921938 0.132347 0.0162256 +-0.077508 0.174998 -0.0490226 +-0.0161182 0.180144 -0.0199393 +0.0442692 0.0973579 0.00816486 +-0.0885535 0.112746 0.0331115 +-0.0527601 0.0447727 0.0186838 +-0.0301237 0.12585 0.013192 +-0.0359512 0.151053 -0.00163407 +-0.0579079 0.121934 -0.00872095 +-0.0709562 0.158172 -0.0439179 +-0.00996463 0.114432 -0.0172214 +-0.0308542 0.0986541 -0.0229751 +-0.0199407 0.0381449 0.0130842 +-0.0439068 0.129921 0.011069 +0.0290675 0.120111 0.00471365 +-0.0203588 0.175699 -0.0155519 +0.0542673 0.0491964 0.0212031 +-0.0348545 0.0986254 -0.0227182 +0.0413986 0.0830578 -0.00877387 +-0.0554939 0.0477978 0.0398952 +-0.0760774 0.166574 -0.0390172 +0.0438486 0.0846749 0.0261721 +0.0021495 0.0388151 -0.00319944 +0.04114 0.104231 0.00317036 +0.0165359 0.0912212 -0.0265781 +-0.0518469 0.0545626 0.0286406 +-0.0568589 0.0562507 0.00563881 +-0.0383911 0.127983 0.00280515 +-0.0857603 0.130763 -0.000714461 +-0.0173678 0.0389666 0.0345056 +-0.0266954 0.125077 0.00273937 +0.0143393 0.0349605 0.0410018 +0.0132369 0.0709965 -0.0314873 +-0.0317622 0.0338243 0.0127586 +-0.0767072 0.0724697 0.0281768 +-0.0694593 0.040787 -0.000292884 +0.013984 0.129601 0.0176686 +-0.00527436 0.124342 -0.0098488 +-0.0749724 0.149924 -0.0268701 +-0.0188238 0.0855077 -0.0385626 +-0.0577531 0.141417 -0.00374252 +-0.0506075 0.0335251 -0.00346549 +-0.0105008 0.103039 0.0436514 +-0.062498 0.0847471 0.0443617 +-0.0166725 0.0495705 -0.0306349 +-0.0368813 0.108512 -0.0198737 +0.0510305 0.0733741 0.0168194 +-0.0275083 0.112548 0.0360564 +-0.0636421 0.0627085 -0.00368166 +0.0411669 0.104244 0.0141607 +-0.00149973 0.0965741 0.0536819 +-0.0288186 0.0862428 0.0454609 +-0.0526183 0.0343668 0.0293685 +-0.0601235 0.15512 0.0251504 +-0.0378644 0.111663 -0.0181901 +0.0344602 0.0726275 -0.0157808 +-0.0144826 0.0530653 0.0501401 +-0.0700881 0.131265 0.0496481 +-0.0878883 0.0914318 0.00546674 +-0.0415923 0.0491549 -0.0111971 +0.0234288 0.0618809 0.0460892 +-0.0630663 0.151874 -0.00782908 +-0.0866506 0.128453 0.0480393 +-0.0781275 0.152854 0.000107941 +-0.0106285 0.174518 -0.0286758 +-0.0596993 0.0345337 0.0416145 +-0.0579832 0.0466328 -0.00336399 +-0.0265008 0.124041 -0.00116405 +-0.0254725 0.0400777 0.0541415 +-0.0178664 0.12824 0.013233 +-0.0206926 0.0385034 0.0288434 +-0.0534934 0.0747559 0.0420439 +-0.0652623 0.158339 -0.0115587 +-0.0767656 0.152802 -0.00889022 +0.0245199 0.0520168 0.0405174 +0.0264125 0.0450979 -0.0096842 +-0.012488 0.107228 0.0430572 +-0.078668 0.170753 -0.0430283 +-0.0625286 0.164689 -0.038593 +-0.0241791 0.159685 -0.00173809 +0.00849261 0.092349 0.0531984 +-0.0759472 0.132533 -0.00707033 +-0.0806057 0.0720192 0.00754007 +0.00646347 0.117501 -0.0166002 +-0.0178266 0.0947205 0.0526193 +0.000481761 0.10723 0.0430499 +-0.013526 0.162053 -0.0127433 +-0.0186103 0.042208 -0.0281438 +-0.0252891 0.0336623 -0.0225985 +0.00751041 0.0688465 0.0554032 +0.0252903 0.0675893 -0.0238235 +-0.065902 0.112354 -0.012152 +-0.0476622 0.0620749 -0.0123691 +-0.0940806 0.122789 0.0152778 +-0.0229201 0.115998 -0.0147881 +-0.0344826 0.0519106 0.0380623 +-0.0890068 0.11621 0.0451247 +0.0107555 0.0404168 0.045078 +-0.0894686 0.136415 0.011209 +-0.0757697 0.145819 -0.00688494 +-0.071833 0.152571 -0.043913 +0.0235861 0.0352777 0.0154316 +-0.0926495 0.129588 0.0122381 +-0.0647445 0.0780775 -0.0178137 +-0.00582898 0.0896214 -0.0360418 +0.0559073 0.0721087 0.0082759 +-0.0261702 0.0823861 0.0514348 +-0.0558857 0.0970202 -0.0212239 +-0.0630553 0.148575 -0.0182369 +0.00714931 0.123902 0.0338795 +0.0304322 0.0902625 -0.0195701 +-0.0137593 0.0388335 -0.0101314 +0.0427673 0.0818692 0.0284169 +-0.0651233 0.155698 0.0103085 +-0.0897032 0.113874 0.0229056 +-0.0447211 0.129823 0.00637961 +-0.0575 0.0588269 0.0212602 +0.0104936 0.11823 0.0368787 +0.0202805 0.12337 -0.00295598 +-0.0340138 0.155107 0.00155033 +0.0602047 0.0622908 0.0181797 +-0.0859874 0.153017 0.0132012 +0.0433237 0.0846089 -0.00479162 +-0.0678527 0.0937535 -0.0166708 +0.0608755 0.0651235 0.0141559 +-0.0737739 0.0878479 -0.0153893 +0.0296171 0.11988 0.0191943 +-0.00324005 0.038276 0.0477168 +-0.0806315 0.139432 0.0474021 +0.0455013 0.0583861 0.0319381 +-0.0740734 0.172255 -0.0349568 +0.0224678 0.0975265 0.046211 +-0.0525514 0.0389481 -0.0113995 +0.0281531 0.119463 0.0257844 +-0.0765864 0.155527 -0.0189073 +-0.0289503 0.0931616 -0.025199 +-0.0573663 0.0338673 0.0217593 +0.0396386 0.064502 0.0326274 +0.00539495 0.0433546 -0.0245866 +0.0256558 0.0782254 0.0477034 +0.0162437 0.0764684 -0.0291666 +0.0272037 0.100805 0.0412523 +-0.0316694 0.0357391 0.0272619 +-0.0623836 0.163119 -0.0315939 +0.0275463 0.095549 0.0435012 +0.0393856 0.0475887 -0.00567863 +-0.0394934 0.163848 0.00245451 +0.0242993 0.0928305 -0.0222726 +-0.0271788 0.0358787 -0.0194139 +-0.0734977 0.124615 0.0532793 +-0.0883817 0.123968 0.00128346 +-0.0257849 0.174205 -0.0110873 +-0.0281104 0.163768 -0.0157424 +-0.0662143 0.0386042 0.0318887 +-0.0109132 0.103533 -0.0236899 +-0.0616548 0.140062 -0.00630976 +-0.060057 0.135486 -0.00665791 +0.0434691 0.0624283 0.0290897 +-0.0236196 0.0436733 -0.0286374 +0.043495 0.0610671 0.0301862 +-0.0910584 0.133686 0.0122173 +0.0291029 0.0938741 -0.0193597 +-0.0261534 0.0383869 0.0314189 +0.00850666 0.0896726 0.0548038 +-0.0247527 0.0340557 -0.0209813 +-0.0186132 0.0436215 -0.0279143 +-0.0124858 0.0911558 0.0565265 +0.0053433 0.0524636 -0.0297405 +0.0403239 0.0999619 0.0261672 +-0.0522155 0.149331 0.0183918 +-0.0534968 0.0973516 0.0432358 +-0.0284959 0.10431 0.0415782 +-0.0908913 0.139194 0.0171389 +0.0264487 0.0948748 -0.0204583 +-0.0834511 0.149763 0.0335021 +-0.00425208 0.0941246 -0.0337645 +-0.0337113 0.0652961 -0.0165207 +-0.0405229 0.128682 0.00643622 +0.025364 0.0547555 -0.0216571 +0.0209176 0.124997 0.0245115 +0.0147936 0.104084 -0.0202238 +-0.0510936 0.156101 -0.00485677 +-0.00104637 0.116277 -0.0172455 +-0.0564804 0.0613799 -0.00459099 +-0.0261657 0.11885 -0.0117616 +-0.0612216 0.155927 0.0131437 +-0.0264503 0.181668 -0.00853376 +0.0163083 0.0594423 -0.028212 +-0.0188061 0.081321 -0.0390856 +-0.0660982 0.156586 -0.0534726 +-0.0596936 0.155857 0.0122367 +-0.0656404 0.0608118 0.00501538 +0.00550383 0.0716948 0.0562222 +-0.0473457 0.134062 0.00939848 +0.0233312 0.0436331 0.0404882 +0.0342215 0.0827959 -0.0185003 +0.00407718 0.131556 0.00833758 +-0.0524976 0.0931679 0.0439324 +-0.0206125 0.0553712 0.0467047 +-0.0499367 0.0345722 0.0419808 +-0.0720303 0.169416 -0.0480254 +0.0463102 0.0820482 0.0101764 +0.0239273 0.0383233 0.0327312 +-0.0556472 0.0657358 0.0349277 +0.0082124 0.0879974 -0.0324239 +-0.0483251 0.123967 0.0299918 +-0.00979541 0.0826872 -0.0380854 +-0.0104818 0.0688481 0.0551963 +-0.0738713 0.116445 -0.00712552 +-0.0783268 0.0804305 0.0341941 +-0.0318616 0.0386777 -0.0303614 +-0.0685663 0.0335043 0.000153325 +0.0419445 0.0972272 0.0251571 +-0.0324967 0.0831278 0.0417023 +-0.0385753 0.165326 0.00202421 +-0.0574991 0.105703 0.0407441 +-0.0735089 0.120392 0.0535609 +-0.0194999 0.105809 0.042534 +-0.0918084 0.11461 0.0202058 +0.0373089 0.0604869 0.0345236 +-0.0397982 0.0885212 -0.0227204 +-0.0838603 0.0771078 0.0156983 +-0.0683511 0.16683 -0.0228013 +0.00825384 0.0357096 0.0264477 +-0.0487592 0.0797294 -0.0200154 +-0.067984 0.13847 -0.00792156 +-0.0205709 0.127392 0.00935219 +0.0158596 0.0940217 0.0494261 +-0.00476401 0.100643 0.0463697 +-0.0144795 0.0617481 0.0535104 +-0.0635003 0.0931972 0.0443921 +-0.06148 0.0371866 -0.00855801 +-0.0235696 0.0368882 0.0541538 +-0.00084278 0.129714 0.0251926 +-0.0857238 0.0792489 0.0165033 +-0.00382707 0.0868147 -0.0366286 +-0.0623716 0.0433162 0.04063 +-0.0481783 0.127343 -0.00452632 +0.0258208 0.0577421 -0.0227411 +-0.0464997 0.109825 0.0383354 +-0.0632202 0.150553 -0.0275915 +0.0594014 0.060828 0.00515272 +-0.0379322 0.0359407 -0.029738 +-0.0628566 0.163115 -0.0590591 +0.032875 0.0504741 0.0332188 +-0.0798256 0.114817 -0.00349908 +0.00979876 0.0631089 0.0545118 +-0.00479883 0.0826783 -0.0376925 +-0.0586564 0.152453 0.0326111 +-0.0847868 0.0979024 0.0288114 +-0.0248237 0.0853842 -0.0372699 +-0.00156343 0.13088 0.0191419 +-0.0624949 0.0729745 0.0395167 +-0.0208752 0.105853 -0.0224653 +0.0381305 0.0743398 -0.0117665 +0.00679871 0.128004 -0.00391746 +-0.0769289 0.125211 -0.00745968 +-0.0251918 0.111615 -0.0181703 +-0.0538836 0.0984784 -0.021806 +-0.0535445 0.0444164 -0.0080927 +0.0449223 0.0903552 0.00117592 +0.00748556 0.116867 0.0384917 +0.0479919 0.0426572 0.0134999 +0.0269115 0.116892 -0.00595645 +0.0287509 0.0911639 -0.0204971 +-0.00583539 0.0910195 -0.0356702 +0.0122548 0.126063 0.0299441 +-0.0732964 0.0791377 0.0376894 +-0.0578898 0.108324 -0.0176181 +-0.0316803 0.111369 -0.0179291 +-0.00248889 0.101618 0.0440339 +0.0583601 0.0593964 0.0227402 +-0.0568793 0.105485 -0.0183902 +0.0313941 0.108732 0.0332945 +-0.0104953 0.0801622 0.0580036 +-0.0799858 0.150056 0.000166757 +-0.0448968 0.146123 0.00263093 +-0.0595037 0.0344238 0.0383245 +-0.0836036 0.133464 -0.00169527 +-0.0115063 0.0575113 0.0530742 +-0.0112578 0.037897 0.0501369 +-0.0404967 0.071918 0.0419528 +-0.024201 0.0373653 0.0542269 +-0.063129 0.0366622 0.0429743 +0.0461067 0.069238 0.0238359 +-0.0217169 0.0945664 0.0494448 +0.0519577 0.0621966 0.0293389 +0.0286828 0.072686 0.0432253 +0.0389262 0.103315 -0.00332456 +-0.0908979 0.126784 0.00627265 +-0.0604951 0.097348 0.0432235 +0.00320361 0.0838721 -0.0343861 +-0.0615214 0.155998 0.0173864 +0.0174482 0.090927 -0.0262636 +-0.0428815 0.108469 -0.0193857 +0.0528827 0.0476533 0.00520477 +-0.0692155 0.155426 0.0044718 +-0.0116319 0.126956 0.0271535 +0.0555832 0.0661715 0.0258304 +-0.0669079 0.139705 0.0437201 +0.0208911 0.120687 0.0321527 +-0.0692559 0.157013 -0.00287665 +-0.0642658 0.131126 0.0422113 +-0.00350345 0.108655 0.04343 +0.00595359 0.131311 0.0061803 +-0.0652676 0.179645 -0.0602668 +0.0113097 0.0609536 -0.0296395 +0.0202287 0.0385462 -0.010699 +-0.0528896 0.0556157 0.0124842 +-0.0830831 0.152763 0.0275295 +-0.0929926 0.121477 0.0272936 +-0.0679169 0.115123 -0.00939662 +-0.0715189 0.150138 -0.0417489 +0.0502478 0.0496891 0.0267596 +-0.088826 0.122625 0.00229599 +0.045739 0.0876044 0.00618298 +0.0276204 0.0364605 0.0224657 +0.0550864 0.0576626 -0.000774412 +-0.0601415 0.0397484 0.0187938 +-0.0467117 0.131872 0.0218067 +-0.00211002 0.131247 0.0146415 +0.0400335 0.107013 0.011165 +-0.0875275 0.141918 0.0101858 +-0.0321386 0.0511687 -0.0124242 +-0.05996 0.047085 0.0381143 +-0.0771576 0.158311 -0.0229061 +-0.0910473 0.139231 0.0181913 +0.0586943 0.0552354 0.0191792 +0.0541025 0.0616928 -0.00172111 +0.0193458 0.0347743 -0.00166328 +-0.0785503 0.175004 -0.046006 +0.0361753 0.0767902 0.0382584 +-0.00218115 0.0950603 -0.0327048 +-0.00446475 0.03907 -0.00848801 +-0.0509412 0.0543847 0.0317288 +-0.031974 0.126184 0.0154629 +-0.0517139 0.047497 0.0206563 +0.0390432 0.106963 0.0211652 +-0.0661031 0.169296 -0.0348743 +-0.0461189 0.0353483 0.0438447 +-0.0618314 0.155872 0.0114752 +-0.0414861 0.169687 0.00162271 +-0.0640913 0.154089 -0.00821335 +-0.0474977 0.0776489 0.0433419 +-0.000495324 0.0870356 0.0569136 +0.0572432 0.0508915 0.0131865 +0.0162675 0.0348087 0.0361219 +-0.0561497 0.0697401 0.0384165 +-0.0632023 0.166731 -0.0605917 +-0.0297129 0.0382953 0.00190139 +-0.00511763 0.0345398 -0.0175639 +-0.0614326 0.0342559 0.0293559 +-0.0526737 0.0678526 -0.0129346 +0.0213104 0.092205 -0.0236008 +0.0197097 0.119321 0.0339587 +-0.0214979 0.120818 0.0311972 +0.0121652 0.0940439 -0.0275601 +0.0264769 0.122884 0.00946172 +-0.0236707 0.0536853 -0.0289139 +-0.0413464 0.0470648 -0.0139804 +0.0254796 0.122858 0.0219249 +-0.0924012 0.125564 0.030262 +-0.0879683 0.133795 0.0435491 +-0.0521211 0.0500618 0.0133132 +-0.0655655 0.115703 0.0473772 +-0.0739163 0.0808829 -0.0136046 +-0.0678507 0.166619 -0.0550103 +-0.0116556 0.127143 -0.00273206 +-0.0318682 0.101497 -0.022474 +-0.0710899 0.143489 -0.012899 +-0.0174739 0.0587291 0.0509898 +-0.0238083 0.125586 0.00234805 +-0.0296624 0.0691842 -0.029462 +0.00123889 0.0998292 0.0485145 +-0.0648099 0.0910089 -0.0186372 +-0.0624633 0.170945 -0.051605 +-0.0911968 0.145718 0.0253129 +-0.0208075 0.0827095 -0.0389174 +-0.0156288 0.184043 -0.0262877 +0.0422094 0.0873179 -0.00779978 +0.00273738 0.0943137 -0.0318997 +-0.082233 0.0925905 0.0320729 +-0.0782161 0.110396 0.044452 +-0.0842181 0.153993 0.0196689 +-0.00949468 0.0532459 0.0520833 +-0.0867806 0.115997 0.0469199 +-0.0547757 0.0826557 -0.0215494 +-0.0382309 0.0365042 0.0436563 +0.021227 0.0727783 0.05004 +-0.00441949 0.0338393 -0.022426 +-0.0712771 0.0648585 0.00216525 +-0.0364976 0.111093 0.0360234 +-0.0669244 0.123843 -0.00898539 +-0.0178669 0.0554748 0.0496143 +0.020489 0.0906324 0.0482147 +-0.00549595 0.0605287 0.0555985 +-0.0289733 0.0536405 -0.0223788 +0.0191474 0.0435971 0.0432171 +0.00434602 0.0346139 0.0410512 +-0.0400219 0.111533 -0.0180322 +0.012127 0.0534588 0.0507501 +0.0284176 0.0415874 -0.00471776 +-0.0270737 0.125279 0.00405866 +-0.0221888 0.0348068 0.0442295 +-0.0447592 0.0797381 -0.0197229 +-0.0304968 0.172715 -0.00561384 +-0.0762362 0.0865455 -0.0135615 +0.0197685 0.0371215 -0.00768223 +0.0379293 0.0417908 0.0270611 +-0.0809612 0.0747382 0.0015261 +0.00168043 0.0346784 0.042239 +0.0257721 0.0915784 0.0461947 +-0.0898405 0.133789 0.0312158 +-0.0355388 0.0441134 -0.0275262 +0.00710192 0.0379595 0.027814 +-0.0620019 0.0401372 0.0237075 +0.0429025 0.100097 0.0151567 +-0.00267325 0.0569172 -0.0326724 +-0.0285904 0.110146 -0.0186081 +-0.0762074 0.0906406 -0.013533 +0.0535161 0.0677623 0.0259787 +-0.00262958 0.0466399 -0.0290845 +-0.0839307 0.125043 -0.00388859 +-0.0340047 0.0386047 -0.0302796 +0.0184751 0.082463 0.0515958 +-0.0574796 0.115365 0.0367006 +-0.0420623 0.154724 -0.00848194 +-0.0860758 0.0924352 0.0274562 +-0.0930739 0.122895 0.0382751 +0.051883 0.0734548 0.0112114 +-0.0811474 0.0769537 0.0251701 +-0.0618709 0.0338217 0.0137712 +0.0195119 0.0370935 -0.00868114 +0.00449835 0.0590783 0.0547231 +-0.0645467 0.148975 -0.0280488 +0.0404587 0.0426892 0.0267677 +-0.0712073 0.146616 -0.0240304 +-0.0512571 0.0488673 0.0206327 +-0.00789661 0.098211 -0.0280331 +-0.0821992 0.0980013 0.0318751 +0.0249936 0.037232 0.0266864 +-0.00349731 0.0456721 0.0469862 +0.0464132 0.0472054 -0.00271728 +-0.0659208 0.0390922 0.037189 +-0.0655814 0.167928 -0.031824 +-0.0726143 0.1704 -0.0286759 +-0.032982 0.0423452 0.0495212 +-0.0442602 0.153622 0.00782588 +0.0320708 0.117667 0.00585111 +0.0181014 0.0354956 -0.0136744 +-0.0756189 0.168382 -0.0269354 +-0.0302725 0.114038 -0.0167089 +-0.06455 0.166996 -0.0328772 +-0.0136948 0.125921 0.0278767 +-0.0594946 0.0973472 0.0432255 +-0.0660053 0.138467 -0.00776776 +-0.0538886 0.161243 -0.000916627 +-0.0521229 0.0491646 0.0356345 +-0.0669695 0.167967 -0.0280306 +-0.0692702 0.0635509 0.00193084 +-0.057893 0.109749 -0.0172343 +0.0162169 0.116863 -0.0139359 +-0.0837452 0.0818387 0.0274964 +-0.0188705 0.104448 -0.0228566 +0.017085 0.0604224 0.0492086 +-0.0636469 0.11387 0.0394431 +0.0060852 0.126695 -0.00651247 +-0.0563559 0.0448266 0.0148606 +-0.0534962 0.0959644 0.0436141 +0.0587007 0.0538335 0.0141792 +0.00148321 0.105804 0.0429258 +-0.0696571 0.0662079 0.0262916 +0.0292497 0.0745452 -0.0220465 +-0.0363535 0.0380033 0.0459253 +-0.0388642 0.104209 -0.02036 +0.0363189 0.106784 -0.00482843 +-0.0506381 0.0473796 0.0176699 +0.0415736 0.0738523 0.0301911 +0.00841968 0.0357631 -0.0122614 +-0.0449132 0.130768 0.0151196 +-0.0348253 0.0822923 -0.0236386 +-0.0756565 0.0672218 0.011813 +-0.0840475 0.0856522 0.0284432 +0.0358352 0.11315 0.0115155 +0.0378536 0.10688 -0.000832307 +0.0327708 0.0862789 0.0422215 +-0.0510409 0.034583 0.0365198 +0.0285939 0.108783 0.0362583 +-0.0291219 0.163733 -0.0155493 +-0.0075062 0.071811 0.0576623 +-0.0285902 0.125327 0.00496117 +0.022493 0.120697 0.0309281 +-0.081164 0.0734408 0.004547 +-0.011709 0.0628424 -0.0363307 +-0.0258651 0.101595 -0.0237434 +0.0205831 0.11206 -0.0147671 +0.0444356 0.0931566 0.0191609 +-0.04739 0.113671 -0.0162364 +-0.0489307 0.0334882 -0.00491951 +-0.0129236 0.118879 -0.0139348 +-0.0161652 0.0382063 0.017415 +-0.00495697 0.0978375 0.052341 +-0.0277397 0.0605536 -0.0284245 +-0.00547292 0.0385489 0.021098 +-0.00115741 0.0949656 -0.0326157 +-0.0444374 0.124419 -0.00954541 +-0.0821611 0.0761834 0.00152312 +-0.0144467 0.0348076 0.0441223 +-0.0715687 0.153984 -0.0439053 +-0.00636015 0.130593 0.00877385 +-0.0127796 0.0382227 0.0144711 +0.0370519 0.110502 0.0205344 +-0.0322265 0.0637977 -0.0184499 +-0.0106706 0.054151 -0.0336931 +-0.0455975 0.169625 -0.00241942 +0.0182033 0.0435661 0.0436183 +-0.0718144 0.147892 -0.0304457 +-0.0577521 0.050802 0.00265023 +-0.0586963 0.0588331 0.00348495 +-0.0866227 0.109058 0.0173532 +-0.0383512 0.122877 -0.00994551 +-0.070675 0.0778663 -0.0147995 +-0.0181879 0.174194 -0.0234207 +-0.0587357 0.153161 0.0315118 +-0.0350971 0.16074 -0.013448 +0.00536912 0.049521 -0.0287338 +-0.0474407 0.134003 0.00841493 +-0.0624554 0.1522 -0.0115838 +-0.0760236 0.150016 -0.00789124 +-0.0261434 0.0379494 0.0119939 +-0.068707 0.0613453 0.00749837 +0.0495547 0.0702574 0.0035522 +0.0608929 0.0651253 0.0121512 +0.0417276 0.0683416 0.0285931 +-0.0322652 0.177059 -0.0129859 +-0.027328 0.0951114 -0.0248637 +-0.0207784 0.0714012 -0.0384405 +-0.0483231 0.128062 -0.00327126 +-0.0424968 0.0449805 -0.0163196 +-0.0550216 0.142767 -0.00162505 +-0.0444981 0.112567 0.0357183 +0.039909 0.107011 0.00616363 +0.0103602 0.0524141 -0.0291489 +-0.0621527 0.0372105 -0.00831557 +0.0052003 0.124064 -0.00964829 +0.0584567 0.0701808 0.018095 +0.0154065 0.0880419 -0.0292971 +-0.0675878 0.0672405 -0.0057657 +0.0141143 0.129082 0.00347211 +-0.0769907 0.154191 -0.00889586 +-0.0351753 0.160922 -0.000113952 +-0.0865124 0.0819745 0.0105022 +-0.0802058 0.0759672 -0.0035211 +0.0412042 0.046738 0.0312341 +0.0531089 0.0539671 0.0274209 +-0.0202736 0.0966137 -0.0264451 +-0.021864 0.108885 -0.0213157 +0.0172909 0.0900542 0.0497289 +0.0151151 0.0645034 0.0516546 +-0.00371721 0.100591 0.046739 +-0.0281684 0.117044 -0.0138686 +0.044615 0.0762444 0.0239446 +0.00250222 0.0504849 0.0522926 +-0.0407291 0.0724971 -0.0177035 +-0.076873 0.114866 -0.00505023 +-0.0509699 0.0334609 -0.0108109 +-0.0307494 0.125973 0.00854668 +-0.0842046 0.10344 -0.000635192 +-0.0637785 0.0335481 0.00468656 +0.0573103 0.0709688 0.0191461 +-0.0548852 0.0344475 0.0323271 +-0.0566985 0.0694351 -0.0145553 +0.0116873 0.128578 0.0254498 +-0.0635208 0.0384034 0.0165311 +-0.0193913 0.161115 -0.00536021 +-0.0517184 0.0708739 -0.0153462 +-0.0355107 0.0789772 0.0422885 +-0.0308674 0.0359912 0.0254031 +-0.0496962 0.137023 0.0203775 +-0.000496498 0.0549075 0.0548747 +0.0203519 0.0506032 0.0432764 +-0.00603714 0.0387093 0.0280658 +-0.0424971 0.165251 0.00449932 +-0.088747 0.148763 0.0102254 +0.0140119 0.072675 0.0536492 +-0.0355033 0.109745 0.0370663 +-0.0495176 0.0451863 0.0426306 +0.0161864 0.128058 0.00281004 +-0.0689044 0.110844 -0.0111483 +-0.0648164 0.0412793 0.0318749 +-0.0594946 0.0959853 0.0440949 +-0.0201946 0.0918367 -0.0355405 +-0.00451061 0.0534011 0.0538125 +-0.0256167 0.0422692 -0.0291044 +-0.0366019 0.0472824 -0.0203909 +-0.0714721 0.152551 -0.0449162 +-0.0686495 0.0395764 0.0103048 +-0.0916814 0.147477 0.020141 +0.0344933 0.0646793 0.0392567 +0.0354037 0.0848596 0.0389463 +0.0335837 0.114911 0.0235455 +-0.00948608 0.0488348 0.0496357 +0.0162564 0.0875946 -0.0288434 +-0.0495004 0.0876335 0.045502 +-0.00788756 0.107371 -0.0226705 +0.0279061 0.0479696 -0.0147397 +-0.0593675 0.145365 0.0352791 +-0.0297371 0.179987 -0.0120259 +-0.00152895 0.1273 -0.00507098 +-0.053021 0.0473885 0.0142865 +-0.031661 0.0351392 -0.0196159 +-0.0428508 0.127424 0.0174253 +0.00853656 0.103079 0.0455737 +-0.0428329 0.0928281 -0.0227901 +-0.0533229 0.121583 -0.0104498 +-0.0281276 0.163902 -0.00573037 +0.00550696 0.0647473 0.0560963 +-0.0786632 0.155487 0.0200952 +0.0373574 0.0841251 -0.0157743 +0.00845531 0.04577 0.0469205 +-0.0816426 0.140732 0.045535 +-0.0198636 0.184564 -0.0147357 +-0.0441 0.149758 -0.00480897 +-0.0394895 0.0478295 0.0398724 +-0.0902912 0.136455 0.0152001 +-0.0912584 0.116106 0.0417079 +-0.078373 0.161039 -0.0249642 +-0.0823003 0.143183 0.00115625 +-0.0366712 0.0621691 -0.0130418 +0.0483193 0.0518215 -0.00445791 +-0.0647832 0.179003 -0.0560548 +-0.066692 0.1555 0.0271809 +0.0251524 0.123931 0.0146708 +-0.0729716 0.175028 -0.0520538 +0.0249807 0.0645674 0.0448324 +0.0189844 0.127654 0.0109555 +-0.023546 0.114036 0.0366055 +-0.0166929 0.178668 -0.0190282 +-0.0838411 0.0884243 0.0295799 +0.0340178 0.106064 0.0317678 +0.0172301 0.0834905 -0.0285819 +-0.0836745 0.0939124 0.0306595 +0.00650612 0.0856084 0.0565927 +-0.00650337 0.0633626 0.0562557 +0.00724714 0.123914 -0.00950504 +-0.04049 0.0677003 0.0417506 +-0.083014 0.0816043 0.0289568 +-0.0791181 0.10724 -0.00560787 +-0.0643983 0.155173 -0.0416037 +-0.0194853 0.0382676 0.0257029 +0.017193 0.0407686 0.0438767 +-0.0578741 0.0997697 -0.0193936 +-0.00470039 0.0340249 -0.0188849 +0.009491 0.0923319 0.053062 +-0.0679779 0.0615132 0.00568001 +-0.00851004 0.0960786 -0.0317903 +0.0222567 0.0734747 -0.02675 +0.0396829 0.102719 -0.00275708 +0.0333394 0.0519958 0.0339463 +-0.0317958 0.166782 -0.0057687 +-0.0851069 0.104842 0.00238218 +0.040355 0.0712163 0.0319238 +-0.0796414 0.0719293 0.00453596 +-0.00871509 0.0670095 -0.035665 +-0.04676 0.0797358 -0.0197068 +0.00759602 0.120603 -0.0139518 +-0.00757253 0.0384534 0.015324 +0.027396 0.0902329 0.0450202 +-0.0837001 0.104608 0.0275279 +-0.0648437 0.159826 -0.0567739 +-0.0182921 0.113707 -0.0184295 +-0.0318101 0.0499111 0.0410759 +0.0042017 0.130577 0.0226921 +-0.0882785 0.102304 0.00940329 +-0.0669196 0.157864 -0.00782765 +-0.0574974 0.104327 0.0414929 +-0.028183 0.0499752 0.0445203 +0.0437475 0.087439 -0.00380588 +0.047365 0.0735855 0.0109418 +-0.0355275 0.04785 0.0396404 +-0.00564979 0.0511569 -0.0315211 +-0.0622081 0.163133 -0.0355907 +-0.0126796 0.0555759 -0.033924 +-0.0434133 0.12436 -0.00948612 +0.0325363 0.0605817 0.0399114 +0.00828387 0.0859903 0.0560092 +-0.0377619 0.0480619 -0.0149351 +-0.0152064 0.0377587 0.0513804 +0.0337034 0.0740969 0.0399489 +0.0386678 0.106943 0.0231645 +-0.0568902 0.10122 -0.0192994 +-0.0629975 0.158364 -0.0415982 +0.0174963 0.116768 0.0361173 +-0.018574 0.174216 -0.0164984 +-0.0916005 0.147489 0.0211447 +0.0351839 0.113522 0.00409669 +-0.0642224 0.175708 -0.0529566 +-0.0646189 0.0691309 -0.0109873 +-0.0744709 0.159641 -0.0299365 +-0.0810037 0.0777776 0.0280061 +-0.0468539 0.0397424 -0.0132276 +-0.0387576 0.152152 0.00343994 +-0.0355301 0.0350253 0.0446914 +-0.0252945 0.179999 -0.0179968 +-0.0594833 0.0440844 0.0256893 +-0.0262483 0.175689 -0.00998917 +-0.0357 0.0344414 0.0311095 +-0.0348452 0.0957896 -0.0233484 +-0.0694619 0.0701676 0.0334316 +-0.0704025 0.156596 -0.000355665 +0.0197946 0.0872171 -0.0264236 +-0.00225576 0.119004 -0.0141489 +0.0447595 0.0819096 0.000199099 +-0.0414725 0.16704 -0.0108149 +0.0383695 0.0533606 -0.00654853 +0.0436976 0.0763605 0.0261605 +-0.059412 0.0342492 0.0297869 +-0.0105538 0.0962042 -0.0319333 +0.0354985 0.0483762 0.03122 +-0.0232213 0.183101 -0.0108227 +-0.0454832 0.0704956 0.0415155 +-0.0818632 0.143391 0.0428465 +-0.00588211 0.0384235 0.0193174 +-0.0715611 0.065876 0.0226562 +-0.0557658 0.0561367 -0.00241411 +-0.007704 0.0613485 -0.0352024 +-0.050582 0.13546 0.000440434 +-0.0239591 0.0958294 0.044594 +-0.0344217 0.156595 0.00275895 +-0.0721769 0.146332 -0.0246714 +-0.00172768 0.0683482 -0.0343533 +0.0465137 0.0736858 0.00606841 +-0.0379081 0.0345108 0.0393807 +-0.0536272 0.0632225 -0.00927695 +0.0216001 0.0346735 0.00635285 +-0.00546011 0.130518 0.00622904 +0.025022 0.0994981 0.0433749 +-0.059626 0.14292 -0.00334389 +-0.0662647 0.160967 -0.0574681 +-0.086688 0.0937529 0.026595 +-0.0292509 0.122699 0.0223824 +-0.020881 0.0609703 0.0467992 +-0.0727056 0.0704556 0.030746 +-0.0670342 0.154632 -0.0510962 +-0.0818617 0.117704 -0.00327392 +-0.00930377 0.0384012 0.0113924 +-0.0294534 0.0382504 0.0532249 +-0.0428028 0.034428 0.0296237 +0.034591 0.113857 0.0224952 +0.0260945 0.0981604 0.0431638 +0.0157288 0.0740195 0.0526622 +0.00528348 0.0654438 -0.0329345 +0.0342272 0.113045 -0.000582475 +0.0177023 0.127344 0.0204737 +-0.00349601 0.0619414 0.0556852 +-0.0633856 0.13531 0.0381918 +-0.0187732 0.0742782 -0.038946 +-0.0714922 0.124606 0.0531293 +-0.0387588 0.0432047 -0.0253505 +-0.0377685 0.112865 -0.0174473 +-0.0811078 0.0831466 0.0326628 +0.0121734 0.0347014 0.0407838 +-0.0423463 0.0344667 0.0367209 +-0.0247884 0.0905387 0.0498003 +-0.0589097 0.111154 -0.0162513 +-0.0119878 0.0389387 -0.0117395 +-0.0746688 0.0730125 -0.00771761 +-0.0636783 0.0344406 0.016873 +-0.0718387 0.063614 0.0140147 +-0.0537353 0.0753205 -0.0183524 +0.0399868 0.0793585 0.0332409 +0.0342696 0.0686799 0.038964 +0.0283038 0.121367 0.00870899 +0.020694 0.101208 -0.0211426 +-0.0607079 0.149875 -0.000940868 +-0.0663226 0.0771733 0.0404118 +-0.0856352 0.151298 0.0280417 +0.00450086 0.0533884 0.0535142 +0.0193556 0.0370965 -0.0106758 +-0.073245 0.152646 -0.0348949 +-0.0311279 0.168264 -0.00654632 +-0.0314769 0.122323 0.024544 +-0.00965298 0.0383614 0.0149817 +0.0322912 0.117174 0.00450048 +-0.0303956 0.0833549 -0.0325649 +-0.0305081 0.109824 0.0377476 +0.060267 0.0581373 0.011162 +-0.0782363 0.119072 0.0512696 +-0.0819743 0.130956 -0.00393996 +0.0125568 0.129953 0.0057397 +-0.0750314 0.165158 -0.038026 +-0.0842614 0.0857549 -0.00354776 +-0.0194949 0.122198 0.0303074 +-0.0885869 0.0914877 0.00746285 +0.0183032 0.0622432 -0.0278633 +-0.0188389 0.0383463 0.00224079 +0.0169223 0.0354899 -0.0154522 +-0.0510859 0.154625 -0.00472421 +-0.04134 0.171235 -0.00891614 +-0.00271064 0.0641639 -0.0348647 +-0.0404957 0.119327 0.0301663 +0.0161104 0.038261 0.0437952 +-0.0788559 0.0706244 0.0187647 +-0.0565382 0.0387829 -0.00997998 +0.00406092 0.0347375 0.0390843 +-0.052431 0.0503969 0.0246465 +-0.0548238 0.136818 -0.00273484 +-0.0168361 0.163394 -0.0165332 +0.0085002 0.0589241 0.0531764 +-0.00349833 0.104479 0.0440938 +0.041165 0.0675922 -0.00677134 +-0.0766837 0.0941158 0.0377884 +-0.0715005 0.108276 0.0374406 +-0.0514917 0.154976 0.0111 +-0.0766573 0.0758638 -0.0078194 +-0.0708734 0.116483 -0.00801313 +-0.0584915 0.0333664 -0.00308936 +-0.0132404 0.0420117 0.0507817 +0.0504568 0.0627892 -0.00292241 +0.0181009 0.0617863 0.0489038 +-0.0686053 0.155434 -0.0518073 +-0.0866142 0.111799 0.023338 +-0.0087012 0.0613261 -0.0351009 +-0.0667075 0.179209 -0.0538653 +0.0133269 0.036855 0.044466 +-0.0308424 0.0930072 -0.0244625 +-0.0526579 0.118327 0.034303 +-0.0802651 0.0940224 0.034298 +-0.0895241 0.094286 0.0154262 +-0.0580951 0.0448084 0.0137644 +0.0187472 0.0369987 -0.01368 +-0.0174935 0.0786826 0.056671 +-0.026682 0.0779832 0.0478067 +0.0449566 0.0931917 0.0141646 +-0.0598355 0.0968573 -0.0194316 +-0.015743 0.0388551 0.0331436 +0.045657 0.07639 0.00319799 +0.00221136 0.0782941 -0.0352071 +-0.0725589 0.0360747 0.00146649 +-0.0641358 0.117113 0.0460384 +-0.0709488 0.0833216 0.0408543 +0.0230126 0.0366914 0.0285839 +0.0164832 0.101772 0.0464774 +-0.0114886 0.10724 0.0431864 +-0.0748949 0.0968349 0.0387401 +-0.0428468 0.0368545 0.044028 +-0.0121243 0.183164 -0.0282842 +-0.0110799 0.0973863 0.0517395 +-0.0283441 0.0346627 0.0430398 +-0.0591236 0.0454581 0.0276809 +0.0359903 0.0834983 0.0380665 +-0.0894731 0.112826 0.0381953 +-0.0633619 0.165109 -0.0324564 +-0.0893245 0.139298 0.0361742 +-0.0113718 0.177173 -0.0236196 +0.0314957 0.0386039 0.0249642 +-0.0153586 0.171251 -0.0171482 +-0.0501632 0.165541 -0.000963216 +-0.0125979 0.0362885 -0.0258846 +-0.0109041 0.121705 -0.010941 +-0.01134 0.181374 -0.0292688 +-0.0636417 0.067527 -0.00924444 +-0.0645561 0.151545 -0.0345673 +0.0234128 0.0685823 0.0460905 +-0.0204536 0.184888 -0.0139868 +-0.0362035 0.16829 0.000195359 +-0.0423655 0.0354607 0.0428683 +0.029434 0.0414849 -0.00426139 +-0.0548859 0.0335879 0.0154264 +0.0301337 0.0958138 -0.0174156 +-0.0231819 0.174173 -0.0207431 +0.0495183 0.0596792 0.0306871 +-0.0615314 0.169388 -0.0555899 +-0.0645149 0.156191 0.0192193 +-0.0808163 0.150056 0.00117383 +-0.0203106 0.127423 0.0152774 +-0.048501 0.0946267 0.0446158 +-0.0621404 0.0458224 0.0356845 +0.014817 0.0713159 0.0530708 +-0.0482359 0.0600875 0.0359237 +0.0583839 0.0607371 0.00317993 +0.0532979 0.0476993 0.0202039 +-0.00334167 0.13115 0.0113211 +-0.0451105 0.146112 0.00345863 +-0.0728436 0.0965116 -0.0147387 +-0.00290701 0.128667 -0.00250924 +-0.0175351 0.0472943 0.0498404 +-0.0710465 0.156278 0.000878407 +0.0130461 0.106823 -0.0191157 +-0.0241467 0.169732 -0.0193183 +0.0184844 0.092024 0.0477707 +-0.0849646 0.0925759 -0.00355765 +-0.0135115 0.0617879 0.0541775 +0.0358003 0.0371828 0.0161878 +-0.0563756 0.0338236 0.0220041 +-0.0344987 0.119335 0.0301753 +-0.0207895 0.0363821 -0.0186131 +0.0366896 0.0394563 0.0234361 +0.0454465 0.0903989 0.00417224 +-0.0686026 0.0339552 0.0087048 +-0.0248008 0.0797877 -0.0377608 +-0.0253831 0.0645504 -0.0324979 +-0.0924079 0.114699 0.0153245 +0.0404169 0.104204 0.0201615 +-0.0864551 0.137921 0.0433346 +0.0453383 0.0861836 0.0191712 +-0.0550359 0.12552 0.0379729 +0.0499773 0.0719552 0.0208312 +-0.0878453 0.10502 0.0133698 +0.0226563 0.0416586 -0.00875234 +0.00847112 0.0503629 0.0509458 +0.0193029 0.12103 0.032512 +-0.0288694 0.102979 -0.023086 +-0.0655006 0.155906 0.0116223 +-0.0865291 0.125714 0.0480303 +-0.0762092 0.103511 0.0356214 +0.027039 0.0433782 0.0352623 +-0.00878391 0.0340179 -0.0196776 +0.01688 0.104029 -0.0201606 +-0.0779922 0.155321 0.011561 +0.012978 0.0975651 -0.0232996 +-0.0570356 0.142438 0.0315884 +0.00678439 0.0392286 0.0320303 +-0.0187316 0.184448 -0.0230478 +-0.05583 0.0898375 -0.0220234 +-0.0624118 0.168239 -0.0611966 +-0.019552 0.0381879 0.0203532 +-0.0619388 0.0647772 0.0309092 +-0.0929984 0.129612 0.0152364 +0.0241882 0.0633761 -0.0240832 +-0.0154901 0.11097 -0.019533 +0.0335254 0.101204 -0.0131717 +0.0440036 0.0411539 0.00525252 +0.0443474 0.05051 -0.00579969 +-0.00564997 0.0526431 -0.0322774 +0.024909 0.124002 0.00889289 +-0.0551719 0.0344352 0.0357625 +-0.00149801 0.0828985 0.0574954 +-0.0649207 0.122383 -0.00889091 +-0.0371067 0.163706 -0.0138205 +-0.013511 0.0673225 0.0538556 +-0.0664425 0.121454 0.0513831 +-0.0749127 0.151363 0.0363064 +-0.0786131 0.166659 -0.0369473 +0.0259941 0.0889184 0.046498 +-0.0508607 0.133588 0.0291236 +-0.0624206 0.150641 -0.0155752 +-0.0345377 0.0353482 -0.0311793 +-0.0926334 0.130971 0.0152338 +0.00420379 0.0852404 -0.0337772 +0.0493319 0.0575419 -0.00502247 +0.0210858 0.0848756 0.0499424 +-0.0209282 0.0711316 0.0521839 +-0.0556334 0.121157 -0.00996616 +-0.0578782 0.0955404 -0.0210377 +-0.0636177 0.149382 -0.0259273 +-0.023437 0.0753613 0.0517266 +-0.0424368 0.033567 0.00359466 +-0.0366861 0.0651313 -0.0144389 +0.00275029 0.0392893 0.0311503 +-0.0858603 0.137915 0.0441653 +0.00249981 0.0938632 0.054785 +-0.0405815 0.125646 -0.00686289 +0.00652265 0.0633208 0.0557678 +-0.0736187 0.0665006 0.01992 +0.0178849 0.106917 -0.0172488 +-0.0404999 0.16823 0.00286674 +-0.0578818 0.101192 -0.0190391 +0.0415111 0.0596706 0.0303495 +0.0445386 0.0917351 0.000179816 +0.0404099 0.0926692 0.0304567 +-0.0715386 0.177351 -0.0469381 +-0.00955325 0.129382 0.0220461 +-0.0304508 0.11875 -0.0116176 +-0.0553453 0.138992 -0.00307013 +0.0373215 0.0444316 0.0300039 +-0.0439866 0.0342955 -0.0250034 +0.0438502 0.081834 0.0262681 +0.0105117 0.057471 0.0526043 +-0.0609073 0.0423237 0.0152297 +-0.0566933 0.0478983 -0.00338525 +-0.0882052 0.0955366 0.00643448 +-0.0697305 0.146842 -0.0262196 +-0.0654573 0.131176 0.0439868 +-0.0332792 0.168261 -0.00439757 +0.0262829 0.0520004 0.03955 +-0.0246803 0.0386712 -0.0158919 +-0.0243119 0.0382419 0.00485642 +-0.0650689 0.0416148 -0.00522845 +-0.0224969 0.105778 0.0423492 +-0.0675666 0.163787 -0.0559757 +-0.0625249 0.0642497 0.029495 +-0.066705 0.170483 -0.0379595 +-0.0387912 0.0855771 -0.0218281 +-0.0362227 0.121033 0.0288309 +-0.0351413 0.166693 -0.0148789 +0.0484731 0.0728694 0.00986875 +-0.0715958 0.035386 0.00909438 +-0.0654475 0.0414866 0.0340095 +-0.0897915 0.135018 0.00821888 +-0.0256856 0.161028 -0.00218154 +-0.0294591 0.0367076 -0.0187628 +-0.0318602 0.0341892 0.0214236 +-0.0741619 0.0781636 -0.0115723 +-0.0759684 0.138187 -0.00615578 +-0.0746432 0.067744 0.0203901 +-0.0481968 0.058714 0.0359259 +-0.0809888 0.100705 0.031995 +0.0223647 0.0795488 0.0499944 +-0.0164996 0.0587643 0.0515064 +-0.0843239 0.0775269 0.0169616 +-0.0474174 0.157905 0.00867917 +0.0256365 0.0450396 -0.0116814 +-0.0560862 0.153109 -0.0014946 +-0.0364777 0.0491722 0.0391199 +-0.0353775 0.172711 -0.013245 +0.0345426 0.0361041 0.0132537 +-0.0476575 0.0606291 -0.0121142 +0.0517359 0.0693876 0.00244776 +-0.0895642 0.139283 0.0271809 +-0.0554895 0.087587 0.0448409 +-0.00460242 0.0419996 -0.0255341 +-0.0747436 0.0846695 0.0389578 +-0.0522959 0.0518057 0.0276471 +0.0344259 0.0713949 0.0392126 +-0.0858246 0.111645 0.00429163 +7.90085e-05 0.131159 0.00541676 +-0.0876151 0.1105 0.015342 +-0.0308705 0.0385373 -0.0301935 +-0.0174841 0.088353 0.056296 +-0.0717036 0.179379 -0.0498901 +-0.0872579 0.113355 0.0275168 +-0.0132522 0.180136 -0.0286131 +0.0147067 0.111012 -0.0176211 +0.0100468 0.0698695 0.0549195 +-0.00549411 0.130838 0.0134037 +-0.0444864 0.070528 0.0418968 +-0.0694946 0.0902043 0.0422251 +-0.0125029 0.0673483 0.0540527 +-0.0889341 0.0928773 0.0104474 +-0.049902 0.0335302 0.00572664 +0.0224871 0.0436168 0.0410219 +-0.0391731 0.163682 -0.0125377 +-0.0389872 0.0336658 0.00601497 +0.0423783 0.0676875 -0.00279832 +-0.0314483 0.177007 -0.0139273 +0.0365023 0.0700019 0.0369139 +-0.0817843 0.113273 -0.0014411 +-0.0155011 0.0786732 0.0567092 +-0.0616004 0.115786 -0.012288 +0.0336937 0.0994802 0.0365924 +-0.0819199 0.0775142 -0.000486403 +-0.0620032 0.154899 0.00420466 +-0.0689571 0.134062 -0.00839151 +0.0341993 0.115326 0.00949444 +-0.0853268 0.127125 0.0496018 +-0.0075399 0.0430305 0.0487452 +-0.000964681 0.0992981 -0.0251507 +-0.0896495 0.146064 0.0111487 +0.0457169 0.0792126 0.021174 +-0.0677903 0.180834 -0.0585489 +-0.0525855 0.0528134 0.0122839 +0.045458 0.0847917 0.019171 +-0.0620511 0.164652 -0.0545872 +-0.0012817 0.0411143 0.047028 +-0.0620444 0.166711 -0.0606187 +0.0416044 0.0774454 -0.0068035 +-0.0180891 0.0568831 0.0497969 +0.0289502 0.0888845 0.043761 +-0.0361509 0.0471597 -0.0213258 +0.0209931 0.0505428 0.042434 +-0.081698 0.0939818 0.0329068 +-0.0701548 0.148741 -0.0366493 +-0.0726057 0.158224 -0.0359121 +0.0452801 0.0777562 0.00119407 +0.0034868 0.107186 0.0422902 +-0.0603898 0.116109 -0.0126519 +-0.0799294 0.154987 0.0226092 +-0.0412543 0.0342017 0.0283816 +-0.073067 0.0692219 0.0282366 +-0.0232836 0.0382816 -0.000419572 +-0.0843726 0.0952582 -0.00357113 +-0.0871856 0.0923586 0.0257303 +0.0415318 0.09261 0.0284783 +-0.0528539 0.1113 -0.0177773 +-0.0653767 0.0770838 0.0407622 +0.0608603 0.0609709 0.0131614 +0.0163938 0.128844 0.0100049 +-0.028759 0.0386585 -0.0166912 +-0.0688752 0.11651 -0.00852528 +-0.00266028 0.0525834 -0.0313625 +0.0395925 0.0979794 0.0293107 +-0.063517 0.0417383 0.0266777 +-0.0206145 0.038142 0.0147556 +-0.0746919 0.0745094 -0.0088781 +-0.0730235 0.16103 -0.0369405 +-0.0511023 0.141628 0.018382 +0.026686 0.0963684 -0.0200186 +0.00049039 0.0952019 0.0544773 +-0.0374215 0.0466159 -0.0218044 +-0.0396639 0.0592228 -0.0116772 +0.0589085 0.0593684 0.0217913 +-0.069935 0.128232 -0.00913858 +-0.0154583 0.128246 0.0199229 +-0.082956 0.0762572 0.0165263 +-0.0698527 0.139727 0.0465118 +-0.0793995 0.0962934 -0.0095136 +0.029447 0.119051 0.00204245 +-0.0406195 0.0505975 -0.0111291 +-0.0337259 0.125903 0.000119567 +-0.00361865 0.109419 -0.0218821 +-0.0324923 0.0845615 0.0419149 +-0.0304819 0.0903593 0.0440392 +-0.0289421 0.0848695 0.0456392 +-0.067993 0.172429 -0.0412978 +-0.0699656 0.167828 -0.0233999 +-0.0633908 0.0664235 0.0326881 +-0.0328103 0.178226 -0.00982944 +-0.0144938 0.0897854 0.0566872 +-0.00301248 0.0391855 -0.0120497 +-0.0467348 0.10982 -0.0182008 +-0.0347751 0.123588 -0.00668109 +-0.081672 0.0966878 0.0327979 +0.0208066 0.08618 0.0495337 +-0.0294922 0.102919 0.0420695 +-0.0514977 0.0917694 0.0441515 +-0.0561584 0.13394 0.0346041 +0.0587961 0.055231 0.00916964 +0.0239769 0.0672243 0.0451455 +-0.0590987 0.135299 0.0356206 +-0.0833215 0.153324 0.00972396 +-0.0775565 0.148654 -0.00488618 +0.0134356 0.129163 0.0217505 +0.00242681 0.0392303 -0.00913048 +-0.00111738 0.0369593 -0.0152505 +-0.0884159 0.102321 0.0103913 +0.0452046 0.0684536 0.0248447 +-0.0107692 0.1278 -0.0014358 +-0.067702 0.169446 -0.0560134 +-0.0645991 0.162478 -0.0199783 +-0.0384905 0.0591295 0.0404813 +-0.0133897 0.0383025 0.0215062 +-0.0335039 0.113859 0.0341437 +0.00725148 0.0739904 -0.0339985 +-0.0197912 0.0347004 -0.0276305 +-0.0364291 0.0383909 -0.00870817 +-0.0382525 0.154358 -0.00883541 +-0.0576615 0.0645392 -0.00788705 +0.0271486 0.0677873 -0.0226945 +-0.0484929 0.0776741 0.0437591 +-0.0538207 0.0913026 -0.0221948 +-0.0414756 0.102877 0.0407886 +-0.0194769 0.0384097 -0.0016118 +0.0409764 0.0725373 0.0310711 +-0.046711 0.0723683 -0.0164352 +-0.0169229 0.0385492 -0.0161043 +0.0274461 0.0888981 0.0450769 +0.0384486 0.0446185 0.0300797 +-0.0498739 0.120141 -0.01301 +-0.0147995 0.0382136 0.0194957 +-0.034222 0.0422724 0.0479221 +-0.00554376 0.0388664 -0.0141367 +-0.00771915 0.0642161 -0.0356843 +0.0380609 0.108343 0.0221716 +-0.0496329 0.05762 -0.010324 +-0.0640324 0.0336604 0.00811729 +0.0288939 0.0349903 0.0075309 +-0.0369254 0.170672 -0.0129456 +0.0567415 0.0605855 0.00115011 +-0.026353 0.0382316 0.0044532 +-0.088166 0.0963498 0.023753 +-0.0332851 0.0368458 -0.0306141 +-0.0138558 0.0387296 -0.0044727 +0.0597512 0.0650182 0.00715554 +-0.0267551 0.0740245 -0.0360482 +0.0214915 0.0369736 0.0352586 +-0.0515738 0.0559395 0.0296214 +0.00622241 0.123988 -0.00957575 +0.0558148 0.0493476 0.0171957 +-0.0766567 0.112144 0.0469767 +0.0408877 0.0928069 -0.00817715 +-0.0862272 0.0886081 0.000477626 +-0.0341682 0.0723955 -0.0204945 +0.0468003 0.0745424 0.0107517 +-0.00983206 0.0896484 -0.0366649 +-0.00782261 0.0985178 0.051315 +-0.070543 0.17193 -0.0350862 +0.0371254 0.0869172 -0.0157926 +-0.059432 0.152725 0.0327387 +-0.0644942 0.149793 0.0375095 +-0.02966 0.0875784 -0.0315907 +0.0234483 0.0350084 0.0101439 +-0.0672661 0.155709 0.00954294 +0.0249549 0.0915796 0.0467751 +-0.0750729 0.0675817 0.0186826 +-0.065557 0.158804 -0.0559152 +-0.0869809 0.112371 0.0426661 +-0.0388924 0.0336117 -0.0270987 +-0.0925871 0.117342 0.0103086 +-0.0285134 0.0559644 0.0364164 +-0.0592485 0.148248 0.0355123 +-0.0386245 0.0472623 -0.0172994 +0.0417415 0.0676611 -0.00475281 +0.017067 0.127696 0.00312982 +-0.00768714 0.116771 -0.0157299 +-0.0210692 0.0667823 0.0496379 +0.0306718 0.0605569 0.0407187 +-0.086202 0.0805924 0.0105044 +0.0248868 0.0727438 0.0465386 +-0.0226479 0.182963 -0.0190305 +-0.064868 0.0953298 -0.0181139 +-0.0212331 0.0553385 0.0459146 +-0.0900228 0.148451 0.0254546 +-0.0659345 0.109414 0.0377967 +-0.0156357 0.0466082 -0.0291798 +-0.0783295 0.108958 0.0384425 +-0.0353519 0.169773 -0.000327923 +-0.0576724 0.155657 0.012957 +0.0299243 0.0902598 0.0434097 +-0.0938789 0.125503 0.0152603 +0.00849738 0.0910108 0.0540495 +-0.0924729 0.117499 0.0403021 +-0.0538856 0.101336 -0.0209374 +0.0230068 0.125355 0.00960117 +-0.0753773 0.0887668 0.039456 +-0.0164714 0.0348128 0.0436847 +-0.0124833 0.108618 0.0427908 +0.00650022 0.0937602 0.0531051 +-0.0254901 0.101602 0.0435889 +-0.0681644 0.132655 0.0471068 +0.0116725 0.130674 0.0125466 +-0.0658455 0.0693268 0.0349111 +0.0131057 0.0346676 0.0247536 +0.0111453 0.0752893 0.0548169 +-0.0414315 0.120058 -0.0129928 +-0.0667828 0.0837809 -0.018353 +-0.0558768 0.105489 -0.0184971 +-0.0646849 0.0705888 -0.0125799 +0.00250861 0.0634123 0.0567384 +-0.0102337 0.0987343 -0.0266102 +-0.0475686 0.0376232 -0.0123457 +0.0326729 0.0388984 0.0249367 +-0.0754158 0.14997 -0.0218646 +0.0149498 0.0475024 0.0442108 +-0.0897923 0.144692 0.013139 +-0.065193 0.0597221 0.0116014 +-0.0777759 0.113375 -0.00398806 +-0.0457101 0.131722 0.0089192 +-0.0575663 0.0481384 0.0346641 +-0.0838122 0.128533 0.0508937 +-0.0104939 0.0933018 -0.0349679 +0.0252085 0.0464911 -0.0166174 +-0.0789879 0.13894 -0.00474105 +-0.0475728 0.0656919 0.0379498 +0.0110822 0.113195 -0.0179885 +-0.0649225 0.170267 -0.0430968 +-0.00871405 0.112847 -0.0195489 +0.0452857 0.0889846 0.0161633 +-0.0171038 0.128182 0.00771491 +-0.0114919 0.0911558 0.0564108 +-0.0672347 0.158081 -0.05503 +-0.0375789 0.0335576 -0.0249215 +-0.028354 0.0521667 -0.0233844 +-0.0687469 0.179151 -0.0517127 +-0.0635972 0.164728 -0.0295802 +-0.00849416 0.0661021 0.0557034 +0.0018938 0.131459 0.00752669 +-0.0104875 0.10724 0.0431922 +0.0420847 0.0764929 0.0291356 +-0.0164676 0.125926 0.0254562 +-0.0666931 0.162075 -0.0149837 +0.000392133 0.0405199 -0.0247969 +-0.062597 0.0740287 0.040345 +-0.038486 0.115285 0.0333239 +-0.0134767 0.0545379 0.0508338 +-0.0379773 0.128134 0.0117903 +0.0282176 0.0746072 -0.022898 +-0.00949856 0.0898059 0.0569552 +-0.0633588 0.166271 -0.0375898 +-0.088608 0.0874693 0.0094764 +-0.00658802 0.126776 -0.00645935 +0.00550371 0.0533623 0.0533002 +0.0568364 0.0723477 0.016027 +-0.0746813 0.077485 -0.0103851 +0.0599778 0.0622697 0.0191849 +-0.0834343 0.143353 0.0415913 +0.0461466 0.0773319 0.0190905 +-0.0643928 0.0366139 0.0414145 +0.017105 0.0913787 0.0494605 +0.0113838 0.0463423 -0.025328 +0.00150906 0.0925101 0.0553138 +-0.0905552 0.131061 0.0372264 +0.0271939 0.0479684 -0.0167032 +0.0118641 0.130407 0.00833975 +-0.0534963 0.0413918 0.0463882 +-0.00348783 0.0548509 0.0542207 +-0.0241218 0.165279 -0.0170232 +0.0526044 0.0736805 0.0129696 +0.00493694 0.0358587 0.023833 +-0.0308996 0.0862326 -0.0295626 +-0.0749566 0.152744 -0.0158977 +0.022407 0.0700249 0.0481925 +-0.0644326 0.152123 0.0354487 +-0.083145 0.0762813 0.00952219 +-0.0066641 0.130277 0.00578337 +-0.0503124 0.0487527 0.0166746 +-0.0857975 0.0926505 0.000473688 +0.0319954 0.0554568 -0.0137989 +-0.0325248 0.0371997 0.032926 +-0.0378236 0.0914714 -0.0236656 +0.0107752 0.0603237 0.0523688 +-0.0709378 0.0995366 0.0403447 +0.00229927 0.0641027 -0.0339638 +0.0301658 0.0510827 -0.0137422 +-0.0152122 0.0387061 -0.0065833 +0.0328168 0.0373031 0.0209449 +-0.0564976 0.0959787 0.0438593 +-0.0530296 0.137293 -0.00118635 +-0.0114929 0.0745162 0.0566704 +0.0339687 0.0768049 0.0403387 +0.0229251 0.0476731 0.039919 +0.0153286 0.0594649 -0.0285327 +-0.0650165 0.0356472 0.0166692 +-0.0872319 0.104968 0.0093836 +0.0317565 0.0752189 -0.019756 +0.0174897 0.107108 0.0415537 +0.00650555 0.0716952 0.056225 +0.0214733 0.0808843 0.0504673 +-0.0157973 0.0382489 0.019257 +-0.073889 0.119392 -0.00790358 +-0.0588895 0.0969269 -0.0201624 +-0.0614701 0.166956 -0.0604533 +-0.0411287 0.160673 -0.0112161 +-0.0558134 0.0883826 -0.0218608 +-0.0206962 0.0385843 -0.00942784 +0.0401892 0.0759203 -0.00879733 +0.0191194 0.0349494 -0.00374623 +-0.0414976 0.113906 0.0346806 +-0.00581815 0.0854694 -0.0375201 +-0.0859756 0.0805547 0.00750576 +-0.0833395 0.103378 -0.00262342 +-0.0446335 0.126046 -0.00723965 +0.0260088 0.0910229 -0.0223512 +0.034944 0.10998 0.0278542 +-0.00248857 0.0703789 0.0573235 +-0.0102702 0.0385128 0.00564525 +-0.0283572 0.0578046 -0.0244014 +-0.0210295 0.0958616 0.0473023 +-0.0141375 0.0347096 0.0460356 +-0.0244241 0.178665 -0.0108375 +0.00749812 0.109597 0.0408218 +-0.0356643 0.0606925 -0.0124069 +-0.0638002 0.166551 -0.0354938 +-0.0862312 0.0940245 0.00140199 +-0.0365789 0.0337187 0.00826156 +0.0240933 0.0685753 0.045325 +-0.0891661 0.132396 0.0419315 +-0.0177346 0.065722 -0.0374816 +-0.0224613 0.12203 0.0284859 +-0.0509119 0.055753 0.0316394 +-0.0340805 0.0680941 -0.0175876 +-0.0166639 0.0364717 -0.017882 +0.0347021 0.0768104 0.0396564 +0.0213412 0.0565052 -0.0267347 +-0.0707159 0.179287 -0.0569572 +-0.0748092 0.0790936 0.0363823 +-0.0577944 0.0460393 0.0120187 +-0.0302932 0.123607 -0.00301843 +0.00749105 0.050377 0.0513506 +-0.0641553 0.162388 -0.0586672 +-0.0197076 0.059653 0.0484949 +0.0376477 0.110588 0.00928033 +-0.0151896 0.0391404 0.0514631 +0.020848 0.0400652 -0.0117024 +-0.0208303 0.119929 -0.0109428 +0.0157129 0.124796 -0.00448994 +-0.00658665 0.0388228 -0.0143041 +0.0254417 0.121647 0.000551492 +0.0535789 0.0658041 0.000119664 +0.0473148 0.0518659 -0.00495567 +0.0299175 0.0524736 -0.0157475 +-0.0183959 0.112492 -0.0191613 +-0.0893828 0.0916068 0.0204288 +-0.0614858 0.175719 -0.0606762 +-0.0901396 0.13244 0.0372222 +-0.0238257 0.0881589 -0.0366228 +-0.0218791 0.0383442 -0.00388387 +0.00124143 0.0390154 -0.00356473 +-0.0669805 0.1589 -0.00929727 +0.0483233 0.0547304 -0.00526262 +-0.0444857 0.0661533 0.0401374 +-0.0514919 0.076238 0.0430598 +-0.0301912 0.0664057 -0.0274649 +-0.0408343 0.0942887 -0.0229156 +-0.00749956 0.121159 -0.0124082 +-0.061476 0.158429 -0.028587 +-0.0675029 0.109729 0.0377486 +-0.0697083 0.1638 -0.0499695 +-0.062151 0.152195 -0.0205783 +0.0342924 0.0619556 0.0389482 \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/cube_ran.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/cube_ran.pts new file mode 100644 index 000000000000..ae0320923a7d --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/cube_ran.pts @@ -0,0 +1,582 @@ +581 +-9496.000158 -6621.999660 73324.000108 +1941.000008 -502.999956 53448.000262 +-13993.000076 -9472.000458 73547.999893 +-3165.000198 2805.999696 53841.000158 +3941.000109 -826.999564 53350.999780 +-13992.999698 -6391.999696 73548.000325 +-4629.000334 -2729.999756 72919.999638 +-14544.000229 7643.999701 62169.999969 +-3539.000009 -7617.000066 72743.000159 +-3569.999951 1963.000330 53954.000331 +4099.000115 540.000082 55720.000195 +3946.000208 3611.000347 54343.000242 +3942.000336 -1955.000290 53845.000430 +24.000106 -8480.000056 72560.000446 +-2817.999819 -7080.000021 72739.999999 +274.999768 2681.999578 53612.999729 +-5673.000363 -8522.000312 72919.999924 +-3569.999681 5328.999917 53954.000391 +7057.000447 22.999921 72019.999778 +-7114.999994 -4259.000412 73100.000243 +3129.999877 -1020.000207 53119.999650 +-14575.999938 2064.000292 60412.000409 +-8087.999603 -2692.999873 73164.999998 +-9496.000263 -8099.000270 73323.999696 +-14575.999757 4785.999619 60412.000416 +1767.000453 -2710.000440 72380.000399 +4723.999558 2984.999684 72199.999829 +4173.000154 -1942.000364 57518.000224 +-14185.000047 -8155.999786 69664.999947 +8462.999751 -2789.999723 72019.999998 +-14475.999680 -6322.000368 63961.000010 +-14185.000218 -6669.000381 69665.000452 +-14411.999521 8769.999611 63528.000202 +-3929.999793 121.999623 53660.000393 +-3538.999885 -6227.999801 72743.000078 +5664.000221 8483.999673 72199.999788 +4160.000223 3746.999664 57257.999712 +16.999585 1061.999516 53479.999584 +3441.000482 4789.999724 53120.000035 +3941.000301 861.000216 53350.999558 +3941.000166 186.000103 53350.999891 +-5672.999756 5721.000193 72920.000053 +-14411.999799 1051.999879 63528.000013 +3441.000192 5308.999633 53119.999836 +-13970.999556 -6778.999631 71592.999827 +-5673.000352 1448.000308 72919.999896 +1941.000287 3661.000398 53448.000221 +4159.999588 2681.999997 57257.999788 +2098.999573 1058.000232 53299.999983 +-3569.999774 280.000127 53953.999842 +-3538.999679 -9006.000017 72743.000111 +-3570.000143 -1402.000081 53954.000006 +-7115.000060 5734.999820 73099.999872 +-1026.999875 -1026.999558 53479.999537 +7056.999811 -4195.999750 72020.000402 +-3570.000168 3085.000137 53954.000020 +-13970.999844 -9803.999811 71592.999532 +17.000252 6285.000424 53479.999576 +-14322.999690 -2587.000320 65092.999918 +-5387.999792 -1969.999910 72920.000067 +-1426.999888 2743.999772 53744.000433 +-3538.999950 -2059.999970 72742.999563 +-14412.000000 6664.999905 63527.999948 +-3570.000271 3646.000059 53954.000087 +-3929.999828 -1973.999852 53659.999952 +-4237.999601 -7080.000344 72740.000252 +-14373.000194 -7866.999965 65785.999683 +3946.000001 2584.000490 54343.000220 +3941.000101 2886.999557 53350.999752 +4160.000230 551.000414 57257.999512 +4264.000084 1686.000457 60564.000497 +-9495.999646 -3667.999852 73323.999965 +4288.000261 1950.999734 60834.000001 +1432.000381 -1938.999865 53464.000475 +-5126.999748 3887.999847 72980.999916 +4287.999632 278.999662 60833.999729 +-2072.000101 17.000308 53479.999547 +-14411.999918 5261.999514 63527.999544 +-14185.000455 -5180.999602 69665.000041 +4263.999685 -536.999855 60563.999513 +4724.000258 1575.000409 72200.000149 +4159.999987 4812.999838 57258.000035 +-3930.000140 4837.999779 53659.999939 +-8543.000324 -8542.999590 73099.999989 +-3570.000177 840.999915 53954.000138 +3941.000105 1874.000098 53351.000382 +3946.000349 4637.999658 54342.999822 +8462.999539 8462.999818 72019.999892 +5664.000082 4253.999844 72200.000354 +-5387.999671 2302.000049 72920.000121 +-5388.000189 166.000459 72919.999521 +5664.000053 -4206.999676 72200.000476 +2473.999900 -2709.999879 72380.000265 +16.999506 -1027.000446 53479.999576 +4263.999639 -1647.999637 60564.000406 +3441.000140 1676.999539 53120.000327 +-9496.000107 -5145.000342 73323.999932 +-13992.999533 -4852.000259 73548.000110 +4287.999970 6968.000328 60833.999686 +275.000199 3746.999653 53612.999629 +-14412.000182 -350.999721 63528.000472 +-13992.999868 -4338.000196 73547.999622 +-8543.000347 -4259.000087 73100.000032 +16.999876 5240.000063 53479.999960 +-14372.999770 -9301.999508 65786.000118 +-5127.000314 8129.000114 72980.999503 +-1394.000093 -4227.999771 72560.000486 +4098.999711 3673.000482 55719.999928 +3946.000083 -1523.000092 54342.999694 +4724.000061 -1246.000449 72200.000281 +-13720.999502 -5353.000086 73556.000360 +4723.999887 7215.000403 72200.000242 +-14184.999932 -2754.999701 67936.999780 +1437.000194 -5630.999670 72380.000099 +-5444.999665 -9188.000372 72930.000378 +-4238.000442 -8500.999822 72740.000263 +-8542.999594 4307.000192 73099.999910 +-5388.000269 6574.999714 72920.000493 +-1394.000324 -2811.000366 72559.999570 +16.999584 16.999963 53479.999782 +-14327.000037 -2687.000254 67063.000303 +-1027.000347 6284.999698 53480.000414 +2850.999763 -5631.000213 72380.000333 +-14543.999669 -8982.999787 62170.000241 +-1426.999789 563.000156 53743.999616 +-5127.000214 -2474.000449 72980.999585 +-8542.999689 5734.999797 73100.000259 +-13993.000354 -8958.999738 73548.000223 +1057.999632 3139.999725 53299.999575 +7056.999573 1429.999852 72020.000196 +-13412.999816 -2989.999795 73597.999993 +-14411.999793 5963.000061 63527.999980 +-14544.000399 3487.000172 62169.999836 +4723.999840 869.999743 72200.000174 +1940.999817 5742.999710 53447.999666 +-14411.999874 7365.999941 63528.000371 +3441.000223 5827.000153 53120.000059 +1941.000349 1579.000153 53447.999990 +4723.999767 5099.999678 72199.999767 +-5444.999773 -6354.000185 72929.999902 +-11526.999785 -8253.000306 73393.000090 +4287.999859 5853.000374 60833.999882 +-3538.999732 -3449.999625 72742.999793 +-13993.000364 -7932.000020 73548.000260 +-14373.000228 -3563.000378 65785.999768 +4253.999995 -7026.999870 72200.000060 +-3164.999721 -539.000085 53841.000259 +3940.999621 -1165.000187 53351.000040 +4251.999655 -1611.999954 58826.000287 +3130.000441 1055.000205 53119.999800 +-7114.999827 -7115.000264 73100.000269 +-5388.000004 5151.000233 72919.999833 +-14543.999690 -4825.999812 62169.999558 +-3929.999555 6411.000130 53659.999733 +1940.999639 4702.000362 53447.999846 +-14411.999716 2454.999607 63527.999612 +3440.999501 -915.999922 53119.999778 +4288.000012 -1950.999731 60833.999534 +275.000261 1616.000437 53612.999949 +-1427.000136 -527.000171 53743.999568 +4251.999503 -525.000281 58825.999809 +-260.999615 -1966.999943 53479.999718 +7057.000208 -5603.000018 72020.000259 +-5127.000479 6715.000320 72980.999619 +-1427.000327 3834.000257 53744.000353 +3440.999911 6346.000423 53120.000030 +2850.999822 -7045.000455 72380.000243 +5664.000435 -1386.999766 72200.000059 +-14412.000002 3156.999581 63527.999801 +-8543.000189 -7115.000435 73099.999877 +3445.999629 2566.999931 53380.000265 +3440.999872 -1434.999562 53119.999546 +-3165.000457 5035.000031 53841.000213 +-3929.999582 2218.000457 53659.999557 +3445.999965 -1512.999532 53379.999504 +-1958.000338 -1957.000101 53738.999698 +275.000452 -1581.000215 53613.000308 +-14088.000048 -2934.999842 70989.999715 +-14373.000177 -4997.999695 65786.000128 +8462.999777 5649.999794 72019.999678 +1058.000275 6263.000038 53300.000358 +-7102.000019 -2619.000327 73101.999718 +-8542.999951 -5687.000307 73099.999616 +-3930.000250 2741.999930 53660.000203 +1300.999742 -1960.999792 53299.999640 +4723.999966 4394.999535 72200.000035 +4098.999994 1583.999527 55720.000241 +-13992.999829 -8445.999614 73548.000422 +4098.999861 -1548.999788 55719.999858 +-3930.000368 -1449.999960 53660.000492 +4287.999872 3066.000210 60833.999876 +4287.999522 2508.000016 60833.999841 +-5445.000250 -3519.000073 72930.000344 +-14232.999547 -8002.000380 67645.000212 +-5126.999777 -1767.000240 72980.999857 +3129.999543 5204.999843 53119.999708 +3946.000005 530.999826 54343.000175 +-13721.000221 -3816.000216 73556.000357 +8463.000349 22.999637 72020.000002 +4724.000003 3690.000471 72200.000108 +1058.000380 4180.999601 53300.000207 +274.999810 5879.000134 53613.000459 +354.000245 -2715.999978 72560.000238 +1437.000165 -4217.000476 72380.000479 +3940.999844 4913.000151 53350.999582 +-2895.000382 -1945.000376 53846.999541 +2099.000389 2099.000230 53300.000474 +8463.000426 1430.000487 72020.000078 +4252.000374 561.000004 58826.000032 +3940.999558 523.000164 53351.000416 +1437.000253 -2804.000496 72380.000323 +-14543.999762 -3440.999829 62169.999916 +-14543.999982 -6211.999551 62170.000041 +3441.000291 2714.999685 53119.999987 +5663.999985 -2797.000025 72200.000024 +-14411.999984 -1051.999942 63528.000370 +3440.999562 4271.000407 53120.000029 +-3539.000186 2107.000409 72743.000388 +1057.999822 -1024.000255 53300.000171 +3945.999666 5664.999689 54342.999562 +-5126.999539 5301.000010 72981.000462 +-14575.999627 -3379.999597 60411.999811 +3180.999744 -2710.000374 72380.000052 +-1026.999719 4195.999827 53480.000234 +-3165.000176 575.999615 53840.999507 +3941.000445 -151.999807 53351.000391 +-14576.000174 -657.999845 60411.999636 +-2349.999962 -1966.999590 53479.999902 +-14411.999854 3858.999681 63528.000283 +-10090.000319 -2795.000040 73260.999652 +3941.000477 5924.999710 53350.999731 +4085.000468 -1954.000357 55213.000428 +4253.999936 -8436.999819 72199.999776 +-1394.000360 -8479.999946 72559.999636 +-3569.999726 -841.000285 53953.999993 +-9083.999507 -2718.999761 73217.000072 +3441.000399 640.000398 53120.000050 +4287.999748 -1394.000023 60833.999874 +5664.000340 7073.999686 72199.999963 +-5387.999666 4438.999817 72919.999562 +7056.999636 -7010.000061 72019.999662 +1057.999689 5222.000173 53299.999663 +-5673.000248 4296.000142 72920.000031 +-1027.000260 5239.999713 53480.000273 +-7114.999766 -8543.000300 73100.000022 +274.999590 551.000141 53612.999775 +-3929.999711 -926.000493 53660.000132 +4288.000365 -836.000403 60833.999756 +3446.000332 3586.999913 53379.999531 +3887.999686 -2709.999801 72379.999876 +-3539.000418 -670.999562 72742.999614 +4251.999963 1648.000235 58826.000350 +7056.999875 -1382.999580 72019.999867 +-11526.999831 -9757.999777 73393.000349 +3130.000328 4167.000247 53120.000320 +8463.000402 2837.000196 72020.000275 +3446.000436 -493.000175 53380.000405 +-1427.000357 6013.999828 53744.000254 +-13993.000352 -5365.000211 73547.999983 +3130.000064 6241.999698 53120.000243 +-1393.999680 -7061.999503 72559.999762 +-3929.999947 3266.000354 53660.000396 +-5388.000052 8711.000308 72919.999522 +-5387.999641 5862.999935 72920.000126 +-5673.000220 24.000330 72919.999842 +4160.000111 -514.999580 57257.999620 +3445.999928 527.000347 53379.999914 +-8542.999580 7162.000367 73099.999863 +2947.999993 -1968.000009 53405.999963 +-3929.999592 -1974.000291 53659.999860 +-1305.999625 -1967.000077 53480.000398 +3129.999665 3130.000305 53119.999882 +-4237.999635 -4237.999904 72739.999541 +7057.000491 4243.000297 72019.999582 +-14576.000246 -6102.000206 60411.999747 +4264.000083 2796.999726 60563.999829 +4724.000254 5805.000459 72199.999985 +-5672.999808 -7097.000478 72920.000322 +-7114.999930 1452.000036 73099.999694 +-3929.999839 4313.999708 53660.000336 +-13971.000086 -5267.000118 71592.999574 +-3164.999892 1691.000266 53840.999559 +3941.000485 1198.999988 53351.000119 +-2071.999680 1062.000046 53480.000119 +-3930.000107 5362.999664 53659.999659 +-13972.000434 -2989.999797 73073.000355 +-5387.999734 1589.999640 72920.000470 +-14575.999747 6147.000157 60412.000152 +-3539.000484 4885.000479 72743.000415 +-8543.000350 23.999745 73100.000201 +4159.999933 5878.999799 57258.000196 +-5444.999733 -7771.000335 72929.999842 +-14372.999532 -6432.999688 65786.000443 +3941.000032 5250.000483 53350.999566 +-2817.999801 -4237.999840 72739.999681 +2099.000054 4180.999939 53300.000374 +3440.999903 121.000021 53120.000493 +-14575.999797 -4741.000478 60411.999775 +3940.999685 1535.999624 53351.000429 +-14576.000473 702.999598 60412.000428 +-14475.999775 -4911.999679 63960.999993 +-14131.000326 -2857.999672 69963.000289 +2099.000221 -1024.000206 53299.999555 +-3539.000177 -4839.000490 72742.999973 +-5672.999696 -4248.999669 72919.999901 +1057.999780 16.999883 53300.000257 +5663.999977 5663.999867 72199.999515 +5663.999992 -8436.999738 72200.000314 +-14412.000335 8068.000149 63527.999665 +-5388.000218 -545.999702 72919.999648 +4264.000448 3907.999781 60564.000285 +3129.999620 2092.000354 53120.000415 +1062.999967 -2715.999634 72560.000024 +3940.999708 -1840.000490 53351.000006 +23.999785 -4227.999646 72560.000090 +-3165.000129 -1654.000323 53840.999660 +-5127.000159 2474.000343 72981.000044 +3941.000234 2210.999659 53351.000276 +1436.999565 -7045.000204 72380.000395 +-1426.999662 1654.000050 53744.000497 +4159.999762 -1580.999657 57257.999765 +2099.000277 6263.000009 53300.000166 +-14233.000173 -9461.999637 67644.999640 +4724.000132 6510.000452 72199.999686 +-5388.000295 3014.999741 72919.999528 +4107.000341 -1973.999932 55973.999842 +-1027.000486 1061.999561 53480.000336 +4263.999763 5018.999546 60563.999509 +-3126.999968 6305.999575 53660.000329 +-1062.999814 -2715.999805 72559.999701 +3441.000092 -398.000054 53119.999576 +23.999882 -5645.000302 72559.999942 +-5126.999834 4594.000338 72980.999829 +4252.000254 4907.999952 58825.999554 +-3569.999712 4767.999673 53953.999940 +-14476.000032 -9143.000078 63960.999819 +4071.000131 -1967.999892 54460.000432 +3440.999875 3752.000283 53120.000467 +-14576.000485 3424.999842 60411.999944 +-5160.999508 -2520.999928 72949.000110 +4287.999692 3622.999957 60834.000077 +-5127.000118 1767.000066 72980.999700 +5663.999655 24.000344 72200.000194 +-14576.000480 7508.000120 60411.999689 +-2881.999956 -1974.000116 53659.999591 +3129.999776 16.999790 53119.999905 +-13993.000072 -5879.000105 73548.000170 +4723.999855 -2656.000037 72200.000312 +3940.999633 4574.999653 53351.000095 +17.000159 3150.999751 53479.999993 +-13721.000066 -6890.000008 73555.999864 +-5673.000136 8569.000239 72919.999812 +4287.999834 1393.999656 60834.000047 +-5127.000002 3181.000499 72980.999577 +1437.000111 -8457.999664 72379.999810 +-1027.000182 3151.000481 53480.000213 +8462.999880 -5602.999786 72020.000397 +5663.999998 -7027.000337 72200.000179 +-2071.999836 5240.000427 53480.000403 +3445.999729 4607.000036 53380.000383 +-1394.000136 -5645.000011 72559.999949 +-3127.000033 2113.999786 53660.000272 +3941.000324 2548.999788 53350.999985 +3940.999570 -1502.000342 53351.000013 +-3126.999914 -1030.999894 53659.999552 +-4238.000253 -2817.999880 72739.999988 +3440.999843 -1953.999504 53120.000421 +259.999737 -1960.999636 53300.000138 +-245.000117 -1948.999943 53618.999915 +-11526.999811 -5243.000037 73392.999756 +4724.000234 165.000038 72199.999547 +-3126.999977 3161.999991 53659.999978 +-3569.999564 4207.000094 53953.999501 +275.000170 -514.999842 53613.000034 +-11526.999613 -6747.999928 73392.999616 +-7390.999730 -5035.000249 73077.999705 +275.000340 4813.000352 53612.999844 +-2071.999948 3150.999602 53480.000403 +4251.999765 2735.000064 58826.000103 +-7115.000351 -5686.999885 73100.000358 +4098.999827 2628.999611 55719.999560 +8463.000124 -7010.000397 72020.000009 +-14232.999615 -6543.000442 67645.000485 +-3930.000232 5887.000299 53659.999634 +-14544.000461 2101.000409 62170.000359 +3372.000265 -1954.000261 53119.999806 +-14412.000115 1754.000439 63527.999500 +-14438.999828 -2520.999738 64242.999578 +-14329.999599 -2661.000068 66073.000238 +1941.000120 -1544.000357 53448.000031 +-4238.000332 -5659.000491 72740.000442 +4098.999594 -505.000192 55720.000025 +-2818.000128 -5658.999652 72739.999655 +4288.000306 -278.999978 60833.999586 +-1026.999893 17.000290 53480.000077 +-7114.999937 2878.999603 73099.999625 +4251.999706 3821.999721 58825.999856 +-14544.000411 -7596.999761 62170.000298 +-3539.000189 6273.999627 72742.999519 +-8542.999929 8590.000255 73100.000232 +-14544.000350 715.999575 62170.000076 +-9495.999848 -9576.000383 73323.999907 +-14576.000232 -7462.000020 60411.999731 +-14184.999642 -9643.999972 69665.000056 +-13970.999811 -8291.000315 71593.000038 +-5126.999814 1060.000113 72981.000052 +-7115.000366 7162.000434 73099.999958 +-3165.000448 6150.000036 53840.999507 +8462.999808 4242.999904 72020.000254 +7057.000202 -2790.000123 72020.000020 +-2071.999832 -1026.999844 53479.999642 +-7114.999518 -1404.000177 73100.000300 +3941.000476 3223.999580 53351.000151 +-3569.999782 1402.000069 53953.999777 +-3570.000289 7012.000244 53953.999930 +-5388.000194 877.999982 72919.999818 +-5126.999702 6008.000102 72980.999919 +4263.999700 6130.999796 60564.000158 +-8543.000290 1452.000226 73100.000426 +2850.999705 -4217.000056 72379.999818 +7056.999509 7057.000433 72019.999792 +-13992.999692 -3312.000439 73548.000061 +2850.999879 -8457.999587 72380.000259 +-3538.999600 718.000352 72742.999931 +-3930.000315 646.000457 53659.999635 +4264.000193 573.999697 60564.000002 +2099.000093 5221.999649 53300.000412 +-2071.999917 6284.999527 53479.999583 +4723.999862 7920.000427 72199.999887 +4330.999705 -1963.000266 59887.000081 +2851.000238 -2803.999644 72380.000218 +3440.999720 2195.999826 53119.999530 +-14543.999739 -2055.000043 62170.000137 +-14544.000178 -669.999739 62170.000308 +-14411.999915 351.000242 63527.999545 +3940.999876 5587.999982 53351.000452 +-11526.999792 -3737.999544 73392.999629 +3940.999584 4236.999929 53351.000136 +-7115.000083 -2831.999613 73099.999909 +-14232.999742 -5082.999812 67645.000324 +-3570.000011 -1963.000243 53954.000457 +-14575.999963 -8822.999905 60411.999771 +-3196.999729 -2722.999629 72739.999728 +4270.999791 -1943.999513 59089.999553 +-3930.000132 -402.000411 53659.999785 +4287.999518 -1951.000148 60834.000344 +1057.999742 2098.999992 53299.999970 +24.000007 -2810.999989 72560.000497 +-3570.000037 -280.000196 53954.000365 +7056.999709 -8415.999536 72020.000349 +7057.000090 5650.000225 72020.000014 +4099.000497 4718.000121 55719.999993 +-7115.000395 24.000272 73099.999724 +-14476.000166 -3502.000326 63961.000485 +-3569.999717 6450.999920 53954.000143 +-1163.000334 -1973.999751 53745.000092 +4723.999824 -541.000100 72200.000243 +3940.999990 3899.999923 53350.999622 +-3127.000218 5257.999652 53659.999673 +8463.000217 -1382.999504 72019.999695 +-14232.999844 -3624.000203 67645.000238 +-7390.999511 -3588.999711 73077.999992 +-5127.000472 352.999759 72981.000130 +2099.000363 16.999945 53300.000261 +-7390.999682 -6480.000469 73077.999642 +-5387.999952 7999.000376 72920.000277 +-3569.999553 2524.000332 53954.000210 +3445.999802 5627.000372 53380.000121 +-8543.000137 2878.999786 73100.000062 +-11225.000154 -2878.000184 73429.000219 +-5444.999752 -4937.000206 72929.999910 +-3539.000116 3495.999641 72743.000028 +4724.000434 -1950.999984 72200.000236 +-5387.999758 7287.000091 72920.000451 +3694.000162 -1947.999707 53364.999539 +-14412.000272 -1753.999800 63528.000480 +4724.000342 8625.000362 72199.999560 +2341.999734 -1961.000092 53299.999848 +-2071.999756 4196.000324 53480.000336 +-8543.000296 -2832.000371 73099.999810 +-5127.000024 8834.999681 72980.999971 +-13992.999602 -3825.000472 73548.000110 +3446.000174 1546.999928 53380.000489 +-3127.000366 4209.999619 53659.999561 +-5387.999685 -1258.000068 72920.000033 +-13720.999529 -8426.000197 73555.999797 +4135.999975 -1958.000343 56742.000312 +1058.000030 1057.999685 53299.999642 +2194.000288 -1954.000142 53438.999837 +1821.999693 -1961.000245 53300.000177 +-2486.000272 -2723.000311 72740.000113 +4251.999519 5994.999969 58825.999706 +-782.999723 -1966.999702 53480.000385 +-14184.999503 -3694.000155 69664.999741 +-7391.000162 -7925.000424 73077.999760 +3941.000365 3562.000286 53350.999697 +-5673.000072 -2824.999976 72920.000076 +-3929.999836 3789.999783 53660.000108 +4288.000033 5295.999782 60834.000285 +8463.000290 -4195.999621 72020.000158 +-1026.999905 2106.000122 53480.000172 +-14544.000315 6258.000031 62169.999860 +2098.999845 3140.000130 53300.000384 +17.000326 2105.999614 53480.000329 +-2817.999707 -2817.999500 72740.000297 +-5127.000216 7421.999889 72980.999545 +-14035.000213 -2961.999816 72026.999857 +3941.000206 -490.000295 53351.000305 +-3127.000000 1065.999857 53660.000041 +-14412.000070 4560.000349 63527.999884 +-1427.000275 -1616.999797 53744.000069 +-6126.000265 -2593.999720 73030.000099 +4099.000391 5762.000184 55719.999589 +3440.999902 1159.000232 53119.999985 +23.999963 -7062.000133 72559.999953 +-3164.999618 3921.000274 53840.999514 +3940.999690 6263.000241 53351.000160 +5663.999668 1434.000202 72199.999998 +3946.000045 -496.000294 54342.999676 +-3538.999923 7662.999718 72742.999936 +3946.000069 1557.999781 54343.000397 +-13992.999519 -7419.000292 73548.000211 +-14576.000246 -2018.999804 60411.999775 +4724.000039 2279.999748 72200.000311 +4253.999732 -5616.999621 72199.999908 +1940.999753 2619.999683 53447.999667 +3441.000116 3234.000032 53120.000379 +-7114.999901 4307.000119 73100.000483 +4288.000399 4738.000285 60834.000007 +4253.999724 -2797.000058 72199.999720 +5664.000222 2843.999541 72200.000437 +7056.999584 8463.000456 72020.000228 +-3930.000418 1694.000154 53659.999991 +-353.999670 -2715.999787 72559.999549 +-14162.999975 -2781.999699 68944.999901 +4287.999827 4180.999517 60834.000197 +-2071.999586 2105.999678 53480.000453 +-7390.999953 -9370.000271 73077.999510 +8462.999606 7057.000057 72020.000254 +7056.999555 2837.000361 72019.999548 +-7114.999806 8589.999936 73100.000030 +-5126.999903 -1060.000339 72980.999664 +8463.000265 -8415.999563 72019.999761 +-14475.999815 -7732.000263 63960.999905 +-14411.999736 -2454.999933 63528.000161 +4253.999680 -4207.000000 72200.000403 +-5341.000241 -2729.999555 72920.000190 +2853.000367 -1953.999662 53119.999629 +-3406.000346 -1973.999690 53659.999516 +-1775.999547 -2723.000080 72740.000246 +4217.999913 -1960.999660 58299.999623 +-12252.999887 -2905.000019 73451.999641 +-8542.999786 -1404.000473 73099.999728 +-3126.999630 16.999618 53660.000475 +4159.999910 1615.999982 57258.000198 +-2818.000192 -8501.000061 72739.999578 +-5673.000319 -5673.000048 72919.999599 +-5126.999657 -352.999916 72981.000008 +-14543.999526 4873.000287 62170.000355 +5664.000113 -5617.000339 72200.000484 +-13992.999970 -6905.000388 73548.000167 +-3906.999574 -2723.000211 72740.000342 +-5672.999570 -1399.999715 72920.000026 +-3569.999982 5890.000467 53954.000331 +4288.000173 6409.999525 60833.999858 +-5387.999815 -2682.000374 72920.000431 +-13971.000415 -3755.000354 71592.999978 +-3930.000128 1170.000156 53659.999938 +-1828.000158 -1966.999726 53479.999657 +17.000335 4196.000427 53479.999613 +-1427.000066 4924.000037 53743.999863 +-13721.000451 -9963.000322 73555.999557 +-5388.000021 3727.000164 72919.999832 +1941.000051 538.000495 53448.000163 +4287.999864 836.000460 60833.999839 +780.999670 -1960.999553 53299.999658 +-5673.000397 7144.999809 72919.999807 +-5673.000146 2871.999537 72920.000249 +533.000383 -1965.000046 53607.999748 +-13992.999662 -9985.999679 73548.000146 +4582.999714 -2702.999761 72199.999726 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/fin b/Alpha_shapes_3/demo/Alpha_shapes_3/data/fin new file mode 100644 index 000000000000..7b20bc03c7fc --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/fin @@ -0,0 +1,8 @@ +7 +5.51274721097227705 8.87625776353026552 1.95944807904169238 +9.0973375091665627 3.5350701520269201 4.7238755547204434 +0.911806739546155987 6.95856700036594145 2.36699662526417143 +5.36336900378107373 1.05840486239320186 1.22179856797203001 +0.289239615689291796 9.24621240074391082 2.17110435171762095 +1.39772879354093327 3.51084799856703622 9.44541630320511771 +7.31227573940480369 2.67306741439382023 0.511378392640958745 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/fout b/Alpha_shapes_3/demo/Alpha_shapes_3/data/fout new file mode 100644 index 000000000000..016012bd00cc --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/fout @@ -0,0 +1,17 @@ +5.51275 8.87626 1.95945 +0.911807 6.95857 2.367 +5.36337 1.0584 1.2218 +7.31228 2.67307 0.511378 +9.09734 3.53507 4.72388 +1.39773 3.51085 9.44542 +0.28924 9.24621 2.1711 +4 5 0 +5 6 0 +1 0 6 +3 2 4 +4 0 3 +2 3 1 +0 1 3 +2 5 4 +5 2 1 +6 5 1 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/head_ran.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/head_ran.pts new file mode 100644 index 000000000000..c9cacabc3ff2 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/head_ran.pts @@ -0,0 +1,857 @@ +856 +304.000000 483.000000 110.000433 +173.000000 315.000000 150.000135 +389.000000 259.000000 110.000009 +197.000000 341.000000 130.000097 +390.000000 329.000000 69.999907 +87.000000 189.000000 119.999588 +427.000000 391.000000 19.999914 +219.000000 283.000000 159.999587 +228.000000 410.000000 149.999687 +176.000000 356.000000 150.000143 +36.000000 243.000000 40.000174 +409.000000 409.000000 9.999581 +345.000000 395.000000 130.000241 +378.000000 336.000000 79.999859 +405.000000 442.000000 29.999878 +437.000000 388.000000 20.000099 +385.000000 345.000000 90.000418 +223.000000 509.000000 10.000330 +253.000000 62.000000 10.000304 +339.000000 498.000000 40.000232 +418.000000 406.000000 20.000279 +203.000000 86.000000 99.999776 +96.000000 159.000000 120.000081 +390.000000 320.000000 69.999762 +344.000000 362.000000 139.999772 +157.000000 57.000000 -0.000304 +130.000000 480.000000 40.000064 +190.000000 294.000000 160.000245 +407.000000 398.000000 30.000234 +396.000000 436.000000 40.000360 +387.000000 332.000000 49.999562 +192.000000 317.000000 149.999693 +90.000000 134.000000 99.999822 +92.000000 252.000000 130.000028 +164.000000 251.000000 159.999649 +161.000000 448.000000 120.000467 +380.000000 453.000000 50.000039 +76.000000 423.000000 39.999921 +410.000000 176.000000 40.000464 +346.000000 238.000000 140.000280 +278.000000 464.000000 130.000458 +318.000000 464.000000 110.000374 +421.000000 273.000000 39.999857 +320.000000 85.000000 9.999990 +230.000000 60.000000 40.000167 +403.000000 443.000000 9.999941 +377.000000 278.000000 129.999965 +211.000000 75.000000 79.999614 +396.000000 451.000000 19.999695 +379.000000 323.000000 100.000100 +138.000000 162.000000 149.999904 +373.000000 359.000000 119.999709 +298.000000 154.000000 140.000005 +377.000000 481.000000 19.999977 +405.000000 280.000000 99.999667 +412.000000 329.000000 20.000329 +392.000000 320.000000 80.000343 +155.000000 323.000000 159.999924 +171.000000 323.000000 149.999700 +70.000000 369.000000 60.000396 +270.000000 512.000000 100.000031 +62.000000 359.000000 10.000338 +401.000000 300.000000 49.999758 +366.000000 156.000000 99.999742 +125.000000 289.000000 150.000344 +306.000000 417.000000 140.000297 +189.000000 303.000000 160.000009 +215.000000 339.000000 140.000396 +346.000000 349.000000 139.999537 +73.000000 365.000000 69.999577 +127.000000 77.000000 70.000150 +108.000000 80.000000 9.999701 +416.000000 396.000000 29.999763 +355.000000 471.000000 70.000335 +383.000000 332.000000 79.999789 +279.000000 495.000000 109.999962 +182.000000 392.000000 139.999695 +418.000000 194.000000 20.000169 +399.000000 396.000000 49.999602 +323.000000 406.000000 139.999632 +401.000000 296.000000 70.000372 +116.000000 94.000000 90.000421 +408.000000 302.000000 39.999870 +398.000000 444.000000 39.999970 +391.000000 316.000000 59.999679 +34.000000 233.000000 29.999582 +406.000000 412.000000 20.000116 +75.000000 278.000000 109.999973 +36.000000 251.000000 19.999539 +387.000000 142.000000 -0.000290 +415.000000 231.000000 60.000112 +114.000000 84.000000 59.999969 +176.000000 309.000000 159.999733 +104.000000 469.000000 79.999782 +134.000000 80.000000 80.000475 +365.000000 453.000000 60.000166 +76.000000 325.000000 100.000301 +372.000000 346.000000 120.000425 +384.000000 160.000000 79.999710 +352.000000 318.000000 129.999934 +385.000000 317.000000 40.000493 +381.000000 319.000000 110.000497 +103.000000 84.000000 19.999857 +400.000000 406.000000 40.000279 +354.000000 491.000000 60.000459 +419.000000 282.000000 10.000487 +203.000000 507.000000 60.000487 +235.000000 510.000000 89.999674 +444.000000 387.000000 29.999811 +391.000000 313.000000 99.999893 +398.000000 450.000000 9.999883 +131.000000 300.000000 150.000225 +83.000000 110.000000 40.000016 +187.000000 503.000000 -0.000434 +155.000000 323.000000 150.000140 +212.000000 54.000000 19.999945 +97.000000 291.000000 129.999725 +148.000000 308.000000 149.999883 +343.000000 211.000000 139.999546 +198.000000 328.000000 120.000389 +431.000000 405.000000 19.999725 +400.000000 300.000000 89.999605 +400.000000 184.000000 80.000122 +362.000000 340.000000 129.999568 +347.000000 272.000000 140.000053 +104.000000 251.000000 140.000464 +71.000000 131.000000 59.999648 +110.000000 94.000000 79.999923 +374.000000 479.000000 40.000239 +372.000000 328.000000 99.999759 +374.000000 456.000000 49.999600 +217.000000 466.000000 129.999695 +207.000000 340.000000 119.999813 +394.000000 298.000000 109.999600 +398.000000 158.000000 20.000463 +376.000000 422.000000 69.999535 +419.000000 204.000000 39.999848 +397.000000 425.000000 39.999772 +425.000000 394.000000 -0.000166 +395.000000 469.000000 0.000180 +203.000000 347.000000 130.000090 +175.000000 356.000000 159.999756 +337.000000 482.000000 79.999700 +403.000000 290.000000 100.000395 +384.000000 441.000000 59.999825 +103.000000 268.000000 139.999921 +88.000000 158.000000 110.000417 +420.000000 264.000000 49.999543 +394.000000 309.000000 59.999763 +403.000000 385.000000 49.999907 +398.000000 274.000000 109.999683 +398.000000 396.000000 30.000477 +188.000000 376.000000 149.999695 +251.000000 467.000000 129.999727 +410.000000 173.000000 -0.000375 +419.000000 388.000000 30.000459 +53.000000 178.000000 70.000064 +386.000000 456.000000 29.999720 +230.000000 432.000000 139.999657 +209.000000 102.000000 119.999952 +399.000000 261.000000 100.000481 +34.000000 263.000000 9.999982 +387.000000 185.000000 100.000227 +166.000000 200.000000 160.000091 +397.000000 459.000000 10.000459 +112.000000 355.000000 119.999623 +151.000000 416.000000 119.999934 +387.000000 396.000000 70.000126 +414.000000 205.000000 59.999887 +84.000000 431.000000 49.999623 +54.000000 333.000000 40.000151 +226.000000 489.000000 120.000098 +210.000000 331.000000 139.999959 +62.000000 355.000000 59.999599 +128.000000 201.000000 149.999744 +399.000000 310.000000 40.000499 +285.000000 137.000000 129.999978 +271.000000 90.000000 79.999948 +392.000000 406.000000 39.999814 +126.000000 71.000000 19.999775 +395.000000 316.000000 69.999631 +196.000000 340.000000 140.000123 +172.000000 101.000000 119.999703 +386.000000 386.000000 20.000299 +412.000000 373.000000 20.000375 +368.000000 337.000000 119.999973 +192.000000 56.000000 29.999926 +326.000000 425.000000 129.999868 +328.000000 124.000000 100.000456 +419.000000 252.000000 60.000317 +101.000000 187.000000 130.000292 +282.000000 510.000000 40.000476 +48.000000 169.000000 19.999612 +368.000000 263.000000 130.000181 +106.000000 86.000000 40.000336 +137.000000 485.000000 60.000020 +337.000000 498.000000 10.000284 +179.000000 390.000000 149.999695 +57.000000 165.000000 60.000363 +370.000000 319.000000 119.999686 +159.000000 305.000000 159.999920 +380.000000 410.000000 69.999540 +66.000000 161.000000 80.000411 +211.000000 325.000000 120.000116 +207.000000 322.000000 110.000247 +136.000000 139.000000 139.999844 +425.000000 364.000000 0.000175 +46.000000 181.000000 50.000130 +407.000000 374.000000 39.999586 +410.000000 170.000000 9.999842 +416.000000 288.000000 40.000290 +301.000000 198.000000 149.999552 +368.000000 431.000000 79.999967 +95.000000 115.000000 89.999527 +190.000000 504.000000 40.000392 +431.000000 381.000000 39.999951 +389.000000 385.000000 60.000331 +111.000000 236.000000 139.999941 +305.000000 86.000000 49.999887 +174.000000 344.000000 150.000400 +406.000000 290.000000 79.999632 +411.000000 176.000000 30.000029 +403.000000 401.000000 0.000395 +186.000000 371.000000 149.999597 +396.000000 378.000000 19.999972 +407.000000 393.000000 50.000248 +314.000000 84.000000 30.000111 +82.000000 442.000000 40.000237 +190.000000 63.000000 59.999546 +418.000000 280.000000 50.000063 +107.000000 109.000000 99.999534 +429.000000 377.000000 20.000148 +241.000000 399.000000 149.999519 +231.000000 480.000000 119.999633 +293.000000 494.000000 110.000320 +386.000000 395.000000 50.000398 +189.000000 304.000000 150.000129 +359.000000 426.000000 100.000239 +404.000000 445.000000 20.000042 +390.000000 362.000000 60.000269 +255.000000 393.000000 149.999647 +266.000000 511.000000 60.000270 +445.000000 377.000000 19.999922 +238.000000 512.000000 80.000183 +263.000000 74.000000 60.000051 +345.000000 327.000000 130.000341 +297.000000 510.000000 69.999558 +204.000000 336.000000 110.000464 +93.000000 273.000000 130.000439 +156.000000 143.000000 149.999849 +214.000000 414.000000 150.000013 +208.000000 475.000000 130.000315 +174.000000 350.000000 149.999545 +406.000000 179.000000 59.999608 +397.000000 418.000000 39.999645 +197.000000 340.000000 109.999887 +305.000000 95.000000 70.000078 +223.000000 451.000000 130.000063 +67.000000 291.000000 99.999993 +374.000000 461.000000 59.999831 +395.000000 317.000000 89.999780 +140.000000 482.000000 100.000201 +364.000000 361.000000 129.999692 +396.000000 462.000000 0.000002 +403.000000 421.000000 10.000436 +373.000000 174.000000 109.999736 +393.000000 458.000000 19.999949 +379.000000 456.000000 39.999971 +396.000000 240.000000 100.000184 +71.000000 118.000000 20.000391 +364.000000 427.000000 90.000438 +390.000000 440.000000 49.999887 +44.000000 183.000000 0.000039 +75.000000 348.000000 90.000315 +405.000000 315.000000 0.000238 +320.000000 96.000000 60.000082 +85.000000 447.000000 50.000024 +391.000000 313.000000 40.000474 +303.000000 506.000000 29.999976 +346.000000 147.000000 110.000432 +203.000000 323.000000 120.000169 +185.000000 502.000000 90.000110 +135.000000 94.000000 100.000385 +385.000000 326.000000 99.999934 +388.000000 474.000000 39.999867 +43.000000 221.000000 70.000067 +415.000000 267.000000 79.999572 +401.000000 300.000000 80.000252 +54.000000 190.000000 79.999547 +388.000000 414.000000 49.999501 +400.000000 435.000000 29.999929 +179.000000 325.000000 149.999681 +390.000000 475.000000 20.000480 +210.000000 329.000000 110.000432 +124.000000 264.000000 149.999656 +380.000000 357.000000 110.000447 +35.000000 221.000000 0.000130 +422.000000 256.000000 -0.000478 +297.000000 502.000000 100.000074 +387.000000 404.000000 40.000484 +121.000000 142.000000 129.999588 +363.000000 488.000000 49.999644 +81.000000 441.000000 -0.000224 +310.000000 125.000000 110.000381 +202.000000 330.000000 129.999580 +154.000000 79.000000 90.000488 +349.000000 281.000000 139.999939 +266.000000 452.000000 139.999876 +419.000000 273.000000 60.000253 +60.000000 291.000000 90.000373 +53.000000 160.000000 30.000462 +401.000000 327.000000 29.999868 +388.000000 333.000000 90.000054 +409.000000 393.000000 39.999876 +329.000000 501.000000 19.999774 +66.000000 203.000000 99.999570 +84.000000 101.000000 0.000252 +378.000000 372.000000 110.000496 +177.000000 378.000000 160.000055 +378.000000 208.000000 120.000080 +39.000000 260.000000 49.999598 +113.000000 439.000000 90.000322 +386.000000 404.000000 50.000352 +88.000000 335.000000 110.000457 +408.000000 239.000000 80.000309 +385.000000 339.000000 79.999563 +65.000000 359.000000 -0.000186 +388.000000 339.000000 70.000118 +194.000000 479.000000 130.000054 +205.000000 359.000000 150.000249 +308.000000 366.000000 149.999771 +411.000000 305.000000 9.999644 +336.000000 473.000000 90.000141 +107.000000 380.000000 100.000196 +413.000000 210.000000 69.999762 +417.000000 191.000000 9.999593 +422.000000 243.000000 30.000485 +290.000000 76.000000 39.999602 +387.000000 321.000000 99.999700 +107.000000 439.000000 79.999777 +240.000000 254.000000 160.000437 +422.000000 265.000000 9.999794 +49.000000 243.000000 79.999624 +396.000000 392.000000 29.999964 +69.000000 389.000000 9.999977 +393.000000 327.000000 79.999595 +383.000000 337.000000 90.000313 +124.000000 155.000000 139.999884 +390.000000 328.000000 89.999610 +388.000000 310.000000 109.999974 +401.000000 437.000000 20.000420 +181.000000 305.000000 149.999817 +122.000000 121.000000 119.999998 +81.000000 441.000000 20.000065 +107.000000 303.000000 129.999801 +51.000000 295.000000 60.000192 +97.000000 458.000000 70.000150 +112.000000 293.000000 140.000309 +392.000000 147.000000 29.999844 +395.000000 458.000000 -0.000345 +396.000000 471.000000 20.000089 +205.000000 445.000000 139.999722 +392.000000 425.000000 49.999927 +407.000000 291.000000 60.000455 +364.000000 329.000000 109.999573 +334.000000 449.000000 110.000287 +377.000000 296.000000 129.999513 +202.000000 396.000000 149.999929 +68.000000 386.000000 19.999990 +376.000000 332.000000 89.999690 +442.000000 399.000000 20.000326 +388.000000 295.000000 120.000295 +387.000000 341.000000 50.000408 +112.000000 81.000000 49.999621 +410.000000 386.000000 50.000226 +59.000000 311.000000 80.000359 +330.000000 499.000000 80.000308 +199.000000 332.000000 110.000351 +202.000000 332.000000 140.000116 +38.000000 196.000000 30.000366 +206.000000 407.000000 150.000108 +385.000000 458.000000 39.999801 +178.000000 370.000000 150.000203 +74.000000 419.000000 10.000074 +417.000000 405.000000 29.999702 +47.000000 272.000000 69.999870 +164.000000 373.000000 160.000203 +408.000000 409.000000 29.999548 +376.000000 335.000000 99.999615 +399.000000 396.000000 19.999683 +334.000000 491.000000 79.999633 +379.000000 478.000000 -0.000167 +303.000000 471.000000 120.000457 +291.000000 478.000000 120.000436 +400.000000 433.000000 0.000031 +90.000000 450.000000 59.999865 +319.000000 291.000000 150.000192 +33.000000 256.000000 20.000497 +445.000000 393.000000 10.000151 +341.000000 497.000000 69.999978 +390.000000 240.000000 110.000036 +276.000000 69.000000 19.999504 +173.000000 57.000000 40.000059 +209.000000 359.000000 139.999774 +387.000000 392.000000 20.000481 +318.000000 503.000000 89.999523 +378.000000 478.000000 39.999991 +84.000000 285.000000 119.999551 +337.000000 335.000000 140.000134 +117.000000 372.000000 109.999629 +359.000000 458.000000 79.999820 +146.000000 67.000000 60.000076 +377.000000 406.000000 90.000477 +381.000000 316.000000 109.999684 +48.000000 183.000000 60.000220 +302.000000 452.000000 130.000413 +138.000000 100.000000 109.999758 +268.000000 511.000000 20.000319 +210.000000 324.000000 109.999505 +331.000000 180.000000 139.999527 +354.000000 422.000000 109.999787 +287.000000 509.000000 80.000157 +217.000000 437.000000 139.999915 +348.000000 294.000000 139.999826 +145.000000 109.000000 119.999748 +86.000000 413.000000 69.999800 +407.000000 365.000000 39.999844 +393.000000 458.000000 29.999694 +180.000000 409.000000 139.999597 +79.000000 429.000000 0.000369 +385.000000 468.000000 50.000300 +167.000000 68.000000 70.000425 +424.000000 392.000000 40.000496 +334.000000 328.000000 139.999843 +88.000000 115.000000 79.999614 +185.000000 284.000000 160.000326 +178.000000 122.000000 140.000324 +96.000000 434.000000 69.999906 +138.000000 390.000000 119.999927 +379.000000 449.000000 60.000479 +383.000000 360.000000 100.000229 +394.000000 447.000000 40.000372 +429.000000 374.000000 0.000267 +250.000000 447.000000 140.000291 +374.000000 395.000000 99.999977 +421.000000 400.000000 29.999804 +173.000000 498.000000 100.000223 +112.000000 80.000000 29.999608 +397.000000 307.000000 69.999990 +94.000000 95.000000 30.000227 +365.000000 214.000000 130.000457 +69.000000 124.000000 -0.000140 +214.000000 342.000000 129.999922 +378.000000 324.000000 50.000407 +170.000000 92.000000 110.000496 +396.000000 206.000000 99.999936 +385.000000 359.000000 89.999911 +262.000000 483.000000 120.000212 +73.000000 418.000000 0.000094 +263.000000 117.000000 120.000412 +392.000000 469.000000 40.000013 +203.000000 340.000000 120.000411 +206.000000 141.000000 149.999614 +65.000000 250.000000 100.000372 +408.000000 263.000000 89.999711 +356.000000 326.000000 120.000249 +390.000000 318.000000 90.000241 +357.000000 369.000000 129.999641 +200.000000 332.000000 149.999692 +356.000000 314.000000 130.000478 +206.000000 335.000000 150.000105 +388.000000 349.000000 79.999724 +422.000000 361.000000 29.999572 +336.000000 384.000000 139.999898 +371.000000 477.000000 49.999938 +383.000000 332.000000 70.000333 +358.000000 117.000000 49.999606 +228.000000 511.000000 109.999685 +391.000000 449.000000 50.000425 +210.000000 331.000000 130.000294 +414.000000 332.000000 10.000205 +79.000000 429.000000 20.000389 +425.000000 348.000000 19.999522 +188.000000 500.000000 120.000132 +414.000000 395.000000 19.999694 +333.000000 502.000000 0.000474 +163.000000 74.000000 80.000256 +414.000000 352.000000 0.000273 +396.000000 471.000000 29.999511 +161.000000 113.000000 130.000121 +38.000000 271.000000 0.000064 +406.000000 390.000000 29.999509 +255.000000 136.000000 140.000180 +143.000000 362.000000 130.000256 +205.000000 348.000000 149.999703 +370.000000 484.000000 39.999679 +361.000000 394.000000 119.999961 +236.000000 511.000000 69.999764 +161.000000 344.000000 150.000324 +271.000000 99.000000 100.000087 +347.000000 129.000000 90.000352 +383.000000 473.000000 20.000348 +418.000000 261.000000 69.999636 +342.000000 477.000000 80.000249 +240.000000 212.000000 159.999945 +93.000000 387.000000 89.999525 +214.000000 335.000000 130.000266 +434.000000 365.000000 19.999711 +377.000000 248.000000 120.000476 +84.000000 227.000000 120.000431 +391.000000 462.000000 39.999559 +390.000000 473.000000 -0.000072 +442.000000 378.000000 29.999932 +357.000000 126.000000 69.999812 +64.000000 143.000000 49.999661 +339.000000 310.000000 139.999787 +376.000000 446.000000 69.999556 +421.000000 272.000000 29.999579 +383.000000 398.000000 79.999947 +377.000000 339.000000 90.000050 +357.000000 461.000000 70.000494 +381.000000 346.000000 99.999989 +198.000000 335.000000 129.999550 +383.000000 383.000000 89.999876 +392.000000 395.000000 50.000489 +385.000000 318.000000 50.000068 +196.000000 506.000000 109.999506 +183.000000 138.000000 150.000295 +434.000000 396.000000 0.000059 +38.000000 219.000000 50.000182 +390.000000 284.000000 120.000395 +365.000000 347.000000 129.999830 +74.000000 118.000000 30.000426 +207.000000 122.000000 140.000380 +113.000000 116.000000 109.999784 +416.000000 292.000000 30.000362 +414.000000 279.000000 80.000030 +441.000000 386.000000 0.000095 +144.000000 337.000000 139.999525 +386.000000 148.000000 60.000351 +93.000000 409.000000 79.999575 +170.000000 409.000000 129.999719 +104.000000 348.000000 119.999514 +377.000000 416.000000 80.000066 +392.000000 410.000000 40.000224 +322.000000 258.000000 150.000354 +387.000000 142.000000 39.999842 +378.000000 327.000000 109.999670 +403.000000 268.000000 99.999822 +219.000000 183.000000 160.000476 +196.000000 361.000000 150.000187 +436.000000 397.000000 30.000102 +187.000000 334.000000 150.000416 +361.000000 476.000000 60.000302 +265.000000 462.000000 129.999811 +357.000000 334.000000 129.999518 +397.000000 317.000000 80.000196 +201.000000 110.000000 129.999544 +170.000000 292.000000 159.999874 +376.000000 342.000000 110.000096 +288.000000 382.000000 150.000470 +385.000000 328.000000 40.000208 +380.000000 263.000000 120.000184 +279.000000 96.000000 90.000454 +298.000000 508.000000 10.000017 +391.000000 274.000000 119.999504 +80.000000 121.000000 70.000114 +414.000000 240.000000 70.000303 +72.000000 385.000000 50.000489 +312.000000 443.000000 129.999958 +381.000000 307.000000 119.999893 +147.000000 60.000000 29.999771 +233.000000 512.000000 49.999755 +129.000000 479.000000 69.999985 +383.000000 474.000000 -0.000300 +119.000000 474.000000 50.000440 +162.000000 87.000000 99.999822 +388.000000 320.000000 60.000475 +208.000000 92.000000 110.000454 +402.000000 441.000000 -0.000434 +247.000000 61.000000 30.000254 +60.000000 177.000000 89.999508 +375.000000 338.000000 100.000112 +388.000000 475.000000 30.000200 +169.000000 361.000000 150.000305 +73.000000 138.000000 69.999613 +151.000000 130.000000 140.000243 +292.000000 428.000000 139.999652 +43.000000 288.000000 40.000209 +411.000000 196.000000 69.999886 +191.000000 440.000000 139.999870 +188.000000 393.000000 150.000062 +379.000000 331.000000 100.000426 +421.000000 211.000000 10.000373 +151.000000 489.000000 110.000018 +214.000000 501.000000 120.000350 +186.000000 475.000000 130.000205 +119.000000 171.000000 139.999644 +166.000000 495.000000 49.999638 +94.000000 139.000000 110.000263 +361.000000 113.000000 30.000475 +287.000000 462.000000 129.999600 +119.000000 472.000000 0.000324 +336.000000 499.000000 59.999701 +397.000000 309.000000 79.999503 +396.000000 468.000000 9.999539 +418.000000 219.000000 50.000021 +188.000000 53.000000 9.999892 +317.000000 484.000000 99.999771 +87.000000 99.000000 9.999789 +440.000000 400.000000 10.000026 +77.000000 414.000000 50.000086 +59.000000 334.000000 69.999692 +389.000000 473.000000 10.000131 +93.000000 364.000000 99.999586 +191.000000 380.000000 140.000324 +397.000000 463.000000 20.000440 +314.000000 83.000000 -0.000144 +404.000000 252.000000 89.999526 +192.000000 55.000000 0.000057 +37.000000 211.000000 39.999811 +408.000000 337.000000 0.000463 +386.000000 321.000000 50.000145 +57.000000 307.000000 69.999726 +399.000000 434.000000 9.999597 +440.000000 394.000000 0.000167 +194.000000 347.000000 139.999819 +187.000000 359.000000 160.000408 +82.000000 430.000000 30.000265 +292.000000 510.000000 90.000293 +179.000000 291.000000 160.000422 +346.000000 484.000000 69.999785 +433.000000 395.000000 19.999927 +238.000000 463.000000 129.999988 +431.000000 404.000000 10.000165 +125.000000 346.000000 130.000258 +364.000000 483.000000 50.000249 +152.000000 60.000000 10.000471 +412.000000 390.000000 50.000296 +167.000000 492.000000 119.999873 +162.000000 360.000000 140.000440 +76.000000 394.000000 60.000355 +404.000000 389.000000 0.000108 +131.000000 68.000000 10.000393 +79.000000 430.000000 9.999539 +414.000000 282.000000 59.999976 +171.000000 344.000000 160.000494 +140.000000 307.000000 150.000051 +371.000000 276.000000 130.000475 +410.000000 320.000000 9.999772 +399.000000 300.000000 60.000152 +410.000000 275.000000 90.000213 +178.000000 501.000000 69.999844 +396.000000 463.000000 29.999717 +270.000000 511.000000 0.000287 +105.000000 365.000000 110.000111 +36.000000 263.000000 29.999728 +42.000000 269.000000 60.000204 +152.000000 382.000000 129.999554 +139.000000 124.000000 129.999830 +178.000000 499.000000 9.999512 +380.000000 329.000000 60.000364 +195.000000 398.000000 149.999704 +105.000000 138.000000 120.000289 +130.000000 480.000000 19.999848 +241.000000 504.000000 110.000227 +249.000000 61.000000 0.000215 +149.000000 63.000000 50.000394 +435.000000 381.000000 19.999612 +370.000000 120.000000 19.999582 +395.000000 363.000000 50.000173 +390.000000 455.000000 0.000083 +345.000000 465.000000 89.999529 +321.000000 451.000000 120.000069 +232.000000 72.000000 69.999566 +78.000000 441.000000 10.000433 +411.000000 254.000000 79.999644 +349.000000 104.000000 9.999972 +40.000000 224.000000 59.999868 +401.000000 417.000000 30.000379 +55.000000 328.000000 60.000186 +136.000000 66.000000 39.999869 +387.000000 459.000000 19.999694 +238.000000 120.000000 129.999648 +380.000000 232.000000 119.999852 +387.000000 336.000000 59.999680 +386.000000 316.000000 100.000192 +202.000000 323.000000 110.000169 +421.000000 243.000000 39.999865 +378.000000 477.000000 19.999946 +403.000000 407.000000 0.000441 +117.000000 473.000000 10.000461 +388.000000 454.000000 40.000397 +36.000000 209.000000 9.999788 +344.000000 158.000000 120.000283 +167.000000 319.000000 160.000206 +80.000000 432.000000 39.999684 +124.000000 318.000000 139.999804 +379.000000 285.000000 130.000148 +420.000000 205.000000 29.999982 +364.000000 457.000000 60.000173 +314.000000 319.000000 150.000372 +271.000000 387.000000 149.999929 +405.000000 324.000000 -0.000038 +393.000000 305.000000 49.999780 +380.000000 472.000000 50.000100 +392.000000 455.000000 10.000360 +430.000000 366.000000 30.000433 +88.000000 433.000000 60.000203 +400.000000 426.000000 20.000350 +198.000000 506.000000 19.999553 +369.000000 321.000000 109.999993 +389.000000 376.000000 70.000300 +447.000000 391.000000 19.999590 +78.000000 255.000000 120.000420 +201.000000 310.000000 150.000380 +385.000000 330.000000 99.999671 +313.000000 506.000000 50.000090 +398.000000 286.000000 110.000315 +366.000000 325.000000 119.999806 +431.000000 389.000000 39.999680 +71.000000 122.000000 9.999706 +416.000000 393.000000 -0.000388 +339.000000 98.000000 40.000373 +354.000000 120.000000 59.999789 +163.000000 480.000000 119.999792 +209.000000 78.000000 90.000471 +340.000000 454.000000 100.000347 +344.000000 120.000000 79.999566 +34.000000 221.000000 20.000076 +130.000000 440.000000 100.000378 +367.000000 328.000000 100.000402 +372.000000 485.000000 29.999664 +35.000000 247.000000 -0.000266 +230.000000 454.000000 130.000398 +155.000000 314.000000 150.000438 +386.000000 168.000000 89.999942 +423.000000 398.000000 20.000409 +252.000000 68.000000 49.999609 +405.000000 314.000000 30.000086 +78.000000 140.000000 90.000406 +373.000000 453.000000 60.000142 +159.000000 328.000000 150.000142 +74.000000 417.000000 30.000409 +330.000000 91.000000 20.000081 +388.000000 332.000000 80.000109 +385.000000 328.000000 60.000013 +174.000000 447.000000 130.000073 +316.000000 226.000000 149.999931 +393.000000 453.000000 30.000415 +361.000000 321.000000 119.999624 +376.000000 465.000000 60.000467 +366.000000 448.000000 79.999941 +58.000000 346.000000 50.000010 +391.000000 384.000000 50.000228 +162.000000 396.000000 129.999672 +425.000000 378.000000 40.000076 +421.000000 278.000000 -0.000240 +179.000000 381.000000 150.000273 +355.000000 483.000000 60.000125 +82.000000 442.000000 29.999998 +83.000000 108.000000 50.000310 +407.000000 175.000000 49.999596 +74.000000 418.000000 19.999690 +132.000000 415.000000 109.999606 +327.000000 489.000000 90.000109 +408.000000 211.000000 79.999683 +416.000000 201.000000 50.000427 +69.000000 380.000000 40.000280 +235.000000 151.000000 150.000472 +369.000000 307.000000 130.000229 +396.000000 164.000000 70.000265 +308.000000 338.000000 149.999970 +175.000000 330.000000 159.999778 +150.000000 349.000000 139.999937 +421.000000 219.000000 -0.000068 +444.000000 384.000000 9.999661 +407.000000 335.000000 29.999975 +123.000000 480.000000 90.000020 +388.000000 207.000000 110.000124 +190.000000 372.000000 140.000446 +127.000000 482.000000 30.000090 +276.000000 476.000000 120.000370 +413.000000 289.000000 49.999591 +240.000000 510.000000 30.000054 +410.000000 316.000000 20.000107 +354.000000 109.000000 -0.000420 +56.000000 226.000000 90.000305 +55.000000 346.000000 20.000297 +373.000000 329.000000 109.999831 +421.000000 269.000000 20.000125 +417.000000 194.000000 -0.000244 +377.000000 477.000000 10.000096 +311.000000 136.000000 120.000023 +355.000000 326.000000 130.000433 +84.000000 110.000000 60.000454 +202.000000 506.000000 80.000296 +398.000000 392.000000 0.000118 +261.000000 501.000000 110.000266 +386.000000 140.000000 10.000112 +75.000000 210.000000 110.000483 +418.000000 392.000000 39.999772 +47.000000 172.000000 39.999530 +201.000000 61.000000 50.000348 +174.000000 426.000000 129.999769 +406.000000 287.000000 89.999588 +406.000000 294.000000 50.000482 +178.000000 464.000000 129.999690 +379.000000 481.000000 0.000359 +66.000000 135.000000 40.000472 +439.000000 380.000000 -0.000057 +410.000000 300.000000 0.000483 +400.000000 198.000000 90.000463 +396.000000 305.000000 99.999628 +112.000000 327.000000 129.999537 +400.000000 351.000000 39.999731 +285.000000 445.000000 140.000481 +194.000000 345.000000 120.000109 +395.000000 373.000000 49.999714 +417.000000 277.000000 69.999982 +220.000000 511.000000 100.000036 +368.000000 181.000000 119.999800 +330.000000 162.000000 130.000194 +355.000000 188.000000 130.000376 +158.000000 58.000000 20.000298 +402.000000 419.000000 0.000043 +389.000000 147.000000 50.000103 +77.000000 161.000000 99.999915 +99.000000 98.000000 69.999881 +383.000000 472.000000 10.000356 +123.000000 366.000000 120.000131 +109.000000 78.000000 -0.000493 +441.000000 394.000000 29.999848 +118.000000 405.000000 100.000021 +148.000000 454.000000 109.999506 +416.000000 405.000000 10.000422 +214.000000 331.000000 120.000073 +377.000000 481.000000 9.999558 +381.000000 413.000000 59.999620 +400.000000 448.000000 30.000243 +185.000000 358.000000 149.999663 +194.000000 362.000000 139.999629 +184.000000 183.000000 160.000453 +391.000000 348.000000 50.000085 +378.000000 477.000000 30.000336 +314.000000 349.000000 150.000272 +159.000000 302.000000 150.000093 +70.000000 396.000000 29.999689 +186.000000 428.000000 140.000092 +384.000000 460.000000 50.000420 +240.000000 438.000000 139.999721 +384.000000 426.000000 59.999785 +396.000000 389.000000 50.000117 +210.000000 348.000000 139.999537 +46.000000 171.000000 9.999837 +173.000000 498.000000 30.000387 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/skull.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/skull.pts new file mode 100644 index 000000000000..563ef228171a --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/skull.pts @@ -0,0 +1,27088 @@ + 106.2500 116.5000 -8.0 + 104.5000 117.2500 -8.0 + 102.2500 119.5000 -8.0 + 97.2500 129.5000 -8.0 + 93.5000 139.2500 -8.0 + 93.2500 147.5000 -8.0 + 94.2500 149.5000 -8.0 + 95.2500 155.5000 -8.0 + 99.2500 161.5000 -8.0 + 102.2500 163.5000 -8.0 + 106.5000 163.7500 -8.0 + 110.5000 160.7500 -8.0 + 113.7500 151.5000 -8.0 + 117.5000 143.7500 -8.0 + 118.5000 138.7500 -8.0 + 118.7500 131.5000 -8.0 + 115.7500 120.5000 -8.0 + 112.7500 116.5000 -8.0 + 105.2500 106.5000 -10.0 + 100.5000 108.2500 -10.0 + 96.2500 112.5000 -10.0 + 92.5000 119.2500 -10.0 + 91.2500 125.5000 -10.0 + 87.5000 135.2500 -10.0 + 87.2500 153.5000 -10.0 + 89.2500 159.5000 -10.0 + 89.2500 163.5000 -10.0 + 94.2500 173.5000 -10.0 + 95.5000 173.7500 -10.0 + 97.5000 175.7500 -10.0 + 102.5000 176.7500 -10.0 + 111.5000 173.7500 -10.0 + 114.7500 170.5000 -10.0 + 119.7500 160.5000 -10.0 + 121.7500 151.5000 -10.0 + 123.7500 147.5000 -10.0 + 125.7500 140.5000 -10.0 + 126.7500 133.5000 -10.0 + 125.7500 131.5000 -10.0 + 125.7500 127.5000 -10.0 + 122.7500 116.5000 -10.0 + 118.7500 110.5000 -10.0 + 111.7500 106.5000 -10.0 + 103.2500 100.5000 -12.0 + 97.5000 103.2500 -12.0 + 92.5000 108.2500 -12.0 + 87.2500 117.5000 -12.0 + 85.2500 126.5000 -12.0 + 83.2500 130.5000 -12.0 + 81.5000 139.2500 -12.0 + 81.2500 148.5000 -12.0 + 82.2500 150.5000 -12.0 + 82.2500 155.5000 -12.0 + 83.2500 157.5000 -12.0 + 84.2500 165.5000 -12.0 + 87.2500 175.5000 -12.0 + 93.5000 181.7500 -12.0 + 100.2500 183.5000 -12.0 + 104.5000 183.7500 -12.0 + 115.5000 179.7500 -12.0 + 121.7500 172.5000 -12.0 + 124.7500 166.5000 -12.0 + 127.7500 151.5000 -12.0 + 131.5000 140.7500 -12.0 + 131.7500 127.5000 -12.0 + 130.7500 125.5000 -12.0 + 129.7500 119.5000 -12.0 + 124.7500 109.5000 -12.0 + 119.5000 104.2500 -12.0 + 112.7500 100.5000 -12.0 + 102.2500 95.5000 -14.0 + 96.5000 98.2500 -14.0 + 88.2500 106.5000 -14.0 + 83.2500 114.5000 -14.0 + 77.5000 137.2500 -14.0 + 77.2500 152.5000 -14.0 + 78.2500 154.5000 -14.0 + 78.2500 160.5000 -14.0 + 79.2500 162.5000 -14.0 + 79.2500 167.5000 -14.0 + 83.2500 178.5000 -14.0 + 87.2500 183.5000 -14.0 + 91.5000 186.7500 -14.0 + 103.5000 188.7500 -14.0 + 105.5000 187.7500 -14.0 + 110.5000 187.7500 -14.0 + 118.5000 183.7500 -14.0 + 125.7500 176.5000 -14.0 + 130.5000 168.7500 -14.0 + 132.7500 152.5000 -14.0 + 135.5000 143.7500 -14.0 + 136.7500 129.5000 -14.0 + 135.7500 127.5000 -14.0 + 134.7500 119.5000 -14.0 + 128.7500 107.5000 -14.0 + 121.5000 100.2500 -14.0 + 112.7500 95.5000 -14.0 + 107.7500 123.5000 -14.0 + 108.5000 122.7500 -14.0 + 109.2500 123.5000 -14.0 + 109.2500 133.5000 -14.0 + 110.2500 135.5000 -14.0 + 109.5000 137.2500 -14.0 + 109.2500 142.5000 -14.0 + 110.2500 144.5000 -14.0 + 110.2500 147.5000 -14.0 + 112.2500 151.5000 -14.0 + 112.2500 153.5000 -14.0 + 111.2500 156.5000 -14.0 + 108.5000 160.2500 -14.0 + 106.5000 161.2500 -14.0 + 104.5000 156.2500 -14.0 + 101.5000 157.2500 -14.0 + 100.5000 159.2500 -14.0 + 98.5000 158.2500 -14.0 + 92.7500 153.5000 -14.0 + 92.7500 149.5000 -14.0 + 94.5000 147.7500 -14.0 + 96.5000 146.7500 -14.0 + 94.7500 143.5000 -14.0 + 94.7500 138.5000 -14.0 + 96.7500 136.5000 -14.0 + 99.5000 132.7500 -14.0 + 101.2500 133.5000 -14.0 + 101.2500 136.5000 -14.0 + 103.2500 138.5000 -14.0 + 105.7500 137.5000 -14.0 + 101.2500 91.5000 -16.0 + 95.5000 94.2500 -16.0 + 87.5000 101.2500 -16.0 + 84.2500 105.5000 -16.0 + 78.2500 117.5000 -16.0 + 73.5000 137.2500 -16.0 + 73.2500 153.5000 -16.0 + 74.2500 155.5000 -16.0 + 74.2500 163.5000 -16.0 + 75.2500 165.5000 -16.0 + 75.2500 169.5000 -16.0 + 76.2500 171.5000 -16.0 + 76.2500 173.5000 -16.0 + 81.2500 183.5000 -16.0 + 86.2500 188.5000 -16.0 + 91.2500 191.5000 -16.0 + 100.5000 191.7500 -16.0 + 102.2500 192.5000 -16.0 + 111.7500 192.5000 -16.0 + 118.5000 189.7500 -16.0 + 127.7500 181.5000 -16.0 + 135.7500 168.5000 -16.0 + 140.7500 133.5000 -16.0 + 139.7500 131.5000 -16.0 + 139.7500 124.5000 -16.0 + 138.7500 122.5000 -16.0 + 137.7500 116.5000 -16.0 + 133.7500 107.5000 -16.0 + 126.7500 99.5000 -16.0 + 122.5000 96.2500 -16.0 + 112.7500 91.5000 -16.0 + 105.7500 108.5000 -16.0 + 107.5000 107.7500 -16.0 + 109.2500 110.5000 -16.0 + 115.5000 114.7500 -16.0 + 117.2500 117.5000 -16.0 + 117.2500 120.5000 -16.0 + 115.5000 129.2500 -16.0 + 115.2500 135.5000 -16.0 + 114.2500 137.5000 -16.0 + 115.2500 139.5000 -16.0 + 115.2500 150.5000 -16.0 + 116.2500 152.5000 -16.0 + 115.5000 153.2500 -16.0 + 115.2500 160.5000 -16.0 + 111.5000 171.2500 -16.0 + 102.5000 170.2500 -16.0 + 98.5000 172.2500 -16.0 + 92.7500 169.5000 -16.0 + 92.7500 166.5000 -16.0 + 90.7500 162.5000 -16.0 + 90.7500 159.5000 -16.0 + 89.7500 157.5000 -16.0 + 89.7500 149.5000 -16.0 + 90.5000 147.7500 -16.0 + 90.7500 140.5000 -16.0 + 94.5000 134.7500 -16.0 + 96.5000 126.7500 -16.0 + 96.7500 121.5000 -16.0 + 98.7500 115.5000 -16.0 + 102.5000 112.7500 -16.0 + 93.7500 176.5000 -16.0 + 95.5000 175.7500 -16.0 + 97.2500 177.5000 -16.0 + 96.5000 181.2500 -16.0 + 104.2500 87.5000 -18.0 + 103.5000 88.2500 -18.0 + 99.5000 88.2500 -18.0 + 91.5000 93.2500 -18.0 + 87.5000 96.2500 -18.0 + 81.2500 103.5000 -18.0 + 75.5000 114.2500 -18.0 + 75.2500 116.5000 -18.0 + 74.2500 118.5000 -18.0 + 73.2500 123.5000 -18.0 + 72.5000 125.2500 -18.0 + 71.2500 133.5000 -18.0 + 70.5000 135.2500 -18.0 + 70.2500 160.5000 -18.0 + 71.2500 162.5000 -18.0 + 71.2500 169.5000 -18.0 + 72.2500 171.5000 -18.0 + 72.5000 173.7500 -18.0 + 76.2500 182.5000 -18.0 + 82.2500 189.5000 -18.0 + 86.5000 192.7500 -18.0 + 88.5000 193.7500 -18.0 + 90.2500 194.5000 -18.0 + 95.5000 194.7500 -18.0 + 102.5000 195.7500 -18.0 + 104.2500 196.5000 -18.0 + 111.7500 196.5000 -18.0 + 120.5000 192.7500 -18.0 + 128.5000 186.7500 -18.0 + 134.7500 179.5000 -18.0 + 138.7500 169.5000 -18.0 + 139.5000 167.7500 -18.0 + 139.7500 164.5000 -18.0 + 140.5000 162.7500 -18.0 + 140.7500 157.5000 -18.0 + 141.7500 148.5000 -18.0 + 142.5000 146.7500 -18.0 + 142.7500 140.5000 -18.0 + 143.5000 138.7500 -18.0 + 143.7500 129.5000 -18.0 + 142.7500 127.5000 -18.0 + 142.7500 122.5000 -18.0 + 141.7500 120.5000 -18.0 + 141.7500 117.5000 -18.0 + 139.7500 113.5000 -18.0 + 139.7500 111.5000 -18.0 + 134.7500 103.5000 -18.0 + 131.7500 99.5000 -18.0 + 124.5000 93.2500 -18.0 + 118.5000 90.2500 -18.0 + 114.7500 88.5000 -18.0 + 112.5000 88.2500 -18.0 + 110.7500 87.5000 -18.0 + 104.7500 102.5000 -18.0 + 105.5000 101.7500 -18.0 + 107.2500 102.5000 -18.0 + 108.2500 104.5000 -18.0 + 119.2500 116.5000 -18.0 + 119.2500 122.5000 -18.0 + 120.2500 124.5000 -18.0 + 120.2500 131.5000 -18.0 + 121.2500 134.5000 -18.0 + 120.5000 136.2500 -18.0 + 120.2500 141.5000 -18.0 + 119.5000 143.2500 -18.0 + 119.2500 160.5000 -18.0 + 117.2500 169.5000 -18.0 + 112.5000 176.2500 -18.0 + 109.5000 176.2500 -18.0 + 107.7500 175.5000 -18.0 + 102.5000 175.2500 -18.0 + 100.5000 178.2500 -18.0 + 100.2500 180.5000 -18.0 + 98.5000 184.2500 -18.0 + 94.5000 184.2500 -18.0 + 92.5000 186.2500 -18.0 + 89.5000 186.2500 -18.0 + 86.7500 181.5000 -18.0 + 83.7500 175.5000 -18.0 + 84.7500 173.5000 -18.0 + 87.5000 170.7500 -18.0 + 87.7500 168.5000 -18.0 + 86.7500 166.5000 -18.0 + 86.7500 160.5000 -18.0 + 85.7500 158.5000 -18.0 + 85.7500 156.5000 -18.0 + 86.7500 149.5000 -18.0 + 87.7500 140.5000 -18.0 + 92.7500 130.5000 -18.0 + 93.7500 121.5000 -18.0 + 94.7500 118.5000 -18.0 + 96.5000 114.7500 -18.0 + 98.7500 108.5000 -18.0 + 100.5000 104.7500 -18.0 + 102.2500 84.5000 -20.0 + 101.5000 85.2500 -20.0 + 99.2500 85.5000 -20.0 + 92.5000 88.2500 -20.0 + 87.5000 92.2500 -20.0 + 85.5000 93.2500 -20.0 + 83.2500 95.5000 -20.0 + 80.5000 99.2500 -20.0 + 77.2500 103.5000 -20.0 + 72.2500 113.5000 -20.0 + 70.2500 122.5000 -20.0 + 69.2500 124.5000 -20.0 + 68.2500 133.5000 -20.0 + 67.5000 135.2500 -20.0 + 67.2500 166.5000 -20.0 + 68.2500 168.5000 -20.0 + 68.5000 173.7500 -20.0 + 72.2500 182.5000 -20.0 + 76.2500 187.5000 -20.0 + 77.2500 189.5000 -20.0 + 78.5000 189.7500 -20.0 + 82.2500 193.5000 -20.0 + 86.5000 196.7500 -20.0 + 88.5000 197.7500 -20.0 + 90.2500 198.5000 -20.0 + 99.5000 198.7500 -20.0 + 101.2500 199.5000 -20.0 + 113.5000 199.7500 -20.0 + 118.5000 197.7500 -20.0 + 122.5000 194.7500 -20.0 + 128.7500 191.5000 -20.0 + 137.7500 181.5000 -20.0 + 141.7500 171.5000 -20.0 + 142.5000 169.7500 -20.0 + 142.7500 165.5000 -20.0 + 143.5000 163.7500 -20.0 + 143.7500 158.5000 -20.0 + 144.5000 156.7500 -20.0 + 144.7500 150.5000 -20.0 + 145.5000 148.7500 -20.0 + 145.7500 140.5000 -20.0 + 146.5000 138.7500 -20.0 + 146.7500 130.5000 -20.0 + 145.7500 128.5000 -20.0 + 145.7500 123.5000 -20.0 + 144.7500 121.5000 -20.0 + 144.7500 117.5000 -20.0 + 141.7500 108.5000 -20.0 + 136.7500 100.5000 -20.0 + 135.7500 98.5000 -20.0 + 130.7500 93.5000 -20.0 + 124.5000 89.2500 -20.0 + 118.5000 86.2500 -20.0 + 113.5000 85.2500 -20.0 + 111.7500 84.5000 -20.0 + 103.7500 97.5000 -20.0 + 105.5000 96.7500 -20.0 + 107.2500 98.5000 -20.0 + 109.2500 102.5000 -20.0 + 118.2500 113.5000 -20.0 + 122.2500 120.5000 -20.0 + 122.2500 124.5000 -20.0 + 124.2500 128.5000 -20.0 + 124.2500 131.5000 -20.0 + 126.2500 133.5000 -20.0 + 125.5000 135.2500 -20.0 + 124.2500 154.5000 -20.0 + 119.2500 177.5000 -20.0 + 121.2500 179.5000 -20.0 + 121.2500 184.5000 -20.0 + 117.5000 187.2500 -20.0 + 115.5000 187.2500 -20.0 + 109.5000 184.2500 -20.0 + 105.7500 180.5000 -20.0 + 102.2500 180.5000 -20.0 + 100.2500 184.5000 -20.0 + 96.5000 188.2500 -20.0 + 94.5000 188.2500 -20.0 + 92.5000 189.2500 -20.0 + 89.5000 188.2500 -20.0 + 83.7500 181.5000 -20.0 + 83.7500 179.5000 -20.0 + 82.7500 177.5000 -20.0 + 82.7500 173.5000 -20.0 + 83.5000 171.7500 -20.0 + 82.7500 170.5000 -20.0 + 82.7500 151.5000 -20.0 + 83.5000 149.7500 -20.0 + 83.7500 138.5000 -20.0 + 89.5000 130.7500 -20.0 + 89.7500 125.5000 -20.0 + 93.5000 116.7500 -20.0 + 93.7500 114.5000 -20.0 + 98.7500 104.5000 -20.0 + 99.7500 99.5000 -20.0 + 101.5000 97.7500 -20.0 + 103.2500 81.5000 -22.0 + 102.5000 82.2500 -22.0 + 98.2500 82.5000 -22.0 + 87.5000 87.2500 -22.0 + 81.2500 92.5000 -22.0 + 78.5000 96.2500 -22.0 + 75.2500 100.5000 -22.0 + 69.2500 112.5000 -22.0 + 67.2500 121.5000 -22.0 + 66.2500 126.5000 -22.0 + 65.2500 133.5000 -22.0 + 64.5000 135.2500 -22.0 + 64.2500 142.5000 -22.0 + 63.2500 151.5000 -22.0 + 64.2500 153.5000 -22.0 + 64.2500 169.5000 -22.0 + 65.2500 171.5000 -22.0 + 65.2500 174.5000 -22.0 + 66.5000 177.7500 -22.0 + 69.2500 184.5000 -22.0 + 77.2500 193.5000 -22.0 + 83.2500 198.5000 -22.0 + 88.2500 201.5000 -22.0 + 99.5000 201.7500 -22.0 + 101.2500 202.5000 -22.0 + 114.5000 202.7500 -22.0 + 128.5000 195.7500 -22.0 + 135.5000 189.7500 -22.0 + 138.7500 185.5000 -22.0 + 142.7500 177.5000 -22.0 + 144.5000 173.7500 -22.0 + 144.7500 171.5000 -22.0 + 145.5000 169.7500 -22.0 + 145.7500 165.5000 -22.0 + 146.5000 163.7500 -22.0 + 146.7500 158.5000 -22.0 + 147.5000 156.7500 -22.0 + 147.7500 148.5000 -22.0 + 148.5000 146.7500 -22.0 + 148.7500 125.5000 -22.0 + 147.7500 123.5000 -22.0 + 147.7500 118.5000 -22.0 + 146.7500 116.5000 -22.0 + 146.7500 114.5000 -22.0 + 145.7500 112.5000 -22.0 + 145.7500 110.5000 -22.0 + 139.7500 98.5000 -22.0 + 134.7500 93.5000 -22.0 + 133.7500 91.5000 -22.0 + 132.5000 91.2500 -22.0 + 129.5000 88.2500 -22.0 + 119.5000 83.2500 -22.0 + 114.5000 82.2500 -22.0 + 112.7500 81.5000 -22.0 + 101.7500 93.5000 -22.0 + 102.5000 92.7500 -22.0 + 105.5000 92.7500 -22.0 + 108.2500 95.5000 -22.0 + 108.2500 97.5000 -22.0 + 111.2500 103.5000 -22.0 + 115.5000 106.7500 -22.0 + 120.2500 113.5000 -22.0 + 126.2500 125.5000 -22.0 + 126.2500 127.5000 -22.0 + 127.2500 130.5000 -22.0 + 128.5000 130.7500 -22.0 + 130.2500 132.5000 -22.0 + 129.5000 133.2500 -22.0 + 129.2500 140.5000 -22.0 + 127.2500 158.5000 -22.0 + 126.2500 163.5000 -22.0 + 125.5000 165.2500 -22.0 + 125.2500 170.5000 -22.0 + 124.2500 173.5000 -22.0 + 123.5000 175.2500 -22.0 + 123.2500 187.5000 -22.0 + 121.5000 188.2500 -22.0 + 115.5000 191.2500 -22.0 + 108.5000 188.2500 -22.0 + 104.5000 184.2500 -22.0 + 101.5000 185.2500 -22.0 + 96.5000 190.2500 -22.0 + 93.5000 190.2500 -22.0 + 91.5000 191.2500 -22.0 + 88.5000 190.2500 -22.0 + 83.7500 184.5000 -22.0 + 81.7500 180.5000 -22.0 + 81.7500 177.5000 -22.0 + 79.7500 173.5000 -22.0 + 79.7500 166.5000 -22.0 + 78.7500 164.5000 -22.0 + 78.7500 157.5000 -22.0 + 79.5000 155.7500 -22.0 + 79.7500 139.5000 -22.0 + 81.7500 135.5000 -22.0 + 84.5000 131.7500 -22.0 + 84.7500 129.5000 -22.0 + 86.5000 125.7500 -22.0 + 86.7500 123.5000 -22.0 + 88.7500 121.5000 -22.0 + 89.7500 119.5000 -22.0 + 93.7500 109.5000 -22.0 + 98.5000 101.7500 -22.0 + 98.7500 99.5000 -22.0 + 99.2500 79.5000 -24.0 + 95.5000 81.2500 -24.0 + 93.5000 81.2500 -24.0 + 81.5000 87.2500 -24.0 + 72.2500 99.5000 -24.0 + 65.2500 115.5000 -24.0 + 61.5000 137.2500 -24.0 + 61.2500 168.5000 -24.0 + 62.2500 170.5000 -24.0 + 62.2500 175.5000 -24.0 + 66.2500 183.5000 -24.0 + 66.2500 185.5000 -24.0 + 69.2500 189.5000 -24.0 + 79.2500 199.5000 -24.0 + 86.2500 203.5000 -24.0 + 90.2500 204.5000 -24.0 + 103.5000 204.7500 -24.0 + 105.2500 205.5000 -24.0 + 113.5000 205.7500 -24.0 + 115.5000 204.7500 -24.0 + 117.5000 204.7500 -24.0 + 132.5000 196.7500 -24.0 + 140.5000 188.7500 -24.0 + 144.5000 181.7500 -24.0 + 148.5000 168.7500 -24.0 + 148.7500 161.5000 -24.0 + 150.5000 151.7500 -24.0 + 151.7500 132.5000 -24.0 + 150.7500 130.5000 -24.0 + 150.7500 122.5000 -24.0 + 149.7500 120.5000 -24.0 + 149.7500 116.5000 -24.0 + 148.7500 114.5000 -24.0 + 148.5000 111.2500 -24.0 + 142.7500 98.5000 -24.0 + 135.7500 89.5000 -24.0 + 127.7500 83.5000 -24.0 + 116.7500 79.5000 -24.0 + 101.7500 90.5000 -24.0 + 102.5000 89.7500 -24.0 + 106.5000 89.7500 -24.0 + 109.2500 94.5000 -24.0 + 109.2500 97.5000 -24.0 + 111.5000 102.7500 -24.0 + 117.5000 105.7500 -24.0 + 121.2500 109.5000 -24.0 + 127.2500 121.5000 -24.0 + 127.2500 123.5000 -24.0 + 133.2500 130.5000 -24.0 + 133.2500 135.5000 -24.0 + 132.2500 138.5000 -24.0 + 133.2500 140.5000 -24.0 + 132.5000 142.2500 -24.0 + 132.2500 149.5000 -24.0 + 130.2500 159.5000 -24.0 + 129.5000 161.2500 -24.0 + 129.2500 167.5000 -24.0 + 128.2500 176.5000 -24.0 + 125.5000 180.2500 -24.0 + 125.2500 182.5000 -24.0 + 123.5000 186.2500 -24.0 + 123.2500 188.5000 -24.0 + 120.5000 192.2500 -24.0 + 118.5000 193.2500 -24.0 + 112.5000 195.2500 -24.0 + 110.7500 194.5000 -24.0 + 109.7500 192.5000 -24.0 + 105.5000 190.2500 -24.0 + 103.5000 189.2500 -24.0 + 101.5000 190.2500 -24.0 + 99.5000 190.2500 -24.0 + 95.5000 192.2500 -24.0 + 92.5000 192.2500 -24.0 + 90.5000 194.2500 -24.0 + 88.5000 194.2500 -24.0 + 85.5000 193.2500 -24.0 + 84.7500 191.5000 -24.0 + 78.7500 179.5000 -24.0 + 78.7500 177.5000 -24.0 + 77.7500 175.5000 -24.0 + 77.7500 173.5000 -24.0 + 76.7500 171.5000 -24.0 + 76.7500 163.5000 -24.0 + 75.7500 161.5000 -24.0 + 75.7500 152.5000 -24.0 + 76.5000 150.7500 -24.0 + 76.7500 137.5000 -24.0 + 79.7500 131.5000 -24.0 + 82.7500 124.5000 -24.0 + 85.5000 121.7500 -24.0 + 89.5000 114.7500 -24.0 + 89.7500 111.5000 -24.0 + 97.5000 102.7500 -24.0 + 97.7500 98.5000 -24.0 + 104.2500 76.5000 -26.0 + 103.5000 77.2500 -26.0 + 98.5000 77.2500 -26.0 + 96.5000 78.2500 -26.0 + 93.5000 78.2500 -26.0 + 85.5000 82.2500 -26.0 + 83.5000 82.2500 -26.0 + 81.5000 84.2500 -26.0 + 79.5000 85.2500 -26.0 + 77.2500 87.5000 -26.0 + 74.5000 91.2500 -26.0 + 70.2500 97.5000 -26.0 + 66.2500 105.5000 -26.0 + 64.5000 109.2500 -26.0 + 63.2500 115.5000 -26.0 + 62.5000 117.2500 -26.0 + 62.2500 122.5000 -26.0 + 61.5000 124.2500 -26.0 + 60.2500 132.5000 -26.0 + 59.5000 134.2500 -26.0 + 59.2500 143.5000 -26.0 + 58.5000 145.2500 -26.0 + 58.2500 150.5000 -26.0 + 59.2500 152.5000 -26.0 + 59.2500 160.5000 -26.0 + 58.5000 162.2500 -26.0 + 58.2500 168.5000 -26.0 + 59.2500 170.5000 -26.0 + 59.2500 174.5000 -26.0 + 61.2500 178.5000 -26.0 + 61.2500 180.5000 -26.0 + 66.2500 190.5000 -26.0 + 72.2500 196.5000 -26.0 + 79.5000 202.7500 -26.0 + 85.5000 205.7500 -26.0 + 87.2500 206.5000 -26.0 + 103.5000 206.7500 -26.0 + 105.2500 207.5000 -26.0 + 117.5000 207.7500 -26.0 + 133.5000 199.7500 -26.0 + 139.5000 193.7500 -26.0 + 142.7500 189.5000 -26.0 + 147.7500 181.5000 -26.0 + 148.7500 176.5000 -26.0 + 149.7500 173.5000 -26.0 + 150.5000 171.7500 -26.0 + 150.7500 167.5000 -26.0 + 151.5000 165.7500 -26.0 + 151.7500 155.5000 -26.0 + 152.5000 153.7500 -26.0 + 152.7500 146.5000 -26.0 + 153.5000 144.7500 -26.0 + 153.7500 131.5000 -26.0 + 152.7500 129.5000 -26.0 + 152.7500 121.5000 -26.0 + 151.7500 119.5000 -26.0 + 151.7500 114.5000 -26.0 + 149.7500 110.5000 -26.0 + 149.5000 108.2500 -26.0 + 146.7500 101.5000 -26.0 + 141.7500 93.5000 -26.0 + 140.7500 91.5000 -26.0 + 133.7500 84.5000 -26.0 + 127.7500 80.5000 -26.0 + 121.5000 78.2500 -26.0 + 119.7500 77.5000 -26.0 + 114.5000 77.2500 -26.0 + 112.7500 76.5000 -26.0 + 102.5000 86.7500 -26.0 + 104.5000 86.7500 -26.0 + 106.5000 87.7500 -26.0 + 110.2500 90.5000 -26.0 + 110.2500 94.5000 -26.0 + 112.2500 98.5000 -26.0 + 112.2500 100.5000 -26.0 + 114.5000 102.7500 -26.0 + 118.5000 104.7500 -26.0 + 123.5000 105.7500 -26.0 + 127.2500 112.5000 -26.0 + 127.2500 114.5000 -26.0 + 130.2500 121.5000 -26.0 + 134.2500 125.5000 -26.0 + 138.2500 133.5000 -26.0 + 137.5000 134.2500 -26.0 + 137.2500 139.5000 -26.0 + 136.5000 141.2500 -26.0 + 136.2500 148.5000 -26.0 + 135.2500 150.5000 -26.0 + 134.2500 159.5000 -26.0 + 133.5000 161.2500 -26.0 + 133.2500 169.5000 -26.0 + 132.2500 174.5000 -26.0 + 130.5000 178.2500 -26.0 + 128.2500 184.5000 -26.0 + 124.5000 188.2500 -26.0 + 124.2500 190.5000 -26.0 + 122.5000 192.2500 -26.0 + 115.5000 196.2500 -26.0 + 112.5000 196.2500 -26.0 + 107.5000 195.2500 -26.0 + 103.5000 192.2500 -26.0 + 101.5000 193.2500 -26.0 + 97.5000 193.2500 -26.0 + 89.5000 197.2500 -26.0 + 87.5000 197.2500 -26.0 + 83.7500 194.5000 -26.0 + 80.7500 188.5000 -26.0 + 76.7500 181.5000 -26.0 + 76.7500 179.5000 -26.0 + 74.7500 175.5000 -26.0 + 74.7500 170.5000 -26.0 + 73.7500 168.5000 -26.0 + 73.7500 162.5000 -26.0 + 72.7500 160.5000 -26.0 + 72.7500 143.5000 -26.0 + 73.7500 138.5000 -26.0 + 72.7500 136.5000 -26.0 + 73.7500 134.5000 -26.0 + 78.7500 125.5000 -26.0 + 79.7500 123.5000 -26.0 + 90.7500 108.5000 -26.0 + 91.7500 106.5000 -26.0 + 93.7500 105.5000 -26.0 + 96.5000 101.7500 -26.0 + 95.7500 99.5000 -26.0 + 96.5000 97.7500 -26.0 + 96.7500 94.5000 -26.0 + 98.5000 93.7500 -26.0 + 99.5000 91.7500 -26.0 + 99.7500 89.5000 -26.0 + 103.2500 74.5000 -28.0 + 102.5000 75.2500 -28.0 + 97.5000 75.2500 -28.0 + 95.5000 76.2500 -28.0 + 92.5000 76.2500 -28.0 + 90.5000 77.2500 -28.0 + 88.5000 77.2500 -28.0 + 80.5000 81.2500 -28.0 + 73.2500 88.5000 -28.0 + 68.2500 96.5000 -28.0 + 62.2500 108.5000 -28.0 + 61.2500 113.5000 -28.0 + 60.5000 115.2500 -28.0 + 60.2500 121.5000 -28.0 + 59.5000 123.2500 -28.0 + 58.2500 131.5000 -28.0 + 57.5000 133.2500 -28.0 + 57.2500 140.5000 -28.0 + 56.5000 142.2500 -28.0 + 56.2500 171.5000 -28.0 + 57.2500 173.5000 -28.0 + 57.2500 176.5000 -28.0 + 58.2500 178.5000 -28.0 + 58.2500 180.5000 -28.0 + 64.2500 192.5000 -28.0 + 72.2500 200.5000 -28.0 + 78.5000 204.7500 -28.0 + 85.2500 208.5000 -28.0 + 103.5000 208.7500 -28.0 + 105.2500 209.5000 -28.0 + 119.5000 209.7500 -28.0 + 131.5000 203.7500 -28.0 + 135.5000 200.7500 -28.0 + 137.7500 199.5000 -28.0 + 140.5000 195.7500 -28.0 + 145.5000 189.7500 -28.0 + 149.5000 182.7500 -28.0 + 151.7500 176.5000 -28.0 + 152.5000 174.7500 -28.0 + 152.7500 170.5000 -28.0 + 153.5000 168.7500 -28.0 + 153.7500 161.5000 -28.0 + 154.5000 159.7500 -28.0 + 154.7500 148.5000 -28.0 + 155.5000 146.7500 -28.0 + 155.7500 130.5000 -28.0 + 154.7500 128.5000 -28.0 + 154.7500 122.5000 -28.0 + 153.7500 120.5000 -28.0 + 153.7500 116.5000 -28.0 + 152.7500 114.5000 -28.0 + 152.7500 111.5000 -28.0 + 150.7500 105.5000 -28.0 + 146.5000 96.2500 -28.0 + 141.7500 89.5000 -28.0 + 137.5000 84.2500 -28.0 + 129.7500 78.5000 -28.0 + 123.5000 76.2500 -28.0 + 121.7500 75.5000 -28.0 + 117.5000 75.2500 -28.0 + 115.7500 74.5000 -28.0 + 100.7500 85.5000 -28.0 + 101.5000 84.7500 -28.0 + 105.5000 84.7500 -28.0 + 107.2500 86.5000 -28.0 + 109.5000 86.7500 -28.0 + 112.5000 85.7500 -28.0 + 114.2500 87.5000 -28.0 + 113.5000 88.2500 -28.0 + 112.2500 92.5000 -28.0 + 113.2500 95.5000 -28.0 + 116.2500 98.5000 -28.0 + 120.5000 98.7500 -28.0 + 124.5000 100.7500 -28.0 + 129.2500 107.5000 -28.0 + 131.2500 111.5000 -28.0 + 131.2500 114.5000 -28.0 + 132.2500 116.5000 -28.0 + 132.2500 118.5000 -28.0 + 134.2500 120.5000 -28.0 + 135.5000 122.7500 -28.0 + 137.5000 123.7500 -28.0 + 142.2500 132.5000 -28.0 + 141.5000 134.2500 -28.0 + 141.2500 138.5000 -28.0 + 140.5000 140.2500 -28.0 + 140.2500 145.5000 -28.0 + 139.5000 147.2500 -28.0 + 139.2500 155.5000 -28.0 + 138.5000 157.2500 -28.0 + 138.2500 162.5000 -28.0 + 137.2500 164.5000 -28.0 + 136.2500 173.5000 -28.0 + 135.2500 178.5000 -28.0 + 134.2500 181.5000 -28.0 + 131.5000 184.2500 -28.0 + 129.5000 185.2500 -28.0 + 123.5000 193.2500 -28.0 + 119.5000 196.2500 -28.0 + 117.5000 196.2500 -28.0 + 113.5000 198.2500 -28.0 + 109.5000 198.2500 -28.0 + 103.5000 195.2500 -28.0 + 101.5000 196.2500 -28.0 + 95.5000 196.2500 -28.0 + 91.5000 199.2500 -28.0 + 89.5000 200.2500 -28.0 + 83.7500 197.5000 -28.0 + 80.7500 193.5000 -28.0 + 77.7500 188.5000 -28.0 + 72.7500 178.5000 -28.0 + 72.7500 176.5000 -28.0 + 71.7500 174.5000 -28.0 + 71.7500 162.5000 -28.0 + 68.7500 158.5000 -28.0 + 68.7500 153.5000 -28.0 + 69.5000 151.7500 -28.0 + 69.7500 134.5000 -28.0 + 70.5000 132.7500 -28.0 + 73.7500 127.5000 -28.0 + 74.7500 125.5000 -28.0 + 89.5000 107.7500 -28.0 + 93.5000 104.7500 -28.0 + 93.7500 101.5000 -28.0 + 92.7500 99.5000 -28.0 + 92.7500 96.5000 -28.0 + 93.7500 94.5000 -28.0 + 92.7500 91.5000 -28.0 + 93.5000 89.7500 -28.0 + 96.5000 90.7500 -28.0 + 103.2500 72.5000 -30.0 + 102.5000 73.2500 -30.0 + 96.5000 73.2500 -30.0 + 94.5000 74.2500 -30.0 + 91.5000 74.2500 -30.0 + 89.5000 75.2500 -30.0 + 87.5000 75.2500 -30.0 + 77.5000 80.2500 -30.0 + 75.2500 82.5000 -30.0 + 72.5000 86.2500 -30.0 + 69.2500 90.5000 -30.0 + 67.2500 94.5000 -30.0 + 64.2500 98.5000 -30.0 + 60.2500 108.5000 -30.0 + 58.5000 112.2500 -30.0 + 58.2500 116.5000 -30.0 + 57.2500 125.5000 -30.0 + 56.2500 128.5000 -30.0 + 55.2500 137.5000 -30.0 + 54.5000 139.2500 -30.0 + 54.2500 157.5000 -30.0 + 53.5000 159.2500 -30.0 + 53.2500 164.5000 -30.0 + 54.2500 166.5000 -30.0 + 54.2500 174.5000 -30.0 + 55.2500 176.5000 -30.0 + 55.2500 178.5000 -30.0 + 56.2500 180.5000 -30.0 + 56.2500 182.5000 -30.0 + 62.2500 194.5000 -30.0 + 69.2500 201.5000 -30.0 + 75.5000 205.7500 -30.0 + 82.2500 209.5000 -30.0 + 84.5000 209.7500 -30.0 + 86.2500 210.5000 -30.0 + 92.5000 210.7500 -30.0 + 94.5000 209.7500 -30.0 + 97.5000 209.7500 -30.0 + 99.2500 210.5000 -30.0 + 105.5000 210.7500 -30.0 + 107.2500 211.5000 -30.0 + 118.5000 211.7500 -30.0 + 120.5000 210.7500 -30.0 + 122.5000 210.7500 -30.0 + 131.5000 206.7500 -30.0 + 136.5000 202.7500 -30.0 + 138.5000 201.7500 -30.0 + 147.7500 190.5000 -30.0 + 153.7500 179.5000 -30.0 + 154.7500 174.5000 -30.0 + 155.5000 172.7500 -30.0 + 155.7500 168.5000 -30.0 + 156.5000 166.7500 -30.0 + 156.7500 154.5000 -30.0 + 157.7500 145.5000 -30.0 + 158.5000 143.7500 -30.0 + 158.7500 137.5000 -30.0 + 157.7500 135.5000 -30.0 + 157.7500 129.5000 -30.0 + 156.7500 127.5000 -30.0 + 156.7500 123.5000 -30.0 + 155.7500 121.5000 -30.0 + 155.7500 117.5000 -30.0 + 154.7500 115.5000 -30.0 + 154.7500 112.5000 -30.0 + 153.7500 110.5000 -30.0 + 153.7500 107.5000 -30.0 + 145.7500 91.5000 -30.0 + 140.7500 85.5000 -30.0 + 139.7500 83.5000 -30.0 + 133.7500 78.5000 -30.0 + 128.5000 75.2500 -30.0 + 123.5000 74.2500 -30.0 + 121.7500 73.5000 -30.0 + 117.5000 73.2500 -30.0 + 115.7500 72.5000 -30.0 +} -30.0 +{ -30.0 + 102.7500 82.5000 -30.0 + 104.5000 81.7500 -30.0 + 107.2500 85.5000 -30.0 + 109.5000 85.7500 -30.0 + 113.5000 83.7500 -30.0 + 117.2500 85.5000 -30.0 + 115.5000 92.2500 -30.0 + 116.5000 93.7500 -30.0 + 118.5000 94.7500 -30.0 + 123.5000 95.7500 -30.0 + 126.2500 98.5000 -30.0 + 135.2500 112.5000 -30.0 + 135.2500 114.5000 -30.0 + 137.2500 120.5000 -30.0 + 143.2500 127.5000 -30.0 + 145.2500 131.5000 -30.0 + 145.2500 135.5000 -30.0 + 144.2500 137.5000 -30.0 + 142.2500 151.5000 -30.0 + 143.2500 153.5000 -30.0 + 141.5000 158.2500 -30.0 + 141.2500 165.5000 -30.0 + 140.2500 167.5000 -30.0 + 141.2500 169.5000 -30.0 + 140.5000 170.2500 -30.0 + 140.2500 175.5000 -30.0 + 138.2500 180.5000 -30.0 + 135.5000 184.2500 -30.0 + 133.5000 185.2500 -30.0 + 126.2500 192.5000 -30.0 + 125.2500 194.5000 -30.0 + 116.5000 199.2500 -30.0 + 109.5000 200.2500 -30.0 + 102.5000 198.2500 -30.0 + 98.5000 200.2500 -30.0 + 96.5000 199.2500 -30.0 + 92.5000 201.2500 -30.0 + 86.5000 201.2500 -30.0 + 82.7500 198.5000 -30.0 + 76.7500 191.5000 -30.0 + 68.7500 176.5000 -30.0 + 68.7500 164.5000 -30.0 + 65.7500 158.5000 -30.0 + 65.7500 154.5000 -30.0 + 66.5000 152.7500 -30.0 + 66.7500 135.5000 -30.0 + 65.7500 133.5000 -30.0 + 68.7500 129.5000 -30.0 + 71.7500 123.5000 -30.0 + 76.5000 119.7500 -30.0 + 79.7500 115.5000 -30.0 + 83.5000 108.7500 -30.0 + 86.7500 99.5000 -30.0 + 90.5000 95.7500 -30.0 + 90.7500 93.5000 -30.0 + 89.7500 91.5000 -30.0 + 97.5000 84.7500 -30.0 + 98.2500 85.5000 -30.0 + 100.5000 84.7500 -30.0 + 104.2500 70.5000 -32.0 + 103.5000 71.2500 -32.0 + 96.5000 71.2500 -32.0 + 94.5000 72.2500 -32.0 + 90.5000 72.2500 -32.0 + 88.5000 73.2500 -32.0 + 86.5000 73.2500 -32.0 + 76.5000 78.2500 -32.0 + 70.2500 85.5000 -32.0 + 65.2500 93.5000 -32.0 + 59.5000 104.2500 -32.0 + 57.2500 110.5000 -32.0 + 56.5000 112.2500 -32.0 + 56.2500 116.5000 -32.0 + 55.2500 125.5000 -32.0 + 54.2500 127.5000 -32.0 + 53.2500 136.5000 -32.0 + 52.5000 138.2500 -32.0 + 52.2500 153.5000 -32.0 + 51.5000 155.2500 -32.0 + 51.2500 171.5000 -32.0 + 52.2500 173.5000 -32.0 + 52.2500 177.5000 -32.0 + 54.2500 181.5000 -32.0 + 54.2500 183.5000 -32.0 + 60.2500 195.5000 -32.0 + 68.5000 203.7500 -32.0 + 76.5000 208.7500 -32.0 + 78.5000 209.7500 -32.0 + 82.2500 211.5000 -32.0 + 101.5000 211.7500 -32.0 + 108.5000 212.7500 -32.0 + 110.2500 213.5000 -32.0 + 118.5000 213.7500 -32.0 + 120.5000 212.7500 -32.0 + 122.5000 212.7500 -32.0 + 124.5000 211.7500 -32.0 + 126.5000 211.7500 -32.0 + 134.5000 206.7500 -32.0 + 136.5000 205.7500 -32.0 + 144.7500 197.5000 -32.0 + 147.5000 193.7500 -32.0 + 150.7500 189.5000 -32.0 + 154.5000 182.7500 -32.0 + 156.7500 176.5000 -32.0 + 157.5000 174.7500 -32.0 + 157.7500 170.5000 -32.0 + 158.5000 168.7500 -32.0 + 158.7500 157.5000 -32.0 + 159.7500 148.5000 -32.0 + 160.5000 146.7500 -32.0 + 160.7500 137.5000 -32.0 + 159.7500 135.5000 -32.0 + 159.7500 129.5000 -32.0 + 158.7500 127.5000 -32.0 + 158.7500 123.5000 -32.0 + 157.7500 121.5000 -32.0 + 157.7500 119.5000 -32.0 + 156.7500 117.5000 -32.0 + 156.7500 112.5000 -32.0 + 155.7500 110.5000 -32.0 + 155.7500 107.5000 -32.0 + 147.7500 91.5000 -32.0 + 144.7500 87.5000 -32.0 + 143.7500 85.5000 -32.0 + 136.5000 78.2500 -32.0 + 128.5000 73.2500 -32.0 + 123.5000 72.2500 -32.0 + 121.7500 71.5000 -32.0 + 115.5000 71.2500 -32.0 + 113.7500 70.5000 -32.0 + 102.7500 80.5000 -32.0 + 103.5000 79.7500 -32.0 + 105.2500 80.5000 -32.0 + 107.2500 84.5000 -32.0 + 111.5000 84.7500 -32.0 + 115.5000 82.7500 -32.0 + 117.5000 82.7500 -32.0 + 121.2500 86.5000 -32.0 + 123.5000 86.7500 -32.0 + 124.2500 88.5000 -32.0 + 129.2500 94.5000 -32.0 + 128.5000 96.2500 -32.0 + 129.2500 97.5000 -32.0 + 130.2500 99.5000 -32.0 + 133.2500 103.5000 -32.0 + 136.2500 109.5000 -32.0 + 139.2500 113.5000 -32.0 + 139.2500 115.5000 -32.0 + 143.2500 123.5000 -32.0 + 144.5000 125.7500 -32.0 + 146.5000 126.7500 -32.0 + 148.2500 129.5000 -32.0 + 148.2500 134.5000 -32.0 + 147.5000 136.2500 -32.0 + 147.2500 141.5000 -32.0 + 146.2500 144.5000 -32.0 + 145.5000 146.2500 -32.0 + 145.2500 154.5000 -32.0 + 144.5000 156.2500 -32.0 + 144.2500 170.5000 -32.0 + 143.2500 175.5000 -32.0 + 140.2500 182.5000 -32.0 + 137.5000 185.2500 -32.0 + 135.5000 186.2500 -32.0 + 125.5000 196.2500 -32.0 + 120.5000 199.2500 -32.0 + 118.5000 199.2500 -32.0 + 112.5000 202.2500 -32.0 + 109.5000 202.2500 -32.0 + 103.5000 200.2500 -32.0 + 99.5000 202.2500 -32.0 + 94.5000 202.2500 -32.0 + 92.5000 203.2500 -32.0 + 88.5000 203.2500 -32.0 + 85.5000 202.2500 -32.0 + 76.5000 193.2500 -32.0 + 74.5000 192.2500 -32.0 + 70.7500 185.5000 -32.0 + 65.7500 175.5000 -32.0 + 65.7500 169.5000 -32.0 + 64.7500 167.5000 -32.0 + 64.7500 161.5000 -32.0 + 63.7500 159.5000 -32.0 + 63.7500 135.5000 -32.0 + 62.7500 132.5000 -32.0 + 64.5000 131.7500 -32.0 + 67.5000 125.7500 -32.0 + 67.7500 123.5000 -32.0 + 76.7500 114.5000 -32.0 + 79.7500 108.5000 -32.0 + 80.7500 103.5000 -32.0 + 85.5000 97.7500 -32.0 + 87.5000 96.7500 -32.0 + 88.7500 94.5000 -32.0 + 87.7500 92.5000 -32.0 + 89.7500 88.5000 -32.0 + 95.5000 83.7500 -32.0 + 97.2500 84.5000 -32.0 + 99.5000 84.7500 -32.0 + 97.2500 69.5000 -34.0 + 96.5000 70.2500 -34.0 + 91.5000 70.2500 -34.0 + 89.5000 71.2500 -34.0 + 86.2500 71.5000 -34.0 + 77.5000 75.2500 -34.0 + 70.5000 82.2500 -34.0 + 66.2500 88.5000 -34.0 + 65.2500 90.5000 -34.0 + 60.2500 98.5000 -34.0 + 56.2500 106.5000 -34.0 + 55.2500 111.5000 -34.0 + 54.5000 113.2500 -34.0 + 54.2500 117.5000 -34.0 + 53.2500 124.5000 -34.0 + 52.2500 129.5000 -34.0 + 51.5000 131.2500 -34.0 + 51.2500 135.5000 -34.0 + 50.5000 137.2500 -34.0 + 50.2500 151.5000 -34.0 + 49.5000 153.2500 -34.0 + 49.2500 173.5000 -34.0 + 50.2500 175.5000 -34.0 + 50.2500 177.5000 -34.0 + 51.2500 179.5000 -34.0 + 51.2500 182.5000 -34.0 + 58.2500 196.5000 -34.0 + 64.2500 202.5000 -34.0 + 70.2500 207.5000 -34.0 + 77.5000 211.7500 -34.0 + 82.5000 212.7500 -34.0 + 84.2500 213.5000 -34.0 + 97.5000 213.7500 -34.0 + 99.5000 212.7500 -34.0 + 100.2500 213.5000 -34.0 + 106.5000 213.7500 -34.0 + 108.2500 214.5000 -34.0 + 121.5000 214.7500 -34.0 + 123.5000 213.7500 -34.0 + 125.5000 213.7500 -34.0 + 135.5000 208.7500 -34.0 + 144.7500 200.5000 -34.0 + 147.5000 196.7500 -34.0 + 152.5000 190.7500 -34.0 + 156.5000 183.7500 -34.0 + 158.7500 177.5000 -34.0 + 159.5000 175.7500 -34.0 + 159.7500 172.5000 -34.0 + 160.5000 170.7500 -34.0 + 160.7500 164.5000 -34.0 + 161.5000 162.7500 -34.0 + 161.7500 150.5000 -34.0 + 162.5000 148.7500 -34.0 + 162.7500 140.5000 -34.0 + 161.7500 138.5000 -34.0 + 161.7500 130.5000 -34.0 + 160.7500 128.5000 -34.0 + 160.7500 123.5000 -34.0 + 159.7500 121.5000 -34.0 + 159.7500 119.5000 -34.0 + 158.7500 117.5000 -34.0 + 158.7500 114.5000 -34.0 + 157.7500 112.5000 -34.0 + 157.7500 109.5000 -34.0 + 156.7500 107.5000 -34.0 + 156.7500 105.5000 -34.0 + 153.7500 99.5000 -34.0 + 148.7500 90.5000 -34.0 + 146.7500 86.5000 -34.0 + 143.7500 83.5000 -34.0 + 142.7500 81.5000 -34.0 + 135.5000 75.2500 -34.0 + 127.5000 71.2500 -34.0 + 125.7500 70.5000 -34.0 + 122.5000 70.2500 -34.0 + 120.7500 69.5000 -34.0 + 102.7500 78.5000 -34.0 + 104.5000 77.7500 -34.0 + 106.2500 79.5000 -34.0 + 106.2500 81.5000 -34.0 + 108.2500 83.5000 -34.0 + 112.5000 83.7500 -34.0 + 116.5000 81.7500 -34.0 + 121.5000 83.7500 -34.0 + 125.2500 86.5000 -34.0 + 129.5000 91.7500 -34.0 + 131.5000 92.7500 -34.0 + 133.2500 96.5000 -34.0 + 139.2500 104.5000 -34.0 + 138.2500 107.5000 -34.0 + 141.2500 113.5000 -34.0 + 151.2500 127.5000 -34.0 + 150.2500 128.5000 -34.0 + 151.2500 130.5000 -34.0 + 150.5000 131.2500 -34.0 + 150.2500 133.5000 -34.0 + 151.2500 136.5000 -34.0 + 150.2500 139.5000 -34.0 + 147.5000 151.2500 -34.0 + 147.2500 160.5000 -34.0 + 146.2500 162.5000 -34.0 + 147.2500 164.5000 -34.0 + 145.2500 176.5000 -34.0 + 142.2500 183.5000 -34.0 + 127.5000 197.2500 -34.0 + 122.5000 200.2500 -34.0 + 120.5000 200.2500 -34.0 + 112.5000 204.2500 -34.0 + 102.5000 203.2500 -34.0 + 98.5000 205.2500 -34.0 + 93.5000 204.2500 -34.0 + 91.5000 205.2500 -34.0 + 89.5000 205.2500 -34.0 + 83.5000 201.2500 -34.0 + 74.7500 194.5000 -34.0 + 73.7500 192.5000 -34.0 + 69.7500 189.5000 -34.0 + 69.7500 187.5000 -34.0 + 66.7500 183.5000 -34.0 + 62.7500 175.5000 -34.0 + 62.7500 170.5000 -34.0 + 61.7500 168.5000 -34.0 + 62.7500 167.5000 -34.0 + 61.7500 165.5000 -34.0 + 61.7500 143.5000 -34.0 + 60.7500 141.5000 -34.0 + 60.7500 135.5000 -34.0 + 59.7500 133.5000 -34.0 + 62.5000 129.7500 -34.0 + 63.7500 123.5000 -34.0 + 67.5000 119.7500 -34.0 + 69.5000 118.7500 -34.0 + 69.7500 117.5000 -34.0 + 71.5000 115.7500 -34.0 + 74.7500 105.5000 -34.0 + 80.5000 98.7500 -34.0 + 82.5000 98.7500 -34.0 + 84.7500 95.5000 -34.0 + 83.7500 93.5000 -34.0 + 83.7500 90.5000 -34.0 + 92.5000 83.7500 -34.0 + 94.5000 83.7500 -34.0 + 96.5000 84.7500 -34.0 + 99.5000 83.7500 -34.0 + 143.7500 191.5000 -34.0 + 145.5000 190.7500 -34.0 + 147.2500 191.5000 -34.0 + 145.5000 192.2500 -34.0 + 104.2500 67.5000 -36.0 + 103.5000 68.2500 -36.0 + 93.5000 68.2500 -36.0 + 91.5000 69.2500 -36.0 + 88.5000 69.2500 -36.0 + 86.5000 70.2500 -36.0 + 84.5000 70.2500 -36.0 + 79.5000 72.2500 -36.0 + 75.5000 75.2500 -36.0 + 73.5000 76.2500 -36.0 + 68.2500 82.5000 -36.0 + 59.2500 96.5000 -36.0 + 55.2500 104.5000 -36.0 + 53.2500 113.5000 -36.0 + 52.2500 120.5000 -36.0 + 51.2500 125.5000 -36.0 + 50.5000 127.2500 -36.0 + 49.2500 135.5000 -36.0 + 48.5000 137.2500 -36.0 + 48.2500 143.5000 -36.0 + 47.5000 145.2500 -36.0 + 47.2500 159.5000 -36.0 + 46.2500 166.5000 -36.0 + 47.2500 168.5000 -36.0 + 47.2500 174.5000 -36.0 + 48.2500 176.5000 -36.0 + 48.2500 178.5000 -36.0 + 50.5000 184.7500 -36.0 + 55.2500 195.5000 -36.0 + 60.2500 201.5000 -36.0 + 67.5000 207.7500 -36.0 + 75.5000 212.7500 -36.0 + 80.5000 213.7500 -36.0 + 82.2500 214.5000 -36.0 + 101.5000 214.7500 -36.0 + 110.5000 215.7500 -36.0 + 112.2500 216.5000 -36.0 + 119.5000 216.7500 -36.0 + 121.5000 215.7500 -36.0 + 124.5000 215.7500 -36.0 + 138.5000 208.7500 -36.0 + 148.7500 198.5000 -36.0 + 151.5000 194.7500 -36.0 + 154.7500 190.5000 -36.0 + 160.7500 179.5000 -36.0 + 161.7500 172.5000 -36.0 + 162.5000 170.7500 -36.0 + 162.7500 163.5000 -36.0 + 163.5000 161.7500 -36.0 + 163.7500 135.5000 -36.0 + 162.7500 133.5000 -36.0 + 162.7500 127.5000 -36.0 + 161.7500 125.5000 -36.0 + 161.7500 121.5000 -36.0 + 160.7500 119.5000 -36.0 + 160.7500 117.5000 -36.0 + 159.7500 115.5000 -36.0 + 159.7500 111.5000 -36.0 + 158.7500 109.5000 -36.0 + 158.7500 106.5000 -36.0 + 149.7500 88.5000 -36.0 + 143.7500 81.5000 -36.0 + 142.7500 79.5000 -36.0 + 136.5000 74.2500 -36.0 + 127.7500 69.5000 -36.0 + 125.5000 69.2500 -36.0 + 123.7500 68.5000 -36.0 + 118.5000 68.2500 -36.0 + 116.7500 67.5000 -36.0 + 101.7500 77.5000 -36.0 + 102.5000 76.7500 -36.0 + 104.5000 76.7500 -36.0 + 106.5000 79.7500 -36.0 + 110.2500 82.5000 -36.0 + 113.5000 82.7500 -36.0 + 117.5000 80.7500 -36.0 + 119.5000 80.7500 -36.0 + 124.5000 81.7500 -36.0 + 126.2500 83.5000 -36.0 + 132.2500 87.5000 -36.0 + 134.2500 91.5000 -36.0 + 136.2500 97.5000 -36.0 + 141.2500 103.5000 -36.0 + 144.2500 108.5000 -36.0 + 144.2500 110.5000 -36.0 + 149.2500 120.5000 -36.0 + 153.2500 127.5000 -36.0 + 153.2500 135.5000 -36.0 + 152.5000 137.2500 -36.0 + 151.2500 145.5000 -36.0 + 150.5000 147.2500 -36.0 + 150.2500 154.5000 -36.0 + 149.5000 156.2500 -36.0 + 149.2500 166.5000 -36.0 + 148.5000 168.2500 -36.0 + 148.2500 173.5000 -36.0 + 147.2500 176.5000 -36.0 + 145.5000 180.2500 -36.0 + 145.2500 182.5000 -36.0 + 142.5000 186.2500 -36.0 + 140.5000 187.2500 -36.0 + 129.5000 198.2500 -36.0 + 122.5000 202.2500 -36.0 + 120.5000 202.2500 -36.0 + 114.5000 205.2500 -36.0 + 112.5000 205.2500 -36.0 + 110.5000 206.2500 -36.0 + 108.5000 206.2500 -36.0 + 106.7500 205.5000 -36.0 + 102.5000 205.2500 -36.0 + 100.5000 206.2500 -36.0 + 96.5000 206.2500 -36.0 + 87.5000 205.2500 -36.0 + 79.5000 200.2500 -36.0 + 77.5000 199.2500 -36.0 + 72.7500 194.5000 -36.0 + 71.7500 192.5000 -36.0 + 69.5000 190.2500 -36.0 + 67.5000 189.2500 -36.0 + 63.7500 182.5000 -36.0 + 60.7500 176.5000 -36.0 + 60.7500 174.5000 -36.0 + 59.7500 172.5000 -36.0 + 59.7500 161.5000 -36.0 + 58.7500 158.5000 -36.0 + 59.5000 156.7500 -36.0 + 59.7500 147.5000 -36.0 + 58.7500 145.5000 -36.0 + 58.7500 141.5000 -36.0 + 57.7500 139.5000 -36.0 + 58.5000 138.7500 -36.0 + 57.7500 137.5000 -36.0 + 57.7500 133.5000 -36.0 + 60.5000 127.7500 -36.0 + 60.7500 123.5000 -36.0 + 63.7500 120.5000 -36.0 + 71.7500 104.5000 -36.0 + 76.7500 98.5000 -36.0 + 75.7500 95.5000 -36.0 + 80.5000 88.7500 -36.0 + 82.5000 87.7500 -36.0 + 86.5000 84.7500 -36.0 + 89.5000 84.7500 -36.0 + 92.5000 81.7500 -36.0 + 94.2500 82.5000 -36.0 + 97.5000 82.7500 -36.0 + 101.5000 79.7500 -36.0 + 145.7500 191.5000 -36.0 + 146.5000 190.7500 -36.0 + 147.2500 191.5000 -36.0 + 146.5000 192.2500 -36.0 + 97.2500 66.5000 -38.0 + 96.5000 67.2500 -38.0 + 90.5000 67.2500 -38.0 + 88.5000 68.2500 -38.0 + 85.2500 68.5000 -38.0 + 76.5000 72.2500 -38.0 + 71.5000 76.2500 -38.0 + 66.5000 82.2500 -38.0 + 62.2500 88.5000 -38.0 + 57.2500 96.5000 -38.0 + 54.2500 102.5000 -38.0 + 53.2500 107.5000 -38.0 + 52.2500 109.5000 -38.0 + 51.2500 116.5000 -38.0 + 50.2500 121.5000 -38.0 + 49.2500 123.5000 -38.0 + 48.2500 132.5000 -38.0 + 47.5000 134.2500 -38.0 + 46.2500 142.5000 -38.0 + 45.5000 144.2500 -38.0 + 45.2500 158.5000 -38.0 + 44.2500 167.5000 -38.0 + 45.2500 169.5000 -38.0 + 45.2500 174.5000 -38.0 + 46.2500 176.5000 -38.0 + 46.2500 179.5000 -38.0 + 48.5000 185.7500 -38.0 + 52.2500 194.5000 -38.0 + 57.2500 200.5000 -38.0 + 58.2500 202.5000 -38.0 + 64.2500 207.5000 -38.0 + 70.5000 211.7500 -38.0 + 74.5000 213.7500 -38.0 + 76.2500 214.5000 -38.0 + 79.5000 214.7500 -38.0 + 81.2500 215.5000 -38.0 + 100.5000 215.7500 -38.0 + 107.5000 216.7500 -38.0 + 109.2500 217.5000 -38.0 + 121.5000 217.7500 -38.0 + 123.5000 216.7500 -38.0 + 125.5000 216.7500 -38.0 + 136.5000 211.7500 -38.0 + 147.7500 202.5000 -38.0 + 150.5000 198.7500 -38.0 + 155.5000 192.7500 -38.0 + 159.5000 186.7500 -38.0 + 162.7500 177.5000 -38.0 + 163.5000 175.7500 -38.0 + 163.7500 172.5000 -38.0 + 164.5000 170.7500 -38.0 + 164.7500 162.5000 -38.0 + 165.5000 160.7500 -38.0 + 165.7500 142.5000 -38.0 + 164.7500 140.5000 -38.0 + 164.7500 133.5000 -38.0 + 163.7500 131.5000 -38.0 + 163.7500 125.5000 -38.0 + 162.7500 123.5000 -38.0 + 162.7500 120.5000 -38.0 + 161.7500 118.5000 -38.0 + 161.7500 114.5000 -38.0 + 160.7500 112.5000 -38.0 + 160.7500 109.5000 -38.0 + 158.7500 105.5000 -38.0 + 158.7500 103.5000 -38.0 + 150.7500 87.5000 -38.0 + 147.7500 84.5000 -38.0 + 146.7500 82.5000 -38.0 + 138.7500 74.5000 -38.0 + 132.7500 70.5000 -38.0 + 126.5000 68.2500 -38.0 + 124.7500 67.5000 -38.0 + 121.5000 67.2500 -38.0 + 119.7500 66.5000 -38.0 + 101.7500 75.5000 -38.0 + 103.5000 74.7500 -38.0 + 105.2500 75.5000 -38.0 + 105.5000 77.7500 -38.0 + 109.2500 80.5000 -38.0 + 116.5000 80.7500 -38.0 + 120.5000 78.7500 -38.0 + 122.2500 79.5000 -38.0 + 123.5000 78.7500 -38.0 + 127.2500 79.5000 -38.0 + 128.2500 81.5000 -38.0 + 129.5000 81.7500 -38.0 + 137.2500 91.5000 -38.0 + 137.2500 95.5000 -38.0 + 139.2500 100.5000 -38.0 + 146.2500 107.5000 -38.0 + 146.2500 109.5000 -38.0 + 155.2500 127.5000 -38.0 + 155.2500 135.5000 -38.0 + 153.5000 142.2500 -38.0 + 153.2500 154.5000 -38.0 + 152.5000 156.2500 -38.0 + 151.2500 171.5000 -38.0 + 146.2500 185.5000 -38.0 + 144.5000 186.2500 -38.0 + 129.5000 200.2500 -38.0 + 122.5000 204.2500 -38.0 + 119.5000 204.2500 -38.0 + 113.5000 207.2500 -38.0 + 102.5000 207.2500 -38.0 + 100.5000 208.2500 -38.0 + 90.5000 207.2500 -38.0 + 84.5000 205.2500 -38.0 + 76.5000 200.2500 -38.0 + 64.7500 187.5000 -38.0 + 58.7500 177.5000 -38.0 + 58.7500 175.5000 -38.0 + 57.7500 173.5000 -38.0 + 57.7500 167.5000 -38.0 + 56.7500 165.5000 -38.0 + 56.7500 155.5000 -38.0 + 57.5000 153.7500 -38.0 + 57.7500 147.5000 -38.0 + 56.7500 145.5000 -38.0 + 56.7500 140.5000 -38.0 + 55.7500 138.5000 -38.0 + 55.7500 134.5000 -38.0 + 54.7500 131.5000 -38.0 + 57.5000 128.7500 -38.0 + 58.7500 123.5000 -38.0 + 61.7500 119.5000 -38.0 + 69.5000 102.7500 -38.0 + 71.7500 94.5000 -38.0 + 79.5000 86.7500 -38.0 + 81.5000 86.7500 -38.0 + 84.5000 83.7500 -38.0 + 86.5000 83.7500 -38.0 + 89.5000 80.7500 -38.0 + 94.5000 80.7500 -38.0 + 96.5000 79.7500 -38.0 + 99.5000 79.7500 -38.0 + 101.5000 77.7500 -38.0 + 50.7500 182.5000 -38.0 + 51.5000 181.7500 -38.0 + 52.2500 182.5000 -38.0 + 51.5000 183.2500 -38.0 + 95.2500 65.5000 -40.0 + 94.5000 66.2500 -40.0 + 90.5000 66.2500 -40.0 + 88.5000 67.2500 -40.0 + 84.5000 67.2500 -40.0 + 74.5000 72.2500 -40.0 + 70.5000 75.2500 -40.0 + 65.5000 81.2500 -40.0 + 61.5000 87.2500 -40.0 + 58.2500 91.5000 -40.0 + 53.2500 101.5000 -40.0 + 52.2500 106.5000 -40.0 + 51.2500 108.5000 -40.0 + 49.2500 118.5000 -40.0 + 47.2500 127.5000 -40.0 + 46.2500 134.5000 -40.0 + 45.5000 136.2500 -40.0 + 44.2500 144.5000 -40.0 + 43.5000 146.2500 -40.0 + 43.2500 174.5000 -40.0 + 44.2500 176.5000 -40.0 + 44.2500 178.5000 -40.0 + 45.2500 180.5000 -40.0 + 45.2500 182.5000 -40.0 + 46.5000 185.7500 -40.0 + 50.2500 194.5000 -40.0 + 59.5000 205.7500 -40.0 + 63.2500 208.5000 -40.0 + 67.5000 211.7500 -40.0 + 74.2500 215.5000 -40.0 + 77.5000 215.7500 -40.0 + 79.2500 216.5000 -40.0 + 99.5000 216.7500 -40.0 + 106.5000 217.7500 -40.0 + 108.2500 218.5000 -40.0 + 122.5000 218.7500 -40.0 + 124.5000 217.7500 -40.0 + 126.5000 217.7500 -40.0 + 137.5000 212.7500 -40.0 + 148.5000 203.7500 -40.0 + 157.7500 192.5000 -40.0 + 163.5000 181.7500 -40.0 + 163.7500 179.5000 -40.0 + 164.7500 176.5000 -40.0 + 165.5000 174.7500 -40.0 + 165.7500 170.5000 -40.0 + 166.5000 168.7500 -40.0 + 166.7500 161.5000 -40.0 + 167.5000 159.7500 -40.0 + 167.7500 149.5000 -40.0 + 166.7500 147.5000 -40.0 + 166.7500 138.5000 -40.0 + 165.7500 136.5000 -40.0 + 165.7500 132.5000 -40.0 + 164.7500 130.5000 -40.0 + 164.7500 124.5000 -40.0 + 163.7500 122.5000 -40.0 + 163.7500 117.5000 -40.0 + 161.7500 113.5000 -40.0 + 161.7500 110.5000 -40.0 + 160.7500 108.5000 -40.0 + 160.7500 106.5000 -40.0 + 159.7500 104.5000 -40.0 + 159.7500 102.5000 -40.0 + 152.7500 88.5000 -40.0 + 147.7500 82.5000 -40.0 + 144.7500 78.5000 -40.0 + 137.5000 72.2500 -40.0 + 127.5000 67.2500 -40.0 + 125.7500 66.5000 -40.0 + 122.5000 66.2500 -40.0 + 120.7500 65.5000 -40.0 + 101.7500 73.5000 -40.0 + 102.5000 72.7500 -40.0 + 104.5000 73.7500 -40.0 + 106.2500 74.5000 -40.0 + 106.2500 77.5000 -40.0 + 110.2500 79.5000 -40.0 + 117.5000 79.7500 -40.0 + 121.5000 77.7500 -40.0 + 129.5000 77.7500 -40.0 + 133.2500 82.5000 -40.0 + 136.2500 88.5000 -40.0 + 140.2500 92.5000 -40.0 + 140.2500 95.5000 -40.0 + 142.2500 97.5000 -40.0 + 141.5000 99.2500 -40.0 + 142.2500 101.5000 -40.0 + 146.2500 105.5000 -40.0 + 150.2500 113.5000 -40.0 + 150.2500 115.5000 -40.0 + 153.2500 119.5000 -40.0 + 156.2500 124.5000 -40.0 + 156.2500 127.5000 -40.0 + 157.2500 130.5000 -40.0 + 156.2500 139.5000 -40.0 + 155.5000 141.2500 -40.0 + 155.2500 158.5000 -40.0 + 154.2500 163.5000 -40.0 + 153.2500 172.5000 -40.0 + 151.2500 178.5000 -40.0 + 149.2500 183.5000 -40.0 + 148.5000 185.2500 -40.0 + 146.5000 186.2500 -40.0 + 139.5000 193.2500 -40.0 + 129.5000 202.2500 -40.0 + 119.5000 207.2500 -40.0 + 116.5000 207.2500 -40.0 + 112.5000 209.2500 -40.0 + 108.5000 209.2500 -40.0 + 103.5000 208.2500 -40.0 + 101.5000 209.2500 -40.0 + 98.5000 209.2500 -40.0 + 96.7500 208.5000 -40.0 + 90.5000 208.2500 -40.0 + 85.5000 207.2500 -40.0 + 83.5000 206.2500 -40.0 + 75.5000 201.2500 -40.0 + 63.7500 188.5000 -40.0 + 60.7500 184.5000 -40.0 + 57.7500 179.5000 -40.0 + 57.7500 177.5000 -40.0 + 55.7500 173.5000 -40.0 + 55.7500 169.5000 -40.0 + 54.7500 167.5000 -40.0 + 54.7500 140.5000 -40.0 + 53.7500 138.5000 -40.0 + 53.7500 133.5000 -40.0 + 52.7500 131.5000 -40.0 + 53.7500 129.5000 -40.0 + 62.5000 112.7500 -40.0 + 62.7500 110.5000 -40.0 + 67.7500 100.5000 -40.0 + 68.5000 98.7500 -40.0 + 68.7500 94.5000 -40.0 + 72.5000 88.7500 -40.0 + 74.7500 87.5000 -40.0 + 81.5000 82.7500 -40.0 + 83.5000 82.7500 -40.0 + 83.7500 81.5000 -40.0 + 85.5000 79.7500 -40.0 + 91.5000 79.7500 -40.0 + 93.5000 78.7500 -40.0 + 95.5000 78.7500 -40.0 + 99.5000 76.7500 -40.0 + 99.7500 74.5000 -40.0 + 143.7500 95.5000 -40.0 + 144.5000 94.7500 -40.0 + 145.2500 95.5000 -40.0 + 144.5000 97.2500 -40.0 + 66.7500 204.5000 -40.0 + 67.5000 203.7500 -40.0 + 68.2500 204.5000 -40.0 + 67.5000 205.2500 -40.0 + 95.2500 64.5000 -42.0 + 94.5000 65.2500 -42.0 + 89.5000 65.2500 -42.0 + 87.5000 66.2500 -42.0 + 84.2500 66.5000 -42.0 + 75.5000 70.2500 -42.0 + 70.5000 74.2500 -42.0 + 68.5000 75.2500 -42.0 + 68.2500 76.5000 -42.0 + 64.5000 80.2500 -42.0 + 58.2500 88.5000 -42.0 + 53.5000 97.2500 -42.0 + 53.2500 99.5000 -42.0 + 51.2500 103.5000 -42.0 + 50.2500 108.5000 -42.0 + 49.2500 110.5000 -42.0 + 48.2500 117.5000 -42.0 + 47.5000 119.2500 -42.0 + 46.2500 127.5000 -42.0 + 45.5000 129.2500 -42.0 + 44.2500 137.5000 -42.0 + 43.2500 139.5000 -42.0 + 42.2500 146.5000 -42.0 + 41.5000 148.2500 -42.0 + 41.2500 154.5000 -42.0 + 40.2500 156.5000 -42.0 + 41.2500 158.5000 -42.0 + 41.2500 173.5000 -42.0 + 42.2500 175.5000 -42.0 + 42.2500 179.5000 -42.0 + 44.2500 183.5000 -42.0 + 44.2500 185.5000 -42.0 + 50.2500 197.5000 -42.0 + 58.2500 206.5000 -42.0 + 64.2500 211.5000 -42.0 + 70.5000 215.7500 -42.0 + 75.5000 216.7500 -42.0 + 77.2500 217.5000 -42.0 + 98.5000 217.7500 -42.0 + 105.5000 218.7500 -42.0 + 107.2500 219.5000 -42.0 + 124.5000 219.7500 -42.0 + 132.5000 215.7500 -42.0 + 134.5000 215.7500 -42.0 + 140.5000 211.7500 -42.0 + 142.5000 210.7500 -42.0 + 148.5000 204.7500 -42.0 + 150.5000 203.7500 -42.0 + 154.5000 198.7500 -42.0 + 159.5000 192.7500 -42.0 + 163.5000 185.7500 -42.0 + 163.7500 183.5000 -42.0 + 165.7500 179.5000 -42.0 + 166.7500 174.5000 -42.0 + 167.5000 172.7500 -42.0 + 167.7500 167.5000 -42.0 + 168.5000 165.7500 -42.0 + 168.7500 147.5000 -42.0 + 167.7500 145.5000 -42.0 + 167.7500 138.5000 -42.0 + 166.7500 136.5000 -42.0 + 166.7500 132.5000 -42.0 + 165.7500 130.5000 -42.0 + 165.7500 123.5000 -42.0 + 164.7500 121.5000 -42.0 + 164.7500 118.5000 -42.0 + 163.7500 116.5000 -42.0 + 163.7500 114.5000 -42.0 + 162.7500 112.5000 -42.0 + 162.7500 108.5000 -42.0 + 160.7500 104.5000 -42.0 + 160.7500 102.5000 -42.0 + 158.7500 98.5000 -42.0 + 156.5000 92.2500 -42.0 + 151.7500 85.5000 -42.0 + 150.7500 83.5000 -42.0 + 139.7500 72.5000 -42.0 + 132.7500 68.5000 -42.0 + 126.5000 66.2500 -42.0 + 124.7500 65.5000 -42.0 + 121.5000 65.2500 -42.0 + 119.7500 64.5000 -42.0 + 99.7500 72.5000 -42.0 + 100.5000 71.7500 -42.0 + 104.5000 71.7500 -42.0 + 108.2500 74.5000 -42.0 + 108.2500 76.5000 -42.0 + 109.5000 76.7500 -42.0 + 111.2500 77.5000 -42.0 + 116.5000 77.7500 -42.0 + 118.5000 76.7500 -42.0 + 121.5000 76.7500 -42.0 + 123.5000 75.7500 -42.0 + 130.5000 75.7500 -42.0 + 132.2500 76.5000 -42.0 + 132.2500 78.5000 -42.0 + 135.2500 82.5000 -42.0 + 137.2500 86.5000 -42.0 + 144.2500 95.5000 -42.0 + 145.2500 97.5000 -42.0 + 147.2500 98.5000 -42.0 + 147.2500 101.5000 -42.0 + 149.2500 105.5000 -42.0 + 149.2500 107.5000 -42.0 + 154.2500 117.5000 -42.0 + 157.2500 122.5000 -42.0 + 157.2500 126.5000 -42.0 + 158.2500 128.5000 -42.0 + 158.2500 132.5000 -42.0 + 157.5000 134.2500 -42.0 + 157.2500 142.5000 -42.0 + 156.2500 144.5000 -42.0 + 157.2500 146.5000 -42.0 + 157.2500 160.5000 -42.0 + 156.5000 162.2500 -42.0 + 156.2500 169.5000 -42.0 + 155.2500 174.5000 -42.0 + 154.2500 177.5000 -42.0 + 151.2500 184.5000 -42.0 + 136.5000 198.2500 -42.0 + 129.5000 204.2500 -42.0 + 124.5000 207.2500 -42.0 + 122.5000 207.2500 -42.0 + 118.5000 209.2500 -42.0 + 116.5000 209.2500 -42.0 + 114.5000 210.2500 -42.0 + 112.5000 210.2500 -42.0 + 109.5000 211.2500 -42.0 + 103.5000 209.2500 -42.0 + 98.5000 211.2500 -42.0 + 96.7500 209.5000 -42.0 + 90.5000 209.2500 -42.0 + 83.5000 208.2500 -42.0 + 79.5000 205.2500 -42.0 + 75.5000 203.2500 -42.0 + 59.7500 186.5000 -42.0 + 54.7500 176.5000 -42.0 + 54.7500 174.5000 -42.0 + 53.7500 172.5000 -42.0 + 53.7500 168.5000 -42.0 + 52.7500 166.5000 -42.0 + 52.7500 134.5000 -42.0 + 51.7500 132.5000 -42.0 + 51.7500 130.5000 -42.0 + 52.7500 127.5000 -42.0 + 54.7500 122.5000 -42.0 + 57.5000 118.7500 -42.0 + 58.7500 114.5000 -42.0 + 60.5000 110.7500 -42.0 + 60.7500 108.5000 -42.0 + 63.7500 104.5000 -42.0 + 66.7500 98.5000 -42.0 + 67.7500 89.5000 -42.0 + 71.5000 86.7500 -42.0 + 75.5000 84.7500 -42.0 + 82.5000 78.7500 -42.0 + 84.5000 77.7500 -42.0 + 86.2500 78.5000 -42.0 + 90.5000 78.7500 -42.0 + 91.5000 76.7500 -42.0 + 94.5000 76.7500 -42.0 + 97.5000 75.7500 -42.0 + 97.7500 73.5000 -42.0 + 46.7500 142.5000 -42.0 + 47.5000 141.7500 -42.0 + 48.2500 142.5000 -42.0 + 47.5000 144.2500 -42.0 + 96.2500 63.5000 -44.0 + 95.5000 64.2500 -44.0 + 90.5000 64.2500 -44.0 + 88.5000 65.2500 -44.0 + 86.5000 65.2500 -44.0 + 84.5000 66.2500 -44.0 + 82.5000 66.2500 -44.0 + 70.5000 72.2500 -44.0 + 65.5000 77.2500 -44.0 + 60.5000 83.2500 -44.0 + 57.2500 87.5000 -44.0 + 51.2500 99.5000 -44.0 + 50.2500 104.5000 -44.0 + 49.2500 106.5000 -44.0 + 47.2500 115.5000 -44.0 + 46.5000 117.2500 -44.0 + 46.2500 121.5000 -44.0 + 45.5000 123.2500 -44.0 + 44.2500 131.5000 -44.0 + 43.2500 133.5000 -44.0 + 40.2500 148.5000 -44.0 + 39.5000 150.2500 -44.0 + 39.2500 170.5000 -44.0 + 40.2500 172.5000 -44.0 + 40.2500 177.5000 -44.0 + 41.2500 179.5000 -44.0 + 41.2500 181.5000 -44.0 + 43.2500 185.5000 -44.0 + 43.2500 187.5000 -44.0 + 47.2500 195.5000 -44.0 + 50.2500 199.5000 -44.0 + 51.2500 201.5000 -44.0 + 59.5000 209.7500 -44.0 + 63.2500 212.5000 -44.0 + 69.5000 216.7500 -44.0 + 74.5000 217.7500 -44.0 + 76.2500 218.5000 -44.0 + 97.5000 218.7500 -44.0 + 104.5000 219.7500 -44.0 + 106.2500 220.5000 -44.0 + 122.5000 220.7500 -44.0 + 124.5000 219.7500 -44.0 + 127.7500 219.5000 -44.0 + 138.5000 214.7500 -44.0 + 143.5000 210.7500 -44.0 + 145.5000 209.7500 -44.0 + 155.5000 199.7500 -44.0 + 160.5000 193.7500 -44.0 + 165.7500 184.5000 -44.0 + 166.7500 179.5000 -44.0 + 168.7500 173.5000 -44.0 + 169.7500 164.5000 -44.0 + 170.5000 162.7500 -44.0 + 170.7500 156.5000 -44.0 + 169.7500 154.5000 -44.0 + 169.7500 145.5000 -44.0 + 168.7500 143.5000 -44.0 + 168.7500 138.5000 -44.0 + 167.7500 136.5000 -44.0 + 167.7500 131.5000 -44.0 + 166.7500 129.5000 -44.0 + 166.7500 124.5000 -44.0 + 165.7500 122.5000 -44.0 + 165.7500 118.5000 -44.0 + 164.7500 116.5000 -44.0 + 164.7500 114.5000 -44.0 + 163.7500 112.5000 -44.0 + 163.7500 108.5000 -44.0 + 161.7500 104.5000 -44.0 + 161.7500 102.5000 -44.0 + 158.7500 96.5000 -44.0 + 158.7500 94.5000 -44.0 + 153.7500 86.5000 -44.0 + 152.7500 84.5000 -44.0 + 147.7500 79.5000 -44.0 + 146.7500 77.5000 -44.0 + 138.5000 71.2500 -44.0 + 131.7500 67.5000 -44.0 + 125.5000 65.2500 -44.0 + 123.7500 64.5000 -44.0 + 119.5000 64.2500 -44.0 + 117.7500 63.5000 -44.0 + 97.5000 70.7500 -44.0 + 99.5000 70.7500 -44.0 + 101.5000 71.7500 -44.0 + 104.5000 70.7500 -44.0 + 106.2500 72.5000 -44.0 + 109.5000 72.7500 -44.0 + 114.5000 74.7500 -44.0 + 120.5000 71.7500 -44.0 + 123.2500 74.5000 -44.0 + 132.5000 74.7500 -44.0 + 134.2500 76.5000 -44.0 + 134.2500 79.5000 -44.0 + 138.2500 83.5000 -44.0 + 140.2500 87.5000 -44.0 + 144.2500 91.5000 -44.0 + 150.2500 101.5000 -44.0 + 150.2500 104.5000 -44.0 + 155.2500 114.5000 -44.0 + 155.2500 116.5000 -44.0 + 158.2500 120.5000 -44.0 + 158.2500 123.5000 -44.0 + 159.2500 125.5000 -44.0 + 159.2500 136.5000 -44.0 + 158.5000 138.2500 -44.0 + 158.2500 145.5000 -44.0 + 159.2500 147.5000 -44.0 + 159.2500 163.5000 -44.0 + 158.5000 165.2500 -44.0 + 158.2500 173.5000 -44.0 + 157.2500 176.5000 -44.0 + 154.2500 183.5000 -44.0 + 147.5000 190.2500 -44.0 + 137.5000 199.2500 -44.0 + 130.5000 205.2500 -44.0 + 125.5000 208.2500 -44.0 + 123.5000 208.2500 -44.0 + 117.5000 211.2500 -44.0 + 115.5000 211.2500 -44.0 + 113.5000 212.2500 -44.0 + 108.5000 212.2500 -44.0 + 106.7500 211.5000 -44.0 + 100.5000 211.2500 -44.0 + 98.5000 212.2500 -44.0 + 96.7500 210.5000 -44.0 + 88.5000 210.2500 -44.0 + 83.5000 209.2500 -44.0 + 75.5000 204.2500 -44.0 + 73.5000 203.2500 -44.0 + 58.7500 187.5000 -44.0 + 55.7500 183.5000 -44.0 + 55.7500 181.5000 -44.0 + 52.7500 175.5000 -44.0 + 52.7500 173.5000 -44.0 + 51.7500 171.5000 -44.0 + 51.7500 168.5000 -44.0 + 50.7500 166.5000 -44.0 + 50.7500 146.5000 -44.0 + 51.5000 144.7500 -44.0 + 51.7500 139.5000 -44.0 + 50.7500 137.5000 -44.0 + 50.7500 131.5000 -44.0 + 49.7500 128.5000 -44.0 + 56.7500 114.5000 -44.0 + 57.5000 112.7500 -44.0 + 57.7500 108.5000 -44.0 + 62.7500 100.5000 -44.0 + 64.7500 90.5000 -44.0 + 67.5000 87.7500 -44.0 + 72.5000 84.7500 -44.0 + 74.7500 83.5000 -44.0 + 77.5000 79.7500 -44.0 + 81.5000 76.7500 -44.0 + 86.5000 76.7500 -44.0 + 90.5000 72.7500 -44.0 + 92.2500 73.5000 -44.0 + 94.5000 73.7500 -44.0 + 98.2500 62.5000 -46.0 + 97.5000 63.2500 -46.0 + 92.5000 63.2500 -46.0 + 90.5000 64.2500 -46.0 + 87.5000 64.2500 -46.0 + 85.5000 65.2500 -46.0 + 82.2500 65.5000 -46.0 + 73.5000 69.2500 -46.0 + 67.5000 74.2500 -46.0 + 65.5000 75.2500 -46.0 + 59.5000 82.2500 -46.0 + 56.2500 86.5000 -46.0 + 50.2500 98.5000 -46.0 + 48.2500 107.5000 -46.0 + 47.2500 109.5000 -46.0 + 44.2500 124.5000 -46.0 + 40.2500 142.5000 -46.0 + 39.5000 144.2500 -46.0 + 38.2500 152.5000 -46.0 + 37.5000 154.2500 -46.0 + 37.2500 167.5000 -46.0 + 38.2500 169.5000 -46.0 + 38.2500 175.5000 -46.0 + 39.2500 177.5000 -46.0 + 39.2500 180.5000 -46.0 + 41.2500 184.5000 -46.0 + 41.5000 186.7500 -46.0 + 45.2500 195.5000 -46.0 + 49.2500 200.5000 -46.0 + 50.2500 202.5000 -46.0 + 57.2500 209.5000 -46.0 + 63.2500 214.5000 -46.0 + 68.5000 217.7500 -46.0 + 73.5000 218.7500 -46.0 + 75.2500 219.5000 -46.0 + 83.5000 219.7500 -46.0 + 85.5000 220.7500 -46.0 + 87.5000 219.7500 -46.0 + 96.5000 219.7500 -46.0 + 105.5000 220.7500 -46.0 + 107.2500 221.5000 -46.0 + 122.5000 221.7500 -46.0 + 124.5000 220.7500 -46.0 + 127.5000 220.7500 -46.0 + 143.5000 212.7500 -46.0 + 158.5000 198.7500 -46.0 + 162.7500 192.5000 -46.0 + 167.7500 182.5000 -46.0 + 169.7500 173.5000 -46.0 + 170.5000 171.7500 -46.0 + 170.7500 167.5000 -46.0 + 171.5000 165.7500 -46.0 + 171.7500 156.5000 -46.0 + 170.7500 154.5000 -46.0 + 170.7500 146.5000 -46.0 + 169.7500 144.5000 -46.0 + 169.7500 139.5000 -46.0 + 168.7500 137.5000 -46.0 + 168.7500 131.5000 -46.0 + 167.7500 129.5000 -46.0 + 167.7500 125.5000 -46.0 + 166.7500 123.5000 -46.0 + 166.7500 120.5000 -46.0 + 165.7500 118.5000 -46.0 + 165.7500 114.5000 -46.0 + 164.7500 112.5000 -46.0 + 164.7500 109.5000 -46.0 + 162.7500 105.5000 -46.0 + 162.7500 103.5000 -46.0 + 160.7500 99.5000 -46.0 + 160.7500 97.5000 -46.0 + 154.7500 85.5000 -46.0 + 146.7500 76.5000 -46.0 + 142.5000 73.2500 -46.0 + 138.7500 70.5000 -46.0 + 131.7500 66.5000 -46.0 + 129.5000 66.2500 -46.0 + 125.5000 64.2500 -46.0 + 118.5000 63.2500 -46.0 + 116.7500 62.5000 -46.0 + 82.5000 69.7500 -46.0 + 96.5000 69.7500 -46.0 + 102.5000 72.7500 -46.0 + 102.7500 70.5000 -46.0 + 104.5000 69.7500 -46.0 + 106.5000 71.7500 -46.0 + 108.5000 70.7500 -46.0 + 110.5000 70.7500 -46.0 + 117.5000 71.7500 -46.0 + 120.5000 70.7500 -46.0 + 125.5000 72.7500 -46.0 + 127.2500 73.5000 -46.0 + 132.5000 73.7500 -46.0 + 134.2500 74.5000 -46.0 + 137.2500 80.5000 -46.0 + 141.5000 83.7500 -46.0 + 143.5000 84.7500 -46.0 + 147.2500 90.5000 -46.0 + 147.2500 92.5000 -46.0 + 148.2500 95.5000 -46.0 + 151.2500 99.5000 -46.0 + 151.2500 102.5000 -46.0 + 152.2500 104.5000 -46.0 + 152.2500 106.5000 -46.0 + 155.2500 110.5000 -46.0 + 155.2500 112.5000 -46.0 + 159.2500 120.5000 -46.0 + 159.2500 122.5000 -46.0 + 160.2500 124.5000 -46.0 + 160.2500 126.5000 -46.0 + 161.2500 128.5000 -46.0 + 160.5000 130.2500 -46.0 + 160.2500 135.5000 -46.0 + 159.5000 137.2500 -46.0 + 159.2500 143.5000 -46.0 + 160.2500 145.5000 -46.0 + 160.2500 148.5000 -46.0 + 161.2500 150.5000 -46.0 + 161.2500 162.5000 -46.0 + 160.5000 164.2500 -46.0 + 160.2500 174.5000 -46.0 + 158.2500 178.5000 -46.0 + 157.2500 183.5000 -46.0 + 155.5000 184.2500 -46.0 + 149.5000 190.2500 -46.0 + 136.2500 202.5000 -46.0 + 129.5000 207.2500 -46.0 + 124.5000 210.2500 -46.0 + 122.5000 210.2500 -46.0 + 118.5000 212.2500 -46.0 + 115.5000 212.2500 -46.0 + 113.5000 213.2500 -46.0 + 109.5000 213.2500 -46.0 + 104.5000 212.2500 -46.0 + 102.5000 211.2500 -46.0 + 100.5000 212.2500 -46.0 + 98.5000 212.2500 -46.0 + 96.7500 211.5000 -46.0 + 88.5000 211.2500 -46.0 + 83.5000 210.2500 -46.0 + 75.5000 206.2500 -46.0 + 71.5000 203.2500 -46.0 + 69.5000 202.2500 -46.0 + 68.7500 200.5000 -46.0 + 54.7500 185.5000 -46.0 + 54.7500 183.5000 -46.0 + 51.7500 177.5000 -46.0 + 51.7500 175.5000 -46.0 + 49.7500 171.5000 -46.0 + 49.7500 168.5000 -46.0 + 48.7500 166.5000 -46.0 + 48.7500 147.5000 -46.0 + 49.5000 145.7500 -46.0 + 49.7500 130.5000 -46.0 + 48.7500 127.5000 -46.0 + 49.5000 125.7500 -46.0 + 49.7500 122.5000 -46.0 + 51.7500 118.5000 -46.0 + 56.5000 109.7500 -46.0 + 56.7500 107.5000 -46.0 + 60.5000 99.7500 -46.0 + 60.7500 95.5000 -46.0 + 63.7500 89.5000 -46.0 + 69.5000 84.7500 -46.0 + 71.5000 83.7500 -46.0 + 73.7500 81.5000 -46.0 + 72.7500 79.5000 -46.0 + 77.5000 76.7500 -46.0 + 81.5000 74.7500 -46.0 + 81.7500 73.5000 -46.0 + 80.7500 71.5000 -46.0 + 100.2500 61.5000 -48.0 + 99.5000 62.2500 -48.0 + 93.5000 62.2500 -48.0 + 91.5000 63.2500 -48.0 + 88.5000 63.2500 -48.0 + 86.5000 64.2500 -48.0 + 83.2500 64.5000 -48.0 + 72.5000 69.2500 -48.0 + 68.5000 72.2500 -48.0 + 66.5000 73.2500 -48.0 + 59.5000 80.2500 -48.0 + 56.2500 84.5000 -48.0 + 50.2500 96.5000 -48.0 + 49.2500 101.5000 -48.0 + 47.2500 105.5000 -48.0 + 46.2500 110.5000 -48.0 + 45.5000 112.2500 -48.0 + 44.2500 120.5000 -48.0 + 43.2500 125.5000 -48.0 + 42.2500 128.5000 -48.0 + 40.2500 137.5000 -48.0 + 39.2500 142.5000 -48.0 + 38.2500 144.5000 -48.0 + 37.2500 151.5000 -48.0 + 36.5000 153.2500 -48.0 + 36.2500 159.5000 -48.0 + 35.2500 162.5000 -48.0 + 36.2500 164.5000 -48.0 + 36.2500 171.5000 -48.0 + 37.2500 173.5000 -48.0 + 37.2500 176.5000 -48.0 + 38.2500 178.5000 -48.0 + 38.2500 180.5000 -48.0 + 39.2500 182.5000 -48.0 + 39.2500 184.5000 -48.0 + 43.2500 192.5000 -48.0 + 43.2500 194.5000 -48.0 + 46.2500 198.5000 -48.0 + 47.2500 200.5000 -48.0 + 55.2500 209.5000 -48.0 + 61.2500 214.5000 -48.0 + 66.2500 217.5000 -48.0 + 72.5000 219.7500 -48.0 + 81.5000 220.7500 -48.0 + 86.5000 221.7500 -48.0 + 88.5000 220.7500 -48.0 + 90.5000 220.7500 -48.0 + 95.5000 221.7500 -48.0 + 98.5000 220.7500 -48.0 + 100.2500 221.5000 -48.0 + 105.5000 221.7500 -48.0 + 107.2500 222.5000 -48.0 + 116.5000 222.7500 -48.0 + 118.5000 221.7500 -48.0 + 125.5000 221.7500 -48.0 + 127.5000 220.7500 -48.0 + 129.7500 220.5000 -48.0 + 142.5000 214.7500 -48.0 + 154.5000 203.7500 -48.0 + 156.5000 202.7500 -48.0 + 156.7500 201.5000 -48.0 + 162.7500 194.5000 -48.0 + 166.5000 187.7500 -48.0 + 169.7500 178.5000 -48.0 + 171.7500 169.5000 -48.0 + 172.5000 167.7500 -48.0 + 172.7500 157.5000 -48.0 + 171.7500 155.5000 -48.0 + 171.7500 147.5000 -48.0 + 170.7500 145.5000 -48.0 + 170.7500 139.5000 -48.0 + 169.7500 137.5000 -48.0 + 169.7500 133.5000 -48.0 + 168.7500 131.5000 -48.0 + 168.7500 127.5000 -48.0 + 167.7500 125.5000 -48.0 + 167.7500 121.5000 -48.0 + 166.7500 119.5000 -48.0 + 166.7500 117.5000 -48.0 + 165.7500 115.5000 -48.0 + 165.7500 110.5000 -48.0 + 163.7500 106.5000 -48.0 + 163.7500 104.5000 -48.0 + 160.7500 98.5000 -48.0 + 160.7500 96.5000 -48.0 + 158.7500 92.5000 -48.0 + 158.7500 90.5000 -48.0 + 154.7500 84.5000 -48.0 + 153.7500 82.5000 -48.0 + 145.7500 74.5000 -48.0 + 139.5000 70.2500 -48.0 + 127.5000 64.2500 -48.0 + 122.5000 63.2500 -48.0 + 120.7500 62.5000 -48.0 + 115.5000 62.2500 -48.0 + 113.7500 61.5000 -48.0 + 81.7500 69.5000 -48.0 + 82.5000 68.7500 -48.0 + 87.5000 69.7500 -48.0 + 89.5000 68.7500 -48.0 + 92.5000 68.7500 -48.0 + 94.5000 69.7500 -48.0 + 99.5000 70.7500 -48.0 + 102.5000 71.7500 -48.0 + 102.7500 70.5000 -48.0 + 104.5000 68.7500 -48.0 + 106.5000 70.7500 -48.0 + 108.5000 69.7500 -48.0 + 110.5000 69.7500 -48.0 + 112.5000 68.7500 -48.0 + 115.5000 68.7500 -48.0 + 117.2500 69.5000 -48.0 + 123.5000 69.7500 -48.0 + 128.5000 71.7500 -48.0 + 132.2500 73.5000 -48.0 + 135.5000 73.7500 -48.0 + 138.2500 78.5000 -48.0 + 139.2500 80.5000 -48.0 + 140.5000 80.7500 -48.0 + 142.5000 82.7500 -48.0 + 144.5000 83.7500 -48.0 + 147.2500 87.5000 -48.0 + 149.2500 91.5000 -48.0 + 149.2500 93.5000 -48.0 + 152.2500 99.5000 -48.0 + 152.2500 103.5000 -48.0 + 158.2500 115.5000 -48.0 + 158.2500 117.5000 -48.0 + 160.2500 119.5000 -48.0 + 160.2500 121.5000 -48.0 + 161.2500 123.5000 -48.0 + 161.2500 125.5000 -48.0 + 162.2500 127.5000 -48.0 + 161.5000 128.2500 -48.0 + 161.2500 134.5000 -48.0 + 160.5000 136.2500 -48.0 + 160.2500 142.5000 -48.0 + 161.2500 144.5000 -48.0 + 161.2500 146.5000 -48.0 + 162.2500 148.5000 -48.0 + 162.2500 169.5000 -48.0 + 161.2500 176.5000 -48.0 + 159.5000 180.2500 -48.0 + 159.2500 182.5000 -48.0 + 146.5000 195.2500 -48.0 + 135.5000 204.2500 -48.0 + 131.5000 207.2500 -48.0 + 119.5000 213.2500 -48.0 + 116.5000 213.2500 -48.0 + 114.5000 214.2500 -48.0 + 109.5000 214.2500 -48.0 + 104.5000 213.2500 -48.0 + 102.5000 212.2500 -48.0 + 100.5000 213.2500 -48.0 + 98.5000 213.2500 -48.0 + 94.7500 211.5000 -48.0 + 93.5000 212.2500 -48.0 + 90.5000 212.2500 -48.0 + 88.7500 211.5000 -48.0 + 82.5000 211.2500 -48.0 + 72.5000 206.2500 -48.0 + 53.7500 186.5000 -48.0 + 51.7500 182.5000 -48.0 + 51.7500 180.5000 -48.0 + 49.7500 176.5000 -48.0 + 49.7500 174.5000 -48.0 + 47.7500 170.5000 -48.0 + 47.7500 164.5000 -48.0 + 46.7500 162.5000 -48.0 + 46.7500 148.5000 -48.0 + 47.7500 143.5000 -48.0 + 48.5000 141.7500 -48.0 + 48.7500 129.5000 -48.0 + 47.7500 127.5000 -48.0 + 49.7500 118.5000 -48.0 + 58.7500 100.5000 -48.0 + 59.5000 98.7500 -48.0 + 59.7500 94.5000 -48.0 + 61.7500 90.5000 -48.0 + 63.5000 89.7500 -48.0 + 63.7500 88.5000 -48.0 + 69.7500 81.5000 -48.0 + 72.5000 77.7500 -48.0 + 74.5000 77.7500 -48.0 + 76.5000 75.7500 -48.0 + 79.5000 70.7500 -48.0 + 101.2500 60.5000 -50.0 + 100.5000 61.2500 -50.0 + 94.5000 61.2500 -50.0 + 92.5000 62.2500 -50.0 + 89.5000 62.2500 -50.0 + 87.5000 63.2500 -50.0 + 85.5000 63.2500 -50.0 + 83.5000 64.2500 -50.0 + 81.5000 64.2500 -50.0 + 69.5000 70.2500 -50.0 + 63.5000 75.2500 -50.0 + 59.5000 78.2500 -50.0 + 55.2500 84.5000 -50.0 + 51.2500 92.5000 -50.0 + 49.5000 96.2500 -50.0 + 49.2500 99.5000 -50.0 + 46.2500 105.5000 -50.0 + 43.2500 120.5000 -50.0 + 41.2500 129.5000 -50.0 + 40.2500 132.5000 -50.0 + 39.5000 134.2500 -50.0 + 39.2500 137.5000 -50.0 + 38.2500 140.5000 -50.0 + 36.2500 149.5000 -50.0 + 35.2500 156.5000 -50.0 + 34.5000 158.2500 -50.0 + 34.2500 167.5000 -50.0 + 35.2500 169.5000 -50.0 + 35.2500 174.5000 -50.0 + 36.2500 176.5000 -50.0 + 36.2500 179.5000 -50.0 + 38.2500 183.5000 -50.0 + 38.5000 185.7500 -50.0 + 41.2500 192.5000 -50.0 + 46.2500 200.5000 -50.0 + 47.2500 202.5000 -50.0 + 59.2500 214.5000 -50.0 + 68.5000 219.7500 -50.0 + 75.5000 220.7500 -50.0 + 77.2500 221.5000 -50.0 + 84.5000 221.7500 -50.0 + 86.5000 222.7500 -50.0 + 88.5000 221.7500 -50.0 + 90.5000 221.7500 -50.0 + 92.2500 222.5000 -50.0 + 105.5000 222.7500 -50.0 + 110.5000 223.7500 -50.0 + 112.5000 222.7500 -50.0 + 125.5000 222.7500 -50.0 + 129.5000 220.7500 -50.0 + 131.7500 220.5000 -50.0 + 140.5000 216.7500 -50.0 + 144.5000 213.7500 -50.0 + 146.5000 212.7500 -50.0 + 157.7500 202.5000 -50.0 + 160.5000 198.7500 -50.0 + 163.7500 194.5000 -50.0 + 169.7500 182.5000 -50.0 + 170.7500 177.5000 -50.0 + 171.7500 175.5000 -50.0 + 172.7500 168.5000 -50.0 + 173.5000 166.7500 -50.0 + 173.7500 161.5000 -50.0 + 172.7500 159.5000 -50.0 + 172.7500 150.5000 -50.0 + 171.7500 148.5000 -50.0 + 171.7500 141.5000 -50.0 + 170.7500 139.5000 -50.0 + 170.7500 135.5000 -50.0 + 169.7500 133.5000 -50.0 + 169.7500 130.5000 -50 + 168.7500 128.5000 -50.0 + 168.7500 122.5000 -50.0 + 167.7500 120.5000 -50.0 + 167.7500 118.5000 -50.0 + 166.7500 116.5000 -50.0 + 166.7500 114.5000 -50.0 + 165.7500 112.5000 -50.0 + 165.7500 108.5000 -50.0 + 162.7500 102.5000 -50.0 + 162.7500 100.5000 -50.0 + 159.7500 94.5000 -50.0 + 159.5000 92.2500 -50.0 + 156.7500 85.5000 -50.0 + 152.7500 80.5000 -50.0 + 151.7500 78.5000 -50.0 + 145.5000 73.2500 -50.0 + 134.7500 66.5000 -50.0 + 132.5000 66.2500 -50.0 + 126.5000 63.2500 -50.0 + 121.5000 62.2500 -50.0 + 119.7500 61.5000 -50.0 + 114.5000 61.2500 -50.0 + 112.7500 60.5000 -50.0 + 112.7500 68.5000 -50.0 + 113.5000 67.7500 -50.0 + 114.2500 68.5000 -50.0 + 115.5000 67.7500 -50.0 + 117.5000 67.7500 -50.0 + 124.5000 68.7500 -50.0 + 129.5000 69.7500 -50.0 + 133.2500 72.5000 -50.0 + 135.5000 72.7500 -50.0 + 140.2500 78.5000 -50.0 + 141.5000 80.7500 -50.0 + 143.5000 81.7500 -50.0 + 149.2500 88.5000 -50.0 + 149.2500 90.5000 -50.0 + 152.2500 96.5000 -50.0 + 152.2500 100.5000 -50.0 + 153.2500 102.5000 -50.0 + 153.2500 104.5000 -50.0 + 156.2500 108.5000 -50.0 + 161.2500 118.5000 -50.0 + 161.2500 121.5000 -50.0 + 162.2500 123.5000 -50.0 + 162.2500 126.5000 -50.0 + 161.5000 128.2500 -50.0 + 161.2500 135.5000 -50.0 + 162.2500 137.5000 -50.0 + 162.2500 144.5000 -50.0 + 163.2500 146.5000 -50.0 + 163.2500 156.5000 -50.0 + 164.2500 158.5000 -50.0 + 164.2500 166.5000 -50.0 + 163.2500 173.5000 -50.0 + 162.2500 178.5000 -50.0 + 159.2500 184.5000 -50.0 + 144.5000 198.2500 -50.0 + 133.5000 207.2500 -50.0 + 124.5000 212.2500 -50.0 + 122.5000 212.2500 -50.0 + 118.5000 214.2500 -50.0 + 116.5000 214.2500 -50.0 + 114.5000 215.2500 -50.0 + 110.5000 215.2500 -50.0 + 108.7500 214.5000 -50.0 + 99.5000 214.2500 -50.0 + 95.7500 212.5000 -50.0 + 92.5000 212.2500 -50.0 + 90.5000 213.2500 -50.0 + 88.7500 212.5000 -50.0 + 84.5000 212.2500 -50.0 + 79.5000 211.2500 -50.0 + 71.5000 207.2500 -50.0 + 61.5000 197.2500 -50.0 + 56.7500 190.5000 -50.0 + 50.7500 185.5000 -50.0 + 50.7500 182.5000 -50.0 + 48.7500 178.5000 -50.0 + 48.7500 176.5000 -50.0 + 45.7500 170.5000 -50.0 + 45.7500 164.5000 -50.0 + 44.7500 162.5000 -50.0 + 45.5000 161.7500 -50.0 + 44.7500 160.5000 -50.0 + 44.7500 147.5000 -50.0 + 46.7500 141.5000 -50.0 + 47.5000 139.7500 -50.0 + 47.7500 127.5000 -50.0 + 46.7500 125.5000 -50.0 + 47.7500 124.5000 -50.0 + 49.7500 115.5000 -50.0 + 57.7500 99.5000 -50.0 + 58.5000 97.7500 -50.0 + 58.7500 93.5000 -50.0 + 60.7500 91.5000 -50.0 + 63.5000 87.7500 -50.0 + 63.7500 84.5000 -50.0 + 67.5000 81.7500 -50.0 + 69.5000 80.7500 -50.0 + 69.7500 79.5000 -50.0 + 71.5000 77.7500 -50.0 + 73.5000 76.7500 -50.0 + 79.5000 69.7500 -50.0 + 82.5000 69.7500 -50.0 + 84.5000 68.7500 -50.0 + 98.5000 68.7500 -50.0 + 100.2500 70.5000 -50.0 + 102.5000 70.7500 -50.0 + 102.7500 69.5000 -50.0 + 104.5000 68.7500 -50.0 + 106.5000 69.7500 -50.0 + 108.5000 68.7500 -50.0 + 39.7500 179.5000 -50.0 + 40.5000 178.7500 -50.0 + 41.2500 179.5000 -50.0 + 40.5000 180.2500 -50.0 + 100.2500 59.5000 -52.0 + 99.5000 60.2500 -52.0 + 94.5000 60.2500 -52.0 + 92.5000 61.2500 -52.0 + 90.5000 61.2500 -52.0 + 88.5000 62.2500 -52.0 + 86.5000 62.2500 -52.0 + 84.5000 63.2500 -52.0 + 82.2500 63.5000 -52.0 + 73.5000 67.2500 -52.0 + 65.5000 72.2500 -52.0 + 63.5000 73.2500 -52.0 + 58.5000 78.2500 -52.0 + 55.2500 82.5000 -52.0 + 52.2500 88.5000 -52.0 + 51.5000 90.2500 -52.0 + 48.2500 99.5000 -52.0 + 47.5000 101.2500 -52.0 + 45.2500 107.5000 -52.0 + 43.2500 116.5000 -52.0 + 41.2500 126.5000 -52.0 + 40.2500 128.5000 -52.0 + 39.2500 133.5000 -52.0 + 38.2500 136.5000 -52.0 + 36.2500 145.5000 -52.0 + 35.2500 150.5000 -52.0 + 34.5000 152.2500 -52.0 + 34.2500 156.5000 -52.0 + 33.5000 158.2500 -52.0 + 33.2500 169.5000 -52.0 + 34.2500 171.5000 -52.0 + 34.2500 175.5000 -52.0 + 35.2500 177.5000 -52.0 + 35.2500 180.5000 -52.0 + 37.2500 184.5000 -52.0 + 37.2500 186.5000 -52.0 + 41.2500 194.5000 -52.0 + 44.2500 199.5000 -52.0 + 45.2500 201.5000 -52.0 + 59.5000 215.7500 -52.0 + 68.2500 220.5000 -52.0 + 70.5000 220.7500 -52.0 + 72.2500 221.5000 -52.0 + 76.5000 221.7500 -52.0 + 78.2500 222.5000 -52.0 + 88.5000 222.7500 -52.0 + 90.2500 223.5000 -52.0 + 120.5000 223.7500 -52.0 + 122.5000 222.7500 -52.0 + 127.5000 222.7500 -52.0 + 133.7500 220.5000 -52.0 + 142.5000 216.7500 -52.0 + 147.5000 212.7500 -52.0 + 149.5000 211.7500 -52.0 + 160.5000 200.7500 -52.0 + 164.7500 194.5000 -52.0 + 170.7500 182.5000 -52.0 + 172.7500 173.5000 -52.0 + 173.5000 171.7500 -52.0 + 173.7500 153.5000 -52.0 + 172.7500 151.5000 -52.0 + 172.7500 144.5000 -52.0 + 171.7500 142.5000 -52.0 + 171.7500 137.5000 -52.0 + 170.7500 135.5000 -52.0 + 170.7500 132.5000 -52.0 + 169.7500 130.5000 -52.0 + 169.7500 126.5000 -52.0 + 168.7500 124.5000 -52.0 + 168.7500 120.5000 -52.0 + 167.7500 118.5000 -52.0 + 167.7500 116.5000 -52.0 + 166.7500 114.5000 -52.0 + 166.7500 112.5000 -52.0 + 165.7500 110.5000 -52.0 + 165.7500 108.5000 -52.0 + 164.7500 106.5000 -52.0 + 164.7500 104.5000 -52.0 + 161.7500 98.5000 -52.0 + 161.5000 96.2500 -52.0 + 158.5000 89.2500 -52.0 + 155.7500 82.5000 -52.0 + 150.5000 76.2500 -52.0 + 146.7500 73.5000 -52.0 + 140.5000 69.2500 -52.0 + 131.7500 64.5000 -52.0 + 125.5000 62.2500 -52.0 + 123.7500 61.5000 -52.0 + 115.5000 60.2500 -52.0 + 113.7500 59.5000 -52.0 + 108.5000 60.7500 -52.0 + 111.5000 60.7500 -52.0 + 113.2500 62.5000 -52.0 + 111.5000 64.2500 -52.0 + 108.5000 64.2500 -52.0 + 106.7500 62.5000 -52.0 + 119.7500 66.5000 -52.0 + 120.5000 65.7500 -52.0 + 123.5000 66.7500 -52.0 + 129.2500 69.5000 -52.0 + 131.5000 69.7500 -52.0 + 135.2500 72.5000 -52.0 + 137.5000 72.7500 -52.0 + 143.2500 78.5000 -52.0 + 143.2500 80.5000 -52.0 + 148.2500 85.5000 -52.0 + 148.2500 87.5000 -52.0 + 151.2500 91.5000 -52.0 + 151.2500 93.5000 -52.0 + 152.2500 95.5000 -52.0 + 152.2500 98.5000 -52.0 + 154.2500 102.5000 -52.0 + 154.2500 104.5000 -52.0 + 159.2500 110.5000 -52.0 + 159.2500 112.5000 -52.0 + 162.2500 118.5000 -52.0 + 162.2500 120.5000 -52.0 + 163.2500 123.5000 -52.0 + 162.2500 125.5000 -52.0 + 161.2500 132.5000 -52.0 + 162.2500 134.5000 -52.0 + 162.2500 138.5000 -52.0 + 163.2500 140.5000 -52.0 + 163.2500 142.5000 -52.0 + 164.2500 144.5000 -52.0 + 164.2500 147.5000 -52.0 + 165.2500 149.5000 -52.0 + 164.5000 150.2500 -52.0 + 164.2500 153.5000 -52.0 + 165.2500 155.5000 -52.0 + 165.2500 169.5000 -52.0 + 163.2500 178.5000 -52.0 + 159.2500 186.5000 -52.0 + 145.2500 199.5000 -52.0 + 138.5000 204.2500 -52.0 + 130.5000 210.2500 -52.0 + 124.5000 213.2500 -52.0 + 122.5000 213.2500 -52.0 + 118.5000 215.2500 -52.0 + 108.5000 215.2500 -52.0 + 101.5000 214.2500 -52.0 + 98.5000 215.2500 -52.0 + 96.7500 213.5000 -52.0 + 84.5000 213.2500 -52.0 + 79.5000 212.2500 -52.0 + 70.5000 208.2500 -52.0 + 65.7500 203.5000 -52.0 + 56.7500 193.5000 -52.0 + 55.7500 191.5000 -52.0 + 53.7500 190.5000 -52.0 + 52.7500 188.5000 -52.0 + 51.5000 188.2500 -52.0 + 48.7500 185.5000 -52.0 + 48.7500 182.5000 -52.0 + 47.7500 180.5000 -52.0 + 47.7500 178.5000 -52.0 + 45.7500 174.5000 -52.0 + 45.7500 172.5000 -52.0 + 43.7500 168.5000 -52.0 + 43.7500 155.5000 -52.0 + 42.7500 153.5000 -52.0 + 42.7500 148.5000 -52.0 + 44.7500 142.5000 -52.0 + 46.5000 138.7500 -52.0 + 46.7500 124.5000 -52.0 + 47.7500 119.5000 -52.0 + 49.7500 113.5000 -52.0 + 53.7500 104.5000 -52.0 + 56.5000 100.7500 -52.0 + 57.7500 94.5000 -52.0 + 58.7500 92.5000 -52.0 + 61.5000 88.7500 -52.0 + 61.7500 86.5000 -52.0 + 62.7500 83.5000 -52.0 + 67.7500 80.5000 -52.0 + 69.7500 76.5000 -52.0 + 71.5000 75.7500 -52.0 + 78.5000 69.7500 -52.0 + 80.5000 69.7500 -52.0 + 84.5000 67.7500 -52.0 + 89.5000 67.7500 -52.0 + 92.5000 68.7500 -52.0 + 94.5000 67.7500 -52.0 + 99.5000 67.7500 -52.0 + 100.2500 69.5000 -52.0 + 102.5000 69.7500 -52.0 + 104.5000 67.7500 -52.0 + 105.5000 68.7500 -52.0 + 109.5000 66.7500 -52.0 + 110.2500 67.5000 -52.0 + 116.5000 67.7500 -52.0 + 37.7500 179.5000 -52.0 + 38.5000 178.7500 -52.0 + 40.2500 179.5000 -52.0 + 39.5000 181.2500 -52.0 + 163.7500 187.5000 -52.0 + 164.5000 186.7500 -52.0 + 165.2500 187.5000 -52.0 + 164.5000 188.2500 -52.0 + 98.2500 58.5000 -54.0 + 97.5000 59.2500 -54.0 + 94.5000 59.2500 -54.0 + 92.5000 60.2500 -54.0 + 88.5000 60.2500 -54.0 + 84.5000 62.2500 -54.0 + 82.2500 62.5000 -54.0 + 69.5000 68.2500 -54.0 + 61.5000 74.2500 -54.0 + 59.5000 75.2500 -54.0 + 59.2500 76.5000 -54.0 + 56.2500 79.5000 -54.0 + 52.5000 86.2500 -54.0 + 50.2500 92.5000 -54.0 + 48.5000 96.2500 -54.0 + 48.2500 98.5000 -54.0 + 45.2500 104.5000 -54.0 + 44.2500 109.5000 -54.0 + 40.2500 127.5000 -54.0 + 39.2500 129.5000 -54.0 + 37.2500 138.5000 -54.0 + 36.2500 141.5000 -54.0 + 35.5000 143.2500 -54.0 + 35.2500 147.5000 -54.0 + 34.2500 150.5000 -54.0 + 33.5000 152.2500 -54.0 + 33.2500 156.5000 -54.0 + 32.5000 158.2500 -54.0 + 32.2500 170.5000 -54.0 + 33.2500 172.5000 -54.0 + 33.2500 175.5000 -54.0 + 34.2500 177.5000 -54.0 + 34.2500 179.5000 -54.0 + 37.5000 188.7500 -54.0 + 40.2500 195.5000 -54.0 + 46.2500 203.5000 -54.0 + 47.2500 205.5000 -54.0 + 49.5000 207.7500 -54.0 + 51.5000 208.7500 -54.0 + 52.5000 210.7500 -54.0 + 54.5000 211.7500 -54.0 + 59.5000 216.7500 -54.0 + 68.2500 221.5000 -54.0 + 76.5000 222.7500 -54.0 + 85.5000 223.7500 -54.0 + 92.5000 224.7500 -54.0 + 94.5000 223.7500 -54.0 + 98.5000 223.7500 -54.0 + 100.2500 224.5000 -54.0 + 114.5000 224.7500 -54.0 + 116.5000 223.7500 -54.0 + 125.5000 223.7500 -54.0 + 127.5000 222.7500 -54.0 + 129.5000 222.7500 -54.0 + 131.5000 221.7500 -54.0 + 133.7500 221.5000 -54.0 + 142.5000 217.7500 -54.0 + 147.5000 213.7500 -54.0 + 149.5000 212.7500 -54.0 + 157.5000 204.7500 -54.0 + 163.7500 197.5000 -54.0 + 170.5000 184.7500 -54.0 + 170.7500 182.5000 -54.0 + 172.7500 178.5000 -54.0 + 173.7500 173.5000 -54.0 + 174.5000 171.7500 -54.0 + 174.7500 156.5000 -54.0 + 173.7500 154.5000 -54.0 + 173.7500 147.5000 -54.0 + 172.7500 145.5000 -54.0 + 172.7500 140.5000 -54.0 + 171.7500 138.5000 -54.0 + 171.7500 134.5000 -54.0 + 170.7500 132.5000 -54.0 + 170.7500 129.5000 -54.0 + 169.7500 127.5000 -54.0 + 169.7500 123.5000 -54.0 + 168.7500 121.5000 -54.0 + 168.7500 118.5000 -54.0 + 167.7500 116.5000 -54.0 + 167.7500 113.5000 -54.0 + 165.7500 109.5000 -54.0 + 165.7500 107.5000 -54.0 + 164.7500 105.5000 -54.0 + 164.7500 103.5000 -54.0 + 161.7500 97.5000 -54.0 + 161.5000 95.2500 -54.0 + 157.5000 86.2500 -54.0 + 154.7500 79.5000 -54.0 + 151.7500 76.5000 -54.0 + 145.7500 71.5000 -54.0 + 140.5000 68.2500 -54.0 + 129.7500 62.5000 -54.0 + 127.5000 62.2500 -54.0 + 123.5000 60.2500 -54.0 + 116.5000 59.2500 -54.0 + 114.7500 58.5000 -54.0 + 106.7500 60.5000 -54.0 + 107.5000 59.7500 -54.0 + 111.5000 59.7500 -54.0 + 113.2500 60.5000 -54.0 + 114.2500 62.5000 -54.0 + 112.5000 63.2500 -54.0 + 110.5000 64.2500 -54.0 + 106.5000 64.2500 -54.0 + 105.7500 62.5000 -54.0 + 98.7500 61.5000 -54.0 + 99.5000 60.7500 -54.0 + 101.5000 60.7500 -54.0 + 103.2500 61.5000 -54.0 + 102.5000 63.2500 -54.0 + 99.5000 63.2500 -54.0 + 119.7500 65.5000 -54.0 + 120.5000 64.7500 -54.0 + 122.5000 64.7500 -54.0 + 125.5000 65.7500 -54.0 + 129.2500 68.5000 -54.0 + 134.2500 71.5000 -54.0 + 137.5000 71.7500 -54.0 + 141.2500 74.5000 -54.0 + 144.2500 78.5000 -54.0 + 144.2500 80.5000 -54.0 + 149.2500 85.5000 -54.0 + 149.2500 87.5000 -54.0 + 153.2500 95.5000 -54.0 + 153.2500 98.5000 -54.0 + 155.2500 103.5000 -54.0 + 160.2500 109.5000 -54.0 + 160.2500 111.5000 -54.0 + 163.2500 117.5000 -54.0 + 163.2500 123.5000 -54.0 + 162.5000 125.2500 -54.0 + 162.2500 135.5000 -54.0 + 163.2500 137.5000 -54.0 + 163.2500 139.5000 -54.0 + 164.2500 141.5000 -54.0 + 164.2500 143.5000 -54.0 + 165.2500 145.5000 -54.0 + 165.2500 156.5000 -54.0 + 166.2500 158.5000 -54.0 + 166.2500 171.5000 -54.0 + 165.2500 174.5000 -54.0 + 164.5000 176.2500 -54.0 + 164.2500 179.5000 -54.0 + 163.2500 182.5000 -54.0 + 159.2500 187.5000 -54.0 + 158.2500 189.5000 -54.0 + 148.5000 198.2500 -54.0 + 144.5000 201.2500 -54.0 + 130.5000 211.2500 -54.0 + 125.5000 214.2500 -54.0 + 122.5000 214.2500 -54.0 + 120.5000 215.2500 -54.0 + 118.5000 215.2500 -54.0 + 114.5000 217.2500 -54.0 + 111.5000 217.2500 -54.0 + 108.5000 216.2500 -54.0 + 106.7500 215.5000 -54.0 + 99.5000 215.2500 -54.0 + 97.7500 214.5000 -54.0 + 92.5000 214.2500 -54.0 + 90.5000 215.2500 -54.0 + 83.5000 214.2500 -54.0 + 74.5000 212.2500 -54.0 + 67.5000 206.2500 -54.0 + 65.5000 205.2500 -54.0 + 50.7500 189.5000 -54.0 + 49.7500 187.5000 -54.0 + 48.5000 187.2500 -54.0 + 47.7500 185.5000 -54.0 + 46.7500 183.5000 -54.0 + 46.7500 181.5000 -54.0 + 45.7500 179.5000 -54.0 + 45.7500 177.5000 -54.0 + 42.7500 171.5000 -54.0 + 42.7500 163.5000 -54.0 + 41.7500 161.5000 -54.0 + 41.7500 146.5000 -54.0 + 45.5000 138.7500 -54.0 + 45.7500 136.5000 -54.0 + 46.7500 131.5000 -54.0 + 45.7500 129.5000 -54.0 + 45.7500 123.5000 -54.0 + 46.7500 121.5000 -54.0 + 47.7500 116.5000 -54.0 + 49.5000 112.7500 -54.0 + 49.7500 110.5000 -54.0 + 52.7500 104.5000 -54.0 + 56.5000 97.7500 -54.0 + 56.7500 95.5000 -54.0 + 59.5000 89.7500 -54.0 + 59.7500 85.5000 -54.0 + 63.5000 81.7500 -54.0 + 65.5000 80.7500 -54.0 + 69.5000 75.7500 -54.0 + 73.5000 73.7500 -54.0 + 76.5000 70.7500 -54.0 + 83.5000 66.7500 -54.0 + 92.5000 66.7500 -54.0 + 94.5000 65.7500 -54.0 + 99.5000 66.7500 -54.0 + 101.5000 68.7500 -54.0 + 103.5000 67.7500 -54.0 + 105.5000 67.7500 -54.0 + 109.5000 65.7500 -54.0 + 110.2500 66.5000 -54.0 + 116.5000 66.7500 -54.0 + 37.7500 180.5000 -54.0 + 38.5000 179.7500 -54.0 + 39.2500 180.5000 -54.0 + 38.5000 181.2500 -54.0 + 97.2500 57.5000 -56.0 + 96.5000 58.2500 -56.0 + 92.5000 58.2500 -56.0 + 90.5000 59.2500 -56.0 + 88.5000 59.2500 -56.0 + 84.5000 61.2500 -56.0 + 82.5000 61.2500 -56.0 + 68.5000 68.2500 -56.0 + 66.2500 69.5000 -56.0 + 59.5000 74.2500 -56.0 + 56.2500 78.5000 -56.0 + 52.2500 86.5000 -56.0 + 49.5000 92.2500 -56.0 + 49.2500 94.5000 -56.0 + 45.2500 102.5000 -56.0 + 43.2500 112.5000 -56.0 + 42.2500 115.5000 -56.0 + 40.2500 124.5000 -56.0 + 39.2500 126.5000 -56.0 + 38.2500 133.5000 -56.0 + 36.2500 137.5000 -56.0 + 34.2500 147.5000 -56.0 + 33.2500 149.5000 -56.0 + 32.2500 158.5000 -56.0 + 31.5000 160.2500 -56.0 + 31.2500 171.5000 -56.0 + 32.2500 173.5000 -56.0 + 32.2500 175.5000 -56.0 + 33.2500 177.5000 -56.0 + 33.2500 179.5000 -56.0 + 36.5000 188.7500 -56.0 + 39.2500 195.5000 -56.0 + 45.2500 203.5000 -56.0 + 46.2500 205.5000 -56.0 + 59.2500 217.5000 -56.0 + 66.2500 221.5000 -56.0 + 72.5000 222.7500 -56.0 + 74.2500 223.5000 -56.0 + 82.5000 223.7500 -56.0 + 84.2500 224.5000 -56.0 + 101.5000 224.7500 -56.0 + 103.2500 225.5000 -56.0 + 111.5000 225.7500 -56.0 + 113.5000 224.7500 -56.0 + 122.5000 224.7500 -56.0 + 124.5000 223.7500 -56.0 + 128.5000 223.7500 -56.0 + 130.5000 222.7500 -56.0 + 132.7500 222.5000 -56.0 + 139.5000 219.7500 -56.0 + 147.5000 214.7500 -56.0 + 149.5000 213.7500 -56.0 + 158.5000 204.7500 -56.0 + 163.5000 198.7500 -56.0 + 166.7500 193.5000 -56.0 + 168.7500 189.5000 -56.0 + 170.5000 185.7500 -56.0 + 173.7500 176.5000 -56.0 + 174.5000 174.7500 -56.0 + 174.7500 152.5000 -56.0 + 173.7500 150.5000 -56.0 + 173.7500 144.5000 -56.0 + 172.7500 142.5000 -56.0 + 172.7500 138.5000 -56.0 + 171.7500 136.5000 -56.0 + 171.7500 132.5000 -56.0 + 170.7500 130.5000 -56.0 + 170.7500 127.5000 -56.0 + 169.7500 125.5000 -56.0 + 169.7500 122.5000 -56.0 + 168.7500 120.5000 -56.0 + 168.7500 117.5000 -56.0 + 167.7500 115.5000 -56.0 + 167.7500 112.5000 -56.0 + 165.7500 108.5000 -56.0 + 165.7500 106.5000 -56.0 + 164.7500 104.5000 -56.0 + 164.7500 102.5000 -56.0 + 160.7500 94.5000 -56.0 + 160.7500 92.5000 -56.0 + 154.7500 80.5000 -56.0 + 154.7500 78.5000 -56.0 + 148.7500 72.5000 -56.0 + 140.5000 67.2500 -56.0 + 124.5000 59.2500 -56.0 + 117.5000 58.2500 -56.0 + 115.7500 57.5000 -56.0 + 99.7500 59.5000 -56.0 + 101.5000 58.7500 -56.0 + 103.2500 59.5000 -56.0 + 104.2500 61.5000 -56.0 + 103.5000 63.2500 -56.0 + 97.5000 63.2500 -56.0 + 95.7500 61.5000 -56.0 + 97.5000 59.7500 -56.0 + 105.7500 59.5000 -56.0 + 106.5000 58.7500 -56.0 + 111.5000 58.7500 -56.0 + 113.2500 59.5000 -56.0 + 114.2500 61.5000 -56.0 + 111.5000 63.2500 -56.0 + 109.5000 63.2500 -56.0 + 107.5000 64.2500 -56.0 + 105.5000 63.2500 -56.0 + 104.7500 61.5000 -56.0 + 114.7500 60.5000 -56.0 + 115.5000 59.7500 -56.0 + 117.5000 59.7500 -56.0 + 119.2500 61.5000 -56.0 + 116.5000 63.2500 -56.0 + 115.7500 62.5000 -56.0 + 119.7500 64.5000 -56.0 + 120.5000 63.7500 -56.0 + 122.5000 63.7500 -56.0 + 127.5000 65.7500 -56.0 + 130.2500 68.5000 -56.0 + 135.2500 71.5000 -56.0 + 139.5000 71.7500 -56.0 + 144.2500 76.5000 -56.0 + 144.2500 78.5000 -56.0 + 146.5000 81.7500 -56.0 + 148.5000 82.7500 -56.0 + 150.2500 85.5000 -56.0 + 150.2500 89.5000 -56.0 + 153.2500 95.5000 -56.0 + 153.2500 97.5000 -56.0 + 155.2500 101.5000 -56.0 + 161.2500 109.5000 -56.0 + 161.2500 111.5000 -56.0 + 163.2500 115.5000 -56.0 + 163.2500 118.5000 -56.0 + 164.2500 120.5000 -56.0 + 162.5000 124.2500 -56.0 + 162.2500 133.5000 -56.0 + 163.2500 135.5000 -56.0 + 163.2500 139.5000 -56.0 + 165.2500 143.5000 -56.0 + 165.2500 147.5000 -56.0 + 166.2500 149.5000 -56.0 + 166.2500 159.5000 -56.0 + 167.2500 161.5000 -56.0 + 167.2500 169.5000 -56.0 + 166.5000 171.2500 -56.0 + 165.2500 179.5000 -56.0 + 163.5000 183.2500 -56.0 + 159.5000 189.2500 -56.0 + 146.2500 201.5000 -56.0 + 139.5000 206.2500 -56.0 + 137.2500 207.5000 -56.0 + 130.5000 212.2500 -56.0 + 124.5000 215.2500 -56.0 + 121.5000 215.2500 -56.0 + 119.5000 216.2500 -56.0 + 117.5000 216.2500 -56.0 + 113.5000 218.2500 -56.0 + 110.5000 218.2500 -56.0 + 107.5000 217.2500 -56.0 + 105.7500 216.5000 -56.0 + 100.5000 216.2500 -56.0 + 98.7500 215.5000 -56.0 + 92.5000 215.2500 -56.0 + 90.5000 216.2500 -56.0 + 88.5000 216.2500 -56.0 + 86.5000 215.2500 -56.0 + 77.5000 214.2500 -56.0 + 74.5000 213.2500 -56.0 + 70.5000 210.2500 -56.0 + 68.5000 209.2500 -56.0 + 45.7500 185.5000 -56.0 + 45.7500 182.5000 -56.0 + 43.7500 178.5000 -56.0 + 43.7500 176.5000 -56.0 + 40.7500 170.5000 -56.0 + 41.7500 168.5000 -56.0 + 40.7500 166.5000 -56.0 + 40.7500 147.5000 -56.0 + 41.7500 144.5000 -56.0 + 44.5000 138.7500 -56.0 + 44.7500 136.5000 -56.0 + 45.5000 134.7500 -56.0 + 45.7500 126.5000 -56.0 + 44.7500 124.5000 -56.0 + 45.7500 119.5000 -56.0 + 47.7500 115.5000 -56.0 + 48.7500 110.5000 -56.0 + 51.5000 104.7500 -56.0 + 55.5000 97.7500 -56.0 + 55.7500 95.5000 -56.0 + 57.5000 91.7500 -56.0 + 57.7500 88.5000 -56.0 + 58.7500 85.5000 -56.0 + 63.5000 80.7500 -56.0 + 65.5000 79.7500 -56.0 + 66.7500 77.5000 -56.0 + 67.7500 75.5000 -56.0 + 72.5000 73.7500 -56.0 + 72.7500 72.5000 -56.0 + 74.5000 71.7500 -56.0 + 80.5000 67.7500 -56.0 + 84.5000 65.7500 -56.0 + 87.5000 65.7500 -56.0 + 90.5000 64.7500 -56.0 + 99.5000 65.7500 -56.0 + 101.2500 66.5000 -56.0 + 106.5000 66.7500 -56.0 + 108.5000 65.7500 -56.0 + 115.5000 65.7500 -56.0 + 117.5000 64.7500 -56.0 + 69.7500 70.5000 -56.0 + 70.5000 69.7500 -56.0 + 71.2500 70.5000 -56.0 + 70.5000 71.2500 -56.0 + 104.2500 55.5000 -58.0 + 103.5000 56.2500 -58.0 + 96.5000 56.2500 -58.0 + 94.5000 57.2500 -58.0 + 90.5000 57.2500 -58.0 + 86.5000 59.2500 -58.0 + 84.5000 59.2500 -58.0 + 64.5000 69.2500 -58.0 + 58.2500 74.5000 -58.0 + 49.5000 91.2500 -58.0 + 49.2500 93.5000 -58.0 + 44.2500 103.5000 -58.0 + 43.2500 110.5000 -58.0 + 42.5000 112.2500 -58.0 + 41.2500 120.5000 -58.0 + 39.2500 124.5000 -58.0 + 38.2500 131.5000 -58.0 + 36.2500 135.5000 -58.0 + 34.2500 144.5000 -58.0 + 33.2500 146.5000 -58.0 + 32.2500 153.5000 -58.0 + 31.5000 155.2500 -58.0 + 31.2500 160.5000 -58.0 + 30.5000 162.2500 -58.0 + 30.2500 170.5000 -58.0 + 31.2500 172.5000 -58.0 + 31.2500 176.5000 -58.0 + 33.2500 180.5000 -58.0 + 33.2500 183.5000 -58.0 + 42.2500 201.5000 -58.0 + 47.2500 207.5000 -58.0 + 56.2500 215.5000 -58.0 + 60.5000 218.7500 -58.0 + 67.2500 222.5000 -58.0 + 69.5000 222.7500 -58.0 + 71.2500 223.5000 -58.0 + 78.5000 223.7500 -58.0 + 80.2500 224.5000 -58.0 + 85.5000 224.7500 -58.0 + 87.2500 225.5000 -58.0 + 93.5000 225.7500 -58.0 + 95.5000 224.7500 -58.0 + 97.2500 225.5000 -58.0 + 118.5000 225.7500 -58.0 + 120.5000 224.7500 -58.0 + 127.5000 224.7500 -58.0 + 129.5000 223.7500 -58.0 + 131.7500 223.5000 -58.0 + 144.5000 217.7500 -58.0 + 148.5000 214.7500 -58.0 + 150.5000 213.7500 -58.0 + 158.5000 205.7500 -58.0 + 163.5000 199.7500 -58.0 + 167.7500 192.5000 -58.0 + 172.7500 182.5000 -58.0 + 173.7500 177.5000 -58.0 + 174.5000 175.7500 -58.0 + 174.7500 170.5000 -58.0 + 175.5000 168.7500 -58.0 + 175.7500 159.5000 -58.0 + 174.7500 157.5000 -58.0 + 174.7500 149.5000 -58.0 + 173.7500 147.5000 -58.0 + 173.7500 140.5000 -58.0 + 172.7500 138.5000 -58.0 + 172.7500 136.5000 -58.0 + 171.7500 134.5000 -58.0 + 171.7500 130.5000 -58.0 + 170.7500 128.5000 -58.0 + 170.7500 126.5000 -58.0 + 169.7500 124.5000 -58.0 + 169.7500 121.5000 -58.0 + 168.7500 119.5000 -58.0 + 168.7500 116.5000 -58.0 + 167.7500 114.5000 -58.0 + 167.7500 112.5000 -58.0 + 166.7500 110.5000 -58.0 + 166.7500 108.5000 -58.0 + 164.7500 104.5000 -58.0 + 164.7500 102.5000 -58.0 + 162.7500 98.5000 -58.0 + 162.7500 96.5000 -58.0 + 158.7500 88.5000 -58.0 + 158.7500 86.5000 -58.0 + 155.7500 82.5000 -58.0 + 153.7500 76.5000 -58.0 + 148.7500 71.5000 -58.0 + 140.5000 66.2500 -58.0 + 131.5000 61.2500 -58.0 + 125.5000 58.2500 -58.0 + 120.5000 57.2500 -58.0 + 118.7500 56.5000 -58.0 + 111.5000 56.2500 -58.0 + 109.7500 55.5000 -58.0 + 99.7500 58.5000 -58.0 + 100.5000 57.7500 -58.0 + 102.5000 57.7500 -58.0 + 104.5000 58.7500 -58.0 + 106.5000 57.7500 -58.0 + 112.5000 57.7500 -58.0 + 121.5000 59.7500 -58.0 + 123.2500 61.5000 -58.0 + 121.5000 63.2500 -58.0 + 117.5000 63.2500 -58.0 + 113.5000 61.2500 -58.0 + 109.5000 63.2500 -58.0 + 107.5000 63.2500 -58.0 + 105.5000 62.2500 -58.0 + 103.5000 63.2500 -58.0 + 94.5000 63.2500 -58.0 + 90.7500 61.5000 -58.0 + 94.5000 58.7500 -58.0 + 118.7500 64.5000 -58.0 + 119.5000 63.7500 -58.0 + 123.5000 63.7500 -58.0 + 128.5000 65.7500 -58.0 + 132.5000 69.7500 -58.0 + 134.5000 70.7500 -58.0 + 136.2500 71.5000 -58.0 + 140.5000 71.7500 -58.0 + 142.2500 73.5000 -58.0 + 146.5000 80.7500 -58.0 + 148.5000 81.7500 -58.0 + 151.2500 86.5000 -58.0 + 151.2500 90.5000 -58.0 + 152.2500 92.5000 -58.0 + 154.5000 98.7500 -58.0 + 162.2500 108.5000 -58.0 + 162.2500 110.5000 -58.0 + 163.2500 112.5000 -58.0 + 163.2500 116.5000 -58.0 + 164.2500 118.5000 -58.0 + 163.2500 123.5000 -58.0 + 162.5000 125.2500 -58.0 + 163.2500 126.5000 -58.0 + 163.2500 137.5000 -58.0 + 165.2500 141.5000 -58.0 + 165.2500 143.5000 -58.0 + 166.2500 145.5000 -58.0 + 166.2500 150.5000 -58.0 + 167.2500 152.5000 -58.0 + 167.2500 172.5000 -58.0 + 166.5000 174.2500 -58.0 + 166.2500 179.5000 -58.0 + 164.5000 183.2500 -58.0 + 160.2500 189.5000 -58.0 + 159.2500 191.5000 -58.0 + 157.5000 192.2500 -58.0 + 151.5000 198.2500 -58.0 + 144.5000 204.2500 -58.0 + 140.5000 206.2500 -58.0 + 135.5000 210.2500 -58.0 + 123.5000 216.2500 -58.0 + 121.5000 216.2500 -58.0 + 119.5000 217.2500 -58.0 + 117.5000 217.2500 -58.0 + 115.5000 218.2500 -58.0 + 108.5000 218.2500 -58.0 + 106.7500 217.5000 -58.0 + 101.5000 217.2500 -58.0 + 95.5000 215.2500 -58.0 + 91.5000 217.2500 -58.0 + 87.5000 217.2500 -58.0 + 82.5000 216.2500 -58.0 + 80.7500 215.5000 -58.0 + 76.5000 215.2500 -58.0 + 70.5000 212.2500 -58.0 + 55.7500 198.5000 -58.0 + 54.7500 196.5000 -58.0 + 43.7500 184.5000 -58.0 + 43.7500 182.5000 -58.0 + 42.7500 180.5000 -58.0 + 42.7500 177.5000 -58.0 + 39.7500 171.5000 -58.0 + 39.7500 149.5000 -58.0 + 40.7500 142.5000 -58.0 + 43.7500 136.5000 -58.0 + 44.7500 131.5000 -58.0 + 45.5000 129.7500 -58.0 + 45.7500 125.5000 -58.0 + 44.7500 123.5000 -58.0 + 45.7500 116.5000 -58.0 + 46.7500 113.5000 -58.0 + 51.5000 102.7500 -58.0 + 55.5000 95.7500 -58.0 + 55.7500 93.5000 -58.0 + 56.7500 88.5000 -58.0 + 57.7500 85.5000 -58.0 + 62.5000 80.7500 -58.0 + 64.7500 79.5000 -58.0 + 66.7500 75.5000 -58.0 + 72.5000 71.7500 -58.0 + 86.5000 64.7500 -58.0 + 99.5000 64.7500 -58.0 + 105.5000 66.7500 -58.0 + 109.5000 64.7500 -58.0 + 68.5000 69.7500 -58.0 + 70.2500 70.5000 -58.0 + 68.5000 72.2500 -58.0 + 66.7500 71.5000 -58.0 + 34.7500 175.5000 -58.0 + 35.5000 174.7500 -58.0 + 36.2500 176.5000 -58.0 + 35.5000 178.2500 -58.0 + 34.7500 177.5000 -58.0 + 169.7500 177.5000 -58.0 + 170.5000 176.7500 -58.0 + 171.2500 177.5000 -58.0 + 170.5000 178.2500 -58.0 + 100.2500 54.5000 -60.0 + 99.5000 55.2500 -60.0 + 93.5000 55.2500 -60.0 + 91.5000 56.2500 -60.0 + 88.5000 56.2500 -60.0 + 62.5000 69.2500 -60.0 + 59.5000 72.2500 -60.0 + 56.2500 77.5000 -60.0 + 49.2500 91.5000 -60.0 + 46.2500 98.5000 -60.0 + 44.5000 102.2500 -60.0 + 41.2500 118.5000 -60.0 + 40.2500 120.5000 -60.0 + 39.2500 125.5000 -60.0 + 37.2500 131.5000 -60.0 + 36.5000 133.2500 -60.0 + 36.2500 136.5000 -60.0 + 34.2500 140.5000 -60.0 + 32.2500 150.5000 -60.0 + 31.5000 152.2500 -60.0 + 31.2500 156.5000 -60.0 + 30.5000 158.2500 -60.0 + 30.2500 174.5000 -60.0 + 31.2500 176.5000 -60.0 + 31.2500 179.5000 -60.0 + 33.2500 183.5000 -60.0 + 33.2500 185.5000 -60.0 + 41.2500 201.5000 -60.0 + 47.2500 208.5000 -60.0 + 54.5000 214.7500 -60.0 + 58.2500 217.5000 -60.0 + 62.5000 220.7500 -60.0 + 66.5000 222.7500 -60.0 + 71.5000 223.7500 -60.0 + 73.2500 224.5000 -60.0 + 82.5000 224.7500 -60.0 + 84.2500 225.5000 -60.0 + 101.5000 225.7500 -60.0 + 103.2500 226.5000 -60.0 + 109.5000 226.7500 -60.0 + 111.5000 225.7500 -60.0 + 123.5000 225.7500 -60.0 + 125.5000 224.7500 -60.0 + 130.5000 224.7500 -60.0 + 148.5000 215.7500 -60.0 + 156.5000 208.7500 -60.0 + 162.7500 201.5000 -60.0 + 167.7500 193.5000 -60.0 + 170.7500 187.5000 -60.0 + 171.5000 185.7500 -60.0 + 173.7500 179.5000 -60.0 + 174.5000 177.7500 -60.0 + 174.7500 173.5000 -60.0 + 175.5000 171.7500 -60.0 + 175.7500 154.5000 -60.0 + 174.7500 152.5000 -60.0 + 174.7500 145.5000 -60.0 + 173.7500 143.5000 -60.0 + 173.7500 139.5000 -60.0 + 172.7500 137.5000 -60.0 + 172.7500 134.5000 -60.0 + 171.7500 132.5000 -60.0 + 171.7500 129.5000 -60.0 + 170.7500 127.5000 -60.0 + 170.7500 125.5000 -60.0 + 169.7500 123.5000 -60.0 + 169.7500 120.5000 -60.0 + 168.7500 118.5000 -60.0 + 168.7500 116.5000 -60.0 + 167.7500 114.5000 -60.0 + 167.7500 112.5000 -60.0 + 160.7500 91.5000 -60.0 + 152.7500 74.5000 -60.0 + 148.7500 70.5000 -60.0 + 135.5000 62.2500 -60.0 + 124.5000 56.2500 -60.0 + 117.5000 55.2500 -60.0 + 115.7500 54.5000 -60.0 + 97.7500 57.5000 -60.0 + 98.5000 56.7500 -60.0 + 103.5000 56.7500 -60.0 + 105.2500 58.5000 -60.0 + 107.5000 56.7500 -60.0 + 115.5000 56.7500 -60.0 + 117.5000 57.7500 -60.0 + 122.5000 58.7500 -60.0 + 126.2500 61.5000 -60.0 + 124.5000 63.2500 -60.0 + 120.5000 63.2500 -60.0 + 117.5000 62.2500 -60.0 + 115.7500 61.5000 -60.0 + 112.5000 61.2500 -60.0 + 107.5000 63.2500 -60.0 + 105.5000 62.2500 -60.0 + 103.5000 63.2500 -60.0 + 99.5000 63.2500 -60.0 + 96.5000 62.2500 -60.0 + 94.5000 63.2500 -60.0 + 88.5000 63.2500 -60.0 + 84.5000 65.2500 -60.0 + 82.5000 65.2500 -60.0 + 81.7500 63.5000 -60.0 + 85.5000 60.7500 -60.0 + 87.5000 60.7500 -60.0 + 93.5000 57.7500 -60.0 + 96.7500 64.5000 -60.0 + 97.5000 63.7500 -60.0 + 99.2500 64.5000 -60.0 + 101.5000 64.7500 -60.0 + 103.2500 65.5000 -60.0 + 107.5000 65.7500 -60.0 + 111.5000 63.7500 -60.0 + 113.2500 64.5000 -60.0 + 121.5000 64.7500 -60.0 + 123.5000 63.7500 -60.0 + 126.5000 64.7500 -60.0 + 132.2500 67.5000 -60.0 + 133.2500 69.5000 -60.0 + 134.5000 69.7500 -60.0 + 136.2500 71.5000 -60.0 + 138.5000 71.7500 -60.0 + 142.2500 73.5000 -60.0 + 144.2500 77.5000 -60.0 + 148.2500 81.5000 -60.0 + 151.2500 85.5000 -60.0 + 151.2500 87.5000 -60.0 + 152.2500 89.5000 -60.0 + 152.2500 91.5000 -60.0 + 154.2500 97.5000 -60.0 + 158.2500 101.5000 -60.0 + 163.2500 109.5000 -60.0 + 163.2500 114.5000 -60.0 + 164.2500 116.5000 -60.0 + 164.2500 118.5000 -60.0 + 163.5000 120.2500 -60.0 + 163.2500 134.5000 -60.0 + 164.2500 136.5000 -60.0 + 164.2500 138.5000 -60.0 + 165.2500 140.5000 -60.0 + 165.2500 142.5000 -60.0 + 166.2500 144.5000 -60.0 + 166.2500 146.5000 -60.0 + 167.2500 148.5000 -60.0 + 167.2500 162.5000 -60.0 + 168.2500 164.5000 -60.0 + 167.5000 166.2500 -60.0 + 167.2500 173.5000 -60.0 + 166.2500 180.5000 -60.0 + 163.2500 186.5000 -60.0 + 152.5000 199.2500 -60.0 + 150.5000 200.2500 -60.0 + 148.2500 202.5000 -60.0 + 141.5000 207.2500 -60.0 + 133.5000 212.2500 -60.0 + 123.5000 217.2500 -60.0 + 120.5000 217.2500 -60.0 + 118.5000 218.2500 -60.0 + 114.5000 218.2500 -60.0 + 112.5000 219.2500 -60.0 + 103.5000 218.2500 -60.0 + 98.5000 217.2500 -60.0 + 96.7500 216.5000 -60.0 + 95.5000 217.2500 -60.0 + 79.5000 217.2500 -60.0 + 69.5000 212.2500 -60.0 + 55.7500 199.5000 -60.0 + 46.7500 189.5000 -60.0 + 44.7500 185.5000 -60.0 + 41.7500 182.5000 -60.0 + 41.7500 180.5000 -60.0 + 40.7500 178.5000 -60.0 + 40.7500 176.5000 -60.0 + 38.7500 172.5000 -60.0 + 38.7500 154.5000 -60.0 + 39.5000 152.7500 -60.0 + 38.7500 151.5000 -60.0 + 39.5000 149.7500 -60.0 + 39.7500 143.5000 -60.0 + 41.7500 139.5000 -60.0 + 42.7500 134.5000 -60.0 + 44.7500 130.5000 -60.0 + 45.7500 125.5000 -60.0 + 43.7500 121.5000 -60.0 + 44.7500 120.5000 -60.0 + 45.7500 113.5000 -60.0 + 48.7500 107.5000 -60.0 + 49.7500 102.5000 -60.0 + 50.5000 100.7500 -60.0 + 53.7500 96.5000 -60.0 + 54.7500 94.5000 -60.0 + 55.5000 92.7500 -60.0 + 55.7500 89.5000 -60.0 + 57.7500 84.5000 -60.0 + 61.5000 80.7500 -60.0 + 63.7500 79.5000 -60.0 + 64.7500 77.5000 -60.0 + 70.5000 71.7500 -60.0 + 78.5000 67.7500 -60.0 + 82.5000 67.7500 -60.0 + 88.5000 64.7500 -60.0 + 65.7500 71.5000 -60.0 + 66.5000 70.7500 -60.0 + 68.2500 71.5000 -60.0 + 67.5000 72.2500 -60.0 + 154.7500 95.5000 -60.0 + 155.5000 94.7500 -60.0 + 156.2500 95.5000 -60.0 + 155.5000 96.2500 -60.0 + 170.7500 173.5000 -60.0 + 171.5000 172.7500 -60.0 + 172.2500 173.5000 -60.0 + 171.5000 175.2500 -60.0 + 95.2500 53.5000 -62.0 + 94.5000 54.2500 -62.0 + 92.5000 54.2500 -62.0 + 90.5000 55.2500 -62.0 + 87.5000 55.2500 -62.0 + 65.5000 66.2500 -62.0 + 60.5000 70.2500 -62.0 + 55.2500 78.5000 -62.0 + 49.5000 89.2500 -62.0 + 49.2500 91.5000 -62.0 + 44.2500 101.5000 -62.0 + 43.2500 108.5000 -62.0 + 41.2500 117.5000 -62.0 + 40.2500 120.5000 -62.0 + 39.5000 122.2500 -62.0 + 39.2500 125.5000 -62.0 + 37.2500 129.5000 -62.0 + 36.2500 134.5000 -62.0 + 34.2500 138.5000 -62.0 + 32.2500 147.5000 -62.0 + 31.2500 152.5000 -62.0 + 30.5000 154.2500 -62.0 + 30.2500 158.5000 -62.0 + 29.5000 160.2500 -62.0 + 29.2500 172.5000 -62.0 + 30.2500 174.5000 -62.0 + 30.2500 177.5000 -62.0 + 33.2500 186.5000 -62.0 + 39.5000 199.7500 -62.0 + 44.2500 206.5000 -62.0 + 56.2500 217.5000 -62.0 + 62.2500 221.5000 -62.0 + 68.5000 223.7500 -62.0 + 70.2500 224.5000 -62.0 + 79.5000 224.7500 -62.0 + 81.2500 225.5000 -62.0 + 86.5000 225.7500 -62.0 + 88.2500 226.5000 -62.0 + 114.5000 226.7500 -62.0 + 116.5000 225.7500 -62.0 + 128.5000 225.7500 -62.0 + 130.5000 224.7500 -62.0 + 132.7500 224.5000 -62.0 + 143.5000 219.7500 -62.0 + 152.5000 212.7500 -62.0 + 154.5000 211.7500 -62.0 + 156.5000 208.7500 -62.0 + 158.5000 207.7500 -62.0 + 158.7500 206.5000 -62.0 + 163.5000 201.7500 -62.0 + 168.7500 192.5000 -62.0 + 173.7500 182.5000 -62.0 + 174.7500 175.5000 -62.0 + 175.5000 173.7500 -62.0 + 175.7500 151.5000 -62.0 + 174.7500 149.5000 -62.0 + 174.7500 142.5000 -62.0 + 173.7500 140.5000 -62.0 + 173.7500 137.5000 -62.0 + 172.7500 135.5000 -62.0 + 172.7500 132.5000 -62.0 + 171.7500 130.5000 -62.0 + 171.7500 128.5000 -62.0 + 170.7500 126.5000 -62.0 + 170.7500 124.5000 -62.0 + 169.7500 122.5000 -62.0 + 169.7500 120.5000 -62.0 + 168.7500 118.5000 -62.0 + 168.7500 116.5000 -62.0 + 167.7500 114.5000 -62.0 + 167.7500 112.5000 -62.0 + 166.7500 110.5000 -62.0 + 166.7500 108.5000 -62.0 + 164.7500 104.5000 -62.0 + 164.7500 102.5000 -62.0 + 162.7500 98.5000 -62.0 + 162.7500 95.5000 -62.0 + 152.7500 75.5000 -62.0 + 152.7500 73.5000 -62.0 + 148.7500 69.5000 -62.0 + 136.7500 61.5000 -62.0 + 129.7500 57.5000 -62.0 + 120.5000 54.2500 -62.0 + 118.7500 53.5000 -62.0 + 108.7500 55.5000 -62.0 + 110.5000 54.7500 -62.0 + 117.5000 55.7500 -62.0 + 121.2500 57.5000 -62.0 + 123.5000 57.7500 -62.0 + 127.2500 60.5000 -62.0 + 128.2500 62.5000 -62.0 + 125.5000 64.2500 -62.0 + 114.7500 60.5000 -62.0 + 112.5000 60.2500 -62.0 + 106.5000 63.2500 -62.0 + 104.5000 62.2500 -62.0 + 102.5000 63.2500 -62.0 + 95.5000 62.2500 -62.0 + 93.5000 63.2500 -62.0 + 91.5000 63.2500 -62.0 + 85.5000 66.2500 -62.0 + 81.5000 66.2500 -62.0 + 79.7500 65.5000 -62.0 + 78.7500 63.5000 -62.0 + 80.5000 61.7500 -62.0 + 84.5000 59.7500 -62.0 + 86.5000 59.7500 -62.0 + 92.5000 56.7500 -62.0 + 102.5000 55.7500 -62.0 + 104.5000 56.7500 -62.0 + 92.7500 64.5000 -62.0 + 93.5000 63.7500 -62.0 + 97.5000 63.7500 -62.0 + 102.5000 64.7500 -62.0 + 105.5000 65.7500 -62.0 + 107.5000 64.7500 -62.0 + 109.5000 64.7500 -62.0 + 111.5000 63.7500 -62.0 + 113.2500 64.5000 -62.0 + 116.5000 64.7500 -62.0 + 121.5000 65.7500 -62.0 + 123.5000 64.7500 -62.0 + 126.5000 64.7500 -62.0 + 131.5000 66.7500 -62.0 + 136.2500 71.5000 -62.0 + 142.5000 73.7500 -62.0 + 149.2500 81.5000 -62.0 + 153.2500 89.5000 -62.0 + 153.2500 91.5000 -62.0 + 154.2500 93.5000 -62.0 + 154.2500 95.5000 -62.0 + 158.2500 99.5000 -62.0 + 163.2500 108.5000 -62.0 + 163.2500 114.5000 -62.0 + 164.2500 116.5000 -62.0 + 163.5000 118.2500 -62.0 + 163.2500 132.5000 -62.0 + 164.2500 134.5000 -62.0 + 164.2500 138.5000 -62.0 + 166.2500 142.5000 -62.0 + 166.2500 146.5000 -62.0 + 167.2500 148.5000 -62.0 + 167.2500 151.5000 -62.0 + 168.2500 153.5000 -62.0 + 167.2500 162.5000 -62.0 + 168.2500 165.5000 -62.0 + 167.5000 167.2500 -62.0 + 167.2500 178.5000 -62.0 + 163.2500 186.5000 -62.0 + 156.2500 195.5000 -62.0 + 153.5000 199.2500 -62.0 + 151.5000 200.2500 -62.0 + 151.2500 201.5000 -62.0 + 148.5000 203.2500 -62.0 + 144.5000 206.2500 -62.0 + 136.5000 211.2500 -62.0 + 126.5000 217.2500 -62.0 + 123.5000 217.2500 -62.0 + 121.5000 218.2500 -62.0 + 118.5000 218.2500 -62.0 + 116.5000 219.2500 -62.0 + 113.5000 219.2500 -62.0 + 111.5000 220.2500 -62.0 + 109.7500 219.5000 -62.0 + 98.5000 218.2500 -62.0 + 96.5000 217.2500 -62.0 + 93.5000 218.2500 -62.0 + 91.7500 217.5000 -62.0 + 90.5000 218.2500 -62.0 + 86.5000 218.2500 -62.0 + 77.5000 217.2500 -62.0 + 72.5000 215.2500 -62.0 + 66.7500 210.5000 -62.0 + 62.5000 207.2500 -62.0 + 60.5000 206.2500 -62.0 + 54.5000 200.2500 -62.0 + 46.7500 190.5000 -62.0 + 43.7500 186.5000 -62.0 + 40.7500 181.5000 -62.0 + 38.7500 177.5000 -62.0 + 38.7500 175.5000 -62.0 + 37.7500 173.5000 -62.0 + 37.7500 166.5000 -62.0 + 36.7500 164.5000 -62.0 + 37.5000 163.7500 -62.0 + 37.7500 155.5000 -62.0 + 38.5000 153.7500 -62.0 + 38.7500 147.5000 -62.0 + 39.5000 145.7500 -62.0 + 39.7500 140.5000 -62.0 + 41.7500 134.5000 -62.0 + 44.5000 128.7500 -62.0 + 44.7500 126.5000 -62.0 + 45.7500 124.5000 -62.0 + 43.7500 120.5000 -62.0 + 44.5000 118.7500 -62.0 + 44.7500 114.5000 -62.0 + 47.5000 108.7500 -62.0 + 47.7500 104.5000 -62.0 + 49.7500 98.5000 -62.0 + 55.5000 91.7500 -62.0 + 55.7500 89.5000 -62.0 + 57.7500 83.5000 -62.0 + 62.5000 78.7500 -62.0 + 64.5000 77.7500 -62.0 + 64.7500 76.5000 -62.0 + 74.5000 67.7500 -62.0 + 81.5000 67.7500 -62.0 + 84.5000 68.7500 -62.0 + 87.7500 66.5000 -62.0 + 133.7500 65.5000 -62.0 + 135.5000 64.7500 -62.0 + 137.2500 66.5000 -62.0 + 135.5000 67.2500 -62.0 + 155.7500 95.5000 -62.0 + 156.5000 94.7500 -62.0 + 157.2500 95.5000 -62.0 + 156.5000 96.2500 -62.0 + 35.7500 185.5000 -62.0 + 36.5000 184.7500 -62.0 + 37.2500 185.5000 -62.0 + 36.5000 186.2500 -62.0 + 110.2500 51.5000 -64.0 + 109.5000 52.2500 -64.0 + 96.5000 52.2500 -64.0 + 94.5000 53.2500 -64.0 + 91.5000 53.2500 -64.0 + 87.5000 55.2500 -64.0 + 85.5000 55.2500 -64.0 + 65.5000 65.2500 -64.0 + 61.5000 68.2500 -64.0 + 57.2500 75.5000 -64.0 + 50.5000 86.2500 -64.0 + 50.2500 88.5000 -64.0 + 45.2500 98.5000 -64.0 + 41.2500 116.5000 -64.0 + 40.2500 118.5000 -64.0 + 39.2500 123.5000 -64.0 + 33.2500 141.5000 -64.0 + 31.2500 150.5000 -64.0 + 30.5000 152.2500 -64.0 + 30.2500 156.5000 -64.0 + 29.5000 158.2500 -64.0 + 29.2500 174.5000 -64.0 + 30.2500 176.5000 -64.0 + 30.2500 179.5000 -64.0 + 33.5000 188.7500 -64.0 + 37.2500 197.5000 -64.0 + 43.2500 205.5000 -64.0 + 44.2500 207.5000 -64.0 + 54.2500 216.5000 -64.0 + 58.5000 219.7500 -64.0 + 66.5000 223.7500 -64.0 + 68.2500 224.5000 -64.0 + 72.5000 224.7500 -64.0 + 74.2500 225.5000 -64.0 + 84.5000 225.7500 -64.0 + 86.2500 226.5000 -64.0 + 126.5000 226.7500 -64.0 + 128.5000 225.7500 -64.0 + 130.5000 225.7500 -64.0 + 132.5000 224.7500 -64.0 + 134.7500 224.5000 -64.0 + 141.5000 221.7500 -64.0 + 149.5000 215.7500 -64.0 + 151.5000 214.7500 -64.0 + 161.5000 204.7500 -64.0 + 165.7500 198.5000 -64.0 + 170.7500 189.5000 -64.0 + 171.7500 187.5000 -64.0 + 173.7500 182.5000 -64.0 + 174.5000 180.7500 -64.0 + 174.7500 177.5000 -64.0 + 175.5000 175.7500 -64.0 + 175.7500 166.5000 -64.0 + 176.5000 164.7500 -64.0 + 176.7500 158.5000 -64.0 + 175.7500 156.5000 -64.0 + 175.7500 147.5000 -64.0 + 174.7500 145.5000 -64.0 + 174.7500 140.5000 -64.0 + 173.7500 138.5000 -64.0 + 173.7500 135.5000 -64.0 + 172.7500 133.5000 -64.0 + 172.7500 130.5000 -64.0 + 171.7500 128.5000 -64.0 + 171.7500 125.5000 -64.0 + 169.7500 121.5000 -64.0 + 169.7500 118.5000 -64.0 + 167.7500 114.5000 -64.0 + 167.7500 112.5000 -64.0 + 160.5000 91.2500 -64.0 + 157.7500 84.5000 -64.0 + 152.7500 76.5000 -64.0 + 152.7500 74.5000 -64.0 + 151.7500 71.5000 -64.0 + 144.5000 65.2500 -64.0 + 136.5000 60.2500 -64.0 + 128.5000 56.2500 -64.0 + 126.7500 55.5000 -64.0 + 120.5000 53.2500 -64.0 + 118.7500 52.5000 -64.0 + 113.5000 52.2500 -64.0 +} -64.0 +{ -64.0 + 106.7500 54.5000 -64.0 + 107.5000 53.7500 -64.0 + 114.5000 53.7500 -64.0 + 118.2500 55.5000 -64.0 + 120.5000 55.7500 -64.0 + 128.5000 59.7500 -64.0 + 131.2500 63.5000 -64.0 + 133.5000 63.7500 -64.0 + 136.2500 66.5000 -64.0 + 137.5000 65.7500 -64.0 + 139.5000 66.7500 -64.0 + 142.2500 69.5000 -64.0 + 141.5000 70.2500 -64.0 + 138.5000 70.2500 -64.0 + 136.7500 69.5000 -64.0 + 135.7500 67.5000 -64.0 + 134.5000 68.2500 -64.0 + 132.5000 68.2500 -64.0 + 128.7500 65.5000 -64.0 + 125.5000 65.2500 -64.0 + 120.5000 64.2500 -64.0 + 116.7500 62.5000 -64.0 + 103.5000 62.2500 -64.0 + 100.5000 63.2500 -64.0 + 98.7500 62.5000 -64.0 + 94.5000 62.2500 -64.0 + 91.5000 63.2500 -64.0 + 87.5000 66.2500 -64.0 + 79.5000 66.2500 -64.0 + 77.7500 65.5000 -64.0 + 76.7500 63.5000 -64.0 + 78.5000 61.7500 -64.0 + 86.5000 57.7500 -64.0 + 89.5000 57.7500 -64.0 + 93.5000 55.7500 -64.0 + 96.5000 55.7500 -64.0 + 98.5000 54.7500 -64.0 + 101.5000 54.7500 -64.0 + 103.5000 55.7500 -64.0 +} -64.0 +{ -64.0 + 92.7500 64.5000 -64.0 + 93.5000 63.7500 -64.0 + 97.5000 63.7500 -64.0 + 102.5000 64.7500 -64.0 + 104.5000 65.7500 -64.0 + 106.5000 64.7500 -64.0 + 115.5000 64.7500 -64.0 + 122.5000 67.7500 -64.0 + 124.5000 66.7500 -64.0 + 126.5000 66.7500 -64.0 + 129.5000 67.7500 -64.0 + 136.2500 73.5000 -64.0 + 141.5000 73.7500 -64.0 + 144.5000 74.7500 -64.0 + 149.2500 81.5000 -64.0 + 150.2500 83.5000 -64.0 + 155.2500 91.5000 -64.0 + 155.2500 95.5000 -64.0 + 158.2500 98.5000 -64.0 + 161.2500 103.5000 -64.0 + 163.2500 107.5000 -64.0 + 163.2500 112.5000 -64.0 + 164.2500 115.5000 -64.0 + 163.5000 117.2500 -64.0 + 163.2500 130.5000 -64.0 + 164.2500 132.5000 -64.0 + 164.2500 135.5000 -64.0 + 165.2500 137.5000 -64.0 + 165.2500 139.5000 -64.0 + 166.2500 141.5000 -64.0 + 166.2500 144.5000 -64.0 + 167.2500 146.5000 -64.0 + 167.2500 150.5000 -64.0 + 168.2500 152.5000 -64.0 + 168.2500 156.5000 -64.0 + 167.2500 161.5000 -64.0 + 168.2500 163.5000 -64.0 + 168.2500 176.5000 -64.0 + 162.2500 188.5000 -64.0 + 159.2500 192.5000 -64.0 + 158.2500 194.5000 -64.0 + 148.5000 204.2500 -64.0 + 146.2500 205.5000 -64.0 + 139.5000 210.2500 -64.0 + 129.5000 216.2500 -64.0 + 125.5000 218.2500 -64.0 + 121.5000 218.2500 -64.0 + 119.5000 219.2500 -64.0 + 117.5000 219.2500 -64.0 + 115.5000 220.2500 -64.0 + 109.5000 220.2500 -64.0 + 107.7500 219.5000 -64.0 + 97.5000 219.2500 -64.0 + 95.7500 218.5000 -64.0 + 79.5000 218.2500 -64.0 + 74.5000 217.2500 -64.0 + 67.7500 212.5000 -64.0 + 58.5000 205.2500 -64.0 + 56.5000 204.2500 -64.0 + 46.7500 192.5000 -64.0 + 43.7500 188.5000 -64.0 + 36.7500 174.5000 -64.0 + 36.7500 158.5000 -64.0 + 37.7500 153.5000 -64.0 + 38.7500 144.5000 -64.0 + 39.7500 137.5000 -64.0 + 40.7500 134.5000 -64.0 + 41.5000 132.7500 -64.0 + 44.7500 127.5000 -64.0 + 45.7500 122.5000 -64.0 + 44.7500 120.5000 -64.0 + 44.7500 113.5000 -64.0 + 46.7500 107.5000 -64.0 + 47.5000 105.7500 -64.0 + 47.7500 101.5000 -64.0 + 48.7500 98.5000 -64.0 + 55.5000 90.7500 -64.0 + 55.7500 87.5000 -64.0 + 57.7500 82.5000 -64.0 + 64.5000 75.7500 -64.0 + 66.5000 74.7500 -64.0 + 74.5000 67.7500 -64.0 + 77.5000 67.7500 -64.0 + 86.5000 68.7500 -64.0 + 90.5000 65.7500 -64.0 + 68.7500 68.5000 -64.0 + 69.5000 67.7500 -64.0 + 70.2500 68.5000 -64.0 + 69.5000 69.2500 -64.0 + 108.2500 50.5000 -66.0 + 107.5000 51.2500 -66.0 + 98.5000 51.2500 -66.0 + 96.5000 52.2500 -66.0 + 94.5000 52.2500 -66.0 + 92.5000 53.2500 -66.0 + 89.5000 53.2500 -66.0 + 85.5000 55.2500 -66.0 + 83.5000 55.2500 -66.0 + 63.5000 65.2500 -66.0 + 60.5000 68.2500 -66.0 + 58.2500 74.5000 -66.0 + 54.2500 79.5000 -66.0 + 50.5000 86.2500 -66.0 + 50.2500 88.5000 -66.0 + 45.2500 98.5000 -66.0 + 44.2500 103.5000 -66.0 + 42.2500 112.5000 -66.0 + 41.2500 114.5000 -66.0 + 40.2500 119.5000 -66.0 + 38.2500 125.5000 -66.0 + 36.5000 129.2500 -66.0 + 35.2500 135.5000 -66.0 + 33.2500 139.5000 -66.0 + 31.2500 148.5000 -66.0 + 30.2500 151.5000 -66.0 + 29.2500 160.5000 -66.0 + 28.2500 167.5000 -66.0 + 29.2500 169.5000 -66.0 + 29.2500 176.5000 -66.0 + 30.2500 178.5000 -66.0 + 30.2500 181.5000 -66.0 + 32.2500 185.5000 -66.0 + 32.2500 187.5000 -66.0 + 39.2500 201.5000 -66.0 + 44.2500 207.5000 -66.0 + 45.2500 209.5000 -66.0 + 50.2500 213.5000 -66.0 + 57.5000 219.7500 -66.0 + 66.2500 224.5000 -66.0 + 68.5000 224.7500 -66.0 + 70.2500 225.5000 -66.0 + 79.5000 225.7500 -66.0 + 88.5000 226.7500 -66.0 + 90.2500 227.5000 -66.0 + 110.5000 227.7500 -66.0 + 112.5000 226.7500 -66.0 + 128.5000 226.7500 -66.0 + 130.5000 225.7500 -66.0 + 132.5000 225.7500 -66.0 + 138.5000 223.7500 -66.0 + 146.5000 218.7500 -66.0 + 148.5000 217.7500 -66.0 + 157.5000 209.7500 -66.0 + 162.5000 203.7500 -66.0 + 166.7500 197.5000 -66.0 + 173.7500 183.5000 -66.0 + 174.5000 181.7500 -66.0 + 174.7500 178.5000 -66.0 + 175.5000 176.7500 -66.0 + 175.7500 171.5000 -66.0 + 176.5000 169.7500 -66.0 + 176.7500 153.5000 -66.0 + 175.7500 151.5000 -66.0 + 175.7500 143.5000 -66.0 + 174.7500 141.5000 -66.0 + 174.7500 136.5000 -66.0 + 173.7500 134.5000 -66.0 + 173.7500 131.5000 -66.0 + 172.7500 129.5000 -66.0 + 172.7500 126.5000 -66.0 + 170.7500 122.5000 -66.0 + 170.7500 120.5000 -66.0 + 168.7500 116.5000 -66.0 + 168.7500 113.5000 -66.0 + 166.7500 109.5000 -66.0 + 166.7500 107.5000 -66.0 + 162.7500 99.5000 -66.0 + 162.7500 97.5000 -66.0 + 161.7500 95.5000 -66.0 + 161.7500 93.5000 -66.0 + 155.7500 81.5000 -66.0 + 152.7500 76.5000 -66.0 + 152.7500 73.5000 -66.0 + 151.7500 71.5000 -66.0 + 151.7500 69.5000 -66.0 + 147.7500 66.5000 -66.0 + 141.5000 62.2500 -66.0 + 127.5000 55.2500 -66.0 + 125.7500 54.5000 -66.0 + 119.5000 52.2500 -66.0 + 117.7500 51.5000 -66.0 + 113.5000 51.2500 -66.0 + 111.7500 50.5000 -66.0 +} -66.0 +{ -66.0 + 105.7500 53.5000 -66.0 + 106.5000 52.7500 -66.0 + 113.5000 52.7500 -66.0 + 116.5000 53.7500 -66.0 + 126.5000 57.7500 -66.0 + 130.2500 59.5000 -66.0 + 131.2500 61.5000 -66.0 + 136.5000 65.7500 -66.0 + 138.5000 66.7500 -66.0 + 144.2500 69.5000 -66.0 + 143.5000 71.2500 -66.0 + 141.5000 71.2500 -66.0 + 139.7500 70.5000 -66.0 + 138.5000 71.2500 -66.0 + 136.7500 69.5000 -66.0 + 135.5000 70.2500 -66.0 + 133.5000 70.2500 -66.0 + 129.5000 68.2500 -66.0 + 127.7500 67.5000 -66.0 + 121.5000 67.2500 -66.0 + 117.7500 63.5000 -66.0 + 111.5000 63.2500 -66.0 + 109.7500 62.5000 -66.0 + 103.5000 62.2500 -66.0 + 101.5000 63.2500 -66.0 + 98.5000 63.2500 -66.0 + 96.5000 62.2500 -66.0 + 94.5000 63.2500 -66.0 + 92.5000 63.2500 -66.0 + 86.5000 67.2500 -66.0 + 84.7500 66.5000 -66.0 + 79.5000 66.2500 -66.0 + 76.5000 65.2500 -66.0 + 75.7500 63.5000 -66.0 + 77.5000 61.7500 -66.0 + 87.5000 56.7500 -66.0 + 89.5000 56.7500 -66.0 + 91.5000 55.7500 -66.0 + 93.5000 55.7500 -66.0 + 95.5000 54.7500 -66.0 + 98.5000 54.7500 -66.0 + 100.5000 53.7500 -66.0 + 103.2500 55.5000 -66.0 +} -66.0 +{ -66.0 + 93.7500 64.5000 -66.0 + 94.5000 63.7500 -66.0 + 97.5000 63.7500 -66.0 + 99.2500 64.5000 -66.0 + 111.5000 64.7500 -66.0 + 118.5000 65.7500 -66.0 + 120.5000 68.7500 -66.0 + 122.5000 69.7500 -66.0 + 125.5000 68.7500 -66.0 + 132.5000 71.7500 -66.0 + 136.2500 74.5000 -66.0 + 138.5000 74.7500 -66.0 + 140.5000 73.7500 -66.0 + 143.5000 73.7500 -66.0 + 150.2500 81.5000 -66.0 + 152.2500 85.5000 -66.0 + 156.2500 90.5000 -66.0 + 156.2500 94.5000 -66.0 + 157.2500 96.5000 -66.0 + 162.2500 104.5000 -66.0 + 162.2500 106.5000 -66.0 + 164.2500 110.5000 -66.0 + 163.5000 111.2500 -66.0 + 164.2500 112.5000 -66.0 + 162.2500 121.5000 -66.0 + 163.2500 123.5000 -66.0 + 163.2500 130.5000 -66.0 + 164.2500 132.5000 -66.0 + 164.2500 135.5000 -66.0 + 165.2500 137.5000 -66.0 + 165.2500 139.5000 -66.0 + 166.2500 141.5000 -66.0 + 166.2500 144.5000 -66.0 + 167.2500 146.5000 -66.0 + 167.2500 152.5000 -66.0 + 168.2500 154.5000 -66.0 + 168.2500 158.5000 -66.0 + 167.2500 161.5000 -66.0 + 168.2500 163.5000 -66.0 + 168.2500 165.5000 -66.0 + 169.2500 167.5000 -66.0 + 168.5000 168.2500 -66.0 + 168.2500 171.5000 -66.0 + 169.2500 174.5000 -66.0 + 160.2500 192.5000 -66.0 + 148.5000 205.2500 -66.0 + 143.5000 208.2500 -66.0 + 141.2500 209.5000 -66.0 + 134.5000 214.2500 -66.0 + 127.5000 218.2500 -66.0 + 124.5000 218.2500 -66.0 + 122.5000 219.2500 -66.0 + 119.5000 219.2500 -66.0 + 117.5000 220.2500 -66.0 + 115.5000 220.2500 -66.0 + 113.5000 221.2500 -66.0 + 111.5000 221.2500 -66.0 + 109.7500 220.5000 -66.0 + 104.5000 220.2500 -66.0 + 102.7500 219.5000 -66.0 + 101.5000 220.2500 -66.0 + 99.5000 220.2500 -66.0 + 97.7500 219.5000 -66.0 + 83.5000 219.2500 -66.0 + 76.5000 218.2500 -66.0 + 70.5000 215.2500 -66.0 + 64.7500 210.5000 -66.0 + 57.7500 206.5000 -66.0 + 56.7500 204.5000 -66.0 + 55.5000 204.2500 -66.0 + 49.7500 197.5000 -66.0 + 43.7500 189.5000 -66.0 + 39.7500 182.5000 -66.0 + 39.7500 180.5000 -66.0 + 35.7500 172.5000 -66.0 + 35.7500 162.5000 -66.0 + 36.5000 160.7500 -66.0 + 36.7500 153.5000 -66.0 + 37.7500 151.5000 -66.0 + 38.7500 142.5000 -66.0 + 39.7500 135.5000 -66.0 + 44.7500 127.5000 -66.0 + 45.7500 122.5000 -66.0 + 44.7500 119.5000 -66.0 + 45.5000 117.7500 -66.0 + 45.7500 113.5000 -66.0 + 44.7500 111.5000 -66.0 + 46.7500 107.5000 -66.0 + 47.5000 105.7500 -66.0 + 47.7500 101.5000 -66.0 + 49.7500 95.5000 -66.0 + 55.5000 89.7500 -66.0 + 55.7500 86.5000 -66.0 + 58.7500 79.5000 -66.0 + 64.5000 75.7500 -66.0 + 66.5000 74.7500 -66.0 + 72.5000 69.7500 -66.0 + 76.5000 66.7500 -66.0 + 78.2500 67.5000 -66.0 + 80.5000 67.7500 -66.0 + 82.2500 68.5000 -66.0 + 87.5000 68.7500 -66.0 + 89.5000 66.7500 -66.0 +} -66.0 +{ -66.0 + 64.7500 70.5000 -66.0 + 65.5000 69.7500 -66.0 + 67.2500 70.5000 -66.0 + 66.5000 71.2500 -66.0 +} -66.0 +v 253 z -68.000000 -64.0 +{ -68.0 + 99.2500 50.5000 -68.0 + 98.5000 51.2500 -68.0 + 95.5000 51.2500 -68.0 + 91.5000 53.2500 -68.0 + 88.5000 53.2500 -68.0 + 82.5000 56.2500 -68.0 + 79.2500 56.5000 -68.0 + 68.5000 61.2500 -68.0 + 60.5000 67.2500 -68.0 + 58.2500 74.5000 -68.0 + 54.2500 79.5000 -68.0 + 46.5000 95.2500 -68.0 + 46.2500 97.5000 -68.0 + 45.2500 99.5000 -68.0 + 44.2500 104.5000 -68.0 + 43.2500 107.5000 -68.0 + 42.5000 109.2500 -68.0 + 42.2500 112.5000 -68.0 + 40.2500 116.5000 -68.0 + 39.2500 121.5000 -68.0 + 37.5000 125.2500 -68.0 + 37.2500 127.5000 -68.0 + 35.2500 131.5000 -68.0 + 34.2500 136.5000 -68.0 + 33.2500 138.5000 -68.0 + 32.2500 143.5000 -68.0 + 31.2500 145.5000 -68.0 + 30.2500 152.5000 -68.0 + 29.5000 154.2500 -68.0 + 29.2500 159.5000 -68.0 + 28.5000 161.2500 -68.0 + 28.2500 170.5000 -68.0 + 29.2500 172.5000 -68.0 + 29.2500 177.5000 -68.0 + 30.2500 179.5000 -68.0 + 30.2500 182.5000 -68.0 + 32.2500 186.5000 -68.0 + 32.2500 188.5000 -68.0 + 38.2500 200.5000 -68.0 + 41.2500 204.5000 -68.0 + 42.2500 206.5000 -68.0 + 49.2500 213.5000 -68.0 + 56.5000 219.7500 -68.0 + 64.5000 223.7500 -68.0 + 68.2500 225.5000 -68.0 + 78.5000 225.7500 -68.0 + 85.5000 226.7500 -68.0 + 87.2500 227.5000 -68.0 + 117.5000 227.7500 -68.0 + 120.5000 226.7500 -68.0 + 122.5000 227.7500 -68.0 + 124.5000 226.7500 -68.0 + 130.5000 226.7500 -68.0 + 132.5000 225.7500 -68.0 + 134.5000 225.7500 -68.0 + 144.5000 220.7500 -68.0 + 148.5000 217.7500 -68.0 + 150.5000 216.7500 -68.0 + 160.7500 206.5000 -68.0 + 163.5000 202.7500 -68.0 + 167.7500 196.5000 -68.0 + 171.5000 189.7500 -68.0 + 173.7500 183.5000 -68.0 + 174.5000 181.7500 -68.0 + 175.7500 173.5000 -68.0 + 176.5000 171.7500 -68.0 + 176.7500 149.5000 -68.0 + 175.7500 147.5000 -68.0 + 175.7500 138.5000 -68.0 + 174.7500 136.5000 -68.0 + 174.7500 132.5000 -68.0 + 173.7500 130.5000 -68.0 + 173.7500 128.5000 -68.0 + 171.7500 124.5000 -68.0 + 171.7500 122.5000 -68.0 + 169.7500 118.5000 -68.0 + 169.7500 116.5000 -68.0 + 167.7500 112.5000 -68.0 + 167.7500 110.5000 -68.0 + 166.7500 108.5000 -68.0 + 166.7500 106.5000 -68.0 + 161.7500 96.5000 -68.0 + 161.7500 94.5000 -68.0 + 151.7500 74.5000 -68.0 + 152.5000 73.7500 -68.0 + 152.7500 70.5000 -68.0 + 151.7500 68.5000 -68.0 + 147.5000 65.2500 -68.0 + 143.7500 62.5000 -68.0 + 137.5000 58.2500 -68.0 + 132.5000 57.2500 -68.0 + 126.7500 54.5000 -68.0 + 117.5000 51.2500 -68.0 + 115.7500 50.5000 -68.0 +} -68.0 +{ -68.0 + 105.7500 52.5000 -68.0 + 106.5000 51.7500 -68.0 + 113.5000 51.7500 -68.0 + 117.2500 53.5000 -68.0 + 119.5000 53.7500 -68.0 + 123.2500 56.5000 -68.0 + 126.5000 56.7500 -68.0 + 130.2500 59.5000 -68.0 + 131.2500 61.5000 -68.0 + 136.2500 65.5000 -68.0 + 136.2500 69.5000 -68.0 + 134.5000 71.2500 -68.0 + 132.5000 71.2500 -68.0 + 129.5000 70.2500 -68.0 + 125.7500 68.5000 -68.0 + 121.5000 68.2500 -68.0 + 119.7500 66.5000 -68.0 + 118.7500 64.5000 -68.0 + 113.5000 64.2500 -68.0 + 103.5000 62.2500 -68.0 + 101.5000 63.2500 -68.0 + 96.5000 63.2500 -68.0 + 88.5000 67.2500 -68.0 + 84.5000 67.2500 -68.0 + 82.7500 65.5000 -68.0 + 79.5000 65.2500 -68.0 + 77.7500 64.5000 -68.0 + 76.7500 62.5000 -68.0 + 79.5000 59.7500 -68.0 + 81.5000 59.7500 -68.0 + 87.5000 56.7500 -68.0 + 89.5000 56.7500 -68.0 + 93.5000 54.7500 -68.0 + 95.5000 54.7500 -68.0 + 97.5000 53.7500 -68.0 + 101.5000 53.7500 -68.0 + 103.2500 54.5000 -68.0 +} -68.0 +{ -68.0 + 71.7500 64.5000 -68.0 + 72.5000 63.7500 -68.0 + 74.2500 64.5000 -68.0 + 73.5000 65.2500 -68.0 + 69.5000 68.2500 -68.0 + 68.7500 66.5000 -68.0 +} -68.0 +{ -68.0 + 93.7500 65.5000 -68.0 + 94.5000 64.7500 -68.0 + 107.5000 64.7500 -68.0 + 116.5000 65.7500 -68.0 + 118.2500 66.5000 -68.0 + 119.5000 68.7500 -68.0 + 121.5000 69.7500 -68.0 + 123.2500 70.5000 -68.0 + 126.5000 70.7500 -68.0 + 128.5000 71.7500 -68.0 + 133.5000 72.7500 -68.0 + 135.2500 74.5000 -68.0 + 144.5000 74.7500 -68.0 + 148.2500 78.5000 -68.0 + 154.2500 85.5000 -68.0 + 154.2500 87.5000 -68.0 + 156.2500 89.5000 -68.0 + 156.2500 92.5000 -68.0 + 163.2500 106.5000 -68.0 + 162.5000 108.2500 -68.0 + 162.2500 111.5000 -68.0 + 163.2500 113.5000 -68.0 + 162.5000 115.2500 -68.0 + 162.2500 121.5000 -68.0 + 163.2500 123.5000 -68.0 + 163.2500 129.5000 -68.0 + 164.2500 131.5000 -68.0 + 164.2500 134.5000 -68.0 + 165.2500 136.5000 -68.0 + 165.2500 138.5000 -68.0 + 166.2500 140.5000 -68.0 + 166.2500 143.5000 -68.0 + 167.2500 145.5000 -68.0 + 167.2500 159.5000 -68.0 + 168.2500 161.5000 -68.0 + 168.2500 164.5000 -68.0 + 169.2500 166.5000 -68.0 + 169.2500 170.5000 -68.0 + 170.2500 172.5000 -68.0 + 169.5000 173.2500 -68.0 + 169.2500 175.5000 -68.0 + 162.2500 189.5000 -68.0 + 159.2500 193.5000 -68.0 + 158.2500 195.5000 -68.0 + 150.5000 204.2500 -68.0 + 146.5000 207.2500 -68.0 + 141.5000 210.2500 -68.0 + 133.5000 215.2500 -68.0 + 125.5000 219.2500 -68.0 + 123.5000 219.2500 -68.0 + 121.5000 220.2500 -68.0 + 117.5000 220.2500 -68.0 + 115.5000 221.2500 -68.0 + 109.5000 221.2500 -68.0 + 107.7500 220.5000 -68.0 + 97.5000 220.2500 -68.0 + 95.7500 219.5000 -68.0 + 88.5000 219.2500 -68.0 + 86.5000 220.2500 -68.0 + 85.7500 219.5000 -68.0 + 84.5000 220.2500 -68.0 + 82.7500 219.5000 -68.0 + 79.5000 219.2500 -68.0 + 74.5000 218.2500 -68.0 + 68.7500 214.5000 -68.0 + 62.5000 210.2500 -68.0 + 60.5000 209.2500 -68.0 + 51.7500 201.5000 -68.0 + 50.5000 199.2500 -68.0 + 42.7500 189.5000 -68.0 + 39.7500 183.5000 -68.0 + 39.7500 181.5000 -68.0 + 36.7500 175.5000 -68.0 + 36.7500 173.5000 -68.0 + 34.7500 169.5000 -68.0 + 34.7500 165.5000 -68.0 + 35.5000 163.7500 -68.0 + 35.7500 157.5000 -68.0 + 36.5000 155.7500 -68.0 + 37.7500 147.5000 -68.0 + 38.5000 145.7500 -68.0 + 39.7500 137.5000 -68.0 + 44.7500 126.5000 -68.0 + 45.5000 124.7500 -68.0 + 45.7500 121.5000 -68.0 + 44.7500 119.5000 -68.0 + 45.5000 117.7500 -68.0 + 45.7500 110.5000 -68.0 + 46.7500 108.5000 -68.0 + 48.7500 99.5000 -68.0 + 49.7500 94.5000 -68.0 + 51.5000 93.7500 -68.0 + 54.5000 90.7500 -68.0 + 54.7500 88.5000 -68.0 + 55.7500 83.5000 -68.0 + 58.5000 79.7500 -68.0 + 62.5000 76.7500 -68.0 + 64.5000 75.7500 -68.0 + 68.5000 72.7500 -68.0 + 71.5000 72.7500 -68.0 + 71.7500 71.5000 -68.0 + 73.5000 69.7500 -68.0 + 77.5000 67.7500 -68.0 + 86.5000 68.7500 -68.0 +} -68.0 +{ -68.0 + 66.7500 68.5000 -68.0 + 67.5000 67.7500 -68.0 + 68.2500 69.5000 -68.0 + 65.5000 71.2500 -68.0 + 63.7500 70.5000 -68.0 +} -68.0 +{ -68.0 + 142.7500 69.5000 -68.0 + 144.5000 68.7500 -68.0 + 146.2500 70.5000 -68.0 + 145.5000 71.2500 -68.0 + 139.5000 71.2500 -68.0 + 137.7500 70.5000 -68.0 + 138.5000 69.7500 -68.0 +} -68.0 +v 195 z -70.000000 -68.0 +{ -68.0 + 101.2500 49.5000 -70.0 + 97.5000 51.2500 -70.0 + 94.5000 51.2500 -70.0 + 90.5000 53.2500 -70.0 + 88.5000 53.2500 -70.0 + 82.5000 56.2500 -70.0 + 81.5000 55.2500 -70.0 + 79.5000 56.2500 -70.0 + 77.5000 56.2500 -70.0 + 66.5000 61.2500 -70.0 + 60.2500 66.5000 -70.0 + 59.2500 73.5000 -70.0 + 53.2500 81.5000 -70.0 + 50.2500 88.5000 -70.0 + 47.5000 92.2500 -70.0 + 42.5000 108.2500 -70.0 + 41.2500 114.5000 -70.0 + 37.5000 123.2500 -70.0 + 37.2500 126.5000 -70.0 + 32.2500 139.5000 -70.0 + 31.2500 146.5000 -70.0 + 30.2500 148.5000 -70.0 + 29.2500 157.5000 -70.0 + 28.5000 159.2500 -70.0 + 28.2500 171.5000 -70.0 + 29.2500 173.5000 -70.0 + 29.2500 178.5000 -70.0 + 32.2500 188.5000 -70.0 + 38.2500 201.5000 -70.0 + 43.2500 208.5000 -70.0 + 49.5000 214.7500 -70.0 + 57.5000 220.7500 -70.0 + 67.2500 225.5000 -70.0 + 76.5000 225.7500 -70.0 + 85.2500 227.5000 -70.0 + 109.5000 228.7500 -70.0 + 111.5000 227.7500 -70.0 + 126.5000 227.7500 -70.0 + 128.5000 226.7500 -70.0 + 135.5000 225.7500 -70.0 + 143.5000 221.7500 -70.0 + 155.5000 212.7500 -70.0 + 164.5000 201.7500 -70.0 + 172.5000 188.7500 -70.0 + 172.7500 186.5000 -70.0 + 174.7500 182.5000 -70.0 + 175.7500 173.5000 -70.0 + 176.5000 171.7500 -70.0 + 176.7500 143.5000 -70.0 + 175.7500 141.5000 -70.0 + 175.7500 135.5000 -70.0 + 174.7500 133.5000 -70.0 + 174.7500 130.5000 -70.0 + 172.7500 126.5000 -70.0 + 172.7500 123.5000 -70.0 + 169.7500 117.5000 -70.0 + 169.7500 115.5000 -70.0 + 167.7500 111.5000 -70.0 + 167.7500 109.5000 -70.0 + 164.7500 103.5000 -70.0 + 164.7500 101.5000 -70.0 + 161.7500 97.5000 -70.0 + 161.7500 95.5000 -70.0 + 151.7500 75.5000 -70.0 + 152.5000 73.7500 -70.0 + 152.7500 68.5000 -70.0 + 145.7500 61.5000 -70.0 + 138.7500 57.5000 -70.0 + 134.5000 56.2500 -70.0 + 132.5000 57.2500 -70.0 + 126.5000 53.2500 -70.0 + 112.7500 49.5000 -70.0 +} -70.0 +{ -70.0 + 106.5000 51.7500 -70.0 + 115.5000 51.7500 -70.0 + 125.5000 56.7500 -70.0 + 129.2500 58.5000 -70.0 + 129.2500 61.5000 -70.0 + 132.5000 64.7500 -70.0 + 135.5000 63.7500 -70.0 + 141.5000 66.7500 -70.0 + 143.2500 70.5000 -70.0 + 141.5000 71.2500 -70.0 + 139.5000 72.2500 -70.0 + 138.7500 71.5000 -70.0 + 134.5000 70.2500 -70.0 + 132.5000 71.2500 -70.0 + 128.5000 71.2500 -70.0 + 121.5000 68.2500 -70.0 + 117.7500 64.5000 -70.0 + 111.5000 64.2500 -70.0 + 105.5000 62.2500 -70.0 + 103.5000 63.2500 -70.0 + 100.5000 63.2500 -70.0 + 98.5000 64.2500 -70.0 + 95.5000 64.2500 -70.0 + 89.5000 68.2500 -70.0 + 86.5000 68.2500 -70.0 + 84.7500 67.5000 -70.0 + 82.7500 63.5000 -70.0 + 80.7500 62.5000 -70.0 + 84.5000 58.7500 -70.0 + 86.5000 58.7500 -70.0 + 90.5000 55.7500 -70.0 + 92.5000 55.7500 -70.0 + 98.5000 52.7500 -70.0 + 101.5000 52.7500 -70.0 + 104.5000 53.7500 -70.0 +} -70.0 +{ -70.0 + 71.7500 64.5000 -70.0 + 72.5000 63.7500 -70.0 + 75.5000 63.7500 -70.0 + 77.2500 65.5000 -70.0 + 76.5000 66.2500 -70.0 + 72.5000 66.2500 -70.0 +} -70.0 +{ -70.0 + 103.7500 64.5000 -70.0 + 105.5000 63.7500 -70.0 + 109.2500 65.5000 -70.0 + 115.5000 65.7500 -70.0 + 118.5000 66.7500 -70.0 + 119.2500 68.5000 -70.0 + 127.2500 72.5000 -70.0 + 130.5000 72.7500 -70.0 + 136.5000 75.7500 -70.0 + 138.5000 74.7500 -70.0 + 141.5000 74.7500 -70.0 + 151.5000 80.7500 -70.0 + 154.2500 84.5000 -70.0 + 154.2500 87.5000 -70.0 + 156.2500 91.5000 -70.0 + 156.2500 93.5000 -70.0 + 162.2500 105.5000 -70.0 + 162.2500 120.5000 -70.0 + 164.2500 126.5000 -70.0 + 164.2500 132.5000 -70.0 + 166.2500 138.5000 -70.0 + 166.2500 142.5000 -70.0 + 167.2500 144.5000 -70.0 + 167.2500 151.5000 -70.0 + 168.2500 153.5000 -70.0 + 168.2500 163.5000 -70.0 + 170.2500 169.5000 -70.0 + 169.5000 171.2500 -70.0 + 169.2500 175.5000 -70.0 + 162.5000 189.2500 -70.0 + 157.2500 197.5000 -70.0 + 147.5000 207.2500 -70.0 + 127.5000 219.2500 -70.0 + 124.5000 219.2500 -70.0 + 122.5000 220.2500 -70.0 + 112.5000 222.2500 -70.0 + 102.5000 220.2500 -70.0 + 99.5000 221.2500 -70.0 + 97.7500 220.5000 -70.0 + 80.5000 220.2500 -70.0 + 72.5000 217.2500 -70.0 + 64.5000 212.2500 -70.0 + 51.7500 202.5000 -70.0 + 43.7500 191.5000 -70.0 + 37.7500 179.5000 -70.0 + 37.7500 177.5000 -70.0 + 35.7500 173.5000 -70.0 + 34.7500 164.5000 -70.0 + 39.7500 138.5000 -70.0 + 45.5000 125.7500 -70.0 + 45.7500 120.5000 -70.0 + 44.7500 118.5000 -70.0 + 46.7500 113.5000 -70.0 + 45.7500 110.5000 -70.0 + 47.7500 106.5000 -70.0 + 49.7500 96.5000 -70.0 + 54.5000 88.7500 -70.0 + 56.7500 80.5000 -70.0 + 66.5000 73.7500 -70.0 + 70.5000 73.7500 -70.0 + 76.5000 69.7500 -70.0 + 78.5000 69.7500 -70.0 + 80.5000 68.7500 -70.0 + 89.5000 69.7500 -70.0 + 98.5000 64.7500 -70.0 +} -70.0 +{ -70.0 + 68.5000 65.7500 -70.0 + 69.2500 66.5000 -70.0 + 68.5000 68.2500 -70.0 + 66.7500 67.5000 -70.0 +} -70.0 +{ -70.0 + 63.7500 69.5000 -70.0 + 64.5000 68.7500 -70.0 + 65.2500 69.5000 -70.0 + 64.5000 71.2500 -70.0 +} -70.0 +{ -70.0 + 66.7500 70.5000 -70.0 + 67.5000 69.7500 -70.0 + 69.2500 70.5000 -70.0 + 68.5000 72.2500 -70.0 +} -70.0 +{ -70.0 + 144.7500 70.5000 -70.0 + 145.5000 69.7500 -70.0 + 149.2500 71.5000 -70.0 + 147.5000 73.2500 -70.0 + 145.7500 72.5000 -70.0 +} -70.0 +v 256 z -72.000000 -64.0 +{ -72.0 + 101.2500 49.5000 -72.0 + 100.5000 50.2500 -72.0 + 98.5000 50.2500 -72.0 + 94.5000 52.2500 -72.0 + 92.5000 52.2500 -72.0 + 90.5000 53.2500 -72.0 + 87.5000 53.2500 -72.0 + 83.5000 55.2500 -72.0 + 78.5000 55.2500 -72.0 + 76.5000 56.2500 -72.0 + 74.5000 56.2500 -72.0 + 67.5000 59.2500 -72.0 + 62.5000 63.2500 -72.0 + 60.5000 64.2500 -72.0 + 59.2500 67.5000 -72.0 + 60.2500 69.5000 -72.0 + 59.2500 74.5000 -72.0 + 57.5000 76.2500 -72.0 + 54.2500 80.5000 -72.0 + 47.5000 93.2500 -72.0 + 47.2500 95.5000 -72.0 + 44.2500 104.5000 -72.0 + 42.5000 108.2500 -72.0 + 42.2500 110.5000 -72.0 + 41.2500 113.5000 -72.0 + 40.5000 115.2500 -72.0 + 37.2500 124.5000 -72.0 + 36.5000 126.2500 -72.0 + 33.2500 135.5000 -72.0 + 32.5000 137.2500 -72.0 + 31.2500 145.5000 -72.0 + 30.2500 147.5000 -72.0 + 29.2500 156.5000 -72.0 + 28.5000 158.2500 -72.0 + 28.2500 172.5000 -72.0 + 29.2500 174.5000 -72.0 + 29.2500 179.5000 -72.0 + 30.2500 181.5000 -72.0 + 30.2500 183.5000 -72.0 + 31.2500 185.5000 -72.0 + 31.5000 187.7500 -72.0 + 37.2500 200.5000 -72.0 + 40.2500 204.5000 -72.0 + 41.2500 206.5000 -72.0 + 52.2500 217.5000 -72.0 + 56.5000 220.7500 -72.0 + 62.5000 223.7500 -72.0 + 66.2500 225.5000 -72.0 + 68.5000 225.7500 -72.0 + 73.5000 226.7500 -72.0 + 75.5000 225.7500 -72.0 + 77.2500 226.5000 -72.0 + 80.5000 226.7500 -72.0 + 87.5000 227.7500 -72.0 + 89.2500 228.5000 -72.0 + 112.5000 228.7500 -72.0 + 114.5000 227.7500 -72.0 + 127.5000 227.7500 -72.0 + 129.5000 226.7500 -72.0 + 133.5000 226.7500 -72.0 + 145.5000 220.7500 -72.0 + 149.5000 217.7500 -72.0 + 151.5000 216.7500 -72.0 + 158.5000 209.7500 -72.0 + 163.5000 203.7500 -72.0 + 167.7500 197.5000 -72.0 + 171.5000 190.7500 -72.0 + 173.7500 184.5000 -72.0 + 174.5000 182.7500 -72.0 + 175.7500 174.5000 -72.0 + 176.5000 172.7500 -72.0 + 176.7500 139.5000 -72.0 + 175.7500 137.5000 -72.0 + 175.7500 134.5000 -72.0 + 174.7500 132.5000 -72.0 + 174.7500 130.5000 -72.0 + 173.7500 128.5000 -72.0 + 173.7500 126.5000 -72.0 + 171.7500 122.5000 -72.0 + 171.7500 120.5000 -72.0 + 169.7500 116.5000 -72.0 + 169.7500 114.5000 -72.0 + 166.7500 108.5000 -72.0 + 166.7500 106.5000 -72.0 + 154.7500 82.5000 -72.0 + 151.7500 77.5000 -72.0 + 151.7500 75.5000 -72.0 + 154.7500 68.5000 -72.0 + 150.7500 64.5000 -72.0 + 149.7500 62.5000 -72.0 + 147.5000 61.2500 -72.0 + 141.5000 58.2500 -72.0 + 139.7500 57.5000 -72.0 + 136.5000 57.2500 -72.0 + 136.2500 58.5000 -72.0 + 137.5000 59.7500 -72.0 + 139.5000 60.7500 -72.0 + 144.2500 66.5000 -72.0 + 146.2500 70.5000 -72.0 + 143.5000 73.2500 -72.0 + 141.5000 73.2500 -72.0 + 139.5000 74.2500 -72.0 + 136.5000 74.2500 -72.0 + 132.5000 72.2500 -72.0 + 125.5000 71.2500 -72.0 + 117.7500 65.5000 -72.0 + 110.5000 65.2500 -72.0 + 105.7500 61.5000 -72.0 + 101.5000 64.2500 -72.0 + 96.5000 64.2500 -72.0 + 88.5000 70.2500 -72.0 + 84.5000 67.2500 -72.0 + 78.5000 70.2500 -72.0 + 73.5000 70.2500 -72.0 + 69.7500 68.5000 -72.0 + 69.7500 66.5000 -72.0 + 70.7500 63.5000 -72.0 + 73.5000 61.7500 -72.0 + 77.5000 59.7500 -72.0 + 81.5000 56.7500 -72.0 + 83.5000 55.7500 -72.0 + 85.2500 57.5000 -72.0 + 85.2500 60.5000 -72.0 + 89.7500 58.5000 -72.0 + 90.7500 56.5000 -72.0 + 92.5000 55.7500 -72.0 + 98.5000 52.7500 -72.0 + 103.5000 52.7500 -72.0 + 107.5000 50.7500 -72.0 + 112.5000 50.7500 -72.0 + 118.2500 53.5000 -72.0 + 120.5000 53.7500 -72.0 + 124.5000 57.7500 -72.0 + 126.5000 58.7500 -72.0 + 128.5000 56.7500 -72.0 + 130.5000 56.7500 -72.0 + 130.7500 55.5000 -72.0 + 126.7500 53.5000 -72.0 + 124.5000 53.2500 -72.0 + 115.5000 50.2500 -72.0 + 113.7500 49.5000 -72.0 +} -72.0 +{ -72.0 + 102.7500 65.5000 -72.0 + 103.5000 64.7500 -72.0 + 107.5000 64.7500 -72.0 + 111.5000 67.7500 -72.0 + 113.5000 66.7500 -72.0 + 117.5000 66.7500 -72.0 + 119.2500 68.5000 -72.0 + 123.5000 71.7500 -72.0 + 125.5000 72.7500 -72.0 + 126.2500 74.5000 -72.0 + 131.5000 74.7500 -72.0 + 135.5000 76.7500 -72.0 + 137.5000 75.7500 -72.0 + 142.5000 75.7500 -72.0 + 144.5000 77.7500 -72.0 + 151.2500 81.5000 -72.0 + 154.2500 86.5000 -72.0 + 153.2500 88.5000 -72.0 + 156.2500 94.5000 -72.0 + 160.2500 101.5000 -72.0 + 160.2500 107.5000 -72.0 + 161.2500 109.5000 -72.0 + 161.2500 111.5000 -72.0 + 162.2500 113.5000 -72.0 + 162.2500 118.5000 -72.0 + 163.2500 120.5000 -72.0 + 163.2500 122.5000 -72.0 + 164.2500 124.5000 -72.0 + 164.2500 126.5000 -72.0 + 165.2500 128.5000 -72.0 + 165.2500 133.5000 -72.0 + 166.2500 135.5000 -72.0 + 166.2500 139.5000 -72.0 + 167.2500 141.5000 -72.0 + 167.2500 145.5000 -72.0 + 168.2500 147.5000 -72.0 + 168.2500 162.5000 -72.0 + 171.2500 168.5000 -72.0 + 169.5000 171.2500 -72.0 + 169.2500 174.5000 -72.0 + 168.2500 179.5000 -72.0 + 165.2500 183.5000 -72.0 + 163.2500 187.5000 -72.0 + 158.2500 195.5000 -72.0 + 156.2500 199.5000 -72.0 + 146.5000 208.2500 -72.0 + 144.5000 209.2500 -72.0 + 136.5000 214.2500 -72.0 + 127.5000 219.2500 -72.0 + 125.5000 219.2500 -72.0 + 121.5000 221.2500 -72.0 + 119.5000 221.2500 -72.0 + 117.5000 222.2500 -72.0 + 110.5000 222.2500 -72.0 + 108.7500 221.5000 -72.0 + 99.5000 221.2500 -72.0 + 92.5000 220.2500 -72.0 + 90.5000 221.2500 -72.0 + 84.5000 221.2500 -72.0 + 79.5000 220.2500 -72.0 + 76.5000 219.2500 -72.0 + 66.7500 214.5000 -72.0 + 60.5000 210.2500 -72.0 + 58.5000 209.2500 -72.0 + 49.7500 200.5000 -72.0 + 40.7500 188.5000 -72.0 + 40.7500 186.5000 -72.0 + 37.7500 180.5000 -72.0 + 37.7500 178.5000 -72.0 + 35.7500 174.5000 -72.0 + 35.7500 169.5000 -72.0 + 34.7500 167.5000 -72.0 + 34.7500 163.5000 -72.0 + 33.7500 161.5000 -72.0 + 35.7500 158.5000 -72.0 + 36.7500 151.5000 -72.0 + 37.7500 146.5000 -72.0 + 41.7500 134.5000 -72.0 + 45.5000 125.7500 -72.0 + 45.7500 116.5000 -72.0 + 46.5000 114.7500 -72.0 + 46.7500 108.5000 -72.0 + 48.5000 104.7500 -72.0 + 48.7500 101.5000 -72.0 + 49.7500 98.5000 -72.0 + 52.5000 92.7500 -72.0 + 55.7500 83.5000 -72.0 + 57.5000 79.7500 -72.0 + 62.5000 76.7500 -72.0 + 66.5000 73.7500 -72.0 + 68.5000 73.7500 -72.0 + 71.5000 74.7500 -72.0 + 75.5000 72.7500 -72.0 + 77.2500 73.5000 -72.0 + 80.5000 73.7500 -72.0 + 80.7500 72.5000 -72.0 + 82.5000 70.7500 -72.0 + 87.5000 71.7500 -72.0 + 93.5000 68.7500 -72.0 + 98.5000 65.7500 -72.0 +} -72.0 +{ -72.0 + 64.7500 67.5000 -72.0 + 65.5000 66.7500 -72.0 + 68.2500 70.5000 -72.0 + 67.5000 71.2500 -72.0 + 63.7500 69.5000 -72.0 +} -72.0 +{ -72.0 + 147.7500 71.5000 -72.0 + 148.5000 70.7500 -72.0 + 150.2500 71.5000 -72.0 + 150.2500 73.5000 -72.0 + 149.5000 75.2500 -72.0 + 147.7500 73.5000 -72.0 +} -72.0 +{ -72.0 + 61.7500 72.5000 -72.0 + 62.5000 71.7500 -72.0 + 63.2500 72.5000 -72.0 + 62.5000 73.2500 -72.0 +} -72.0 +v 199 z -74.000000 -64.0 +{ -74.0 + 105.2500 48.5000 -74.0 + 104.5000 49.2500 -74.0 + 100.5000 49.2500 -74.0 + 92.5000 53.2500 -74.0 + 90.5000 53.2500 -74.0 + 88.5000 54.2500 -74.0 + 91.2500 58.5000 -74.0 + 94.5000 55.7500 -74.0 + 98.5000 52.7500 -74.0 + 100.5000 52.7500 -74.0 + 102.5000 51.7500 -74.0 + 105.5000 52.7500 -74.0 + 106.5000 50.7500 -74.0 + 112.5000 50.7500 -74.0 + 120.2500 54.5000 -74.0 + 121.5000 56.7500 -74.0 + 123.5000 57.7500 -74.0 + 124.7500 54.5000 -74.0 + 113.7500 49.5000 -74.0 + 111.5000 49.2500 -74.0 + 109.7500 48.5000 -74.0 +} -74.0 +{ -74.0 + 68.2500 57.5000 -74.0 + 66.5000 58.2500 -74.0 + 59.5000 64.2500 -74.0 + 59.2500 68.5000 -74.0 + 60.2500 71.5000 -74.0 + 58.2500 76.5000 -74.0 + 55.2500 79.5000 -74.0 + 47.5000 94.2500 -74.0 + 47.2500 96.5000 -74.0 + 32.2500 137.5000 -74.0 + 28.5000 157.2500 -74.0 + 28.2500 172.5000 -74.0 + 29.2500 174.5000 -74.0 + 29.2500 179.5000 -74.0 + 30.2500 181.5000 -74.0 + 31.2500 188.5000 -74.0 + 39.2500 204.5000 -74.0 + 43.2500 208.5000 -74.0 + 44.5000 210.7500 -74.0 + 54.5000 219.7500 -74.0 + 61.2500 223.5000 -74.0 + 69.2500 226.5000 -74.0 + 81.5000 226.7500 -74.0 + 86.2500 228.5000 -74.0 + 107.5000 229.7500 -74.0 + 109.5000 228.7500 -74.0 + 113.5000 228.7500 -74.0 + 115.5000 227.7500 -74.0 + 128.5000 227.7500 -74.0 + 130.5000 226.7500 -74.0 + 132.5000 226.7500 -74.0 + 143.5000 222.7500 -74.0 + 150.5000 217.7500 -74.0 + 160.7500 207.5000 -74.0 + 170.5000 193.7500 -74.0 + 173.7500 184.5000 -74.0 + 176.5000 172.7500 -74.0 + 177.7500 157.5000 -74.0 + 176.7500 155.5000 -74.0 + 177.7500 143.5000 -74.0 + 176.7500 141.5000 -74.0 + 176.7500 137.5000 -74.0 + 175.7500 135.5000 -74.0 + 174.7500 128.5000 -74.0 + 172.7500 124.5000 -74.0 + 172.7500 122.5000 -74.0 + 169.7500 116.5000 -74.0 + 169.7500 114.5000 -74.0 + 165.7500 106.5000 -74.0 + 163.7500 100.5000 -74.0 + 158.7500 92.5000 -74.0 + 154.7500 82.5000 -74.0 + 151.7500 79.5000 -74.0 + 151.7500 75.5000 -74.0 + 155.5000 69.7500 -74.0 + 155.7500 67.5000 -74.0 + 152.7500 63.5000 -74.0 + 148.7500 60.5000 -74.0 + 143.5000 59.2500 -74.0 + 143.2500 61.5000 -74.0 + 145.2500 63.5000 -74.0 + 148.2500 69.5000 -74.0 + 147.5000 70.2500 -74.0 + 147.2500 72.5000 -74.0 + 145.5000 74.2500 -74.0 + 141.5000 76.2500 -74.0 + 139.5000 76.2500 -74.0 + 139.2500 77.5000 -74.0 + 142.5000 77.7500 -74.0 + 148.5000 80.7500 -74.0 + 153.2500 88.5000 -74.0 + 153.2500 90.5000 -74.0 + 159.2500 101.5000 -74.0 + 159.2500 106.5000 -74.0 + 161.2500 110.5000 -74.0 + 163.2500 120.5000 -74.0 + 165.2500 124.5000 -74.0 + 165.2500 126.5000 -74.0 + 166.2500 128.5000 -74.0 + 166.2500 134.5000 -74.0 + 167.2500 136.5000 -74.0 + 167.2500 140.5000 -74.0 + 169.2500 147.5000 -74.0 + 169.2500 162.5000 -74.0 + 171.2500 166.5000 -74.0 + 169.5000 168.2500 -74.0 + 169.2500 175.5000 -74.0 + 167.5000 179.2500 -74.0 + 167.2500 181.5000 -74.0 + 155.2500 200.5000 -74.0 + 146.5000 208.2500 -74.0 + 125.5000 220.2500 -74.0 + 123.5000 220.2500 -74.0 + 119.5000 222.2500 -74.0 + 109.5000 222.2500 -74.0 + 107.7500 221.5000 -74.0 + 101.5000 221.2500 -74.0 + 99.5000 222.2500 -74.0 + 97.7500 221.5000 -74.0 + 81.5000 221.2500 -74.0 + 72.5000 218.2500 -74.0 + 60.5000 211.2500 -74.0 + 50.5000 202.2500 -74.0 + 42.7500 191.5000 -74.0 + 37.7500 181.5000 -74.0 + 37.7500 179.5000 -74.0 + 35.7500 175.5000 -74.0 + 35.7500 170.5000 -74.0 + 34.7500 168.5000 -74.0 + 34.7500 159.5000 -74.0 + 36.7500 149.5000 -74.0 + 45.5000 125.7500 -74.0 + 46.7500 113.5000 -74.0 + 48.5000 111.7500 -74.0 + 48.7500 109.5000 -74.0 + 46.7500 107.5000 -74.0 + 49.7500 102.5000 -74.0 + 50.7500 97.5000 -74.0 + 53.7500 91.5000 -74.0 + 52.7500 89.5000 -74.0 + 54.7500 84.5000 -74.0 + 57.5000 80.7500 -74.0 + 65.5000 74.7500 -74.0 + 67.5000 74.7500 -74.0 + 73.5000 76.7500 -74.0 + 75.5000 74.7500 -74.0 + 79.2500 76.5000 -74.0 + 81.5000 76.7500 -74.0 + 83.5000 74.7500 -74.0 + 85.5000 74.7500 -74.0 + 87.5000 72.7500 -74.0 + 96.7500 67.5000 -74.0 + 94.5000 67.2500 -74.0 + 90.5000 69.2500 -74.0 + 88.5000 69.2500 -74.0 + 82.5000 73.2500 -74.0 + 72.5000 73.2500 -74.0 + 69.5000 72.2500 -74.0 + 66.7500 69.5000 -74.0 + 67.7500 64.5000 -74.0 + 74.7500 57.5000 -74.0 +} -74.0 +{ -74.0 + 105.2500 61.5000 -74.0 + 105.2500 62.5000 -74.0 + 100.5000 66.2500 -74.0 + 97.5000 66.2500 -74.0 + 98.2500 67.5000 -74.0 + 101.5000 67.7500 -74.0 + 103.5000 65.7500 -74.0 + 108.5000 65.7500 -74.0 + 110.5000 68.7500 -74.0 + 112.5000 67.7500 -74.0 + 117.5000 67.7500 -74.0 + 123.2500 73.5000 -74.0 + 125.2500 77.5000 -74.0 + 125.2500 79.5000 -74.0 + 126.5000 79.7500 -74.0 + 128.5000 77.7500 -74.0 + 135.5000 77.7500 -74.0 + 136.7500 76.5000 -74.0 + 131.5000 76.2500 -74.0 + 125.5000 73.2500 -74.0 + 122.7500 68.5000 -74.0 + 120.5000 68.2500 -74.0 + 115.5000 66.2500 -74.0 + 113.5000 67.2500 -74.0 + 111.5000 67.2500 -74.0 +} -74.0 +{ -74.0 + 62.7500 69.5000 -74.0 + 63.5000 68.7500 -74.0 + 65.2500 69.5000 -74.0 + 65.2500 71.5000 -74.0 + 63.5000 73.2500 -74.0 + 61.7500 72.5000 -74.0 + 62.5000 71.7500 -74.0 +} -74.0 +{ -74.0 + 150.5000 71.7500 -74.0 + 151.2500 72.5000 -74.0 + 150.2500 75.5000 -74.0 + 148.5000 76.2500 -74.0 + 147.7500 74.5000 -74.0 +} -74.0 +v 191 z -76.000000 -74.0 +{ -74.0 + 103.2500 48.5000 -74.0 + 101.5000 49.2500 -74.0 + 93.5000 54.2500 -74.0 + 93.2500 61.5000 -74.0 + 96.5000 54.7500 -74.0 + 102.5000 51.7500 -74.0 + 104.5000 51.7500 -74.0 + 106.2500 53.5000 -74.0 + 107.5000 51.7500 -74.0 + 113.5000 51.7500 -74.0 + 116.5000 52.7500 -74.0 + 120.2500 56.5000 -74.0 + 120.2500 59.5000 -74.0 + 121.7500 56.5000 -74.0 + 120.7500 53.5000 -74.0 + 111.7500 48.5000 -74.0 +} -74.0 +{ -74.0 + 65.2500 58.5000 -74.0 + 63.5000 59.2500 -74.0 + 57.5000 65.2500 -74.0 + 60.2500 70.5000 -74.0 + 60.2500 72.5000 -74.0 + 57.5000 78.2500 -74.0 + 54.2500 82.5000 -74.0 + 48.2500 94.5000 -74.0 + 38.2500 121.5000 -74.0 + 32.2500 135.5000 -74.0 + 31.2500 140.5000 -74.0 + 28.5000 156.2500 -74.0 + 28.2500 172.5000 -74.0 + 29.2500 174.5000 -74.0 + 29.2500 179.5000 -74.0 + 30.2500 181.5000 -74.0 + 30.2500 184.5000 -74.0 + 35.2500 197.5000 -74.0 + 41.2500 207.5000 -74.0 + 56.2500 221.5000 -74.0 + 68.2500 226.5000 -74.0 + 78.5000 226.7500 -74.0 + 89.2500 229.5000 -74.0 + 110.5000 229.7500 -74.0 + 112.5000 228.7500 -74.0 + 125.5000 228.7500 -74.0 + 127.5000 227.7500 -74.0 + 130.5000 227.7500 -74.0 + 143.5000 222.7500 -74.0 + 153.5000 215.7500 -74.0 + 160.7500 207.5000 -74.0 + 170.5000 193.7500 -74.0 + 173.7500 184.5000 -74.0 + 176.5000 172.7500 -74.0 + 176.7500 165.5000 -74.0 + 177.5000 163.7500 -74.0 + 177.7500 141.5000 -74.0 + 176.7500 139.5000 -74.0 + 176.7500 134.5000 -74.0 + 174.7500 130.5000 -74.0 + 174.7500 127.5000 -74.0 + 163.7500 101.5000 -74.0 + 155.7500 89.5000 -74.0 + 155.7500 87.5000 -74.0 + 151.7500 79.5000 -74.0 + 151.7500 76.5000 -74.0 + 152.7500 73.5000 -74.0 + 156.5000 70.7500 -74.0 + 156.7500 67.5000 -74.0 + 154.5000 64.2500 -74.0 + 150.7500 61.5000 -74.0 + 147.5000 61.2500 -74.0 + 147.2500 62.5000 -74.0 + 149.2500 66.5000 -74.0 + 149.2500 70.5000 -74.0 + 147.2500 75.5000 -74.0 + 148.5000 75.7500 -74.0 + 150.2500 77.5000 -74.0 + 149.5000 79.2500 -74.0 + 147.5000 78.2500 -74.0 + 146.7500 76.5000 -74.0 + 145.5000 76.2500 -74.0 + 141.5000 78.2500 -74.0 + 138.5000 78.2500 -74.0 + 136.5000 79.2500 -74.0 + 134.7500 78.5000 -74.0 + 125.5000 78.2500 -74.0 + 120.7500 68.5000 -74.0 + 110.5000 68.2500 -74.0 + 106.7500 63.5000 -74.0 + 104.5000 64.2500 -74.0 + 101.5000 68.2500 -74.0 + 99.5000 68.2500 -74.0 + 100.5000 69.7500 -74.0 + 103.5000 68.7500 -74.0 + 103.7500 66.5000 -74.0 + 105.5000 64.7500 -74.0 + 107.2500 65.5000 -74.0 + 110.5000 69.7500 -74.0 + 112.5000 68.7500 -74.0 + 115.5000 68.7500 -74.0 + 117.2500 69.5000 -74.0 + 123.2500 76.5000 -74.0 + 123.2500 78.5000 -74.0 + 125.2500 80.5000 -74.0 + 136.5000 80.7500 -74.0 + 139.5000 81.7500 -74.0 + 143.5000 79.7500 -74.0 + 145.5000 80.7500 -74.0 + 147.2500 84.5000 -74.0 + 151.2500 88.5000 -74.0 + 151.2500 91.5000 -74.0 + 153.2500 93.5000 -74.0 + 156.2500 98.5000 -74.0 + 156.2500 102.5000 -74.0 + 161.2500 110.5000 -74.0 + 161.2500 112.5000 -74.0 + 164.2500 118.5000 -74.0 + 164.2500 121.5000 -74.0 + 166.2500 125.5000 -74.0 + 166.2500 129.5000 -74.0 + 168.2500 136.5000 -74.0 + 168.2500 141.5000 -74.0 + 170.2500 147.5000 -74.0 + 170.2500 161.5000 -74.0 + 171.2500 163.5000 -74.0 + 171.2500 165.5000 -74.0 + 169.5000 167.2500 -74.0 + 169.2500 175.5000 -74.0 + 167.5000 179.2500 -74.0 + 167.2500 181.5000 -74.0 + 158.2500 195.5000 -74.0 + 151.5000 204.2500 -74.0 + 149.2500 205.5000 -74.0 + 148.2500 207.5000 -74.0 + 140.5000 212.2500 -74.0 + 125.5000 220.2500 -74.0 + 123.5000 220.2500 -74.0 + 119.5000 222.2500 -74.0 + 108.5000 222.2500 -74.0 + 103.5000 221.2500 -74.0 + 101.5000 222.2500 -74.0 + 98.5000 222.2500 -74.0 + 96.7500 221.5000 -74.0 + 80.5000 221.2500 -74.0 + 71.7500 217.5000 -74.0 + 69.5000 217.2500 -74.0 + 64.5000 213.2500 -74.0 + 58.5000 210.2500 -74.0 + 49.7500 201.5000 -74.0 + 43.7500 193.5000 -74.0 + 37.7500 181.5000 -74.0 + 37.7500 179.5000 -74.0 + 35.7500 175.5000 -74.0 + 35.7500 173.5000 -74.0 + 34.7500 171.5000 -74.0 + 34.7500 159.5000 -74.0 + 33.7500 157.5000 -74.0 + 35.5000 154.7500 -74.0 + 36.7500 148.5000 -74.0 + 45.5000 125.7500 -74.0 + 46.7500 117.5000 -74.0 + 49.5000 111.7500 -74.0 + 49.7500 107.5000 -74.0 + 48.7500 105.5000 -74.0 + 48.7500 103.5000 -74.0 + 51.7500 100.5000 -74.0 + 52.7500 95.5000 -74.0 + 54.7500 84.5000 -74.0 + 64.5000 75.7500 -74.0 + 67.5000 75.7500 -74.0 + 69.2500 77.5000 -74.0 + 80.5000 78.7500 -74.0 + 86.5000 75.7500 -74.0 + 93.7500 69.5000 -74.0 + 90.5000 69.2500 -74.0 + 89.5000 71.2500 -74.0 + 81.5000 76.2500 -74.0 + 76.5000 76.2500 -74.0 + 67.5000 74.2500 -74.0 + 65.7500 72.5000 -74.0 + 65.7500 64.5000 -74.0 + 69.7500 58.5000 -74.0 +} -74.0 +{ -74.0 + 62.7500 72.5000 -74.0 + 63.5000 71.7500 -74.0 + 64.2500 72.5000 -74.0 + 63.5000 73.2500 -74.0 +} -74.0 +{ -74.0 + 149.7500 73.5000 -74.0 + 150.5000 72.7500 -74.0 + 151.2500 73.5000 -74.0 + 150.5000 74.2500 -74.0 +} -74.0 +{ -74.0 + 61.7500 217.5000 -74.0 + 62.5000 216.7500 -74.0 + 63.2500 217.5000 -74.0 + 62.5000 218.2500 -74.0 +} -74.0 +v 184 z -78.000000 -64.0 +{ -78.0 + 105.2500 47.5000 -78.0 + 104.5000 48.2500 -78.0 + 102.5000 48.2500 -78.0 + 97.5000 52.2500 -78.0 + 95.5000 53.2500 -78.0 + 94.5000 55.2500 -78.0 + 94.2500 60.5000 -78.0 + 95.5000 60.7500 -78.0 + 95.7500 58.5000 -78.0 + 96.7500 55.5000 -78.0 + 101.5000 52.7500 -78.0 + 105.5000 52.7500 -78.0 + 107.5000 54.7500 -78.0 + 111.5000 52.7500 -78.0 + 113.2500 53.5000 -78.0 + 115.5000 53.7500 -78.0 + 118.2500 56.5000 -78.0 + 118.2500 58.5000 -78.0 + 119.5000 61.7500 -78.0 + 119.7500 54.5000 -78.0 + 114.5000 50.2500 -78.0 + 110.5000 48.2500 -78.0 + 108.7500 47.5000 -78.0 +} -78.0 +{ -78.0 + 64.2500 58.5000 -78.0 + 60.5000 60.2500 -78.0 + 58.2500 62.5000 -78.0 + 56.2500 66.5000 -78.0 + 60.2500 70.5000 -78.0 + 60.2500 73.5000 -78.0 + 49.5000 92.2500 -78.0 + 31.5000 137.2500 -78.0 + 31.2500 139.5000 -78.0 + 28.5000 155.2500 -78.0 + 28.2500 172.5000 -78.0 + 29.2500 174.5000 -78.0 + 29.2500 179.5000 -78.0 + 30.2500 181.5000 -78.0 + 30.2500 184.5000 -78.0 + 35.2500 197.5000 -78.0 + 41.2500 207.5000 -78.0 + 53.5000 219.7500 -78.0 + 60.2500 223.5000 -78.0 + 66.5000 225.7500 -78.0 + 74.2500 227.5000 -78.0 + 75.5000 226.7500 -78.0 + 93.2500 230.5000 -78.0 + 106.5000 230.7500 -78.0 + 108.5000 229.7500 -78.0 + 112.5000 229.7500 -78.0 + 114.5000 228.7500 -78.0 + 126.5000 228.7500 -78.0 + 128.5000 227.7500 -78.0 + 132.5000 227.7500 -78.0 + 140.5000 223.7500 -78.0 + 142.5000 223.7500 -78.0 + 154.5000 214.7500 -78.0 + 166.5000 199.7500 -78.0 + 172.7500 188.5000 -78.0 + 174.7500 181.5000 -78.0 + 175.7500 174.5000 -78.0 + 177.5000 164.7500 -78.0 + 177.7500 139.5000 -78.0 + 176.7500 137.5000 -78.0 + 175.7500 130.5000 -78.0 + 173.7500 126.5000 -78.0 + 173.5000 124.2500 -78.0 + 160.7500 96.5000 -78.0 + 155.7500 90.5000 -78.0 + 151.7500 82.5000 -78.0 + 151.7500 75.5000 -78.0 + 157.5000 70.7500 -78.0 + 157.7500 68.5000 -78.0 + 156.5000 65.2500 -78.0 + 152.7500 62.5000 -78.0 + 149.2500 62.5000 -78.0 + 151.2500 68.5000 -78.0 + 148.2500 74.5000 -78.0 + 149.2500 77.5000 -78.0 + 146.5000 80.2500 -78.0 + 142.7500 79.5000 -78.0 + 141.5000 80.2500 -78.0 + 127.5000 81.2500 -78.0 + 124.5000 80.2500 -78.0 + 122.5000 77.2500 -78.0 + 122.2500 79.5000 -78.0 + 123.5000 80.7500 -78.0 + 129.2500 83.5000 -78.0 + 138.5000 83.7500 -78.0 + 144.2500 86.5000 -78.0 + 144.2500 88.5000 -78.0 + 146.5000 88.7500 -78.0 + 149.5000 92.7500 -78.0 + 153.2500 95.5000 -78.0 + 151.2500 96.5000 -78.0 + 152.2500 99.5000 -78.0 + 157.2500 104.5000 -78.0 + 163.2500 113.5000 -78.0 + 163.2500 115.5000 -78.0 + 165.2500 119.5000 -78.0 + 165.2500 122.5000 -78.0 + 167.2500 126.5000 -78.0 + 168.2500 135.5000 -78.0 + 170.2500 137.5000 -78.0 + 169.5000 138.2500 -78.0 + 169.2500 142.5000 -78.0 + 170.2500 144.5000 -78.0 + 170.2500 152.5000 -78.0 + 171.2500 155.5000 -78.0 + 170.2500 158.5000 -78.0 + 172.2500 162.5000 -78.0 + 169.5000 167.2500 -78.0 + 169.2500 171.5000 -78.0 + 170.2500 173.5000 -78.0 + 169.2500 177.5000 -78.0 + 167.5000 179.2500 -78.0 + 167.2500 181.5000 -78.0 + 157.2500 197.5000 -78.0 + 148.5000 207.2500 -78.0 + 130.5000 218.2500 -78.0 + 120.5000 222.2500 -78.0 + 118.5000 222.2500 -78.0 + 116.5000 223.2500 -78.0 + 97.5000 222.2500 -78.0 + 95.7500 221.5000 -78.0 + 90.5000 221.2500 -78.0 + 88.5000 222.2500 -78.0 + 76.5000 220.2500 -78.0 + 68.7500 216.5000 -78.0 + 58.5000 210.2500 -78.0 + 50.7500 203.5000 -78.0 + 44.7500 195.5000 -78.0 + 38.7500 184.5000 -78.0 + 38.7500 182.5000 -78.0 + 35.7500 176.5000 -78.0 + 35.7500 172.5000 -78.0 + 34.7500 170.5000 -78.0 + 34.7500 152.5000 -78.0 + 36.7500 146.5000 -78.0 + 43.5000 130.7500 -78.0 + 46.7500 118.5000 -78.0 + 50.5000 110.7500 -78.0 + 51.7500 101.5000 -78.0 + 54.5000 95.7500 -78.0 + 54.7500 87.5000 -78.0 + 56.7500 82.5000 -78.0 + 59.5000 79.7500 -78.0 + 65.5000 76.7500 -78.0 + 69.2500 79.5000 -78.0 + 74.5000 79.7500 -78.0 + 76.2500 80.5000 -78.0 + 77.2500 82.5000 -78.0 + 80.7500 82.5000 -78.0 + 81.7500 80.5000 -78.0 + 84.7500 78.5000 -78.0 + 72.5000 78.2500 -78.0 + 66.5000 75.2500 -78.0 + 63.7500 69.5000 -78.0 + 63.7500 66.5000 -78.0 + 66.5000 59.7500 -78.0 + 65.7500 58.5000 -78.0 +} -78.0 +{ -78.0 + 104.2500 64.5000 -78.0 + 102.5000 70.2500 -78.0 + 99.5000 70.2500 -78.0 + 100.5000 71.7500 -78.0 + 102.5000 70.7500 -78.0 + 105.7500 71.5000 -78.0 + 104.7500 69.5000 -78.0 +} -78.0 +{ -78.0 + 108.2500 65.5000 -78.0 + 108.5000 69.7500 -78.0 + 110.5000 70.7500 -78.0 + 112.5000 69.7500 -78.0 + 109.7500 68.5000 -78.0 +} -78.0 +{ -78.0 + 92.2500 70.5000 -78.0 + 91.2500 72.5000 -78.0 + 88.2500 75.5000 -78.0 + 87.2500 77.5000 -78.0 + 88.5000 77.7500 -78.0 + 93.7500 70.5000 -78.0 +} -78.0 +{ -78.0 + 119.2500 71.5000 -78.0 + 118.5000 72.2500 -78.0 + 119.2500 74.5000 -78.0 + 121.7500 76.5000 -78.0 + 120.7500 74.5000 -78.0 + 120.7500 72.5000 -78.0 +} -78.0 +v 194 z -80.000000 -64.0 +{ -80.0 + 106.2500 46.5000 -80.0 + 102.5000 48.2500 -80.0 + 95.5000 55.2500 -80.0 + 95.2500 60.5000 -80.0 + 96.5000 59.7500 -80.0 + 96.7500 57.5000 -80.0 + 98.5000 55.7500 -80.0 + 105.5000 54.7500 -80.0 + 108.5000 55.7500 -80.0 + 110.5000 54.7500 -80.0 + 115.5000 54.7500 -80.0 + 118.5000 58.7500 -80.0 + 118.7500 56.5000 -80.0 + 114.7500 50.5000 -80.0 + 107.7500 46.5000 -80.0 +} -80.0 +{ -80.0 + 61.2500 59.5000 -80.0 + 56.5000 63.2500 -80.0 + 56.5000 67.7500 -80.0 + 60.2500 70.5000 -80.0 + 60.2500 75.5000 -80.0 + 58.2500 79.5000 -80.0 + 54.5000 85.2500 -80.0 + 54.2500 87.5000 -80.0 + 48.5000 95.2500 -80.0 + 48.2500 97.5000 -80.0 + 45.2500 103.5000 -80.0 + 44.2500 108.5000 -80.0 + 38.2500 120.5000 -80.0 + 31.2500 138.5000 -80.0 + 29.5000 145.2500 -80.0 + 29.2500 152.5000 -80.0 + 28.5000 154.2500 -80.0 + 28.2500 171.5000 -80.0 + 29.2500 173.5000 -80.0 + 29.2500 178.5000 -80.0 + 30.2500 180.5000 -80.0 + 31.5000 188.7500 -80.0 + 37.2500 201.5000 -80.0 + 41.2500 207.5000 -80.0 + 51.2500 217.5000 -80.0 + 57.2500 222.5000 -80.0 + 59.5000 222.7500 -80.0 + 65.5000 225.7500 -80.0 + 72.2500 227.5000 -80.0 + 79.5000 227.7500 -80.0 + 95.2500 231.5000 -80.0 + 104.5000 231.7500 -80.0 + 106.5000 230.7500 -80.0 + 115.5000 229.7500 -80.0 + 117.5000 228.7500 -80.0 + 118.2500 229.5000 -80.0 + 119.5000 228.7500 -80.0 + 126.5000 228.7500 -80.0 + 128.5000 227.7500 -80.0 + 135.5000 226.7500 -80.0 + 147.5000 220.7500 -80.0 + 155.5000 213.7500 -80.0 + 166.7500 199.5000 -80.0 + 172.7500 188.5000 -80.0 + 175.7500 177.5000 -80.0 + 176.7500 168.5000 -80.0 + 177.5000 166.7500 -80.0 + 177.7500 154.5000 -80.0 + 178.7500 147.5000 -80.0 + 177.7500 145.5000 -80.0 + 177.7500 138.5000 -80.0 + 172.7500 121.5000 -80.0 + 160.7500 96.5000 -80.0 + 152.7500 87.5000 -80.0 + 152.7500 85.5000 -80.0 + 149.7500 81.5000 -80.0 + 152.7500 74.5000 -80.0 + 158.5000 71.7500 -80.0 + 158.7500 69.5000 -80.0 + 157.7500 66.5000 -80.0 + 154.7500 63.5000 -80.0 + 151.2500 63.5000 -80.0 + 152.2500 65.5000 -80.0 + 152.2500 68.5000 -80.0 + 151.2500 71.5000 -80.0 + 146.5000 77.2500 -80.0 + 147.2500 78.5000 -80.0 + 145.2500 79.5000 -80.0 + 144.2500 81.5000 -80.0 + 145.2500 83.5000 -80.0 + 145.2500 89.5000 -80.0 + 144.5000 91.2500 -80.0 + 140.7500 85.5000 -80.0 + 140.7500 81.5000 -80.0 + 139.5000 81.2500 -80.0 + 135.5000 83.2500 -80.0 + 133.5000 83.2500 -80.0 + 131.5000 84.2500 -80.0 + 130.7500 83.5000 -80.0 + 128.5000 83.2500 -80.0 + 128.2500 84.5000 -80.0 + 133.2500 87.5000 -80.0 + 137.5000 87.7500 -80.0 + 157.2500 103.5000 -80.0 + 163.2500 112.5000 -80.0 + 163.2500 114.5000 -80.0 + 166.2500 120.5000 -80.0 + 166.2500 122.5000 -80.0 + 168.2500 126.5000 -80.0 + 169.2500 133.5000 -80.0 + 171.2500 137.5000 -80.0 + 170.5000 139.2500 -80.0 + 170.2500 144.5000 -80.0 + 171.2500 146.5000 -80.0 + 171.2500 157.5000 -80.0 + 172.2500 160.5000 -80.0 + 170.5000 164.2500 -80.0 + 169.5000 169.2500 -80.0 + 170.2500 170.5000 -80.0 + 170.2500 173.5000 -80.0 + 167.2500 181.5000 -80.0 + 157.2500 197.5000 -80.0 + 148.2500 207.5000 -80.0 + 141.5000 212.2500 -80.0 + 132.5000 217.2500 -80.0 + 118.5000 223.2500 -80.0 + 104.5000 222.2500 -80.0 + 102.5000 223.2500 -80.0 + 78.5000 221.2500 -80.0 + 72.5000 219.2500 -80.0 + 65.7500 214.5000 -80.0 + 56.5000 209.2500 -80.0 + 48.7500 201.5000 -80.0 + 45.7500 197.5000 -80.0 + 37.7500 182.5000 -80.0 + 37.7500 180.5000 -80.0 + 35.7500 176.5000 -80.0 + 35.7500 172.5000 -80.0 + 34.7500 170.5000 -80.0 + 34.7500 159.5000 -80.0 + 35.5000 157.7500 -80.0 + 35.7500 152.5000 -80.0 + 34.7500 150.5000 -80.0 + 34.7500 147.5000 -80.0 + 37.5000 141.7500 -80.0 + 37.7500 139.5000 -80.0 + 44.7500 125.5000 -80.0 + 46.7500 116.5000 -80.0 + 50.7500 110.5000 -80.0 + 51.7500 105.5000 -80.0 + 53.5000 103.7500 -80.0 + 53.7500 100.5000 -80.0 + 57.5000 94.7500 -80.0 + 57.7500 90.5000 -80.0 + 56.7500 88.5000 -80.0 + 56.7500 86.5000 -80.0 + 59.7500 80.5000 -80.0 + 62.5000 78.7500 -80.0 + 67.5000 78.7500 -80.0 + 69.2500 80.5000 -80.0 + 71.5000 80.7500 -80.0 + 75.2500 83.5000 -80.0 + 79.5000 83.7500 -80.0 + 81.2500 84.5000 -80.0 + 87.7500 80.5000 -80.0 + 88.7500 78.5000 -80.0 + 84.5000 81.2500 -80.0 + 75.5000 80.2500 -80.0 + 69.5000 78.2500 -80.0 + 65.7500 75.5000 -80.0 + 62.7500 69.5000 -80.0 + 63.7500 59.5000 -80.0 +} -80.0 +{ -80.0 + 118.2500 61.5000 -80.0 + 118.2500 63.5000 -80.0 + 118.7500 62.5000 -80.0 +} -80.0 +{ -80.0 + 104.2500 63.5000 -80.0 + 104.2500 65.5000 -80.0 + 105.7500 63.5000 -80.0 +} -80.0 +{ -80.0 + 107.2500 63.5000 -80.0 + 108.2500 64.5000 -80.0 + 108.7500 63.5000 -80.0 +} -80.0 +{ -80.0 + 108.2500 66.5000 -80.0 + 108.2500 71.5000 -80.0 + 111.5000 71.7500 -80.0 +} -80.0 +{ -80.0 + 104.2500 68.5000 -80.0 + 104.2500 70.5000 -80.0 + 102.5000 72.7500 -80.0 + 104.5000 71.7500 -80.0 + 105.2500 72.5000 -80.0 + 106.5000 71.7500 -80.0 +} -80.0 +{ -80.0 + 117.2500 73.5000 -80.0 + 120.2500 79.5000 -80.0 + 121.5000 79.7500 -80.0 + 119.7500 76.5000 -80.0 + 119.7500 73.5000 -80.0 +} -80.0 +{ -80.0 + 153.7500 92.5000 -80.0 + 154.5000 91.7500 -80.0 + 155.2500 92.5000 -80.0 + 154.5000 93.2500 -80.0 +} -80.0 +v 203 z -82.000000 -64.0 +{ -82.0 + 106.2500 45.5000 -82.0 + 104.5000 46.2500 -82.0 + 96.5000 55.2500 -82.0 + 96.7500 58.5000 -82.0 + 98.5000 56.7500 -82.0 + 100.5000 56.7500 -82.0 + 102.5000 55.7500 -82.0 + 106.5000 55.7500 -82.0 + 108.5000 56.7500 -82.0 + 110.5000 55.7500 -82.0 + 114.5000 55.7500 -82.0 + 116.2500 56.5000 -82.0 + 117.2500 58.5000 -82.0 + 118.5000 58.7500 -82.0 + 118.7500 57.5000 -82.0 + 117.7500 54.5000 -82.0 + 108.7500 45.5000 -82.0 +} -82.0 +{ -82.0 + 60.2500 60.5000 -82.0 + 58.5000 61.2500 -82.0 + 55.5000 64.2500 -82.0 + 55.2500 67.5000 -82.0 + 58.5000 69.7500 -82.0 + 61.2500 73.5000 -82.0 + 61.2500 78.5000 -82.0 + 55.2500 86.5000 -82.0 + 56.2500 88.5000 -82.0 + 55.5000 90.2500 -82.0 + 54.7500 88.5000 -82.0 + 53.5000 88.2500 -82.0 + 52.2500 90.5000 -82.0 + 31.2500 136.5000 -82.0 + 29.5000 143.2500 -82.0 + 29.2500 152.5000 -82.0 + 28.5000 154.2500 -82.0 + 28.2500 171.5000 -82.0 + 29.2500 173.5000 -82.0 + 30.2500 183.5000 -82.0 + 31.2500 185.5000 -82.0 + 31.5000 188.7500 -82.0 + 37.2500 201.5000 -82.0 + 41.2500 207.5000 -82.0 + 52.2500 218.5000 -82.0 + 56.5000 221.7500 -82.0 + 71.2500 227.5000 -82.0 + 80.5000 227.7500 -82.0 + 84.5000 229.7500 -82.0 + 91.2500 231.5000 -82.0 + 103.5000 232.7500 -82.0 + 113.5000 229.7500 -82.0 + 121.5000 229.7500 -82.0 + 123.5000 228.7500 -82.0 + 126.5000 228.7500 -82.0 + 134.7500 226.5000 -82.0 + 147.5000 220.7500 -82.0 + 154.5000 214.7500 -82.0 + 163.5000 203.7500 -82.0 + 171.5000 190.7500 -82.0 + 171.7500 188.5000 -82.0 + 173.7500 184.5000 -82.0 + 175.7500 175.5000 -82.0 + 177.5000 166.7500 -82.0 + 178.7500 143.5000 -82.0 + 177.7500 141.5000 -82.0 + 177.7500 137.5000 -82.0 + 176.7500 135.5000 -82.0 + 175.7500 129.5000 -82.0 + 173.7500 125.5000 -82.0 + 173.7500 123.5000 -82.0 + 162.7500 101.5000 -82.0 + 157.5000 93.2500 -82.0 + 153.7500 90.5000 -82.0 + 152.7500 88.5000 -82.0 + 150.5000 88.2500 -82.0 + 147.7500 83.5000 -82.0 + 148.7500 80.5000 -82.0 + 150.5000 79.7500 -82.0 + 153.7500 74.5000 -82.0 + 158.5000 72.7500 -82.0 + 159.5000 70.7500 -82.0 + 158.7500 67.5000 -82.0 + 153.5000 64.2500 -82.0 + 153.2500 67.5000 -82.0 + 150.5000 74.2500 -82.0 + 148.5000 75.2500 -82.0 + 143.5000 80.2500 -82.0 + 134.5000 85.2500 -82.0 + 126.5000 85.2500 -82.0 + 127.2500 87.5000 -82.0 + 128.5000 87.7500 -82.0 + 131.2500 91.5000 -82.0 + 143.5000 92.7500 -82.0 + 143.7500 90.5000 -82.0 + 141.7500 88.5000 -82.0 + 139.5000 90.2500 -82.0 + 135.5000 90.2500 -82.0 + 133.7500 89.5000 -82.0 + 136.5000 86.7500 -82.0 + 140.5000 86.7500 -82.0 + 140.7500 84.5000 -82.0 + 142.5000 82.7500 -82.0 + 143.2500 83.5000 -82.0 + 143.2500 85.5000 -82.0 + 146.2500 87.5000 -82.0 + 145.5000 91.2500 -82.0 + 148.5000 92.7500 -82.0 + 151.2500 95.5000 -82.0 + 153.2500 99.5000 -82.0 + 161.2500 108.5000 -82.0 + 165.2500 116.5000 -82.0 + 165.2500 118.5000 -82.0 + 167.2500 120.5000 -82.0 + 167.2500 123.5000 -82.0 + 170.2500 129.5000 -82.0 + 170.2500 132.5000 -82.0 + 171.2500 134.5000 -82.0 + 171.2500 140.5000 -82.0 + 170.2500 142.5000 -82.0 + 171.2500 144.5000 -82.0 + 171.2500 151.5000 -82.0 + 172.2500 153.5000 -82.0 + 172.2500 158.5000 -82.0 + 170.5000 163.2500 -82.0 + 170.2500 173.5000 -82.0 + 167.2500 181.5000 -82.0 + 154.2500 201.5000 -82.0 + 147.5000 208.2500 -82.0 + 143.5000 211.2500 -82.0 + 122.5000 222.2500 -82.0 + 120.5000 222.2500 -82.0 + 114.5000 224.2500 -82.0 + 113.7500 223.5000 -82.0 + 109.5000 223.2500 -82.0 + 106.5000 222.2500 -82.0 + 104.5000 223.2500 -82.0 + 82.5000 222.2500 -82.0 + 74.5000 220.2500 -82.0 + 56.5000 209.2500 -82.0 + 46.7500 199.5000 -82.0 + 37.7500 182.5000 -82.0 + 37.7500 180.5000 -82.0 + 35.7500 176.5000 -82.0 + 35.7500 172.5000 -82.0 + 34.7500 170.5000 -82.0 + 34.7500 158.5000 -82.0 + 35.5000 156.7500 -82.0 + 35.7500 145.5000 -82.0 + 34.7500 142.5000 -82.0 + 37.5000 136.7500 -82.0 + 40.7500 132.5000 -82.0 + 42.7500 128.5000 -82.0 + 47.7500 113.5000 -82.0 + 50.5000 110.7500 -82.0 + 51.7500 106.5000 -82.0 + 56.5000 97.7500 -82.0 + 60.5000 94.7500 -82.0 + 60.7500 92.5000 -82.0 + 65.7500 87.5000 -82.0 + 61.5000 87.2500 -82.0 + 59.7500 83.5000 -82.0 + 63.5000 80.7500 -82.0 + 66.5000 80.7500 -82.0 + 75.2500 85.5000 -82.0 + 81.5000 85.7500 -82.0 + 84.7500 84.5000 -82.0 + 85.7500 82.5000 -82.0 + 84.5000 83.2500 -82.0 + 80.5000 83.2500 -82.0 + 67.5000 78.2500 -82.0 + 63.7500 73.5000 -82.0 + 63.7500 71.5000 -82.0 + 61.7500 67.5000 -82.0 + 61.7500 63.5000 -82.0 + 62.5000 61.7500 -82.0 + 61.7500 60.5000 -82.0 +} -82.0 +{ -82.0 + 104.2500 68.5000 -82.0 + 104.2500 69.5000 -82.0 + 103.2500 72.5000 -82.0 + 104.5000 71.7500 -82.0 + 105.5000 72.7500 -82.0 + 107.5000 71.7500 -82.0 + 108.2500 72.5000 -82.0 + 110.5000 72.7500 -82.0 + 108.7500 70.5000 -82.0 + 108.5000 68.2500 -82.0 + 108.2500 70.5000 -82.0 + 106.5000 71.2500 -82.0 +} -82.0 +{ -82.0 + 93.2500 73.5000 -82.0 + 92.2500 76.5000 -82.0 + 94.5000 74.7500 -82.0 +} -82.0 +{ -82.0 + 117.2500 74.5000 -82.0 + 117.2500 76.5000 -82.0 + 118.5000 77.7500 -82.0 + 118.7500 74.5000 -82.0 +} -82.0 +{ -82.0 + 106.7500 49.5000 -82.0 + 107.5000 48.7500 -82.0 + 108.2500 49.5000 -82.0 + 108.2500 53.5000 -82.0 + 106.5000 54.2500 -82.0 + 105.7500 52.5000 -82.0 +} -82.0 +{ -82.0 + 150.7500 91.5000 -82.0 + 152.5000 90.7500 -82.0 + 153.2500 92.5000 -82.0 + 151.5000 93.2500 -82.0 +} -82.0 +v 193 z -84.000000 -82.0 +{ -64.0 + 106.2500 43.5000 -84.0 + 105.2500 44.5000 -84.0 + 96.5000 56.2500 -84.0 + 96.5000 60.7500 -84.0 + 96.7500 58.5000 -84.0 + 99.5000 56.7500 -84.0 + 103.5000 56.7500 -84.0 + 105.5000 54.7500 -84.0 + 105.7500 47.5000 -84.0 + 107.5000 46.7500 -84.0 + 109.2500 48.5000 -84.0 + 109.2500 52.5000 -84.0 + 108.2500 55.5000 -84.0 + 112.2500 57.5000 -84.0 + 115.5000 57.7500 -84.0 + 117.5000 58.7500 -84.0 + 117.7500 56.5000 -84.0 + 116.7500 53.5000 -84.0 + 112.7500 49.5000 -84.0 + 108.7500 43.5000 -84.0 +} -84.0 +{ -84.0 + 57.2500 62.5000 -84.0 + 55.5000 64.2500 -84.0 + 55.2500 68.5000 -84.0 + 59.2500 70.5000 -84.0 + 63.2500 78.5000 -84.0 + 62.2500 81.5000 -84.0 + 59.5000 84.2500 -84.0 + 59.2500 86.5000 -84.0 + 60.2500 88.5000 -84.0 + 56.5000 90.2500 -84.0 + 55.7500 89.5000 -84.0 + 55.7500 87.5000 -84.0 + 54.5000 88.2500 -84.0 + 51.2500 93.5000 -84.0 + 31.2500 135.5000 -84.0 + 28.5000 149.2500 -84.0 + 28.2500 170.5000 -84.0 + 29.2500 172.5000 -84.0 + 29.2500 177.5000 -84.0 + 30.2500 179.5000 -84.0 + 31.2500 186.5000 -84.0 + 35.2500 197.5000 -84.0 + 41.2500 207.5000 -84.0 + 53.2500 219.5000 -84.0 + 60.2500 223.5000 -84.0 + 71.2500 227.5000 -84.0 + 82.5000 228.7500 -84.0 + 86.5000 230.7500 -84.0 + 93.2500 232.5000 -84.0 + 107.5000 232.7500 -84.0 + 111.5000 230.7500 -84.0 + 116.5000 230.7500 -84.0 + 122.5000 228.7500 -84.0 + 126.5000 228.7500 -84.0 + 128.5000 227.7500 -84.0 + 130.5000 227.7500 -84.0 + 147.5000 220.7500 -84.0 + 156.5000 212.7500 -84.0 + 163.7500 203.5000 -84.0 + 172.7500 187.5000 -84.0 + 176.5000 173.7500 -84.0 + 177.7500 160.5000 -84.0 + 178.5000 158.7500 -84.0 + 178.7500 141.5000 -84.0 + 176.7500 134.5000 -84.0 + 175.7500 128.5000 -84.0 + 173.7500 124.5000 -84.0 + 173.7500 122.5000 -84.0 + 168.7500 112.5000 -84.0 + 157.7500 93.5000 -84.0 + 152.5000 90.2500 -84.0 + 151.5000 92.2500 -84.0 + 149.7500 91.5000 -84.0 + 150.7500 89.5000 -84.0 + 147.7500 88.5000 -84.0 + 149.5000 87.7500 -84.0 + 149.7500 85.5000 -84.0 + 145.7500 84.5000 -84.0 + 147.5000 79.7500 -84.0 + 149.7500 80.5000 -84.0 + 151.7500 76.5000 -84.0 + 154.5000 73.7500 -84.0 + 159.5000 73.7500 -84.0 + 159.7500 71.5000 -84.0 + 158.7500 68.5000 -84.0 + 155.7500 65.5000 -84.0 + 154.5000 66.2500 -84.0 + 152.2500 72.5000 -84.0 + 146.5000 78.2500 -84.0 + 138.5000 84.2500 -84.0 + 139.5000 86.7500 -84.0 + 141.5000 85.7500 -84.0 + 143.2500 86.5000 -84.0 + 142.5000 88.2500 -84.0 + 140.5000 88.2500 -84.0 + 134.5000 90.2500 -84.0 + 133.7500 88.5000 -84.0 + 135.5000 86.2500 -84.0 + 131.5000 88.2500 -84.0 + 124.2500 87.5000 -84.0 + 128.2500 92.5000 -84.0 + 135.5000 92.7500 -84.0 + 137.5000 90.7500 -84.0 + 144.5000 90.7500 -84.0 + 147.5000 91.7500 -84.0 + 151.2500 94.5000 -84.0 + 155.2500 101.5000 -84.0 + 163.2500 109.5000 -84.0 + 165.2500 113.5000 -84.0 + 165.2500 115.5000 -84.0 + 168.2500 119.5000 -84.0 + 168.2500 121.5000 -84.0 + 170.2500 125.5000 -84.0 + 170.2500 127.5000 -84.0 + 171.2500 129.5000 -84.0 + 171.2500 135.5000 -84.0 + 172.2500 137.5000 -84.0 + 171.5000 139.2500 -84.0 + 171.2500 148.5000 -84.0 + 173.2500 152.5000 -84.0 + 173.2500 155.5000 -84.0 + 170.5000 164.2500 -84.0 + 170.2500 173.5000 -84.0 + 168.5000 177.2500 -84.0 + 168.2500 179.5000 -84.0 + 161.2500 191.5000 -84.0 + 154.2500 201.5000 -84.0 + 147.5000 208.2500 -84.0 + 132.5000 218.2500 -84.0 + 130.5000 218.2500 -84.0 + 122.5000 222.2500 -84.0 + 120.5000 222.2500 -84.0 + 116.5000 224.2500 -84.0 + 104.5000 223.2500 -84.0 + 102.5000 224.2500 -84.0 + 99.5000 224.2500 -84.0 + 94.7500 222.5000 -84.0 + 79.5000 222.2500 -84.0 + 70.7500 218.5000 -84.0 + 60.5000 211.2500 -84.0 + 56.5000 209.2500 -84.0 + 46.7500 199.5000 -84.0 + 39.7500 187.5000 -84.0 + 39.7500 185.5000 -84.0 + 35.7500 177.5000 -84.0 + 35.7500 174.5000 -84.0 + 34.7500 172.5000 -84.0 + 34.7500 156.5000 -84.0 + 35.5000 154.7500 -84.0 + 35.7500 145.5000 -84.0 + 34.7500 143.5000 -84.0 + 35.5000 141.7500 -84.0 + 35.7500 137.5000 -84.0 + 40.5000 131.7500 -84.0 + 49.5000 108.7500 -84.0 + 49.7500 106.5000 -84.0 + 52.5000 102.7500 -84.0 + 52.7500 100.5000 -84.0 + 55.7500 97.5000 -84.0 + 62.5000 92.7500 -84.0 + 69.5000 91.7500 -84.0 + 73.5000 89.7500 -84.0 + 83.7500 87.5000 -84.0 + 85.5000 84.2500 -84.0 + 83.5000 85.2500 -84.0 + 78.5000 85.2500 -84.0 + 72.7500 81.5000 -84.0 + 70.5000 81.2500 -84.0 + 64.7500 74.5000 -84.0 + 60.7500 66.5000 -84.0 + 60.7500 62.5000 -84.0 +} -84.0 +{ -84.0 + 109.2500 70.5000 -84.0 + 109.5000 73.7500 -84.0 + 111.5000 74.7500 -84.0 + 112.5000 74.2500 -84.0 + 110.5000 73.2500 -84.0 +} -84.0 +{ -84.0 + 94.2500 75.5000 -84.0 + 93.2500 76.5000 -84.0 + 94.7500 76.5000 -84.0 +} -84.0 +{ -84.0 + 115.2500 75.5000 -84.0 + 116.2500 76.5000 -84.0 + 116.7500 75.5000 -84.0 +} -84.0 +{ -84.0 + 63.7500 87.5000 -84.0 + 64.5000 86.7500 -84.0 + 67.5000 86.7500 -84.0 + 69.2500 88.5000 -84.0 + 67.5000 89.2500 -84.0 + 63.5000 91.2500 -84.0 + 62.7500 90.5000 -84.0 +} -84.0 +{ -84.0 + 144.7500 89.5000 -84.0 + 145.5000 88.7500 -84.0 + 146.2500 89.5000 -84.0 + 145.5000 90.2500 -84.0 +} -84.0 +v 247 z -86.000000 -64.0 +{ -86.0 + 107.2500 40.5000 -86.0 + 105.2500 42.5000 -86.0 + 103.2500 46.5000 -86.0 + 97.5000 54.2500 -86.0 + 97.2500 57.5000 -86.0 + 98.5000 57.7500 -86.0 + 101.7500 56.5000 -86.0 + 105.5000 48.7500 -86.0 + 105.7500 46.5000 -86.0 + 107.5000 44.7500 -86.0 + 109.2500 46.5000 -86.0 + 109.2500 49.5000 -86.0 + 111.2500 53.5000 -86.0 + 111.2500 56.5000 -86.0 + 113.2500 58.5000 -86.0 + 114.5000 57.7500 -86.0 + 117.5000 57.7500 -86.0 + 117.7500 56.5000 -86.0 + 114.7500 50.5000 -86.0 + 111.7500 47.5000 -86.0 + 111.7500 44.5000 -86.0 + 108.7500 40.5000 -86.0 +} -86.0 +{ -86.0 + 96.2500 58.5000 -86.0 + 96.2500 60.5000 -86.0 + 96.7500 59.5000 -86.0 +} -86.0 +{ -86.0 + 57.2500 63.5000 -86.0 + 55.5000 65.2500 -86.0 + 55.2500 69.5000 -86.0 + 59.2500 70.5000 -86.0 + 62.2500 76.5000 -86.0 + 65.2500 77.5000 -86.0 + 65.2500 81.5000 -86.0 + 68.5000 84.7500 -86.0 + 70.5000 83.7500 -86.0 + 75.5000 84.7500 -86.0 + 76.2500 86.5000 -86.0 + 78.2500 87.5000 -86.0 + 78.7500 86.5000 -86.0 + 76.5000 84.2500 -86.0 + 70.5000 81.2500 -86.0 + 63.7500 73.5000 -86.0 + 60.7500 67.5000 -86.0 + 60.7500 65.5000 -86.0 + 59.7500 63.5000 -86.0 +} -86.0 +{ -86.0 + 154.2500 67.5000 -86.0 + 153.5000 68.2500 -86.0 + 153.2500 70.5000 -86.0 + 152.2500 73.5000 -86.0 + 144.2500 80.5000 -86.0 + 143.2500 82.5000 -86.0 + 145.5000 82.7500 -86.0 + 147.5000 80.7500 -86.0 + 148.2500 81.5000 -86.0 + 154.5000 74.7500 -86.0 + 159.5000 74.7500 -86.0 + 160.7500 73.5000 -86.0 + 159.7500 71.5000 -86.0 + 159.7500 69.5000 -86.0 + 157.7500 67.5000 -86.0 +} -86.0 +{ -86.0 + 114.2500 76.5000 -86.0 + 113.5000 77.2500 -86.0 + 115.2500 78.5000 -86.0 + 115.7500 77.5000 -86.0 +} -86.0 +{ -86.0 + 63.2500 82.5000 -86.0 + 63.2500 83.5000 -86.0 + 62.5000 85.2500 -86.0 + 62.2500 87.5000 -86.0 + 59.5000 91.2500 -86.0 + 57.5000 91.2500 -86.0 + 55.7500 89.5000 -86.0 + 56.7500 87.5000 -86.0 + 54.5000 89.2500 -86.0 + 51.2500 94.5000 -86.0 + 36.5000 123.2500 -86.0 + 36.2500 125.5000 -86.0 + 30.2500 137.5000 -86.0 + 29.2500 146.5000 -86.0 + 28.5000 148.2500 -86.0 + 28.2500 168.5000 -86.0 + 29.2500 170.5000 -86.0 + 29.2500 175.5000 -86.0 + 30.2500 177.5000 -86.0 + 30.2500 181.5000 -86.0 + 31.2500 183.5000 -86.0 + 31.2500 185.5000 -86.0 + 32.2500 187.5000 -86.0 + 32.5000 190.7500 -86.0 + 37.2500 201.5000 -86.0 + 41.2500 206.5000 -86.0 + 42.2500 208.5000 -86.0 + 51.2500 217.5000 -86.0 + 55.5000 220.7500 -86.0 + 65.5000 225.7500 -86.0 + 74.5000 227.7500 -86.0 + 76.2500 228.5000 -86.0 + 80.5000 228.7500 -86.0 + 82.2500 229.5000 -86.0 + 88.5000 231.7500 -86.0 + 90.2500 232.5000 -86.0 + 94.5000 232.7500 -86.0 + 96.2500 233.5000 -86.0 + 104.5000 233.7500 -86.0 + 106.5000 232.7500 -86.0 + 108.5000 232.7500 -86.0 + 112.5000 230.7500 -86.0 + 116.5000 230.7500 -86.0 + 118.5000 229.7500 -86.0 + 120.5000 229.7500 -86.0 + 122.5000 228.7500 -86.0 + 126.5000 228.7500 -86.0 + 128.5000 227.7500 -86.0 + 130.5000 227.7500 -86.0 + 134.5000 225.7500 -86.0 + 136.5000 225.7500 -86.0 + 148.5000 219.7500 -86.0 + 155.5000 213.7500 -86.0 + 162.5000 204.7500 -86.0 + 166.7500 198.5000 -86.0 + 171.7500 189.5000 -86.0 + 172.7500 184.5000 -86.0 + 174.7500 180.5000 -86.0 + 175.7500 175.5000 -86.0 + 176.5000 173.7500 -86.0 + 176.7500 169.5000 -86.0 + 177.5000 167.7500 -86.0 + 177.7500 161.5000 -86.0 + 178.5000 159.7500 -86.0 + 178.7500 140.5000 -86.0 + 177.7500 138.5000 -86.0 + 177.7500 135.5000 -86.0 + 176.7500 133.5000 -86.0 + 176.7500 131.5000 -86.0 + 173.5000 122.2500 -86.0 + 170.7500 115.5000 -86.0 + 165.7500 107.5000 -86.0 + 161.7500 100.5000 -86.0 + 160.7500 98.5000 -86.0 + 154.5000 91.2500 -86.0 + 150.5000 89.2500 -86.0 + 148.5000 91.2500 -86.0 + 146.7500 87.5000 -86.0 + 145.5000 87.2500 -86.0 + 143.5000 85.2500 -86.0 + 143.2500 87.5000 -86.0 + 142.5000 89.2500 -86.0 + 140.5000 89.2500 -86.0 + 137.5000 88.2500 -86.0 + 135.5000 89.2500 -86.0 + 133.5000 89.2500 -86.0 + 131.5000 90.2500 -86.0 + 125.5000 90.2500 -86.0 + 122.7500 87.5000 -86.0 + 122.2500 88.5000 -86.0 + 127.5000 94.7500 -86.0 + 130.5000 93.7500 -86.0 + 133.5000 90.7500 -86.0 + 142.5000 90.7500 -86.0 + 145.5000 91.7500 -86.0 + 147.2500 92.5000 -86.0 + 150.5000 92.7500 -86.0 + 153.2500 97.5000 -86.0 + 154.2500 99.5000 -86.0 + 161.2500 106.5000 -86.0 + 164.2500 110.5000 -86.0 + 169.2500 119.5000 -86.0 + 169.2500 121.5000 -86.0 + 171.2500 125.5000 -86.0 + 171.2500 129.5000 -86.0 + 172.2500 131.5000 -86.0 + 172.2500 138.5000 -86.0 + 171.2500 143.5000 -86.0 + 172.2500 145.5000 -86.0 + 172.2500 147.5000 -86.0 + 174.2500 151.5000 -86.0 + 172.5000 154.2500 -86.0 + 171.2500 165.5000 -86.0 + 170.5000 167.2500 -86.0 + 170.2500 172.5000 -86.0 + 169.2500 177.5000 -86.0 + 165.2500 183.5000 -86.0 + 163.2500 187.5000 -86.0 + 158.2500 195.5000 -86.0 + 157.2500 197.5000 -86.0 + 150.5000 205.2500 -86.0 + 143.5000 211.2500 -86.0 + 135.5000 216.2500 -86.0 + 123.5000 222.2500 -86.0 + 120.5000 222.2500 -86.0 + 116.5000 224.2500 -86.0 + 112.5000 224.2500 -86.0 + 107.5000 223.2500 -86.0 + 105.5000 224.2500 -86.0 + 99.5000 224.2500 -86.0 + 92.5000 223.2500 -86.0 + 90.7500 222.5000 -86.0 + 78.5000 222.2500 -86.0 + 68.5000 217.2500 -86.0 + 64.7500 214.5000 -86.0 + 58.5000 210.2500 -86.0 + 56.5000 209.2500 -86.0 + 46.7500 199.5000 -86.0 + 43.7500 194.5000 -86.0 + 39.7500 187.5000 -86.0 + 39.7500 185.5000 -86.0 + 35.7500 177.5000 -86.0 + 35.7500 175.5000 -86.0 + 34.7500 173.5000 -86.0 + 34.7500 154.5000 -86.0 + 35.5000 152.7500 -86.0 + 35.7500 146.5000 -86.0 + 34.7500 144.5000 -86.0 + 34.7500 141.5000 -86.0 + 36.5000 137.7500 -86.0 + 36.7500 133.5000 -86.0 + 38.5000 132.7500 -86.0 + 38.7500 131.5000 -86.0 + 40.5000 129.7500 -86.0 + 41.7500 125.5000 -86.0 + 43.7500 120.5000 -86.0 + 44.5000 118.7500 -86.0 + 47.7500 109.5000 -86.0 + 50.7500 105.5000 -86.0 + 52.7500 101.5000 -86.0 + 53.5000 99.7500 -86.0 + 58.5000 93.7500 -86.0 + 62.5000 90.7500 -86.0 + 64.5000 90.7500 -86.0 + 66.5000 89.7500 -86.0 + 69.5000 89.7500 -86.0 + 71.2500 90.5000 -86.0 + 78.5000 90.7500 -86.0 + 80.5000 89.7500 -86.0 + 82.5000 89.7500 -86.0 + 86.5000 87.7500 -86.0 + 86.5000 86.2500 -86.0 + 82.5000 88.2500 -86.0 + 80.5000 88.2500 -86.0 + 77.5000 89.2500 -86.0 + 72.5000 87.2500 -86.0 + 70.5000 88.2500 -86.0 + 69.5000 87.2500 -86.0 + 67.5000 86.2500 -86.0 + 67.2500 87.5000 -86.0 + 64.5000 89.2500 -86.0 + 63.7500 87.5000 -86.0 + 64.5000 85.7500 -86.0 + 64.7500 82.5000 -86.0 +} -86.0 +v 190 z -88.000000 -64.0 +{ -88.0 + 108.2500 35.5000 -88.0 + 106.2500 36.5000 -88.0 + 104.5000 40.2500 -88.0 + 104.2500 44.5000 -88.0 + 97.5000 55.2500 -88.0 + 97.2500 57.5000 -88.0 + 98.5000 56.7500 -88.0 + 101.5000 56.7500 -88.0 + 102.5000 54.7500 -88.0 + 103.7500 46.5000 -88.0 + 106.5000 42.7500 -88.0 + 109.5000 42.7500 -88.0 + 111.2500 45.5000 -88.0 + 111.2500 53.5000 -88.0 + 114.2500 57.5000 -88.0 + 117.7500 57.5000 -88.0 + 115.7500 53.5000 -88.0 + 115.7500 51.5000 -88.0 + 111.7500 45.5000 -88.0 + 112.7500 43.5000 -88.0 + 111.7500 41.5000 -88.0 + 111.7500 39.5000 -88.0 + 109.7500 35.5000 -88.0 +} -88.0 +{ -88.0 + 56.2500 64.5000 -88.0 + 54.5000 67.2500 -88.0 + 54.2500 69.5000 -88.0 + 55.2500 71.5000 -88.0 + 56.5000 70.7500 -88.0 + 59.5000 70.7500 -88.0 + 62.2500 76.5000 -88.0 + 64.7500 76.5000 -88.0 + 61.7500 70.5000 -88.0 + 61.7500 68.5000 -88.0 + 59.7500 64.5000 -88.0 +} -88.0 +{ -88.0 + 155.2500 67.5000 -88.0 + 152.5000 70.2500 -88.0 + 151.2500 74.5000 -88.0 + 147.5000 78.2500 -88.0 + 145.2500 79.5000 -88.0 + 144.2500 81.5000 -88.0 + 147.5000 81.7500 -88.0 + 155.5000 74.7500 -88.0 + 158.5000 75.7500 -88.0 + 159.2500 77.5000 -88.0 + 160.5000 77.7500 -88.0 + 160.7500 71.5000 -88.0 + 157.7500 67.5000 -88.0 +} -88.0 +{ -88.0 + 65.2500 77.5000 -88.0 + 67.2500 81.5000 -88.0 + 67.2500 83.5000 -88.0 + 69.5000 83.7500 -88.0 + 71.5000 82.7500 -88.0 + 66.7500 77.5000 -88.0 +} -88.0 +{ -88.0 + 95.2500 79.5000 -88.0 + 93.5000 81.2500 -88.0 + 93.2500 83.5000 -88.0 + 96.5000 80.7500 -88.0 + 99.5000 80.7500 -88.0 + 99.7500 79.5000 -88.0 +} -88.0 +{ -88.0 + 115.2500 79.5000 -88.0 + 114.2500 81.5000 -88.0 + 117.2500 85.5000 -88.0 + 119.7500 87.5000 -88.0 + 117.7500 83.5000 -88.0 + 117.7500 81.5000 -88.0 +} -88.0 +{ -88.0 + 90.2500 85.5000 -88.0 + 90.2500 86.5000 -88.0 + 91.7500 85.5000 -88.0 +} -88.0 +{ -88.0 + 62.2500 86.5000 -88.0 + 61.2500 88.5000 -88.0 + 58.5000 91.2500 -88.0 + 57.7500 90.5000 -88.0 + 57.7500 87.5000 -88.0 + 55.5000 88.2500 -88.0 + 45.2500 105.5000 -88.0 + 31.2500 134.5000 -88.0 + 28.5000 148.2500 -88.0 + 28.2500 166.5000 -88.0 + 29.2500 168.5000 -88.0 + 29.2500 174.5000 -88.0 + 30.2500 176.5000 -88.0 + 30.2500 180.5000 -88.0 + 31.2500 182.5000 -88.0 + 33.2500 192.5000 -88.0 + 39.2500 204.5000 -88.0 + 47.2500 213.5000 -88.0 + 54.5000 219.7500 -88.0 + 62.5000 224.7500 -88.0 + 76.2500 228.5000 -88.0 + 80.5000 228.7500 -88.0 + 86.5000 231.7500 -88.0 + 93.2500 233.5000 -88.0 + 106.5000 233.7500 -88.0 + 110.5000 231.7500 -88.0 + 112.5000 231.7500 -88.0 + 123.5000 228.7500 -88.0 + 129.5000 227.7500 -88.0 + 146.5000 220.7500 -88.0 + 154.5000 214.7500 -88.0 + 165.7500 199.5000 -88.0 + 173.5000 183.7500 -88.0 + 176.7500 170.5000 -88.0 + 178.5000 161.7500 -88.0 + 178.7500 140.5000 -88.0 + 177.7500 138.5000 -88.0 + 176.7500 130.5000 -88.0 + 168.7500 111.5000 -88.0 + 155.7500 92.5000 -88.0 + 150.7500 89.5000 -88.0 + 147.5000 90.2500 -88.0 + 145.7500 88.5000 -88.0 + 144.5000 89.2500 -88.0 + 141.5000 88.2500 -88.0 + 137.5000 90.2500 -88.0 + 132.5000 89.2500 -88.0 + 130.2500 91.5000 -88.0 + 135.5000 91.7500 -88.0 + 137.5000 90.7500 -88.0 + 143.5000 90.7500 -88.0 + 148.2500 92.5000 -88.0 + 149.5000 91.7500 -88.0 + 151.2500 93.5000 -88.0 + 153.2500 97.5000 -88.0 + 163.2500 107.5000 -88.0 + 166.2500 111.5000 -88.0 + 171.2500 121.5000 -88.0 + 172.2500 130.5000 -88.0 + 173.2500 132.5000 -88.0 + 173.2500 145.5000 -88.0 + 174.2500 147.5000 -88.0 + 174.2500 149.5000 -88.0 + 172.5000 154.2500 -88.0 + 170.2500 174.5000 -88.0 + 165.2500 184.5000 -88.0 + 155.2500 200.5000 -88.0 + 148.5000 207.2500 -88.0 + 130.5000 219.2500 -88.0 + 128.5000 219.2500 -88.0 + 126.5000 221.2500 -88.0 + 120.5000 222.2500 -88.0 + 116.5000 224.2500 -88.0 + 107.5000 224.2500 -88.0 + 105.5000 225.2500 -88.0 + 104.7500 224.5000 -88.0 + 95.5000 224.2500 -88.0 + 86.7500 222.5000 -88.0 + 78.5000 222.2500 -88.0 + 66.5000 216.2500 -88.0 + 56.5000 209.2500 -88.0 + 47.7500 200.5000 -88.0 + 40.7500 189.5000 -88.0 + 40.7500 187.5000 -88.0 + 35.7500 177.5000 -88.0 + 35.7500 175.5000 -88.0 + 34.7500 173.5000 -88.0 + 34.7500 153.5000 -88.0 + 35.5000 151.7500 -88.0 + 35.7500 146.5000 -88.0 + 34.7500 144.5000 -88.0 + 34.7500 140.5000 -88.0 + 36.5000 136.7500 -88.0 + 36.7500 134.5000 -88.0 + 35.7500 132.5000 -88.0 + 40.7500 126.5000 -88.0 + 41.7500 121.5000 -88.0 + 44.7500 115.5000 -88.0 + 45.7500 110.5000 -88.0 + 50.7500 105.5000 -88.0 + 56.7500 93.5000 -88.0 + 65.5000 88.7500 -88.0 + 71.5000 88.7500 -88.0 + 77.2500 91.5000 -88.0 + 80.5000 91.7500 -88.0 + 82.5000 90.7500 -88.0 + 85.5000 90.7500 -88.0 + 87.5000 88.7500 -88.0 + 86.5000 88.2500 -88.0 + 80.5000 90.2500 -88.0 + 76.7500 86.5000 -88.0 + 74.5000 87.2500 -88.0 + 72.7500 86.5000 -88.0 + 71.5000 87.2500 -88.0 + 67.5000 87.2500 -88.0 + 64.5000 88.2500 -88.0 + 63.7500 86.5000 -88.0 +} -88.0 +{ -88.0 + 120.2500 88.5000 -88.0 + 125.2500 96.5000 -88.0 + 127.5000 95.7500 -88.0 + 127.7500 93.5000 -88.0 + 126.5000 93.2500 -88.0 +} -88.0 +///v 207 z -90.000000 -90.0 +{ -90.0 + 106.2500 33.5000 -90.0 + 105.5000 34.2500 -90.0 + 107.2500 35.5000 -90.0 + 109.5000 35.7500 -90.0 + 111.5000 34.7500 -90.0 + 110.7500 33.5000 -90.0 +} -90.0 +{ -90.0 + 104.2500 37.5000 -90.0 + 103.5000 38.2500 -90.0 + 103.2500 44.5000 -90.0 + 99.5000 49.2500 -90.0 + 99.2500 51.5000 -90.0 + 97.2500 56.5000 -90.0 + 98.5000 56.7500 -90.0 + 100.5000 55.7500 -90.0 + 102.5000 55.7500 -90.0 + 102.7500 49.5000 -90.0 + 103.7500 44.5000 -90.0 + 104.5000 42.7500 -90.0 + 104.7500 38.5000 -90.0 +} -90.0 +{ -90.0 + 112.2500 37.5000 -90.0 + 112.2500 46.5000 -90.0 + 111.2500 51.5000 -90.0 + 114.2500 54.5000 -90.0 + 114.2500 57.5000 -90.0 + 116.5000 57.7500 -90.0 + 115.7500 50.5000 -90.0 + 112.7500 44.5000 -90.0 + 113.5000 42.7500 -90.0 + 113.7500 37.5000 -90.0 +} -90.0 +{ -90.0 + 57.2500 64.5000 -90.0 + 53.5000 68.2500 -90.0 + 53.2500 71.5000 -90.0 + 54.5000 72.7500 -90.0 + 58.5000 70.7500 -90.0 + 60.2500 71.5000 -90.0 + 63.2500 76.5000 -90.0 + 63.2500 78.5000 -90.0 + 64.5000 77.7500 -90.0 + 64.7500 75.5000 -90.0 + 61.7500 69.5000 -90.0 + 61.7500 66.5000 -90.0 + 59.7500 64.5000 -90.0 +} -90.0 +{ -90.0 + 155.2500 67.5000 -90.0 + 152.5000 69.2500 -90.0 + 151.2500 73.5000 -90.0 + 145.5000 80.2500 -90.0 + 147.2500 81.5000 -90.0 + 148.5000 79.7500 -90.0 + 156.5000 74.7500 -90.0 + 159.2500 78.5000 -90.0 + 161.5000 78.7500 -90.0 + 161.7500 74.5000 -90.0 + 158.7500 68.5000 -90.0 +} -90.0 +{ -90.0 + 105.2500 81.5000 -90.0 + 104.5000 82.2500 -90.0 + 101.5000 82.2500 -90.0 + 101.2500 84.5000 -90.0 + 104.2500 86.5000 -90.0 + 108.5000 84.7500 -90.0 + 108.7500 83.5000 -90.0 +} -90.0 +{ -90.0 + 93.2500 84.5000 -90.0 + 93.2500 85.5000 -90.0 + 90.5000 88.7500 -90.0 + 94.5000 86.7500 -90.0 + 94.7500 85.5000 -90.0 +} -90.0 +{ -90.0 + 117.2500 85.5000 -90.0 + 116.5000 87.2500 -90.0 + 114.5000 87.2500 -90.0 + 114.5000 88.7500 -90.0 + 116.5000 89.7500 -90.0 + 120.2500 93.5000 -90.0 + 123.5000 98.7500 -90.0 + 125.5000 97.7500 -90.0 + 125.7500 95.5000 -90.0 + 121.5000 93.2500 -90.0 +} -90.0 +{ -90.0 + 66.2500 86.5000 -90.0 + 64.5000 88.2500 -90.0 + 61.5000 87.2500 -90.0 + 61.2500 88.5000 -90.0 + 59.5000 89.2500 -90.0 + 58.7500 87.5000 -90.0 + 57.5000 87.2500 -90.0 + 55.2500 89.5000 -90.0 + 48.5000 100.2500 -90.0 + 32.2500 130.5000 -90.0 + 28.5000 147.2500 -90.0 + 28.2500 164.5000 -90.0 + 29.2500 166.5000 -90.0 + 29.2500 173.5000 -90.0 + 30.2500 175.5000 -90.0 + 30.2500 179.5000 -90.0 + 31.2500 181.5000 -90.0 + 32.2500 187.5000 -90.0 + 38.2500 202.5000 -90.0 + 46.2500 212.5000 -90.0 + 56.5000 220.7500 -90.0 + 63.2500 224.5000 -90.0 + 74.5000 227.7500 -90.0 + 92.2500 233.5000 -90.0 + 106.5000 233.7500 -90.0 + 108.5000 232.7500 -90.0 + 110.5000 232.7500 -90.0 + 114.5000 230.7500 -90.0 + 116.5000 230.7500 -90.0 + 118.5000 229.7500 -90.0 + 122.5000 229.7500 -90.0 + 126.5000 227.7500 -90.0 + 129.5000 227.7500 -90.0 + 133.5000 225.7500 -90.0 + 135.5000 225.7500 -90.0 + 150.5000 217.7500 -90.0 + 161.7500 205.5000 -90.0 + 166.7500 197.5000 -90.0 + 172.7500 185.5000 -90.0 + 173.7500 180.5000 -90.0 + 175.5000 176.7500 -90.0 + 178.5000 162.7500 -90.0 + 178.7500 141.5000 -90.0 + 177.7500 139.5000 -90.0 + 177.7500 133.5000 -90.0 + 175.7500 129.5000 -90.0 + 175.7500 126.5000 -90.0 + 171.7500 118.5000 -90.0 + 171.7500 116.5000 -90.0 + 167.5000 109.2500 -90.0 + 155.5000 93.2500 -90.0 + 151.7500 90.5000 -90.0 + 146.5000 90.2500 -90.0 + 142.5000 88.2500 -90.0 + 138.5000 90.2500 -90.0 + 135.5000 90.2500 -90.0 + 133.7500 89.5000 -90.0 + 130.5000 91.2500 -90.0 + 130.5000 92.7500 -90.0 + 137.5000 90.7500 -90.0 + 144.5000 90.7500 -90.0 + 153.2500 94.5000 -90.0 + 153.2500 96.5000 -90.0 + 156.2500 99.5000 -90.0 + 159.5000 104.7500 -90.0 + 161.5000 105.7500 -90.0 + 166.2500 111.5000 -90.0 + 169.2500 116.5000 -90.0 + 169.2500 118.5000 -90.0 + 173.2500 126.5000 -90.0 + 173.2500 130.5000 -90.0 + 174.2500 132.5000 -90.0 + 174.2500 141.5000 -90.0 + 175.2500 144.5000 -90.0 + 172.5000 156.2500 -90.0 + 170.2500 174.5000 -90.0 + 166.5000 180.2500 -90.0 + 166.2500 182.5000 -90.0 + 157.2500 197.5000 -90.0 + 151.5000 204.2500 -90.0 + 140.5000 213.2500 -90.0 + 125.5000 221.2500 -90.0 + 123.5000 221.2500 -90.0 + 119.5000 223.2500 -90.0 + 117.5000 223.2500 -90.0 + 115.5000 224.2500 -90.0 + 109.5000 224.2500 -90.0 + 107.5000 225.2500 -90.0 + 98.5000 223.2500 -90.0 + 92.5000 225.2500 -90.0 + 84.7500 222.5000 -90.0 + 78.5000 222.2500 -90.0 + 66.5000 216.2500 -90.0 + 56.5000 209.2500 -90.0 + 47.7500 200.5000 -90.0 + 44.7500 196.5000 -90.0 + 37.7500 182.5000 -90.0 + 37.7500 180.5000 -90.0 + 35.7500 176.5000 -90.0 + 35.7500 173.5000 -90.0 + 34.7500 171.5000 -90.0 + 34.7500 159.5000 -90.0 + 33.7500 156.5000 -90.0 + 34.7500 154.5000 -90.0 + 35.7500 147.5000 -90.0 + 34.7500 145.5000 -90.0 + 35.7500 129.5000 -90.0 + 37.7500 127.5000 -90.0 + 41.5000 120.7500 -90.0 + 41.7500 118.5000 -90.0 + 46.7500 106.5000 -90.0 + 52.7500 100.5000 -90.0 + 54.5000 96.7500 -90.0 + 56.5000 95.7500 -90.0 + 56.7500 94.5000 -90.0 + 61.5000 89.7500 -90.0 + 70.5000 88.7500 -90.0 + 68.7500 86.5000 -90.0 +} -90.0 +{ -90.0 + 76.2500 86.5000 -90.0 + 75.5000 88.2500 -90.0 + 72.5000 88.2500 -90.0 + 80.2500 92.5000 -90.0 + 84.5000 92.7500 -90.0 + 87.5000 91.7500 -90.0 + 88.5000 90.2500 -90.0 + 86.5000 91.2500 -90.0 + 80.5000 91.2500 -90.0 + 77.7500 87.5000 -90.0 +} -90.0 +{ -90.0 + 103.2500 154.5000 -90.0 + 103.2500 155.5000 -90.0 + 104.5000 155.7500 -90.0 + 104.7500 154.5000 -90.0 +} -90.0 +v 178 z -92.000000 -64.0 +{ -92.0 + 114.2500 35.5000 -92.0 + 113.5000 36.2500 -92.0 + 113.2500 45.5000 -92.0 + 112.2500 50.5000 -92.0 + 114.2500 52.5000 -92.0 + 114.2500 56.5000 -92.0 + 115.5000 56.7500 -92.0 + 115.7500 48.5000 -92.0 + 114.7500 46.5000 -92.0 + 114.7500 36.5000 -92.0 +} -92.0 +{ -92.0 + 103.2500 36.5000 -92.0 + 102.2500 44.5000 -92.0 + 99.5000 48.2500 -92.0 + 99.5000 55.7500 -92.0 + 101.5000 54.7500 -92.0 + 103.7500 37.5000 -92.0 +} -92.0 +{ -92.0 + 57.2500 64.5000 -92.0 + 54.2500 67.5000 -92.0 + 53.2500 69.5000 -92.0 + 52.2500 74.5000 -92.0 + 53.5000 74.7500 -92.0 + 57.5000 71.7500 -92.0 + 60.5000 71.7500 -92.0 + 64.2500 78.5000 -92.0 + 65.5000 78.7500 -92.0 + 65.7500 76.5000 -92.0 + 62.7500 70.5000 -92.0 + 61.7500 65.5000 -92.0 + 59.7500 64.5000 -92.0 +} -92.0 +{ -92.0 + 153.2500 67.5000 -92.0 + 151.5000 70.2500 -92.0 + 151.2500 73.5000 -92.0 + 146.5000 78.2500 -92.0 + 146.2500 80.5000 -92.0 + 147.5000 80.7500 -92.0 + 153.5000 75.7500 -92.0 + 157.5000 75.7500 -92.0 + 161.2500 79.5000 -92.0 + 162.5000 77.7500 -92.0 + 161.7500 74.5000 -92.0 + 158.7500 68.5000 -92.0 + 156.7500 67.5000 -92.0 +} -92.0 +{ -92.0 + 94.2500 85.5000 -92.0 + 93.2500 87.5000 -92.0 + 94.7500 86.5000 -92.0 +} -92.0 +{ -92.0 + 60.2500 86.5000 -92.0 + 56.5000 88.2500 -92.0 + 56.2500 89.5000 -92.0 + 43.2500 108.5000 -92.0 + 31.5000 132.2500 -92.0 + 28.5000 147.2500 -92.0 + 28.2500 162.5000 -92.0 + 29.2500 164.5000 -92.0 + 29.2500 172.5000 -92.0 + 30.2500 174.5000 -92.0 + 30.2500 177.5000 -92.0 + 32.2500 184.5000 -92.0 + 33.2500 190.5000 -92.0 + 41.2500 206.5000 -92.0 + 51.2500 216.5000 -92.0 + 66.5000 225.7500 -92.0 + 80.5000 229.7500 -92.0 + 91.2500 233.5000 -92.0 + 107.5000 233.7500 -92.0 + 109.5000 232.7500 -92.0 + 111.5000 232.7500 -92.0 + 115.5000 230.7500 -92.0 + 122.5000 229.7500 -92.0 + 126.5000 227.7500 -92.0 + 129.5000 227.7500 -92.0 + 139.5000 223.7500 -92.0 + 147.5000 218.7500 -92.0 + 155.5000 212.7500 -92.0 + 164.7500 200.5000 -92.0 + 170.7500 188.5000 -92.0 + 175.7500 174.5000 -92.0 + 178.5000 163.7500 -92.0 + 178.7500 142.5000 -92.0 + 177.7500 140.5000 -92.0 + 177.7500 135.5000 -92.0 + 176.7500 133.5000 -92.0 + 175.7500 126.5000 -92.0 + 172.7500 120.5000 -92.0 + 170.7500 114.5000 -92.0 + 165.7500 106.5000 -92.0 + 155.5000 93.2500 -92.0 + 151.7500 90.5000 -92.0 + 140.5000 89.2500 -92.0 + 142.2500 90.5000 -92.0 + 145.5000 90.7500 -92.0 + 150.5000 92.7500 -92.0 + 154.2500 95.5000 -92.0 + 156.2500 101.5000 -92.0 + 155.2500 103.5000 -92.0 + 158.2500 105.5000 -92.0 + 161.5000 105.7500 -92.0 + 166.2500 110.5000 -92.0 + 169.2500 116.5000 -92.0 + 169.2500 118.5000 -92.0 + 171.2500 122.5000 -92.0 + 171.2500 124.5000 -92.0 + 174.2500 130.5000 -92.0 + 174.2500 150.5000 -92.0 + 172.2500 157.5000 -92.0 + 170.2500 173.5000 -92.0 + 163.2500 187.5000 -92.0 + 152.2500 203.5000 -92.0 + 150.5000 204.2500 -92.0 + 140.5000 213.2500 -92.0 + 128.5000 220.2500 -92.0 + 126.5000 220.2500 -92.0 + 122.5000 222.2500 -92.0 + 109.5000 225.2500 -92.0 + 105.5000 223.2500 -92.0 + 103.5000 224.2500 -92.0 + 102.7500 223.5000 -92.0 + 97.5000 223.2500 -92.0 + 93.5000 225.2500 -92.0 + 89.5000 225.2500 -92.0 + 84.5000 223.2500 -92.0 + 79.5000 222.2500 -92.0 + 62.5000 214.2500 -92.0 + 52.7500 205.5000 -92.0 + 43.7500 195.5000 -92.0 + 43.7500 193.5000 -92.0 + 37.7500 181.5000 -92.0 + 37.7500 179.5000 -92.0 + 35.7500 175.5000 -92.0 + 35.7500 171.5000 -92.0 + 34.7500 169.5000 -92.0 + 34.7500 163.5000 -92.0 + 33.7500 161.5000 -92.0 + 34.7500 142.5000 -92.0 + 33.7500 140.5000 -92.0 + 33.7500 138.5000 -92.0 + 36.7500 125.5000 -92.0 + 39.5000 121.7500 -92.0 + 39.7500 119.5000 -92.0 + 45.7500 107.5000 -92.0 + 54.5000 95.7500 -92.0 + 56.5000 94.7500 -92.0 + 56.7500 93.5000 -92.0 + 63.5000 88.7500 -92.0 + 76.5000 88.7500 -92.0 + 77.5000 87.2500 -92.0 + 75.5000 86.2500 -92.0 + 73.5000 88.2500 -92.0 + 71.5000 88.2500 -92.0 + 69.7500 86.5000 -92.0 + 67.5000 86.2500 -92.0 + 62.5000 88.2500 -92.0 + 60.7500 87.5000 -92.0 + 61.7500 86.5000 -92.0 +} -92.0 +{ -92.0 + 102.2500 87.5000 -92.0 + 101.2500 89.5000 -92.0 + 102.7500 88.5000 -92.0 +} -92.0 +{ -92.0 + 78.2500 89.5000 -92.0 + 77.5000 90.2500 -92.0 + 78.2500 91.5000 -92.0 + 80.5000 91.7500 -92.0 +} -92.0 +{ -92.0 + 136.2500 90.5000 -92.0 + 132.5000 92.2500 -92.0 + 131.5000 91.2500 -92.0 + 128.5000 92.2500 -92.0 + 128.5000 93.7500 -92.0 + 130.5000 92.7500 -92.0 + 133.5000 92.7500 -92.0 + 137.5000 90.7500 -92.0 + 139.7500 90.5000 -92.0 +} -92.0 +{ -92.0 + 83.2500 93.5000 -92.0 + 83.5000 94.7500 -92.0 + 87.5000 96.7500 -92.0 + 89.5000 93.2500 -92.0 + 86.5000 94.2500 -92.0 +} -92.0 +{ -92.0 + 123.2500 98.5000 -92.0 + 121.5000 99.2500 -92.0 + 121.2500 100.5000 -92.0 + 123.5000 100.7500 -92.0 +} -92.0 +v 171 z -94.000000 -92.0 +{ -64.0 + 114.2500 35.5000 -94.0 + 114.2500 48.5000 -94.0 + 113.5000 50.2500 -94.0 + 115.2500 51.5000 -94.0 + 114.2500 54.5000 -94.0 + 115.5000 55.7500 -94.0 + 116.7500 49.5000 -94.0 + 115.7500 47.5000 -94.0 + 115.7500 38.5000 -94.0 +} -94.0 +{ -94.0 + 102.2500 38.5000 -94.0 + 102.2500 40.5000 -94.0 + 98.2500 48.5000 -94.0 + 99.2500 50.5000 -94.0 + 99.2500 54.5000 -94.0 + 101.5000 54.7500 -94.0 + 101.7500 52.5000 -94.0 + 100.7500 50.5000 -94.0 + 102.5000 43.7500 -94.0 + 102.7500 39.5000 -94.0 +} -94.0 +{ -94.0 + 57.2500 64.5000 -94.0 + 55.2500 66.5000 -94.0 + 51.5000 73.2500 -94.0 + 51.5000 75.7500 -94.0 + 57.5000 71.7500 -94.0 + 60.5000 71.7500 -94.0 + 65.2500 78.5000 -94.0 + 66.5000 78.7500 -94.0 + 66.7500 76.5000 -94.0 + 63.7500 70.5000 -94.0 + 63.7500 68.5000 -94.0 + 60.7500 64.5000 -94.0 +} -94.0 +{ -94.0 + 152.2500 67.5000 -94.0 + 150.2500 74.5000 -94.0 + 146.5000 78.2500 -94.0 + 146.2500 80.5000 -94.0 + 154.5000 75.7500 -94.0 + 157.5000 75.7500 -94.0 + 160.5000 78.7500 -94.0 + 162.5000 79.7500 -94.0 + 162.7500 77.5000 -94.0 + 160.7500 71.5000 -94.0 + 157.7500 67.5000 -94.0 +} -94.0 +{ -94.0 + 75.2500 85.5000 -94.0 + 74.5000 87.2500 -94.0 + 67.5000 86.2500 -94.0 + 63.5000 88.2500 -94.0 + 61.7500 87.5000 -94.0 + 58.2500 87.5000 -94.0 + 47.5000 101.2500 -94.0 + 32.2500 129.5000 -94.0 + 28.5000 147.2500 -94.0 + 28.2500 161.5000 -94.0 + 29.2500 163.5000 -94.0 + 29.2500 171.5000 -94.0 + 30.2500 173.5000 -94.0 + 31.2500 182.5000 -94.0 + 33.2500 186.5000 -94.0 + 34.2500 192.5000 -94.0 + 40.2500 204.5000 -94.0 + 47.2500 212.5000 -94.0 + 53.2500 217.5000 -94.0 + 68.2500 226.5000 -94.0 + 71.5000 226.7500 -94.0 + 84.5000 231.7500 -94.0 + 91.2500 233.5000 -94.0 + 107.5000 233.7500 -94.0 + 109.5000 232.7500 -94.0 + 115.5000 231.7500 -94.0 + 119.5000 229.7500 -94.0 + 126.5000 228.7500 -94.0 + 130.5000 226.7500 -94.0 + 132.5000 226.7500 -94.0 + 144.5000 220.7500 -94.0 + 151.5000 215.7500 -94.0 + 157.7500 209.5000 -94.0 + 163.7500 201.5000 -94.0 + 173.5000 181.7500 -94.0 + 178.5000 163.7500 -94.0 + 178.7500 143.5000 -94.0 + 177.7500 141.5000 -94.0 + 177.7500 136.5000 -94.0 + 176.7500 134.5000 -94.0 + 176.7500 130.5000 -94.0 + 174.7500 126.5000 -94.0 + 174.7500 124.5000 -94.0 + 170.7500 114.5000 -94.0 + 165.7500 106.5000 -94.0 + 152.7500 91.5000 -94.0 + 146.7500 89.5000 -94.0 + 140.5000 89.2500 -94.0 + 137.2500 90.5000 -94.0 + 146.5000 90.7500 -94.0 + 153.2500 95.5000 -94.0 + 154.2500 97.5000 -94.0 + 153.2500 102.5000 -94.0 + 155.2500 104.5000 -94.0 + 160.5000 104.7500 -94.0 + 168.2500 113.5000 -94.0 + 168.2500 115.5000 -94.0 + 171.2500 121.5000 -94.0 + 171.2500 123.5000 -94.0 + 173.2500 127.5000 -94.0 + 173.2500 130.5000 -94.0 + 174.2500 132.5000 -94.0 + 174.2500 151.5000 -94.0 + 170.2500 171.5000 -94.0 + 166.2500 182.5000 -94.0 + 161.5000 189.2500 -94.0 + 156.2500 198.5000 -94.0 + 142.2500 211.5000 -94.0 + 130.5000 219.2500 -94.0 + 128.5000 219.2500 -94.0 + 118.5000 223.2500 -94.0 + 116.5000 223.2500 -94.0 + 114.5000 224.2500 -94.0 + 110.5000 224.2500 -94.0 + 98.5000 222.2500 -94.0 + 94.5000 225.2500 -94.0 + 88.5000 225.2500 -94.0 + 76.7500 220.5000 -94.0 + 74.5000 220.2500 -94.0 + 62.5000 214.2500 -94.0 + 59.5000 211.2500 -94.0 + 57.5000 210.2500 -94.0 + 56.7500 208.5000 -94.0 + 54.7500 207.5000 -94.0 + 53.5000 205.2500 -94.0 + 51.5000 204.2500 -94.0 + 50.7500 202.5000 -94.0 + 45.7500 197.5000 -94.0 + 38.7500 184.5000 -94.0 + 38.7500 182.5000 -94.0 + 36.7500 178.5000 -94.0 + 36.7500 175.5000 -94.0 + 34.7500 168.5000 -94.0 + 34.7500 163.5000 -94.0 + 33.7500 161.5000 -94.0 + 33.7500 152.5000 -94.0 + 34.5000 150.7500 -94.0 + 34.7500 142.5000 -94.0 + 33.7500 140.5000 -94.0 + 33.7500 135.5000 -94.0 + 34.7500 130.5000 -94.0 + 37.7500 122.5000 -94.0 + 44.5000 111.7500 -94.0 + 46.7500 105.5000 -94.0 + 49.5000 102.7500 -94.0 + 53.7500 95.5000 -94.0 + 55.5000 94.7500 -94.0 + 58.5000 91.7500 -94.0 + 66.5000 87.7500 -94.0 + 76.5000 87.7500 -94.0 + 80.2500 92.5000 -94.0 + 82.7500 92.5000 -94.0 + 79.7500 88.5000 -94.0 +} -94.0 +{ -94.0 + 129.2500 91.5000 -94.0 + 127.2500 94.5000 -94.0 + 130.7500 94.5000 -94.0 +} -94.0 +{ -94.0 + 100.2500 94.5000 -94.0 + 99.2500 95.5000 -94.0 + 100.7500 95.5000 -94.0 +} -94.0 +{ -94.0 + 86.2500 97.5000 -94.0 + 88.7500 99.5000 -94.0 + 87.7500 97.5000 -94.0 +} -94.0 +{ -94.0 + 100.2500 97.5000 -94.0 + 100.5000 97.7500 -94.0 + 102.5000 98.7500 -94.0 + 101.7500 97.5000 -94.0 +} -94.0 +{ -94.0 + 102.2500 157.5000 -94.0 + 101.2500 159.5000 -94.0 + 102.5000 159.7500 -94.0 +} -94.0 +v 173 z -96.000000 -64.0 +{ -96.0 + 115.2500 37.5000 -96.0 + 115.2500 45.5000 -96.0 + 114.5000 47.2500 -96.0 + 114.2500 54.5000 -96.0 + 115.5000 54.7500 -96.0 + 117.7500 48.5000 -96.0 + 116.7500 46.5000 -96.0 + 116.7500 40.5000 -96.0 +} -96.0 +{ -96.0 + 101.2500 40.5000 -96.0 + 100.2500 44.5000 -96.0 + 97.5000 48.2500 -96.0 + 99.2500 51.5000 -96.0 + 99.2500 53.5000 -96.0 + 100.5000 54.7500 -96.0 + 101.7500 41.5000 -96.0 +} -96.0 +{ -96.0 + 59.2500 63.5000 -96.0 + 57.5000 64.2500 -96.0 + 55.2500 66.5000 -96.0 + 51.5000 73.2500 -96.0 + 51.5000 75.7500 -96.0 + 57.5000 71.7500 -96.0 + 60.5000 71.7500 -96.0 + 63.2500 75.5000 -96.0 + 64.5000 75.7500 -96.0 + 67.2500 78.5000 -96.0 + 67.7500 77.5000 -96.0 + 62.7500 67.5000 -96.0 + 62.7500 65.5000 -96.0 + 60.7500 63.5000 -96.0 +} -96.0 +{ -96.0 + 153.2500 66.5000 -96.0 + 151.5000 68.2500 -96.0 + 150.2500 73.5000 -96.0 + 147.2500 76.5000 -96.0 + 145.2500 80.5000 -96.0 + 149.5000 77.7500 -96.0 + 151.5000 77.7500 -96.0 + 155.5000 74.7500 -96.0 + 158.5000 75.7500 -96.0 + 161.2500 79.5000 -96.0 + 162.5000 78.7500 -96.0 + 162.7500 76.5000 -96.0 + 160.7500 70.5000 -96.0 + 156.7500 66.5000 -96.0 +} -96.0 +{ -96.0 + 76.2500 85.5000 -96.0 + 75.5000 86.2500 -96.0 + 73.2500 87.5000 -96.0 + 77.5000 88.7500 -96.0 + 82.5000 93.7500 -96.0 + 84.5000 92.7500 -96.0 + 83.7500 91.5000 -96.0 + 82.5000 92.2500 -96.0 + 81.7500 91.5000 -96.0 + 80.7500 89.5000 -96.0 +} -96.0 +{ -96.0 + 67.2500 86.5000 -96.0 + 66.5000 87.2500 -96.0 + 59.5000 87.2500 -96.0 + 48.5000 100.2500 -96.0 + 44.2500 106.5000 -96.0 + 41.2500 112.5000 -96.0 + 36.5000 120.2500 -96.0 + 36.2500 123.5000 -96.0 + 37.7500 122.5000 -96.0 + 40.7500 116.5000 -96.0 + 45.5000 109.7500 -96.0 + 46.7500 105.5000 -96.0 + 52.5000 98.7500 -96.0 + 55.5000 93.7500 -96.0 + 57.5000 93.7500 -96.0 + 59.5000 91.7500 -96.0 + 67.5000 87.7500 -96.0 + 69.5000 87.7500 -96.0 + 70.7500 86.5000 -96.0 +} -96.0 +{ -96.0 + 137.2500 89.5000 -96.0 + 135.5000 91.2500 -96.0 + 136.5000 91.7500 -96.0 + 138.5000 90.7500 -96.0 + 143.5000 90.7500 -96.0 + 148.5000 92.7500 -96.0 + 152.2500 95.5000 -96.0 + 152.5000 102.7500 -96.0 + 156.2500 104.5000 -96.0 + 160.5000 104.7500 -96.0 + 164.2500 107.5000 -96.0 + 169.2500 116.5000 -96.0 + 169.2500 118.5000 -96.0 + 172.2500 124.5000 -96.0 + 172.2500 129.5000 -96.0 + 174.2500 133.5000 -96.0 + 174.2500 149.5000 -96.0 + 173.5000 151.2500 -96.0 + 173.2500 157.5000 -96.0 + 171.2500 164.5000 -96.0 + 170.2500 171.5000 -96.0 + 163.5000 186.2500 -96.0 + 152.5000 202.2500 -96.0 + 138.5000 214.2500 -96.0 + 129.5000 219.2500 -96.0 + 127.5000 219.2500 -96.0 + 121.5000 222.2500 -96.0 + 118.5000 222.2500 -96.0 + 114.5000 224.2500 -96.0 + 109.5000 224.2500 -96.0 + 104.7500 222.5000 -96.0 + 98.5000 222.2500 -96.0 + 94.5000 225.2500 -96.0 + 87.5000 225.2500 -96.0 + 74.7500 219.5000 -96.0 + 65.5000 216.2500 -96.0 + 58.5000 211.2500 -96.0 + 44.7500 195.5000 -96.0 + 38.7500 183.5000 -96.0 + 38.7500 181.5000 -96.0 + 36.7500 177.5000 -96.0 + 36.7500 174.5000 -96.0 + 34.7500 168.5000 -96.0 + 34.7500 164.5000 -96.0 + 33.7500 162.5000 -96.0 + 33.7500 150.5000 -96.0 + 34.5000 148.7500 -96.0 + 34.7500 142.5000 -96.0 + 33.7500 140.5000 -96.0 + 33.7500 134.5000 -96.0 + 35.7500 125.5000 -96.0 + 34.5000 125.2500 -96.0 + 32.2500 130.5000 -96.0 + 28.5000 149.2500 -96.0 + 28.2500 159.5000 -96.0 + 29.2500 161.5000 -96.0 + 29.2500 169.5000 -96.0 + 30.2500 171.5000 -96.0 + 30.2500 175.5000 -96.0 + 31.2500 177.5000 -96.0 + 33.2500 187.5000 -96.0 + 38.2500 200.5000 -96.0 + 45.5000 210.7500 -96.0 + 61.5000 222.7500 -96.0 + 71.5000 227.7500 -96.0 + 78.5000 228.7500 -96.0 + 84.5000 231.7500 -96.0 + 91.2500 233.5000 -96.0 + 107.5000 233.7500 -96.0 + 109.5000 232.7500 -96.0 + 119.5000 230.7500 -96.0 + 123.5000 228.7500 -96.0 + 129.5000 227.7500 -96.0 + 141.5000 221.7500 -96.0 + 154.5000 212.7500 -96.0 + 163.7500 200.5000 -96.0 + 173.7500 180.5000 -96.0 + 178.5000 163.7500 -96.0 + 178.7500 144.5000 -96.0 + 177.7500 142.5000 -96.0 + 176.7500 133.5000 -96.0 + 175.7500 131.5000 -96.0 + 175.7500 129.5000 -96.0 + 167.7500 109.5000 -96.0 + 152.7500 91.5000 -96.0 + 149.5000 91.2500 -96.0 + 145.7500 89.5000 -96.0 + 144.5000 90.2500 -96.0 + 143.7500 89.5000 -96.0 +} -96.0 +{ -96.0 + 127.2500 92.5000 -96.0 + 126.5000 93.2500 -96.0 + 126.2500 95.5000 -96.0 + 128.7500 95.5000 -96.0 + 129.7500 93.5000 -96.0 +} -96.0 +{ -96.0 + 94.2500 108.5000 -96.0 + 93.2500 109.5000 -96.0 + 94.7500 109.5000 -96.0 +} -96.0 +{ -96.0 + 154.7500 71.5000 -96.0 + 155.5000 70.7500 -96.0 + 157.2500 71.5000 -96.0 + 156.5000 72.2500 -96.0 +} -96.0 +v 169 z -98.000000 -64.0 +{ -98.0 + 101.2500 38.5000 -98.0 + 100.2500 39.5000 -98.0 + 99.2500 44.5000 -98.0 + 96.5000 48.2500 -98.0 + 99.2500 51.5000 -98.0 + 99.5000 53.7500 -98.0 + 99.7500 48.5000 -98.0 + 101.7500 39.5000 -98.0 +} -98.0 +{ -98.0 + 116.2500 38.5000 -98.0 + 116.2500 44.5000 -98.0 + 115.2500 46.5000 -98.0 + 116.2500 48.5000 -98.0 + 115.5000 49.2500 -98.0 + 115.2500 53.5000 -98.0 + 116.5000 53.7500 -98.0 + 118.7500 48.5000 -98.0 + 117.7500 46.5000 -98.0 + 117.7500 43.5000 -98.0 +} -98.0 +{ -98.0 + 58.2500 63.5000 -98.0 + 55.5000 66.2500 -98.0 + 52.5000 71.2500 -98.0 + 52.2500 75.5000 -98.0 + 57.5000 71.7500 -98.0 + 60.5000 71.7500 -98.0 + 66.2500 77.5000 -98.0 + 68.5000 77.7500 -98.0 + 68.7500 76.5000 -98.0 + 63.7500 70.5000 -98.0 + 63.7500 67.5000 -98.0 + 61.7500 63.5000 -98.0 +} -98.0 +{ -98.0 + 153.2500 66.5000 -98.0 + 149.2500 74.5000 -98.0 + 143.5000 80.2500 -98.0 + 144.2500 81.5000 -98.0 + 147.5000 77.7500 -98.0 + 151.5000 77.7500 -98.0 + 154.5000 74.7500 -98.0 + 157.5000 74.7500 -98.0 + 160.2500 78.5000 -98.0 + 162.5000 78.7500 -98.0 + 162.7500 76.5000 -98.0 + 160.7500 70.5000 -98.0 + 157.7500 66.5000 -98.0 +} -98.0 +{ -98.0 + 60.2500 87.5000 -98.0 + 50.2500 98.5000 -98.0 + 44.2500 106.5000 -98.0 + 37.2500 119.5000 -98.0 + 32.2500 131.5000 -98.0 + 28.5000 150.2500 -98.0 + 28.2500 159.5000 -98.0 + 29.2500 161.5000 -98.0 + 29.2500 167.5000 -98.0 + 30.2500 169.5000 -98.0 + 30.2500 173.5000 -98.0 + 31.2500 175.5000 -98.0 + 32.2500 183.5000 -98.0 + 34.2500 187.5000 -98.0 + 34.2500 190.5000 -98.0 + 40.2500 202.5000 -98.0 + 46.2500 210.5000 -98.0 + 58.2500 220.5000 -98.0 + 71.5000 227.7500 -98.0 + 80.5000 229.7500 -98.0 + 84.5000 231.7500 -98.0 + 91.2500 233.5000 -98.0 + 107.5000 233.7500 -98.0 + 109.5000 232.7500 -98.0 + 116.5000 231.7500 -98.0 + 126.5000 227.7500 -98.0 + 129.5000 227.7500 -98.0 + 147.5000 217.7500 -98.0 + 156.7500 209.5000 -98.0 + 162.7500 201.5000 -98.0 + 171.7500 184.5000 -98.0 + 175.7500 170.5000 -98.0 + 178.5000 163.7500 -98.0 + 178.7500 147.5000 -98.0 + 177.7500 145.5000 -98.0 + 177.7500 140.5000 -98.0 + 175.7500 133.5000 -98.0 + 174.5000 126.2500 -98.0 + 165.7500 106.5000 -98.0 + 155.7500 96.5000 -98.0 + 153.7500 92.5000 -98.0 + 141.5000 90.2500 -98.0 + 142.2500 91.5000 -98.0 + 145.5000 91.7500 -98.0 + 147.2500 93.5000 -98.0 + 149.5000 93.7500 -98.0 + 152.2500 96.5000 -98.0 + 151.2500 98.5000 -98.0 + 153.2500 102.5000 -98.0 + 163.2500 106.5000 -98.0 + 172.2500 124.5000 -98.0 + 172.2500 130.5000 -98.0 + 174.2500 136.5000 -98.0 + 174.2500 147.5000 -98.0 + 173.5000 149.2500 -98.0 + 173.2500 158.5000 -98.0 + 172.2500 160.5000 -98.0 + 170.2500 170.5000 -98.0 + 166.2500 181.5000 -98.0 + 157.2500 196.5000 -98.0 + 147.5000 207.2500 -98.0 + 140.5000 213.2500 -98.0 + 132.5000 218.2500 -98.0 + 130.5000 218.2500 -98.0 + 124.5000 221.2500 -98.0 + 122.5000 221.2500 -98.0 + 118.5000 223.2500 -98.0 + 115.5000 223.2500 -98.0 + 112.5000 224.2500 -98.0 + 107.7500 222.5000 -98.0 + 100.5000 222.2500 -98.0 + 94.5000 225.2500 -98.0 + 86.5000 225.2500 -98.0 + 70.7500 217.5000 -98.0 + 65.5000 216.2500 -98.0 + 56.5000 208.2500 -98.0 + 54.5000 207.2500 -98.0 + 53.7500 205.5000 -98.0 + 44.7500 194.5000 -98.0 + 40.7500 186.5000 -98.0 + 36.7500 176.5000 -98.0 + 36.7500 174.5000 -98.0 + 35.7500 172.5000 -98.0 + 35.7500 168.5000 -98.0 + 34.7500 166.5000 -98.0 + 34.7500 156.5000 -98.0 + 33.7500 154.5000 -98.0 + 34.7500 142.5000 -98.0 + 33.7500 140.5000 -98.0 + 34.7500 128.5000 -98.0 + 36.7500 124.5000 -98.0 + 48.7500 102.5000 -98.0 + 53.7500 97.5000 -98.0 + 54.7500 95.5000 -98.0 + 59.5000 91.7500 -98.0 + 61.5000 91.7500 -98.0 + 65.5000 89.7500 -98.0 + 73.5000 88.7500 -98.0 + 79.5000 90.7500 -98.0 + 83.2500 94.5000 -98.0 + 84.5000 93.7500 -98.0 + 84.7500 91.5000 -98.0 + 81.5000 90.2500 -98.0 + 80.7500 88.5000 -98.0 + 69.5000 87.2500 -98.0 + 67.5000 88.2500 -98.0 + 66.7500 87.5000 -98.0 +} -98.0 +{ -98.0 + 135.2500 89.5000 -98.0 + 133.5000 91.2500 -98.0 + 134.5000 91.7500 -98.0 + 137.5000 90.7500 -98.0 + 137.7500 89.5000 -98.0 +} -98.0 +{ -98.0 + 128.2500 93.5000 -98.0 + 126.2500 96.5000 -98.0 + 127.5000 96.7500 -98.0 + 129.5000 94.7500 -98.0 +} -98.0 +{ -98.0 + 57.7500 68.5000 -98.0 + 58.5000 67.7500 -98.0 + 59.2500 68.5000 -98.0 + 58.5000 69.2500 -98.0 +} -98.0 +{ -98.0 + 154.7500 70.5000 -98.0 + 155.5000 69.7500 -98.0 + 157.2500 70.5000 -98.0 + 156.5000 72.2500 -98.0 + 154.5000 72.2500 -98.0 + 152.7500 71.5000 -98.0 +} -98.0 +v 192 z -100.000000 -98.0 +{ -98.0 + 116.2500 37.5000 -100.0 + 117.2500 39.5000 -100.0 + 117.2500 47.5000 -100.0 + 116.2500 52.5000 -100.0 + 116.7500 53.5000 -100.0 + 117.7500 51.5000 -100.0 + 121.5000 49.7500 -100.0 + 118.7500 45.5000 -100.0 + 117.7500 38.5000 -100.0 +} -100.0 +{ -100.0 + 100.2500 38.5000 -100.0 + 98.5000 42.2500 -100.0 + 98.2500 44.5000 -100.0 + 95.2500 48.5000 -100.0 + 96.5000 48.7500 -100.0 + 98.2500 50.5000 -100.0 + 98.2500 52.5000 -100.0 + 99.5000 52.7500 -100.0 + 99.7500 51.5000 -100.0 + 98.7500 48.5000 -100.0 + 100.7500 39.5000 -100.0 +} -100.0 +{ -100.0 + 59.2500 62.5000 -100.0 + 56.5000 64.2500 -100.0 + 52.5000 71.2500 -100.0 + 52.2500 74.5000 -100.0 + 53.5000 74.7500 -100.0 + 57.5000 71.7500 -100.0 + 60.5000 71.7500 -100.0 + 62.2500 72.5000 -100.0 + 63.2500 74.5000 -100.0 + 68.7500 77.5000 -100.0 + 63.7500 69.5000 -100.0 + 63.7500 66.5000 -100.0 + 60.7500 62.5000 -100.0 +} -100.0 +{ -100.0 + 154.2500 65.5000 -100.0 + 151.5000 69.2500 -100.0 + 151.2500 71.5000 -100.0 + 146.5000 76.2500 -100.0 + 146.5000 77.7500 -100.0 + 148.5000 76.7500 -100.0 + 151.5000 76.7500 -100.0 + 154.5000 73.7500 -100.0 + 156.5000 73.7500 -100.0 + 160.5000 77.7500 -100.0 + 162.5000 78.7500 -100.0 + 162.7500 75.5000 -100.0 + 160.7500 69.5000 -100.0 + 157.7500 65.5000 -100.0 +} -100.0 +{ -100.0 + 143.2500 79.5000 -100.0 + 142.2500 80.5000 -100.0 + 144.5000 80.7500 -100.0 + 144.7500 79.5000 -100.0 +} -100.0 +{ -100.0 + 61.2500 87.5000 -100.0 + 59.5000 88.2500 -100.0 + 59.2500 89.5000 -100.0 + 51.2500 97.5000 -100.0 + 45.2500 105.5000 -100.0 + 35.2500 124.5000 -100.0 + 31.5000 134.2500 -100.0 + 29.2500 149.5000 -100.0 + 28.5000 151.2500 -100.0 + 28.2500 159.5000 -100.0 + 29.2500 161.5000 -100.0 + 29.2500 165.5000 -100.0 + 30.2500 167.5000 -100.0 + 30.2500 172.5000 -100.0 + 31.2500 174.5000 -100.0 + 31.2500 177.5000 -100.0 + 37.2500 196.5000 -100.0 + 43.2500 206.5000 -100.0 + 50.5000 213.7500 -100.0 + 52.5000 214.7500 -100.0 + 53.2500 216.5000 -100.0 + 54.5000 216.7500 -100.0 + 57.5000 219.7500 -100.0 + 65.5000 224.7500 -100.0 + 84.5000 231.7500 -100.0 + 91.2500 233.5000 -100.0 + 106.5000 233.7500 -100.0 + 108.5000 232.7500 -100.0 + 112.5000 232.7500 -100.0 + 114.5000 231.7500 -100.0 + 116.5000 231.7500 -100.0 + 126.5000 227.7500 -100.0 + 129.7500 227.5000 -100.0 + 136.5000 224.7500 -100.0 + 149.5000 215.7500 -100.0 + 158.5000 206.7500 -100.0 + 162.7500 200.5000 -100.0 + 171.7500 183.5000 -100.0 + 175.7500 169.5000 -100.0 + 178.5000 162.7500 -100.0 + 178.7500 148.5000 -100.0 + 177.7500 146.5000 -100.0 + 177.7500 142.5000 -100.0 + 175.7500 135.5000 -100.0 + 173.7500 124.5000 -100.0 + 163.7500 104.5000 -100.0 + 152.7500 92.5000 -100.0 + 148.5000 92.2500 -100.0 + 146.7500 91.5000 -100.0 + 145.5000 92.2500 -100.0 + 141.5000 91.2500 -100.0 + 145.2500 93.5000 -100.0 + 147.5000 93.7500 -100.0 + 151.2500 96.5000 -100.0 + 151.2500 99.5000 -100.0 + 154.2500 102.5000 -100.0 + 160.5000 104.7500 -100.0 + 163.2500 107.5000 -100.0 + 165.2500 111.5000 -100.0 + 165.2500 113.5000 -100.0 + 166.5000 113.7500 -100.0 + 169.2500 117.5000 -100.0 + 169.2500 119.5000 -100.0 + 172.2500 125.5000 -100.0 + 172.2500 133.5000 -100.0 + 174.2500 137.5000 -100.0 + 174.2500 140.5000 -100.0 + 175.2500 142.5000 -100.0 + 174.5000 143.2500 -100.0 + 173.2500 148.5000 -100.0 + 172.2500 153.5000 -100.0 + 173.2500 155.5000 -100.0 + 169.2500 173.5000 -100.0 + 157.5000 196.2500 -100.0 + 149.5000 205.2500 -100.0 + 139.5000 214.2500 -100.0 + 130.5000 219.2500 -100.0 + 128.5000 219.2500 -100.0 + 122.5000 222.2500 -100.0 + 120.5000 222.2500 -100.0 + 118.5000 223.2500 -100.0 + 111.5000 223.2500 -100.0 + 100.5000 221.2500 -100.0 + 98.5000 223.2500 -100.0 + 94.5000 225.2500 -100.0 + 87.5000 225.2500 -100.0 + 82.5000 224.2500 -100.0 + 74.5000 219.2500 -100.0 + 64.5000 215.2500 -100.0 + 57.7500 209.5000 -100.0 + 45.7500 195.5000 -100.0 + 38.7500 182.5000 -100.0 + 38.7500 179.5000 -100.0 + 36.7500 175.5000 -100.0 + 36.7500 173.5000 -100.0 + 35.7500 171.5000 -100.0 + 35.7500 167.5000 -100.0 + 34.7500 165.5000 -100.0 + 34.7500 143.5000 -100.0 + 33.7500 141.5000 -100.0 + 33.7500 132.5000 -100.0 + 38.7500 122.5000 -100.0 + 42.7500 112.5000 -100.0 + 46.5000 109.7500 -100.0 + 47.7500 105.5000 -100.0 + 55.7500 94.5000 -100.0 + 58.5000 92.7500 -100.0 + 61.5000 92.7500 -100.0 + 63.5000 90.7500 -100.0 + 67.5000 90.7500 -100.0 + 69.5000 89.7500 -100.0 + 71.5000 89.7500 -100.0 + 72.7500 88.5000 -100.0 + 69.5000 88.2500 -100.0 + 67.5000 89.2500 -100.0 + 64.7500 87.5000 -100.0 +} -100.0 +{ -100.0 + 75.2500 89.5000 -100.0 + 74.5000 90.2500 -100.0 + 81.2500 94.5000 -100.0 + 84.5000 94.7500 -100.0 + 82.7500 91.5000 -100.0 + 81.7500 89.5000 -100.0 +} -100.0 +{ -100.0 + 133.2500 91.5000 -100.0 + 132.5000 92.2500 -100.0 + 133.5000 92.7500 -100.0 + 134.7500 91.5000 -100.0 +} -100.0 +{ -100.0 + 127.2500 94.5000 -100.0 + 125.2500 97.5000 -100.0 + 126.5000 97.7500 -100.0 + 128.5000 95.7500 -100.0 +} -100.0 +{ -100.0 + 110.2500 103.5000 -100.0 + 109.2500 104.5000 -100.0 + 110.7500 104.5000 -100.0 +} -100.0 +{ -100.0 + 58.7500 66.5000 -100.0 + 59.5000 65.7500 -100.0 + 60.2500 66.5000 -100.0 + 59.5000 68.2500 -100.0 +} -100.0 +{ -100.0 + 154.7500 69.5000 -100.0 + 155.5000 68.7500 -100.0 + 156.2500 69.5000 -100.0 + 155.5000 70.2500 -100.0 +} -100.0 +v 186 z -102.000000 -64.0 +{ -102.0 + 100.2500 37.5000 -102.0 + 96.5000 45.2500 -102.0 + 94.5000 46.2500 -102.0 + 92.2500 49.5000 -102.0 + 96.5000 49.7500 -102.0 + 98.5000 52.7500 -102.0 + 98.7500 49.5000 -102.0 + 97.7500 47.5000 -102.0 + 98.7500 42.5000 -102.0 + 100.7500 38.5000 -102.0 +} -102.0 +{ -102.0 + 117.2500 38.5000 -102.0 + 117.2500 39.5000 -102.0 + 118.2500 41.5000 -102.0 + 118.2500 49.5000 -102.0 + 117.5000 51.2500 -102.0 + 117.5000 53.7500 -102.0 + 119.5000 50.7500 -102.0 + 124.5000 51.7500 -102.0 + 124.7500 50.5000 -102.0 + 119.7500 45.5000 -102.0 + 119.7500 43.5000 -102.0 +} -102.0 +{ -102.0 + 58.2500 62.5000 -102.0 + 56.2500 64.5000 -102.0 + 52.5000 71.2500 -102.0 + 52.2500 73.5000 -102.0 + 54.5000 73.7500 -102.0 + 57.5000 70.7500 -102.0 + 60.5000 70.7500 -102.0 + 63.5000 73.7500 -102.0 + 68.7500 76.5000 -102.0 + 67.7500 73.5000 -102.0 + 63.7500 69.5000 -102.0 + 63.7500 66.5000 -102.0 + 61.7500 62.5000 -102.0 +} -102.0 +{ -102.0 + 120.2500 64.5000 -102.0 + 119.5000 65.2500 -102.0 + 121.2500 67.5000 -102.0 + 121.5000 70.7500 -102.0 + 121.7500 67.5000 -102.0 +} -102.0 +{ -102.0 + 154.2500 64.5000 -102.0 + 152.5000 66.2500 -102.0 + 150.2500 72.5000 -102.0 + 148.5000 73.2500 -102.0 + 145.2500 77.5000 -102.0 + 150.5000 75.7500 -102.0 + 153.5000 71.7500 -102.0 + 156.5000 71.7500 -102.0 + 160.2500 77.5000 -102.0 + 162.5000 77.7500 -102.0 + 162.7500 74.5000 -102.0 + 160.7500 70.5000 -102.0 + 160.7500 68.5000 -102.0 + 157.7500 64.5000 -102.0 +} -102.0 +{ -102.0 + 142.2500 79.5000 -102.0 + 140.2500 81.5000 -102.0 + 142.5000 81.7500 -102.0 + 143.7500 79.5000 -102.0 +} -102.0 +{ -102.0 + 122.2500 82.5000 -102.0 + 121.2500 84.5000 -102.0 + 125.5000 84.7500 -102.0 + 123.7500 82.5000 -102.0 +} -102.0 +{ -102.0 + 77.2500 87.5000 -102.0 + 76.2500 89.5000 -102.0 + 74.2500 90.5000 -102.0 + 78.5000 91.7500 -102.0 + 84.5000 95.7500 -102.0 + 84.7500 94.5000 -102.0 + 81.7500 88.5000 -102.0 +} -102.0 +{ -102.0 + 60.2500 88.5000 -102.0 + 52.5000 96.2500 -102.0 + 46.5000 104.2500 -102.0 + 33.2500 129.5000 -102.0 + 29.5000 146.2500 -102.0 + 28.2500 157.5000 -102.0 + 30.2500 163.5000 -102.0 + 30.2500 170.5000 -102.0 + 32.2500 177.5000 -102.0 + 33.2500 183.5000 -102.0 + 39.5000 199.7500 -102.0 + 46.5000 209.7500 -102.0 + 48.5000 210.7500 -102.0 + 60.2500 221.5000 -102.0 + 73.2500 228.5000 -102.0 + 86.2500 232.5000 -102.0 + 112.5000 232.7500 -102.0 + 114.5000 231.7500 -102.0 + 117.5000 231.7500 -102.0 + 127.5000 227.7500 -102.0 + 129.5000 227.7500 -102.0 + 135.5000 224.7500 -102.0 + 146.5000 217.7500 -102.0 + 152.5000 211.7500 -102.0 + 154.5000 210.7500 -102.0 + 162.7500 199.5000 -102.0 + 171.5000 182.7500 -102.0 + 174.7500 171.5000 -102.0 + 178.5000 161.7500 -102.0 + 178.7500 150.5000 -102.0 + 176.7500 143.5000 -102.0 + 174.7500 129.5000 -102.0 + 172.7500 125.5000 -102.0 + 172.7500 123.5000 -102.0 + 161.7500 102.5000 -102.0 + 155.7500 97.5000 -102.0 + 153.7500 93.5000 -102.0 + 150.5000 92.2500 -102.0 + 147.5000 93.2500 -102.0 + 145.7500 91.5000 -102.0 + 144.5000 92.2500 -102.0 + 139.2500 91.5000 -102.0 + 142.2500 93.5000 -102.0 + 147.5000 94.7500 -102.0 + 151.2500 98.5000 -102.0 + 151.2500 100.5000 -102.0 + 157.2500 104.5000 -102.0 + 159.5000 104.7500 -102.0 + 163.2500 108.5000 -102.0 + 163.2500 110.5000 -102.0 + 170.2500 121.5000 -102.0 + 170.2500 123.5000 -102.0 + 172.2500 127.5000 -102.0 + 171.2500 128.5000 -102.0 + 172.2500 130.5000 -102.0 + 172.2500 134.5000 -102.0 + 174.2500 138.5000 -102.0 + 174.2500 145.5000 -102.0 + 172.5000 149.2500 -102.0 + 172.2500 160.5000 -102.0 + 171.2500 162.5000 -102.0 + 170.2500 169.5000 -102.0 + 162.2500 188.5000 -102.0 + 155.2500 198.5000 -102.0 + 147.5000 207.2500 -102.0 + 140.5000 213.2500 -102.0 + 125.5000 221.2500 -102.0 + 122.5000 221.2500 -102.0 + 118.5000 223.2500 -102.0 + 111.5000 223.2500 -102.0 + 107.5000 221.2500 -102.0 + 104.5000 222.2500 -102.0 + 101.5000 221.2500 -102.0 + 93.5000 225.2500 -102.0 + 90.5000 225.2500 -102.0 + 80.5000 223.2500 -102.0 + 72.7500 218.5000 -102.0 + 66.5000 216.2500 -102.0 + 59.5000 211.2500 -102.0 + 51.7500 203.5000 -102.0 + 45.7500 194.5000 -102.0 + 37.7500 178.5000 -102.0 + 36.7500 171.5000 -102.0 + 33.7500 160.5000 -102.0 + 34.5000 159.7500 -102.0 + 34.7500 144.5000 -102.0 + 33.7500 142.5000 -102.0 + 33.7500 136.5000 -102.0 + 34.7500 133.5000 -102.0 + 42.7500 113.5000 -102.0 + 46.7500 109.5000 -102.0 + 49.7500 102.5000 -102.0 + 52.5000 99.7500 -102.0 + 56.5000 93.7500 -102.0 + 59.5000 93.7500 -102.0 + 65.5000 90.7500 -102.0 + 67.5000 90.7500 -102.0 + 72.5000 88.7500 -102.0 + 71.5000 88.2500 -102.0 + 69.5000 89.2500 -102.0 +} -102.0 +{ -102.0 + 129.2500 91.5000 -102.0 + 127.5000 92.2500 -102.0 + 124.2500 97.5000 -102.0 + 125.5000 97.7500 -102.0 + 129.5000 94.7500 -102.0 + 128.7500 93.5000 -102.0 + 129.7500 92.5000 -102.0 +} -102.0 +{ -102.0 + 134.2500 91.5000 -102.0 + 130.2500 93.5000 -102.0 + 134.5000 94.7500 -102.0 + 135.7500 91.5000 -102.0 +} -102.0 +{ -102.0 + 111.2500 104.5000 -102.0 + 110.2500 105.5000 -102.0 + 111.7500 105.5000 -102.0 +} -102.0 +{ -102.0 + 58.7500 66.5000 -102.0 + 59.5000 65.7500 -102.0 + 61.2500 66.5000 -102.0 + 60.5000 67.2500 -102.0 +} -102.0 +v 208 z -104.000000 -64.0 +{ -104.0 + 99.2500 38.5000 -104.0 + 97.5000 41.2500 -104.0 + 97.2500 43.5000 -104.0 + 90.5000 49.2500 -104.0 + 90.5000 50.7500 -104.0 + 92.5000 51.7500 -104.0 + 93.5000 49.7500 -104.0 + 95.5000 48.7500 -104.0 + 97.2500 50.5000 -104.0 + 97.5000 52.7500 -104.0 + 97.7500 45.5000 -104.0 + 99.7500 39.5000 -104.0 +} -104.0 +{ -104.0 + 118.2500 39.5000 -104.0 + 118.2500 44.5000 -104.0 + 119.2500 46.5000 -104.0 + 118.2500 53.5000 -104.0 + 121.5000 50.7500 -104.0 + 123.2500 53.5000 -104.0 + 124.5000 53.7500 -104.0 + 127.7500 52.5000 -104.0 + 128.7500 50.5000 -104.0 + 125.5000 49.2500 -104.0 + 121.7500 46.5000 -104.0 +} -104.0 +{ -104.0 + 121.2500 59.5000 -104.0 + 120.2500 61.5000 -104.0 + 121.2500 63.5000 -104.0 + 120.5000 65.2500 -104.0 + 123.2500 66.5000 -104.0 + 123.2500 68.5000 -104.0 + 124.5000 68.7500 -104.0 + 123.7500 67.5000 -104.0 + 123.7500 64.5000 -104.0 +} -104.0 +{ -104.0 + 58.2500 61.5000 -104.0 + 54.5000 66.2500 -104.0 + 52.5000 72.7500 -104.0 + 54.5000 73.7500 -104.0 + 58.5000 69.7500 -104.0 + 60.5000 68.7500 -104.0 + 63.5000 72.7500 -104.0 + 69.5000 75.7500 -104.0 + 69.7500 74.5000 -104.0 + 63.7500 67.5000 -104.0 + 63.7500 65.5000 -104.0 + 61.7500 61.5000 -104.0 +} -104.0 +{ -104.0 + 93.2500 61.5000 -104.0 + 92.5000 62.2500 -104.0 + 92.2500 64.5000 -104.0 + 93.5000 64.7500 -104.0 + 93.7500 62.5000 -104.0 +} -104.0 +{ -104.0 + 153.2500 62.5000 -104.0 + 152.2500 63.5000 -104.0 + 151.2500 68.5000 -104.0 + 145.5000 76.2500 -104.0 + 146.5000 76.7500 -104.0 + 153.5000 69.7500 -104.0 + 155.5000 69.7500 -104.0 + 159.2500 73.5000 -104.0 + 159.2500 75.5000 -104.0 + 162.5000 77.7500 -104.0 + 162.7500 74.5000 -104.0 + 159.7500 65.5000 -104.0 + 156.7500 62.5000 -104.0 +} -104.0 +{ -104.0 + 71.2500 77.5000 -104.0 + 71.5000 78.7500 -104.0 + 73.5000 79.7500 -104.0 +} -104.0 +{ -104.0 + 61.2500 88.5000 -104.0 + 59.5000 89.2500 -104.0 + 59.2500 90.5000 -104.0 + 56.5000 93.2500 -104.0 + 54.5000 94.2500 -104.0 + 54.2500 95.5000 -104.0 + 47.5000 103.2500 -104.0 + 34.2500 128.5000 -104.0 + 30.2500 145.5000 -104.0 + 28.2500 155.5000 -104.0 + 30.2500 162.5000 -104.0 + 30.2500 168.5000 -104.0 + 32.2500 175.5000 -104.0 + 33.2500 181.5000 -104.0 + 39.5000 198.7500 -104.0 + 45.2500 207.5000 -104.0 + 53.2500 214.5000 -104.0 + 54.2500 216.5000 -104.0 + 65.5000 224.7500 -104.0 + 79.5000 230.7500 -104.0 + 86.2500 232.5000 -104.0 + 111.5000 232.7500 -104.0 + 113.5000 231.7500 -104.0 + 120.5000 230.7500 -104.0 + 135.7500 224.5000 -104.0 + 144.5000 218.7500 -104.0 + 151.5000 211.7500 -104.0 + 153.5000 210.7500 -104.0 + 162.7500 198.5000 -104.0 + 169.5000 185.7500 -104.0 + 178.5000 160.7500 -104.0 + 178.7500 151.5000 -104.0 + 176.7500 144.5000 -104.0 + 175.7500 137.5000 -104.0 + 171.7500 123.5000 -104.0 + 163.7500 106.5000 -104.0 + 159.7500 100.5000 -104.0 + 154.7500 96.5000 -104.0 + 153.7500 94.5000 -104.0 + 150.5000 93.2500 -104.0 + 148.5000 94.2500 -104.0 + 146.5000 94.2500 -104.0 + 144.7500 92.5000 -104.0 + 144.7500 90.5000 -104.0 + 143.2500 93.5000 -104.0 + 150.2500 98.5000 -104.0 + 150.2500 100.5000 -104.0 + 154.5000 104.7500 -104.0 + 159.5000 105.7500 -104.0 + 161.2500 107.5000 -104.0 + 163.2500 113.5000 -104.0 + 164.5000 113.7500 -104.0 + 165.2500 115.5000 -104.0 + 168.2500 118.5000 -104.0 + 168.2500 120.5000 -104.0 + 171.2500 126.5000 -104.0 + 171.2500 132.5000 -104.0 + 172.2500 134.5000 -104.0 + 172.2500 136.5000 -104.0 + 174.2500 140.5000 -104.0 + 174.2500 145.5000 -104.0 + 172.5000 149.2500 -104.0 + 172.2500 159.5000 -104.0 + 168.2500 174.5000 -104.0 + 163.5000 184.2500 -104.0 + 163.2500 186.5000 -104.0 + 154.5000 198.2500 -104.0 + 145.2500 209.5000 -104.0 + 133.5000 217.2500 -104.0 + 131.5000 217.2500 -104.0 + 127.5000 220.2500 -104.0 + 125.5000 220.2500 -104.0 + 121.5000 222.2500 -104.0 + 114.5000 223.2500 -104.0 + 106.5000 221.2500 -104.0 + 104.5000 222.2500 -104.0 + 103.7500 221.5000 -104.0 + 100.5000 221.2500 -104.0 + 96.5000 224.2500 -104.0 + 91.5000 225.2500 -104.0 + 81.5000 223.2500 -104.0 + 73.5000 219.2500 -104.0 + 61.5000 212.2500 -104.0 + 51.7500 202.5000 -104.0 + 48.7500 198.5000 -104.0 + 38.7500 180.5000 -104.0 + 38.7500 178.5000 -104.0 + 36.7500 174.5000 -104.0 + 35.7500 166.5000 -104.0 + 33.7500 159.5000 -104.0 + 34.5000 158.7500 -104.0 + 34.7500 146.5000 -104.0 + 33.7500 143.5000 -104.0 + 34.5000 141.7500 -104.0 + 34.7500 134.5000 -104.0 + 37.5000 128.7500 -104.0 + 37.7500 126.5000 -104.0 + 41.7500 116.5000 -104.0 + 45.5000 112.7500 -104.0 + 48.5000 107.7500 -104.0 + 48.7500 105.5000 -104.0 + 57.5000 93.7500 -104.0 + 60.5000 93.7500 -104.0 + 62.5000 91.7500 -104.0 + 64.5000 91.7500 -104.0 + 70.7500 89.5000 -104.0 + 67.5000 89.2500 -104.0 + 64.5000 90.2500 -104.0 + 62.7500 88.5000 -104.0 +} -104.0 +{ -104.0 + 76.2500 88.5000 -104.0 + 74.5000 90.2500 -104.0 + 75.2500 91.5000 -104.0 + 78.5000 90.7500 -104.0 + 82.2500 96.5000 -104.0 + 85.5000 96.7500 -104.0 + 85.7500 95.5000 -104.0 + 82.5000 88.2500 -104.0 + 80.5000 89.2500 -104.0 +} -104.0 +{ -104.0 + 127.2500 92.5000 -104.0 + 121.5000 96.2500 -104.0 + 120.5000 99.7500 -104.0 + 123.5000 98.7500 -104.0 + 126.5000 95.7500 -104.0 + 128.5000 95.7500 -104.0 + 130.5000 93.7500 -104.0 + 135.5000 94.7500 -104.0 + 137.5000 93.7500 -104.0 + 140.7500 93.5000 -104.0 + 136.7500 92.5000 -104.0 +} -104.0 +{ -104.0 + 58.7500 65.5000 -104.0 + 59.5000 64.7500 -104.0 + 61.2500 65.5000 -104.0 + 60.5000 66.2500 -104.0 +} -104.0 +{ -104.0 + 80.7500 91.5000 -104.0 + 81.5000 90.7500 -104.0 + 83.2500 92.5000 -104.0 + 82.5000 93.2500 -104.0 +} -104.0 +{ -104.0 + 152.7500 97.5000 -104.0 + 153.5000 96.7500 -104.0 + 154.2500 97.5000 -104.0 + 157.2500 101.5000 -104.0 + 156.5000 102.2500 -104.0 + 154.5000 101.2500 -104.0 +} -104.0 +//v 230 z -106.000000 -64.0 +{ -64.0 + 99.2500 37.5000 -64.0 + 95.5000 44.2500 -64.0 + 87.5000 50.2500 -64.0 + 91.2500 55.5000 -64.0 + 91.2500 63.5000 -64.0 + 93.5000 63.7500 -64.0 + 91.7500 61.5000 -64.0 + 91.7500 59.5000 -64.0 + 94.7500 55.5000 -64.0 + 93.5000 55.2500 -64.0 + 91.7500 53.5000 -64.0 + 92.5000 49.7500 -64.0 + 94.5000 48.7500 -64.0 + 97.5000 52.7500 -64.0 + 97.7500 49.5000 -64.0 + 96.7500 47.5000 -64.0 + 97.7500 43.5000 -64.0 + 100.7500 37.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 38.5000 -64.0 + 118.2500 39.5000 -64.0 + 119.2500 41.5000 -64.0 + 119.2500 47.5000 -64.0 + 120.2500 49.5000 -64.0 + 119.5000 50.2500 -64.0 + 119.2500 52.5000 -64.0 + 121.5000 51.7500 -64.0 + 123.2500 52.5000 -64.0 + 124.5000 50.7500 -64.0 + 126.5000 50.7500 -64.0 + 128.5000 52.7500 -64.0 + 130.5000 53.7500 -64.0 + 134.5000 51.7500 -64.0 + 132.7500 50.5000 -64.0 + 130.5000 50.2500 -64.0 + 124.5000 48.2500 -64.0 + 121.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 59.2500 59.5000 -64.0 + 57.2500 61.5000 -64.0 + 52.2500 71.5000 -64.0 + 53.2500 73.5000 -64.0 + 59.5000 67.7500 -64.0 + 62.5000 67.7500 -64.0 + 64.2500 70.5000 -64.0 + 64.2500 72.5000 -64.0 + 69.5000 74.7500 -64.0 + 69.7500 73.5000 -64.0 + 65.7500 69.5000 -64.0 + 63.7500 65.5000 -64.0 + 62.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 59.5000 -64.0 + 151.5000 60.2500 -64.0 + 151.2500 63.5000 -64.0 + 150.2500 66.5000 -64.0 + 149.5000 68.2500 -64.0 + 146.5000 73.2500 -64.0 + 147.2500 74.5000 -64.0 + 149.7500 72.5000 -64.0 + 150.7500 70.5000 -64.0 + 153.5000 68.7500 -64.0 + 155.5000 68.7500 -64.0 + 157.2500 70.5000 -64.0 + 159.2500 74.5000 -64.0 + 162.2500 78.5000 -64.0 + 163.5000 77.7500 -64.0 + 163.7500 75.5000 -64.0 + 160.7500 69.5000 -64.0 + 160.7500 67.5000 -64.0 + 159.7500 64.5000 -64.0 + 154.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 65.5000 -64.0 + 126.2500 67.5000 -64.0 + 127.7500 67.5000 -64.0 + 126.7500 65.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 82.5000 -64.0 + 92.2500 83.5000 -64.0 + 93.5000 83.7500 -64.0 +} -64.0 +{ -64.0 + 118.2500 83.5000 -64.0 + 116.2500 86.5000 -64.0 + 120.5000 84.7500 -64.0 +} -64.0 +{ -64.0 + 60.2500 89.5000 -64.0 + 58.5000 92.2500 -64.0 + 56.5000 93.2500 -64.0 + 51.2500 98.5000 -64.0 + 38.5000 120.2500 -64.0 + 38.2500 122.5000 -64.0 + 34.2500 130.5000 -64.0 + 29.5000 148.2500 -64.0 + 29.2500 158.5000 -64.0 + 30.2500 160.5000 -64.0 + 30.2500 165.5000 -64.0 + 32.2500 172.5000 -64.0 + 33.2500 181.5000 -64.0 + 39.2500 196.5000 -64.0 + 45.2500 206.5000 -64.0 + 58.2500 219.5000 -64.0 + 68.2500 226.5000 -64.0 + 79.5000 230.7500 -64.0 + 88.2500 232.5000 -64.0 + 108.5000 232.7500 -64.0 + 110.5000 231.7500 -64.0 + 117.5000 231.7500 -64.0 + 121.5000 229.7500 -64.0 + 124.5000 229.7500 -64.0 + 136.5000 223.7500 -64.0 + 147.5000 215.7500 -64.0 + 158.5000 203.7500 -64.0 + 162.7500 197.5000 -64.0 + 169.5000 184.7500 -64.0 + 178.5000 159.7500 -64.0 + 178.7500 152.5000 -64.0 + 176.7500 146.5000 -64.0 + 176.7500 142.5000 -64.0 + 174.7500 138.5000 -64.0 + 171.7500 124.5000 -64.0 + 160.7500 102.5000 -64.0 + 152.7500 94.5000 -64.0 + 150.5000 94.2500 -64.0 + 148.5000 95.2500 -64.0 + 138.5000 94.2500 -64.0 + 134.5000 92.2500 -64.0 + 131.5000 93.2500 -64.0 + 128.5000 92.2500 -64.0 + 125.5000 95.2500 -64.0 + 122.5000 95.2500 -64.0 + 121.5000 93.2500 -64.0 + 121.2500 98.5000 -64.0 + 117.5000 104.7500 -64.0 + 119.5000 103.7500 -64.0 + 123.5000 97.7500 -64.0 + 129.5000 94.7500 -64.0 + 140.5000 94.7500 -64.0 + 144.2500 96.5000 -64.0 + 145.2500 98.5000 -64.0 + 148.5000 98.7500 -64.0 + 155.2500 108.5000 -64.0 + 159.2500 109.5000 -64.0 + 161.5000 113.7500 -64.0 + 163.5000 114.7500 -64.0 + 166.2500 118.5000 -64.0 + 170.2500 126.5000 -64.0 + 171.2500 136.5000 -64.0 + 173.2500 140.5000 -64.0 + 173.2500 145.5000 -64.0 + 171.2500 150.5000 -64.0 + 172.2500 152.5000 -64.0 + 171.2500 164.5000 -64.0 + 168.2500 173.5000 -64.0 + 164.5000 181.2500 -64.0 + 164.2500 183.5000 -64.0 + 161.2500 186.5000 -64.0 + 158.2500 192.5000 -64.0 + 147.5000 207.2500 -64.0 + 139.5000 213.2500 -64.0 + 121.5000 222.2500 -64.0 + 118.5000 222.2500 -64.0 + 116.5000 223.2500 -64.0 + 101.5000 220.2500 -64.0 + 95.5000 224.2500 -64.0 + 88.5000 224.2500 -64.0 + 81.5000 223.2500 -64.0 + 69.5000 217.2500 -64.0 + 56.7500 207.5000 -64.0 + 50.7500 200.5000 -64.0 + 38.7500 181.5000 -64.0 + 38.7500 179.5000 -64.0 + 37.7500 177.5000 -64.0 + 36.7500 170.5000 -64.0 + 33.7500 159.5000 -64.0 + 34.5000 157.7500 -64.0 + 34.7500 141.5000 -64.0 + 35.7500 139.5000 -64.0 + 34.7500 136.5000 -64.0 + 38.5000 127.7500 -64.0 + 40.7500 119.5000 -64.0 + 48.5000 112.7500 -64.0 + 48.7500 106.5000 -64.0 + 57.5000 94.7500 -64.0 + 60.5000 94.7500 -64.0 + 64.5000 91.7500 -64.0 + 69.5000 91.7500 -64.0 + 69.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 76.2500 89.5000 -64.0 + 75.5000 90.2500 -64.0 + 73.5000 90.2500 -64.0 + 71.5000 91.2500 -64.0 + 73.2500 92.5000 -64.0 + 75.5000 92.7500 -64.0 + 77.5000 91.7500 -64.0 + 79.5000 91.7500 -64.0 + 81.2500 93.5000 -64.0 + 80.2500 95.5000 -64.0 + 85.2500 98.5000 -64.0 + 87.5000 98.7500 -64.0 + 87.7500 96.5000 -64.0 + 86.5000 95.2500 -64.0 + 84.5000 96.2500 -64.0 + 81.7500 94.5000 -64.0 + 82.5000 93.7500 -64.0 + 84.7500 93.5000 -64.0 + 82.5000 90.2500 -64.0 + 80.5000 91.2500 -64.0 +} -64.0 +{ -64.0 + 143.2500 89.5000 -64.0 + 143.2500 90.5000 -64.0 + 144.5000 90.7500 -64.0 +} -64.0 +{ -64.0 + 118.2500 118.5000 -64.0 + 117.5000 121.7500 -64.0 + 121.2500 124.5000 -64.0 + 121.7500 123.5000 -64.0 + 119.7500 121.5000 -64.0 + 119.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 144.2500 132.5000 -64.0 + 143.2500 134.5000 -64.0 + 144.2500 136.5000 -64.0 + 147.5000 136.7500 -64.0 + 147.7500 132.5000 -64.0 +} -64.0 +{ -64.0 + 59.7500 63.5000 -64.0 + 60.5000 62.7500 -64.0 + 61.2500 63.5000 -64.0 + 60.5000 65.2500 -64.0 +} -64.0 +{ -64.0 + 153.7500 65.5000 -64.0 + 155.5000 64.7500 -64.0 + 157.2500 65.5000 -64.0 + 156.5000 67.2500 -64.0 + 154.5000 67.2500 -64.0 +} -64.0 +{ -64.0 + 151.7500 97.5000 -64.0 + 152.5000 96.7500 -64.0 + 155.2500 99.5000 -64.0 + 156.2500 101.5000 -64.0 + 155.5000 103.2500 -64.0 + 152.7500 99.5000 -64.0 +} -64.0 +v 251 z -108.000000 -64.0 +{ -64.0 + 98.2500 38.5000 -64.0 + 95.2500 44.5000 -64.0 + 92.2500 46.5000 -64.0 + 81.5000 50.2500 -64.0 + 84.5000 52.7500 -64.0 + 88.5000 50.7500 -64.0 + 91.7500 53.5000 -64.0 + 90.7500 51.5000 -64.0 + 92.5000 48.7500 -64.0 + 95.5000 49.7500 -64.0 + 97.5000 53.7500 -64.0 + 97.7500 50.5000 -64.0 + 96.7500 48.5000 -64.0 + 96.7500 45.5000 -64.0 + 98.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 39.5000 -64.0 + 119.2500 42.5000 -64.0 + 120.2500 44.5000 -64.0 + 119.5000 52.7500 -64.0 + 122.5000 51.7500 -64.0 + 123.5000 49.7500 -64.0 + 125.5000 49.7500 -64.0 + 132.2500 52.5000 -64.0 + 132.7500 57.5000 -64.0 + 133.7500 55.5000 -64.0 + 136.5000 53.7500 -64.0 + 141.5000 53.7500 -64.0 + 144.5000 54.7500 -64.0 + 149.2500 59.5000 -64.0 + 149.2500 63.5000 -64.0 + 145.5000 71.2500 -64.0 + 145.2500 73.5000 -64.0 + 147.5000 73.7500 -64.0 + 147.7500 72.5000 -64.0 + 153.5000 67.7500 -64.0 + 157.2500 69.5000 -64.0 + 160.2500 74.5000 -64.0 + 160.2500 76.5000 -64.0 + 163.2500 80.5000 -64.0 + 164.7500 79.5000 -64.0 + 163.7500 77.5000 -64.0 + 163.7500 74.5000 -64.0 + 157.7500 60.5000 -64.0 + 152.7500 56.5000 -64.0 + 140.7500 51.5000 -64.0 + 128.5000 49.2500 -64.0 + 122.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 62.2500 56.5000 -64.0 + 60.5000 57.2500 -64.0 + 58.2500 59.5000 -64.0 + 52.5000 70.2500 -64.0 + 52.2500 73.5000 -64.0 + 53.5000 73.7500 -64.0 + 59.5000 66.7500 -64.0 + 62.5000 66.7500 -64.0 + 68.2500 73.5000 -64.0 + 69.7500 73.5000 -64.0 + 64.7500 65.5000 -64.0 + 64.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 64.5000 -64.0 + 131.5000 65.2500 -64.0 + 132.5000 65.7500 -64.0 + 133.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 79.5000 -64.0 + 106.5000 84.7500 -64.0 + 106.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 82.5000 -64.0 + 93.2500 83.5000 -64.0 + 94.5000 83.7500 -64.0 + 94.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 84.5000 -64.0 + 119.2500 85.5000 -64.0 + 120.5000 85.7500 -64.0 +} -64.0 +{ -64.0 + 140.2500 86.5000 -64.0 + 142.7500 88.5000 -64.0 + 141.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 123.2500 88.5000 -64.0 + 122.2500 89.5000 -64.0 + 124.5000 89.7500 -64.0 + 124.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 81.2500 89.5000 -64.0 + 81.2500 92.5000 -64.0 + 79.5000 93.2500 -64.0 + 77.5000 91.2500 -64.0 + 75.5000 92.2500 -64.0 + 72.5000 92.2500 -64.0 + 70.5000 90.2500 -64.0 + 68.5000 91.2500 -64.0 + 60.5000 90.2500 -64.0 + 50.5000 100.2500 -64.0 + 35.5000 129.2500 -64.0 + 29.5000 149.2500 -64.0 + 29.2500 156.5000 -64.0 + 31.2500 163.5000 -64.0 + 31.2500 168.5000 -64.0 + 32.2500 170.5000 -64.0 + 33.2500 179.5000 -64.0 + 40.2500 197.5000 -64.0 + 49.2500 209.5000 -64.0 + 58.2500 219.5000 -64.0 + 68.2500 226.5000 -64.0 + 78.2500 230.5000 -64.0 + 83.2500 231.5000 -64.0 + 114.5000 231.7500 -64.0 + 116.5000 230.7500 -64.0 + 119.5000 230.7500 -64.0 + 129.5000 227.7500 -64.0 + 139.5000 221.7500 -64.0 + 147.7500 214.5000 -64.0 + 156.7500 204.5000 -64.0 + 163.7500 194.5000 -64.0 + 169.7500 182.5000 -64.0 + 177.5000 161.7500 -64.0 + 178.7500 153.5000 -64.0 + 177.7500 151.5000 -64.0 + 174.7500 137.5000 -64.0 + 172.7500 133.5000 -64.0 + 172.7500 130.5000 -64.0 + 170.7500 126.5000 -64.0 + 170.7500 124.5000 -64.0 + 159.7500 102.5000 -64.0 + 152.7500 95.5000 -64.0 + 149.5000 95.2500 -64.0 + 145.5000 97.2500 -64.0 + 140.5000 94.2500 -64.0 + 138.5000 95.2500 -64.0 + 135.5000 94.2500 -64.0 + 132.2500 95.5000 -64.0 + 140.5000 95.7500 -64.0 + 145.5000 100.7500 -64.0 + 148.5000 99.7500 -64.0 + 152.2500 106.5000 -64.0 + 152.5000 108.7500 -64.0 + 158.5000 111.7500 -64.0 + 167.2500 122.5000 -64.0 + 167.2500 124.5000 -64.0 + 169.2500 128.5000 -64.0 + 169.2500 133.5000 -64.0 + 170.2500 135.5000 -64.0 + 170.2500 137.5000 -64.0 + 172.2500 139.5000 -64.0 + 171.2500 153.5000 -64.0 + 172.2500 155.5000 -64.0 + 172.2500 160.5000 -64.0 + 167.5000 174.2500 -64.0 + 167.2500 176.5000 -64.0 + 165.5000 178.2500 -64.0 + 165.2500 180.5000 -64.0 + 160.5000 185.2500 -64.0 + 158.2500 191.5000 -64.0 + 150.2500 203.5000 -64.0 + 145.2500 208.5000 -64.0 + 138.5000 213.2500 -64.0 + 123.5000 221.2500 -64.0 + 121.5000 221.2500 -64.0 + 119.5000 222.2500 -64.0 + 101.5000 220.2500 -64.0 + 93.5000 224.2500 -64.0 + 88.5000 224.2500 -64.0 + 83.5000 223.2500 -64.0 + 73.5000 219.2500 -64.0 + 63.5000 213.2500 -64.0 + 50.7500 200.5000 -64.0 + 44.7500 189.5000 -64.0 + 39.7500 181.5000 -64.0 + 39.7500 179.5000 -64.0 + 36.7500 173.5000 -64.0 + 35.7500 163.5000 -64.0 + 34.7500 161.5000 -64.0 + 34.7500 145.5000 -64.0 + 35.5000 143.7500 -64.0 + 35.7500 134.5000 -64.0 + 39.5000 126.7500 -64.0 + 40.7500 121.5000 -64.0 + 45.5000 114.7500 -64.0 + 49.5000 112.7500 -64.0 + 49.7500 105.5000 -64.0 + 58.5000 95.7500 -64.0 + 60.5000 95.7500 -64.0 + 64.5000 92.7500 -64.0 + 76.5000 93.7500 -64.0 + 79.5000 96.7500 -64.0 + 81.5000 97.7500 -64.0 + 86.5000 98.7500 -64.0 + 86.7500 97.5000 -64.0 + 84.5000 97.2500 -64.0 + 82.7500 93.5000 -64.0 + 83.5000 92.7500 -64.0 + 82.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 90.5000 -64.0 + 89.2500 91.5000 -64.0 + 90.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 128.2500 92.5000 -64.0 + 126.2500 95.5000 -64.0 + 128.5000 95.7500 -64.0 + 129.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 94.5000 -64.0 + 122.2500 97.5000 -64.0 + 123.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 102.5000 -64.0 + 118.5000 106.2500 -64.0 + 119.5000 106.7500 -64.0 + 120.7500 103.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 120.5000 -64.0 + 119.2500 124.5000 -64.0 + 120.5000 124.7500 -64.0 + 126.2500 130.5000 -64.0 + 131.2500 133.5000 -64.0 + 135.5000 133.7500 -64.0 + 138.5000 134.7500 -64.0 + 139.2500 136.5000 -64.0 + 142.2500 138.5000 -64.0 + 147.5000 139.7500 -64.0 + 149.5000 138.7500 -64.0 + 150.7500 132.5000 -64.0 + 145.5000 129.2500 -64.0 + 142.5000 130.2500 -64.0 + 135.7500 126.5000 -64.0 + 133.5000 126.2500 -64.0 + 130.5000 127.2500 -64.0 + 125.7500 125.5000 -64.0 + 126.7500 122.5000 -64.0 + 124.5000 122.2500 -64.0 + 123.5000 124.2500 -64.0 + 121.5000 124.2500 -64.0 + 118.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 61.5000 -64.0 + 153.5000 60.7500 -64.0 + 154.2500 61.5000 -64.0 + 157.2500 65.5000 -64.0 + 156.5000 66.2500 -64.0 + 154.5000 66.2500 -64.0 + 152.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 98.5000 -64.0 + 153.5000 97.7500 -64.0 + 155.2500 99.5000 -64.0 + 155.2500 101.5000 -64.0 + 154.5000 103.2500 -64.0 + 151.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 155.5000 104.7500 -64.0 + 156.2500 106.5000 -64.0 + 155.5000 108.2500 -64.0 + 153.7500 106.5000 -64.0 +} -64.0 +{ -64.0 + 157.7500 107.5000 -64.0 + 158.5000 106.7500 -64.0 + 159.2500 107.5000 -64.0 + 158.5000 108.2500 -64.0 +} -64.0 +{ -64.0 + 173.7500 149.5000 -64.0 + 174.5000 148.7500 -64.0 + 175.2500 149.5000 -64.0 + 174.5000 150.2500 -64.0 +} -64.0 +v 304 z -110.000000 -64.0 +{ -64.0 + 97.2500 40.5000 -64.0 + 96.2500 42.5000 -64.0 + 93.5000 45.2500 -64.0 + 88.5000 48.2500 -64.0 + 86.5000 48.2500 -64.0 + 84.5000 49.2500 -64.0 + 75.5000 49.2500 -64.0 + 73.5000 50.2500 -64.0 + 71.5000 50.2500 -64.0 + 63.5000 54.2500 -64.0 + 59.2500 57.5000 -64.0 + 56.2500 63.5000 -64.0 + 52.2500 69.5000 -64.0 + 51.2500 74.5000 -64.0 + 52.5000 74.7500 -64.0 + 60.5000 65.7500 -64.0 + 62.5000 65.7500 -64.0 + 68.5000 71.7500 -64.0 + 68.7500 68.5000 -64.0 + 66.7500 64.5000 -64.0 + 66.7500 61.5000 -64.0 + 68.5000 56.7500 -64.0 + 72.5000 53.7500 -64.0 + 84.5000 54.7500 -64.0 + 83.7500 51.5000 -64.0 + 85.5000 49.7500 -64.0 + 90.5000 49.7500 -64.0 + 92.5000 48.7500 -64.0 + 94.5000 48.7500 -64.0 + 97.5000 52.7500 -64.0 + 97.7500 50.5000 -64.0 + 96.7500 48.5000 -64.0 + 96.7500 44.5000 -64.0 + 97.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 41.5000 -64.0 + 120.2500 48.5000 -64.0 + 119.2500 53.5000 -64.0 + 121.5000 52.7500 -64.0 + 121.7500 51.5000 -64.0 + 123.5000 49.7500 -64.0 + 127.5000 49.7500 -64.0 + 131.2500 51.5000 -64.0 + 133.2500 55.5000 -64.0 + 133.2500 63.5000 -64.0 + 135.5000 63.7500 -64.0 + 135.7500 58.5000 -64.0 + 136.5000 56.7500 -64.0 + 143.5000 56.7500 -64.0 + 146.2500 60.5000 -64.0 + 145.2500 63.5000 -64.0 + 148.2500 65.5000 -64.0 + 148.2500 70.5000 -64.0 + 151.5000 67.7500 -64.0 + 153.5000 67.7500 -64.0 + 157.2500 69.5000 -64.0 + 161.2500 76.5000 -64.0 + 161.2500 78.5000 -64.0 + 166.5000 84.7500 -64.0 + 166.7500 81.5000 -64.0 + 164.7500 77.5000 -64.0 + 164.7500 75.5000 -64.0 + 160.7500 67.5000 -64.0 + 158.7500 61.5000 -64.0 + 153.5000 56.2500 -64.0 + 145.5000 52.2500 -64.0 + 128.5000 49.2500 -64.0 + 122.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 63.5000 -64.0 + 140.5000 64.2500 -64.0 + 140.2500 66.5000 -64.0 + 141.7500 66.5000 -64.0 + 142.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 147.2500 71.5000 -64.0 + 143.2500 74.5000 -64.0 + 145.5000 74.7500 -64.0 + 147.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 86.5000 -64.0 + 118.2500 90.5000 -64.0 + 119.5000 89.7500 -64.0 + 122.5000 89.7500 -64.0 +} -64.0 +{ -64.0 + 87.2500 87.5000 -64.0 + 89.2500 88.5000 -64.0 + 89.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 60.2500 91.5000 -64.0 + 56.2500 94.5000 -64.0 + 55.2500 96.5000 -64.0 + 52.5000 98.2500 -64.0 + 35.5000 130.2500 -64.0 + 35.2500 133.5000 -64.0 + 32.2500 139.5000 -64.0 + 29.5000 150.2500 -64.0 + 29.2500 154.5000 -64.0 + 31.2500 160.5000 -64.0 + 31.2500 165.5000 -64.0 + 32.2500 167.5000 -64.0 + 32.2500 170.5000 -64.0 + 36.2500 187.5000 -64.0 + 45.2500 203.5000 -64.0 + 60.2500 220.5000 -64.0 + 64.5000 223.7500 -64.0 + 73.5000 228.7500 -64.0 + 87.2500 231.5000 -64.0 + 104.5000 231.7500 -64.0 + 106.5000 230.7500 -64.0 + 118.5000 230.7500 -64.0 + 131.7500 226.5000 -64.0 + 140.5000 220.7500 -64.0 + 150.7500 210.5000 -64.0 + 159.7500 199.5000 -64.0 + 168.7500 183.5000 -64.0 + 177.5000 159.7500 -64.0 + 177.7500 149.5000 -64.0 + 176.7500 147.5000 -64.0 + 175.7500 141.5000 -64.0 + 172.7500 135.5000 -64.0 + 172.7500 133.5000 -64.0 + 170.7500 129.5000 -64.0 + 169.7500 124.5000 -64.0 + 165.5000 117.2500 -64.0 + 159.7500 103.5000 -64.0 + 153.7500 97.5000 -64.0 + 150.5000 97.2500 -64.0 + 148.5000 98.2500 -64.0 + 134.7500 95.5000 -64.0 + 133.5000 96.2500 -64.0 + 134.2500 97.5000 -64.0 + 140.5000 97.7500 -64.0 + 141.5000 99.7500 -64.0 + 145.2500 102.5000 -64.0 + 147.5000 102.7500 -64.0 + 150.2500 106.5000 -64.0 + 150.5000 108.7500 -64.0 + 156.5000 111.7500 -64.0 + 162.2500 117.5000 -64.0 + 169.2500 130.5000 -64.0 + 169.2500 132.5000 -64.0 + 171.2500 138.5000 -64.0 + 170.5000 140.2500 -64.0 + 171.2500 142.5000 -64.0 + 170.5000 144.2500 -64.0 + 170.2500 152.5000 -64.0 + 171.2500 154.5000 -64.0 + 171.2500 162.5000 -64.0 + 170.2500 169.5000 -64.0 + 165.5000 176.2500 -64.0 + 164.2500 180.5000 -64.0 + 161.2500 183.5000 -64.0 + 157.2500 191.5000 -64.0 + 148.2500 205.5000 -64.0 + 132.5000 216.2500 -64.0 + 120.5000 222.2500 -64.0 + 115.5000 222.2500 -64.0 + 101.5000 219.2500 -64.0 + 95.5000 223.2500 -64.0 + 91.5000 223.2500 -64.0 + 89.5000 224.2500 -64.0 + 84.5000 223.2500 -64.0 + 66.5000 215.2500 -64.0 + 51.7500 201.5000 -64.0 + 47.7500 194.5000 -64.0 + 47.7500 192.5000 -64.0 + 44.7500 188.5000 -64.0 + 38.7500 176.5000 -64.0 + 38.7500 174.5000 -64.0 + 36.7500 170.5000 -64.0 + 36.7500 168.5000 -64.0 + 35.7500 166.5000 -64.0 + 35.7500 159.5000 -64.0 + 34.7500 157.5000 -64.0 + 34.7500 151.5000 -64.0 + 35.5000 149.7500 -64.0 + 36.7500 132.5000 -64.0 + 40.5000 128.7500 -64.0 + 40.7500 124.5000 -64.0 + 43.7500 117.5000 -64.0 + 48.5000 112.7500 -64.0 + 50.5000 112.7500 -64.0 + 50.7500 110.5000 -64.0 + 49.7500 108.5000 -64.0 + 50.7500 105.5000 -64.0 + 58.5000 96.7500 -64.0 + 62.2500 97.5000 -64.0 + 74.5000 97.7500 -64.0 + 76.2500 100.5000 -64.0 + 77.5000 99.7500 -64.0 + 82.5000 99.7500 -64.0 + 83.7500 98.5000 -64.0 + 82.7500 96.5000 -64.0 + 82.7500 94.5000 -64.0 + 84.5000 92.7500 -64.0 + 87.7500 92.5000 -64.0 + 83.5000 91.2500 -64.0 + 79.5000 96.2500 -64.0 + 72.5000 94.2500 -64.0 + 70.5000 95.2500 -64.0 + 64.5000 92.2500 -64.0 +} -64.0 +{ -64.0 + 120.2500 94.5000 -64.0 + 121.2500 95.5000 -64.0 + 122.5000 94.7500 -64.0 + 124.2500 95.5000 -64.0 + 124.2500 97.5000 -64.0 + 130.7500 96.5000 -64.0 + 126.5000 96.2500 -64.0 + 125.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 99.5000 -64.0 + 120.5000 100.2500 -64.0 + 119.2500 104.5000 -64.0 + 117.5000 105.2500 -64.0 + 119.2500 107.5000 -64.0 + 119.2500 109.5000 -64.0 + 119.7500 108.5000 -64.0 + 121.5000 104.7500 -64.0 + 121.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 100.5000 -64.0 + 88.2500 102.5000 -64.0 + 88.7500 101.5000 -64.0 +} -64.0 +{ -64.0 + 88.2500 120.5000 -64.0 + 88.2500 121.5000 -64.0 + 89.5000 121.7500 -64.0 + 90.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 122.5000 -64.0 + 119.2500 124.5000 -64.0 + 122.5000 127.7500 -64.0 + 128.5000 130.7500 -64.0 + 131.2500 136.5000 -64.0 + 133.2500 137.5000 -64.0 + 136.5000 136.7500 -64.0 + 148.5000 142.7500 -64.0 + 153.7500 140.5000 -64.0 + 154.7500 138.5000 -64.0 + 153.7500 136.5000 -64.0 + 153.7500 130.5000 -64.0 + 152.7500 128.5000 -64.0 + 151.5000 129.2500 -64.0 + 151.2500 133.5000 -64.0 + 152.2500 135.5000 -64.0 + 151.5000 137.2500 -64.0 + 149.5000 137.2500 -64.0 + 147.5000 139.2500 -64.0 + 146.7500 138.5000 -64.0 + 146.7500 133.5000 -64.0 + 145.7500 131.5000 -64.0 + 145.7500 127.5000 -64.0 + 142.5000 129.2500 -64.0 + 139.5000 125.2500 -64.0 + 137.5000 124.2500 -64.0 + 132.5000 123.2500 -64.0 + 130.5000 124.2500 -64.0 + 125.5000 124.2500 -64.0 + 126.2500 126.5000 -64.0 + 124.5000 127.2500 -64.0 + 120.7500 124.5000 -64.0 + 119.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 134.7500 53.5000 -64.0 + 135.5000 52.7500 -64.0 + 137.2500 53.5000 -64.0 + 136.5000 54.2500 -64.0 +} -64.0 +{ -64.0 + 148.7500 58.5000 -64.0 + 150.5000 57.7500 -64.0 + 154.2500 60.5000 -64.0 + 157.2500 65.5000 -64.0 + 156.5000 66.2500 -64.0 + 153.5000 66.2500 -64.0 + 151.7500 62.5000 -64.0 + 150.5000 62.2500 -64.0 +} -64.0 +{ -64.0 + 62.7500 63.5000 -64.0 + 64.5000 62.7500 -64.0 + 65.2500 64.5000 -64.0 + 63.5000 65.2500 -64.0 +} -64.0 +{ -64.0 + 151.7500 99.5000 -64.0 + 152.5000 98.7500 -64.0 + 154.2500 101.5000 -64.0 + 155.2500 103.5000 -64.0 + 153.5000 105.2500 -64.0 + 150.7500 101.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 105.5000 -64.0 + 156.5000 104.7500 -64.0 + 158.2500 105.5000 -64.0 + 157.2500 107.5000 -64.0 + 155.5000 108.2500 -64.0 + 153.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 133.7500 126.5000 -64.0 + 135.5000 125.7500 -64.0 + 136.2500 127.5000 -64.0 + 134.5000 128.2500 -64.0 +} -64.0 +{ -64.0 + 132.7500 130.5000 -64.0 + 134.5000 129.7500 -64.0 + 136.2500 131.5000 -64.0 + 135.5000 132.2500 -64.0 + 133.5000 132.2500 -64.0 +} -64.0 +{ -64.0 + 139.7500 131.5000 -64.0 + 140.5000 130.7500 -64.0 + 142.2500 131.5000 -64.0 + 140.5000 133.2500 -64.0 +} -64.0 +{ -64.0 + 171.7500 148.5000 -64.0 + 172.5000 147.7500 -64.0 + 174.2500 148.5000 -64.0 + 175.2500 150.5000 -64.0 + 173.5000 151.2500 -64.0 + 171.7500 150.5000 -64.0 +} -64.0 +{ -64.0 + 99.7500 225.5000 -64.0 + 100.5000 224.7500 -64.0 + 101.2500 225.5000 -64.0 + 100.5000 226.2500 -64.0 +} -64.0 +v 387 z -112.000000 -64.0 +{ -64.0 + 97.2500 40.5000 -64.0 + 95.2500 44.5000 -64.0 + 89.5000 48.2500 -64.0 + 85.5000 48.2500 -64.0 + 83.5000 49.2500 -64.0 + 81.5000 49.2500 -64.0 + 79.5000 48.2500 -64.0 + 77.5000 49.2500 -64.0 + 72.5000 49.2500 -64.0 + 68.5000 51.2500 -64.0 + 66.5000 51.2500 -64.0 + 59.5000 57.2500 -64.0 + 49.5000 75.2500 -64.0 + 49.2500 77.5000 -64.0 + 51.5000 76.7500 -64.0 + 51.7500 75.5000 -64.0 + 59.5000 65.7500 -64.0 + 62.5000 65.7500 -64.0 + 65.5000 66.7500 -64.0 + 68.2500 70.5000 -64.0 + 71.5000 70.7500 -64.0 + 70.7500 69.5000 -64.0 + 72.5000 67.7500 -64.0 + 72.5000 65.2500 -64.0 + 70.5000 68.2500 -64.0 + 68.7500 67.5000 -64.0 + 67.7500 65.5000 -64.0 + 69.5000 64.7500 -64.0 + 69.7500 61.5000 -64.0 + 73.7500 57.5000 -64.0 + 75.7500 53.5000 -64.0 + 78.5000 50.7500 -64.0 + 80.5000 50.7500 -64.0 + 82.5000 51.7500 -64.0 + 86.5000 49.7500 -64.0 + 90.5000 49.7500 -64.0 + 92.5000 48.7500 -64.0 + 94.5000 48.7500 -64.0 + 97.5000 52.7500 -64.0 + 97.7500 50.5000 -64.0 + 95.7500 45.5000 -64.0 + 97.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 43.5000 -64.0 + 121.2500 48.5000 -64.0 + 118.5000 52.2500 -64.0 + 118.2500 56.5000 -64.0 + 119.5000 54.7500 -64.0 + 121.5000 53.7500 -64.0 + 121.7500 50.5000 -64.0 + 125.5000 48.7500 -64.0 + 122.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 51.5000 -64.0 + 133.2500 55.5000 -64.0 + 134.5000 55.7500 -64.0 + 135.5000 53.7500 -64.0 + 138.2500 55.5000 -64.0 + 138.7500 54.5000 -64.0 + 140.5000 53.7500 -64.0 + 141.2500 55.5000 -64.0 + 139.2500 56.5000 -64.0 + 140.2500 58.5000 -64.0 + 142.5000 57.7500 -64.0 + 146.5000 59.7500 -64.0 + 149.2500 63.5000 -64.0 + 149.2500 68.5000 -64.0 + 153.5000 66.7500 -64.0 + 157.2500 69.5000 -64.0 + 169.5000 91.7500 -64.0 + 169.7500 86.5000 -64.0 + 167.7500 82.5000 -64.0 + 167.7500 80.5000 -64.0 + 160.7500 66.5000 -64.0 + 155.7500 58.5000 -64.0 + 151.5000 55.2500 -64.0 + 145.7500 52.5000 -64.0 + 141.5000 52.2500 -64.0 + 139.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 58.5000 -64.0 + 107.2500 60.5000 -64.0 + 107.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 59.5000 -64.0 + 118.2500 64.5000 -64.0 + 119.5000 64.7500 -64.0 + 119.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 62.5000 -64.0 + 135.5000 63.7500 -64.0 + 138.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 82.5000 -64.0 + 105.2500 84.5000 -64.0 + 105.7500 85.5000 -64.0 + 106.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 84.5000 -64.0 + 92.2500 85.5000 -64.0 + 93.7500 84.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 86.5000 -64.0 + 89.2500 87.5000 -64.0 + 91.5000 87.7500 -64.0 +} -64.0 +{ -64.0 + 118.2500 86.5000 -64.0 + 118.2500 87.5000 -64.0 + 119.2500 89.5000 -64.0 + 120.7500 89.5000 -64.0 + 119.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 87.5000 -64.0 + 93.2500 88.5000 -64.0 + 94.5000 88.7500 -64.0 + 94.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 90.5000 -64.0 + 83.2500 91.5000 -64.0 + 85.5000 91.7500 -64.0 + 84.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 60.2500 92.5000 -64.0 + 59.5000 93.2500 -64.0 + 57.5000 94.2500 -64.0 + 52.5000 99.2500 -64.0 + 49.2500 104.5000 -64.0 + 42.2500 118.5000 -64.0 + 37.5000 127.2500 -64.0 + 35.2500 133.5000 -64.0 + 34.5000 135.2500 -64.0 + 31.2500 144.5000 -64.0 + 30.5000 146.2500 -64.0 + 30.2500 156.5000 -64.0 + 31.2500 158.5000 -64.0 + 31.2500 162.5000 -64.0 + 32.2500 164.5000 -64.0 + 32.2500 167.5000 -64.0 + 33.2500 169.5000 -64.0 + 33.2500 172.5000 -64.0 + 34.2500 174.5000 -64.0 + 34.2500 176.5000 -64.0 + 35.2500 178.5000 -64.0 + 35.2500 181.5000 -64.0 + 36.2500 183.5000 -64.0 + 36.2500 185.5000 -64.0 + 42.2500 197.5000 -64.0 + 48.2500 205.5000 -64.0 + 57.2500 216.5000 -64.0 + 58.2500 218.5000 -64.0 + 59.5000 218.7500 -64.0 + 61.2500 220.5000 -64.0 + 65.5000 223.7500 -64.0 + 74.5000 228.7500 -64.0 + 81.5000 229.7500 -64.0 + 83.2500 230.5000 -64.0 + 107.5000 230.7500 -64.0 + 109.5000 229.7500 -64.0 + 120.5000 229.7500 -64.0 + 122.5000 228.7500 -64.0 + 124.5000 228.7500 -64.0 + 135.5000 223.7500 -64.0 + 141.5000 218.7500 -64.0 + 143.5000 217.7500 -64.0 + 147.5000 212.7500 -64.0 + 153.7500 205.5000 -64.0 + 162.7500 193.5000 -64.0 + 163.7500 191.5000 -64.0 + 166.5000 187.7500 -64.0 + 169.7500 179.5000 -64.0 + 170.5000 177.7500 -64.0 + 174.7500 165.5000 -64.0 + 176.5000 161.7500 -64.0 + 176.7500 159.5000 -64.0 + 177.5000 157.7500 -64.0 + 177.7500 149.5000 -64.0 + 176.7500 147.5000 -64.0 + 176.7500 145.5000 -64.0 + 173.7500 139.5000 -64.0 + 169.7500 127.5000 -64.0 + 157.7500 101.5000 -64.0 + 154.7500 98.5000 -64.0 + 151.5000 98.2500 -64.0 + 147.5000 100.2500 -64.0 + 142.5000 100.2500 -64.0 + 137.5000 99.2500 -64.0 + 133.7500 97.5000 -64.0 + 131.5000 99.2500 -64.0 + 130.7500 98.5000 -64.0 + 123.5000 98.2500 -64.0 + 121.5000 100.2500 -64.0 + 121.2500 102.5000 -64.0 + 119.5000 104.2500 -64.0 + 117.5000 104.2500 -64.0 + 115.5000 105.2500 -64.0 + 116.5000 105.7500 -64.0 + 118.2500 106.5000 -64.0 + 119.2500 108.5000 -64.0 + 120.5000 108.7500 -64.0 + 122.5000 106.7500 -64.0 + 122.7500 102.5000 -64.0 + 127.5000 99.7500 -64.0 + 130.5000 99.7500 -64.0 + 133.5000 102.7500 -64.0 + 137.5000 104.7500 -64.0 + 141.2500 106.5000 -64.0 + 144.5000 106.7500 -64.0 + 146.5000 104.7500 -64.0 + 147.2500 105.5000 -64.0 + 148.2500 107.5000 -64.0 + 155.5000 113.7500 -64.0 + 157.5000 114.7500 -64.0 + 164.2500 122.5000 -64.0 + 167.2500 127.5000 -64.0 + 167.2500 129.5000 -64.0 + 168.2500 131.5000 -64.0 + 168.2500 133.5000 -64.0 + 169.2500 135.5000 -64.0 + 169.2500 141.5000 -64.0 + 168.2500 150.5000 -64.0 + 170.2500 154.5000 -64.0 + 170.2500 160.5000 -64.0 + 169.2500 167.5000 -64.0 + 162.2500 181.5000 -64.0 + 161.5000 183.2500 -64.0 + 154.2500 194.5000 -64.0 + 151.2500 200.5000 -64.0 + 144.5000 207.2500 -64.0 + 142.2500 208.5000 -64.0 + 135.5000 213.2500 -64.0 + 131.5000 216.2500 -64.0 + 119.5000 222.2500 -64.0 + 115.5000 222.2500 -64.0 + 113.5000 221.2500 -64.0 + 106.5000 220.2500 -64.0 + 101.5000 218.2500 -64.0 + 97.5000 222.2500 -64.0 + 95.5000 222.2500 -64.0 + 93.5000 223.2500 -64.0 + 88.5000 223.2500 -64.0 + 81.5000 222.2500 -64.0 + 75.5000 219.2500 -64.0 + 66.5000 214.2500 -64.0 + 64.5000 213.2500 -64.0 + 51.7500 200.5000 -64.0 + 48.7500 195.5000 -64.0 + 48.7500 193.5000 -64.0 + 43.7500 185.5000 -64.0 + 39.7500 177.5000 -64.0 + 39.7500 175.5000 -64.0 + 37.7500 171.5000 -64.0 + 37.7500 169.5000 -64.0 + 36.7500 167.5000 -64.0 + 36.7500 161.5000 -64.0 + 37.7500 159.5000 -64.0 + 35.7500 155.5000 -64.0 + 35.7500 145.5000 -64.0 + 36.5000 143.7500 -64.0 + 36.7500 136.5000 -64.0 + 40.7500 128.5000 -64.0 + 41.7500 123.5000 -64.0 + 43.7500 118.5000 -64.0 + 48.5000 113.7500 -64.0 + 50.5000 112.7500 -64.0 + 52.7500 110.5000 -64.0 + 51.7500 108.5000 -64.0 + 51.7500 106.5000 -64.0 + 50.7500 104.5000 -64.0 + 52.5000 102.7500 -64.0 + 54.5000 102.7500 -64.0 + 60.5000 97.7500 -64.0 + 64.2500 99.5000 -64.0 + 72.5000 99.7500 -64.0 + 76.5000 101.7500 -64.0 + 78.2500 102.5000 -64.0 + 82.5000 102.7500 -64.0 + 85.5000 101.7500 -64.0 + 88.2500 105.5000 -64.0 + 88.7500 104.5000 -64.0 + 86.7500 100.5000 -64.0 + 82.5000 99.2500 -64.0 + 80.5000 100.2500 -64.0 + 78.5000 100.2500 -64.0 + 73.7500 96.5000 -64.0 + 67.5000 96.2500 -64.0 + 66.7500 94.5000 -64.0 + 63.5000 93.2500 -64.0 + 61.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 119.5000 -64.0 + 88.5000 121.2500 -64.0 + 86.5000 121.2500 -64.0 + 82.5000 123.2500 -64.0 + 80.5000 122.2500 -64.0 + 79.2500 126.5000 -64.0 + 81.5000 126.7500 -64.0 + 88.7500 123.5000 -64.0 + 90.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 122.5000 -64.0 + 127.5000 125.2500 -64.0 + 126.5000 128.2500 -64.0 + 121.5000 126.2500 -64.0 + 121.2500 127.5000 -64.0 + 124.2500 130.5000 -64.0 + 129.5000 130.7500 -64.0 + 131.5000 129.7500 -64.0 + 136.5000 129.7500 -64.0 + 138.2500 130.5000 -64.0 + 137.5000 132.2500 -64.0 + 133.5000 134.2500 -64.0 + 131.5000 134.2500 -64.0 + 131.2500 137.5000 -64.0 + 134.2500 139.5000 -64.0 + 141.5000 139.7500 -64.0 + 149.2500 144.5000 -64.0 + 153.5000 144.7500 -64.0 + 153.7500 143.5000 -64.0 + 155.5000 142.7500 -64.0 + 156.7500 139.5000 -64.0 + 155.7500 137.5000 -64.0 + 153.5000 137.2500 -64.0 + 153.2500 138.5000 -64.0 + 151.5000 139.2500 -64.0 + 153.2500 142.5000 -64.0 + 152.5000 144.2500 -64.0 + 149.7500 140.5000 -64.0 + 146.7500 138.5000 -64.0 + 146.7500 132.5000 -64.0 + 142.7500 128.5000 -64.0 + 140.7500 124.5000 -64.0 + 140.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 123.5000 -64.0 + 150.2500 124.5000 -64.0 + 151.5000 124.7500 -64.0 + 153.2500 126.5000 -64.0 + 153.5000 130.7500 -64.0 + 155.5000 129.7500 -64.0 + 153.7500 128.5000 -64.0 + 154.5000 126.7500 -64.0 + 154.7500 124.5000 -64.0 + 152.7500 123.5000 -64.0 +} -64.0 +{ -64.0 + 67.7500 54.5000 -64.0 + 68.5000 53.7500 -64.0 + 70.5000 53.7500 -64.0 + 72.2500 54.5000 -64.0 + 68.5000 58.2500 -64.0 + 68.2500 60.5000 -64.0 + 66.5000 61.2500 -64.0 + 66.2500 62.5000 -64.0 + 65.5000 64.2500 -64.0 + 62.5000 64.2500 -64.0 + 60.7500 62.5000 -64.0 + 63.5000 60.7500 -64.0 + 63.7500 57.5000 -64.0 + 65.5000 55.7500 -64.0 +} -64.0 +{ -64.0 + 144.7500 56.5000 -64.0 + 145.5000 55.7500 -64.0 + 150.5000 57.7500 -64.0 + 154.2500 60.5000 -64.0 + 157.2500 65.5000 -64.0 + 156.5000 67.2500 -64.0 + 154.5000 66.2500 -64.0 + 153.7500 64.5000 -64.0 + 150.7500 62.5000 -64.0 + 149.7500 60.5000 -64.0 + 145.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 132.7500 99.5000 -64.0 + 133.5000 98.7500 -64.0 + 135.2500 99.5000 -64.0 + 134.5000 100.2500 -64.0 +} -64.0 +{ -64.0 + 150.7500 101.5000 -64.0 + 152.5000 100.7500 -64.0 + 153.2500 102.5000 -64.0 + 151.5000 103.2500 -64.0 +} -64.0 +{ -64.0 + 156.7500 109.5000 -64.0 + 157.5000 108.7500 -64.0 + 158.2500 109.5000 -64.0 + 157.5000 110.2500 -64.0 +} -64.0 +{ -64.0 + 132.7500 124.5000 -64.0 + 134.5000 123.7500 -64.0 + 136.2500 124.5000 -64.0 + 134.5000 126.2500 -64.0 + 135.2500 127.5000 -64.0 + 134.5000 128.2500 -64.0 + 132.5000 128.2500 -64.0 + 131.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 170.7500 144.5000 -64.0 + 171.5000 143.7500 -64.0 + 173.2500 144.5000 -64.0 + 173.2500 146.5000 -64.0 + 174.2500 148.5000 -64.0 + 174.2500 150.5000 -64.0 + 172.5000 151.2500 -64.0 + 170.7500 150.5000 -64.0 + 170.7500 148.5000 -64.0 + 169.7500 146.5000 -64.0 +} -64.0 +{ -64.0 + 172.7500 153.5000 -64.0 + 173.5000 152.7500 -64.0 + 174.2500 153.5000 -64.0 + 173.5000 154.2500 -64.0 +} -64.0 +v 392 z -114.000000 -64.0 +{ -64.0 + 95.2500 43.5000 -64.0 + 94.5000 45.2500 -64.0 + 88.5000 48.2500 -64.0 + 91.2500 50.5000 -64.0 + 92.5000 49.7500 -64.0 + 96.2500 50.5000 -64.0 + 97.2500 52.5000 -64.0 + 98.7500 52.5000 -64.0 + 95.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 44.5000 -64.0 + 121.2500 47.5000 -64.0 + 118.5000 53.2500 -64.0 + 118.2500 55.5000 -64.0 + 121.5000 53.7500 -64.0 + 120.7500 51.5000 -64.0 + 122.5000 49.7500 -64.0 + 125.5000 49.7500 -64.0 +} -64.0 +{ -64.0 + 78.2500 49.5000 -64.0 + 77.5000 50.2500 -64.0 + 71.5000 50.2500 -64.0 + 65.5000 52.2500 -64.0 + 61.5000 55.2500 -64.0 + 55.2500 63.5000 -64.0 + 46.5000 79.2500 -64.0 + 46.5000 82.7500 -64.0 + 53.5000 73.7500 -64.0 + 57.5000 67.7500 -64.0 + 61.5000 64.7500 -64.0 + 63.5000 64.7500 -64.0 + 67.2500 67.5000 -64.0 + 68.2500 69.5000 -64.0 + 70.2500 70.5000 -64.0 + 70.7500 69.5000 -64.0 + 67.7500 66.5000 -64.0 + 67.7500 60.5000 -64.0 + 64.5000 60.2500 -64.0 + 64.2500 62.5000 -64.0 + 62.5000 63.2500 -64.0 + 60.5000 64.2500 -64.0 + 58.7500 63.5000 -64.0 + 64.5000 56.7500 -64.0 + 68.5000 53.7500 -64.0 + 70.5000 53.7500 -64.0 + 71.2500 55.5000 -64.0 + 72.5000 55.7500 -64.0 + 72.7500 54.5000 -64.0 + 75.5000 51.7500 -64.0 + 77.5000 51.7500 -64.0 + 79.5000 50.7500 -64.0 + 83.5000 50.7500 -64.0 + 84.7500 49.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 52.5000 -64.0 + 136.2500 54.5000 -64.0 + 142.5000 55.7500 -64.0 + 148.5000 59.7500 -64.0 + 147.7500 58.5000 -64.0 + 148.5000 57.7500 -64.0 + 151.5000 58.7500 -64.0 + 157.2500 65.5000 -64.0 + 155.5000 66.2500 -64.0 + 151.7500 63.5000 -64.0 + 150.7500 61.5000 -64.0 + 149.2500 60.5000 -64.0 + 150.2500 62.5000 -64.0 + 149.5000 67.7500 -64.0 + 151.5000 66.7500 -64.0 + 154.5000 66.7500 -64.0 + 158.2500 70.5000 -64.0 + 164.2500 82.5000 -64.0 + 167.2500 85.5000 -64.0 + 167.2500 88.5000 -64.0 + 169.2500 92.5000 -64.0 + 169.2500 98.5000 -64.0 + 170.5000 98.7500 -64.0 + 170.7500 89.5000 -64.0 + 169.7500 87.5000 -64.0 + 169.7500 85.5000 -64.0 + 167.7500 81.5000 -64.0 + 167.7500 79.5000 -64.0 + 165.5000 76.2500 -64.0 + 160.7500 65.5000 -64.0 + 155.7500 58.5000 -64.0 + 150.5000 55.2500 -64.0 +} -64.0 +{ -64.0 + 107.2500 57.5000 -64.0 + 107.2500 65.5000 -64.0 + 108.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 70.2500 58.5000 -64.0 + 70.2500 59.5000 -64.0 + 71.5000 59.7500 -64.0 +} -64.0 +{ -64.0 + 93.2500 84.5000 -64.0 + 91.2500 87.5000 -64.0 + 94.5000 87.7500 -64.0 + 94.7500 84.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 85.5000 -64.0 + 72.2500 86.5000 -64.0 + 73.5000 86.7500 -64.0 + 73.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 87.5000 -64.0 + 118.5000 88.2500 -64.0 + 118.5000 90.7500 -64.0 + 120.5000 89.7500 -64.0 +} -64.0 +{ -64.0 + 81.2500 89.5000 -64.0 + 82.2500 90.5000 -64.0 + 85.5000 90.7500 -64.0 + 83.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 59.2500 94.5000 -64.0 + 57.5000 95.2500 -64.0 + 52.5000 100.2500 -64.0 + 48.5000 107.2500 -64.0 + 48.2500 109.5000 -64.0 + 39.2500 124.5000 -64.0 + 33.2500 139.5000 -64.0 + 30.5000 147.2500 -64.0 + 30.2500 155.5000 -64.0 + 32.2500 161.5000 -64.0 + 33.2500 169.5000 -64.0 + 35.2500 176.5000 -64.0 + 36.2500 183.5000 -64.0 + 39.2500 189.5000 -64.0 + 39.2500 191.5000 -64.0 + 59.2500 218.5000 -64.0 + 60.5000 218.7500 -64.0 + 66.5000 223.7500 -64.0 + 74.5000 227.7500 -64.0 + 81.2500 229.5000 -64.0 + 115.5000 229.7500 -64.0 + 117.5000 228.7500 -64.0 + 121.5000 228.7500 -64.0 + 123.5000 227.7500 -64.0 + 125.5000 227.7500 -64.0 + 133.5000 223.7500 -64.0 + 141.5000 218.7500 -64.0 + 155.7500 201.5000 -64.0 + 157.7500 197.5000 -64.0 + 159.5000 196.7500 -64.0 + 163.7500 190.5000 -64.0 + 169.7500 179.5000 -64.0 + 173.7500 165.5000 -64.0 + 176.7500 159.5000 -64.0 + 177.7500 150.5000 -64.0 + 176.7500 148.5000 -64.0 + 176.7500 146.5000 -64.0 + 170.7500 132.5000 -64.0 + 166.7500 120.5000 -64.0 + 158.7500 103.5000 -64.0 + 155.5000 100.2500 -64.0 + 153.5000 99.2500 -64.0 + 147.5000 102.2500 -64.0 + 135.2500 101.5000 -64.0 + 136.2500 103.5000 -64.0 + 135.5000 104.2500 -64.0 + 130.7500 101.5000 -64.0 + 127.5000 101.2500 -64.0 + 124.5000 102.2500 -64.0 + 120.5000 106.2500 -64.0 + 119.7500 105.5000 -64.0 + 114.5000 105.2500 -64.0 + 114.2500 106.5000 -64.0 + 115.5000 105.7500 -64.0 + 118.5000 106.7500 -64.0 + 121.5000 109.7500 -64.0 + 123.5000 110.7500 -64.0 + 124.7500 106.5000 -64.0 + 127.5000 104.7500 -64.0 + 137.5000 105.7500 -64.0 + 141.2500 108.5000 -64.0 + 143.5000 108.7500 -64.0 + 149.2500 111.5000 -64.0 + 149.2500 113.5000 -64.0 + 144.5000 118.2500 -64.0 + 144.2500 120.5000 -64.0 + 149.2500 125.5000 -64.0 + 151.5000 125.7500 -64.0 + 154.5000 124.7500 -64.0 + 154.7500 123.5000 -64.0 + 156.5000 122.7500 -64.0 + 158.2500 123.5000 -64.0 + 157.5000 124.2500 -64.0 + 157.2500 126.5000 -64.0 + 153.5000 129.2500 -64.0 + 153.2500 131.5000 -64.0 + 156.2500 133.5000 -64.0 + 156.2500 135.5000 -64.0 + 159.5000 132.7500 -64.0 + 157.7500 128.5000 -64.0 + 159.5000 126.7500 -64.0 + 158.7500 125.5000 -64.0 + 159.5000 121.7500 -64.0 + 161.2500 123.5000 -64.0 + 161.2500 125.5000 -64.0 + 163.5000 125.7500 -64.0 + 167.2500 132.5000 -64.0 + 167.2500 135.5000 -64.0 + 170.2500 137.5000 -64.0 + 167.5000 140.2500 -64.0 + 167.2500 145.5000 -64.0 + 165.5000 147.2500 -64.0 + 165.2500 149.5000 -64.0 + 169.2500 155.5000 -64.0 + 169.2500 162.5000 -64.0 + 167.2500 170.5000 -64.0 + 162.2500 178.5000 -64.0 + 161.2500 183.5000 -64.0 + 158.5000 186.2500 -64.0 + 148.2500 202.5000 -64.0 + 135.5000 213.2500 -64.0 + 129.2500 216.5000 -64.0 + 122.5000 221.2500 -64.0 + 119.5000 221.2500 -64.0 + 117.5000 222.2500 -64.0 + 112.5000 221.2500 -64.0 + 108.7500 219.5000 -64.0 + 105.5000 219.2500 -64.0 + 101.5000 217.2500 -64.0 + 101.2500 218.5000 -64.0 + 96.5000 222.2500 -64.0 + 83.5000 222.2500 -64.0 + 78.5000 220.2500 -64.0 + 65.5000 213.2500 -64.0 + 51.5000 199.2500 -64.0 + 47.7500 188.5000 -64.0 + 43.7500 184.5000 -64.0 + 39.7500 176.5000 -64.0 + 39.7500 174.5000 -64.0 + 37.7500 170.5000 -64.0 + 37.7500 157.5000 -64.0 + 36.7500 155.5000 -64.0 + 36.7500 143.5000 -64.0 + 37.7500 141.5000 -64.0 + 36.7500 139.5000 -64.0 + 38.7500 135.5000 -64.0 + 42.7500 121.5000 -64.0 + 47.5000 115.7500 -64.0 + 55.5000 109.7500 -64.0 + 53.7500 106.5000 -64.0 + 52.5000 107.2500 -64.0 + 50.7500 106.5000 -64.0 + 53.5000 102.7500 -64.0 + 54.2500 103.5000 -64.0 + 54.2500 105.5000 -64.0 + 58.7500 102.5000 -64.0 + 59.7500 100.5000 -64.0 + 61.5000 99.7500 -64.0 + 63.2500 100.5000 -64.0 + 71.5000 100.7500 -64.0 + 73.2500 102.5000 -64.0 + 75.5000 102.7500 -64.0 + 74.7500 100.5000 -64.0 + 67.7500 98.5000 -64.0 + 68.5000 96.7500 -64.0 + 67.7500 95.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 94.5000 -64.0 + 96.5000 95.2500 -64.0 + 97.2500 96.5000 -64.0 + 98.7500 96.5000 -64.0 + 99.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 95.5000 -64.0 + 111.5000 97.7500 -64.0 + 113.5000 96.7500 -64.0 + 111.7500 95.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 101.5000 -64.0 + 79.5000 103.2500 -64.0 + 76.2500 103.5000 -64.0 + 78.5000 106.7500 -64.0 + 82.5000 104.7500 -64.0 + 84.5000 104.7500 -64.0 + 88.2500 107.5000 -64.0 + 88.7500 106.5000 -64.0 + 83.7500 101.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 117.5000 -64.0 + 132.2500 118.5000 -64.0 + 133.5000 119.7500 -64.0 + 133.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 120.5000 -64.0 + 88.5000 122.2500 -64.0 + 83.5000 125.2500 -64.0 + 77.5000 125.2500 -64.0 + 75.7500 124.5000 -64.0 + 76.5000 123.7500 -64.0 + 75.5000 123.2500 -64.0 + 75.2500 124.5000 -64.0 + 68.2500 128.5000 -64.0 + 69.2500 130.5000 -64.0 + 77.2500 132.5000 -64.0 + 79.5000 131.7500 -64.0 + 79.7500 130.5000 -64.0 + 82.5000 127.7500 -64.0 + 88.5000 124.7500 -64.0 + 91.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 120.5000 -64.0 + 142.2500 121.5000 -64.0 + 142.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 122.5000 -64.0 + 119.2500 125.5000 -64.0 + 120.7500 125.5000 -64.0 + 119.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 122.5000 -64.0 + 132.5000 123.2500 -64.0 + 130.5000 123.2500 -64.0 + 124.5000 128.2500 -64.0 + 122.5000 127.2500 -64.0 + 122.2500 128.5000 -64.0 + 123.5000 129.7500 -64.0 + 125.5000 130.7500 -64.0 + 127.2500 131.5000 -64.0 + 130.5000 131.7500 -64.0 + 132.2500 132.5000 -64.0 + 132.2500 137.5000 -64.0 + 133.5000 138.7500 -64.0 + 139.5000 141.7500 -64.0 + 141.2500 142.5000 -64.0 + 142.5000 141.7500 -64.0 + 144.5000 141.7500 -64.0 + 152.2500 147.5000 -64.0 + 160.5000 147.7500 -64.0 + 160.7500 145.5000 -64.0 + 157.7500 142.5000 -64.0 + 155.5000 142.2500 -64.0 + 155.2500 143.5000 -64.0 + 154.5000 145.2500 -64.0 + 153.7500 144.5000 -64.0 + 152.7500 142.5000 -64.0 + 147.7500 139.5000 -64.0 + 147.7500 135.5000 -64.0 + 148.5000 133.7500 -64.0 + 147.5000 132.2500 -64.0 + 145.5000 131.2500 -64.0 + 143.7500 130.5000 -64.0 + 141.7500 126.5000 -64.0 + 140.5000 124.2500 -64.0 + 138.5000 123.2500 -64.0 + 136.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 147.2500 127.5000 -64.0 + 148.2500 129.5000 -64.0 + 148.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 61.2500 130.5000 -64.0 + 60.2500 133.5000 -64.0 + 61.2500 135.5000 -64.0 + 64.5000 135.7500 -64.0 + 66.5000 132.7500 -64.0 + 65.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 150.7500 103.5000 -64.0 + 151.5000 102.7500 -64.0 + 153.5000 102.7500 -64.0 + 155.2500 103.5000 -64.0 + 155.2500 106.5000 -64.0 + 153.5000 108.2500 -64.0 + 151.5000 109.2500 -64.0 + 149.7500 107.5000 -64.0 + 150.5000 105.7500 -64.0 +} -64.0 +{ -64.0 + 154.7500 108.5000 -64.0 + 155.5000 107.7500 -64.0 + 157.2500 108.5000 -64.0 + 158.2500 110.5000 -64.0 + 157.5000 112.2500 -64.0 + 155.5000 112.2500 -64.0 + 153.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 131.7500 125.5000 -64.0 + 133.5000 124.7500 -64.0 + 134.2500 126.5000 -64.0 + 133.5000 128.2500 -64.0 + 131.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 136.7500 126.5000 -64.0 + 137.5000 125.7500 -64.0 + 139.2500 126.5000 -64.0 + 138.5000 128.2500 -64.0 + 138.2500 130.5000 -64.0 + 136.5000 131.2500 -64.0 + 134.7500 130.5000 -64.0 + 136.5000 128.7500 -64.0 +} -64.0 +{ -64.0 + 139.7500 130.5000 -64.0 + 141.5000 129.7500 -64.0 + 143.2500 131.5000 -64.0 + 140.5000 135.2500 -64.0 + 139.7500 134.5000 -64.0 +} -64.0 +{ -64.0 + 168.7500 140.5000 -64.0 + 169.5000 139.7500 -64.0 + 170.2500 140.5000 -64.0 + 169.5000 142.2500 -64.0 +} -64.0 +{ -64.0 + 146.7500 141.5000 -64.0 + 147.5000 140.7500 -64.0 + 150.2500 142.5000 -64.0 + 148.5000 143.2500 -64.0 +} -64.0 +{ -64.0 + 168.7500 144.5000 -64.0 + 170.5000 143.7500 -64.0 + 172.2500 144.5000 -64.0 + 174.2500 148.5000 -64.0 + 173.5000 150.2500 -64.0 + 174.2500 151.5000 -64.0 + 174.2500 154.5000 -64.0 + 172.5000 155.2500 -64.0 + 169.7500 152.5000 -64.0 +} -64.0 +v 440 z -116.000000 -64.0 +{ -64.0 + 96.2500 42.5000 -64.0 + 94.5000 45.2500 -64.0 + 90.5000 48.2500 -64.0 + 92.2500 49.5000 -64.0 + 97.5000 49.7500 -64.0 + 96.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 43.5000 -64.0 + 120.2500 49.5000 -64.0 + 121.2500 51.5000 -64.0 + 122.5000 49.7500 -64.0 + 125.5000 49.7500 -64.0 + 121.7500 45.5000 -64.0 + 121.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 51.5000 -64.0 + 71.5000 52.2500 -64.0 + 66.5000 52.2500 -64.0 + 62.5000 55.2500 -64.0 + 60.5000 56.2500 -64.0 + 55.2500 62.5000 -64.0 + 44.2500 82.5000 -64.0 + 43.2500 87.5000 -64.0 + 43.7500 88.5000 -64.0 + 47.7500 80.5000 -64.0 + 52.7500 74.5000 -64.0 + 53.7500 72.5000 -64.0 + 58.5000 66.7500 -64.0 + 62.5000 63.7500 -64.0 + 65.5000 64.7500 -64.0 + 68.2500 67.5000 -64.0 + 69.2500 69.5000 -64.0 + 70.5000 69.7500 -64.0 + 68.7500 66.5000 -64.0 + 68.7500 61.5000 -64.0 + 67.5000 58.2500 -64.0 + 61.5000 63.2500 -64.0 + 59.7500 62.5000 -64.0 + 59.7500 60.5000 -64.0 + 64.5000 56.7500 -64.0 + 68.5000 54.7500 -64.0 + 70.2500 55.5000 -64.0 + 72.5000 53.7500 -64.0 + 74.5000 52.7500 -64.0 + 77.7500 53.5000 -64.0 + 78.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 54.5000 -64.0 + 139.5000 54.7500 -64.0 + 141.5000 56.7500 -64.0 + 143.5000 55.7500 -64.0 + 145.5000 56.7500 -64.0 + 148.2500 59.5000 -64.0 + 149.5000 57.7500 -64.0 + 152.5000 59.7500 -64.0 + 157.2500 64.5000 -64.0 + 156.5000 66.2500 -64.0 + 151.5000 62.2500 -64.0 + 150.2500 66.5000 -64.0 + 156.5000 67.7500 -64.0 + 159.2500 70.5000 -64.0 + 167.2500 88.5000 -64.0 + 167.2500 90.5000 -64.0 + 168.2500 92.5000 -64.0 + 168.2500 99.5000 -64.0 + 166.5000 103.2500 -64.0 + 166.2500 108.5000 -64.0 + 164.5000 110.2500 -64.0 + 159.7500 105.5000 -64.0 + 158.7500 103.5000 -64.0 + 154.5000 100.2500 -64.0 + 145.5000 105.2500 -64.0 + 143.5000 105.2500 -64.0 + 141.5000 106.2500 -64.0 + 138.5000 105.2500 -64.0 + 133.5000 100.2500 -64.0 + 127.5000 104.2500 -64.0 + 124.5000 104.2500 -64.0 + 124.2500 107.5000 -64.0 + 122.5000 108.2500 -64.0 + 119.5000 105.2500 -64.0 + 117.5000 104.2500 -64.0 + 116.2500 107.5000 -64.0 + 121.5000 108.7500 -64.0 + 125.5000 112.7500 -64.0 + 127.5000 113.7500 -64.0 + 128.5000 111.7500 -64.0 + 126.7500 108.5000 -64.0 + 126.7500 106.5000 -64.0 + 128.5000 105.7500 -64.0 + 130.2500 106.5000 -64.0 + 133.2500 110.5000 -64.0 + 132.5000 111.2500 -64.0 + 132.2500 113.5000 -64.0 + 133.5000 113.7500 -64.0 + 136.5000 108.7500 -64.0 + 138.2500 109.5000 -64.0 + 137.2500 111.5000 -64.0 + 138.2500 113.5000 -64.0 + 138.2500 115.5000 -64.0 + 141.2500 116.5000 -64.0 + 140.5000 117.2500 -64.0 + 137.5000 117.2500 -64.0 + 135.7500 115.5000 -64.0 + 135.2500 116.5000 -64.0 + 142.2500 122.5000 -64.0 + 152.5000 125.7500 -64.0 + 156.5000 121.7500 -64.0 + 158.2500 124.5000 -64.0 + 157.5000 125.2500 -64.0 + 155.5000 124.2500 -64.0 + 154.2500 130.5000 -64.0 + 152.5000 131.2500 -64.0 + 150.7500 129.5000 -64.0 + 149.5000 132.2500 -64.0 + 143.5000 132.2500 -64.0 + 141.7500 129.5000 -64.0 + 141.7500 127.5000 -64.0 + 136.7500 122.5000 -64.0 + 134.5000 124.2500 -64.0 + 130.5000 124.2500 -64.0 + 129.5000 126.2500 -64.0 + 127.5000 127.2500 -64.0 + 125.7500 125.5000 -64.0 + 124.2500 125.5000 -64.0 + 125.2500 127.5000 -64.0 + 124.5000 128.2500 -64.0 + 120.7500 125.5000 -64.0 + 120.7500 123.5000 -64.0 + 119.5000 123.2500 -64.0 + 119.2500 125.5000 -64.0 + 122.2500 128.5000 -64.0 + 128.5000 132.7500 -64.0 + 134.2500 139.5000 -64.0 + 138.5000 140.7500 -64.0 + 142.2500 144.5000 -64.0 + 145.5000 144.7500 -64.0 + 153.2500 148.5000 -64.0 + 159.5000 148.7500 -64.0 + 162.5000 149.7500 -64.0 + 168.2500 156.5000 -64.0 + 168.2500 162.5000 -64.0 + 167.2500 167.5000 -64.0 + 164.2500 173.5000 -64.0 + 161.5000 177.2500 -64.0 + 160.2500 183.5000 -64.0 + 156.5000 187.2500 -64.0 + 150.2500 198.5000 -64.0 + 143.5000 206.2500 -64.0 + 131.5000 215.2500 -64.0 + 120.5000 221.2500 -64.0 + 112.5000 221.2500 -64.0 + 108.7500 218.5000 -64.0 + 104.5000 218.2500 -64.0 + 102.7500 216.5000 -64.0 + 99.5000 219.2500 -64.0 + 93.5000 222.2500 -64.0 + 82.5000 221.2500 -64.0 + 74.7500 217.5000 -64.0 + 64.5000 211.2500 -64.0 + 58.7500 205.5000 -64.0 + 57.5000 203.2500 -64.0 + 53.7500 200.5000 -64.0 + 50.7500 196.5000 -64.0 + 50.7500 193.5000 -64.0 + 48.7500 187.5000 -64.0 + 43.7500 183.5000 -64.0 + 37.7500 169.5000 -64.0 + 38.7500 157.5000 -64.0 + 37.7500 155.5000 -64.0 + 37.7500 146.5000 -64.0 + 38.7500 143.5000 -64.0 + 37.5000 143.2500 -64.0 + 36.7500 141.5000 -64.0 + 39.5000 139.7500 -64.0 + 40.7500 129.5000 -64.0 + 43.7500 122.5000 -64.0 + 47.5000 118.7500 -64.0 + 49.5000 117.7500 -64.0 + 49.7500 116.5000 -64.0 + 56.5000 110.7500 -64.0 + 56.7500 107.5000 -64.0 + 61.5000 101.7500 -64.0 + 63.5000 102.7500 -64.0 + 68.2500 107.5000 -64.0 + 70.5000 107.7500 -64.0 + 72.5000 105.7500 -64.0 + 77.5000 108.7500 -64.0 + 81.5000 105.7500 -64.0 + 83.5000 105.7500 -64.0 + 84.2500 107.5000 -64.0 + 86.5000 109.7500 -64.0 + 91.7500 107.5000 -64.0 + 89.5000 107.2500 -64.0 + 81.7500 102.5000 -64.0 + 79.2500 104.5000 -64.0 + 78.2500 106.5000 -64.0 + 76.5000 107.2500 -64.0 + 75.7500 105.5000 -64.0 + 74.5000 105.2500 -64.0 + 71.7500 101.5000 -64.0 + 72.5000 100.2500 -64.0 + 69.5000 101.2500 -64.0 + 68.7500 99.5000 -64.0 + 67.5000 99.2500 -64.0 + 67.2500 100.5000 -64.0 + 65.5000 101.2500 -64.0 + 64.7500 99.5000 -64.0 + 66.5000 98.7500 -64.0 + 66.7500 97.5000 -64.0 + 58.5000 96.2500 -64.0 + 55.2500 97.5000 -64.0 + 41.2500 120.5000 -64.0 + 32.2500 142.5000 -64.0 + 30.2500 152.5000 -64.0 + 31.2500 154.5000 -64.0 + 31.2500 158.5000 -64.0 + 33.2500 162.5000 -64.0 + 33.2500 166.5000 -64.0 + 35.2500 173.5000 -64.0 + 36.2500 180.5000 -64.0 + 41.2500 193.5000 -64.0 + 44.2500 196.5000 -64.0 + 50.5000 205.7500 -64.0 + 58.2500 215.5000 -64.0 + 65.5000 221.7500 -64.0 + 74.5000 226.7500 -64.0 + 81.2500 228.5000 -64.0 + 116.5000 228.7500 -64.0 + 118.5000 227.7500 -64.0 + 122.5000 227.7500 -64.0 + 132.5000 223.7500 -64.0 + 142.5000 216.7500 -64.0 + 154.7500 201.5000 -64.0 + 156.7500 197.5000 -64.0 + 160.7500 193.5000 -64.0 + 168.7500 180.5000 -64.0 + 172.7500 166.5000 -64.0 + 175.5000 160.7500 -64.0 + 176.5000 156.7500 -64.0 + 176.7500 146.5000 -64.0 + 169.7500 132.5000 -64.0 + 169.7500 130.5000 -64.0 + 167.7500 126.5000 -64.0 + 167.7500 124.5000 -64.0 + 166.7500 122.5000 -64.0 + 166.7500 118.5000 -64.0 + 170.5000 104.7500 -64.0 + 170.7500 90.5000 -64.0 + 169.7500 88.5000 -64.0 + 169.7500 86.5000 -64.0 + 167.7500 82.5000 -64.0 + 167.7500 80.5000 -64.0 + 164.7500 74.5000 -64.0 + 162.7500 68.5000 -64.0 + 157.7500 60.5000 -64.0 + 151.7500 56.5000 -64.0 + 148.5000 56.2500 -64.0 + 143.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 58.5000 -64.0 + 107.5000 64.7500 -64.0 + 107.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 145.2500 71.5000 -64.0 + 144.2500 73.5000 -64.0 + 145.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 85.5000 -64.0 + 91.2500 87.5000 -64.0 + 93.5000 87.7500 -64.0 +} -64.0 +{ -64.0 + 119.2500 88.5000 -64.0 + 118.5000 90.2500 -64.0 + 116.5000 91.2500 -64.0 + 115.2500 97.5000 -64.0 + 116.5000 96.7500 -64.0 + 117.7500 92.5000 -64.0 + 119.7500 91.5000 -64.0 + 120.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 89.5000 -64.0 + 83.2500 90.5000 -64.0 + 85.5000 90.7500 -64.0 + 85.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 91.5000 -64.0 + 104.2500 93.5000 -64.0 + 101.5000 96.2500 -64.0 + 98.5000 96.2500 -64.0 + 99.2500 97.5000 -64.0 + 101.5000 96.7500 -64.0 + 102.2500 98.5000 -64.0 + 103.5000 97.7500 -64.0 + 103.7500 95.5000 -64.0 + 105.5000 94.7500 -64.0 + 111.2500 101.5000 -64.0 + 112.7500 101.5000 -64.0 + 111.7500 99.5000 -64.0 + 111.7500 97.5000 -64.0 + 109.7500 96.5000 -64.0 + 108.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 97.5000 -64.0 + 96.5000 98.7500 -64.0 + 100.5000 100.7500 -64.0 + 101.7500 99.5000 -64.0 + 98.5000 99.2500 -64.0 +} -64.0 +{ -64.0 + 90.2500 120.5000 -64.0 + 90.2500 121.5000 -64.0 + 84.5000 126.2500 -64.0 + 82.5000 126.2500 -64.0 + 78.7500 124.5000 -64.0 + 79.5000 123.7500 -64.0 + 81.5000 123.7500 -64.0 + 81.5000 122.2500 -64.0 + 79.5000 123.2500 -64.0 + 75.7500 121.5000 -64.0 + 73.5000 121.2500 -64.0 + 68.5000 123.2500 -64.0 + 65.5000 127.2500 -64.0 + 62.5000 127.2500 -64.0 + 60.5000 129.2500 -64.0 + 60.2500 131.5000 -64.0 + 63.2500 137.5000 -64.0 + 61.5000 138.2500 -64.0 + 62.5000 138.7500 -64.0 + 64.5000 137.7500 -64.0 + 66.5000 137.7500 -64.0 + 70.5000 135.7500 -64.0 + 72.5000 135.7500 -64.0 + 75.5000 136.7500 -64.0 + 77.7500 134.5000 -64.0 + 78.7500 132.5000 -64.0 + 79.5000 130.7500 -64.0 + 78.7500 129.5000 -64.0 + 80.5000 127.7500 -64.0 + 85.5000 127.7500 -64.0 + 87.5000 125.7500 -64.0 + 89.5000 124.7500 -64.0 + 91.5000 121.7500 -64.0 +} -64.0 +{ -64.0 + 60.2500 122.5000 -64.0 + 60.2500 123.5000 -64.0 + 61.5000 123.7500 -64.0 +} -64.0 +{ -64.0 + 55.2500 126.5000 -64.0 + 53.5000 129.2500 -64.0 + 54.2500 130.5000 -64.0 + 55.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 58.2500 136.5000 -64.0 + 59.2500 137.5000 -64.0 + 59.7500 136.5000 -64.0 +} -64.0 +{ -64.0 + 65.7500 61.5000 -64.0 + 66.5000 60.7500 -64.0 + 67.2500 61.5000 -64.0 + 66.5000 62.2500 -64.0 +} -64.0 +{ -64.0 + 59.5000 97.7500 -64.0 + 60.2500 98.5000 -64.0 + 58.5000 100.2500 -64.0 + 57.7500 99.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 103.5000 -64.0 + 154.5000 102.7500 -64.0 + 156.2500 104.5000 -64.0 + 155.5000 108.2500 -64.0 + 158.2500 109.5000 -64.0 + 151.5000 113.2500 -64.0 + 149.7500 112.5000 -64.0 + 147.7500 108.5000 -64.0 + 150.5000 104.7500 -64.0 +} -64.0 +{ -64.0 + 52.7500 104.5000 -64.0 + 53.5000 103.7500 -64.0 + 55.2500 104.5000 -64.0 + 54.5000 105.2500 -64.0 + 55.2500 106.5000 -64.0 + 55.2500 108.5000 -64.0 + 53.5000 110.2500 -64.0 + 51.7500 109.5000 -64.0 + 52.5000 107.7500 -64.0 +} -64.0 +{ -64.0 + 140.7500 107.5000 -64.0 + 141.5000 106.7500 -64.0 + 143.2500 107.5000 -64.0 + 141.5000 109.2500 -64.0 +} -64.0 +{ -64.0 + 152.7500 113.5000 -64.0 + 153.5000 112.7500 -64.0 + 158.5000 112.7500 -64.0 + 160.2500 113.5000 -64.0 + 161.2500 115.5000 -64.0 + 160.5000 117.2500 -64.0 + 154.5000 120.2500 -64.0 + 152.5000 120.2500 -64.0 + 148.5000 123.2500 -64.0 + 146.7500 122.5000 -64.0 + 147.7500 117.5000 -64.0 + 148.5000 115.7500 -64.0 +} -64.0 +{ -64.0 + 132.7500 127.5000 -64.0 + 133.5000 126.7500 -64.0 + 135.2500 128.5000 -64.0 + 134.5000 129.2500 -64.0 +} -64.0 +{ -64.0 + 163.7500 130.5000 -64.0 + 165.5000 129.7500 -64.0 + 167.2500 131.5000 -64.0 + 167.2500 133.5000 -64.0 + 170.2500 137.5000 -64.0 + 167.5000 140.2500 -64.0 + 165.5000 140.2500 -64.0 + 165.2500 141.5000 -64.0 + 167.2500 142.5000 -64.0 + 168.5000 144.7500 -64.0 + 168.7500 142.5000 -64.0 + 170.5000 140.7500 -64.0 + 173.2500 143.5000 -64.0 + 172.2500 145.5000 -64.0 + 173.2500 147.5000 -64.0 + 171.5000 152.2500 -64.0 + 169.5000 152.2500 -64.0 + 165.7500 149.5000 -64.0 + 167.5000 147.7500 -64.0 + 167.7500 145.5000 -64.0 + 165.5000 146.2500 -64.0 + 163.7500 145.5000 -64.0 + 161.5000 146.2500 -64.0 + 161.2500 147.5000 -64.0 + 159.5000 148.2500 -64.0 + 157.7500 146.5000 -64.0 + 158.5000 145.7500 -64.0 + 160.5000 145.7500 -64.0 + 159.7500 144.5000 -64.0 + 154.5000 144.2500 -64.0 + 147.7500 138.5000 -64.0 + 147.7500 136.5000 -64.0 + 150.7500 132.5000 -64.0 + 152.5000 131.7500 -64.0 + 156.2500 134.5000 -64.0 + 155.5000 136.2500 -64.0 + 158.2500 139.5000 -64.0 + 160.2500 143.5000 -64.0 + 161.7500 142.5000 -64.0 + 160.7500 140.5000 -64.0 + 161.7500 137.5000 -64.0 + 158.7500 134.5000 -64.0 + 159.5000 132.7500 -64.0 + 161.5000 132.7500 -64.0 +} -64.0 +{ -64.0 + 136.7500 131.5000 -64.0 + 137.5000 130.7500 -64.0 + 138.2500 131.5000 -64.0 + 137.5000 132.2500 -64.0 +} -64.0 +{ -64.0 + 169.7500 154.5000 -64.0 + 171.5000 153.7500 -64.0 + 173.2500 155.5000 -64.0 + 171.5000 157.2500 -64.0 + 169.7500 156.5000 -64.0 +} -64.0 +v 505 z -118.000000 -64.0 +{ -64.0 + 96.2500 43.5000 -64.0 + 91.5000 48.2500 -64.0 + 92.2500 49.5000 -64.0 + 94.5000 49.7500 -64.0 + 96.7500 47.5000 -64.0 + 95.7500 45.5000 -64.0 + 96.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 46.5000 -64.0 + 122.2500 50.5000 -64.0 + 123.7500 50.5000 -64.0 + 124.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 52.5000 -64.0 + 68.5000 54.2500 -64.0 + 66.5000 53.2500 -64.0 + 58.5000 57.2500 -64.0 + 54.2500 63.5000 -64.0 + 43.5000 84.2500 -64.0 + 42.5000 88.2500 -64.0 + 42.2500 96.5000 -64.0 + 42.7500 97.5000 -64.0 + 46.7500 83.5000 -64.0 + 57.5000 66.7500 -64.0 + 61.5000 63.7500 -64.0 + 64.5000 63.7500 -64.0 + 68.7500 66.5000 -64.0 + 67.7500 63.5000 -64.0 + 64.7500 60.5000 -64.0 + 59.5000 63.2500 -64.0 + 58.7500 62.5000 -64.0 + 59.5000 61.7500 -64.0 + 59.7500 59.5000 -64.0 + 65.5000 55.7500 -64.0 + 69.2500 56.5000 -64.0 + 73.5000 52.7500 -64.0 + 77.7500 52.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 55.5000 -64.0 + 140.5000 56.2500 -64.0 + 137.5000 56.2500 -64.0 + 138.2500 58.5000 -64.0 + 139.5000 58.7500 -64.0 + 141.5000 56.7500 -64.0 + 145.5000 56.7500 -64.0 + 150.2500 60.5000 -64.0 + 151.5000 58.7500 -64.0 + 156.2500 62.5000 -64.0 + 154.5000 63.2500 -64.0 + 152.7500 62.5000 -64.0 + 151.2500 64.5000 -64.0 + 150.2500 66.5000 -64.0 + 155.5000 66.7500 -64.0 + 159.2500 70.5000 -64.0 + 163.2500 78.5000 -64.0 + 163.2500 80.5000 -64.0 + 165.2500 84.5000 -64.0 + 165.2500 86.5000 -64.0 + 168.2500 92.5000 -64.0 + 169.5000 90.7500 -64.0 + 169.7500 88.5000 -64.0 + 168.7500 86.5000 -64.0 + 168.7500 84.5000 -64.0 + 167.7500 82.5000 -64.0 + 167.7500 80.5000 -64.0 + 163.7500 72.5000 -64.0 + 163.7500 70.5000 -64.0 + 161.7500 65.5000 -64.0 + 156.5000 59.2500 -64.0 + 152.5000 57.2500 -64.0 + 150.7500 56.5000 -64.0 + 146.5000 56.2500 -64.0 + 144.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 57.5000 -64.0 + 67.2500 58.5000 -64.0 + 68.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 145.2500 70.5000 -64.0 + 144.2500 72.5000 -64.0 + 145.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 89.5000 -64.0 + 127.2500 90.5000 -64.0 + 129.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 90.5000 -64.0 + 95.2500 91.5000 -64.0 + 95.5000 93.7500 -64.0 + 95.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 91.5000 -64.0 + 102.5000 95.2500 -64.0 + 102.2500 97.5000 -64.0 + 100.5000 99.2500 -64.0 + 98.2500 99.5000 -64.0 + 99.2500 102.5000 -64.0 + 104.5000 98.7500 -64.0 + 107.2500 100.5000 -64.0 + 108.2500 102.5000 -64.0 + 109.5000 102.7500 -64.0 + 109.7500 98.5000 -64.0 + 107.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 92.5000 -64.0 + 117.5000 93.2500 -64.0 + 117.5000 95.7500 -64.0 + 119.5000 94.7500 -64.0 +} -64.0 +{ -64.0 + 168.2500 94.5000 -64.0 + 168.2500 95.5000 -64.0 + 167.2500 98.5000 -64.0 + 164.2500 102.5000 -64.0 + 163.2500 104.5000 -64.0 + 161.5000 105.2500 -64.0 + 157.7500 101.5000 -64.0 + 154.5000 101.2500 -64.0 + 152.5000 103.2500 -64.0 + 147.5000 106.2500 -64.0 + 145.5000 106.2500 -64.0 + 143.5000 107.2500 -64.0 + 141.5000 107.2500 -64.0 + 134.5000 106.2500 -64.0 + 132.2500 109.5000 -64.0 + 131.2500 111.5000 -64.0 + 133.2500 112.5000 -64.0 + 133.2500 115.5000 -64.0 + 137.2500 119.5000 -64.0 + 142.2500 122.5000 -64.0 + 144.5000 122.7500 -64.0 + 146.5000 123.7500 -64.0 + 151.5000 124.7500 -64.0 + 156.5000 126.7500 -64.0 + 158.2500 130.5000 -64.0 + 156.5000 132.2500 -64.0 + 153.5000 132.2500 -64.0 + 149.7500 130.5000 -64.0 + 147.5000 131.2500 -64.0 + 147.2500 132.5000 -64.0 + 145.5000 133.2500 -64.0 + 143.5000 134.2500 -64.0 + 141.7500 132.5000 -64.0 + 141.7500 128.5000 -64.0 + 138.7500 125.5000 -64.0 + 138.7500 123.5000 -64.0 + 137.5000 124.2500 -64.0 + 135.5000 125.2500 -64.0 + 130.5000 124.2500 -64.0 + 132.2500 126.5000 -64.0 + 131.5000 127.2500 -64.0 + 129.5000 127.2500 -64.0 + 129.2500 128.5000 -64.0 + 128.5000 130.2500 -64.0 + 124.7500 128.5000 -64.0 + 123.7500 126.5000 -64.0 + 120.5000 125.2500 -64.0 + 120.2500 126.5000 -64.0 + 131.2500 136.5000 -64.0 + 136.2500 139.5000 -64.0 + 138.5000 139.7500 -64.0 + 141.2500 142.5000 -64.0 + 151.2500 148.5000 -64.0 + 157.5000 149.7500 -64.0 + 163.2500 152.5000 -64.0 + 164.2500 154.5000 -64.0 + 165.7500 155.5000 -64.0 + 164.7500 153.5000 -64.0 + 165.5000 151.7500 -64.0 + 167.5000 150.7500 -64.0 + 165.7500 149.5000 -64.0 + 164.7500 147.5000 -64.0 + 163.5000 147.2500 -64.0 + 164.2500 148.5000 -64.0 + 163.5000 149.2500 -64.0 + 160.5000 149.2500 -64.0 + 158.7500 147.5000 -64.0 + 157.5000 145.2500 -64.0 + 151.5000 142.2500 -64.0 + 148.7500 138.5000 -64.0 + 148.7500 136.5000 -64.0 + 150.5000 135.7500 -64.0 + 150.7500 134.5000 -64.0 + 152.5000 132.7500 -64.0 + 156.2500 135.5000 -64.0 + 156.2500 137.5000 -64.0 + 158.2500 138.5000 -64.0 + 160.2500 142.5000 -64.0 + 163.5000 142.7500 -64.0 + 160.7500 140.5000 -64.0 + 160.7500 138.5000 -64.0 + 157.7500 134.5000 -64.0 + 159.5000 132.7500 -64.0 + 161.5000 132.7500 -64.0 + 164.2500 135.5000 -64.0 + 166.5000 133.7500 -64.0 + 170.2500 137.5000 -64.0 + 169.2500 138.5000 -64.0 + 168.2500 140.5000 -64.0 + 167.5000 142.2500 -64.0 + 165.5000 142.2500 -64.0 + 167.2500 144.5000 -64.0 + 166.5000 145.7500 -64.0 + 168.5000 144.7500 -64.0 + 169.5000 145.7500 -64.0 + 171.5000 146.7500 -64.0 + 173.2500 150.5000 -64.0 + 172.5000 152.2500 -64.0 + 172.2500 155.5000 -64.0 + 171.5000 157.2500 -64.0 + 166.5000 157.2500 -64.0 + 166.2500 162.5000 -64.0 + 165.2500 169.5000 -64.0 + 163.2500 173.5000 -64.0 + 160.5000 177.2500 -64.0 + 160.2500 179.5000 -64.0 + 159.2500 182.5000 -64.0 + 154.2500 188.5000 -64.0 + 150.2500 196.5000 -64.0 + 143.2500 205.5000 -64.0 + 133.5000 213.2500 -64.0 + 131.2500 214.5000 -64.0 + 124.5000 219.2500 -64.0 + 121.5000 219.2500 -64.0 + 117.5000 221.2500 -64.0 + 114.5000 221.2500 -64.0 + 108.7500 218.5000 -64.0 + 106.5000 218.2500 -64.0 + 102.7500 215.5000 -64.0 + 98.5000 219.2500 -64.0 + 94.5000 221.2500 -64.0 + 84.5000 221.2500 -64.0 + 81.5000 220.2500 -64.0 + 77.7500 218.5000 -64.0 + 65.5000 210.2500 -64.0 + 63.5000 209.2500 -64.0 + 54.7500 199.5000 -64.0 + 51.7500 195.5000 -64.0 + 51.7500 193.5000 -64.0 + 50.7500 191.5000 -64.0 + 50.7500 188.5000 -64.0 + 44.7500 182.5000 -64.0 + 41.7500 178.5000 -64.0 + 41.7500 176.5000 -64.0 + 39.7500 172.5000 -64.0 + 39.7500 170.5000 -64.0 + 38.7500 168.5000 -64.0 + 38.7500 165.5000 -64.0 + 39.5000 163.7500 -64.0 + 39.7500 158.5000 -64.0 + 38.7500 156.5000 -64.0 + 38.7500 148.5000 -64.0 + 40.5000 144.2500 -64.0 + 38.5000 143.2500 -64.0 + 36.7500 142.5000 -64.0 + 36.7500 140.5000 -64.0 + 38.5000 139.7500 -64.0 + 42.5000 141.7500 -64.0 + 42.7500 139.5000 -64.0 + 40.7500 135.5000 -64.0 + 40.7500 133.5000 -64.0 + 42.7500 127.5000 -64.0 + 44.5000 123.7500 -64.0 + 43.7500 121.5000 -64.0 + 45.5000 119.7500 -64.0 + 46.2500 120.5000 -64.0 + 47.2500 122.5000 -64.0 + 51.2500 126.5000 -64.0 + 52.5000 125.7500 -64.0 + 53.2500 126.5000 -64.0 + 55.7500 122.5000 -64.0 + 60.5000 120.7500 -64.0 + 61.5000 118.7500 -64.0 + 63.5000 117.7500 -64.0 + 65.7500 112.5000 -64.0 + 64.5000 112.2500 -64.0 + 61.5000 115.2500 -64.0 + 58.5000 115.2500 -64.0 + 60.2500 117.5000 -64.0 + 60.2500 119.5000 -64.0 + 58.5000 120.2500 -64.0 + 56.5000 121.2500 -64.0 + 52.7500 118.5000 -64.0 + 52.7500 116.5000 -64.0 + 55.5000 113.7500 -64.0 + 58.5000 113.7500 -64.0 + 58.7500 112.5000 -64.0 + 61.5000 108.7500 -64.0 + 65.5000 110.7500 -64.0 + 66.5000 108.7500 -64.0 + 68.5000 109.7500 -64.0 + 70.2500 110.5000 -64.0 + 71.5000 109.7500 -64.0 + 76.7500 109.5000 -64.0 + 77.7500 107.5000 -64.0 + 81.5000 103.7500 -64.0 + 81.7500 101.5000 -64.0 + 78.5000 104.2500 -64.0 + 76.7500 102.5000 -64.0 + 76.7500 100.5000 -64.0 + 75.5000 101.2500 -64.0 + 69.5000 103.2500 -64.0 + 61.7500 98.5000 -64.0 + 59.5000 98.2500 -64.0 + 57.5000 97.2500 -64.0 + 55.5000 98.2500 -64.0 + 52.2500 102.5000 -64.0 + 51.2500 104.5000 -64.0 + 46.5000 110.2500 -64.0 + 43.5000 115.2500 -64.0 + 41.2500 121.5000 -64.0 + 40.5000 123.2500 -64.0 + 38.2500 129.5000 -64.0 + 32.2500 142.5000 -64.0 + 31.5000 144.2500 -64.0 + 31.2500 156.5000 -64.0 + 33.2500 160.5000 -64.0 + 33.2500 163.5000 -64.0 + 34.2500 165.5000 -64.0 + 34.2500 169.5000 -64.0 + 35.2500 171.5000 -64.0 + 35.2500 173.5000 -64.0 + 36.2500 175.5000 -64.0 + 36.2500 177.5000 -64.0 + 40.2500 189.5000 -64.0 + 47.2500 198.5000 -64.0 + 52.2500 206.5000 -64.0 + 55.2500 210.5000 -64.0 + 59.5000 215.7500 -64.0 + 63.2500 218.5000 -64.0 + 69.5000 222.7500 -64.0 + 77.5000 226.7500 -64.0 + 91.5000 228.7500 -64.0 + 93.5000 227.7500 -64.0 + 117.5000 227.7500 -64.0 + 119.5000 226.7500 -64.0 + 123.5000 226.7500 -64.0 + 135.5000 220.7500 -64.0 + 142.5000 214.7500 -64.0 + 144.5000 213.7500 -64.0 + 153.7500 201.5000 -64.0 + 155.7500 197.5000 -64.0 + 159.5000 193.7500 -64.0 + 162.7500 189.5000 -64.0 + 170.7500 173.5000 -64.0 + 171.7500 168.5000 -64.0 + 172.7500 165.5000 -64.0 + 174.5000 161.7500 -64.0 + 174.7500 159.5000 -64.0 + 175.5000 157.7500 -64.0 + 175.7500 144.5000 -64.0 + 166.7500 126.5000 -64.0 + 166.7500 116.5000 -64.0 + 168.7500 110.5000 -64.0 + 169.5000 108.7500 -64.0 + 169.7500 97.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 100.5000 -64.0 + 128.2500 102.5000 -64.0 + 124.5000 104.2500 -64.0 + 125.2500 105.5000 -64.0 + 124.5000 107.2500 -64.0 + 122.5000 107.2500 -64.0 + 120.7500 105.5000 -64.0 + 118.2500 105.5000 -64.0 + 117.2500 107.5000 -64.0 + 123.5000 108.7500 -64.0 + 125.5000 107.7500 -64.0 + 126.2500 108.5000 -64.0 + 128.5000 108.7500 -64.0 + 127.7500 107.5000 -64.0 + 127.7500 104.5000 -64.0 + 129.5000 102.7500 -64.0 + 131.7500 102.5000 -64.0 + 130.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 104.5000 -64.0 + 83.2500 107.5000 -64.0 + 79.2500 111.5000 -64.0 + 78.2500 113.5000 -64.0 + 79.5000 113.7500 -64.0 + 89.5000 107.7500 -64.0 + 91.5000 107.7500 -64.0 + 91.7500 105.5000 -64.0 + 86.5000 107.2500 -64.0 + 84.7500 106.5000 -64.0 + 84.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 108.5000 -64.0 + 114.2500 109.5000 -64.0 + 115.5000 109.7500 -64.0 + 115.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 111.5000 -64.0 + 122.5000 111.7500 -64.0 + 124.5000 112.7500 -64.0 + 123.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 117.5000 -64.0 + 67.2500 119.5000 -64.0 + 67.2500 123.5000 -64.0 + 63.2500 126.5000 -64.0 + 60.5000 130.2500 -64.0 + 60.2500 132.5000 -64.0 + 62.2500 134.5000 -64.0 + 62.2500 136.5000 -64.0 + 63.5000 136.7500 -64.0 + 64.2500 138.5000 -64.0 + 61.5000 140.2500 -64.0 + 59.7500 138.5000 -64.0 + 56.5000 138.2500 -64.0 + 56.2500 139.5000 -64.0 + 58.2500 140.5000 -64.0 + 65.5000 140.7500 -64.0 + 71.5000 136.7500 -64.0 + 72.2500 137.5000 -64.0 + 75.5000 137.7500 -64.0 + 77.5000 135.7500 -64.0 + 77.7500 133.5000 -64.0 + 76.7500 131.5000 -64.0 + 71.5000 131.2500 -64.0 + 68.7500 128.5000 -64.0 + 69.5000 127.7500 -64.0 + 77.5000 127.7500 -64.0 + 79.2500 128.5000 -64.0 + 84.5000 128.7500 -64.0 + 87.5000 127.7500 -64.0 + 90.5000 124.7500 -64.0 + 90.7500 121.5000 -64.0 + 89.5000 121.2500 -64.0 + 86.5000 125.2500 -64.0 + 82.5000 127.2500 -64.0 + 80.7500 125.5000 -64.0 + 81.7500 123.5000 -64.0 + 79.5000 123.2500 -64.0 + 77.5000 121.2500 -64.0 + 73.5000 119.2500 -64.0 + 71.5000 120.2500 -64.0 + 68.5000 120.2500 -64.0 + 67.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 118.5000 -64.0 + 120.5000 119.2500 -64.0 + 120.5000 120.7500 -64.0 + 123.5000 119.7500 -64.0 + 122.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 58.5000 99.7500 -64.0 + 60.2500 100.5000 -64.0 + 59.5000 102.2500 -64.0 + 59.2500 104.5000 -64.0 + 56.5000 108.2500 -64.0 + 53.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 64.7500 103.5000 -64.0 + 65.5000 102.7500 -64.0 + 67.2500 103.5000 -64.0 + 66.5000 104.2500 -64.0 +} -64.0 +{ -64.0 + 154.7500 103.5000 -64.0 + 155.5000 102.7500 -64.0 + 157.2500 106.5000 -64.0 + 154.2500 110.5000 -64.0 + 147.5000 113.2500 -64.0 + 145.7500 112.5000 -64.0 + 145.7500 110.5000 -64.0 + 152.5000 104.7500 -64.0 +} -64.0 +{ -64.0 + 69.7500 105.5000 -64.0 + 70.5000 104.7500 -64.0 + 71.2500 105.5000 -64.0 + 70.5000 106.2500 -64.0 +} -64.0 +{ -64.0 + 52.7500 106.5000 -64.0 + 53.5000 105.7500 -64.0 + 55.2500 108.5000 -64.0 + 54.5000 110.2500 -64.0 + 52.5000 110.2500 -64.0 + 51.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 73.7500 107.5000 -64.0 + 74.5000 106.7500 -64.0 + 76.2500 107.5000 -64.0 + 75.5000 108.2500 -64.0 +} -64.0 +{ -64.0 + 134.7500 109.5000 -64.0 + 135.5000 108.7500 -64.0 + 138.2500 110.5000 -64.0 + 137.5000 112.2500 -64.0 + 135.5000 111.2500 -64.0 +} -64.0 +{ -64.0 + 139.7500 110.5000 -64.0 + 140.5000 109.7500 -64.0 + 142.2500 110.5000 -64.0 + 140.5000 112.2500 -64.0 +} -64.0 +{ -64.0 + 153.7500 112.5000 -64.0 + 154.5000 111.7500 -64.0 + 162.5000 111.7500 -64.0 + 165.2500 114.5000 -64.0 + 165.2500 116.5000 -64.0 + 163.5000 118.2500 -64.0 + 159.5000 120.2500 -64.0 + 157.2500 120.5000 -64.0 + 150.5000 123.2500 -64.0 + 145.5000 122.2500 -64.0 + 143.7500 120.5000 -64.0 + 144.7500 117.5000 -64.0 + 147.5000 113.7500 -64.0 + 150.5000 113.7500 -64.0 +} -64.0 +{ -64.0 + 134.7500 113.5000 -64.0 + 135.5000 112.7500 -64.0 + 136.2500 113.5000 -64.0 + 135.5000 114.2500 -64.0 +} -64.0 +{ -64.0 + 50.5000 120.7500 -64.0 + 52.2500 121.5000 -64.0 + 52.2500 123.5000 -64.0 + 50.5000 124.2500 -64.0 + 48.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 72.7500 123.5000 -64.0 + 73.5000 122.7500 -64.0 + 75.2500 124.5000 -64.0 + 74.5000 126.2500 -64.0 +} -64.0 +{ -64.0 + 168.7500 143.5000 -64.0 + 169.5000 142.7500 -64.0 + 170.2500 143.5000 -64.0 + 169.5000 144.2500 -64.0 +} -64.0 +{ -64.0 + 152.7500 145.5000 -64.0 + 153.5000 144.7500 -64.0 + 154.2500 145.5000 -64.0 + 153.5000 146.2500 -64.0 +} -64.0 +v 552 z -120.000000 -64.0 +{ -64.0 + 95.2500 45.5000 -64.0 + 94.2500 47.5000 -64.0 + 92.5000 48.2500 -64.0 + 92.2500 49.5000 -64.0 + 93.5000 49.7500 -64.0 + 95.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 47.5000 -64.0 + 125.2500 49.5000 -64.0 + 125.2500 51.5000 -64.0 + 127.5000 51.7500 -64.0 + 125.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 70.2500 53.5000 -64.0 + 69.5000 54.2500 -64.0 + 63.5000 54.2500 -64.0 + 59.5000 57.2500 -64.0 + 56.2500 61.5000 -64.0 + 45.2500 83.5000 -64.0 + 44.5000 85.2500 -64.0 + 43.2500 93.5000 -64.0 + 42.5000 95.2500 -64.0 + 42.2500 108.5000 -64.0 + 43.2500 110.5000 -64.0 + 43.2500 114.5000 -64.0 + 42.2500 121.5000 -64.0 + 40.2500 127.5000 -64.0 + 37.5000 133.2500 -64.0 + 33.5000 140.2500 -64.0 + 33.2500 148.5000 -64.0 + 32.2500 150.5000 -64.0 + 33.2500 152.5000 -64.0 + 33.2500 157.5000 -64.0 + 34.2500 159.5000 -64.0 + 34.2500 161.5000 -64.0 + 35.2500 163.5000 -64.0 + 35.2500 167.5000 -64.0 + 36.2500 169.5000 -64.0 + 36.2500 171.5000 -64.0 + 37.2500 173.5000 -64.0 + 37.2500 176.5000 -64.0 + 39.2500 180.5000 -64.0 + 39.2500 182.5000 -64.0 + 42.2500 189.5000 -64.0 + 46.2500 193.5000 -64.0 + 49.2500 198.5000 -64.0 + 54.2500 206.5000 -64.0 + 55.2500 208.5000 -64.0 + 63.5000 216.7500 -64.0 + 67.2500 219.5000 -64.0 + 73.2500 223.5000 -64.0 + 79.5000 225.7500 -64.0 + 81.2500 226.5000 -64.0 + 85.5000 226.7500 -64.0 + 87.2500 227.5000 -64.0 + 94.5000 227.7500 -64.0 + 96.5000 226.7500 -64.0 + 119.5000 226.7500 -64.0 + 121.5000 225.7500 -64.0 + 124.5000 225.7500 -64.0 + 134.5000 220.7500 -64.0 + 138.5000 217.7500 -64.0 + 140.5000 216.7500 -64.0 + 147.5000 209.7500 -64.0 + 153.7500 201.5000 -64.0 + 155.7500 197.5000 -64.0 + 160.5000 192.7500 -64.0 + 164.5000 186.7500 -64.0 + 168.5000 179.7500 -64.0 + 168.7500 177.5000 -64.0 + 171.7500 171.5000 -64.0 + 172.7500 166.5000 -64.0 + 174.7500 160.5000 -64.0 + 175.5000 158.7500 -64.0 + 175.7500 143.5000 -64.0 + 171.7500 135.5000 -64.0 + 166.5000 129.2500 -64.0 + 164.5000 128.2500 -64.0 + 163.5000 130.2500 -64.0 + 158.5000 133.2500 -64.0 + 155.5000 133.2500 -64.0 + 151.7500 131.5000 -64.0 + 148.5000 131.2500 -64.0 + 146.5000 133.2500 -64.0 + 143.5000 133.2500 -64.0 + 141.7500 132.5000 -64.0 + 139.7500 128.5000 -64.0 + 139.5000 125.2500 -64.0 + 136.5000 126.2500 -64.0 + 133.5000 125.2500 -64.0 + 131.7500 121.5000 -64.0 + 133.5000 119.7500 -64.0 + 136.5000 119.7500 -64.0 + 138.2500 121.5000 -64.0 + 139.2500 123.5000 -64.0 + 140.5000 122.7500 -64.0 + 142.5000 123.7500 -64.0 + 144.5000 122.7500 -64.0 + 148.2500 124.5000 -64.0 + 155.5000 124.7500 -64.0 + 161.5000 127.7500 -64.0 + 164.5000 126.7500 -64.0 + 164.7500 123.5000 -64.0 + 163.7500 121.5000 -64.0 + 158.5000 121.2500 -64.0 + 154.5000 123.2500 -64.0 + 149.5000 123.2500 -64.0 + 146.5000 122.2500 -64.0 + 142.7500 120.5000 -64.0 + 143.5000 118.7500 -64.0 + 146.7500 113.5000 -64.0 + 147.7500 111.5000 -64.0 + 148.5000 109.7500 -64.0 + 149.2500 110.5000 -64.0 + 150.2500 112.5000 -64.0 + 151.5000 112.7500 -64.0 + 153.5000 111.7500 -64.0 + 155.5000 111.7500 -64.0 + 157.5000 110.7500 -64.0 + 161.5000 110.7500 -64.0 + 166.7500 111.5000 -64.0 + 169.5000 107.7500 -64.0 + 169.7500 105.5000 -64.0 + 167.7500 101.5000 -64.0 + 164.5000 101.2500 -64.0 + 162.5000 102.2500 -64.0 + 157.5000 101.2500 -64.0 + 148.5000 109.2500 -64.0 + 145.5000 108.2500 -64.0 + 143.5000 109.2500 -64.0 + 134.5000 107.2500 -64.0 + 134.2500 110.5000 -64.0 + 137.2500 112.5000 -64.0 + 135.5000 114.2500 -64.0 + 133.5000 114.2500 -64.0 + 132.5000 116.2500 -64.0 + 129.5000 116.2500 -64.0 + 127.5000 117.2500 -64.0 + 126.7500 116.5000 -64.0 + 125.2500 116.5000 -64.0 + 123.2500 120.5000 -64.0 + 127.5000 120.7500 -64.0 + 131.2500 124.5000 -64.0 + 134.2500 128.5000 -64.0 + 133.5000 129.2500 -64.0 + 132.5000 128.2500 -64.0 + 130.5000 127.2500 -64.0 + 131.2500 128.5000 -64.0 + 130.5000 129.2500 -64.0 + 128.5000 130.2500 -64.0 + 126.7500 129.5000 -64.0 + 123.7500 125.5000 -64.0 + 124.5000 124.7500 -64.0 + 122.5000 123.2500 -64.0 + 122.2500 126.5000 -64.0 + 125.2500 130.5000 -64.0 + 130.2500 133.5000 -64.0 + 131.2500 135.5000 -64.0 + 136.2500 138.5000 -64.0 + 140.5000 138.7500 -64.0 + 142.2500 139.5000 -64.0 + 143.5000 141.7500 -64.0 + 145.5000 142.7500 -64.0 + 151.5000 148.7500 -64.0 + 161.5000 152.7500 -64.0 + 161.7500 149.5000 -64.0 + 159.7500 148.5000 -64.0 + 158.5000 149.2500 -64.0 + 155.5000 148.2500 -64.0 + 154.7500 146.5000 -64.0 + 151.5000 145.2500 -64.0 + 149.7500 141.5000 -64.0 + 151.7500 140.5000 -64.0 + 150.7500 137.5000 -64.0 + 153.5000 133.7500 -64.0 + 155.5000 133.7500 -64.0 + 159.2500 137.5000 -64.0 + 160.2500 139.5000 -64.0 + 161.5000 137.2500 -64.0 + 159.5000 136.2500 -64.0 + 158.7500 134.5000 -64.0 + 160.5000 133.7500 -64.0 + 165.5000 134.7500 -64.0 + 166.2500 136.5000 -64.0 + 168.5000 136.7500 -64.0 + 170.2500 138.5000 -64.0 + 170.2500 141.5000 -64.0 + 172.2500 143.5000 -64.0 + 172.2500 145.5000 -64.0 + 174.2500 147.5000 -64.0 + 173.5000 148.2500 -64.0 + 173.2500 150.5000 -64.0 + 171.5000 151.2500 -64.0 + 169.7500 149.5000 -64.0 + 169.5000 147.2500 -64.0 + 169.2500 151.5000 -64.0 + 170.5000 151.7500 -64.0 + 172.2500 152.5000 -64.0 + 172.2500 156.5000 -64.0 + 168.5000 159.2500 -64.0 + 166.7500 158.5000 -64.0 + 165.5000 156.2500 -64.0 + 165.2500 163.5000 -64.0 + 164.5000 165.2500 -64.0 + 164.2500 170.5000 -64.0 + 162.2500 174.5000 -64.0 + 159.5000 178.2500 -64.0 + 159.2500 181.5000 -64.0 + 156.5000 185.2500 -64.0 + 153.2500 189.5000 -64.0 + 149.2500 197.5000 -64.0 + 145.2500 202.5000 -64.0 + 142.5000 206.2500 -64.0 + 134.5000 212.2500 -64.0 + 132.2500 213.5000 -64.0 + 125.5000 218.2500 -64.0 + 123.5000 218.2500 -64.0 + 119.5000 220.2500 -64.0 + 112.5000 220.2500 -64.0 + 108.5000 216.2500 -64.0 + 101.5000 215.2500 -64.0 + 99.5000 217.2500 -64.0 + 95.5000 220.2500 -64.0 + 86.5000 220.2500 -64.0 + 81.5000 219.2500 -64.0 + 77.5000 216.2500 -64.0 + 75.5000 215.2500 -64.0 + 68.7500 210.5000 -64.0 + 62.7500 206.5000 -64.0 + 56.7500 199.5000 -64.0 + 53.7500 195.5000 -64.0 + 53.7500 193.5000 -64.0 + 52.7500 191.5000 -64.0 + 52.7500 187.5000 -64.0 + 45.7500 181.5000 -64.0 + 42.7500 176.5000 -64.0 + 42.7500 174.5000 -64.0 + 41.7500 172.5000 -64.0 + 41.7500 170.5000 -64.0 + 40.7500 168.5000 -64.0 + 40.7500 166.5000 -64.0 + 42.7500 160.5000 -64.0 + 40.7500 156.5000 -64.0 + 40.7500 149.5000 -64.0 + 42.5000 147.7500 -64.0 + 46.5000 145.7500 -64.0 + 48.7500 145.5000 -64.0 + 49.7500 143.5000 -64.0 + 47.5000 143.2500 -64.0 + 46.7500 141.5000 -64.0 + 45.5000 141.2500 -64.0 + 44.5000 143.2500 -64.0 + 40.5000 145.2500 -64.0 + 39.7500 144.5000 -64.0 + 37.7500 140.5000 -64.0 + 38.5000 138.7500 -64.0 + 40.5000 138.7500 -64.0 + 44.2500 140.5000 -64.0 + 45.5000 139.7500 -64.0 + 43.7500 136.5000 -64.0 + 41.5000 136.2500 -64.0 + 40.7500 134.5000 -64.0 + 42.7500 132.5000 -64.0 + 43.7500 130.5000 -64.0 + 44.5000 128.7500 -64.0 + 43.7500 127.5000 -64.0 + 42.7500 125.5000 -64.0 + 46.5000 120.7500 -64.0 + 48.2500 121.5000 -64.0 + 49.2500 123.5000 -64.0 + 51.5000 122.7500 -64.0 + 50.7500 120.5000 -64.0 + 52.5000 119.7500 -64.0 + 51.7500 117.5000 -64.0 + 53.5000 116.7500 -64.0 + 55.2500 117.5000 -64.0 + 54.2500 120.5000 -64.0 + 55.2500 122.5000 -64.0 + 58.5000 122.7500 -64.0 + 61.5000 121.7500 -64.0 + 62.5000 119.7500 -64.0 + 64.5000 118.7500 -64.0 + 66.5000 119.7500 -64.0 + 68.5000 118.7500 -64.0 + 75.5000 112.7500 -64.0 + 81.5000 109.7500 -64.0 + 83.2500 110.5000 -64.0 + 81.5000 112.7500 -64.0 + 84.5000 111.7500 -64.0 + 88.5000 107.7500 -64.0 + 90.7500 106.5000 -64.0 + 91.7500 104.5000 -64.0 + 89.5000 106.2500 -64.0 + 87.5000 106.2500 -64.0 + 85.7500 105.5000 -64.0 + 86.7500 103.5000 -64.0 + 85.5000 103.2500 -64.0 + 85.2500 104.5000 -64.0 + 80.5000 109.2500 -64.0 + 78.7500 108.5000 -64.0 + 76.7500 104.5000 -64.0 + 69.5000 104.2500 -64.0 + 65.5000 102.2500 -64.0 + 58.7500 98.5000 -64.0 + 56.5000 98.2500 -64.0 + 49.5000 105.2500 -64.0 + 47.5000 106.2500 -64.0 + 45.7500 104.5000 -64.0 + 45.7500 93.5000 -64.0 + 46.7500 88.5000 -64.0 + 48.7500 83.5000 -64.0 + 53.7500 72.5000 -64.0 + 58.5000 66.7500 -64.0 + 62.5000 63.7500 -64.0 + 66.5000 63.7500 -64.0 + 68.5000 64.7500 -64.0 + 68.7500 62.5000 -64.0 + 66.5000 62.2500 -64.0 + 64.7500 60.5000 -64.0 + 65.5000 59.2500 -64.0 + 62.5000 60.2500 -64.0 + 60.7500 59.5000 -64.0 + 61.5000 58.7500 -64.0 + 65.5000 55.7500 -64.0 + 67.5000 55.7500 -64.0 + 69.2500 56.5000 -64.0 + 68.5000 57.2500 -64.0 + 69.5000 57.7500 -64.0 + 72.5000 53.7500 -64.0 + 74.7500 53.5000 -64.0 +} -64.0 +{ -64.0 + 142.2500 56.5000 -64.0 + 141.5000 57.2500 -64.0 + 135.2500 57.5000 -64.0 + 141.5000 57.7500 -64.0 + 143.5000 56.7500 -64.0 + 145.5000 56.7500 -64.0 + 148.5000 57.7500 -64.0 + 152.2500 61.5000 -64.0 + 153.2500 63.5000 -64.0 + 151.5000 65.2500 -64.0 + 149.5000 66.2500 -64.0 + 150.5000 66.7500 -64.0 + 152.5000 65.7500 -64.0 + 154.5000 65.7500 -64.0 + 161.2500 72.5000 -64.0 + 164.2500 78.5000 -64.0 + 164.2500 80.5000 -64.0 + 166.2500 84.5000 -64.0 + 166.2500 87.5000 -64.0 + 168.5000 87.7500 -64.0 + 168.7500 81.5000 -64.0 + 164.7500 73.5000 -64.0 + 164.5000 71.2500 -64.0 + 161.7500 64.5000 -64.0 + 156.5000 59.2500 -64.0 + 152.5000 57.2500 -64.0 + 150.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 86.5000 -64.0 + 93.2500 87.5000 -64.0 + 93.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 87.5000 -64.0 + 126.2500 90.5000 -64.0 + 128.5000 90.7500 -64.0 + 131.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 91.5000 -64.0 + 95.2500 93.5000 -64.0 + 96.5000 92.7500 -64.0 + 95.7500 91.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 91.5000 -64.0 + 105.2500 93.5000 -64.0 + 106.5000 93.7500 -64.0 + 108.2500 95.5000 -64.0 + 108.7500 94.5000 -64.0 + 107.7500 91.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 94.5000 -64.0 + 102.2500 97.5000 -64.0 + 103.2500 99.5000 -64.0 + 100.2500 101.5000 -64.0 + 101.2500 104.5000 -64.0 + 106.5000 101.7500 -64.0 + 106.7500 98.5000 -64.0 + 103.7500 97.5000 -64.0 + 104.7500 95.5000 -64.0 +} -64.0 +{ -64.0 + 80.2500 99.5000 -64.0 + 78.5000 102.2500 -64.0 + 78.2500 104.5000 -64.0 + 80.5000 103.7500 -64.0 + 83.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 99.5000 -64.0 + 127.2500 101.5000 -64.0 + 129.5000 101.7500 -64.0 +} -64.0 +{ -64.0 + 109.2500 101.5000 -64.0 + 108.5000 102.2500 -64.0 + 108.2500 105.5000 -64.0 + 109.5000 105.7500 -64.0 + 110.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 104.5000 -64.0 + 120.2500 105.5000 -64.0 + 118.5000 107.7500 -64.0 + 120.5000 106.7500 -64.0 + 120.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 107.5000 -64.0 + 95.5000 108.2500 -64.0 + 96.2500 109.5000 -64.0 + 96.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 107.5000 -64.0 + 113.2500 108.5000 -64.0 + 114.7500 109.5000 -64.0 + 115.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 156.2500 113.5000 -64.0 + 155.5000 114.2500 -64.0 + 150.2500 118.5000 -64.0 + 151.2500 120.5000 -64.0 + 153.5000 120.7500 -64.0 + 153.7500 118.5000 -64.0 + 156.5000 115.7500 -64.0 + 158.2500 116.5000 -64.0 + 157.5000 118.2500 -64.0 + 155.2500 119.5000 -64.0 + 158.5000 119.7500 -64.0 + 161.5000 118.7500 -64.0 + 163.7500 115.5000 -64.0 + 162.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 116.5000 -64.0 + 117.2500 118.5000 -64.0 + 117.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 70.2500 120.5000 -64.0 + 67.2500 123.5000 -64.0 + 65.2500 127.5000 -64.0 + 67.5000 127.7500 -64.0 + 68.2500 129.5000 -64.0 + 67.5000 131.2500 -64.0 + 65.7500 130.5000 -64.0 + 64.7500 128.5000 -64.0 + 63.5000 128.2500 -64.0 + 60.5000 129.2500 -64.0 + 60.2500 131.5000 -64.0 + 61.2500 134.5000 -64.0 + 59.2500 138.5000 -64.0 + 60.5000 138.7500 -64.0 + 62.5000 137.7500 -64.0 + 66.2500 139.5000 -64.0 + 64.5000 141.2500 -64.0 + 58.5000 141.2500 -64.0 + 59.2500 142.5000 -64.0 + 63.5000 142.7500 -64.0 + 66.5000 141.7500 -64.0 + 70.5000 137.7500 -64.0 + 75.5000 137.7500 -64.0 + 77.5000 136.7500 -64.0 + 77.7500 134.5000 -64.0 + 76.7500 131.5000 -64.0 + 71.5000 130.2500 -64.0 + 70.7500 128.5000 -64.0 + 71.5000 126.7500 -64.0 + 73.5000 126.7500 -64.0 + 77.2500 129.5000 -64.0 + 84.5000 129.7500 -64.0 + 87.5000 128.7500 -64.0 + 90.5000 125.7500 -64.0 + 90.7500 123.5000 -64.0 + 89.5000 123.2500 -64.0 + 87.5000 125.2500 -64.0 + 83.5000 127.2500 -64.0 + 81.7500 125.5000 -64.0 + 82.7500 124.5000 -64.0 + 77.7500 121.5000 -64.0 + 73.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 48.2500 124.5000 -64.0 + 46.2500 127.5000 -64.0 + 47.5000 127.7500 -64.0 + 49.2500 129.5000 -64.0 + 49.2500 131.5000 -64.0 + 48.2500 133.5000 -64.0 + 50.5000 133.7500 -64.0 + 52.5000 127.7500 -64.0 + 54.5000 128.7500 -64.0 + 54.5000 126.2500 -64.0 + 52.5000 125.2500 -64.0 + 51.5000 127.2500 -64.0 + 49.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 59.2500 125.5000 -64.0 + 59.2500 126.5000 -64.0 + 60.5000 126.7500 -64.0 + 60.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 56.2500 139.5000 -64.0 + 55.2500 141.5000 -64.0 + 56.7500 140.5000 -64.0 +} -64.0 +{ -64.0 + 164.2500 141.5000 -64.0 + 164.2500 143.5000 -64.0 + 165.5000 144.7500 -64.0 + 165.7500 141.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 142.5000 -64.0 + 156.2500 145.5000 -64.0 + 156.7500 144.5000 -64.0 + 153.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 163.2500 152.5000 -64.0 + 162.5000 153.2500 -64.0 + 163.5000 153.7500 -64.0 + 164.7500 152.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 60.5000 -64.0 + 153.5000 59.7500 -64.0 + 157.2500 62.5000 -64.0 + 155.5000 63.2500 -64.0 +} -64.0 +{ -64.0 + 57.7500 63.5000 -64.0 + 58.5000 62.7500 -64.0 + 59.2500 63.5000 -64.0 + 58.5000 64.2500 -64.0 +} -64.0 +{ -64.0 + 56.7500 101.5000 -64.0 + 58.5000 100.7500 -64.0 + 60.2500 101.5000 -64.0 + 62.2500 107.5000 -64.0 + 59.5000 111.2500 -64.0 + 55.7500 109.5000 -64.0 + 53.5000 109.2500 -64.0 + 52.7500 107.5000 -64.0 + 53.5000 105.7500 -64.0 + 55.5000 105.7500 -64.0 +} -64.0 +{ -64.0 + 72.7500 106.5000 -64.0 + 73.5000 105.7500 -64.0 + 76.2500 107.5000 -64.0 + 76.2500 110.5000 -64.0 + 74.5000 111.2500 -64.0 + 72.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 165.5000 106.7500 -64.0 + 166.2500 107.5000 -64.0 + 164.5000 109.2500 -64.0 + 163.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 51.7500 111.5000 -64.0 + 53.5000 110.7500 -64.0 + 56.5000 111.7500 -64.0 + 57.2500 113.5000 -64.0 + 56.5000 115.2500 -64.0 + 52.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 137.7500 112.5000 -64.0 + 138.5000 111.7500 -64.0 + 140.5000 111.7500 -64.0 + 142.2500 112.5000 -64.0 + 142.2500 114.5000 -64.0 + 140.5000 115.2500 -64.0 + 138.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 68.7500 124.5000 -64.0 + 70.5000 123.7500 -64.0 + 71.2500 125.5000 -64.0 + 69.5000 126.2500 -64.0 +} -64.0 +{ -64.0 + 74.7500 124.5000 -64.0 + 75.5000 123.7500 -64.0 + 76.2500 124.5000 -64.0 + 75.5000 126.2500 -64.0 +} -64.0 +{ -64.0 + 37.7500 146.5000 -64.0 + 38.5000 145.7500 -64.0 + 40.2500 146.5000 -64.0 + 38.5000 149.2500 -64.0 + 37.7500 148.5000 -64.0 +} -64.0 +v 442 z -122.000000 -64.0 +{ -64.0 + 95.2500 45.5000 -64.0 + 92.2500 49.5000 -64.0 + 93.5000 49.7500 -64.0 + 95.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 50.5000 -64.0 + 126.2500 52.5000 -64.0 + 127.5000 52.7500 -64.0 + 127.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 54.5000 -64.0 + 59.5000 57.2500 -64.0 + 53.5000 66.2500 -64.0 + 53.2500 68.5000 -64.0 + 48.5000 76.2500 -64.0 + 48.2500 78.5000 -64.0 + 46.2500 82.5000 -64.0 + 47.2500 84.5000 -64.0 + 48.7500 83.5000 -64.0 + 53.7500 72.5000 -64.0 + 59.5000 65.7500 -64.0 + 65.5000 62.7500 -64.0 + 69.2500 64.5000 -64.0 + 69.7500 63.5000 -64.0 + 64.7500 60.5000 -64.0 + 66.5000 58.2500 -64.0 + 64.5000 59.2500 -64.0 + 62.7500 58.5000 -64.0 + 66.5000 55.7500 -64.0 + 68.2500 56.5000 -64.0 + 67.2500 57.5000 -64.0 + 69.5000 57.7500 -64.0 + 69.7500 56.5000 -64.0 + 73.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 145.2500 56.5000 -64.0 + 144.5000 57.2500 -64.0 + 141.2500 57.5000 -64.0 + 148.5000 57.7500 -64.0 + 152.2500 61.5000 -64.0 + 152.2500 63.5000 -64.0 + 149.5000 65.2500 -64.0 + 147.5000 65.2500 -64.0 + 146.2500 68.5000 -64.0 + 152.5000 65.7500 -64.0 + 155.5000 66.7500 -64.0 + 158.2500 69.5000 -64.0 + 161.2500 73.5000 -64.0 + 165.2500 81.5000 -64.0 + 166.5000 81.7500 -64.0 + 166.7500 78.5000 -64.0 + 164.7500 74.5000 -64.0 + 164.7500 72.5000 -64.0 + 162.7500 68.5000 -64.0 + 162.7500 66.5000 -64.0 + 158.7500 61.5000 -64.0 + 152.7500 57.5000 -64.0 + 150.5000 57.2500 -64.0 +} -64.0 +{ -64.0 + 154.2500 80.5000 -64.0 + 154.2500 82.5000 -64.0 + 155.5000 83.7500 -64.0 + 155.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 88.5000 -64.0 + 90.5000 89.7500 -64.0 + 94.5000 91.7500 -64.0 + 93.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 88.5000 -64.0 + 127.2500 89.5000 -64.0 + 130.5000 89.7500 -64.0 + 130.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 90.5000 -64.0 + 106.2500 92.5000 -64.0 + 107.5000 92.7500 -64.0 + 107.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 91.5000 -64.0 + 121.2500 92.5000 -64.0 + 122.5000 92.7500 -64.0 + 122.7500 91.5000 -64.0 +} -64.0 +{ -64.0 + 45.2500 92.5000 -64.0 + 42.5000 98.2500 -64.0 + 42.2500 104.5000 -64.0 + 44.2500 111.5000 -64.0 + 43.2500 122.5000 -64.0 + 34.5000 139.2500 -64.0 + 34.2500 143.5000 -64.0 + 33.5000 145.2500 -64.0 + 33.2500 155.5000 -64.0 + 38.2500 176.5000 -64.0 + 43.2500 189.5000 -64.0 + 49.2500 196.5000 -64.0 + 52.2500 202.5000 -64.0 + 59.2500 211.5000 -64.0 + 67.5000 218.7500 -64.0 + 73.2500 222.5000 -64.0 + 86.2500 226.5000 -64.0 + 94.5000 226.7500 -64.0 + 96.5000 225.7500 -64.0 + 119.5000 225.7500 -64.0 + 121.5000 224.7500 -64.0 + 124.5000 224.7500 -64.0 + 132.5000 220.7500 -64.0 + 142.5000 213.7500 -64.0 + 152.7500 201.5000 -64.0 + 155.7500 195.5000 -64.0 + 163.7500 186.5000 -64.0 + 171.7500 170.5000 -64.0 + 174.5000 160.7500 -64.0 + 175.7500 147.5000 -64.0 + 171.7500 136.5000 -64.0 + 167.7500 132.5000 -64.0 + 164.5000 132.2500 -64.0 + 162.5000 133.2500 -64.0 + 160.5000 133.2500 -64.0 + 163.2500 134.5000 -64.0 + 161.5000 136.2500 -64.0 + 162.2500 138.5000 -64.0 + 165.7500 139.5000 -64.0 + 164.7500 137.5000 -64.0 + 165.5000 135.7500 -64.0 + 170.5000 137.7500 -64.0 + 172.2500 141.5000 -64.0 + 171.5000 142.2500 -64.0 + 173.2500 145.5000 -64.0 + 172.5000 147.2500 -64.0 + 173.2500 148.5000 -64.0 + 172.5000 149.2500 -64.0 + 170.5000 148.2500 -64.0 + 168.5000 149.2500 -64.0 + 170.2500 150.5000 -64.0 + 170.2500 156.5000 -64.0 + 169.5000 158.2500 -64.0 + 167.5000 159.2500 -64.0 + 165.5000 164.2500 -64.0 + 164.7500 163.5000 -64.0 + 164.7500 161.5000 -64.0 + 162.7500 155.5000 -64.0 + 161.5000 156.2500 -64.0 + 160.7500 155.5000 -64.0 + 160.2500 156.5000 -64.0 + 163.2500 159.5000 -64.0 + 161.2500 173.5000 -64.0 + 158.2500 177.5000 -64.0 + 157.2500 182.5000 -64.0 + 151.2500 190.5000 -64.0 + 146.2500 200.5000 -64.0 + 139.5000 207.2500 -64.0 + 126.5000 216.2500 -64.0 + 124.5000 216.2500 -64.0 + 118.5000 219.2500 -64.0 + 112.5000 219.2500 -64.0 + 108.7500 215.5000 -64.0 + 104.5000 215.2500 -64.0 + 103.7500 213.5000 -64.0 + 101.5000 213.2500 -64.0 + 99.5000 216.2500 -64.0 + 95.5000 219.2500 -64.0 + 92.5000 219.2500 -64.0 + 89.5000 218.2500 -64.0 + 87.5000 219.2500 -64.0 + 85.5000 219.2500 -64.0 + 73.5000 213.2500 -64.0 + 67.5000 208.2500 -64.0 + 63.5000 206.2500 -64.0 + 57.7500 199.5000 -64.0 + 54.7500 193.5000 -64.0 + 53.7500 186.5000 -64.0 + 47.7500 181.5000 -64.0 + 44.7500 177.5000 -64.0 + 42.7500 168.5000 -64.0 + 43.7500 158.5000 -64.0 + 41.7500 154.5000 -64.0 + 41.7500 152.5000 -64.0 + 44.5000 148.7500 -64.0 + 48.5000 146.7500 -64.0 + 51.5000 146.7500 -64.0 + 55.5000 144.7500 -64.0 + 59.5000 144.7500 -64.0 + 65.7500 142.5000 -64.0 + 68.5000 138.7500 -64.0 + 72.5000 138.7500 -64.0 + 75.7500 137.5000 -64.0 + 77.7500 133.5000 -64.0 + 89.5000 127.7500 -64.0 + 89.7500 125.5000 -64.0 + 88.5000 125.2500 -64.0 + 84.5000 127.2500 -64.0 + 82.7500 126.5000 -64.0 + 84.5000 124.7500 -64.0 + 84.5000 123.2500 -64.0 + 82.5000 124.2500 -64.0 + 80.5000 124.2500 -64.0 + 77.5000 121.2500 -64.0 + 75.5000 122.2500 -64.0 + 70.5000 121.2500 -64.0 + 66.5000 126.2500 -64.0 + 68.2500 128.5000 -64.0 + 67.5000 132.2500 -64.0 + 66.7500 131.5000 -64.0 + 66.7500 129.5000 -64.0 + 64.5000 129.2500 -64.0 + 62.5000 130.2500 -64.0 + 61.7500 129.5000 -64.0 + 58.5000 129.2500 -64.0 + 58.2500 130.5000 -64.0 + 62.2500 138.5000 -64.0 + 64.5000 138.7500 -64.0 + 65.2500 140.5000 -64.0 + 59.5000 143.2500 -64.0 + 58.7500 142.5000 -64.0 + 56.5000 142.2500 -64.0 + 54.7500 140.5000 -64.0 + 53.5000 143.2500 -64.0 + 52.5000 142.2500 -64.0 + 47.5000 146.2500 -64.0 + 45.7500 145.5000 -64.0 + 44.5000 147.2500 -64.0 + 42.5000 146.2500 -64.0 + 40.5000 147.2500 -64.0 + 37.7500 140.5000 -64.0 + 39.5000 138.7500 -64.0 + 42.7500 138.5000 -64.0 + 43.7500 136.5000 -64.0 + 42.7500 134.5000 -64.0 + 44.7500 133.5000 -64.0 + 46.5000 129.7500 -64.0 + 51.5000 130.7500 -64.0 + 54.5000 129.7500 -64.0 + 55.5000 127.7500 -64.0 + 56.7500 128.5000 -64.0 + 57.7500 126.5000 -64.0 + 56.5000 126.2500 -64.0 + 54.7500 124.5000 -64.0 + 61.5000 120.7500 -64.0 + 64.5000 120.7500 -64.0 + 76.5000 112.7500 -64.0 + 76.7500 111.5000 -64.0 + 68.5000 110.2500 -64.0 + 67.7500 108.5000 -64.0 + 71.5000 106.7500 -64.0 + 75.2500 107.5000 -64.0 + 75.2500 109.5000 -64.0 + 76.5000 109.7500 -64.0 + 78.5000 108.7500 -64.0 + 75.5000 104.2500 -64.0 + 71.5000 106.2500 -64.0 + 68.5000 106.2500 -64.0 + 64.7500 103.5000 -64.0 + 60.5000 102.2500 -64.0 + 57.5000 99.2500 -64.0 + 55.5000 98.2500 -64.0 + 51.5000 101.2500 -64.0 + 49.5000 101.2500 -64.0 + 46.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 94.5000 -64.0 + 104.2500 101.5000 -64.0 + 102.5000 103.2500 -64.0 + 103.2500 104.5000 -64.0 + 103.2500 107.5000 -64.0 + 101.2500 108.5000 -64.0 + 106.5000 108.7500 -64.0 + 107.2500 110.5000 -64.0 + 110.5000 110.7500 -64.0 + 114.2500 113.5000 -64.0 + 114.7500 112.5000 -64.0 + 111.7500 108.5000 -64.0 + 109.5000 108.2500 -64.0 + 107.7500 106.5000 -64.0 + 108.5000 104.7500 -64.0 + 107.5000 104.2500 -64.0 + 107.2500 105.5000 -64.0 + 105.5000 106.2500 -64.0 + 103.7500 104.5000 -64.0 + 105.5000 100.7500 -64.0 + 106.2500 101.5000 -64.0 + 107.5000 100.7500 -64.0 + 106.7500 97.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 97.5000 -64.0 + 81.5000 99.2500 -64.0 + 82.5000 99.7500 -64.0 + 84.5000 98.7500 -64.0 +} -64.0 +{ -64.0 + 128.2500 98.5000 -64.0 + 127.2500 99.5000 -64.0 + 128.7500 99.5000 -64.0 +} -64.0 +{ -64.0 + 161.2500 102.5000 -64.0 + 159.5000 105.2500 -64.0 + 159.5000 106.7500 -64.0 + 165.5000 109.7500 -64.0 + 167.5000 108.7500 -64.0 + 167.7500 104.5000 -64.0 + 163.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 105.5000 -64.0 + 91.2500 106.5000 -64.0 + 92.5000 106.7500 -64.0 +} -64.0 +{ -64.0 + 98.2500 108.5000 -64.0 + 96.2500 112.5000 -64.0 + 97.5000 112.7500 -64.0 + 99.5000 109.7500 -64.0 +} -64.0 +{ -64.0 + 136.2500 109.5000 -64.0 + 136.2500 110.5000 -64.0 + 137.2500 112.5000 -64.0 + 136.2500 113.5000 -64.0 + 133.5000 117.2500 -64.0 + 129.5000 117.2500 -64.0 + 128.5000 119.2500 -64.0 + 126.5000 120.2500 -64.0 + 125.5000 122.2500 -64.0 + 126.2500 123.5000 -64.0 + 127.2500 125.5000 -64.0 + 126.2500 128.5000 -64.0 + 128.5000 131.7500 -64.0 + 130.5000 130.7500 -64.0 + 132.2500 131.5000 -64.0 + 132.2500 133.5000 -64.0 + 133.2500 136.5000 -64.0 + 134.5000 136.7500 -64.0 + 136.2500 138.5000 -64.0 + 138.5000 138.7500 -64.0 + 143.5000 139.7500 -64.0 + 147.2500 143.5000 -64.0 + 159.2500 154.5000 -64.0 + 159.7500 153.5000 -64.0 + 160.5000 151.7500 -64.0 + 162.7500 150.5000 -64.0 + 158.7500 147.5000 -64.0 + 157.7500 145.5000 -64.0 + 151.5000 145.2500 -64.0 + 149.7500 142.5000 -64.0 + 150.5000 140.7500 -64.0 + 151.7500 141.5000 -64.0 + 150.7500 139.5000 -64.0 + 151.7500 136.5000 -64.0 + 152.5000 134.7500 -64.0 + 154.5000 133.7500 -64.0 + 151.7500 131.5000 -64.0 + 148.5000 131.2500 -64.0 + 145.5000 132.2500 -64.0 + 145.2500 133.5000 -64.0 + 143.5000 135.2500 -64.0 + 144.2500 136.5000 -64.0 + 142.5000 138.2500 -64.0 + 140.5000 138.2500 -64.0 + 138.7500 137.5000 -64.0 + 139.7500 135.5000 -64.0 + 138.7500 133.5000 -64.0 + 138.7500 131.5000 -64.0 + 140.5000 130.7500 -64.0 + 138.7500 129.5000 -64.0 + 137.7500 127.5000 -64.0 + 135.5000 127.2500 -64.0 + 133.7500 125.5000 -64.0 + 132.7500 123.5000 -64.0 + 133.5000 121.7500 -64.0 + 135.5000 120.7500 -64.0 + 138.5000 121.7500 -64.0 + 142.5000 125.7500 -64.0 + 145.5000 124.7500 -64.0 + 152.5000 125.7500 -64.0 + 154.5000 124.7500 -64.0 + 159.5000 124.7500 -64.0 + 161.2500 125.5000 -64.0 + 162.7500 124.5000 -64.0 + 159.5000 122.2500 -64.0 + 153.5000 124.2500 -64.0 + 151.7500 123.5000 -64.0 + 150.5000 124.2500 -64.0 + 148.5000 123.2500 -64.0 + 142.7500 120.5000 -64.0 + 141.7500 118.5000 -64.0 + 144.5000 114.7500 -64.0 + 144.7500 111.5000 -64.0 + 141.5000 111.2500 -64.0 + 137.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 110.5000 -64.0 + 85.2500 111.5000 -64.0 + 87.5000 111.7500 -64.0 + 87.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 160.2500 111.5000 -64.0 + 159.5000 112.2500 -64.0 + 157.5000 112.2500 -64.0 + 153.2500 115.5000 -64.0 + 155.5000 115.7500 -64.0 + 157.5000 113.7500 -64.0 + 159.5000 113.7500 -64.0 + 162.5000 112.7500 -64.0 + 164.7500 114.5000 -64.0 + 163.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 115.5000 -64.0 + 117.5000 118.7500 -64.0 + 117.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 116.5000 -64.0 + 150.5000 117.2500 -64.0 + 151.5000 117.7500 -64.0 + 152.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 117.5000 -64.0 + 89.2500 118.5000 -64.0 + 89.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 162.2500 117.5000 -64.0 + 159.2500 119.5000 -64.0 + 161.5000 119.7500 -64.0 + 163.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 123.5000 -64.0 + 116.2500 124.5000 -64.0 + 119.2500 127.5000 -64.0 + 119.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 156.2500 134.5000 -64.0 + 158.2500 135.5000 -64.0 + 159.7500 134.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 142.5000 -64.0 + 153.2500 143.5000 -64.0 + 153.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 59.5000 61.7500 -64.0 + 60.2500 62.5000 -64.0 + 57.5000 65.2500 -64.0 + 56.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 157.7500 65.5000 -64.0 + 158.5000 64.7500 -64.0 + 160.2500 66.5000 -64.0 + 159.5000 68.2500 -64.0 + 158.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 55.7500 101.5000 -64.0 + 57.5000 100.7500 -64.0 + 63.2500 107.5000 -64.0 + 61.5000 110.2500 -64.0 + 59.7500 109.5000 -64.0 + 55.5000 109.2500 -64.0 + 52.7500 106.5000 -64.0 + 54.5000 105.7500 -64.0 +} -64.0 +{ -64.0 + 49.7500 108.5000 -64.0 + 50.5000 107.7500 -64.0 + 52.5000 108.7500 -64.0 + 61.5000 112.7500 -64.0 + 64.2500 118.5000 -64.0 + 61.5000 120.2500 -64.0 + 58.5000 120.2500 -64.0 + 55.7500 117.5000 -64.0 + 53.5000 117.2500 -64.0 + 46.7500 111.5000 -64.0 + 47.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 51.7500 119.5000 -64.0 + 52.5000 118.7500 -64.0 + 53.2500 119.5000 -64.0 + 54.2500 121.5000 -64.0 + 53.5000 123.2500 -64.0 + 51.5000 123.2500 -64.0 + 50.7500 121.5000 -64.0 +} -64.0 +v 430 z -124.000000 -64.0 +{ -64.0 + 96.2500 44.5000 -64.0 + 95.2500 45.5000 -64.0 + 96.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 44.5000 -64.0 + 109.2500 49.5000 -64.0 + 108.2500 52.5000 -64.0 + 109.2500 54.5000 -64.0 + 110.7500 52.5000 -64.0 + 109.7500 50.5000 -64.0 + 109.7500 47.5000 -64.0 + 110.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 46.5000 -64.0 + 91.5000 49.2500 -64.0 + 92.2500 50.5000 -64.0 + 93.7500 49.5000 -64.0 + 94.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 50.5000 -64.0 + 127.2500 53.5000 -64.0 + 127.7500 52.5000 -64.0 + 126.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 54.5000 -64.0 + 60.5000 57.2500 -64.0 + 56.2500 62.5000 -64.0 + 48.5000 77.2500 -64.0 + 48.2500 81.5000 -64.0 + 49.5000 80.7500 -64.0 + 54.7500 71.5000 -64.0 + 64.5000 62.7500 -64.0 + 66.5000 62.7500 -64.0 + 70.7500 64.5000 -64.0 + 69.7500 61.5000 -64.0 + 66.5000 61.2500 -64.0 + 65.7500 59.5000 -64.0 + 68.5000 56.7500 -64.0 + 72.5000 54.7500 -64.0 +} -64.0 +{ -64.0 + 142.2500 57.5000 -64.0 + 146.5000 57.7500 -64.0 + 152.5000 60.7500 -64.0 + 153.2500 62.5000 -64.0 + 152.5000 64.2500 -64.0 + 151.7500 63.5000 -64.0 + 148.5000 63.2500 -64.0 + 146.5000 65.2500 -64.0 + 146.2500 67.5000 -64.0 + 147.5000 67.7500 -64.0 + 149.5000 65.7500 -64.0 + 154.5000 65.7500 -64.0 + 163.5000 75.7500 -64.0 + 163.5000 71.2500 -64.0 + 160.7500 64.5000 -64.0 + 156.7500 60.5000 -64.0 + 151.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 79.5000 -64.0 + 153.5000 80.2500 -64.0 + 153.2500 83.5000 -64.0 + 155.5000 85.7500 -64.0 + 155.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 87.5000 -64.0 + 90.5000 88.2500 -64.0 + 92.2500 89.5000 -64.0 + 92.2500 91.5000 -64.0 + 93.5000 91.7500 -64.0 + 93.7500 90.5000 -64.0 + 92.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 88.5000 -64.0 + 106.5000 89.2500 -64.0 + 106.2500 94.5000 -64.0 + 107.5000 93.7500 -64.0 + 107.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 88.5000 -64.0 + 127.2500 89.5000 -64.0 + 129.5000 89.7500 -64.0 + 129.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 90.5000 -64.0 + 121.5000 92.2500 -64.0 + 122.5000 92.7500 -64.0 + 123.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 46.2500 96.5000 -64.0 + 43.5000 99.2500 -64.0 + 43.2500 105.5000 -64.0 + 45.5000 107.7500 -64.0 + 47.5000 106.7500 -64.0 + 51.5000 106.7500 -64.0 + 61.2500 111.5000 -64.0 + 63.5000 111.7500 -64.0 + 66.2500 116.5000 -64.0 + 65.5000 118.2500 -64.0 + 63.2500 119.5000 -64.0 + 66.5000 119.7500 -64.0 + 71.5000 117.7500 -64.0 + 76.5000 112.7500 -64.0 + 74.7500 109.5000 -64.0 + 76.5000 107.7500 -64.0 + 75.7500 105.5000 -64.0 + 74.5000 105.2500 -64.0 + 68.5000 108.2500 -64.0 + 64.7500 105.5000 -64.0 + 59.5000 105.2500 -64.0 + 57.5000 107.2500 -64.0 + 54.5000 105.2500 -64.0 + 53.7500 103.5000 -64.0 + 54.5000 101.7500 -64.0 + 56.5000 101.7500 -64.0 + 57.2500 103.5000 -64.0 + 58.5000 103.7500 -64.0 + 57.7500 100.5000 -64.0 + 55.7500 98.5000 -64.0 + 53.5000 98.2500 -64.0 + 49.7500 96.5000 -64.0 +} -64.0 +{ -64.0 + 48.2500 109.5000 -64.0 + 47.2500 110.5000 -64.0 + 48.2500 113.5000 -64.0 + 51.7500 114.5000 -64.0 + 50.7500 112.5000 -64.0 + 50.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 109.5000 -64.0 + 98.5000 110.2500 -64.0 + 95.2500 115.5000 -64.0 + 98.5000 112.7500 -64.0 + 103.5000 112.7500 -64.0 + 105.5000 111.7500 -64.0 + 108.5000 111.7500 -64.0 + 111.5000 112.7500 -64.0 + 115.2500 115.5000 -64.0 + 118.2500 119.5000 -64.0 + 119.7500 119.5000 -64.0 + 114.5000 113.2500 -64.0 + 112.5000 112.2500 -64.0 + 110.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 161.2500 111.5000 -64.0 + 152.5000 116.2500 -64.0 + 151.5000 117.7500 -64.0 + 153.5000 116.7500 -64.0 + 155.5000 116.7500 -64.0 + 157.5000 114.7500 -64.0 + 163.5000 112.7500 -64.0 + 165.5000 114.7500 -64.0 + 165.7500 112.5000 -64.0 + 163.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 112.5000 -64.0 + 83.5000 117.2500 -64.0 + 81.7500 116.5000 -64.0 + 82.7500 114.5000 -64.0 + 77.5000 114.2500 -64.0 + 75.2500 117.5000 -64.0 + 78.2500 118.5000 -64.0 + 78.2500 120.5000 -64.0 + 73.5000 123.2500 -64.0 + 70.5000 122.2500 -64.0 + 66.5000 126.2500 -64.0 + 66.2500 129.5000 -64.0 + 64.5000 131.2500 -64.0 + 63.7500 130.5000 -64.0 + 61.5000 130.2500 -64.0 + 57.5000 127.2500 -64.0 + 55.5000 129.2500 -64.0 + 53.5000 129.2500 -64.0 + 49.7500 127.5000 -64.0 + 47.5000 127.2500 -64.0 + 45.7500 125.5000 -64.0 + 42.2500 128.5000 -64.0 + 36.5000 136.2500 -64.0 + 34.5000 142.2500 -64.0 + 34.2500 156.5000 -64.0 + 35.2500 158.5000 -64.0 + 36.2500 168.5000 -64.0 + 40.2500 178.5000 -64.0 + 40.2500 180.5000 -64.0 + 45.2500 190.5000 -64.0 + 48.2500 192.5000 -64.0 + 55.2500 204.5000 -64.0 + 65.5000 215.7500 -64.0 + 73.2500 221.5000 -64.0 + 86.2500 225.5000 -64.0 + 101.5000 225.7500 -64.0 + 103.5000 224.7500 -64.0 + 115.5000 225.7500 -64.0 + 117.5000 224.7500 -64.0 + 120.5000 224.7500 -64.0 + 131.5000 220.7500 -64.0 + 138.5000 215.7500 -64.0 + 150.5000 202.7500 -64.0 + 156.7500 192.5000 -64.0 + 161.7500 187.5000 -64.0 + 165.7500 181.5000 -64.0 + 172.7500 165.5000 -64.0 + 174.5000 156.7500 -64.0 + 174.7500 147.5000 -64.0 + 173.7500 145.5000 -64.0 + 172.7500 139.5000 -64.0 + 167.7500 133.5000 -64.0 + 163.5000 133.2500 -64.0 + 162.2500 139.5000 -64.0 + 165.5000 139.7500 -64.0 + 169.5000 137.7500 -64.0 + 171.2500 140.5000 -64.0 + 167.5000 143.2500 -64.0 + 168.2500 144.5000 -64.0 + 167.2500 148.5000 -64.0 + 169.5000 148.7500 -64.0 + 170.2500 150.5000 -64.0 + 169.2500 152.5000 -64.0 + 171.2500 156.5000 -64.0 + 167.5000 158.2500 -64.0 + 167.2500 164.5000 -64.0 + 166.5000 166.2500 -64.0 + 164.7500 165.5000 -64.0 + 164.7500 163.5000 -64.0 + 163.7500 161.5000 -64.0 + 163.7500 150.5000 -64.0 + 161.5000 150.2500 -64.0 + 156.7500 145.5000 -64.0 + 155.7500 143.5000 -64.0 + 151.7500 142.5000 -64.0 + 150.7500 140.5000 -64.0 + 147.7500 139.5000 -64.0 + 150.5000 137.7500 -64.0 + 153.5000 133.7500 -64.0 + 159.5000 135.7500 -64.0 + 159.7500 134.5000 -64.0 + 153.5000 133.2500 -64.0 + 152.7500 131.5000 -64.0 + 146.7500 128.5000 -64.0 + 148.5000 126.7500 -64.0 + 151.5000 126.7500 -64.0 + 156.7500 124.5000 -64.0 + 150.5000 124.2500 -64.0 + 141.7500 120.5000 -64.0 + 139.5000 120.2500 -64.0 + 137.7500 118.5000 -64.0 + 138.5000 117.7500 -64.0 + 141.5000 117.7500 -64.0 + 143.7500 115.5000 -64.0 + 138.7500 112.5000 -64.0 + 137.2500 112.5000 -64.0 + 136.2500 114.5000 -64.0 + 132.5000 118.2500 -64.0 + 132.2500 120.5000 -64.0 + 138.5000 121.7500 -64.0 + 140.2500 124.5000 -64.0 + 137.5000 127.2500 -64.0 + 134.5000 127.2500 -64.0 + 131.7500 123.5000 -64.0 + 131.7500 121.5000 -64.0 + 129.5000 121.2500 -64.0 + 128.2500 124.5000 -64.0 + 129.2500 127.5000 -64.0 + 133.2500 129.5000 -64.0 + 132.5000 130.2500 -64.0 + 132.2500 134.5000 -64.0 + 134.2500 136.5000 -64.0 + 139.2500 139.5000 -64.0 + 146.2500 141.5000 -64.0 + 147.5000 143.7500 -64.0 + 149.5000 144.7500 -64.0 + 150.2500 146.5000 -64.0 + 153.5000 147.7500 -64.0 + 157.2500 150.5000 -64.0 + 162.2500 160.5000 -64.0 + 162.2500 169.5000 -64.0 + 147.5000 194.2500 -64.0 + 147.2500 197.5000 -64.0 + 141.2500 204.5000 -64.0 + 130.5000 212.2500 -64.0 + 118.5000 218.2500 -64.0 + 116.5000 218.2500 -64.0 + 114.5000 219.2500 -64.0 + 111.7500 217.5000 -64.0 + 108.5000 213.2500 -64.0 + 105.5000 214.2500 -64.0 + 101.5000 211.2500 -64.0 + 99.5000 214.2500 -64.0 + 95.5000 217.2500 -64.0 + 83.5000 217.2500 -64.0 + 73.5000 212.2500 -64.0 + 68.5000 207.2500 -64.0 + 64.5000 205.2500 -64.0 + 60.7500 201.5000 -64.0 + 56.7500 194.5000 -64.0 + 54.7500 185.5000 -64.0 + 50.5000 181.2500 -64.0 + 48.5000 180.2500 -64.0 + 45.7500 175.5000 -64.0 + 45.7500 171.5000 -64.0 + 44.7500 169.5000 -64.0 + 44.7500 157.5000 -64.0 + 43.7500 154.5000 -64.0 + 44.7500 151.5000 -64.0 + 48.5000 148.7500 -64.0 + 52.5000 148.7500 -64.0 + 76.5000 136.7500 -64.0 + 80.5000 132.7500 -64.0 + 88.5000 128.7500 -64.0 + 88.5000 126.2500 -64.0 + 86.5000 125.2500 -64.0 + 84.5000 127.2500 -64.0 + 80.5000 127.2500 -64.0 + 76.7500 124.5000 -64.0 + 80.5000 120.7500 -64.0 + 84.5000 118.7500 -64.0 + 87.7500 119.5000 -64.0 + 85.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 54.2500 115.5000 -64.0 + 54.5000 115.7500 -64.0 + 57.7500 117.5000 -64.0 + 56.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 47.2500 116.5000 -64.0 + 46.5000 117.2500 -64.0 + 46.2500 121.5000 -64.0 + 48.2500 125.5000 -64.0 + 49.5000 125.7500 -64.0 + 51.5000 124.7500 -64.0 + 56.5000 121.7500 -64.0 + 59.5000 121.7500 -64.0 + 62.7500 120.5000 -64.0 + 58.5000 120.2500 -64.0 + 52.5000 117.2500 -64.0 + 50.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 118.5000 -64.0 + 109.2500 119.5000 -64.0 + 111.5000 120.7500 -64.0 + 112.5000 120.2500 -64.0 +} -64.0 +{ -64.0 + 161.2500 118.5000 -64.0 + 159.5000 120.2500 -64.0 + 157.2500 120.5000 -64.0 + 160.5000 120.7500 -64.0 + 162.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 121.5000 -64.0 + 96.5000 122.2500 -64.0 + 97.5000 122.7500 -64.0 + 98.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 121.5000 -64.0 + 115.2500 123.5000 -64.0 + 118.2500 129.5000 -64.0 + 121.2500 131.5000 -64.0 + 126.5000 131.7500 -64.0 + 126.7500 128.5000 -64.0 + 125.7500 125.5000 -64.0 + 124.5000 125.2500 -64.0 + 126.2500 128.5000 -64.0 + 123.5000 131.2500 -64.0 + 119.7500 128.5000 -64.0 + 117.7500 124.5000 -64.0 + 114.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 160.2500 122.5000 -64.0 + 159.2500 123.5000 -64.0 + 161.5000 123.7500 -64.0 + 161.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 47.2500 137.5000 -64.0 + 47.2500 138.5000 -64.0 + 48.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 62.5000 58.7500 -64.0 + 63.2500 59.5000 -64.0 + 57.5000 66.2500 -64.0 + 56.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 157.7500 66.5000 -64.0 + 158.5000 65.7500 -64.0 + 159.2500 66.5000 -64.0 + 158.5000 67.2500 -64.0 +} -64.0 +{ -64.0 + 45.7500 101.5000 -64.0 + 47.5000 100.7500 -64.0 + 48.2500 102.5000 -64.0 + 50.2500 103.5000 -64.0 + 47.5000 105.2500 -64.0 + 45.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 71.7500 108.5000 -64.0 + 72.5000 107.7500 -64.0 + 74.2500 109.5000 -64.0 + 72.5000 112.2500 -64.0 + 68.5000 112.2500 -64.0 + 67.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 140.7500 126.5000 -64.0 + 142.5000 125.7500 -64.0 + 146.2500 133.5000 -64.0 + 145.5000 135.2500 -64.0 + 146.2500 137.5000 -64.0 + 145.5000 139.2500 -64.0 + 141.7500 134.5000 -64.0 + 142.7500 132.5000 -64.0 +} -64.0 +{ -64.0 + 71.5000 126.7500 -64.0 + 73.2500 127.5000 -64.0 + 70.5000 129.2500 -64.0 + 69.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 53.7500 130.5000 -64.0 + 54.5000 129.7500 -64.0 + 56.5000 129.7500 -64.0 + 60.2500 133.5000 -64.0 + 60.2500 135.5000 -64.0 + 61.5000 136.7500 -64.0 + 63.5000 137.7500 -64.0 + 65.2500 138.5000 -64.0 + 64.2500 140.5000 -64.0 + 61.5000 142.2500 -64.0 + 59.5000 142.2500 -64.0 + 56.5000 145.2500 -64.0 + 54.7500 144.5000 -64.0 + 54.7500 141.5000 -64.0 + 53.2500 141.5000 -64.0 + 54.2500 143.5000 -64.0 + 52.5000 146.2500 -64.0 + 51.7500 145.5000 -64.0 + 49.5000 145.2500 -64.0 + 48.5000 147.2500 -64.0 + 44.5000 147.2500 -64.0 + 42.5000 149.2500 -64.0 + 42.2500 151.5000 -64.0 + 40.5000 152.2500 -64.0 + 38.7500 149.5000 -64.0 + 38.7500 145.5000 -64.0 + 40.7500 144.5000 -64.0 + 41.7500 142.5000 -64.0 + 38.5000 142.2500 -64.0 + 37.7500 140.5000 -64.0 + 39.5000 139.7500 -64.0 + 40.5000 137.7500 -64.0 + 42.5000 137.7500 -64.0 + 42.7500 136.5000 -64.0 + 41.7500 134.5000 -64.0 + 43.5000 132.7500 -64.0 + 45.5000 133.7500 -64.0 + 45.7500 131.5000 -64.0 + 47.5000 130.7500 -64.0 + 49.2500 131.5000 -64.0 + 48.2500 133.5000 -64.0 + 50.5000 133.7500 -64.0 + 50.7500 132.5000 -64.0 +} -64.0 +{ -64.0 + 160.7500 154.5000 -64.0 + 161.5000 153.7500 -64.0 + 163.2500 154.5000 -64.0 + 162.5000 155.2500 -64.0 +} -64.0 +v 424 z -126.000000 -64.0 +{ -64.0 + 110.2500 34.5000 -64.0 + 110.2500 37.5000 -64.0 + 109.5000 39.2500 -64.0 + 109.2500 43.5000 -64.0 + 110.5000 43.7500 -64.0 + 111.5000 41.7500 -64.0 + 111.7500 34.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 43.5000 -64.0 + 92.2500 48.5000 -64.0 + 91.2500 50.5000 -64.0 + 92.7500 51.5000 -64.0 + 98.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 43.5000 -64.0 + 120.2500 44.5000 -64.0 + 123.2500 47.5000 -64.0 + 126.2500 52.5000 -64.0 + 127.5000 54.7500 -64.0 + 131.2500 57.5000 -64.0 + 132.7500 57.5000 -64.0 + 127.7500 53.5000 -64.0 + 127.7500 51.5000 -64.0 + 121.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 50.5000 -64.0 + 109.2500 55.5000 -64.0 + 110.5000 53.7500 -64.0 + 110.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 55.5000 -64.0 + 65.5000 56.2500 -64.0 + 63.5000 56.2500 -64.0 + 59.5000 59.2500 -64.0 + 56.2500 63.5000 -64.0 + 55.2500 65.5000 -64.0 + 52.5000 71.2500 -64.0 + 52.2500 73.5000 -64.0 + 63.5000 62.7500 -64.0 + 67.5000 62.7500 -64.0 + 71.7500 64.5000 -64.0 + 70.7500 61.5000 -64.0 + 68.5000 60.2500 -64.0 + 66.5000 61.2500 -64.0 + 65.7500 60.5000 -64.0 + 64.7500 58.5000 -64.0 + 68.5000 55.7500 -64.0 + 75.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 143.2500 57.5000 -64.0 + 141.2500 58.5000 -64.0 + 145.2500 59.5000 -64.0 + 151.5000 59.7500 -64.0 + 153.2500 61.5000 -64.0 + 152.5000 63.2500 -64.0 + 147.2500 63.5000 -64.0 + 145.2500 67.5000 -64.0 + 147.5000 65.7500 -64.0 + 149.5000 65.7500 -64.0 + 151.5000 64.7500 -64.0 + 152.2500 65.5000 -64.0 + 153.5000 64.7500 -64.0 + 155.5000 65.7500 -64.0 + 159.5000 70.7500 -64.0 + 161.5000 71.7500 -64.0 + 161.7500 69.5000 -64.0 + 159.7500 64.5000 -64.0 + 152.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 59.2500 76.5000 -64.0 + 58.2500 79.5000 -64.0 + 59.7500 80.5000 -64.0 + 61.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 79.5000 -64.0 + 152.2500 82.5000 -64.0 + 153.5000 85.7500 -64.0 + 155.5000 86.7500 -64.0 + 155.7500 81.5000 -64.0 + 154.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 88.2500 86.5000 -64.0 + 87.5000 87.2500 -64.0 + 88.5000 87.7500 -64.0 + 89.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 87.5000 -64.0 + 107.2500 89.5000 -64.0 + 107.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 87.5000 -64.0 + 127.2500 88.5000 -64.0 + 129.5000 89.7500 -64.0 + 129.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 123.2500 88.5000 -64.0 + 123.2500 90.5000 -64.0 + 124.5000 89.7500 -64.0 +} -64.0 +{ -64.0 + 93.2500 89.5000 -64.0 + 92.2500 91.5000 -64.0 + 93.5000 92.7500 -64.0 +} -64.0 +{ -64.0 + 124.2500 93.5000 -64.0 + 126.2500 95.5000 -64.0 + 127.5000 94.7500 -64.0 + 126.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 50.2500 97.5000 -64.0 + 47.5000 99.2500 -64.0 + 45.5000 99.2500 -64.0 + 44.2500 102.5000 -64.0 + 45.2500 105.5000 -64.0 + 47.5000 105.7500 -64.0 + 50.5000 104.7500 -64.0 + 52.2500 105.5000 -64.0 + 54.5000 104.7500 -64.0 + 54.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 73.2500 106.5000 -64.0 + 67.5000 110.2500 -64.0 + 66.7500 109.5000 -64.0 + 64.2500 109.5000 -64.0 + 67.2500 113.5000 -64.0 + 67.2500 117.5000 -64.0 + 65.5000 119.2500 -64.0 + 59.5000 121.2500 -64.0 + 55.7500 119.5000 -64.0 + 57.5000 118.7500 -64.0 + 54.7500 117.5000 -64.0 + 53.5000 118.2500 -64.0 + 49.5000 118.2500 -64.0 + 48.5000 120.2500 -64.0 + 48.5000 123.7500 -64.0 + 50.5000 122.7500 -64.0 + 56.5000 122.7500 -64.0 + 62.5000 120.7500 -64.0 + 66.5000 120.7500 -64.0 + 68.5000 119.7500 -64.0 + 70.5000 119.7500 -64.0 + 72.5000 117.7500 -64.0 + 75.5000 117.7500 -64.0 + 77.2500 119.5000 -64.0 + 77.2500 121.5000 -64.0 + 74.5000 124.2500 -64.0 + 70.7500 122.5000 -64.0 + 68.2500 127.5000 -64.0 + 70.2500 128.5000 -64.0 + 69.5000 130.2500 -64.0 + 68.5000 129.2500 -64.0 + 66.5000 130.2500 -64.0 + 62.5000 130.2500 -64.0 + 60.7500 128.5000 -64.0 + 58.5000 128.2500 -64.0 + 55.5000 129.2500 -64.0 + 61.2500 134.5000 -64.0 + 62.2500 136.5000 -64.0 + 63.5000 136.7500 -64.0 + 64.2500 138.5000 -64.0 + 60.5000 142.2500 -64.0 + 58.5000 142.2500 -64.0 + 57.5000 144.2500 -64.0 + 53.5000 146.2500 -64.0 + 51.7500 144.5000 -64.0 + 49.5000 145.2500 -64.0 + 49.2500 149.5000 -64.0 + 47.5000 150.2500 -64.0 + 45.2500 158.5000 -64.0 + 43.5000 159.2500 -64.0 + 41.7500 156.5000 -64.0 + 41.7500 152.5000 -64.0 + 38.7500 149.5000 -64.0 + 37.7500 147.5000 -64.0 + 38.7500 144.5000 -64.0 + 40.7500 143.5000 -64.0 + 39.7500 141.5000 -64.0 + 43.5000 135.7500 -64.0 + 48.5000 136.7500 -64.0 + 46.7500 134.5000 -64.0 + 41.7500 133.5000 -64.0 + 42.5000 132.7500 -64.0 + 46.5000 132.7500 -64.0 + 48.5000 130.7500 -64.0 + 49.2500 131.5000 -64.0 + 53.5000 131.7500 -64.0 + 54.7500 130.5000 -64.0 + 42.5000 129.2500 -64.0 + 39.2500 133.5000 -64.0 + 35.5000 141.2500 -64.0 + 35.2500 148.5000 -64.0 + 34.2500 153.5000 -64.0 + 35.2500 155.5000 -64.0 + 35.2500 159.5000 -64.0 + 36.2500 161.5000 -64.0 + 37.2500 170.5000 -64.0 + 39.2500 174.5000 -64.0 + 39.2500 176.5000 -64.0 + 44.2500 186.5000 -64.0 + 48.2500 190.5000 -64.0 + 59.2500 207.5000 -64.0 + 67.2500 215.5000 -64.0 + 71.5000 218.7500 -64.0 + 79.5000 222.7500 -64.0 + 86.2500 224.5000 -64.0 + 101.5000 224.7500 -64.0 + 103.5000 223.7500 -64.0 + 114.5000 224.7500 -64.0 + 116.5000 223.7500 -64.0 + 120.5000 223.7500 -64.0 + 126.5000 221.7500 -64.0 + 136.5000 215.7500 -64.0 + 147.5000 204.7500 -64.0 + 151.7500 198.5000 -64.0 + 158.5000 190.7500 -64.0 + 165.7500 179.5000 -64.0 + 170.7500 169.5000 -64.0 + 173.5000 157.7500 -64.0 + 173.7500 147.5000 -64.0 + 172.7500 145.5000 -64.0 + 171.7500 139.5000 -64.0 + 166.7500 133.5000 -64.0 + 163.5000 133.2500 -64.0 + 160.5000 134.2500 -64.0 + 155.7500 132.5000 -64.0 + 154.5000 133.2500 -64.0 + 152.7500 128.5000 -64.0 + 154.5000 126.7500 -64.0 + 161.5000 122.7500 -64.0 + 160.5000 122.2500 -64.0 + 156.5000 124.2500 -64.0 + 149.5000 124.2500 -64.0 + 136.5000 119.2500 -64.0 + 140.2500 124.5000 -64.0 + 137.5000 127.2500 -64.0 + 134.5000 127.2500 -64.0 + 133.2500 134.5000 -64.0 + 134.5000 134.7500 -64.0 + 134.7500 132.5000 -64.0 + 137.5000 129.7500 -64.0 + 141.2500 130.5000 -64.0 + 141.2500 135.5000 -64.0 + 137.2500 138.5000 -64.0 + 146.5000 141.7500 -64.0 + 147.2500 143.5000 -64.0 + 150.2500 145.5000 -64.0 + 152.5000 145.7500 -64.0 + 156.2500 148.5000 -64.0 + 162.2500 156.5000 -64.0 + 162.2500 158.5000 -64.0 + 163.2500 160.5000 -64.0 + 163.2500 164.5000 -64.0 + 154.2500 181.5000 -64.0 + 149.5000 187.2500 -64.0 + 146.5000 192.2500 -64.0 + 146.2500 194.5000 -64.0 + 143.5000 200.2500 -64.0 + 131.5000 209.2500 -64.0 + 117.5000 217.2500 -64.0 + 114.5000 217.2500 -64.0 + 109.5000 211.2500 -64.0 + 107.5000 212.2500 -64.0 + 105.5000 212.2500 -64.0 + 102.7500 208.5000 -64.0 + 101.5000 208.2500 -64.0 + 95.5000 215.2500 -64.0 + 83.5000 215.2500 -64.0 + 74.5000 211.2500 -64.0 + 68.5000 205.2500 -64.0 + 64.5000 203.2500 -64.0 + 59.7500 195.5000 -64.0 + 59.7500 193.5000 -64.0 + 53.7500 181.5000 -64.0 + 47.7500 174.5000 -64.0 + 47.7500 169.5000 -64.0 + 46.7500 167.5000 -64.0 + 46.7500 153.5000 -64.0 + 50.5000 150.7500 -64.0 + 52.5000 150.7500 -64.0 + 55.7500 148.5000 -64.0 + 58.5000 144.7500 -64.0 + 65.5000 140.7500 -64.0 + 75.5000 136.7500 -64.0 + 79.5000 132.7500 -64.0 + 77.7500 130.5000 -64.0 + 78.5000 128.7500 -64.0 + 79.2500 129.5000 -64.0 + 85.5000 129.7500 -64.0 + 85.7500 126.5000 -64.0 + 83.7500 125.5000 -64.0 + 82.7500 123.5000 -64.0 + 84.5000 121.7500 -64.0 + 84.7500 118.5000 -64.0 + 81.5000 120.2500 -64.0 + 80.7500 119.5000 -64.0 + 81.7500 116.5000 -64.0 + 79.7500 114.5000 -64.0 + 76.5000 114.2500 -64.0 + 74.7500 111.5000 -64.0 + 74.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 47.2500 108.5000 -64.0 + 47.5000 108.7500 -64.0 + 49.5000 109.7500 -64.0 + 53.2500 111.5000 -64.0 + 53.7500 110.5000 -64.0 + 51.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 102.2500 110.5000 -64.0 + 96.5000 113.2500 -64.0 + 93.5000 117.7500 -64.0 + 99.5000 113.7500 -64.0 + 102.5000 113.7500 -64.0 + 105.5000 112.7500 -64.0 + 110.5000 113.7500 -64.0 + 111.2500 115.5000 -64.0 + 113.5000 115.7500 -64.0 + 119.2500 119.5000 -64.0 + 119.7500 118.5000 -64.0 + 118.5000 118.2500 -64.0 + 116.5000 115.2500 -64.0 + 112.5000 113.2500 -64.0 + 109.5000 110.2500 -64.0 + 106.5000 111.2500 -64.0 +} -64.0 +{ -64.0 + 161.2500 111.5000 -64.0 + 149.5000 117.2500 -64.0 + 150.2500 119.5000 -64.0 + 160.5000 113.7500 -64.0 + 163.5000 113.7500 -64.0 + 164.7500 115.5000 -64.0 + 165.7500 113.5000 -64.0 + 164.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 113.5000 -64.0 + 135.2500 116.5000 -64.0 + 136.5000 117.7500 -64.0 + 138.5000 116.7500 -64.0 + 140.5000 116.7500 -64.0 + 140.7500 115.5000 -64.0 + 137.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 57.2500 114.5000 -64.0 + 58.2500 116.5000 -64.0 + 59.7500 116.5000 -64.0 + 58.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 162.2500 117.5000 -64.0 + 160.5000 118.2500 -64.0 + 159.5000 119.7500 -64.0 + 162.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 118.5000 -64.0 + 105.2500 119.5000 -64.0 + 110.5000 119.7500 -64.0 + 108.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 119.5000 -64.0 + 100.5000 120.2500 -64.0 + 98.5000 120.2500 -64.0 + 95.2500 123.5000 -64.0 + 93.2500 127.5000 -64.0 + 99.5000 121.7500 -64.0 + 103.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 121.5000 -64.0 + 117.5000 128.7500 -64.0 + 117.7500 124.5000 -64.0 + 114.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 122.5000 -64.0 + 122.2500 123.5000 -64.0 + 126.2500 129.5000 -64.0 + 125.5000 131.2500 -64.0 + 119.5000 131.2500 -64.0 + 120.2500 132.5000 -64.0 + 124.5000 133.7500 -64.0 + 128.5000 131.7500 -64.0 + 128.7500 127.5000 -64.0 + 126.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 43.2500 147.5000 -64.0 + 42.5000 151.2500 -64.0 + 43.7500 152.5000 -64.0 + 44.7500 150.5000 -64.0 +} -64.0 +{ -64.0 + 59.7500 61.5000 -64.0 + 60.5000 60.7500 -64.0 + 62.2500 61.5000 -64.0 + 58.5000 65.2500 -64.0 + 57.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 71.5000 109.7500 -64.0 + 73.2500 110.5000 -64.0 + 71.5000 112.2500 -64.0 + 69.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 76.7500 124.5000 -64.0 + 78.5000 123.7500 -64.0 + 79.2500 125.5000 -64.0 + 77.5000 127.2500 -64.0 + 75.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 80.7500 126.5000 -64.0 + 81.5000 125.7500 -64.0 + 82.2500 126.5000 -64.0 + 81.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 141.7500 126.5000 -64.0 + 142.5000 125.7500 -64.0 + 143.2500 126.5000 -64.0 + 142.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 142.7500 131.5000 -64.0 + 143.5000 130.7500 -64.0 + 145.5000 130.7500 -64.0 + 147.2500 132.5000 -64.0 + 148.2500 134.5000 -64.0 + 146.5000 135.2500 -64.0 + 146.2500 137.5000 -64.0 + 147.2500 139.5000 -64.0 + 146.5000 140.2500 -64.0 + 142.7500 136.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 135.5000 -64.0 + 153.5000 134.7500 -64.0 + 157.5000 134.7500 -64.0 + 159.2500 135.5000 -64.0 + 160.5000 134.7500 -64.0 + 162.2500 135.5000 -64.0 + 165.2500 139.5000 -64.0 + 167.5000 139.7500 -64.0 + 169.2500 141.5000 -64.0 + 168.5000 143.2500 -64.0 + 169.2500 144.5000 -64.0 + 168.5000 146.2500 -64.0 + 170.2500 148.5000 -64.0 + 171.2500 150.5000 -64.0 + 169.5000 152.2500 -64.0 + 171.2500 154.5000 -64.0 + 171.2500 157.5000 -64.0 + 165.5000 160.2500 -64.0 + 162.7500 157.5000 -64.0 + 163.5000 156.7500 -64.0 + 163.7500 154.5000 -64.0 + 164.5000 152.7500 -64.0 + 164.5000 150.2500 -64.0 + 162.5000 153.2500 -64.0 + 161.5000 152.2500 -64.0 + 156.7500 145.5000 -64.0 + 156.7500 143.5000 -64.0 + 153.5000 143.2500 -64.0 + 149.7500 140.5000 -64.0 + 149.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 140.7500 138.5000 -64.0 + 141.5000 137.7500 -64.0 + 143.2500 138.5000 -64.0 + 142.5000 139.2500 -64.0 +} -64.0 +v 396 z -128.000000 -64.0 +{ -64.0 + 111.2500 35.5000 -64.0 + 110.5000 36.2500 -64.0 + 108.5000 37.2500 -64.0 + 108.2500 38.5000 -64.0 + 110.2500 40.5000 -64.0 + 113.5000 40.7500 -64.0 + 113.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 41.5000 -64.0 + 99.5000 42.2500 -64.0 + 97.5000 43.2500 -64.0 + 92.5000 48.2500 -64.0 + 91.2500 54.5000 -64.0 + 92.5000 54.7500 -64.0 + 92.7500 51.5000 -64.0 + 95.5000 47.7500 -64.0 + 97.5000 46.7500 -64.0 + 99.5000 43.7500 -64.0 + 101.5000 42.7500 -64.0 + 101.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 41.5000 -64.0 + 109.2500 43.5000 -64.0 + 110.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 42.5000 -64.0 + 118.2500 43.5000 -64.0 + 122.2500 46.5000 -64.0 + 121.5000 47.7500 -64.0 + 123.5000 48.7500 -64.0 + 127.2500 54.5000 -64.0 + 127.5000 56.7500 -64.0 + 127.7500 51.5000 -64.0 + 123.5000 45.2500 -64.0 + 119.7500 42.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 51.5000 -64.0 + 109.5000 52.2500 -64.0 + 109.2500 57.5000 -64.0 + 110.5000 55.7500 -64.0 + 110.7500 52.5000 -64.0 +} -64.0 +{ -64.0 + 67.2500 55.5000 -64.0 + 62.5000 57.2500 -64.0 + 59.5000 60.2500 -64.0 + 56.5000 65.2500 -64.0 + 56.2500 68.5000 -64.0 + 64.5000 61.7500 -64.0 + 68.5000 61.7500 -64.0 + 73.7500 65.5000 -64.0 + 71.7500 60.5000 -64.0 + 66.5000 60.2500 -64.0 + 65.7500 58.5000 -64.0 + 67.5000 56.7500 -64.0 + 75.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 58.5000 -64.0 + 140.2500 59.5000 -64.0 + 142.5000 59.7500 -64.0 + 144.2500 61.5000 -64.0 + 144.2500 66.5000 -64.0 + 145.5000 66.7500 -64.0 + 149.5000 63.7500 -64.0 + 154.5000 63.7500 -64.0 + 154.7500 62.5000 -64.0 + 151.7500 59.5000 -64.0 + 146.5000 59.2500 -64.0 + 144.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 60.2500 75.5000 -64.0 + 59.5000 76.2500 -64.0 + 59.5000 81.7500 -64.0 + 61.5000 80.7500 -64.0 + 61.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 79.5000 -64.0 + 152.5000 80.2500 -64.0 + 152.2500 85.5000 -64.0 + 153.5000 86.7500 -64.0 + 155.5000 87.7500 -64.0 + 155.7500 84.5000 -64.0 + 154.7500 82.5000 -64.0 + 154.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 80.5000 -64.0 + 92.2500 81.5000 -64.0 + 93.2500 83.5000 -64.0 + 91.5000 85.2500 -64.0 + 93.2500 88.5000 -64.0 + 93.5000 90.7500 -64.0 + 93.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 82.5000 -64.0 + 123.2500 84.5000 -64.0 + 125.5000 83.7500 -64.0 +} -64.0 +{ -64.0 + 88.2500 83.5000 -64.0 + 87.5000 84.2500 -64.0 + 87.5000 86.7500 -64.0 + 89.5000 85.7500 -64.0 +} -64.0 +{ -64.0 + 126.2500 84.5000 -64.0 + 126.2500 87.5000 -64.0 + 129.5000 87.7500 -64.0 + 131.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 123.2500 87.5000 -64.0 + 123.2500 88.5000 -64.0 + 122.2500 91.5000 -64.0 + 123.5000 91.7500 -64.0 + 125.2500 92.5000 -64.0 + 126.7500 92.5000 -64.0 + 127.7500 90.5000 -64.0 + 126.5000 90.2500 -64.0 + 124.7500 89.5000 -64.0 + 124.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 48.2500 100.5000 -64.0 + 46.2500 102.5000 -64.0 + 48.7500 102.5000 -64.0 + 49.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 46.2500 107.5000 -64.0 + 44.5000 109.7500 -64.0 + 46.5000 108.7500 -64.0 + 54.5000 112.7500 -64.0 + 52.5000 110.2500 -64.0 + 48.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 71.2500 109.5000 -64.0 + 67.5000 112.2500 -64.0 + 69.2500 116.5000 -64.0 + 67.5000 118.2500 -64.0 + 61.5000 121.2500 -64.0 + 58.5000 121.2500 -64.0 + 55.5000 120.2500 -64.0 + 50.5000 119.2500 -64.0 + 48.5000 120.2500 -64.0 + 49.2500 121.5000 -64.0 + 53.2500 122.5000 -64.0 + 60.5000 122.7500 -64.0 + 62.5000 121.7500 -64.0 + 64.5000 121.7500 -64.0 + 66.5000 122.7500 -64.0 + 68.5000 121.7500 -64.0 + 70.5000 121.7500 -64.0 + 70.7500 119.5000 -64.0 + 72.5000 117.7500 -64.0 + 76.5000 117.7500 -64.0 + 78.5000 116.7500 -64.0 + 78.5000 115.2500 -64.0 + 74.7500 113.5000 -64.0 + 74.7500 111.5000 -64.0 + 73.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 160.2500 110.5000 -64.0 + 159.5000 111.2500 -64.0 + 155.5000 114.2500 -64.0 + 150.5000 117.2500 -64.0 + 152.5000 119.7500 -64.0 + 152.7500 117.5000 -64.0 + 155.5000 115.7500 -64.0 + 157.5000 115.7500 -64.0 + 159.5000 113.7500 -64.0 + 161.2500 114.5000 -64.0 + 160.2500 117.5000 -64.0 + 157.5000 119.2500 -64.0 + 158.5000 119.7500 -64.0 + 161.5000 118.7500 -64.0 + 164.5000 114.7500 -64.0 + 164.7500 112.5000 -64.0 + 161.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 102.2500 112.5000 -64.0 + 101.5000 113.2500 -64.0 + 99.5000 113.2500 -64.0 + 96.5000 114.2500 -64.0 + 94.2500 116.5000 -64.0 + 97.5000 116.7500 -64.0 + 99.5000 115.7500 -64.0 + 101.5000 115.7500 -64.0 + 105.5000 113.7500 -64.0 + 108.5000 114.7500 -64.0 + 109.2500 116.5000 -64.0 + 112.5000 116.7500 -64.0 + 114.2500 118.5000 -64.0 + 118.5000 119.7500 -64.0 + 117.5000 117.2500 -64.0 + 113.7500 114.5000 -64.0 + 111.5000 114.2500 -64.0 + 109.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 55.2500 113.5000 -64.0 + 58.2500 115.5000 -64.0 + 59.7500 115.5000 -64.0 + 56.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 114.5000 -64.0 + 137.2500 116.5000 -64.0 + 138.7500 116.5000 -64.0 + 139.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 119.5000 -64.0 + 99.5000 120.2500 -64.0 + 94.5000 126.2500 -64.0 + 94.2500 128.5000 -64.0 + 95.7500 125.5000 -64.0 + 98.5000 122.7500 -64.0 + 103.5000 119.7500 -64.0 + 107.5000 119.7500 -64.0 + 112.5000 121.7500 -64.0 + 115.2500 124.5000 -64.0 + 118.5000 130.7500 -64.0 + 118.7500 128.5000 -64.0 + 117.7500 126.5000 -64.0 + 117.7500 124.5000 -64.0 + 115.5000 122.2500 -64.0 + 109.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 79.2500 121.5000 -64.0 + 73.5000 124.2500 -64.0 + 71.5000 128.2500 -64.0 + 68.5000 128.2500 -64.0 + 66.5000 131.2500 -64.0 + 61.7500 128.5000 -64.0 + 58.5000 128.2500 -64.0 + 53.2500 130.5000 -64.0 + 55.5000 130.7500 -64.0 + 59.5000 132.7500 -64.0 + 61.2500 136.5000 -64.0 + 63.5000 136.7500 -64.0 + 67.5000 133.7500 -64.0 + 68.2500 135.5000 -64.0 + 66.5000 137.2500 -64.0 + 64.5000 137.2500 -64.0 + 64.2500 138.5000 -64.0 + 65.5000 137.7500 -64.0 + 70.5000 137.7500 -64.0 + 75.5000 135.7500 -64.0 + 78.7500 131.5000 -64.0 + 77.7500 129.5000 -64.0 + 77.7500 127.5000 -64.0 + 81.5000 125.7500 -64.0 + 83.2500 126.5000 -64.0 + 86.2500 131.5000 -64.0 + 92.7500 131.5000 -64.0 + 88.5000 130.2500 -64.0 + 84.7500 126.5000 -64.0 + 86.7500 122.5000 -64.0 + 82.5000 124.2500 -64.0 + 81.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 121.5000 -64.0 + 120.2500 122.5000 -64.0 + 126.2500 128.5000 -64.0 + 127.2500 130.5000 -64.0 + 125.5000 132.2500 -64.0 + 119.5000 132.2500 -64.0 + 120.5000 133.7500 -64.0 + 125.5000 134.7500 -64.0 + 129.5000 132.7500 -64.0 + 129.7500 128.5000 -64.0 + 128.7500 126.5000 -64.0 + 126.5000 126.2500 -64.0 + 124.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 121.5000 -64.0 + 141.2500 123.5000 -64.0 + 142.2500 130.5000 -64.0 + 144.5000 130.7500 -64.0 + 148.2500 132.5000 -64.0 + 147.2500 135.5000 -64.0 + 149.2500 136.5000 -64.0 + 148.5000 137.2500 -64.0 + 145.5000 137.2500 -64.0 + 142.5000 136.2500 -64.0 + 141.5000 134.2500 -64.0 + 138.2500 139.5000 -64.0 + 142.5000 136.7500 -64.0 + 146.2500 139.5000 -64.0 + 145.5000 140.2500 -64.0 + 142.5000 139.2500 -64.0 + 142.2500 140.5000 -64.0 + 144.5000 140.7500 -64.0 + 149.2500 144.5000 -64.0 + 152.5000 144.7500 -64.0 + 155.2500 147.5000 -64.0 + 162.2500 157.5000 -64.0 + 162.2500 163.5000 -64.0 + 160.5000 164.2500 -64.0 + 157.2500 163.5000 -64.0 + 156.2500 170.5000 -64.0 + 157.2500 172.5000 -64.0 + 154.2500 179.5000 -64.0 + 147.2500 188.5000 -64.0 + 144.2500 195.5000 -64.0 + 141.5000 199.2500 -64.0 + 124.5000 211.2500 -64.0 + 122.5000 211.2500 -64.0 + 118.5000 214.2500 -64.0 + 115.5000 214.2500 -64.0 + 109.7500 209.5000 -64.0 + 108.5000 210.2500 -64.0 + 105.5000 210.2500 -64.0 + 103.7500 208.5000 -64.0 + 103.7500 205.5000 -64.0 + 100.2500 205.5000 -64.0 + 98.2500 209.5000 -64.0 + 94.5000 213.2500 -64.0 + 87.5000 213.2500 -64.0 + 85.5000 214.2500 -64.0 + 79.5000 212.2500 -64.0 + 72.5000 207.2500 -64.0 + 71.5000 205.2500 -64.0 + 63.7500 199.5000 -64.0 + 61.7500 195.5000 -64.0 + 61.7500 192.5000 -64.0 + 60.7500 189.5000 -64.0 + 56.7500 184.5000 -64.0 + 48.7500 169.5000 -64.0 + 48.7500 166.5000 -64.0 + 47.7500 164.5000 -64.0 + 47.7500 155.5000 -64.0 + 51.5000 150.7500 -64.0 + 56.7500 146.5000 -64.0 + 59.5000 142.7500 -64.0 + 63.5000 139.7500 -64.0 + 62.5000 139.2500 -64.0 + 51.5000 146.2500 -64.0 + 49.5000 146.2500 -64.0 + 45.2500 157.5000 -64.0 + 43.5000 158.2500 -64.0 + 41.7500 157.5000 -64.0 + 40.7500 149.5000 -64.0 + 38.7500 148.5000 -64.0 + 38.7500 144.5000 -64.0 + 37.7500 141.5000 -64.0 + 42.5000 135.7500 -64.0 + 45.5000 137.7500 -64.0 + 46.5000 135.7500 -64.0 + 45.7500 133.5000 -64.0 + 46.5000 131.7500 -64.0 + 50.2500 132.5000 -64.0 + 52.7500 131.5000 -64.0 + 44.7500 129.5000 -64.0 + 42.5000 130.2500 -64.0 + 39.2500 134.5000 -64.0 + 37.2500 138.5000 -64.0 + 35.5000 146.2500 -64.0 + 35.2500 155.5000 -64.0 + 37.2500 161.5000 -64.0 + 37.2500 168.5000 -64.0 + 39.2500 172.5000 -64.0 + 39.2500 174.5000 -64.0 + 42.2500 180.5000 -64.0 + 59.2500 205.5000 -64.0 + 66.5000 212.7500 -64.0 + 74.5000 218.7500 -64.0 + 80.5000 221.7500 -64.0 + 90.5000 223.7500 -64.0 + 92.5000 222.7500 -64.0 + 97.5000 223.7500 -64.0 + 99.5000 222.7500 -64.0 + 100.2500 223.5000 -64.0 + 102.5000 223.7500 -64.0 + 104.5000 222.7500 -64.0 + 118.5000 222.7500 -64.0 + 127.5000 219.7500 -64.0 + 135.5000 214.7500 -64.0 + 140.5000 209.7500 -64.0 + 142.5000 208.7500 -64.0 + 161.5000 185.7500 -64.0 + 161.7500 183.5000 -64.0 + 166.7500 175.5000 -64.0 + 170.5000 167.7500 -64.0 + 172.5000 158.7500 -64.0 + 172.7500 146.5000 -64.0 + 171.7500 144.5000 -64.0 + 171.7500 142.5000 -64.0 + 168.7500 136.5000 -64.0 + 164.5000 133.2500 -64.0 + 162.5000 134.2500 -64.0 + 158.5000 133.2500 -64.0 + 155.7500 130.5000 -64.0 + 155.7500 127.5000 -64.0 + 160.5000 122.7500 -64.0 + 159.5000 122.2500 -64.0 + 157.5000 124.2500 -64.0 + 154.5000 124.2500 -64.0 + 151.5000 125.2500 -64.0 + 143.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 153.7500 134.5000 -64.0 + 154.5000 133.7500 -64.0 + 156.2500 134.5000 -64.0 + 161.5000 134.7500 -64.0 + 162.2500 136.5000 -64.0 + 164.2500 137.5000 -64.0 + 165.2500 139.5000 -64.0 + 167.5000 139.7500 -64.0 + 169.2500 140.5000 -64.0 + 169.2500 143.5000 -64.0 + 170.2500 145.5000 -64.0 + 168.5000 148.2500 -64.0 + 170.2500 153.5000 -64.0 + 169.5000 155.2500 -64.0 + 169.2500 158.5000 -64.0 + 167.5000 160.2500 -64.0 + 165.7500 159.5000 -64.0 + 163.7500 155.5000 -64.0 + 164.5000 153.7500 -64.0 + 163.5000 153.2500 -64.0 + 159.7500 151.5000 -64.0 + 156.7500 146.5000 -64.0 + 156.7500 144.5000 -64.0 + 155.5000 144.2500 -64.0 + 152.5000 141.2500 -64.0 + 150.5000 140.2500 -64.0 + 148.7500 139.5000 -64.0 + 149.5000 138.7500 -64.0 + 151.5000 137.7500 -64.0 +} -64.0 +v 408 z -130.000000 -64.0 +{ -64.0 + 104.2500 39.5000 -64.0 + 94.2500 45.5000 -64.0 + 92.2500 49.5000 -64.0 + 93.5000 49.7500 -64.0 + 93.7500 48.5000 -64.0 + 95.7500 47.5000 -64.0 + 96.7500 45.5000 -64.0 + 101.5000 42.7500 -64.0 + 102.2500 43.5000 -64.0 + 97.5000 48.2500 -64.0 + 97.5000 49.7500 -64.0 + 102.5000 45.7500 -64.0 + 102.7500 43.5000 -64.0 + 106.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 40.5000 -64.0 + 107.2500 41.5000 -64.0 + 108.5000 41.7500 -64.0 +} -64.0 +{ -64.0 + 115.2500 40.5000 -64.0 + 115.5000 41.7500 -64.0 + 119.5000 43.7500 -64.0 + 127.2500 52.5000 -64.0 + 127.7500 51.5000 -64.0 + 124.7500 45.5000 -64.0 + 116.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 42.5000 -64.0 + 109.2500 44.5000 -64.0 + 110.5000 44.7500 -64.0 + 112.5000 43.7500 -64.0 + 110.7500 42.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 44.5000 -64.0 + 117.2500 47.5000 -64.0 + 122.2500 50.5000 -64.0 + 122.7500 49.5000 -64.0 + 115.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 49.5000 -64.0 + 108.5000 52.2500 -64.0 + 108.5000 69.7500 -64.0 + 111.5000 57.7500 -64.0 + 111.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 67.2500 56.5000 -64.0 + 63.5000 59.2500 -64.0 + 65.2500 60.5000 -64.0 + 71.5000 61.7500 -64.0 + 74.5000 64.7500 -64.0 + 74.7500 58.5000 -64.0 + 78.7500 56.5000 -64.0 + 75.5000 56.2500 -64.0 + 72.5000 57.2500 -64.0 + 70.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 138.2500 59.5000 -64.0 + 139.5000 59.7500 -64.0 + 142.2500 63.5000 -64.0 + 142.2500 65.5000 -64.0 + 143.7500 65.5000 -64.0 + 145.7500 61.5000 -64.0 + 143.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 61.2500 75.5000 -64.0 + 60.2500 77.5000 -64.0 + 59.2500 82.5000 -64.0 + 61.5000 82.7500 -64.0 + 62.5000 80.7500 -64.0 + 62.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 79.5000 -64.0 + 151.2500 83.5000 -64.0 + 152.2500 85.5000 -64.0 + 152.2500 87.5000 -64.0 + 155.5000 89.7500 -64.0 + 155.7500 86.5000 -64.0 + 154.7500 84.5000 -64.0 + 154.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 80.5000 -64.0 + 125.2500 82.5000 -64.0 + 126.2500 84.5000 -64.0 + 126.2500 86.5000 -64.0 + 131.5000 85.7500 -64.0 + 132.5000 84.2500 -64.0 + 127.5000 83.2500 -64.0 +} -64.0 +{ -64.0 + 86.2500 82.5000 -64.0 + 86.2500 84.5000 -64.0 + 87.5000 85.7500 -64.0 + 89.5000 84.7500 -64.0 + 91.2500 85.5000 -64.0 + 92.2500 87.5000 -64.0 + 93.5000 87.7500 -64.0 + 93.7500 85.5000 -64.0 + 92.7500 83.5000 -64.0 + 90.5000 84.2500 -64.0 + 89.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 123.2500 86.5000 -64.0 + 123.2500 89.5000 -64.0 + 124.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 45.2500 107.5000 -64.0 + 44.5000 108.2500 -64.0 + 44.2500 110.5000 -64.0 + 45.5000 110.7500 -64.0 + 45.7500 109.5000 -64.0 + 47.5000 108.7500 -64.0 + 49.2500 110.5000 -64.0 + 51.5000 110.7500 -64.0 + 57.5000 115.7500 -64.0 + 59.5000 116.7500 -64.0 + 59.5000 115.2500 -64.0 + 55.5000 113.2500 -64.0 + 49.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 159.2500 109.5000 -64.0 + 152.5000 115.2500 -64.0 + 152.2500 118.5000 -64.0 + 154.2500 119.5000 -64.0 + 157.5000 119.7500 -64.0 + 161.5000 117.7500 -64.0 + 162.7500 113.5000 -64.0 + 160.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 110.5000 -64.0 + 68.5000 112.2500 -64.0 + 69.2500 114.5000 -64.0 + 71.2500 115.5000 -64.0 + 62.5000 121.2500 -64.0 + 54.5000 121.2500 -64.0 + 52.7500 119.5000 -64.0 + 49.5000 119.2500 -64.0 + 49.2500 120.5000 -64.0 + 60.2500 125.5000 -64.0 + 57.2500 127.5000 -64.0 + 56.2500 129.5000 -64.0 + 58.5000 132.7500 -64.0 + 60.5000 133.7500 -64.0 + 61.2500 135.5000 -64.0 + 63.5000 135.7500 -64.0 + 63.7500 134.5000 -64.0 + 62.7500 132.5000 -64.0 + 65.5000 130.7500 -64.0 + 63.7500 129.5000 -64.0 + 63.7500 127.5000 -64.0 + 65.5000 125.7500 -64.0 + 68.2500 130.5000 -64.0 + 67.5000 131.2500 -64.0 + 68.2500 132.5000 -64.0 + 67.5000 134.2500 -64.0 + 69.5000 137.7500 -64.0 + 77.7500 134.5000 -64.0 + 78.7500 132.5000 -64.0 + 77.7500 130.5000 -64.0 + 77.7500 125.5000 -64.0 + 76.7500 123.5000 -64.0 + 73.5000 123.2500 -64.0 + 71.7500 121.5000 -64.0 + 71.7500 119.5000 -64.0 + 75.7500 116.5000 -64.0 + 76.7500 114.5000 -64.0 + 74.7500 112.5000 -64.0 + 75.5000 111.7500 -64.0 + 74.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 113.5000 -64.0 + 98.5000 116.2500 -64.0 + 95.5000 116.2500 -64.0 + 93.2500 118.5000 -64.0 + 97.5000 118.7500 -64.0 + 99.5000 117.7500 -64.0 + 102.5000 117.7500 -64.0 + 105.5000 114.7500 -64.0 + 114.2500 119.5000 -64.0 + 116.5000 119.7500 -64.0 + 115.7500 118.5000 -64.0 + 107.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 120.5000 -64.0 + 87.5000 122.2500 -64.0 + 83.5000 124.2500 -64.0 + 83.2500 130.5000 -64.0 + 86.2500 132.5000 -64.0 + 92.7500 132.5000 -64.0 + 93.7500 130.5000 -64.0 + 92.5000 131.2500 -64.0 + 87.5000 131.2500 -64.0 + 84.7500 128.5000 -64.0 + 84.7500 126.5000 -64.0 + 89.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 120.5000 -64.0 + 98.5000 121.2500 -64.0 + 94.5000 126.2500 -64.0 + 94.2500 129.5000 -64.0 + 95.5000 127.7500 -64.0 + 95.7500 125.5000 -64.0 + 97.5000 123.7500 -64.0 + 103.5000 120.7500 -64.0 +} -64.0 +{ -64.0 + 108.2500 120.5000 -64.0 + 115.5000 123.7500 -64.0 + 117.2500 126.5000 -64.0 + 119.5000 132.7500 -64.0 + 123.2500 135.5000 -64.0 + 129.5000 135.7500 -64.0 + 130.7500 128.5000 -64.0 + 129.5000 127.2500 -64.0 + 126.5000 128.2500 -64.0 + 126.2500 129.5000 -64.0 + 129.2500 130.5000 -64.0 + 126.5000 133.2500 -64.0 + 121.5000 132.2500 -64.0 + 118.7500 129.5000 -64.0 + 118.7500 127.5000 -64.0 + 116.7500 122.5000 -64.0 + 112.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 120.5000 -64.0 + 117.5000 121.7500 -64.0 + 123.2500 125.5000 -64.0 + 123.2500 127.5000 -64.0 + 124.7500 127.5000 -64.0 + 123.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 121.5000 -64.0 + 141.2500 122.5000 -64.0 + 144.2500 128.5000 -64.0 + 143.2500 131.5000 -64.0 + 144.5000 130.7500 -64.0 + 146.2500 132.5000 -64.0 + 148.2500 136.5000 -64.0 + 147.2500 138.5000 -64.0 + 148.5000 138.7500 -64.0 + 150.2500 139.5000 -64.0 + 148.5000 141.2500 -64.0 + 145.5000 141.2500 -64.0 + 148.2500 143.5000 -64.0 + 151.5000 143.7500 -64.0 + 155.2500 147.5000 -64.0 + 157.2500 151.5000 -64.0 + 158.7500 150.5000 -64.0 + 156.7500 144.5000 -64.0 + 155.5000 144.2500 -64.0 + 150.7500 138.5000 -64.0 + 151.7500 136.5000 -64.0 + 154.5000 133.7500 -64.0 + 157.5000 133.7500 -64.0 + 160.5000 134.7500 -64.0 + 162.2500 135.5000 -64.0 + 163.2500 137.5000 -64.0 + 164.5000 137.7500 -64.0 + 165.2500 139.5000 -64.0 + 168.2500 141.5000 -64.0 + 168.2500 143.5000 -64.0 + 169.2500 146.5000 -64.0 + 168.5000 148.2500 -64.0 + 170.2500 150.5000 -64.0 + 170.2500 152.5000 -64.0 + 168.5000 154.2500 -64.0 + 169.2500 155.5000 -64.0 + 169.2500 159.5000 -64.0 + 166.5000 162.2500 -64.0 + 164.7500 161.5000 -64.0 + 164.5000 158.2500 -64.0 + 162.5000 157.2500 -64.0 + 160.7500 156.5000 -64.0 + 159.7500 154.5000 -64.0 + 157.5000 154.2500 -64.0 + 157.2500 155.5000 -64.0 + 156.5000 157.2500 -64.0 + 156.2500 171.5000 -64.0 + 154.2500 177.5000 -64.0 + 150.2500 182.5000 -64.0 + 147.5000 186.2500 -64.0 + 144.2500 190.5000 -64.0 + 143.2500 192.5000 -64.0 + 138.2500 197.5000 -64.0 + 134.5000 204.2500 -64.0 + 128.5000 207.2500 -64.0 + 125.5000 207.2500 -64.0 + 119.5000 210.2500 -64.0 + 116.5000 210.2500 -64.0 + 114.7500 209.5000 -64.0 + 113.7500 207.5000 -64.0 + 112.5000 207.2500 -64.0 + 110.5000 208.2500 -64.0 + 106.5000 208.2500 -64.0 + 104.7500 205.5000 -64.0 + 104.7500 202.5000 -64.0 + 102.7500 200.5000 -64.0 + 102.7500 198.5000 -64.0 + 101.5000 198.2500 -64.0 + 99.2500 203.5000 -64.0 + 93.5000 210.2500 -64.0 + 89.5000 210.2500 -64.0 + 85.5000 212.2500 -64.0 + 83.5000 212.2500 -64.0 + 80.5000 211.2500 -64.0 + 70.5000 202.2500 -64.0 + 66.5000 200.2500 -64.0 + 63.7500 196.5000 -64.0 + 63.7500 193.5000 -64.0 + 61.7500 187.5000 -64.0 + 57.7500 183.5000 -64.0 + 51.7500 172.5000 -64.0 + 48.7500 167.5000 -64.0 + 48.7500 165.5000 -64.0 + 47.7500 163.5000 -64.0 + 47.7500 161.5000 -64.0 + 46.7500 159.5000 -64.0 + 46.7500 157.5000 -64.0 + 50.7500 148.5000 -64.0 + 53.5000 146.7500 -64.0 + 57.5000 144.7500 -64.0 + 61.7500 140.5000 -64.0 + 59.5000 140.2500 -64.0 + 55.5000 143.2500 -64.0 + 53.5000 143.2500 -64.0 + 50.2500 145.5000 -64.0 + 49.2500 147.5000 -64.0 + 48.5000 149.2500 -64.0 + 46.2500 149.5000 -64.0 + 47.2500 151.5000 -64.0 + 45.2500 155.5000 -64.0 + 44.5000 157.2500 -64.0 + 42.7500 156.5000 -64.0 + 42.7500 154.5000 -64.0 + 44.5000 153.7500 -64.0 + 44.5000 152.2500 -64.0 + 42.5000 153.2500 -64.0 + 40.5000 152.2500 -64.0 + 38.7500 147.5000 -64.0 + 39.7500 144.5000 -64.0 + 37.7500 142.5000 -64.0 + 39.7500 139.5000 -64.0 + 40.7500 137.5000 -64.0 + 47.5000 134.7500 -64.0 + 46.7500 132.5000 -64.0 + 48.5000 131.7500 -64.0 + 50.5000 132.7500 -64.0 + 53.5000 131.7500 -64.0 + 53.5000 130.2500 -64.0 + 51.5000 131.2500 -64.0 + 49.5000 131.2500 -64.0 + 46.5000 130.2500 -64.0 + 44.7500 129.5000 -64.0 + 43.5000 130.2500 -64.0 + 40.2500 134.5000 -64.0 + 38.2500 138.5000 -64.0 + 37.5000 140.2500 -64.0 + 37.2500 143.5000 -64.0 + 36.5000 145.2500 -64.0 + 36.2500 155.5000 -64.0 + 37.2500 157.5000 -64.0 + 37.2500 165.5000 -64.0 + 40.2500 171.5000 -64.0 + 40.2500 173.5000 -64.0 + 47.2500 187.5000 -64.0 + 53.2500 194.5000 -64.0 + 54.2500 196.5000 -64.0 + 61.2500 204.5000 -64.0 + 62.2500 206.5000 -64.0 + 70.2500 213.5000 -64.0 + 74.5000 216.7500 -64.0 + 82.5000 220.7500 -64.0 + 84.2500 221.5000 -64.0 + 116.5000 221.7500 -64.0 + 118.5000 220.7500 -64.0 + 121.5000 220.7500 -64.0 + 129.5000 216.7500 -64.0 + 133.5000 213.7500 -64.0 + 135.5000 212.7500 -64.0 + 140.5000 207.7500 -64.0 + 142.7500 206.5000 -64.0 + 143.7500 204.5000 -64.0 + 149.7500 198.5000 -64.0 + 158.7500 188.5000 -64.0 + 169.7500 166.5000 -64.0 + 170.5000 164.7500 -64.0 + 170.7500 161.5000 -64.0 + 171.5000 159.7500 -64.0 + 171.7500 145.5000 -64.0 + 169.7500 141.5000 -64.0 + 169.7500 139.5000 -64.0 + 164.7500 133.5000 -64.0 + 160.5000 133.2500 -64.0 + 158.7500 131.5000 -64.0 + 157.7500 129.5000 -64.0 + 158.7500 124.5000 -64.0 + 157.5000 123.2500 -64.0 + 153.5000 125.2500 -64.0 + 151.5000 125.2500 -64.0 + 148.5000 124.2500 -64.0 + 145.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 134.5000 -64.0 + 138.5000 136.2500 -64.0 + 138.2500 138.5000 -64.0 + 139.2500 140.5000 -64.0 + 143.7500 140.5000 -64.0 + 140.5000 140.2500 -64.0 + 139.7500 138.5000 -64.0 + 140.7500 135.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 138.5000 -64.0 + 62.2500 139.5000 -64.0 + 63.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 155.7500 115.5000 -64.0 + 157.5000 114.7500 -64.0 + 159.2500 115.5000 -64.0 + 158.5000 117.2500 -64.0 + 156.5000 118.2500 -64.0 + 154.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 66.7500 121.5000 -64.0 + 68.5000 120.7500 -64.0 + 70.2500 121.5000 -64.0 + 69.5000 123.2500 -64.0 + 67.5000 124.2500 -64.0 + 65.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 68.7500 130.5000 -64.0 + 69.5000 129.7500 -64.0 + 71.5000 129.7500 -64.0 + 73.2500 130.5000 -64.0 + 74.2500 132.5000 -64.0 + 72.5000 134.2500 -64.0 + 70.5000 134.2500 -64.0 + 68.7500 132.5000 -64.0 +} -64.0 +v 390 z -132.000000 -64.0 +{ -64.0 + 105.2500 38.5000 -64.0 + 101.5000 41.2500 -64.0 + 95.2500 43.5000 -64.0 + 92.2500 49.5000 -64.0 + 97.5000 44.7500 -64.0 + 106.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 39.5000 -64.0 + 115.2500 40.5000 -64.0 + 118.5000 42.7500 -64.0 + 120.5000 43.7500 -64.0 + 125.2500 49.5000 -64.0 + 126.2500 51.5000 -64.0 + 128.2500 52.5000 -64.0 + 128.7500 51.5000 -64.0 + 125.7500 47.5000 -64.0 + 125.7500 45.5000 -64.0 + 124.5000 44.2500 -64.0 + 118.5000 41.2500 -64.0 +} -64.0 +{ -64.0 + 105.2500 43.5000 -64.0 + 103.5000 45.2500 -64.0 + 103.2500 47.5000 -64.0 + 101.5000 49.2500 -64.0 + 100.7500 48.5000 -64.0 + 95.5000 50.2500 -64.0 + 95.2500 53.5000 -64.0 + 96.5000 54.7500 -64.0 + 102.5000 50.7500 -64.0 + 104.2500 51.5000 -64.0 + 103.2500 54.5000 -64.0 + 106.2500 58.5000 -64.0 + 106.2500 64.5000 -64.0 + 108.2500 68.5000 -64.0 + 108.2500 73.5000 -64.0 + 109.5000 72.7500 -64.0 + 109.7500 70.5000 -64.0 + 117.5000 56.7500 -64.0 + 120.5000 56.7500 -64.0 + 124.2500 62.5000 -64.0 + 125.5000 62.7500 -64.0 + 125.7500 58.5000 -64.0 + 120.5000 51.2500 -64.0 + 116.7500 49.5000 -64.0 + 116.7500 47.5000 -64.0 + 112.7500 43.5000 -64.0 + 110.5000 43.2500 -64.0 + 108.5000 44.2500 -64.0 + 107.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 79.2500 56.5000 -64.0 + 78.5000 57.2500 -64.0 + 75.5000 57.2500 -64.0 + 73.5000 59.2500 -64.0 + 75.5000 61.7500 -64.0 + 77.5000 62.7500 -64.0 + 77.7500 59.5000 -64.0 + 80.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 58.5000 -64.0 + 138.2500 60.5000 -64.0 + 140.2500 64.5000 -64.0 + 141.5000 63.7500 -64.0 + 141.7500 61.5000 -64.0 + 136.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 60.2500 76.5000 -64.0 + 60.2500 77.5000 -64.0 + 59.2500 84.5000 -64.0 + 60.5000 84.7500 -64.0 + 62.7500 81.5000 -64.0 + 63.7500 79.5000 -64.0 + 62.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 77.5000 -64.0 + 90.2500 78.5000 -64.0 + 87.5000 81.2500 -64.0 + 84.5000 81.2500 -64.0 + 86.2500 83.5000 -64.0 + 87.5000 82.7500 -64.0 + 88.2500 84.5000 -64.0 + 90.5000 84.7500 -64.0 + 92.5000 86.7500 -64.0 + 92.5000 84.2500 -64.0 + 90.5000 83.2500 -64.0 + 89.7500 81.5000 -64.0 + 91.5000 79.7500 -64.0 +} -64.0 +{ -64.0 + 126.2500 80.5000 -64.0 + 126.2500 83.5000 -64.0 + 127.2500 86.5000 -64.0 + 129.5000 84.7500 -64.0 + 132.5000 84.7500 -64.0 + 133.7500 83.5000 -64.0 + 129.7500 82.5000 -64.0 + 128.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 80.5000 -64.0 + 151.5000 81.2500 -64.0 + 151.2500 86.5000 -64.0 + 152.2500 89.5000 -64.0 + 155.5000 92.7500 -64.0 + 155.7500 88.5000 -64.0 + 154.7500 86.5000 -64.0 + 154.7500 83.5000 -64.0 + 153.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 85.5000 -64.0 + 123.5000 86.2500 -64.0 + 123.2500 88.5000 -64.0 + 125.5000 86.7500 -64.0 +} -64.0 +{ -64.0 + 48.2500 106.5000 -64.0 + 46.5000 107.2500 -64.0 + 46.2500 111.5000 -64.0 + 48.5000 114.7500 -64.0 + 50.5000 115.7500 -64.0 + 48.7500 112.5000 -64.0 + 49.5000 110.7500 -64.0 + 51.5000 110.7500 -64.0 + 54.5000 113.7500 -64.0 + 56.5000 114.7500 -64.0 + 57.2500 116.5000 -64.0 + 58.7500 116.5000 -64.0 + 57.7500 113.5000 -64.0 + 53.5000 111.2500 -64.0 + 50.7500 106.5000 -64.0 +} -64.0 +{ -64.0 + 157.2500 107.5000 -64.0 + 156.2500 110.5000 -64.0 + 153.5000 113.2500 -64.0 + 153.2500 116.5000 -64.0 + 154.2500 118.5000 -64.0 + 158.7500 118.5000 -64.0 + 161.5000 114.7500 -64.0 + 160.7500 113.5000 -64.0 + 160.7500 109.5000 -64.0 + 158.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 74.2500 110.5000 -64.0 + 72.2500 111.5000 -64.0 + 71.2500 113.5000 -64.0 + 73.2500 114.5000 -64.0 + 71.5000 116.2500 -64.0 + 60.5000 122.2500 -64.0 + 57.5000 122.2500 -64.0 + 51.5000 119.2500 -64.0 + 51.2500 121.5000 -64.0 + 54.2500 124.5000 -64.0 + 55.2500 126.5000 -64.0 + 52.5000 129.2500 -64.0 + 48.5000 131.2500 -64.0 + 44.7500 129.5000 -64.0 + 42.2500 132.5000 -64.0 + 38.5000 139.2500 -64.0 + 37.5000 144.2500 -64.0 + 37.2500 156.5000 -64.0 + 38.2500 158.5000 -64.0 + 38.2500 163.5000 -64.0 + 41.2500 169.5000 -64.0 + 41.2500 172.5000 -64.0 + 49.2500 188.5000 -64.0 + 56.2500 195.5000 -64.0 + 57.2500 197.5000 -64.0 + 64.2500 205.5000 -64.0 + 77.5000 216.7500 -64.0 + 83.2500 219.5000 -64.0 + 92.5000 219.7500 -64.0 + 94.2500 220.5000 -64.0 + 108.5000 220.7500 -64.0 + 110.5000 219.7500 -64.0 + 118.5000 219.7500 -64.0 + 127.5000 216.7500 -64.0 + 135.5000 210.7500 -64.0 + 156.5000 189.7500 -64.0 + 160.7500 183.5000 -64.0 + 168.7500 167.5000 -64.0 + 171.7500 151.5000 -64.0 + 170.7500 149.5000 -64.0 + 170.5000 144.2500 -64.0 + 167.7500 137.5000 -64.0 + 159.7500 130.5000 -64.0 + 159.7500 127.5000 -64.0 + 157.5000 123.2500 -64.0 + 153.5000 125.2500 -64.0 + 150.5000 125.2500 -64.0 + 147.5000 122.2500 -64.0 + 143.5000 120.2500 -64.0 + 143.5000 125.7500 -64.0 + 147.2500 128.5000 -64.0 + 147.2500 130.5000 -64.0 + 148.5000 130.7500 -64.0 + 149.2500 132.5000 -64.0 + 147.5000 133.2500 -64.0 + 145.7500 129.5000 -64.0 + 142.5000 131.2500 -64.0 + 145.2500 132.5000 -64.0 + 149.2500 138.5000 -64.0 + 150.5000 138.7500 -64.0 + 150.7500 137.5000 -64.0 + 155.5000 132.7500 -64.0 + 156.2500 133.5000 -64.0 + 160.5000 133.7500 -64.0 + 166.2500 140.5000 -64.0 + 168.2500 146.5000 -64.0 + 167.5000 148.2500 -64.0 + 169.2500 150.5000 -64.0 + 168.5000 152.2500 -64.0 + 166.5000 152.2500 -64.0 + 169.2500 156.5000 -64.0 + 169.2500 158.5000 -64.0 + 167.5000 162.2500 -64.0 + 165.5000 163.2500 -64.0 + 163.7500 161.5000 -64.0 + 163.7500 159.5000 -64.0 + 159.7500 158.5000 -64.0 + 159.7500 155.5000 -64.0 + 157.5000 155.2500 -64.0 + 155.5000 152.2500 -64.0 + 155.2500 157.5000 -64.0 + 156.2500 159.5000 -64.0 + 156.2500 169.5000 -64.0 + 153.2500 177.5000 -64.0 + 147.5000 183.2500 -64.0 + 143.2500 189.5000 -64.0 + 135.5000 198.2500 -64.0 + 135.2500 201.5000 -64.0 + 131.5000 204.2500 -64.0 + 126.5000 203.2500 -64.0 + 123.5000 206.2500 -64.0 + 120.5000 206.2500 -64.0 + 116.7500 204.5000 -64.0 + 114.5000 204.2500 -64.0 + 110.5000 206.2500 -64.0 + 107.7500 204.5000 -64.0 + 107.7500 200.5000 -64.0 + 106.5000 197.2500 -64.0 + 104.5000 196.2500 -64.0 + 103.7500 194.5000 -64.0 + 101.2500 194.5000 -64.0 + 96.5000 202.2500 -64.0 + 94.5000 203.2500 -64.0 + 94.2500 204.5000 -64.0 + 91.5000 206.2500 -64.0 + 89.5000 206.2500 -64.0 + 85.5000 210.2500 -64.0 + 81.5000 210.2500 -64.0 + 73.7500 203.5000 -64.0 + 72.7500 201.5000 -64.0 + 67.7500 198.5000 -64.0 + 64.7500 194.5000 -64.0 + 64.7500 190.5000 -64.0 + 61.7500 184.5000 -64.0 + 57.7500 180.5000 -64.0 + 52.7500 170.5000 -64.0 + 49.7500 166.5000 -64.0 + 49.7500 164.5000 -64.0 + 47.7500 158.5000 -64.0 + 47.7500 154.5000 -64.0 + 49.7500 149.5000 -64.0 + 54.5000 144.7500 -64.0 + 64.7500 139.5000 -64.0 + 62.5000 139.2500 -64.0 + 58.5000 141.2500 -64.0 + 56.5000 141.2500 -64.0 + 51.5000 143.2500 -64.0 + 47.5000 148.2500 -64.0 + 45.5000 149.2500 -64.0 + 44.5000 152.2500 -64.0 + 42.5000 153.2500 -64.0 + 40.7500 151.5000 -64.0 + 40.7500 148.5000 -64.0 + 38.7500 147.5000 -64.0 + 40.5000 145.7500 -64.0 + 41.5000 146.7500 -64.0 + 42.7500 136.5000 -64.0 + 44.5000 135.7500 -64.0 + 48.5000 131.7500 -64.0 + 49.5000 132.7500 -64.0 + 52.5000 131.7500 -64.0 + 61.5000 132.7500 -64.0 + 61.7500 130.5000 -64.0 + 65.5000 127.7500 -64.0 + 67.2500 128.5000 -64.0 + 66.5000 129.2500 -64.0 + 68.2500 131.5000 -64.0 + 68.2500 133.5000 -64.0 + 70.2500 137.5000 -64.0 + 71.7500 137.5000 -64.0 + 72.7500 135.5000 -64.0 + 68.7500 132.5000 -64.0 + 67.7500 127.5000 -64.0 + 70.5000 124.7500 -64.0 + 75.7500 126.5000 -64.0 + 74.7500 124.5000 -64.0 + 74.7500 122.5000 -64.0 + 72.7500 120.5000 -64.0 + 72.7500 118.5000 -64.0 + 75.5000 115.7500 -64.0 + 75.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 114.5000 -64.0 + 99.5000 118.2500 -64.0 + 97.2500 118.5000 -64.0 + 90.5000 121.2500 -64.0 + 86.5000 125.2500 -64.0 + 84.5000 124.2500 -64.0 + 82.5000 125.2500 -64.0 + 82.5000 130.7500 -64.0 + 86.2500 133.5000 -64.0 + 91.5000 133.7500 -64.0 + 97.5000 124.7500 -64.0 + 101.5000 121.7500 -64.0 + 103.7500 121.5000 -64.0 + 99.5000 121.2500 -64.0 + 96.2500 123.5000 -64.0 + 91.5000 131.2500 -64.0 + 85.5000 131.2500 -64.0 + 83.7500 127.5000 -64.0 + 87.5000 125.7500 -64.0 + 90.5000 122.7500 -64.0 + 100.5000 118.7500 -64.0 + 106.5000 117.7500 -64.0 + 111.2500 119.5000 -64.0 + 110.2500 121.5000 -64.0 + 113.5000 122.7500 -64.0 + 116.2500 125.5000 -64.0 + 120.2500 133.5000 -64.0 + 125.2500 136.5000 -64.0 + 129.5000 136.7500 -64.0 + 129.7500 134.5000 -64.0 + 131.7500 130.5000 -64.0 + 130.7500 128.5000 -64.0 + 128.2500 130.5000 -64.0 + 125.5000 134.2500 -64.0 + 122.7500 128.5000 -64.0 + 123.7500 125.5000 -64.0 + 122.7500 123.5000 -64.0 + 119.5000 123.2500 -64.0 + 107.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 133.5000 -64.0 + 137.5000 134.2500 -64.0 + 138.2500 140.5000 -64.0 + 142.5000 141.7500 -64.0 + 139.7500 137.5000 -64.0 + 139.7500 135.5000 -64.0 + 140.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 139.5000 -64.0 + 151.5000 141.2500 -64.0 + 147.5000 141.2500 -64.0 + 153.2500 145.5000 -64.0 + 156.2500 151.5000 -64.0 + 157.7500 150.5000 -64.0 + 156.7500 148.5000 -64.0 + 157.5000 147.7500 -64.0 + 157.7500 145.5000 -64.0 + 154.7500 144.5000 -64.0 + 155.5000 143.7500 -64.0 + 153.7500 141.5000 -64.0 + 154.5000 140.7500 -64.0 +} -64.0 +{ -64.0 + 111.5000 43.7500 -64.0 + 112.2500 44.5000 -64.0 + 111.5000 46.2500 -64.0 + 109.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 110.7500 49.5000 -64.0 + 112.5000 48.7500 -64.0 + 114.2500 51.5000 -64.0 + 114.2500 54.5000 -64.0 + 111.5000 58.2500 -64.0 + 110.7500 57.5000 -64.0 + 110.7500 54.5000 -64.0 + 109.5000 54.2500 -64.0 + 107.7500 52.5000 -64.0 + 110.5000 50.7500 -64.0 +} -64.0 +{ -64.0 + 107.7500 55.5000 -64.0 + 108.5000 54.7500 -64.0 + 110.2500 56.5000 -64.0 + 108.5000 58.2500 -64.0 + 107.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 156.7500 114.5000 -64.0 + 157.5000 113.7500 -64.0 + 158.2500 115.5000 -64.0 + 156.5000 117.2500 -64.0 + 154.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 66.7500 122.5000 -64.0 + 67.5000 121.7500 -64.0 + 68.2500 122.5000 -64.0 + 67.5000 123.2500 -64.0 +} -64.0 +{ -64.0 + 63.7500 123.5000 -64.0 + 64.5000 122.7500 -64.0 + 65.2500 123.5000 -64.0 + 64.5000 125.2500 -64.0 +} -64.0 +{ -64.0 + 117.7500 124.5000 -64.0 + 118.5000 123.7500 -64.0 + 120.5000 123.7500 -64.0 + 122.2500 124.5000 -64.0 + 122.2500 127.5000 -64.0 + 120.5000 129.2500 -64.0 + 119.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 54.7500 130.5000 -64.0 + 55.5000 129.7500 -64.0 + 56.2500 130.5000 -64.0 + 55.5000 131.2500 -64.0 +} -64.0 +v 423 z -134.000000 -64.0 +{ -64.0 + 107.2500 36.5000 -64.0 + 105.5000 37.2500 -64.0 + 103.2500 39.5000 -64.0 + 106.5000 39.7500 -64.0 + 106.7500 38.5000 -64.0 + 108.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 36.5000 -64.0 + 114.2500 38.5000 -64.0 + 114.2500 40.5000 -64.0 + 121.5000 43.7500 -64.0 + 122.2500 45.5000 -64.0 + 126.5000 49.7500 -64.0 + 128.5000 50.7500 -64.0 + 128.7500 49.5000 -64.0 + 124.7500 43.5000 -64.0 + 119.7500 40.5000 -64.0 + 117.5000 40.2500 -64.0 + 113.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 40.5000 -64.0 + 99.5000 41.2500 -64.0 + 95.5000 41.2500 -64.0 + 92.2500 48.5000 -64.0 + 93.5000 48.7500 -64.0 + 94.5000 46.7500 -64.0 + 102.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 43.5000 -64.0 + 107.5000 44.2500 -64.0 + 108.5000 44.7500 -64.0 + 110.5000 43.7500 -64.0 + 112.5000 44.7500 -64.0 + 112.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 48.5000 -64.0 + 110.2500 49.5000 -64.0 + 108.5000 51.2500 -64.0 + 107.7500 50.5000 -64.0 + 105.5000 50.2500 -64.0 + 100.5000 49.2500 -64.0 + 97.5000 50.2500 -64.0 + 97.2500 53.5000 -64.0 + 98.7500 53.5000 -64.0 + 99.7500 51.5000 -64.0 + 101.5000 50.7500 -64.0 + 103.2500 51.5000 -64.0 + 96.5000 57.2500 -64.0 + 96.2500 63.5000 -64.0 + 99.5000 61.7500 -64.0 + 99.7500 56.5000 -64.0 + 101.5000 55.7500 -64.0 + 103.2500 56.5000 -64.0 + 103.2500 58.5000 -64.0 + 105.2500 60.5000 -64.0 + 104.2500 61.5000 -64.0 + 103.2500 63.5000 -64.0 + 101.5000 64.2500 -64.0 + 101.2500 65.5000 -64.0 + 103.2500 67.5000 -64.0 + 109.5000 79.7500 -64.0 + 109.7500 73.5000 -64.0 + 110.7500 70.5000 -64.0 + 113.5000 68.7500 -64.0 + 114.2500 69.5000 -64.0 + 115.7500 69.5000 -64.0 + 118.5000 65.7500 -64.0 + 118.5000 63.2500 -64.0 + 116.5000 62.2500 -64.0 + 115.7500 60.5000 -64.0 + 116.5000 58.7500 -64.0 + 116.7500 54.5000 -64.0 + 118.5000 52.7500 -64.0 + 122.2500 54.5000 -64.0 + 122.2500 56.5000 -64.0 + 125.2500 59.5000 -64.0 + 125.2500 61.5000 -64.0 + 126.5000 60.7500 -64.0 + 126.7500 58.5000 -64.0 + 125.5000 57.2500 -64.0 + 123.7500 52.5000 -64.0 + 119.5000 49.2500 -64.0 + 114.5000 51.2500 -64.0 +} -64.0 +{ -64.0 + 79.2500 57.5000 -64.0 + 78.5000 58.2500 -64.0 + 78.2500 61.5000 -64.0 + 79.5000 61.7500 -64.0 + 81.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 57.5000 -64.0 + 134.2500 58.5000 -64.0 + 138.2500 62.5000 -64.0 + 138.5000 68.7500 -64.0 + 138.7500 60.5000 -64.0 + 135.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 62.5000 -64.0 + 121.5000 63.2500 -64.0 + 121.2500 66.5000 -64.0 + 124.2500 69.5000 -64.0 + 125.5000 68.7500 -64.0 + 125.7500 65.5000 -64.0 + 124.5000 65.2500 -64.0 + 123.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 70.5000 -64.0 + 125.2500 79.5000 -64.0 + 127.2500 81.5000 -64.0 + 127.2500 83.5000 -64.0 + 128.7500 80.5000 -64.0 + 125.7500 74.5000 -64.0 +} -64.0 +{ -64.0 + 61.2500 76.5000 -64.0 + 58.5000 86.2500 -64.0 + 59.2500 87.5000 -64.0 + 60.5000 86.7500 -64.0 + 63.5000 81.7500 -64.0 + 63.7500 78.5000 -64.0 + 62.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 76.5000 -64.0 + 87.5000 80.2500 -64.0 + 84.2500 80.5000 -64.0 + 85.2500 82.5000 -64.0 + 91.5000 78.7500 -64.0 + 91.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 81.5000 -64.0 + 88.5000 83.2500 -64.0 + 92.5000 86.7500 -64.0 + 92.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 81.5000 -64.0 + 131.5000 82.2500 -64.0 + 131.2500 85.5000 -64.0 + 132.5000 85.7500 -64.0 + 134.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 81.5000 -64.0 + 151.2500 82.5000 -64.0 + 150.2500 84.5000 -64.0 + 151.2500 86.5000 -64.0 + 151.2500 89.5000 -64.0 + 154.2500 93.5000 -64.0 + 154.2500 95.5000 -64.0 + 155.5000 94.7500 -64.0 + 155.7500 92.5000 -64.0 + 154.7500 90.5000 -64.0 + 154.7500 87.5000 -64.0 + 153.7500 85.5000 -64.0 + 153.7500 83.5000 -64.0 + 152.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 84.5000 -64.0 + 124.2500 85.5000 -64.0 + 123.2500 88.5000 -64.0 + 124.5000 88.7500 -64.0 + 124.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 52.2500 104.5000 -64.0 + 50.5000 105.2500 -64.0 + 47.2500 110.5000 -64.0 + 48.2500 113.5000 -64.0 + 50.5000 115.7500 -64.0 + 55.5000 116.7500 -64.0 + 57.5000 115.7500 -64.0 + 57.7500 113.5000 -64.0 + 52.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 155.2500 104.5000 -64.0 + 155.2500 108.5000 -64.0 + 153.2500 114.5000 -64.0 + 154.2500 117.5000 -64.0 + 158.7500 117.5000 -64.0 + 160.7500 113.5000 -64.0 + 159.7500 111.5000 -64.0 + 159.7500 108.5000 -64.0 + 156.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 111.5000 -64.0 + 72.2500 112.5000 -64.0 + 73.5000 112.7500 -64.0 + 73.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 73.2500 115.5000 -64.0 + 68.5000 118.2500 -64.0 + 66.5000 118.2500 -64.0 + 60.5000 122.2500 -64.0 + 56.5000 122.2500 -64.0 + 52.5000 120.2500 -64.0 + 52.2500 123.5000 -64.0 + 53.2500 125.5000 -64.0 + 52.2500 127.5000 -64.0 + 48.5000 130.2500 -64.0 + 45.5000 130.2500 -64.0 + 41.5000 134.2500 -64.0 + 39.2500 140.5000 -64.0 + 37.2500 150.5000 -64.0 + 38.2500 152.5000 -64.0 + 38.2500 158.5000 -64.0 + 39.2500 160.5000 -64.0 + 39.2500 163.5000 -64.0 + 43.2500 171.5000 -64.0 + 43.2500 173.5000 -64.0 + 50.2500 187.5000 -64.0 + 69.2500 207.5000 -64.0 + 70.2500 209.5000 -64.0 + 71.5000 209.7500 -64.0 + 77.5000 214.7500 -64.0 + 83.2500 217.5000 -64.0 + 107.5000 218.7500 -64.0 + 109.5000 217.7500 -64.0 + 120.7500 217.5000 -64.0 + 127.5000 214.7500 -64.0 + 134.5000 209.7500 -64.0 + 148.5000 195.7500 -64.0 + 150.5000 194.7500 -64.0 + 158.7500 184.5000 -64.0 + 164.7500 173.5000 -64.0 + 168.7500 163.5000 -64.0 + 170.5000 156.7500 -64.0 + 170.7500 149.5000 -64.0 + 169.7500 147.5000 -64.0 + 169.7500 144.5000 -64.0 + 167.7500 137.5000 -64.0 + 162.7500 132.5000 -64.0 + 159.5000 127.2500 -64.0 + 157.5000 126.2500 -64.0 + 156.7500 124.5000 -64.0 + 155.5000 124.2500 -64.0 + 152.5000 125.2500 -64.0 + 149.5000 124.2500 -64.0 + 145.5000 120.2500 -64.0 + 143.5000 119.2500 -64.0 + 143.2500 120.5000 -64.0 + 145.2500 126.5000 -64.0 + 147.5000 126.7500 -64.0 + 150.2500 131.5000 -64.0 + 148.5000 134.2500 -64.0 + 145.7500 130.5000 -64.0 + 143.5000 130.2500 -64.0 + 139.5000 132.2500 -64.0 + 135.5000 132.2500 -64.0 + 131.7500 128.5000 -64.0 + 129.5000 131.2500 -64.0 + 127.5000 131.2500 -64.0 + 125.5000 133.2500 -64.0 + 122.7500 130.5000 -64.0 + 123.5000 124.2500 -64.0 + 108.7500 117.5000 -64.0 + 104.5000 117.2500 -64.0 + 90.2500 122.5000 -64.0 + 89.2500 124.5000 -64.0 + 90.2500 126.5000 -64.0 + 89.5000 128.2500 -64.0 + 87.5000 129.2500 -64.0 + 88.2500 131.5000 -64.0 + 86.5000 132.2500 -64.0 + 84.7500 131.5000 -64.0 + 83.7500 129.5000 -64.0 + 84.5000 127.7500 -64.0 + 82.7500 125.5000 -64.0 + 81.5000 126.2500 -64.0 + 81.2500 130.5000 -64.0 + 82.2500 133.5000 -64.0 + 84.2500 134.5000 -64.0 + 85.5000 133.7500 -64.0 + 91.5000 133.7500 -64.0 + 95.7500 126.5000 -64.0 + 101.5000 121.7500 -64.0 + 103.5000 121.7500 -64.0 + 108.5000 119.7500 -64.0 + 109.2500 121.5000 -64.0 + 114.5000 123.7500 -64.0 + 117.2500 126.5000 -64.0 + 119.2500 130.5000 -64.0 + 123.2500 135.5000 -64.0 + 128.2500 138.5000 -64.0 + 130.5000 138.7500 -64.0 + 130.7500 136.5000 -64.0 + 127.7500 135.5000 -64.0 + 129.5000 133.7500 -64.0 + 131.5000 133.7500 -64.0 + 133.2500 135.5000 -64.0 + 136.5000 135.7500 -64.0 + 141.2500 140.5000 -64.0 + 147.5000 140.7500 -64.0 + 145.7500 139.5000 -64.0 + 147.5000 137.7500 -64.0 + 152.7500 138.5000 -64.0 + 151.7500 136.5000 -64.0 + 151.7500 134.5000 -64.0 + 153.5000 132.7500 -64.0 + 158.5000 132.7500 -64.0 + 161.5000 133.7500 -64.0 + 165.2500 136.5000 -64.0 + 165.2500 139.5000 -64.0 + 168.2500 143.5000 -64.0 + 166.5000 146.2500 -64.0 + 168.2500 148.5000 -64.0 + 167.5000 152.2500 -64.0 + 164.2500 152.5000 -64.0 + 165.2500 155.5000 -64.0 + 166.5000 154.7500 -64.0 + 168.2500 155.5000 -64.0 + 168.2500 158.5000 -64.0 + 167.2500 161.5000 -64.0 + 165.5000 162.2500 -64.0 + 163.7500 161.5000 -64.0 + 163.7500 159.5000 -64.0 + 162.5000 160.2500 -64.0 + 160.7500 159.5000 -64.0 + 159.7500 157.5000 -64.0 + 157.5000 159.2500 -64.0 + 155.5000 158.2500 -64.0 + 155.2500 171.5000 -64.0 + 151.2500 179.5000 -64.0 + 139.2500 190.5000 -64.0 + 138.2500 192.5000 -64.0 + 131.5000 197.2500 -64.0 + 122.5000 198.2500 -64.0 + 114.5000 202.2500 -64.0 + 112.5000 202.2500 -64.0 + 110.7500 200.5000 -64.0 + 110.7500 196.5000 -64.0 + 107.7500 193.5000 -64.0 + 106.7500 191.5000 -64.0 + 104.5000 190.2500 -64.0 + 100.5000 192.2500 -64.0 + 100.2500 193.5000 -64.0 + 94.5000 197.2500 -64.0 + 92.2500 200.5000 -64.0 + 87.5000 202.2500 -64.0 + 87.2500 203.5000 -64.0 + 84.5000 206.2500 -64.0 + 80.5000 206.2500 -64.0 + 76.7500 203.5000 -64.0 + 72.5000 198.2500 -64.0 + 70.5000 197.2500 -64.0 + 67.7500 193.5000 -64.0 + 67.7500 191.5000 -64.0 + 61.7500 181.5000 -64.0 + 56.7500 176.5000 -64.0 + 51.7500 167.5000 -64.0 + 51.7500 159.5000 -64.0 + 48.7500 153.5000 -64.0 + 50.7500 147.5000 -64.0 + 55.5000 142.7500 -64.0 + 58.5000 142.7500 -64.0 + 66.5000 138.7500 -64.0 + 63.5000 137.2500 -64.0 + 61.5000 138.2500 -64.0 + 58.5000 138.2500 -64.0 + 54.5000 140.2500 -64.0 + 48.2500 147.5000 -64.0 + 47.2500 152.5000 -64.0 + 45.5000 154.2500 -64.0 + 44.7500 152.5000 -64.0 + 42.5000 153.2500 -64.0 + 40.7500 151.5000 -64.0 + 41.7500 146.5000 -64.0 + 40.7500 144.5000 -64.0 + 40.7500 141.5000 -64.0 + 42.7500 139.5000 -64.0 + 44.7500 135.5000 -64.0 + 46.5000 134.7500 -64.0 + 49.5000 131.7500 -64.0 + 55.5000 131.7500 -64.0 + 57.2500 133.5000 -64.0 + 59.5000 131.7500 -64.0 + 61.5000 131.7500 -64.0 + 61.7500 129.5000 -64.0 + 64.5000 126.7500 -64.0 + 66.2500 127.5000 -64.0 + 67.5000 126.7500 -64.0 + 66.7500 124.5000 -64.0 + 67.7500 121.5000 -64.0 + 71.5000 118.7500 -64.0 + 74.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 71.2500 120.5000 -64.0 + 72.2500 122.5000 -64.0 + 74.5000 122.7500 -64.0 + 72.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 130.5000 -64.0 + 69.2500 131.5000 -64.0 + 70.5000 138.7500 -64.0 + 72.5000 135.7500 -64.0 + 72.7500 133.5000 -64.0 + 69.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 141.5000 -64.0 + 151.2500 144.5000 -64.0 + 153.2500 148.5000 -64.0 + 154.7500 149.5000 -64.0 + 157.5000 145.7500 -64.0 + 157.5000 144.2500 -64.0 + 155.5000 143.2500 -64.0 + 156.2500 144.5000 -64.0 + 154.5000 145.2500 -64.0 + 150.7500 141.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 152.5000 -64.0 + 153.2500 153.5000 -64.0 + 154.7500 156.5000 -64.0 + 155.7500 154.5000 -64.0 +} -64.0 +{ -64.0 + 151.7500 86.5000 -64.0 + 152.5000 85.7500 -64.0 + 154.2500 87.5000 -64.0 + 153.5000 89.2500 -64.0 +} -64.0 +{ -64.0 + 49.7500 111.5000 -64.0 + 51.5000 110.7500 -64.0 + 54.5000 111.7500 -64.0 + 55.2500 113.5000 -64.0 + 54.5000 115.2500 -64.0 + 52.5000 115.2500 -64.0 +} -64.0 +{ -64.0 + 156.7500 112.5000 -64.0 + 157.5000 111.7500 -64.0 + 158.2500 113.5000 -64.0 + 156.5000 115.2500 -64.0 + 155.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 96.7500 121.5000 -64.0 + 98.5000 120.7500 -64.0 + 100.2500 121.5000 -64.0 + 99.5000 122.2500 -64.0 + 97.5000 122.2500 -64.0 + 92.5000 128.2500 -64.0 + 90.7500 127.5000 -64.0 + 90.7500 123.5000 -64.0 + 92.5000 122.7500 -64.0 +} -64.0 +{ -64.0 + 117.7500 124.5000 -64.0 + 118.5000 123.7500 -64.0 + 121.5000 123.7500 -64.0 + 122.2500 125.5000 -64.0 + 121.5000 127.2500 -64.0 + 119.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 141.7500 132.5000 -64.0 + 143.5000 131.7500 -64.0 + 145.2500 134.5000 -64.0 + 144.5000 138.2500 -64.0 + 142.5000 138.2500 -64.0 + 138.7500 135.5000 -64.0 + 139.5000 133.7500 -64.0 +} -64.0 +v 451 z -136.000000 -64.0 +{ -64.0 + 107.2500 34.5000 -64.0 + 100.5000 39.2500 -64.0 + 95.5000 39.2500 -64.0 + 92.2500 46.5000 -64.0 + 92.7500 47.5000 -64.0 + 95.5000 43.7500 -64.0 + 98.7500 43.5000 -64.0 + 99.7500 41.5000 -64.0 + 103.5000 38.7500 -64.0 + 105.5000 38.7500 -64.0 + 109.5000 35.7500 -64.0 + 108.7500 34.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 34.5000 -64.0 + 112.2500 35.5000 -64.0 + 113.2500 37.5000 -64.0 + 120.5000 41.7500 -64.0 + 122.2500 45.5000 -64.0 + 128.2500 48.5000 -64.0 + 128.7500 47.5000 -64.0 + 125.7500 43.5000 -64.0 + 126.7500 42.5000 -64.0 + 125.7500 39.5000 -64.0 + 117.5000 38.2500 -64.0 + 114.7500 34.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 42.5000 -64.0 + 108.5000 46.2500 -64.0 + 106.5000 46.2500 -64.0 + 104.5000 45.2500 -64.0 + 100.2500 46.5000 -64.0 + 99.2500 48.5000 -64.0 + 100.5000 47.7500 -64.0 + 101.2500 48.5000 -64.0 + 104.5000 48.7500 -64.0 + 110.2500 54.5000 -64.0 + 112.5000 54.7500 -64.0 + 117.5000 48.7500 -64.0 + 122.2500 50.5000 -64.0 + 125.2500 56.5000 -64.0 + 125.2500 60.5000 -64.0 + 127.5000 68.7500 -64.0 + 127.7500 66.5000 -64.0 + 126.7500 64.5000 -64.0 + 126.7500 62.5000 -64.0 + 128.7500 60.5000 -64.0 + 124.7500 52.5000 -64.0 + 124.7500 50.5000 -64.0 + 121.7500 47.5000 -64.0 + 117.5000 47.2500 -64.0 + 115.5000 46.2500 -64.0 + 113.5000 47.2500 -64.0 + 111.7500 45.5000 -64.0 + 112.7500 42.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 50.5000 -64.0 + 95.2500 54.5000 -64.0 + 95.7500 55.5000 -64.0 + 97.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 56.5000 -64.0 + 80.5000 60.2500 -64.0 + 81.2500 61.5000 -64.0 + 81.2500 64.5000 -64.0 + 82.5000 64.7500 -64.0 + 82.7500 63.5000 -64.0 + 81.7500 61.5000 -64.0 + 83.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 56.5000 -64.0 + 136.2500 62.5000 -64.0 + 135.2500 65.5000 -64.0 + 137.2500 69.5000 -64.0 + 137.2500 74.5000 -64.0 + 135.2500 76.5000 -64.0 + 137.5000 76.7500 -64.0 + 138.5000 73.7500 -64.0 + 138.7500 69.5000 -64.0 + 137.7500 67.5000 -64.0 + 137.7500 61.5000 -64.0 + 136.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 69.5000 -64.0 + 91.5000 70.2500 -64.0 + 92.2500 71.5000 -64.0 + 91.2500 73.5000 -64.0 + 86.5000 79.2500 -64.0 + 84.5000 79.2500 -64.0 + 84.2500 82.5000 -64.0 + 85.5000 82.7500 -64.0 + 85.7500 81.5000 -64.0 + 88.5000 78.7500 -64.0 + 89.2500 79.5000 -64.0 + 89.2500 81.5000 -64.0 + 92.7500 74.5000 -64.0 + 93.5000 72.7500 -64.0 + 93.7500 69.5000 -64.0 +} -64.0 +{ -64.0 + 103.2500 71.5000 -64.0 + 102.2500 73.5000 -64.0 + 104.5000 74.7500 -64.0 + 104.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 76.5000 -64.0 + 127.2500 79.5000 -64.0 + 129.2500 80.5000 -64.0 + 125.5000 82.2500 -64.0 + 123.7500 78.5000 -64.0 + 122.2500 78.5000 -64.0 + 124.5000 83.7500 -64.0 + 129.5000 84.7500 -64.0 + 133.5000 86.7500 -64.0 + 132.7500 84.5000 -64.0 + 133.7500 81.5000 -64.0 + 132.5000 81.2500 -64.0 + 131.7500 79.5000 -64.0 + 128.5000 78.2500 -64.0 +} -64.0 +{ -64.0 + 62.2500 77.5000 -64.0 + 60.5000 80.2500 -64.0 + 58.2500 89.5000 -64.0 + 59.5000 89.7500 -64.0 + 60.7500 88.5000 -64.0 + 64.5000 80.7500 -64.0 + 63.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 77.5000 -64.0 + 108.2500 80.5000 -64.0 + 109.5000 80.7500 -64.0 + 111.5000 78.7500 -64.0 + 109.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 82.5000 -64.0 + 90.2500 85.5000 -64.0 + 91.5000 85.7500 -64.0 + 91.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 82.5000 -64.0 + 150.5000 84.2500 -64.0 + 150.2500 88.5000 -64.0 + 151.2500 90.5000 -64.0 + 151.2500 93.5000 -64.0 + 153.2500 97.5000 -64.0 + 153.2500 99.5000 -64.0 + 154.2500 101.5000 -64.0 + 154.2500 114.5000 -64.0 + 155.2500 116.5000 -64.0 + 157.5000 116.7500 -64.0 + 159.5000 114.7500 -64.0 + 159.7500 111.5000 -64.0 + 158.7500 109.5000 -64.0 + 158.7500 107.5000 -64.0 + 155.7500 101.5000 -64.0 + 155.7500 95.5000 -64.0 + 154.7500 93.5000 -64.0 + 154.7500 91.5000 -64.0 + 151.7500 90.5000 -64.0 + 152.5000 86.7500 -64.0 + 153.5000 87.7500 -64.0 + 153.7500 84.5000 -64.0 + 152.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 54.2500 102.5000 -64.0 + 52.5000 103.2500 -64.0 + 49.5000 108.2500 -64.0 + 49.2500 113.5000 -64.0 + 52.2500 115.5000 -64.0 + 54.5000 115.7500 -64.0 + 56.5000 114.7500 -64.0 + 56.7500 110.5000 -64.0 + 53.7500 107.5000 -64.0 + 55.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 67.2500 117.5000 -64.0 + 66.5000 118.2500 -64.0 + 64.5000 118.2500 -64.0 + 62.5000 120.2500 -64.0 + 58.5000 123.2500 -64.0 + 54.7500 121.5000 -64.0 + 53.2500 121.5000 -64.0 + 50.2500 127.5000 -64.0 + 43.5000 133.2500 -64.0 + 40.2500 138.5000 -64.0 + 39.2500 143.5000 -64.0 + 38.5000 145.2500 -64.0 + 38.2500 153.5000 -64.0 + 39.2500 155.5000 -64.0 + 39.2500 158.5000 -64.0 + 40.2500 160.5000 -64.0 + 40.2500 163.5000 -64.0 + 47.2500 177.5000 -64.0 + 47.2500 179.5000 -64.0 + 51.2500 185.5000 -64.0 + 52.2500 187.5000 -64.0 + 58.2500 193.5000 -64.0 + 64.2500 200.5000 -64.0 + 65.2500 202.5000 -64.0 + 75.2500 211.5000 -64.0 + 82.2500 215.5000 -64.0 + 86.5000 215.7500 -64.0 + 88.2500 216.5000 -64.0 + 89.5000 215.7500 -64.0 + 95.5000 215.7500 -64.0 + 97.2500 216.5000 -64.0 + 103.5000 216.7500 -64.0 + 105.5000 215.7500 -64.0 + 120.5000 215.7500 -64.0 + 130.5000 210.7500 -64.0 + 138.5000 203.7500 -64.0 + 151.7500 191.5000 -64.0 + 154.5000 187.7500 -64.0 + 157.7500 183.5000 -64.0 + 167.7500 163.5000 -64.0 + 168.5000 161.7500 -64.0 + 168.7500 158.5000 -64.0 + 169.5000 156.7500 -64.0 + 169.7500 144.5000 -64.0 + 168.7500 142.5000 -64.0 + 168.7500 140.5000 -64.0 + 166.7500 136.5000 -64.0 + 165.5000 134.2500 -64.0 + 161.7500 131.5000 -64.0 + 160.7500 129.5000 -64.0 + 155.7500 126.5000 -64.0 + 152.5000 126.2500 -64.0 + 148.7500 122.5000 -64.0 + 144.5000 119.2500 -64.0 + 144.2500 124.5000 -64.0 + 145.5000 125.7500 -64.0 + 147.5000 124.7500 -64.0 + 149.5000 124.7500 -64.0 + 152.2500 127.5000 -64.0 + 150.5000 131.2500 -64.0 + 150.2500 133.5000 -64.0 + 148.5000 135.2500 -64.0 + 147.7500 133.5000 -64.0 + 146.5000 133.2500 -64.0 + 146.2500 136.5000 -64.0 + 144.5000 138.2500 -64.0 + 134.5000 133.2500 -64.0 + 132.7500 132.5000 -64.0 + 133.5000 131.7500 -64.0 + 135.5000 130.7500 -64.0 + 135.7500 129.5000 -64.0 + 134.5000 129.2500 -64.0 + 130.5000 131.2500 -64.0 + 132.2500 132.5000 -64.0 + 131.5000 133.2500 -64.0 + 128.5000 133.2500 -64.0 + 126.7500 132.5000 -64.0 + 128.5000 130.2500 -64.0 + 124.7500 127.5000 -64.0 + 125.5000 125.7500 -64.0 + 124.5000 124.2500 -64.0 + 118.5000 121.2500 -64.0 + 113.5000 120.2500 -64.0 + 111.7500 119.5000 -64.0 + 100.5000 119.2500 -64.0 + 96.5000 121.2500 -64.0 + 93.5000 121.2500 -64.0 + 91.5000 122.2500 -64.0 + 89.5000 122.2500 -64.0 + 89.2500 126.5000 -64.0 + 91.2500 128.5000 -64.0 + 90.5000 130.2500 -64.0 + 88.5000 130.2500 -64.0 + 86.7500 128.5000 -64.0 + 84.5000 128.2500 -64.0 + 82.7500 126.5000 -64.0 + 80.5000 126.2500 -64.0 + 79.5000 128.2500 -64.0 + 79.2500 130.5000 -64.0 + 82.2500 134.5000 -64.0 + 87.5000 134.7500 -64.0 + 90.5000 133.7500 -64.0 + 93.7500 129.5000 -64.0 + 94.7500 127.5000 -64.0 + 98.5000 124.7500 -64.0 + 103.5000 121.7500 -64.0 + 109.5000 121.7500 -64.0 + 112.5000 122.7500 -64.0 + 120.5000 129.7500 -64.0 + 122.5000 128.7500 -64.0 + 124.5000 128.7500 -64.0 + 126.2500 131.5000 -64.0 + 125.5000 132.2500 -64.0 + 123.5000 133.2500 -64.0 + 123.2500 136.5000 -64.0 + 127.5000 139.7500 -64.0 + 132.5000 140.7500 -64.0 + 132.7500 139.5000 -64.0 + 135.5000 136.7500 -64.0 + 137.5000 136.7500 -64.0 + 147.5000 140.7500 -64.0 + 148.5000 138.7500 -64.0 + 150.5000 137.7500 -64.0 + 152.2500 138.5000 -64.0 + 153.2500 140.5000 -64.0 + 155.5000 140.7500 -64.0 + 155.7500 139.5000 -64.0 + 154.5000 139.2500 -64.0 + 151.7500 136.5000 -64.0 + 151.7500 134.5000 -64.0 + 154.5000 131.7500 -64.0 + 157.5000 131.7500 -64.0 + 163.5000 134.7500 -64.0 + 166.2500 138.5000 -64.0 + 166.2500 140.5000 -64.0 + 167.2500 142.5000 -64.0 + 166.2500 145.5000 -64.0 + 168.2500 147.5000 -64.0 + 168.2500 150.5000 -64.0 + 167.5000 152.2500 -64.0 + 164.5000 152.2500 -64.0 + 162.5000 153.2500 -64.0 + 160.5000 152.2500 -64.0 + 162.2500 155.5000 -64.0 + 157.5000 160.2500 -64.0 + 155.5000 159.2500 -64.0 + 153.7500 156.5000 -64.0 + 153.7500 154.5000 -64.0 + 152.2500 154.5000 -64.0 + 154.2500 158.5000 -64.0 + 154.2500 172.5000 -64.0 + 150.2500 178.5000 -64.0 + 149.2500 180.5000 -64.0 + 142.5000 186.2500 -64.0 + 140.5000 187.2500 -64.0 + 132.5000 192.2500 -64.0 + 128.5000 195.2500 -64.0 + 126.5000 195.2500 -64.0 + 124.5000 196.2500 -64.0 + 119.5000 196.2500 -64.0 + 114.5000 195.2500 -64.0 + 111.5000 194.2500 -64.0 + 107.7500 190.5000 -64.0 + 106.7500 188.5000 -64.0 + 104.5000 186.2500 -64.0 + 100.5000 191.2500 -64.0 + 96.5000 194.2500 -64.0 + 93.5000 194.2500 -64.0 + 89.5000 197.2500 -64.0 + 86.5000 197.2500 -64.0 + 80.5000 199.2500 -64.0 + 75.5000 197.2500 -64.0 + 69.7500 189.5000 -64.0 + 67.7500 185.5000 -64.0 + 56.7500 174.5000 -64.0 + 52.7500 167.5000 -64.0 + 52.7500 159.5000 -64.0 + 53.7500 156.5000 -64.0 + 50.7500 153.5000 -64.0 + 50.7500 148.5000 -64.0 + 51.7500 145.5000 -64.0 + 57.5000 139.7500 -64.0 + 61.5000 137.7500 -64.0 + 63.5000 137.7500 -64.0 + 64.7500 136.5000 -64.0 + 59.5000 136.2500 -64.0 + 56.5000 137.2500 -64.0 + 55.5000 139.2500 -64.0 + 53.5000 140.2500 -64.0 + 53.2500 141.5000 -64.0 + 49.5000 145.2500 -64.0 + 49.2500 147.5000 -64.0 + 47.5000 148.2500 -64.0 + 48.2500 149.5000 -64.0 + 48.2500 152.5000 -64.0 + 47.5000 154.2500 -64.0 + 45.5000 155.2500 -64.0 + 43.7500 151.5000 -64.0 + 41.7500 150.5000 -64.0 + 41.7500 139.5000 -64.0 + 43.7500 138.5000 -64.0 + 45.7500 134.5000 -64.0 + 46.5000 132.7500 -64.0 + 50.5000 130.7500 -64.0 + 53.5000 130.7500 -64.0 + 56.5000 133.7500 -64.0 + 58.5000 132.7500 -64.0 + 60.5000 132.7500 -64.0 + 62.5000 131.7500 -64.0 + 62.7500 129.5000 -64.0 + 64.5000 127.7500 -64.0 + 66.7500 127.5000 -64.0 + 65.7500 125.5000 -64.0 + 69.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 69.2500 129.5000 -64.0 + 69.2500 130.5000 -64.0 + 71.2500 132.5000 -64.0 + 70.2500 134.5000 -64.0 + 68.5000 135.2500 -64.0 + 68.2500 136.5000 -64.0 + 70.5000 136.7500 -64.0 + 74.5000 132.7500 -64.0 + 74.5000 131.2500 -64.0 + 72.5000 130.2500 -64.0 + 70.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 130.5000 -64.0 + 141.2500 131.5000 -64.0 + 145.5000 132.7500 -64.0 + 143.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 141.5000 -64.0 + 148.2500 142.5000 -64.0 + 151.2500 146.5000 -64.0 + 150.5000 148.2500 -64.0 + 150.2500 150.5000 -64.0 + 153.5000 147.7500 -64.0 + 152.7500 145.5000 -64.0 + 151.5000 145.2500 -64.0 + 150.7500 143.5000 -64.0 +} -64.0 +{ -64.0 + 131.5000 81.7500 -64.0 + 132.2500 82.5000 -64.0 + 131.5000 84.2500 -64.0 + 129.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 155.7500 109.5000 -64.0 + 156.5000 108.7500 -64.0 + 157.2500 109.5000 -64.0 + 157.2500 112.5000 -64.0 + 156.5000 114.2500 -64.0 + 155.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 51.7500 110.5000 -64.0 + 52.5000 109.7500 -64.0 + 55.2500 112.5000 -64.0 + 53.5000 114.2500 -64.0 + 51.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 94.7500 122.5000 -64.0 + 95.5000 121.7500 -64.0 + 97.5000 121.7500 -64.0 + 99.2500 122.5000 -64.0 + 98.5000 123.2500 -64.0 + 96.5000 123.2500 -64.0 + 94.5000 126.2500 -64.0 + 92.5000 127.2500 -64.0 + 90.7500 126.5000 -64.0 + 90.7500 124.5000 -64.0 + 91.5000 122.7500 -64.0 +} -64.0 +{ -64.0 + 113.7500 122.5000 -64.0 + 114.5000 121.7500 -64.0 + 119.5000 122.7500 -64.0 + 122.5000 123.7500 -64.0 + 123.2500 125.5000 -64.0 + 122.5000 127.2500 -64.0 + 120.5000 127.2500 -64.0 + 118.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 82.7500 129.5000 -64.0 + 84.5000 128.7500 -64.0 + 86.2500 129.5000 -64.0 + 87.2500 131.5000 -64.0 + 85.5000 133.2500 -64.0 +} -64.0 +{ -64.0 + 126.7500 135.5000 -64.0 + 128.5000 134.7500 -64.0 + 130.2500 135.5000 -64.0 + 129.5000 137.2500 -64.0 + 127.5000 137.2500 -64.0 +} -64.0 +{ -64.0 + 165.5000 158.7500 -64.0 + 166.2500 159.5000 -64.0 + 165.5000 161.2500 -64.0 + 163.7500 160.5000 -64.0 +} -64.0 +{ -64.0 + 105.7500 200.5000 -64.0 + 106.5000 199.7500 -64.0 + 107.2500 201.5000 -64.0 + 105.5000 205.2500 -64.0 + 103.7500 202.5000 -64.0 + 105.5000 201.7500 -64.0 +} -64.0 +v 464 z -138.000000 -64.0 +{ -64.0 + 107.2500 32.5000 -64.0 + 104.5000 35.2500 -64.0 + 101.5000 35.2500 -64.0 + 99.5000 37.2500 -64.0 + 95.5000 37.2500 -64.0 + 92.5000 42.2500 -64.0 + 91.2500 46.5000 -64.0 + 94.5000 46.7500 -64.0 + 95.7500 45.5000 -64.0 + 94.7500 42.5000 -64.0 + 96.5000 41.7500 -64.0 + 99.5000 42.7500 -64.0 + 101.5000 38.7500 -64.0 + 103.5000 38.7500 -64.0 + 105.5000 36.7500 -64.0 + 107.5000 37.7500 -64.0 + 109.7500 34.5000 -64.0 + 108.7500 32.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 32.5000 -64.0 + 112.5000 33.2500 -64.0 + 112.2500 35.5000 -64.0 + 114.2500 37.5000 -64.0 + 116.5000 37.7500 -64.0 + 117.5000 39.7500 -64.0 + 121.2500 41.5000 -64.0 + 122.2500 43.5000 -64.0 + 119.5000 45.2500 -64.0 + 116.7500 43.5000 -64.0 + 114.5000 44.2500 -64.0 + 112.7500 40.5000 -64.0 + 109.5000 40.2500 -64.0 + 108.5000 43.2500 -64.0 + 106.5000 43.2500 -64.0 + 104.5000 44.2500 -64.0 + 103.5000 43.2500 -64.0 + 100.5000 44.2500 -64.0 + 96.5000 49.2500 -64.0 + 94.2500 55.5000 -64.0 + 94.7500 56.5000 -64.0 + 98.7500 47.5000 -64.0 + 101.5000 45.7500 -64.0 + 106.5000 46.7500 -64.0 + 109.5000 49.7500 -64.0 + 111.5000 50.7500 -64.0 + 117.5000 45.7500 -64.0 + 123.2500 49.5000 -64.0 + 126.2500 54.5000 -64.0 + 126.2500 58.5000 -64.0 + 125.2500 60.5000 -64.0 + 126.2500 62.5000 -64.0 + 126.2500 65.5000 -64.0 + 128.2500 69.5000 -64.0 + 129.5000 69.7500 -64.0 + 134.5000 67.7500 -64.0 + 136.2500 69.5000 -64.0 + 136.2500 71.5000 -64.0 + 134.5000 73.2500 -64.0 + 129.5000 73.2500 -64.0 + 129.2500 76.5000 -64.0 + 133.5000 77.7500 -64.0 + 136.5000 76.7500 -64.0 + 138.5000 73.7500 -64.0 + 138.7500 66.5000 -64.0 + 137.7500 64.5000 -64.0 + 137.7500 61.5000 -64.0 + 135.5000 58.2500 -64.0 + 134.5000 63.2500 -64.0 + 128.5000 66.2500 -64.0 + 126.7500 65.5000 -64.0 + 127.5000 61.7500 -64.0 + 129.7500 61.5000 -64.0 + 130.7500 59.5000 -64.0 + 127.7500 57.5000 -64.0 + 127.7500 55.5000 -64.0 + 125.7500 51.5000 -64.0 + 125.7500 49.5000 -64.0 + 122.7500 45.5000 -64.0 + 123.5000 44.7500 -64.0 + 128.5000 46.7500 -64.0 + 128.7500 43.5000 -64.0 + 126.7500 37.5000 -64.0 + 124.5000 37.2500 -64.0 + 120.5000 35.2500 -64.0 + 118.5000 36.2500 -64.0 + 116.7500 33.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 49.5000 -64.0 + 89.5000 50.2500 -64.0 + 90.2500 51.5000 -64.0 + 92.5000 51.7500 -64.0 +} -64.0 +{ -64.0 + 130.2500 49.5000 -64.0 + 129.5000 50.2500 -64.0 + 129.2500 52.5000 -64.0 + 130.5000 52.7500 -64.0 + 134.5000 54.7500 -64.0 + 134.7500 52.5000 -64.0 + 132.7500 51.5000 -64.0 + 132.7500 49.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 57.5000 -64.0 + 82.5000 60.2500 -64.0 + 82.2500 65.5000 -64.0 + 83.5000 64.7500 -64.0 + 86.2500 66.5000 -64.0 + 88.5000 66.7500 -64.0 + 84.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 60.5000 -64.0 + 94.2500 62.5000 -64.0 + 94.7500 61.5000 -64.0 +} -64.0 +{ -64.0 + 81.2500 67.5000 -64.0 + 81.2500 69.5000 -64.0 + 82.5000 72.7500 -64.0 + 82.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 72.5000 -64.0 + 84.2500 73.5000 -64.0 + 88.5000 73.7500 -64.0 + 86.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 76.5000 -64.0 + 93.5000 77.2500 -64.0 + 93.2500 79.5000 -64.0 + 91.5000 81.2500 -64.0 + 88.5000 81.2500 -64.0 + 89.5000 82.7500 -64.0 + 91.5000 81.7500 -64.0 + 93.5000 81.7500 -64.0 + 96.5000 77.7500 -64.0 + 95.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 62.2500 78.5000 -64.0 + 60.5000 82.2500 -64.0 + 60.2500 84.5000 -64.0 + 62.5000 82.7500 -64.0 + 63.2500 83.5000 -64.0 + 62.2500 86.5000 -64.0 + 59.5000 88.2500 -64.0 + 58.2500 96.5000 -64.0 + 50.5000 108.2500 -64.0 + 50.2500 112.5000 -64.0 + 52.2500 114.5000 -64.0 + 54.5000 114.7500 -64.0 + 56.5000 113.7500 -64.0 + 56.7500 108.5000 -64.0 + 55.7500 105.5000 -64.0 + 59.5000 96.7500 -64.0 + 60.7500 90.5000 -64.0 + 63.5000 87.7500 -64.0 + 64.7500 81.5000 -64.0 + 63.7500 78.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 79.5000 -64.0 + 84.5000 80.2500 -64.0 + 84.2500 82.5000 -64.0 + 87.5000 80.7500 -64.0 +} -64.0 +{ -64.0 + 128.2500 80.5000 -64.0 + 128.2500 81.5000 -64.0 + 127.5000 83.2500 -64.0 + 125.5000 82.2500 -64.0 + 126.2500 83.5000 -64.0 + 129.5000 83.7500 -64.0 + 132.2500 86.5000 -64.0 + 131.5000 87.2500 -64.0 + 134.2500 89.5000 -64.0 + 134.7500 88.5000 -64.0 + 131.7500 84.5000 -64.0 + 131.7500 82.5000 -64.0 + 129.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 83.5000 -64.0 + 150.5000 84.2500 -64.0 + 150.2500 94.5000 -64.0 + 152.2500 98.5000 -64.0 + 152.2500 100.5000 -64.0 + 154.2500 104.5000 -64.0 + 154.2500 115.5000 -64.0 + 156.2500 116.5000 -64.0 + 159.5000 113.7500 -64.0 + 159.7500 111.5000 -64.0 + 158.7500 109.5000 -64.0 + 158.7500 107.5000 -64.0 + 155.7500 101.5000 -64.0 + 155.7500 99.5000 -64.0 + 154.7500 97.5000 -64.0 + 155.7500 94.5000 -64.0 + 153.7500 90.5000 -64.0 + 153.7500 86.5000 -64.0 + 152.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 117.5000 -64.0 + 62.2500 121.5000 -64.0 + 58.5000 124.2500 -64.0 + 54.5000 122.2500 -64.0 + 53.5000 125.2500 -64.0 + 51.5000 124.2500 -64.0 + 47.2500 130.5000 -64.0 + 44.2500 132.5000 -64.0 + 39.5000 142.2500 -64.0 + 39.2500 152.5000 -64.0 + 40.2500 154.5000 -64.0 + 42.2500 164.5000 -64.0 + 50.2500 181.5000 -64.0 + 62.2500 196.5000 -64.0 + 72.2500 206.5000 -64.0 + 76.5000 209.7500 -64.0 + 83.2500 213.5000 -64.0 + 96.5000 213.7500 -64.0 + 99.5000 214.7500 -64.0 + 101.5000 213.7500 -64.0 + 104.5000 214.7500 -64.0 + 106.5000 213.7500 -64.0 + 116.5000 213.7500 -64.0 + 127.5000 209.7500 -64.0 + 133.5000 203.7500 -64.0 + 142.5000 196.7500 -64.0 + 153.5000 186.7500 -64.0 + 156.7500 182.5000 -64.0 + 160.5000 175.7500 -64.0 + 160.7500 173.5000 -64.0 + 166.7500 163.5000 -64.0 + 169.5000 152.7500 -64.0 + 169.7500 143.5000 -64.0 + 165.7500 133.5000 -64.0 + 162.7500 131.5000 -64.0 + 160.5000 131.2500 -64.0 + 160.2500 132.5000 -64.0 + 162.5000 132.7500 -64.0 + 166.2500 139.5000 -64.0 + 164.2500 143.5000 -64.0 + 166.5000 143.7500 -64.0 + 168.2500 146.5000 -64.0 + 167.5000 148.2500 -64.0 + 168.2500 149.5000 -64.0 + 167.5000 151.2500 -64.0 + 164.5000 151.2500 -64.0 + 162.5000 153.2500 -64.0 + 160.5000 153.2500 -64.0 + 160.2500 157.5000 -64.0 + 158.5000 159.2500 -64.0 + 156.5000 159.2500 -64.0 + 154.7500 157.5000 -64.0 + 154.7500 155.5000 -64.0 + 151.2500 154.5000 -64.0 + 153.2500 160.5000 -64.0 + 153.2500 165.5000 -64.0 + 152.5000 167.2500 -64.0 + 153.2500 168.5000 -64.0 + 152.2500 171.5000 -64.0 + 146.5000 181.2500 -64.0 + 134.5000 189.2500 -64.0 + 132.5000 189.2500 -64.0 + 124.5000 193.2500 -64.0 + 114.5000 193.2500 -64.0 + 111.5000 192.2500 -64.0 + 107.7500 188.5000 -64.0 + 105.5000 184.2500 -64.0 + 103.5000 183.2500 -64.0 + 102.2500 186.5000 -64.0 + 99.5000 190.2500 -64.0 + 95.5000 193.2500 -64.0 + 81.5000 193.2500 -64.0 + 77.7500 191.5000 -64.0 + 75.5000 191.2500 -64.0 + 72.7500 186.5000 -64.0 + 60.7500 177.5000 -64.0 + 57.7500 173.5000 -64.0 + 53.7500 165.5000 -64.0 + 54.7500 152.5000 -64.0 + 53.5000 151.2500 -64.0 + 51.5000 154.2500 -64.0 + 50.7500 153.5000 -64.0 + 50.7500 148.5000 -64.0 + 52.5000 147.7500 -64.0 + 54.7500 142.5000 -64.0 + 57.5000 139.7500 -64.0 + 61.7500 137.5000 -64.0 + 59.5000 137.2500 -64.0 + 53.5000 140.2500 -64.0 + 53.2500 141.5000 -64.0 + 51.2500 143.5000 -64.0 + 49.5000 150.2500 -64.0 + 44.5000 149.2500 -64.0 + 42.5000 151.2500 -64.0 + 40.7500 149.5000 -64.0 + 41.7500 148.5000 -64.0 + 40.7500 145.5000 -64.0 + 42.5000 143.7500 -64.0 + 44.7500 136.5000 -64.0 + 46.5000 135.7500 -64.0 + 46.7500 133.5000 -64.0 + 48.5000 131.7500 -64.0 + 52.5000 129.7500 -64.0 + 54.5000 130.7500 -64.0 + 56.5000 133.7500 -64.0 + 63.5000 131.7500 -64.0 + 63.7500 130.5000 -64.0 + 65.5000 129.7500 -64.0 + 65.7500 127.5000 -64.0 + 64.5000 127.2500 -64.0 + 63.7500 125.5000 -64.0 + 65.5000 124.7500 -64.0 + 68.5000 118.7500 -64.0 + 67.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 119.5000 -64.0 + 99.5000 120.2500 -64.0 + 96.2500 120.5000 -64.0 + 99.5000 120.7500 -64.0 + 100.2500 122.5000 -64.0 + 98.5000 123.2500 -64.0 + 92.5000 127.2500 -64.0 + 89.7500 125.5000 -64.0 + 89.7500 123.5000 -64.0 + 92.5000 121.7500 -64.0 + 95.7500 121.5000 -64.0 + 92.5000 121.2500 -64.0 + 88.5000 123.2500 -64.0 + 88.2500 126.5000 -64.0 + 91.2500 128.5000 -64.0 + 94.5000 128.7500 -64.0 + 96.5000 126.7500 -64.0 + 100.5000 123.7500 -64.0 + 106.5000 121.7500 -64.0 + 111.5000 122.7500 -64.0 + 115.5000 125.7500 -64.0 + 117.5000 126.7500 -64.0 + 118.2500 128.5000 -64.0 + 123.5000 130.7500 -64.0 + 124.2500 132.5000 -64.0 + 123.5000 134.2500 -64.0 + 123.2500 137.5000 -64.0 + 127.5000 140.7500 -64.0 + 129.5000 141.7500 -64.0 + 131.2500 142.5000 -64.0 + 135.5000 142.7500 -64.0 + 135.7500 139.5000 -64.0 + 138.5000 137.7500 -64.0 + 139.2500 138.5000 -64.0 + 141.5000 138.7500 -64.0 + 145.2500 140.5000 -64.0 + 148.2500 144.5000 -64.0 + 147.5000 146.2500 -64.0 + 147.2500 148.5000 -64.0 + 148.2500 150.5000 -64.0 + 149.5000 152.7500 -64.0 + 149.7500 150.5000 -64.0 + 150.5000 148.7500 -64.0 + 152.5000 147.7500 -64.0 + 150.7500 146.5000 -64.0 + 147.7500 140.5000 -64.0 + 148.7500 138.5000 -64.0 + 147.5000 137.2500 -64.0 + 145.5000 136.2500 -64.0 + 144.5000 138.2500 -64.0 + 141.5000 137.2500 -64.0 + 139.7500 136.5000 -64.0 + 135.5000 136.2500 -64.0 + 132.5000 139.2500 -64.0 + 131.7500 138.5000 -64.0 + 129.7500 134.5000 -64.0 + 127.5000 134.2500 -64.0 + 125.7500 133.5000 -64.0 + 125.7500 130.5000 -64.0 + 124.5000 129.2500 -64.0 + 120.5000 127.2500 -64.0 + 113.7500 122.5000 -64.0 + 114.5000 121.7500 -64.0 + 118.5000 121.7500 -64.0 + 123.5000 123.7500 -64.0 + 130.2500 131.5000 -64.0 + 134.5000 131.7500 -64.0 + 136.2500 132.5000 -64.0 + 137.5000 131.7500 -64.0 + 142.5000 131.7500 -64.0 + 139.7500 129.5000 -64.0 + 137.5000 129.2500 -64.0 + 134.5000 128.2500 -64.0 + 133.5000 130.2500 -64.0 + 130.5000 130.2500 -64.0 + 128.7500 128.5000 -64.0 + 128.7500 126.5000 -64.0 + 124.5000 123.2500 -64.0 + 122.5000 122.2500 -64.0 + 120.7500 121.5000 -64.0 + 117.5000 121.2500 -64.0 + 115.7500 120.5000 -64.0 + 105.5000 120.2500 -64.0 +} -64.0 +{ -64.0 + 144.2500 120.5000 -64.0 + 143.2500 122.5000 -64.0 + 145.2500 124.5000 -64.0 + 147.5000 122.7500 -64.0 + 149.7500 122.5000 -64.0 + 146.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 78.2500 127.5000 -64.0 + 77.5000 128.2500 -64.0 + 71.5000 128.2500 -64.0 + 71.2500 129.5000 -64.0 + 72.5000 129.7500 -64.0 + 74.2500 131.5000 -64.0 + 73.5000 132.2500 -64.0 + 69.5000 134.2500 -64.0 + 69.5000 135.7500 -64.0 + 71.5000 134.7500 -64.0 + 73.5000 134.7500 -64.0 + 75.5000 133.7500 -64.0 + 76.2500 134.5000 -64.0 + 78.5000 134.7500 -64.0 + 81.5000 133.7500 -64.0 + 83.5000 136.7500 -64.0 + 89.7500 134.5000 -64.0 + 90.7500 132.5000 -64.0 + 89.7500 130.5000 -64.0 + 87.5000 130.2500 -64.0 + 87.2500 131.5000 -64.0 + 86.5000 133.2500 -64.0 + 82.5000 131.2500 -64.0 + 80.7500 130.5000 -64.0 + 81.5000 129.7500 -64.0 + 86.5000 129.7500 -64.0 + 86.7500 128.5000 -64.0 + 83.5000 128.2500 -64.0 + 81.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 127.5000 -64.0 + 154.2500 128.5000 -64.0 + 151.5000 131.2500 -64.0 + 149.2500 137.5000 -64.0 + 152.5000 137.7500 -64.0 + 151.7500 136.5000 -64.0 + 151.7500 133.5000 -64.0 + 155.5000 130.7500 -64.0 + 157.5000 131.7500 -64.0 + 159.5000 130.7500 -64.0 + 156.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 139.5000 -64.0 + 154.2500 140.5000 -64.0 + 155.5000 140.7500 -64.0 +} -64.0 +{ -64.0 + 150.7500 88.5000 -64.0 + 151.5000 87.7500 -64.0 + 153.2500 88.5000 -64.0 + 153.2500 91.5000 -64.0 + 152.5000 93.2500 -64.0 + 150.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 106.5000 -64.0 + 155.5000 105.7500 -64.0 + 157.2500 107.5000 -64.0 + 157.2500 111.5000 -64.0 + 156.5000 113.2500 -64.0 + 155.7500 111.5000 -64.0 + 154.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 52.7500 110.5000 -64.0 + 54.5000 109.7500 -64.0 + 55.2500 111.5000 -64.0 + 53.5000 112.2500 -64.0 +} -64.0 +{ -64.0 + 60.7500 128.5000 -64.0 + 61.5000 127.7500 -64.0 + 63.2500 128.5000 -64.0 + 62.5000 129.2500 -64.0 +} -64.0 +{ -64.0 + 126.7500 136.5000 -64.0 + 128.5000 135.7500 -64.0 + 129.2500 137.5000 -64.0 + 128.5000 139.2500 -64.0 + 126.7500 138.5000 -64.0 +} -64.0 +{ -64.0 + 45.7500 151.5000 -64.0 + 46.5000 150.7500 -64.0 + 48.2500 151.5000 -64.0 + 49.2500 153.5000 -64.0 + 47.5000 155.2500 -64.0 + 45.5000 155.2500 -64.0 + 44.7500 153.5000 -64.0 +} -64.0 +{ -64.0 + 104.5000 195.7500 -64.0 + 105.2500 196.5000 -64.0 + 103.5000 198.2500 -64.0 + 102.7500 197.5000 -64.0 +} -64.0 +v 452 z -140.000000 -64.0 +{ -64.0 + 106.2500 31.5000 -64.0 + 103.5000 33.2500 -64.0 + 100.5000 33.2500 -64.0 + 100.2500 35.5000 -64.0 + 103.5000 37.7500 -64.0 + 105.5000 36.7500 -64.0 + 108.7500 36.5000 -64.0 + 109.7500 34.5000 -64.0 + 111.5000 33.7500 -64.0 + 114.5000 37.7500 -64.0 + 116.5000 36.7500 -64.0 + 118.2500 39.5000 -64.0 + 121.2500 40.5000 -64.0 + 120.5000 41.2500 -64.0 + 114.5000 41.2500 -64.0 + 113.7500 39.5000 -64.0 + 109.5000 38.2500 -64.0 + 106.5000 41.2500 -64.0 + 104.5000 41.2500 -64.0 + 102.5000 42.2500 -64.0 + 100.7500 41.5000 -64.0 + 100.7500 38.5000 -64.0 + 97.5000 35.2500 -64.0 + 95.5000 36.2500 -64.0 + 91.5000 42.2500 -64.0 + 91.2500 45.5000 -64.0 + 96.2500 46.5000 -64.0 + 96.2500 48.5000 -64.0 + 94.5000 50.2500 -64.0 + 90.7500 46.5000 -64.0 + 89.5000 47.2500 -64.0 + 89.2500 49.5000 -64.0 + 90.2500 51.5000 -64.0 + 94.2500 52.5000 -64.0 + 94.2500 54.5000 -64.0 + 99.5000 45.7500 -64.0 + 103.5000 42.7500 -64.0 + 108.5000 43.7500 -64.0 + 111.2500 46.5000 -64.0 + 116.5000 43.7500 -64.0 + 121.5000 44.7500 -64.0 + 127.2500 53.5000 -64.0 + 127.2500 55.5000 -64.0 + 125.5000 60.2500 -64.0 + 126.2500 61.5000 -64.0 + 126.2500 64.5000 -64.0 + 129.2500 70.5000 -64.0 + 129.5000 76.7500 -64.0 + 134.5000 77.7500 -64.0 + 138.5000 74.7500 -64.0 + 138.7500 65.5000 -64.0 + 137.7500 63.5000 -64.0 + 137.7500 60.5000 -64.0 + 136.5000 59.2500 -64.0 + 134.5000 62.2500 -64.0 + 129.5000 65.2500 -64.0 + 127.7500 64.5000 -64.0 + 127.7500 62.5000 -64.0 + 130.5000 60.7500 -64.0 + 130.7500 58.5000 -64.0 + 129.5000 58.2500 -64.0 + 127.7500 56.5000 -64.0 + 127.7500 53.5000 -64.0 + 128.5000 51.7500 -64.0 + 133.5000 54.7500 -64.0 + 134.5000 56.7500 -64.0 + 136.5000 57.7500 -64.0 + 136.7500 55.5000 -64.0 + 135.7500 53.5000 -64.0 + 135.7500 51.5000 -64.0 + 133.7500 50.5000 -64.0 + 132.5000 48.2500 -64.0 + 130.5000 47.2500 -64.0 + 127.5000 50.2500 -64.0 + 124.7500 46.5000 -64.0 + 125.5000 44.7500 -64.0 + 129.5000 45.7500 -64.0 + 129.7500 43.5000 -64.0 + 127.7500 36.5000 -64.0 + 124.5000 36.2500 -64.0 + 120.5000 33.2500 -64.0 + 118.5000 34.2500 -64.0 + 116.7500 31.5000 -64.0 + 113.5000 31.2500 -64.0 + 111.5000 32.2500 -64.0 + 109.7500 31.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 60.5000 -64.0 + 82.2500 64.5000 -64.0 + 87.5000 66.7500 -64.0 + 89.5000 65.7500 -64.0 + 89.7500 63.5000 -64.0 + 87.7500 62.5000 -64.0 + 86.7500 60.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 65.5000 -64.0 + 91.2500 67.5000 -64.0 + 92.7500 66.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 68.5000 -64.0 + 82.2500 71.5000 -64.0 + 86.5000 74.7500 -64.0 + 90.5000 72.7500 -64.0 + 89.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 62.2500 79.5000 -64.0 + 61.2500 84.5000 -64.0 + 63.5000 82.7500 -64.0 + 64.2500 83.5000 -64.0 + 63.2500 87.5000 -64.0 + 61.5000 89.2500 -64.0 + 60.7500 88.5000 -64.0 + 59.5000 89.2500 -64.0 + 58.2500 95.5000 -64.0 + 50.2500 109.5000 -64.0 + 52.5000 112.7500 -64.0 + 54.5000 113.7500 -64.0 + 56.5000 112.7500 -64.0 + 57.7500 102.5000 -64.0 + 64.5000 88.7500 -64.0 + 64.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 79.5000 -64.0 + 88.5000 81.2500 -64.0 + 85.5000 80.2500 -64.0 + 83.5000 83.7500 -64.0 + 85.5000 82.7500 -64.0 + 92.5000 81.7500 -64.0 +} -64.0 +{ -64.0 + 151.2500 84.5000 -64.0 + 149.5000 87.2500 -64.0 + 149.2500 95.5000 -64.0 + 153.2500 103.5000 -64.0 + 153.2500 106.5000 -64.0 + 154.2500 108.5000 -64.0 + 154.2500 113.5000 -64.0 + 155.2500 115.5000 -64.0 + 156.7500 115.5000 -64.0 + 159.5000 111.7500 -64.0 + 158.7500 110.5000 -64.0 + 157.7500 104.5000 -64.0 + 155.7500 100.5000 -64.0 + 155.7500 95.5000 -64.0 + 153.7500 91.5000 -64.0 + 153.7500 87.5000 -64.0 + 152.7500 84.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 117.5000 -64.0 + 64.2500 118.5000 -64.0 + 59.5000 124.2500 -64.0 + 55.5000 124.2500 -64.0 + 54.5000 126.2500 -64.0 + 50.5000 126.2500 -64.0 + 50.2500 127.5000 -64.0 + 44.5000 132.2500 -64.0 + 40.5000 139.2500 -64.0 + 40.2500 141.5000 -64.0 + 39.5000 143.2500 -64.0 + 39.2500 147.5000 -64.0 + 40.2500 149.5000 -64.0 + 40.2500 152.5000 -64.0 + 42.2500 156.5000 -64.0 + 42.2500 158.5000 -64.0 + 43.2500 160.5000 -64.0 + 43.2500 162.5000 -64.0 + 52.2500 180.5000 -64.0 + 53.5000 182.7500 -64.0 + 55.5000 183.7500 -64.0 + 65.2500 195.5000 -64.0 + 77.2500 206.5000 -64.0 + 81.5000 209.7500 -64.0 + 83.5000 210.7500 -64.0 + 85.2500 211.5000 -64.0 + 96.5000 211.7500 -64.0 + 98.2500 212.5000 -64.0 + 105.5000 212.7500 -64.0 + 107.5000 211.7500 -64.0 + 113.5000 211.7500 -64.0 + 115.5000 210.7500 -64.0 + 118.5000 210.7500 -64.0 + 125.5000 203.7500 -64.0 + 127.5000 203.7500 -64.0 + 130.5000 200.7500 -64.0 + 142.5000 191.7500 -64.0 + 149.5000 187.7500 -64.0 + 155.7500 180.5000 -64.0 + 158.5000 176.7500 -64.0 + 158.7500 174.5000 -64.0 + 161.7500 168.5000 -64.0 + 166.5000 159.7500 -64.0 + 166.7500 157.5000 -64.0 + 168.7500 152.5000 -64.0 + 169.5000 150.7500 -64.0 + 169.7500 144.5000 -64.0 + 167.7500 140.5000 -64.0 + 167.7500 138.5000 -64.0 + 164.7500 132.5000 -64.0 + 157.5000 128.2500 -64.0 + 154.2500 129.5000 -64.0 + 160.5000 130.7500 -64.0 + 161.2500 132.5000 -64.0 + 160.2500 135.5000 -64.0 + 158.5000 136.2500 -64.0 + 158.2500 137.5000 -64.0 + 163.5000 135.7500 -64.0 + 165.2500 140.5000 -64.0 + 164.2500 145.5000 -64.0 + 167.2500 147.5000 -64.0 + 167.2500 149.5000 -64.0 + 165.5000 151.2500 -64.0 + 166.2500 152.5000 -64.0 + 166.2500 154.5000 -64.0 + 162.5000 158.2500 -64.0 + 160.5000 156.2500 -64.0 + 158.5000 157.2500 -64.0 + 156.5000 157.2500 -64.0 + 155.7500 155.5000 -64.0 + 152.5000 155.2500 -64.0 + 149.7500 151.5000 -64.0 + 150.7500 148.5000 -64.0 + 152.5000 147.7500 -64.0 + 149.7500 145.5000 -64.0 + 149.7500 142.5000 -64.0 + 148.7500 139.5000 -64.0 + 147.5000 139.2500 -64.0 + 146.7500 137.5000 -64.0 + 146.2500 138.5000 -64.0 + 145.5000 140.2500 -64.0 + 143.5000 140.2500 -64.0 + 143.2500 143.5000 -64.0 + 151.2500 159.5000 -64.0 + 151.2500 168.5000 -64.0 + 147.2500 176.5000 -64.0 + 139.5000 184.2500 -64.0 + 129.5000 189.2500 -64.0 + 127.5000 189.2500 -64.0 + 123.5000 191.2500 -64.0 + 119.5000 191.2500 -64.0 + 117.5000 192.2500 -64.0 + 112.5000 191.2500 -64.0 + 109.7500 188.5000 -64.0 + 106.7500 184.5000 -64.0 + 104.7500 178.5000 -64.0 + 103.5000 179.2500 -64.0 + 101.2500 186.5000 -64.0 + 96.5000 191.2500 -64.0 + 88.5000 191.2500 -64.0 + 79.5000 188.2500 -64.0 + 72.5000 185.2500 -64.0 + 69.5000 182.2500 -64.0 + 67.5000 181.2500 -64.0 + 59.7500 174.5000 -64.0 + 55.7500 167.5000 -64.0 + 55.7500 150.5000 -64.0 + 54.7500 147.5000 -64.0 + 56.7500 142.5000 -64.0 + 61.5000 137.2500 -64.0 + 58.5000 138.2500 -64.0 + 54.5000 144.2500 -64.0 + 52.7500 143.5000 -64.0 + 50.5000 145.2500 -64.0 + 48.5000 145.2500 -64.0 + 48.2500 146.5000 -64.0 + 52.5000 146.7500 -64.0 + 54.2500 150.5000 -64.0 + 52.5000 152.2500 -64.0 + 52.2500 154.5000 -64.0 + 51.5000 156.2500 -64.0 + 50.7500 154.5000 -64.0 + 48.5000 152.2500 -64.0 + 46.5000 151.2500 -64.0 + 43.7500 147.5000 -64.0 + 44.5000 145.7500 -64.0 + 44.7500 142.5000 -64.0 + 43.7500 140.5000 -64.0 + 45.5000 138.7500 -64.0 + 47.5000 138.7500 -64.0 + 46.7500 137.5000 -64.0 + 46.7500 132.5000 -64.0 + 49.5000 129.7500 -64.0 + 54.5000 129.7500 -64.0 + 56.2500 133.5000 -64.0 + 57.5000 133.7500 -64.0 + 59.5000 131.7500 -64.0 + 60.2500 132.5000 -64.0 + 63.5000 132.7500 -64.0 + 64.5000 130.7500 -64.0 + 66.7500 129.5000 -64.0 + 67.7500 127.5000 -64.0 + 69.5000 126.7500 -64.0 + 75.5000 128.7500 -64.0 + 77.2500 129.5000 -64.0 + 81.5000 129.7500 -64.0 + 86.5000 127.7500 -64.0 + 87.7500 124.5000 -64.0 + 91.7500 121.5000 -64.0 + 89.5000 121.2500 -64.0 + 81.5000 128.2500 -64.0 + 77.5000 126.2500 -64.0 + 75.5000 127.2500 -64.0 + 73.5000 127.2500 -64.0 + 67.5000 125.2500 -64.0 + 66.7500 123.5000 -64.0 + 65.7500 121.5000 -64.0 + 67.5000 119.7500 -64.0 + 67.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 99.2500 119.5000 -64.0 + 98.5000 120.2500 -64.0 + 96.2500 120.5000 -64.0 + 100.5000 120.7500 -64.0 + 101.2500 122.5000 -64.0 + 94.5000 126.2500 -64.0 + 91.5000 126.2500 -64.0 + 87.5000 128.2500 -64.0 + 87.2500 131.5000 -64.0 + 86.5000 133.2500 -64.0 + 81.5000 133.2500 -64.0 + 79.5000 134.2500 -64.0 + 77.5000 134.2500 -64.0 + 74.5000 133.2500 -64.0 + 70.5000 135.2500 -64.0 + 67.2500 135.5000 -64.0 + 76.5000 135.7500 -64.0 + 78.2500 137.5000 -64.0 + 86.5000 137.7500 -64.0 + 89.7500 134.5000 -64.0 + 90.7500 132.5000 -64.0 + 88.7500 130.5000 -64.0 + 89.5000 128.7500 -64.0 + 94.5000 128.7500 -64.0 + 95.7500 127.5000 -64.0 + 102.5000 122.7500 -64.0 + 109.5000 122.7500 -64.0 + 115.5000 125.7500 -64.0 + 120.2500 130.5000 -64.0 + 123.2500 134.5000 -64.0 + 123.2500 139.5000 -64.0 + 124.5000 140.7500 -64.0 + 128.2500 143.5000 -64.0 + 137.5000 143.7500 -64.0 + 139.5000 142.7500 -64.0 + 138.7500 141.5000 -64.0 + 136.5000 141.2500 -64.0 + 134.5000 142.2500 -64.0 + 132.5000 142.2500 -64.0 + 130.7500 140.5000 -64.0 + 130.7500 138.5000 -64.0 + 129.7500 135.5000 -64.0 + 126.5000 135.2500 -64.0 + 124.7500 133.5000 -64.0 + 124.7500 131.5000 -64.0 + 117.5000 125.2500 -64.0 + 113.7500 122.5000 -64.0 + 114.5000 121.7500 -64.0 + 120.5000 121.7500 -64.0 + 123.5000 122.7500 -64.0 + 132.2500 132.5000 -64.0 + 133.5000 131.7500 -64.0 + 136.5000 131.7500 -64.0 + 135.7500 130.5000 -64.0 + 137.5000 129.7500 -64.0 + 136.5000 128.2500 -64.0 + 132.5000 130.2500 -64.0 + 131.7500 128.5000 -64.0 + 126.5000 123.2500 -64.0 + 122.5000 121.2500 -64.0 + 113.5000 120.2500 -64.0 + 111.5000 121.2500 -64.0 + 109.7500 120.5000 -64.0 + 102.5000 120.2500 -64.0 +} -64.0 +{ -64.0 + 144.2500 119.5000 -64.0 + 143.5000 121.2500 -64.0 + 145.2500 123.5000 -64.0 + 146.5000 121.7500 -64.0 + 149.7500 121.5000 -64.0 + 147.5000 121.2500 -64.0 + 145.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 133.5000 -64.0 + 150.2500 138.5000 -64.0 + 151.5000 138.7500 -64.0 + 151.7500 134.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 139.5000 -64.0 + 153.2500 140.5000 -64.0 + 154.5000 141.7500 -64.0 + 154.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 158.2500 142.5000 -64.0 + 158.2500 143.5000 -64.0 + 159.5000 143.7500 -64.0 + 159.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 158.2500 153.5000 -64.0 + 159.2500 154.5000 -64.0 + 159.7500 153.5000 -64.0 +} -64.0 +{ -64.0 + 110.7500 40.5000 -64.0 + 111.5000 39.7500 -64.0 + 112.2500 40.5000 -64.0 + 111.5000 41.2500 -64.0 +} -64.0 +{ -64.0 + 94.7500 41.5000 -64.0 + 95.5000 40.7500 -64.0 + 97.5000 40.7500 -64.0 + 99.2500 42.5000 -64.0 + 98.5000 44.2500 -64.0 + 95.5000 43.2500 -64.0 +} -64.0 +{ -64.0 + 123.7500 42.5000 -64.0 + 124.5000 41.7500 -64.0 + 125.2500 42.5000 -64.0 + 124.5000 44.2500 -64.0 +} -64.0 +{ -64.0 + 132.7500 68.5000 -64.0 + 133.5000 67.7500 -64.0 + 135.5000 67.7500 -64.0 + 137.2500 69.5000 -64.0 + 136.5000 70.2500 -64.0 + 132.5000 72.2500 -64.0 + 130.5000 72.2500 -64.0 + 129.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 150.7500 88.5000 -64.0 + 151.5000 87.7500 -64.0 + 152.2500 89.5000 -64.0 + 153.2500 91.5000 -64.0 + 153.2500 94.5000 -64.0 + 152.5000 96.2500 -64.0 + 151.7500 94.5000 -64.0 + 150.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 98.5000 -64.0 + 153.5000 97.7500 -64.0 + 154.2500 99.5000 -64.0 + 153.5000 101.2500 -64.0 + 152.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 105.5000 -64.0 + 155.5000 104.7500 -64.0 + 156.2500 105.5000 -64.0 + 155.5000 106.2500 -64.0 +} -64.0 +{ -64.0 + 53.7500 106.5000 -64.0 + 54.5000 105.7500 -64.0 + 55.2500 106.5000 -64.0 + 55.2500 109.5000 -64.0 + 54.5000 111.2500 -64.0 + 53.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 108.5000 -64.0 + 155.5000 107.7500 -64.0 + 156.2500 108.5000 -64.0 + 157.2500 110.5000 -64.0 + 156.5000 112.2500 -64.0 + 154.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 63.5000 124.7500 -64.0 + 65.5000 124.7500 -64.0 + 66.2500 126.5000 -64.0 + 63.5000 128.2500 -64.0 + 61.5000 129.2500 -64.0 + 59.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 125.7500 137.5000 -64.0 + 127.5000 136.7500 -64.0 + 129.2500 137.5000 -64.0 + 129.2500 140.5000 -64.0 + 127.5000 141.2500 -64.0 + 125.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 45.7500 153.5000 -64.0 + 46.5000 152.7500 -64.0 + 48.2500 153.5000 -64.0 + 47.5000 154.2500 -64.0 +} -64.0 +v 420 z -142.000000 -64.0 +{ -64.0 + 105.2500 30.5000 -64.0 + 104.5000 31.2500 -64.0 + 101.5000 31.2500 -64.0 + 99.5000 33.2500 -64.0 + 101.5000 35.7500 -64.0 + 103.5000 36.7500 -64.0 + 105.5000 35.7500 -64.0 + 108.5000 36.7500 -64.0 + 111.5000 32.7500 -64.0 + 114.5000 36.7500 -64.0 + 116.5000 35.7500 -64.0 + 118.2500 37.5000 -64.0 + 117.5000 39.2500 -64.0 + 115.5000 39.2500 -64.0 + 113.7500 37.5000 -64.0 + 110.5000 37.2500 -64.0 + 106.5000 39.2500 -64.0 + 104.5000 39.2500 -64.0 + 102.5000 40.2500 -64.0 + 101.7500 38.5000 -64.0 + 97.5000 34.2500 -64.0 + 94.5000 35.2500 -64.0 + 92.2500 39.5000 -64.0 + 90.2500 43.5000 -64.0 + 96.2500 46.5000 -64.0 + 94.5000 48.2500 -64.0 + 91.7500 45.5000 -64.0 + 89.5000 45.2500 -64.0 + 88.2500 48.5000 -64.0 + 90.5000 50.7500 -64.0 + 94.5000 52.7500 -64.0 + 96.7500 47.5000 -64.0 + 102.5000 40.7500 -64.0 + 104.5000 40.7500 -64.0 + 109.5000 41.7500 -64.0 + 109.7500 39.5000 -64.0 + 111.5000 37.7500 -64.0 + 113.2500 39.5000 -64.0 + 112.5000 41.2500 -64.0 + 113.5000 42.7500 -64.0 + 115.5000 41.7500 -64.0 + 121.5000 41.7500 -64.0 + 123.2500 43.5000 -64.0 + 126.2500 49.5000 -64.0 + 126.2500 51.5000 -64.0 + 127.2500 53.5000 -64.0 + 129.5000 52.7500 -64.0 + 133.2500 55.5000 -64.0 + 133.2500 57.5000 -64.0 + 136.5000 57.7500 -64.0 + 136.7500 55.5000 -64.0 + 135.7500 53.5000 -64.0 + 135.7500 51.5000 -64.0 + 131.5000 46.2500 -64.0 + 127.5000 48.2500 -64.0 + 125.7500 45.5000 -64.0 + 126.5000 44.7500 -64.0 + 129.5000 44.7500 -64.0 + 132.5000 43.7500 -64.0 + 132.5000 42.2500 -64.0 + 130.5000 41.2500 -64.0 + 128.7500 40.5000 -64.0 + 128.7500 35.5000 -64.0 + 127.7500 33.5000 -64.0 + 126.5000 34.2500 -64.0 + 124.5000 35.2500 -64.0 + 122.7500 32.5000 -64.0 + 120.5000 32.2500 -64.0 + 118.5000 33.2500 -64.0 + 116.7500 30.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 56.5000 -64.0 + 126.5000 57.2500 -64.0 + 126.2500 60.5000 -64.0 + 127.2500 63.5000 -64.0 + 127.7500 62.5000 -64.0 + 130.7500 60.5000 -64.0 + 131.7500 58.5000 -64.0 + 128.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 58.5000 -64.0 + 82.5000 62.2500 -64.0 + 83.2500 64.5000 -64.0 + 88.2500 66.5000 -64.0 + 91.7500 65.5000 -64.0 + 92.7500 63.5000 -64.0 + 89.5000 62.2500 -64.0 + 86.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 59.5000 -64.0 + 130.5000 64.2500 -64.0 + 128.5000 64.2500 -64.0 + 128.2500 69.5000 -64.0 + 129.2500 71.5000 -64.0 + 129.2500 75.5000 -64.0 + 131.2500 76.5000 -64.0 + 137.7500 76.5000 -64.0 + 139.7500 72.5000 -64.0 + 138.7500 70.5000 -64.0 + 134.5000 70.2500 -64.0 + 130.5000 72.2500 -64.0 + 129.7500 71.5000 -64.0 + 130.5000 69.7500 -64.0 + 132.5000 69.7500 -64.0 + 134.5000 67.7500 -64.0 + 137.7500 67.5000 -64.0 + 138.7500 65.5000 -64.0 + 137.7500 63.5000 -64.0 + 137.7500 60.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 68.5000 -64.0 + 82.2500 69.5000 -64.0 + 84.2500 73.5000 -64.0 + 88.5000 73.7500 -64.0 + 90.5000 72.7500 -64.0 + 90.5000 70.2500 -64.0 + 86.7500 68.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 79.5000 -64.0 + 61.5000 83.2500 -64.0 + 61.2500 86.5000 -64.0 + 59.2500 90.5000 -64.0 + 58.2500 95.5000 -64.0 + 55.5000 101.2500 -64.0 + 51.5000 107.2500 -64.0 + 51.2500 110.5000 -64.0 + 53.2500 112.5000 -64.0 + 55.7500 112.5000 -64.0 + 57.7500 108.5000 -64.0 + 58.7500 101.5000 -64.0 + 62.7500 95.5000 -64.0 + 65.5000 89.7500 -64.0 + 65.7500 83.5000 -64.0 + 64.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 82.5000 -64.0 + 85.2500 83.5000 -64.0 + 87.5000 83.7500 -64.0 + 88.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 84.5000 -64.0 + 81.5000 85.7500 -64.0 + 84.7500 84.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 84.5000 -64.0 + 148.5000 90.2500 -64.0 + 148.2500 96.5000 -64.0 + 151.2500 100.5000 -64.0 + 151.7500 99.5000 -64.0 + 150.7500 97.5000 -64.0 + 149.7500 90.5000 -64.0 + 151.5000 88.7500 -64.0 + 152.2500 89.5000 -64.0 + 152.2500 92.5000 -64.0 + 153.2500 94.5000 -64.0 + 152.2500 96.5000 -64.0 + 155.2500 102.5000 -64.0 + 154.5000 104.2500 -64.0 + 152.7500 101.5000 -64.0 + 152.2500 102.5000 -64.0 + 154.2500 108.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.2500 114.5000 -64.0 + 157.5000 114.7500 -64.0 + 158.5000 112.7500 -64.0 + 158.7500 107.5000 -64.0 + 157.7500 105.5000 -64.0 + 157.7500 103.5000 -64.0 + 155.7500 99.5000 -64.0 + 155.7500 96.5000 -64.0 + 153.7500 92.5000 -64.0 + 153.7500 88.5000 -64.0 + 152.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 116.5000 -64.0 + 63.2500 120.5000 -64.0 + 59.5000 124.2500 -64.0 + 56.5000 124.2500 -64.0 + 56.2500 125.5000 -64.0 + 50.2500 128.5000 -64.0 + 54.5000 128.7500 -64.0 + 56.2500 131.5000 -64.0 + 56.2500 133.5000 -64.0 + 59.5000 134.7500 -64.0 + 61.5000 133.7500 -64.0 + 64.5000 133.7500 -64.0 + 66.2500 135.5000 -64.0 + 65.5000 136.2500 -64.0 + 65.5000 137.7500 -64.0 + 69.5000 135.7500 -64.0 + 72.5000 135.7500 -64.0 + 75.2500 138.5000 -64.0 + 74.2500 141.5000 -64.0 + 79.5000 141.7500 -64.0 + 82.5000 138.7500 -64.0 + 87.5000 138.7500 -64.0 + 89.5000 136.7500 -64.0 + 89.7500 131.5000 -64.0 + 94.5000 128.7500 -64.0 + 103.7500 121.5000 -64.0 + 98.2500 119.5000 -64.0 + 99.2500 121.5000 -64.0 + 99.2500 123.5000 -64.0 + 97.2500 125.5000 -64.0 + 89.2500 128.5000 -64.0 + 85.5000 134.2500 -64.0 + 83.7500 133.5000 -64.0 + 81.5000 134.2500 -64.0 + 79.5000 137.2500 -64.0 + 75.7500 135.5000 -64.0 + 69.5000 135.2500 -64.0 + 65.5000 133.2500 -64.0 + 64.7500 131.5000 -64.0 + 58.7500 129.5000 -64.0 + 58.7500 127.5000 -64.0 + 61.5000 123.7500 -64.0 + 66.5000 123.7500 -64.0 + 66.7500 121.5000 -64.0 + 65.7500 119.5000 -64.0 + 66.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 144.2500 118.5000 -64.0 + 143.2500 119.5000 -64.0 + 144.2500 121.5000 -64.0 + 145.5000 120.7500 -64.0 + 145.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 120.5000 -64.0 + 113.5000 122.2500 -64.0 + 111.2500 122.5000 -64.0 + 119.2500 129.5000 -64.0 + 122.2500 133.5000 -64.0 + 123.2500 140.5000 -64.0 + 125.2500 144.5000 -64.0 + 127.5000 144.7500 -64.0 + 124.7500 140.5000 -64.0 + 125.5000 136.7500 -64.0 + 130.7500 140.5000 -64.0 + 129.7500 138.5000 -64.0 + 129.7500 136.5000 -64.0 + 125.5000 136.2500 -64.0 + 123.7500 131.5000 -64.0 + 117.7500 125.5000 -64.0 + 116.7500 123.5000 -64.0 + 117.5000 121.7500 -64.0 + 119.5000 120.7500 -64.0 + 124.5000 121.7500 -64.0 + 128.2500 125.5000 -64.0 + 132.5000 132.7500 -64.0 + 134.5000 131.7500 -64.0 + 135.2500 132.5000 -64.0 + 136.7500 132.5000 -64.0 + 130.7500 127.5000 -64.0 + 128.5000 123.2500 -64.0 + 124.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 88.2500 121.5000 -64.0 + 84.5000 125.2500 -64.0 + 78.5000 129.2500 -64.0 + 76.5000 129.2500 -64.0 + 78.5000 130.7500 -64.0 + 80.5000 129.7500 -64.0 + 82.5000 129.7500 -64.0 + 84.7500 126.5000 -64.0 + 89.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 126.5000 -64.0 + 69.2500 127.5000 -64.0 + 66.2500 129.5000 -64.0 + 70.5000 129.7500 -64.0 + 74.5000 127.7500 -64.0 + 76.5000 127.7500 -64.0 + 76.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 47.2500 129.5000 -64.0 + 45.2500 131.5000 -64.0 + 40.5000 141.2500 -64.0 + 40.2500 149.5000 -64.0 + 43.2500 155.5000 -64.0 + 44.2500 161.5000 -64.0 + 48.5000 168.7500 -64.0 + 52.2500 177.5000 -64.0 + 61.5000 187.7500 -64.0 + 65.5000 189.7500 -64.0 + 68.2500 192.5000 -64.0 + 69.2500 194.5000 -64.0 + 72.5000 196.7500 -64.0 + 80.5000 202.7500 -64.0 + 84.5000 204.7500 -64.0 + 88.2500 208.5000 -64.0 + 96.5000 209.7500 -64.0 + 100.2500 211.5000 -64.0 + 103.5000 211.7500 -64.0 + 105.5000 210.7500 -64.0 + 108.5000 210.7500 -64.0 + 113.5000 208.7500 -64.0 + 114.7500 204.5000 -64.0 + 120.5000 200.7500 -64.0 + 122.7500 200.5000 -64.0 + 131.5000 196.7500 -64.0 + 138.7500 190.5000 -64.0 + 147.5000 186.7500 -64.0 + 151.7500 182.5000 -64.0 + 158.5000 172.7500 -64.0 + 160.5000 164.7500 -64.0 + 162.5000 163.7500 -64.0 + 165.5000 158.7500 -64.0 + 168.5000 150.7500 -64.0 + 168.7500 142.5000 -64.0 + 166.7500 138.5000 -64.0 + 166.7500 135.5000 -64.0 + 161.7500 129.5000 -64.0 + 159.5000 129.2500 -64.0 + 161.2500 132.5000 -64.0 + 155.5000 138.2500 -64.0 + 152.5000 138.2500 -64.0 + 149.5000 141.2500 -64.0 + 145.2500 141.5000 -64.0 + 146.2500 143.5000 -64.0 + 144.5000 145.2500 -64.0 + 141.7500 143.5000 -64.0 + 133.5000 143.2500 -64.0 + 131.7500 141.5000 -64.0 + 130.5000 143.2500 -64.0 + 130.2500 145.5000 -64.0 + 138.5000 145.7500 -64.0 + 144.2500 148.5000 -64.0 + 147.2500 154.5000 -64.0 + 147.2500 156.5000 -64.0 + 149.2500 160.5000 -64.0 + 149.2500 168.5000 -64.0 + 145.2500 176.5000 -64.0 + 135.5000 184.2500 -64.0 + 125.5000 189.2500 -64.0 + 123.5000 189.2500 -64.0 + 121.5000 190.2500 -64.0 + 116.5000 190.2500 -64.0 + 111.5000 188.2500 -64.0 + 108.7500 184.5000 -64.0 + 105.7500 178.5000 -64.0 + 105.5000 174.2500 -64.0 + 103.5000 173.2500 -64.0 + 101.2500 184.5000 -64.0 + 97.5000 188.2500 -64.0 + 93.5000 190.2500 -64.0 + 84.5000 188.2500 -64.0 + 77.7500 185.5000 -64.0 + 75.5000 185.2500 -64.0 + 61.7500 174.5000 -64.0 + 56.7500 164.5000 -64.0 + 58.7500 145.5000 -64.0 + 56.5000 141.2500 -64.0 + 56.2500 145.5000 -64.0 + 54.5000 146.2500 -64.0 + 52.7500 144.5000 -64.0 + 53.7500 141.5000 -64.0 + 51.5000 143.2500 -64.0 + 48.5000 143.2500 -64.0 + 47.2500 147.5000 -64.0 + 45.5000 149.2500 -64.0 + 43.7500 148.5000 -64.0 + 42.7500 146.5000 -64.0 + 45.5000 144.7500 -64.0 + 45.7500 141.5000 -64.0 + 44.7500 139.5000 -64.0 + 48.7500 133.5000 -64.0 + 47.7500 131.5000 -64.0 + 48.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 126.7500 35.5000 -64.0 + 127.5000 34.7500 -64.0 + 128.2500 35.5000 -64.0 + 127.5000 36.2500 -64.0 +} -64.0 +{ -64.0 + 94.7500 40.5000 -64.0 + 95.5000 39.7500 -64.0 + 98.2500 41.5000 -64.0 + 96.5000 42.2500 -64.0 +} -64.0 +{ -64.0 + 61.7500 84.5000 -64.0 + 62.5000 83.7500 -64.0 + 64.2500 84.5000 -64.0 + 64.2500 87.5000 -64.0 + 62.5000 91.2500 -64.0 + 60.7500 90.5000 -64.0 + 61.5000 88.7500 -64.0 +} -64.0 +{ -64.0 + 59.7500 94.5000 -64.0 + 60.5000 93.7500 -64.0 + 61.2500 94.5000 -64.0 + 60.5000 96.2500 -64.0 +} -64.0 +{ -64.0 + 55.7500 103.5000 -64.0 + 56.5000 102.7500 -64.0 + 57.2500 103.5000 -64.0 + 56.5000 105.2500 -64.0 + 56.2500 108.5000 -64.0 + 54.5000 110.2500 -64.0 + 53.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 107.5000 -64.0 + 155.5000 106.7500 -64.0 + 156.2500 107.5000 -64.0 + 156.2500 109.5000 -64.0 + 155.5000 111.2500 -64.0 + 154.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 159.5000 135.7500 -64.0 + 161.5000 135.7500 -64.0 + 163.2500 136.5000 -64.0 + 163.2500 138.5000 -64.0 + 162.5000 140.2500 -64.0 + 163.5000 140.7500 -64.0 + 165.2500 143.5000 -64.0 + 165.2500 147.5000 -64.0 + 164.5000 149.2500 -64.0 + 165.2500 150.5000 -64.0 + 165.2500 154.5000 -64.0 + 161.5000 156.2500 -64.0 + 159.7500 155.5000 -64.0 + 159.7500 153.5000 -64.0 + 154.7500 148.5000 -64.0 + 154.7500 146.5000 -64.0 + 157.5000 143.7500 -64.0 + 161.5000 143.7500 -64.0 + 161.7500 142.5000 -64.0 + 158.5000 142.2500 -64.0 + 156.7500 141.5000 -64.0 + 156.7500 138.5000 -64.0 +} -64.0 +{ -64.0 + 50.7500 147.5000 -64.0 + 52.5000 146.7500 -64.0 + 55.5000 147.7500 -64.0 + 57.2500 150.5000 -64.0 + 56.5000 152.2500 -64.0 + 52.5000 154.2500 -64.0 + 50.5000 154.2500 -64.0 + 47.7500 150.5000 -64.0 +} -64.0 +{ -64.0 + 49.7500 157.5000 -64.0 + 50.5000 156.7500 -64.0 + 51.2500 157.5000 -64.0 + 50.5000 158.2500 -64.0 +} -64.0 +v 388 z -144.000000 -64.0 +{ -64.0 + 106.2500 29.5000 -64.0 + 104.5000 31.2500 -64.0 + 101.2500 30.5000 -64.0 + 98.5000 34.2500 -64.0 + 96.5000 33.2500 -64.0 + 94.5000 35.2500 -64.0 + 94.2500 38.5000 -64.0 + 91.5000 40.2500 -64.0 + 91.2500 43.5000 -64.0 + 89.5000 45.2500 -64.0 + 89.2500 48.5000 -64.0 + 93.2500 52.5000 -64.0 + 95.5000 50.7500 -64.0 + 95.7500 48.5000 -64.0 + 99.5000 41.7500 -64.0 + 103.5000 38.7500 -64.0 + 107.5000 38.7500 -64.0 + 111.5000 36.7500 -64.0 + 113.2500 37.5000 -64.0 + 114.2500 39.5000 -64.0 + 116.5000 39.7500 -64.0 + 118.5000 38.7500 -64.0 + 121.5000 39.7500 -64.0 + 126.2500 47.5000 -64.0 + 126.2500 50.5000 -64.0 + 128.2500 55.5000 -64.0 + 126.5000 57.2500 -64.0 + 126.2500 60.5000 -64.0 + 128.2500 62.5000 -64.0 + 128.2500 68.5000 -64.0 + 129.5000 69.7500 -64.0 + 133.5000 67.7500 -64.0 + 136.5000 67.7500 -64.0 + 138.5000 66.7500 -64.0 + 138.7500 62.5000 -64.0 + 137.7500 60.5000 -64.0 + 135.5000 60.2500 -64.0 + 132.5000 61.2500 -64.0 + 129.5000 64.2500 -64.0 + 128.7500 62.5000 -64.0 + 136.5000 56.7500 -64.0 + 136.7500 54.5000 -64.0 + 134.7500 52.5000 -64.0 + 134.7500 49.5000 -64.0 + 132.7500 48.5000 -64.0 + 132.7500 46.5000 -64.0 + 130.7500 44.5000 -64.0 + 131.5000 43.7500 -64.0 + 131.7500 40.5000 -64.0 + 127.7500 39.5000 -64.0 + 128.5000 37.2500 -64.0 + 126.5000 38.2500 -64.0 + 122.7500 37.5000 -64.0 + 124.5000 34.7500 -64.0 + 121.7500 30.5000 -64.0 + 118.5000 31.2500 -64.0 + 116.7500 29.5000 -64.0 + 113.5000 29.2500 -64.0 + 111.5000 30.2500 -64.0 + 110.7500 29.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 31.5000 -64.0 + 130.2500 32.5000 -64.0 + 130.7500 31.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 57.5000 -64.0 + 83.5000 58.2500 -64.0 + 82.2500 62.5000 -64.0 + 87.2500 65.5000 -64.0 + 90.5000 65.7500 -64.0 + 91.2500 67.5000 -64.0 + 91.7500 66.5000 -64.0 + 92.5000 64.7500 -64.0 + 92.5000 60.2500 -64.0 + 90.5000 61.2500 -64.0 + 86.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 67.5000 -64.0 + 82.2500 71.5000 -64.0 + 84.2500 73.5000 -64.0 + 89.5000 73.7500 -64.0 + 91.5000 72.7500 -64.0 + 91.7500 70.5000 -64.0 + 86.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 70.5000 -64.0 + 129.5000 72.2500 -64.0 + 129.2500 74.5000 -64.0 + 130.2500 76.5000 -64.0 + 137.5000 76.7500 -64.0 + 140.5000 73.7500 -64.0 + 140.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 80.5000 -64.0 + 62.2500 84.5000 -64.0 + 59.2500 90.5000 -64.0 + 58.2500 95.5000 -64.0 + 52.5000 106.2500 -64.0 + 52.2500 109.5000 -64.0 + 55.5000 111.7500 -64.0 + 57.5000 110.7500 -64.0 + 57.7500 106.5000 -64.0 + 59.7500 101.5000 -64.0 + 66.5000 91.7500 -64.0 + 66.7500 86.5000 -64.0 + 64.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 85.5000 -64.0 + 150.2500 87.5000 -64.0 + 147.5000 90.2500 -64.0 + 147.2500 95.5000 -64.0 + 148.2500 98.5000 -64.0 + 153.2500 103.5000 -64.0 + 153.2500 105.5000 -64.0 + 156.2500 107.5000 -64.0 + 155.5000 111.2500 -64.0 + 153.5000 108.2500 -64.0 + 153.2500 113.5000 -64.0 + 155.2500 114.5000 -64.0 + 157.5000 113.7500 -64.0 + 158.5000 111.7500 -64.0 + 158.7500 108.5000 -64.0 + 157.7500 106.5000 -64.0 + 157.7500 103.5000 -64.0 + 153.7500 93.5000 -64.0 + 153.7500 89.5000 -64.0 + 152.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 143.2500 117.5000 -64.0 + 143.5000 119.7500 -64.0 + 145.5000 118.7500 -64.0 + 144.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 118.5000 -64.0 + 64.5000 122.7500 -64.0 + 67.7500 121.5000 -64.0 + 66.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 118.5000 -64.0 + 116.5000 122.2500 -64.0 + 116.2500 124.5000 -64.0 + 117.2500 127.5000 -64.0 + 122.2500 133.5000 -64.0 + 122.2500 143.5000 -64.0 + 125.2500 147.5000 -64.0 + 128.5000 147.7500 -64.0 + 130.5000 146.7500 -64.0 + 138.5000 146.7500 -64.0 + 142.2500 149.5000 -64.0 + 145.2500 153.5000 -64.0 + 145.2500 155.5000 -64.0 + 147.2500 159.5000 -64.0 + 147.2500 168.5000 -64.0 + 146.2500 171.5000 -64.0 + 140.5000 177.2500 -64.0 + 129.5000 185.2500 -64.0 + 127.5000 185.2500 -64.0 + 123.5000 187.2500 -64.0 + 121.5000 187.2500 -64.0 + 119.5000 188.2500 -64.0 + 112.5000 186.2500 -64.0 + 107.7500 179.5000 -64.0 + 107.7500 177.5000 -64.0 + 106.7500 175.5000 -64.0 + 106.5000 168.2500 -64.0 + 104.5000 167.2500 -64.0 + 102.5000 170.2500 -64.0 + 102.2500 176.5000 -64.0 + 100.2500 182.5000 -64.0 + 95.5000 187.2500 -64.0 + 91.5000 187.2500 -64.0 + 79.5000 184.2500 -64.0 + 68.5000 178.2500 -64.0 + 61.7500 171.5000 -64.0 + 58.7500 165.5000 -64.0 + 58.7500 153.5000 -64.0 + 59.7500 150.5000 -64.0 + 62.5000 146.7500 -64.0 + 62.7500 140.5000 -64.0 + 68.5000 137.7500 -64.0 + 70.2500 138.5000 -64.0 + 71.2500 140.5000 -64.0 + 70.2500 142.5000 -64.0 + 81.5000 143.7500 -64.0 + 83.5000 142.7500 -64.0 + 85.5000 142.7500 -64.0 + 89.5000 138.7500 -64.0 + 90.7500 133.5000 -64.0 + 99.5000 124.7500 -64.0 + 99.7500 121.5000 -64.0 + 97.2500 119.5000 -64.0 + 98.2500 121.5000 -64.0 + 98.2500 124.5000 -64.0 + 87.5000 132.2500 -64.0 + 87.2500 134.5000 -64.0 + 85.5000 135.2500 -64.0 + 82.5000 134.2500 -64.0 + 82.2500 135.5000 -64.0 + 83.2500 138.5000 -64.0 + 78.5000 140.2500 -64.0 + 72.7500 136.5000 -64.0 + 67.5000 136.2500 -64.0 + 65.7500 133.5000 -64.0 + 66.5000 132.7500 -64.0 + 66.7500 130.5000 -64.0 + 63.5000 133.2500 -64.0 + 59.5000 132.2500 -64.0 + 57.7500 130.5000 -64.0 + 57.7500 124.5000 -64.0 + 56.5000 124.2500 -64.0 + 55.2500 125.5000 -64.0 + 50.5000 127.2500 -64.0 + 50.5000 128.7500 -64.0 + 53.5000 127.7500 -64.0 + 55.2500 129.5000 -64.0 + 55.2500 132.5000 -64.0 + 54.5000 134.2500 -64.0 + 55.5000 135.7500 -64.0 + 57.5000 134.7500 -64.0 + 59.5000 134.7500 -64.0 + 62.2500 138.5000 -64.0 + 60.5000 140.2500 -64.0 + 60.2500 143.5000 -64.0 + 58.5000 145.2500 -64.0 + 56.7500 144.5000 -64.0 + 56.2500 145.5000 -64.0 + 54.5000 146.2500 -64.0 + 53.7500 144.5000 -64.0 + 55.5000 143.7500 -64.0 + 55.7500 142.5000 -64.0 + 53.5000 142.2500 -64.0 + 51.5000 143.2500 -64.0 + 47.5000 142.2500 -64.0 + 45.7500 140.5000 -64.0 + 46.5000 136.7500 -64.0 + 48.5000 135.7500 -64.0 + 47.7500 133.5000 -64.0 + 48.5000 131.7500 -64.0 + 47.7500 129.5000 -64.0 + 46.5000 129.2500 -64.0 + 43.5000 134.2500 -64.0 + 41.5000 141.2500 -64.0 + 41.2500 148.5000 -64.0 + 45.2500 156.5000 -64.0 + 45.2500 158.5000 -64.0 + 47.2500 160.5000 -64.0 + 49.5000 158.7500 -64.0 + 50.2500 159.5000 -64.0 + 50.2500 161.5000 -64.0 + 48.2500 163.5000 -64.0 + 52.2500 173.5000 -64.0 + 63.5000 185.7500 -64.0 + 67.5000 187.7500 -64.0 + 81.2500 197.5000 -64.0 + 86.5000 197.7500 -64.0 + 89.5000 198.7500 -64.0 + 97.2500 203.5000 -64.0 + 97.2500 206.5000 -64.0 + 100.2500 209.5000 -64.0 + 106.5000 209.7500 -64.0 + 108.7500 206.5000 -64.0 + 107.7500 204.5000 -64.0 + 107.7500 202.5000 -64.0 + 111.5000 198.7500 -64.0 + 113.5000 198.7500 -64.0 + 117.5000 196.7500 -64.0 + 124.5000 195.7500 -64.0 + 129.5000 193.7500 -64.0 + 134.5000 189.7500 -64.0 + 146.5000 183.7500 -64.0 + 151.7500 178.5000 -64.0 + 156.5000 169.7500 -64.0 + 156.7500 163.5000 -64.0 + 159.5000 160.7500 -64.0 + 162.7500 160.5000 -64.0 + 167.5000 150.7500 -64.0 + 167.7500 140.5000 -64.0 + 165.7500 136.5000 -64.0 + 165.7500 134.5000 -64.0 + 161.7500 130.5000 -64.0 + 158.5000 134.2500 -64.0 + 156.5000 134.2500 -64.0 + 155.5000 137.2500 -64.0 + 153.5000 137.2500 -64.0 + 153.2500 139.5000 -64.0 + 154.2500 141.5000 -64.0 + 151.5000 144.2500 -64.0 + 142.7500 142.5000 -64.0 + 139.5000 144.2500 -64.0 + 134.5000 144.2500 -64.0 + 130.5000 146.2500 -64.0 + 128.5000 146.2500 -64.0 + 126.7500 144.5000 -64.0 + 127.5000 140.7500 -64.0 + 129.5000 140.7500 -64.0 + 129.7500 136.5000 -64.0 + 128.5000 137.2500 -64.0 + 124.7500 136.5000 -64.0 + 123.7500 131.5000 -64.0 + 119.5000 128.2500 -64.0 + 117.7500 125.5000 -64.0 + 118.7500 121.5000 -64.0 + 120.5000 119.7500 -64.0 + 129.5000 124.7500 -64.0 + 129.7500 123.5000 -64.0 + 122.5000 119.2500 -64.0 +} -64.0 +{ -64.0 + 85.2500 123.5000 -64.0 + 82.5000 126.2500 -64.0 + 76.5000 129.2500 -64.0 + 76.2500 130.5000 -64.0 + 81.5000 129.7500 -64.0 + 86.7500 123.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 125.5000 -64.0 + 130.2500 127.5000 -64.0 + 130.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 129.5000 -64.0 + 132.2500 131.5000 -64.0 + 132.2500 137.5000 -64.0 + 133.5000 137.7500 -64.0 + 134.5000 134.7500 -64.0 + 132.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 141.5000 -64.0 + 133.2500 142.5000 -64.0 + 133.7500 141.5000 -64.0 +} -64.0 +{ -64.0 + 110.7500 33.5000 -64.0 + 111.5000 32.7500 -64.0 + 113.2500 34.5000 -64.0 + 111.5000 35.2500 -64.0 +} -64.0 +{ -64.0 + 128.5000 43.7500 -64.0 + 130.2500 44.5000 -64.0 + 128.5000 46.2500 -64.0 + 126.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 92.7500 45.5000 -64.0 + 93.5000 44.7500 -64.0 + 95.2500 45.5000 -64.0 + 94.5000 47.2500 -64.0 +} -64.0 +{ -64.0 + 62.7500 85.5000 -64.0 + 64.5000 84.7500 -64.0 + 66.2500 86.5000 -64.0 + 63.2500 93.5000 -64.0 + 58.5000 101.2500 -64.0 + 57.7500 99.5000 -64.0 + 61.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 149.7500 90.5000 -64.0 + 150.5000 89.7500 -64.0 + 152.2500 91.5000 -64.0 + 152.2500 96.5000 -64.0 + 155.2500 102.5000 -64.0 + 154.5000 104.2500 -64.0 + 153.7500 103.5000 -64.0 + 153.7500 101.5000 -64.0 + 150.5000 98.2500 -64.0 + 148.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 56.7500 102.5000 -64.0 + 57.5000 101.7500 -64.0 + 58.2500 102.5000 -64.0 + 57.5000 103.2500 -64.0 + 56.2500 107.5000 -64.0 + 55.5000 109.2500 -64.0 + 54.7500 108.5000 -64.0 + 54.7500 106.5000 -64.0 +} -64.0 +{ -64.0 + 158.7500 135.5000 -64.0 + 159.5000 134.7500 -64.0 + 162.5000 134.7500 -64.0 + 164.2500 136.5000 -64.0 + 164.2500 138.5000 -64.0 + 160.5000 143.2500 -64.0 + 157.7500 139.5000 -64.0 + 157.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 163.5000 142.7500 -64.0 + 165.5000 142.7500 -64.0 + 167.2500 144.5000 -64.0 + 165.2500 148.5000 -64.0 + 166.2500 150.5000 -64.0 + 164.5000 154.2500 -64.0 + 160.5000 154.2500 -64.0 + 158.7500 152.5000 -64.0 + 159.7500 150.5000 -64.0 + 156.7500 148.5000 -64.0 + 157.5000 147.7500 -64.0 + 156.7500 146.5000 -64.0 + 157.5000 144.7500 -64.0 + 161.5000 144.7500 -64.0 +} -64.0 +{ -64.0 + 142.7500 145.5000 -64.0 + 143.5000 144.7500 -64.0 + 147.2500 146.5000 -64.0 + 146.2500 148.5000 -64.0 + 144.5000 149.2500 -64.0 + 142.7500 147.5000 -64.0 +} -64.0 +{ -64.0 + 53.5000 147.7500 -64.0 + 55.5000 147.7500 -64.0 + 57.2500 148.5000 -64.0 + 57.2500 151.5000 -64.0 + 55.5000 153.2500 -64.0 + 53.5000 153.2500 -64.0 + 51.7500 152.5000 -64.0 + 50.7500 150.5000 -64.0 +} -64.0 +v 402 z -146.000000 -64.0 +{ -64.0 + 108.2500 27.5000 -64.0 + 104.5000 30.2500 -64.0 + 101.2500 29.5000 -64.0 + 98.5000 33.2500 -64.0 + 96.5000 32.2500 -64.0 + 94.2500 35.5000 -64.0 + 95.2500 37.5000 -64.0 + 92.5000 39.2500 -64.0 + 92.2500 41.5000 -64.0 + 93.2500 43.5000 -64.0 + 90.5000 45.2500 -64.0 + 90.2500 48.5000 -64.0 + 92.2500 50.5000 -64.0 + 94.7500 50.5000 -64.0 + 95.7500 48.5000 -64.0 + 94.7500 46.5000 -64.0 + 98.5000 43.7500 -64.0 + 98.7500 41.5000 -64.0 + 101.7500 37.5000 -64.0 + 104.5000 35.7500 -64.0 + 109.5000 35.7500 -64.0 + 111.5000 33.7500 -64.0 + 115.5000 36.7500 -64.0 + 117.5000 35.7500 -64.0 + 119.5000 35.7500 -64.0 + 123.2500 39.5000 -64.0 + 125.2500 43.5000 -64.0 + 129.2500 44.5000 -64.0 + 125.5000 48.2500 -64.0 + 125.5000 50.7500 -64.0 + 127.5000 51.7500 -64.0 + 128.2500 53.5000 -64.0 + 126.2500 57.5000 -64.0 + 127.2500 60.5000 -64.0 + 129.5000 60.7500 -64.0 + 136.5000 56.7500 -64.0 + 136.7500 54.5000 -64.0 + 134.7500 52.5000 -64.0 + 134.7500 50.5000 -64.0 + 131.7500 48.5000 -64.0 + 132.7500 46.5000 -64.0 + 130.7500 44.5000 -64.0 + 131.7500 41.5000 -64.0 + 130.7500 39.5000 -64.0 + 126.7500 38.5000 -64.0 + 128.7500 35.5000 -64.0 + 124.7500 34.5000 -64.0 + 126.5000 32.7500 -64.0 + 128.7500 32.5000 -64.0 + 124.5000 32.2500 -64.0 + 123.5000 30.2500 -64.0 + 121.5000 29.2500 -64.0 + 118.5000 30.2500 -64.0 + 116.7500 27.5000 -64.0 + 113.5000 27.2500 -64.0 + 111.5000 29.2500 -64.0 +} -64.0 +{ -64.0 + 85.2500 56.5000 -64.0 + 82.2500 61.5000 -64.0 + 83.2500 63.5000 -64.0 + 86.5000 63.7500 -64.0 + 91.2500 67.5000 -64.0 + 89.5000 68.2500 -64.0 + 82.5000 66.2500 -64.0 + 80.5000 69.2500 -64.0 + 81.5000 70.7500 -64.0 + 81.7500 68.5000 -64.0 + 83.5000 67.7500 -64.0 + 85.2500 68.5000 -64.0 + 84.5000 69.2500 -64.0 + 85.2500 72.5000 -64.0 + 83.5000 73.2500 -64.0 + 81.7500 72.5000 -64.0 + 81.2500 73.5000 -64.0 + 91.5000 73.7500 -64.0 + 92.5000 69.7500 -64.0 + 92.7500 63.5000 -64.0 + 91.7500 60.5000 -64.0 + 86.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 59.5000 -64.0 + 129.5000 64.2500 -64.0 + 129.2500 66.5000 -64.0 + 130.2500 68.5000 -64.0 + 132.5000 68.7500 -64.0 + 133.2500 70.5000 -64.0 + 134.5000 69.7500 -64.0 + 133.7500 68.5000 -64.0 + 136.7500 63.5000 -64.0 + 134.7500 61.5000 -64.0 + 136.5000 60.7500 -64.0 + 138.2500 62.5000 -64.0 + 138.2500 66.5000 -64.0 + 139.5000 65.7500 -64.0 + 139.7500 63.5000 -64.0 + 138.7500 60.5000 -64.0 +} -64.0 +{ -64.0 + 138.2500 69.5000 -64.0 + 137.2500 72.5000 -64.0 + 140.5000 70.7500 -64.0 + 139.7500 69.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 71.5000 -64.0 + 130.5000 72.2500 -64.0 + 130.2500 74.5000 -64.0 + 131.5000 75.7500 -64.0 + 136.5000 76.7500 -64.0 + 135.5000 76.2500 -64.0 + 131.7500 73.5000 -64.0 + 132.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 142.2500 73.5000 -64.0 + 142.2500 74.5000 -64.0 + 141.5000 76.2500 -64.0 + 142.5000 76.7500 -64.0 + 142.7500 74.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 81.5000 -64.0 + 58.5000 92.2500 -64.0 + 57.2500 98.5000 -64.0 + 53.5000 104.2500 -64.0 + 53.2500 108.5000 -64.0 + 54.2500 110.5000 -64.0 + 57.5000 110.7500 -64.0 + 58.5000 108.7500 -64.0 + 58.7500 102.5000 -64.0 + 67.7500 92.5000 -64.0 + 68.7500 87.5000 -64.0 + 65.7500 84.5000 -64.0 + 65.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 85.5000 -64.0 + 150.2500 87.5000 -64.0 + 146.5000 91.2500 -64.0 + 146.2500 95.5000 -64.0 + 147.2500 97.5000 -64.0 + 147.2500 99.5000 -64.0 + 152.5000 101.7500 -64.0 + 152.7500 99.5000 -64.0 + 150.5000 99.2500 -64.0 + 147.7500 95.5000 -64.0 + 147.7500 92.5000 -64.0 + 150.5000 89.7500 -64.0 + 152.2500 93.5000 -64.0 + 152.2500 95.5000 -64.0 + 155.2500 101.5000 -64.0 + 155.2500 105.5000 -64.0 + 156.2500 108.5000 -64.0 + 155.5000 110.2500 -64.0 + 153.7500 109.5000 -64.0 + 153.7500 106.5000 -64.0 + 152.5000 107.2500 -64.0 + 152.2500 109.5000 -64.0 + 153.5000 112.7500 -64.0 + 155.5000 113.7500 -64.0 + 157.5000 112.7500 -64.0 + 157.7500 104.5000 -64.0 + 153.7500 94.5000 -64.0 + 153.7500 90.5000 -64.0 + 152.7500 88.5000 -64.0 + 152.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 115.5000 -64.0 + 117.2500 116.5000 -64.0 + 117.2500 120.5000 -64.0 + 116.2500 123.5000 -64.0 + 122.2500 134.5000 -64.0 + 121.2500 149.5000 -64.0 + 124.5000 150.7500 -64.0 + 126.5000 149.7500 -64.0 + 130.5000 149.7500 -64.0 + 132.5000 148.7500 -64.0 + 137.5000 148.7500 -64.0 + 141.2500 151.5000 -64.0 + 144.2500 155.5000 -64.0 + 144.2500 157.5000 -64.0 + 145.2500 159.5000 -64.0 + 145.2500 164.5000 -64.0 + 143.2500 170.5000 -64.0 + 132.5000 180.2500 -64.0 + 126.5000 183.2500 -64.0 + 124.5000 183.2500 -64.0 + 122.5000 184.2500 -64.0 + 117.5000 184.2500 -64.0 + 114.5000 183.2500 -64.0 + 111.7500 180.5000 -64.0 + 108.7500 175.5000 -64.0 + 108.7500 168.5000 -64.0 + 112.7500 159.5000 -64.0 + 110.5000 159.2500 -64.0 + 106.5000 162.2500 -64.0 + 100.2500 162.5000 -64.0 + 101.2500 164.5000 -64.0 + 101.2500 173.5000 -64.0 + 98.5000 180.2500 -64.0 + 94.5000 183.2500 -64.0 + 89.5000 183.2500 -64.0 + 87.5000 182.2500 -64.0 + 78.5000 181.2500 -64.0 + 64.7500 172.5000 -64.0 + 60.7500 165.5000 -64.0 + 60.7500 161.5000 -64.0 + 59.7500 159.5000 -64.0 + 60.5000 158.7500 -64.0 + 60.7500 153.5000 -64.0 + 63.7500 147.5000 -64.0 + 67.5000 144.7500 -64.0 + 74.5000 144.7500 -64.0 + 79.2500 146.5000 -64.0 + 84.5000 146.7500 -64.0 + 87.7500 144.5000 -64.0 + 90.5000 138.7500 -64.0 + 90.7500 134.5000 -64.0 + 98.5000 124.7500 -64.0 + 98.7500 122.5000 -64.0 + 97.5000 121.2500 -64.0 + 97.2500 125.5000 -64.0 + 94.5000 128.2500 -64.0 + 90.5000 130.2500 -64.0 + 88.2500 134.5000 -64.0 + 84.2500 137.5000 -64.0 + 87.2500 141.5000 -64.0 + 86.2500 143.5000 -64.0 + 83.5000 145.2500 -64.0 + 81.7500 144.5000 -64.0 + 82.5000 142.7500 -64.0 + 81.5000 141.2500 -64.0 + 77.5000 143.2500 -64.0 + 75.5000 143.2500 -64.0 + 69.7500 138.5000 -64.0 + 65.5000 138.2500 -64.0 + 64.7500 136.5000 -64.0 + 65.5000 134.7500 -64.0 + 67.7500 133.5000 -64.0 + 64.5000 133.2500 -64.0 + 62.5000 134.2500 -64.0 + 59.5000 134.2500 -64.0 + 57.7500 133.5000 -64.0 + 54.7500 127.5000 -64.0 + 49.5000 127.2500 -64.0 + 46.2500 130.5000 -64.0 + 43.5000 136.2500 -64.0 + 43.2500 148.5000 -64.0 + 47.5000 157.7500 -64.0 + 49.5000 158.7500 -64.0 + 52.2500 162.5000 -64.0 + 52.2500 167.5000 -64.0 + 59.5000 178.7500 -64.0 + 67.5000 184.7500 -64.0 + 80.2500 191.5000 -64.0 + 83.5000 191.7500 -64.0 + 85.2500 193.5000 -64.0 + 88.5000 193.7500 -64.0 + 90.5000 192.7500 -64.0 + 91.2500 193.5000 -64.0 + 106.5000 193.7500 -64.0 + 108.5000 194.7500 -64.0 + 110.5000 193.7500 -64.0 + 114.5000 193.7500 -64.0 + 121.5000 191.7500 -64.0 + 127.5000 190.7500 -64.0 + 140.5000 183.7500 -64.0 + 146.5000 179.7500 -64.0 + 152.5000 168.7500 -64.0 + 153.7500 163.5000 -64.0 + 152.7500 160.5000 -64.0 + 155.5000 156.7500 -64.0 + 155.7500 154.5000 -64.0 + 154.7500 151.5000 -64.0 + 153.5000 151.2500 -64.0 + 151.7500 149.5000 -64.0 + 151.7500 147.5000 -64.0 + 149.7500 145.5000 -64.0 + 145.5000 144.2500 -64.0 + 143.5000 145.2500 -64.0 + 140.5000 144.2500 -64.0 + 138.5000 145.2500 -64.0 + 136.5000 145.2500 -64.0 + 134.5000 143.2500 -64.0 + 134.2500 145.5000 -64.0 + 131.5000 147.2500 -64.0 + 129.5000 147.2500 -64.0 + 127.7500 145.5000 -64.0 + 128.7500 143.5000 -64.0 + 127.2500 142.5000 -64.0 + 125.5000 146.2500 -64.0 + 123.7500 144.5000 -64.0 + 123.7500 140.5000 -64.0 + 125.5000 138.7500 -64.0 + 127.2500 140.5000 -64.0 + 128.5000 139.7500 -64.0 + 129.2500 140.5000 -64.0 + 130.5000 138.7500 -64.0 + 132.5000 138.7500 -64.0 + 132.7500 129.5000 -64.0 + 130.5000 126.2500 -64.0 + 128.5000 125.2500 -64.0 + 130.2500 127.5000 -64.0 + 130.2500 131.5000 -64.0 + 129.5000 133.2500 -64.0 + 125.5000 135.2500 -64.0 + 123.7500 131.5000 -64.0 + 121.7500 130.5000 -64.0 + 118.7500 125.5000 -64.0 + 118.7500 122.5000 -64.0 + 119.5000 120.7500 -64.0 + 125.5000 123.7500 -64.0 + 122.7500 120.5000 -64.0 + 118.7500 119.5000 -64.0 + 119.5000 117.7500 -64.0 + 128.2500 122.5000 -64.0 + 128.7500 121.5000 -64.0 + 121.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 143.2500 115.5000 -64.0 + 142.5000 116.2500 -64.0 + 142.5000 117.7500 -64.0 + 144.5000 118.7500 -64.0 + 144.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 117.5000 -64.0 + 65.2500 119.5000 -64.0 + 67.5000 119.7500 -64.0 + 67.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 117.5000 -64.0 + 89.2500 118.5000 -64.0 + 91.5000 118.7500 -64.0 + 92.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 126.5000 -64.0 + 79.5000 129.2500 -64.0 + 77.5000 130.2500 -64.0 + 77.5000 131.7500 -64.0 + 80.5000 130.7500 -64.0 + 83.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 161.2500 131.5000 -64.0 + 161.2500 132.5000 -64.0 + 159.5000 134.2500 -64.0 + 155.5000 134.2500 -64.0 + 153.5000 133.2500 -64.0 + 153.5000 136.7500 -64.0 + 157.5000 145.7500 -64.0 + 159.5000 146.7500 -64.0 + 162.5000 145.7500 -64.0 + 164.2500 147.5000 -64.0 + 163.5000 149.2500 -64.0 + 162.2500 155.5000 -64.0 + 164.7500 153.5000 -64.0 + 165.7500 151.5000 -64.0 + 166.5000 149.7500 -64.0 + 166.7500 141.5000 -64.0 + 165.7500 139.5000 -64.0 + 165.7500 137.5000 -64.0 + 162.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 119.7500 32.5000 -64.0 + 120.5000 31.7500 -64.0 + 122.2500 32.5000 -64.0 + 121.5000 33.2500 -64.0 +} -64.0 +{ -64.0 + 133.7500 55.5000 -64.0 + 134.5000 54.7500 -64.0 + 135.2500 55.5000 -64.0 + 134.5000 56.2500 -64.0 +} -64.0 +{ -64.0 + 85.7500 69.5000 -64.0 + 86.5000 68.7500 -64.0 + 87.2500 69.5000 -64.0 + 86.5000 70.2500 -64.0 +} -64.0 +{ -64.0 + 63.7500 85.5000 -64.0 + 64.5000 84.7500 -64.0 + 66.2500 86.5000 -64.0 + 66.2500 88.5000 -64.0 + 65.2500 91.5000 -64.0 + 63.5000 95.2500 -64.0 + 58.5000 101.2500 -64.0 + 57.7500 100.5000 -64.0 + 58.7500 97.5000 -64.0 + 61.5000 91.7500 -64.0 + 61.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 55.7500 104.5000 -64.0 + 56.5000 103.7500 -64.0 + 58.2500 104.5000 -64.0 + 57.2500 106.5000 -64.0 + 56.5000 108.2500 -64.0 + 54.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 51.7500 129.5000 -64.0 + 53.5000 128.7500 -64.0 + 55.2500 131.5000 -64.0 + 55.2500 133.5000 -64.0 + 53.5000 134.7500 -64.0 + 55.5000 135.7500 -64.0 + 57.2500 138.5000 -64.0 + 57.2500 140.5000 -64.0 + 58.5000 140.7500 -64.0 + 59.2500 142.5000 -64.0 + 58.5000 144.2500 -64.0 + 54.5000 142.2500 -64.0 + 52.5000 143.2500 -64.0 + 48.5000 143.2500 -64.0 + 46.7500 142.5000 -64.0 + 46.7500 140.5000 -64.0 + 45.7500 138.5000 -64.0 + 46.7500 136.5000 -64.0 + 48.5000 135.7500 -64.0 +} -64.0 +{ -64.0 + 160.5000 134.7500 -64.0 + 163.2500 136.5000 -64.0 + 162.2500 141.5000 -64.0 + 161.5000 143.2500 -64.0 + 159.7500 142.5000 -64.0 + 159.7500 139.5000 -64.0 + 157.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 86.7500 137.5000 -64.0 + 87.5000 136.7500 -64.0 + 88.2500 137.5000 -64.0 + 87.5000 139.2500 -64.0 +} -64.0 +v 547 z -148.000000 -64.0 +{ -64.0 + 107.2500 26.5000 -64.0 + 105.5000 27.2500 -64.0 + 104.5000 30.2500 -64.0 + 102.7500 28.5000 -64.0 + 100.5000 28.2500 -64.0 + 98.5000 31.2500 -64.0 + 97.7500 30.5000 -64.0 + 95.5000 31.2500 -64.0 + 94.2500 34.5000 -64.0 + 95.2500 36.5000 -64.0 + 94.5000 37.2500 -64.0 + 91.2500 37.5000 -64.0 + 93.5000 37.7500 -64.0 + 96.2500 40.5000 -64.0 + 93.5000 42.2500 -64.0 + 93.2500 43.5000 -64.0 + 91.5000 45.2500 -64.0 + 91.2500 47.5000 -64.0 + 92.2500 49.5000 -64.0 + 95.5000 49.7500 -64.0 + 95.7500 47.5000 -64.0 + 94.7500 44.5000 -64.0 + 98.5000 42.7500 -64.0 + 98.7500 38.5000 -64.0 + 100.7500 37.5000 -64.0 + 101.7500 35.5000 -64.0 + 105.5000 32.7500 -64.0 + 106.2500 33.5000 -64.0 + 109.7500 33.5000 -64.0 + 110.7500 31.5000 -64.0 + 112.5000 30.7500 -64.0 + 113.5000 32.7500 -64.0 + 115.5000 33.7500 -64.0 + 117.5000 32.7500 -64.0 + 121.5000 33.7500 -64.0 + 123.2500 37.5000 -64.0 + 123.2500 41.5000 -64.0 + 129.2500 43.5000 -64.0 + 125.5000 47.2500 -64.0 + 125.2500 50.5000 -64.0 + 128.5000 50.7500 -64.0 + 131.7500 47.5000 -64.0 + 132.7500 45.5000 -64.0 + 129.7500 43.5000 -64.0 + 131.5000 42.7500 -64.0 + 131.7500 39.5000 -64.0 + 126.5000 38.2500 -64.0 + 125.7500 36.5000 -64.0 + 129.5000 34.7500 -64.0 + 129.7500 32.5000 -64.0 + 128.7500 30.5000 -64.0 + 126.5000 30.2500 -64.0 + 122.5000 32.2500 -64.0 + 121.7500 30.5000 -64.0 + 123.5000 29.7500 -64.0 + 123.5000 28.2500 -64.0 + 121.5000 27.2500 -64.0 + 119.5000 28.2500 -64.0 + 117.7500 26.5000 -64.0 + 114.5000 26.2500 -64.0 + 112.5000 27.2500 -64.0 + 110.7500 26.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 43.5000 -64.0 + 134.2500 47.5000 -64.0 + 129.5000 52.2500 -64.0 + 127.5000 53.2500 -64.0 + 127.2500 54.5000 -64.0 + 129.2500 55.5000 -64.0 + 129.2500 59.5000 -64.0 + 132.5000 56.7500 -64.0 + 133.2500 57.5000 -64.0 + 133.2500 59.5000 -64.0 + 133.7500 58.5000 -64.0 + 135.5000 57.7500 -64.0 + 138.7500 60.5000 -64.0 + 136.7500 54.5000 -64.0 + 137.7500 52.5000 -64.0 + 136.7500 50.5000 -64.0 + 136.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 55.5000 -64.0 + 81.5000 59.2500 -64.0 + 82.2500 60.5000 -64.0 + 82.2500 64.5000 -64.0 + 83.5000 63.7500 -64.0 + 85.2500 64.5000 -64.0 + 86.5000 63.7500 -64.0 + 89.2500 65.5000 -64.0 + 87.5000 66.2500 -64.0 + 90.2500 70.5000 -64.0 + 91.5000 67.7500 -64.0 + 95.5000 67.7500 -64.0 + 93.7500 66.5000 -64.0 + 95.5000 65.7500 -64.0 + 94.7500 64.5000 -64.0 + 97.5000 62.7500 -64.0 + 95.7500 61.5000 -64.0 + 94.5000 62.2500 -64.0 + 92.7500 61.5000 -64.0 + 91.7500 59.5000 -64.0 + 86.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 58.5000 -64.0 + 125.2500 59.5000 -64.0 + 127.5000 59.7500 -64.0 +} -64.0 +{ -64.0 + 102.2500 59.5000 -64.0 + 103.2500 60.5000 -64.0 + 108.5000 60.7500 -64.0 + 111.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 59.5000 -64.0 + 139.2500 61.5000 -64.0 + 140.2500 63.5000 -64.0 + 140.2500 65.5000 -64.0 + 141.5000 65.7500 -64.0 + 141.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 60.5000 -64.0 + 133.5000 61.2500 -64.0 + 135.5000 65.7500 -64.0 + 135.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 63.5000 -64.0 + 111.5000 65.2500 -64.0 + 103.5000 66.2500 -64.0 + 105.2500 67.5000 -64.0 + 118.5000 67.7500 -64.0 + 127.5000 68.7500 -64.0 + 130.5000 69.7500 -64.0 + 131.2500 71.5000 -64.0 + 131.7500 70.5000 -64.0 + 130.7500 68.5000 -64.0 + 133.5000 66.7500 -64.0 + 131.7500 65.5000 -64.0 + 131.7500 63.5000 -64.0 + 129.5000 63.2500 -64.0 + 129.2500 64.5000 -64.0 + 130.2500 66.5000 -64.0 + 128.5000 67.2500 -64.0 + 119.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 71.5000 -64.0 + 83.2500 72.5000 -64.0 + 84.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 71.5000 -64.0 + 86.2500 72.5000 -64.0 + 89.2500 74.5000 -64.0 + 97.5000 74.2500 -64.0 + 88.7500 72.5000 -64.0 + 89.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 72.5000 -64.0 + 76.5000 73.2500 -64.0 + 73.5000 73.2500 -64.0 + 71.5000 74.2500 -64.0 + 69.5000 74.2500 -64.0 + 67.5000 75.2500 -64.0 + 64.2500 75.5000 -64.0 + 71.5000 75.7500 -64.0 + 72.2500 77.5000 -64.0 + 71.2500 80.5000 -64.0 + 72.5000 79.7500 -64.0 + 82.5000 74.7500 -64.0 + 81.5000 74.2500 -64.0 + 79.5000 75.2500 -64.0 + 77.7500 73.5000 -64.0 + 78.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 72.5000 -64.0 + 129.5000 73.2500 -64.0 + 133.2500 76.5000 -64.0 + 132.5000 77.2500 -64.0 + 130.5000 77.2500 -64.0 + 128.7500 76.5000 -64.0 + 122.5000 76.2500 -64.0 + 122.2500 80.5000 -64.0 + 123.5000 79.7500 -64.0 + 129.5000 77.7500 -64.0 + 131.5000 78.7500 -64.0 + 133.5000 77.7500 -64.0 + 136.5000 77.7500 -64.0 +} -64.0 +{ -64.0 + 144.2500 72.5000 -64.0 + 143.5000 73.2500 -64.0 + 145.2500 74.5000 -64.0 + 142.5000 77.2500 -64.0 + 145.2500 79.5000 -64.0 + 146.5000 78.7500 -64.0 + 147.2500 79.5000 -64.0 + 150.5000 79.7500 -64.0 + 152.2500 80.5000 -64.0 + 159.5000 80.7500 -64.0 + 148.5000 75.2500 -64.0 + 146.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 81.5000 -64.0 + 53.2500 106.5000 -64.0 + 55.2500 110.5000 -64.0 + 57.5000 110.7500 -64.0 + 58.7500 109.5000 -64.0 + 59.7500 104.5000 -64.0 + 58.5000 103.2500 -64.0 + 58.2500 105.5000 -64.0 + 56.5000 107.2500 -64.0 + 55.7500 106.5000 -64.0 + 55.7500 104.5000 -64.0 + 58.5000 100.7500 -64.0 + 57.7500 99.5000 -64.0 + 64.5000 85.7500 -64.0 + 65.2500 87.5000 -64.0 + 67.2500 88.5000 -64.0 + 67.2500 91.5000 -64.0 + 64.5000 95.2500 -64.0 + 62.2500 96.5000 -64.0 + 61.2500 98.5000 -64.0 + 64.5000 96.7500 -64.0 + 66.5000 96.7500 -64.0 + 68.7500 92.5000 -64.0 + 69.7500 87.5000 -64.0 + 67.7500 85.5000 -64.0 + 65.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 81.5000 -64.0 + 139.2500 82.5000 -64.0 + 138.5000 84.2500 -64.0 + 138.2500 86.5000 -64.0 + 139.2500 88.5000 -64.0 + 139.2500 91.5000 -64.0 + 140.5000 92.7500 -64.0 + 140.7500 88.5000 -64.0 + 139.7500 86.5000 -64.0 + 139.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 85.5000 -64.0 + 150.2500 87.5000 -64.0 + 152.2500 91.5000 -64.0 + 153.2500 97.5000 -64.0 + 155.2500 101.5000 -64.0 + 155.2500 108.5000 -64.0 + 154.5000 110.2500 -64.0 + 153.7500 109.5000 -64.0 + 153.7500 105.5000 -64.0 + 152.5000 105.2500 -64.0 + 152.2500 107.5000 -64.0 + 153.2500 109.5000 -64.0 + 153.2500 112.5000 -64.0 + 155.5000 112.7500 -64.0 + 157.5000 111.7500 -64.0 + 157.7500 107.5000 -64.0 + 156.7500 105.5000 -64.0 + 155.7500 99.5000 -64.0 + 152.7500 93.5000 -64.0 + 152.7500 87.5000 -64.0 + 151.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 147.2500 97.5000 -64.0 + 148.2500 99.5000 -64.0 + 151.5000 99.7500 -64.0 + 151.7500 98.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 109.5000 -64.0 + 104.5000 110.2500 -64.0 + 99.5000 113.2500 -64.0 + 97.5000 113.2500 -64.0 + 95.5000 114.2500 -64.0 + 93.5000 114.2500 -64.0 + 88.5000 116.2500 -64.0 + 86.2500 119.5000 -64.0 + 84.2500 123.5000 -64.0 + 85.5000 123.7500 -64.0 + 87.5000 121.7500 -64.0 + 94.5000 117.7500 -64.0 + 96.5000 117.7500 -64.0 + 100.5000 115.7500 -64.0 + 104.5000 115.7500 -64.0 + 106.2500 116.5000 -64.0 + 105.5000 118.2500 -64.0 + 105.2500 121.5000 -64.0 + 107.2500 123.5000 -64.0 + 108.5000 122.7500 -64.0 + 110.5000 122.7500 -64.0 + 110.7500 118.5000 -64.0 + 109.7500 116.5000 -64.0 + 110.5000 115.7500 -64.0 + 113.5000 116.7500 -64.0 + 117.2500 118.5000 -64.0 + 117.2500 124.5000 -64.0 + 119.2500 128.5000 -64.0 + 123.2500 135.5000 -64.0 + 123.2500 140.5000 -64.0 + 121.5000 142.2500 -64.0 + 118.2500 151.5000 -64.0 + 115.5000 154.2500 -64.0 + 107.5000 159.2500 -64.0 + 101.5000 159.2500 -64.0 + 97.7500 156.5000 -64.0 + 95.5000 156.2500 -64.0 + 91.5000 154.2500 -64.0 + 91.2500 156.5000 -64.0 + 95.2500 161.5000 -64.0 + 99.2500 168.5000 -64.0 + 99.2500 172.5000 -64.0 + 96.5000 176.2500 -64.0 + 92.5000 178.2500 -64.0 + 90.5000 178.2500 -64.0 + 87.5000 177.2500 -64.0 + 85.5000 178.2500 -64.0 + 84.7500 177.5000 -64.0 + 83.5000 178.2500 -64.0 + 79.5000 178.2500 -64.0 + 73.5000 175.2500 -64.0 + 67.5000 170.2500 -64.0 + 62.7500 163.5000 -64.0 + 62.7500 161.5000 -64.0 + 61.7500 159.5000 -64.0 + 61.7500 157.5000 -64.0 + 63.7500 151.5000 -64.0 + 68.5000 146.7500 -64.0 + 70.5000 146.7500 -64.0 + 72.5000 145.7500 -64.0 + 84.2500 151.5000 -64.0 + 89.5000 151.7500 -64.0 + 89.7500 148.5000 -64.0 + 90.5000 146.7500 -64.0 + 90.7500 136.5000 -64.0 + 92.7500 131.5000 -64.0 + 97.5000 126.7500 -64.0 + 97.7500 122.5000 -64.0 + 96.5000 124.2500 -64.0 + 96.2500 126.5000 -64.0 + 89.5000 132.2500 -64.0 + 89.2500 135.5000 -64.0 + 88.5000 137.2500 -64.0 + 86.7500 135.5000 -64.0 + 84.5000 135.2500 -64.0 + 82.7500 132.5000 -64.0 + 82.7500 128.5000 -64.0 + 81.2500 131.5000 -64.0 + 80.5000 133.2500 -64.0 + 81.5000 134.7500 -64.0 + 83.5000 135.7500 -64.0 + 84.2500 137.5000 -64.0 + 88.2500 139.5000 -64.0 + 88.2500 141.5000 -64.0 + 86.5000 143.2500 -64.0 + 84.5000 143.2500 -64.0 + 84.2500 144.5000 -64.0 + 83.5000 146.2500 -64.0 + 81.5000 146.2500 -64.0 + 78.5000 143.2500 -64.0 + 76.5000 144.2500 -64.0 + 74.7500 143.5000 -64.0 + 72.5000 143.2500 -64.0 + 70.7500 142.5000 -64.0 + 69.7500 140.5000 -64.0 + 67.5000 138.2500 -64.0 + 67.2500 140.5000 -64.0 + 69.2500 142.5000 -64.0 + 68.5000 143.2500 -64.0 + 67.7500 142.5000 -64.0 + 65.5000 144.2500 -64.0 + 63.7500 142.5000 -64.0 + 63.7500 138.5000 -64.0 + 65.7500 137.5000 -64.0 + 66.7500 135.5000 -64.0 + 62.5000 135.2500 -64.0 + 60.5000 136.2500 -64.0 + 58.5000 136.2500 -64.0 + 56.5000 137.2500 -64.0 + 55.7500 136.5000 -64.0 + 55.7500 134.5000 -64.0 + 56.5000 132.7500 -64.0 + 55.7500 131.5000 -64.0 + 55.7500 129.5000 -64.0 + 53.7500 127.5000 -64.0 + 51.5000 127.2500 -64.0 + 48.5000 128.2500 -64.0 + 45.5000 132.2500 -64.0 + 45.2500 137.5000 -64.0 + 44.5000 139.2500 -64.0 + 44.2500 146.5000 -64.0 + 45.2500 148.5000 -64.0 + 45.5000 150.7500 -64.0 + 49.2500 153.5000 -64.0 + 51.2500 157.5000 -64.0 + 52.5000 157.7500 -64.0 + 55.2500 161.5000 -64.0 + 55.2500 164.5000 -64.0 + 57.5000 167.7500 -64.0 + 61.2500 176.5000 -64.0 + 62.5000 176.7500 -64.0 + 68.5000 181.7500 -64.0 + 76.5000 185.7500 -64.0 + 78.2500 186.5000 -64.0 + 81.5000 186.7500 -64.0 + 83.2500 187.5000 -64.0 + 91.5000 187.7500 -64.0 + 93.2500 188.5000 -64.0 + 102.5000 188.7500 -64.0 + 104.5000 189.7500 -64.0 + 106.5000 188.7500 -64.0 + 108.2500 189.5000 -64.0 + 112.5000 189.7500 -64.0 + 114.5000 188.7500 -64.0 + 118.5000 188.7500 -64.0 + 120.5000 187.7500 -64.0 + 124.5000 187.7500 -64.0 + 126.5000 186.7500 -64.0 + 128.5000 186.7500 -64.0 + 130.5000 185.7500 -64.0 + 132.7500 185.5000 -64.0 + 142.7500 178.5000 -64.0 + 145.5000 174.7500 -64.0 + 147.7500 168.5000 -64.0 + 150.5000 162.7500 -64.0 + 150.7500 149.5000 -64.0 + 148.7500 147.5000 -64.0 + 146.5000 147.2500 -64.0 + 146.2500 149.5000 -64.0 + 144.5000 151.2500 -64.0 + 134.5000 146.2500 -64.0 + 132.5000 148.2500 -64.0 + 130.5000 148.2500 -64.0 + 128.7500 147.5000 -64.0 + 126.7500 143.5000 -64.0 + 127.5000 141.7500 -64.0 + 126.7500 140.5000 -64.0 + 126.7500 136.5000 -64.0 + 128.5000 134.7500 -64.0 + 131.5000 134.7500 -64.0 + 131.7500 131.5000 -64.0 + 130.7500 129.5000 -64.0 + 131.7500 122.5000 -64.0 + 130.7500 119.5000 -64.0 + 128.7500 118.5000 -64.0 + 121.7500 114.5000 -64.0 + 115.5000 113.2500 -64.0 + 109.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 142.2500 114.5000 -64.0 + 141.5000 115.2500 -64.0 + 142.2500 116.5000 -64.0 + 144.5000 116.7500 -64.0 +} -64.0 +{ -64.0 + 67.2500 115.5000 -64.0 + 66.5000 116.2500 -64.0 + 66.5000 117.7500 -64.0 + 68.5000 118.7500 -64.0 + 68.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 160.2500 131.5000 -64.0 + 160.2500 132.5000 -64.0 + 159.5000 134.2500 -64.0 + 156.5000 134.2500 -64.0 + 153.5000 133.2500 -64.0 + 159.2500 145.5000 -64.0 + 163.2500 150.5000 -64.0 + 164.5000 149.7500 -64.0 + 164.7500 137.5000 -64.0 + 161.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 139.5000 -64.0 + 82.5000 142.7500 -64.0 + 83.5000 142.2500 -64.0 + 79.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 113.7500 27.5000 -64.0 + 115.5000 26.7500 -64.0 + 117.2500 27.5000 -64.0 + 116.5000 29.2500 -64.0 +} -64.0 +{ -64.0 + 125.7500 33.5000 -64.0 + 126.5000 32.7500 -64.0 + 127.2500 33.5000 -64.0 + 126.5000 35.2500 -64.0 +} -64.0 +{ -64.0 + 132.7500 52.5000 -64.0 + 133.5000 51.7500 -64.0 + 135.2500 53.5000 -64.0 + 133.5000 54.2500 -64.0 +} -64.0 +{ -64.0 + 83.7500 57.5000 -64.0 + 85.5000 56.7500 -64.0 + 87.2500 57.5000 -64.0 + 85.5000 59.2500 -64.0 + 86.2500 62.5000 -64.0 + 84.5000 63.2500 -64.0 + 82.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 92.7500 116.5000 -64.0 + 93.5000 115.7500 -64.0 + 94.2500 116.5000 -64.0 + 93.5000 117.2500 -64.0 +} -64.0 +{ -64.0 + 119.7500 116.5000 -64.0 + 120.5000 115.7500 -64.0 + 121.2500 116.5000 -64.0 + 120.5000 117.2500 -64.0 +} -64.0 +{ -64.0 + 121.7500 117.5000 -64.0 + 122.5000 116.7500 -64.0 + 123.2500 117.5000 -64.0 + 122.5000 118.2500 -64.0 +} -64.0 +{ -64.0 + 107.7500 119.5000 -64.0 + 108.5000 118.7500 -64.0 + 109.2500 119.5000 -64.0 + 108.5000 120.2500 -64.0 +} -64.0 +{ -64.0 + 118.7500 119.5000 -64.0 + 119.5000 118.7500 -64.0 + 120.2500 119.5000 -64.0 + 124.5000 120.7500 -64.0 + 129.2500 125.5000 -64.0 + 128.5000 127.2500 -64.0 + 125.5000 125.2500 -64.0 + 123.5000 124.2500 -64.0 +} -64.0 +{ -64.0 + 126.7500 120.5000 -64.0 + 127.5000 119.7500 -64.0 + 128.2500 120.5000 -64.0 + 127.5000 121.2500 -64.0 +} -64.0 +{ -64.0 + 117.7500 121.5000 -64.0 + 118.5000 120.7500 -64.0 + 119.2500 121.5000 -64.0 + 120.2500 123.5000 -64.0 + 121.5000 123.7500 -64.0 + 123.5000 125.7500 -64.0 + 127.2500 128.5000 -64.0 + 127.2500 131.5000 -64.0 + 125.5000 133.2500 -64.0 + 123.5000 133.2500 -64.0 + 120.7500 129.5000 -64.0 + 120.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 49.7500 132.5000 -64.0 + 51.5000 131.7500 -64.0 + 53.2500 133.5000 -64.0 + 53.2500 135.5000 -64.0 + 55.2500 137.5000 -64.0 + 55.2500 139.5000 -64.0 + 51.5000 143.2500 -64.0 + 48.5000 143.2500 -64.0 + 45.7500 139.5000 -64.0 + 47.5000 135.7500 -64.0 + 49.7500 135.5000 -64.0 + 48.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 129.7500 152.5000 -64.0 + 130.5000 151.7500 -64.0 + 137.5000 151.7500 -64.0 + 142.2500 156.5000 -64.0 + 142.2500 159.5000 -64.0 + 143.2500 161.5000 -64.0 + 143.2500 166.5000 -64.0 + 141.2500 168.5000 -64.0 + 140.2500 170.5000 -64.0 + 135.2500 174.5000 -64.0 + 128.5000 179.2500 -64.0 + 126.5000 179.2500 -64.0 + 124.5000 180.2500 -64.0 + 120.5000 180.2500 -64.0 + 114.7500 177.5000 -64.0 + 111.7500 172.5000 -64.0 + 111.7500 167.5000 -64.0 + 114.5000 163.7500 -64.0 + 116.5000 162.7500 -64.0 + 122.5000 155.7500 -64.0 + 127.5000 152.7500 -64.0 +} -64.0 +{ -64.0 + 101.7500 165.5000 -64.0 + 102.5000 164.7500 -64.0 + 103.5000 165.7500 -64.0 + 105.5000 164.7500 -64.0 + 106.2500 165.5000 -64.0 + 106.2500 167.5000 -64.0 + 105.5000 169.2500 -64.0 + 103.5000 169.2500 -64.0 +} -64.0 +v 616 z -150.000000 -64.0 +{ -64.0 + 106.2500 26.5000 -64.0 + 111.2500 27.5000 -64.0 + 109.2500 28.5000 -64.0 + 107.5000 32.2500 -64.0 + 105.7500 30.5000 -64.0 + 105.7500 27.5000 -64.0 + 101.5000 27.2500 -64.0 + 102.5000 27.7500 -64.0 + 104.2500 31.5000 -64.0 + 102.5000 32.2500 -64.0 + 100.7500 30.5000 -64.0 + 100.7500 28.5000 -64.0 + 95.5000 31.2500 -64.0 + 94.7500 29.5000 -64.0 + 93.2500 29.5000 -64.0 + 91.2500 33.5000 -64.0 + 90.5000 36.7500 -64.0 + 92.5000 35.7500 -64.0 + 94.2500 37.5000 -64.0 + 95.5000 36.7500 -64.0 + 96.2500 37.5000 -64.0 + 98.5000 37.7500 -64.0 + 99.5000 39.7500 -64.0 + 99.7500 37.5000 -64.0 + 97.7500 35.5000 -64.0 + 99.5000 32.7500 -64.0 + 101.2500 33.5000 -64.0 + 101.2500 35.5000 -64.0 + 105.5000 31.7500 -64.0 + 106.2500 32.5000 -64.0 + 109.5000 32.7500 -64.0 + 112.5000 29.7500 -64.0 + 113.2500 31.5000 -64.0 + 115.5000 32.7500 -64.0 + 117.5000 31.7500 -64.0 + 120.5000 31.7500 -64.0 + 122.7500 27.5000 -64.0 + 120.7500 26.5000 -64.0 + 119.5000 27.2500 -64.0 + 117.5000 26.2500 -64.0 + 118.2500 29.5000 -64.0 + 116.5000 30.2500 -64.0 + 115.7500 28.5000 -64.0 + 112.7500 27.5000 -64.0 + 113.7500 26.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 29.5000 -64.0 + 123.5000 32.2500 -64.0 + 121.5000 32.2500 -64.0 + 122.2500 35.5000 -64.0 + 123.5000 33.7500 -64.0 + 126.5000 33.7500 -64.0 + 128.2500 34.5000 -64.0 + 129.5000 33.7500 -64.0 + 129.7500 29.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 36.5000 -64.0 + 127.2500 38.5000 -64.0 + 128.5000 37.7500 -64.0 + 130.2500 38.5000 -64.0 + 130.2500 41.5000 -64.0 + 129.5000 43.2500 -64.0 + 130.2500 46.5000 -64.0 + 133.2500 47.5000 -64.0 + 132.2500 52.5000 -64.0 + 133.5000 49.7500 -64.0 + 135.2500 50.5000 -64.0 + 135.5000 55.7500 -64.0 + 137.7500 47.5000 -64.0 + 136.7500 45.5000 -64.0 + 136.7500 43.5000 -64.0 + 132.5000 43.2500 -64.0 + 130.7500 42.5000 -64.0 + 130.7500 39.5000 -64.0 + 133.5000 36.7500 -64.0 + 132.5000 36.2500 -64.0 + 130.5000 37.2500 -64.0 +} -64.0 +{ -64.0 + 123.2500 38.5000 -64.0 + 123.2500 40.5000 -64.0 + 123.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 39.5000 -64.0 + 134.5000 40.2500 -64.0 + 136.2500 41.5000 -64.0 + 136.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 98.2500 40.5000 -64.0 + 97.2500 41.5000 -64.0 + 98.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 43.5000 -64.0 + 87.2500 46.5000 -64.0 + 85.5000 50.2500 -64.0 + 81.5000 50.2500 -64.0 + 79.5000 51.2500 -64.0 + 80.2500 52.5000 -64.0 + 80.2500 55.5000 -64.0 + 79.5000 57.2500 -64.0 + 78.7500 56.5000 -64.0 + 78.2500 57.5000 -64.0 + 80.5000 60.7500 -64.0 + 80.7500 58.5000 -64.0 + 85.5000 53.7500 -64.0 + 86.5000 54.7500 -64.0 + 88.7500 46.5000 -64.0 + 90.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 43.5000 -64.0 + 94.2500 44.5000 -64.0 + 93.2500 49.5000 -64.0 + 94.5000 49.7500 -64.0 + 96.5000 48.7500 -64.0 + 96.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 43.5000 -64.0 + 126.2500 44.5000 -64.0 + 124.5000 46.2500 -64.0 + 124.2500 48.5000 -64.0 + 125.2500 50.5000 -64.0 + 127.5000 50.7500 -64.0 + 126.7500 49.5000 -64.0 + 127.5000 48.7500 -64.0 + 128.2500 49.5000 -64.0 + 128.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 49.5000 -64.0 + 116.2500 50.5000 -64.0 + 117.5000 50.7500 -64.0 + 120.2500 53.5000 -64.0 + 118.5000 54.2500 -64.0 + 117.5000 54.7500 -64.0 + 119.5000 55.7500 -64.0 + 121.2500 56.5000 -64.0 + 120.2500 58.5000 -64.0 + 124.5000 58.7500 -64.0 + 124.7500 56.5000 -64.0 + 125.5000 54.7500 -64.0 + 119.7500 49.5000 -64.0 +} -64.0 +{ -64.0 + 145.2500 53.5000 -64.0 + 144.5000 54.2500 -64.0 + 142.2500 54.5000 -64.0 + 144.5000 54.7500 -64.0 + 146.5000 53.7500 -64.0 + 148.7500 53.5000 -64.0 +} -64.0 +{ -64.0 + 111.2500 56.5000 -64.0 + 110.5000 57.2500 -64.0 + 107.5000 57.2500 -64.0 + 105.5000 58.2500 -64.0 + 101.5000 58.2500 -64.0 + 100.5000 60.2500 -64.0 + 99.7500 59.5000 -64.0 + 98.5000 60.2500 -64.0 + 96.5000 60.2500 -64.0 + 94.5000 61.2500 -64.0 + 92.5000 61.2500 -64.0 + 90.7500 57.5000 -64.0 + 89.5000 58.2500 -64.0 + 89.2500 60.5000 -64.0 + 88.5000 62.2500 -64.0 + 90.2500 65.5000 -64.0 + 92.5000 65.7500 -64.0 + 97.5000 66.7500 -64.0 + 99.5000 65.7500 -64.0 + 101.5000 65.7500 -64.0 + 103.2500 66.5000 -64.0 + 127.7500 66.5000 -64.0 + 123.5000 66.2500 -64.0 + 121.7500 65.5000 -64.0 + 122.7500 63.5000 -64.0 + 118.5000 63.2500 -64.0 + 116.5000 64.2500 -64.0 + 114.5000 64.2500 -64.0 + 112.5000 65.2500 -64.0 + 101.5000 65.2500 -64.0 + 99.7500 64.5000 -64.0 + 100.5000 62.7500 -64.0 + 102.5000 62.7500 -64.0 + 104.5000 61.7500 -64.0 + 107.5000 61.7500 -64.0 + 109.5000 60.7500 -64.0 + 112.5000 60.7500 -64.0 + 114.5000 59.7500 -64.0 + 117.5000 59.7500 -64.0 + 114.5000 58.2500 -64.0 + 113.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 57.5000 -64.0 + 149.5000 58.2500 -64.0 + 143.5000 58.2500 -64.0 + 141.5000 59.2500 -64.0 + 136.5000 59.2500 -64.0 + 137.5000 59.7500 -64.0 + 139.2500 60.5000 -64.0 + 140.5000 59.7500 -64.0 + 141.2500 60.5000 -64.0 + 143.5000 60.7500 -64.0 + 144.2500 62.5000 -64.0 + 142.5000 63.2500 -64.0 + 144.2500 65.5000 -64.0 + 143.5000 66.2500 -64.0 + 141.2500 67.5000 -64.0 + 143.2500 71.5000 -64.0 + 143.2500 73.5000 -64.0 + 141.5000 74.2500 -64.0 + 146.2500 77.5000 -64.0 + 147.2500 79.5000 -64.0 + 152.2500 82.5000 -64.0 + 152.7500 81.5000 -64.0 + 153.5000 79.7500 -64.0 + 155.2500 80.5000 -64.0 + 161.5000 82.7500 -64.0 + 160.7500 81.5000 -64.0 + 156.5000 78.2500 -64.0 + 154.5000 77.2500 -64.0 + 152.7500 76.5000 -64.0 + 147.5000 76.2500 -64.0 + 145.7500 74.5000 -64.0 + 147.5000 73.7500 -64.0 + 147.7500 72.5000 -64.0 + 143.7500 70.5000 -64.0 + 142.7500 68.5000 -64.0 + 144.5000 66.7500 -64.0 + 146.5000 66.7500 -64.0 + 148.5000 65.7500 -64.0 + 155.5000 65.7500 -64.0 + 155.7500 64.5000 -64.0 + 153.7500 63.5000 -64.0 + 152.5000 64.2500 -64.0 + 150.5000 64.2500 -64.0 + 148.7500 63.5000 -64.0 + 149.5000 62.7500 -64.0 + 151.5000 62.7500 -64.0 + 153.5000 61.7500 -64.0 + 152.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 58.5000 -64.0 + 85.2500 60.5000 -64.0 + 85.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 61.5000 -64.0 + 65.2500 62.5000 -64.0 + 75.5000 63.7500 -64.0 + 72.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 63.5000 -64.0 + 129.2500 66.5000 -64.0 + 130.5000 65.7500 -64.0 + 132.5000 66.7500 -64.0 +} -64.0 +{ -64.0 + 72.2500 65.5000 -64.0 + 70.5000 66.2500 -64.0 + 77.2500 69.5000 -64.0 + 77.5000 71.7500 -64.0 + 77.7500 68.5000 -64.0 + 75.7500 67.5000 -64.0 + 75.7500 65.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 69.5000 -64.0 + 128.2500 71.5000 -64.0 + 125.5000 74.2500 -64.0 + 92.5000 73.2500 -64.0 + 93.2500 74.5000 -64.0 + 91.5000 75.2500 -64.0 + 89.7500 73.5000 -64.0 + 91.5000 72.7500 -64.0 + 91.7500 70.5000 -64.0 + 88.5000 72.2500 -64.0 + 89.2500 74.5000 -64.0 + 87.5000 75.2500 -64.0 + 88.2500 76.5000 -64.0 + 93.5000 77.7500 -64.0 + 97.2500 81.5000 -64.0 + 100.5000 79.7500 -64.0 + 98.7500 76.5000 -64.0 + 100.5000 75.7500 -64.0 + 103.5000 76.7500 -64.0 + 105.5000 75.7500 -64.0 + 110.5000 76.7500 -64.0 + 113.5000 75.7500 -64.0 + 115.2500 76.5000 -64.0 + 114.5000 78.2500 -64.0 + 117.5000 79.7500 -64.0 + 118.2500 81.5000 -64.0 + 116.5000 83.2500 -64.0 + 116.2500 85.5000 -64.0 + 118.5000 83.7500 -64.0 + 120.5000 83.7500 -64.0 + 124.5000 81.7500 -64.0 + 125.5000 83.7500 -64.0 + 129.5000 80.7500 -64.0 + 131.5000 80.7500 -64.0 + 134.5000 77.2500 -64.0 + 132.5000 78.2500 -64.0 + 127.5000 77.2500 -64.0 + 126.7500 75.5000 -64.0 + 128.5000 73.7500 -64.0 + 130.5000 73.7500 -64.0 +} -64.0 +{ -64.0 + 75.2500 73.5000 -64.0 + 74.5000 74.2500 -64.0 + 69.5000 74.2500 -64.0 + 67.5000 75.2500 -64.0 + 61.5000 75.2500 -64.0 + 59.5000 76.2500 -64.0 + 57.5000 76.2500 -64.0 + 55.5000 77.2500 -64.0 + 53.2500 77.5000 -64.0 + 60.5000 77.7500 -64.0 + 62.5000 76.7500 -64.0 + 67.5000 76.7500 -64.0 + 69.2500 77.5000 -64.0 + 67.5000 78.2500 -64.0 + 61.5000 81.2500 -64.0 + 63.2500 82.5000 -64.0 + 61.5000 86.2500 -64.0 + 61.2500 88.5000 -64.0 + 58.2500 94.5000 -64.0 + 57.2500 99.5000 -64.0 + 54.5000 103.2500 -64.0 + 54.2500 107.5000 -64.0 + 55.2500 109.5000 -64.0 + 58.5000 109.7500 -64.0 + 59.7500 106.5000 -64.0 + 60.5000 104.7500 -64.0 + 59.7500 102.5000 -64.0 + 57.5000 106.2500 -64.0 + 56.7500 105.5000 -64.0 + 56.7500 101.5000 -64.0 + 60.7500 93.5000 -64.0 + 65.5000 85.7500 -64.0 + 67.5000 87.7500 -64.0 + 69.5000 88.7500 -64.0 + 69.7500 86.5000 -64.0 + 68.5000 86.2500 -64.0 + 66.7500 83.5000 -64.0 + 66.7500 81.5000 -64.0 + 70.5000 78.7500 -64.0 + 72.2500 79.5000 -64.0 + 77.5000 74.7500 -64.0 + 79.5000 74.7500 -64.0 + 78.5000 74.2500 -64.0 + 76.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 103.2500 82.5000 -64.0 + 103.5000 82.7500 -64.0 + 105.5000 83.7500 -64.0 + 104.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 84.5000 -64.0 + 130.5000 85.2500 -64.0 + 130.2500 87.5000 -64.0 + 131.5000 87.7500 -64.0 + 131.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 84.5000 -64.0 + 149.5000 88.2500 -64.0 + 152.2500 92.5000 -64.0 + 152.5000 94.7500 -64.0 + 152.7500 90.5000 -64.0 + 153.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 91.5000 -64.0 + 67.5000 92.2500 -64.0 + 62.2500 96.5000 -64.0 + 66.5000 96.7500 -64.0 + 68.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 95.5000 -64.0 + 153.2500 97.5000 -64.0 + 153.7500 96.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 98.5000 -64.0 + 154.2500 99.5000 -64.0 + 155.2500 101.5000 -64.0 + 155.2500 108.5000 -64.0 + 154.5000 110.2500 -64.0 + 153.5000 109.2500 -64.0 + 153.5000 111.7500 -64.0 + 155.5000 112.7500 -64.0 + 157.5000 110.7500 -64.0 + 157.7500 108.5000 -64.0 + 156.7500 106.5000 -64.0 + 156.7500 103.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 106.5000 -64.0 + 152.2500 108.5000 -64.0 + 152.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 108.5000 -64.0 + 94.5000 114.2500 -64.0 + 91.5000 114.2500 -64.0 + 87.2500 116.5000 -64.0 + 89.5000 116.7500 -64.0 + 96.5000 114.7500 -64.0 + 97.2500 116.5000 -64.0 + 95.5000 118.2500 -64.0 + 91.5000 118.2500 -64.0 + 85.5000 121.2500 -64.0 + 84.7500 119.5000 -64.0 + 86.7500 117.5000 -64.0 + 84.5000 117.2500 -64.0 + 81.5000 120.2500 -64.0 + 83.2500 122.5000 -64.0 + 83.2500 126.5000 -64.0 + 88.5000 121.7500 -64.0 + 90.2500 122.5000 -64.0 + 89.5000 124.2500 -64.0 + 92.2500 130.5000 -64.0 + 88.5000 133.2500 -64.0 + 86.7500 132.5000 -64.0 + 86.7500 130.5000 -64.0 + 83.5000 128.2500 -64.0 + 81.5000 131.2500 -64.0 + 81.2500 134.5000 -64.0 + 87.2500 138.5000 -64.0 + 87.2500 140.5000 -64.0 + 85.5000 141.2500 -64.0 + 84.5000 143.2500 -64.0 + 85.2500 145.5000 -64.0 + 84.5000 147.2500 -64.0 + 81.5000 147.2500 -64.0 + 79.5000 144.2500 -64.0 + 77.5000 143.2500 -64.0 + 73.5000 146.2500 -64.0 + 71.5000 145.2500 -64.0 + 70.7500 143.5000 -64.0 + 66.7500 140.5000 -64.0 + 64.5000 140.2500 -64.0 + 60.5000 138.2500 -64.0 + 59.2500 139.5000 -64.0 + 56.5000 145.2500 -64.0 + 55.5000 144.2500 -64.0 + 52.5000 149.2500 -64.0 + 52.2500 151.5000 -64.0 + 53.5000 152.7500 -64.0 + 55.5000 151.7500 -64.0 + 57.2500 152.5000 -64.0 + 58.2500 161.5000 -64.0 + 63.2500 174.5000 -64.0 + 75.2500 182.5000 -64.0 + 91.5000 182.7500 -64.0 + 91.7500 181.5000 -64.0 + 93.5000 179.7500 -64.0 + 94.2500 180.5000 -64.0 + 96.5000 180.7500 -64.0 + 98.5000 178.7500 -64.0 + 100.2500 180.5000 -64.0 + 100.2500 184.5000 -64.0 + 104.2500 185.5000 -64.0 + 105.5000 184.7500 -64.0 + 107.7500 178.5000 -64.0 + 105.7500 174.5000 -64.0 + 105.7500 171.5000 -64.0 + 107.5000 169.7500 -64.0 + 110.2500 175.5000 -64.0 + 110.2500 177.5000 -64.0 + 111.5000 177.7500 -64.0 + 112.2500 179.5000 -64.0 + 116.5000 180.7500 -64.0 + 119.2500 183.5000 -64.0 + 127.5000 183.7500 -64.0 + 137.5000 178.7500 -64.0 + 143.5000 172.7500 -64.0 + 146.7500 162.5000 -64.0 + 145.7500 159.5000 -64.0 + 141.5000 157.2500 -64.0 + 140.7500 155.5000 -64.0 + 134.7500 150.5000 -64.0 + 128.5000 150.2500 -64.0 + 125.7500 147.5000 -64.0 + 125.7500 142.5000 -64.0 + 124.5000 142.2500 -64.0 + 121.2500 145.5000 -64.0 + 118.5000 151.2500 -64.0 + 109.5000 157.2500 -64.0 + 101.5000 157.2500 -64.0 + 94.7500 151.5000 -64.0 + 91.7500 146.5000 -64.0 + 91.7500 142.5000 -64.0 + 90.7500 140.5000 -64.0 + 90.7500 135.5000 -64.0 + 91.7500 132.5000 -64.0 + 97.5000 125.7500 -64.0 + 97.7500 123.5000 -64.0 + 96.5000 122.2500 -64.0 + 94.5000 125.2500 -64.0 + 92.7500 124.5000 -64.0 + 93.5000 123.7500 -64.0 + 91.7500 121.5000 -64.0 + 94.5000 119.7500 -64.0 + 96.5000 119.7500 -64.0 + 98.5000 117.7500 -64.0 + 102.5000 115.7500 -64.0 + 104.2500 116.5000 -64.0 + 105.2500 122.5000 -64.0 + 108.5000 124.7500 -64.0 + 111.5000 121.7500 -64.0 + 111.7500 117.5000 -64.0 + 113.5000 116.7500 -64.0 + 115.2500 117.5000 -64.0 + 118.2500 121.5000 -64.0 + 118.2500 124.5000 -64.0 + 121.2500 130.5000 -64.0 + 121.2500 133.5000 -64.0 + 122.2500 136.5000 -64.0 + 123.7500 136.5000 -64.0 + 124.7500 134.5000 -64.0 + 121.7500 130.5000 -64.0 + 122.5000 128.7500 -64.0 + 127.2500 135.5000 -64.0 + 127.2500 138.5000 -64.0 + 129.5000 138.7500 -64.0 + 131.5000 135.7500 -64.0 + 131.7500 126.5000 -64.0 + 133.5000 124.7500 -64.0 + 133.7500 122.5000 -64.0 + 132.7500 120.5000 -64.0 + 130.5000 122.2500 -64.0 + 131.2500 123.5000 -64.0 + 130.5000 124.2500 -64.0 + 128.7500 122.5000 -64.0 + 126.5000 122.2500 -64.0 + 124.7500 120.5000 -64.0 + 120.5000 119.2500 -64.0 + 117.7500 116.5000 -64.0 + 118.5000 114.7500 -64.0 + 128.2500 119.5000 -64.0 + 129.7500 118.5000 -64.0 + 122.7500 114.5000 -64.0 + 117.5000 113.2500 -64.0 + 110.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 142.2500 113.5000 -64.0 + 142.2500 114.5000 -64.0 + 143.5000 114.7500 -64.0 +} -64.0 +{ -64.0 + 68.2500 114.5000 -64.0 + 67.2500 116.5000 -64.0 + 69.5000 116.7500 -64.0 + 69.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 50.2500 128.5000 -64.0 + 48.5000 129.2500 -64.0 + 46.5000 133.2500 -64.0 + 46.2500 140.5000 -64.0 + 45.2500 142.5000 -64.0 + 46.2500 144.5000 -64.0 + 46.2500 147.5000 -64.0 + 47.5000 148.7500 -64.0 + 50.5000 144.7500 -64.0 + 50.7500 142.5000 -64.0 + 49.5000 142.2500 -64.0 + 46.7500 138.5000 -64.0 + 49.5000 135.7500 -64.0 + 54.5000 137.7500 -64.0 + 55.5000 134.7500 -64.0 + 53.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 158.2500 131.5000 -64.0 + 157.5000 132.2500 -64.0 + 154.2500 132.5000 -64.0 + 158.2500 140.5000 -64.0 + 161.2500 144.5000 -64.0 + 162.7500 144.5000 -64.0 + 161.7500 142.5000 -64.0 + 161.7500 138.5000 -64.0 + 162.5000 136.7500 -64.0 + 161.7500 135.5000 -64.0 + 161.7500 133.5000 -64.0 + 159.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 125.7500 30.5000 -64.0 + 126.5000 29.7500 -64.0 + 128.2500 30.5000 -64.0 + 129.2500 32.5000 -64.0 + 127.5000 33.2500 -64.0 +} -64.0 +{ -64.0 + 93.7500 35.5000 -64.0 + 94.5000 34.7500 -64.0 + 95.2500 35.5000 -64.0 + 94.5000 36.2500 -64.0 +} -64.0 +{ -64.0 + 97.7500 64.5000 -64.0 + 98.5000 63.7500 -64.0 + 99.2500 64.5000 -64.0 + 98.5000 65.2500 -64.0 +} -64.0 +{ -64.0 + 150.7500 78.5000 -64.0 + 151.5000 77.7500 -64.0 + 152.2500 78.5000 -64.0 + 151.5000 79.2500 -64.0 +} -64.0 +{ -64.0 + 118.7500 82.5000 -64.0 + 119.5000 81.7500 -64.0 + 120.2500 82.5000 -64.0 + 119.5000 83.2500 -64.0 +} -64.0 +{ -64.0 + 106.7500 118.5000 -64.0 + 108.5000 117.7500 -64.0 + 109.2500 119.5000 -64.0 + 108.5000 121.2500 -64.0 + 106.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 122.5000 122.7500 -64.0 + 125.5000 123.7500 -64.0 + 128.2500 127.5000 -64.0 + 127.5000 129.2500 -64.0 + 123.5000 124.2500 -64.0 + 121.5000 125.2500 -64.0 + 120.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 72.7500 149.5000 -64.0 + 73.5000 148.7500 -64.0 + 75.5000 149.7500 -64.0 + 78.5000 152.7500 -64.0 + 80.5000 153.7500 -64.0 + 84.5000 158.7500 -64.0 + 89.2500 165.5000 -64.0 + 89.2500 168.5000 -64.0 + 85.5000 172.2500 -64.0 + 82.5000 172.2500 -64.0 + 80.5000 173.2500 -64.0 + 79.7500 172.5000 -64.0 + 77.5000 172.2500 -64.0 + 72.5000 170.2500 -64.0 + 69.5000 167.2500 -64.0 + 67.5000 166.2500 -64.0 + 64.7500 162.5000 -64.0 + 64.7500 160.5000 -64.0 + 63.7500 158.5000 -64.0 + 63.7500 156.5000 -64.0 + 69.5000 149.7500 -64.0 +} -64.0 +{ -64.0 + 121.7500 152.5000 -64.0 + 122.5000 151.7500 -64.0 + 123.2500 152.5000 -64.0 + 122.5000 153.2500 -64.0 +} -64.0 +{ -64.0 + 128.7500 156.5000 -64.0 + 129.5000 155.7500 -64.0 + 135.5000 155.7500 -64.0 + 140.2500 159.5000 -64.0 + 140.2500 162.5000 -64.0 + 138.2500 166.5000 -64.0 + 135.5000 170.2500 -64.0 + 131.5000 173.2500 -64.0 + 127.5000 175.2500 -64.0 + 122.5000 175.2500 -64.0 + 118.7500 172.5000 -64.0 + 118.7500 169.5000 -64.0 + 119.5000 167.7500 -64.0 + 123.7500 161.5000 -64.0 + 124.7500 159.5000 -64.0 +} -64.0 +v 544 z -152.000000 -64.0 +{ -64.0 + 105.2500 26.5000 -64.0 + 104.5000 27.2500 -64.0 + 101.5000 27.2500 -64.0 + 100.2500 28.5000 -64.0 + 101.2500 30.5000 -64.0 + 101.2500 32.5000 -64.0 + 102.5000 32.7500 -64.0 + 104.5000 30.7500 -64.0 + 108.5000 30.7500 -64.0 + 112.5000 28.7500 -64.0 + 114.2500 29.5000 -64.0 + 117.5000 29.7500 -64.0 + 119.5000 27.7500 -64.0 + 122.5000 27.7500 -64.0 + 121.7500 26.5000 -64.0 + 118.5000 26.2500 -64.0 + 117.5000 28.2500 -64.0 + 114.5000 28.2500 -64.0 + 112.7500 27.5000 -64.0 + 113.7500 26.5000 -64.0 + 110.5000 26.2500 -64.0 + 112.2500 27.5000 -64.0 + 111.5000 28.2500 -64.0 + 107.5000 30.2500 -64.0 + 105.7500 28.5000 -64.0 + 106.7500 26.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 29.5000 -64.0 + 92.2500 32.5000 -64.0 + 90.5000 33.2500 -64.0 + 90.2500 36.5000 -64.0 + 92.5000 33.7500 -64.0 + 93.2500 34.5000 -64.0 + 94.5000 33.7500 -64.0 + 95.2500 34.5000 -64.0 + 94.5000 35.2500 -64.0 + 96.5000 36.7500 -64.0 + 96.7500 34.5000 -64.0 + 98.5000 32.7500 -64.0 + 98.5000 30.2500 -64.0 + 94.5000 32.2500 -64.0 +} -64.0 +{ -64.0 + 126.2500 29.5000 -64.0 + 126.2500 30.5000 -64.0 + 127.2500 32.5000 -64.0 + 128.7500 32.5000 -64.0 + 130.5000 29.2500 -64.0 + 128.5000 30.2500 -64.0 +} -64.0 +{ -64.0 + 131.2500 32.5000 -64.0 + 129.2500 33.5000 -64.0 + 132.5000 33.7500 -64.0 + 133.7500 32.5000 -64.0 +} -64.0 +{ -64.0 + 99.2500 33.5000 -64.0 + 99.2500 36.5000 -64.0 + 97.5000 37.7500 -64.0 + 102.5000 38.7500 -64.0 + 99.7500 36.5000 -64.0 + 100.7500 33.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 35.5000 -64.0 + 129.5000 36.7500 -64.0 + 132.5000 35.7500 -64.0 + 133.2500 37.5000 -64.0 + 135.7500 35.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 37.5000 -64.0 + 122.2500 39.5000 -64.0 + 122.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 38.5000 -64.0 + 91.2500 40.5000 -64.0 + 91.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 39.5000 -64.0 + 133.2500 40.5000 -64.0 + 135.5000 40.7500 -64.0 + 136.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 42.5000 -64.0 + 87.5000 47.2500 -64.0 + 88.2500 49.5000 -64.0 + 90.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 43.5000 -64.0 + 95.2500 44.5000 -64.0 + 96.5000 44.7500 -64.0 + 97.2500 46.5000 -64.0 + 96.5000 48.2500 -64.0 + 94.2500 49.5000 -64.0 + 96.5000 49.7500 -64.0 + 98.2500 50.5000 -64.0 + 92.5000 55.2500 -64.0 + 90.5000 56.2500 -64.0 + 90.5000 57.7500 -64.0 + 92.5000 56.7500 -64.0 + 95.5000 56.7500 -64.0 + 107.5000 50.7500 -64.0 + 109.5000 50.7500 -64.0 + 109.7500 49.5000 -64.0 + 108.5000 49.2500 -64.0 + 106.7500 47.5000 -64.0 + 102.5000 47.2500 -64.0 + 98.5000 45.2500 -64.0 +} -64.0 +{ -64.0 + 133.2500 43.5000 -64.0 + 134.2500 45.5000 -64.0 + 135.5000 44.7500 -64.0 + 134.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 45.5000 -64.0 + 137.5000 47.2500 -64.0 + 134.5000 47.2500 -64.0 + 136.2500 48.5000 -64.0 + 135.2500 50.5000 -64.0 + 137.2500 54.5000 -64.0 + 136.2500 55.5000 -64.0 + 142.5000 55.7500 -64.0 + 143.7500 54.5000 -64.0 + 139.5000 54.2500 -64.0 + 137.7500 53.5000 -64.0 + 136.7500 51.5000 -64.0 + 144.5000 47.7500 -64.0 + 144.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 46.5000 -64.0 + 114.2500 47.5000 -64.0 + 115.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 46.5000 -64.0 + 121.5000 47.2500 -64.0 + 119.2500 47.5000 -64.0 + 122.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 48.5000 -64.0 + 121.2500 51.5000 -64.0 + 121.2500 53.5000 -64.0 + 119.5000 54.2500 -64.0 + 116.5000 53.2500 -64.0 + 114.5000 54.2500 -64.0 + 113.7500 53.5000 -64.0 + 114.7500 52.5000 -64.0 + 111.5000 52.2500 -64.0 + 112.2500 54.5000 -64.0 + 105.2500 58.5000 -64.0 + 107.5000 58.7500 -64.0 + 114.5000 56.7500 -64.0 + 115.5000 57.7500 -64.0 + 118.5000 56.7500 -64.0 + 122.5000 53.7500 -64.0 + 124.5000 54.7500 -64.0 + 123.7500 53.5000 -64.0 + 125.7500 50.5000 -64.0 + 122.5000 50.2500 -64.0 + 118.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 50.5000 -64.0 + 70.5000 51.2500 -64.0 + 74.5000 56.7500 -64.0 + 76.5000 57.7500 -64.0 + 75.7500 56.5000 -64.0 + 76.5000 54.7500 -64.0 + 80.2500 56.5000 -64.0 + 85.5000 56.7500 -64.0 + 87.5000 54.7500 -64.0 + 86.5000 53.2500 -64.0 + 82.5000 56.2500 -64.0 + 80.7500 55.5000 -64.0 + 79.7500 53.5000 -64.0 + 74.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 57.5000 -64.0 + 120.2500 58.5000 -64.0 + 125.5000 58.7500 -64.0 + 124.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 58.5000 -64.0 + 76.5000 59.2500 -64.0 + 73.5000 59.2500 -64.0 + 75.2500 60.5000 -64.0 + 78.5000 60.7500 -64.0 + 78.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 58.5000 -64.0 + 146.5000 60.2500 -64.0 + 143.5000 60.2500 -64.0 + 145.2500 61.5000 -64.0 + 144.5000 62.2500 -64.0 + 140.2500 62.5000 -64.0 + 141.2500 64.5000 -64.0 + 140.2500 65.5000 -64.0 + 141.2500 67.5000 -64.0 + 143.5000 67.7500 -64.0 + 145.2500 69.5000 -64.0 + 144.5000 70.2500 -64.0 + 138.2500 70.5000 -64.0 + 142.5000 70.7500 -64.0 + 144.2500 71.5000 -64.0 + 143.5000 72.2500 -64.0 + 140.5000 72.7500 -64.0 + 146.2500 75.5000 -64.0 + 149.5000 75.7500 -64.0 + 155.2500 78.5000 -64.0 + 154.5000 80.2500 -64.0 + 147.5000 77.2500 -64.0 + 147.2500 78.5000 -64.0 + 151.5000 81.7500 -64.0 + 155.5000 83.7500 -64.0 + 157.5000 81.7500 -64.0 + 159.2500 82.5000 -64.0 + 163.5000 82.7500 -64.0 + 160.5000 81.2500 -64.0 + 156.7500 77.5000 -64.0 + 157.7500 76.5000 -64.0 + 152.7500 73.5000 -64.0 + 150.5000 73.2500 -64.0 + 148.7500 71.5000 -64.0 + 150.5000 69.7500 -64.0 + 152.7500 69.5000 -64.0 + 144.7500 66.5000 -64.0 + 145.5000 65.7500 -64.0 + 144.7500 64.5000 -64.0 + 145.5000 63.7500 -64.0 + 149.5000 63.7500 -64.0 + 150.5000 61.7500 -64.0 + 153.5000 61.7500 -64.0 + 153.7500 60.5000 -64.0 + 150.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 59.5000 -64.0 + 93.2500 60.5000 -64.0 + 91.2500 62.5000 -64.0 + 93.5000 62.7500 -64.0 + 95.2500 63.5000 -64.0 + 97.5000 62.7500 -64.0 + 101.2500 64.5000 -64.0 + 108.5000 64.7500 -64.0 + 112.5000 66.7500 -64.0 + 114.5000 65.7500 -64.0 + 116.5000 65.7500 -64.0 + 118.5000 64.7500 -64.0 + 125.5000 64.7500 -64.0 + 126.7500 62.5000 -64.0 + 118.5000 62.2500 -64.0 + 120.2500 63.5000 -64.0 + 119.5000 64.2500 -64.0 + 116.5000 63.2500 -64.0 + 114.7500 62.5000 -64.0 + 95.5000 62.2500 -64.0 + 93.7500 61.5000 -64.0 + 95.5000 60.7500 -64.0 +} -64.0 +{ -64.0 + 76.2500 63.5000 -64.0 + 70.2500 67.5000 -64.0 + 76.5000 67.7500 -64.0 + 78.5000 68.7500 -64.0 + 78.7500 65.5000 -64.0 + 77.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 63.5000 -64.0 + 128.5000 64.2500 -64.0 + 129.5000 65.7500 -64.0 + 131.5000 66.7500 -64.0 + 130.7500 65.5000 -64.0 + 130.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 67.5000 -64.0 + 128.5000 68.2500 -64.0 + 122.5000 68.2500 -64.0 + 123.2500 69.5000 -64.0 + 125.5000 68.7500 -64.0 + 130.5000 69.7500 -64.0 +} -64.0 +{ -64.0 + 76.2500 69.5000 -64.0 + 74.5000 71.7500 -64.0 + 76.5000 72.7500 -64.0 + 79.5000 71.7500 -64.0 + 78.5000 71.2500 -64.0 + 77.7500 69.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 70.5000 -64.0 + 96.2500 74.5000 -64.0 + 94.5000 75.2500 -64.0 + 91.5000 74.2500 -64.0 + 90.5000 72.2500 -64.0 + 87.5000 76.2500 -64.0 + 86.7500 75.5000 -64.0 + 86.2500 76.5000 -64.0 + 90.5000 81.7500 -64.0 + 91.5000 76.7500 -64.0 + 97.2500 82.5000 -64.0 + 98.2500 84.5000 -64.0 + 101.2500 85.5000 -64.0 + 102.5000 84.7500 -64.0 + 105.5000 84.7500 -64.0 + 106.2500 86.5000 -64.0 + 107.5000 86.7500 -64.0 + 110.5000 85.7500 -64.0 + 110.7500 84.5000 -64.0 + 105.7500 83.5000 -64.0 + 105.7500 80.5000 -64.0 + 101.7500 74.5000 -64.0 + 98.5000 73.2500 -64.0 + 94.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 71.5000 -64.0 + 131.5000 72.2500 -64.0 + 127.5000 72.2500 -64.0 + 129.2500 73.5000 -64.0 + 131.5000 73.7500 -64.0 + 134.5000 74.7500 -64.0 +} -64.0 +{ -64.0 + 121.2500 72.5000 -64.0 + 117.5000 75.2500 -64.0 + 118.5000 75.7500 -64.0 + 119.2500 77.5000 -64.0 + 120.5000 76.7500 -64.0 + 121.2500 77.5000 -64.0 + 123.5000 75.7500 -64.0 + 122.5000 75.2500 -64.0 +} -64.0 +{ -64.0 + 104.2500 73.5000 -64.0 + 107.2500 75.5000 -64.0 + 108.7500 75.5000 -64.0 + 109.7500 73.5000 -64.0 + 108.5000 73.2500 -64.0 + 106.5000 74.2500 -64.0 + 105.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 76.5000 -64.0 + 124.2500 78.5000 -64.0 + 125.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 69.2500 77.5000 -64.0 + 66.5000 79.2500 -64.0 + 64.5000 79.2500 -64.0 + 60.5000 82.2500 -64.0 + 61.5000 82.7500 -64.0 + 63.5000 81.7500 -64.0 + 64.2500 82.5000 -64.0 + 62.2500 86.5000 -64.0 + 54.2500 106.5000 -64.0 + 55.2500 108.5000 -64.0 + 58.7500 108.5000 -64.0 + 61.5000 102.7500 -64.0 + 61.7500 100.5000 -64.0 + 60.5000 100.2500 -64.0 + 60.2500 101.5000 -64.0 + 58.5000 103.2500 -64.0 + 56.7500 102.5000 -64.0 + 61.5000 92.7500 -64.0 + 61.7500 90.5000 -64.0 + 64.7500 86.5000 -64.0 + 66.5000 85.7500 -64.0 + 68.2500 86.5000 -64.0 + 68.2500 88.5000 -64.0 + 70.2500 89.5000 -64.0 + 64.5000 94.2500 -64.0 + 62.5000 94.2500 -64.0 + 62.2500 95.5000 -64.0 + 66.5000 96.7500 -64.0 + 66.7500 95.5000 -64.0 + 69.7500 92.5000 -64.0 + 70.7500 90.5000 -64.0 + 71.5000 87.2500 -64.0 + 69.5000 86.2500 -64.0 + 65.7500 80.5000 -64.0 + 71.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 85.5000 -64.0 + 148.5000 88.2500 -64.0 + 151.2500 90.5000 -64.0 + 152.2500 95.5000 -64.0 + 150.5000 96.2500 -64.0 + 154.2500 99.5000 -64.0 + 154.2500 104.5000 -64.0 + 153.5000 106.2500 -64.0 + 151.5000 103.2500 -64.0 + 151.2500 105.5000 -64.0 + 154.2500 111.5000 -64.0 + 156.5000 111.7500 -64.0 + 156.7500 104.5000 -64.0 + 155.7500 102.5000 -64.0 + 155.7500 100.5000 -64.0 + 153.7500 96.5000 -64.0 + 153.7500 94.5000 -64.0 + 152.7500 92.5000 -64.0 + 152.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 146.2500 89.5000 -64.0 + 143.5000 91.2500 -64.0 + 144.2500 92.5000 -64.0 + 147.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 146.2500 96.5000 -64.0 + 146.5000 96.7500 -64.0 + 148.5000 97.7500 -64.0 + 148.7500 96.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 107.5000 -64.0 + 105.5000 108.2500 -64.0 + 94.5000 114.2500 -64.0 + 92.2500 114.5000 -64.0 + 97.5000 114.7500 -64.0 + 99.2500 115.5000 -64.0 + 96.5000 118.2500 -64.0 + 88.5000 122.2500 -64.0 + 86.5000 122.2500 -64.0 + 83.5000 123.2500 -64.0 + 81.7500 120.5000 -64.0 + 82.7500 118.5000 -64.0 + 80.5000 118.2500 -64.0 + 78.5000 120.7500 -64.0 + 82.2500 123.5000 -64.0 + 82.2500 126.5000 -64.0 + 80.2500 132.5000 -64.0 + 81.2500 135.5000 -64.0 + 84.2500 137.5000 -64.0 + 90.5000 134.7500 -64.0 + 90.7500 132.5000 -64.0 + 89.5000 131.2500 -64.0 + 87.5000 130.2500 -64.0 + 85.7500 129.5000 -64.0 + 87.7500 125.5000 -64.0 + 94.5000 121.7500 -64.0 + 96.5000 121.7500 -64.0 + 102.5000 114.7500 -64.0 + 103.2500 116.5000 -64.0 + 102.2500 118.5000 -64.0 + 103.2500 121.5000 -64.0 + 106.2500 124.5000 -64.0 + 110.7500 124.5000 -64.0 + 113.7500 118.5000 -64.0 + 114.5000 116.7500 -64.0 + 117.2500 119.5000 -64.0 + 117.5000 122.7500 -64.0 + 119.5000 123.7500 -64.0 + 123.2500 126.5000 -64.0 + 123.2500 128.5000 -64.0 + 124.2500 130.5000 -64.0 + 122.5000 131.2500 -64.0 + 121.5000 133.2500 -64.0 + 121.2500 135.5000 -64.0 + 126.5000 138.7500 -64.0 + 128.5000 137.7500 -64.0 + 130.7500 137.5000 -64.0 + 132.7500 133.5000 -64.0 + 131.7500 131.5000 -64.0 + 131.7500 127.5000 -64.0 + 133.5000 123.7500 -64.0 + 136.5000 123.7500 -64.0 + 136.7500 122.5000 -64.0 + 133.7500 120.5000 -64.0 + 131.2500 125.5000 -64.0 + 129.5000 126.2500 -64.0 + 125.7500 123.5000 -64.0 + 124.7500 121.5000 -64.0 + 123.5000 121.2500 -64.0 + 115.7500 115.5000 -64.0 + 116.5000 113.7500 -64.0 + 118.5000 114.7500 -64.0 + 123.5000 115.7500 -64.0 + 127.2500 118.5000 -64.0 + 129.5000 118.7500 -64.0 + 127.5000 117.2500 -64.0 + 113.5000 110.2500 -64.0 + 109.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 69.2500 113.5000 -64.0 + 68.5000 114.7500 -64.0 + 70.5000 115.7500 -64.0 + 70.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 115.5000 -64.0 + 85.5000 116.2500 -64.0 + 85.2500 117.5000 -64.0 + 90.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 51.2500 129.5000 -64.0 + 49.2500 130.5000 -64.0 + 47.5000 134.2500 -64.0 + 47.2500 142.5000 -64.0 + 48.2500 144.5000 -64.0 + 50.5000 142.7500 -64.0 + 53.5000 137.7500 -64.0 + 53.7500 131.5000 -64.0 + 52.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 141.5000 -64.0 + 87.5000 142.2500 -64.0 + 86.5000 145.2500 -64.0 + 86.2500 149.5000 -64.0 + 84.5000 151.2500 -64.0 + 81.7500 148.5000 -64.0 + 77.5000 148.2500 -64.0 + 76.5000 150.2500 -64.0 + 74.5000 150.2500 -64.0 + 72.5000 151.2500 -64.0 + 71.7500 150.5000 -64.0 + 68.5000 150.2500 -64.0 + 66.7500 146.5000 -64.0 + 62.5000 143.2500 -64.0 + 60.5000 144.2500 -64.0 + 60.2500 151.5000 -64.0 + 61.2500 153.5000 -64.0 + 61.2500 156.5000 -64.0 + 63.2500 160.5000 -64.0 + 64.2500 168.5000 -64.0 + 66.2500 172.5000 -64.0 + 71.2500 175.5000 -64.0 + 73.5000 174.7500 -64.0 + 80.5000 176.7500 -64.0 + 83.5000 175.7500 -64.0 + 85.5000 172.7500 -64.0 + 89.5000 170.7500 -64.0 + 89.7500 168.5000 -64.0 + 91.5000 167.7500 -64.0 + 93.2500 168.5000 -64.0 + 96.5000 167.7500 -64.0 + 101.5000 168.7500 -64.0 + 104.2500 171.5000 -64.0 + 107.5000 166.7500 -64.0 + 109.5000 165.7500 -64.0 + 112.5000 166.7500 -64.0 + 115.5000 169.7500 -64.0 + 117.5000 170.7500 -64.0 + 118.2500 172.5000 -64.0 + 121.5000 172.7500 -64.0 + 123.5000 171.7500 -64.0 + 126.2500 175.5000 -64.0 + 131.5000 175.7500 -64.0 + 137.5000 172.7500 -64.0 + 140.7500 168.5000 -64.0 + 139.7500 166.5000 -64.0 + 139.7500 163.5000 -64.0 + 136.7500 159.5000 -64.0 + 130.5000 154.2500 -64.0 + 127.5000 155.2500 -64.0 + 125.7500 154.5000 -64.0 + 126.7500 151.5000 -64.0 + 124.7500 150.5000 -64.0 + 121.5000 150.2500 -64.0 + 119.5000 152.2500 -64.0 + 108.5000 159.2500 -64.0 + 105.7500 157.5000 -64.0 + 100.5000 156.2500 -64.0 + 97.5000 153.2500 -64.0 + 95.5000 152.2500 -64.0 + 90.7500 144.5000 -64.0 + 90.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 122.7500 51.5000 -64.0 + 123.5000 50.7500 -64.0 + 124.2500 51.5000 -64.0 + 123.5000 52.2500 -64.0 +} -64.0 +{ -64.0 + 121.7500 63.5000 -64.0 + 122.5000 62.7500 -64.0 + 124.2500 63.5000 -64.0 + 123.5000 64.2500 -64.0 +} -64.0 +{ -64.0 + 107.7500 118.5000 -64.0 + 108.5000 117.7500 -64.0 + 110.5000 117.7500 -64.0 + 111.2500 119.5000 -64.0 + 109.5000 121.2500 -64.0 + 107.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 88.7500 153.5000 -64.0 + 90.5000 152.7500 -64.0 + 93.2500 156.5000 -64.0 + 92.5000 158.2500 -64.0 + 90.5000 158.2500 -64.0 + 88.7500 156.5000 -64.0 +} -64.0 +{ -64.0 + 120.7500 156.5000 -64.0 + 121.5000 155.7500 -64.0 + 122.2500 156.5000 -64.0 + 121.5000 157.2500 -64.0 +} -64.0 +{ -64.0 + 71.7500 160.5000 -64.0 + 73.5000 159.7500 -64.0 + 75.2500 161.5000 -64.0 + 74.5000 163.2500 -64.0 + 73.7500 162.5000 -64.0 + 72.5000 163.2500 -64.0 + 71.7500 162.5000 -64.0 +} -64.0 +v 350 z -154.000000 -64.0 +{ -64.0 + 105.2500 26.5000 -64.0 + 103.5000 27.2500 -64.0 + 105.2500 28.5000 -64.0 + 107.5000 28.7500 -64.0 + 105.7500 27.5000 -64.0 + 106.5000 26.7500 -64.0 + 108.2500 27.5000 -64.0 + 114.5000 27.7500 -64.0 + 116.5000 26.7500 -64.0 +} -64.0 +{ -64.0 + 122.2500 27.5000 -64.0 + 123.2500 28.5000 -64.0 + 123.7500 27.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 28.5000 -64.0 + 100.2500 29.5000 -64.0 + 102.5000 29.7500 -64.0 +} -64.0 +{ -64.0 + 97.2500 30.5000 -64.0 + 98.2500 31.5000 -64.0 + 98.5000 33.7500 -64.0 + 98.7500 30.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 30.5000 -64.0 + 126.2500 33.5000 -64.0 + 128.5000 33.7500 -64.0 + 128.7500 32.5000 -64.0 + 127.7500 30.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 34.5000 -64.0 + 96.2500 35.5000 -64.0 + 97.5000 35.7500 -64.0 + 97.7500 34.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 36.5000 -64.0 + 91.2500 38.5000 -64.0 + 92.5000 37.7500 -64.0 + 94.2500 38.5000 -64.0 + 94.2500 40.5000 -64.0 + 92.2500 41.5000 -64.0 + 94.5000 41.7500 -64.0 + 94.7500 38.5000 -64.0 + 93.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 36.5000 -64.0 + 129.5000 37.2500 -64.0 + 130.2500 38.5000 -64.0 + 130.2500 41.5000 -64.0 + 131.2500 43.5000 -64.0 + 130.2500 44.5000 -64.0 + 131.2500 46.5000 -64.0 + 130.5000 48.2500 -64.0 + 126.7500 46.5000 -64.0 + 125.5000 47.2500 -64.0 + 127.2500 49.5000 -64.0 + 129.5000 48.7500 -64.0 + 132.5000 49.7500 -64.0 + 135.2500 53.5000 -64.0 + 135.2500 55.5000 -64.0 + 134.2500 58.5000 -64.0 + 135.7500 57.5000 -64.0 + 136.7500 55.5000 -64.0 + 135.7500 52.5000 -64.0 + 131.7500 47.5000 -64.0 + 133.7500 43.5000 -64.0 + 134.5000 41.7500 -64.0 + 134.5000 40.2500 -64.0 + 132.5000 41.2500 -64.0 + 130.7500 40.5000 -64.0 + 130.7500 38.5000 -64.0 + 132.5000 37.7500 -64.0 + 132.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 39.5000 -64.0 + 96.2500 40.5000 -64.0 + 97.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 45.5000 -64.0 + 94.5000 46.2500 -64.0 + 94.5000 47.7500 -64.0 + 96.5000 48.7500 -64.0 + 96.7500 47.5000 -64.0 + 98.5000 45.7500 -64.0 + 100.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 52.5000 -64.0 + 126.2500 53.5000 -64.0 + 126.7500 54.5000 -64.0 + 127.7500 52.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 53.5000 -64.0 + 114.2500 54.5000 -64.0 + 118.5000 54.7500 -64.0 + 121.7500 53.5000 -64.0 + 119.5000 53.2500 -64.0 + 117.5000 54.2500 -64.0 +} -64.0 +{ -64.0 + 85.2500 54.5000 -64.0 + 82.5000 56.2500 -64.0 + 80.7500 55.5000 -64.0 + 76.5000 55.2500 -64.0 + 76.2500 56.5000 -64.0 + 81.2500 60.5000 -64.0 + 83.5000 56.7500 -64.0 + 86.5000 56.7500 -64.0 + 86.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 56.5000 -64.0 + 89.2500 57.5000 -64.0 + 90.5000 56.7500 -64.0 + 91.2500 57.5000 -64.0 + 91.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 59.5000 -64.0 + 126.5000 61.2500 -64.0 + 124.5000 61.2500 -64.0 + 124.2500 62.5000 -64.0 + 130.7500 61.5000 -64.0 + 128.5000 61.2500 -64.0 +} -64.0 +{ -64.0 + 91.2500 62.5000 -64.0 + 90.2500 63.5000 -64.0 + 95.5000 63.7500 -64.0 +} -64.0 +{ -64.0 + 83.2500 64.5000 -64.0 + 81.5000 65.7500 -64.0 + 83.5000 66.7500 -64.0 + 84.5000 64.7500 -64.0 + 87.5000 65.7500 -64.0 + 86.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 88.2500 66.5000 -64.0 + 89.2500 68.5000 -64.0 + 88.5000 70.2500 -64.0 + 86.7500 69.5000 -64.0 + 85.5000 71.2500 -64.0 + 83.5000 71.2500 -64.0 + 84.2500 72.5000 -64.0 + 87.5000 72.7500 -64.0 + 90.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 82.5000 -64.0 + 59.5000 92.2500 -64.0 + 55.5000 102.2500 -64.0 + 55.5000 107.7500 -64.0 + 57.5000 108.7500 -64.0 + 62.5000 100.7500 -64.0 + 61.7500 99.5000 -64.0 + 58.5000 105.2500 -64.0 + 57.7500 104.5000 -64.0 + 57.7500 101.5000 -64.0 + 61.5000 93.7500 -64.0 + 61.7500 91.5000 -64.0 + 65.7500 85.5000 -64.0 + 67.5000 84.7500 -64.0 + 70.2500 87.5000 -64.0 + 70.2500 89.5000 -64.0 + 66.5000 93.2500 -64.0 + 63.5000 93.2500 -64.0 + 63.2500 94.5000 -64.0 + 64.5000 94.7500 -64.0 + 65.2500 96.5000 -64.0 + 70.5000 92.7500 -64.0 + 73.5000 87.7500 -64.0 + 71.7500 85.5000 -64.0 + 69.5000 85.2500 -64.0 + 67.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 85.5000 -64.0 + 147.2500 87.5000 -64.0 + 142.5000 89.2500 -64.0 + 142.2500 91.5000 -64.0 + 143.2500 94.5000 -64.0 + 149.2500 100.5000 -64.0 + 152.2500 106.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.5000 111.7500 -64.0 + 156.5000 110.7500 -64.0 + 156.7500 103.5000 -64.0 + 155.7500 101.5000 -64.0 + 155.7500 99.5000 -64.0 + 153.7500 95.5000 -64.0 + 153.7500 92.5000 -64.0 + 151.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 107.5000 -64.0 + 106.5000 108.2500 -64.0 + 100.5000 111.2500 -64.0 + 98.5000 111.2500 -64.0 + 92.5000 114.2500 -64.0 + 90.5000 114.2500 -64.0 + 86.5000 116.2500 -64.0 + 84.5000 116.2500 -64.0 + 84.2500 117.5000 -64.0 + 85.5000 116.7500 -64.0 + 87.5000 116.7500 -64.0 + 91.5000 114.7500 -64.0 + 96.5000 114.7500 -64.0 + 98.2500 115.5000 -64.0 + 97.2500 118.5000 -64.0 + 94.5000 121.2500 -64.0 + 92.5000 121.2500 -64.0 + 90.5000 122.2500 -64.0 + 90.5000 123.7500 -64.0 + 92.5000 122.7500 -64.0 + 96.5000 122.7500 -64.0 + 98.5000 121.7500 -64.0 + 98.7500 118.5000 -64.0 + 99.7500 115.5000 -64.0 + 102.5000 113.7500 -64.0 + 103.2500 114.5000 -64.0 + 103.2500 116.5000 -64.0 + 102.2500 119.5000 -64.0 + 103.2500 121.5000 -64.0 + 104.5000 123.7500 -64.0 + 108.5000 125.7500 -64.0 + 112.5000 122.7500 -64.0 + 112.7500 120.5000 -64.0 + 113.5000 118.7500 -64.0 + 112.7500 117.5000 -64.0 + 112.7500 115.5000 -64.0 + 114.5000 114.7500 -64.0 + 116.2500 116.5000 -64.0 + 116.2500 120.5000 -64.0 + 117.2500 123.5000 -64.0 + 119.2500 124.5000 -64.0 + 120.5000 123.7500 -64.0 + 122.5000 122.7500 -64.0 + 123.2500 124.5000 -64.0 + 121.5000 126.2500 -64.0 + 121.2500 133.5000 -64.0 + 123.2500 137.5000 -64.0 + 129.5000 137.7500 -64.0 + 132.5000 134.7500 -64.0 + 132.7500 131.5000 -64.0 + 130.7500 127.5000 -64.0 + 132.7500 123.5000 -64.0 + 131.5000 123.2500 -64.0 + 131.2500 124.5000 -64.0 + 129.5000 126.2500 -64.0 + 128.5000 125.2500 -64.0 + 128.2500 127.5000 -64.0 + 129.2500 129.5000 -64.0 + 129.2500 133.5000 -64.0 + 127.5000 134.2500 -64.0 + 125.7500 133.5000 -64.0 + 125.7500 131.5000 -64.0 + 127.5000 129.2500 -64.0 + 125.5000 128.2500 -64.0 + 124.7500 126.5000 -64.0 + 125.7500 123.5000 -64.0 + 123.7500 121.5000 -64.0 + 121.5000 121.2500 -64.0 + 117.7500 118.5000 -64.0 + 117.7500 115.5000 -64.0 + 119.5000 114.7500 -64.0 + 124.5000 115.7500 -64.0 + 121.7500 113.5000 -64.0 + 119.5000 113.2500 -64.0 + 116.5000 112.2500 -64.0 + 111.5000 110.2500 -64.0 + 108.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 70.2500 112.5000 -64.0 + 70.2500 114.5000 -64.0 + 71.5000 114.7500 -64.0 + 71.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 116.5000 -64.0 + 125.5000 116.7500 -64.0 + 127.5000 117.7500 -64.0 + 130.2500 120.5000 -64.0 + 133.5000 120.7500 -64.0 + 134.5000 120.2500 -64.0 + 132.5000 119.2500 -64.0 + 126.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 119.5000 -64.0 + 75.2500 122.5000 -64.0 + 76.5000 121.7500 -64.0 + 81.5000 121.7500 -64.0 + 80.5000 121.2500 -64.0 + 79.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 122.5000 -64.0 + 136.2500 123.5000 -64.0 + 138.2500 124.5000 -64.0 + 139.7500 124.5000 -64.0 + 138.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 123.5000 -64.0 + 80.5000 130.2500 -64.0 + 80.2500 132.5000 -64.0 + 82.2500 136.5000 -64.0 + 87.5000 136.7500 -64.0 + 90.5000 131.7500 -64.0 + 88.7500 129.5000 -64.0 + 88.7500 125.5000 -64.0 + 86.5000 125.2500 -64.0 +} -64.0 +{ -64.0 + 139.2500 131.5000 -64.0 + 138.5000 132.2500 -64.0 + 139.5000 132.7500 -64.0 + 140.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 50.2500 134.5000 -64.0 + 49.5000 136.2500 -64.0 + 49.2500 140.5000 -64.0 + 50.5000 140.7500 -64.0 + 52.5000 138.7500 -64.0 + 52.7500 136.5000 -64.0 + 51.7500 134.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 148.5000 -64.0 + 89.5000 150.2500 -64.0 + 87.5000 150.2500 -64.0 + 87.2500 152.5000 -64.0 + 84.5000 154.2500 -64.0 + 86.2500 158.5000 -64.0 + 87.5000 157.7500 -64.0 + 88.2500 158.5000 -64.0 + 88.2500 160.5000 -64.0 + 93.2500 161.5000 -64.0 + 95.5000 160.7500 -64.0 + 98.7500 156.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 153.5000 -64.0 + 115.2500 156.5000 -64.0 + 114.2500 158.5000 -64.0 + 117.5000 159.7500 -64.0 + 119.5000 158.7500 -64.0 + 121.5000 158.7500 -64.0 + 123.7500 155.5000 -64.0 + 122.7500 153.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 157.5000 -64.0 + 65.2500 158.5000 -64.0 + 66.2500 160.5000 -64.0 + 66.2500 163.5000 -64.0 + 67.7500 161.5000 -64.0 + 66.7500 158.5000 -64.0 +} -64.0 +{ -64.0 + 71.2500 160.5000 -64.0 + 71.2500 166.5000 -64.0 + 74.5000 166.7500 -64.0 + 76.7500 163.5000 -64.0 + 73.7500 160.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 161.5000 -64.0 + 103.2500 162.5000 -64.0 + 104.2500 165.5000 -64.0 + 105.5000 164.7500 -64.0 + 105.7500 161.5000 -64.0 +} -64.0 +{ -64.0 + 148.5000 87.7500 -64.0 + 149.2500 88.5000 -64.0 + 151.2500 92.5000 -64.0 + 151.2500 94.5000 -64.0 + 154.2500 100.5000 -64.0 + 154.2500 104.5000 -64.0 + 153.5000 106.2500 -64.0 + 150.7500 101.5000 -64.0 + 150.7500 99.5000 -64.0 + 148.7500 98.5000 -64.0 + 148.7500 96.5000 -64.0 + 145.7500 93.5000 -64.0 + 144.7500 91.5000 -64.0 +} -64.0 +{ -64.0 + 108.7500 116.5000 -64.0 + 109.5000 115.7500 -64.0 + 111.2500 117.5000 -64.0 + 110.5000 119.2500 -64.0 + 109.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 104.7500 117.5000 -64.0 + 105.5000 116.7500 -64.0 + 107.2500 117.5000 -64.0 + 106.5000 119.2500 -64.0 + 108.2500 121.5000 -64.0 + 107.5000 122.2500 -64.0 + 104.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 82.7500 131.5000 -64.0 + 84.5000 130.7500 -64.0 + 85.2500 132.5000 -64.0 + 83.5000 133.2500 -64.0 +} -64.0 +v 204 z -156.000000 -64.0 +{ -64.0 + 89.2500 58.5000 -64.0 + 88.5000 59.2500 -64.0 + 88.5000 60.7500 -64.0 + 90.5000 61.7500 -64.0 + 90.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 65.5000 -64.0 + 134.2500 67.5000 -64.0 + 135.5000 67.7500 -64.0 +} -64.0 +{ -64.0 + 80.2500 72.5000 -64.0 + 77.5000 74.2500 -64.0 + 77.2500 76.5000 -64.0 + 80.5000 76.7500 -64.0 + 82.5000 75.7500 -64.0 + 82.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 73.5000 -64.0 + 135.5000 74.2500 -64.0 + 136.5000 74.7500 -64.0 + 139.7500 75.5000 -64.0 + 138.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 75.5000 -64.0 + 131.5000 76.2500 -64.0 + 131.2500 78.5000 -64.0 + 133.7500 80.5000 -64.0 + 132.7500 77.5000 -64.0 + 134.7500 75.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 76.5000 -64.0 + 140.2500 77.5000 -64.0 + 139.2500 80.5000 -64.0 + 140.5000 79.7500 -64.0 + 140.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 81.5000 -64.0 + 58.5000 94.2500 -64.0 + 55.2500 106.5000 -64.0 + 57.2500 108.5000 -64.0 + 58.5000 107.7500 -64.0 + 63.5000 98.7500 -64.0 + 62.5000 97.2500 -64.0 + 62.2500 99.5000 -64.0 + 59.5000 103.2500 -64.0 + 58.7500 102.5000 -64.0 + 58.7500 99.5000 -64.0 + 60.5000 95.7500 -64.0 + 60.7500 93.5000 -64.0 + 66.5000 84.7500 -64.0 + 68.5000 84.7500 -64.0 + 72.2500 87.5000 -64.0 + 66.5000 93.2500 -64.0 + 64.2500 92.5000 -64.0 + 65.2500 95.5000 -64.0 + 66.5000 95.7500 -64.0 + 73.7500 89.5000 -64.0 + 74.7500 87.5000 -64.0 + 73.7500 85.5000 -64.0 + 71.5000 85.2500 -64.0 + 67.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 85.5000 -64.0 + 145.5000 87.2500 -64.0 + 143.5000 87.2500 -64.0 + 141.5000 88.2500 -64.0 + 141.2500 91.5000 -64.0 + 145.2500 95.5000 -64.0 + 152.2500 106.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.5000 111.7500 -64.0 + 156.5000 110.7500 -64.0 + 156.7500 103.5000 -64.0 + 154.7500 99.5000 -64.0 + 154.7500 97.5000 -64.0 + 153.7500 95.5000 -64.0 + 153.7500 91.5000 -64.0 + 150.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 110.5000 -64.0 + 71.2500 112.5000 -64.0 + 72.5000 112.7500 -64.0 +} -64.0 +{ -64.0 + 105.2500 110.5000 -64.0 + 103.5000 114.2500 -64.0 + 103.2500 122.5000 -64.0 + 105.2500 124.5000 -64.0 + 110.5000 124.7500 -64.0 + 113.5000 119.7500 -64.0 + 112.7500 116.5000 -64.0 + 109.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 112.5000 -64.0 + 94.5000 113.2500 -64.0 + 91.5000 113.2500 -64.0 + 83.5000 117.2500 -64.0 + 81.5000 117.2500 -64.0 + 77.5000 119.2500 -64.0 + 75.5000 119.2500 -64.0 + 76.2500 120.5000 -64.0 + 76.5000 122.7500 -64.0 + 79.5000 118.7500 -64.0 + 83.5000 118.7500 -64.0 + 91.5000 114.7500 -64.0 + 96.5000 114.7500 -64.0 + 98.2500 115.5000 -64.0 + 95.2500 120.5000 -64.0 + 90.2500 122.5000 -64.0 + 89.2500 127.5000 -64.0 + 87.5000 128.2500 -64.0 + 88.2500 130.5000 -64.0 + 87.5000 132.2500 -64.0 + 85.5000 133.2500 -64.0 + 83.7500 132.5000 -64.0 + 83.7500 130.5000 -64.0 + 84.7500 127.5000 -64.0 + 86.5000 126.7500 -64.0 + 86.7500 125.5000 -64.0 + 84.5000 122.2500 -64.0 + 84.2500 124.5000 -64.0 + 83.2500 127.5000 -64.0 + 80.5000 130.2500 -64.0 + 80.2500 133.5000 -64.0 + 83.2500 136.5000 -64.0 + 88.5000 136.7500 -64.0 + 93.5000 128.7500 -64.0 + 93.7500 126.5000 -64.0 + 94.5000 124.7500 -64.0 + 98.5000 121.7500 -64.0 + 98.7500 116.5000 -64.0 + 101.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 113.5000 -64.0 + 117.2500 117.5000 -64.0 + 116.5000 118.2500 -64.0 + 116.2500 120.5000 -64.0 + 121.2500 130.5000 -64.0 + 121.2500 137.5000 -64.0 + 122.2500 139.5000 -64.0 + 125.5000 139.7500 -64.0 + 130.5000 137.7500 -64.0 + 134.5000 134.7500 -64.0 + 136.5000 134.7500 -64.0 + 140.5000 130.2500 -64.0 + 138.5000 131.2500 -64.0 + 133.5000 131.2500 -64.0 + 130.7500 127.5000 -64.0 + 131.7500 126.5000 -64.0 + 132.7500 121.5000 -64.0 + 127.7500 116.5000 -64.0 + 122.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 120.5000 -64.0 + 83.2500 121.5000 -64.0 + 83.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 121.5000 -64.0 + 137.2500 123.5000 -64.0 + 138.5000 122.7500 -64.0 + 141.5000 122.7500 -64.0 + 139.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 74.2500 128.5000 -64.0 + 75.2500 130.5000 -64.0 + 77.5000 130.7500 -64.0 + 75.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 146.5000 -64.0 + 107.5000 149.2500 -64.0 + 103.5000 149.2500 -64.0 + 99.7500 147.5000 -64.0 + 97.5000 147.2500 -64.0 + 97.2500 148.5000 -64.0 + 98.5000 149.7500 -64.0 + 106.5000 153.7500 -64.0 + 112.5000 150.7500 -64.0 + 114.7500 150.5000 -64.0 + 115.7500 148.5000 -64.0 + 114.7500 146.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 154.5000 -64.0 + 92.2500 156.5000 -64.0 + 93.5000 156.7500 -64.0 + 93.7500 155.5000 -64.0 +} -64.0 +{ -64.0 + 146.7500 88.5000 -64.0 + 148.5000 87.7500 -64.0 + 150.2500 89.5000 -64.0 + 150.2500 91.5000 -64.0 + 153.2500 97.5000 -64.0 + 154.2500 102.5000 -64.0 + 153.5000 104.2500 -64.0 + 143.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 108.7500 115.5000 -64.0 + 109.5000 114.7500 -64.0 + 110.2500 115.5000 -64.0 + 111.2500 117.5000 -64.0 + 110.5000 119.2500 -64.0 + 108.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 118.7500 115.5000 -64.0 + 119.5000 114.7500 -64.0 + 121.5000 114.7500 -64.0 + 127.5000 117.7500 -64.0 + 130.2500 121.5000 -64.0 + 130.2500 125.5000 -64.0 + 129.5000 127.2500 -64.0 + 130.2500 128.5000 -64.0 + 128.5000 132.2500 -64.0 + 126.5000 133.2500 -64.0 + 123.7500 130.5000 -64.0 + 121.7500 126.5000 -64.0 + 121.7500 123.5000 -64.0 + 120.5000 123.2500 -64.0 + 119.7500 121.5000 -64.0 + 117.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 104.7500 116.5000 -64.0 + 105.5000 115.7500 -64.0 + 107.2500 116.5000 -64.0 + 107.2500 119.5000 -64.0 + 106.5000 121.2500 -64.0 + 104.7500 119.5000 -64.0 +} -64.0 +v 273 z -158.000000 -64.0 +{ -64.0 + 128.2500 61.5000 -64.0 + 128.2500 62.5000 -64.0 + 127.2500 64.5000 -64.0 + 128.2500 66.5000 -64.0 + 128.2500 68.5000 -64.0 + 127.5000 70.2500 -64.0 + 122.5000 70.2500 -64.0 + 120.5000 71.2500 -64.0 + 113.5000 71.2500 -64.0 + 110.2500 72.5000 -64.0 + 121.5000 72.7500 -64.0 + 123.5000 71.7500 -64.0 + 129.5000 71.7500 -64.0 + 128.7500 70.5000 -64.0 + 128.7500 66.5000 -64.0 + 129.5000 64.7500 -64.0 + 131.5000 63.7500 -64.0 +} -64.0 +{ -64.0 + 136.2500 62.5000 -64.0 + 135.5000 63.2500 -64.0 + 136.5000 63.7500 -64.0 + 137.2500 65.5000 -64.0 + 138.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 81.2500 63.5000 -64.0 + 80.5000 65.2500 -64.0 + 75.5000 64.2500 -64.0 + 74.5000 67.2500 -64.0 + 76.2500 71.5000 -64.0 + 78.5000 68.7500 -64.0 + 81.5000 68.7500 -64.0 + 83.2500 70.5000 -64.0 + 83.5000 73.7500 -64.0 + 83.7500 69.5000 -64.0 + 81.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 68.5000 -64.0 + 149.5000 69.2500 -64.0 + 147.5000 69.2500 -64.0 + 141.5000 72.2500 -64.0 + 139.7500 71.5000 -64.0 + 137.5000 72.2500 -64.0 + 138.2500 73.5000 -64.0 + 139.5000 72.7500 -64.0 + 142.5000 72.7500 -64.0 + 144.2500 73.5000 -64.0 + 142.2500 74.5000 -64.0 + 143.2500 76.5000 -64.0 + 143.2500 78.5000 -64.0 + 145.7500 78.5000 -64.0 + 146.7500 76.5000 -64.0 + 144.7500 75.5000 -64.0 + 146.5000 73.7500 -64.0 + 148.5000 73.7500 -64.0 + 149.5000 71.7500 -64.0 + 153.5000 69.7500 -64.0 + 155.5000 69.7500 -64.0 + 154.7500 68.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 72.5000 -64.0 + 131.2500 73.5000 -64.0 + 127.5000 75.2500 -64.0 + 127.2500 76.5000 -64.0 + 129.2500 77.5000 -64.0 + 127.5000 79.2500 -64.0 + 121.5000 79.2500 -64.0 + 119.7500 78.5000 -64.0 + 101.5000 78.2500 -64.0 + 99.7500 77.5000 -64.0 + 88.5000 77.2500 -64.0 + 84.7500 75.5000 -64.0 + 81.5000 78.2500 -64.0 + 78.2500 78.5000 -64.0 + 79.2500 81.5000 -64.0 + 82.5000 81.7500 -64.0 + 85.5000 78.7500 -64.0 + 89.5000 78.7500 -64.0 + 91.5000 79.7500 -64.0 + 93.5000 78.7500 -64.0 + 109.5000 78.7500 -64.0 + 111.2500 79.5000 -64.0 + 128.5000 80.7500 -64.0 + 130.5000 78.7500 -64.0 + 131.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 79.5000 -64.0 + 131.2500 80.5000 -64.0 + 132.5000 80.7500 -64.0 +} -64.0 +{ -64.0 + 67.2500 80.5000 -64.0 + 65.5000 81.2500 -64.0 + 65.2500 82.5000 -64.0 + 58.2500 95.5000 -64.0 + 57.2500 100.5000 -64.0 + 55.2500 104.5000 -64.0 + 56.2500 107.5000 -64.0 + 58.7500 107.5000 -64.0 + 64.7500 96.5000 -64.0 + 63.5000 96.2500 -64.0 + 63.2500 97.5000 -64.0 + 59.5000 102.2500 -64.0 + 58.7500 101.5000 -64.0 + 59.7500 97.5000 -64.0 + 64.7500 87.5000 -64.0 + 68.5000 83.7500 -64.0 + 73.2500 85.5000 -64.0 + 73.2500 87.5000 -64.0 + 65.2500 93.5000 -64.0 + 66.2500 95.5000 -64.0 + 74.5000 89.7500 -64.0 + 76.5000 86.7500 -64.0 + 75.5000 85.2500 -64.0 +} -64.0 +{ -64.0 + 148.2500 80.5000 -64.0 + 151.2500 82.5000 -64.0 + 157.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 149.2500 83.5000 -64.0 + 147.2500 86.5000 -64.0 + 148.5000 86.7500 -64.0 + 151.2500 91.5000 -64.0 + 151.2500 93.5000 -64.0 + 153.2500 97.5000 -64.0 + 153.2500 99.5000 -64.0 + 154.2500 101.5000 -64.0 + 153.5000 103.2500 -64.0 + 151.7500 102.5000 -64.0 + 150.7500 100.5000 -64.0 + 149.5000 101.2500 -64.0 + 152.2500 106.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.5000 111.7500 -64.0 + 156.5000 110.7500 -64.0 + 156.7500 105.5000 -64.0 + 154.7500 101.5000 -64.0 + 154.7500 99.5000 -64.0 + 153.7500 97.5000 -64.0 + 153.7500 92.5000 -64.0 + 151.7500 88.5000 -64.0 + 151.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 88.5000 -64.0 + 139.2500 91.5000 -64.0 + 142.5000 92.7500 -64.0 + 148.7500 98.5000 -64.0 + 147.7500 95.5000 -64.0 + 140.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 73.2500 109.5000 -64.0 + 72.2500 111.5000 -64.0 + 73.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 112.5000 -64.0 + 88.5000 114.2500 -64.0 + 84.5000 118.2500 -64.0 + 84.2500 120.5000 -64.0 + 85.2500 122.5000 -64.0 + 85.2500 125.5000 -64.0 + 82.5000 128.2500 -64.0 + 80.5000 129.2500 -64.0 + 73.7500 126.5000 -64.0 + 72.2500 126.5000 -64.0 + 76.2500 129.5000 -64.0 + 80.2500 136.5000 -64.0 + 85.2500 138.5000 -64.0 + 89.5000 138.7500 -64.0 + 91.5000 136.7500 -64.0 + 91.7500 132.5000 -64.0 + 94.5000 128.7500 -64.0 + 94.7500 126.5000 -64.0 + 98.5000 120.7500 -64.0 + 99.7500 114.5000 -64.0 + 97.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 112.5000 -64.0 + 104.5000 113.2500 -64.0 + 103.2500 116.5000 -64.0 + 102.2500 121.5000 -64.0 + 107.2500 124.5000 -64.0 + 108.5000 123.7500 -64.0 + 111.5000 123.7500 -64.0 + 113.5000 121.7500 -64.0 + 113.7500 119.5000 -64.0 + 111.7500 114.5000 -64.0 + 108.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 113.5000 -64.0 + 117.5000 114.2500 -64.0 + 117.2500 118.5000 -64.0 + 116.5000 120.2500 -64.0 + 118.2500 123.5000 -64.0 + 118.2500 125.5000 -64.0 + 122.2500 133.5000 -64.0 + 121.2500 136.5000 -64.0 + 118.2500 140.5000 -64.0 + 117.2500 142.5000 -64.0 + 112.5000 145.2500 -64.0 + 108.5000 147.2500 -64.0 + 105.5000 147.2500 -64.0 + 96.5000 144.2500 -64.0 + 93.5000 145.2500 -64.0 + 93.2500 146.5000 -64.0 + 94.2500 148.5000 -64.0 + 100.2500 152.5000 -64.0 + 102.5000 152.7500 -64.0 + 104.2500 154.5000 -64.0 + 106.5000 154.7500 -64.0 + 112.5000 151.7500 -64.0 + 118.7500 149.5000 -64.0 + 119.7500 147.5000 -64.0 + 118.7500 144.5000 -64.0 + 119.5000 142.7500 -64.0 + 121.5000 141.7500 -64.0 + 123.5000 142.7500 -64.0 + 125.5000 141.7500 -64.0 + 127.5000 141.7500 -64.0 + 131.5000 139.7500 -64.0 + 132.7500 135.5000 -64.0 + 139.5000 130.7500 -64.0 + 141.5000 129.7500 -64.0 + 138.5000 128.2500 -64.0 + 134.5000 131.2500 -64.0 + 131.7500 129.5000 -64.0 + 131.7500 127.5000 -64.0 + 130.5000 126.2500 -64.0 + 130.2500 129.5000 -64.0 + 128.5000 131.2500 -64.0 + 124.5000 131.2500 -64.0 + 121.7500 128.5000 -64.0 + 118.7500 122.5000 -64.0 + 118.7500 119.5000 -64.0 + 120.5000 115.7500 -64.0 + 125.5000 115.7500 -64.0 + 128.2500 118.5000 -64.0 + 130.5000 122.7500 -64.0 + 130.7500 120.5000 -64.0 + 129.7500 118.5000 -64.0 + 123.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 74.2500 118.5000 -64.0 + 75.5000 118.7500 -64.0 + 77.2500 120.5000 -64.0 + 79.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 91.7500 115.5000 -64.0 + 92.5000 114.7500 -64.0 + 95.5000 114.7500 -64.0 + 97.2500 116.5000 -64.0 + 93.5000 124.2500 -64.0 + 93.2500 126.5000 -64.0 + 90.5000 129.2500 -64.0 + 87.5000 129.2500 -64.0 + 85.7500 127.5000 -64.0 + 85.7500 119.5000 -64.0 + 88.5000 115.7500 -64.0 +} -64.0 +{ -64.0 + 104.7500 115.5000 -64.0 + 105.5000 114.7500 -64.0 + 107.2500 115.5000 -64.0 + 107.2500 117.5000 -64.0 + 108.7500 117.5000 -64.0 + 107.7500 115.5000 -64.0 + 108.5000 114.7500 -64.0 + 111.2500 116.5000 -64.0 + 111.2500 120.5000 -64.0 + 109.5000 122.2500 -64.0 + 108.7500 121.5000 -64.0 + 106.5000 122.2500 -64.0 + 103.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 125.7500 136.5000 -64.0 + 127.5000 135.7500 -64.0 + 129.2500 136.5000 -64.0 + 127.5000 137.2500 -64.0 +} -64.0 +{ -64.0 + 113.7500 147.5000 -64.0 + 114.5000 146.7500 -64.0 + 115.2500 148.5000 -64.0 + 113.5000 150.2500 -64.0 + 111.5000 150.2500 -64.0 + 109.7500 149.5000 -64.0 +} -64.0 +{ -64.0 + 97.7500 148.5000 -64.0 + 99.5000 147.7500 -64.0 + 103.2500 150.5000 -64.0 + 102.5000 151.2500 -64.0 + 101.7500 150.5000 -64.0 + 99.5000 150.2500 -64.0 +} -64.0 +{ -64.0 + 104.7500 151.5000 -64.0 + 105.5000 150.7500 -64.0 + 106.2500 151.5000 -64.0 + 105.5000 152.2500 -64.0 +} -64.0 +v 370 z -160.000000 -64.0 +{ -64.0 + 105.2500 33.5000 -64.0 + 103.2500 34.5000 -64.0 + 106.5000 34.7500 -64.0 + 108.5000 33.7500 -64.0 + 110.5000 34.7500 -64.0 + 112.5000 33.7500 -64.0 + 117.5000 34.7500 -64.0 + 119.2500 36.5000 -64.0 + 120.5000 35.7500 -64.0 + 122.7500 39.5000 -64.0 + 123.7500 37.5000 -64.0 + 122.7500 35.5000 -64.0 + 120.5000 35.2500 -64.0 + 118.7500 33.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 38.5000 -64.0 + 87.5000 42.2500 -64.0 + 87.2500 45.5000 -64.0 + 89.2500 47.5000 -64.0 + 92.5000 43.7500 -64.0 + 93.7500 44.5000 -64.0 + 94.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 43.5000 -64.0 + 96.5000 44.2500 -64.0 + 94.5000 45.2500 -64.0 + 97.2500 47.5000 -64.0 + 96.2500 50.5000 -64.0 + 98.5000 48.7500 -64.0 + 100.5000 48.7500 -64.0 + 100.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 80.2500 47.5000 -64.0 + 78.5000 48.2500 -64.0 + 81.2500 50.5000 -64.0 + 81.2500 54.5000 -64.0 + 79.5000 58.2500 -64.0 + 78.5000 57.2500 -64.0 + 78.2500 62.5000 -64.0 + 75.5000 65.2500 -64.0 + 77.5000 68.7500 -64.0 + 79.5000 65.7500 -64.0 + 79.7500 63.5000 -64.0 + 82.5000 59.7500 -64.0 + 83.2500 60.5000 -64.0 + 83.5000 65.7500 -64.0 + 83.7500 62.5000 -64.0 + 85.7500 58.5000 -64.0 + 86.7500 53.5000 -64.0 + 88.5000 51.7500 -64.0 + 88.7500 49.5000 -64.0 + 83.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 143.2500 51.5000 -64.0 + 140.2500 54.5000 -64.0 + 139.2500 56.5000 -64.0 + 135.5000 59.2500 -64.0 + 135.2500 61.5000 -64.0 + 136.5000 61.7500 -64.0 + 138.5000 60.7500 -64.0 + 140.2500 61.5000 -64.0 + 140.2500 64.5000 -64.0 + 141.7500 62.5000 -64.0 + 140.7500 60.5000 -64.0 + 141.5000 59.2500 -64.0 + 139.5000 60.2500 -64.0 + 138.7500 58.5000 -64.0 + 141.5000 56.7500 -64.0 + 142.2500 58.5000 -64.0 + 148.7500 57.5000 -64.0 + 149.7500 55.5000 -64.0 + 147.7500 54.5000 -64.0 + 145.5000 55.2500 -64.0 + 143.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 52.5000 -64.0 + 93.5000 52.7500 -64.0 + 103.2500 59.5000 -64.0 + 103.2500 61.5000 -64.0 + 97.5000 64.2500 -64.0 + 95.5000 64.2500 -64.0 + 92.2500 66.5000 -64.0 + 91.2500 68.5000 -64.0 + 98.5000 68.7500 -64.0 + 105.5000 66.7500 -64.0 + 114.5000 65.7500 -64.0 + 122.5000 62.7500 -64.0 + 120.7500 61.5000 -64.0 + 111.5000 61.2500 -64.0 + 94.7500 52.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 61.5000 -64.0 + 127.2500 62.5000 -64.0 + 127.7500 61.5000 -64.0 +} -64.0 +{ -64.0 + 55.2500 62.5000 -64.0 + 56.2500 64.5000 -64.0 + 60.2500 65.5000 -64.0 + 66.5000 65.7500 -64.0 + 65.7500 64.5000 -64.0 + 59.5000 63.2500 -64.0 +} -64.0 +{ -64.0 + 152.2500 67.5000 -64.0 + 151.5000 68.2500 -64.0 + 148.2500 68.5000 -64.0 + 150.5000 68.7500 -64.0 + 152.2500 69.5000 -64.0 + 149.5000 72.2500 -64.0 + 145.5000 75.2500 -64.0 + 143.5000 76.2500 -64.0 + 144.5000 77.7500 -64.0 + 146.5000 76.7500 -64.0 + 148.5000 76.7500 -64.0 + 150.5000 77.7500 -64.0 + 152.5000 76.7500 -64.0 + 155.5000 76.7500 -64.0 + 154.7500 74.5000 -64.0 + 159.5000 70.7500 -64.0 + 159.7500 68.5000 -64.0 + 157.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 68.5000 -64.0 + 111.5000 71.2500 -64.0 + 112.2500 72.5000 -64.0 + 125.7500 72.5000 -64.0 + 120.7500 71.5000 -64.0 + 123.5000 69.7500 -64.0 + 127.5000 69.7500 -64.0 + 127.7500 68.5000 -64.0 + 126.5000 69.2500 -64.0 + 125.7500 68.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 72.5000 -64.0 + 68.5000 73.7500 -64.0 + 72.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 72.5000 -64.0 + 86.2500 73.5000 -64.0 + 87.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 72.5000 -64.0 + 128.2500 73.5000 -64.0 + 126.5000 75.2500 -64.0 + 128.2500 77.5000 -64.0 + 124.5000 79.2500 -64.0 + 122.7500 78.5000 -64.0 + 104.5000 78.2500 -64.0 + 102.7500 77.5000 -64.0 + 85.5000 76.2500 -64.0 + 84.7500 74.5000 -64.0 + 82.5000 75.2500 -64.0 + 84.2500 76.5000 -64.0 + 88.2500 77.5000 -64.0 + 82.5000 80.2500 -64.0 + 81.7500 79.5000 -64.0 + 79.5000 79.2500 -64.0 + 81.2500 80.5000 -64.0 + 81.2500 83.5000 -64.0 + 84.5000 81.7500 -64.0 + 88.5000 82.7500 -64.0 + 88.7500 80.5000 -64.0 + 90.5000 79.7500 -64.0 + 95.5000 80.7500 -64.0 + 97.5000 82.7500 -64.0 + 99.5000 81.7500 -64.0 + 103.2500 82.5000 -64.0 + 101.5000 83.2500 -64.0 + 104.2500 84.5000 -64.0 + 105.5000 83.7500 -64.0 + 104.7500 82.5000 -64.0 + 105.5000 81.7500 -64.0 + 107.2500 82.5000 -64.0 + 117.5000 83.7500 -64.0 + 121.5000 81.7500 -64.0 + 124.2500 83.5000 -64.0 + 123.2500 87.5000 -64.0 + 125.2500 88.5000 -64.0 + 124.2500 91.5000 -64.0 + 125.5000 91.7500 -64.0 + 126.2500 93.5000 -64.0 + 124.2500 95.5000 -64.0 + 125.7500 95.5000 -64.0 + 128.7500 88.5000 -64.0 + 132.5000 84.7500 -64.0 + 136.7500 82.5000 -64.0 + 133.5000 82.2500 -64.0 + 131.5000 83.2500 -64.0 + 129.7500 82.5000 -64.0 + 130.7500 77.5000 -64.0 + 129.5000 77.2500 -64.0 + 127.7500 75.5000 -64.0 + 129.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 78.5000 -64.0 + 63.5000 79.2500 -64.0 + 58.5000 79.2500 -64.0 + 54.5000 82.2500 -64.0 + 52.5000 82.2500 -64.0 + 50.5000 83.2500 -64.0 + 50.2500 85.5000 -64.0 + 51.5000 84.7500 -64.0 + 53.5000 84.7500 -64.0 + 55.5000 83.7500 -64.0 + 58.5000 83.7500 -64.0 + 62.5000 81.7500 -64.0 + 64.5000 81.7500 -64.0 + 65.2500 83.5000 -64.0 + 64.2500 86.5000 -64.0 + 57.2500 98.5000 -64.0 + 56.2500 105.5000 -64.0 + 57.2500 107.5000 -64.0 + 58.7500 107.5000 -64.0 + 59.7500 105.5000 -64.0 + 62.7500 98.5000 -64.0 + 59.5000 101.2500 -64.0 + 58.7500 100.5000 -64.0 + 59.5000 99.7500 -64.0 + 59.7500 97.5000 -64.0 + 66.7500 83.5000 -64.0 + 68.5000 82.7500 -64.0 + 68.7500 81.5000 -64.0 + 69.5000 79.7500 -64.0 + 71.7500 78.5000 -64.0 +} -64.0 +{ -64.0 + 75.2500 79.5000 -64.0 + 75.2500 80.5000 -64.0 + 72.5000 83.2500 -64.0 + 72.2500 87.5000 -64.0 + 69.5000 91.2500 -64.0 + 67.2500 92.5000 -64.0 + 66.2500 94.5000 -64.0 + 67.5000 94.7500 -64.0 + 69.5000 92.7500 -64.0 + 70.2500 93.5000 -64.0 + 71.7500 93.5000 -64.0 + 72.7500 91.5000 -64.0 + 76.7500 87.5000 -64.0 + 77.7500 85.5000 -64.0 + 75.7500 83.5000 -64.0 + 75.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 82.5000 -64.0 + 148.2500 84.5000 -64.0 + 150.2500 86.5000 -64.0 + 150.2500 88.5000 -64.0 + 152.5000 93.7500 -64.0 + 152.7500 91.5000 -64.0 + 150.7500 87.5000 -64.0 + 150.7500 84.5000 -64.0 + 152.5000 83.7500 -64.0 + 159.5000 85.7500 -64.0 + 162.5000 84.7500 -64.0 + 160.7500 83.5000 -64.0 + 156.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 88.5000 -64.0 + 139.2500 89.5000 -64.0 + 140.2500 91.5000 -64.0 + 142.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 121.2500 101.5000 -64.0 + 121.2500 102.5000 -64.0 + 121.7500 103.5000 -64.0 + 122.7500 101.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 101.5000 -64.0 + 154.2500 104.5000 -64.0 + 153.5000 106.2500 -64.0 + 152.7500 105.5000 -64.0 + 152.2500 106.5000 -64.0 + 153.2500 108.5000 -64.0 + 153.2500 110.5000 -64.0 + 154.5000 111.7500 -64.0 + 156.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 112.5000 -64.0 + 90.5000 113.2500 -64.0 + 88.5000 113.2500 -64.0 + 85.5000 118.2500 -64.0 + 85.2500 124.5000 -64.0 + 83.2500 129.5000 -64.0 + 81.5000 130.2500 -64.0 + 77.7500 127.5000 -64.0 + 74.7500 123.5000 -64.0 + 73.5000 124.2500 -64.0 + 72.7500 123.5000 -64.0 + 68.5000 122.2500 -64.0 + 68.2500 123.5000 -64.0 + 71.5000 123.7500 -64.0 + 79.2500 131.5000 -64.0 + 81.2500 135.5000 -64.0 + 83.2500 141.5000 -64.0 + 85.2500 142.5000 -64.0 + 88.5000 142.7500 -64.0 + 90.2500 143.5000 -64.0 + 89.5000 144.2500 -64.0 + 89.2500 146.5000 -64.0 + 90.5000 146.7500 -64.0 + 92.2500 148.5000 -64.0 + 94.5000 148.7500 -64.0 + 102.2500 154.5000 -64.0 + 103.7500 153.5000 -64.0 + 94.7500 147.5000 -64.0 + 95.5000 145.7500 -64.0 + 97.5000 145.7500 -64.0 + 100.5000 146.7500 -64.0 + 102.2500 147.5000 -64.0 + 110.5000 147.7500 -64.0 + 116.5000 144.7500 -64.0 + 118.2500 146.5000 -64.0 + 117.5000 148.2500 -64.0 + 107.5000 153.2500 -64.0 + 107.2500 154.5000 -64.0 + 108.5000 154.7500 -64.0 + 115.7500 150.5000 -64.0 + 120.5000 148.7500 -64.0 + 124.5000 145.7500 -64.0 + 126.5000 144.7500 -64.0 + 128.5000 141.7500 -64.0 + 130.7500 135.5000 -64.0 + 133.5000 132.7500 -64.0 + 131.7500 129.5000 -64.0 + 131.5000 123.2500 -64.0 + 131.2500 125.5000 -64.0 + 130.2500 128.5000 -64.0 + 127.5000 131.2500 -64.0 + 125.5000 131.2500 -64.0 + 121.7500 127.5000 -64.0 + 122.5000 126.7500 -64.0 + 121.7500 125.5000 -64.0 + 122.7500 123.5000 -64.0 + 123.5000 121.7500 -64.0 + 126.7500 117.5000 -64.0 + 125.7500 114.5000 -64.0 + 119.5000 114.2500 -64.0 + 118.5000 116.2500 -64.0 + 116.5000 116.2500 -64.0 + 116.2500 118.5000 -64.0 + 118.2500 122.5000 -64.0 + 118.2500 127.5000 -64.0 + 123.2500 132.5000 -64.0 + 123.2500 134.5000 -64.0 + 122.2500 137.5000 -64.0 + 115.5000 142.2500 -64.0 + 109.5000 145.2500 -64.0 + 103.5000 145.2500 -64.0 + 96.5000 142.2500 -64.0 + 91.7500 135.5000 -64.0 + 91.7500 131.5000 -64.0 + 97.7500 125.5000 -64.0 + 98.7500 116.5000 -64.0 + 97.5000 115.2500 -64.0 + 93.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 113.5000 -64.0 + 102.5000 116.2500 -64.0 + 102.2500 119.5000 -64.0 + 104.2500 123.5000 -64.0 + 109.5000 123.7500 -64.0 + 113.5000 121.7500 -64.0 + 113.7500 116.5000 -64.0 + 110.5000 114.2500 -64.0 +} -64.0 +{ -64.0 + 88.7500 116.5000 -64.0 + 90.5000 115.7500 -64.0 + 92.2500 116.5000 -64.0 + 90.2500 119.5000 -64.0 + 92.5000 119.7500 -64.0 + 91.7500 118.5000 -64.0 + 93.5000 116.7500 -64.0 + 94.2500 118.5000 -64.0 + 96.2500 125.5000 -64.0 + 94.5000 126.2500 -64.0 + 91.5000 129.2500 -64.0 + 87.5000 129.2500 -64.0 + 85.7500 125.5000 -64.0 + 86.5000 123.7500 -64.0 + 85.7500 122.5000 -64.0 + 86.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 103.7500 116.5000 -64.0 + 104.5000 115.7500 -64.0 + 109.5000 116.7500 -64.0 + 111.2500 118.5000 -64.0 + 111.2500 120.5000 -64.0 + 109.5000 122.2500 -64.0 + 106.5000 122.2500 -64.0 + 103.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 85.7500 136.5000 -64.0 + 86.5000 135.7500 -64.0 + 87.2500 136.5000 -64.0 + 86.5000 137.2500 -64.0 +} -64.0 +v 484 z -162.000000 -64.0 +{ -64.0 + 96.2500 29.5000 -64.0 + 92.5000 32.2500 -64.0 + 89.5000 32.2500 -64.0 + 87.7500 31.5000 -64.0 + 87.2500 32.5000 -64.0 + 89.2500 34.5000 -64.0 + 89.2500 36.5000 -64.0 + 87.5000 37.2500 -64.0 + 87.2500 40.5000 -64.0 + 84.5000 43.2500 -64.0 + 84.5000 44.7500 -64.0 + 86.5000 45.7500 -64.0 + 86.7500 44.5000 -64.0 + 89.7500 41.5000 -64.0 + 88.7500 39.5000 -64.0 + 89.5000 38.7500 -64.0 + 92.7500 38.5000 -64.0 + 89.7500 34.5000 -64.0 + 91.5000 33.7500 -64.0 + 94.2500 36.5000 -64.0 + 95.5000 34.7500 -64.0 + 96.7500 30.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 32.5000 -64.0 + 106.5000 34.2500 -64.0 + 104.2500 34.5000 -64.0 + 105.2500 36.5000 -64.0 + 105.2500 39.5000 -64.0 + 101.2500 41.5000 -64.0 + 103.5000 41.7500 -64.0 + 105.2500 43.5000 -64.0 + 104.5000 45.2500 -64.0 + 102.5000 45.2500 -64.0 + 101.5000 47.2500 -64.0 + 102.5000 47.7500 -64.0 + 104.5000 46.7500 -64.0 + 115.5000 52.7500 -64.0 + 125.5000 56.7500 -64.0 + 124.5000 55.2500 -64.0 + 111.5000 47.2500 -64.0 + 108.7500 44.5000 -64.0 + 109.5000 43.7500 -64.0 + 109.7500 40.5000 -64.0 + 107.7500 38.5000 -64.0 + 108.5000 36.7500 -64.0 + 110.5000 36.7500 -64.0 + 112.5000 35.7500 -64.0 + 114.5000 36.7500 -64.0 + 116.5000 35.7500 -64.0 + 120.5000 37.7500 -64.0 + 123.2500 42.5000 -64.0 + 122.2500 45.5000 -64.0 + 123.5000 46.7500 -64.0 + 126.5000 45.7500 -64.0 + 126.7500 42.5000 -64.0 + 124.7500 40.5000 -64.0 + 124.7500 37.5000 -64.0 + 123.7500 35.5000 -64.0 + 119.5000 34.2500 -64.0 + 120.2500 35.5000 -64.0 + 119.5000 36.2500 -64.0 + 117.7500 35.5000 -64.0 + 112.5000 35.2500 -64.0 + 109.5000 36.2500 -64.0 + 107.7500 34.5000 -64.0 + 108.5000 33.7500 -64.0 + 118.7500 33.5000 -64.0 + 114.7500 32.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 38.5000 -64.0 + 94.5000 39.7500 -64.0 + 96.5000 40.7500 -64.0 + 95.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 47.5000 -64.0 + 77.2500 49.5000 -64.0 + 79.5000 49.7500 -64.0 + 83.2500 51.5000 -64.0 + 79.2500 59.5000 -64.0 + 80.2500 61.5000 -64.0 + 80.2500 64.5000 -64.0 + 81.5000 64.7500 -64.0 + 80.7500 63.5000 -64.0 + 80.7500 59.5000 -64.0 + 81.7500 56.5000 -64.0 + 84.5000 52.7500 -64.0 + 86.5000 52.7500 -64.0 + 86.7500 49.5000 -64.0 + 84.5000 50.2500 -64.0 + 82.7500 49.5000 -64.0 + 84.7500 48.5000 -64.0 + 80.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 99.2500 48.5000 -64.0 + 99.2500 49.5000 -64.0 + 98.2500 51.5000 -64.0 + 101.5000 51.7500 -64.0 + 99.7500 49.5000 -64.0 + 100.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 50.5000 -64.0 + 136.5000 56.2500 -64.0 + 136.5000 57.7500 -64.0 + 140.5000 55.7500 -64.0 + 144.5000 55.7500 -64.0 + 146.2500 56.5000 -64.0 + 144.2500 57.5000 -64.0 + 146.5000 57.7500 -64.0 + 149.5000 56.7500 -64.0 + 151.7500 54.5000 -64.0 + 149.5000 54.2500 -64.0 + 143.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 54.5000 -64.0 + 91.2500 58.5000 -64.0 + 88.2500 64.5000 -64.0 + 89.5000 63.7500 -64.0 + 92.2500 65.5000 -64.0 + 91.5000 66.2500 -64.0 + 97.5000 67.7500 -64.0 + 99.5000 66.7500 -64.0 + 103.5000 66.7500 -64.0 + 105.5000 65.7500 -64.0 + 114.5000 64.7500 -64.0 + 118.5000 62.7500 -64.0 + 117.7500 61.5000 -64.0 + 108.5000 59.2500 -64.0 + 98.5000 54.2500 -64.0 + 96.5000 55.2500 -64.0 +} -64.0 +{ -64.0 + 135.2500 58.5000 -64.0 + 135.2500 59.5000 -64.0 + 136.5000 59.7500 -64.0 +} -64.0 +{ -64.0 + 138.2500 59.5000 -64.0 + 137.2500 60.5000 -64.0 + 141.5000 60.7500 -64.0 + 143.2500 63.5000 -64.0 + 141.2500 64.5000 -64.0 + 143.5000 64.7500 -64.0 + 151.2500 68.5000 -64.0 + 155.2500 69.5000 -64.0 + 152.5000 71.2500 -64.0 + 145.7500 69.5000 -64.0 + 141.5000 69.2500 -64.0 + 140.5000 69.7500 -64.0 + 147.5000 70.7500 -64.0 + 148.2500 72.5000 -64.0 + 146.5000 73.2500 -64.0 + 144.5000 75.7500 -64.0 + 148.5000 73.7500 -64.0 + 150.5000 73.7500 -64.0 + 152.5000 72.7500 -64.0 + 156.5000 72.7500 -64.0 + 158.5000 71.7500 -64.0 + 159.2500 72.5000 -64.0 + 161.5000 72.7500 -64.0 + 160.7500 70.5000 -64.0 + 155.7500 68.5000 -64.0 + 157.5000 66.7500 -64.0 + 154.5000 65.2500 -64.0 + 145.5000 63.2500 -64.0 + 142.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 56.2500 61.5000 -64.0 + 55.5000 62.2500 -64.0 + 55.5000 63.7500 -64.0 + 60.5000 64.7500 -64.0 + 62.2500 65.5000 -64.0 + 69.5000 65.7500 -64.0 + 71.2500 66.5000 -64.0 + 72.5000 65.7500 -64.0 + 74.5000 65.7500 -64.0 + 76.2500 66.5000 -64.0 + 78.5000 64.2500 -64.0 + 76.5000 65.2500 -64.0 + 74.5000 65.2500 -64.0 + 70.7500 63.5000 -64.0 + 66.5000 63.2500 -64.0 + 63.5000 62.2500 -64.0 + 61.7500 61.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 67.5000 -64.0 + 115.5000 69.2500 -64.0 + 116.2500 72.5000 -64.0 + 121.5000 72.7500 -64.0 + 121.7500 71.5000 -64.0 + 123.5000 69.7500 -64.0 + 126.5000 69.7500 -64.0 + 121.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 71.5000 -64.0 + 63.2500 72.5000 -64.0 + 65.2500 73.5000 -64.0 + 69.5000 73.7500 -64.0 + 67.7500 72.5000 -64.0 + 69.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 73.5000 -64.0 + 93.2500 74.5000 -64.0 + 97.5000 74.7500 -64.0 + 99.2500 75.5000 -64.0 + 98.5000 76.2500 -64.0 + 93.5000 76.2500 -64.0 + 90.5000 77.2500 -64.0 + 91.2500 78.5000 -64.0 + 93.5000 78.7500 -64.0 + 95.2500 79.5000 -64.0 + 99.5000 79.7500 -64.0 + 101.5000 81.7500 -64.0 + 103.5000 80.7500 -64.0 + 105.5000 80.7500 -64.0 + 109.5000 82.7500 -64.0 + 112.5000 81.7500 -64.0 + 115.2500 84.5000 -64.0 + 114.5000 85.2500 -64.0 + 114.5000 86.7500 -64.0 + 116.5000 87.7500 -64.0 + 116.7500 86.5000 -64.0 + 118.5000 84.7500 -64.0 + 120.2500 85.5000 -64.0 + 117.2500 89.5000 -64.0 + 120.5000 89.7500 -64.0 + 121.2500 91.5000 -64.0 + 119.2500 93.5000 -64.0 + 121.5000 93.7500 -64.0 + 121.7500 91.5000 -64.0 + 123.5000 90.7500 -64.0 + 125.2500 92.5000 -64.0 + 124.5000 93.2500 -64.0 + 124.2500 96.5000 -64.0 + 125.5000 95.7500 -64.0 + 129.5000 95.7500 -64.0 + 131.7500 93.5000 -64.0 + 132.7500 91.5000 -64.0 + 135.5000 87.7500 -64.0 + 137.5000 87.7500 -64.0 + 137.7500 84.5000 -64.0 + 138.7500 81.5000 -64.0 + 136.5000 83.2500 -64.0 + 133.5000 83.2500 -64.0 + 130.5000 84.2500 -64.0 + 128.7500 83.5000 -64.0 + 128.7500 81.5000 -64.0 + 127.7500 78.5000 -64.0 + 129.7500 77.5000 -64.0 + 121.5000 77.2500 -64.0 + 118.5000 76.2500 -64.0 + 116.5000 77.2500 -64.0 + 114.7500 76.5000 -64.0 + 110.5000 76.2500 -64.0 + 104.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 73.5000 -64.0 + 130.2500 76.5000 -64.0 + 131.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 73.5000 -64.0 + 136.2500 75.5000 -64.0 + 138.5000 75.7500 -64.0 + 138.7500 74.5000 -64.0 +} -64.0 +{ -64.0 + 69.2500 77.5000 -64.0 + 68.5000 78.2500 -64.0 + 65.5000 78.2500 -64.0 + 63.5000 79.2500 -64.0 + 59.5000 79.2500 -64.0 + 53.5000 82.2500 -64.0 + 51.5000 82.2500 -64.0 + 50.2500 84.5000 -64.0 + 54.5000 84.7500 -64.0 + 63.5000 81.7500 -64.0 + 65.2500 84.5000 -64.0 + 67.5000 81.7500 -64.0 + 65.7500 80.5000 -64.0 + 67.5000 78.7500 -64.0 + 69.2500 79.5000 -64.0 + 70.5000 78.7500 -64.0 +} -64.0 +{ -64.0 + 86.2500 77.5000 -64.0 + 82.5000 81.2500 -64.0 + 81.7500 79.5000 -64.0 + 80.5000 79.2500 -64.0 + 81.2500 80.5000 -64.0 + 80.5000 84.2500 -64.0 + 81.2500 85.5000 -64.0 + 80.2500 90.5000 -64.0 + 81.5000 88.7500 -64.0 + 81.7500 84.5000 -64.0 + 84.5000 81.7500 -64.0 + 87.5000 81.7500 -64.0 + 87.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 76.2500 79.5000 -64.0 + 74.5000 81.2500 -64.0 + 73.2500 87.5000 -64.0 + 67.5000 93.2500 -64.0 + 68.5000 93.7500 -64.0 + 70.5000 91.7500 -64.0 + 72.5000 91.7500 -64.0 + 77.5000 86.7500 -64.0 + 75.7500 85.5000 -64.0 + 76.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 87.5000 -64.0 + 150.2500 89.5000 -64.0 + 152.2500 93.5000 -64.0 + 153.2500 102.5000 -64.0 + 151.5000 103.2500 -64.0 + 151.2500 104.5000 -64.0 + 152.2500 107.5000 -64.0 + 152.7500 106.5000 -64.0 + 151.7500 104.5000 -64.0 + 152.5000 103.7500 -64.0 + 155.2500 107.5000 -64.0 + 155.5000 110.7500 -64.0 + 155.7500 105.5000 -64.0 + 153.7500 101.5000 -64.0 + 152.7500 91.5000 -64.0 + 151.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 138.2500 88.5000 -64.0 + 138.5000 88.7500 -64.0 + 142.2500 91.5000 -64.0 + 143.7500 91.5000 -64.0 + 139.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 90.5000 -64.0 + 110.2500 91.5000 -64.0 + 111.2500 93.5000 -64.0 + 113.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 79.2500 92.5000 -64.0 + 79.2500 93.5000 -64.0 + 78.2500 96.5000 -64.0 + 77.5000 98.2500 -64.0 + 77.2500 102.5000 -64.0 + 77.7500 103.5000 -64.0 + 79.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 59.2500 97.5000 -64.0 + 57.5000 101.2500 -64.0 + 57.2500 105.5000 -64.0 + 58.2500 107.5000 -64.0 + 59.7500 106.5000 -64.0 + 60.7500 101.5000 -64.0 + 58.7500 100.5000 -64.0 + 59.7500 98.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 102.5000 -64.0 + 123.5000 103.2500 -64.0 + 124.2500 105.5000 -64.0 + 123.2500 107.5000 -64.0 + 124.2500 109.5000 -64.0 + 126.7500 104.5000 -64.0 + 125.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 76.2500 104.5000 -64.0 + 75.2500 106.5000 -64.0 + 75.7500 107.5000 -64.0 + 76.7500 105.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 110.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.5000 111.7500 -64.0 +} -64.0 +{ -64.0 + 87.2500 112.5000 -64.0 + 86.5000 113.2500 -64.0 + 87.2500 114.5000 -64.0 + 86.2500 117.5000 -64.0 + 87.5000 116.7500 -64.0 + 89.2500 117.5000 -64.0 + 89.2500 119.5000 -64.0 + 90.2500 121.5000 -64.0 + 89.5000 122.2500 -64.0 + 90.2500 124.5000 -64.0 + 91.5000 124.7500 -64.0 + 93.2500 125.5000 -64.0 + 90.5000 128.2500 -64.0 + 87.5000 128.2500 -64.0 + 85.7500 126.5000 -64.0 + 85.7500 121.5000 -64.0 + 84.5000 120.2500 -64.0 + 84.2500 130.5000 -64.0 + 87.2500 134.5000 -64.0 + 86.5000 135.2500 -64.0 + 84.2500 135.5000 -64.0 + 83.2500 137.5000 -64.0 + 87.5000 144.7500 -64.0 + 100.5000 151.7500 -64.0 + 104.2500 154.5000 -64.0 + 108.5000 154.7500 -64.0 + 110.5000 153.7500 -64.0 + 114.5000 150.7500 -64.0 + 122.5000 146.7500 -64.0 + 125.7500 143.5000 -64.0 + 127.7500 139.5000 -64.0 + 126.7500 137.5000 -64.0 + 125.5000 138.2500 -64.0 + 119.5000 141.2500 -64.0 + 116.5000 141.2500 -64.0 + 110.5000 144.2500 -64.0 + 108.5000 144.2500 -64.0 + 106.5000 145.2500 -64.0 + 105.7500 144.5000 -64.0 + 102.5000 144.2500 -64.0 + 94.5000 140.2500 -64.0 + 87.7500 133.5000 -64.0 + 89.7500 131.5000 -64.0 + 96.7500 128.5000 -64.0 + 97.7500 126.5000 -64.0 + 95.5000 126.2500 -64.0 + 94.7500 124.5000 -64.0 + 95.5000 122.7500 -64.0 + 97.5000 122.7500 -64.0 + 99.5000 124.7500 -64.0 + 103.5000 122.7500 -64.0 + 107.5000 124.7500 -64.0 + 115.5000 120.7500 -64.0 + 120.5000 121.7500 -64.0 + 122.5000 119.7500 -64.0 + 123.2500 120.5000 -64.0 + 122.2500 125.5000 -64.0 + 120.5000 127.2500 -64.0 + 120.2500 129.5000 -64.0 + 122.5000 130.7500 -64.0 + 124.5000 131.7500 -64.0 + 126.2500 132.5000 -64.0 + 128.7500 132.5000 -64.0 + 131.5000 128.7500 -64.0 + 131.7500 125.5000 -64.0 + 132.7500 123.5000 -64.0 + 131.7500 121.5000 -64.0 + 131.7500 119.5000 -64.0 + 130.5000 118.2500 -64.0 + 124.5000 115.2500 -64.0 + 124.2500 117.5000 -64.0 + 123.5000 119.2500 -64.0 + 121.7500 117.5000 -64.0 + 120.7500 115.5000 -64.0 + 117.7500 113.5000 -64.0 + 116.5000 114.2500 -64.0 + 112.5000 114.2500 -64.0 + 107.5000 113.2500 -64.0 + 99.5000 117.2500 -64.0 + 96.5000 117.2500 -64.0 + 94.7500 116.5000 -64.0 + 93.5000 114.2500 -64.0 + 91.5000 113.2500 -64.0 + 89.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 71.2500 119.5000 -64.0 + 70.2500 121.5000 -64.0 + 72.5000 121.7500 -64.0 + 72.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 92.7500 59.5000 -64.0 + 93.5000 58.7500 -64.0 + 94.2500 59.5000 -64.0 + 93.5000 60.2500 -64.0 +} -64.0 +{ -64.0 + 93.7500 61.5000 -64.0 + 94.5000 60.7500 -64.0 + 95.2500 61.5000 -64.0 + 94.5000 62.2500 -64.0 +} -64.0 +{ -64.0 + 107.7500 61.5000 -64.0 + 109.5000 60.7500 -64.0 + 117.2500 62.5000 -64.0 + 114.5000 64.2500 -64.0 + 110.5000 64.2500 -64.0 + 103.5000 66.2500 -64.0 + 95.5000 66.2500 -64.0 + 93.7500 65.5000 -64.0 + 96.5000 63.7500 -64.0 + 98.5000 63.7500 -64.0 + 100.5000 62.7500 -64.0 + 107.5000 62.7500 -64.0 +} -64.0 +{ -64.0 + 118.7500 83.5000 -64.0 + 119.5000 82.7500 -64.0 + 120.2500 83.5000 -64.0 + 119.5000 84.2500 -64.0 +} -64.0 +{ -64.0 + 103.7500 116.5000 -64.0 + 105.5000 115.7500 -64.0 + 107.2500 116.5000 -64.0 + 104.5000 119.2500 -64.0 + 102.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 116.5000 -64.0 + 108.5000 115.7500 -64.0 + 111.2500 120.5000 -64.0 + 109.5000 122.2500 -64.0 + 107.5000 122.2500 -64.0 + 105.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 128.7500 125.5000 -64.0 + 129.5000 124.7500 -64.0 + 130.2500 125.5000 -64.0 + 129.5000 126.2500 -64.0 +} -64.0 +{ -64.0 + 126.7500 127.5000 -64.0 + 127.5000 126.7500 -64.0 + 129.2500 127.5000 -64.0 + 127.5000 129.2500 -64.0 +} -64.0 +{ -64.0 + 95.7500 145.5000 -64.0 + 96.5000 144.7500 -64.0 + 102.5000 146.7500 -64.0 + 104.2500 147.5000 -64.0 + 110.5000 147.7500 -64.0 + 113.5000 146.7500 -64.0 + 114.2500 148.5000 -64.0 + 112.5000 149.2500 -64.0 + 106.5000 152.2500 -64.0 + 104.7500 151.5000 -64.0 + 102.5000 151.2500 -64.0 + 98.5000 148.2500 -64.0 + 96.5000 147.2500 -64.0 +} -64.0 +v 400 z -164.000000 -64.0 +{ -64.0 + 95.2500 31.5000 -64.0 + 90.5000 42.2500 -64.0 + 88.7500 41.5000 -64.0 + 85.5000 43.2500 -64.0 + 88.5000 47.7500 -64.0 + 88.7500 45.5000 -64.0 + 90.5000 43.7500 -64.0 + 91.2500 44.5000 -64.0 + 92.5000 42.7500 -64.0 + 93.2500 43.5000 -64.0 + 92.5000 45.2500 -64.0 + 93.5000 45.7500 -64.0 + 94.5000 42.7500 -64.0 + 97.5000 43.7500 -64.0 + 98.2500 45.5000 -64.0 + 96.5000 47.2500 -64.0 + 93.5000 47.7500 -64.0 + 97.2500 49.5000 -64.0 + 96.2500 50.5000 -64.0 + 98.5000 50.7500 -64.0 + 97.7500 49.5000 -64.0 + 98.7500 47.5000 -64.0 + 101.5000 45.7500 -64.0 + 106.5000 39.7500 -64.0 + 108.5000 40.7500 -64.0 + 110.5000 37.7500 -64.0 + 116.5000 39.7500 -64.0 + 118.5000 38.7500 -64.0 + 121.2500 43.5000 -64.0 + 120.5000 45.2500 -64.0 + 121.2500 46.5000 -64.0 + 125.5000 46.7500 -64.0 + 127.5000 45.7500 -64.0 + 127.7500 42.5000 -64.0 + 126.5000 42.2500 -64.0 + 124.7500 40.5000 -64.0 + 124.7500 36.5000 -64.0 + 122.5000 35.2500 -64.0 + 115.7500 33.5000 -64.0 + 109.5000 33.2500 -64.0 + 107.5000 34.2500 -64.0 + 99.5000 35.2500 -64.0 + 97.5000 38.2500 -64.0 + 95.5000 39.2500 -64.0 + 93.7500 38.5000 -64.0 + 94.5000 37.7500 -64.0 + 95.7500 32.5000 -64.0 +} -64.0 +{ -64.0 + 80.2500 48.5000 -64.0 + 79.2500 49.5000 -64.0 + 83.2500 50.5000 -64.0 + 84.5000 49.7500 -64.0 +} -64.0 +{ -64.0 + 85.2500 50.5000 -64.0 + 86.2500 51.5000 -64.0 + 86.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 50.5000 -64.0 + 137.2500 54.5000 -64.0 + 136.5000 56.2500 -64.0 + 136.2500 61.5000 -64.0 + 141.2500 63.5000 -64.0 + 140.2500 66.5000 -64.0 + 141.5000 66.7500 -64.0 + 142.7500 64.5000 -64.0 + 140.7500 60.5000 -64.0 + 146.5000 57.7500 -64.0 + 148.5000 57.7500 -64.0 + 149.7500 56.5000 -64.0 + 143.7500 52.5000 -64.0 + 141.5000 53.2500 -64.0 +} -64.0 +{ -64.0 + 95.2500 53.5000 -64.0 + 92.5000 55.2500 -64.0 + 90.2500 61.5000 -64.0 + 91.5000 60.7500 -64.0 + 91.7500 58.5000 -64.0 + 93.5000 56.7500 -64.0 + 97.5000 57.7500 -64.0 + 97.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 79.2500 56.5000 -64.0 + 79.2500 62.5000 -64.0 + 77.2500 66.5000 -64.0 + 78.5000 65.7500 -64.0 + 79.5000 66.7500 -64.0 + 79.7500 63.5000 -64.0 + 81.5000 61.7500 -64.0 + 80.7500 60.5000 -64.0 + 81.5000 58.7500 -64.0 +} -64.0 +{ -64.0 + 83.2500 58.5000 -64.0 + 82.2500 60.5000 -64.0 + 83.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 58.5000 -64.0 + 109.5000 58.7500 -64.0 + 113.2500 61.5000 -64.0 + 112.5000 62.2500 -64.0 + 100.5000 62.2500 -64.0 + 94.5000 65.2500 -64.0 + 92.5000 65.2500 -64.0 + 90.5000 66.2500 -64.0 + 87.5000 66.2500 -64.0 + 87.2500 67.5000 -64.0 + 97.5000 67.7500 -64.0 + 99.5000 66.7500 -64.0 + 104.5000 66.7500 -64.0 + 106.5000 65.7500 -64.0 + 109.5000 65.7500 -64.0 + 111.5000 64.7500 -64.0 + 113.5000 64.7500 -64.0 + 115.5000 63.7500 -64.0 + 120.5000 63.7500 -64.0 + 120.7500 62.5000 -64.0 + 119.5000 62.2500 -64.0 + 114.5000 60.2500 -64.0 + 110.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 65.5000 -64.0 + 128.2500 66.5000 -64.0 + 129.5000 66.7500 -64.0 +} -64.0 +{ -64.0 + 133.2500 65.5000 -64.0 + 133.2500 67.5000 -64.0 + 133.7500 66.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 66.5000 -64.0 + 63.5000 67.2500 -64.0 + 59.5000 67.2500 -64.0 + 56.5000 68.2500 -64.0 + 54.7500 67.5000 -64.0 + 53.2500 68.5000 -64.0 + 55.5000 68.7500 -64.0 + 57.2500 69.5000 -64.0 + 62.5000 69.7500 -64.0 + 69.5000 70.7500 -64.0 + 71.2500 72.5000 -64.0 + 71.2500 74.5000 -64.0 + 74.5000 74.7500 -64.0 + 73.5000 74.2500 -64.0 + 71.7500 71.5000 -64.0 + 72.5000 70.7500 -64.0 + 74.7500 70.5000 -64.0 + 72.5000 70.2500 -64.0 + 68.7500 66.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 69.5000 -64.0 + 126.2500 70.5000 -64.0 + 127.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 70.5000 -64.0 + 142.2500 71.5000 -64.0 + 148.5000 71.7500 -64.0 + 150.5000 72.7500 -64.0 + 152.5000 71.7500 -64.0 + 156.7500 71.5000 -64.0 + 152.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 157.2500 70.5000 -64.0 + 157.5000 70.7500 -64.0 + 159.5000 71.7500 -64.0 + 159.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 71.5000 -64.0 + 115.5000 72.2500 -64.0 + 107.5000 72.2500 -64.0 + 105.5000 73.2500 -64.0 + 90.5000 73.2500 -64.0 + 90.2500 75.5000 -64.0 + 88.5000 77.2500 -64.0 + 85.5000 75.2500 -64.0 + 84.2500 79.5000 -64.0 + 82.5000 80.2500 -64.0 + 80.5000 79.2500 -64.0 + 80.2500 82.5000 -64.0 + 79.5000 84.2500 -64.0 + 77.5000 84.2500 -64.0 + 70.5000 90.2500 -64.0 + 68.2500 91.5000 -64.0 + 67.2500 93.5000 -64.0 + 69.5000 92.7500 -64.0 + 74.5000 88.7500 -64.0 + 76.5000 88.7500 -64.0 + 77.5000 90.7500 -64.0 + 78.7500 86.5000 -64.0 + 80.5000 85.7500 -64.0 + 80.7500 84.5000 -64.0 + 83.5000 81.7500 -64.0 + 86.5000 81.7500 -64.0 + 88.5000 80.7500 -64.0 + 87.7500 79.5000 -64.0 + 88.5000 77.7500 -64.0 + 90.2500 78.5000 -64.0 + 94.5000 78.7500 -64.0 + 96.5000 77.7500 -64.0 + 112.5000 77.7500 -64.0 + 114.2500 78.5000 -64.0 + 115.5000 80.7500 -64.0 + 117.5000 81.7500 -64.0 + 121.5000 79.7500 -64.0 + 122.5000 80.7500 -64.0 + 126.5000 78.7500 -64.0 + 127.2500 79.5000 -64.0 + 126.2500 81.5000 -64.0 + 128.2500 85.5000 -64.0 + 128.2500 87.5000 -64.0 + 127.5000 89.2500 -64.0 + 128.5000 89.7500 -64.0 + 128.7500 87.5000 -64.0 + 130.5000 85.7500 -64.0 + 132.5000 85.7500 -64.0 + 133.5000 83.7500 -64.0 + 134.2500 84.5000 -64.0 + 135.2500 86.5000 -64.0 + 137.5000 88.7500 -64.0 + 139.5000 89.7500 -64.0 + 143.2500 91.5000 -64.0 + 143.7500 90.5000 -64.0 + 142.5000 90.2500 -64.0 + 139.7500 87.5000 -64.0 + 139.7500 82.5000 -64.0 + 138.7500 79.5000 -64.0 + 137.5000 81.2500 -64.0 + 135.7500 80.5000 -64.0 + 133.5000 80.2500 -64.0 + 131.7500 78.5000 -64.0 + 132.5000 76.7500 -64.0 + 136.5000 74.7500 -64.0 + 133.5000 73.2500 -64.0 + 131.5000 74.2500 -64.0 + 129.5000 74.2500 -64.0 + 126.5000 73.2500 -64.0 + 124.7500 72.5000 -64.0 + 125.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 73.5000 -64.0 + 141.2500 76.5000 -64.0 + 142.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 77.5000 -64.0 + 66.5000 79.2500 -64.0 + 64.5000 79.2500 -64.0 + 65.2500 80.5000 -64.0 + 65.2500 83.5000 -64.0 + 63.2500 90.5000 -64.0 + 67.7500 81.5000 -64.0 + 71.5000 78.7500 -64.0 + 70.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 76.2500 79.5000 -64.0 + 75.5000 81.2500 -64.0 + 76.2500 82.5000 -64.0 + 77.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 147.2500 79.5000 -64.0 + 146.5000 80.2500 -64.0 + 148.2500 82.5000 -64.0 + 150.2500 86.5000 -64.0 + 150.2500 89.5000 -64.0 + 151.2500 91.5000 -64.0 + 151.2500 93.5000 -64.0 + 152.2500 95.5000 -64.0 + 152.2500 98.5000 -64.0 + 151.5000 100.2500 -64.0 + 150.5000 99.2500 -64.0 + 150.2500 101.5000 -64.0 + 151.2500 103.5000 -64.0 + 151.2500 107.5000 -64.0 + 153.2500 111.5000 -64.0 + 155.5000 111.7500 -64.0 + 155.7500 110.5000 -64.0 + 154.5000 111.2500 -64.0 + 152.7500 109.5000 -64.0 + 152.7500 107.5000 -64.0 + 153.5000 105.7500 -64.0 + 154.2500 107.5000 -64.0 + 155.5000 107.7500 -64.0 + 155.7500 105.5000 -64.0 + 153.7500 101.5000 -64.0 + 153.7500 97.5000 -64.0 + 152.7500 95.5000 -64.0 + 152.7500 90.5000 -64.0 + 150.7500 86.5000 -64.0 + 150.7500 81.5000 -64.0 + 152.5000 80.7500 -64.0 + 151.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 61.2500 93.5000 -64.0 + 58.2500 100.5000 -64.0 + 57.2500 105.5000 -64.0 + 58.2500 107.5000 -64.0 + 59.7500 106.5000 -64.0 + 64.5000 97.7500 -64.0 + 63.5000 97.2500 -64.0 + 61.5000 99.2500 -64.0 + 60.7500 97.5000 -64.0 + 61.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 112.5000 -64.0 + 116.5000 113.2500 -64.0 + 106.5000 113.2500 -64.0 + 100.5000 116.2500 -64.0 + 96.5000 116.2500 -64.0 + 94.5000 118.2500 -64.0 + 94.2500 123.5000 -64.0 + 95.2500 126.5000 -64.0 + 93.5000 127.2500 -64.0 + 91.7500 125.5000 -64.0 + 91.7500 122.5000 -64.0 + 90.7500 119.5000 -64.0 + 87.7500 115.5000 -64.0 + 85.5000 115.2500 -64.0 + 83.2500 121.5000 -64.0 + 84.2500 123.5000 -64.0 + 84.2500 128.5000 -64.0 + 86.2500 130.5000 -64.0 + 94.5000 130.7500 -64.0 + 96.5000 128.7500 -64.0 + 98.2500 129.5000 -64.0 + 99.7500 129.5000 -64.0 + 100.7500 127.5000 -64.0 + 103.5000 123.7500 -64.0 + 105.2500 124.5000 -64.0 + 108.5000 124.7500 -64.0 + 114.5000 121.7500 -64.0 + 117.5000 121.7500 -64.0 + 121.2500 124.5000 -64.0 + 124.5000 124.7500 -64.0 + 124.7500 117.5000 -64.0 + 119.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 120.5000 -64.0 + 129.5000 124.2500 -64.0 + 129.2500 126.5000 -64.0 + 127.5000 128.2500 -64.0 + 127.2500 130.5000 -64.0 + 129.5000 130.7500 -64.0 + 132.5000 125.7500 -64.0 + 132.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 140.5000 -64.0 + 88.5000 141.2500 -64.0 + 89.5000 143.7500 -64.0 + 93.2500 146.5000 -64.0 + 96.5000 146.7500 -64.0 + 100.5000 149.7500 -64.0 + 105.5000 150.7500 -64.0 + 108.5000 151.7500 -64.0 + 116.5000 147.7500 -64.0 + 120.7500 145.5000 -64.0 + 121.7500 143.5000 -64.0 + 120.5000 144.2500 -64.0 + 119.7500 143.5000 -64.0 + 112.5000 143.2500 -64.0 + 110.5000 144.2500 -64.0 + 106.5000 144.2500 -64.0 + 99.5000 143.2500 -64.0 + 97.7500 142.5000 -64.0 + 92.5000 142.2500 -64.0 + 90.7500 140.5000 -64.0 +} -64.0 +{ -64.0 + 108.7500 34.5000 -64.0 + 109.5000 33.7500 -64.0 + 111.2500 35.5000 -64.0 + 109.5000 37.2500 -64.0 + 108.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 111.7500 35.5000 -64.0 + 112.5000 34.7500 -64.0 + 114.5000 34.7500 -64.0 + 115.2500 36.5000 -64.0 + 113.5000 37.2500 -64.0 +} -64.0 +{ -64.0 + 92.7500 40.5000 -64.0 + 93.5000 39.7500 -64.0 + 94.2500 40.5000 -64.0 + 93.5000 42.2500 -64.0 +} -64.0 +{ -64.0 + 96.7500 41.5000 -64.0 + 98.5000 40.7500 -64.0 + 99.2500 42.5000 -64.0 + 97.5000 43.2500 -64.0 +} -64.0 +{ -64.0 + 99.7500 43.5000 -64.0 + 100.5000 42.7500 -64.0 + 101.2500 43.5000 -64.0 + 100.5000 44.2500 -64.0 +} -64.0 +{ -64.0 + 136.7500 59.5000 -64.0 + 137.5000 58.7500 -64.0 + 138.2500 59.5000 -64.0 + 137.5000 60.2500 -64.0 +} -64.0 +{ -64.0 + 111.7500 73.5000 -64.0 + 112.5000 72.7500 -64.0 + 113.2500 73.5000 -64.0 + 121.5000 73.7500 -64.0 + 130.5000 74.7500 -64.0 + 132.2500 75.5000 -64.0 + 131.5000 76.2500 -64.0 + 107.5000 76.2500 -64.0 + 105.7500 75.5000 -64.0 + 107.5000 74.7500 -64.0 + 109.5000 73.7500 -64.0 +} -64.0 +{ -64.0 + 90.7500 76.5000 -64.0 + 91.5000 75.7500 -64.0 + 92.2500 76.5000 -64.0 + 91.5000 77.2500 -64.0 +} -64.0 +{ -64.0 + 69.5000 77.7500 -64.0 + 70.2500 78.5000 -64.0 + 68.5000 80.2500 -64.0 + 67.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 136.7500 83.5000 -64.0 + 137.5000 82.7500 -64.0 + 138.2500 83.5000 -64.0 + 137.5000 84.2500 -64.0 +} -64.0 +{ -64.0 + 59.7500 100.5000 -64.0 + 60.5000 99.7500 -64.0 + 61.2500 100.5000 -64.0 + 60.5000 101.2500 -64.0 +} -64.0 +{ -64.0 + 104.7500 116.5000 -64.0 + 106.5000 115.7500 -64.0 + 111.5000 116.7500 -64.0 + 112.2500 118.5000 -64.0 + 111.2500 121.5000 -64.0 + 108.5000 123.2500 -64.0 + 101.7500 119.5000 -64.0 + 102.5000 117.7500 -64.0 +} -64.0 +v 233 z -166.000000 -64.0 +{ -64.0 + 105.2500 34.5000 -64.0 + 102.5000 37.2500 -64.0 + 100.5000 35.2500 -64.0 + 98.5000 36.2500 -64.0 + 98.2500 40.5000 -64.0 + 100.2500 42.5000 -64.0 + 102.5000 42.7500 -64.0 + 103.5000 40.7500 -64.0 + 106.5000 40.7500 -64.0 + 108.2500 41.5000 -64.0 + 111.5000 38.7500 -64.0 + 112.2500 40.5000 -64.0 + 118.5000 40.7500 -64.0 + 119.2500 42.5000 -64.0 + 121.2500 43.5000 -64.0 + 121.2500 45.5000 -64.0 + 122.2500 47.5000 -64.0 + 125.7500 47.5000 -64.0 + 123.5000 47.2500 -64.0 + 122.7500 45.5000 -64.0 + 126.5000 42.7500 -64.0 + 124.7500 41.5000 -64.0 + 125.5000 40.7500 -64.0 + 125.7500 37.5000 -64.0 + 122.7500 36.5000 -64.0 + 121.5000 37.2500 -64.0 + 118.7500 34.5000 -64.0 + 116.5000 35.2500 -64.0 + 113.5000 34.2500 -64.0 + 111.5000 35.2500 -64.0 + 110.5000 34.2500 -64.0 + 108.5000 35.2500 -64.0 +} -64.0 +{ -64.0 + 87.2500 38.5000 -64.0 + 91.2500 41.5000 -64.0 + 91.7500 40.5000 -64.0 + 93.5000 39.7500 -64.0 + 90.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 43.5000 -64.0 + 87.2500 44.5000 -64.0 + 86.5000 46.2500 -64.0 + 87.2500 47.5000 -64.0 + 88.5000 45.7500 -64.0 + 90.5000 44.7500 -64.0 + 89.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 44.5000 -64.0 + 95.2500 45.5000 -64.0 + 93.5000 46.2500 -64.0 + 95.2500 48.5000 -64.0 + 94.5000 52.2500 -64.0 + 92.5000 52.2500 -64.0 + 95.2500 53.5000 -64.0 + 96.5000 52.7500 -64.0 + 95.7500 50.5000 -64.0 + 96.5000 48.7500 -64.0 + 98.5000 48.7500 -64.0 + 99.5000 45.7500 -64.0 + 110.5000 51.7500 -64.0 + 111.2500 53.5000 -64.0 + 120.5000 56.7500 -64.0 + 121.5000 56.2500 -64.0 + 106.5000 48.2500 -64.0 + 100.5000 44.2500 -64.0 + 97.5000 45.2500 -64.0 +} -64.0 +{ -64.0 + 129.2500 44.5000 -64.0 + 129.2500 46.5000 -64.0 + 130.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 60.5000 -64.0 + 136.5000 61.2500 -64.0 + 137.5000 63.7500 -64.0 + 139.5000 64.7500 -64.0 + 140.2500 66.5000 -64.0 + 141.2500 68.5000 -64.0 + 143.5000 68.7500 -64.0 + 143.7500 67.5000 -64.0 + 141.7500 65.5000 -64.0 + 143.7500 64.5000 -64.0 + 142.7500 62.5000 -64.0 + 138.5000 62.2500 -64.0 +} -64.0 +{ -64.0 + 129.2500 63.5000 -64.0 + 127.2500 66.5000 -64.0 + 128.2500 68.5000 -64.0 + 128.2500 72.5000 -64.0 + 129.5000 72.7500 -64.0 + 132.2500 76.5000 -64.0 + 132.2500 78.5000 -64.0 + 134.2500 82.5000 -64.0 + 134.2500 84.5000 -64.0 + 136.2500 86.5000 -64.0 + 146.2500 93.5000 -64.0 + 146.7500 92.5000 -64.0 + 142.7500 88.5000 -64.0 + 141.7500 79.5000 -64.0 + 139.5000 76.2500 -64.0 + 135.7500 74.5000 -64.0 + 135.7500 71.5000 -64.0 + 134.5000 72.2500 -64.0 + 131.5000 72.2500 -64.0 + 128.7500 68.5000 -64.0 + 128.7500 66.5000 -64.0 + 129.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 68.5000 -64.0 + 80.5000 70.2500 -64.0 + 78.5000 70.2500 -64.0 + 83.2500 73.5000 -64.0 + 84.2500 75.5000 -64.0 + 83.5000 77.2500 -64.0 + 79.5000 77.2500 -64.0 + 77.5000 75.2500 -64.0 + 77.2500 77.5000 -64.0 + 75.5000 79.2500 -64.0 + 72.7500 77.5000 -64.0 + 72.7500 75.5000 -64.0 + 71.5000 75.2500 -64.0 + 67.5000 77.2500 -64.0 + 67.2500 79.5000 -64.0 + 64.2500 85.5000 -64.0 + 63.2500 90.5000 -64.0 + 58.2500 100.5000 -64.0 + 57.2500 105.5000 -64.0 + 58.2500 107.5000 -64.0 + 60.7500 106.5000 -64.0 + 67.5000 93.7500 -64.0 + 71.5000 90.7500 -64.0 + 79.5000 86.7500 -64.0 + 81.7500 84.5000 -64.0 + 86.5000 75.7500 -64.0 + 86.7500 72.5000 -64.0 + 83.5000 72.2500 -64.0 + 82.7500 70.5000 -64.0 + 85.7500 68.5000 -64.0 +} -64.0 +{ -64.0 + 74.2500 69.5000 -64.0 + 73.5000 70.2500 -64.0 + 74.2500 71.5000 -64.0 + 74.2500 73.5000 -64.0 + 74.7500 72.5000 -64.0 + 75.5000 70.7500 -64.0 +} -64.0 +{ -64.0 + 147.2500 77.5000 -64.0 + 143.2500 79.5000 -64.0 + 147.2500 80.5000 -64.0 + 150.2500 86.5000 -64.0 + 150.2500 89.5000 -64.0 + 151.2500 91.5000 -64.0 + 151.2500 96.5000 -64.0 + 150.5000 98.2500 -64.0 + 149.5000 97.2500 -64.0 + 149.2500 99.5000 -64.0 + 150.2500 101.5000 -64.0 + 150.2500 105.5000 -64.0 + 152.2500 111.5000 -64.0 + 155.5000 111.7500 -64.0 + 155.7500 107.5000 -64.0 + 153.7500 101.5000 -64.0 + 153.7500 96.5000 -64.0 + 152.7500 94.5000 -64.0 + 151.7500 85.5000 -64.0 + 149.7500 78.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 111.5000 -64.0 + 113.5000 114.2500 -64.0 + 112.7500 113.5000 -64.0 + 106.5000 113.2500 -64.0 + 100.5000 116.2500 -64.0 + 92.5000 115.2500 -64.0 + 89.2500 116.5000 -64.0 + 91.2500 120.5000 -64.0 + 92.2500 127.5000 -64.0 + 90.5000 128.2500 -64.0 + 85.7500 118.5000 -64.0 + 84.5000 118.2500 -64.0 + 82.5000 120.2500 -64.0 + 82.2500 124.5000 -64.0 + 85.2500 130.5000 -64.0 + 92.5000 130.7500 -64.0 + 94.2500 132.5000 -64.0 + 97.5000 132.7500 -64.0 + 100.7500 127.5000 -64.0 + 103.5000 124.7500 -64.0 + 107.5000 124.7500 -64.0 + 109.5000 123.7500 -64.0 + 117.5000 122.7500 -64.0 + 125.5000 127.7500 -64.0 + 131.5000 124.7500 -64.0 + 131.7500 121.5000 -64.0 + 130.7500 119.5000 -64.0 + 131.5000 117.7500 -64.0 + 130.5000 116.2500 -64.0 + 122.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 149.5000 -64.0 + 114.2500 150.5000 -64.0 + 115.2500 153.5000 -64.0 + 115.7500 152.5000 -64.0 +} -64.0 +{ -64.0 + 134.7500 77.5000 -64.0 + 135.5000 76.7500 -64.0 + 136.2500 77.5000 -64.0 + 135.5000 78.2500 -64.0 +} -64.0 +{ -64.0 + 70.5000 78.7500 -64.0 + 72.5000 78.7500 -64.0 + 77.2500 83.5000 -64.0 + 76.5000 85.2500 -64.0 + 72.5000 88.2500 -64.0 + 70.5000 89.2500 -64.0 + 63.5000 97.2500 -64.0 + 62.7500 95.5000 -64.0 + 63.7500 90.5000 -64.0 + 66.7500 86.5000 -64.0 + 67.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 58.7500 104.5000 -64.0 + 59.5000 103.7500 -64.0 + 60.2500 104.5000 -64.0 + 59.5000 105.2500 -64.0 +} -64.0 +{ -64.0 + 152.7500 106.5000 -64.0 + 153.5000 105.7500 -64.0 + 155.2500 109.5000 -64.0 + 154.5000 111.2500 -64.0 + 152.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 120.7500 112.5000 -64.0 + 121.5000 111.7500 -64.0 + 122.2500 112.5000 -64.0 + 121.2500 114.5000 -64.0 + 122.2500 117.5000 -64.0 + 120.5000 118.2500 -64.0 + 118.5000 119.2500 -64.0 + 116.5000 119.2500 -64.0 + 108.5000 123.2500 -64.0 + 104.5000 123.2500 -64.0 + 102.7500 122.5000 -64.0 + 96.5000 122.2500 -64.0 + 94.7500 120.5000 -64.0 + 96.5000 117.7500 -64.0 + 101.7500 117.5000 -64.0 + 108.5000 114.7500 -64.0 + 110.2500 115.5000 -64.0 + 116.5000 115.7500 -64.0 + 118.5000 113.7500 -64.0 +} -64.0 +v 207 z -168.000000 -64.0 +{ -64.0 + 105.2500 35.5000 -64.0 + 104.2500 37.5000 -64.0 + 102.5000 38.2500 -64.0 + 100.5000 36.2500 -64.0 + 98.5000 37.2500 -64.0 + 97.2500 45.5000 -64.0 + 95.5000 46.2500 -64.0 + 93.7500 44.5000 -64.0 + 92.5000 46.2500 -64.0 + 89.5000 46.2500 -64.0 + 89.2500 49.5000 -64.0 + 94.5000 56.7500 -64.0 + 95.7500 52.5000 -64.0 + 99.7500 46.5000 -64.0 + 106.5000 42.7500 -64.0 + 114.5000 42.7500 -64.0 + 119.5000 44.7500 -64.0 + 123.2500 48.5000 -64.0 + 126.5000 48.7500 -64.0 + 128.5000 46.2500 -64.0 + 126.5000 47.2500 -64.0 + 122.7500 46.5000 -64.0 + 125.5000 43.7500 -64.0 + 128.7500 43.5000 -64.0 + 124.7500 42.5000 -64.0 + 124.7500 38.5000 -64.0 + 120.5000 38.2500 -64.0 + 119.7500 36.5000 -64.0 + 118.5000 36.2500 -64.0 + 116.5000 37.2500 -64.0 + 113.7500 35.5000 -64.0 + 112.5000 36.2500 -64.0 +} -64.0 +{ -64.0 + 92.2500 39.5000 -64.0 + 91.2500 41.5000 -64.0 + 93.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 63.5000 -64.0 + 84.2500 64.5000 -64.0 + 82.2500 68.5000 -64.0 + 75.5000 74.2500 -64.0 + 70.5000 74.2500 -64.0 + 69.2500 75.5000 -64.0 + 64.2500 85.5000 -64.0 + 63.2500 90.5000 -64.0 + 58.5000 101.2500 -64.0 + 58.2500 106.5000 -64.0 + 60.5000 106.7500 -64.0 + 63.5000 103.7500 -64.0 + 63.7500 101.5000 -64.0 + 68.7500 91.5000 -64.0 + 66.5000 92.2500 -64.0 + 66.2500 93.5000 -64.0 + 64.5000 95.2500 -64.0 + 63.7500 93.5000 -64.0 + 64.5000 91.7500 -64.0 + 66.7500 85.5000 -64.0 + 68.7500 80.5000 -64.0 + 71.5000 76.7500 -64.0 + 75.2500 79.5000 -64.0 + 75.2500 82.5000 -64.0 + 76.2500 84.5000 -64.0 + 73.5000 87.2500 -64.0 + 71.5000 88.2500 -64.0 + 69.5000 90.7500 -64.0 + 78.5000 86.7500 -64.0 + 82.7500 82.5000 -64.0 + 86.7500 74.5000 -64.0 + 87.7500 67.5000 -64.0 + 85.2500 72.5000 -64.0 + 84.5000 74.2500 -64.0 + 83.7500 73.5000 -64.0 + 82.7500 71.5000 -64.0 + 83.5000 69.7500 -64.0 + 85.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 63.5000 -64.0 + 129.5000 65.2500 -64.0 + 129.2500 67.5000 -64.0 + 130.2500 69.5000 -64.0 + 130.2500 72.5000 -64.0 + 133.2500 78.5000 -64.0 + 134.2500 83.5000 -64.0 + 136.5000 85.7500 -64.0 + 146.2500 92.5000 -64.0 + 146.7500 91.5000 -64.0 + 142.7500 87.5000 -64.0 + 142.7500 84.5000 -64.0 + 141.7500 82.5000 -64.0 + 142.5000 78.7500 -64.0 + 146.5000 78.7500 -64.0 + 150.2500 86.5000 -64.0 + 151.2500 95.5000 -64.0 + 150.5000 97.2500 -64.0 + 147.7500 93.5000 -64.0 + 147.2500 94.5000 -64.0 + 149.2500 98.5000 -64.0 + 149.2500 101.5000 -64.0 + 151.2500 105.5000 -64.0 + 151.2500 109.5000 -64.0 + 153.5000 111.7500 -64.0 + 155.5000 110.7500 -64.0 + 155.7500 105.5000 -64.0 + 153.7500 101.5000 -64.0 + 153.7500 94.5000 -64.0 + 152.7500 92.5000 -64.0 + 151.7500 83.5000 -64.0 + 150.7500 81.5000 -64.0 + 150.7500 79.5000 -64.0 + 147.7500 75.5000 -64.0 + 143.5000 75.2500 -64.0 + 139.5000 73.2500 -64.0 + 137.7500 69.5000 -64.0 + 136.5000 70.2500 -64.0 + 134.7500 69.5000 -64.0 + 132.5000 71.2500 -64.0 + 131.7500 70.5000 -64.0 + 131.7500 67.5000 -64.0 + 133.5000 65.7500 -64.0 + 136.5000 65.7500 -64.0 + 138.2500 66.5000 -64.0 + 138.5000 68.7500 -64.0 + 138.7500 65.5000 -64.0 + 136.5000 65.2500 -64.0 + 134.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 111.5000 -64.0 + 113.5000 114.2500 -64.0 + 111.7500 113.5000 -64.0 + 107.5000 113.2500 -64.0 + 101.5000 116.2500 -64.0 + 94.5000 116.2500 -64.0 + 91.5000 115.2500 -64.0 + 87.2500 116.5000 -64.0 + 83.5000 123.2500 -64.0 + 83.2500 127.5000 -64.0 + 84.2500 130.5000 -64.0 + 89.5000 135.7500 -64.0 + 94.5000 136.7500 -64.0 + 97.5000 133.7500 -64.0 + 97.7500 131.5000 -64.0 + 100.5000 127.7500 -64.0 + 104.7500 125.5000 -64.0 + 103.7500 123.5000 -64.0 + 101.5000 123.2500 -64.0 + 99.5000 124.2500 -64.0 + 97.5000 124.2500 -64.0 + 97.2500 126.5000 -64.0 + 95.5000 128.2500 -64.0 + 93.7500 127.5000 -64.0 + 93.7500 125.5000 -64.0 + 92.5000 125.2500 -64.0 + 89.7500 122.5000 -64.0 + 93.5000 117.7500 -64.0 + 100.5000 117.7500 -64.0 + 106.5000 114.7500 -64.0 + 110.5000 114.7500 -64.0 + 112.5000 115.7500 -64.0 + 114.5000 114.7500 -64.0 + 116.5000 114.7500 -64.0 + 122.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 113.5000 -64.0 + 131.2500 115.5000 -64.0 + 131.2500 118.5000 -64.0 + 129.5000 120.2500 -64.0 + 129.2500 124.5000 -64.0 + 125.5000 127.2500 -64.0 + 122.7500 123.5000 -64.0 + 123.5000 121.7500 -64.0 + 125.5000 121.7500 -64.0 + 124.7500 120.5000 -64.0 + 119.5000 119.2500 -64.0 + 118.5000 121.2500 -64.0 + 115.5000 121.2500 -64.0 + 113.5000 122.2500 -64.0 + 113.2500 124.5000 -64.0 + 114.5000 123.7500 -64.0 + 118.5000 123.7500 -64.0 + 126.5000 130.7500 -64.0 + 132.5000 122.7500 -64.0 + 132.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 142.5000 -64.0 + 116.5000 143.2500 -64.0 + 113.5000 146.2500 -64.0 + 111.7500 145.5000 -64.0 + 107.5000 145.2500 -64.0 + 107.2500 146.5000 -64.0 + 111.2500 148.5000 -64.0 + 114.2500 154.5000 -64.0 + 116.5000 153.7500 -64.0 + 116.7500 148.5000 -64.0 + 119.5000 144.7500 -64.0 + 119.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 89.7500 47.5000 -64.0 + 91.5000 46.7500 -64.0 + 92.2500 48.5000 -64.0 + 90.5000 49.2500 -64.0 +} -64.0 +{ -64.0 + 59.7500 103.5000 -64.0 + 60.5000 102.7500 -64.0 + 61.2500 104.5000 -64.0 + 59.5000 106.2500 -64.0 + 58.7500 105.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 106.5000 -64.0 + 153.5000 105.7500 -64.0 + 155.2500 108.5000 -64.0 + 154.5000 110.2500 -64.0 + 152.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 86.7500 122.5000 -64.0 + 87.5000 121.7500 -64.0 + 88.2500 122.5000 -64.0 + 87.5000 124.2500 -64.0 +} -64.0 +v 246 z -170.000000 -64.0 +{ -64.0 + 105.2500 36.5000 -64.0 + 104.5000 37.2500 -64.0 + 102.5000 38.2500 -64.0 + 100.7500 37.5000 -64.0 + 98.5000 38.2500 -64.0 + 98.2500 39.5000 -64.0 + 95.5000 42.2500 -64.0 + 93.5000 42.2500 -64.0 + 93.2500 44.5000 -64.0 + 89.5000 48.2500 -64.0 + 88.2500 54.5000 -64.0 + 85.2500 60.5000 -64.0 + 86.5000 60.7500 -64.0 + 87.7500 58.5000 -64.0 + 88.7500 56.5000 -64.0 + 89.5000 54.7500 -64.0 + 91.5000 53.7500 -64.0 + 93.2500 54.5000 -64.0 + 94.2500 56.5000 -64.0 + 91.2500 63.5000 -64.0 + 92.7500 62.5000 -64.0 + 96.5000 55.7500 -64.0 + 96.7500 52.5000 -64.0 + 103.5000 46.7500 -64.0 + 109.5000 43.7500 -64.0 + 112.5000 43.7500 -64.0 + 117.5000 45.7500 -64.0 + 125.2500 52.5000 -64.0 + 128.2500 58.5000 -64.0 + 128.5000 62.7500 -64.0 + 130.5000 59.7500 -64.0 + 132.2500 60.5000 -64.0 + 133.2500 62.5000 -64.0 + 131.5000 64.2500 -64.0 + 129.5000 65.2500 -64.0 + 129.2500 67.5000 -64.0 + 130.2500 69.5000 -64.0 + 130.2500 71.5000 -64.0 + 133.2500 77.5000 -64.0 + 133.2500 79.5000 -64.0 + 134.2500 82.5000 -64.0 + 135.5000 82.7500 -64.0 + 146.2500 92.5000 -64.0 + 149.2500 98.5000 -64.0 + 149.2500 100.5000 -64.0 + 150.2500 102.5000 -64.0 + 150.2500 104.5000 -64.0 + 151.2500 106.5000 -64.0 + 151.5000 109.7500 -64.0 + 153.5000 110.7500 -64.0 + 155.5000 109.7500 -64.0 + 155.7500 105.5000 -64.0 + 154.7500 103.5000 -64.0 + 154.7500 101.5000 -64.0 + 153.7500 99.5000 -64.0 + 153.7500 94.5000 -64.0 + 152.7500 92.5000 -64.0 + 152.7500 87.5000 -64.0 + 151.7500 85.5000 -64.0 + 151.7500 82.5000 -64.0 + 149.7500 76.5000 -64.0 + 146.7500 73.5000 -64.0 + 142.5000 72.2500 -64.0 + 134.7500 63.5000 -64.0 + 134.7500 61.5000 -64.0 + 131.7500 57.5000 -64.0 + 128.7500 51.5000 -64.0 + 126.7500 50.5000 -64.0 + 128.5000 48.7500 -64.0 + 128.5000 45.2500 -64.0 + 126.5000 44.2500 -64.0 + 124.7500 39.5000 -64.0 + 120.5000 39.2500 -64.0 + 119.7500 37.5000 -64.0 + 110.5000 37.2500 -64.0 +} -64.0 +{ -64.0 + 84.2500 62.5000 -64.0 + 83.5000 63.2500 -64.0 + 83.2500 65.5000 -64.0 + 80.5000 68.2500 -64.0 + 76.5000 71.2500 -64.0 + 74.5000 71.2500 -64.0 + 71.5000 72.2500 -64.0 + 69.2500 74.5000 -64.0 + 68.2500 76.5000 -64.0 + 67.5000 78.2500 -64.0 + 65.2500 84.5000 -64.0 + 63.5000 88.2500 -64.0 + 63.2500 90.5000 -64.0 + 62.2500 93.5000 -64.0 + 59.5000 99.2500 -64.0 + 59.2500 101.5000 -64.0 + 58.2500 104.5000 -64.0 + 59.2500 106.5000 -64.0 + 61.7500 106.5000 -64.0 + 69.7500 90.5000 -64.0 + 68.2500 90.5000 -64.0 + 65.5000 94.2500 -64.0 + 64.7500 93.5000 -64.0 + 65.7500 88.5000 -64.0 + 66.7500 85.5000 -64.0 + 69.7500 78.5000 -64.0 + 72.5000 75.7500 -64.0 + 76.5000 73.7500 -64.0 + 77.2500 74.5000 -64.0 + 77.2500 83.5000 -64.0 + 71.5000 88.7500 -64.0 + 76.5000 86.7500 -64.0 + 83.7500 81.5000 -64.0 + 85.7500 77.5000 -64.0 + 86.5000 75.7500 -64.0 + 88.7500 69.5000 -64.0 + 90.7500 64.5000 -64.0 + 89.2500 65.5000 -64.0 + 88.2500 67.5000 -64.0 + 87.5000 69.2500 -64.0 + 85.2500 75.5000 -64.0 + 83.5000 76.2500 -64.0 + 81.7500 74.5000 -64.0 + 80.7500 72.5000 -64.0 + 82.7500 71.5000 -64.0 + 83.7500 66.5000 -64.0 + 84.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 112.5000 -64.0 + 102.5000 116.2500 -64.0 + 103.5000 116.7500 -64.0 + 107.5000 113.7500 -64.0 + 109.5000 113.7500 -64.0 + 111.2500 115.5000 -64.0 + 115.5000 115.7500 -64.0 + 119.5000 113.7500 -64.0 + 122.5000 113.7500 -64.0 + 123.7500 112.5000 -64.0 + 121.5000 112.2500 -64.0 + 117.5000 114.2500 -64.0 + 112.5000 114.2500 -64.0 + 108.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 115.5000 -64.0 + 88.5000 116.2500 -64.0 + 87.2500 118.5000 -64.0 + 100.5000 118.7500 -64.0 + 101.7500 117.5000 -64.0 + 94.5000 117.2500 -64.0 +} -64.0 +{ -64.0 + 131.2500 115.5000 -64.0 + 130.2500 117.5000 -64.0 + 130.7500 118.5000 -64.0 + 131.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 119.5000 -64.0 + 85.2500 120.5000 -64.0 + 84.2500 125.5000 -64.0 + 85.2500 128.5000 -64.0 + 86.5000 128.7500 -64.0 + 86.7500 125.5000 -64.0 + 85.7500 123.5000 -64.0 + 86.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 120.5000 -64.0 + 120.5000 121.2500 -64.0 + 118.5000 121.2500 -64.0 + 112.5000 124.2500 -64.0 + 110.7500 123.5000 -64.0 + 108.5000 123.2500 -64.0 + 108.2500 124.5000 -64.0 + 113.5000 124.7500 -64.0 + 115.5000 123.7500 -64.0 + 117.5000 123.7500 -64.0 + 121.5000 125.7500 -64.0 + 122.2500 127.5000 -64.0 + 124.2500 131.5000 -64.0 + 124.2500 134.5000 -64.0 + 126.5000 134.7500 -64.0 + 128.5000 131.7500 -64.0 + 128.7500 129.5000 -64.0 + 130.7500 125.5000 -64.0 + 129.7500 123.5000 -64.0 + 127.5000 123.2500 -64.0 + 129.2500 124.5000 -64.0 + 129.2500 127.5000 -64.0 + 126.5000 129.2500 -64.0 + 125.7500 128.5000 -64.0 + 122.7500 123.5000 -64.0 + 123.5000 122.7500 -64.0 + 126.7500 122.5000 -64.0 + 124.5000 122.2500 -64.0 + 122.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 124.5000 -64.0 + 93.2500 126.5000 -64.0 + 87.5000 131.2500 -64.0 + 89.2500 134.5000 -64.0 + 95.5000 138.7500 -64.0 + 97.5000 137.7500 -64.0 + 97.7500 131.5000 -64.0 + 100.7500 127.5000 -64.0 + 105.5000 125.7500 -64.0 + 103.7500 124.5000 -64.0 + 100.5000 124.2500 -64.0 + 96.5000 127.2500 -64.0 + 94.5000 134.2500 -64.0 + 92.5000 134.2500 -64.0 + 90.7500 132.5000 -64.0 + 90.7500 130.5000 -64.0 + 94.5000 127.7500 -64.0 + 94.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 139.5000 -64.0 + 120.5000 140.2500 -64.0 + 118.5000 141.2500 -64.0 + 114.5000 144.2500 -64.0 + 105.5000 144.2500 -64.0 + 102.5000 143.2500 -64.0 + 103.5000 144.7500 -64.0 + 109.5000 147.7500 -64.0 + 111.5000 145.7500 -64.0 + 114.5000 145.7500 -64.0 + 116.5000 144.7500 -64.0 + 117.2500 145.5000 -64.0 + 117.5000 148.7500 -64.0 + 117.7500 146.5000 -64.0 + 121.7500 141.5000 -64.0 + 122.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 154.5000 -64.0 + 113.2500 156.5000 -64.0 + 113.7500 155.5000 -64.0 +} -64.0 +{ -64.0 + 140.7500 75.5000 -64.0 + 142.5000 74.7500 -64.0 + 146.2500 77.5000 -64.0 + 149.2500 82.5000 -64.0 + 149.2500 84.5000 -64.0 + 150.2500 86.5000 -64.0 + 151.2500 94.5000 -64.0 + 150.5000 96.2500 -64.0 + 141.7500 84.5000 -64.0 + 141.7500 82.5000 -64.0 + 139.7500 81.5000 -64.0 + 139.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 134.7500 76.5000 -64.0 + 136.5000 75.7500 -64.0 + 138.2500 77.5000 -64.0 + 137.5000 78.2500 -64.0 + 135.5000 78.2500 -64.0 +} -64.0 +{ -64.0 + 60.5000 102.7500 -64.0 + 62.2500 103.5000 -64.0 + 60.5000 106.2500 -64.0 + 58.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 105.5000 -64.0 + 153.5000 104.7500 -64.0 + 155.2500 107.5000 -64.0 + 154.5000 109.2500 -64.0 + 152.7500 108.5000 -64.0 +} -64.0 +v 234 z -172.000000 -64.0 +{ -64.0 + 104.2500 38.5000 -64.0 + 103.5000 40.2500 -64.0 + 98.5000 39.2500 -64.0 + 98.2500 40.5000 -64.0 + 94.5000 43.2500 -64.0 + 90.2500 48.5000 -64.0 + 83.2500 62.5000 -64.0 + 76.5000 69.2500 -64.0 + 74.5000 69.2500 -64.0 + 69.5000 73.2500 -64.0 + 59.5000 100.2500 -64.0 + 59.2500 105.5000 -64.0 + 62.5000 105.7500 -64.0 + 66.7500 98.5000 -64.0 + 67.7500 93.5000 -64.0 + 70.5000 89.7500 -64.0 + 78.5000 84.7500 -64.0 + 82.5000 80.7500 -64.0 + 84.5000 79.7500 -64.0 + 91.7500 65.5000 -64.0 + 100.5000 50.7500 -64.0 + 104.5000 47.7500 -64.0 + 110.5000 44.7500 -64.0 + 115.5000 45.7500 -64.0 + 122.2500 51.5000 -64.0 + 127.2500 59.5000 -64.0 + 127.2500 61.5000 -64.0 + 128.5000 62.7500 -64.0 + 128.7500 60.5000 -64.0 + 127.7500 58.5000 -64.0 + 129.5000 56.7500 -64.0 + 131.2500 57.5000 -64.0 + 134.2500 62.5000 -64.0 + 133.2500 65.5000 -64.0 + 131.5000 66.2500 -64.0 + 129.5000 65.2500 -64.0 + 129.2500 67.5000 -64.0 + 130.2500 69.5000 -64.0 + 130.2500 71.5000 -64.0 + 133.2500 77.5000 -64.0 + 133.2500 79.5000 -64.0 + 139.2500 83.5000 -64.0 + 140.2500 85.5000 -64.0 + 145.2500 90.5000 -64.0 + 149.2500 97.5000 -64.0 + 149.2500 99.5000 -64.0 + 152.2500 109.5000 -64.0 + 154.5000 109.7500 -64.0 + 156.7500 106.5000 -64.0 + 155.7500 104.5000 -64.0 + 155.7500 102.5000 -64.0 + 153.7500 98.5000 -64.0 + 152.7500 86.5000 -64.0 + 148.7500 73.5000 -64.0 + 144.5000 71.2500 -64.0 + 138.5000 65.2500 -64.0 + 128.7500 50.5000 -64.0 + 128.7500 46.5000 -64.0 + 125.7500 44.5000 -64.0 + 125.7500 42.5000 -64.0 + 123.5000 40.2500 -64.0 + 120.5000 41.2500 -64.0 + 118.5000 38.2500 -64.0 + 116.5000 39.2500 -64.0 + 114.5000 38.2500 -64.0 + 112.5000 39.2500 -64.0 +} -64.0 +{ -64.0 + 106.2500 112.5000 -64.0 + 104.5000 113.2500 -64.0 + 103.5000 115.2500 -64.0 + 99.5000 118.2500 -64.0 + 96.5000 118.2500 -64.0 + 94.5000 119.2500 -64.0 + 89.5000 118.2500 -64.0 + 88.2500 119.5000 -64.0 + 92.5000 119.7500 -64.0 + 94.5000 121.7500 -64.0 + 100.5000 119.7500 -64.0 + 106.5000 113.7500 -64.0 + 109.5000 113.7500 -64.0 + 111.2500 115.5000 -64.0 + 115.2500 116.5000 -64.0 + 118.7500 115.5000 -64.0 + 113.5000 115.2500 -64.0 + 109.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 113.5000 -64.0 + 121.5000 114.2500 -64.0 + 119.5000 114.2500 -64.0 + 122.5000 115.7500 -64.0 + 125.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 116.5000 -64.0 + 130.2500 117.5000 -64.0 + 131.5000 117.7500 -64.0 + 131.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 118.5000 -64.0 + 119.2500 120.5000 -64.0 + 114.5000 124.2500 -64.0 + 111.5000 124.2500 -64.0 + 109.7500 123.5000 -64.0 + 106.5000 125.2500 -64.0 + 98.5000 125.2500 -64.0 + 95.5000 124.2500 -64.0 + 94.2500 127.5000 -64.0 + 90.2500 131.5000 -64.0 + 89.2500 133.5000 -64.0 + 90.2500 135.5000 -64.0 + 92.5000 130.7500 -64.0 + 94.5000 129.7500 -64.0 + 96.2500 130.5000 -64.0 + 96.2500 135.5000 -64.0 + 95.5000 137.2500 -64.0 + 93.5000 138.2500 -64.0 + 91.7500 136.5000 -64.0 + 91.2500 137.5000 -64.0 + 101.2500 145.5000 -64.0 + 103.5000 145.7500 -64.0 + 107.2500 148.5000 -64.0 + 108.7500 148.5000 -64.0 + 107.7500 146.5000 -64.0 + 108.5000 145.7500 -64.0 + 112.5000 145.7500 -64.0 + 116.5000 143.7500 -64.0 + 118.2500 144.5000 -64.0 + 118.5000 148.7500 -64.0 + 118.7500 145.5000 -64.0 + 123.5000 140.7500 -64.0 + 129.5000 132.7500 -64.0 + 129.7500 130.5000 -64.0 + 126.5000 131.2500 -64.0 + 124.7500 128.5000 -64.0 + 124.7500 125.5000 -64.0 + 126.5000 124.7500 -64.0 + 130.5000 126.7500 -64.0 + 130.7500 125.5000 -64.0 + 128.7500 123.5000 -64.0 + 125.5000 123.2500 -64.0 + 121.7500 121.5000 -64.0 + 121.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 123.5000 -64.0 + 85.2500 125.5000 -64.0 + 86.5000 125.7500 -64.0 + 86.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 160.5000 -64.0 + 113.2500 161.5000 -64.0 + 114.7500 160.5000 -64.0 +} -64.0 +{ -64.0 + 98.7500 46.5000 -64.0 + 99.5000 45.7500 -64.0 + 100.2500 46.5000 -64.0 + 99.5000 47.2500 -64.0 +} -64.0 +{ -64.0 + 93.7500 49.5000 -64.0 + 94.5000 48.7500 -64.0 + 98.2500 50.5000 -64.0 + 96.2500 53.5000 -64.0 + 95.2500 55.5000 -64.0 + 93.2500 60.5000 -64.0 + 87.5000 67.2500 -64.0 + 87.2500 70.5000 -64.0 + 86.2500 73.5000 -64.0 + 78.5000 81.2500 -64.0 + 68.5000 90.2500 -64.0 + 66.5000 90.2500 -64.0 + 65.7500 88.5000 -64.0 + 66.7500 85.5000 -64.0 + 69.7500 78.5000 -64.0 + 72.5000 74.7500 -64.0 + 76.5000 72.7500 -64.0 + 76.7500 71.5000 -64.0 + 80.5000 68.7500 -64.0 + 82.5000 68.7500 -64.0 + 82.7500 67.5000 -64.0 + 86.7500 59.5000 -64.0 + 89.7500 57.5000 -64.0 + 88.7500 55.5000 -64.0 + 90.5000 53.7500 -64.0 + 94.5000 53.7500 -64.0 + 94.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 124.7500 51.5000 -64.0 + 126.5000 50.7500 -64.0 + 128.2500 51.5000 -64.0 + 128.2500 53.5000 -64.0 + 126.5000 54.2500 -64.0 +} -64.0 +{ -64.0 + 140.7500 75.5000 -64.0 + 141.5000 74.7500 -64.0 + 145.5000 74.7500 -64.0 + 147.2500 76.5000 -64.0 + 147.2500 78.5000 -64.0 + 149.2500 82.5000 -64.0 + 149.2500 85.5000 -64.0 + 150.2500 87.5000 -64.0 + 150.2500 90.5000 -64.0 + 151.2500 92.5000 -64.0 + 150.5000 94.2500 -64.0 + 148.7500 92.5000 -64.0 + 147.7500 90.5000 -64.0 + 145.5000 88.2500 -64.0 + 140.7500 81.5000 -64.0 + 137.7500 77.5000 -64.0 + 138.5000 76.7500 -64.0 +} -64.0 +{ -64.0 + 65.7500 91.5000 -64.0 + 66.5000 90.7500 -64.0 + 67.2500 91.5000 -64.0 + 65.5000 94.2500 -64.0 + 64.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 62.5000 99.7500 -64.0 + 63.2500 100.5000 -64.0 + 62.5000 101.2500 -64.0 + 62.2500 103.5000 -64.0 + 60.5000 104.2500 -64.0 + 59.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 104.5000 -64.0 + 153.5000 103.7500 -64.0 + 154.2500 104.5000 -64.0 + 155.2500 106.5000 -64.0 + 154.5000 108.2500 -64.0 + 152.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 115.7500 124.5000 -64.0 + 117.5000 123.7500 -64.0 + 120.5000 124.7500 -64.0 + 123.2500 128.5000 -64.0 + 123.2500 133.5000 -64.0 + 122.2500 136.5000 -64.0 + 119.5000 140.2500 -64.0 + 111.5000 144.2500 -64.0 + 109.7500 143.5000 -64.0 + 105.5000 143.2500 -64.0 + 101.7500 141.5000 -64.0 + 98.7500 137.5000 -64.0 + 98.7500 134.5000 -64.0 + 97.7500 132.5000 -64.0 + 98.7500 129.5000 -64.0 + 101.5000 126.7500 -64.0 + 103.5000 126.7500 -64.0 + 105.5000 125.7500 -64.0 + 109.5000 125.7500 -64.0 + 111.5000 124.7500 -64.0 +} -64.0 +v 203 z -174.000000 -64.0 +{ -64.0 + 106.2500 39.5000 -64.0 + 103.5000 41.2500 -64.0 + 100.5000 40.2500 -64.0 + 96.5000 44.2500 -64.0 + 94.5000 44.2500 -64.0 + 94.2500 45.5000 -64.0 + 89.2500 50.5000 -64.0 + 86.2500 56.5000 -64.0 + 77.5000 66.2500 -64.0 + 69.5000 72.2500 -64.0 + 59.5000 100.2500 -64.0 + 60.2500 101.5000 -64.0 + 60.2500 104.5000 -64.0 + 63.5000 104.7500 -64.0 + 65.7500 101.5000 -64.0 + 67.7500 92.5000 -64.0 + 76.5000 83.7500 -64.0 + 78.5000 82.7500 -64.0 + 86.7500 75.5000 -64.0 + 92.7500 64.5000 -64.0 + 98.7500 56.5000 -64.0 + 100.7500 52.5000 -64.0 + 107.5000 46.7500 -64.0 + 114.5000 46.7500 -64.0 + 120.2500 50.5000 -64.0 + 123.2500 54.5000 -64.0 + 123.2500 56.5000 -64.0 + 126.2500 60.5000 -64.0 + 130.2500 68.5000 -64.0 + 131.2500 74.5000 -64.0 + 139.5000 81.7500 -64.0 + 144.2500 88.5000 -64.0 + 150.2500 98.5000 -64.0 + 150.2500 103.5000 -64.0 + 152.2500 107.5000 -64.0 + 155.5000 107.7500 -64.0 + 156.7500 103.5000 -64.0 + 154.7500 99.5000 -64.0 + 153.7500 91.5000 -64.0 + 151.7500 84.5000 -64.0 + 150.7500 77.5000 -64.0 + 148.5000 72.2500 -64.0 + 146.5000 71.2500 -64.0 + 136.7500 60.5000 -64.0 + 123.7500 42.5000 -64.0 + 119.5000 42.2500 -64.0 + 118.7500 40.5000 -64.0 + 109.5000 40.2500 -64.0 +} -64.0 +{ -64.0 + 107.2500 111.5000 -64.0 + 105.2500 112.5000 -64.0 + 107.5000 112.7500 -64.0 + 114.2500 116.5000 -64.0 + 118.5000 116.7500 -64.0 + 120.2500 117.5000 -64.0 + 119.2500 119.5000 -64.0 + 114.5000 124.2500 -64.0 + 110.5000 124.2500 -64.0 + 108.5000 125.2500 -64.0 + 101.5000 125.2500 -64.0 + 98.5000 124.2500 -64.0 + 97.7500 122.5000 -64.0 + 101.5000 119.7500 -64.0 + 102.7500 116.5000 -64.0 + 94.5000 121.2500 -64.0 + 96.2500 123.5000 -64.0 + 96.2500 126.5000 -64.0 + 93.5000 129.2500 -64.0 + 89.5000 131.2500 -64.0 + 89.5000 136.7500 -64.0 + 91.5000 133.7500 -64.0 + 93.5000 132.7500 -64.0 + 95.2500 133.5000 -64.0 + 99.2500 141.5000 -64.0 + 104.2500 144.5000 -64.0 + 113.5000 144.7500 -64.0 + 116.5000 143.7500 -64.0 + 121.5000 139.7500 -64.0 + 122.2500 141.5000 -64.0 + 120.5000 143.2500 -64.0 + 120.2500 147.5000 -64.0 + 122.7500 142.5000 -64.0 + 130.5000 133.7500 -64.0 + 130.7500 131.5000 -64.0 + 129.2500 132.5000 -64.0 + 128.2500 134.5000 -64.0 + 123.5000 138.2500 -64.0 + 122.7500 137.5000 -64.0 + 124.5000 134.7500 -64.0 + 124.7500 128.5000 -64.0 + 126.5000 126.7500 -64.0 + 129.5000 126.7500 -64.0 + 131.5000 128.7500 -64.0 + 131.7500 126.5000 -64.0 + 128.7500 122.5000 -64.0 + 125.5000 124.2500 -64.0 + 122.2500 124.5000 -64.0 + 123.2500 126.5000 -64.0 + 123.2500 131.5000 -64.0 + 121.2500 137.5000 -64.0 + 118.5000 140.2500 -64.0 + 113.5000 143.2500 -64.0 + 106.5000 143.2500 -64.0 + 103.5000 142.2500 -64.0 + 100.7500 139.5000 -64.0 + 97.7500 133.5000 -64.0 + 97.7500 129.5000 -64.0 + 100.5000 126.7500 -64.0 + 107.5000 126.7500 -64.0 + 117.5000 123.7500 -64.0 + 121.5000 123.7500 -64.0 + 120.7500 122.5000 -64.0 + 120.7500 119.5000 -64.0 + 123.5000 116.7500 -64.0 + 127.2500 117.5000 -64.0 + 127.7500 116.5000 -64.0 + 122.7500 115.5000 -64.0 + 114.5000 115.2500 -64.0 + 108.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 124.5000 -64.0 + 84.2500 126.5000 -64.0 + 86.5000 126.7500 -64.0 + 86.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 143.5000 -64.0 + 104.5000 147.7500 -64.0 + 107.2500 150.5000 -64.0 + 107.7500 149.5000 -64.0 + 105.5000 147.2500 -64.0 + 98.7500 143.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 148.5000 -64.0 + 119.2500 150.5000 -64.0 + 119.7500 149.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 161.5000 -64.0 + 112.2500 162.5000 -64.0 + 113.5000 162.7500 -64.0 + 113.7500 161.5000 -64.0 +} -64.0 +{ -64.0 + 97.7500 46.5000 -64.0 + 98.5000 45.7500 -64.0 + 100.2500 46.5000 -64.0 + 101.2500 48.5000 -64.0 + 99.5000 50.2500 -64.0 + 98.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 94.7500 50.5000 -64.0 + 95.5000 49.7500 -64.0 + 98.2500 52.5000 -64.0 + 97.2500 54.5000 -64.0 + 94.5000 57.2500 -64.0 + 94.2500 59.5000 -64.0 + 91.2500 62.5000 -64.0 + 90.2500 64.5000 -64.0 + 88.5000 65.2500 -64.0 + 88.2500 66.5000 -64.0 + 85.2500 73.5000 -64.0 + 82.2500 76.5000 -64.0 + 81.2500 78.5000 -64.0 + 79.5000 79.2500 -64.0 + 73.5000 85.2500 -64.0 + 69.5000 88.2500 -64.0 + 67.5000 89.2500 -64.0 + 66.7500 87.5000 -64.0 + 67.7500 84.5000 -64.0 + 71.7500 74.5000 -64.0 + 77.5000 68.7500 -64.0 + 81.5000 66.7500 -64.0 + 84.5000 63.7500 -64.0 + 86.7500 56.5000 -64.0 + 89.5000 54.7500 -64.0 + 92.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 124.7500 52.5000 -64.0 + 126.5000 51.7500 -64.0 + 128.2500 52.5000 -64.0 + 129.2500 54.5000 -64.0 + 130.5000 54.7500 -64.0 + 136.2500 63.5000 -64.0 + 136.2500 65.5000 -64.0 + 134.5000 67.2500 -64.0 + 132.5000 67.2500 -64.0 + 128.7500 62.5000 -64.0 + 126.7500 58.5000 -64.0 + 128.7500 57.5000 -64.0 + 124.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 142.7500 74.5000 -64.0 + 144.5000 73.7500 -64.0 + 146.2500 74.5000 -64.0 + 148.2500 78.5000 -64.0 + 148.2500 80.5000 -64.0 + 149.2500 82.5000 -64.0 + 150.2500 90.5000 -64.0 + 149.5000 92.2500 -64.0 + 138.7500 77.5000 -64.0 + 139.5000 75.7500 -64.0 + 141.5000 75.7500 -64.0 +} -64.0 +{ -64.0 + 63.5000 97.7500 -64.0 + 64.2500 98.5000 -64.0 + 63.5000 99.2500 -64.0 + 63.2500 101.5000 -64.0 + 62.5000 103.2500 -64.0 + 60.7500 102.5000 -64.0 + 60.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 101.5000 -64.0 + 153.5000 100.7500 -64.0 + 155.2500 103.5000 -64.0 + 154.5000 105.2500 -64.0 + 152.7500 104.5000 -64.0 +} -64.0 +v 187 z -176.000000 -64.0 +{ -64.0 + 103.2500 41.5000 -64.0 + 102.5000 42.2500 -64.0 + 99.5000 42.2500 -64.0 + 91.2500 49.5000 -64.0 + 82.2500 59.5000 -64.0 + 81.2500 61.5000 -64.0 + 69.5000 72.2500 -64.0 + 69.2500 74.5000 -64.0 + 68.2500 77.5000 -64.0 + 66.2500 82.5000 -64.0 + 65.5000 84.2500 -64.0 + 62.2500 93.5000 -64.0 + 60.5000 97.2500 -64.0 + 60.2500 103.5000 -64.0 + 63.5000 103.7500 -64.0 + 65.7500 100.5000 -64.0 + 66.7500 95.5000 -64.0 + 67.7500 92.5000 -64.0 + 79.5000 79.7500 -64.0 + 87.7500 73.5000 -64.0 + 91.7500 65.5000 -64.0 + 97.7500 58.5000 -64.0 + 103.5000 50.7500 -64.0 + 108.5000 47.7500 -64.0 + 112.5000 47.7500 -64.0 + 117.5000 49.7500 -64.0 + 121.2500 53.5000 -64.0 + 124.2500 58.5000 -64.0 + 129.2500 66.5000 -64.0 + 131.2500 72.5000 -64.0 + 140.2500 80.5000 -64.0 + 144.2500 87.5000 -64.0 + 145.2500 89.5000 -64.0 + 148.2500 93.5000 -64.0 + 151.2500 99.5000 -64.0 + 151.2500 103.5000 -64.0 + 152.5000 104.7500 -64.0 + 154.5000 105.7500 -64.0 + 155.5000 103.7500 -64.0 + 154.7500 102.5000 -64.0 + 154.7500 96.5000 -64.0 + 153.7500 94.5000 -64.0 + 153.7500 91.5000 -64.0 + 152.7500 89.5000 -64.0 + 152.7500 87.5000 -64.0 + 151.7500 85.5000 -64.0 + 151.7500 82.5000 -64.0 + 150.7500 80.5000 -64.0 + 150.7500 77.5000 -64.0 + 148.7500 72.5000 -64.0 + 140.7500 64.5000 -64.0 + 139.5000 62.2500 -64.0 + 131.7500 52.5000 -64.0 + 130.7500 50.5000 -64.0 + 123.7500 44.5000 -64.0 + 121.5000 44.2500 -64.0 + 117.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 115.5000 -64.0 + 118.2500 118.5000 -64.0 + 118.2500 120.5000 -64.0 + 114.5000 124.2500 -64.0 + 112.5000 124.2500 -64.0 + 110.5000 125.2500 -64.0 + 111.5000 125.7500 -64.0 + 113.5000 124.7500 -64.0 + 116.5000 124.7500 -64.0 + 120.5000 122.7500 -64.0 + 120.7500 118.5000 -64.0 + 119.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 98.2500 120.5000 -64.0 + 97.2500 122.5000 -64.0 + 98.2500 125.5000 -64.0 + 100.2500 126.5000 -64.0 + 104.7500 126.5000 -64.0 + 99.7500 122.5000 -64.0 + 99.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 121.5000 -64.0 + 128.2500 123.5000 -64.0 + 124.5000 127.2500 -64.0 + 121.2500 137.5000 -64.0 + 112.5000 143.2500 -64.0 + 108.5000 143.2500 -64.0 + 102.5000 141.2500 -64.0 + 94.7500 130.5000 -64.0 + 90.5000 130.2500 -64.0 + 88.7500 128.5000 -64.0 + 88.5000 123.2500 -64.0 + 88.2500 129.5000 -64.0 + 90.2500 131.5000 -64.0 + 88.2500 135.5000 -64.0 + 89.5000 135.7500 -64.0 + 93.5000 133.7500 -64.0 + 95.2500 134.5000 -64.0 + 97.2500 138.5000 -64.0 + 103.2500 143.5000 -64.0 + 107.2500 144.5000 -64.0 + 112.5000 144.7500 -64.0 + 117.5000 142.7500 -64.0 + 120.5000 139.7500 -64.0 + 122.5000 138.7500 -64.0 + 124.5000 134.7500 -64.0 + 124.7500 130.5000 -64.0 + 127.5000 127.7500 -64.0 + 130.5000 127.7500 -64.0 + 132.2500 129.5000 -64.0 + 132.2500 131.5000 -64.0 + 133.7500 130.5000 -64.0 + 131.7500 126.5000 -64.0 + 131.7500 123.5000 -64.0 + 129.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 125.5000 -64.0 + 106.2500 126.5000 -64.0 + 108.5000 126.7500 -64.0 + 108.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 137.5000 -64.0 + 123.2500 142.5000 -64.0 + 125.7500 140.5000 -64.0 + 126.7500 138.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 149.5000 -64.0 + 120.2500 152.5000 -64.0 + 121.5000 150.7500 -64.0 +} -64.0 +{ -64.0 + 107.2500 151.5000 -64.0 + 107.2500 152.5000 -64.0 + 109.2500 156.5000 -64.0 + 109.7500 155.5000 -64.0 + 108.7500 152.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 152.5000 -64.0 + 114.5000 153.2500 -64.0 + 114.2500 156.5000 -64.0 + 116.5000 154.7500 -64.0 +} -64.0 +{ -64.0 + 97.7500 46.5000 -64.0 + 98.5000 45.7500 -64.0 + 101.2500 49.5000 -64.0 + 98.5000 51.2500 -64.0 + 97.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 93.7500 50.5000 -64.0 + 94.5000 49.7500 -64.0 + 98.2500 52.5000 -64.0 + 96.2500 57.5000 -64.0 + 88.5000 65.2500 -64.0 + 88.2500 67.5000 -64.0 + 85.2500 71.5000 -64.0 + 84.2500 73.5000 -64.0 + 72.5000 85.2500 -64.0 + 68.5000 87.2500 -64.0 + 67.7500 85.5000 -64.0 + 68.7500 82.5000 -64.0 + 72.7500 72.5000 -64.0 + 75.5000 69.7500 -64.0 + 80.7500 65.5000 -64.0 + 81.7500 63.5000 -64.0 + 89.5000 54.7500 -64.0 + 91.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 124.7500 53.5000 -64.0 + 125.5000 52.7500 -64.0 + 129.5000 52.7500 -64.0 + 132.2500 56.5000 -64.0 + 132.5000 59.7500 -64.0 + 136.2500 62.5000 -64.0 + 138.2500 66.5000 -64.0 + 139.5000 66.7500 -64.0 + 143.2500 70.5000 -64.0 + 146.2500 74.5000 -64.0 + 148.2500 78.5000 -64.0 + 148.2500 81.5000 -64.0 + 149.2500 83.5000 -64.0 + 149.2500 86.5000 -64.0 + 150.2500 88.5000 -64.0 + 149.5000 89.2500 -64.0 + 147.5000 88.2500 -64.0 + 139.7500 78.5000 -64.0 + 139.7500 76.5000 -64.0 + 141.5000 74.7500 -64.0 + 140.7500 73.5000 -64.0 + 136.5000 73.2500 -64.0 + 133.7500 70.5000 -64.0 + 133.7500 67.5000 -64.0 + 130.7500 65.5000 -64.0 + 130.7500 62.5000 -64.0 + 127.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 62.7500 96.5000 -64.0 + 63.5000 95.7500 -64.0 + 64.2500 96.5000 -64.0 + 64.2500 98.5000 -64.0 + 63.2500 101.5000 -64.0 + 61.5000 102.2500 -64.0 + 60.7500 100.5000 -64.0 +} -64.0 +v 182 z -178.000000 -64.0 +{ -64.0 + 106.2500 41.5000 -64.0 + 105.5000 42.2500 -64.0 + 102.5000 42.2500 -64.0 + 94.5000 46.2500 -64.0 + 72.2500 69.5000 -64.0 + 69.5000 73.2500 -64.0 + 69.2500 75.5000 -64.0 + 68.2500 78.5000 -64.0 + 66.5000 82.2500 -64.0 + 66.2500 84.5000 -64.0 + 63.2500 90.5000 -64.0 + 62.2500 95.5000 -64.0 + 61.5000 97.2500 -64.0 + 61.2500 101.5000 -64.0 + 63.5000 101.7500 -64.0 + 65.5000 98.7500 -64.0 + 65.7500 96.5000 -64.0 + 67.7500 91.5000 -64.0 + 75.7500 83.5000 -64.0 + 76.7500 81.5000 -64.0 + 89.7500 69.5000 -64.0 + 90.7500 67.5000 -64.0 + 96.5000 59.7500 -64.0 + 98.7500 58.5000 -64.0 + 99.7500 56.5000 -64.0 + 104.5000 51.7500 -64.0 + 110.5000 48.7500 -64.0 + 113.5000 49.7500 -64.0 + 119.2500 52.5000 -64.0 + 129.2500 66.5000 -64.0 + 131.2500 70.5000 -64.0 + 137.5000 76.7500 -64.0 + 139.5000 77.7500 -64.0 + 139.7500 75.5000 -64.0 + 133.7500 69.5000 -64.0 + 133.7500 67.5000 -64.0 + 130.7500 64.5000 -64.0 + 130.7500 62.5000 -64.0 + 127.7500 59.5000 -64.0 + 123.7500 52.5000 -64.0 + 122.7500 50.5000 -64.0 + 123.5000 48.7500 -64.0 + 125.2500 51.5000 -64.0 + 128.5000 51.7500 -64.0 + 131.2500 55.5000 -64.0 + 133.5000 59.7500 -64.0 + 135.5000 60.7500 -64.0 + 141.2500 67.5000 -64.0 + 147.2500 75.5000 -64.0 + 147.2500 77.5000 -64.0 + 148.2500 79.5000 -64.0 + 148.2500 83.5000 -64.0 + 147.5000 85.2500 -64.0 + 140.2500 78.5000 -64.0 + 145.2500 88.5000 -64.0 + 149.2500 93.5000 -64.0 + 152.2500 97.5000 -64.0 + 152.2500 100.5000 -64.0 + 153.5000 101.7500 -64.0 + 153.7500 97.5000 -64.0 + 152.7500 95.5000 -64.0 + 152.7500 90.5000 -64.0 + 151.7500 88.5000 -64.0 + 151.7500 83.5000 -64.0 + 150.7500 81.5000 -64.0 + 150.7500 77.5000 -64.0 + 146.7500 69.5000 -64.0 + 135.7500 57.5000 -64.0 + 134.7500 55.5000 -64.0 + 128.5000 48.2500 -64.0 + 115.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 116.5000 -64.0 + 115.2500 117.5000 -64.0 + 116.5000 117.7500 -64.0 + 118.2500 120.5000 -64.0 + 117.5000 121.2500 -64.0 + 113.5000 119.2500 -64.0 + 114.2500 120.5000 -64.0 + 115.2500 122.5000 -64.0 + 114.2500 124.5000 -64.0 + 119.5000 124.7500 -64.0 + 121.5000 123.7500 -64.0 + 121.7500 121.5000 -64.0 + 119.7500 117.5000 -64.0 + 117.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 121.5000 -64.0 + 100.2500 126.5000 -64.0 + 103.5000 126.7500 -64.0 +} -64.0 +{ -64.0 + 87.2500 127.5000 -64.0 + 86.5000 128.2500 -64.0 + 84.5000 129.2500 -64.0 + 84.2500 130.5000 -64.0 + 86.2500 131.5000 -64.0 + 87.5000 130.7500 -64.0 + 89.5000 130.7500 -64.0 + 91.2500 134.5000 -64.0 + 93.5000 134.7500 -64.0 + 95.2500 135.5000 -64.0 + 98.2500 139.5000 -64.0 + 104.5000 143.7500 -64.0 + 113.5000 144.7500 -64.0 + 115.2500 145.5000 -64.0 + 115.2500 148.5000 -64.0 + 116.7500 147.5000 -64.0 + 115.7500 145.5000 -64.0 + 116.7500 143.5000 -64.0 + 119.5000 140.7500 -64.0 + 121.5000 139.7500 -64.0 + 124.5000 134.7500 -64.0 + 124.7500 131.5000 -64.0 + 127.5000 128.7500 -64.0 + 128.2500 129.5000 -64.0 + 130.5000 129.7500 -64.0 + 134.5000 131.7500 -64.0 + 135.7500 130.5000 -64.0 + 132.5000 128.2500 -64.0 + 127.5000 127.2500 -64.0 + 124.5000 130.2500 -64.0 + 122.2500 136.5000 -64.0 + 116.5000 141.2500 -64.0 + 110.5000 143.2500 -64.0 + 108.7500 142.5000 -64.0 + 105.5000 142.2500 -64.0 + 102.5000 141.2500 -64.0 + 93.7500 131.5000 -64.0 + 89.5000 130.2500 -64.0 + 88.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 139.5000 -64.0 + 125.5000 140.2500 -64.0 + 120.2500 150.5000 -64.0 + 121.7500 151.5000 -64.0 + 125.7500 141.5000 -64.0 + 128.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 143.5000 -64.0 + 94.2500 144.5000 -64.0 + 98.7500 144.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 148.5000 -64.0 + 108.5000 152.2500 -64.0 + 105.5000 150.2500 -64.0 + 105.2500 151.5000 -64.0 + 108.2500 155.5000 -64.0 + 109.5000 155.7500 -64.0 + 111.5000 149.7500 -64.0 + 113.2500 150.5000 -64.0 + 114.5000 152.7500 -64.0 + 114.7500 149.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 108.5000 42.7500 -64.0 + 113.5000 42.7500 -64.0 + 115.2500 44.5000 -64.0 + 118.5000 44.7500 -64.0 + 119.2500 46.5000 -64.0 + 118.5000 48.2500 -64.0 + 114.7500 46.5000 -64.0 + 108.5000 46.2500 -64.0 + 105.5000 47.2500 -64.0 + 103.7500 46.5000 -64.0 + 104.5000 45.7500 -64.0 + 106.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 96.7500 47.5000 -64.0 + 98.5000 46.7500 -64.0 + 101.2500 50.5000 -64.0 + 99.2500 51.5000 -64.0 + 97.2500 55.5000 -64.0 + 92.2500 60.5000 -64.0 + 87.2500 68.5000 -64.0 + 77.5000 79.2500 -64.0 + 70.5000 85.2500 -64.0 + 68.7500 84.5000 -64.0 + 69.7500 79.5000 -64.0 + 71.5000 77.7500 -64.0 + 71.7500 74.5000 -64.0 + 77.5000 66.7500 -64.0 + 79.5000 65.7500 -64.0 + 89.5000 55.7500 -64.0 + 94.5000 49.7500 -64.0 + 96.5000 49.7500 -64.0 + 95.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 62.7500 95.5000 -64.0 + 63.5000 94.7500 -64.0 + 64.2500 95.5000 -64.0 + 63.5000 96.2500 -64.0 +} -64.0 +v 164 z -180.000000 -64.0 +{ -64.0 + 107.2500 41.5000 -64.0 + 106.5000 42.2500 -64.0 + 104.5000 42.2500 -64.0 + 101.2500 43.5000 -64.0 + 94.5000 46.2500 -64.0 + 91.5000 49.2500 -64.0 + 87.5000 55.2500 -64.0 + 85.5000 56.2500 -64.0 + 70.2500 71.5000 -64.0 + 69.2500 76.5000 -64.0 + 68.2500 78.5000 -64.0 + 67.2500 85.5000 -64.0 + 64.2500 91.5000 -64.0 + 63.2500 96.5000 -64.0 + 63.7500 97.5000 -64.0 + 65.7500 93.5000 -64.0 + 67.5000 89.7500 -64.0 + 69.5000 88.7500 -64.0 + 77.7500 80.5000 -64.0 + 78.7500 78.5000 -64.0 + 76.5000 79.2500 -64.0 + 72.5000 82.2500 -64.0 + 70.7500 81.5000 -64.0 + 70.7500 78.5000 -64.0 + 74.7500 70.5000 -64.0 + 77.5000 66.7500 -64.0 + 82.7500 62.5000 -64.0 + 96.5000 47.7500 -64.0 + 98.5000 47.7500 -64.0 + 100.2500 48.5000 -64.0 + 100.2500 51.5000 -64.0 + 91.2500 61.5000 -64.0 + 89.2500 65.5000 -64.0 + 84.2500 70.5000 -64.0 + 83.2500 72.5000 -64.0 + 84.5000 72.7500 -64.0 + 90.7500 67.5000 -64.0 + 91.7500 65.5000 -64.0 + 105.5000 51.7500 -64.0 + 111.5000 49.7500 -64.0 + 116.5000 51.7500 -64.0 + 126.2500 61.5000 -64.0 + 127.2500 63.5000 -64.0 + 137.2500 74.5000 -64.0 + 138.2500 76.5000 -64.0 + 146.2500 87.5000 -64.0 + 147.2500 89.5000 -64.0 + 149.2500 90.5000 -64.0 + 150.5000 89.7500 -64.0 + 150.7500 79.5000 -64.0 + 149.7500 77.5000 -64.0 + 149.7500 74.5000 -64.0 + 145.7500 68.5000 -64.0 + 144.7500 66.5000 -64.0 + 136.5000 58.2500 -64.0 + 134.5000 57.2500 -64.0 + 132.7500 53.5000 -64.0 + 129.7500 49.5000 -64.0 + 124.5000 46.2500 -64.0 + 115.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 115.5000 -64.0 + 113.5000 119.2500 -64.0 + 110.5000 119.2500 -64.0 + 104.5000 121.2500 -64.0 + 101.5000 120.2500 -64.0 + 99.2500 126.5000 -64.0 + 100.2500 128.5000 -64.0 + 102.5000 128.7500 -64.0 + 104.5000 123.7500 -64.0 + 108.5000 121.7500 -64.0 + 110.2500 122.5000 -64.0 + 110.2500 124.5000 -64.0 + 108.5000 126.2500 -64.0 + 105.5000 126.2500 -64.0 + 105.2500 127.5000 -64.0 + 108.5000 127.7500 -64.0 + 110.5000 126.7500 -64.0 + 112.5000 126.7500 -64.0 + 114.5000 124.7500 -64.0 + 115.2500 126.5000 -64.0 + 116.5000 126.7500 -64.0 + 119.5000 123.7500 -64.0 + 120.2500 124.5000 -64.0 + 121.5000 123.7500 -64.0 + 121.7500 120.5000 -64.0 + 120.7500 117.5000 -64.0 + 119.5000 117.2500 -64.0 + 117.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 128.5000 -64.0 + 125.2500 130.5000 -64.0 + 128.5000 130.7500 -64.0 + 130.2500 132.5000 -64.0 + 136.5000 132.7500 -64.0 + 136.7500 131.5000 -64.0 + 130.5000 131.2500 -64.0 +} -64.0 +{ -64.0 + 87.2500 131.5000 -64.0 + 86.2500 133.5000 -64.0 + 87.5000 133.7500 -64.0 + 90.5000 132.7500 -64.0 + 92.2500 135.5000 -64.0 + 96.2500 136.5000 -64.0 + 97.2500 138.5000 -64.0 + 103.2500 143.5000 -64.0 + 108.2500 144.5000 -64.0 + 109.2500 146.5000 -64.0 + 107.5000 148.2500 -64.0 + 104.5000 147.2500 -64.0 + 100.7500 143.5000 -64.0 + 98.5000 143.2500 -64.0 + 101.5000 146.7500 -64.0 + 105.2500 149.5000 -64.0 + 108.5000 149.7500 -64.0 + 111.5000 148.7500 -64.0 + 114.5000 149.7500 -64.0 + 115.5000 147.7500 -64.0 + 115.5000 145.2500 -64.0 + 111.5000 143.2500 -64.0 + 102.5000 141.2500 -64.0 + 98.7500 137.5000 -64.0 + 97.7500 135.5000 -64.0 + 90.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 132.5000 -64.0 + 123.5000 133.2500 -64.0 + 123.2500 135.5000 -64.0 + 118.5000 140.7500 -64.0 + 122.5000 138.7500 -64.0 + 122.7500 137.5000 -64.0 + 124.5000 135.7500 -64.0 + 124.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 138.5000 -64.0 + 122.5000 144.2500 -64.0 + 120.5000 145.2500 -64.0 + 120.2500 146.5000 -64.0 + 122.5000 146.7500 -64.0 + 126.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 108.5000 42.7500 -64.0 + 112.5000 42.7500 -64.0 + 126.5000 49.7500 -64.0 + 129.2500 52.5000 -64.0 + 132.2500 56.5000 -64.0 + 133.2500 58.5000 -64.0 + 139.5000 64.7500 -64.0 + 144.2500 71.5000 -64.0 + 147.2500 76.5000 -64.0 + 147.2500 79.5000 -64.0 + 146.5000 81.2500 -64.0 + 143.5000 80.2500 -64.0 + 140.7500 77.5000 -64.0 + 139.7500 75.5000 -64.0 + 133.7500 68.5000 -64.0 + 133.7500 66.5000 -64.0 + 131.7500 64.5000 -64.0 + 128.7500 60.5000 -64.0 + 126.7500 56.5000 -64.0 + 125.5000 56.2500 -64.0 + 124.7500 54.5000 -64.0 + 120.7500 50.5000 -64.0 + 115.5000 47.2500 -64.0 + 108.5000 46.2500 -64.0 + 106.5000 48.2500 -64.0 + 104.5000 48.2500 -64.0 + 102.7500 47.5000 -64.0 + 102.7500 45.5000 -64.0 +} -64.0 +v 148 z -182.000000 -64.0 +{ -64.0 + 109.2500 40.5000 -64.0 + 108.5000 41.2500 -64.0 + 106.2500 41.5000 -64.0 + 93.5000 47.2500 -64.0 + 90.2500 51.5000 -64.0 + 89.2500 53.5000 -64.0 + 90.5000 53.7500 -64.0 + 98.5000 47.7500 -64.0 + 101.5000 47.7500 -64.0 + 101.7500 46.5000 -64.0 + 104.5000 44.7500 -64.0 + 108.5000 42.7500 -64.0 + 113.5000 42.7500 -64.0 + 115.2500 43.5000 -64.0 + 120.2500 46.5000 -64.0 + 127.2500 50.5000 -64.0 + 130.2500 54.5000 -64.0 + 132.7500 54.5000 -64.0 + 130.7500 50.5000 -64.0 + 124.5000 46.2500 -64.0 + 113.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 47.5000 -64.0 + 108.5000 48.2500 -64.0 + 106.5000 48.2500 -64.0 + 102.5000 50.2500 -64.0 + 100.5000 50.2500 -64.0 + 100.2500 51.5000 -64.0 + 97.2500 54.5000 -64.0 + 95.2500 58.5000 -64.0 + 91.2500 61.5000 -64.0 + 90.2500 63.5000 -64.0 + 85.2500 68.5000 -64.0 + 83.2500 72.5000 -64.0 + 89.5000 66.7500 -64.0 + 91.5000 65.7500 -64.0 + 96.5000 59.7500 -64.0 + 104.5000 53.7500 -64.0 + 109.5000 50.7500 -64.0 + 111.5000 50.7500 -64.0 + 119.5000 54.7500 -64.0 + 133.5000 68.7500 -64.0 + 138.2500 75.5000 -64.0 + 139.2500 77.5000 -64.0 + 145.2500 83.5000 -64.0 + 146.2500 85.5000 -64.0 + 148.5000 85.7500 -64.0 + 149.5000 83.7500 -64.0 + 149.7500 76.5000 -64.0 + 144.7500 66.5000 -64.0 + 139.7500 61.5000 -64.0 + 138.7500 59.5000 -64.0 + 136.5000 57.2500 -64.0 + 134.5000 56.2500 -64.0 + 134.2500 57.5000 -64.0 + 135.2500 60.5000 -64.0 + 139.2500 64.5000 -64.0 + 145.2500 72.5000 -64.0 + 145.2500 75.5000 -64.0 + 144.5000 77.2500 -64.0 + 142.5000 77.2500 -64.0 + 134.7500 68.5000 -64.0 + 133.7500 66.5000 -64.0 + 127.7500 59.5000 -64.0 + 127.7500 57.5000 -64.0 + 124.5000 54.2500 -64.0 + 120.7500 51.5000 -64.0 + 114.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 55.5000 -64.0 + 85.5000 56.2500 -64.0 + 79.5000 62.2500 -64.0 + 77.5000 63.2500 -64.0 + 70.5000 72.2500 -64.0 + 69.2500 83.5000 -64.0 + 70.2500 85.5000 -64.0 + 72.5000 84.7500 -64.0 + 80.7500 76.5000 -64.0 + 81.7500 74.5000 -64.0 + 80.5000 74.2500 -64.0 + 76.5000 78.2500 -64.0 + 72.7500 77.5000 -64.0 + 72.7500 75.5000 -64.0 + 75.7500 69.5000 -64.0 + 87.7500 57.5000 -64.0 + 88.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 113.5000 -64.0 + 113.2500 116.5000 -64.0 + 115.2500 117.5000 -64.0 + 114.5000 119.2500 -64.0 + 112.5000 119.2500 -64.0 + 110.5000 125.2500 -64.0 + 111.2500 126.5000 -64.0 + 114.5000 126.7500 -64.0 + 118.5000 123.7500 -64.0 + 120.5000 124.7500 -64.0 + 122.5000 123.7500 -64.0 + 121.7500 122.5000 -64.0 + 121.7500 118.5000 -64.0 + 118.5000 118.2500 -64.0 + 116.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 98.2500 124.5000 -64.0 + 99.2500 127.5000 -64.0 + 100.5000 125.7500 -64.0 + 99.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 126.5000 -64.0 + 124.5000 129.2500 -64.0 + 124.2500 133.5000 -64.0 + 123.2500 136.5000 -64.0 + 120.5000 140.2500 -64.0 + 120.2500 143.5000 -64.0 + 122.5000 143.7500 -64.0 + 128.5000 135.2500 -64.0 + 126.5000 136.2500 -64.0 + 125.7500 134.5000 -64.0 + 126.5000 132.7500 -64.0 + 128.5000 132.7500 -64.0 + 132.5000 134.7500 -64.0 + 134.5000 133.7500 -64.0 + 132.7500 131.5000 -64.0 + 127.5000 131.2500 -64.0 + 126.7500 129.5000 -64.0 + 129.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 127.5000 -64.0 + 100.2500 128.5000 -64.0 + 103.5000 128.7500 -64.0 + 103.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 133.5000 -64.0 + 87.5000 134.2500 -64.0 + 88.2500 135.5000 -64.0 + 88.2500 138.5000 -64.0 + 89.5000 138.7500 -64.0 + 90.5000 136.7500 -64.0 + 92.5000 135.7500 -64.0 + 95.5000 136.7500 -64.0 + 98.2500 140.5000 -64.0 + 97.2500 143.5000 -64.0 + 104.2500 147.5000 -64.0 + 106.5000 147.7500 -64.0 + 108.5000 146.7500 -64.0 + 110.5000 146.7500 -64.0 + 114.5000 148.7500 -64.0 + 114.7500 146.5000 -64.0 + 113.7500 144.5000 -64.0 + 110.5000 144.2500 -64.0 + 106.5000 142.2500 -64.0 + 101.5000 141.2500 -64.0 + 99.5000 139.2500 -64.0 + 97.7500 134.5000 -64.0 + 95.7500 133.5000 -64.0 +} -64.0 +v 148 z -184.000000 -64.0 +{ -64.0 + 108.2500 40.5000 -64.0 + 94.5000 47.2500 -64.0 + 80.5000 61.2500 -64.0 + 78.5000 62.2500 -64.0 + 71.5000 72.2500 -64.0 + 71.2500 80.5000 -64.0 + 72.5000 81.7500 -64.0 + 75.5000 80.7500 -64.0 + 84.7500 71.5000 -64.0 + 85.7500 69.5000 -64.0 + 97.5000 58.7500 -64.0 + 108.5000 51.7500 -64.0 + 112.5000 51.7500 -64.0 + 117.5000 53.7500 -64.0 + 123.5000 57.7500 -64.0 + 131.5000 65.7500 -64.0 + 139.2500 76.5000 -64.0 + 145.2500 81.5000 -64.0 + 147.5000 81.7500 -64.0 + 148.5000 79.7500 -64.0 + 148.7500 76.5000 -64.0 + 147.7500 74.5000 -64.0 + 147.7500 72.5000 -64.0 + 142.7500 63.5000 -64.0 + 132.7500 53.5000 -64.0 + 131.5000 51.2500 -64.0 + 114.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 114.5000 -64.0 + 114.2500 118.5000 -64.0 + 107.5000 124.2500 -64.0 + 103.5000 124.2500 -64.0 + 103.2500 125.5000 -64.0 + 105.2500 127.5000 -64.0 + 100.5000 129.2500 -64.0 + 98.5000 127.2500 -64.0 + 98.2500 130.5000 -64.0 + 99.5000 130.7500 -64.0 + 103.5000 128.7500 -64.0 + 105.5000 128.7500 -64.0 + 107.5000 127.7500 -64.0 + 109.5000 128.7500 -64.0 + 112.7500 127.5000 -64.0 + 107.7500 126.5000 -64.0 + 113.5000 123.7500 -64.0 + 115.5000 123.7500 -64.0 + 116.7500 121.5000 -64.0 + 115.7500 119.5000 -64.0 + 116.5000 117.7500 -64.0 +} -64.0 +{ -64.0 + 120.2500 120.5000 -64.0 + 119.5000 121.2500 -64.0 + 120.2500 122.5000 -64.0 + 116.2500 125.5000 -64.0 + 122.5000 126.7500 -64.0 + 124.2500 129.5000 -64.0 + 124.5000 135.7500 -64.0 + 126.5000 136.7500 -64.0 + 132.5000 133.7500 -64.0 + 132.7500 132.5000 -64.0 + 128.5000 132.2500 -64.0 + 126.7500 130.5000 -64.0 + 125.7500 128.5000 -64.0 + 127.5000 126.7500 -64.0 + 130.5000 126.7500 -64.0 + 134.5000 128.7500 -64.0 + 134.7500 127.5000 -64.0 + 130.7500 125.5000 -64.0 + 127.5000 125.2500 -64.0 + 124.5000 124.2500 -64.0 + 121.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 124.5000 -64.0 + 97.2500 125.5000 -64.0 + 97.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 133.5000 -64.0 + 88.5000 135.2500 -64.0 + 88.2500 139.5000 -64.0 + 92.5000 135.7500 -64.0 + 94.5000 135.7500 -64.0 + 96.2500 137.5000 -64.0 + 98.2500 141.5000 -64.0 + 95.5000 143.2500 -64.0 + 98.2500 144.5000 -64.0 + 109.5000 145.7500 -64.0 + 113.2500 148.5000 -64.0 + 115.5000 148.7500 -64.0 + 115.7500 144.5000 -64.0 + 110.5000 145.2500 -64.0 + 104.7500 141.5000 -64.0 + 100.5000 141.2500 -64.0 + 97.7500 138.5000 -64.0 + 98.5000 137.7500 -64.0 + 98.7500 135.5000 -64.0 + 97.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 137.5000 -64.0 + 120.5000 139.2500 -64.0 + 121.5000 139.7500 -64.0 + 123.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 140.5000 -64.0 + 117.5000 141.2500 -64.0 + 118.5000 141.7500 -64.0 + 119.7500 140.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 108.5000 42.7500 -64.0 + 110.5000 42.7500 -64.0 + 112.2500 43.5000 -64.0 + 113.5000 42.7500 -64.0 + 117.5000 44.7500 -64.0 + 119.2500 45.5000 -64.0 + 125.2500 49.5000 -64.0 + 131.2500 54.5000 -64.0 + 133.2500 58.5000 -64.0 + 134.5000 58.7500 -64.0 + 135.2500 60.5000 -64.0 + 139.2500 64.5000 -64.0 + 142.2500 69.5000 -64.0 + 143.2500 71.5000 -64.0 + 142.5000 73.2500 -64.0 + 140.5000 73.2500 -64.0 + 136.7500 69.5000 -64.0 + 135.7500 67.5000 -64.0 + 127.7500 58.5000 -64.0 + 127.7500 56.5000 -64.0 + 125.7500 54.5000 -64.0 + 118.5000 50.2500 -64.0 + 112.5000 47.2500 -64.0 + 110.5000 48.2500 -64.0 + 108.5000 48.2500 -64.0 + 106.5000 49.2500 -64.0 + 103.5000 49.2500 -64.0 + 101.5000 51.2500 -64.0 + 98.5000 51.2500 -64.0 + 98.2500 52.5000 -64.0 + 96.5000 54.2500 -64.0 + 96.2500 56.5000 -64.0 + 92.2500 60.5000 -64.0 + 91.2500 62.5000 -64.0 + 85.2500 67.5000 -64.0 + 84.2500 69.5000 -64.0 + 77.5000 75.2500 -64.0 + 75.7500 74.5000 -64.0 + 75.7500 70.5000 -64.0 + 77.7500 68.5000 -64.0 + 78.7500 66.5000 -64.0 + 89.7500 55.5000 -64.0 + 92.5000 51.7500 -64.0 + 94.5000 50.7500 -64.0 + 98.5000 47.7500 -64.0 + 103.5000 44.7500 -64.0 + 106.7500 45.5000 -64.0 +} -64.0 +v 122 z -186.000000 -64.0 +{ -64.0 + 110.2500 39.5000 -64.0 + 94.5000 47.2500 -64.0 + 78.5000 63.2500 -64.0 + 72.2500 73.5000 -64.0 + 74.2500 77.5000 -64.0 + 76.5000 77.7500 -64.0 + 82.5000 73.7500 -64.0 + 92.5000 62.7500 -64.0 + 99.5000 56.7500 -64.0 + 107.5000 52.7500 -64.0 + 113.5000 52.7500 -64.0 + 119.5000 54.7500 -64.0 + 126.2500 59.5000 -64.0 + 133.2500 68.5000 -64.0 + 142.2500 77.5000 -64.0 + 144.5000 77.7500 -64.0 + 146.5000 76.7500 -64.0 + 146.7500 73.5000 -64.0 + 145.7500 71.5000 -64.0 + 145.7500 69.5000 -64.0 + 139.7500 59.5000 -64.0 + 129.5000 49.2500 -64.0 + 123.5000 46.2500 -64.0 + 120.7500 43.5000 -64.0 + 113.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 114.5000 -64.0 + 112.5000 116.2500 -64.0 + 114.2500 117.5000 -64.0 + 115.5000 116.7500 -64.0 + 115.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 118.5000 -64.0 + 101.2500 119.5000 -64.0 + 102.5000 119.7500 -64.0 + 102.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 121.5000 -64.0 + 121.2500 123.5000 -64.0 + 116.5000 125.2500 -64.0 + 117.2500 126.5000 -64.0 + 120.5000 126.7500 -64.0 + 123.2500 129.5000 -64.0 + 123.2500 133.5000 -64.0 + 122.2500 136.5000 -64.0 + 114.5000 143.2500 -64.0 + 110.5000 143.2500 -64.0 + 102.5000 140.2500 -64.0 + 99.7500 137.5000 -64.0 + 99.7500 132.5000 -64.0 + 103.5000 129.7500 -64.0 + 104.5000 128.2500 -64.0 + 102.5000 129.2500 -64.0 + 99.5000 129.2500 -64.0 + 96.2500 131.5000 -64.0 + 91.5000 133.2500 -64.0 + 88.5000 138.2500 -64.0 + 88.2500 141.5000 -64.0 + 89.5000 141.7500 -64.0 + 90.7500 137.5000 -64.0 + 94.5000 134.7500 -64.0 + 96.5000 135.7500 -64.0 + 101.2500 142.5000 -64.0 + 100.5000 143.2500 -64.0 + 104.2500 145.5000 -64.0 + 108.5000 145.7500 -64.0 + 114.5000 149.7500 -64.0 + 114.7500 148.5000 -64.0 + 116.5000 147.7500 -64.0 + 126.5000 135.7500 -64.0 + 131.5000 134.7500 -64.0 + 131.7500 133.5000 -64.0 + 127.5000 133.2500 -64.0 + 125.7500 131.5000 -64.0 + 125.7500 128.5000 -64.0 + 122.7500 125.5000 -64.0 + 123.5000 124.7500 -64.0 + 125.5000 125.7500 -64.0 + 126.7500 124.5000 -64.0 + 122.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 108.5000 42.7500 -64.0 + 110.5000 42.7500 -64.0 + 112.2500 43.5000 -64.0 + 111.5000 44.2500 -64.0 + 111.2500 46.5000 -64.0 + 107.5000 49.2500 -64.0 + 103.5000 49.2500 -64.0 + 103.2500 50.5000 -64.0 + 96.5000 54.2500 -64.0 + 96.2500 56.5000 -64.0 + 94.5000 57.2500 -64.0 + 94.2500 58.5000 -64.0 + 92.5000 60.2500 -64.0 + 90.5000 61.2500 -64.0 + 83.5000 68.2500 -64.0 + 79.5000 71.2500 -64.0 + 78.7500 69.5000 -64.0 + 79.7500 66.5000 -64.0 + 89.5000 55.7500 -64.0 + 99.5000 46.7500 -64.0 + 101.5000 46.7500 -64.0 + 103.5000 44.7500 -64.0 + 105.2500 45.5000 -64.0 +} -64.0 +{ -64.0 + 113.7500 43.5000 -64.0 + 114.5000 42.7500 -64.0 + 115.5000 43.7500 -64.0 + 119.5000 45.7500 -64.0 + 126.2500 50.5000 -64.0 + 126.2500 52.5000 -64.0 + 128.5000 52.7500 -64.0 + 134.2500 58.5000 -64.0 + 137.2500 62.5000 -64.0 + 140.2500 67.5000 -64.0 + 139.5000 69.2500 -64.0 + 137.5000 67.2500 -64.0 + 135.5000 66.2500 -64.0 + 134.7500 64.5000 -64.0 + 130.7500 60.5000 -64.0 + 129.7500 58.5000 -64.0 + 128.5000 58.2500 -64.0 + 127.7500 56.5000 -64.0 + 125.5000 54.2500 -64.0 + 119.5000 51.2500 -64.0 + 113.7500 46.5000 -64.0 +} -64.0 +v 113 z -188.000000 -64.0 +{ -64.0 + 109.2500 39.5000 -64.0 + 93.5000 48.2500 -64.0 + 82.2500 59.5000 -64.0 + 75.5000 69.2500 -64.0 + 75.5000 73.7500 -64.0 + 77.5000 74.7500 -64.0 + 82.5000 72.7500 -64.0 + 89.7500 65.5000 -64.0 + 90.7500 63.5000 -64.0 + 92.5000 62.7500 -64.0 + 97.5000 57.7500 -64.0 + 107.5000 52.7500 -64.0 + 114.5000 52.7500 -64.0 + 124.5000 56.7500 -64.0 + 125.2500 58.5000 -64.0 + 137.5000 71.7500 -64.0 + 141.2500 74.5000 -64.0 + 143.5000 74.7500 -64.0 + 144.7500 70.5000 -64.0 + 142.7500 66.5000 -64.0 + 142.7500 64.5000 -64.0 + 138.7500 58.5000 -64.0 + 128.5000 48.2500 -64.0 + 114.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 114.5000 -64.0 + 108.5000 115.2500 -64.0 + 105.2500 115.5000 -64.0 + 108.5000 115.7500 -64.0 + 110.5000 114.7500 -64.0 + 111.2500 115.5000 -64.0 + 114.5000 115.7500 -64.0 + 114.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 122.5000 -64.0 + 122.5000 123.7500 -64.0 + 126.2500 125.5000 -64.0 + 128.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 124.5000 -64.0 + 119.5000 125.2500 -64.0 + 116.5000 125.2500 -64.0 + 115.2500 126.5000 -64.0 + 119.5000 126.7500 -64.0 + 123.2500 129.5000 -64.0 + 123.2500 135.5000 -64.0 + 120.5000 139.2500 -64.0 + 122.2500 140.5000 -64.0 + 121.5000 141.2500 -64.0 + 118.5000 146.2500 -64.0 + 118.2500 149.5000 -64.0 + 122.7500 140.5000 -64.0 + 127.5000 135.7500 -64.0 + 129.5000 135.7500 -64.0 + 132.7500 134.5000 -64.0 + 129.5000 134.2500 -64.0 + 125.7500 132.5000 -64.0 + 125.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 103.2500 128.5000 -64.0 + 99.2500 130.5000 -64.0 + 97.2500 134.5000 -64.0 + 99.2500 138.5000 -64.0 + 98.5000 139.2500 -64.0 + 98.2500 142.5000 -64.0 + 100.2500 144.5000 -64.0 + 108.5000 146.7500 -64.0 + 112.2500 149.5000 -64.0 + 113.5000 148.7500 -64.0 + 110.7500 145.5000 -64.0 + 111.5000 144.7500 -64.0 + 117.5000 143.7500 -64.0 + 119.7500 140.5000 -64.0 + 118.5000 140.2500 -64.0 + 114.5000 143.2500 -64.0 + 109.5000 143.2500 -64.0 + 101.5000 139.2500 -64.0 + 99.7500 136.5000 -64.0 + 100.5000 132.7500 -64.0 + 105.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 132.5000 -64.0 + 89.5000 133.2500 -64.0 + 90.2500 135.5000 -64.0 + 89.5000 137.2500 -64.0 + 89.2500 142.5000 -64.0 + 90.5000 142.7500 -64.0 + 90.7500 140.5000 -64.0 + 91.7500 138.5000 -64.0 + 90.7500 136.5000 -64.0 + 90.7500 133.5000 -64.0 + 92.7500 132.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 109.5000 42.7500 -64.0 + 110.2500 44.5000 -64.0 + 109.5000 46.2500 -64.0 + 110.2500 47.5000 -64.0 + 102.5000 51.2500 -64.0 + 100.5000 51.2500 -64.0 + 84.5000 65.2500 -64.0 + 83.7500 64.5000 -64.0 + 85.7500 60.5000 -64.0 + 97.5000 48.7500 -64.0 + 103.5000 44.7500 -64.0 + 107.5000 45.7500 -64.0 +} -64.0 +{ -64.0 + 119.5000 46.7500 -64.0 + 121.5000 46.7500 -64.0 + 125.2500 49.5000 -64.0 + 125.2500 51.5000 -64.0 + 123.5000 52.2500 -64.0 + 120.5000 51.2500 -64.0 + 117.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 128.5000 52.7500 -64.0 + 136.2500 61.5000 -64.0 + 135.5000 63.2500 -64.0 + 132.7500 61.5000 -64.0 + 131.7500 59.5000 -64.0 + 126.7500 54.5000 -64.0 +} -64.0 +v 98 z -190.000000 -64.0 +{ -64.0 + 108.2500 39.5000 -64.0 + 100.5000 43.2500 -64.0 + 94.5000 47.2500 -64.0 + 84.5000 57.2500 -64.0 + 79.2500 65.5000 -64.0 + 78.2500 70.5000 -64.0 + 79.5000 71.7500 -64.0 + 81.5000 70.7500 -64.0 + 83.5000 70.7500 -64.0 + 98.5000 56.7500 -64.0 + 103.5000 53.7500 -64.0 + 105.5000 53.7500 -64.0 + 109.5000 51.7500 -64.0 + 111.2500 52.5000 -64.0 + 113.5000 51.7500 -64.0 + 123.5000 55.7500 -64.0 + 134.5000 67.7500 -64.0 + 138.2500 70.5000 -64.0 + 141.5000 70.7500 -64.0 + 141.7500 66.5000 -64.0 + 137.7500 58.5000 -64.0 + 130.7500 49.5000 -64.0 + 129.5000 49.2500 -64.0 + 126.7500 46.5000 -64.0 + 115.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 122.5000 -64.0 + 115.2500 126.5000 -64.0 + 119.5000 126.7500 -64.0 + 122.5000 127.7500 -64.0 + 124.2500 131.5000 -64.0 + 123.2500 136.5000 -64.0 + 119.5000 140.2500 -64.0 + 113.5000 144.2500 -64.0 + 108.5000 143.2500 -64.0 + 102.7500 140.5000 -64.0 + 99.7500 136.5000 -64.0 + 99.7500 133.5000 -64.0 + 104.7500 129.5000 -64.0 + 100.5000 129.2500 -64.0 + 96.5000 133.2500 -64.0 + 92.5000 133.2500 -64.0 + 89.5000 134.2500 -64.0 + 89.2500 142.5000 -64.0 + 91.2500 144.5000 -64.0 + 92.7500 144.5000 -64.0 + 90.7500 140.5000 -64.0 + 90.7500 135.5000 -64.0 + 92.5000 134.7500 -64.0 + 97.5000 136.7500 -64.0 + 98.2500 138.5000 -64.0 + 101.2500 141.5000 -64.0 + 95.2500 144.5000 -64.0 + 103.5000 144.7500 -64.0 + 101.7500 142.5000 -64.0 + 102.5000 141.7500 -64.0 + 108.2500 144.5000 -64.0 + 115.5000 144.7500 -64.0 + 119.5000 141.7500 -64.0 + 121.2500 142.5000 -64.0 + 118.5000 148.2500 -64.0 + 118.5000 149.7500 -64.0 + 121.5000 145.7500 -64.0 + 121.7500 141.5000 -64.0 + 126.5000 136.7500 -64.0 + 132.7500 135.5000 -64.0 + 126.5000 135.2500 -64.0 + 124.5000 137.2500 -64.0 + 123.7500 136.5000 -64.0 + 125.5000 133.7500 -64.0 + 125.7500 130.5000 -64.0 + 129.7500 124.5000 -64.0 + 123.5000 124.2500 -64.0 + 121.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 145.5000 -64.0 + 106.2500 146.5000 -64.0 + 106.7500 145.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 147.5000 -64.0 + 113.7500 151.5000 -64.0 + 112.7500 148.5000 -64.0 + 110.7500 147.5000 -64.0 +} -64.0 +{ -64.0 + 103.7500 45.5000 -64.0 + 105.5000 44.7500 -64.0 + 107.2500 47.5000 -64.0 + 103.5000 50.2500 -64.0 + 97.5000 52.2500 -64.0 + 92.5000 56.2500 -64.0 + 91.7500 55.5000 -64.0 + 93.7500 52.5000 -64.0 + 99.5000 47.7500 -64.0 +} -64.0 +{ -64.0 + 113.7500 46.5000 -64.0 + 114.5000 45.7500 -64.0 + 115.2500 46.5000 -64.0 + 114.5000 47.2500 -64.0 +} -64.0 +{ -64.0 + 119.7500 47.5000 -64.0 + 121.5000 46.7500 -64.0 + 125.2500 49.5000 -64.0 + 124.5000 51.2500 -64.0 + 122.5000 51.2500 -64.0 +} -64.0 +v 100 z -192.000000 -64.0 +{ -64.0 + 107.2500 39.5000 -64.0 + 102.5000 41.2500 -64.0 + 95.5000 46.2500 -64.0 + 88.5000 53.2500 -64.0 + 82.2500 63.5000 -64.0 + 81.5000 66.7500 -64.0 + 83.5000 67.7500 -64.0 + 86.5000 66.7500 -64.0 + 99.5000 55.7500 -64.0 + 109.5000 50.7500 -64.0 + 113.5000 50.7500 -64.0 + 121.5000 53.7500 -64.0 + 136.2500 67.5000 -64.0 + 138.5000 67.7500 -64.0 + 138.7500 62.5000 -64.0 + 134.7500 54.5000 -64.0 + 130.7500 50.5000 -64.0 + 129.5000 48.2500 -64.0 + 121.5000 42.2500 -64.0 + 115.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 119.5000 -64.0 + 117.2500 121.5000 -64.0 + 115.2500 122.5000 -64.0 + 114.2500 124.5000 -64.0 + 116.2500 125.5000 -64.0 + 115.5000 127.2500 -64.0 + 116.5000 127.7500 -64.0 + 122.5000 125.7500 -64.0 + 120.5000 121.2500 -64.0 +} -64.0 +{ -64.0 + 132.2500 121.5000 -64.0 + 131.2500 123.5000 -64.0 + 125.5000 126.2500 -64.0 + 124.2500 134.5000 -64.0 + 120.2500 140.5000 -64.0 + 118.5000 141.2500 -64.0 + 115.5000 144.2500 -64.0 + 109.5000 144.2500 -64.0 + 101.7500 140.5000 -64.0 + 97.7500 134.5000 -64.0 + 93.5000 134.2500 -64.0 + 91.7500 133.5000 -64.0 + 90.7500 131.5000 -64.0 + 89.2500 130.5000 -64.0 + 91.2500 136.5000 -64.0 + 97.5000 137.7500 -64.0 + 100.2500 140.5000 -64.0 + 101.2500 142.5000 -64.0 + 98.5000 144.2500 -64.0 + 92.5000 144.2500 -64.0 + 90.7500 140.5000 -64.0 + 88.5000 138.2500 -64.0 + 88.2500 141.5000 -64.0 + 91.2500 144.5000 -64.0 + 102.5000 144.7500 -64.0 + 104.2500 145.5000 -64.0 + 105.2500 147.5000 -64.0 + 107.2500 148.5000 -64.0 + 112.5000 148.7500 -64.0 + 111.7500 147.5000 -64.0 + 109.5000 147.2500 -64.0 + 102.7500 143.5000 -64.0 + 103.5000 142.7500 -64.0 + 113.2500 146.5000 -64.0 + 117.5000 144.7500 -64.0 + 120.5000 141.7500 -64.0 + 121.2500 142.5000 -64.0 + 119.2500 146.5000 -64.0 + 120.5000 146.7500 -64.0 + 123.5000 141.7500 -64.0 + 123.7500 139.5000 -64.0 + 125.5000 137.7500 -64.0 + 128.5000 137.7500 -64.0 + 129.7500 136.5000 -64.0 + 127.5000 136.2500 -64.0 + 125.5000 137.2500 -64.0 + 124.7500 135.5000 -64.0 + 129.7500 125.5000 -64.0 + 133.5000 123.7500 -64.0 +} -64.0 +{ -64.0 + 100.2500 128.5000 -64.0 + 99.2500 130.5000 -64.0 + 104.5000 130.7500 -64.0 + 104.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 129.5000 -64.0 + 109.2500 130.5000 -64.0 + 111.5000 130.7500 -64.0 + 111.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 112.7500 43.5000 -64.0 + 113.5000 42.7500 -64.0 + 115.2500 44.5000 -64.0 + 114.5000 46.2500 -64.0 + 113.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 102.7500 45.5000 -64.0 + 104.5000 44.7500 -64.0 + 106.2500 46.5000 -64.0 + 101.5000 49.2500 -64.0 + 99.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 115.7500 45.5000 -64.0 + 116.5000 44.7500 -64.0 + 118.2500 45.5000 -64.0 + 117.5000 47.2500 -64.0 +} -64.0 +v 87 z -194.000000 -64.0 +{ -64.0 + 105.2500 39.5000 -64.0 + 101.5000 41.2500 -64.0 + 90.5000 52.2500 -64.0 + 86.5000 59.2500 -64.0 + 86.2500 63.5000 -64.0 + 87.5000 63.7500 -64.0 + 99.5000 54.7500 -64.0 + 109.5000 49.7500 -64.0 + 114.5000 49.7500 -64.0 + 121.5000 52.7500 -64.0 + 132.2500 62.5000 -64.0 + 135.5000 62.7500 -64.0 + 135.5000 60.2500 -64.0 + 132.7500 53.5000 -64.0 + 126.7500 45.5000 -64.0 + 122.5000 42.2500 -64.0 + 116.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 118.5000 -64.0 + 117.2500 120.5000 -64.0 + 115.2500 124.5000 -64.0 + 117.5000 123.7500 -64.0 + 119.2500 124.5000 -64.0 + 118.5000 126.2500 -64.0 + 116.5000 127.2500 -64.0 + 116.2500 128.5000 -64.0 + 117.5000 128.7500 -64.0 + 121.5000 124.7500 -64.0 + 120.7500 121.5000 -64.0 + 119.5000 121.2500 -64.0 +} -64.0 +{ -64.0 + 131.2500 124.5000 -64.0 + 130.5000 125.2500 -64.0 + 128.2500 125.5000 -64.0 + 127.2500 127.5000 -64.0 + 129.2500 128.5000 -64.0 + 130.5000 127.7500 -64.0 + 132.5000 126.7500 -64.0 +} -64.0 +{ -64.0 + 125.2500 130.5000 -64.0 + 125.2500 132.5000 -64.0 + 122.2500 139.5000 -64.0 + 115.5000 145.2500 -64.0 + 108.5000 145.2500 -64.0 + 98.5000 139.2500 -64.0 + 101.2500 142.5000 -64.0 + 95.2500 145.5000 -64.0 + 98.5000 145.7500 -64.0 + 100.5000 144.7500 -64.0 + 106.2500 147.5000 -64.0 + 111.5000 147.7500 -64.0 + 114.7500 150.5000 -64.0 + 113.7500 148.5000 -64.0 + 115.5000 146.7500 -64.0 + 117.2500 147.5000 -64.0 + 117.5000 149.7500 -64.0 + 117.7500 147.5000 -64.0 + 123.5000 143.7500 -64.0 + 124.7500 140.5000 -64.0 + 127.5000 137.7500 -64.0 + 132.5000 137.7500 -64.0 + 135.5000 136.7500 -64.0 + 135.5000 135.2500 -64.0 + 131.5000 137.2500 -64.0 + 129.5000 136.2500 -64.0 + 126.5000 137.2500 -64.0 + 124.7500 136.5000 -64.0 + 126.5000 133.7500 -64.0 + 126.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 137.5000 -64.0 + 92.5000 138.2500 -64.0 + 88.5000 138.2500 -64.0 + 88.2500 142.5000 -64.0 + 89.5000 143.7500 -64.0 + 93.5000 145.7500 -64.0 + 89.7500 141.5000 -64.0 + 90.5000 140.7500 -64.0 + 94.5000 137.7500 -64.0 + 96.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 151.5000 -64.0 + 116.5000 154.7500 -64.0 + 116.7500 151.5000 -64.0 +} -64.0 +{ -64.0 + 110.7500 43.5000 -64.0 + 111.5000 42.7500 -64.0 + 113.2500 43.5000 -64.0 + 112.5000 45.2500 -64.0 +} -64.0 +{ -64.0 + 107.7500 44.5000 -64.0 + 108.5000 43.7500 -64.0 + 109.2500 44.5000 -64.0 + 108.5000 45.2500 -64.0 +} -64.0 +v 81 z -196.000000 -64.0 +{ -64.0 + 105.2500 39.5000 -64.0 + 101.2500 41.5000 -64.0 + 93.5000 51.2500 -64.0 + 90.2500 56.5000 -64.0 + 91.2500 58.5000 -64.0 + 93.5000 57.7500 -64.0 + 99.5000 52.7500 -64.0 + 105.5000 49.7500 -64.0 + 107.5000 49.7500 -64.0 + 109.5000 48.7500 -64.0 + 114.5000 48.7500 -64.0 + 122.5000 51.7500 -64.0 + 129.2500 57.5000 -64.0 + 131.5000 57.7500 -64.0 + 131.5000 56.2500 -64.0 + 128.7500 49.5000 -64.0 + 123.5000 43.2500 -64.0 + 119.7500 40.5000 -64.0 + 114.5000 40.2500 -64.0 + 112.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 119.5000 -64.0 + 117.2500 120.5000 -64.0 + 116.5000 122.2500 -64.0 + 111.5000 125.2500 -64.0 + 112.2500 126.5000 -64.0 + 115.5000 126.7500 -64.0 + 116.2500 128.5000 -64.0 + 115.5000 130.2500 -64.0 + 114.7500 129.5000 -64.0 + 111.5000 129.2500 -64.0 + 107.5000 131.2500 -64.0 + 102.5000 130.2500 -64.0 + 102.5000 131.7500 -64.0 + 111.5000 132.7500 -64.0 + 113.5000 130.7500 -64.0 + 117.5000 130.7500 -64.0 + 119.5000 128.7500 -64.0 + 121.5000 129.7500 -64.0 + 121.7500 128.5000 -64.0 + 120.7500 126.5000 -64.0 + 121.5000 125.7500 -64.0 + 122.5000 122.2500 -64.0 + 118.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 126.5000 -64.0 + 128.2500 128.5000 -64.0 + 125.5000 131.2500 -64.0 + 122.2500 140.5000 -64.0 + 118.5000 144.2500 -64.0 + 114.5000 146.2500 -64.0 + 110.5000 146.2500 -64.0 + 103.5000 143.2500 -64.0 + 96.7500 138.5000 -64.0 + 93.5000 138.2500 -64.0 + 91.5000 137.2500 -64.0 + 88.5000 138.2500 -64.0 + 88.2500 139.5000 -64.0 + 93.2500 140.5000 -64.0 + 92.2500 141.5000 -64.0 + 94.5000 141.7500 -64.0 + 97.5000 140.7500 -64.0 + 100.2500 143.5000 -64.0 + 97.2500 145.5000 -64.0 + 102.5000 145.7500 -64.0 + 106.2500 147.5000 -64.0 + 114.5000 149.7500 -64.0 + 116.2500 153.5000 -64.0 + 117.5000 153.7500 -64.0 + 117.7500 149.5000 -64.0 + 118.5000 147.7500 -64.0 + 125.5000 141.7500 -64.0 + 130.5000 138.7500 -64.0 + 133.5000 138.7500 -64.0 + 133.7500 137.5000 -64.0 + 130.5000 137.2500 -64.0 + 127.5000 138.2500 -64.0 + 125.7500 137.5000 -64.0 + 126.7500 132.5000 -64.0 + 129.5000 129.7500 -64.0 + 131.5000 128.7500 -64.0 + 134.5000 129.7500 -64.0 + 131.7500 126.5000 -64.0 +} -64.0 +v 78 z -198.000000 -64.0 +{ -64.0 + 104.2500 40.5000 -64.0 + 102.2500 41.5000 -64.0 + 98.2500 49.5000 -64.0 + 101.5000 49.7500 -64.0 + 105.5000 47.7500 -64.0 + 114.5000 47.7500 -64.0 + 125.5000 50.7500 -64.0 + 125.7500 49.5000 -64.0 + 123.7500 44.5000 -64.0 + 120.7500 41.5000 -64.0 + 113.5000 41.2500 -64.0 + 111.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 116.5000 -64.0 + 129.2500 117.5000 -64.0 + 130.5000 117.7500 -64.0 + 130.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 118.5000 -64.0 + 116.2500 119.5000 -64.0 + 117.5000 119.7500 -64.0 + 119.2500 122.5000 -64.0 + 119.2500 126.5000 -64.0 + 116.2500 129.5000 -64.0 + 115.2500 131.5000 -64.0 + 117.5000 131.7500 -64.0 + 120.7500 130.5000 -64.0 + 121.7500 128.5000 -64.0 + 120.7500 126.5000 -64.0 + 122.7500 124.5000 -64.0 + 123.7500 122.5000 -64.0 + 118.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 120.5000 -64.0 + 111.5000 121.2500 -64.0 + 106.5000 121.2500 -64.0 + 103.5000 124.2500 -64.0 + 101.5000 124.2500 -64.0 + 102.5000 125.7500 -64.0 + 104.5000 126.7500 -64.0 + 104.7500 125.5000 -64.0 + 108.5000 122.7500 -64.0 + 114.5000 122.7500 -64.0 + 115.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 127.5000 -64.0 + 124.5000 134.2500 -64.0 + 124.2500 137.5000 -64.0 + 120.5000 143.2500 -64.0 + 116.5000 146.2500 -64.0 + 113.5000 146.2500 -64.0 + 111.5000 147.2500 -64.0 + 99.7500 142.5000 -64.0 + 97.2500 145.5000 -64.0 + 103.5000 145.7500 -64.0 + 109.5000 148.7500 -64.0 + 114.5000 149.7500 -64.0 + 115.2500 151.5000 -64.0 + 116.7500 152.5000 -64.0 + 117.7500 147.5000 -64.0 + 120.5000 144.7500 -64.0 + 130.7500 138.5000 -64.0 + 126.5000 137.2500 -64.0 + 125.5000 139.2500 -64.0 + 124.7500 137.5000 -64.0 + 126.5000 135.7500 -64.0 + 126.7500 133.5000 -64.0 + 132.5000 128.7500 -64.0 + 133.2500 130.5000 -64.0 + 135.5000 132.7500 -64.0 + 135.7500 130.5000 -64.0 + 132.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 130.5000 -64.0 + 101.2500 132.5000 -64.0 + 104.7500 132.5000 -64.0 + 103.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 137.5000 -64.0 + 90.2500 140.5000 -64.0 + 95.5000 140.7500 -64.0 + 98.5000 141.7500 -64.0 + 98.7500 139.5000 -64.0 + 95.7500 137.5000 -64.0 +} -64.0 +v 75 z -200.000000 -64.0 +{ -64.0 + 107.2500 89.5000 -64.0 + 107.2500 91.5000 -64.0 + 109.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 90.2500 106.5000 -64.0 + 90.2500 108.5000 -64.0 + 91.7500 109.5000 -64.0 + 92.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 116.5000 -64.0 + 114.2500 117.5000 -64.0 + 116.5000 117.7500 -64.0 + 118.2500 120.5000 -64.0 + 118.2500 124.5000 -64.0 + 117.5000 126.2500 -64.0 + 113.5000 129.2500 -64.0 + 111.5000 129.2500 -64.0 + 109.5000 130.2500 -64.0 + 103.5000 130.2500 -64.0 + 101.2500 128.5000 -64.0 + 102.2500 130.5000 -64.0 + 102.2500 132.5000 -64.0 + 100.5000 133.2500 -64.0 + 98.7500 130.5000 -64.0 + 98.7500 128.5000 -64.0 + 97.2500 128.5000 -64.0 + 99.2500 134.5000 -64.0 + 101.5000 134.7500 -64.0 + 110.5000 131.7500 -64.0 + 112.2500 132.5000 -64.0 + 117.5000 132.7500 -64.0 + 121.5000 130.7500 -64.0 + 124.2500 132.5000 -64.0 + 124.2500 136.5000 -64.0 + 119.2500 144.5000 -64.0 + 113.5000 147.2500 -64.0 + 108.5000 146.2500 -64.0 + 107.2500 147.5000 -64.0 + 110.2500 149.5000 -64.0 + 112.5000 149.7500 -64.0 + 115.5000 152.7500 -64.0 + 118.5000 148.7500 -64.0 + 118.7500 146.5000 -64.0 + 123.5000 141.7500 -64.0 + 125.5000 141.7500 -64.0 + 125.7500 139.5000 -64.0 + 127.5000 135.7500 -64.0 + 127.7500 132.5000 -64.0 + 130.5000 129.7500 -64.0 + 132.5000 129.7500 -64.0 + 133.2500 131.5000 -64.0 + 134.5000 135.7500 -64.0 + 136.5000 134.7500 -64.0 + 136.7500 132.5000 -64.0 + 134.7500 128.5000 -64.0 + 131.5000 127.2500 -64.0 + 127.5000 130.2500 -64.0 + 123.5000 130.2500 -64.0 + 121.7500 126.5000 -64.0 + 125.7500 122.5000 -64.0 + 121.5000 122.2500 -64.0 + 119.7500 118.5000 -64.0 + 116.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 137.5000 -64.0 + 94.2500 139.5000 -64.0 + 93.2500 142.5000 -64.0 + 97.5000 142.7500 -64.0 + 100.7500 141.5000 -64.0 + 97.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 138.5000 -64.0 + 87.5000 141.2500 -64.0 + 88.2500 142.5000 -64.0 + 89.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 118.7500 125.5000 -64.0 + 119.5000 124.7500 -64.0 + 120.2500 125.5000 -64.0 + 119.5000 126.2500 -64.0 +} -64.0 +v 109 z -202.000000 -64.0 +{ -64.0 + 105.2500 86.5000 -64.0 + 103.5000 88.2500 -64.0 + 101.2500 88.5000 -64.0 + 104.5000 88.7500 -64.0 + 109.5000 86.7500 -64.0 + 114.5000 87.7500 -64.0 + 111.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 90.5000 -64.0 + 119.5000 90.7500 -64.0 + 121.5000 91.7500 -64.0 + 120.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 98.2500 91.5000 -64.0 + 97.2500 93.5000 -64.0 + 98.5000 93.7500 -64.0 +} -64.0 +{ -64.0 + 100.2500 94.5000 -64.0 + 99.5000 95.2500 -64.0 + 100.5000 95.7500 -64.0 + 101.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 115.5000 -64.0 + 107.5000 117.7500 -64.0 + 109.5000 116.7500 -64.0 + 113.5000 116.7500 -64.0 + 117.2500 120.5000 -64.0 + 114.5000 124.2500 -64.0 + 112.5000 124.2500 -64.0 + 107.5000 128.2500 -64.0 + 104.5000 128.2500 -64.0 + 102.5000 125.2500 -64.0 + 100.5000 124.2500 -64.0 + 100.2500 125.5000 -64.0 + 105.2500 130.5000 -64.0 + 107.5000 129.7500 -64.0 + 109.2500 130.5000 -64.0 + 115.5000 128.7500 -64.0 + 115.7500 126.5000 -64.0 + 119.5000 121.7500 -64.0 + 121.2500 122.5000 -64.0 + 122.2500 124.5000 -64.0 + 120.5000 126.2500 -64.0 + 120.2500 128.5000 -64.0 + 118.5000 130.2500 -64.0 + 115.2500 130.5000 -64.0 + 114.2500 132.5000 -64.0 + 115.5000 131.7500 -64.0 + 116.5000 132.7500 -64.0 + 118.5000 131.7500 -64.0 + 121.5000 131.7500 -64.0 + 124.2500 134.5000 -64.0 + 123.2500 139.5000 -64.0 + 114.5000 147.2500 -64.0 + 110.5000 147.2500 -64.0 + 105.5000 145.2500 -64.0 + 99.7500 139.5000 -64.0 + 99.7500 136.5000 -64.0 + 104.5000 134.7500 -64.0 + 104.7500 133.5000 -64.0 + 100.5000 133.2500 -64.0 + 98.5000 130.2500 -64.0 + 98.2500 132.5000 -64.0 + 95.5000 136.2500 -64.0 + 91.2500 136.5000 -64.0 + 88.5000 140.2500 -64.0 + 88.5000 142.7500 -64.0 + 92.2500 145.5000 -64.0 + 93.5000 144.7500 -64.0 + 100.5000 144.7500 -64.0 + 109.2500 149.5000 -64.0 + 111.5000 149.7500 -64.0 + 115.5000 154.7500 -64.0 + 116.5000 150.7500 -64.0 + 118.5000 149.7500 -64.0 + 122.5000 144.7500 -64.0 + 126.5000 141.7500 -64.0 + 128.5000 141.7500 -64.0 + 130.5000 139.7500 -64.0 + 132.5000 139.7500 -64.0 + 136.5000 136.7500 -64.0 + 136.7500 131.5000 -64.0 + 134.7500 127.5000 -64.0 + 131.5000 127.2500 -64.0 + 129.5000 129.2500 -64.0 + 131.2500 130.5000 -64.0 + 131.2500 132.5000 -64.0 + 133.2500 133.5000 -64.0 + 133.2500 135.5000 -64.0 + 131.5000 137.2500 -64.0 + 128.5000 137.2500 -64.0 + 126.7500 132.5000 -64.0 + 128.7500 130.5000 -64.0 + 124.5000 130.2500 -64.0 + 121.7500 126.5000 -64.0 + 123.5000 124.7500 -64.0 + 127.5000 122.7500 -64.0 + 127.5000 121.2500 -64.0 + 125.5000 122.2500 -64.0 + 122.5000 122.2500 -64.0 + 121.7500 120.5000 -64.0 + 118.5000 117.2500 -64.0 + 114.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 133.5000 -64.0 + 111.5000 134.7500 -64.0 + 112.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 90.7500 138.5000 -64.0 + 91.5000 137.7500 -64.0 + 93.5000 137.7500 -64.0 + 95.2500 139.5000 -64.0 + 96.2500 141.5000 -64.0 + 93.5000 144.2500 -64.0 + 90.7500 140.5000 -64.0 +} -64.0 +v 109 z -204.000000 -64.0 +{ -64.0 + 106.2500 85.5000 -64.0 + 105.2500 86.5000 -64.0 + 108.5000 86.7500 -64.0 + 109.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 115.5000 -64.0 + 110.2500 116.5000 -64.0 + 114.2500 118.5000 -64.0 + 113.5000 120.2500 -64.0 + 108.5000 120.2500 -64.0 + 106.5000 121.2500 -64.0 + 104.5000 121.2500 -64.0 + 99.2500 124.5000 -64.0 + 102.5000 124.7500 -64.0 + 106.5000 121.7500 -64.0 + 107.5000 123.7500 -64.0 + 109.5000 124.7500 -64.0 + 113.5000 121.7500 -64.0 + 117.5000 121.7500 -64.0 + 121.2500 123.5000 -64.0 + 121.2500 128.5000 -64.0 + 119.5000 130.2500 -64.0 + 117.5000 130.2500 -64.0 + 115.5000 131.2500 -64.0 + 113.5000 131.2500 -64.0 + 112.2500 132.5000 -64.0 + 117.5000 132.7500 -64.0 + 119.5000 131.7500 -64.0 + 121.5000 132.7500 -64.0 + 125.2500 136.5000 -64.0 + 123.2500 140.5000 -64.0 + 120.5000 143.2500 -64.0 + 116.5000 150.2500 -64.0 + 114.5000 151.2500 -64.0 + 112.7500 150.5000 -64.0 + 115.7500 148.5000 -64.0 + 112.5000 148.2500 -64.0 + 109.5000 147.2500 -64.0 + 104.5000 145.2500 -64.0 + 99.7500 140.5000 -64.0 + 99.7500 138.5000 -64.0 + 101.5000 136.7500 -64.0 + 106.7500 133.5000 -64.0 + 102.5000 133.2500 -64.0 + 100.5000 134.2500 -64.0 + 98.7500 133.5000 -64.0 + 98.5000 131.2500 -64.0 + 98.2500 133.5000 -64.0 + 96.2500 135.5000 -64.0 + 97.2500 137.5000 -64.0 + 96.5000 138.2500 -64.0 + 96.2500 140.5000 -64.0 + 97.2500 142.5000 -64.0 + 96.5000 144.2500 -64.0 + 93.5000 144.2500 -64.0 + 91.7500 143.5000 -64.0 + 91.7500 141.5000 -64.0 + 90.7500 139.5000 -64.0 + 90.7500 136.5000 -64.0 + 89.2500 136.5000 -64.0 + 90.2500 138.5000 -64.0 + 89.5000 140.2500 -64.0 + 89.2500 143.5000 -64.0 + 90.5000 144.7500 -64.0 + 94.5000 146.7500 -64.0 + 96.5000 145.7500 -64.0 + 98.5000 145.7500 -64.0 + 101.5000 146.7500 -64.0 + 107.2500 149.5000 -64.0 + 109.5000 149.7500 -64.0 + 113.2500 152.5000 -64.0 + 113.2500 154.5000 -64.0 + 115.5000 157.7500 -64.0 + 117.5000 156.7500 -64.0 + 116.7500 154.5000 -64.0 + 117.7500 151.5000 -64.0 + 123.5000 144.7500 -64.0 + 129.5000 141.7500 -64.0 + 131.5000 141.7500 -64.0 + 133.5000 140.7500 -64.0 + 135.5000 140.7500 -64.0 + 137.5000 138.7500 -64.0 + 137.7500 134.5000 -64.0 + 139.7500 129.5000 -64.0 + 136.7500 125.5000 -64.0 + 134.5000 125.2500 -64.0 + 132.5000 126.2500 -64.0 + 130.5000 126.2500 -64.0 + 130.2500 128.5000 -64.0 + 128.5000 130.2500 -64.0 + 124.5000 130.2500 -64.0 + 122.7500 128.5000 -64.0 + 121.7500 126.5000 -64.0 + 125.5000 123.7500 -64.0 + 129.5000 123.7500 -64.0 + 128.7500 122.5000 -64.0 + 124.5000 122.2500 -64.0 + 122.5000 121.2500 -64.0 + 114.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 132.7500 128.5000 -64.0 + 134.5000 127.7500 -64.0 + 136.2500 128.5000 -64.0 + 133.5000 130.2500 -64.0 +} -64.0 +{ -64.0 + 130.7500 133.5000 -64.0 + 131.5000 132.7500 -64.0 + 133.2500 133.5000 -64.0 + 134.2500 135.5000 -64.0 + 132.5000 137.2500 -64.0 + 127.5000 140.2500 -64.0 + 125.7500 139.5000 -64.0 +} -64.0 +v 97 z -206.000000 -64.0 +{ -64.0 + 107.2500 86.5000 -64.0 + 105.2500 87.5000 -64.0 + 114.5000 87.7500 -64.0 + 116.5000 88.7500 -64.0 + 117.5000 88.2500 -64.0 + 113.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 116.5000 -64.0 + 108.5000 118.2500 -64.0 + 102.5000 121.2500 -64.0 + 101.2500 124.5000 -64.0 + 107.5000 119.7500 -64.0 + 110.5000 119.7500 -64.0 + 116.5000 121.7500 -64.0 + 120.2500 125.5000 -64.0 + 119.5000 129.2500 -64.0 + 114.5000 132.2500 -64.0 + 123.5000 132.7500 -64.0 + 125.2500 134.5000 -64.0 + 125.2500 138.5000 -64.0 + 119.5000 146.2500 -64.0 + 113.5000 149.2500 -64.0 + 104.5000 146.2500 -64.0 + 99.7500 141.5000 -64.0 + 100.5000 137.7500 -64.0 + 106.5000 134.7500 -64.0 + 103.7500 133.5000 -64.0 + 100.5000 134.2500 -64.0 + 98.5000 131.2500 -64.0 + 98.2500 133.5000 -64.0 + 95.5000 137.2500 -64.0 + 90.5000 137.2500 -64.0 + 89.2500 142.5000 -64.0 + 90.2500 145.5000 -64.0 + 93.2500 147.5000 -64.0 + 95.5000 147.7500 -64.0 + 97.5000 146.7500 -64.0 + 102.5000 147.7500 -64.0 + 111.5000 151.7500 -64.0 + 110.7500 150.5000 -64.0 + 111.5000 149.7500 -64.0 + 114.5000 149.7500 -64.0 + 116.5000 148.7500 -64.0 + 118.2500 149.5000 -64.0 + 117.5000 151.2500 -64.0 + 117.2500 155.5000 -64.0 + 118.2500 157.5000 -64.0 + 117.5000 158.2500 -64.0 + 114.7500 156.5000 -64.0 + 114.7500 154.5000 -64.0 + 113.5000 153.2500 -64.0 + 113.2500 158.5000 -64.0 + 114.5000 159.7500 -64.0 + 116.5000 158.7500 -64.0 + 119.5000 158.7500 -64.0 + 117.7500 154.5000 -64.0 + 119.7500 149.5000 -64.0 + 125.5000 143.7500 -64.0 + 127.5000 143.7500 -64.0 + 131.5000 141.7500 -64.0 + 137.5000 140.7500 -64.0 + 141.5000 137.7500 -64.0 + 141.7500 132.5000 -64.0 + 140.5000 131.2500 -64.0 + 138.5000 134.2500 -64.0 + 136.7500 132.5000 -64.0 + 133.5000 134.2500 -64.0 + 131.7500 131.5000 -64.0 + 125.5000 131.2500 -64.0 + 121.7500 127.5000 -64.0 + 124.7500 123.5000 -64.0 + 117.5000 119.2500 -64.0 + 115.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 122.5000 -64.0 + 128.2500 123.5000 -64.0 + 130.2500 124.5000 -64.0 + 131.2500 126.5000 -64.0 + 132.5000 126.7500 -64.0 + 135.7500 124.5000 -64.0 + 132.5000 124.2500 -64.0 + 131.7500 122.5000 -64.0 + 130.5000 123.2500 -64.0 +} -64.0 +{ -64.0 + 132.5000 135.7500 -64.0 + 134.2500 136.5000 -64.0 + 134.2500 138.5000 -64.0 + 132.5000 139.2500 -64.0 + 130.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 90.7500 141.5000 -64.0 + 91.5000 140.7500 -64.0 + 93.5000 140.7500 -64.0 + 98.5000 142.7500 -64.0 + 101.2500 145.5000 -64.0 + 100.5000 146.2500 -64.0 + 98.5000 145.2500 -64.0 + 96.5000 146.2500 -64.0 + 94.7500 145.5000 -64.0 + 93.5000 146.2500 -64.0 + 90.7500 143.5000 -64.0 +} -64.0 +v 120 z -208.000000 -64.0 +{ -64.0 + 101.2500 87.5000 -64.0 + 100.2500 88.5000 -64.0 + 102.5000 88.7500 -64.0 + 102.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 116.5000 -64.0 + 111.5000 118.2500 -64.0 + 106.5000 119.2500 -64.0 + 105.5000 120.7500 -64.0 + 107.5000 119.7500 -64.0 + 111.5000 119.7500 -64.0 + 114.5000 120.7500 -64.0 + 116.2500 123.5000 -64.0 + 116.2500 126.5000 -64.0 + 115.5000 128.2500 -64.0 + 113.5000 128.2500 -64.0 + 114.5000 128.7500 -64.0 + 115.2500 130.5000 -64.0 + 112.2500 134.5000 -64.0 + 123.5000 131.7500 -64.0 + 125.5000 128.7500 -64.0 + 124.7500 127.5000 -64.0 + 124.7500 123.5000 -64.0 + 122.5000 125.2500 -64.0 + 121.7500 124.5000 -64.0 + 122.7500 121.5000 -64.0 + 121.7500 119.5000 -64.0 + 121.7500 116.5000 -64.0 + 120.5000 116.2500 -64.0 + 118.5000 117.2500 -64.0 +} -64.0 +{ -64.0 + 103.2500 121.5000 -64.0 + 102.2500 123.5000 -64.0 + 103.7500 123.5000 -64.0 + 104.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 122.5000 -64.0 + 131.2500 123.5000 -64.0 + 132.2500 125.5000 -64.0 + 134.7500 125.5000 -64.0 + 135.7500 123.5000 -64.0 + 133.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 127.5000 -64.0 + 135.2500 128.5000 -64.0 + 136.5000 129.7500 -64.0 + 136.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 99.2500 129.5000 -64.0 + 98.5000 130.2500 -64.0 + 98.2500 134.5000 -64.0 + 94.5000 138.2500 -64.0 + 91.5000 138.2500 -64.0 + 91.2500 139.5000 -64.0 + 88.5000 143.2500 -64.0 + 90.2500 145.5000 -64.0 + 90.2500 147.5000 -64.0 + 92.2500 148.5000 -64.0 + 94.5000 148.7500 -64.0 + 96.5000 147.7500 -64.0 + 101.5000 147.7500 -64.0 + 108.5000 150.7500 -64.0 + 113.2500 155.5000 -64.0 + 113.2500 157.5000 -64.0 + 112.5000 159.2500 -64.0 + 114.2500 161.5000 -64.0 + 115.5000 160.7500 -64.0 + 113.7500 159.5000 -64.0 + 114.5000 157.7500 -64.0 + 114.7500 155.5000 -64.0 + 110.7500 151.5000 -64.0 + 111.5000 150.7500 -64.0 + 113.2500 151.5000 -64.0 + 115.5000 151.7500 -64.0 + 117.5000 149.7500 -64.0 + 118.2500 150.5000 -64.0 + 117.5000 152.2500 -64.0 + 117.2500 155.5000 -64.0 + 118.5000 156.7500 -64.0 + 118.7500 153.5000 -64.0 + 120.7500 149.5000 -64.0 + 125.5000 144.7500 -64.0 + 129.5000 144.7500 -64.0 + 135.5000 142.7500 -64.0 + 139.5000 139.7500 -64.0 + 141.7500 138.5000 -64.0 + 142.7500 136.5000 -64.0 + 141.7500 134.5000 -64.0 + 141.2500 135.5000 -64.0 + 140.5000 137.2500 -64.0 + 138.5000 137.2500 -64.0 + 137.5000 135.2500 -64.0 + 135.5000 136.2500 -64.0 + 133.5000 136.2500 -64.0 + 130.5000 135.2500 -64.0 + 128.5000 137.2500 -64.0 + 126.5000 137.2500 -64.0 + 119.5000 147.2500 -64.0 + 114.5000 150.2500 -64.0 + 111.5000 150.2500 -64.0 + 101.5000 145.2500 -64.0 + 97.7500 140.5000 -64.0 + 97.7500 138.5000 -64.0 + 100.5000 136.7500 -64.0 + 104.5000 136.7500 -64.0 + 106.5000 135.7500 -64.0 + 108.5000 135.7500 -64.0 + 108.7500 134.5000 -64.0 + 106.5000 134.2500 -64.0 + 102.5000 130.2500 -64.0 + 100.5000 131.2500 -64.0 +} -64.0 +{ -64.0 + 87.2500 130.5000 -64.0 + 87.2500 132.5000 -64.0 + 87.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 135.5000 -64.0 + 90.2500 137.5000 -64.0 + 90.7500 136.5000 -64.0 +} -64.0 +{ -64.0 + 90.7500 143.5000 -64.0 + 91.5000 142.7500 -64.0 + 97.5000 142.7500 -64.0 + 100.2500 145.5000 -64.0 + 99.5000 146.2500 -64.0 + 96.5000 146.2500 -64.0 + 93.5000 147.2500 -64.0 + 91.7500 145.5000 -64.0 +} -64.0 +v 97 z -210.000000 -64.0 +{ -64.0 + 118.2500 115.5000 -64.0 + 117.5000 116.2500 -64.0 + 114.5000 116.2500 -64.0 + 108.5000 119.2500 -64.0 + 106.5000 119.2500 -64.0 + 103.2500 122.5000 -64.0 + 102.2500 124.5000 -64.0 + 104.5000 122.7500 -64.0 + 106.5000 121.7500 -64.0 + 112.5000 119.7500 -64.0 + 114.2500 121.5000 -64.0 + 115.2500 123.5000 -64.0 + 112.5000 126.2500 -64.0 + 112.2500 129.5000 -64.0 + 113.2500 131.5000 -64.0 + 111.5000 134.2500 -64.0 + 107.5000 134.2500 -64.0 + 104.7500 130.5000 -64.0 + 102.5000 130.2500 -64.0 + 100.7500 129.5000 -64.0 + 100.7500 127.5000 -64.0 + 98.5000 131.2500 -64.0 + 98.2500 134.5000 -64.0 + 99.2500 136.5000 -64.0 + 105.5000 137.7500 -64.0 + 111.5000 134.7500 -64.0 + 116.5000 134.7500 -64.0 + 119.5000 133.7500 -64.0 + 121.2500 134.5000 -64.0 + 123.5000 132.7500 -64.0 + 123.7500 129.5000 -64.0 + 121.5000 129.2500 -64.0 + 119.7500 128.5000 -64.0 + 119.7500 126.5000 -64.0 + 117.7500 122.5000 -64.0 + 118.5000 121.7500 -64.0 + 120.5000 120.7500 -64.0 + 121.7500 118.5000 -64.0 + 120.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 128.5000 -64.0 + 127.5000 132.2500 -64.0 + 127.2500 134.5000 -64.0 + 129.5000 132.7500 -64.0 + 131.2500 133.5000 -64.0 + 138.5000 133.7500 -64.0 + 138.7500 132.5000 -64.0 + 136.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 131.5000 -64.0 + 86.2500 132.5000 -64.0 + 87.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 137.5000 -64.0 + 139.5000 138.2500 -64.0 + 133.5000 138.2500 -64.0 + 129.5000 140.2500 -64.0 + 125.5000 140.2500 -64.0 + 123.2500 142.5000 -64.0 + 121.2500 146.5000 -64.0 + 116.5000 151.2500 -64.0 + 113.5000 151.2500 -64.0 + 113.2500 152.5000 -64.0 + 116.5000 155.7500 -64.0 + 118.5000 156.7500 -64.0 + 117.7500 155.5000 -64.0 + 118.7500 152.5000 -64.0 + 124.5000 146.7500 -64.0 + 128.5000 144.7500 -64.0 + 130.5000 145.7500 -64.0 + 132.5000 144.7500 -64.0 + 134.5000 144.7500 -64.0 + 137.7500 142.5000 -64.0 + 138.7500 140.5000 -64.0 + 140.5000 139.7500 -64.0 + 140.7500 138.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 141.5000 -64.0 + 92.5000 142.2500 -64.0 + 89.2500 142.5000 -64.0 + 88.2500 144.5000 -64.0 + 89.5000 147.7500 -64.0 + 93.5000 149.7500 -64.0 + 99.5000 147.7500 -64.0 + 102.5000 148.7500 -64.0 + 107.5000 150.7500 -64.0 + 113.2500 156.5000 -64.0 + 113.2500 158.5000 -64.0 + 114.5000 156.7500 -64.0 + 110.7500 152.5000 -64.0 + 110.7500 150.5000 -64.0 + 106.5000 148.2500 -64.0 + 100.5000 145.2500 -64.0 + 96.7500 141.5000 -64.0 +} -64.0 +{ -64.0 + 96.5000 143.7500 -64.0 + 98.2500 145.5000 -64.0 + 97.5000 147.2500 -64.0 + 93.5000 147.2500 -64.0 + 91.7500 146.5000 -64.0 + 92.5000 145.7500 -64.0 + 94.5000 145.7500 -64.0 +} -64.0 +v 108 z -212.000000 -64.0 +{ -64.0 + 118.2500 113.5000 -64.0 + 117.5000 115.2500 -64.0 + 114.5000 115.2500 -64.0 + 106.5000 120.2500 -64.0 + 104.5000 120.2500 -64.0 + 101.5000 123.2500 -64.0 + 101.2500 125.5000 -64.0 + 105.5000 121.7500 -64.0 + 109.5000 119.7500 -64.0 + 113.2500 120.5000 -64.0 + 114.2500 122.5000 -64.0 + 109.5000 130.2500 -64.0 + 105.5000 130.2500 -64.0 + 105.2500 131.5000 -64.0 + 103.5000 132.2500 -64.0 + 102.7500 130.5000 -64.0 + 104.7500 129.5000 -64.0 + 100.7500 128.5000 -64.0 + 100.7500 126.5000 -64.0 + 99.5000 127.2500 -64.0 + 98.5000 137.7500 -64.0 + 100.5000 138.7500 -64.0 + 100.7500 137.5000 -64.0 + 102.5000 136.7500 -64.0 + 106.5000 138.7500 -64.0 + 110.5000 136.7500 -64.0 + 120.5000 136.7500 -64.0 + 120.7500 134.5000 -64.0 + 117.7500 132.5000 -64.0 + 117.7500 124.5000 -64.0 + 116.7500 122.5000 -64.0 + 116.7500 120.5000 -64.0 + 118.5000 119.7500 -64.0 + 119.5000 117.7500 -64.0 + 119.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 117.5000 -64.0 + 120.2500 123.5000 -64.0 + 123.2500 129.5000 -64.0 + 123.2500 132.5000 -64.0 + 124.5000 131.7500 -64.0 + 124.7500 126.5000 -64.0 + 125.5000 124.7500 -64.0 + 124.7500 123.5000 -64.0 + 125.7500 121.5000 -64.0 + 123.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 128.5000 -64.0 + 131.5000 129.2500 -64.0 + 124.5000 137.2500 -64.0 + 124.2500 140.5000 -64.0 + 129.5000 137.7500 -64.0 + 129.7500 135.5000 -64.0 + 131.5000 134.7500 -64.0 + 133.5000 137.7500 -64.0 + 137.5000 135.7500 -64.0 + 139.5000 137.7500 -64.0 + 141.5000 136.7500 -64.0 + 140.5000 133.2500 -64.0 + 136.5000 131.2500 -64.0 + 135.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 139.5000 -64.0 + 88.2500 141.5000 -64.0 + 93.5000 141.7500 -64.0 + 95.2500 142.5000 -64.0 + 95.7500 141.5000 -64.0 + 92.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 140.5000 -64.0 + 133.5000 141.2500 -64.0 + 131.5000 141.2500 -64.0 + 129.5000 142.2500 -64.0 + 125.2500 142.5000 -64.0 + 123.2500 146.5000 -64.0 + 124.5000 146.7500 -64.0 + 126.5000 145.7500 -64.0 + 128.5000 145.7500 -64.0 + 131.5000 146.7500 -64.0 + 135.5000 143.7500 -64.0 + 137.7500 142.5000 -64.0 + 138.7500 140.5000 -64.0 + 137.5000 141.2500 -64.0 + 135.7500 140.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 143.5000 -64.0 + 94.5000 145.2500 -64.0 + 92.5000 145.2500 -64.0 + 90.5000 146.2500 -64.0 + 88.7500 145.5000 -64.0 + 87.2500 146.5000 -64.0 + 90.5000 146.7500 -64.0 + 92.5000 147.7500 -64.0 + 96.5000 145.7500 -64.0 + 98.2500 147.5000 -64.0 + 95.5000 149.2500 -64.0 + 92.2500 149.5000 -64.0 + 95.5000 149.7500 -64.0 + 97.5000 148.7500 -64.0 + 106.7500 149.5000 -64.0 + 102.7500 146.5000 -64.0 + 100.5000 146.2500 -64.0 + 97.7500 143.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 154.5000 -64.0 + 114.2500 157.5000 -64.0 + 116.5000 159.7500 -64.0 + 116.7500 154.5000 -64.0 + 115.5000 155.2500 -64.0 + 114.7500 154.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 162.5000 -64.0 + 111.5000 163.7500 -64.0 + 113.5000 164.7500 -64.0 + 113.7500 163.5000 -64.0 +} -64.0 +v 99 z -214.000000 -64.0 +{ -64.0 + 117.2500 114.5000 -64.0 + 116.5000 115.2500 -64.0 + 111.5000 115.2500 -64.0 + 110.2500 116.5000 -64.0 + 109.2500 118.5000 -64.0 + 107.5000 119.2500 -64.0 + 105.5000 120.2500 -64.0 + 103.5000 120.2500 -64.0 + 102.2500 121.5000 -64.0 + 101.2500 123.5000 -64.0 + 99.5000 124.2500 -64.0 + 99.2500 126.5000 -64.0 + 101.2500 130.5000 -64.0 + 102.5000 129.7500 -64.0 + 104.2500 130.5000 -64.0 + 106.2500 134.5000 -64.0 + 105.5000 136.2500 -64.0 + 103.5000 137.2500 -64.0 + 100.5000 136.2500 -64.0 + 97.7500 130.5000 -64.0 + 96.2500 131.5000 -64.0 + 97.2500 133.5000 -64.0 + 97.2500 135.5000 -64.0 + 99.2500 139.5000 -64.0 + 102.5000 139.7500 -64.0 + 104.5000 138.7500 -64.0 + 107.5000 138.7500 -64.0 + 111.5000 135.7500 -64.0 + 113.5000 135.7500 -64.0 + 113.7500 134.5000 -64.0 + 112.7500 132.5000 -64.0 + 115.5000 130.7500 -64.0 + 114.7500 129.5000 -64.0 + 114.7500 127.5000 -64.0 + 115.5000 125.7500 -64.0 + 115.7500 120.5000 -64.0 + 117.5000 118.7500 -64.0 + 117.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 116.5000 -64.0 + 120.2500 119.5000 -64.0 + 118.5000 128.2500 -64.0 + 120.2500 130.5000 -64.0 + 119.2500 131.5000 -64.0 + 121.2500 135.5000 -64.0 + 122.7500 135.5000 -64.0 + 124.5000 131.7500 -64.0 + 124.7500 121.5000 -64.0 + 123.7500 119.5000 -64.0 + 123.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 131.5000 -64.0 + 129.5000 133.2500 -64.0 + 125.2500 135.5000 -64.0 + 122.2500 142.5000 -64.0 + 116.5000 149.2500 -64.0 + 112.2500 152.5000 -64.0 + 115.7500 152.5000 -64.0 + 124.5000 146.7500 -64.0 + 124.7500 142.5000 -64.0 + 126.5000 141.7500 -64.0 + 128.2500 142.5000 -64.0 + 127.2500 145.5000 -64.0 + 129.2500 146.5000 -64.0 + 132.5000 146.7500 -64.0 + 134.5000 145.7500 -64.0 + 134.7500 143.5000 -64.0 + 132.5000 143.2500 -64.0 + 131.7500 141.5000 -64.0 + 133.5000 139.7500 -64.0 + 137.5000 139.7500 -64.0 + 139.5000 140.7500 -64.0 + 141.5000 139.7500 -64.0 + 141.7500 136.5000 -64.0 + 139.7500 134.5000 -64.0 + 137.5000 134.2500 -64.0 + 134.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 139.5000 -64.0 + 91.2500 141.5000 -64.0 + 90.5000 143.2500 -64.0 + 91.2500 144.5000 -64.0 + 93.5000 144.7500 -64.0 + 97.2500 147.5000 -64.0 + 98.7500 147.5000 -64.0 + 97.7500 145.5000 -64.0 + 97.7500 143.5000 -64.0 + 92.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 120.5000 -64.0 + 108.5000 119.7500 -64.0 + 110.5000 119.7500 -64.0 + 112.2500 120.5000 -64.0 + 113.2500 122.5000 -64.0 + 107.5000 127.2500 -64.0 + 103.5000 127.2500 -64.0 + 101.7500 126.5000 -64.0 + 101.7500 123.5000 -64.0 + 105.5000 120.7500 -64.0 +} -64.0 +{ -64.0 + 106.7500 132.5000 -64.0 + 108.5000 131.7500 -64.0 + 109.2500 133.5000 -64.0 + 107.5000 134.2500 -64.0 +} -64.0 +v 105 z -216.000000 -64.0 +{ -64.0 + 113.2500 114.5000 -64.0 + 112.5000 115.2500 -64.0 + 110.5000 116.2500 -64.0 + 108.2500 118.5000 -64.0 + 103.2500 120.5000 -64.0 + 106.5000 120.7500 -64.0 + 108.2500 121.5000 -64.0 + 107.5000 123.2500 -64.0 + 105.5000 123.2500 -64.0 + 98.5000 122.2500 -64.0 + 98.5000 123.7500 -64.0 + 100.5000 124.7500 -64.0 + 101.2500 126.5000 -64.0 + 104.5000 127.7500 -64.0 + 106.5000 126.7500 -64.0 + 111.5000 126.7500 -64.0 + 111.7500 124.5000 -64.0 + 114.5000 122.7500 -64.0 + 114.7500 120.5000 -64.0 + 116.5000 118.7500 -64.0 + 116.7500 116.5000 -64.0 + 115.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 116.5000 -64.0 + 119.5000 117.2500 -64.0 + 119.2500 120.5000 -64.0 + 115.2500 128.5000 -64.0 + 116.2500 130.5000 -64.0 + 115.5000 132.2500 -64.0 + 114.7500 131.5000 -64.0 + 107.5000 135.2500 -64.0 + 104.5000 135.2500 -64.0 + 102.7500 134.5000 -64.0 + 98.5000 129.2500 -64.0 + 96.5000 128.2500 -64.0 + 96.2500 131.5000 -64.0 + 97.2500 133.5000 -64.0 + 97.2500 137.5000 -64.0 + 98.2500 139.5000 -64.0 + 102.5000 139.7500 -64.0 + 106.5000 137.7500 -64.0 + 108.5000 137.7500 -64.0 + 112.5000 135.7500 -64.0 + 113.2500 136.5000 -64.0 + 117.5000 137.7500 -64.0 + 119.5000 136.7500 -64.0 + 121.5000 136.7500 -64.0 + 123.2500 137.5000 -64.0 + 124.2500 139.5000 -64.0 + 122.2500 144.5000 -64.0 + 117.5000 149.2500 -64.0 + 112.5000 152.2500 -64.0 + 107.5000 150.2500 -64.0 + 97.7500 142.5000 -64.0 + 89.5000 139.2500 -64.0 + 89.2500 140.5000 -64.0 + 90.5000 140.7500 -64.0 + 93.2500 144.5000 -64.0 + 92.2500 146.5000 -64.0 + 97.5000 146.7500 -64.0 + 110.5000 152.7500 -64.0 + 112.2500 153.5000 -64.0 + 112.2500 155.5000 -64.0 + 113.5000 156.7500 -64.0 + 115.5000 157.7500 -64.0 + 115.7500 155.5000 -64.0 + 119.5000 151.7500 -64.0 + 126.5000 145.7500 -64.0 + 127.2500 146.5000 -64.0 + 128.5000 145.7500 -64.0 + 135.5000 146.7500 -64.0 + 136.7500 145.5000 -64.0 + 137.7500 143.5000 -64.0 + 138.5000 141.7500 -64.0 + 138.7500 138.5000 -64.0 + 137.7500 135.5000 -64.0 + 135.5000 135.2500 -64.0 + 133.7500 134.5000 -64.0 + 135.5000 133.7500 -64.0 + 135.7500 132.5000 -64.0 + 134.7500 130.5000 -64.0 + 127.5000 134.2500 -64.0 + 124.7500 132.5000 -64.0 + 124.7500 129.5000 -64.0 + 126.7500 125.5000 -64.0 + 125.7500 123.5000 -64.0 + 121.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 108.7500 120.5000 -64.0 + 109.5000 119.7500 -64.0 + 110.2500 120.5000 -64.0 + 109.5000 121.2500 -64.0 +} -64.0 +{ -64.0 + 97.7500 133.5000 -64.0 + 98.5000 132.7500 -64.0 + 100.2500 134.5000 -64.0 + 101.2500 136.5000 -64.0 + 99.5000 137.2500 -64.0 +} -64.0 +{ -64.0 + 133.7500 142.5000 -64.0 + 134.5000 141.7500 -64.0 + 135.2500 142.5000 -64.0 + 136.2500 144.5000 -64.0 + 134.5000 146.2500 -64.0 + 132.7500 144.5000 -64.0 +} -64.0 +{ -64.0 + 114.5000 151.7500 -64.0 + 116.2500 152.5000 -64.0 + 114.5000 154.2500 -64.0 + 112.7500 153.5000 -64.0 +} -64.0 +v 104 z -218.000000 -64.0 +{ -64.0 + 113.2500 113.5000 -64.0 + 111.5000 114.2500 -64.0 + 112.2500 115.5000 -64.0 + 111.5000 117.2500 -64.0 + 108.5000 117.2500 -64.0 + 103.5000 121.2500 -64.0 + 101.5000 121.2500 -64.0 + 99.5000 122.2500 -64.0 + 100.5000 122.7500 -64.0 + 105.5000 123.7500 -64.0 + 113.5000 119.7500 -64.0 + 115.5000 116.7500 -64.0 + 115.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 116.5000 -64.0 + 118.2500 117.5000 -64.0 + 117.2500 122.5000 -64.0 + 115.5000 124.2500 -64.0 + 113.2500 125.5000 -64.0 + 112.2500 127.5000 -64.0 + 108.5000 131.2500 -64.0 + 106.7500 130.5000 -64.0 + 101.5000 130.2500 -64.0 + 98.5000 127.2500 -64.0 + 96.5000 126.2500 -64.0 + 96.2500 128.5000 -64.0 + 97.5000 127.7500 -64.0 + 98.2500 128.5000 -64.0 + 99.2500 130.5000 -64.0 + 105.2500 136.5000 -64.0 + 104.5000 138.2500 -64.0 + 102.5000 138.2500 -64.0 + 98.7500 136.5000 -64.0 + 97.7500 134.5000 -64.0 + 96.5000 136.2500 -64.0 + 96.2500 139.5000 -64.0 + 94.5000 141.2500 -64.0 + 91.2500 141.5000 -64.0 + 92.2500 143.5000 -64.0 + 94.5000 143.7500 -64.0 + 95.2500 145.5000 -64.0 + 93.5000 146.2500 -64.0 + 89.5000 144.2500 -64.0 + 89.2500 147.5000 -64.0 + 91.2500 148.5000 -64.0 + 98.5000 148.7500 -64.0 + 101.5000 149.7500 -64.0 + 107.2500 152.5000 -64.0 + 115.5000 153.7500 -64.0 + 117.2500 154.5000 -64.0 + 117.2500 156.5000 -64.0 + 118.7500 153.5000 -64.0 + 122.5000 149.7500 -64.0 + 126.5000 146.7500 -64.0 + 128.5000 146.7500 -64.0 + 130.5000 145.7500 -64.0 + 133.5000 146.7500 -64.0 + 136.5000 145.7500 -64.0 + 139.5000 140.7500 -64.0 + 139.7500 137.5000 -64.0 + 138.7500 135.5000 -64.0 + 134.5000 135.2500 -64.0 + 132.7500 133.5000 -64.0 + 133.5000 132.7500 -64.0 + 135.5000 131.7500 -64.0 + 135.5000 129.2500 -64.0 + 129.5000 133.2500 -64.0 + 126.5000 133.2500 -64.0 + 123.7500 130.5000 -64.0 + 124.7500 127.5000 -64.0 + 126.7500 126.5000 -64.0 + 127.7500 124.5000 -64.0 + 123.7500 122.5000 -64.0 + 123.7500 120.5000 -64.0 + 119.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 157.5000 -64.0 + 113.2500 159.5000 -64.0 + 114.2500 161.5000 -64.0 + 114.2500 163.5000 -64.0 + 115.5000 162.7500 -64.0 + 116.7500 157.5000 -64.0 + 115.5000 158.2500 -64.0 +} -64.0 +{ -64.0 + 117.7500 125.5000 -64.0 + 119.5000 124.7500 -64.0 + 123.2500 127.5000 -64.0 + 123.2500 129.5000 -64.0 + 119.5000 132.2500 -64.0 + 116.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 116.7500 137.5000 -64.0 + 117.5000 136.7500 -64.0 + 120.5000 136.7500 -64.0 + 123.5000 137.7500 -64.0 + 125.2500 140.5000 -64.0 + 124.5000 141.2500 -64.0 + 124.2500 143.5000 -64.0 + 121.2500 147.5000 -64.0 + 114.5000 152.2500 -64.0 + 111.5000 152.2500 -64.0 + 102.5000 148.2500 -64.0 + 98.7500 143.5000 -64.0 + 99.5000 141.7500 -64.0 + 105.5000 138.7500 -64.0 + 106.2500 139.5000 -64.0 + 108.5000 139.7500 -64.0 + 110.5000 137.7500 -64.0 +} -64.0 +v 134 z -220.000000 -64.0 +{ -64.0 + 114.2500 91.5000 -64.0 + 114.5000 92.7500 -64.0 + 116.5000 93.7500 -64.0 +} -64.0 +{ -64.0 + 90.2500 109.5000 -64.0 + 91.2500 111.5000 -64.0 + 92.5000 111.7500 -64.0 + 92.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 110.5000 -64.0 + 127.5000 110.7500 -64.0 + 129.5000 111.7500 -64.0 + 129.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 113.5000 -64.0 + 112.2500 115.5000 -64.0 + 110.5000 117.2500 -64.0 + 107.5000 117.2500 -64.0 + 104.5000 120.2500 -64.0 + 100.5000 120.2500 -64.0 + 100.2500 121.5000 -64.0 + 102.5000 121.7500 -64.0 + 104.5000 120.7500 -64.0 + 107.5000 120.7500 -64.0 + 111.5000 117.7500 -64.0 + 114.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 115.5000 -64.0 + 115.2500 120.5000 -64.0 + 112.5000 124.2500 -64.0 + 110.5000 124.2500 -64.0 + 108.5000 126.2500 -64.0 + 110.5000 128.7500 -64.0 + 112.5000 127.7500 -64.0 + 112.7500 125.5000 -64.0 + 117.5000 123.7500 -64.0 + 120.5000 124.7500 -64.0 + 123.2500 127.5000 -64.0 + 121.5000 134.2500 -64.0 + 119.5000 134.2500 -64.0 + 117.5000 135.2500 -64.0 + 116.7500 134.5000 -64.0 + 116.7500 131.5000 -64.0 + 115.5000 131.2500 -64.0 + 114.5000 133.2500 -64.0 + 112.5000 134.2500 -64.0 + 112.2500 137.5000 -64.0 + 125.5000 137.7500 -64.0 + 126.2500 139.5000 -64.0 + 125.2500 144.5000 -64.0 + 115.5000 154.2500 -64.0 + 111.5000 154.2500 -64.0 + 107.5000 151.2500 -64.0 + 101.5000 148.2500 -64.0 + 98.7500 144.5000 -64.0 + 99.5000 142.7500 -64.0 + 103.5000 139.7500 -64.0 + 105.5000 139.7500 -64.0 + 107.5000 138.7500 -64.0 + 109.2500 139.5000 -64.0 + 109.7500 138.5000 -64.0 + 107.7500 137.5000 -64.0 + 107.7500 135.5000 -64.0 + 106.5000 135.2500 -64.0 + 105.5000 138.2500 -64.0 + 99.5000 138.2500 -64.0 + 97.7500 136.5000 -64.0 + 97.7500 134.5000 -64.0 + 96.2500 137.5000 -64.0 + 93.5000 140.2500 -64.0 + 91.5000 141.2500 -64.0 + 91.2500 142.5000 -64.0 + 89.5000 143.2500 -64.0 + 88.2500 147.5000 -64.0 + 89.5000 148.7500 -64.0 + 95.5000 149.2500 -64.0 + 94.7500 147.5000 -64.0 + 96.5000 145.7500 -64.0 + 100.2500 148.5000 -64.0 + 99.2500 149.5000 -64.0 + 102.2500 151.5000 -64.0 + 105.5000 151.7500 -64.0 + 109.2500 154.5000 -64.0 + 116.5000 154.7500 -64.0 + 118.2500 155.5000 -64.0 + 117.2500 160.5000 -64.0 + 120.7500 152.5000 -64.0 + 124.5000 148.7500 -64.0 + 128.5000 146.7500 -64.0 + 133.5000 146.7500 -64.0 + 136.5000 145.7500 -64.0 + 139.5000 142.7500 -64.0 + 140.5000 138.7500 -64.0 + 139.7500 136.5000 -64.0 + 137.5000 136.2500 -64.0 + 134.5000 140.2500 -64.0 + 130.5000 140.2500 -64.0 + 128.7500 138.5000 -64.0 + 133.5000 135.7500 -64.0 + 135.5000 135.7500 -64.0 + 137.5000 134.7500 -64.0 + 134.5000 133.2500 -64.0 + 128.5000 136.2500 -64.0 + 123.7500 130.5000 -64.0 + 123.7500 128.5000 -64.0 + 125.5000 126.7500 -64.0 + 128.7500 126.5000 -64.0 + 127.7500 124.5000 -64.0 + 124.5000 124.2500 -64.0 + 120.7500 119.5000 -64.0 + 118.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 125.5000 -64.0 + 96.5000 126.2500 -64.0 + 96.2500 128.5000 -64.0 + 97.5000 128.7500 -64.0 + 99.2500 129.5000 -64.0 + 104.5000 129.7500 -64.0 + 107.5000 128.7500 -64.0 + 107.7500 127.5000 -64.0 + 106.5000 127.2500 -64.0 + 104.5000 126.2500 -64.0 + 100.5000 128.2500 -64.0 + 98.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 134.2500 129.5000 -64.0 + 131.5000 131.2500 -64.0 + 132.5000 131.7500 -64.0 + 135.5000 130.7500 -64.0 + 135.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 159.5000 -64.0 + 113.2500 161.5000 -64.0 + 114.5000 161.7500 -64.0 +} -64.0 +{ -64.0 + 90.7500 144.5000 -64.0 + 91.5000 143.7500 -64.0 + 93.2500 144.5000 -64.0 + 94.2500 146.5000 -64.0 + 93.5000 148.2500 -64.0 + 91.5000 148.2500 -64.0 + 89.7500 146.5000 -64.0 +} -64.0 +v 125 z -222.000000 -64.0 +{ -64.0 + 114.2500 92.5000 -64.0 + 114.2500 93.5000 -64.0 + 116.5000 93.7500 -64.0 + 115.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 95.5000 -64.0 + 94.5000 97.7500 -64.0 + 96.5000 96.7500 -64.0 +} -64.0 +{ -64.0 + 127.2500 106.5000 -64.0 + 126.5000 107.2500 -64.0 + 127.2500 108.5000 -64.0 + 127.2500 110.5000 -64.0 + 129.7500 110.5000 -64.0 + 128.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 109.5000 -64.0 + 91.2500 110.5000 -64.0 + 92.2500 113.5000 -64.0 + 93.5000 113.7500 -64.0 + 92.7500 112.5000 -64.0 + 92.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 115.5000 -64.0 + 90.5000 115.7500 -64.0 + 92.5000 116.7500 -64.0 + 92.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 115.5000 -64.0 + 112.5000 119.2500 -64.0 + 112.2500 121.5000 -64.0 + 110.5000 123.2500 -64.0 + 108.2500 123.5000 -64.0 + 114.5000 123.7500 -64.0 + 114.7500 121.5000 -64.0 + 116.5000 119.7500 -64.0 + 122.2500 128.5000 -64.0 + 121.2500 131.5000 -64.0 + 118.5000 134.2500 -64.0 + 115.5000 134.2500 -64.0 + 118.2500 136.5000 -64.0 + 117.5000 137.2500 -64.0 + 118.5000 137.7500 -64.0 + 124.5000 135.7500 -64.0 + 124.7500 126.5000 -64.0 + 123.5000 126.2500 -64.0 + 119.7500 122.5000 -64.0 + 119.7500 120.5000 -64.0 + 117.7500 118.5000 -64.0 + 117.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 124.5000 -64.0 + 100.5000 125.2500 -64.0 + 98.5000 125.2500 -64.0 + 99.2500 126.5000 -64.0 + 99.2500 128.5000 -64.0 + 98.5000 130.2500 -64.0 + 99.5000 130.7500 -64.0 + 101.5000 128.7500 -64.0 + 106.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 125.5000 -64.0 + 127.2500 127.5000 -64.0 + 129.5000 127.7500 -64.0 + 129.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 128.5000 -64.0 + 131.2500 129.5000 -64.0 + 135.5000 129.7500 -64.0 + 135.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 133.5000 -64.0 + 129.5000 135.2500 -64.0 + 127.2500 137.5000 -64.0 + 125.2500 141.5000 -64.0 + 126.2500 144.5000 -64.0 + 116.2500 155.5000 -64.0 + 117.2500 157.5000 -64.0 + 117.5000 162.7500 -64.0 + 117.7500 158.5000 -64.0 + 123.5000 150.7500 -64.0 + 130.5000 146.7500 -64.0 + 135.5000 146.7500 -64.0 + 140.5000 140.7500 -64.0 + 140.7500 138.5000 -64.0 + 139.5000 138.2500 -64.0 + 134.5000 143.2500 -64.0 + 129.5000 143.2500 -64.0 + 128.7500 141.5000 -64.0 + 129.5000 139.7500 -64.0 + 132.5000 139.7500 -64.0 + 136.5000 136.7500 -64.0 + 138.5000 136.7500 -64.0 + 138.7500 135.5000 -64.0 + 135.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 136.5000 -64.0 + 97.2500 137.5000 -64.0 + 94.5000 139.2500 -64.0 + 90.5000 141.2500 -64.0 + 90.2500 143.5000 -64.0 + 88.5000 145.2500 -64.0 + 88.5000 148.7500 -64.0 + 90.5000 149.7500 -64.0 + 89.7500 147.5000 -64.0 + 90.5000 145.7500 -64.0 + 92.5000 144.7500 -64.0 + 94.5000 146.7500 -64.0 + 99.7500 147.5000 -64.0 + 98.7500 145.5000 -64.0 + 98.7500 143.5000 -64.0 + 100.5000 141.7500 -64.0 + 106.7500 139.5000 -64.0 + 104.5000 139.2500 -64.0 + 101.5000 138.2500 -64.0 + 98.5000 139.2500 -64.0 + 97.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 137.5000 -64.0 + 113.5000 137.7500 -64.0 + 115.5000 138.7500 -64.0 + 115.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 148.5000 -64.0 + 99.5000 150.2500 -64.0 + 96.5000 150.2500 -64.0 + 94.5000 149.2500 -64.0 + 92.5000 150.2500 -64.0 + 94.5000 151.7500 -64.0 + 97.5000 150.7500 -64.0 + 105.5000 152.7500 -64.0 + 111.5000 158.7500 -64.0 + 111.7500 155.5000 -64.0 +} -64.0 +{ -64.0 + 129.7500 136.5000 -64.0 + 130.5000 135.7500 -64.0 + 132.2500 136.5000 -64.0 + 131.5000 137.2500 -64.0 +} -64.0 +v 115 z -224.000000 -64.0 +{ -64.0 + 114.2500 93.5000 -64.0 + 114.5000 93.7500 -64.0 + 116.5000 94.7500 -64.0 + 115.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 96.5000 -64.0 + 95.2500 97.5000 -64.0 + 96.7500 97.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 104.5000 -64.0 + 126.2500 108.5000 -64.0 + 126.7500 107.5000 -64.0 + 125.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 109.5000 -64.0 + 127.2500 110.5000 -64.0 + 128.5000 110.7500 -64.0 + 128.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 111.5000 -64.0 + 93.2500 114.5000 -64.0 + 91.2500 115.5000 -64.0 + 93.5000 115.7500 -64.0 + 93.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 113.5000 -64.0 + 132.2500 114.5000 -64.0 + 133.7500 115.5000 -64.0 + 134.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 115.5000 -64.0 + 111.2500 120.5000 -64.0 + 107.5000 122.2500 -64.0 + 102.5000 122.2500 -64.0 + 100.5000 123.2500 -64.0 + 102.2500 126.5000 -64.0 + 98.5000 131.2500 -64.0 + 98.5000 132.7500 -64.0 + 101.7500 130.5000 -64.0 + 103.7500 126.5000 -64.0 + 108.5000 123.7500 -64.0 + 111.5000 123.7500 -64.0 + 113.5000 120.7500 -64.0 + 115.2500 121.5000 -64.0 + 116.5000 120.7500 -64.0 + 116.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 121.5000 -64.0 + 117.2500 122.5000 -64.0 + 120.2500 126.5000 -64.0 + 120.2500 128.5000 -64.0 + 118.5000 130.2500 -64.0 + 114.5000 133.2500 -64.0 + 114.2500 135.5000 -64.0 + 118.5000 135.7500 -64.0 + 119.2500 137.5000 -64.0 + 117.5000 139.2500 -64.0 + 115.5000 139.2500 -64.0 + 113.7500 137.5000 -64.0 + 112.2500 139.5000 -64.0 + 121.5000 139.7500 -64.0 + 122.7500 138.5000 -64.0 + 125.7500 132.5000 -64.0 + 124.7500 129.5000 -64.0 + 126.5000 125.7500 -64.0 + 125.5000 124.2500 -64.0 + 123.5000 125.2500 -64.0 + 120.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 135.5000 -64.0 + 97.2500 136.5000 -64.0 + 95.2500 141.5000 -64.0 + 94.5000 143.2500 -64.0 + 88.5000 146.2500 -64.0 + 88.2500 149.5000 -64.0 + 94.5000 152.7500 -64.0 + 96.5000 151.7500 -64.0 + 103.5000 152.7500 -64.0 + 109.5000 155.7500 -64.0 + 108.7500 154.5000 -64.0 + 102.5000 150.2500 -64.0 + 100.5000 149.2500 -64.0 + 99.5000 151.2500 -64.0 + 96.5000 151.2500 -64.0 + 94.7500 149.5000 -64.0 + 96.5000 147.7500 -64.0 + 99.5000 148.7500 -64.0 + 97.7500 145.5000 -64.0 + 97.7500 143.5000 -64.0 + 98.5000 141.7500 -64.0 + 103.5000 141.7500 -64.0 + 107.5000 139.7500 -64.0 + 106.5000 139.2500 -64.0 + 104.7500 138.5000 -64.0 + 105.7500 136.5000 -64.0 + 103.5000 136.2500 -64.0 + 101.5000 138.2500 -64.0 + 98.7500 135.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 135.5000 -64.0 + 124.5000 142.2500 -64.0 + 127.2500 145.5000 -64.0 + 124.2500 149.5000 -64.0 + 131.5000 145.7500 -64.0 + 137.5000 145.7500 -64.0 + 140.7500 141.5000 -64.0 + 138.5000 141.2500 -64.0 + 134.5000 144.2500 -64.0 + 131.5000 144.2500 -64.0 + 129.7500 143.5000 -64.0 + 138.5000 139.7500 -64.0 + 138.5000 136.2500 -64.0 + 136.5000 135.2500 -64.0 + 137.2500 136.5000 -64.0 + 136.5000 138.2500 -64.0 + 134.7500 137.5000 -64.0 + 132.5000 138.2500 -64.0 + 131.5000 140.2500 -64.0 + 129.7500 139.5000 -64.0 + 131.7500 135.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 164.5000 -64.0 + 115.2500 166.5000 -64.0 + 116.5000 166.7500 -64.0 + 116.7500 164.5000 -64.0 +} -64.0 + -64.0 \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom1249.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom1249.pts new file mode 100644 index 000000000000..e3d4e09ed6a0 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom1249.pts @@ -0,0 +1,1249 @@ +1248 +27.850301 -17.970299 134.875148 +-25.310101 -17.089901 117.229948 +-30.421501 -21.008499 144.254249 +0.114400 -1.784400 50.132200 +-18.264400 12.484400 101.627799 +17.396600 -1.906600 99.023301 +21.175900 -19.185901 135.392952 +21.063600 -19.043600 132.826796 +-22.225100 -15.724900 108.897448 +8.249500 -14.839500 101.639749 +29.463299 -5.123300 142.671651 +28.427000 -18.197000 149.973500 +20.364199 6.405800 114.632099 +14.811500 -9.141500 105.235749 +-15.004000 -8.116000 98.497997 +19.542701 -11.952700 123.446353 +-10.693900 -4.016100 58.998050 +-18.223399 -13.286600 96.398302 +-24.134400 11.784400 107.332801 +-23.475999 8.946000 104.191998 +-4.457700 9.027700 56.901148 +16.912700 15.277300 98.476347 +12.924100 12.075900 77.677051 +-21.715099 6.515100 96.397452 +10.053100 -2.053100 61.576548 +8.974900 -5.644900 68.852447 +29.422501 -20.732500 142.186247 +31.027899 -19.127900 149.983950 +27.245601 -13.955600 143.737795 +27.104600 -21.824600 149.962300 +22.975500 -13.585500 143.232755 +17.288300 -16.248301 111.504147 +11.139900 -5.079900 66.779953 +5.708200 -5.798200 66.274099 +9.299900 -4.059900 60.559951 +18.658001 -17.238001 120.339001 +28.983600 -7.483600 149.996800 +27.157400 -17.317400 149.988700 +30.981799 -14.521800 149.960900 +20.507200 17.852800 112.518598 +14.246800 -7.776800 92.238399 +15.299200 -12.349200 106.839596 +20.051600 -15.941601 125.510798 +17.014300 -12.824300 114.637149 +22.088301 -9.988300 120.869147 +18.696699 -9.706700 114.113353 +21.106100 -15.646100 129.163047 +22.033800 -2.333800 121.891898 +-19.762800 -11.657200 96.948599 +-20.256000 10.436000 98.992001 +-2.200600 2.110600 56.369702 +4.071700 -2.541700 66.255849 +3.152600 -1.982600 62.086299 +9.701500 -1.501500 62.625749 +14.424000 10.726000 88.107003 +-17.650600 6.960600 97.964700 +-16.106900 1.746900 89.671550 +3.865300 -3.635300 75.612649 +3.290200 -2.310200 69.370102 +-16.555599 8.445600 91.712202 +-7.549400 1.549400 62.095299 +6.940000 -9.100000 95.914998 +7.074300 -4.804300 73.542148 +-19.513600 4.613600 100.078202 +-20.076300 6.286300 102.651850 +-18.569800 -9.290200 100.035102 +-20.560200 1.840200 99.014901 +-17.004301 -7.375700 95.372852 +-15.204500 -11.905500 99.517748 +-11.031800 -10.748200 96.414102 +-4.650500 -7.619500 80.814746 +10.709000 -15.099000 110.989500 +9.578600 -12.348600 107.329301 +0.532000 -11.422000 103.195997 +-20.686101 6.686100 104.721952 +-15.619500 -8.810500 100.040252 +-15.200400 -10.819600 104.194798 +-12.088800 -11.001200 104.220598 +10.674700 -9.114700 102.117354 +20.819301 -18.709300 132.819646 +20.199099 -12.049100 128.674543 +19.385099 -11.085100 123.957550 +-20.917200 -9.272800 92.751403 +-4.043800 -2.546200 51.163101 +-9.308000 -4.242000 58.466000 +-16.998900 -14.221100 97.475553 +-15.706300 -13.303700 92.791853 +-19.028101 -12.051900 90.675951 +-22.591499 15.911500 100.584248 +-15.927600 14.587600 91.711202 +3.550800 8.709200 54.815400 +16.712400 11.697600 99.021201 +-19.986700 12.906700 96.921649 +-11.174600 7.344600 64.152697 +-13.900700 8.860700 77.674651 +11.669300 -3.059300 65.219648 +15.810500 0.239500 89.140254 +5.729900 -1.889900 53.249949 +7.298300 1.991700 57.419149 +23.049200 11.560800 111.494597 +20.645301 4.974700 113.057652 +13.972400 -3.812400 76.116204 +25.074399 0.045600 121.367202 +24.139500 4.980500 116.704751 +24.998800 -17.598800 145.279407 +26.568401 -16.038400 146.854205 +29.687400 -21.817400 149.958700 +22.317100 -19.487100 141.113554 +25.554001 -17.094000 148.407002 +23.782200 -13.892200 146.856105 +27.890600 -16.050599 147.355294 +12.177100 -4.727100 67.308550 +9.268400 -5.148400 63.159200 +10.442500 -4.652500 60.026251 +11.252200 -4.762200 65.236098 +8.167200 -3.957200 64.183597 +7.972200 -4.402200 66.261099 +-19.830300 13.350300 103.164847 +30.963699 -7.213700 149.951850 +19.028700 14.271300 109.414352 +18.123000 15.257000 105.256499 +25.123199 -0.783200 126.596598 +23.697200 8.712800 116.683601 +22.574900 2.235100 119.282450 +22.567500 9.082500 114.078753 +23.254100 5.555900 117.232048 +20.163701 14.096300 113.586848 +24.498400 -20.888400 149.954200 +18.343900 -7.843900 101.601949 +15.379100 -10.709100 108.904548 +15.561800 -12.021800 110.440903 +12.753200 -13.093200 108.906598 +17.214001 -12.934000 112.521998 +17.983100 -12.533100 114.631549 +12.877700 -11.097700 103.713851 +12.889700 -9.189700 101.594849 +12.393600 -13.353600 103.161797 +20.851200 -17.701200 130.215605 +20.459600 -17.209600 127.624799 +20.577200 -13.737200 125.553598 +19.710300 -16.280299 122.945149 +19.676200 -15.496200 122.928099 +12.485200 -11.985200 105.252599 +11.968600 -13.238600 106.829296 +21.251200 -8.951200 115.150604 +21.900801 -7.770800 118.780403 +19.093600 -0.583600 105.761803 +22.807101 0.602900 117.213548 +22.114700 6.175300 112.542348 +12.904200 -9.734200 107.327101 +11.800100 -10.420100 109.390052 +19.031600 -11.781600 121.380802 +21.798900 2.881100 117.214448 +22.072500 5.927500 114.596249 +22.255400 -4.445400 119.797696 +22.579200 -0.669200 119.284600 +18.505701 -11.765700 116.707851 +23.753101 -11.153100 131.261549 +23.506001 -2.996000 123.983000 +23.473301 -5.973300 123.966650 +22.830800 -4.360800 121.870398 +-19.869601 -13.140400 97.955200 +-20.318900 -11.191100 95.365552 +-21.455201 -1.124800 98.992401 +-20.642100 -9.617900 96.928949 +-22.819500 11.419500 103.675251 +-21.773300 11.133300 102.113354 +-21.579701 9.669700 99.015151 +-2.144400 1.054400 53.792799 +-4.323100 1.703100 55.838451 +-0.517400 -2.832600 58.471300 +-1.598500 -0.901500 53.790749 +-3.327100 -1.722900 54.831450 +-6.151400 2.481400 58.479300 +-7.639500 -2.870500 58.995250 +-4.462400 -3.167600 61.063802 +-8.892300 -3.417700 59.488850 +2.383600 -2.413600 66.271799 +-1.912000 4.502000 55.359001 +8.304700 -1.794700 60.532351 +6.917900 -0.907900 57.918949 +0.455600 1.654400 54.312800 +4.490400 -0.380400 55.310201 +4.719600 1.400400 55.329801 +5.251200 -3.031200 61.070602 +4.253600 -2.293600 55.836801 +-1.507200 5.247200 57.431399 +9.099200 -1.539200 61.579598 +-3.477400 5.587400 57.436299 +5.813900 -3.023900 62.626949 +5.740100 -3.320100 64.685051 +7.698300 0.961700 61.079152 +7.038400 3.821600 60.524201 +-1.123300 5.973300 58.473350 +-11.906800 -9.293200 96.391602 +-11.910600 -8.269400 97.959700 +0.503600 -10.243600 101.626799 +-4.825000 -9.885000 98.487497 +17.830800 5.989200 98.510397 +-14.861700 10.991700 86.029151 +15.921900 13.058100 92.750953 +15.026600 9.873400 88.103303 +-19.060499 10.430500 98.994751 +-18.130300 12.180300 96.929849 +-17.176200 10.856200 94.316901 +-17.909900 2.589900 96.955049 +-19.156400 4.436400 96.916799 +-19.930999 4.581000 98.499497 +5.521700 -4.311700 71.965850 +-19.701600 12.661600 100.069202 +-20.812100 11.672100 98.483947 +-20.825200 12.795200 96.917399 +-18.757200 13.337200 93.281400 +-18.345499 13.475500 90.702251 +-20.228600 9.038600 97.455703 +-18.708099 7.788100 96.405952 +-16.348100 9.858100 90.195947 +-7.977300 3.337300 60.541351 +-11.808700 4.728700 71.995650 +-10.434000 3.634000 65.202998 +-5.086500 -4.323500 71.466753 +0.870600 -3.170600 75.100303 +-2.508200 -4.341800 75.095903 +-9.061500 5.131500 65.209248 +0.447400 8.312600 61.558698 +0.540500 9.129500 65.230248 +-7.760200 6.150200 62.099899 +-5.932200 9.472200 62.098899 +-10.075900 7.105900 68.332051 +7.026000 -4.076000 69.872998 +10.748600 -1.578600 65.744302 +7.064500 -3.804500 67.802246 +-14.228600 7.048600 81.830697 +0.624000 -3.784000 78.732002 +-2.199100 -7.120900 83.945449 +0.910300 -4.610300 79.770153 +-1.691200 -6.778800 81.879397 +-14.983700 -7.696300 96.913149 +-8.715400 -8.384600 93.307300 +-13.627000 -7.513000 93.826496 +13.315700 8.914300 81.347851 +14.384600 -1.814600 84.457303 +3.888300 -2.638300 71.449153 +-20.895399 9.765400 102.112304 +-19.105800 9.415800 100.592098 +-19.144600 7.074600 99.522698 +-21.144901 7.764900 101.102553 +-21.158100 5.308100 100.035952 +-20.203401 4.733400 100.078302 +-20.285100 6.535100 99.552448 +-19.867501 6.977500 97.956250 +-16.701200 -10.818800 102.654400 +-16.249600 -11.180400 101.110203 +-19.134101 -12.015900 97.987950 +-16.947700 -11.412300 97.981150 +-17.707000 -10.403000 98.506497 +-19.436600 -9.163400 100.031702 +-21.721901 2.901900 99.029051 +-21.651400 4.391400 101.599299 +-17.619800 -10.570200 96.935099 +-19.640300 -10.629700 95.374852 +-18.564900 -1.845100 97.447553 +-17.973400 -4.876600 94.328301 +-17.237900 -8.492100 96.956049 +-19.617101 -9.482900 95.876448 +-19.072001 -7.548000 95.898998 +-20.384401 1.644400 95.907798 +-16.475200 2.025200 89.642400 +-0.915300 -11.574700 99.532348 +5.236500 -11.196500 101.118253 +7.105100 -12.185100 103.692551 +-4.833600 -12.456400 99.548198 +3.587700 -12.287700 104.233848 +-11.012100 -10.037900 99.548948 +-14.849800 -12.400200 99.520098 +-11.471800 -11.978200 100.044102 +-13.937900 -10.512100 99.546048 +-14.697600 -10.622400 102.126204 +-16.399499 -13.070500 97.435253 +-16.645599 -10.554400 96.437202 +-14.318900 -9.381100 96.435552 +-16.075000 -11.765000 97.432503 +-13.879100 -11.310900 96.405452 +8.370300 -6.840300 78.730152 +5.836600 -8.476600 90.158297 +8.049600 -7.739600 84.989800 +6.871800 -13.841800 100.060902 +2.995900 -5.875900 79.272949 +-9.843800 -11.666200 93.308100 +-10.480200 -12.669800 96.439902 +4.401700 -4.881700 74.040852 +4.844300 -6.424300 70.932149 +6.401900 -6.821900 76.635950 +-2.854500 -7.305500 75.117753 +-12.435900 -5.864100 77.672051 +-16.050100 -6.369900 87.584948 +-14.378200 -7.051800 91.210898 +-17.341500 -3.838500 91.719252 +-16.670000 -7.100000 92.790003 +-16.213400 -6.776600 90.183297 +-14.210300 -9.339700 95.369852 +-0.693600 -3.496400 66.798203 +1.874500 -4.614500 73.032251 +16.307500 -14.677500 114.098753 +12.886800 -14.746800 108.388402 +16.145200 -14.355200 111.992601 +19.079701 -15.199700 120.344851 +18.376101 -14.066100 116.163047 +-6.587500 -13.632500 101.591249 +-12.355600 -12.534400 102.152204 +2.780700 -13.090700 104.190348 +-16.055700 -13.014300 100.557148 +-18.943901 -9.896100 101.638049 +-19.953901 2.633900 100.033052 +-11.035400 -9.444600 102.652300 +-14.802200 -9.647800 103.188897 +-19.080200 4.940200 100.034902 +-19.051199 9.191200 102.634400 +11.654100 -9.624100 105.782053 +3.878300 -11.078300 104.199148 +10.226000 -14.306000 110.443003 +-20.797801 -12.252200 92.231099 +18.481301 1.958700 105.255649 +3.080900 -10.280900 101.090453 +-20.208101 13.128100 90.710951 +-9.834500 10.214500 64.157747 +-21.474900 13.394900 95.362552 +2.548200 -1.428200 49.629099 +6.123200 -2.783200 54.286600 +4.486300 2.443700 51.688151 +5.448100 2.181900 53.784049 +9.673400 0.846600 60.536701 +9.712600 8.327400 65.196298 +22.982500 17.437500 112.026251 +23.942899 12.657100 115.671450 +18.971300 8.268700 104.755652 +21.303101 8.846900 111.491547 +21.161500 11.518500 111.515747 +20.607900 -4.577900 108.883948 +22.374501 15.865500 108.362252 +29.379899 -7.159900 148.399952 +22.148200 -18.958199 138.514098 +23.999200 -14.069200 146.359601 +30.092000 -20.322000 145.316007 +25.465401 -18.835400 147.887698 +9.726500 -4.096500 61.043252 +10.248800 -4.328800 62.629399 +9.941900 -2.591900 62.635949 +10.080400 -1.990400 63.665200 +5.986500 -3.566500 66.793253 +7.280200 -4.320200 66.260099 +31.057399 -6.397400 149.998700 +21.694800 8.405200 114.607399 +22.731200 13.688800 113.030602 +22.918801 11.191200 113.589398 +21.985999 12.554000 113.048002 +21.906799 11.493200 113.573398 +22.248400 1.821600 119.794196 +16.536301 -2.806300 94.323151 +18.774899 -2.934900 105.782453 +15.962600 -10.982600 108.911298 +17.625200 -11.455200 112.532598 +14.680600 -10.850600 106.805296 +14.956100 -11.846100 108.878048 +16.422500 -11.012500 112.516248 +15.800800 -10.710800 110.950400 +16.323700 -13.233700 110.441853 +12.565700 -12.055700 101.607849 +12.073700 -9.623700 103.671851 +9.856000 -6.856000 78.237998 +19.813300 -12.463300 123.476653 +11.211700 -10.151700 103.685851 +13.702600 -11.622600 107.356301 +13.741200 -11.611200 106.795596 +10.592600 -14.672600 109.941299 +10.970000 -14.090000 104.730002 +20.161701 -8.141700 108.380852 +18.341101 -2.181100 103.670551 +21.176500 -4.256500 115.113254 +19.864300 -3.604300 110.972150 +19.000100 -2.800100 107.320051 +15.300200 -9.330200 107.320101 +17.744199 -11.234200 114.607099 +18.064699 -11.294700 116.687351 +18.155199 -10.645200 117.212598 +22.239300 0.710700 119.319650 +23.097000 5.023000 116.683501 +22.833101 4.646900 119.306550 +23.943600 0.026400 121.896798 +24.344800 0.935200 121.887398 +22.038699 5.551300 114.109353 +21.817901 7.242100 114.098953 +22.650900 6.489100 114.590449 +22.047599 -3.577600 117.238798 +23.728501 -3.518500 121.894248 +21.818500 -1.128500 117.224248 +20.224299 -3.374300 113.042152 +20.642800 -3.622800 115.146404 +23.035299 0.004700 119.307650 +22.762501 -3.402500 119.271250 +26.109100 -5.889100 131.774553 +26.260599 -2.320600 129.175297 +24.383699 -5.773700 126.556848 +24.585801 -3.455800 123.987900 +24.507800 -1.517800 123.478903 +23.095200 -1.885200 121.892598 +-21.069200 -10.340800 95.895398 +-21.263501 -9.066500 97.443253 +-21.871401 11.921400 102.154304 +-22.629499 10.979500 102.125254 +-3.089700 4.849700 54.810150 +-1.995700 1.025700 53.247149 +-3.808300 4.718300 55.315851 +-2.563500 -2.246500 53.773249 +-4.778300 -1.591700 55.310851 +-3.715500 -2.444500 54.827250 +-2.715500 -1.094500 53.787249 +-4.852400 3.982400 58.473800 +-4.653400 4.553400 57.393299 +-4.061100 2.651100 56.904448 +-2.546700 2.416700 55.326651 +-8.068300 -1.411700 58.985850 +-3.838900 1.728900 56.915548 +-7.604500 -2.105500 58.462750 +-6.998900 -3.171100 58.460550 +-5.521700 0.361700 57.949149 +-2.973200 1.153200 55.353401 +-1.923500 -0.326500 55.353251 +-10.482400 3.952400 67.303800 +-3.653800 -3.206200 65.213098 +-1.448400 -3.021600 66.765803 +-9.218600 3.098600 65.190698 +-0.462900 2.592900 54.273550 +8.063300 -0.003300 58.476650 +2.443600 -1.503600 52.196802 +1.720900 -0.570900 51.685451 +0.261300 -1.001300 51.715651 +-1.007300 0.077300 53.236349 +1.049300 -1.919300 54.794650 +-1.498700 0.418700 54.270650 +-1.444500 0.014500 54.827750 +4.184200 2.065800 54.802100 +4.460000 2.760000 53.254999 +6.734300 2.025700 57.927149 +4.345700 1.744300 56.382852 +-0.237900 -2.462100 58.461050 +5.872000 -0.702000 55.336001 +6.442400 1.107600 57.931199 +3.319600 -1.989600 58.474800 +4.282500 1.017500 55.351251 +-1.445000 3.595000 55.877501 +-0.485100 2.845100 55.877451 +-1.454600 2.024600 54.822700 +5.745400 2.754600 55.857701 +5.633700 0.426300 55.311851 +4.461200 -0.811200 52.715598 +3.570900 1.759100 53.270449 +3.250700 0.399300 52.195352 +5.723800 3.876200 56.881898 +-0.977000 5.387000 57.396499 +4.967600 -2.257600 53.778799 +-1.971400 5.711400 56.384302 +8.033400 1.716600 60.016701 +9.139800 -0.679800 61.599898 +8.949100 -0.669100 61.074552 +9.047300 -1.457300 62.088649 +7.109500 4.410500 59.479750 +7.933100 3.676900 60.556551 +-8.984900 -9.175100 95.897548 +0.598900 -9.778900 100.034452 +-17.128199 12.078200 96.925899 +16.645199 2.394800 95.882598 +15.626100 1.453900 90.703051 +14.841600 12.258400 90.150797 +-15.930800 9.370800 90.169597 +15.111600 10.078400 89.650800 +-18.572300 12.242300 100.033852 +-19.811201 12.281200 97.984400 +-16.347099 13.737100 91.741452 +-18.811701 13.021700 92.269149 +-17.837300 13.337300 92.276349 +-17.081200 13.271200 93.314400 +-17.856500 4.066500 98.516747 +-18.786001 4.746000 98.476997 +-21.000300 3.670300 98.474847 +-20.752300 2.872300 98.513847 +7.249400 -5.679400 69.369702 +5.777500 -4.487500 70.408752 +4.603200 -3.233200 67.296600 +5.974100 -4.854100 67.287050 +5.335200 -3.745200 69.372602 +-16.499700 13.289700 90.685151 +-20.912000 12.362000 96.958999 +-21.594200 12.804200 98.517897 +-20.775100 12.475100 98.502447 +-20.759800 13.199800 96.950099 +-15.283200 13.193200 86.533398 +-19.654900 12.824900 93.807546 +-18.396400 7.436400 94.846797 +-18.371999 13.702000 89.129004 +-7.789900 4.059900 59.475050 +-9.356500 1.886500 62.606749 +-10.212100 3.162100 62.613949 +-15.292300 10.132300 86.038851 +-14.785000 9.135000 81.832497 +-10.827800 2.417800 64.156097 +-10.210600 2.390600 65.759702 +-6.756800 -3.573200 65.236598 +-9.469600 1.919600 64.170197 +-2.924400 -3.455600 69.902798 +-10.137300 5.887300 68.861347 +-12.612300 6.612300 77.713851 +1.076400 9.473600 64.698201 +-2.029800 6.949800 57.415099 +3.301900 -2.221900 67.790946 +8.036200 6.673800 64.173097 +-10.128600 6.178600 66.245699 +-8.139300 6.189300 61.570348 +-4.122300 7.932300 58.973850 +-4.172100 8.732100 59.488950 +-8.603300 3.333300 62.608349 +0.563200 -2.753200 66.791603 +0.562000 9.988000 68.346001 +-9.018100 7.958100 62.615949 +-6.984000 8.674000 61.562998 +-9.686800 7.526800 64.176597 +-7.311800 6.531800 62.604099 +-11.889900 7.249900 71.455053 +-10.956700 7.646700 65.726652 +-10.665100 6.305100 70.952449 +-9.969900 7.579900 65.210048 +-9.153600 7.653600 65.723202 +9.043200 -4.543200 67.796596 +8.712100 -4.102100 66.776053 +11.849900 -4.369900 67.794946 +6.775700 -3.965700 71.967850 +10.736500 1.233500 65.738252 +11.129600 8.350400 71.974800 +9.522200 -0.442200 62.591099 +8.286700 3.443300 61.598348 +9.468700 0.561300 62.619349 +-11.538400 -8.511600 96.410802 +14.541400 9.548600 87.060702 +13.429200 -2.329200 77.184597 +-19.824700 11.724700 101.637649 +-20.738800 10.828800 100.560598 +-20.055999 10.966000 100.551998 +-19.408699 9.348700 98.990651 +-20.488900 9.278900 101.080553 +-21.865900 7.415900 99.537048 +-21.178800 4.638800 98.470597 +-20.600600 5.500600 101.599699 +-20.710699 6.380700 97.959650 +-20.677699 6.937700 97.976150 +-20.338200 5.858200 99.525898 +-20.277300 11.417300 102.156354 +-20.647399 7.817400 102.631300 +-16.013600 -13.416400 100.578198 +-18.070301 -13.779700 99.544848 +-19.446700 -12.923300 99.541648 +-17.209300 -11.720700 99.545348 +-16.739900 -11.550100 99.520048 +-19.026900 -9.703100 100.061552 +-17.887701 -12.452300 99.546148 +-15.971300 -11.148700 99.559348 +-15.678100 -9.831900 101.605949 +-15.446900 -11.083100 102.661550 +-20.269301 -9.190700 100.045352 +-19.640699 -10.939300 98.474647 +-21.477400 5.407400 100.046302 +-18.805799 -11.964200 96.437102 +-17.937401 -2.042600 95.886298 +-17.162600 -0.177400 91.728702 +-18.283601 0.073600 95.878198 +-20.225801 -2.194200 95.902098 +-19.877400 -1.292600 97.466303 +-17.522800 -8.377200 98.513597 +-19.861900 -0.118100 97.474053 +-19.426100 1.256100 97.436953 +-19.457500 -9.512500 96.936249 +-18.080600 -9.899400 96.954699 +-20.346100 -9.883900 95.351952 +-18.459300 -7.490700 96.930349 +-18.618901 -7.741100 95.880548 +-18.978800 -8.421200 96.920599 +-20.064400 -7.895600 97.452803 +-19.394500 -4.695500 97.452753 +-19.944901 -8.645100 94.317551 +-20.432301 -8.337700 95.883848 +-19.915901 -5.434100 95.892048 +-21.048100 -0.571900 95.905948 +-14.592100 8.032100 80.798946 +-1.273500 -10.286500 100.048252 +2.758700 -11.898700 101.104353 +4.969800 -11.599800 101.074903 +0.497400 -11.537400 101.103703 +0.686300 -10.626300 101.633149 +-1.961500 -11.018500 100.049252 +8.126300 -10.126300 100.583148 +3.692500 -11.092500 102.666250 +6.195400 -11.235400 102.677700 +6.806500 -13.476500 102.123254 +5.796200 -12.036200 102.148104 +7.812300 -13.262300 101.596149 +7.333800 -11.483800 102.121904 +4.534400 -13.864400 102.132204 +0.311100 -12.631100 101.100553 +-2.320100 -13.109900 101.094953 +-0.060000 -12.310000 102.650000 +7.110100 -12.570100 103.695051 +-13.817700 -9.012300 99.521148 +-11.398700 -9.541300 101.090653 +-13.059600 -9.500400 97.980200 +-1.984100 -10.455900 101.612949 +-10.137700 -10.152300 97.456153 +-10.090500 -11.269500 97.479753 +-7.062300 -11.657700 98.473847 +-10.540700 -9.509300 99.529648 +-8.871800 -10.628200 100.589098 +-9.435300 -11.774700 99.022351 +-12.858100 -11.651900 99.020951 +-10.158400 -11.291600 100.555798 +-14.481000 -12.549000 97.469503 +-9.823700 -10.536300 102.638150 +-4.578100 -11.361900 101.630949 +-4.400300 -11.479700 100.034852 +-13.624600 -10.285400 97.952700 +-12.417300 -11.102700 102.671350 +-12.059100 -11.050900 101.110453 +-13.340600 -10.629400 101.079703 +-12.703600 -11.966400 100.583198 +-13.709000 -11.591000 101.070503 +-13.886400 -11.173600 102.646800 +-14.580800 -10.569200 102.654600 +-16.395599 -13.674400 96.957199 +-15.273900 -12.876100 94.853047 +-16.463399 -12.186600 95.398302 +-16.845900 -12.194100 97.467053 +-16.270699 -10.559300 94.849647 +-14.895900 -7.924100 95.357052 +-15.952600 -11.837400 95.888698 +8.999400 -8.169400 88.624699 +-1.951400 -7.968600 80.839296 +1.519900 -13.839900 99.029951 +-3.163900 -13.006100 99.523048 +-2.444000 -8.756000 87.058002 +-2.377500 -11.922500 96.416252 +-5.825300 -11.704700 98.497347 +-4.285300 -11.234700 98.502347 +-3.072700 -9.337300 92.783653 +-2.852700 -9.197300 91.228648 +-10.256200 -13.323800 100.046902 +-7.767800 -12.682200 99.541098 +3.179500 -5.899500 75.594749 +3.816800 -5.836800 74.068402 +5.268300 -4.898300 74.594148 +5.013300 -5.403300 77.176647 +4.839400 -5.449400 76.149704 +-0.478400 -6.161600 78.725802 +-3.160100 -6.699900 78.209948 +4.905800 -4.335800 74.037902 +5.658800 -5.768800 73.034401 +-18.743100 -12.386900 94.838447 +-5.969000 -5.351000 71.455503 +-14.914300 -4.505700 78.207848 +-12.596700 3.606700 72.476647 +-16.529799 -2.190200 87.570098 +-14.929800 -2.460200 80.835096 +-16.021900 -2.008100 85.479047 +-16.434299 -4.845700 85.492847 +-17.649101 -4.930900 92.780453 +-17.411000 -5.029000 91.759502 +-15.047400 -7.062600 89.661300 +-19.743401 -10.336600 92.773303 +-19.632000 -11.398000 92.253999 +-20.240601 -10.509400 94.334701 +-8.613500 -8.606500 90.718251 +-10.367600 -8.342400 93.286200 +-14.576100 -12.593900 91.751952 +-15.813600 -11.806400 91.203198 +-16.881300 -10.578700 93.819346 +-5.934000 -8.366000 88.118003 +-3.775600 -6.304400 76.112204 +-3.915400 -5.844600 74.572298 +-2.848200 -4.781800 73.530898 +1.946800 -5.566800 71.978400 +3.504500 -4.074500 74.042252 +3.815800 -4.355800 72.992901 +4.350600 -5.480600 71.435303 +4.330000 -5.250000 72.494997 +3.807500 -5.237500 70.398752 +2.250300 -5.580300 73.030151 +-1.741100 -4.118900 73.514448 +-0.621600 -3.908400 71.474203 +-1.640700 -5.509300 77.179647 +-1.134300 -4.735700 76.117854 +0.886300 -4.846300 77.178147 +0.960500 -4.980500 75.595249 +19.434700 -15.774700 122.917349 +16.403399 -15.823400 113.566698 +14.380000 -13.650000 106.839996 +12.812500 -13.552500 106.791246 +12.593000 -14.553000 106.286500 +14.959600 -14.949600 109.944799 +14.348700 -12.868700 108.369352 +14.253200 -14.333200 110.456603 +15.051900 -15.101900 112.025951 +19.063800 -12.133800 118.796903 +17.765000 -16.035001 115.677500 +-1.132400 -12.367600 103.168797 +-7.281300 -14.248700 101.594349 +-12.936200 -13.733800 102.126904 +-19.031599 -1.878400 99.009201 +-18.427901 2.807900 98.486047 +5.566800 -11.906800 104.233398 +8.440000 -10.640000 104.229998 +18.891900 1.818100 107.355951 +-20.619101 -12.610900 92.240449 +2.507200 -0.277200 49.103599 +18.247300 3.062700 102.113654 +19.661600 11.418400 109.920799 +17.886900 4.673100 102.113454 +-19.567501 14.097500 89.146254 +-8.484300 9.104300 61.052852 +-10.928400 9.608400 64.670801 +9.342000 5.998000 62.605999 +12.389100 10.620900 74.074552 +23.612199 17.337800 114.111103 +20.930699 7.409300 110.460353 +19.408001 3.942000 107.339001 +21.632499 12.437500 109.396252 +19.459799 11.880200 107.834897 +21.044199 9.885800 109.952099 +19.995600 12.884400 111.507797 +20.822699 10.117300 112.011351 +21.259400 9.530600 112.034701 +20.094301 15.515700 110.992150 +22.501500 15.058500 110.950750 +21.912701 12.347300 111.506347 +19.004100 15.795900 105.242049 +19.710200 15.499800 108.905098 +21.259000 16.191000 110.434503 +17.803699 13.776300 102.156854 +15.177400 9.722600 87.078702 +21.939200 -18.989199 138.529598 +23.911700 -13.801700 146.315851 +9.310900 -2.930900 62.110449 +23.127999 13.542000 113.034002 +22.026599 15.673400 113.068302 +22.630500 10.409500 114.110253 +22.306500 13.003500 113.578248 +21.877799 12.492200 113.558898 +22.036099 10.133900 114.108053 +9.660500 -9.490500 100.570248 +13.234500 -11.634500 105.267249 +15.683900 -11.453900 110.986950 +15.229400 -10.339400 108.919698 +16.328500 -11.218500 110.444253 +11.132700 -14.082700 102.661350 +14.446700 -13.526700 106.293350 +10.165900 -10.055900 104.192948 +11.387200 -9.647200 103.683601 +12.260800 -13.720800 104.740402 +11.562800 -13.462800 106.811396 +20.435100 -3.325100 110.967550 +21.217500 1.302500 117.223748 +20.850901 2.799100 115.150454 +22.218400 5.011600 117.219198 +22.275201 5.924800 114.597599 +23.548200 4.351800 118.784103 +23.407600 2.952400 119.283800 +20.810401 -3.450400 115.130204 +22.672000 1.668000 119.800996 +23.458500 0.581500 119.309250 +22.526901 -4.516900 119.833446 +26.467201 -2.627200 129.168597 +25.050799 -2.240800 126.560398 +-18.884899 -12.705100 96.397552 +-20.838900 -11.701100 96.910549 +-20.707300 -10.302700 94.346351 +-21.245200 12.155200 100.077402 +-2.979900 -0.100100 53.750049 +-1.436100 -1.653900 54.831950 +-1.004900 -1.265100 54.287550 +-4.738300 -2.201700 54.835850 +-2.840700 -0.669300 54.839650 +-2.847700 3.237700 55.851151 +-3.452400 4.162400 56.373802 +-1.977500 1.127500 54.316250 +-3.410300 2.150300 55.324851 +-9.306400 1.176400 60.556801 +-9.533000 1.113000 61.563498 +-9.235700 1.735700 61.552148 +-5.845100 -0.054900 57.392449 +-6.742400 -0.627600 58.988800 +-6.203500 -2.826500 56.913248 +-6.574700 -0.845300 58.472650 +-4.095700 0.715700 55.857151 +-3.577500 -1.022500 55.876251 +-1.324400 4.944400 58.997800 +1.937000 -0.987000 50.133500 +0.420500 1.349500 53.775249 +2.204900 0.255100 50.642450 +8.248700 -1.888700 59.484350 +6.950800 0.389200 57.935399 +-0.660600 -0.699400 53.269699 +-1.436900 0.696900 53.776549 +-2.051700 1.461700 55.334151 +-1.472900 -0.287100 54.813550 +-0.004700 0.984700 54.317650 +-0.319900 -2.520100 57.950049 +3.078400 -1.708400 53.254199 +5.237000 3.113000 55.848501 +-1.456500 2.376500 55.346751 +5.973600 2.056400 55.336801 +3.632100 -0.452100 52.756048 +3.661100 0.328900 51.675551 +5.372600 3.557400 57.401299 +-1.218900 5.388900 56.375552 +-16.900299 0.640300 92.754853 +-8.766600 -8.563400 94.831697 +-17.369600 11.989600 98.505197 +-14.430800 11.680800 83.424602 +-18.450301 11.330300 98.474847 +-18.156600 12.666600 92.276699 +-19.437900 12.877900 95.391052 +-19.977801 5.607800 97.986100 +7.468500 -4.268500 67.279250 +7.634000 -4.934000 68.831997 +6.310500 -3.440500 68.330251 +-17.804000 13.144000 97.973000 +-19.238299 12.828300 98.505847 +-16.842600 13.172600 89.123704 +-17.875700 9.275700 97.457153 +-17.528501 10.848500 95.360752 +-10.420200 1.940200 61.599898 +-5.235100 4.685100 57.397449 +-10.689100 1.659100 62.080449 +-9.898600 0.778600 63.675700 +-6.698200 -4.701800 70.430902 +-10.887500 -1.062500 63.111250 +0.190800 -3.010800 71.970400 +-0.084200 -3.165800 74.037902 +-8.963700 6.073700 65.758152 +-9.851000 6.131000 66.774503 +-2.943200 -6.006800 79.243399 +-2.575900 -4.564100 76.122054 +-10.995400 5.735400 71.472303 +7.643600 5.836400 61.051802 +6.448300 4.791700 58.964150 +-1.015200 6.165200 57.427399 +11.096800 9.553200 71.478403 +9.057300 6.952700 65.208648 +-8.771400 3.781400 62.074299 +-3.283700 7.473700 57.433149 +-2.533300 6.363300 57.943349 +-3.161800 8.221800 57.929099 +-6.149500 6.839500 58.980250 +-7.230500 8.290500 61.049752 +-7.556200 4.366200 60.541901 +-9.994300 4.304300 64.187847 +-8.963900 4.083900 63.148050 +-7.231200 8.501200 62.094399 +-4.680400 9.130400 60.029801 +-8.176900 6.906900 62.606549 +-6.618500 9.308500 63.665750 +-6.622300 8.532300 63.663850 +7.832100 4.517900 61.581048 +9.177400 6.492600 64.188697 +11.363700 8.996300 73.526848 +-14.315900 8.395900 81.857047 +9.925000 -8.095000 91.732502 +7.637400 -8.527400 92.273699 +-16.025100 -1.074900 87.597448 +13.503600 11.316400 80.826796 +14.441300 4.428700 82.915648 +3.068000 -5.418000 79.238999 +5.164300 -4.084300 73.037151 +-19.133900 10.793900 100.578048 +-19.882701 9.742700 100.553648 +-21.877999 8.168000 101.086003 +-18.307699 12.037700 100.076152 +-18.956600 8.146600 99.531698 +-20.833301 8.623300 99.538348 +-20.579900 5.269900 98.515047 +-21.368699 7.318700 97.965650 +-15.711300 -13.398700 102.149354 +-18.242199 -14.137800 99.543898 +-19.128900 -13.381100 99.530548 +-18.751200 -13.208800 101.079403 +-17.369601 -13.450400 100.595198 +-15.470100 -10.289900 99.554948 +-17.622000 -11.998000 97.979000 +-18.969501 -12.970500 97.985250 +-20.297800 -9.522200 98.486097 +-20.041400 -8.988600 97.464303 +-22.337700 6.107700 101.606149 +-21.421200 4.661200 98.519397 +-19.942101 -5.897900 94.318951 +-20.196300 -2.363700 97.471853 +-20.205400 0.605400 97.467303 +-20.026100 1.306100 97.471953 +-19.501500 0.671500 96.914249 +-18.046900 -9.563100 98.506547 +-20.152400 -9.007600 96.918799 +-19.113601 -8.916400 98.483197 +-19.917400 -5.452600 98.991301 +-19.058700 -7.431300 97.455653 +-20.600200 -5.409800 95.879898 +-20.391500 -4.828500 97.459253 +-18.158801 0.618800 95.375602 +-18.085800 -0.914200 94.352101 +-21.077800 1.227800 97.451103 +-20.904700 3.534700 95.892648 +-20.725500 -0.774500 94.337251 +1.656800 -12.046800 99.528398 +1.375800 -10.685800 101.107903 +-2.204500 -9.755500 96.942749 +2.351300 -13.141300 100.560648 +4.268100 -13.268100 100.564048 +4.446000 -11.966000 101.073003 +1.185800 -12.065800 102.652900 +3.278700 -13.098700 102.124354 +2.657400 -11.867400 102.678700 +-0.041200 -11.088800 101.619399 +4.417300 -12.107300 102.673650 +7.918300 -9.928300 102.149154 +5.226100 -13.316100 101.623049 +7.224300 -13.044300 102.157154 +7.005200 -14.205200 101.632599 +-0.241100 -13.088900 101.084453 +-1.299100 -11.680900 101.605449 +-0.725400 -11.414600 101.107303 +-3.895800 -12.704200 101.622099 +-2.657700 -12.092300 101.626149 +-1.259700 -13.020300 102.145154 +5.117700 -13.427700 103.683851 +6.028100 -12.468100 104.194048 +-9.005600 -11.644400 97.432203 +-7.580700 -10.549300 99.009651 +-8.126200 -9.903800 98.991901 +-9.141600 -11.488400 98.999201 +-9.957600 -9.722400 100.566198 +-6.761800 -12.628200 100.064102 +-10.849200 -11.060800 97.435403 +-10.337200 -11.122800 98.996401 +-15.430000 -13.560000 99.015001 +-13.858600 -13.471400 99.030701 +-11.126300 -12.393700 98.481847 +-5.201100 -10.968900 102.114454 +-4.884800 -10.385200 100.587598 +-7.142300 -10.377700 100.583848 +-9.404900 -10.375100 102.127554 +-2.794400 -12.145600 100.062802 +-3.641800 -11.558200 98.484097 +-4.366100 -10.783900 100.051952 +-16.248799 -12.571200 95.905598 +-15.558200 -9.601800 100.070902 +-12.069800 -11.720200 102.115104 +-12.968800 -11.831200 102.110604 +-14.535100 -11.014900 101.092453 +-13.630600 -11.569400 99.529698 +-16.839200 -13.770800 98.515397 +-15.121400 -13.008600 95.889298 +-16.586300 -7.463700 93.801846 +-16.328800 -11.351200 97.950600 +-14.892000 -11.678000 97.994000 +-1.479300 -7.400700 81.845347 +1.704500 -9.164500 92.257249 +-2.526900 -13.033100 97.476553 +0.609300 -13.289300 98.999651 +-5.638200 -12.681800 98.505897 +-2.951500 -9.328500 90.199247 +-8.721500 -12.178500 98.494247 +-10.965500 -12.024500 99.027251 +-9.812600 -12.037400 97.448703 +4.922200 -5.582200 75.621099 +3.014000 -6.524000 74.052002 +2.992300 -5.082300 76.651150 +3.315700 -5.645700 77.702851 +-0.489900 -6.620100 79.760053 +-2.971100 -6.778900 76.119454 +-0.741400 -7.228600 79.774303 +7.418000 -5.658000 71.979000 +4.855800 -5.685800 74.582898 +-15.413100 -6.296900 84.993450 +-13.719500 7.869500 77.700251 +-13.932100 5.432100 80.283950 +-14.582700 -7.297300 93.833646 +-16.340899 -0.519100 89.144554 +-16.430900 -7.379100 92.264549 +-16.089500 -7.260500 92.760253 +-20.344100 -10.375900 92.792953 +-15.898200 -12.141800 92.775903 +-17.373301 -10.936700 95.353352 +-3.282800 -6.947200 76.158604 +-4.096200 -5.783800 73.541898 +-4.712700 -4.817300 73.548648 +-5.949000 -5.221000 73.025501 +-3.369100 -5.470900 76.115454 +-5.298600 -6.371400 75.600699 +-2.107300 -4.812700 75.101353 +-2.906500 -5.103500 74.561748 +-1.200300 -4.249700 72.479847 +3.349200 -4.039200 73.014601 +3.784100 -5.264100 71.457053 +3.755100 -5.135100 73.027551 +1.703800 -4.023800 73.006901 +1.724800 -4.194800 71.992400 +0.728000 -4.668000 76.129004 +-1.398100 -6.191900 79.785953 +1.302400 -4.142400 75.636199 +0.616200 -5.796200 76.138104 +1.033800 -5.393800 76.666900 +0.773000 -5.513000 78.736502 +2.573000 -4.103000 75.111503 +2.523700 -4.603700 75.086853 +3.848400 -4.078400 75.099203 +0.352600 -5.902600 75.101303 +14.779300 -13.719300 108.399652 +14.169000 -13.929000 108.374502 +14.034200 -12.924200 108.887098 +13.809100 -14.669100 109.939549 +15.374200 -15.574200 111.992101 +14.246600 -14.726600 110.453303 +14.163200 -15.183200 109.926599 +17.995099 -14.645100 116.172547 +18.727100 -12.777100 116.718551 +5.203500 -14.453500 102.116754 +-7.577200 -12.942800 101.621399 +-12.417200 -14.212800 102.121404 +-10.189200 -13.710800 101.630399 +-12.684800 -12.595200 100.592598 +-18.994600 3.034600 100.077702 +17.938500 1.271500 102.139254 +18.172200 1.587800 103.676101 +20.542300 8.107700 112.536148 +-8.325600 8.975600 60.522201 +12.273400 11.316600 74.556698 +11.399500 10.250500 69.889748 +20.038900 15.501100 106.809446 +19.741400 12.578600 109.395702 +21.220699 13.649300 107.315351 +20.607401 11.942600 110.958700 +21.035200 8.784800 110.982600 +20.700001 9.330000 110.440003 +21.564700 11.035300 113.597348 +21.831000 16.478999 112.030501 +22.718699 15.041300 110.959350 +22.218999 13.341000 110.999500 +21.832900 16.197100 110.431453 +21.624699 13.385300 109.392352 +20.001500 14.638500 109.430752 +20.050601 16.059400 108.890298 +13.800800 8.389200 81.310401 +8.918300 -3.068300 61.594148 +9.239100 -2.609100 62.609549 +24.849800 4.640200 121.359902 +23.048699 12.901300 113.559348 +11.362700 -9.082700 100.551348 +12.453900 -9.783900 105.236949 +8.091000 -10.551000 102.150504 +13.143600 -13.903600 106.286800 +9.834300 -14.154300 108.357152 +11.236900 -14.266900 108.898448 +24.045800 2.204200 119.297900 +21.579900 -1.089900 117.204948 +24.209099 0.660900 121.354552 +-19.920200 -12.139800 96.954899 +-19.705199 -12.014800 96.402402 +-21.253200 -11.796800 96.958399 +-20.864600 -10.305400 94.347701 +-22.000500 12.300500 101.599749 +-1.911700 -1.348300 55.359151 +-2.414800 -1.665200 55.347601 +-1.634800 -0.775200 53.242599 +-0.924200 -0.765800 52.752898 +-4.062100 6.662100 56.903948 +-2.764500 4.794500 55.312751 +-9.752800 -0.927200 60.543601 +-9.007200 1.597200 61.056402 +-4.900900 -3.109100 57.959549 +-3.373400 0.763400 55.833301 +-0.303400 1.973400 53.788299 +6.939600 -0.359600 57.439799 +-0.322800 2.972800 54.818600 +2.601000 -0.291000 50.120500 +5.754300 1.385700 55.862151 +-1.026300 3.766300 55.321851 +8.488900 -3.988900 63.154450 +-8.255500 -9.234500 97.472253 +-8.875700 -9.104300 96.412152 +21.135701 13.684300 106.807846 +-18.171500 12.571500 97.959250 +-16.929101 13.089100 94.845447 +-18.142899 12.772900 93.833546 +-17.440600 12.530600 94.834697 +7.168700 -4.628700 69.389352 +-19.107301 11.067300 98.486347 +-17.802200 11.132200 96.923899 +-10.431200 -0.448800 61.079402 +-10.630100 0.010100 64.709951 +-2.191800 6.771800 57.914099 +-9.452200 4.712200 64.178897 +-10.022000 3.532000 64.679001 +-8.746800 8.916800 62.591599 +-7.065500 8.015500 62.072249 +-8.323400 7.803400 64.193297 +-8.401500 5.931500 64.154247 +-8.958500 7.108500 64.150747 +-7.750500 6.760500 63.154750 +6.902000 -4.952000 73.026001 +9.089200 5.610800 64.199597 +2.031200 -9.061200 93.800596 +0.774000 -9.234000 95.372002 +6.025700 -8.835700 94.357851 +-18.693999 10.284000 99.008001 +-20.413700 5.623700 98.513147 +-21.500199 7.400200 97.984900 +-20.939700 -9.680300 98.505147 +-20.005100 -12.404900 99.522448 +-15.512100 -13.887900 100.568948 +-18.016201 -13.173800 99.001901 +-19.614299 -8.925700 98.487847 +-20.485701 -7.234300 93.302150 +-20.235900 0.045900 97.452053 +-20.594000 -6.066000 98.998001 +-19.252000 -7.988000 97.439003 +-20.366200 -5.503800 94.351901 +-20.729201 -8.130800 95.900398 +-20.545800 -7.314200 94.342101 +-19.504900 -7.225100 96.912549 +-17.878101 0.438100 95.350952 +-21.312100 3.762100 98.488947 +3.354600 -12.344600 99.007301 +4.605200 -13.745200 100.557598 +1.130300 -12.400300 99.520148 +2.467000 -12.477000 102.673500 +2.390500 -11.400500 102.635250 +-4.104200 -10.285800 98.507897 +5.943600 -13.203600 101.626799 +-0.886200 -12.363800 102.676900 +-9.807600 -10.262400 97.451203 +-4.884100 -10.545900 100.052952 +-6.285300 -10.394700 100.042352 +-5.408200 -11.391800 100.050902 +-7.472800 -12.127200 100.053602 +-13.600500 -13.159500 100.569748 +-14.267400 -12.442600 98.996301 +-11.429100 -12.900900 98.500447 +-15.557100 -13.072900 97.436453 +-11.864500 -12.355500 97.432753 +-7.649700 -10.000300 102.125154 +-3.450800 -12.419200 100.079602 +-12.173600 -12.366400 99.018201 +-15.638900 -12.681100 98.995551 +-14.039000 -11.321000 97.995500 +-5.541200 -9.768800 96.949399 +-9.023300 -12.576700 98.513347 +-10.629400 -11.940600 97.460303 +-0.440800 -6.669200 80.829596 +-2.398300 -5.061700 76.140854 +4.359800 -4.659800 73.014901 +-17.483601 -4.606400 92.783203 +-3.060700 -6.689300 75.079653 +-3.945400 -6.184600 74.557298 +-5.946100 -5.913900 75.601949 +-5.400000 -6.040000 77.164997 +3.948800 -4.358800 72.489397 +-1.300700 -4.529300 74.594648 +-1.090000 -4.620000 75.095003 +-0.904500 -4.375500 73.552748 +1.464500 -5.244500 74.042252 +-1.689200 -5.650800 78.205398 +-3.034000 -6.826000 79.267999 +-0.047900 -5.592100 77.176047 +3.118000 -5.058000 75.633999 +14.808100 -12.418100 108.899048 +16.335901 -15.715900 111.507947 +-1.860800 -14.149200 102.634600 +-11.396100 -13.473900 101.091953 +-9.172300 -11.177700 102.153854 +-12.565700 -13.394300 100.567148 +-19.577500 1.877500 100.046252 +8.466200 -9.386200 100.578098 +19.573299 12.556700 109.406652 +21.416699 14.473300 113.053352 +22.896101 13.143900 113.578048 +11.592400 -9.272400 100.581198 +24.156601 5.503400 118.783303 +-19.708999 -12.051000 94.845497 +-21.051500 -9.698500 97.464253 +-21.918201 12.088200 102.130904 +-2.026100 -1.613900 55.831951 +-4.465300 6.075300 57.437349 +-2.882900 5.062900 55.348551 +-3.651000 -2.789000 58.954500 +-5.789400 -0.200600 57.915299 +-0.009000 0.189000 52.235502 +-18.146099 12.766100 96.436952 +-17.815799 13.105800 93.837096 +-5.299400 -5.510600 76.135304 +-4.335300 -4.734700 74.557348 +-6.351800 7.451800 61.064102 +-6.890500 8.200500 61.059752 +-8.940100 7.870100 64.714951 +9.550500 3.949500 63.675250 +8.953900 4.346100 62.631949 +-18.979699 9.259700 99.035151 +-16.512000 -12.938000 99.548998 +-20.079299 -8.850700 98.510347 +5.940500 -12.870500 102.130254 +0.809800 -13.409800 102.639900 +1.534600 -13.684600 100.587298 +9.148800 -14.488800 106.804396 +-9.647300 -11.772700 100.551348 +-8.129600 -12.640400 100.070202 +-13.581900 -11.868100 97.974050 +-3.431600 -12.718400 99.559198 +-16.493100 -12.906900 97.953450 +6.116500 -8.966500 93.318250 +-7.767700 -12.922300 99.541148 +-3.544400 -13.235600 101.092803 +-5.058200 -11.761800 96.940899 +1.882300 -5.152300 73.036151 +1.651600 -4.141600 74.075802 +1.381800 -3.981800 75.095903 +-0.766000 -6.334000 80.806996 +2.533300 -5.673300 74.576648 +-20.022500 1.102500 99.023751 +-20.421800 -0.278200 98.994101 +20.742200 9.897800 108.386102 +20.921700 15.538300 106.790846 +10.002500 -14.412500 108.351252 +-20.510999 -12.299000 94.854497 +-3.427100 4.807100 55.851451 +-4.795400 8.915400 60.512301 +-5.921800 8.331800 62.104099 +-17.686700 -12.443300 98.996651 +6.241100 -12.721100 103.705551 +1.394800 -13.844800 102.667400 +-4.408600 -13.111400 101.095703 +-4.308600 -13.251400 101.590699 +-4.643600 -12.316400 97.958200 +1.869400 -4.909400 74.054702 +20.499800 9.810200 108.359902 +19.769800 9.660200 108.369902 +20.653601 9.906400 109.941799 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom384.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom384.pts new file mode 100644 index 000000000000..36c8cf42d385 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom384.pts @@ -0,0 +1,384 @@ +383 +27.850301 -17.970299 134.875148 +-30.421501 -21.008499 144.254249 +0.114400 -1.784400 50.132200 +-18.264400 12.484400 101.627799 +17.396600 -1.906600 99.023301 +21.063600 -19.043600 132.826796 +29.463299 -5.123300 142.671651 +28.427000 -18.197000 149.973500 +20.364199 6.405800 114.632099 +14.811500 -9.141500 105.235749 +19.542701 -11.952700 123.446353 +-15.004000 -8.116000 98.497997 +-10.693900 -4.016100 58.998050 +-24.134400 11.784400 107.332801 +-23.475999 8.946000 104.191998 +-4.457700 9.027700 56.901148 +16.912700 15.277300 98.476347 +12.924100 12.075900 77.677051 +-21.715099 6.515100 96.397452 +10.053100 -2.053100 61.576548 +8.974900 -5.644900 68.852447 +8.249500 -14.839500 101.639749 +29.422501 -20.732500 142.186247 +27.104600 -21.824600 149.962300 +31.013999 -2.164000 149.977000 +27.157400 -17.317400 149.988700 +30.981799 -14.521800 149.960900 +31.027899 -19.127900 149.983950 +20.507200 17.852800 112.518598 +21.309300 -12.729300 134.384644 +19.385099 -11.085100 123.957550 +22.975500 -13.585500 143.232755 +14.246800 -7.776800 92.238399 +15.299200 -12.349200 106.839596 +-20.686101 6.686100 104.721952 +10.410300 -14.950300 109.945149 +-0.572800 -12.837200 104.743602 +9.430900 -11.520900 105.765453 +22.088301 -9.988300 120.869147 +18.696699 -9.706700 114.113353 +20.051600 -15.941601 125.510798 +17.014300 -12.824300 114.637149 +25.541301 -12.251300 134.885648 +22.033800 -2.333800 121.891898 +-18.289400 -7.380600 96.930299 +-21.954500 4.094500 101.622749 +-19.513600 4.613600 100.078202 +-20.256000 10.436000 98.992001 +-13.608300 -11.011700 97.960850 +-2.165500 -7.894500 80.802246 +-2.200600 2.110600 56.369702 +14.424000 10.726000 88.107003 +-17.650600 6.960600 97.964700 +-16.106900 1.746900 89.671550 +3.865300 -3.635300 75.612649 +3.290200 -2.310200 69.370102 +-16.555599 8.445600 91.712202 +-7.549400 1.549400 62.095299 +7.074300 -4.804300 73.542148 +10.674700 -9.114700 102.117354 +6.940000 -9.100000 95.914998 +-20.917200 -9.272800 92.751403 +-4.043800 -2.546200 51.163101 +-15.706300 -13.303700 92.791853 +-22.591499 15.911500 100.584248 +-15.927600 14.587600 91.711202 +3.550800 8.709200 54.815400 +-19.986700 12.906700 96.921649 +-11.174600 7.344600 64.152697 +5.729900 -1.889900 53.249949 +7.298300 1.991700 57.419149 +17.288300 -16.248301 111.504147 +11.139900 -5.079900 66.779953 +9.299900 -4.059900 60.559951 +23.049200 11.560800 111.494597 +24.139500 4.980500 116.704751 +29.687400 -21.817400 149.958700 +22.317100 -19.487100 141.113554 +23.782200 -13.892200 146.856105 +28.643601 -7.063600 145.816796 +-19.830300 13.350300 103.164847 +19.028700 14.271300 109.414352 +28.074900 -4.714900 140.597449 +22.833101 4.646900 119.306550 +22.090100 5.439900 116.685051 +22.567500 9.082500 114.078753 +20.163701 14.096300 113.586848 +20.742100 -11.562100 131.231049 +21.981901 -17.111900 134.370944 +25.385999 -12.786000 140.117995 +24.287300 -11.777300 136.968650 +27.245601 -13.955600 143.737795 +27.890600 -16.050599 147.355294 +21.251200 -8.951200 115.150604 +12.877700 -11.097700 103.713851 +-18.707900 5.677900 101.101053 +12.688800 -9.448800 105.264399 +-11.035400 -9.444600 102.652300 +-14.368000 -10.892000 101.091003 +-1.861500 -14.028500 102.634250 +-13.923300 -12.566700 98.998351 +12.485200 -11.985200 105.252599 +11.048700 -13.378700 106.834346 +15.585200 -10.855200 108.912598 +16.027501 -12.237500 112.513748 +14.253200 -14.333200 110.456603 +16.070500 -14.640500 114.080253 +17.983100 -12.533100 114.631549 +6.535600 -13.215600 105.777803 +21.772400 1.057600 117.201198 +22.093599 -4.353600 119.821796 +12.941200 -11.261200 110.465603 +8.894700 -11.624700 107.357351 +19.696600 0.693400 108.898298 +21.726600 6.443400 112.543298 +18.646500 -13.406500 116.678251 +21.180000 -14.900000 129.675001 +24.322701 -5.942700 126.056352 +20.577200 -13.737200 125.553598 +23.806999 -11.367000 134.358494 +21.780000 -11.330000 131.770003 +23.553400 -3.403400 121.911698 +-18.976199 -4.463800 99.036901 +-18.976499 -2.053500 99.036751 +-20.277900 -7.612100 97.431053 +-20.563300 -1.986700 97.458353 +-21.594099 7.434100 103.177947 +-20.604900 6.144900 101.112553 +-19.292400 9.542400 100.588798 +-22.819500 11.419500 103.675251 +-21.773300 11.133300 102.113354 +-16.047000 -8.803000 98.486497 +-17.838200 -12.431800 97.955900 +-18.931901 -9.888100 98.489047 +-2.144400 1.054400 53.792799 +-4.323100 1.703100 55.838451 +1.430600 -2.270600 61.570298 +-2.026100 -1.613900 55.831951 +2.131900 -1.761900 54.815950 +-0.320800 -1.229200 52.214602 +6.954800 -1.014800 57.937399 +4.719600 1.400400 55.329801 +-6.380700 2.000700 58.964650 +1.736200 -5.286200 72.513097 +5.514400 -4.744400 71.962200 +3.504500 -4.074500 74.042252 +-0.940300 5.240300 57.939849 +0.447400 8.312600 61.558698 +7.754600 1.155400 61.057302 +7.038400 3.821600 60.524201 +-18.130300 12.180300 96.929849 +0.591600 -4.271600 79.750803 +-16.671001 -7.499000 95.374502 +-17.649101 -4.930900 92.780453 +-14.640000 -9.350000 96.914999 +-9.162100 -7.997900 88.098953 +-15.918000 -6.132000 86.515998 +-19.701600 12.661600 100.069202 +-20.835200 13.045200 96.912399 +-18.631699 13.451700 92.279149 +-18.708099 7.788100 96.405952 +-7.977300 3.337300 60.541351 +-10.023200 0.453200 62.598399 +-7.388900 -3.921100 68.870547 +-3.846100 -3.533900 69.391952 +0.788000 -3.358000 76.674000 +-2.012200 -3.767800 75.083903 +-7.760200 6.150200 62.099899 +-9.870600 7.370600 66.764703 +-11.900100 5.990100 72.514947 +3.315700 -5.645700 77.702851 +-0.920200 -10.459800 101.614899 +-1.343500 -7.016500 82.893248 +6.011700 -11.191700 100.565848 +7.105100 -12.185100 103.692551 +-10.273400 -10.216600 99.028301 +-11.712200 -9.327800 96.408902 +-8.960200 -11.809800 97.454903 +3.113900 -12.953900 100.591948 +3.243300 -10.013300 101.081653 +-20.770601 -11.609400 92.244699 +-19.028101 -12.051900 90.675951 +-20.208101 13.128100 90.710951 +-9.834500 10.214500 64.157747 +4.486300 2.443700 51.688151 +9.673400 0.846600 60.536701 +9.712600 8.327400 65.196298 +13.512100 -4.832100 74.061052 +12.061000 -4.051000 66.245499 +22.982500 17.437500 112.026251 +23.673800 14.956200 114.606899 +20.499800 9.810200 108.359902 +21.161500 11.518500 111.515747 +22.374501 15.865500 108.362252 +24.998800 -17.598800 145.279407 +26.518900 -9.998900 142.679451 +27.565800 -12.355800 145.307907 +24.669799 -12.679800 143.214905 +23.095200 -1.885200 121.892598 +24.370300 1.799700 121.900148 +21.694800 8.405200 114.607399 +24.475301 -14.645300 142.167647 +23.101000 -12.941000 136.965500 +23.011600 -11.721600 136.445796 +11.249500 -10.039500 102.144754 +11.478300 -9.638300 105.789153 +-12.076300 -11.093700 102.666850 +-10.158400 -11.291600 100.555798 +-14.430500 -13.689500 100.589748 +-11.942100 -12.587900 101.628949 +4.210800 -13.780800 102.150404 +11.627100 -10.087100 103.713551 +13.965000 -12.725000 108.367502 +13.494400 -10.934400 107.342201 +11.087800 -11.727800 107.343901 +17.523701 -10.653700 114.596849 +15.976999 -14.507000 112.003501 +22.654100 0.555900 117.237048 +21.217500 1.302500 117.223748 +10.458900 -12.888900 110.959450 +20.789201 -3.569200 115.119604 +12.419000 -14.169000 106.289500 +26.735001 -12.275000 134.897498 +23.753101 -11.153100 131.261549 +25.044499 -9.814500 134.397244 +-15.024300 -9.735700 103.167847 +-18.943901 -9.896100 101.638049 +-19.183900 -0.826100 97.473053 +-21.081500 4.011500 100.074252 +-21.030300 -7.229700 97.474853 +-20.216900 -5.253100 99.011551 +-20.370299 9.710300 100.569848 +-18.827300 4.747300 101.606349 +-17.820599 -13.119400 96.429702 +-19.615700 -11.634300 96.937149 +-17.897401 -11.592600 99.541298 +-4.505300 -1.134700 55.352351 +-3.076800 -0.133200 54.281600 +-1.984000 -0.956000 53.782999 +-1.971800 5.601800 55.859101 +4.345700 1.744300 56.382852 +4.337700 0.212300 53.788849 +-5.845100 -0.054900 57.392449 +-2.207900 2.327900 56.896048 +-4.803200 5.673200 58.448400 +-3.315500 7.895500 58.437250 +-4.058200 3.998200 57.390899 +-2.918700 2.268700 55.330651 +1.922000 -4.172000 72.991001 +8.036200 6.673800 64.173097 +9.331000 0.699000 62.070499 +15.177400 9.722600 87.078702 +-15.047600 -11.302400 96.401202 +-18.230100 -10.259900 96.959949 +-19.210901 -7.459100 95.914548 +-20.057501 -6.162500 95.906248 +-14.785000 9.135000 81.832497 +-6.880700 -4.639300 67.304650 +0.504400 -5.664400 76.667200 +-9.644500 3.944500 63.637750 +-5.252100 8.492100 60.543951 +-8.323400 7.803400 64.193297 +-7.812700 5.902700 64.168647 +12.889700 -9.189700 101.594849 +-8.747400 -8.232600 93.291300 +-8.437700 -9.452300 99.006151 +4.299700 -11.999700 101.089853 +-13.059600 -9.500400 97.980200 +-4.751400 -11.228600 101.629299 +-5.702600 -11.687400 100.078702 +-0.019300 -11.130700 99.550348 +-1.125500 -12.214500 101.077253 +1.704500 -9.164500 92.257249 +-8.743600 -12.276400 95.388202 +-6.535000 -12.745000 98.482497 +-0.395100 -12.694900 102.657450 +8.012100 -6.662100 76.156054 +5.773300 -7.943300 83.946649 +-13.410600 -8.179400 97.974700 +2.629100 -10.759100 104.719552 +17.136201 12.023800 100.573098 +18.969300 1.950700 106.829646 +18.233000 12.227000 105.786503 +19.635699 9.214300 108.397852 +-19.567501 14.097500 89.146254 +-10.928400 9.608400 64.670801 +4.128600 -1.358600 51.189301 +23.612199 17.337800 114.111103 +22.350301 12.439700 113.035152 +20.050601 16.059400 108.890298 +25.622900 -14.602900 141.656443 +13.433900 -12.663900 105.271949 +14.446700 -13.526700 106.293350 +-12.458200 -10.991800 104.215898 +-7.977000 -12.133000 102.136504 +-10.337200 -11.122800 98.996401 +8.685300 -12.285300 103.677651 +11.915700 -12.805700 110.432853 +15.323500 -12.373500 108.876748 +21.036700 2.813300 115.143354 +20.474001 -10.874000 126.566998 +-15.678100 -9.831900 101.605949 +-18.537900 -9.082100 100.051052 +-19.415301 0.275300 95.892348 +-20.074500 -1.855500 98.997751 +-20.657700 -11.132300 96.921149 +-16.127301 -11.362700 102.676350 +-4.404800 -1.805200 55.352601 +3.603800 0.256200 52.236902 +-1.456500 2.376500 55.346751 +-6.989300 -0.650700 59.515350 +-3.508500 6.938500 57.420749 +13.405600 2.894400 79.752803 +5.013300 -5.403300 77.176647 +-16.463399 -12.186600 95.398302 +-17.237900 -8.492100 96.956049 +-15.187700 -11.322300 99.526148 +-19.380301 -9.519700 94.354851 +-17.254100 -10.525900 93.792946 +-10.367600 -8.342400 93.286200 +-18.943799 -7.526200 94.333101 +-18.886901 -5.823100 95.911548 +-18.345499 13.475500 90.702251 +0.806700 -5.676700 77.718351 +1.046900 -4.706900 77.708451 +-9.061500 5.131500 65.209248 +-11.407800 7.057800 72.511097 +-4.013600 -10.796400 100.058202 +3.416100 -12.676100 104.238048 +2.260000 -12.440000 102.655000 +7.753900 -12.673900 102.156954 +9.956900 -9.976900 102.113454 +7.505000 -11.235000 104.212498 +5.119000 -10.599000 102.669500 +-3.021400 -11.178600 103.199297 +-8.721000 -11.079000 99.034501 +-5.856500 -11.553500 98.481747 +3.042600 -10.732600 99.536298 +1.399600 -11.809600 101.119803 +-8.425600 8.965600 60.527201 +2.854500 -0.104500 50.117250 +20.102601 14.287400 110.996300 +20.071300 15.338700 106.825646 +25.300099 -13.550100 140.075045 +-14.544200 -10.735800 102.672900 +8.899800 -11.309800 103.694901 +8.373500 -13.593500 103.701751 +14.957000 -13.707000 108.393502 +-14.790800 -10.369200 100.579598 +-19.526100 -0.693900 99.016951 +-19.891100 1.501100 99.004451 +-20.159900 -11.180100 95.360052 +-19.838100 -11.101900 93.795946 +3.044600 0.755400 51.682301 +3.687800 1.442200 52.738898 +-6.885100 -3.294900 61.557448 +-6.215400 1.495400 59.492300 +-17.352500 -7.377500 94.313751 +-16.239999 -6.860000 91.224998 +-20.576800 0.046800 95.891598 +-18.031599 5.911600 96.409202 +-16.499700 13.289700 90.685151 +-9.316800 8.566800 63.131600 +-6.187100 -10.722900 98.486447 +3.329400 -10.959400 102.659700 +-9.227300 -10.502700 100.586348 +-5.203100 -11.776900 96.948449 +2.934500 -1.344500 50.157250 +21.912201 13.157800 111.506097 +-17.928601 0.158600 95.890698 +-17.785900 3.815900 96.932049 +-20.299200 3.889200 98.485397 +4.120400 0.749600 54.270200 +-17.981600 -6.818400 94.324201 +-19.942101 -5.897900 94.318951 +-18.396400 7.436400 94.846797 +-9.592500 7.612500 63.663750 +21.840700 14.839300 110.435353 +-20.119800 2.629800 96.935099 +21.831000 16.478999 112.030501 +20.249299 14.330700 108.894648 +21.416699 14.473300 113.053352 +21.707799 13.162200 109.433902 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/torus_ran.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/torus_ran.pts new file mode 100644 index 000000000000..0ee8d1f9dec2 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/torus_ran.pts @@ -0,0 +1,500 @@ +500 +231.000000 182.000000 0.000351 +14.000000 115.000000 -15.999829 +71.000000 94.000000 31.999592 +68.000000 54.000000 47.999560 +207.000000 119.000000 31.999602 +108.000000 241.000000 -31.999965 +36.000000 131.000000 -31.999798 +61.000000 79.000000 -16.000061 +158.000000 29.000000 47.999573 +171.000000 20.000000 32.000102 +80.000000 21.000000 15.999613 +208.000000 209.000000 -32.000094 +72.000000 154.000000 -0.000168 +130.000000 195.000000 0.000267 +159.000000 185.000000 0.000415 +165.000000 172.000000 -15.999620 +189.000000 138.000000 -16.000149 +180.000000 211.000000 -48.000257 +152.000000 182.000000 -32.000245 +196.000000 216.000000 -0.000361 +171.000000 63.000000 47.999650 +8.000000 118.000000 -0.000377 +167.000000 228.000000 0.000447 +149.000000 64.000000 -0.000335 +26.000000 166.000000 -31.999897 +62.000000 132.000000 15.999507 +129.000000 244.000000 -15.999563 +223.000000 57.000000 15.999837 +142.000000 25.000000 47.999532 +119.000000 12.000000 15.999691 +51.000000 213.000000 -32.000051 +67.000000 59.000000 47.999558 +244.000000 118.000000 16.000059 +229.000000 186.000000 0.000022 +151.000000 232.000000 0.000274 +177.000000 166.000000 -0.000265 +139.000000 71.000000 16.000400 +201.000000 184.000000 16.000257 +149.000000 26.000000 47.999937 +144.000000 184.000000 -32.000347 +212.000000 44.000000 16.000372 +122.000000 243.000000 -32.000271 +63.000000 226.000000 -15.999717 +14.000000 92.000000 -0.000228 +79.000000 191.000000 -48.000345 +168.000000 174.000000 -31.999750 +94.000000 239.000000 -15.999957 +128.000000 196.000000 -0.000407 +10.000000 151.000000 -0.000198 +28.000000 63.000000 16.000490 +50.000000 217.000000 -15.999698 +147.000000 242.000000 -16.000115 +11.000000 139.000000 -16.000482 +208.000000 183.000000 16.000006 +153.000000 28.000000 47.999911 +63.000000 29.000000 15.999721 +18.000000 173.000000 0.000064 +80.000000 86.000000 31.999967 +214.000000 131.000000 -31.999614 +25.000000 164.000000 -32.000292 +18.000000 81.000000 15.999688 +174.000000 164.000000 -15.999519 +112.000000 58.000000 48.000316 +221.000000 196.000000 0.000020 +87.000000 228.000000 0.000271 +85.000000 82.000000 31.999577 +136.000000 185.000000 -31.999946 +139.000000 12.000000 15.999814 +207.000000 136.000000 -31.999751 +243.000000 127.000000 -16.000406 +238.000000 83.000000 16.000043 +236.000000 175.000000 0.000133 +59.000000 39.000000 -0.000173 +138.000000 58.000000 48.000435 +63.000000 125.000000 -15.999958 +148.000000 59.000000 47.999763 +11.000000 116.000000 16.000295 +12.000000 104.000000 16.000059 +99.000000 195.000000 -47.999545 +176.000000 168.000000 -32.000485 +97.000000 186.000000 -0.000049 +26.000000 69.000000 0.000408 +67.000000 196.000000 -48.000408 +197.000000 73.000000 -15.999752 +180.000000 99.000000 15.999739 +246.000000 145.000000 0.000341 +54.000000 184.000000 15.999968 +194.000000 78.000000 -15.999879 +16.000000 144.000000 15.999772 +100.000000 28.000000 47.999568 +26.000000 108.000000 32.000427 +188.000000 58.000000 48.000056 +104.000000 23.000000 0.000019 +186.000000 193.000000 -47.999712 +242.000000 100.000000 16.000407 +139.000000 12.000000 31.999602 +229.000000 168.000000 -31.999564 +96.000000 230.000000 -0.000241 +144.000000 71.000000 31.999954 +139.000000 184.000000 -16.000332 +158.000000 226.000000 -48.000437 +54.000000 143.000000 -31.999968 +241.000000 163.000000 -0.000375 +110.000000 59.000000 47.999725 +88.000000 27.000000 0.000264 +159.000000 25.000000 0.000204 +228.000000 68.000000 0.000450 +53.000000 114.000000 31.999861 +76.000000 22.000000 16.000012 +238.000000 172.000000 -16.000306 +27.000000 174.000000 -32.000074 +71.000000 64.000000 48.000089 +58.000000 73.000000 -16.000054 +226.000000 75.000000 31.999956 +64.000000 224.000000 -32.000409 +219.000000 79.000000 -16.000015 +171.000000 219.000000 -48.000443 +17.000000 149.000000 15.999620 +85.000000 219.000000 -47.999948 +139.000000 243.000000 -31.999927 +64.000000 132.000000 -15.999923 +133.000000 60.000000 0.000370 +141.000000 13.000000 32.000016 +144.000000 193.000000 0.000487 +29.000000 77.000000 32.000389 +186.000000 227.000000 -31.999584 +51.000000 211.000000 -0.000140 +100.000000 67.000000 -0.000192 +153.000000 240.000000 -31.999932 +184.000000 64.000000 48.000329 +118.000000 233.000000 0.000081 +37.000000 196.000000 -32.000450 +196.000000 35.000000 32.000130 +43.000000 51.000000 32.000190 +97.000000 61.000000 47.999902 +18.000000 174.000000 -15.999889 +54.000000 112.000000 32.000389 +244.000000 102.000000 -0.000141 +26.000000 89.000000 31.999633 +183.000000 101.000000 -0.000397 +190.000000 155.000000 -32.000059 +141.000000 61.000000 -0.000261 +122.000000 69.000000 31.999905 +159.000000 239.000000 -31.999703 +180.000000 156.000000 -16.000295 +122.000000 186.000000 -32.000017 +159.000000 16.000000 31.999811 +111.000000 62.000000 0.000081 +30.000000 73.000000 32.000406 +40.000000 131.000000 -32.000022 +185.000000 50.000000 47.999556 +46.000000 121.000000 32.000010 +15.000000 91.000000 15.999817 +139.000000 243.000000 -15.999875 +194.000000 110.000000 -15.999682 +200.000000 221.000000 -16.000194 +146.000000 183.000000 -32.000064 +106.000000 191.000000 0.000436 +182.000000 156.000000 -0.000125 +201.000000 71.000000 -16.000001 +127.000000 59.000000 0.000459 +141.000000 242.000000 -32.000493 +171.000000 235.000000 -31.999615 +61.000000 176.000000 15.999908 +151.000000 14.000000 31.999740 +121.000000 185.000000 -16.000410 +9.000000 110.000000 -0.000308 +36.000000 124.000000 31.999681 +162.000000 16.000000 16.000300 +80.000000 234.000000 -16.000029 +15.000000 164.000000 -15.999884 +208.000000 72.000000 -16.000103 +67.000000 114.000000 15.999868 +120.000000 60.000000 0.000358 +153.000000 24.000000 -0.000315 +167.000000 77.000000 0.000084 +88.000000 178.000000 -0.000296 +178.000000 88.000000 31.999579 +75.000000 99.000000 16.000467 +151.000000 241.000000 -31.999550 +47.000000 183.000000 15.999840 +151.000000 180.000000 -15.999625 +112.000000 230.000000 -47.999580 +152.000000 60.000000 47.999920 +145.000000 183.000000 -15.999679 +62.000000 123.000000 -16.000320 +228.000000 142.000000 -32.000272 +106.000000 232.000000 0.000122 +89.000000 33.000000 48.000060 +118.000000 231.000000 -48.000438 +162.000000 239.000000 -15.999565 +196.000000 220.000000 -31.999656 +189.000000 117.000000 15.999870 +73.000000 46.000000 48.000414 +193.000000 37.000000 0.000188 +187.000000 221.000000 0.000304 +61.000000 140.000000 15.999972 +115.000000 184.000000 -15.999817 +153.000000 231.000000 -0.000374 +46.000000 134.000000 -31.999890 +68.000000 201.000000 -47.999923 +217.000000 55.000000 -0.000048 +200.000000 34.000000 16.000119 +152.000000 195.000000 -48.000153 +146.000000 72.000000 32.000142 +105.000000 242.000000 -15.999819 +158.000000 69.000000 0.000177 +145.000000 72.000000 15.999652 +103.000000 73.000000 32.000330 +246.000000 112.000000 -0.000307 +243.000000 128.000000 16.000331 +46.000000 48.000000 0.000354 +99.000000 15.000000 31.999993 +96.000000 70.000000 0.000313 +192.000000 129.000000 15.999724 +171.000000 36.000000 48.000142 +56.000000 41.000000 -0.000237 +87.000000 236.000000 -32.000264 +110.000000 242.000000 -32.000440 +90.000000 26.000000 0.000233 +219.000000 176.000000 16.000414 +196.000000 32.000000 15.999647 +225.000000 119.000000 31.999763 +168.000000 81.000000 31.999513 +103.000000 182.000000 -31.999641 +28.000000 192.000000 -16.000020 +225.000000 136.000000 -32.000475 +62.000000 117.000000 -15.999916 +58.000000 182.000000 16.000479 +94.000000 71.000000 0.000277 +210.000000 43.000000 16.000458 +238.000000 86.000000 -0.000143 +186.000000 28.000000 32.000422 +208.000000 46.000000 32.000427 +99.000000 60.000000 47.999544 +85.000000 36.000000 47.999560 +14.000000 140.000000 16.000064 +174.000000 91.000000 16.000080 +72.000000 33.000000 0.000351 +230.000000 95.000000 31.999702 +153.000000 15.000000 31.999736 +180.000000 44.000000 48.000142 +147.000000 13.000000 16.000173 +168.000000 27.000000 0.000135 +16.000000 168.000000 -16.000330 +12.000000 98.000000 0.000077 +84.000000 88.000000 15.999770 +175.000000 162.000000 -15.999729 +122.000000 12.000000 31.999587 +194.000000 145.000000 16.000214 +245.000000 104.000000 0.000096 +38.000000 50.000000 16.000261 +102.000000 231.000000 -0.000273 +120.000000 70.000000 32.000247 +103.000000 241.000000 -15.999562 +24.000000 73.000000 0.000059 +153.000000 241.000000 -16.000022 +80.000000 29.000000 -0.000425 +73.000000 223.000000 0.000246 +25.000000 91.000000 -15.999716 +110.000000 13.000000 31.999612 +142.000000 230.000000 -47.999894 +23.000000 185.000000 -16.000220 +226.000000 180.000000 -31.999881 +230.000000 105.000000 32.000364 +80.000000 169.000000 -31.999656 +219.000000 203.000000 -16.000266 +69.000000 142.000000 -0.000292 +33.000000 61.000000 0.000446 +66.000000 119.000000 15.999737 +29.000000 178.000000 -31.999839 +122.000000 195.000000 0.000250 +95.000000 79.000000 15.999537 +53.000000 141.000000 -32.000021 +228.000000 113.000000 31.999506 +110.000000 196.000000 -48.000009 +84.000000 167.000000 -16.000145 +221.000000 123.000000 32.000377 +192.000000 126.000000 -16.000016 +163.000000 237.000000 -32.000336 +107.000000 73.000000 15.999636 +30.000000 59.000000 15.999555 +143.000000 233.000000 -0.000014 +76.000000 233.000000 -16.000291 +140.000000 24.000000 48.000373 +13.000000 122.000000 -16.000396 +119.000000 243.000000 -15.999928 +219.000000 52.000000 15.999516 +39.000000 207.000000 -16.000205 +11.000000 153.000000 0.000400 +153.000000 227.000000 -47.999632 +197.000000 182.000000 15.999689 +96.000000 15.000000 16.000408 +189.000000 27.000000 16.000370 +85.000000 173.000000 -32.000317 +137.000000 185.000000 -15.999535 +186.000000 113.000000 0.000316 +47.000000 72.000000 -16.000307 +26.000000 147.000000 -31.999760 +34.000000 59.000000 0.000272 +184.000000 191.000000 -47.999729 +135.000000 195.000000 0.000041 +137.000000 22.000000 0.000252 +137.000000 70.000000 16.000342 +25.000000 164.000000 16.000081 +241.000000 162.000000 -16.000253 +25.000000 91.000000 31.999907 +204.000000 44.000000 -0.000409 +110.000000 184.000000 -32.000070 +71.000000 191.000000 -47.999714 +186.000000 141.000000 -0.000049 +112.000000 22.000000 -0.000413 +27.000000 187.000000 -0.000197 +28.000000 139.000000 -31.999749 +155.000000 76.000000 16.000041 +31.000000 135.000000 -31.999815 +99.000000 240.000000 -32.000440 +218.000000 59.000000 32.000098 +240.000000 164.000000 -16.000179 +186.000000 62.000000 48.000381 +193.000000 120.000000 -15.999543 +87.000000 19.000000 32.000031 +185.000000 148.000000 -0.000396 +187.000000 139.000000 -0.000262 +194.000000 177.000000 15.999986 +13.000000 133.000000 15.999525 +217.000000 131.000000 -32.000238 +73.000000 229.000000 -31.999844 +218.000000 196.000000 -31.999779 +62.000000 218.000000 -0.000483 +131.000000 12.000000 16.000284 +68.000000 136.000000 -0.000446 +14.000000 94.000000 16.000185 +112.000000 197.000000 -48.000241 +223.000000 198.000000 -15.999801 +71.000000 161.000000 -32.000219 +86.000000 18.000000 16.000351 +100.000000 227.000000 -47.999777 +17.000000 169.000000 -0.000308 +118.000000 24.000000 47.999953 +190.000000 100.000000 31.999686 +72.000000 103.000000 0.000019 +214.000000 124.000000 32.000046 +221.000000 132.000000 -32.000248 +81.000000 217.000000 -48.000242 +54.000000 71.000000 -16.000327 +14.000000 161.000000 -16.000004 +64.000000 31.000000 31.999705 +196.000000 223.000000 -16.000117 +114.000000 194.000000 0.000448 +239.000000 109.000000 -15.999611 +242.000000 155.000000 -15.999961 +62.000000 138.000000 15.999829 +155.000000 188.000000 -0.000170 +12.000000 131.000000 15.999532 +230.000000 150.000000 -31.999836 +12.000000 124.000000 -15.999937 +244.000000 137.000000 -15.999895 +38.000000 200.000000 0.000110 +175.000000 93.000000 16.000389 +40.000000 124.000000 32.000203 +129.000000 11.000000 15.999840 +39.000000 48.000000 16.000091 +23.000000 70.000000 15.999560 +89.000000 222.000000 -47.999557 +73.000000 26.000000 31.999999 +242.000000 94.000000 -0.000065 +229.000000 148.000000 -32.000276 +86.000000 237.000000 -15.999800 +229.000000 190.000000 -15.999638 +115.000000 71.000000 15.999835 +180.000000 95.000000 -0.000262 +247.000000 137.000000 0.000076 +130.000000 69.000000 31.999978 +38.000000 205.000000 -15.999885 +95.000000 238.000000 -31.999829 +155.000000 179.000000 -16.000164 +25.000000 153.000000 -32.000133 +17.000000 106.000000 -15.999715 +178.000000 167.000000 -31.999967 +209.000000 207.000000 -0.000472 +68.000000 34.000000 0.000071 +239.000000 146.000000 15.999682 +81.000000 38.000000 47.999976 +110.000000 23.000000 -0.000396 +27.000000 81.000000 31.999842 +136.000000 70.000000 32.000427 +145.000000 232.000000 0.000270 +140.000000 231.000000 -47.999598 +148.000000 196.000000 -48.000069 +16.000000 111.000000 -16.000408 +108.000000 14.000000 31.999518 +240.000000 91.000000 16.000149 +230.000000 160.000000 -32.000275 +64.000000 123.000000 15.999728 +16.000000 87.000000 15.999844 +8.000000 141.000000 0.000100 +222.000000 194.000000 -0.000178 +160.000000 61.000000 48.000409 +174.000000 20.000000 15.999672 +171.000000 174.000000 0.000162 +84.000000 81.000000 -0.000264 +151.000000 75.000000 15.999741 +36.000000 79.000000 -16.000373 +163.000000 18.000000 31.999651 +68.000000 116.000000 -0.000288 +185.000000 205.000000 -48.000148 +193.000000 135.000000 16.000057 +187.000000 119.000000 0.000122 +19.000000 80.000000 0.000444 +173.000000 64.000000 47.999899 +237.000000 82.000000 0.000371 +212.000000 211.000000 -15.999928 +229.000000 87.000000 31.999870 +69.000000 114.000000 0.000236 +97.000000 194.000000 -48.000360 +36.000000 176.000000 15.999577 +55.000000 213.000000 -0.000157 +189.000000 228.000000 -15.999840 +110.000000 192.000000 -0.000275 +174.000000 235.000000 -15.999655 +73.000000 99.000000 -0.000327 +28.000000 116.000000 31.999974 +229.000000 107.000000 31.999858 +153.000000 14.000000 15.999576 +103.000000 14.000000 16.000290 +130.000000 186.000000 -31.999906 +162.000000 62.000000 48.000005 +75.000000 160.000000 0.000127 +13.000000 161.000000 -0.000169 +183.000000 222.000000 -0.000352 +107.000000 182.000000 -15.999640 +105.000000 13.000000 15.999856 +50.000000 38.000000 16.000248 +175.000000 86.000000 0.000015 +30.000000 196.000000 -15.999867 +51.000000 42.000000 31.999990 +241.000000 93.000000 15.999799 +131.000000 243.000000 -16.000487 +243.000000 102.000000 15.999527 +30.000000 182.000000 -32.000239 +120.000000 185.000000 -31.999833 +66.000000 136.000000 -16.000264 +200.000000 42.000000 -0.000351 +25.000000 102.000000 32.000231 +176.000000 87.000000 32.000019 +160.000000 194.000000 -47.999614 +96.000000 240.000000 -16.000345 +230.000000 91.000000 -15.999643 +243.000000 157.000000 -0.000306 +243.000000 153.000000 -16.000310 +217.000000 124.000000 32.000136 +188.000000 197.000000 -47.999767 +121.000000 70.000000 15.999790 +242.000000 134.000000 16.000201 +165.000000 229.000000 -0.000410 +102.000000 24.000000 -0.000139 +230.000000 164.000000 16.000285 +182.000000 32.000000 0.000135 +247.000000 114.000000 -0.000002 +43.000000 204.000000 -32.000367 +210.000000 212.000000 -15.999682 +37.000000 59.000000 32.000195 +94.000000 16.000000 15.999830 +112.000000 25.000000 48.000203 +95.000000 17.000000 31.999534 +171.000000 192.000000 -48.000241 +125.000000 60.000000 0.000292 +12.000000 151.000000 -15.999890 +162.000000 193.000000 -48.000247 +161.000000 184.000000 0.000343 +70.000000 107.000000 -0.000360 +31.000000 120.000000 32.000491 +73.000000 209.000000 -47.999995 +106.000000 73.000000 31.999769 +145.000000 63.000000 -0.000340 +183.000000 152.000000 0.000134 +138.000000 197.000000 -47.999966 +106.000000 182.000000 -32.000377 +95.000000 176.000000 -15.999590 +61.000000 115.000000 -16.000234 +80.000000 169.000000 0.000431 +149.000000 23.000000 0.000338 +242.000000 121.000000 -16.000055 +63.000000 130.000000 16.000208 +229.000000 65.000000 15.999791 +152.000000 73.000000 31.999837 +9.000000 143.000000 -0.000190 +13.000000 100.000000 15.999721 +78.000000 89.000000 0.000382 +175.000000 226.000000 -0.000207 +79.000000 64.000000 47.999724 +165.000000 83.000000 15.999635 +173.000000 191.000000 -48.000118 +67.000000 141.000000 -15.999508 +149.000000 229.000000 -48.000104 +75.000000 156.000000 -15.999668 +13.000000 155.000000 -15.999930 +110.000000 71.000000 32.000201 From 4fbcb937044844d9afb5f486f45bdd664704c366 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 28 Aug 2023 16:54:30 +0200 Subject: [PATCH 43/85] a few cleanups --- .../demo/Circular_kernel_3/CMakeLists.txt | 8 ++--- .../demo/Alpha_shapes_2/CMakeLists.txt | 12 +------ .../demo/Apollonius_graph_2/CMakeLists.txt | 19 ++++------- .../demo/Bounding_volumes/Bounding_volumes.ui | 2 +- .../demo/Bounding_volumes/CMakeLists.txt | 34 ++++--------------- 5 files changed, 17 insertions(+), 58 deletions(-) diff --git a/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt b/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt index 3f46c3dcd935..2ed07a6904ec 100644 --- a/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt +++ b/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt @@ -12,18 +12,16 @@ endif() find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGL OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) if(CGAL_Qt6_FOUND AND Qt6_FOUND) - add_executable( - Circular_kernel_3 Circular_kernel_3.cpp Viewer.cpp - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + add_executable(Circular_kernel_3 Circular_kernel_3.cpp Viewer.cpp) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Circular_kernel_3) target_link_libraries(Circular_kernel_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 - Qt6::Widgets Qt6::OpenGL Qt6::OpenGLWidgets) + Qt6::Widgets Qt6::OpenGL) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Circular_kernel_3) diff --git a/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt b/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt index 4049f54c00d5..f8e410b6a4ea 100644 --- a/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt +++ b/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt @@ -4,19 +4,9 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Alpha_shapes_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) -include_directories(BEFORE ./include) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) diff --git a/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt b/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt index 9cf502573e57..a7bf703fb43b 100644 --- a/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt +++ b/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt @@ -15,25 +15,18 @@ endif() find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) - #-------------------------------- - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Apollonius_graph_2.ui) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Apollonius_graph_2.qrc) - - # use the Qt MOC preprocessor on classes that derives from QObject - - # The executable itself. - add_executable( - Apollonius_graph_2 Apollonius_graph_2.cpp ${DT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Apollonius_graph_2 Apollonius_graph_2.cpp Apollonius_graph_2.ui + Apollonius_graph_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Apollonius_graph_2) diff --git a/GraphicsView/demo/Bounding_volumes/Bounding_volumes.ui b/GraphicsView/demo/Bounding_volumes/Bounding_volumes.ui index 6228db3d7178..73b0415f93c6 100644 --- a/GraphicsView/demo/Bounding_volumes/Bounding_volumes.ui +++ b/GraphicsView/demo/Bounding_volumes/Bounding_volumes.ui @@ -197,7 +197,7 @@ - icons/min_circle.pngicons/min_circle.png + :/cgal/Actions/icons/min_circle.png:/cgal/Actions/icons/min_circle.png Minimum Enclosing &Circle diff --git a/GraphicsView/demo/Bounding_volumes/CMakeLists.txt b/GraphicsView/demo/Bounding_volumes/CMakeLists.txt index 56ed6427701e..bdf70858d185 100644 --- a/GraphicsView/demo/Bounding_volumes/CMakeLists.txt +++ b/GraphicsView/demo/Bounding_volumes/CMakeLists.txt @@ -4,46 +4,24 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Bounding_volumes_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) -include_directories(BEFORE ./include) - +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_INCLUDE_CURRENT_DIR ON) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Bounding_volumes.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Bounding_volumes.qrc) - - # use the Qt MOC preprocessor on classes that derives from QObject - - # The executable itself. - add_executable( - Bounding_volumes Bounding_volumes.cpp ${DT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Bounding_volumes Bounding_volumes.cpp Bounding_volumes.ui Bounding_volumes.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Bounding_volumes) target_link_libraries(Bounding_volumes PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 - Qt6::Gui) - - include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) - cgal_add_compilation_test(Bounding_volumes) + Qt6::Widgets) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Bounding_volumes) From 3a52549c410a87a8c01be35367d612809e1d9da9 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 29 Aug 2023 16:35:15 +0200 Subject: [PATCH 44/85] more cleanup of CMake scripts for Qt6 --- .../demo/Circular_kernel_3/CMakeLists.txt | 11 +---- .../demo/Alpha_shapes_2/CMakeLists.txt | 13 ++---- .../demo/Apollonius_graph_2/CMakeLists.txt | 9 ----- .../demo/Circular_kernel_2/CMakeLists.txt | 29 +++----------- GraphicsView/demo/Generator/CMakeLists.txt | 24 ++--------- GraphicsView/demo/GraphicsView/CMakeLists.txt | 13 +----- .../demo/L1_Voronoi_diagram_2/CMakeLists.txt | 25 +++--------- .../demo/Largest_empty_rect_2/CMakeLists.txt | 25 +++--------- .../Periodic_2_triangulation_2/CMakeLists.txt | 13 +----- GraphicsView/demo/Polygon/CMakeLists.txt | 25 ++---------- .../Segment_Delaunay_graph_2/CMakeLists.txt | 26 +++--------- .../CMakeLists.txt | 32 +++------------ .../demo/Snap_rounding_2/CMakeLists.txt | 27 +++---------- .../demo/Snap_rounding_2/Snap_rounding_2.qrc | 9 +++-- .../demo/Spatial_searching_2/CMakeLists.txt | 26 +++--------- .../demo/Stream_lines_2/CMakeLists.txt | 26 +++--------- .../demo/Triangulation_2/CMakeLists.txt | 40 ++++++------------- 17 files changed, 83 insertions(+), 290 deletions(-) diff --git a/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt b/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt index 2ed07a6904ec..42cc885bbffa 100644 --- a/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt +++ b/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt @@ -1,22 +1,13 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Circular_kernel_3_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) if(CGAL_Qt6_FOUND AND Qt6_FOUND) - add_executable(Circular_kernel_3 Circular_kernel_3.cpp Viewer.cpp) + qt_add_executable(Circular_kernel_3 Circular_kernel_3.cpp Viewer.cpp) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Circular_kernel_3) diff --git a/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt b/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt index f8e410b6a4ea..39e6c10e48ba 100644 --- a/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt +++ b/GraphicsView/demo/Alpha_shapes_2/CMakeLists.txt @@ -12,17 +12,12 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) - - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Alpha_shapes_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Alpha_shapes_2.qrc) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) # The executable itself. - add_executable( - Alpha_shapes_2 Alpha_shapes_2.cpp ${DT_UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} - ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Alpha_shapes_2 Alpha_shapes_2.cpp Alpha_shapes_2.ui Alpha_shapes_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Alpha_shapes_2) diff --git a/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt b/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt index a7bf703fb43b..219466b79416 100644 --- a/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt +++ b/GraphicsView/demo/Apollonius_graph_2/CMakeLists.txt @@ -4,15 +4,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Apollonius_graph_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) find_package(Qt6 QUIET COMPONENTS Widgets) diff --git a/GraphicsView/demo/Circular_kernel_2/CMakeLists.txt b/GraphicsView/demo/Circular_kernel_2/CMakeLists.txt index 054e5feeedb4..940c5bcc27d3 100644 --- a/GraphicsView/demo/Circular_kernel_2/CMakeLists.txt +++ b/GraphicsView/demo/Circular_kernel_2/CMakeLists.txt @@ -4,37 +4,20 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Circular_kernel_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Circular_kernel_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Circular_kernel_2.qrc) - - # use the Qt MOC preprocessor on classes that derives from QObject - - # The executable itself. - add_executable( - Circular_kernel_2 Circular_kernel_2.cpp ${DT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) - + qt_add_executable( + Circular_kernel_2 Circular_kernel_2.cpp + Circular_kernel_2.ui Circular_kernel_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Circular_kernel_2) target_link_libraries(Circular_kernel_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 diff --git a/GraphicsView/demo/Generator/CMakeLists.txt b/GraphicsView/demo/Generator/CMakeLists.txt index 2b6dbe1c77be..cea168a2c9d9 100644 --- a/GraphicsView/demo/Generator/CMakeLists.txt +++ b/GraphicsView/demo/Generator/CMakeLists.txt @@ -3,15 +3,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Generator_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) @@ -21,18 +12,11 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Generator_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Generator_2.qrc) - - # use the Qt MOC preprocessor on classes that derives from QObject - - # The executable itself. - add_executable(Generator_2 Generator_2.cpp ${DT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable(Generator_2 Generator_2.cpp + Generator_2.ui Generator_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Generator_2) diff --git a/GraphicsView/demo/GraphicsView/CMakeLists.txt b/GraphicsView/demo/GraphicsView/CMakeLists.txt index 771f3225dd64..aa84ba549cb6 100644 --- a/GraphicsView/demo/GraphicsView/CMakeLists.txt +++ b/GraphicsView/demo/GraphicsView/CMakeLists.txt @@ -3,25 +3,16 @@ cmake_minimum_required(VERSION 3.1...3.23) project(GraphicsView_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) - add_executable(min min.cpp ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable(min min.cpp) add_to_cached_list(CGAL_EXECUTABLE_TARGETS min) diff --git a/GraphicsView/demo/L1_Voronoi_diagram_2/CMakeLists.txt b/GraphicsView/demo/L1_Voronoi_diagram_2/CMakeLists.txt index e8c2499c325e..058ac7ad55b3 100644 --- a/GraphicsView/demo/L1_Voronoi_diagram_2/CMakeLists.txt +++ b/GraphicsView/demo/L1_Voronoi_diagram_2/CMakeLists.txt @@ -4,18 +4,9 @@ cmake_minimum_required(VERSION 3.1...3.23) project(L1_Voronoi_diagram_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) include_directories(BEFORE ./include) if(CGAL_Qt6_FOUND AND Qt6_FOUND) @@ -23,17 +14,13 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES L1_voronoi_diagram_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./L1_voronoi_diagram_2.qrc) - # The executable itself. - add_executable( - L1_voronoi_diagram_2 L1_voronoi_diagram_2.cpp ${DT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + L1_voronoi_diagram_2 L1_voronoi_diagram_2.cpp + L1_voronoi_diagram_2.ui L1_voronoi_diagram_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS L1_voronoi_diagram_2) diff --git a/GraphicsView/demo/Largest_empty_rect_2/CMakeLists.txt b/GraphicsView/demo/Largest_empty_rect_2/CMakeLists.txt index 8fedcbb9f469..275095d4b70d 100644 --- a/GraphicsView/demo/Largest_empty_rect_2/CMakeLists.txt +++ b/GraphicsView/demo/Largest_empty_rect_2/CMakeLists.txt @@ -4,35 +4,22 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Largest_empty_rect_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Largest_empty_rectangle_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Largest_empty_rectangle_2.qrc) - # The executable itself. - add_executable( - Largest_empty_rectangle_2 Largest_empty_rectangle_2.cpp ${DT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Largest_empty_rectangle_2 Largest_empty_rectangle_2.cpp + Largest_empty_rectangle_2.ui Largest_empty_rectangle_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Largest_empty_rectangle_2) diff --git a/GraphicsView/demo/Periodic_2_triangulation_2/CMakeLists.txt b/GraphicsView/demo/Periodic_2_triangulation_2/CMakeLists.txt index f8acebb2ee4c..f6b0698e4cba 100644 --- a/GraphicsView/demo/Periodic_2_triangulation_2/CMakeLists.txt +++ b/GraphicsView/demo/Periodic_2_triangulation_2/CMakeLists.txt @@ -1,18 +1,9 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Periodic_2_triangulation_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) include_directories(BEFORE ./include) if(CGAL_Qt6_FOUND AND Qt6_FOUND) @@ -35,7 +26,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) source_group("QT" FILES ${QT_headers}) # The executable itself. - add_executable( + qt_add_executable( Periodic_2_Delaunay_triangulation_2 Periodic_2_Delaunay_triangulation_2.cpp ${DT_UI_FILES} diff --git a/GraphicsView/demo/Polygon/CMakeLists.txt b/GraphicsView/demo/Polygon/CMakeLists.txt index db1fe276a5ea..341021360a39 100644 --- a/GraphicsView/demo/Polygon/CMakeLists.txt +++ b/GraphicsView/demo/Polygon/CMakeLists.txt @@ -4,15 +4,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Polygon_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 Core) find_package(Eigen3 3.1.0 QUIET) #(requires 3.1.0 or greater) @@ -28,23 +19,15 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) include(${CGAL_USE_FILE}) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) if(CGAL_Core_FOUND) add_definitions(-DCGAL_USE_CORE) endif() - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Polygon_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Polygon_2.qrc) - - # add_library( CGAL SHARED IMPORTED ) - # SET_PROPERTY(TARGET CGAL PROPERTY IMPORTED_LOCATION ${CGAL_LIBRARY} ) - - # The executable itself. - add_executable(Polygon_2 Polygon_2.cpp ${DT_UI_FILES} ${DT_RESOURCE_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable(Polygon_2 Polygon_2.cpp + Polygon_2.ui Polygon_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Polygon_2) diff --git a/GraphicsView/demo/Segment_Delaunay_graph_2/CMakeLists.txt b/GraphicsView/demo/Segment_Delaunay_graph_2/CMakeLists.txt index 7a947227eece..463f5a424c11 100644 --- a/GraphicsView/demo/Segment_Delaunay_graph_2/CMakeLists.txt +++ b/GraphicsView/demo/Segment_Delaunay_graph_2/CMakeLists.txt @@ -4,37 +4,23 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Segment_Delaunay_graph_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 Core) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) include_directories(BEFORE ./include) if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - include(${CGAL_USE_FILE}) add_definitions(-DQT_NO_KEYWORDS) - # UI files (Qt Designer files) - qt6_wrap_ui(CDT_UI_FILES Segment_voronoi_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Segment_voronoi_2.qrc) - # The executable itself. - add_executable( - Segment_voronoi_2 Segment_voronoi_2.cpp ${CDT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Segment_voronoi_2 Segment_voronoi_2.cpp + Segment_voronoi_2.ui Segment_voronoi_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Segment_voronoi_2) diff --git a/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt b/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt index e3cb33be16c0..980aa3401a2a 100644 --- a/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt +++ b/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt @@ -4,40 +4,20 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Segment_Delaunay_graph_Linf_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 Core) -set(QT_USE_QTXML TRUE) -set(QT_USE_QTMAIN TRUE) -set(QT_USE_QTSCRIPT TRUE) -set(QT_USE_QTOPENGL TRUE) - -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) include_directories(BEFORE ./include) if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_AUTOMOC ON) - include(${CGAL_USE_FILE}) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) add_definitions(-DQT_NO_KEYWORDS) - # UI files (Qt Designer files) - qt6_wrap_ui(CDT_UI_FILES Segment_voronoi_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Segment_voronoi_2.qrc) - - # The executable itself. - add_executable( - Segment_voronoi_linf_2 Segment_voronoi_linf_2.cpp ${CDT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Segment_voronoi_linf_2 Segment_voronoi_linf_2.cpp + Segment_voronoi_2.ui Segment_voronoi_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Segment_voronoi_linf_2) diff --git a/GraphicsView/demo/Snap_rounding_2/CMakeLists.txt b/GraphicsView/demo/Snap_rounding_2/CMakeLists.txt index 896dfc63b086..ab1015f2fc36 100644 --- a/GraphicsView/demo/Snap_rounding_2/CMakeLists.txt +++ b/GraphicsView/demo/Snap_rounding_2/CMakeLists.txt @@ -4,34 +4,19 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Snap_rounding_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Widgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) add_definitions(-DQT_NO_KEYWORDS) - set(CMAKE_INCLUDE_CURRENT_DIR ON) - - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Snap_rounding_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Snap_rounding_2.qrc) - # The executable itself. - add_executable( - Snap_rounding_2 Snap_rounding_2.cpp ${DT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Snap_rounding_2 Snap_rounding_2.cpp + Snap_rounding_2.ui Snap_rounding_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Snap_rounding_2) diff --git a/GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.qrc b/GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.qrc index 7604c41cc813..b4307047176a 100644 --- a/GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.qrc +++ b/GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.qrc @@ -1,8 +1,11 @@ - + + icons/grid.png + icons/snapped.png + icons/unsnapped.png - - ../resources/about_CGAL.html + + ../resources/about_CGAL.html about_Snap_rounding_2.html diff --git a/GraphicsView/demo/Spatial_searching_2/CMakeLists.txt b/GraphicsView/demo/Spatial_searching_2/CMakeLists.txt index 55770b5f4c3a..78c6acd254de 100644 --- a/GraphicsView/demo/Spatial_searching_2/CMakeLists.txt +++ b/GraphicsView/demo/Spatial_searching_2/CMakeLists.txt @@ -4,35 +4,21 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Spatial_searching_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Spatial_searching_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Spatial_searching_2.qrc) - - # The executable itself. - add_executable( - Spatial_searching_2 Spatial_searching_2.cpp ${DT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Spatial_searching_2 Spatial_searching_2.cpp + Spatial_searching_2.ui Spatial_searching_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Spatial_searching_2) diff --git a/GraphicsView/demo/Stream_lines_2/CMakeLists.txt b/GraphicsView/demo/Stream_lines_2/CMakeLists.txt index 71deef9e9100..f3f3133898a1 100644 --- a/GraphicsView/demo/Stream_lines_2/CMakeLists.txt +++ b/GraphicsView/demo/Stream_lines_2/CMakeLists.txt @@ -4,35 +4,21 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Stream_lines_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # UI files (Qt Designer files) - qt6_wrap_ui(DT_UI_FILES Stream_lines_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Stream_lines_2.qrc) - - # The executable itself. - add_executable( - Stream_lines_2 Stream_lines_2.cpp ${DT_UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} - ${CGAL_Qt6_MOC_FILES}) + qt_add_executable( + Stream_lines_2 Stream_lines_2.cpp + Stream_lines_2.ui Stream_lines_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Stream_lines_2) diff --git a/GraphicsView/demo/Triangulation_2/CMakeLists.txt b/GraphicsView/demo/Triangulation_2/CMakeLists.txt index 6ee55850f86d..a3ff3a16dd43 100644 --- a/GraphicsView/demo/Triangulation_2/CMakeLists.txt +++ b/GraphicsView/demo/Triangulation_2/CMakeLists.txt @@ -4,16 +4,9 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Triangulation_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - -set(CMAKE_AUTOMOC TRUE) +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTOUIC ON) +set(CMAKE_AUTORCC ON) set(CMAKE_INCLUDE_CURRENT_DIR TRUE) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) @@ -31,13 +24,10 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # The "constrained Delaunay" demo: Constrained_Delaunay_triangulation_2 #-------------------------------- -qt6_add_resources(CD_RES_FILE Constrained_Delaunay_triangulation_2.qrc) -qt6_wrap_ui(CD_UI_FILES Constrained_Delaunay_triangulation_2.ui) -# The executable itself. -add_executable( +qt_add_executable( Constrained_Delaunay_triangulation_2 - Constrained_Delaunay_triangulation_2.cpp ${CD_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CD_RES_FILE}) + Constrained_Delaunay_triangulation_2.cpp + Constrained_Delaunay_triangulation_2.ui Constrained_Delaunay_triangulation_2.qrc) target_link_libraries(Constrained_Delaunay_triangulation_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) target_include_directories(Constrained_Delaunay_triangulation_2 @@ -48,12 +38,9 @@ add_to_cached_list(CGAL_EXECUTABLE_TARGETS Constrained_Delaunay_triangulation_2) #-------------------------------- # The "Delaunay" demo: Delaunay_triangulation_2 #-------------------------------- -qt6_wrap_ui(D_UI_FILES Delaunay_triangulation_2.ui) -qt6_add_resources(D_RES_FILE Delaunay_triangulation_2.qrc) -# The executable itself. -add_executable( - Delaunay_triangulation_2 Delaunay_triangulation_2.cpp ${D_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${D_RES_FILE}) +qt_add_executable( + Delaunay_triangulation_2 Delaunay_triangulation_2.cpp + Delaunay_triangulation_2.ui Delaunay_triangulation_2.qrc) target_link_libraries(Delaunay_triangulation_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) @@ -63,12 +50,9 @@ add_to_cached_list(CGAL_EXECUTABLE_TARGETS Delaunay_triangulation_2) # The "Regular" demo: Regular_triangulation_2 #-------------------------------- -# The executable itself. -qt6_add_resources(R_RES_FILE Regular_triangulation_2.qrc) -qt6_wrap_ui(R_UI_FILES Regular_triangulation_2.ui) -add_executable( - Regular_triangulation_2 Regular_triangulation_2.cpp ${R_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${R_RES_FILE}) +qt_add_executable( + Regular_triangulation_2 Regular_triangulation_2.cpp + Regular_triangulation_2.ui Regular_triangulation_2.qrc) target_link_libraries(Regular_triangulation_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) From 7af862ec8a0194e9943caf3d6df44e15d830a6c8 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 29 Aug 2023 16:55:28 +0200 Subject: [PATCH 45/85] fix trailing space --- GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt b/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt index 980aa3401a2a..842ed5ff23bb 100644 --- a/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt +++ b/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/CMakeLists.txt @@ -16,7 +16,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) qt_add_executable( - Segment_voronoi_linf_2 Segment_voronoi_linf_2.cpp + Segment_voronoi_linf_2 Segment_voronoi_linf_2.cpp Segment_voronoi_2.ui Segment_voronoi_2.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Segment_voronoi_linf_2) From 1f13a625b11732ec9240e3249c1a279a08556a18 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 30 Aug 2023 09:32:17 +0200 Subject: [PATCH 46/85] restore the OpenGL format in DemosMainWindow That still does not work well when the widget is a `QOpenGLWidget`. We probably need to derive from that class, to call `glClearColor(..)` in the `paintGL()` method. --- .../include/CGAL/Qt/CreateOpenGLContext.h | 12 ++++-------- .../include/CGAL/Qt/DemosMainWindow_impl.h | 15 +++++++++------ GraphicsView/include/CGAL/Qt/debug_impl.h | 1 - GraphicsView/include/CGAL/Qt/qglviewer.h | 2 -- GraphicsView/include/CGAL/Qt/qglviewer_impl.h | 1 - 5 files changed, 13 insertions(+), 18 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/CreateOpenGLContext.h b/GraphicsView/include/CGAL/Qt/CreateOpenGLContext.h index e85911f73e87..5c37bffe9a05 100644 --- a/GraphicsView/include/CGAL/Qt/CreateOpenGLContext.h +++ b/GraphicsView/include/CGAL/Qt/CreateOpenGLContext.h @@ -19,16 +19,12 @@ namespace Qt{ inline QOpenGLContext* createOpenGLContext() { QOpenGLContext *context = new QOpenGLContext(); + QSurfaceFormat format; + format.setVersion(2,1); + format.setProfile(QSurfaceFormat::CompatibilityProfile); + context->setFormat(format); context->create(); return context; - - //QSurfaceFormat format; - //format.setVersion(2,1); - //format.setProfile(QSurfaceFormat::CompatibilityProfile); - //context->setFormat(format); - //QGLContext *result = QGLContext::fromOpenGLContext(context); - // result->create(); - //return result; } } // namespace Qt } // namespace CGAL diff --git a/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h b/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h index 9b1761e6b868..8b6cb174703c 100644 --- a/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h +++ b/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h @@ -208,19 +208,22 @@ void DemosMainWindow::setUseOpenGL(bool checked) { if(checked) { - // AF QOpenGLWidget* new_viewport = new QOpenGLWidget; + QOpenGLWidget* new_viewport = new QOpenGLWidget(this); + new_viewport->setUpdateBehavior(QOpenGLWidget::NoPartialUpdate); // Setup the format to allow antialiasing with OpenGL: // one need to activate the SampleBuffers, if the graphic driver allows // this. - // AF QGLFormat glformat = new_viewport->format(); - // AF glformat.setOption(QGL::SampleBuffers); - // AF new_viewport->setFormat(glformat); + auto glformat = new_viewport->format(); + glformat.setSamples(4); + new_viewport->setFormat(glformat); - // AF view->setViewport(new_viewport); + view->setViewport(new_viewport); + view->setViewportUpdateMode(QGraphicsView::FullViewportUpdate); } else { - view->setViewport(new QWidget); + view->setViewport(new QWidget(this)); + view->setViewportUpdateMode(QGraphicsView::MinimalViewportUpdate); } statusBar()->showMessage(tr("OpenGL %1activated").arg(checked?"":"de-"), 1000); diff --git a/GraphicsView/include/CGAL/Qt/debug_impl.h b/GraphicsView/include/CGAL/Qt/debug_impl.h index 4f3c152697c6..a9e0d6da5b1a 100644 --- a/GraphicsView/include/CGAL/Qt/debug_impl.h +++ b/GraphicsView/include/CGAL/Qt/debug_impl.h @@ -23,7 +23,6 @@ #include #include #include -#include #include namespace CGAL { namespace Qt { diff --git a/GraphicsView/include/CGAL/Qt/qglviewer.h b/GraphicsView/include/CGAL/Qt/qglviewer.h index a89a66a4b744..8ee3b4135f29 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer.h @@ -70,8 +70,6 @@ class CGAL_QT_EXPORT QGLViewer : public QOpenGLWidget, public QOpenGLFunctions { Q_OBJECT public: - //todo check if this is used. If not remove it - explicit QGLViewer(QOpenGLContext* context, QWidget *parent = nullptr, ::Qt::WindowFlags flags = ::Qt::WindowType(0)); explicit QGLViewer(QWidget *parent = nullptr, diff --git a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h index b6bfc70e9ac3..3cca531c5fb2 100644 --- a/GraphicsView/include/CGAL/Qt/qglviewer_impl.h +++ b/GraphicsView/include/CGAL/Qt/qglviewer_impl.h @@ -2446,7 +2446,6 @@ void CGAL::QGLViewer::setMouseBinding(::Qt::Key key, ::Qt::KeyboardModifiers mod ClickBindingPrivate cbp(modifiers, button, false, ::Qt::NoButton, key); clickBinding_.remove(cbp); - } From 4740f81a1b706af3c8ecd6153f24d6d3fbd5b3fe Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 31 Aug 2023 15:43:44 +0200 Subject: [PATCH 47/85] add a target to compile all CGALlab --- Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake b/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake index dea8e54d2b0a..f4129a57c9fc 100644 --- a/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake +++ b/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake @@ -64,6 +64,10 @@ include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) if(TARGET Polyhedron_3) add_dependencies( ${plugin_name} Polyhedron_3 ) endif() + if(NOT TARGET CGALlab_all_plugins) + add_custom_target(CGALlab_all_plugins) + endif() + add_dependencies(CGALlab_all_plugins ${plugin_name}) #metadata management #create "${plugin_implementation_base_name}.json" in BINARY_DIR STRING(TOLOWER "${plugin_implementation_base_name}.json" base_name) From 0303b8dfd5eb99acb0668ff02e5e22c4d2c60424 Mon Sep 17 00:00:00 2001 From: Nicolas Saillant Date: Tue, 5 Sep 2023 15:58:43 +0200 Subject: [PATCH 48/85] Update CMakeLists for QT6 --- .../Polyline_simplification_2/CMakeLists.txt | 27 +++++-------------- .../Surface_mesh_deformation/CMakeLists.txt | 5 ---- .../demo/Triangulation_3/CMakeLists.txt | 25 +++++------------ 3 files changed, 12 insertions(+), 45 deletions(-) diff --git a/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt b/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt index 90254ff949da..db32bac7b395 100644 --- a/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt +++ b/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt @@ -4,39 +4,24 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Polyline_simplification_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) set(CMAKE_INCLUDE_CURRENT_DIR ON) -find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Widgets) +find_package(Qt6 QUIET COMPONENTS Widgets) include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR}/include) if(CGAL_Qt6_FOUND AND Qt6_FOUND) - set(CMAKE_AUTOMOC ON) - add_definitions(-DQT_NO_KEYWORDS) + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # UI files (Qt Designer files) - qt6_wrap_ui(CDT_UI_FILES Polyline_simplification_2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES - ${CMAKE_CURRENT_SOURCE_DIR}/Polyline_simplification_2.qrc) # The executable itself. - add_executable( + qt_add_executable( Polyline_simplification_2 - ${CMAKE_CURRENT_SOURCE_DIR}/Polyline_simplification_2.cpp ${CDT_UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} ${CGAL_Qt6_MOC_FILES}) + Polyline_simplification_2.cpp Polyline_simplification_2.ui Polyline_simplification_2.qrc) target_link_libraries(Polyline_simplification_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) diff --git a/Surface_mesh_deformation/demo/Surface_mesh_deformation/CMakeLists.txt b/Surface_mesh_deformation/demo/Surface_mesh_deformation/CMakeLists.txt index 33263a815435..3f5e0bdb430e 100644 --- a/Surface_mesh_deformation/demo/Surface_mesh_deformation/CMakeLists.txt +++ b/Surface_mesh_deformation/demo/Surface_mesh_deformation/CMakeLists.txt @@ -4,11 +4,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Surface_mesh_deformation_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - set_property(DIRECTORY PROPERTY CGAL_NO_TESTING TRUE) find_package(CGAL REQUIRED) diff --git a/Triangulation_3/demo/Triangulation_3/CMakeLists.txt b/Triangulation_3/demo/Triangulation_3/CMakeLists.txt index bce91a5a51b3..1058b455a761 100644 --- a/Triangulation_3/demo/Triangulation_3/CMakeLists.txt +++ b/Triangulation_3/demo/Triangulation_3/CMakeLists.txt @@ -4,14 +4,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Triangulation_3_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) @@ -20,7 +12,7 @@ set(CMAKE_AUTOMOC ON) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets OpenGL) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) if(Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) @@ -48,24 +40,19 @@ endif() if(CGAL_Qt6_FOUND AND Qt6_FOUND) include_directories(BEFORE ./) - - # ui files, created with Qt Designer - qt6_wrap_ui(uis MainWindow.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./T3_demo.qrc) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) # cpp files - add_executable( + qt_add_executable( T3_demo T3_demo.cpp MainWindow.cpp Viewer.cpp PreferenceDlg.cpp Scene.cpp - ${uis} - ${CGAL_Qt6_RESOURCE_FILES} - ${CGAL_Qt6_MOC_FILES}) + MainWindow.ui + T3_demo.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS T3_demo) From b286df4b96923e23d4bb72dce15839fc04999c28 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 8 Sep 2023 11:49:32 +0200 Subject: [PATCH 49/85] fix warnings (and ASAN errors) --- .../Arrangement_on_surface_2/PropertyValueDelegate.cpp | 2 +- .../examples/Arrangement_on_surface_2/draw_arr.cpp | 8 +++----- .../include/CGAL/Curved_kernel_via_analysis_2/Point_2.h | 8 ++++---- .../demo/Periodic_3_triangulation_3/MainWindow.h | 6 +++--- .../demo/Periodic_Lloyd_3/MainWindow.cpp | 2 +- 5 files changed, 12 insertions(+), 14 deletions(-) diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/PropertyValueDelegate.cpp b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/PropertyValueDelegate.cpp index 0f2dbb004986..ba47beb81df0 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/PropertyValueDelegate.cpp +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/PropertyValueDelegate.cpp @@ -22,7 +22,7 @@ PropertyValueDelegate::PropertyValueDelegate( QObject* parent ): QItemEditorFactory* factory = new QItemEditorFactory; QItemEditorCreatorBase* creator = new QStandardItemEditorCreator< PositiveSpinBox >( ); - factory->registerEditor( QVariant::UInt, creator ); + factory->registerEditor( QMetaType::UInt, creator ); this->setItemEditorFactory( factory ); } diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp index 8c3c9b4daf85..91da88edc68a 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp @@ -22,8 +22,8 @@ std::tuple hsv_to_rgb(float hue, float sat, float value) { float red, green, blue; float fc = value * sat; // Chroma - float hue_prime = fmod(hue / 60.0f, 6); - float fx = fc * (1.0f - fabs(fmod(hue_prime, 2) - 1.0)); + float hue_prime = fmod(hue / 60.0f, 6.f); + float fx = fc * (1.0f - fabs(fmod(hue_prime, 2.f) - 1.f)); float fm = value - fc; if(0 <= hue_prime && hue_prime < 1) { @@ -104,9 +104,7 @@ int main() { float h = 360.0f * id++ / arr.number_of_faces(); float s = 0.5; float v = 0.5; - float r, g, b; - typedef unsigned char uchar; - std::tie(r, g, b) = hsv_to_rgb(h, s, v); + auto [r, g, b] = hsv_to_rgb(h, s, v); return CGAL::IO::Color(r,g,b); }, "hsv colors", true); diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h index 789f24b841e4..f64c67b70eac 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h @@ -736,13 +736,13 @@ class Point_2 : swallow(is, '('); // read values - is >> iformat(rep._m_xy); + is >> IO::iformat(rep._m_xy); swallow(is, ','); - is >> iformat(rep._m_x); + is >> IO::iformat(rep._m_x); swallow(is, ','); - is >> iformat(rep._m_curve); + is >> IO::iformat(rep._m_curve); swallow(is, ','); - is >> iformat(rep._m_arcno); + is >> IO::iformat(rep._m_arcno); swallow(is, ','); is >> rep._m_location; diff --git a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.h b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.h index 0972fe6db4c1..79b3e5bec140 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.h +++ b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.h @@ -103,15 +103,15 @@ class MainWindow : public QMainWindow } ~MainWindow() { - delete(ui); - delete(s); process->close(); delete(process); + delete(s); + delete(ui); } public Q_SLOTS: void help() { - QString app = QLibraryInfo::location(QLibraryInfo::BinariesPath) + QString app = QLibraryInfo::path(QLibraryInfo::BinariesPath) + QDir::separator(); #if !defined(Q_OS_MAC) app += QString("assistant"); diff --git a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/MainWindow.cpp b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/MainWindow.cpp index 8287214bbcfa..f4eb7aeb793a 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/MainWindow.cpp +++ b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/MainWindow.cpp @@ -204,7 +204,7 @@ MainWindow::newPoints(int n) } void MainWindow::help() { - QString app = QLibraryInfo::location(QLibraryInfo::BinariesPath) + QString app = QLibraryInfo::path(QLibraryInfo::BinariesPath) + QDir::separator(); #if !defined(Q_OS_MAC) app += QString("assistant"); From a4136707b24d991c7694018b6d0ac83e7da82757 Mon Sep 17 00:00:00 2001 From: Nicolas Saillant Date: Mon, 11 Sep 2023 09:51:06 +0200 Subject: [PATCH 50/85] More CMakeLists Updates for QT6 --- GraphicsView/demo/Generator/CMakeLists.txt | 2 +- .../Periodic_3_triangulation_3/CMakeLists.txt | 24 ++++--------------- .../demo/Periodic_Lloyd_3/CMakeLists.txt | 23 ++++-------------- .../CMakeLists.txt | 9 +++---- .../Polyline_simplification_2/CMakeLists.txt | 2 -- .../Triangulation_on_sphere_2/CMakeLists.txt | 17 +++---------- 6 files changed, 17 insertions(+), 60 deletions(-) diff --git a/GraphicsView/demo/Generator/CMakeLists.txt b/GraphicsView/demo/Generator/CMakeLists.txt index cea168a2c9d9..6a3c0d9a4ac0 100644 --- a/GraphicsView/demo/Generator/CMakeLists.txt +++ b/GraphicsView/demo/Generator/CMakeLists.txt @@ -5,7 +5,7 @@ project(Generator_Demo) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) diff --git a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt index d2cfa5ea7706..da044276aec7 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt @@ -4,20 +4,11 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Periodic_3_triangulation_3_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - # Find CGAL find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # Find Qt6 itself -find_package(Qt6 QUIET COMPONENTS Widgets OpenGL OpenGLWidgets Help ToolsTools) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL Help ToolsTools) if(Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) @@ -30,11 +21,9 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND AND TARGET ${CGAL_QCOLLECTIONGENERATOR_TARGET}) - # UI files (Qt Designer files) - qt6_wrap_ui(UI_FILES MainWindow.ui) - - # qrc files (resource files) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Periodic_3_triangulation_3.qrc) + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) # use the Qt MOC preprocessor on classes that derive from QObject qt6_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_Scene.cpp") @@ -52,7 +41,7 @@ if(CGAL_Qt6_FOUND ${CMAKE_CURRENT_BINARY_DIR}/Periodic_3_triangulation_3.qhc) # The executable itself - add_executable( + qt_add_executable( periodic_3_triangulation_3_demo Scene.cpp moc_Scene.cpp @@ -61,9 +50,6 @@ if(CGAL_Qt6_FOUND periodic_3_triangulation_3_demo.cpp MainWindow.ui moc_MainWindow.cpp - ${UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES} - ${CGAL_Qt6_MOC_FILES} Periodic_3_triangulation_3.qhc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS periodic_3_triangulation_3_demo) diff --git a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt index 03a49088d023..038cb121393f 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt @@ -4,14 +4,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Periodic_Lloyd_3_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. @@ -19,7 +11,7 @@ set(CMAKE_AUTOMOC ON) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGL OpenGLWidgets Help ToolsTools) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL Help ToolsTools) set(CGAL_QCOLLECTIONGENERATOR_TARGET Qt6::qhelpgenerator) @@ -29,11 +21,8 @@ if(CGAL_Qt6_FOUND include_directories(BEFORE ./) - # ui file, created with Qt Designer - qt6_wrap_ui(uis MainWindow.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Periodic_Lloyd_3.qrc) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) if(DEFINED QT_QCOLLECTIONGENERATOR_EXECUTABLE) @@ -51,15 +40,13 @@ if(CGAL_Qt6_FOUND ${CMAKE_CURRENT_BINARY_DIR}/Periodic_Lloyd_3.qhc WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - add_executable( + qt_add_executable( Periodic_Lloyd_3 Periodic_Lloyd_3.qhc Periodic_Lloyd_3.cpp MainWindow.cpp Viewer.cpp - ${uis} - ${CGAL_Qt6_RESOURCE_FILES} - ${CGAL_Qt6_MOC_FILES}) + Periodic_Lloyd_3.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Periodic_Lloyd_3) diff --git a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt index cda66cbac6e7..d57ee2e529bc 100644 --- a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt +++ b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt @@ -20,14 +20,11 @@ if((CGAL_Core_FOUND OR LEDA_FOUND) include_directories(BEFORE include) - # ui files, created with Qt Designer - qt6_wrap_ui(UIS P4HDT2.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(RESOURCE_FILES Main_resources.qrc) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) # cpp files - add_executable(P4HDT2 P4HDT2.cpp ${RESOURCE_FILES} ${UIS}) + qt_add_executable(P4HDT2 P4HDT2.cpp P4HDT2.ui) target_link_libraries(P4HDT2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) if(TARGET CGAL::CGAL_Core) diff --git a/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt b/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt index db32bac7b395..e8ffecc2a3dd 100644 --- a/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt +++ b/Polyline_simplification_2/demo/Polyline_simplification_2/CMakeLists.txt @@ -17,8 +17,6 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTORCC ON) - - # The executable itself. qt_add_executable( Polyline_simplification_2 Polyline_simplification_2.cpp Polyline_simplification_2.ui Polyline_simplification_2.qrc) diff --git a/Triangulation_on_sphere_2/demo/Triangulation_on_sphere_2/CMakeLists.txt b/Triangulation_on_sphere_2/demo/Triangulation_on_sphere_2/CMakeLists.txt index 6499a9d7ffbb..5fc26c32a7f7 100644 --- a/Triangulation_on_sphere_2/demo/Triangulation_on_sphere_2/CMakeLists.txt +++ b/Triangulation_on_sphere_2/demo/Triangulation_on_sphere_2/CMakeLists.txt @@ -11,20 +11,12 @@ set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true) set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() # Find CGAL and CGAL Qt6 find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # Find Qt6 itself -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets OpenGL) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) find_package(Eigen3 3.1.0 QUIET) #(requires 3.1.0 or greater) include(CGAL_Eigen3_support) @@ -33,12 +25,9 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND AND TARGET CGAL::Eigen3_support) # Include this package's headers first include_directories(BEFORE ./ ./include) - # ui file, created with Qt Designer - qt6_wrap_ui( uis Mainwindow.ui ) - - #qt6_generate_moc( main.cpp Mainwindow.moc) + set(CMAKE_AUTOUIC ON) - add_executable ( Triangulation_on_sphere_2_Demo main.cpp Viewer.cpp ${uis}) + qt_add_executable ( Triangulation_on_sphere_2_Demo main.cpp Viewer.cpp) add_to_cached_list( CGAL_EXECUTABLE_TARGETS Triangulation_on_sphere_2_Demo ) From 0d7280ea63ac21e406a9608871f4e6e1f0abc5d5 Mon Sep 17 00:00:00 2001 From: Nicolas Saillant Date: Mon, 11 Sep 2023 16:10:20 +0200 Subject: [PATCH 51/85] CMakeLists updates for Qt6 --- .../Hyperbolic_triangulation_2/CMakeLists.txt | 20 ++++-------- .../demo/Linear_cell_complex/CMakeLists.txt | 32 +++++-------------- Mesh_2/demo/Mesh_2/CMakeLists.txt | 5 --- .../Periodic_3_triangulation_3/CMakeLists.txt | 2 +- .../demo/Periodic_Lloyd_3/CMakeLists.txt | 3 +- .../CMakeLists.txt | 2 +- .../demo/Triangulation_3/CMakeLists.txt | 2 +- 7 files changed, 19 insertions(+), 47 deletions(-) diff --git a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt index 0c4ea157c891..9d46e7227294 100644 --- a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt +++ b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt @@ -7,33 +7,27 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt6) find_package(LEDA QUIET) # Find Qt6 itself -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND AND (CGAL_Core_FOUND OR LEDA_FOUND)) - # ui files, created with Qt Designer - qt6_wrap_ui(UIS HDT2.ui) - qt6_add_resources(RESOURCE_FILES resources/Delaunay_triangulation_2.qrc) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # cpp files - add_executable ( HDT2 HDT2.cpp ${CGAL_Qt6_RESOURCE_FILES} ${RESOURCE_FILES} ${UIS}) + qt_add_executable ( HDT2 HDT2.cpp) target_include_directories(HDT2 PRIVATE ./ ./include) add_to_cached_list( CGAL_EXECUTABLE_TARGETS HDT2 ) - target_link_libraries ( HDT2 CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) + target_link_libraries ( HDT2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) if(CGAL_Core_FOUND) - target_link_libraries ( HDT2 CGAL::CGAL_Core) + target_link_libraries ( HDT2 PRIVATE CGAL::CGAL_Core) else() - target_link_libraries ( HDT2 ${LEDA_LIBRARIES}) + target_link_libraries ( HDT2 PRIVATE ${LEDA_LIBRARIES}) endif() include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) diff --git a/Linear_cell_complex/demo/Linear_cell_complex/CMakeLists.txt b/Linear_cell_complex/demo/Linear_cell_complex/CMakeLists.txt index c001d50f23ff..b152c55bd9da 100644 --- a/Linear_cell_complex/demo/Linear_cell_complex/CMakeLists.txt +++ b/Linear_cell_complex/demo/Linear_cell_complex/CMakeLists.txt @@ -5,18 +5,8 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Linear_cell_complex_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -# Instruct CMake to run moc automatically when needed. -set(CMAKE_AUTOMOC ON) ## To add expensive tests # add_definitions("-DCGAL_CHECK_EXPENSIVE") @@ -42,7 +32,7 @@ add_definitions(-DCMAP_WITH_INDEX) # to use cc with index (handle otherwise) ################## find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt6 COMPONENTS Widgets OpenGL OpenGLWidgets) +find_package(Qt6 COMPONENTS Widgets OpenGL) if(NOT CGAL_Qt6_FOUND OR NOT Qt6_FOUND) @@ -51,17 +41,14 @@ if(NOT CGAL_Qt6_FOUND OR NOT Qt6_FOUND) else() add_definitions(-DCGAL_USE_BASIC_VIEWER -DQT_NO_KEYWORDS) + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # ui file, created with Qt Designer - qt6_wrap_ui(uis MainWindow.ui CreateMesh.ui CreateMenger.ui - CreateSierpinskiCarpet.ui CreateSierpinskiTriangle.ui) - - # qrc files (resources files, that contain icons, at least) - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES ./Linear_cell_complex_3.qrc) - - add_executable( + qt_add_executable( Linear_cell_complex_3_demo Linear_cell_complex_3_demo.cpp + Linear_cell_complex_3.qrc MainWindow.cpp Viewer.cpp Linear_cell_complex_3_subdivision.cpp @@ -69,15 +56,12 @@ else() typedefs.h import_moka.h MainWindow.h - Viewer.h - ${uis} - ${CGAL_Qt6_RESOURCE_FILES} - ${CGAL_Qt6_MOC_FILES}) + Viewer.h) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Linear_cell_complex_3_demo) target_link_libraries(Linear_cell_complex_3_demo - PUBLIC CGAL::CGAL CGAL::CGAL_Qt6 Qt6::OpenGLWidgets Qt6::OpenGL) + PUBLIC CGAL::CGAL CGAL::CGAL_Qt6 Qt6::OpenGL) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Linear_cell_complex_3_demo) diff --git a/Mesh_2/demo/Mesh_2/CMakeLists.txt b/Mesh_2/demo/Mesh_2/CMakeLists.txt index 6619032f709f..5087c477a12d 100644 --- a/Mesh_2/demo/Mesh_2/CMakeLists.txt +++ b/Mesh_2/demo/Mesh_2/CMakeLists.txt @@ -4,11 +4,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Mesh_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - find_package(CGAL REQUIRED) include(${CGAL_USE_FILE}) diff --git a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt index da044276aec7..22c26c48986b 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt @@ -55,7 +55,7 @@ if(CGAL_Qt6_FOUND add_to_cached_list(CGAL_EXECUTABLE_TARGETS periodic_3_triangulation_3_demo) target_link_libraries(periodic_3_triangulation_3_demo - PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::OpenGLWidgets Qt6::OpenGL) + PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::OpenGL) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(periodic_3_triangulation_3_demo) diff --git a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt index 038cb121393f..cb944392edf4 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt @@ -50,8 +50,7 @@ if(CGAL_Qt6_FOUND add_to_cached_list(CGAL_EXECUTABLE_TARGETS Periodic_Lloyd_3) - target_link_libraries(Periodic_Lloyd_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 - Qt6::OpenGLWidgets Qt6::OpenGL) + target_link_libraries(Periodic_Lloyd_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::OpenGL) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Periodic_Lloyd_3) diff --git a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt index d57ee2e529bc..d3ba88394b2f 100644 --- a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt +++ b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt @@ -13,7 +13,7 @@ include(${CGAL_USE_FILE}) find_package(LEDA QUIET) -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if((CGAL_Core_FOUND OR LEDA_FOUND) AND Qt6_FOUND AND CGAL_Qt6_FOUND) diff --git a/Triangulation_3/demo/Triangulation_3/CMakeLists.txt b/Triangulation_3/demo/Triangulation_3/CMakeLists.txt index 1058b455a761..ab246bc44268 100644 --- a/Triangulation_3/demo/Triangulation_3/CMakeLists.txt +++ b/Triangulation_3/demo/Triangulation_3/CMakeLists.txt @@ -57,7 +57,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_to_cached_list(CGAL_EXECUTABLE_TARGETS T3_demo) target_link_libraries(T3_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6) - target_link_libraries(T3_demo PRIVATE Qt6::OpenGLWidgets Qt6::OpenGL) + target_link_libraries(T3_demo PRIVATE Qt6::OpenGL) if(TARGET CGAL::TBB_support) target_link_libraries(T3_demo PUBLIC CGAL::TBB_support) endif() From 303282aec6841421ea9d623670d89f1906866fa5 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 11 Sep 2023 17:33:34 +0200 Subject: [PATCH 52/85] fix "Save as..." in CGAL Lab --- Polyhedron/demo/Polyhedron/MainWindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.cpp b/Polyhedron/demo/Polyhedron/MainWindow.cpp index 5829ffb5e22c..1714b547af9e 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.cpp +++ b/Polyhedron/demo/Polyhedron/MainWindow.cpp @@ -1948,10 +1948,10 @@ void MainWindow::on_actionSaveAs_triggered() return; } - Q_FOREACH(QString string, filters) + for(QString string: filters) { QStringList sl = string.split(";;"); - Q_FOREACH(QString s, sl){ + for(QString s: sl){ QRegularExpressionMatch match = extensions.match(s); if(match.hasMatch()) filter_exts.append(match.capturedTexts()); @@ -1987,9 +1987,9 @@ void MainWindow::on_actionSaveAs_triggered() if(filename.isEmpty()) return; last_saved_dir = QFileInfo(filename).absoluteDir().path(); - // AF extensions.indexIn(sf.split(";;").first()); + auto match = extensions.match(sf.split(";;").first()); QString filter_ext, filename_ext; - // AF filter_ext = extensions.cap().split(" ").first();// in case of syntax like (*.a *.b) + filter_ext = match.captured().split(" ").first();// in case of syntax like (*.a *.b) filter_ext.remove(")"); filter_ext.remove("("); From c276b54e94594a876183a0f83260b21659616401 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 11 Sep 2023 17:33:54 +0200 Subject: [PATCH 53/85] Remove one occurence of "qt5" --- .github/workflows/cmake-all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake-all.yml b/.github/workflows/cmake-all.yml index d0507b4d4305..77f607ab8849 100644 --- a/.github/workflows/cmake-all.yml +++ b/.github/workflows/cmake-all.yml @@ -20,7 +20,7 @@ jobs: mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON .. ctest -L Installation -j $(getconf _NPROCESSORS_ONLN) - cmake-testsuite-with-qt5: + cmake-testsuite-with-qt: runs-on: ubuntu-latest From 873c3b26cfc97b19909fcdda7b38e7d1685ab6ba Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 11 Sep 2023 17:46:27 +0200 Subject: [PATCH 54/85] remove a few occurrences of "qt5" There are still a lot! --- AABB_tree/demo/AABB_tree/AABB_demo.cpp | 2 +- Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp | 4 ++-- .../demo/Arrangement_on_surface_2/arrangement_2.cpp | 2 +- Documentation/doc/Documentation/Third_party.txt | 4 ++-- Documentation/doc/Documentation/Usage.txt | 4 ++-- .../doc/Documentation/advanced/Configuration_variables.txt | 4 ++-- Documentation/doc/Documentation/advanced/Installation.txt | 2 +- Documentation/doc/Documentation/windows.txt | 2 +- Documentation/doc/resources/1.8.13/BaseDoxyfile.in | 2 +- Documentation/doc/resources/1.9.6/BaseDoxyfile.in | 2 +- GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp | 2 +- GraphicsView/demo/Apollonius_graph_2/Apollonius_graph_2.cpp | 2 +- GraphicsView/demo/Bounding_volumes/Bounding_volumes.cpp | 2 +- GraphicsView/demo/Circular_kernel_2/Circular_kernel_2.cpp | 2 +- GraphicsView/demo/Generator/Generator_2.cpp | 2 +- .../demo/L1_Voronoi_diagram_2/L1_voronoi_diagram_2.cpp | 2 +- .../demo/Largest_empty_rect_2/Largest_empty_rectangle_2.cpp | 2 +- .../Periodic_2_Delaunay_triangulation_2.cpp | 2 +- GraphicsView/demo/Polygon/Polygon_2.cpp | 2 +- .../demo/Segment_Delaunay_graph_2/Segment_voronoi_2.cpp | 2 +- GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.cpp | 2 +- GraphicsView/demo/Spatial_searching_2/Spatial_searching_2.cpp | 2 +- GraphicsView/demo/Stream_lines_2/Stream_lines_2.cpp | 2 +- .../Triangulation_2/Constrained_Delaunay_triangulation_2.cpp | 2 +- .../demo/Triangulation_2/Delaunay_triangulation_2.cpp | 2 +- GraphicsView/demo/Triangulation_2/Regular_triangulation_2.cpp | 2 +- .../demo/Hyperbolic_triangulation_2/HDT2.cpp | 2 +- .../demo/Periodic_Lloyd_3/Periodic_Lloyd_3.cpp | 2 +- Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp | 2 +- 29 files changed, 33 insertions(+), 33 deletions(-) diff --git a/AABB_tree/demo/AABB_tree/AABB_demo.cpp b/AABB_tree/demo/AABB_tree/AABB_demo.cpp index 9727327004f0..881fd8710dbf 100644 --- a/AABB_tree/demo/AABB_tree/AABB_demo.cpp +++ b/AABB_tree/demo/AABB_tree/AABB_demo.cpp @@ -30,7 +30,7 @@ int main(int argc, char **argv) app.setOrganizationName("INRIA"); app.setApplicationName("AABB tree demo"); - // Import resources from libCGALQt (Qt5). + // Import resources from libCGALQt (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp b/Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp index 784ee1af57ff..3ec08a1113ec 100644 --- a/Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp @@ -16,8 +16,8 @@ int main(int argc, char** argv) application.setOrganizationName("GeometryFactory"); application.setApplicationName("Alpha Shape Reconstruction"); - // Import resources from libCGALQt (Qt5). - // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE + // Import resources from libCGAL_Qt6 + // See https://doc.qt.io/qt-6/qtresource-proxy.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Alpha_shape_3); diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/arrangement_2.cpp b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/arrangement_2.cpp index 35d589585d8d..f0a5ccfe47fa 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/arrangement_2.cpp +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/arrangement_2.cpp @@ -19,7 +19,7 @@ int main(int argc, char* argv[]) QCoreApplication::setOrganizationName("CGAL"); QCoreApplication::setApplicationName("2D Arrangements Demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; ArrangementDemoWindow demoWindow; diff --git a/Documentation/doc/Documentation/Third_party.txt b/Documentation/doc/Documentation/Third_party.txt index d55d10c2cbef..569599ae0fdf 100644 --- a/Documentation/doc/Documentation/Third_party.txt +++ b/Documentation/doc/Documentation/Third_party.txt @@ -107,8 +107,8 @@ the location of third-party software during configuration. Qt is a cross-platform application and UI framework. -The component libCGAL_Qt5 is essential to run the \cgal demos and basic viewers. -It requires \qt5 installed on your system. +The component libCGAL_Qt6 is essential to run the \cgal demos and basic viewers. +It requires \qt6 installed on your system. In case \qt is not yet installed on your system, you can download it from `https://www.qt-project.org/`. diff --git a/Documentation/doc/Documentation/Usage.txt b/Documentation/doc/Documentation/Usage.txt index 1c02423cf496..046f3d6da384 100644 --- a/Documentation/doc/Documentation/Usage.txt +++ b/Documentation/doc/Documentation/Usage.txt @@ -171,9 +171,9 @@ In order to link against Qt5, you need to run: brew link qt@5 -After that, you will have to specify the Qt5_DIR by hand to cmake, using something like +After that, you will have to specify the Qt6_DIR by hand to cmake, using something like - -DQt5_DIR=/usr/local/opt/qt5/lib/cmake/Qt5 + -DQt6_DIR=/usr/local/opt/qt6/lib/cmake/Qt6 where `/usr/local/` is actually your current brew installation directory. Check this directory to be sure where the Qt5 is placed on your machine. diff --git a/Documentation/doc/Documentation/advanced/Configuration_variables.txt b/Documentation/doc/Documentation/advanced/Configuration_variables.txt index 8434b496014b..7cedae4344ac 100644 --- a/Documentation/doc/Documentation/advanced/Configuration_variables.txt +++ b/Documentation/doc/Documentation/advanced/Configuration_variables.txt @@ -27,7 +27,7 @@ configure and/or build. Their values can be ON or OFF. | `WITH_examples` | OFF | | `WITH_demos` | OFF | | `WITH_CGAL_Core` | ON | -| `WITH_CGAL_Qt5` | ON | +| `WITH_CGAL_Qt6` | ON | | `WITH_CGAL_ImageIO` | ON | \subsection installation_flags Compiler and Linker Flags @@ -181,7 +181,7 @@ Under Linux, the \gmpxx is also searched for, and you may specify the following \subsection installation_qt5 Qt5 Library You must set the cmake or environment variable `Qt5_DIR` to point to the path -to the directory containing the file `Qt5Config.cmake` created by your \qt5 installation. If you are +to the directory containing the file `Qt6Config.cmake` created by your \qt6 installation. If you are using the open source edition it should be `/qt-everywhere-opensource-src-/qtbase/lib/cmake/Qt5`. \subsection installation_leda LEDA Library diff --git a/Documentation/doc/Documentation/advanced/Installation.txt b/Documentation/doc/Documentation/advanced/Installation.txt index 933565ad78fc..7bf4f0f98748 100644 --- a/Documentation/doc/Documentation/advanced/Installation.txt +++ b/Documentation/doc/Documentation/advanced/Installation.txt @@ -61,7 +61,7 @@ See the page | :-------- | :------------- | :------------ | :----------- | | \cgal | none | Main library | \gmp, \mpfr, \boost (headers) | | `CGAL_ImageIO` | `WITH_CGAL_ImageIO` | Utilities to read and write image files | \zlib, \vtk (optional) | -| `CGAL_Qt5` | `WITH_CGAL_Qt5` | `QGraphicsView` support for \qt5-based demos | \qt5 | +| `CGAL_Qt6` | `WITH_CGAL_Qt6` | `QGraphicsView` support for \qt6-based demos | \qt6 | \subsection installation_examples CGAL Examples and Demos diff --git a/Documentation/doc/Documentation/windows.txt b/Documentation/doc/Documentation/windows.txt index d40059d76cd3..8b4674530077 100644 --- a/Documentation/doc/Documentation/windows.txt +++ b/Documentation/doc/Documentation/windows.txt @@ -114,7 +114,7 @@ not depend on `Qt`. However, one of the examples in the Triangulation_2 package for visualization purposes. If you already have `Qt` installed, you can simply fill in the requested CMake variables and paths. Otherwise, you can also install it using `vcpkg`: - C:\dev\vcpkg> .\vcpkg.exe install qt5 + C:\dev\vcpkg> .\vcpkg.exe install qt6 Remember to specify `--triplet` or the related environment variable in case you target 64-bit applications. diff --git a/Documentation/doc/resources/1.8.13/BaseDoxyfile.in b/Documentation/doc/resources/1.8.13/BaseDoxyfile.in index 7f347c1529c0..137dd3e63d87 100644 --- a/Documentation/doc/resources/1.8.13/BaseDoxyfile.in +++ b/Documentation/doc/resources/1.8.13/BaseDoxyfile.in @@ -78,7 +78,7 @@ ALIASES = "cgal=%CGAL" \ "gnu=GNU" \ "ms=MS" \ "qt=Qt" \ - "qt5=Qt5" \ + "qt6=Qt6" \ "eigen=Eigen" \ "opengr=OpenGR" \ "libpointmatcher=libpointmatcher" \ diff --git a/Documentation/doc/resources/1.9.6/BaseDoxyfile.in b/Documentation/doc/resources/1.9.6/BaseDoxyfile.in index f5d4533ce70e..3548e27a271c 100644 --- a/Documentation/doc/resources/1.9.6/BaseDoxyfile.in +++ b/Documentation/doc/resources/1.9.6/BaseDoxyfile.in @@ -87,7 +87,7 @@ ALIASES = "cgal=%CGAL" \ "gnu=GNU" \ "ms=MS" \ "qt=Qt" \ - "qt5=Qt5" \ + "qt6=Qt6" \ "eigen=Eigen" \ "opengr=OpenGR" \ "libpointmatcher=libpointmatcher" \ diff --git a/GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp b/GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp index d81a7cb7c49c..31222218e48f 100644 --- a/GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp +++ b/GraphicsView/demo/Alpha_shapes_2/Alpha_shapes_2.cpp @@ -311,7 +311,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Alpha_shape_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/GraphicsView/demo/Apollonius_graph_2/Apollonius_graph_2.cpp b/GraphicsView/demo/Apollonius_graph_2/Apollonius_graph_2.cpp index 31c3c828d765..7d42f4bddf10 100644 --- a/GraphicsView/demo/Apollonius_graph_2/Apollonius_graph_2.cpp +++ b/GraphicsView/demo/Apollonius_graph_2/Apollonius_graph_2.cpp @@ -313,7 +313,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Apollonius_graph_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Apollonius_graph_2); diff --git a/GraphicsView/demo/Bounding_volumes/Bounding_volumes.cpp b/GraphicsView/demo/Bounding_volumes/Bounding_volumes.cpp index c224faf6e663..7b6071d93abf 100644 --- a/GraphicsView/demo/Bounding_volumes/Bounding_volumes.cpp +++ b/GraphicsView/demo/Bounding_volumes/Bounding_volumes.cpp @@ -573,7 +573,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Bounding_volumes demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; diff --git a/GraphicsView/demo/Circular_kernel_2/Circular_kernel_2.cpp b/GraphicsView/demo/Circular_kernel_2/Circular_kernel_2.cpp index e593af52c147..53555763d100 100644 --- a/GraphicsView/demo/Circular_kernel_2/Circular_kernel_2.cpp +++ b/GraphicsView/demo/Circular_kernel_2/Circular_kernel_2.cpp @@ -336,7 +336,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Circular_kernel_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/GraphicsView/demo/Generator/Generator_2.cpp b/GraphicsView/demo/Generator/Generator_2.cpp index 0072354e66c3..a10c3566a108 100644 --- a/GraphicsView/demo/Generator/Generator_2.cpp +++ b/GraphicsView/demo/Generator/Generator_2.cpp @@ -338,7 +338,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Generator_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Generator_2); diff --git a/GraphicsView/demo/L1_Voronoi_diagram_2/L1_voronoi_diagram_2.cpp b/GraphicsView/demo/L1_Voronoi_diagram_2/L1_voronoi_diagram_2.cpp index 726a509b885f..57aaab80f01f 100644 --- a/GraphicsView/demo/L1_Voronoi_diagram_2/L1_voronoi_diagram_2.cpp +++ b/GraphicsView/demo/L1_Voronoi_diagram_2/L1_voronoi_diagram_2.cpp @@ -395,7 +395,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("L1 Voronoi diagram_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/GraphicsView/demo/Largest_empty_rect_2/Largest_empty_rectangle_2.cpp b/GraphicsView/demo/Largest_empty_rect_2/Largest_empty_rectangle_2.cpp index 67e4f336075d..20e13248017e 100644 --- a/GraphicsView/demo/Largest_empty_rect_2/Largest_empty_rectangle_2.cpp +++ b/GraphicsView/demo/Largest_empty_rect_2/Largest_empty_rectangle_2.cpp @@ -327,7 +327,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Largest_empty_rectangle_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Largest_empty_rectangle_2); diff --git a/GraphicsView/demo/Periodic_2_triangulation_2/Periodic_2_Delaunay_triangulation_2.cpp b/GraphicsView/demo/Periodic_2_triangulation_2/Periodic_2_Delaunay_triangulation_2.cpp index 00beec2bc227..b878c6c69dd7 100644 --- a/GraphicsView/demo/Periodic_2_triangulation_2/Periodic_2_Delaunay_triangulation_2.cpp +++ b/GraphicsView/demo/Periodic_2_triangulation_2/Periodic_2_Delaunay_triangulation_2.cpp @@ -476,7 +476,7 @@ int main(int argc, char **argv) app.setOrganizationName("Nico Kruithof"); app.setApplicationName("Periodic_2_Delaunay_triangulation_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; diff --git a/GraphicsView/demo/Polygon/Polygon_2.cpp b/GraphicsView/demo/Polygon/Polygon_2.cpp index 67c16d0b3dca..dc9fdf66275a 100644 --- a/GraphicsView/demo/Polygon/Polygon_2.cpp +++ b/GraphicsView/demo/Polygon/Polygon_2.cpp @@ -596,7 +596,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Polygon_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Polygon_2); diff --git a/GraphicsView/demo/Segment_Delaunay_graph_2/Segment_voronoi_2.cpp b/GraphicsView/demo/Segment_Delaunay_graph_2/Segment_voronoi_2.cpp index 07845c04bc31..de2e7b18cee9 100644 --- a/GraphicsView/demo/Segment_Delaunay_graph_2/Segment_voronoi_2.cpp +++ b/GraphicsView/demo/Segment_Delaunay_graph_2/Segment_voronoi_2.cpp @@ -426,7 +426,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Segment Voronoi 2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.cpp b/GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.cpp index 8ab184cfdce2..9af19ac62f11 100644 --- a/GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.cpp +++ b/GraphicsView/demo/Snap_rounding_2/Snap_rounding_2.cpp @@ -341,7 +341,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Snap_rounding_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Snap_rounding_2); diff --git a/GraphicsView/demo/Spatial_searching_2/Spatial_searching_2.cpp b/GraphicsView/demo/Spatial_searching_2/Spatial_searching_2.cpp index d25a215c8cc0..0c982df5ccb9 100644 --- a/GraphicsView/demo/Spatial_searching_2/Spatial_searching_2.cpp +++ b/GraphicsView/demo/Spatial_searching_2/Spatial_searching_2.cpp @@ -302,7 +302,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Spatial_searching_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Spatial_searching_2); diff --git a/GraphicsView/demo/Stream_lines_2/Stream_lines_2.cpp b/GraphicsView/demo/Stream_lines_2/Stream_lines_2.cpp index 37e2138ece54..7dd2b13661b7 100644 --- a/GraphicsView/demo/Stream_lines_2/Stream_lines_2.cpp +++ b/GraphicsView/demo/Stream_lines_2/Stream_lines_2.cpp @@ -279,7 +279,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Stream_lines_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Stream_lines_2); diff --git a/GraphicsView/demo/Triangulation_2/Constrained_Delaunay_triangulation_2.cpp b/GraphicsView/demo/Triangulation_2/Constrained_Delaunay_triangulation_2.cpp index 5da75ee41da8..990a8952cad2 100644 --- a/GraphicsView/demo/Triangulation_2/Constrained_Delaunay_triangulation_2.cpp +++ b/GraphicsView/demo/Triangulation_2/Constrained_Delaunay_triangulation_2.cpp @@ -923,7 +923,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Constrained_Delaunay_triangulation_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/GraphicsView/demo/Triangulation_2/Delaunay_triangulation_2.cpp b/GraphicsView/demo/Triangulation_2/Delaunay_triangulation_2.cpp index e00d9fa260fd..55a11c0171bf 100644 --- a/GraphicsView/demo/Triangulation_2/Delaunay_triangulation_2.cpp +++ b/GraphicsView/demo/Triangulation_2/Delaunay_triangulation_2.cpp @@ -412,7 +412,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Delaunay_triangulation_2 demo"); - // Import resources from libCGAL (QT5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/GraphicsView/demo/Triangulation_2/Regular_triangulation_2.cpp b/GraphicsView/demo/Triangulation_2/Regular_triangulation_2.cpp index 6df0dd319011..07a3ed67ad0a 100644 --- a/GraphicsView/demo/Triangulation_2/Regular_triangulation_2.cpp +++ b/GraphicsView/demo/Triangulation_2/Regular_triangulation_2.cpp @@ -334,7 +334,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Regular_triangulation_2 demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/HDT2.cpp b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/HDT2.cpp index bd76416342bb..9dd9c45c7f95 100644 --- a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/HDT2.cpp +++ b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/HDT2.cpp @@ -411,7 +411,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Hyperbolic_Delaunay_triangulation_2 demo"); - // Import resources from libCGAL (QT5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; diff --git a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/Periodic_Lloyd_3.cpp b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/Periodic_Lloyd_3.cpp index ae0074e0bcc8..0f8f1dd27b93 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/Periodic_Lloyd_3.cpp +++ b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/Periodic_Lloyd_3.cpp @@ -13,7 +13,7 @@ int main(int argc, char** argv) application.setOrganizationName("INRIA"); application.setApplicationName("3D Periodic Lloyd"); - // Import resources from libCGAL (QT5). + // Import resources from libCGAL (Qt6). // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Periodic_Lloyd_3); diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp index 7b6e5225dfe3..05f30fa3da64 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp @@ -54,7 +54,7 @@ Polyhedron_demo::Polyhedron_demo(int& argc, char **argv, std::cout.precision(17); std::clog.precision(17); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; this->setOrganizationDomain("geometryfactory.com"); From cf1b5fd46af49ea1d557c2fb499d99a6c07fc043 Mon Sep 17 00:00:00 2001 From: Nicolas Saillant Date: Wed, 13 Sep 2023 11:38:45 +0200 Subject: [PATCH 55/85] Update CMakeLists for QT6 --- .../Hyperbolic_triangulation_2/CMakeLists.txt | 2 +- .../Periodic_3_triangulation_3/CMakeLists.txt | 3 +- .../CMakeLists.txt | 2 +- .../CMakeLists.txt | 33 +++---------------- .../Principal_component_analysis/PCA_demo.cpp | 6 ---- 5 files changed, 9 insertions(+), 37 deletions(-) diff --git a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt index 9d46e7227294..c4191347bfdc 100644 --- a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt +++ b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt @@ -20,7 +20,7 @@ if(CGAL_Qt6_FOUND set(CMAKE_AUTOUIC ON) set(CMAKE_AUTORCC ON) - qt_add_executable ( HDT2 HDT2.cpp) + qt_add_executable ( HDT2 HDT2.cpp resources/Delaunay_triangulation_2.qrc) target_include_directories(HDT2 PRIVATE ./ ./include) add_to_cached_list( CGAL_EXECUTABLE_TARGETS HDT2 ) target_link_libraries ( HDT2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) diff --git a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt index 22c26c48986b..7225c76cd3ba 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt @@ -50,7 +50,8 @@ if(CGAL_Qt6_FOUND periodic_3_triangulation_3_demo.cpp MainWindow.ui moc_MainWindow.cpp - Periodic_3_triangulation_3.qhc) + Periodic_3_triangulation_3.qhc + Periodic_3_triangulation_3.qrc) add_to_cached_list(CGAL_EXECUTABLE_TARGETS periodic_3_triangulation_3_demo) diff --git a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt index d3ba88394b2f..3b838ba2c829 100644 --- a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt +++ b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt @@ -24,7 +24,7 @@ if((CGAL_Core_FOUND OR LEDA_FOUND) set(CMAKE_AUTORCC ON) # cpp files - qt_add_executable(P4HDT2 P4HDT2.cpp P4HDT2.ui) + qt_add_executable(P4HDT2 P4HDT2.cpp P4HDT2.ui Main_resources.qrc) target_link_libraries(P4HDT2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) if(TARGET CGAL::CGAL_Core) diff --git a/Principal_component_analysis/demo/Principal_component_analysis/CMakeLists.txt b/Principal_component_analysis/demo/Principal_component_analysis/CMakeLists.txt index 9b7e95914aae..9a6ace55f2b3 100644 --- a/Principal_component_analysis/demo/Principal_component_analysis/CMakeLists.txt +++ b/Principal_component_analysis/demo/Principal_component_analysis/CMakeLists.txt @@ -3,15 +3,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Principal_component_analysis_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - include_directories(./) # Find CGAL and CGAL Qt6 @@ -25,30 +16,16 @@ if(NOT TARGET CGAL::Eigen3_support) endif() # Find Qt6 itself -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets OpenGL) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) if(CGAL_Qt6_FOUND AND Qt6_FOUND) set(CMAKE_INCLUDE_CURRENT_DIR ON) - qt6_wrap_ui(UI_FILES MainWindow.ui) - - include(AddFileDependencies) - - qt6_generate_moc("MainWindow.h" - "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp") - add_file_dependencies(MainWindow_moc.cpp - "${CMAKE_CURRENT_SOURCE_DIR}/MainWindow.h") - - qt6_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") - add_file_dependencies(Viewer_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/Viewer.h") - - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES PCA_demo.qrc) + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - add_file_dependencies( - PCA_demo.cpp "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp" - "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") - add_executable(PCA_demo PCA_demo.cpp ${UI_FILES} ${CGAL_Qt6_RESOURCE_FILES} - ${CGAL_Qt6_MOC_FILES}) + qt_add_executable(PCA_demo PCA_demo.cpp MainWindow.ui MainWindow.cpp Viewer.cpp Scene.cpp) target_link_libraries(PCA_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 CGAL::Eigen3_support Qt6::Widgets Qt6::OpenGL) diff --git a/Principal_component_analysis/demo/Principal_component_analysis/PCA_demo.cpp b/Principal_component_analysis/demo/Principal_component_analysis/PCA_demo.cpp index 04b8cf11f13c..a5a393c4d478 100644 --- a/Principal_component_analysis/demo/Principal_component_analysis/PCA_demo.cpp +++ b/Principal_component_analysis/demo/Principal_component_analysis/PCA_demo.cpp @@ -51,9 +51,3 @@ int main(int argc, char **argv) return app.exec(); } -# include "Scene.cpp" -# include "Viewer.cpp" -# include "Viewer_moc.cpp" -# include "MainWindow.cpp" -# include "MainWindow_moc.cpp" - From 4b3279e66589ddce5159d4973cebc4b1f51e28ec Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 13 Sep 2023 14:59:10 +0200 Subject: [PATCH 56/85] Remove the "Use OpenGL" option from 2D demos --- .../include/CGAL/Qt/DemosMainWindow.h | 2 - .../include/CGAL/Qt/DemosMainWindow_impl.h | 40 ------------------- 2 files changed, 42 deletions(-) diff --git a/GraphicsView/include/CGAL/Qt/DemosMainWindow.h b/GraphicsView/include/CGAL/Qt/DemosMainWindow.h index d28d98b37188..8f71f6bf1171 100644 --- a/GraphicsView/include/CGAL/Qt/DemosMainWindow.h +++ b/GraphicsView/include/CGAL/Qt/DemosMainWindow.h @@ -89,7 +89,6 @@ public Q_SLOTS: protected Q_SLOTS: void setUseAntialiasing(bool checked); - void setUseOpenGL(bool checked); void popupAboutCGAL(); void popupAboutDemo(); @@ -108,7 +107,6 @@ protected Q_SLOTS: GraphicsViewNavigation* navigation; QLabel* xycoord ; - QAction *actionUse_OpenGL; QAction *actionUse_Antialiasing; QAction *actionAbout; QAction *actionAboutCGAL; diff --git a/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h b/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h index 8b6cb174703c..5f8c85c1d7f3 100644 --- a/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h +++ b/GraphicsView/include/CGAL/Qt/DemosMainWindow_impl.h @@ -32,7 +32,6 @@ #include #include #include -#include #include #include #include @@ -41,7 +40,6 @@ # include #endif #include -#include #include // needed to get CGAL_VERSION_STR #include @@ -62,13 +60,6 @@ DemosMainWindow::DemosMainWindow(QWidget * parent, ::Qt::WindowFlags flags) xycoord->setMinimumSize(xycoord->sizeHint()); xycoord->clear(); - actionUse_OpenGL = new QAction(this); - actionUse_OpenGL->setObjectName("actionUse_OpenGL"); - actionUse_OpenGL->setCheckable(true); - actionUse_OpenGL->setText(tr("Use &OpenGL")); - actionUse_OpenGL->setStatusTip(tr("Make Qt use OpenGL to display the graphical items, instead of its native painting system.")); - actionUse_OpenGL->setShortcut(tr("Ctrl+G")); - actionUse_Antialiasing = new QAction(this); actionUse_Antialiasing->setObjectName("actionUse_Antialiasing"); actionUse_Antialiasing->setCheckable(true); @@ -151,12 +142,9 @@ DemosMainWindow::setupOptionsMenu(QMenu* menuOptions) if(!menuOptions->isEmpty()) { menuOptions->addSeparator(); } - menuOptions->addAction(actionUse_OpenGL); menuOptions->addAction(actionUse_Antialiasing); connect(actionUse_Antialiasing, SIGNAL(toggled(bool)), this, SLOT(setUseAntialiasing(bool))); - connect(actionUse_OpenGL, SIGNAL(toggled(bool)), - this, SLOT(setUseOpenGL(bool))); actionUse_Antialiasing->setChecked(true); } @@ -203,34 +191,6 @@ DemosMainWindow::setUseAntialiasing(bool checked) 1000); } -CGAL_INLINE_FUNCTION -void -DemosMainWindow::setUseOpenGL(bool checked) -{ - if(checked) { - QOpenGLWidget* new_viewport = new QOpenGLWidget(this); - new_viewport->setUpdateBehavior(QOpenGLWidget::NoPartialUpdate); - - // Setup the format to allow antialiasing with OpenGL: - // one need to activate the SampleBuffers, if the graphic driver allows - // this. - auto glformat = new_viewport->format(); - glformat.setSamples(4); - new_viewport->setFormat(glformat); - - view->setViewport(new_viewport); - view->setViewportUpdateMode(QGraphicsView::FullViewportUpdate); - } - else { - view->setViewport(new QWidget(this)); - view->setViewportUpdateMode(QGraphicsView::MinimalViewportUpdate); - } - statusBar()->showMessage(tr("OpenGL %1activated").arg(checked?"":"de-"), - 1000); - view->viewport()->installEventFilter(navigation); - view->setFocus(); -} - CGAL_INLINE_FUNCTION QMenu* DemosMainWindow::getMenu(QString objectName, QString title) From 0d9037b8dacbae191c3f7deac483d30fffca06a3 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 13 Sep 2023 14:59:21 +0200 Subject: [PATCH 57/85] add the ui file --- .../demo/Hyperbolic_triangulation_2/CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt index c4191347bfdc..2f75d88b48ae 100644 --- a/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt +++ b/Hyperbolic_triangulation_2/demo/Hyperbolic_triangulation_2/CMakeLists.txt @@ -4,9 +4,6 @@ project(Hyperbolic_triangulation_2_Demo) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -# Instruct CMake to run moc automatically when needed. -set(CMAKE_AUTOMOC ON) - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt6) find_package(LEDA QUIET) @@ -17,10 +14,11 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND AND (CGAL_Core_FOUND OR LEDA_FOUND)) + set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTORCC ON) - qt_add_executable ( HDT2 HDT2.cpp resources/Delaunay_triangulation_2.qrc) + qt_add_executable ( HDT2 HDT2.cpp HDT2.ui resources/Delaunay_triangulation_2.qrc ) target_include_directories(HDT2 PRIVATE ./ ./include) add_to_cached_list( CGAL_EXECUTABLE_TARGETS HDT2 ) target_link_libraries ( HDT2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::Widgets) From 67baec27a1e9b9d64128d054ddc12fdd625a090c Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 13 Sep 2023 15:37:01 +0200 Subject: [PATCH 58/85] Fix Optimal_transportation_reconstruction_2_Demo --- .../CMakeLists.txt | 56 +++---------------- .../dialog_options.cpp | 3 + .../dialog_options.h | 1 + .../scene.h | 1 + .../window.cpp | 1 - 5 files changed, 14 insertions(+), 48 deletions(-) create mode 100644 Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/dialog_options.cpp diff --git a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt index 2b4aafc27cb8..5b8060beca2b 100644 --- a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt +++ b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt @@ -3,27 +3,11 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Optimal_transportation_reconstruction_2_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - -# Include this package's headers first -include_directories(BEFORE ./ ./include) - # Find CGAL and CGAL Qt6 find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # Find Qt6 itself find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) -if(Qt6_FOUND) - add_definitions(-DQT_NO_KEYWORDS) - set(CMAKE_INCLUDE_CURRENT_DIR ON) -endif(Qt6_FOUND) # Find CImg find_path( @@ -40,33 +24,15 @@ else() endif() if(CGAL_Qt6_FOUND AND Qt6_FOUND) + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - set(SRCS glviewer.cpp scene.cpp Otr2_demo.cpp window.cpp render.cpp) - - set(CGAL_Qt6_MOC_FILES moc_dialog_options.cxx moc_glviewer.cxx moc_window.cxx) - - set(UIS pwsrec.ui options.ui) - - qt6_wrap_ui(UI_FILES ${UIS}) - - include(AddFileDependencies) - - qt6_generate_moc("window.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_window.cxx") - add_file_dependencies(moc_window.cxx "${CMAKE_CURRENT_SOURCE_DIR}/window.h") - - qt6_generate_moc("glviewer.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_glviewer.cxx") - add_file_dependencies(moc_glviewer.cxx - "${CMAKE_CURRENT_SOURCE_DIR}/glviewer.h") - - qt6_generate_moc("dialog_options.h" - "${CMAKE_CURRENT_BINARY_DIR}/moc_dialog_options.cxx") - add_file_dependencies(moc_dialog_options.cxx - "${CMAKE_CURRENT_SOURCE_DIR}/dialog_options.h") - - qt6_add_resources(CGAL_Qt6_RESOURCE_FILES pwsrec.qrc) + add_definitions(-DQT_NO_KEYWORDS) + set(CMAKE_INCLUDE_CURRENT_DIR ON) - add_executable(Otr2_demo ${SRCS} ${CGAL_Qt6_MOC_FILES} ${UI_FILES} - ${CGAL_Qt6_RESOURCE_FILES}) + add_executable(Otr2_demo glviewer.cpp scene.cpp Otr2_demo.cpp window.cpp render.cpp dialog_options.cpp + pwsrec.ui options.ui pwsrec.qrc) target_link_libraries(Otr2_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::OpenGLWidgets) @@ -86,9 +52,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Otr2_demo) -else( - CGAL_Qt6_FOUND - AND Qt6_FOUND) +else() set(OTR2_MISSING_DEPS "") @@ -102,6 +66,4 @@ else( message("NOTICE: This demo requires ${OTR2_MISSING_DEPS} and will not be compiled.") -endif( - CGAL_Qt6_FOUND - AND Qt6_FOUND) +endif() diff --git a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/dialog_options.cpp b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/dialog_options.cpp new file mode 100644 index 000000000000..4419cbc979d5 --- /dev/null +++ b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/dialog_options.cpp @@ -0,0 +1,3 @@ +#include "dialog_options.h" + +Dialog_options::~Dialog_options() {} diff --git a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/dialog_options.h b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/dialog_options.h index 8df3c2c86056..25d3f497bd51 100644 --- a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/dialog_options.h +++ b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/dialog_options.h @@ -26,6 +26,7 @@ public Q_SLOTS: { setupUi(this); } + virtual ~Dialog_options(); void set_all_ranges() { diff --git a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/scene.h b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/scene.h index 7ac83c723f59..9cc6b7240571 100644 --- a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/scene.h +++ b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/scene.h @@ -17,6 +17,7 @@ #ifdef CGAL_USE_CIMG #define cimg_display 0 // To avoid X11 or Windows-GDI dependency #include +#include #endif #include // std::pair #include diff --git a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/window.cpp b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/window.cpp index 31003233b111..3e52a5ef95e6 100644 --- a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/window.cpp +++ b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/window.cpp @@ -11,7 +11,6 @@ // local #include "window.h" -#include "ui_options.h" #include "dialog_options.h" MainWindow::MainWindow() : From b01da56a56ee4418dc2396f6541ed1ffa7796497 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 13 Sep 2023 17:13:39 +0200 Subject: [PATCH 59/85] remove occurrences of OpenGLWidgets in demos' CMake scripts --- GraphicsView/demo/Polygon/CMakeLists.txt | 2 +- .../Optimal_transportation_reconstruction_2/CMakeLists.txt | 4 ++-- .../demo/Polyhedron/implicit_functions/CMakeLists.txt | 6 +----- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/GraphicsView/demo/Polygon/CMakeLists.txt b/GraphicsView/demo/Polygon/CMakeLists.txt index 341021360a39..303b381e038f 100644 --- a/GraphicsView/demo/Polygon/CMakeLists.txt +++ b/GraphicsView/demo/Polygon/CMakeLists.txt @@ -13,7 +13,7 @@ if(NOT TARGET CGAL::Eigen3_support) return() endif() -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) include(${CGAL_USE_FILE}) diff --git a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt index 5b8060beca2b..d62d77e37b77 100644 --- a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt +++ b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt @@ -7,7 +7,7 @@ project(Optimal_transportation_reconstruction_2_Demo) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # Find Qt6 itself -find_package(Qt6 QUIET COMPONENTS Widgets OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Widgets) # Find CImg find_path( @@ -34,7 +34,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_executable(Otr2_demo glviewer.cpp scene.cpp Otr2_demo.cpp window.cpp render.cpp dialog_options.cpp pwsrec.ui options.ui pwsrec.qrc) - target_link_libraries(Otr2_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 Qt6::OpenGLWidgets) + target_link_libraries(Otr2_demo PRIVATE CGAL::CGAL CGAL::CGAL_Qt6) # Link with pthread if necessary if(CIMG_INCLUDE_DIR) diff --git a/Polyhedron/demo/Polyhedron/implicit_functions/CMakeLists.txt b/Polyhedron/demo/Polyhedron/implicit_functions/CMakeLists.txt index b821fd3e7791..174535ff5d5e 100644 --- a/Polyhedron/demo/Polyhedron/implicit_functions/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/implicit_functions/CMakeLists.txt @@ -23,11 +23,7 @@ include_directories(BEFORE ${Mesh_3_implicit_functions_BINARY_DIR} ../include) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) # Find Qt6 itself -set(QT_USE_QTXML TRUE) -set(QT_USE_QTMAIN TRUE) -set(QT_USE_QTSCRIPT TRUE) -set(QT_USE_QTOPENGL TRUE) -find_package(Qt6 QUIET COMPONENTS OpenGLWidgets) +find_package(Qt6 QUIET COMPONENTS Core) if(CGAL_Qt6_FOUND AND Qt6_FOUND) # put plugins (which are shared libraries) at the same location as From 03e89cc97b23d23c75964274969a69ba89fb138a Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 13 Sep 2023 17:57:54 +0200 Subject: [PATCH 60/85] fix periodic_3_triangulation_3_demo --- .../demo/Periodic_3_triangulation_3/CMakeLists.txt | 10 +--------- .../demo/Periodic_3_triangulation_3/MainWindow.cpp | 8 ++++++++ .../demo/Periodic_3_triangulation_3/MainWindow.h | 7 +------ 3 files changed, 10 insertions(+), 15 deletions(-) create mode 100644 Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.cpp diff --git a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt index 7225c76cd3ba..bab63515c66d 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/CMakeLists.txt @@ -25,12 +25,6 @@ if(CGAL_Qt6_FOUND set(CMAKE_AUTOUIC ON) set(CMAKE_AUTORCC ON) - # use the Qt MOC preprocessor on classes that derive from QObject - qt6_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_Scene.cpp") - qt6_generate_moc("MainWindow.h" - "${CMAKE_CURRENT_BINARY_DIR}/moc_MainWindow.cpp") - qt6_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/moc_Viewer.cpp") - # generate QtAssistant collection file add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/Periodic_3_triangulation_3.qhc @@ -44,12 +38,10 @@ if(CGAL_Qt6_FOUND qt_add_executable( periodic_3_triangulation_3_demo Scene.cpp - moc_Scene.cpp Viewer.cpp - moc_Viewer.cpp + MainWindow.cpp periodic_3_triangulation_3_demo.cpp MainWindow.ui - moc_MainWindow.cpp Periodic_3_triangulation_3.qhc Periodic_3_triangulation_3.qrc) diff --git a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.cpp b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.cpp new file mode 100644 index 000000000000..2d77555e636b --- /dev/null +++ b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.cpp @@ -0,0 +1,8 @@ +#include "MainWindow.h" + +MainWindow::~MainWindow() { + process->close(); + delete(process); + delete(s); + delete(ui); +} diff --git a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.h b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.h index 79b3e5bec140..ca9bf07e1160 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.h +++ b/Periodic_3_triangulation_3/demo/Periodic_3_triangulation_3/MainWindow.h @@ -102,12 +102,7 @@ class MainWindow : public QMainWindow this, SLOT(about())); } - ~MainWindow() { - process->close(); - delete(process); - delete(s); - delete(ui); - } + ~MainWindow(); public Q_SLOTS: void help() { From 09a4ac1ad7769a229985094188815368a673ff4b Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 14 Sep 2023 14:39:45 +0200 Subject: [PATCH 61/85] cosmetic changes --- .../Optimal_transportation_reconstruction_2/CMakeLists.txt | 2 +- .../demo/Periodic_Lloyd_3/CMakeLists.txt | 6 +++--- Three/include/CGAL/Three/exceptions.h | 3 --- Triangulation_3/demo/Triangulation_3/CMakeLists.txt | 4 +--- Triangulation_3/demo/Triangulation_3/MainWindow.cpp | 4 +--- Triangulation_3/demo/Triangulation_3/MainWindow.ui | 6 ------ 6 files changed, 6 insertions(+), 19 deletions(-) diff --git a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt index d62d77e37b77..207781a6c6b9 100644 --- a/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt +++ b/Optimal_transportation_reconstruction_2/demo/Optimal_transportation_reconstruction_2/CMakeLists.txt @@ -61,7 +61,7 @@ else() endif() if(NOT Qt6_FOUND) - set(OTR2_MISSING_DEPS "Qt6.4, ${OTR2_MISSING_DEPS}") + set(OTR2_MISSING_DEPS "Qt6, ${OTR2_MISSING_DEPS}") endif() message("NOTICE: This demo requires ${OTR2_MISSING_DEPS} and will not be compiled.") diff --git a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt index cb944392edf4..579699f9b6e7 100644 --- a/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt +++ b/Periodic_3_triangulation_3/demo/Periodic_Lloyd_3/CMakeLists.txt @@ -7,7 +7,6 @@ project(Periodic_Lloyd_3_Demo) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. -set(CMAKE_AUTOMOC ON) find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) @@ -21,8 +20,9 @@ if(CGAL_Qt6_FOUND include_directories(BEFORE ./) - set(CMAKE_AUTOUIC ON) - set(CMAKE_AUTORCC ON) + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) if(DEFINED QT_QCOLLECTIONGENERATOR_EXECUTABLE) diff --git a/Three/include/CGAL/Three/exceptions.h b/Three/include/CGAL/Three/exceptions.h index 927489b4f203..ccf67496230f 100644 --- a/Three/include/CGAL/Three/exceptions.h +++ b/Three/include/CGAL/Three/exceptions.h @@ -19,9 +19,6 @@ #include #include #include -//#include -//#include -//#include #include #include diff --git a/Triangulation_3/demo/Triangulation_3/CMakeLists.txt b/Triangulation_3/demo/Triangulation_3/CMakeLists.txt index ab246bc44268..1cf16c563dfd 100644 --- a/Triangulation_3/demo/Triangulation_3/CMakeLists.txt +++ b/Triangulation_3/demo/Triangulation_3/CMakeLists.txt @@ -7,9 +7,6 @@ project(Triangulation_3_Demo) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -# Instruct CMake to run moc automatically when needed. -set(CMAKE_AUTOMOC ON) - find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) @@ -40,6 +37,7 @@ endif() if(CGAL_Qt6_FOUND AND Qt6_FOUND) include_directories(BEFORE ./) + set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTORCC ON) diff --git a/Triangulation_3/demo/Triangulation_3/MainWindow.cpp b/Triangulation_3/demo/Triangulation_3/MainWindow.cpp index 3e8af7b0b0b1..030948e7a2ca 100644 --- a/Triangulation_3/demo/Triangulation_3/MainWindow.cpp +++ b/Triangulation_3/demo/Triangulation_3/MainWindow.cpp @@ -72,8 +72,6 @@ void MainWindow::connectActions() // Help menu actions QObject::connect(this->actionDemo_Help, SIGNAL(triggered()), this->viewer, SLOT(help())); - QObject::connect(this->actionAbout_T3_demo, SIGNAL(triggered()), - this, SLOT(popupAboutDemo())); // Quit QObject::connect(this->actionQuit, SIGNAL(triggered()), @@ -214,7 +212,7 @@ void MainWindow::on_actionClear_Scene_triggered() void MainWindow::popupAboutCGAL() { // read contents from .html file - QFile about_CGAL(":/documentation/documentation/about.html"); + QFile about_CGAL(":/documentation/documentation/about_CGAL.html"); about_CGAL.open(QIODevice::ReadOnly|QIODevice::Text); QString about_CGAL_txt = QTextStream(&about_CGAL).readAll(); diff --git a/Triangulation_3/demo/Triangulation_3/MainWindow.ui b/Triangulation_3/demo/Triangulation_3/MainWindow.ui index e808c9eda3ba..0bdf33a8176f 100644 --- a/Triangulation_3/demo/Triangulation_3/MainWindow.ui +++ b/Triangulation_3/demo/Triangulation_3/MainWindow.ui @@ -112,7 +112,6 @@ Help - @@ -555,11 +554,6 @@ Stop Animation - - - About T3_demo - - From e93a09901caa9c96eafb667e128e3e593459c0d3 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 14 Sep 2023 15:13:46 +0200 Subject: [PATCH 62/85] finish review of polyhedron demo --- Polyhedron/demo/Polyhedron/Scene.cpp | 1 - Polyhedron/demo/Polyhedron/Show_point_dialog.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Scene.cpp b/Polyhedron/demo/Polyhedron/Scene.cpp index a00ef63117f3..feb5ab6f0024 100644 --- a/Polyhedron/demo/Polyhedron/Scene.cpp +++ b/Polyhedron/demo/Polyhedron/Scene.cpp @@ -15,7 +15,6 @@ #include #include #include -#include #include #include #include diff --git a/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp b/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp index 5df594bc57c4..915c6a0494f6 100644 --- a/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp +++ b/Polyhedron/demo/Polyhedron/Show_point_dialog.cpp @@ -53,7 +53,7 @@ void Show_point_dialog::interprete_string(const QString& string) + "$"; QRegularExpression re(full_re); - QRegularExpressionMatch match = re.match(string); // AF @todo QRegExp had exactMatch() + QRegularExpressionMatch match = re.match(string); if(match.hasMatch()) { // const double x = re.cap(1).toDouble(); // const double y = re.cap(2).toDouble(); From 2f6d51b49b495b2693d0be912e344876dee6e87a Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 14 Sep 2023 16:27:16 +0200 Subject: [PATCH 63/85] Remove a few occurrences of CGAL_Qt5 ... and replace by CGAL_Qt6 --- .../Arrangement_on_surface_2.txt | 4 +- .../CGAL/draw_arrangement_2.h | 4 +- .../CGAL/draw_polygon_set_2.h | 4 +- .../include/CGAL/draw_polygon_set_2.h | 4 +- .../create_and_use_a_cmakelist.txt | 6 +- .../doc/Documentation/Third_party.txt | 2 +- .../doc/scripts/test_doxygen_versions.sh | 2 +- GraphicsView/include/CGAL/Qt/CGAL_Qt_config.h | 4 +- GraphicsView/include/CGAL/auto_link/Qt.h | 4 +- GraphicsView/include/CGAL/export/Qt.h | 2 +- .../CGAL_Qt5_moc_and_resource_files.cmake | 25 ---- .../CGAL_SetupCGAL_Qt5Dependencies.cmake | 127 ------------------ ...GAL_enable_end_of_configuration_hook.cmake | 6 +- .../Help/CGAL_SetupCGAL_Qt5Dependencies.rst | 1 - .../Help/CGAL_SetupCGAL_Qt6Dependencies.rst | 1 + Installation/cmake/modules/Help/index.rst | 2 +- Installation/test/Installation/CMakeLists.txt | 96 ++++++------- .../test/Installation/link_to_CGAL_Qt6.cpp | 11 ++ ...make.in => test_configuration_qt.cmake.in} | 6 +- ...tion_qt5.cpp => test_configuration_qt.cpp} | 0 .../CGAL/draw_linear_cell_complex.h | 4 +- .../Linear_cell_complex.txt | 4 +- Nef_3/doc/Nef_3/CGAL/draw_nef_3.h | 4 +- Nef_3/doc/Nef_3/Nef_3.txt | 4 +- .../CGAL/draw_periodic_2_triangulation_2.h | 4 +- Point_set_3/doc/Point_set_3/Point_set_3.txt | 4 +- Point_set_3/include/CGAL/draw_point_set_3.h | 4 +- Polygon/doc/Polygon/Polygon.txt | 4 +- Polygon/include/CGAL/draw_polygon_2.h | 4 +- .../include/CGAL/draw_polygon_with_holes_2.h | 4 +- .../doc/Polyhedron/CGAL/draw_polyhedron.h | 4 +- Polyhedron/doc/Polyhedron/Polyhedron.txt | 4 +- .../doc/Surface_mesh/Surface_mesh.txt | 4 +- Surface_mesh/include/CGAL/draw_surface_mesh.h | 4 +- .../CGAL/draw_face_graph_with_paths.h | 4 +- .../Surface_mesh_topology.txt | 8 +- Testsuite/test/post_process_ctest_results.py | 2 +- .../CGAL/draw_triangulation_2.h | 8 +- .../doc/Triangulation_2/Triangulation_2.txt | 4 +- .../CGAL/draw_triangulation_3.h | 4 +- .../doc/Triangulation_3/Triangulation_3.txt | 4 +- .../CGAL/draw_voronoi_diagram_2.h | 4 +- .../Voronoi_diagram_2/Voronoi_diagram_2.txt | 4 +- 43 files changed, 134 insertions(+), 275 deletions(-) delete mode 100644 Installation/cmake/modules/CGAL_Qt5_moc_and_resource_files.cmake delete mode 100644 Installation/cmake/modules/CGAL_SetupCGAL_Qt5Dependencies.cmake delete mode 100644 Installation/cmake/modules/Help/CGAL_SetupCGAL_Qt5Dependencies.rst create mode 100644 Installation/cmake/modules/Help/CGAL_SetupCGAL_Qt6Dependencies.rst create mode 100644 Installation/test/Installation/link_to_CGAL_Qt6.cpp rename Installation/test/Installation/{test_configuration_qt5.cmake.in => test_configuration_qt.cmake.in} (89%) rename Installation/test/Installation/{test_configuration_qt5.cpp => test_configuration_qt.cpp} (100%) diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt index 5254543120c7..b7c41b3e5ccb 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt @@ -6750,8 +6750,8 @@ An arrangement data structure can be visualized by calling the \link PkgArrangem \cgalExample{Arrangement_on_surface_2/draw_arr.cpp} -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalFigureBegin{aos_fig-draw_arr,draw_arr.png} A snapshot of the window created by the program diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/draw_arrangement_2.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/draw_arrangement_2.h index f415f5c9e7ec..a22a398115e0 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/draw_arrangement_2.h +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/draw_arrangement_2.h @@ -28,9 +28,9 @@ namespace CGAL { * opens a new window and draws `arr`, an instance of the `CGAL::Arrangement_2` * class template. A call to this function is blocking; that is, the program * continues only after the user closes the window. This function requires - * `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is + * `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is * defined. Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link - * with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. + * with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. * * \tparam GeometryTraits_2 a geometry traits type, a model of a 2D arrangement * traits concept. At this point it must be an instance of either diff --git a/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/draw_polygon_set_2.h b/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/draw_polygon_set_2.h index df7a777dbdc9..5728fe8b86c6 100644 --- a/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/draw_polygon_set_2.h +++ b/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/draw_polygon_set_2.h @@ -3,8 +3,8 @@ namespace CGAL { /*! \ingroup PkgDrawPolygonSet2 -opens a new window and draws `aps`, an instance of the `CGAL::Polygon_set_2` class. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +opens a new window and draws `aps`, an instance of the `CGAL::Polygon_set_2` class. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam PS an instance of the `CGAL::Polygon_set_2` class. \param aps the polygon set to draw. diff --git a/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h b/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h index 3a5a31421be5..6eaa81b02f7b 100644 --- a/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h +++ b/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h @@ -27,9 +27,9 @@ namespace CGAL { * * opens a new window and draws `aps`, an instance of the `CGAL::Polygon_set_2` * class. A call to this function is blocking, that is the program continues as - * soon as the user closes the window. This function requires `CGAL_Qt5`, and is + * soon as the user closes the window. This function requires `CGAL_Qt6`, and is * only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. Linking with - * the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add + * the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add * the definition `CGAL_USE_BASIC_VIEWER`. * \tparam PS an instance of the `CGAL::Polygon_set_2` class. * \param aps the polygon set to draw. diff --git a/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt b/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt index 02ff32da6bc3..14eb07f8d8f0 100644 --- a/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt +++ b/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt @@ -33,14 +33,14 @@ This section describes a minimal example of a program that uses \cgal and Qt5 fo \skip cmake_minimum_required \until project -\skip #CGAL_Qt5 is needed for the drawing. +\skip #CGAL_Qt6 is needed for the drawing. \until endif() \skip #create the executable of the application \until "draw_surface_mesh.cpp" -\skip if(CGAL_Qt5_FOUND) -\until target_link_libraries(draw_surface_mesh PUBLIC CGAL::CGAL_Qt5) +\skip if(CGAL_Qt6_FOUND) +\until target_link_libraries(draw_surface_mesh PUBLIC CGAL::CGAL_Qt6) \skip endif \until #end of the file diff --git a/Documentation/doc/Documentation/Third_party.txt b/Documentation/doc/Documentation/Third_party.txt index 569599ae0fdf..67533c1aef90 100644 --- a/Documentation/doc/Documentation/Third_party.txt +++ b/Documentation/doc/Documentation/Third_party.txt @@ -77,7 +77,7 @@ we recommend that you define the environment variable \subsection thirdpartyMPFR GNU Multiple Precision Arithmetic (GMP) and GNU Multiple Precision Floating-Point Reliably (MPFR) Libraries GMP Version 4.2 or later, MPFR Version 2.2.1 or later -The components `libCGAL`, `libCGAL_Core`, and `libCGAL_Qt5` require +The components `libCGAL`, `libCGAL_Core`, and `libCGAL_Qt6` require \gmp and \mpfr which are libraries for multi precision integers and rational numbers, and for multi precision floating point numbers. diff --git a/Documentation/doc/scripts/test_doxygen_versions.sh b/Documentation/doc/scripts/test_doxygen_versions.sh index f71d5c6e0220..c847e110a2d2 100644 --- a/Documentation/doc/scripts/test_doxygen_versions.sh +++ b/Documentation/doc/scripts/test_doxygen_versions.sh @@ -117,7 +117,7 @@ if [ "$HAS_REF" -ne "1" ]; then if [ $IS_RELEASE = 0 ]; then cd $ROOT mkdir -p ./build && cd ./build - cmake -DWITH_CGAL_Core=false -DWITH_CGAL_ImageIO=false -DWITH_CGAL_Qt5=false .. 1>> ./build_logs + cmake -DWITH_CGAL_Core=false -DWITH_CGAL_ImageIO=false -DWITH_CGAL_Qt6=false .. 1>> ./build_logs CGAL_NAME="$(cat $PWD/VERSION)" cd $ROOT rm -rf ./build diff --git a/GraphicsView/include/CGAL/Qt/CGAL_Qt_config.h b/GraphicsView/include/CGAL/Qt/CGAL_Qt_config.h index 118426a54df1..6aad119ecc35 100644 --- a/GraphicsView/include/CGAL/Qt/CGAL_Qt_config.h +++ b/GraphicsView/include/CGAL/Qt/CGAL_Qt_config.h @@ -14,8 +14,8 @@ #include -#if defined(CGAL_Qt5_DLL) -# if defined(CGAL_Qt5_EXPORTS) +#if defined(CGAL_Qt6_DLL) +# if defined(CGAL_Qt6_EXPORTS) # define CGAL_QT_EXPORT Q_DECL_EXPORT # else # define CGAL_QT_EXPORT Q_DECL_IMPORT diff --git a/GraphicsView/include/CGAL/auto_link/Qt.h b/GraphicsView/include/CGAL/auto_link/Qt.h index bcaf3cbd99c3..a08e108e2d34 100644 --- a/GraphicsView/include/CGAL/auto_link/Qt.h +++ b/GraphicsView/include/CGAL/auto_link/Qt.h @@ -16,13 +16,13 @@ #include #if (! defined (CGAL_NO_AUTOLINK_QT)) -#if ( ! defined( CGAL_EXPORTS ) && (! defined ( CGAL_Qt5_EXPORTS ))) +#if ( ! defined( CGAL_EXPORTS ) && (! defined ( CGAL_Qt6_EXPORTS ))) // If CGAL_EXPORTS is defined it means that we are building the CGAL // library as a DLL. The CGAL.dll does not really depend on CGAL_Qt, // whatever the header inclusion graph says. -#define CGAL_LIB_NAME CGAL_Qt5 +#define CGAL_LIB_NAME CGAL_Qt6 #include diff --git a/GraphicsView/include/CGAL/export/Qt.h b/GraphicsView/include/CGAL/export/Qt.h index 7d79a2069917..a1392b2610a2 100644 --- a/GraphicsView/include/CGAL/export/Qt.h +++ b/GraphicsView/include/CGAL/export/Qt.h @@ -18,7 +18,7 @@ #if ( defined(CGAL_BUILD_SHARED_LIBS) && ( ! defined(CGAL_HEADER_ONLY) ) ) \ || defined(CGAL_USE_Qt5_RESOURCES) -# if defined(CGAL_Qt5_EXPORTS) || defined(CGAL_USE_Qt5_RESOURCES) +# if defined(CGAL_Qt6_EXPORTS) || defined(CGAL_USE_Qt5_RESOURCES) // defined by CMake or in cpp files of the dll # define CGAL_QT_EXPORT CGAL_DLL_EXPORT diff --git a/Installation/cmake/modules/CGAL_Qt5_moc_and_resource_files.cmake b/Installation/cmake/modules/CGAL_Qt5_moc_and_resource_files.cmake deleted file mode 100644 index 2d566decf613..000000000000 --- a/Installation/cmake/modules/CGAL_Qt5_moc_and_resource_files.cmake +++ /dev/null @@ -1,25 +0,0 @@ -if(CGAL_Qt5_moc_and_resource_files_included) - return() -endif() -set(CGAL_Qt5_moc_and_resource_files_included TRUE) -# qrc files (resources files, that contain icons, at least) -if(EXISTS ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/resources/CGAL.qrc) - qt5_add_resources (_CGAL_Qt5_RESOURCE_FILES_private - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/resources/CGAL.qrc - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/Input.qrc - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/File.qrc - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/demo/icons/Triangulation_2.qrc) -else() - # Installed version, in CMake resources - file ( COPY - ${CGAL_MODULES_DIR}/demo/resources - ${CGAL_MODULES_DIR}/demo/icons - DESTINATION ${CMAKE_BINARY_DIR}) - qt5_add_resources (_CGAL_Qt5_RESOURCE_FILES_private - ${CMAKE_BINARY_DIR}/resources/CGAL.qrc - ${CMAKE_BINARY_DIR}/icons/Input.qrc - ${CMAKE_BINARY_DIR}/icons/File.qrc - ${CMAKE_BINARY_DIR}/icons/Triangulation_2.qrc) -endif() - -qt5_wrap_ui(_CGAL_Qt5_UI_FILES ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/ImageInterface.ui) diff --git a/Installation/cmake/modules/CGAL_SetupCGAL_Qt5Dependencies.cmake b/Installation/cmake/modules/CGAL_SetupCGAL_Qt5Dependencies.cmake deleted file mode 100644 index c6701aeb1a1b..000000000000 --- a/Installation/cmake/modules/CGAL_SetupCGAL_Qt5Dependencies.cmake +++ /dev/null @@ -1,127 +0,0 @@ -#.rst: -# CGAL_SetupCGAL_Qt5Dependencies -# ------------------------------ -# -# The module searches for the dependencies of the `CGAL_Qt5` library: -# - the `Qt5` libraries -# -# by calling -# -# .. code-block:: cmake -# -# find_package(Qt5 QUIET COMPONENTS OpenGL Widgets) -# -# and defines the variable :variable:`CGAL_Qt5_FOUND` and the function -# :command:`CGAL_setup_CGAL_Qt5_dependencies`. -# - -if(CGAL_SetupCGAL_Qt5Dependencies_included) - return() -endif() -set(CGAL_SetupCGAL_Qt5Dependencies_included TRUE) - -#.rst: -# Used Modules -# ^^^^^^^^^^^^ -# - :module:`Qt5Config` -find_package(Qt5 QUIET COMPONENTS OpenGL Widgets OPTIONAL_COMPONENTS Svg) - -set(CGAL_Qt5_MISSING_DEPS "") -if(NOT Qt5OpenGL_FOUND) - set(CGAL_Qt5_MISSING_DEPS "Qt5OpenGL") -endif() -if(NOT Qt5Widgets_FOUND) - set(CGAL_Qt5_MISSING_DEPS "${CGAL_Qt5_MISSING_DEPS} Qt5Widgets") -endif() -if(NOT Qt5_FOUND) - set(CGAL_Qt5_MISSING_DEPS "${CGAL_Qt5_MISSING_DEPS} Qt5") -endif() -if(NOT EXISTS ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsItem.h) - set(CGAL_Qt5_MISSING_DEPS "${CGAL_Qt5_MISSING_DEPS} headers") -endif() - -#.rst: -# Result Variables -# ^^^^^^^^^^^^^^^^ -# -# .. variable:: CGAL_Qt5_FOUND -# -# Set to `TRUE` if the dependencies of `CGAL_Qt5` were found. -# -if(NOT CGAL_Qt5_MISSING_DEPS) - set(CGAL_Qt5_FOUND TRUE) - set_property(GLOBAL PROPERTY CGAL_Qt5_FOUND TRUE) - - include(${CMAKE_CURRENT_LIST_DIR}/CGAL_Qt5_moc_and_resource_files.cmake) - - if(NOT TARGET CGAL_Qt5_moc_and_resources) - add_library(CGAL_Qt5_moc_and_resources STATIC - ${_CGAL_Qt5_MOC_FILES_private} - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsViewNavigation.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/DemosMainWindow.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsItem.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/GraphicsViewInput.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/camera.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/frame.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/keyFrameInterpolator.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/manipulatedCameraFrame.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/manipulatedFrame.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/qglviewer.h - ${CGAL_GRAPHICSVIEW_PACKAGE_DIR}/include/CGAL/Qt/image_interface.h - ${_CGAL_Qt5_UI_FILES} - ${_CGAL_Qt5_RESOURCE_FILES_private}) - target_include_directories( CGAL_Qt5_moc_and_resources PUBLIC ${CMAKE_CURRENT_BINARY_DIR}) - set_target_properties(CGAL_Qt5_moc_and_resources PROPERTIES - POSITION_INDEPENDENT_CODE TRUE - EXCLUDE_FROM_ALL TRUE - AUTOMOC TRUE) - target_link_libraries(CGAL_Qt5_moc_and_resources PUBLIC CGAL::CGAL Qt5::Widgets Qt5::OpenGL ) - if(Qt5Svg_FOUND) - target_link_libraries(CGAL_Qt5_moc_and_resources PUBLIC Qt5::Svg) - endif() - add_library(CGAL::CGAL_Qt5_moc_and_resources ALIAS CGAL_Qt5_moc_and_resources) - add_library(CGAL::Qt5_moc_and_resources ALIAS CGAL_Qt5_moc_and_resources) - endif() - -endif() - -#get_property(QT_UIC_EXECUTABLE TARGET Qt5::uic PROPERTY LOCATION) -#message( STATUS "Qt5Core include: ${Qt5Core_INCLUDE_DIRS}" ) -#message( STATUS "Qt5 libraries: ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} ${Qt5Svg_LIBRARIES} ${Qt5OpenGL_LIBRARIES}" ) -#message( STATUS "Qt5Core definitions: ${Qt5Core_DEFINITIONS}" ) -#message( STATUS "moc executable: ${QT_MOC_EXECUTABLE}" ) -#message( STATUS "uic executable: ${QT_UIC_EXECUTABLE}" ) - -#.rst: -# -# Provided Functions -# ^^^^^^^^^^^^^^^^^^ -# -# .. command:: CGAL_setup_CGAL_Qt5_dependencies -# -# Link the target with the dependencies of `CGAL_Qt5`:: -# -# CGAL_setup_CGAL_Qt5_dependencies( target ) -# -# The dependencies are -# added using :command:`target_link_libraries` with the ``INTERFACE`` -# keyword. -# -function(CGAL_setup_CGAL_Qt5_dependencies target) - - if($ENV{CGAL_FAKE_PUBLIC_RELEASE}) - target_compile_definitions( ${target} INTERFACE CGAL_FAKE_PUBLIC_RELEASE=1 ) - endif() - target_link_libraries( ${target} INTERFACE CGAL::CGAL) - target_link_libraries( ${target} INTERFACE CGAL::Qt5_moc_and_resources) - target_link_libraries( ${target} INTERFACE Qt5::OpenGL Qt5::Widgets ) - - # Remove -Wdeprecated-copy, for g++ >= 9.0, because Qt5, as of - # version 5.12, has a lot of [-Wdeprecated-copy] warnings. - if( CMAKE_CXX_COMPILER_ID STREQUAL "GNU" - AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS "9" ) - target_compile_options( ${target} INTERFACE "-Wno-deprecated-copy" "-Wno-cast-function-type" ) - endif() - -endfunction() - diff --git a/Installation/cmake/modules/CGAL_enable_end_of_configuration_hook.cmake b/Installation/cmake/modules/CGAL_enable_end_of_configuration_hook.cmake index 81f62d9aab45..a25a85fa50c4 100644 --- a/Installation/cmake/modules/CGAL_enable_end_of_configuration_hook.cmake +++ b/Installation/cmake/modules/CGAL_enable_end_of_configuration_hook.cmake @@ -24,7 +24,7 @@ function(CGAL_hook_check_targets) endif() get_property(_targets DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY BUILDSYSTEM_TARGETS) set(_list_of_deps) - set(_special_targets demos examples tests ALL_CGAL_TARGETS CGAL_Qt5_moc_and_resources uninstall install_FindCGAL) + set(_special_targets demos examples tests ALL_CGAL_TARGETS CGAL_Qt6_moc_and_resources uninstall install_FindCGAL) foreach(t ${_special_targets}) if(NOT TARGET ${t}) continue() @@ -110,8 +110,8 @@ function(CGAL_hook_fix_ctest_depending_on_Qt5) continue() endif() get_property(_target_links TARGET ${_target} PROPERTY LINK_LIBRARIES) - if("CGAL_Qt5" IN_LIST _target_links OR "CGAL::CGAL_Qt5" IN_LIST _target_links) - set_property(TEST "compilation of ${_target}" APPEND PROPERTY FIXTURES_REQUIRED CGAL_Qt5_moc_and_resources_Fixture) + if("CGAL_Qt6" IN_LIST _target_links OR "CGAL::CGAL_Qt6" IN_LIST _target_links) + set_property(TEST "compilation of ${_target}" APPEND PROPERTY FIXTURES_REQUIRED CGAL_Qt6_moc_and_resources_Fixture) endif() endforeach() endfunction() diff --git a/Installation/cmake/modules/Help/CGAL_SetupCGAL_Qt5Dependencies.rst b/Installation/cmake/modules/Help/CGAL_SetupCGAL_Qt5Dependencies.rst deleted file mode 100644 index 815f7a4dd5f1..000000000000 --- a/Installation/cmake/modules/Help/CGAL_SetupCGAL_Qt5Dependencies.rst +++ /dev/null @@ -1 +0,0 @@ -.. cmake-module:: ../CGAL_SetupCGAL_Qt5Dependencies.cmake diff --git a/Installation/cmake/modules/Help/CGAL_SetupCGAL_Qt6Dependencies.rst b/Installation/cmake/modules/Help/CGAL_SetupCGAL_Qt6Dependencies.rst new file mode 100644 index 000000000000..87365f45ac4a --- /dev/null +++ b/Installation/cmake/modules/Help/CGAL_SetupCGAL_Qt6Dependencies.rst @@ -0,0 +1 @@ +.. cmake-module:: ../CGAL_SetupCGAL_Qt6Dependencies.cmake diff --git a/Installation/cmake/modules/Help/index.rst b/Installation/cmake/modules/Help/index.rst index b47d4211d9b3..b13ae1e506f9 100644 --- a/Installation/cmake/modules/Help/index.rst +++ b/Installation/cmake/modules/Help/index.rst @@ -16,7 +16,7 @@ Contents: CGAL_SetupBoost CGAL_SetupCGALDependencies CGAL_SetupCGAL_CoreDependencies - CGAL_SetupCGAL_Qt5Dependencies + CGAL_SetupCGAL_Qt6Dependencies CGAL_SetupCGAL_ImageIODependencies TODO diff --git a/Installation/test/Installation/CMakeLists.txt b/Installation/test/Installation/CMakeLists.txt index d8b14c0bb170..c057119bbd3c 100644 --- a/Installation/test/Installation/CMakeLists.txt +++ b/Installation/test/Installation/CMakeLists.txt @@ -78,10 +78,10 @@ else() set(NON_STANDARD_INSTALL_PREFIX ${CMAKE_BINARY_DIR}) endif() -if(WITH_CGAL_Qt5) +if(WITH_CGAL_Qt6) find_package(Qt6 QUIET COMPONENTS Core) - if(Qt5_FOUND) - create_link_to_program(CGAL_Qt5) + if(Qt6_FOUND) + create_link_to_program(CGAL_Qt6) endif() endif() @@ -152,12 +152,12 @@ file(MAKE_DIRECTORY "${NON_STANDARD_INSTALL_PREFIX}/non_standard_install") file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/non_standard_build) file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/test_config_file) -if(CGAL_Qt5_FOUND) - file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/non_standard_install_qt5) - file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/non_standard_build_qt5) - file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/test_config_file_qt5) - configure_file(test_configuration_qt5.cmake.in ${CMAKE_BINARY_DIR}/test_config_file_qt5/CMakeLists.txt @ONLY) -endif()#CGAL_Qt5_FOUND +if(CGAL_Qt6_FOUND) + file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/non_standard_install_qt) + file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/non_standard_build_qt) + file(MAKE_DIRECTORY ${NON_STANDARD_INSTALL_PREFIX}/test_config_file_qt) + configure_file(test_configuration_qt.cmake.in ${CMAKE_BINARY_DIR}/test_config_file_qt/CMakeLists.txt @ONLY) +endif()#CGAL_Qt6_FOUND #If ctest is ran from a global config, CGAL_SOURCE_DIR exists, but from Installation/test it doesn't. In that case, however, there is a CGAL_DIR. if("${CGAL_SOURCE_DIR}" STREQUAL "") @@ -173,28 +173,28 @@ configure_file(test_configuration.cmake.in ${CMAKE_BINARY_DIR}/test_config_file/ #test CGAL_DIR = source_dir (Git_root or CGAL-5.x dir. get_filename_component(CGAL_DIR_CORRECT_PATH "${CGAL_SOURCE_DIR}/CGALConfig.cmake" DIRECTORY) -add_test(NAME test_config_file +add_test(NAME test_config_file_in_CGAL_SOURCE_DIR COMMAND ${CMAKE_COMMAND} ${GENERATOR} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCGAL_DIR=${CGAL_DIR_CORRECT_PATH} -DCGAL_GIVEN_DIR=${CGAL_DIR_CORRECT_PATH} "${CMAKE_BINARY_DIR}/test_config_file" #src - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file") #build -list(APPEND test_config_lst "test_config_file") + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_in_CGAL_SOURCE_DIR") #build +list(APPEND test_config_lst "test_config_file_in_CGAL_SOURCE_DIR") if(RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE)#CGAL_BRANCH_BUILD #test CGAL_DIR = CGAL-5.x/lib/cmake/CGAL get_filename_component(CGAL_DIR_CORRECT_PATH "${CGAL_SOURCE_DIR}/lib/cmake/CGAL/CGALConfig.cmake" DIRECTORY) - add_test(NAME test_config_file_2 + add_test(NAME test_config_file_in_lib_cmake_CGAL COMMAND ${CMAKE_COMMAND} ${GENERATOR} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCGAL_DIR=${CGAL_DIR_CORRECT_PATH} -DCGAL_GIVEN_DIR=${CGAL_DIR_CORRECT_PATH} "${CMAKE_BINARY_DIR}/test_config_file" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_2") + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_in_lib_cmake_CGAL") else()#CGAL_BRANCH_BUILD #use the CGAL_DIR get_filename_component(CGAL_DIR_CORRECT_PATH "${CGAL_SOURCE_DIR}/Installation/lib/cmake/CGAL/CGALConfig.cmake" DIRECTORY) - add_test(NAME test_config_file_2 + add_test(NAME test_config_file_in_lib_cmake_CGAL COMMAND ${CMAKE_COMMAND} ${GENERATOR} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCGAL_DIR=${CGAL_DIR_CORRECT_PATH} -DCGAL_GIVEN_DIR=${CGAL_DIR_CORRECT_PATH} "${CMAKE_BINARY_DIR}/test_config_file" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_2") + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_in_lib_cmake_CGAL") endif()#CGAL_BRANCH_BUILD -list(APPEND test_config_lst "test_config_file_2") +list(APPEND test_config_lst "test_config_file_in_lib_cmake_CGAL") #configure cgal for a non standard install without Qt6 get_filename_component(CORRECT_INSTALL_PATH "${NON_STANDARD_INSTALL_PREFIX}/non_standard_install/dummy.txt" DIRECTORY) @@ -206,40 +206,40 @@ add_test(NAME config_non_standard_cgal add_test(NAME install_non_standard_cgal COMMAND ${CMAKE_COMMAND} --build "${NON_STANDARD_INSTALL_PREFIX}/non_standard_build" --target "install" --config "$") -#test CGAL_DIR=non standard place without cgal_qt5 +#test CGAL_DIR=non standard place without cgal_qt get_filename_component(CGAL_DIR_CORRECT_PATH "${NON_STANDARD_INSTALL_PREFIX}/non_standard_install/lib/cmake/CGAL/CGALConfig.cmake" DIRECTORY) -add_test(NAME test_config_file_3 +add_test(NAME test_config_file_non_standard_install_lib_cmake COMMAND ${CMAKE_COMMAND} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCGAL_DIR=${CGAL_DIR_CORRECT_PATH} -DCGAL_GIVEN_DIR=${CGAL_DIR_CORRECT_PATH} "${CMAKE_BINARY_DIR}/test_config_file" -WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_3") -list(APPEND test_config_lst "test_config_file_3") +WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_non_standard_install_lib_cmake") +list(APPEND test_config_lst "test_config_file_non_standard_install_lib_cmake") -if(CGAL_Qt5_FOUND) +if(CGAL_Qt6_FOUND) #configure cgal for a non standard install with Qt6 - add_test(NAME config_non_standard_cgal_qt5 - COMMAND ${CMAKE_COMMAND} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${NON_STANDARD_INSTALL_PREFIX}/non_standard_install_qt5 -DCGAL_INSTALL_LIB_DIR=lib + add_test(NAME config_non_standard_cgal_qt + COMMAND ${CMAKE_COMMAND} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${NON_STANDARD_INSTALL_PREFIX}/non_standard_install_qt -DCGAL_INSTALL_LIB_DIR=lib "${CGAL_SOURCE_DIR}" - WORKING_DIRECTORY "${NON_STANDARD_INSTALL_PREFIX}/non_standard_build_qt5") + WORKING_DIRECTORY "${NON_STANDARD_INSTALL_PREFIX}/non_standard_build_qt") #install cgal in the non standard place - add_test(NAME install_non_standard_cgal_qt5 - COMMAND ${CMAKE_COMMAND} --build "${NON_STANDARD_INSTALL_PREFIX}/non_standard_build_qt5" --target "install" --config "$") + add_test(NAME install_non_standard_cgal_qt + COMMAND ${CMAKE_COMMAND} --build "${NON_STANDARD_INSTALL_PREFIX}/non_standard_build_qt" --target "install" --config "$") - #test CGAL_DIR=non standard place with cgal_qt5 - get_filename_component(CGAL_DIR_CORRECT_PATH "${NON_STANDARD_INSTALL_PREFIX}/non_standard_install_qt5/lib/cmake/CGAL/CGALConfig.cmake" DIRECTORY) - add_test(NAME test_config_file_4 + #test CGAL_DIR=non standard place with cgal_qt + get_filename_component(CGAL_DIR_CORRECT_PATH "${NON_STANDARD_INSTALL_PREFIX}/non_standard_install_qt/lib/cmake/CGAL/CGALConfig.cmake" DIRECTORY) + add_test(NAME test_config_file_non_standard_install_lib_cmake_with_qt COMMAND ${CMAKE_COMMAND} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCGAL_DIR=${CGAL_DIR_CORRECT_PATH} -DCGAL_GIVEN_DIR=${CGAL_DIR_CORRECT_PATH} - "${CMAKE_BINARY_DIR}/test_config_file_qt5" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_4") - list(APPEND test_config_lst "test_config_file_4") -endif()#CGAL_Qt5_FOUND + "${CMAKE_BINARY_DIR}/test_config_file_qt" + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_non_standard_install_lib_cmake_with_qt") + list(APPEND test_config_lst "test_config_file_non_standard_install_lib_cmake_with_qt") +endif()#CGAL_Qt6_FOUND #test CGAL_DIR=non standard build get_filename_component(CGAL_DIR_CORRECT_PATH "${NON_STANDARD_INSTALL_PREFIX}/non_standard_build/CGALConfig.cmake" DIRECTORY) -add_test(NAME test_config_file_5 +add_test(NAME test_config_file_non_standard COMMAND ${CMAKE_COMMAND} ${INIT_FILE} -DCMAKE_BUILD_TYPE=Release -DCGAL_DIR=${CGAL_DIR_CORRECT_PATH} -DCGAL_GIVEN_DIR=${CGAL_DIR_CORRECT_PATH} "${CMAKE_BINARY_DIR}/test_config_file" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_5") -list(APPEND test_config_lst "test_config_file_5") + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/build-test_config_file_non_standard") +list(APPEND test_config_lst "test_config_file_non_standard") foreach(tgt ${test_config_lst}) #add_custom_target(${tgt}_target) @@ -268,19 +268,19 @@ foreach(tgt ${test_config_lst}) endforeach() set_property(TEST install_non_standard_cgal APPEND PROPERTY DEPENDS config_non_standard_cgal) -set_property(TEST config_non_standard_cgal APPEND PROPERTY FIXTURES_SETUP test_config_file_3_target) -set_property(TEST install_non_standard_cgal APPEND PROPERTY FIXTURES_SETUP test_config_file_3_target) -set_property(TEST test_config_file_3 test_config_file_5 APPEND PROPERTY FIXTURES_REQUIRED test_config_file_3_target) +set_property(TEST config_non_standard_cgal APPEND PROPERTY FIXTURES_SETUP test_config_file_non_standard_install_lib_cmake_target) +set_property(TEST install_non_standard_cgal APPEND PROPERTY FIXTURES_SETUP test_config_file_non_standard_install_lib_cmake_target) +set_property(TEST test_config_file_non_standard_install_lib_cmake test_config_file_non_standard APPEND PROPERTY FIXTURES_REQUIRED test_config_file_non_standard_install_lib_cmake_target) set_property(TEST install_non_standard_cgal APPEND PROPERTY LABELS Installation_Tests CGAL_cmake_testsuite) set_property(TEST config_non_standard_cgal APPEND PROPERTY LABELS Installation_Tests CGAL_cmake_testsuite) -if(CGAL_Qt5_FOUND) - set_property(TEST install_non_standard_cgal_qt5 APPEND PROPERTY DEPENDS config_non_standard_cgal_qt5) - set_property(TEST config_non_standard_cgal_qt5 APPEND PROPERTY FIXTURES_SETUP test_config_file_4_target) - set_property(TEST install_non_standard_cgal_qt5 APPEND PROPERTY FIXTURES_SETUP test_config_file_4_target) - set_property(TEST test_config_file_4 APPEND PROPERTY FIXTURES_REQUIRED test_config_file_4_target) +if(CGAL_Qt6_FOUND) + set_property(TEST install_non_standard_cgal_qt APPEND PROPERTY DEPENDS config_non_standard_cgal_qt) + set_property(TEST config_non_standard_cgal_qt APPEND PROPERTY FIXTURES_SETUP test_config_file_non_standard_install_lib_cmake_with_qt_target) + set_property(TEST install_non_standard_cgal_qt APPEND PROPERTY FIXTURES_SETUP test_config_file_non_standard_install_lib_cmake_with_qt_target) + set_property(TEST test_config_file_non_standard_install_lib_cmake_with_qt APPEND PROPERTY FIXTURES_REQUIRED test_config_file_non_standard_install_lib_cmake_with_qt_target) - set_property(TEST install_non_standard_cgal_qt5 APPEND PROPERTY LABELS Installation_Tests CGAL_cmake_testsuite) - set_property(TEST config_non_standard_cgal_qt5 APPEND PROPERTY LABELS Installation_Tests CGAL_cmake_testsuite) -endif()#CGAL_Qt5_FOUND + set_property(TEST install_non_standard_cgal_qt APPEND PROPERTY LABELS Installation_Tests CGAL_cmake_testsuite) + set_property(TEST config_non_standard_cgal_qt APPEND PROPERTY LABELS Installation_Tests CGAL_cmake_testsuite) +endif()#CGAL_Qt6_FOUND diff --git a/Installation/test/Installation/link_to_CGAL_Qt6.cpp b/Installation/test/Installation/link_to_CGAL_Qt6.cpp new file mode 100644 index 000000000000..f83cad157054 --- /dev/null +++ b/Installation/test/Installation/link_to_CGAL_Qt6.cpp @@ -0,0 +1,11 @@ +// Use something defined not in headers but in the CGAL library to test that is was indeed properly built and linked to, + +#include + +typedef QRectF (*mapToSceneFunction)(const QGraphicsView* , const QRect); + +int main() +{ + mapToSceneFunction f = CGAL::Qt::mapToScene; + return (&f > 0) ? 0 : 1; +} diff --git a/Installation/test/Installation/test_configuration_qt5.cmake.in b/Installation/test/Installation/test_configuration_qt.cmake.in similarity index 89% rename from Installation/test/Installation/test_configuration_qt5.cmake.in rename to Installation/test/Installation/test_configuration_qt.cmake.in index 548c6fba2bf8..6283fc661205 100644 --- a/Installation/test/Installation/test_configuration_qt5.cmake.in +++ b/Installation/test/Installation/test_configuration_qt.cmake.in @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(test_configuration) -find_package(CGAL COMPONENTS Qt5) +find_package(CGAL COMPONENTS Qt6) add_definitions(-DCGAL_USE_BASIC_VIEWER -DQT_NO_KEYWORDS) get_filename_component(CGAL_DIR_PATH "${CGAL_DIR}/CMakeConfig.cmake" DIRECTORY) @@ -10,5 +10,5 @@ if(NOT ${CGAL_DIR_PATH} STREQUAL ${CGAL_GIVEN_DIR_PATH}) message("${CGAL_DIR_PATH} != ${CGAL_GIVEN_DIR_PATH}") message( FATAL_ERROR "The CGAL_DIR is wrong !") endif() -add_executable(test_configuration @CMAKE_CURRENT_SOURCE_DIR@/test_configuration_qt5.cpp) -target_link_libraries(test_configuration PUBLIC CGAL::CGAL CGAL::CGAL_Qt5) +add_executable(test_configuration @CMAKE_CURRENT_SOURCE_DIR@/test_configuration_qt.cpp) +target_link_libraries(test_configuration PUBLIC CGAL::CGAL CGAL::CGAL_Qt6) diff --git a/Installation/test/Installation/test_configuration_qt5.cpp b/Installation/test/Installation/test_configuration_qt.cpp similarity index 100% rename from Installation/test/Installation/test_configuration_qt5.cpp rename to Installation/test/Installation/test_configuration_qt.cpp diff --git a/Linear_cell_complex/doc/Linear_cell_complex/CGAL/draw_linear_cell_complex.h b/Linear_cell_complex/doc/Linear_cell_complex/CGAL/draw_linear_cell_complex.h index 0e0d2f392b58..648d2c81ef3c 100644 --- a/Linear_cell_complex/doc/Linear_cell_complex/CGAL/draw_linear_cell_complex.h +++ b/Linear_cell_complex/doc/Linear_cell_complex/CGAL/draw_linear_cell_complex.h @@ -3,8 +3,8 @@ namespace CGAL { /*! \ingroup PkgDrawLinearCellComplex -opens a new window and draws `alcc`, a model of the `LinearCellComplex` concept. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +opens a new window and draws `alcc`, a model of the `LinearCellComplex` concept. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam LCC a model of the `LinearCellComplex` concept. \param alcc the linear cell complex to draw. diff --git a/Linear_cell_complex/doc/Linear_cell_complex/Linear_cell_complex.txt b/Linear_cell_complex/doc/Linear_cell_complex/Linear_cell_complex.txt index 0cb7753c302a..cac02fc6200d 100644 --- a/Linear_cell_complex/doc/Linear_cell_complex/Linear_cell_complex.txt +++ b/Linear_cell_complex/doc/Linear_cell_complex/Linear_cell_complex.txt @@ -265,8 +265,8 @@ A linear cell complex can be visualized by calling the \link PkgDrawLinearCellCo \cgalExample{Linear_cell_complex/draw_linear_cell_complex.cpp} -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalFigureBegin{fig_draw_lcc,draw_lcc.png} Result of the run of the draw_linear_cell_complex program. A window shows two 3D cubes and allows to navigate through the 3D scene. diff --git a/Nef_3/doc/Nef_3/CGAL/draw_nef_3.h b/Nef_3/doc/Nef_3/CGAL/draw_nef_3.h index f65883f84053..d61f502cc4f0 100644 --- a/Nef_3/doc/Nef_3/CGAL/draw_nef_3.h +++ b/Nef_3/doc/Nef_3/CGAL/draw_nef_3.h @@ -4,8 +4,8 @@ namespace CGAL { \ingroup PkgDrawNef3 Open a new window and draws `anef3`, the `Nef_polyhedron_3`. A call to this function is blocking, that is the program continues as soon as the user closes the window. -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam Nef3 a model of the `Nef_polyhedron_3` concept. \param anef3 the nef polyhedron to draw. diff --git a/Nef_3/doc/Nef_3/Nef_3.txt b/Nef_3/doc/Nef_3/Nef_3.txt index 60e98f188640..2edbb56529d6 100644 --- a/Nef_3/doc/Nef_3/Nef_3.txt +++ b/Nef_3/doc/Nef_3/Nef_3.txt @@ -424,8 +424,8 @@ A nef polyhedron can be visualised by calling the \link PkgDrawNef3 CGAL::draw( \cgalExample{Polygon/draw_polygon.cpp} -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalFigureBegin{fig_draw_polygon,draw_polygon.png} Result of the run of the draw_polygon program. A window shows the polygon and allows to navigate through the scene. diff --git a/Polygon/include/CGAL/draw_polygon_2.h b/Polygon/include/CGAL/draw_polygon_2.h index 1ab6ea142674..800e15e18a06 100644 --- a/Polygon/include/CGAL/draw_polygon_2.h +++ b/Polygon/include/CGAL/draw_polygon_2.h @@ -25,8 +25,8 @@ namespace CGAL { /*! \ingroup PkgDrawPolygon2 -opens a new window and draws `ap`, an instance of the `CGAL::Polygon_2` class. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +opens a new window and draws `ap`, an instance of the `CGAL::Polygon_2` class. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam P an instance of the `CGAL::Polygon_2` class. \param ap the polygon to draw. diff --git a/Polygon/include/CGAL/draw_polygon_with_holes_2.h b/Polygon/include/CGAL/draw_polygon_with_holes_2.h index d8b72c9bdd92..a530ad0a221b 100644 --- a/Polygon/include/CGAL/draw_polygon_with_holes_2.h +++ b/Polygon/include/CGAL/draw_polygon_with_holes_2.h @@ -28,9 +28,9 @@ namespace CGAL { * opens a new window and draws `aph`, an instance of the * `CGAL::Polygon_with_holes_2` class. A call to this function is blocking, that * is the program continues as soon as the user closes the window. This function - * requires `CGAL_Qt5`, and is only available if the macro + * requires `CGAL_Qt6`, and is only available if the macro * `CGAL_USE_BASIC_VIEWER` is defined. Linking with the cmake target - * `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition + * `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition * `CGAL_USE_BASIC_VIEWER`. * \tparam PH an instance of the `CGAL::Polygon_with_holes_2` class. * \param aph the polygon with holes to draw. diff --git a/Polyhedron/doc/Polyhedron/CGAL/draw_polyhedron.h b/Polyhedron/doc/Polyhedron/CGAL/draw_polyhedron.h index 3ce65574799e..9ed56fe232c2 100644 --- a/Polyhedron/doc/Polyhedron/CGAL/draw_polyhedron.h +++ b/Polyhedron/doc/Polyhedron/CGAL/draw_polyhedron.h @@ -3,8 +3,8 @@ namespace CGAL { /*! \ingroup PkgDrawPolyhedron -opens a new window and draws `apoly`, an instance of the `CGAL::Polyhedron_3` class. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +opens a new window and draws `apoly`, an instance of the `CGAL::Polyhedron_3` class. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam POLY an instance of the `CGAL::Polyhedron_3` class. \param apoly the polyhedron to draw. diff --git a/Polyhedron/doc/Polyhedron/Polyhedron.txt b/Polyhedron/doc/Polyhedron/Polyhedron.txt index cff55a73257d..e9d9cb1a5b35 100644 --- a/Polyhedron/doc/Polyhedron/Polyhedron.txt +++ b/Polyhedron/doc/Polyhedron/Polyhedron.txt @@ -284,8 +284,8 @@ A polyhedron can be visualized by calling the \link PkgDrawPolyhedron CGAL::draw \cgalExample{Polyhedron/draw_polyhedron.cpp} -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalFigureBegin{fig_draw_polyhedron,draw_polyhedron.png} Result of the run of the draw_polyhedron program. A window shows the polyhedron and allows to navigate through the 3D scene. diff --git a/Surface_mesh/doc/Surface_mesh/Surface_mesh.txt b/Surface_mesh/doc/Surface_mesh/Surface_mesh.txt index e7a521eaaabc..b7be50a395fc 100644 --- a/Surface_mesh/doc/Surface_mesh/Surface_mesh.txt +++ b/Surface_mesh/doc/Surface_mesh/Surface_mesh.txt @@ -388,8 +388,8 @@ A surface mesh can be visualized by calling the \link PkgDrawSurfaceMesh CGAL::d \cgalExample{Surface_mesh/draw_surface_mesh.cpp} -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalFigureBegin{fig_draw_surface_mesh,draw_surface_mesh.png} Result of the run of the draw_surface_mesh program. A window shows the surface mesh and allows to navigate through the 3D scene. diff --git a/Surface_mesh/include/CGAL/draw_surface_mesh.h b/Surface_mesh/include/CGAL/draw_surface_mesh.h index 8dd25acd5b2b..72158e05836c 100644 --- a/Surface_mesh/include/CGAL/draw_surface_mesh.h +++ b/Surface_mesh/include/CGAL/draw_surface_mesh.h @@ -17,8 +17,8 @@ /*! \ingroup PkgDrawSurfaceMesh -Open a new window and draw `asm`, an instance of the `CGAL::Surface_mesh` class. The function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +Open a new window and draw `asm`, an instance of the `CGAL::Surface_mesh` class. The function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam SM an instance of the `CGAL::Surface_mesh` class. \param asm the surface mesh to draw. diff --git a/Surface_mesh_topology/doc/Surface_mesh_topology/CGAL/draw_face_graph_with_paths.h b/Surface_mesh_topology/doc/Surface_mesh_topology/CGAL/draw_face_graph_with_paths.h index e2a13b4bf5ff..df9bde13a6f3 100644 --- a/Surface_mesh_topology/doc/Surface_mesh_topology/CGAL/draw_face_graph_with_paths.h +++ b/Surface_mesh_topology/doc/Surface_mesh_topology/CGAL/draw_face_graph_with_paths.h @@ -4,7 +4,7 @@ namespace CGAL { \ingroup PkgDrawFaceGraphWithPaths opens a new window and draws `amesh`, either a 2D linear cell complex or a model of the FaceGraph concept, plus the paths lying on this mesh given in `apaths`. -A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the flag `CGAL_USE_BASIC_VIEWER` is defined at compile time. +A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the flag `CGAL_USE_BASIC_VIEWER` is defined at compile time. \tparam Mesh either a 2D linear cell complex or a model of the FaceGraph concept. \param amesh the mesh to draw. \param apaths the paths to draw, which should lie on `amesh`. @@ -17,7 +17,7 @@ void draw(const Mesh& amesh, \ingroup PkgDrawFaceGraphWithPaths opens a new window and draws `amesh`, either a 2D linear cell complex or a model of the FaceGraph concept, plus the paths lying on this mesh given in `apaths`. -A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the flag `CGAL_USE_BASIC_VIEWER` is defined at compile time. +A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the flag `CGAL_USE_BASIC_VIEWER` is defined at compile time. \tparam Mesh either a 2D linear cell complex or a model of the FaceGraph concept. \param amesh the mesh to draw. \param apaths the paths to draw, which should lie on `amesh`. diff --git a/Surface_mesh_topology/doc/Surface_mesh_topology/Surface_mesh_topology.txt b/Surface_mesh_topology/doc/Surface_mesh_topology/Surface_mesh_topology.txt index 4ce425fb91f2..ad624ea45868 100644 --- a/Surface_mesh_topology/doc/Surface_mesh_topology/Surface_mesh_topology.txt +++ b/Surface_mesh_topology/doc/Surface_mesh_topology/Surface_mesh_topology.txt @@ -153,20 +153,20 @@ In order to find the edge width of the surface, one can make use of the routine \cgalExample{Surface_mesh_topology/edgewidth_surface_mesh.cpp} -In these two examples, the mesh and the cycles can be visualized if CGAL_Qt5 is enabled. +In these two examples, the mesh and the cycles can be visualized if CGAL_Qt6 is enabled. \subsection SMTopology_Example_IV Compute Face Width -The following example computes the face width, and visualizes it if CGAL_Qt5 is enabled. +The following example computes the face width, and visualizes it if CGAL_Qt6 is enabled. \cgalExample{Surface_mesh_topology/facewidth.cpp} \subsection SMTopology_Example_V Basic Homotopy Test -The following example shows how to load an off file and how to create three closed paths on this surface. Contractibility and free homotopy tests are then performed. The example also shows how to use the \cgal viewer if CGAL_Qt5 is enabled. +The following example shows how to load an off file and how to create three closed paths on this surface. Contractibility and free homotopy tests are then performed. The example also shows how to use the \cgal viewer if CGAL_Qt6 is enabled. \cgalExample{Surface_mesh_topology/path_homotopy_double_torus.cpp} \subsection SMTopology_Example_VI Basic Simplicity Test -The following example shows how to test the simplicity of a closed path on a double torus. The original path is visualized if CGAL_Qt5 is enabled. +The following example shows how to test the simplicity of a closed path on a double torus. The original path is visualized if CGAL_Qt6 is enabled. \cgalExample{Surface_mesh_topology/path_simplicity_double_torus_2.cpp} \subsection SMTopology_Example_VI_VII Polygonal Schema diff --git a/Testsuite/test/post_process_ctest_results.py b/Testsuite/test/post_process_ctest_results.py index 120094cabbb3..2ec152996977 100644 --- a/Testsuite/test/post_process_ctest_results.py +++ b/Testsuite/test/post_process_ctest_results.py @@ -47,7 +47,7 @@ name="libCGALCore_shared" elif name == "libCGAL_ImageIO": name="libCGALimageIO_shared" - elif name == "libCGAL_Qt5": + elif name == "libCGAL_Qt6": name="libCGALQt5_shared" if name=="incomplete": is_writing=False diff --git a/Triangulation_2/doc/Triangulation_2/CGAL/draw_triangulation_2.h b/Triangulation_2/doc/Triangulation_2/CGAL/draw_triangulation_2.h index 4b63d19a344d..6ca50c894cf4 100644 --- a/Triangulation_2/doc/Triangulation_2/CGAL/draw_triangulation_2.h +++ b/Triangulation_2/doc/Triangulation_2/CGAL/draw_triangulation_2.h @@ -8,9 +8,9 @@ has constraints they are drawn. If the face type has a member function `bool is_in_domain()` the faces inside and outside of the domain are drawn in different colors. -A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with -`CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +`CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam T2 a triangulation class derived from `Triangulation_2` or `Constrained_triangulation_2` \param at2 the triangulation to draw. @@ -26,8 +26,8 @@ opens a new window and draws a constrained triangulation. If the triangulation has constraints they are drawn. The faces inside and outside of the domain, based on the property map, are drawn in different colors. -A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam CT2 a triangulation class derived from `Constrained_triangulation_2` \tparam InDomainPMap a class model of `ReadWritePropertyMap` with diff --git a/Triangulation_2/doc/Triangulation_2/Triangulation_2.txt b/Triangulation_2/doc/Triangulation_2/Triangulation_2.txt index 249c5a0117de..a7aead03e285 100644 --- a/Triangulation_2/doc/Triangulation_2/Triangulation_2.txt +++ b/Triangulation_2/doc/Triangulation_2/Triangulation_2.txt @@ -509,8 +509,8 @@ A 2D triangulation can be visualized by calling the \link PkgDrawTriangulation2 \cgalExample{Triangulation_2/draw_triangulation_2.cpp} -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalFigureBegin{fig_draw_triangulation_2,draw_triangulation_2.png} Result of the run of the draw_triangulation_2 program. A window shows the 2D triangulation and allows to navigate through the scene. diff --git a/Triangulation_3/doc/Triangulation_3/CGAL/draw_triangulation_3.h b/Triangulation_3/doc/Triangulation_3/CGAL/draw_triangulation_3.h index 266e73dcca29..82d1caf91248 100644 --- a/Triangulation_3/doc/Triangulation_3/CGAL/draw_triangulation_3.h +++ b/Triangulation_3/doc/Triangulation_3/CGAL/draw_triangulation_3.h @@ -3,8 +3,8 @@ namespace CGAL { /*! \ingroup PkgDrawTriangulation3 -opens a new window and draws `at3`, a model of the `TriangulationDataStructure_3` concept. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires CGAL_Qt5, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +opens a new window and draws `at3`, a model of the `TriangulationDataStructure_3` concept. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires CGAL_Qt6, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam T3 a model of the `TriangulationDataStructure_3` concept. \param at3 the triangulation to draw. diff --git a/Triangulation_3/doc/Triangulation_3/Triangulation_3.txt b/Triangulation_3/doc/Triangulation_3/Triangulation_3.txt index 0b1170a552ed..84daca88505f 100644 --- a/Triangulation_3/doc/Triangulation_3/Triangulation_3.txt +++ b/Triangulation_3/doc/Triangulation_3/Triangulation_3.txt @@ -569,8 +569,8 @@ A 3D triangulation can be visualized by calling the \link PkgDrawTriangulation3 \cgalExample{Triangulation_3/draw_triangulation_3.cpp} -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalFigureBegin{fig_draw_triangulation_3,draw_triangulation_3.png} Result of the run of the draw_triangulation_3 program. A window shows the 3D triangulation and allows to navigate through the 3D scene. diff --git a/Voronoi_diagram_2/doc/Voronoi_diagram_2/CGAL/draw_voronoi_diagram_2.h b/Voronoi_diagram_2/doc/Voronoi_diagram_2/CGAL/draw_voronoi_diagram_2.h index 1eb06f9c3530..530bcaf5dda2 100644 --- a/Voronoi_diagram_2/doc/Voronoi_diagram_2/CGAL/draw_voronoi_diagram_2.h +++ b/Voronoi_diagram_2/doc/Voronoi_diagram_2/CGAL/draw_voronoi_diagram_2.h @@ -6,8 +6,8 @@ namespace CGAL { opens a new window and draws `av2`, the `Voronoi_diagram_2` constructed from a Delaunay Graph which is a model of `DelaunayGraph_2` concept. The class `Voronoi_diagram_2` provides an adaptor to view a triangulated Delaunay graph as their dual subdivision, the Voronoi diagram. A call to this function is blocking, that is the program continues as soon as the user closes the window. -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam V2 a model of the `AdaptationTraits_2` concept. \param av2 the voronoi diagram to draw. diff --git a/Voronoi_diagram_2/doc/Voronoi_diagram_2/Voronoi_diagram_2.txt b/Voronoi_diagram_2/doc/Voronoi_diagram_2/Voronoi_diagram_2.txt index 2ee66c16c184..437036f97efd 100644 --- a/Voronoi_diagram_2/doc/Voronoi_diagram_2/Voronoi_diagram_2.txt +++ b/Voronoi_diagram_2/doc/Voronoi_diagram_2/Voronoi_diagram_2.txt @@ -493,8 +493,8 @@ location queries. A 2D Voronoi Diagram can be visualized by calling the \link PkgDrawVoronoiDiagram2 CGAL::draw() \endlink function as shown in the following example. This function opens a new window showing the Voronoi Diagram of the given input sites/vertex locations. A call to this function is blocking, that is the program continues as soon as the user closes the window. -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalExample{Voronoi_diagram_2/draw_voronoi_diagram_2.cpp} From 48f37a14dc9563617633c3a313c94d2cf00d8e1b Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 14 Sep 2023 17:02:21 +0200 Subject: [PATCH 64/85] remove occurrences of Qt5 --- .gitignore | 8 ------ .../Developer_manual/cmakelist_script.txt | 2 +- .../create_and_use_a_cmakelist.txt | 4 +-- .../doc/Documentation/Third_party.txt | 4 +-- Documentation/doc/Documentation/Usage.txt | 8 +++--- .../advanced/Configuration_variables.txt | 8 +++--- Documentation/doc/Documentation/windows.txt | 9 +++---- GraphicsView/TODO | 11 -------- .../Segment_voronoi_linf_2.cpp | 2 +- GraphicsView/include/CGAL/export/Qt.h | 4 +-- Installation/LICENSE | 11 ++++---- ...GAL_enable_end_of_configuration_hook.cmake | 4 +-- .../config/support/print_QT4_version.cpp | 19 -------------- Installation/include/CGAL/export/helpers.h | 2 +- .../Installation/test_configuration_qt.cpp | 2 +- .../Linear_cell_complex_3_demo.cpp | 2 +- Mesh_2/demo/Mesh_2/README.txt | 2 +- .../Polyline_simplification_2.cpp | 2 +- .../fundamental_group_of_the_torus.cpp | 2 +- Testsuite/test/post_process_ctest_results.py | 2 +- Three/doc/Three/Three.txt | 25 +++++++++---------- 21 files changed, 46 insertions(+), 87 deletions(-) delete mode 100644 GraphicsView/TODO delete mode 100644 Installation/cmake/modules/config/support/print_QT4_version.cpp diff --git a/.gitignore b/.gitignore index a53ed4269ce2..90f003227c6f 100644 --- a/.gitignore +++ b/.gitignore @@ -178,12 +178,6 @@ GraphicsView/demo/Triangulation_2/Makefile GraphicsView/demo/Triangulation_2/Regular_triangulation_2 GraphicsView/demo/Triangulation_2/qrc_*.cxx GraphicsView/demo/Triangulation_2/ui_*.h -GraphicsView/src/CGAL_Qt5/*.dll -GraphicsView/src/CGAL_Qt5/*.lib -GraphicsView/src/CGAL_Qt5/*.so -GraphicsView/src/CGAL_Qt5/Makefile -GraphicsView/src/CGAL_Qt5/moc_*.cxx -GraphicsView/src/CGAL_Qt5/qrc_*.cxx HalfedgeDS/test/HalfedgeDS/cgal_test_with_cmake HalfedgeDS/test/HalfedgeDS/test_hds HalfedgeDS/test/HalfedgeDS/test_hds_decorator @@ -879,7 +873,6 @@ Surface_mesher/demo/Surface_mesher/.*.deps Surface_mesher/demo/Surface_mesher/.qglviewer.xml Surface_mesher/demo/Surface_mesher/Makefile Surface_mesher/demo/Surface_mesher/Surface_mesher -Surface_mesher/demo/Surface_mesher/Surface_mesher_Qt5_Demo Surface_mesher/demo/Surface_mesher/VTK/Makefile Surface_mesher/demo/Surface_mesher/VTK/mesh_a_3D_image Surface_mesher/demo/Surface_mesher/VTK/mesh_a_VTK_3D_image @@ -894,7 +887,6 @@ Surface_mesher/demo/Surface_mesher/out*.off Surface_mesher/demo/Surface_mesher/polyhedron_remesher Surface_mesher/demo/Surface_mesher/polyhedron_remesher_with_edges Surface_mesher/demo/Surface_mesher/qrc_*.c* -Surface_mesher/demo/Surface_mesher/qt5-demo Surface_mesher/demo/Surface_mesher/ui_*.h Surface_mesher/doxygen Surface_mesher/examples/Surface_mesher/.*.deps diff --git a/Documentation/doc/Documentation/Developer_manual/cmakelist_script.txt b/Documentation/doc/Documentation/Developer_manual/cmakelist_script.txt index 7b451bf81784..26c1f7c0ef4b 100644 --- a/Documentation/doc/Documentation/Developer_manual/cmakelist_script.txt +++ b/Documentation/doc/Documentation/Developer_manual/cmakelist_script.txt @@ -23,7 +23,7 @@ If the parameter is not given, the script creates one executable for each giv source file.
`-c com1:com2:...`
Lists components ("com1", "com2") of \cgal to which the executable(s) should be linked. Valid components are \cgal's -libraries (i.e.\ "Core", "ImageIO", and "Qt5"). An example is `-c Core`. +libraries (i.e.\ "Core", "ImageIO", and "Qt6"). An example is `-c Core`.
`-b boost1:boost2:...`
Lists components ("boost1", "boost2") of \boost to which the executable(s) should be diff --git a/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt b/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt index 14eb07f8d8f0..d55f4c0819ba 100644 --- a/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt +++ b/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt @@ -25,8 +25,8 @@ the section \subpage thirdparty. - `-frounding-math` with gcc - `/fp:strict /fp:except-` with MSVC -\section secexample Minimal Example Using Qt5 -This section describes a minimal example of a program that uses \cgal and Qt5 for some GUI features. +\section secexample Minimal Example Using Qt6 +This section describes a minimal example of a program that uses \cgal and Qt6 for some GUI features. \subsection subcmake CMakeLists.txt \dontinclude Surface_mesh/CMakeLists.txt diff --git a/Documentation/doc/Documentation/Third_party.txt b/Documentation/doc/Documentation/Third_party.txt index 67533c1aef90..dda99763ac9d 100644 --- a/Documentation/doc/Documentation/Third_party.txt +++ b/Documentation/doc/Documentation/Third_party.txt @@ -102,8 +102,8 @@ version shipped with \cgal. The page \ref configurationvariables lists CMake and environment variables which can be used to specify the location of third-party software during configuration. -\subsection thirdpartyQt Qt5 -Version 5.9.0 or later +\subsection thirdpartyQt Qt6 +Version 6.4 or later Qt is a cross-platform application and UI framework. diff --git a/Documentation/doc/Documentation/Usage.txt b/Documentation/doc/Documentation/Usage.txt index 046f3d6da384..0cfdb9ba30ec 100644 --- a/Documentation/doc/Documentation/Usage.txt +++ b/Documentation/doc/Documentation/Usage.txt @@ -166,17 +166,17 @@ if no debugging is intended. Users should thus run: cd CGAL-\cgalReleaseNumber/examples/Triangulation_2 cmake -DCGAL_DIR=$HOME/CGAL-\cgalReleaseNumber -DCMAKE_BUILD_TYPE=Release . # we are here using a release tarball -The package Qt5 on brew is "keg-only", which means it is not "linked" with brew. -In order to link against Qt5, you need to run: +The package Qt6 on brew is "keg-only", which means it is not "linked" with brew. +In order to link against Qt6, you need to run: - brew link qt@5 + brew link qt@6 After that, you will have to specify the Qt6_DIR by hand to cmake, using something like -DQt6_DIR=/usr/local/opt/qt6/lib/cmake/Qt6 where `/usr/local/` is actually your current brew installation directory. Check this directory -to be sure where the Qt5 is placed on your machine. +to be sure where the Qt6 is placed on your machine. \subsection usage_configuring_cmake_gui Specifying Missing Dependencies diff --git a/Documentation/doc/Documentation/advanced/Configuration_variables.txt b/Documentation/doc/Documentation/advanced/Configuration_variables.txt index 7cedae4344ac..7c475f547766 100644 --- a/Documentation/doc/Documentation/advanced/Configuration_variables.txt +++ b/Documentation/doc/Documentation/advanced/Configuration_variables.txt @@ -85,7 +85,7 @@ and will serverly limit performances. | Variable | Description | Type | %Default Value | | :- | :- | :- | :- | | `CGAL_DIR` | Full-path to the binary directory where \cgal was configured |Either CMake or Environment | none | -| `Qt5_DIR` | Full-path to the Qt cmake directory |CMake| platform-dependent| +| `Qt6_DIR` | Full-path to the Qt cmake directory |CMake| platform-dependent| \subsection installation_variables_third_party Variables Providing Information About 3rd-Party Libraries @@ -178,11 +178,11 @@ Under Linux, the \gmpxx is also searched for, and you may specify the following -\subsection installation_qt5 Qt5 Library +\subsection installation_qt6 Qt6 Library -You must set the cmake or environment variable `Qt5_DIR` to point to the path +You must set the cmake or environment variable `Qt6_DIR` to point to the path to the directory containing the file `Qt6Config.cmake` created by your \qt6 installation. If you are -using the open source edition it should be `/qt-everywhere-opensource-src-/qtbase/lib/cmake/Qt5`. +using the open source edition it should be `/qt-everywhere-opensource-src-/qtbase/lib/cmake/Qt6`. \subsection installation_leda LEDA Library diff --git a/Documentation/doc/Documentation/windows.txt b/Documentation/doc/Documentation/windows.txt index 8b4674530077..0dd5839a8b3b 100644 --- a/Documentation/doc/Documentation/windows.txt +++ b/Documentation/doc/Documentation/windows.txt @@ -118,7 +118,7 @@ CMake variables and paths. Otherwise, you can also install it using `vcpkg`: Remember to specify `--triplet` or the related environment variable in case you target 64-bit applications. -As Qt5 is modular and as the \cgal examples and demos use only some of these modules +As Qt6 is modular and as the \cgal examples and demos use only some of these modules you can save download and compilation time by specifying an *installation option*: C:\dev\vcpkg> .\vcpkg.exe install cgal[qt] @@ -234,11 +234,10 @@ A typical `Qt` installation would consist of the following steps:
  • Download and install the Qt library for open source development package for your Visual Studio version at -https://www.qt.io/download -(here is the direct link to the offline installers).
  • -
  • Add the environment variable `QTDIR` pointing to the place you installed Qt, e.g., `C:\dev\Qt\Qt5.13.1`, +https://www.qt.io/download-open-source#source.
  • +
  • Add the environment variable `QTDIR` pointing to the place you installed Qt, e.g., `C:\dev\Qt\Qt6.13.1`, as this will help `cmake` to find Qt.
  • -
  • Add the bin directory of Qt, e.g. add `C:\dev\Qt\Qt5.13.1\msvcXXXX_YY\bin` to `PATH`, where `XXXX_YY` is something like `vc2017_64`. +
  • Add the bin directory of Qt, e.g. add `C:\dev\Qt\Qt6.13.1\msvcXXXX_YY\bin` to `PATH`, where `XXXX_YY` is something like `vc2017_64`. To avoid any conflict with another dll with the same name from another folder, add this path as the first in the list.
diff --git a/GraphicsView/TODO b/GraphicsView/TODO deleted file mode 100644 index ec7ea6d5649d..000000000000 --- a/GraphicsView/TODO +++ /dev/null @@ -1,11 +0,0 @@ -Les inputs se sont seulement un simple mousePressEvent (pour un circle, il faut cliquer deux fois) -Pour le cercle, ça serait bien d'avoir la possibilité d'entrée un cercle par centre/rayon, ou deux points diamétraux, ou trois points. -Bloquer l'input sur un truc // aux axes (avec shift) -S'inspirer de ipe, en général. - -Control: pour les navigations -Shift: pour // aux axes. - -Affichage du (x,y) par rapport à l'origine de l'objet en cours. - -Integrer src/CGALQt5 dans le build process de CGAL, avec CMake. diff --git a/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/Segment_voronoi_linf_2.cpp b/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/Segment_voronoi_linf_2.cpp index 7b67d31ad4a5..77d9e7c4dc00 100644 --- a/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/Segment_voronoi_linf_2.cpp +++ b/GraphicsView/demo/Segment_Delaunay_graph_Linf_2/Segment_voronoi_linf_2.cpp @@ -522,7 +522,7 @@ int main(int argc, char **argv) app.setOrganizationName("GeometryFactory"); app.setApplicationName("Segment Voronoi 2 demo"); - // Import resources from libCGAL (Qt5) + // Import resources from libCGAL (Qt6) CGAL_QT_INIT_RESOURCES; if (argc == 2) { diff --git a/GraphicsView/include/CGAL/export/Qt.h b/GraphicsView/include/CGAL/export/Qt.h index a1392b2610a2..a5b1c82fa197 100644 --- a/GraphicsView/include/CGAL/export/Qt.h +++ b/GraphicsView/include/CGAL/export/Qt.h @@ -16,9 +16,9 @@ #include #if ( defined(CGAL_BUILD_SHARED_LIBS) && ( ! defined(CGAL_HEADER_ONLY) ) ) \ - || defined(CGAL_USE_Qt5_RESOURCES) + || defined(CGAL_USE_Qt6_RESOURCES) -# if defined(CGAL_Qt6_EXPORTS) || defined(CGAL_USE_Qt5_RESOURCES) +# if defined(CGAL_Qt6_EXPORTS) || defined(CGAL_USE_Qt6_RESOURCES) // defined by CMake or in cpp files of the dll # define CGAL_QT_EXPORT CGAL_DLL_EXPORT diff --git a/Installation/LICENSE b/Installation/LICENSE index 1ba1accba3e1..dd6e40c93dcb 100644 --- a/Installation/LICENSE +++ b/Installation/LICENSE @@ -5,9 +5,8 @@ The CGAL software consists of several parts, each of which is licensed under an open source license. It is also possible to obtain commercial licenses from GeometryFactory (www.geometryfactory.com) for all or parts of CGAL. -The source code of the CGAL library can be found in the directories -"src/CGAL", "src/CGALQt", "src/CGALQt5" and "include/CGAL" (with the -exception of "include/CGAL/CORE", "include/CGAL/OpenNL"). +The source code of the CGAL library can be found in the directory +"include/CGAL" (with the exception of "include/CGAL/CORE", "include/CGAL/OpenNL"). It is specified in each file of the CGAL library which license applies to it. This is either the GNU General Public License or the GNU Lesser General Public License (as published by the Free Software @@ -26,9 +25,9 @@ Distributed along with CGAL (for the users' convenience), but not part of CGAL, are the following third-party libraries, available under their own licenses: -- CORE, in the directories "include/CGAL/CORE" and "src/CGAL_Core", is - licensed under the LGPL (see LICENSE.LGPL). -- ImageIO, in the directory "src/CGAL_ImageIO", is licensed under the LGPL +- CORE, in the directory "include/CGAL/CORE" is licensed under the LGPL + (see LICENSE.LGPL). +- ImageIO, in the directory "include/CGAL/ImageIO", is licensed under the LGPL (see LICENSE.LGPL). - OpenNL, in the directory "include/CGAL/OpenNL", is licensed under the LGPL (see LICENSE.LGPL). diff --git a/Installation/cmake/modules/CGAL_enable_end_of_configuration_hook.cmake b/Installation/cmake/modules/CGAL_enable_end_of_configuration_hook.cmake index a25a85fa50c4..4b6053671fc8 100644 --- a/Installation/cmake/modules/CGAL_enable_end_of_configuration_hook.cmake +++ b/Installation/cmake/modules/CGAL_enable_end_of_configuration_hook.cmake @@ -103,7 +103,7 @@ disable this ${type}.\n\ endif() endfunction() -function(CGAL_hook_fix_ctest_depending_on_Qt5) +function(CGAL_hook_fix_ctest_depending_on_Qt6) get_property(_targets DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY BUILDSYSTEM_TARGETS) foreach(_target ${_targets}) if(NOT TEST "compilation of ${_target}") @@ -120,7 +120,7 @@ function(CGAL_hooks_at_end_of_all_directories) CGAL_hook_check_targets() CGAL_hook_check_unused_cpp_files() if(BUILD_TESTING) - CGAL_hook_fix_ctest_depending_on_Qt5() + CGAL_hook_fix_ctest_depending_on_Qt6() endif() endfunction() diff --git a/Installation/cmake/modules/config/support/print_QT4_version.cpp b/Installation/cmake/modules/config/support/print_QT4_version.cpp deleted file mode 100644 index cd290f2f4e4a..000000000000 --- a/Installation/cmake/modules/config/support/print_QT4_version.cpp +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2008 GeometryFactory, Sophia Antipolis (France) -// -// This file is part of CGAL (www.cgal.org) -// -// $URL$ -// $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial - -// Tests if QT5 is available and prints its version string. - -#include -#include - -int main() -{ - std::cout << "version=" << QT_VERSION_STR << std::endl; - - return 0; -} diff --git a/Installation/include/CGAL/export/helpers.h b/Installation/include/CGAL/export/helpers.h index 4b384c71f4bc..3f5750902f80 100644 --- a/Installation/include/CGAL/export/helpers.h +++ b/Installation/include/CGAL/export/helpers.h @@ -12,7 +12,7 @@ #ifndef CGAL_EXPORT_HELPERS_H #define CGAL_EXPORT_HELPERS_H -#if defined(CGAL_HEADER_ONLY) && ! defined(CGAL_USE_Qt5_RESOURCES) +#if defined(CGAL_HEADER_ONLY) && ! defined(CGAL_USE_Qt6_RESOURCES) # define CGAL_DLL_IMPORT # define CGAL_DLL_EXPORT # define CGAL_DLL_LOCAL diff --git a/Installation/test/Installation/test_configuration_qt.cpp b/Installation/test/Installation/test_configuration_qt.cpp index 73206ca0b4fe..34436111e123 100644 --- a/Installation/test/Installation/test_configuration_qt.cpp +++ b/Installation/test/Installation/test_configuration_qt.cpp @@ -26,7 +26,7 @@ int main(int argc, char**) { std::istream_iterator end; Triangulation t; t.insert(begin, end); - if(argc == 3) // do not test Qt5 at runtime + if(argc == 3) // do not test Qt6 at runtime CGAL::draw(t); std::cout<<"OK."< > paths={pij, pkl}; - CGAL::draw(sm, paths); // Enable only if CGAL was compiled with Qt5 + CGAL::draw(sm, paths); // Enable only if CGAL was compiled with Qt6 #endif // CGAL_USE_BASIC_VIEWER */ for (int i=-4; i<=4; ++i) diff --git a/Testsuite/test/post_process_ctest_results.py b/Testsuite/test/post_process_ctest_results.py index 2ec152996977..6da4d7de21c1 100644 --- a/Testsuite/test/post_process_ctest_results.py +++ b/Testsuite/test/post_process_ctest_results.py @@ -48,7 +48,7 @@ elif name == "libCGAL_ImageIO": name="libCGALimageIO_shared" elif name == "libCGAL_Qt6": - name="libCGALQt5_shared" + name="libCGALQt6_shared" if name=="incomplete": is_writing=False is_ignored=False diff --git a/Three/doc/Three/Three.txt b/Three/doc/Three/Three.txt index b8987352aea0..593d7623b2f3 100644 --- a/Three/doc/Three/Three.txt +++ b/Three/doc/Three/Three.txt @@ -322,7 +322,7 @@ To create an external plugin, you must make a new Cmake project.\n project( Example_plugin ) -Configure CMake as you desire and fetch the right Qt5 packages : +Configure CMake as you desire and fetch the right Qt6 packages : # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) @@ -331,13 +331,13 @@ Configure CMake as you desire and fetch the right Qt5 packages : cmake_minimum_required(VERSION 3.1...3.23) #Find CGAL - find_package(CGAL COMPONENTS Qt5) + find_package(CGAL COMPONENTS Qt6) include( ${CGAL_USE_FILE} ) - # Find Qt5 itself - find_package(Qt5 + # Find Qt6 itself + find_package(Qt6 QUIET - COMPONENTS OpenGL Script Svg Xml - OPTIONAL_COMPONENTS ScriptTools) + COMPONENTS OpenGLWidgets Svg + OPTIONAL_COMPONENTS WebSockets) You will probably have to fetch the libraries exported by the Polyhedron_demo, like the Scene_items. @@ -370,15 +370,14 @@ Notice that an external plugin will not be automatically loaded in the Polyhedro cmake_minimum_required(VERSION 3.1...3.23) #Find CGAL - find_package(CGAL COMPONENTS Qt5) + find_package(CGAL COMPONENTS Qt6) include( ${CGAL_USE_FILE} ) - # Find Qt5 itself - find_package(Qt5 - QUIET - COMPONENTS OpenGL Script Svg Xml - OPTIONAL_COMPONENTS ScriptTools) + # Find Qt6 itself + find_package(Qt6 QUIET + COMPONENTS OpenGLWidgets Svg + OPTIONAL_COMPONENTS WebSockets) - if(Qt5_FOUND AND CGAL_FOUND) + if(Qt6_FOUND AND CGAL_FOUND) find_package(CGAL_polyhedron_demo) include( ${CGAL_POLYHEDRON_DEMO_USE_FILE} ) From 68f7646dcbca3066ec65a81fd22b371a3605b4e5 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 14 Sep 2023 17:02:49 +0200 Subject: [PATCH 65/85] remove stray CMake debug messages --- Polyhedron/demo/Polyhedron/CMakeLists.txt | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/CMakeLists.txt b/Polyhedron/demo/Polyhedron/CMakeLists.txt index 4aaa5a99984d..afcfd708dc06 100644 --- a/Polyhedron/demo/Polyhedron/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/CMakeLists.txt @@ -40,10 +40,6 @@ find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 ImageIO) set_package_properties(CGAL PROPERTIES TYPE REQUIRED) include(${CGAL_USE_FILE}) -if(CGAL_Qt6_FOUND) - message( STATUS "we found CGAL_Qt6") -endif() - # Find Qt6 itself find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Widgets Qml @@ -55,12 +51,7 @@ set_package_properties( PURPOSE "Enables the 3D Features, for GUI and visualization." DESCRIPTION "To find this package, it should be sufficient to fill the Qt6_DIR variable with: ///lib/cmake/Qt6") -if(NOT Qt6_FOUND) - message( STATUS "we did not find it") -endif() - if(Qt6_FOUND) - message( STATUS "we did find Qt6") add_definitions(-DQT_NO_KEYWORDS) add_definitions(-DSCENE_IMAGE_GL_BUFFERS_AVAILABLE) endif(Qt6_FOUND) @@ -128,17 +119,6 @@ set_package_properties( DESCRIPTION "A library for parallel programming." PURPOSE "Plugins such as Mesh_3, Bilateral smoothing, and WLOP are faster if TBB is linked.") - - -if(NOT CGAL_Qt6_FOUND) - message( STATUS "NOT CGAL_Qt6_FOUND") -endif() - -if(NOT Qt6_FOUND) - message( STATUS "NOT Qt6_FOUND") -endif() - - if(CGAL_Qt6_FOUND AND Qt6_FOUND) include(${CGAL_USE_FILE}) From 9bba3bd5fa57a8c8fb861fcd07b541e9238d97d5 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 14 Sep 2023 17:06:34 +0200 Subject: [PATCH 66/85] fix the list of used Qt6 components --- Documentation/doc/Documentation/Third_party.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/doc/Documentation/Third_party.txt b/Documentation/doc/Documentation/Third_party.txt index dda99763ac9d..1784cd7f88c5 100644 --- a/Documentation/doc/Documentation/Third_party.txt +++ b/Documentation/doc/Documentation/Third_party.txt @@ -112,9 +112,9 @@ It requires \qt6 installed on your system. In case \qt is not yet installed on your system, you can download it from `https://www.qt-project.org/`. -The exhaustive list of \qt5 components used in demos is: -`Core`, `Gui`, `Help`, `OpenGL`, `Script`, `ScriptTools`, `Svg`, `Widgets`, -`qcollectiongenerator` (with `sqlite` driver plugin), and `Xml`. +The exhaustive list of \qt6 components used in demos is: +`Core`, `Gui`, `Help`, `OpenGL`, `OpenGLWidgets`, `Qml`, `Svg`, `Widgets`, +`WebSockets`, `Network`, and `qcollectiongenerator` (with `sqlite` driver plugin). \subsection thirdpartyEigen Eigen Version 3.3.4 or later From b05e1e9e4604aa8663366f6f6aed416c215cce7e Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 14 Sep 2023 17:32:55 +0200 Subject: [PATCH 67/85] Remove UseCGAL.cmake and our old CMake macros `use_lib` and `use_component`. --- .../Arrangement_on_surface_2/CMakeLists.txt | 1 - .../Arrangement_on_surface_2/CMakeLists.txt | 3 - CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt | 2 - .../benchmark/Filtered_kernel/CMakeLists.txt | 6 +- GraphicsView/demo/Polygon/CMakeLists.txt | 1 - Installation/CHANGES.md | 1 + Installation/CMakeLists.txt | 3 - .../cmake/modules/CGALConfig_binary.cmake.in | 4 +- .../cmake/modules/CGALConfig_install.cmake.in | 3 +- Installation/cmake/modules/CGAL_Macros.cmake | 121 ------------------ Installation/cmake/modules/UseCGAL.cmake | 51 -------- Installation/lib/cmake/CGAL/CGALConfig.cmake | 4 +- Installation/test/Installation/CMakeLists.txt | 2 - .../Linear_cell_complex_2/CMakeLists.txt | 6 +- .../cmake/FindCGAL.cmake | 93 -------------- .../Linear_cell_complex_3/CMakeLists.txt | 4 +- Mesh_2/demo/Mesh_2/CMakeLists.txt | 6 +- Mesh_3/examples/Mesh_3/CMakeLists.txt | 3 +- .../CMakeLists.txt | 1 - Polyhedron/demo/Polyhedron/CMakeLists.txt | 10 +- .../Plugins/Surface_mesh/CMakeLists.txt | 2 - .../Plugins/Three_examples/CMakeLists.txt | 3 - .../Polyhedron/polyhedron_demo_macros.cmake | 2 +- Surface_mesh/benchmark/CMakeLists.txt | 6 +- Three/doc/Three/Three.txt | 2 - 25 files changed, 21 insertions(+), 319 deletions(-) delete mode 100644 Installation/cmake/modules/UseCGAL.cmake delete mode 100644 Linear_cell_complex/benchmark/Linear_cell_complex_2/cmake/FindCGAL.cmake diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt index 5e9bf30e1d7a..b1de5935340d 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt @@ -16,7 +16,6 @@ find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt6) find_package(Qt6 QUIET COMPONENTS Widgets) if (CGAL_Qt6_FOUND AND Qt6_FOUND) - include(${CGAL_USE_FILE}) add_compile_definitions(QT_NO_KEYWORDS) include_directories( BEFORE ./ ) diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/CMakeLists.txt b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/CMakeLists.txt index bd49b35a5ac5..f138fb0beb3e 100644 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/CMakeLists.txt +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/CMakeLists.txt @@ -8,7 +8,4 @@ enable_testing() find_package(CGAL REQUIRED COMPONENTS Core) -include (${CGAL_USE_FILE}) -# Since CMake-2.8.12: New CMake script, that defines the targets and -# the CTest test cases. include(${CMAKE_CURRENT_SOURCE_DIR}/cgal_test.cmake) diff --git a/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt b/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt index f017575dd855..98a5ab469f39 100644 --- a/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt +++ b/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt @@ -20,8 +20,6 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") find_package(CGAL REQUIRED COMPONENTS Core) -include(${CGAL_USE_FILE}) - find_package(Eigen3 3.1.0 QUIET) #(requires 3.1.0 or greater) include(CGAL_Eigen3_support) if(NOT TARGET CGAL::Eigen3_support) diff --git a/Filtered_kernel/benchmark/Filtered_kernel/CMakeLists.txt b/Filtered_kernel/benchmark/Filtered_kernel/CMakeLists.txt index b894f7392295..b240de403f81 100644 --- a/Filtered_kernel/benchmark/Filtered_kernel/CMakeLists.txt +++ b/Filtered_kernel/benchmark/Filtered_kernel/CMakeLists.txt @@ -9,12 +9,10 @@ add_executable(bench_simple_comparisons bench_simple_comparisons.cpp) find_package(CGAL REQUIRED COMPONENTS Core) add_executable(bench_orientation_3 "orientation_3.cpp") -target_link_libraries(bench_orientation_3 ${CGAL_LIBRARIES} - ${CGAL_3RD_PARTY_LIBRARIES}) +target_link_libraries(bench_orientation_3 CGAL::CGAL_Core) add_executable(bench_comparisons "orientation_3.cpp") -target_link_libraries(bench_comparisons ${CGAL_LIBRARIES} - ${CGAL_3RD_PARTY_LIBRARIES}) +target_link_libraries(bench_comparisons CGAL::CGAL_Core) set_property( TARGET bench_comparisons APPEND diff --git a/GraphicsView/demo/Polygon/CMakeLists.txt b/GraphicsView/demo/Polygon/CMakeLists.txt index 303b381e038f..ee30af0275eb 100644 --- a/GraphicsView/demo/Polygon/CMakeLists.txt +++ b/GraphicsView/demo/Polygon/CMakeLists.txt @@ -16,7 +16,6 @@ endif() find_package(Qt6 QUIET COMPONENTS Widgets) if(CGAL_Qt6_FOUND AND Qt6_FOUND) - include(${CGAL_USE_FILE}) add_definitions(-DQT_NO_KEYWORDS) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) diff --git a/Installation/CHANGES.md b/Installation/CHANGES.md index eb1e09caa197..a0202f39624f 100644 --- a/Installation/CHANGES.md +++ b/Installation/CHANGES.md @@ -14,6 +14,7 @@ Release date: October 2023 - **Breaking change**: The usage of `boost::shared_ptr` has been replaced by `std::shared_ptr`. Packages affected are 2D Straight Line Skeleton and Shape Detection. - **Breaking change**: The usage of `boost::optional` has been replaced by `std::optional`. Packages affected are 2D Straight Line Skeleton, 3D Fast Intersection and Distance Computation (AABB Tree), and the Kernel intersection. - **Breaking change**: The usage of `boost::variant` has been replaced by `std::variant`. Packages affected are 2D Arrangements, and the Kernel intersection. +- **Breaking chahge**: The file CMake file `UseCGAL.cmake` has been removed from CGAL. Usages of the CMake variables `${CGAL_USE_FILE}` and `${CGAL_LIBRARIES}` must be replaced by a link to the imported target `CGAL::CGAL`, for example: `target_link_library(the_target PRIVATE CGAL::CGAL)`. #### 2D Arrangements diff --git a/Installation/CMakeLists.txt b/Installation/CMakeLists.txt index d773903a310a..d9a0eecee3cc 100644 --- a/Installation/CMakeLists.txt +++ b/Installation/CMakeLists.txt @@ -656,7 +656,6 @@ endif() # # Variables used when WITH_{demos|examples|tests} are TRUE # -set(CGAL_USE_FILE ${CGAL_MODULES_DIR}/UseCGAL.cmake) get_property(CGAL_FOUND GLOBAL PROPERTY CGAL_FOUND) get_property(CGAL_Core_FOUND GLOBAL PROPERTY CGAL_Core_FOUND) get_property(CGAL_ImageIO_FOUND GLOBAL PROPERTY CGAL_ImageIO_FOUND) @@ -755,8 +754,6 @@ install(PROGRAMS ${scripts} DESTINATION ${CGAL_INSTALL_BIN_DIR}) install(DIRECTORY ${CGAL_MODULES_REL_DIR}/ DESTINATION ${CGAL_INSTALL_CMAKE_DIR}) -install(FILES ${CGAL_MODULES_REL_DIR}/UseCGAL.cmake - DESTINATION ${CGAL_INSTALL_CMAKE_DIR}) if(IS_DIRECTORY auxiliary/gmp/include AND IS_DIRECTORY auxiliary/gmp/lib) install(DIRECTORY auxiliary/gmp/include/ DESTINATION ${CGAL_INSTALL_INC_DIR}) diff --git a/Installation/cmake/modules/CGALConfig_binary.cmake.in b/Installation/cmake/modules/CGALConfig_binary.cmake.in index 7987a2bbd1f3..eaab3c7f7f7a 100644 --- a/Installation/cmake/modules/CGALConfig_binary.cmake.in +++ b/Installation/cmake/modules/CGALConfig_binary.cmake.in @@ -93,8 +93,6 @@ set(CGAL_ImageIO_USE_ZLIB "@CGAL_ImageIO_USE_ZLIB@" ) set(CGAL_VERSION "${CGAL_MAJOR_VERSION}.${CGAL_MINOR_VERSION}.${CGAL_BUGFIX_VERSION}") -set(CGAL_USE_FILE "${CGAL_MODULES_DIR}/UseCGAL.cmake" ) - if ( CGAL_FIND_REQUIRED ) set( CHECK_CGAL_COMPONENT_MSG_ON_ERROR TRUE ) set( CHECK_CGAL_COMPONENT_ERROR_TYPE FATAL_ERROR ) @@ -169,7 +167,7 @@ foreach( CGAL_COMPONENT ${CGAL_FIND_COMPONENTS} ) endforeach() # Starting with cmake 2.6.3, CGAL_FIND_COMPONENTS is cleared out when find_package returns. -# But we need it within UseCGAL.cmake, so we save it aside into another variable +# But we need it within CGAL_CreateSingleSourceCGALProgram.cmake, so we save it aside into another variable set( CGAL_REQUESTED_COMPONENTS ${CGAL_FIND_COMPONENTS} ) # for preconfigured libs diff --git a/Installation/cmake/modules/CGALConfig_install.cmake.in b/Installation/cmake/modules/CGALConfig_install.cmake.in index 9ee7c0ba8803..eac955bb91c0 100644 --- a/Installation/cmake/modules/CGALConfig_install.cmake.in +++ b/Installation/cmake/modules/CGALConfig_install.cmake.in @@ -54,7 +54,6 @@ set(CGAL_ImageIO_USE_ZLIB "@CGAL_ImageIO_USE_ZLIB@" ) set(CGAL_VERSION "${CGAL_MAJOR_VERSION}.${CGAL_MINOR_VERSION}.${CGAL_BUGFIX_VERSION}") -set(CGAL_USE_FILE "${CGAL_MODULES_DIR}/UseCGAL.cmake" ) set(CGAL_GRAPHICSVIEW_PACKAGE_DIR "${CGAL_INSTALL_PREFIX}" CACHE INTERNAL "Directory containing the GraphicsView package") if ( CGAL_FIND_REQUIRED ) @@ -153,7 +152,7 @@ foreach( CGAL_COMPONENT ${CGAL_FIND_COMPONENTS} ) endforeach() # Starting with cmake 2.6.3, CGAL_FIND_COMPONENTS is cleared out when find_package returns. -# But we need it within UseCGAL.cmake, so we save it aside into another variable +# But we need it within CGAL_CreateSingleSourceCGALProgram.cmake, so we save it aside into another variable set( CGAL_REQUESTED_COMPONENTS ${CGAL_FIND_COMPONENTS} ) # for preconfigured libs diff --git a/Installation/cmake/modules/CGAL_Macros.cmake b/Installation/cmake/modules/CGAL_Macros.cmake index 2cc35fdc572e..3636673f55eb 100644 --- a/Installation/cmake/modules/CGAL_Macros.cmake +++ b/Installation/cmake/modules/CGAL_Macros.cmake @@ -211,127 +211,6 @@ if( NOT CGAL_MACROS_FILE_INCLUDED ) endmacro() - macro( use_lib ) - - set (lib "${ARGV0}") - - set (vlib ${CGAL_EXT_LIB_${lib}_PREFIX} ) - - if ( ${vlib}_FOUND AND (NOT TARGET CGAL OR WITH_${lib})) - - if ( NOT ${vlib}_SETUP ) # avoid double usage - - if ( "${ARGC}" EQUAL "2" ) - - set (usefile "${ARGV1}") - - include( ${usefile} ) - message (STATUS "Configured ${lib} from UseLIB-file: ${usefile}") - - # UseLIB-file has to set ${vlib}_SETUP to TRUE - # TODO EBEB what about Qt6, zlib? - - else() - - ####message( STATUS "${lib} include: ${${vlib}_INCLUDE_DIR}" ) - include_directories ( SYSTEM ${${vlib}_INCLUDE_DIR} ) - - # TODO EBEB remove definitions? - ####message( STATUS "${lib} definitions: ${${vlib}_DEFINITIONS}" ) - add_definitions( ${${vlib}_DEFINITIONS} "-DCGAL_USE_${vlib}" ) - - if ( ${vlib}_LIBRARIES ) - ####message( STATUS "${lib} libraries: ${${vlib}_LIBRARIES}" ) - link_libraries( ${${vlib}_LIBRARIES} ) - endif() - - ####message (STATUS "Configured ${lib} in standard way") - - set( ${vlib}_SETUP TRUE ) - - endif() - - endif() - - if (NOT ${vlib}_SETUP ) - - message( WARNING "${vlib} has not been set up" ) - - endif() - - else() - - if ( WITH_${lib} ) - message( SEND_ERROR "Try to use ${lib} that is not found") - endif() - - endif() - - endmacro() - - - macro( use_component component) - - message (STATUS "Requested component: ${component}") - - if(WITH_CGAL_${component}) - if(TARGET CGAL::CGAL_${component}) - add_to_list( CGAL_LIBRARIES CGAL::CGAL_${component} ) - elseif(TARGET CGAL_${component}) - add_to_list( CGAL_LIBRARIES CGAL_${component} ) - else() - add_to_list( CGAL_LIBRARIES ${CGAL_${component}_LIBRARY} ) - endif() - add_to_list( CGAL_3RD_PARTY_LIBRARIES ${CGAL_${component}_3RD_PARTY_LIBRARIES} ) - - add_to_list( CGAL_3RD_PARTY_INCLUDE_DIRS ${CGAL_${component}_3RD_PARTY_INCLUDE_DIRS} ) - add_to_list( CGAL_3RD_PARTY_DEFINITIONS ${CGAL_${component}_3RD_PARTY_DEFINITIONS} ) - add_to_list( CGAL_3RD_PARTY_LIBRARIES_DIRS ${CGAL_${component}_3RD_PARTY_LIBRARIES_DIRS} ) - - # To deal with imported targets of Qt6 and Boost, when CGAL - # targets are themselves imported by another project. - - if (${component} STREQUAL "Qt6") - find_package(Qt6 COMPONENTS Widgets OpenGLWidgets Gui Core Script ScriptTools QUIET) - endif() - - else(WITH_CGAL_${component}) - - # now we are talking about 3rd party libs - list( FIND CGAL_CONFIGURED_LIBRARIES "CGAL_${component}" POSITION ) - if ( "${POSITION}" EQUAL "-1" ) # if component is not a CGAL_ - - if (NOT DEFINED CGAL_EXT_LIB_${component}_PREFIX) - set(CGAL_EXT_LIB_${component}_PREFIX ${component}) - endif() - - set( vlib "${CGAL_EXT_LIB_${component}_PREFIX}" ) - - if (${vlib}_FOUND) - - use_lib( ${component} ${${vlib}_USE_FILE}) - - else() - - ####message( STATUS "External library ${vlib} after find") - if (${vlib}_FOUND) - ####message( STATUS "External library ${vlib} about to be used") - use_lib( ${component} ${${vlib}_USE_FILE}) - endif() - - endif() - else() - - if (NOT WITH_CGAL_${component}) - message(STATUS "NOTICE: The CGAL_${component} library seems to be required but is not build. Thus, it is expected that some executables will not be compiled.") - endif() - - endif() - - endif(WITH_CGAL_${component}) - - endmacro() - function( cgal_setup_module_path ) # Avoid to modify the modules path twice if(NOT CGAL_MODULE_PATH_IS_SET) diff --git a/Installation/cmake/modules/UseCGAL.cmake b/Installation/cmake/modules/UseCGAL.cmake deleted file mode 100644 index 43449b85e512..000000000000 --- a/Installation/cmake/modules/UseCGAL.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# -# UseCGAL.cmake can be included in a project to set the needed compiler and linker -# settings to use CGAL in a program. -# -# The variables used here are defined in the CGALConfig.cmake generated when CGAL was installed. -# -# -include(${CGAL_MODULES_DIR}/CGAL_Macros.cmake) - -cgal_setup_module_path() - -if(NOT USE_CGAL_FILE_INCLUDED) - set(USE_CGAL_FILE_INCLUDED 1) - - include(${CMAKE_CURRENT_LIST_DIR}/CGAL_Common.cmake) - if( CGAL_DEV_MODE OR RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE ) - include(${CMAKE_CURRENT_LIST_DIR}/CGAL_SetupFlags.cmake) - else() - include(${CMAKE_CURRENT_LIST_DIR}/CGAL_display_flags.cmake) - endif() - include(${CMAKE_CURRENT_LIST_DIR}/CGAL_GeneratorSpecificSettings.cmake) - include(${CMAKE_CURRENT_LIST_DIR}/CGAL_TweakFindBoost.cmake) - - set( CGAL_LIBRARIES ) - - foreach ( component ${CGAL_REQUESTED_COMPONENTS} ) - use_component( ${component} ) - endforeach() - - include_directories( "${CMAKE_CURRENT_BINARY_DIR}" ) - - if(TARGET CGAL::CGAL) - add_to_list( CGAL_LIBRARIES CGAL::CGAL ) - elseif(TARGET CGAL) - add_to_list( CGAL_LIBRARIES CGAL ) - else() - add_to_list( CGAL_LIBRARIES ${CGAL_LIBRARY} ) - endif() - - #message (STATUS "LIB: ${CGAL_LIBRARY}") - #message (STATUS "LIBS: ${CGAL_LIBRARIES}") - - include_directories ( ${CGAL_INCLUDE_DIRS}) - include_directories ( SYSTEM ${CGAL_3RD_PARTY_INCLUDE_DIRS} ) - add_definitions ( ${CGAL_3RD_PARTY_DEFINITIONS} ${CGAL_DEFINITIONS} ) - - if(NOT CGAL_NO_BLANKET_LINKING) - link_directories ( ${CGAL_3RD_PARTY_LIBRARIES_DIRS} ) - link_libraries ( ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES} ) - endif() -endif() diff --git a/Installation/lib/cmake/CGAL/CGALConfig.cmake b/Installation/lib/cmake/CGAL/CGALConfig.cmake index abd23a6e7fe0..7b3f2c419cb4 100644 --- a/Installation/lib/cmake/CGAL/CGALConfig.cmake +++ b/Installation/lib/cmake/CGAL/CGALConfig.cmake @@ -2,7 +2,7 @@ # This file is the CGALConfig.cmake for a header-only CGAL installation # -# For UseCGAL.cmake +# For CGAL_CreateSingleSourceCGALProgram.cmake set( CGAL_REQUESTED_COMPONENTS ${CGAL_FIND_COMPONENTS} ) set(CGAL_LIBRARIES CGAL) @@ -113,8 +113,6 @@ include(${CGAL_MODULES_DIR}/CGAL_Common.cmake) include(${CGAL_MODULES_DIR}/CGAL_TweakFindBoost.cmake) include(${CGAL_MODULES_DIR}/CGAL_enable_end_of_configuration_hook.cmake) -set(CGAL_USE_FILE ${CGAL_MODULES_DIR}/UseCGAL.cmake) - include(${CGAL_CONFIG_DIR}/CGALConfigVersion.cmake) # Temporary? Change the CMAKE module path diff --git a/Installation/test/Installation/CMakeLists.txt b/Installation/test/Installation/CMakeLists.txt index c057119bbd3c..5a22a7c42333 100644 --- a/Installation/test/Installation/CMakeLists.txt +++ b/Installation/test/Installation/CMakeLists.txt @@ -32,8 +32,6 @@ endmacro() find_package(CGAL REQUIRED COMPONENTS Core) -include(${CGAL_USE_FILE}) - include(CGAL_CreateSingleSourceCGALProgram) create_single_source_cgal_program("endian.cpp") diff --git a/Linear_cell_complex/benchmark/Linear_cell_complex_2/CMakeLists.txt b/Linear_cell_complex/benchmark/Linear_cell_complex_2/CMakeLists.txt index c63decf81000..cfa7f45bb92c 100644 --- a/Linear_cell_complex/benchmark/Linear_cell_complex_2/CMakeLists.txt +++ b/Linear_cell_complex/benchmark/Linear_cell_complex_2/CMakeLists.txt @@ -26,12 +26,12 @@ link_directories(${OPENMESH_LIBRARY_DIR}) # Polyhedron add_executable(polyhedron_performance performance_2.h polyhedron_performance.h polyhedron_performance.cpp) -target_link_libraries(polyhedron_performance ${CGAL_LIBRARIES}) +target_link_libraries(polyhedron_performance CGAL::CGAL) # LCC_2 add_executable(lcc_performance_2 performance_2.h lcc_performance_2.h lcc_performance_2.cpp) -target_link_libraries(lcc_performance_2 ${CGAL_LIBRARIES}) +target_link_libraries(lcc_performance_2 CGAL::CGAL) # Surface_mesh add_executable( @@ -80,7 +80,7 @@ add_executable( target_link_libraries( performance_2 - ${CGAL_LIBRARIES} + CGAL::CGAL surface_mesh algo assimp diff --git a/Linear_cell_complex/benchmark/Linear_cell_complex_2/cmake/FindCGAL.cmake b/Linear_cell_complex/benchmark/Linear_cell_complex_2/cmake/FindCGAL.cmake deleted file mode 100644 index a4b0902e60d4..000000000000 --- a/Linear_cell_complex/benchmark/Linear_cell_complex_2/cmake/FindCGAL.cmake +++ /dev/null @@ -1,93 +0,0 @@ -# -# The following module is based on FindVTK.cmake -# - -# - Find a CGAL installation or binary tree. -# The following variables are set if CGAL is found. If CGAL is not -# found, CGAL_FOUND is set to false. -# -# CGAL_FOUND - Set to true when CGAL is found. -# CGAL_USE_FILE - CMake file to use CGAL. -# - -# Construct consistent error messages for use below. -set(CGAL_DIR_DESCRIPTION "directory containing CGALConfig.cmake. This is either the binary directory where CGAL was configured or PREFIX/lib/CGAL for an installation.") -set(CGAL_DIR_MESSAGE "CGAL not found. Set the CGAL_DIR cmake variable or environment variable to the ${CGAL_DIR_DESCRIPTION}") - -if ( NOT CGAL_DIR ) - - # Get the system search path as a list. - if(UNIX) - string(REGEX MATCHALL "[^:]+" CGAL_DIR_SEARCH1 "$ENV{PATH}") - else() - string(REGEX REPLACE "\\\\" "/" CGAL_DIR_SEARCH1 "$ENV{PATH}") - endif() - - string(REGEX REPLACE "/;" ";" CGAL_DIR_SEARCH2 "${CGAL_DIR_SEARCH1}") - - # Construct a set of paths relative to the system search path. - set(CGAL_DIR_SEARCH "") - - foreach(dir ${CGAL_DIR_SEARCH2}) - - set(CGAL_DIR_SEARCH ${CGAL_DIR_SEARCH} ${dir}/../lib/CGAL ) - - endforeach() - - - # - # Look for an installation or build tree. - # - find_path(CGAL_DIR CGALConfig.cmake - - # Look for an environment variable CGAL_DIR. - $ENV{CGAL_DIR} - - # Look in places relative to the system executable search path. - ${CGAL_DIR_SEARCH} - - # Look in standard UNIX install locations. - /usr/local/lib/CGAL - /usr/lib/CGAL - - # Read from the CMakeSetup registry entries. It is likely that - # CGAL will have been recently built. - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild1] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild2] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild3] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild4] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild5] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild6] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild7] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild8] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild9] - [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild10] - - # Help the user find it if we cannot. - DOC "The ${CGAL_DIR_DESCRIPTION}" - ) - -endif() - -if ( CGAL_DIR ) - - if ( EXISTS "${CGAL_DIR}/CGALConfig.cmake" ) - include( "${CGAL_DIR}/CGALConfig.cmake" ) - set( CGAL_FOUND TRUE ) - endif() - -endif() - -if( NOT CGAL_FOUND) - if(CGAL_FIND_REQUIRED) - MESSAGE(FATAL_ERROR ${CGAL_DIR_MESSAGE}) - else() - if(NOT CGAL_FIND_QUIETLY) - MESSAGE(STATUS ${CGAL_DIR_MESSAGE}) - endif() - endif() -endif() - -if(CGAL_FOUND) - message(STATUS "Found CGAL.") -endif() diff --git a/Linear_cell_complex/benchmark/Linear_cell_complex_3/CMakeLists.txt b/Linear_cell_complex/benchmark/Linear_cell_complex_3/CMakeLists.txt index 4b65e2ee3c5e..5502fe39111c 100644 --- a/Linear_cell_complex/benchmark/Linear_cell_complex_3/CMakeLists.txt +++ b/Linear_cell_complex/benchmark/Linear_cell_complex_3/CMakeLists.txt @@ -33,7 +33,7 @@ target_link_libraries( OpenVolumeMesh boost_timer boost_system - ${CGAL_LIBRARIES} + CGAL::CGAL algo assimp container @@ -65,7 +65,7 @@ target_link_libraries( # LCC_3 add_executable(lcc_performance_3 performance_3.h lcc_performance_3.h lcc_performance_3.cpp) -target_link_libraries(lcc_performance_3 ${CGAL_LIBRARIES} +target_link_libraries(lcc_performance_3 CGAL::CGAL ${MAP_VIEWER_LIBRARIES}) # OpenVolumeMesh diff --git a/Mesh_2/demo/Mesh_2/CMakeLists.txt b/Mesh_2/demo/Mesh_2/CMakeLists.txt index 5087c477a12d..74c8b7f2d86a 100644 --- a/Mesh_2/demo/Mesh_2/CMakeLists.txt +++ b/Mesh_2/demo/Mesh_2/CMakeLists.txt @@ -6,16 +6,14 @@ project(Mesh_2_Demo) find_package(CGAL REQUIRED) -include(${CGAL_USE_FILE}) - # conform target add_executable(conform conform.cpp) -target_link_libraries(conform ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES}) +target_link_libraries(conform CGAL::CGAL) add_to_cached_list(CGAL_EXECUTABLE_TARGETS conform) # mesh target add_executable(mesh mesh.cpp) -target_link_libraries(mesh ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES}) +target_link_libraries(mesh CGAL::CGAL) add_to_cached_list(CGAL_EXECUTABLE_TARGETS mesh) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) diff --git a/Mesh_3/examples/Mesh_3/CMakeLists.txt b/Mesh_3/examples/Mesh_3/CMakeLists.txt index 0b59088e04a2..16e7bcd755de 100644 --- a/Mesh_3/examples/Mesh_3/CMakeLists.txt +++ b/Mesh_3/examples/Mesh_3/CMakeLists.txt @@ -124,8 +124,7 @@ if(TARGET CGAL::CGAL_ImageIO) add_executable(mesh_3D_gray_vtk_image mesh_3D_gray_vtk_image.cpp) target_link_libraries( mesh_3D_gray_vtk_image - PUBLIC CGAL::Eigen3_support CGAL::CGAL CGAL::CGAL_ImageIO - ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES} ${VTK_LIBRARIES}) + PUBLIC CGAL::Eigen3_support CGAL::CGAL CGAL::CGAL_ImageIO ${VTK_LIBRARIES}) cgal_add_test(mesh_3D_gray_vtk_image) add_to_cached_list(CGAL_EXECUTABLE_TARGETS mesh_3D_gray_vtk_image) endif() diff --git a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt index 3b838ba2c829..ee592422710c 100644 --- a/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt +++ b/Periodic_4_hyperbolic_triangulation_2/demo/Periodic_4_hyperbolic_triangulation_2/CMakeLists.txt @@ -9,7 +9,6 @@ include_directories(${CMAKE_BINARY_DIR}) set(CMAKE_AUTOMOC ON) find_package(CGAL REQUIRED COMPONENTS Core Qt6) -include(${CGAL_USE_FILE}) find_package(LEDA QUIET) diff --git a/Polyhedron/demo/Polyhedron/CMakeLists.txt b/Polyhedron/demo/Polyhedron/CMakeLists.txt index afcfd708dc06..28bf9132603b 100644 --- a/Polyhedron/demo/Polyhedron/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/CMakeLists.txt @@ -38,7 +38,6 @@ option(POLYHEDRON_QTSCRIPT_DEBUGGER # Find CGAL find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6 ImageIO) set_package_properties(CGAL PROPERTIES TYPE REQUIRED) -include(${CGAL_USE_FILE}) # Find Qt6 itself find_package(Qt6 QUIET @@ -120,8 +119,6 @@ set_package_properties( PURPOSE "Plugins such as Mesh_3, Bilateral smoothing, and WLOP are faster if TBB is linked.") if(CGAL_Qt6_FOUND AND Qt6_FOUND) - include(${CGAL_USE_FILE}) - qt6_wrap_ui(MainWindowUI_files MainWindow.ui) qt6_wrap_ui(SubViewerUI_files SubViewer.ui) qt6_wrap_ui(statisticsUI_FILES Statistics_on_item_dialog.ui) @@ -209,7 +206,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_library(scene_basic_objects SHARED Scene_plane_item.cpp Scene_spheres_item.cpp) target_link_libraries( - scene_basic_objects PUBLIC demo_framework ${CGAL_LIBRARIES} Qt6::OpenGLWidgets + scene_basic_objects PUBLIC demo_framework CGAL::CGAL_Qt6 Qt6::OpenGLWidgets Qt6::Gui Qt6::Widgets) add_library(scene_color_ramp SHARED Color_ramp.cpp) target_link_libraries(scene_color_ramp PRIVATE Qt6::Core) @@ -225,7 +222,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) macro(add_item item_name) add_library(${item_name} SHARED ${ARGN}) target_link_libraries( - ${item_name} PUBLIC demo_framework ${CGAL_LIBRARIES} Qt6::OpenGLWidgets Qt6::Gui + ${item_name} PUBLIC demo_framework CGAL::CGAL_Qt6 Qt6::OpenGLWidgets Qt6::Gui Qt6::Widgets) add_to_cached_list(CGAL_EXECUTABLE_TARGETS ${item_name}) endmacro(add_item) @@ -376,8 +373,7 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) target_link_libraries(Polyhedron_3 PRIVATE demo_framework) # Link with CGAL - target_link_libraries(Polyhedron_3 PUBLIC ${CGAL_LIBRARIES} - ${CGAL_3RD_PARTY_LIBRARIES}) + target_link_libraries(Polyhedron_3 PUBLIC CGAL::CGAL_Qt6) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Polyhedron_3) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/CMakeLists.txt index e1b75611bac6..0af285ce58fb 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/CMakeLists.txt @@ -7,8 +7,6 @@ if(NOT CGAL_DISABLE_GMP) if(TARGET CGAL::Eigen3_support) find_package(CGAL REQUIRED COMPONENTS Core) - include(${CGAL_USE_FILE}) - qt6_wrap_ui(parameterizationUI_FILES Parameterization_widget.ui OTE_dialog.ui) polyhedron_demo_plugin(parameterization_plugin Parameterization_plugin ${parameterizationUI_FILES}) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/CMakeLists.txt index 9761cea5fd5f..23f8d5f89994 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/CMakeLists.txt @@ -17,9 +17,6 @@ find_package(Qt6 QUIET OPTIONAL_COMPONENTS WebSockets) if(RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE) - if(Qt6_FOUND) - include(${CGAL_USE_FILE}) - endif() polyhedron_demo_plugin(example_plugin Example_plugin) qt6_wrap_ui(basicUI_FILES Basic_dialog.ui) diff --git a/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake b/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake index f4129a57c9fc..6bdda967ab8b 100644 --- a/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake +++ b/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake @@ -60,7 +60,7 @@ include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) set_property(TEST "compilation of ${plugin_name}" APPEND PROPERTY FIXTURES_REQUIRED demo_framework_SetupFixture) endif() # Link with CGAL - target_link_libraries( ${plugin_name} PUBLIC ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES} ) + target_link_libraries( ${plugin_name} PUBLIC CGAL::CGAL ) if(TARGET Polyhedron_3) add_dependencies( ${plugin_name} Polyhedron_3 ) endif() diff --git a/Surface_mesh/benchmark/CMakeLists.txt b/Surface_mesh/benchmark/CMakeLists.txt index 33ae6c845694..818e8cb6b9d3 100644 --- a/Surface_mesh/benchmark/CMakeLists.txt +++ b/Surface_mesh/benchmark/CMakeLists.txt @@ -12,12 +12,12 @@ add_definitions("-std=c++1y") # Polyhedron add_executable(polyhedron_performance performance_2.h polyhedron_performance.h polyhedron_performance.cpp) -target_link_libraries(polyhedron_performance PRIVATE ${CGAL_LIBRARIES}) +target_link_libraries(polyhedron_performance PRIVATE CGAL::CGAL) # LCC_2 add_executable(lcc_performance_2 performance_2.h lcc_performance_2.h lcc_performance_2.cpp) -target_link_libraries(lcc_performance_2 PRIVATE ${CGAL_LIBRARIES}) +target_link_libraries(lcc_performance_2 PRIVATE CGAL::CGAL) # Surface_mesh add_executable( @@ -29,7 +29,7 @@ add_executable( performance_2 performance_2.cpp performance_2.h polyhedron_performance.h surface_mesh_performance.h lcc_performance_2.h) -target_link_libraries(performance_2 PRIVATE ${CGAL_LIBRARIES}) +target_link_libraries(performance_2 PRIVATE CGAL::CGAL) create_single_source_cgal_program("sm_sms.cpp") create_single_source_cgal_program("poly_sms.cpp") diff --git a/Three/doc/Three/Three.txt b/Three/doc/Three/Three.txt index 593d7623b2f3..2afe5f4d27ca 100644 --- a/Three/doc/Three/Three.txt +++ b/Three/doc/Three/Three.txt @@ -332,7 +332,6 @@ Configure CMake as you desire and fetch the right Qt6 packages : #Find CGAL find_package(CGAL COMPONENTS Qt6) - include( ${CGAL_USE_FILE} ) # Find Qt6 itself find_package(Qt6 QUIET @@ -371,7 +370,6 @@ Notice that an external plugin will not be automatically loaded in the Polyhedro #Find CGAL find_package(CGAL COMPONENTS Qt6) - include( ${CGAL_USE_FILE} ) # Find Qt6 itself find_package(Qt6 QUIET COMPONENTS OpenGLWidgets Svg From 40a7f324d3487876bf647737101835717b4a5407 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 15 Sep 2023 11:27:43 +0200 Subject: [PATCH 68/85] fix a compilation error The generated `ui_Deform_mesh.h` was not is in the right directory. I have moved the definition of the item in the plugin directory. --- Polyhedron/demo/Polyhedron/CMakeLists.txt | 7 ------- .../Plugins/Surface_mesh_deformation/CMakeLists.txt | 8 ++++++++ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/CMakeLists.txt b/Polyhedron/demo/Polyhedron/CMakeLists.txt index 28bf9132603b..d2d45f83c7b4 100644 --- a/Polyhedron/demo/Polyhedron/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/CMakeLists.txt @@ -295,13 +295,6 @@ if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_item(scene_textured_item Scene_textured_surface_mesh_item.cpp texture.cpp) target_link_libraries(scene_textured_item PUBLIC CGAL::Eigen3_support) - qt6_wrap_ui(editionUI_FILES Plugins/Surface_mesh_deformation/Deform_mesh.ui) - add_item(scene_edit_item - Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.cpp - ${editionUI_FILES}) - target_link_libraries( - scene_edit_item PUBLIC CGAL::Eigen3_support scene_surface_mesh_item - scene_k_ring_selection scene_basic_objects) add_item(scene_mcf_item Plugins/PMP/Scene_mcf_item.cpp) target_link_libraries(scene_mcf_item PUBLIC CGAL::Eigen3_support) endif() diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/CMakeLists.txt b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/CMakeLists.txt index ce9c7e682094..36cbea480cd9 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/CMakeLists.txt @@ -2,6 +2,14 @@ include(polyhedron_demo_macros) if(TARGET CGAL::Eigen3_support AND "${EIGEN3_VERSION}" VERSION_GREATER "3.1.90") + qt6_wrap_ui(editionUI_FILES Deform_mesh.ui) + add_item(scene_edit_item + Scene_edit_polyhedron_item.cpp + ${editionUI_FILES}) + target_link_libraries( + scene_edit_item PUBLIC CGAL::Eigen3_support scene_surface_mesh_item + scene_k_ring_selection scene_basic_objects) + polyhedron_demo_plugin(edit_plugin Edit_polyhedron_plugin Deform_mesh.ui) target_link_libraries(edit_plugin PUBLIC scene_surface_mesh_item scene_edit_item scene_selection_item) From fe68498e9521ca4e1cc52ea10ac64024569ce35c Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 19 Sep 2023 14:59:11 +0200 Subject: [PATCH 69/85] CGALConfig.cmake remove the early return() Otherwise we have a lot of warnings like: ``` CMake Warning at /usr/lib64/cmake/Qt6/QtPublicWalkLibsHelpers.cmake:284 (message): When trying to collect dependencies of target 'Constrained_Delaunay_triangulation_2', the non-existent target 'Qt6::Svg' was encountered. This can likely be fixed by moving the find_package call that pulls in 'Qt6::Svg' to the scope of directory '/home/lrineau/Git/cgal-testsuite-dockerfiles/testsuite/CGAL-6.0-Ic-66/test/Triangulation_2_Demo' or higher. This warning can be silenced by setting QT_SILENCE_MISSING_DEPENDENCY_TARGET_WARNING to ON. Call Stack (most recent call first): /usr/lib64/cmake/Qt6/QtPublicWalkLibsHelpers.cmake:320 (__qt_internal_print_missing_dependency_target_warning) /usr/lib64/cmake/Qt6Core/Qt6CoreMacros.cmake:609 (__qt_internal_collect_all_target_dependencies) /usr/lib64/cmake/Qt6Core/Qt6CoreMacros.cmake:709 (_qt_internal_finalize_executable) /usr/lib64/cmake/Qt6Core/Qt6CoreMacros.cmake:564:EVAL:1 (qt6_finalize_target) test/Triangulation_2_Demo/CMakeLists.txt:DEFERRED ``` The issue was that `find_package(Qt6) ...` is required in any sub-directory, because imported targets like `Qt6::Svg` are local to the directory scope. --- Installation/lib/cmake/CGAL/CGALConfig.cmake | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Installation/lib/cmake/CGAL/CGALConfig.cmake b/Installation/lib/cmake/CGAL/CGALConfig.cmake index 7b3f2c419cb4..93e9e8830f0a 100644 --- a/Installation/lib/cmake/CGAL/CGALConfig.cmake +++ b/Installation/lib/cmake/CGAL/CGALConfig.cmake @@ -146,11 +146,6 @@ foreach(cgal_lib ${CGAL_LIBRARIES}) set(CGALConfig_all_targets_are_defined FALSE) endif() endforeach() -if(CGALConfig_all_targets_are_defined) - return() -endif() - -message(STATUS "Using header-only CGAL") if(NOT CGAL_FOUND) return() From 0ffb2563519e010abec22682b05ca71ae27f28c5 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 19 Sep 2023 15:11:55 +0200 Subject: [PATCH 70/85] fix the workflow demo.yml The four batches were wrong: they all compiled all the plugins, instead of only a fourth of them. --- .github/test.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/test.sh b/.github/test.sh index a744f6d5b08a..cf69ebee9552 100755 --- a/.github/test.sh +++ b/.github/test.sh @@ -3,11 +3,10 @@ FACTOR=$1 set -ex cd Polyhedron/demo -LIST_OF_PLUGINS=$(/usr/local/bin/cmake --build . -t help | egrep 'plugin$' |& cut -d\ -f2) +/usr/local/bin/cmake -S Polyhedron -B build -DCGAL_DIR=$2 +LIST_OF_PLUGINS=$(/usr/local/bin/cmake --build build -t help | egrep 'plugin$' |& cut -d\ -f2) PLUGINS_ARRAY=(${LIST_OF_PLUGINS}); NB_OF_PLUGINS=${#PLUGINS_ARRAY[@]} DEL=$(($NB_OF_PLUGINS / 4)) -mkdir build cd build -/usr/local/bin/cmake -DCGAL_DIR=$2 ../Polyhedron make -j2 ${PLUGINS_ARRAY[@]:$(($FACTOR * $DEL)):$((($FACTOR + 1) * $DEL))} From 029d7a8fba55237bcdc8d608c40d79d0ec5273ab Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 20 Sep 2023 16:50:48 +0200 Subject: [PATCH 71/85] fix test/Installation tests on Windows --- Installation/test/Installation/CMakeLists.txt | 23 ++++--------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/Installation/test/Installation/CMakeLists.txt b/Installation/test/Installation/CMakeLists.txt index 5a22a7c42333..db725c17645f 100644 --- a/Installation/test/Installation/CMakeLists.txt +++ b/Installation/test/Installation/CMakeLists.txt @@ -7,32 +7,16 @@ project( Installation_Tests ) macro(create_link_to_program COMPONENT) - add_executable(link_to_${COMPONENT} link_to_${COMPONENT}.cpp) - - include_directories(${${COMPONENT}_3RD_PARTY_INCLUDE_DIRS}) - - add_definitions(${${COMPONENT}_3RD_PARTY_DEFINITIONS}) - - link_directories(${${COMPONENT}_3RD_PARTY_LIBRARIES_DIRS}) - - # Link the executable to CGAL and third-party libraries - if(CGAL_AUTO_LINK_ENABLED OR CGAL_HEADER_ONLY) - target_link_libraries(link_to_${COMPONENT} ${CGAL_3RD_PARTY_LIBRARIES} - ${${COMPONENT}_3RD_PARTY_LIBRARIES}) - else() - target_link_libraries( - link_to_${COMPONENT} CGAL::${COMPONENT} ${CGAL_3RD_PARTY_LIBRARIES} - ${${COMPONENT}_3RD_PARTY_LIBRARIES}) - endif() - + target_link_libraries(link_to_${COMPONENT} CGAL::${COMPONENT}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS link_to_${COMPONENT}) - + CGAL_add_test(link_to_${COMPONENT}) endmacro() find_package(CGAL REQUIRED COMPONENTS Core) include(CGAL_CreateSingleSourceCGALProgram) +include(CGAL_SetupGMP) create_single_source_cgal_program("endian.cpp") @@ -68,6 +52,7 @@ if(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL Windows) target_link_libraries(display_dll_version_info version) add_executable(test_gmp_mpfr_dll test_gmp_mpfr_dll.cpp) target_link_libraries(test_gmp_mpfr_dll version) + use_CGAL_GMP_support(test_gmp_mpfr_dll) CGAL_add_test(test_gmp_mpfr_dll) add_to_cached_list( CGAL_EXECUTABLE_TARGETS test_gmp_mpfr_dll ) string(RANDOM RDM_DIR)#5 random chars to avoid conflicts in parallel testsuites From a72ccf2089be07f42913514d6267c5f32f413d0b Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 28 Sep 2023 15:04:35 +0200 Subject: [PATCH 72/85] Fix CMake error on Windows https://cgal.geometryfactory.com/CGAL/testsuite/CGAL-6.0-Ic-73/Installation/TestReport_Christo_MSVC-2022-Preview-Release.gz ``` CMake Error at cmake/modules/CGAL_SetupGMP.cmake:73 (target_link_libraries): The plain signature for target_link_libraries has already been used with the target "test_gmp_mpfr_dll". All uses of target_link_libraries with a target must be either all-keyword or all-plain. The uses of the plain signature are here: * test/Installation/CMakeLists.txt:54 (target_link_libraries) Call Stack (most recent call first): test/Installation/CMakeLists.txt:55 (use_CGAL_GMP_support) ``` --- Installation/test/Installation/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Installation/test/Installation/CMakeLists.txt b/Installation/test/Installation/CMakeLists.txt index db725c17645f..cf090c2d39ad 100644 --- a/Installation/test/Installation/CMakeLists.txt +++ b/Installation/test/Installation/CMakeLists.txt @@ -49,9 +49,9 @@ endif() if(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL Windows) add_executable(display_dll_version_info display_dll_version_info.cpp) - target_link_libraries(display_dll_version_info version) + target_link_libraries(display_dll_version_info PRIVATE version) add_executable(test_gmp_mpfr_dll test_gmp_mpfr_dll.cpp) - target_link_libraries(test_gmp_mpfr_dll version) + target_link_libraries(test_gmp_mpfr_dll PRIVATE version) use_CGAL_GMP_support(test_gmp_mpfr_dll) CGAL_add_test(test_gmp_mpfr_dll) add_to_cached_list( CGAL_EXECUTABLE_TARGETS test_gmp_mpfr_dll ) From dda4bf84490757fb6fa9525e8588de0ac9e08942 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 1 Nov 2023 20:52:10 +0100 Subject: [PATCH 73/85] fix regression about MOC compilations The commit b05e1e9e4604aa8663366f6f6aed416c215cce7e was indeed the cause of the regression. But the root cause was an incorrect usage of `qt6_generate_moc`. The addition of `TARGET ${plugin_name}` triggered the use of the property `INCLUDE_DIRECTORIES` of the target. See https://doc.qt.io/qt-6/qt-generate-moc.html#arguments --- Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake b/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake index 6bdda967ab8b..2fd16a15c200 100644 --- a/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake +++ b/Polyhedron/demo/Polyhedron/polyhedron_demo_macros.cmake @@ -19,7 +19,7 @@ include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) set(moc_file_name "") else() set(moc_file_name ${plugin_implementation_base_name}.moc ) - qt6_generate_moc( ${plugin_implementation_base_name}.cpp "${CMAKE_CURRENT_BINARY_DIR}/${moc_file_name}" ) + qt6_generate_moc( ${plugin_implementation_base_name}.cpp "${CMAKE_CURRENT_BINARY_DIR}/${moc_file_name}" TARGET ${plugin_name}) add_file_dependencies( ${moc_file_name} "${CMAKE_CURRENT_SOURCE_DIR}/${plugin_implementation_base_name}.cpp" ) endif() From 980b04e09b4d98a7305a2dbb4aa1be3141a622eb Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 1 Nov 2023 21:17:19 +0100 Subject: [PATCH 74/85] fix the Arrangement demo --- .../demo/Arrangement_on_surface_2/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt index b1de5935340d..1ad374a61033 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt @@ -17,7 +17,7 @@ find_package(Qt6 QUIET COMPONENTS Widgets) if (CGAL_Qt6_FOUND AND Qt6_FOUND) add_compile_definitions(QT_NO_KEYWORDS) - include_directories( BEFORE ./ ) + set(CMAKE_INCLUDE_CURRENT_DIR ON) # Arrangement package includes add_definitions(-DQT_NO_KEYWORDS) From dea756ed0f77da3f1ebe7b756510e2b8fef8c6e6 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 1 Nov 2023 21:29:41 +0100 Subject: [PATCH 75/85] fix test/Installation on Windows --- Installation/test/Installation/CMakeLists.txt | 7 +-- .../Installation/display_dll_version_info.cpp | 55 ------------------- 2 files changed, 1 insertion(+), 61 deletions(-) delete mode 100644 Installation/test/Installation/display_dll_version_info.cpp diff --git a/Installation/test/Installation/CMakeLists.txt b/Installation/test/Installation/CMakeLists.txt index cf090c2d39ad..183527601e32 100644 --- a/Installation/test/Installation/CMakeLists.txt +++ b/Installation/test/Installation/CMakeLists.txt @@ -48,13 +48,8 @@ endif() if(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL Windows) - add_executable(display_dll_version_info display_dll_version_info.cpp) - target_link_libraries(display_dll_version_info PRIVATE version) - add_executable(test_gmp_mpfr_dll test_gmp_mpfr_dll.cpp) + create_single_source_cgal_program(test_gmp_mpfr_dll.cpp) target_link_libraries(test_gmp_mpfr_dll PRIVATE version) - use_CGAL_GMP_support(test_gmp_mpfr_dll) - CGAL_add_test(test_gmp_mpfr_dll) - add_to_cached_list( CGAL_EXECUTABLE_TARGETS test_gmp_mpfr_dll ) string(RANDOM RDM_DIR)#5 random chars to avoid conflicts in parallel testsuites set(NON_STANDARD_INSTALL_PREFIX $ENV{TEMP}/${RDM_DIR}) else() diff --git a/Installation/test/Installation/display_dll_version_info.cpp b/Installation/test/Installation/display_dll_version_info.cpp deleted file mode 100644 index ac826198f747..000000000000 --- a/Installation/test/Installation/display_dll_version_info.cpp +++ /dev/null @@ -1,55 +0,0 @@ -// This program is for MSVC only. -#ifndef WIN32 -int main() { - return 0; -} -#else - -#include -#include -#include - -bool get_version_info(const char* fileName, - int& major, - int& minor, - int& patch, - int& build) -{ - std::cout << "Query FileVersion of \"" << fileName << "\"\n"; - DWORD handle = 0; - DWORD size = GetFileVersionInfoSize(fileName, &handle); - BYTE* versionInfo = new BYTE[size]; - if (!GetFileVersionInfo(fileName, handle, size, versionInfo)) - { - delete[] versionInfo; - return false; - } - // we have version information - UINT len = 0; - VS_FIXEDFILEINFO* vsfi = NULL; - VerQueryValue(versionInfo, "\\", (void**)&vsfi, &len); - major = HIWORD(vsfi->dwFileVersionMS); - minor = LOWORD(vsfi->dwFileVersionMS); - patch = HIWORD(vsfi->dwFileVersionLS); - build = LOWORD(vsfi->dwFileVersionLS); - delete[] versionInfo; - return true; -} - -int main(int argc, char** argv) { - if(argc == 2) { - int major, minor, patch, build; - bool result = get_version_info(argv[1], major, minor, patch, build); - assert(result); - std::cout << "version " - << major << "." - << minor << "." - << patch << "." - << build << "\n"; - } else { - std::cerr << "Usage:\n" - << " display_dll_version_info /path/to/a.dll\n"; - } - return 0; -} -#endif From dc0cd7f1e6fa0432ec31db1ad891e2496c87c903 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 15 Nov 2023 07:51:58 +0000 Subject: [PATCH 76/85] make ~Show_point_dialog() virtual --- Polyhedron/demo/Polyhedron/Show_point_dialog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/Show_point_dialog.h b/Polyhedron/demo/Polyhedron/Show_point_dialog.h index 915b51ae397b..c98040e4737c 100644 --- a/Polyhedron/demo/Polyhedron/Show_point_dialog.h +++ b/Polyhedron/demo/Polyhedron/Show_point_dialog.h @@ -16,7 +16,7 @@ class POINT_DIALOG_EXPORT Show_point_dialog : Q_OBJECT public: Show_point_dialog(QWidget* parent = nullptr); - ~Show_point_dialog(); + virtual ~Show_point_dialog(); bool has_correct_coordinates() const; From 652f7b26c09ae4052049cbb7107c6ae79f0bcc75 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 15 Nov 2023 08:59:17 +0000 Subject: [PATCH 77/85] Replace Q_FOREACH --- Polyhedron/demo/Polyhedron/MainWindow.cpp | 138 +++++++++--------- .../Plugins/AABB_tree/Cut_plugin.cpp | 10 +- .../AABB_tree/Do_trees_intersect_plugin.cpp | 14 +- .../Alpha_wrap_3/Alpha_wrap_3_plugin.cpp | 6 +- .../Camera_position/Camera_positions_list.cpp | 2 +- .../Convex_decomposition/Nef_plugin.cpp | 2 +- .../IO/Implicit_function_io_plugin.cpp | 4 +- .../Plugins/IO/Polylines_io_plugin.cpp | 2 +- .../Plugins/Mesh_2/Mesh_2_plugin.cpp | 22 +-- .../Plugins/Mesh_3/Io_image_plugin.cpp | 10 +- .../Mesh_3/Io_implicit_function_plugin.cpp | 6 +- .../Plugins/Mesh_3/Mesh_3_plugin.cpp | 6 +- .../Plugins/Mesh_3/Offset_meshing_plugin.cpp | 2 +- .../Plugins/Mesh_3/Optimization_plugin.cpp | 2 +- .../Polyhedron/Plugins/Mesh_3/Volume_plane.h | 2 +- .../Clip_polyhedron_plugin.cpp | 4 +- .../Plugins/PCA/Affine_transform_plugin.cpp | 2 +- .../Plugins/PCA/Basic_generator_plugin.cpp | 6 +- .../Plugins/PCA/Clipping_box_plugin.cpp | 4 +- .../Plugins/PCA/Create_bbox_mesh_plugin.cpp | 4 +- .../Plugins/PCA/Create_obb_mesh_plugin.cpp | 6 +- .../Plugins/PCA/Edit_box_plugin.cpp | 2 +- .../Polyhedron/Plugins/PCA/Pca_plugin.cpp | 2 +- .../Plugins/PCA/Scene_edit_box_item.cpp | 8 +- .../Plugins/PMP/Degenerated_faces_plugin.cpp | 8 +- .../Plugins/PMP/Detect_sharp_edges_plugin.cpp | 6 +- .../Plugins/PMP/Engrave_text_plugin.cpp | 11 +- .../Polyhedron/Plugins/PMP/Extrude_plugin.cpp | 4 +- .../Plugins/PMP/Hole_filling_plugin.cpp | 8 +- .../PMP/Isotropic_remeshing_plugin.cpp | 2 +- .../PMP/Join_and_split_polyhedra_plugin.cpp | 10 +- .../Mean_curvature_flow_skeleton_plugin.cpp | 2 +- .../Plugins/PMP/Orient_soup_plugin.cpp | 5 +- .../PMP/Point_inside_polyhedron_plugin.cpp | 8 +- .../PMP/Polyhedron_stitching_plugin.cpp | 10 +- .../PMP/Remesh_planar_patches_plugin.cpp | 2 +- .../Plugins/PMP/Repair_polyhedron_plugin.cpp | 2 +- .../Scene_facegraph_item_k_ring_selection.h | 4 +- .../Plugins/PMP/Selection_plugin.cpp | 4 +- .../PMP/Surface_intersection_plugin.cpp | 16 +- .../Plugins/PMP/Triangulate_facets_plugin.cpp | 4 +- .../Plugins/Point_set/Alpha_shape_plugin.cpp | 2 +- .../Point_set/Merge_point_sets_plugin.cpp | 6 +- .../Point_set/Point_set_selection_plugin.cpp | 6 +- .../Point_set_shape_detection_plugin.cpp | 4 +- .../Point_set_to_mesh_distance_plugin.cpp | 4 +- .../Point_set/Register_point_sets_plugin.cpp | 2 +- .../Subdivision_methods_plugin.cpp | 2 +- .../Surface_mesh/Offset_meshing_plugin.cpp | 4 +- .../Surface_mesh/Parameterization_plugin.cpp | 16 +- .../Scene_polyhedron_shortest_path_item.cpp | 4 +- .../Plugins/Surface_mesh/UVProjector.h | 2 +- .../Edit_polyhedron_plugin.cpp | 16 +- .../Scene_edit_polyhedron_item.cpp | 2 +- .../demo/Polyhedron/Polyhedron_demo.cpp | 4 +- .../Polyhedron_demo_plugin_helper.cpp | 4 +- Polyhedron/demo/Polyhedron/Scene.cpp | 68 ++++----- Polyhedron/demo/Polyhedron/Scene.h | 12 +- Polyhedron/demo/Polyhedron/Scene_find_items.h | 4 +- .../demo/Polyhedron/Scene_group_item.cpp | 2 +- .../Scene_points_with_normal_item.cpp | 2 +- .../Scene_polyhedron_selection_item.cpp | 16 +- .../demo/Polyhedron/Scene_polylines_item.cpp | 2 +- .../Polyhedron/Scene_surface_mesh_item.cpp | 18 +-- .../Scene_textured_surface_mesh_item.cpp | 3 +- .../Polyhedron/Scene_triangulation_3_item.cpp | 3 +- Polyhedron/demo/Polyhedron/TextRenderer.cpp | 8 +- Polyhedron/demo/Polyhedron/Three.cpp | 7 +- Polyhedron/demo/Polyhedron/Viewer.cpp | 4 +- 69 files changed, 296 insertions(+), 303 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.cpp b/Polyhedron/demo/Polyhedron/MainWindow.cpp index 1714b547af9e..24455668188d 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.cpp +++ b/Polyhedron/demo/Polyhedron/MainWindow.cpp @@ -317,7 +317,7 @@ MainWindow::MainWindow(const QStringList &keywords, bool verbose, QWidget* paren accepted_keywords.clear(); // Setup the submenu of the View menu that can toggle the dockwidgets - Q_FOREACH(QDockWidget* widget, findChildren()) { + for(QDockWidget* widget : findChildren()) { widget->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetFloatable); ui->menuDockWindows->addAction(widget->toggleViewAction()); } @@ -342,7 +342,7 @@ MainWindow::MainWindow(const QStringList &keywords, bool verbose, QWidget* paren actionResetDefaultLoaders = new QAction("Reset Default Loaders",this); // evaluate_script("print(plugins);"); - Q_FOREACH(QAction* action, findChildren()) { + for(QAction* action : findChildren()) { if(action->objectName() != "") { QJSValue objectValue = script_engine->newQObject(action); script_engine->globalObject().setProperty(action->objectName(), @@ -372,11 +372,11 @@ void addActionToMenu(QAction* action, QMenu* menu) void filterMenuOperations(QMenu* menu, QString filter, bool keep_from_here) { QList buffer; - Q_FOREACH(QAction* action, menu->actions()) + for(QAction* action : menu->actions()) buffer.append(action); while(!buffer.isEmpty()){ - Q_FOREACH(QAction* action, buffer) { + for(QAction* action : buffer) { if(QMenu* submenu = action->menu()) { bool keep = true; @@ -384,7 +384,7 @@ void filterMenuOperations(QMenu* menu, QString filter, bool keep_from_here) keep = submenu->menuAction()->text().contains(filter, Qt::CaseInsensitive); if(!keep) { - Q_FOREACH(QAction* subaction, submenu->actions()) + for(QAction* subaction : submenu->actions()) { submenu->removeAction(subaction); buffer.append(subaction); @@ -421,23 +421,23 @@ void MainWindow::filterOperations(bool) ui->menuOperations->hide(); #endif //return actions to their true menu - Q_FOREACH(QMenu* menu, action_menu_map.values()) + for(QMenu* menu : action_menu_map.values()) { - Q_FOREACH(QAction* action, menu->actions()) + for(QAction* action : menu->actions()) { if(action != searchAction) menu->removeAction(action); } } - Q_FOREACH(QAction* action, action_menu_map.keys()) + for(QAction* action : action_menu_map.keys()) { QMenu* menu = action_menu_map[action]; addActionToMenu(action, menu); } QString filter=operationSearchBar.text(); - Q_FOREACH(const PluginNamePair& p, plugins) { - Q_FOREACH(QAction* action, p.first->actions()) { + for(const PluginNamePair& p : plugins) { + for(QAction* action : p.first->actions()) { action->setVisible( p.first->applicable(action) && (action->text().remove("&").contains(filter, Qt::CaseInsensitive) || action->property("subMenuName") @@ -579,7 +579,7 @@ bool MainWindow::load_plugin(QString fileName, bool blacklisted) bool do_load = accepted_keywords.empty(); if(!do_load) { - Q_FOREACH(QString k, s_keywords) + for(QString k : s_keywords) { if(accepted_keywords.contains(k)) { @@ -621,7 +621,7 @@ bool MainWindow::load_plugin(QString fileName, bool blacklisted) void MainWindow::loadPlugins() { - Q_FOREACH(QObject *obj, QPluginLoader::staticInstances()) + for(QObject *obj : QPluginLoader::staticInstances()) { initPlugin(obj); initIOPlugin(obj); @@ -637,7 +637,7 @@ void MainWindow::loadPlugins() QFileInfoList filist = QDir(dirPath).entryInfoList(); filist << msvc_dir.entryInfoList(); - Q_FOREACH(QFileInfo fileinfo, filist) + for(QFileInfo fileinfo : filist) { //checks if the path leads to a directory if(fileinfo.baseName().contains("Plugins")) @@ -645,7 +645,7 @@ void MainWindow::loadPlugins() QString plugins_dir = fileinfo.absolutePath(); plugins_dir.append("/").append(fileinfo.baseName()); - Q_FOREACH(QString package_dir, + for(QString package_dir : QDir(plugins_dir).entryList(QDir::Dirs)) { QString package_dir_path(plugins_dir); @@ -677,7 +677,7 @@ void MainWindow::loadPlugins() QByteArray new_path = path.append(env_path.prepend(separator)).toUtf8(); qputenv("PATH", new_path); #endif - Q_FOREACH (QString pluginsDir, + for (QString pluginsDir : env_path.split(separator, CGAL_QT_SKIP_EMPTY_PARTS)) { QDir dir(pluginsDir); if(dir.isReadable()) @@ -686,11 +686,11 @@ void MainWindow::loadPlugins() } QSet loaded; - Q_FOREACH (QDir pluginsDir, plugins_directories) { + for (QDir pluginsDir : plugins_directories) { if(verbose) qDebug("# Looking for plugins in directory \"%s\"...", qPrintable(pluginsDir.absolutePath())); - Q_FOREACH(QString fileName, pluginsDir.entryList(QDir::Files)) + for(QString fileName : pluginsDir.entryList(QDir::Files)) { QString abs_name = pluginsDir.absoluteFilePath(fileName); if(loaded.find(abs_name) == loaded.end()) @@ -708,7 +708,7 @@ void MainWindow::loadPlugins() void MainWindow::updateMenus() { QList as = ui->menuOperations->actions(); - Q_FOREACH(QAction* a, as) + for(QAction* a : as) { QString menuPath = a->property("subMenuName").toString(); setMenus(menuPath, ui->menuOperations->title(), a); @@ -724,7 +724,7 @@ void MainWindow::updateMenus() bool MainWindow::hasPlugin(const QString& pluginName) const { - Q_FOREACH(const PluginNamePair& p, plugins) { + for(const PluginNamePair& p : plugins) { if(p.second == pluginName) return true; } return false; @@ -741,7 +741,7 @@ bool MainWindow::initPlugin(QObject* obj) plugin->init(this, this->scene, this); plugins << qMakePair(plugin, obj->objectName()); - Q_FOREACH(QAction* action, plugin->actions()) { + for(QAction* action : plugin->actions()) { // If action does not belong to the menus, add it to "Operations" menu if(!childs.contains(action)) { ui->menuOperations->addAction(action); @@ -771,7 +771,7 @@ bool MainWindow::initIOPlugin(QObject* obj) void MainWindow::clearMenu(QMenu* menu) { - Q_FOREACH(QAction* action, menu->actions()) + for(QAction* action : menu->actions()) { QMenu* menu = action->menu(); if(menu) { @@ -805,7 +805,7 @@ void MainWindow::addAction(QString actionName, QString actionText, QString menuName) { QMenu* menu = nullptr; - Q_FOREACH(QAction* action, findChildren()) { + for(QAction* action : findChildren()) { if(!action->menu()) continue; QString menuText = action->menu()->title(); if(menuText != menuName) continue; @@ -894,7 +894,7 @@ void MainWindow::updateViewersBboxes(bool recenter) { CGAL::qglviewer::Vec min, max; computeViewerBBox(min, max); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { if(v == nullptr) continue; @@ -939,7 +939,7 @@ void MainWindow::computeViewerBBox(CGAL::qglviewer::Vec& vmin, CGAL::qglviewer:: } if(offset != viewer->offset()) { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { if(v == nullptr) continue; @@ -959,7 +959,7 @@ void MainWindow::reloadItem() { Scene_item* item = nullptr; - Q_FOREACH(Scene::Item_id id, scene->selectionIndices()) + for(Scene::Item_id id : scene->selectionIndices()) { item = scene->item(id); if(!item)//secure items like selection items that get deleted when their "parent" item is reloaded. @@ -1017,7 +1017,7 @@ void MainWindow::reloadItem() { } CGAL::Three::Polyhedron_demo_io_plugin_interface* MainWindow::findLoader(const QString& loader_name) const { - Q_FOREACH(CGAL::Three::Polyhedron_demo_io_plugin_interface* io_plugin, + for(CGAL::Three::Polyhedron_demo_io_plugin_interface* io_plugin : io_plugins) { if(io_plugin->name() == loader_name) { return io_plugin; @@ -1037,7 +1037,7 @@ bool MainWindow::file_matches_filter(const QString& filters, QRegularExpression all_filters_rx("\\((.*)\\)"); QStringList split_filters = filters.split(";;"); - Q_FOREACH(const QString& filter, split_filters) { + for(const QString& filter : split_filters) { QRegularExpressionMatch match = all_filters_rx.match(filter); if(match.hasMatch()){ for (const QString& pattern : match.captured(1).split(' ')) { @@ -1322,7 +1322,7 @@ QList MainWindow::getSelectedSceneItemIndices() const { QModelIndexList selectedIndices = sceneView->selectionModel()->selectedIndexes(); QList result; - Q_FOREACH(QModelIndex index, selectedIndices) { + for(QModelIndex index : selectedIndices) { int temp = scene->getIdFromModelIndex(proxyModel->mapToSource(index)); if(!result.contains(temp)) result<setSelectedItemIndex(getSelectedSceneItemIndex()); scene->setSelectedItemIndices(getSelectedSceneItemIndices()); CGAL::Three::Scene_item* item = scene->item(getSelectedSceneItemIndex()); - Q_FOREACH(CGAL::QGLViewer* vi, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* vi : CGAL::QGLViewer::QGLViewerPool()) { if(vi == nullptr) continue; @@ -1346,7 +1346,7 @@ void MainWindow::selectionChanged() vi->setManipulatedFrame(nullptr); } if(vi->manipulatedFrame() == nullptr) { - Q_FOREACH(CGAL::Three::Scene_item* item, scene->entries()) { + for(CGAL::Three::Scene_item* item : scene->entries()) { if(item->manipulatable() && item->manipulatedFrame() != nullptr) { if(vi->manipulatedFrame() != nullptr) { // there are at least two possible frames @@ -1444,7 +1444,7 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { QVector slider_menus; bool has_stats = false; bool has_reload = false; - Q_FOREACH(Scene::Item_id id, scene->selectionIndices()) + for(Scene::Item_id id : scene->selectionIndices()) { if(!scene->item(id)->property("source filename").toString().isEmpty()) { @@ -1452,7 +1452,7 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { break; } } - Q_FOREACH(QAction* action, scene->item(main_index)->contextMenu()->actions()) + for(QAction* action : scene->item(main_index)->contextMenu()->actions()) { if(action->property("is_groupable").toBool()) { @@ -1476,7 +1476,7 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { } } - Q_FOREACH(Scene::Item_id index, scene->selectionIndices()) + for(Scene::Item_id index : scene->selectionIndices()) { if(index == main_index) continue; @@ -1490,7 +1490,7 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { QMenu menu; menu.addAction(actionAddToGroup); menu.insertSeparator(nullptr); - Q_FOREACH(QString name, menu_actions.keys()) + for(QString name : menu_actions.keys()) { if(name == QString("alpha slider") || name == QString("points slider") @@ -1512,10 +1512,10 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { connect(slider, &QSlider::valueChanged, [this, slider]() { - Q_FOREACH(Scene::Item_id id, scene->selectionIndices()) + for(Scene::Item_id id : scene->selectionIndices()) { Scene_item* item = scene->item(id); - Q_FOREACH(QAction* action, item->contextMenu()->actions()) + for(QAction* action : item->contextMenu()->actions()) { if(action->text() == "Alpha value") { @@ -1547,10 +1547,10 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { connect(slider, &QSlider::valueChanged, [this, slider]() { - Q_FOREACH(Scene::Item_id id, scene->selectionIndices()) + for(Scene::Item_id id : scene->selectionIndices()) { Scene_item* item = scene->item(id); - Q_FOREACH(QAction* action, item->contextMenu()->actions()) + for(QAction* action : item->contextMenu()->actions()) { if(action->text() == "Points Size") { @@ -1582,10 +1582,10 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { connect(slider, &QSlider::valueChanged, [this, slider]() { - Q_FOREACH(Scene::Item_id id, scene->selectionIndices()) + for(Scene::Item_id id : scene->selectionIndices()) { Scene_item* item = scene->item(id); - Q_FOREACH(QAction* action, item->contextMenu()->actions()) + for(QAction* action : item->contextMenu()->actions()) { if(action->text() == "Normals Length") { @@ -1625,10 +1625,10 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { connect(slider, &QSlider::valueChanged, [this, slider]() { - Q_FOREACH(Scene::Item_id id, scene->selectionIndices()) + for(Scene::Item_id id : scene->selectionIndices()) { Scene_item* item = scene->item(id); - Q_FOREACH(QAction* action, item->contextMenu()->actions()) + for(QAction* action : item->contextMenu()->actions()) { if(action->text() == "Line Width") { @@ -1652,7 +1652,7 @@ void MainWindow::showSceneContextMenu(const QPoint& p) { } if(!slider_menus.empty()) { - Q_FOREACH(QMenu* m, slider_menus){ + for(QMenu* m : slider_menus){ menu.addMenu(m); } menu.insertSeparator(nullptr); @@ -1744,7 +1744,7 @@ void MainWindow::readSettings() settings.value("default_ps_rm", "points").toString()); // read plugin blacklist QStringList blacklist=settings.value("plugin_blacklist",QStringList()).toStringList(); - Q_FOREACH(QString name,blacklist){ plugin_blacklist.insert(name); } + for(QString name :blacklist){ plugin_blacklist.insert(name); } def_save_dir = settings.value("default_saveas_dir", QDir::homePath()).toString(); this->default_point_size = settings.value("points_size").toInt(); this->default_normal_length = settings.value("normals_length").toInt(); @@ -1758,7 +1758,7 @@ void MainWindow::writeSettings() { //setting plugin blacklist QStringList blacklist; - Q_FOREACH(QString name,plugin_blacklist){ blacklist << name; } + for(QString name :plugin_blacklist){ blacklist << name; } if ( !blacklist.isEmpty() ) settings.setValue("plugin_blacklist",blacklist); else settings.remove("plugin_blacklist"); } @@ -1838,7 +1838,7 @@ void MainWindow::on_actionLoad_triggered() for(CGAL::Three::Polyhedron_demo_io_plugin_interface* plugin : io_plugins) { QStringList split_filters = plugin->loadNameFilters().split(";;"); - Q_FOREACH(const QString& filter, split_filters) { + for(const QString& filter : split_filters) { FilterPluginMap::iterator it = filterPluginMap.find(filter); if(it != filterPluginMap.end()) { if(verbose) @@ -1881,7 +1881,7 @@ void MainWindow::on_actionLoad_triggered() std::back_inserter(colors_)); std::size_t nb_item = -1; - Q_FOREACH(const QString& filename, dialog.selectedFiles()) { + for(const QString& filename : dialog.selectedFiles()) { CGAL::Three::Scene_item* item = nullptr; if(selectedPlugin) { @@ -2002,9 +2002,9 @@ void MainWindow::on_actionSaveAs_triggered() filename_ext.push_front("."); QStringList final_extensions; - Q_FOREACH(QString string, filter_exts) + for(QString string : filter_exts) { - Q_FOREACH(QString s, string.split(" ")){// in case of syntax like (*.a *.b) + for(QString s : string.split(" ")){// in case of syntax like (*.a *.b) s.remove(")"); s.remove("("); //remove * @@ -2099,7 +2099,7 @@ void MainWindow::on_actionDuplicate_triggered() void MainWindow::on_actionShowHide_triggered() { scene->setUpdatesEnabled(false); - Q_FOREACH(QModelIndex index, sceneView->selectionModel()->selectedRows()) + for(QModelIndex index : sceneView->selectionModel()->selectedRows()) { int i = scene->getIdFromModelIndex(proxyModel->mapToSource(index)); CGAL::Three::Scene_item* item = scene->item(i); @@ -2216,7 +2216,7 @@ void MainWindow::on_actionPreferences_triggered() ignoredBrush(Qt::lightGray); //add blacklisted plugins - Q_FOREACH (QString name, PathNames_map.keys()) + for (QString name : PathNames_map.keys()) { QTreeWidgetItem *item = new QTreeWidgetItem(prefdiag.treeWidget); item->setText(1, name); @@ -2245,7 +2245,7 @@ void MainWindow::on_actionPreferences_triggered() detdiag.setupUi(&dialog); QTreeWidgetItem *header = new QTreeWidgetItem(titles); detdiag.treeWidget->setHeaderItem(header); - Q_FOREACH(QTreeWidgetItem* plugin_item, prefdiag.treeWidget->selectedItems()) + for(QTreeWidgetItem* plugin_item : prefdiag.treeWidget->selectedItems()) { QString name = plugin_item->text(1); QString keywords = plugin_metadata_map[name].first.join(", "); @@ -2379,7 +2379,7 @@ void MainWindow::setBackgroundColor() { QColor c = QColorDialog::getColor(); if(c.isValid()) { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { if(v == nullptr) continue; @@ -2456,7 +2456,7 @@ void MainWindow::on_actionLoadPlugin_triggered() this, tr("Select the directory containing your plugins:"), ".",filters); - Q_FOREACH(QString name, paths) + for(QString name : paths) load_plugin(name, false); updateMenus(); @@ -2549,7 +2549,7 @@ QString MainWindow::get_item_stats() { //1st step : get all classnames of the selected items QList classnames; - Q_FOREACH(int id, scene->selectionIndices()) + for(int id : scene->selectionIndices()) { Scene_item* item = scene->item(id); QString classname = item->property("classname").toString(); @@ -2561,7 +2561,7 @@ QString MainWindow::get_item_stats() //2nd step : separate the selection in lists corresponding to their classname QVector< QList > items; items.resize(classnames.size()); - Q_FOREACH(int id, scene->selectionIndices()) + for(int id : scene->selectionIndices()) { Scene_item* s_item = scene->item(id); for(int i=0; i """); - Q_FOREACH(Scene_item* sit, items[i]) + for(Scene_item* sit : items[i]) { str.append(QString("").arg(sit->name())); } @@ -2602,7 +2602,7 @@ QString MainWindow::get_item_stats() .arg(data.categories[j].first)); titles_limit+=data.categories[j].second; str.append(QString("").arg(data.titles.at(title))); - Q_FOREACH(Scene_item* sit, items[i]) + for(Scene_item* sit : items[i]) { str.append(QString("").arg(sit->computeStats(title))); } @@ -2610,7 +2610,7 @@ QString MainWindow::get_item_stats() for(;title").arg(data.titles.at(title))); - Q_FOREACH(Scene_item* sit, items[i]) + for(Scene_item* sit : items[i]) { str.append(QString("").arg(sit->computeStats(title))); } @@ -2703,7 +2703,7 @@ void MainWindow::colorItems() std::back_inserter(colors_)); std::size_t nb_item = -1; - Q_FOREACH(int id, scene->selectionIndices()) + for(int id : scene->selectionIndices()) { scene->item(id)->setColor(colors_[++nb_item]); } @@ -2715,7 +2715,7 @@ void MainWindow::colorItems() void MainWindow::exportStatistics() { std::vector items; - Q_FOREACH(int id, getSelectedSceneItemIndices()) + for(int id : getSelectedSceneItemIndices()) { Scene_item* s_item = scene->item(id); items.push_back(s_item); @@ -2767,10 +2767,10 @@ void MainWindow::propagate_action() QAction* sender = qobject_cast(this->sender()); if(!sender) return; QString name = sender->text(); - Q_FOREACH(Scene::Item_id id, scene->selectionIndices()) + for(Scene::Item_id id : scene->selectionIndices()) { Scene_item* item = scene->item(id); - Q_FOREACH(QAction* action, item->contextMenu()->actions()) + for(QAction* action : item->contextMenu()->actions()) { if(action->text() == name) { @@ -3163,7 +3163,7 @@ void MainWindow::toggleFullScreen() QList dockWidgets = findChildren(); if(visibleDockWidgets.isEmpty()) { - Q_FOREACH(QDockWidget * dock, dockWidgets) + for(QDockWidget * dock : dockWidgets) { if(dock->isVisible()) { @@ -3174,7 +3174,7 @@ void MainWindow::toggleFullScreen() } else { - Q_FOREACH(QDockWidget * dock, visibleDockWidgets){ + for(QDockWidget * dock : visibleDockWidgets){ dock->show(); } visibleDockWidgets.clear(); @@ -3538,7 +3538,7 @@ void SubViewer::changeEvent(QEvent *event) if(isMaximized()) { QMenu* menu = mw->findChild("menuView"); - Q_FOREACH(QAction* action, viewMenu->actions()) + for(QAction* action : viewMenu->actions()) { menu->addAction(action); } @@ -3556,7 +3556,7 @@ void SubViewer::changeEvent(QEvent *event) else { QMenu* menu = mw->findChild("menuView"); - Q_FOREACH(QAction* action, viewMenu->actions()) + for(QAction* action : viewMenu->actions()) { menu->removeAction(action); } @@ -3605,10 +3605,10 @@ void MainWindow::test_all_actions() { int nb_items = scene->numberOfEntries(); selectSceneItem(0); - Q_FOREACH(PluginNamePair pnp, plugins) + for(PluginNamePair pnp : plugins) { Polyhedron_demo_plugin_interface* plugin = pnp.first; - Q_FOREACH(QAction* action, plugin->actions()){ + for(QAction* action : plugin->actions()){ if(plugin->applicable(action)){ qDebug()<<"Testing "<text()<<" on"; qDebug()<item(scene->mainSelectionIndex())->name()<<"..."; diff --git a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp index f72ebe5a7bd1..2d02ea43c88a 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp @@ -398,7 +398,7 @@ class Q_DECL_EXPORT Scene_aabb_plane_item : public Scene_plane_item FT diag = scene_diag(); std::vector closed_sm_trees; - Q_FOREACH(SM_Tree *sm_tree, sm_trees->values()) + for(SM_Tree *sm_tree : sm_trees->values()) if(!(is_signed && !CGAL::is_closed(*qobject_cast(sm_trees->key(sm_tree))->polyhedron()))) closed_sm_trees.push_back(sm_tree); #ifndef CGAL_LINKED_WITH_TBB @@ -1063,7 +1063,7 @@ public Q_SLOTS: } void uncheckActions() { - Q_FOREACH(QAction* action, _actions) + for(QAction* action : _actions) if(action->isChecked()) { action->setChecked(false); @@ -1129,11 +1129,11 @@ public Q_SLOTS: Polyhedron_demo_cut_plugin::~Polyhedron_demo_cut_plugin() { - Q_FOREACH(Facet_sm_tree *tree, facet_sm_trees.values()) + for(Facet_sm_tree *tree : facet_sm_trees.values()) { delete tree; } - Q_FOREACH(Edge_sm_tree *tree, edge_sm_trees.values()) + for(Edge_sm_tree *tree : edge_sm_trees.values()) { delete tree; } @@ -1182,7 +1182,7 @@ void Polyhedron_demo_cut_plugin::init(QMainWindow* mainWindow, QActionGroup *group = new QActionGroup(mainWindow); group->setExclusive(true); - Q_FOREACH(QAction *action, _actions) + for(QAction *action : _actions) { action->setActionGroup(group); action->setCheckable(true); diff --git a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp index 5f9eeed58388..979453ec2af6 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp @@ -42,7 +42,7 @@ class DoTreesIntersectplugin: { if(scene->selectionIndices().size() <2) return false; - Q_FOREACH(Scene::Item_id i, scene->selectionIndices()) + for(Scene::Item_id i : scene->selectionIndices()) { if(! qobject_cast(scene->item(i))) return false; @@ -76,7 +76,7 @@ private Q_SLOTS: void start() { QApplication::setOverrideCursor(Qt::WaitCursor); - Q_FOREACH(Scene::Item_id i, scene->selectionIndices()) + for(Scene::Item_id i : scene->selectionIndices()) { Scene_surface_mesh_item* item=qobject_cast(scene->item(i)); if (!CGAL::is_triangle_mesh(*item->face_graph())) @@ -96,7 +96,7 @@ private Q_SLOTS: group_item = nullptr;}); scene->addItem(group_item); - Q_FOREACH(Scene::Item_id i, scene->selectionIndices()) + for(Scene::Item_id i : scene->selectionIndices()) { Scene_surface_mesh_item* item=qobject_cast(scene->item(i)); connect(item, &Scene_surface_mesh_item::aboutToBeDestroyed, @@ -147,7 +147,7 @@ public Q_SLOTS: { if(items.empty()) return; - Q_FOREACH(Scene_movable_sm_item* item, items) + for(Scene_movable_sm_item* item : items) item->setColor(QColor(Qt::green)); CGAL::Three::Viewer_interface* viewer = static_cast( @@ -158,7 +158,7 @@ public Q_SLOTS: std::size_t mesh_id = 0; std::size_t sel_id = 0; - Q_FOREACH(Scene_movable_sm_item* item, items) + for(Scene_movable_sm_item* item : items) { if(item == sel_item) { @@ -168,7 +168,7 @@ public Q_SLOTS: ++mesh_id; } mesh_id = 0; - Q_FOREACH(Scene_movable_sm_item* item, items) + for(Scene_movable_sm_item* item : items) { if(mesh_id == sel_id) { @@ -251,7 +251,7 @@ public Q_SLOTS: std::size_t mesh_id = 0; std::size_t sel_id = 0; - Q_FOREACH(Scene_movable_sm_item* item, items) + for(Scene_movable_sm_item* item : items) { if(item == sel_item) { diff --git a/Polyhedron/demo/Polyhedron/Plugins/Alpha_wrap_3/Alpha_wrap_3_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Alpha_wrap_3/Alpha_wrap_3_plugin.cpp index a1b29fd5689d..563885a376ce 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Alpha_wrap_3/Alpha_wrap_3_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Alpha_wrap_3/Alpha_wrap_3_plugin.cpp @@ -359,7 +359,7 @@ class Polyhedron_demo_alpha_wrap_3_plugin if(scene->selectionIndices().empty()) return false; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { if(!qobject_cast(scene->item(index)) && !qobject_cast(scene->item(index)) && @@ -540,7 +540,7 @@ public Q_SLOTS: Segments segments; Points points; - Q_FOREACH(int index, this->scene->selectionIndices()) + for(int index : this->scene->selectionIndices()) { // --- Scene_surface_mesh_item* sm_item = qobject_cast(this->scene->item(index)); @@ -765,7 +765,7 @@ public Q_SLOTS: QApplication::restoreOverrideCursor(); QApplication::setOverrideCursor(Qt::BusyCursor); - Q_FOREACH(int index, this->scene->selectionIndices()) + for(int index : this->scene->selectionIndices()) { Scene_surface_mesh_item* sm_item = qobject_cast(this->scene->item(index)); if(sm_item != nullptr) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Camera_position/Camera_positions_list.cpp b/Polyhedron/demo/Polyhedron/Plugins/Camera_position/Camera_positions_list.cpp index c015e8f495c4..016aaa796adc 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Camera_position/Camera_positions_list.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Camera_position/Camera_positions_list.cpp @@ -64,7 +64,7 @@ void Camera_positions_list::on_downButton_pressed() void Camera_positions_list::on_minusButton_pressed() { - Q_FOREACH(QModelIndex index, + for(QModelIndex index : m_listView->selectionModel()->selectedIndexes()) { m_model->removeRows(index.row(), 1); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Convex_decomposition/Nef_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Convex_decomposition/Nef_plugin.cpp index 73d7a944d064..c5b7a5c04c88 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Convex_decomposition/Nef_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Convex_decomposition/Nef_plugin.cpp @@ -52,7 +52,7 @@ void init(QMainWindow* mw, << actionIntersection << actionDifference << actionMinkowskiSum; - Q_FOREACH(QAction * action, _actions) + for(QAction * action : _actions) action->setProperty("subMenuName", "Boolean Operations"); _actions<< actionConvexDecomposition; diff --git a/Polyhedron/demo/Polyhedron/Plugins/IO/Implicit_function_io_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/IO/Implicit_function_io_plugin.cpp index 7159c3c38394..628362efd0b8 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/IO/Implicit_function_io_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/IO/Implicit_function_io_plugin.cpp @@ -118,7 +118,7 @@ load_function() const // Add loaded functions to the dialog int i=0; - Q_FOREACH( Implicit_function_interface* f, functions_ ) + for( Implicit_function_interface* f : functions_ ) { ui.functionList->insertItem(i++,f->name()); } @@ -159,7 +159,7 @@ load_function_plugins() if( !pluginsDir.cd(newDir) ) return; } - Q_FOREACH (QString fileName, pluginsDir.entryList(QDir::Files)) + for (QString fileName : pluginsDir.entryList(QDir::Files)) { if ( fileName.contains("plugin") && QLibrary::isLibrary(fileName) ) { diff --git a/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp index 2f61bd32aa82..3573ec548f3c 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp @@ -73,7 +73,7 @@ class Polyhedron_demo_polylines_io_plugin : return qobject_cast(scene->item( scene->mainSelectionIndex())); bool all_polylines_selected = true; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { if (!qobject_cast(scene->item(index))) { diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_2/Mesh_2_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_2/Mesh_2_plugin.cpp index f289245a996f..6c9e1f0a8f42 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_2/Mesh_2_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_2/Mesh_2_plugin.cpp @@ -169,7 +169,7 @@ class Polyhedron_demo_mesh_2_plugin : bool applicable(QAction*) const { - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { //if one polyhedron is found in the selection, it's fine if (qobject_cast(scene->item(index))) @@ -229,8 +229,8 @@ class Polyhedron_demo_mesh_2_plugin : { // extract seeds std::vector seeds; - Q_FOREACH(Scene_points_with_normal_item* points_item, points_items) - Q_FOREACH(Point_set_3::Index it, *points_item->point_set()) + for(Scene_points_with_normal_item* points_item : points_items) + for(Point_set_3::Index it : *points_item->point_set()) seeds.push_back(points_item->point_set()->point(it)); // Create dialog box @@ -275,8 +275,8 @@ class Polyhedron_demo_mesh_2_plugin : double constant_coordinate = polylines_items.back()->polylines.back().back()[constant_coordinate_index]; try{ - Q_FOREACH(Scene_polylines_item* polylines_item, polylines_items) - Q_FOREACH(const std::vector& points, + for(Scene_polylines_item* polylines_item : polylines_items) + for(const std::vector& points : polylines_item->polylines) cdt.insert_constraint(points.begin(),points.end()); }catch(std::runtime_error&) @@ -357,10 +357,10 @@ class Polyhedron_demo_mesh_2_plugin : { int res=-1; Kernel::Point_3 ref = polylines_items.front()->polylines.front().front(); - Q_FOREACH(Scene_polylines_item* polylines_item, polylines_items) - Q_FOREACH(const std::vector& points, + for(Scene_polylines_item* polylines_item : polylines_items) + for(const std::vector& points : polylines_item->polylines) - Q_FOREACH(const Kernel::Point_3& pt, points) + for(const Kernel::Point_3& pt : points) { int nbe=0, candidate=-1; for (int i=0; i<3; ++i) @@ -377,8 +377,8 @@ class Polyhedron_demo_mesh_2_plugin : } } if (res==-1) return res; - Q_FOREACH(Scene_points_with_normal_item* points_item, points_items) - Q_FOREACH(Point_set_3::Index pt, *points_item->point_set()) + for(Scene_points_with_normal_item* points_item : points_items) + for(Point_set_3::Index pt : *points_item->point_set()) if (points_item->point_set()->point(pt)[res]!=ref[res]) return -1; return res; @@ -394,7 +394,7 @@ public Q_SLOTS: std::vector points_items; double inf = std::numeric_limits::infinity(); CGAL::Three::Scene_interface::Bbox bbox(inf,inf,inf,-inf,-inf,-inf); - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_polylines_item* polylines_item = qobject_cast(scene->item(index)); diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp index ca542e80e26d..27a258882ba2 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp @@ -313,7 +313,7 @@ class Io_image_plugin : // Look for action just after "Load..." action QAction* actionAfterLoad = nullptr; for(QList::iterator it_action = menuFileActions.begin(), - end = menuFileActions.end() ; it_action != end ; ++ it_action ) //Q_FOREACH( QAction* action, menuFileActions) + end = menuFileActions.end() ; it_action != end ; ++ it_action ) //for( QAction* action : menuFileActions) { if(NULL != *it_action && (*it_action)->text().contains("Load...")) { @@ -594,7 +594,7 @@ public Q_SLOTS: void connectNewViewer(QObject* o) { - Q_FOREACH(Controls c, group_map.values()) + for(Controls c : group_map.values()) { o->installEventFilter(c.x_item); o->installEventFilter(c.y_item); @@ -827,7 +827,7 @@ public Q_SLOTS: x_item->setColor(QColor("red")); y_item->setColor(QColor("green")); z_item->setColor(QColor("blue")); - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()) { viewer->installEventFilter(x_item); viewer->installEventFilter(y_item); @@ -927,7 +927,7 @@ private Q_SLOTS: CGAL::Three::Scene_group_item* group_item = qobject_cast(sender()); if(group_item) { - Q_FOREACH(CGAL::Three::Scene_item* key, group_map.keys()) + for(CGAL::Three::Scene_item* key : group_map.keys()) { if(group_map[key].group == group_item) { @@ -966,7 +966,7 @@ private Q_SLOTS: group_map.remove(img_item); QList deletion; - Q_FOREACH(Scene_interface::Item_id id, group->getChildren()) + for(Scene_interface::Item_id id : group->getChildren()) { Scene_item* child = group->getChild(id); group->unlockChild(child); diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_implicit_function_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_implicit_function_plugin.cpp index 16bffeffa22b..7f31055cf59c 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_implicit_function_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_implicit_function_plugin.cpp @@ -104,7 +104,7 @@ init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface, Mes // Look for action just after "Load..." action QAction* actionAfterLoad = NULL; for ( QList::iterator it_action = menuFileActions.begin(), - end = menuFileActions.end() ; it_action != end ; ++ it_action ) //Q_FOREACH( QAction* action, menuFileActions) + end = menuFileActions.end() ; it_action != end ; ++ it_action ) //for( QAction* action : menuFileActions) { if ( NULL != *it_action && (*it_action)->text().contains("Load") ) { @@ -139,7 +139,7 @@ load_function() const // Add loaded functions to the dialog int i=0; - Q_FOREACH( Implicit_function_interface* f, functions_ ) + for( Implicit_function_interface* f : functions_ ) { ui.functionList->insertItem(i++,f->name()); } @@ -180,7 +180,7 @@ load_function_plugins() if( !pluginsDir.cd(newDir) ) return; } - Q_FOREACH (QString fileName, pluginsDir.entryList(QDir::Files)) + for (QString fileName : pluginsDir.entryList(QDir::Files)) { if ( fileName.contains("plugin") && QLibrary::isLibrary(fileName) ) { diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp index a146afb007a0..f490c0da691c 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp @@ -992,7 +992,7 @@ meshing_done(Meshing_thread* thread) .arg(source_item_name_) .arg(thread->time()); - Q_FOREACH( QString param, thread->parameters_log() ) + for( QString param : thread->parameters_log() ) { str.append(QString("( %1 )
").arg(param)); } @@ -1042,7 +1042,7 @@ treat_result(Scene_item& source_item, result_item->setRenderingMode(source_item.renderingMode()); result_item->set_data_item(&source_item); - Q_FOREACH(int ind, scene->selectionIndices()) { + for(int ind : scene->selectionIndices()) { scene->item(ind)->setVisible(false); } const Scene_interface::Item_id index = scene->mainSelectionIndex(); @@ -1056,7 +1056,7 @@ treat_result(Scene_item& source_item, Scene_surface_mesh_item* new_item = new Scene_surface_mesh_item; CGAL::facets_in_complex_3_to_triangle_mesh(result_item->c3t3(), *new_item->face_graph()); new_item->setName(tr("%1 [Remeshed]").arg(source_item_name_)); - Q_FOREACH(int ind, scene->selectionIndices()) { + for(int ind : scene->selectionIndices()) { scene->item(ind)->setVisible(false); } const Scene_interface::Item_id index = scene->mainSelectionIndex(); diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Offset_meshing_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Offset_meshing_plugin.cpp index 8b0e0bab57b5..d4a5dc15ffba 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Offset_meshing_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Offset_meshing_plugin.cpp @@ -512,7 +512,7 @@ offset_meshing() Scene_polylines_item* polylines_item = nullptr; bool mesh_or_soup_item_found = false; - Q_FOREACH(Scene_interface::Item_id index, scene->selectionIndices()) + for(Scene_interface::Item_id index : scene->selectionIndices()) { if(!mesh_or_soup_item_found) { diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Optimization_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Optimization_plugin.cpp index 3c0a56a87f38..6454a6f4cde2 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Optimization_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Optimization_plugin.cpp @@ -561,7 +561,7 @@ optimization_done(Optimizer_thread* thread) .arg(thread->time()) .arg(translate(return_code)); - Q_FOREACH( QString param, thread->parameters_log() ) + for( QString param : thread->parameters_log() ) { str.append(QString("( %1 )
").arg(param)); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Volume_plane.h b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Volume_plane.h index d54505abb1b5..6dbe84a28e81 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Volume_plane.h +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Volume_plane.h @@ -515,7 +515,7 @@ void Volume_plane::draw(Viewer_interface *viewer) const { updateCurrentCube(); if(cur_cube != currentCube) { - Q_FOREACH(CGAL::QGLViewer*v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer*v : CGAL::QGLViewer::QGLViewerPool()){ v->setProperty("need_update", true); } } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Operations_on_polyhedra/Clip_polyhedron_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Operations_on_polyhedra/Clip_polyhedron_plugin.cpp index 02af6fc0272c..a78cd1150bae 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Operations_on_polyhedra/Clip_polyhedron_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Operations_on_polyhedra/Clip_polyhedron_plugin.cpp @@ -157,7 +157,7 @@ if it has a closed contour on the clipping polyhedron. Otherwise, it will be lef } bool applicable(QAction*) const { - Q_FOREACH(int id, scene->selectionIndices()) + for(int id : scene->selectionIndices()) { if(qobject_cast(scene->item(id))) return true; @@ -396,7 +396,7 @@ public Q_SLOTS: } } //apply the clipping function - Q_FOREACH(Scene_item* item, polyhedra) + for(Scene_item* item : polyhedra) { Scene_surface_mesh_item *sm_item = qobject_cast(item); if(!ui_widget.do_not_modify_CheckBox->isChecked() && CGAL::Polygon_mesh_processing::does_self_intersect(*sm_item->face_graph())) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp index d9fbc5a094b4..1a0a9e34f35e 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Affine_transform_plugin.cpp @@ -126,7 +126,7 @@ class Polyhedron_demo_affine_transform_plugin QList lineEdits; lineEdits << ui.lineEditA << ui.lineEditX << ui.lineEditY << ui.lineEditZ; - Q_FOREACH(QLineEdit* widget, lineEdits) + for(QLineEdit* widget : lineEdits) { QSizePolicy sp_retain = widget->sizePolicy(); sp_retain.setRetainSizeWhenHidden(true); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Basic_generator_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Basic_generator_plugin.cpp index 4397d8f9362a..51355a07b5fd 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Basic_generator_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Basic_generator_plugin.cpp @@ -128,7 +128,7 @@ public : this, SLOT(on_actionPolyline_triggered())); _actions << actionPolyline; - Q_FOREACH(QAction* action, _actions) + for(QAction* action : _actions) { menu->addAction(action); } @@ -689,7 +689,7 @@ void Basic_generator_plugin::generatePoints() return; } - Q_FOREACH(QString s, list) + for(QString s : list) { if(!s.isEmpty()) { @@ -754,7 +754,7 @@ void Basic_generator_plugin::generateLines() msgBox->exec(); return; } - Q_FOREACH(QString s, list) + for(QString s : list) { if(!s.isEmpty()) { diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Clipping_box_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Clipping_box_plugin.cpp index a2dd4f791397..aa32c5005941 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Clipping_box_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Clipping_box_plugin.cpp @@ -144,7 +144,7 @@ void Clipping_box_plugin::clipbox() item->setName("Clipping box"); item->setRenderingMode(FlatPlusEdges); - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()) viewer->installEventFilter(item); scene->addItem(item); @@ -182,7 +182,7 @@ void Clipping_box_plugin::do_clip(bool b) typedef CGAL::Epick Kernel; typedef CGAL::Polyhedron_3 Mesh; - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = qobject_cast(v); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp index 1fafba9d82c6..ee591ddc04ae 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp @@ -29,7 +29,7 @@ class Create_bbox_mesh_plugin : bool applicable(QAction*) const { bool at_least_one_non_empty = false; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_item* item = scene->item(index); if(!item->isFinite()) @@ -108,7 +108,7 @@ bbox(bool extended) int item_count = 0; QString name; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_item* item = scene->item(index); if(item->isFinite() && !item->isEmpty()) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_obb_mesh_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_obb_mesh_plugin.cpp index 7ca4e060a92f..cae392b0c943 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_obb_mesh_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_obb_mesh_plugin.cpp @@ -37,7 +37,7 @@ class Create_obb_mesh_plugin bool applicable(QAction*) const { bool at_least_one_non_empty = false; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_item* item = scene->item(index); if(!item->isFinite()) @@ -144,7 +144,7 @@ void Create_obb_mesh_plugin:: gather_mesh_points(std::vector& points) { - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_item* item = scene->item(index); @@ -247,7 +247,7 @@ obb() << std::endl; QString name; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_item* item = scene->item(index); if(!item->isEmpty()) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Edit_box_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Edit_box_plugin.cpp index 29c0e731d3ae..77569a7b810b 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Edit_box_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Edit_box_plugin.cpp @@ -98,7 +98,7 @@ void Edit_box_plugin::bbox() this, SLOT(enableAction())); item->setName("Edit box"); item->setRenderingMode(FlatPlusEdges); - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()) viewer->installEventFilter(item); scene->addItem(item); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Pca_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Pca_plugin.cpp index 20cce18487c7..2fcecd22abd4 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Pca_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Pca_plugin.cpp @@ -71,7 +71,7 @@ class Polyhedron_demo_pca_plugin : this, SLOT(on_actionFitLine_triggered())); _actions << actionFitPlane << actionFitLine; - Q_FOREACH(QAction* action, _actions) + for(QAction* action : _actions) action->setProperty("subMenuName", "Principal Component Analysis"); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_edit_box_item.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_edit_box_item.cpp index cac1c7c3236d..af7ae5a31459 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_edit_box_item.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_edit_box_item.cpp @@ -289,7 +289,7 @@ Scene_edit_box_item::Scene_edit_box_item(const Scene_interface *scene_interface) are_buffers_filled = false; - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { v->setMouseTracking(true); } @@ -652,7 +652,7 @@ void Scene_edit_box_item::highlight(Viewer_interface *viewer) tc->setCenterSize(d->hl_vertex.size()); //draw d->hl_type = Scene_edit_box_item_priv::VERTEX; - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); @@ -681,7 +681,7 @@ void Scene_edit_box_item::highlight(Viewer_interface *viewer) ec->setFlatDataSize(d->hl_vertex.size()); //draw d->hl_type = Scene_edit_box_item_priv::EDGE; - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); @@ -719,7 +719,7 @@ void Scene_edit_box_item::highlight(Viewer_interface *viewer) tc->setFlatDataSize(d->hl_vertex.size()); //draw d->hl_type = Scene_edit_box_item_priv::FACE; - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Degenerated_faces_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Degenerated_faces_plugin.cpp index b3fa95830f32..7f490dc1f93c 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Degenerated_faces_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Degenerated_faces_plugin.cpp @@ -112,7 +112,7 @@ void Degenerated_faces_plugin::on_actionDegenFaces_triggered() QApplication::setOverrideCursor(Qt::WaitCursor); bool found = false; std::vector selected_polys; - Q_FOREACH(Scene_interface::Item_id index, scene->selectionIndices()) + for(Scene_interface::Item_id index : scene->selectionIndices()) { Scene_facegraph_item* poly_item = qobject_cast(scene->item(index)); @@ -121,7 +121,7 @@ void Degenerated_faces_plugin::on_actionDegenFaces_triggered() selected_polys.push_back(poly_item); } } - Q_FOREACH(Scene_facegraph_item* poly_item, selected_polys) + for(Scene_facegraph_item* poly_item : selected_polys) { Face_graph* pMesh = poly_item->polyhedron(); std::vector facets; @@ -174,7 +174,7 @@ void Degenerated_faces_plugin::on_actionDegenEdges_triggered() QApplication::setOverrideCursor(Qt::WaitCursor); bool found = false; std::vector selected_polys; - Q_FOREACH(Scene_interface::Item_id index, scene->selectionIndices()) + for(Scene_interface::Item_id index : scene->selectionIndices()) { Scene_facegraph_item* poly_item = qobject_cast(scene->item(index)); @@ -183,7 +183,7 @@ void Degenerated_faces_plugin::on_actionDegenEdges_triggered() selected_polys.push_back(poly_item); } } - Q_FOREACH(Scene_facegraph_item* poly_item, selected_polys) + for(Scene_facegraph_item* poly_item : selected_polys) { Face_graph* pMesh = poly_item->polyhedron(); std::vector edges; diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Detect_sharp_edges_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Detect_sharp_edges_plugin.cpp index 38dfc613c253..e8065f1ddb0b 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Detect_sharp_edges_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Detect_sharp_edges_plugin.cpp @@ -41,7 +41,7 @@ class Polyhedron_demo_detect_sharp_edges_plugin : } bool applicable(QAction*) const { - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_facegraph_item* item = qobject_cast(scene->item(index)); @@ -82,7 +82,7 @@ void Polyhedron_demo_detect_sharp_edges_plugin::detectSharpEdges(bool input_dial // Get selected items QList polyhedrons; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_facegraph_item* item = qobject_cast(scene->item(index)); @@ -113,7 +113,7 @@ void Polyhedron_demo_detect_sharp_edges_plugin::detectSharpEdges(bool input_dial QApplication::setOverrideCursor(Qt::WaitCursor); QApplication::processEvents(); std::size_t first_patch = 1; - Q_FOREACH(Poly_tuple tuple, polyhedrons) + for(Poly_tuple tuple : polyhedrons) { Scene_facegraph_item* item = qobject_cast(scene->item(tuple.first)); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Engrave_text_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Engrave_text_plugin.cpp index c45bfdc619e7..dc45cd9ce624 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Engrave_text_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Engrave_text_plugin.cpp @@ -556,8 +556,8 @@ public Q_SLOTS: float pxmin(8000),pxmax(-8000), pymin(8000), pymax(-8000); - Q_FOREACH(QPolygonF poly, polys){ - Q_FOREACH(QPointF pf, poly) + for(QPolygonF poly : polys){ + for(QPointF pf : poly) { EPICK::Point_2 v = EPICK::Point_2(pf.x(),-pf.y()); if(v.x() < pxmin) @@ -570,9 +570,9 @@ public Q_SLOTS: pymax = v.y(); } } - Q_FOREACH(QPolygonF poly, polys){ + for(QPolygonF poly : polys){ polylines.push_back(std::vector()); - Q_FOREACH(QPointF pf, poly) + for(QPointF pf : poly) { EPICK::Point_2 v = EPICK::Point_2(pf.x(),-pf.y()); polylines.back().push_back(EPICK::Point_2(v.x()*(xmax-xmin)/(pxmax-pxmin) +xmin , @@ -705,7 +705,7 @@ public Q_SLOTS: CGAL::Bbox_2 bbox= CGAL::bbox_2(local_polylines.front().begin(), local_polylines.front().end(), EPICK()); - Q_FOREACH(const std::vector& points, + for(const std::vector& points : local_polylines) { bbox += CGAL::bbox_2(points.begin(), points.end(), EPICK()); @@ -965,4 +965,3 @@ public Q_SLOTS: Navigation* navigation = nullptr; }; #include "Engrave_text_plugin.moc" - diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp index da2089147d30..f459ae84894b 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp @@ -91,7 +91,7 @@ public : } void invalidateOpenGLBuffers() Q_DECL_OVERRIDE { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); @@ -419,7 +419,7 @@ private Q_SLOTS: oliver_queen->manipulatedFrame()->setConstraint(&constraint); oliver_queen->setColor(QColor(Qt::green)); oliver_queen->setName("Extrude item"); - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()) viewer->installEventFilter(oliver_queen); mw->installEventFilter(oliver_queen); scene->addItem(oliver_queen); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Hole_filling_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Hole_filling_plugin.cpp index 06640c85b9c2..98399be1d54f 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Hole_filling_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Hole_filling_plugin.cpp @@ -109,7 +109,7 @@ public: typedef std::list Polyline_data_list; get_holes(); active_hole = polyline_data_list.end(); - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()) { viewer->installEventFilter(this); } @@ -435,7 +435,7 @@ public Q_SLOTS: ui_widget.Accept_button->setVisible(true); ui_widget.Reject_button->setVisible(true); - Q_FOREACH( QWidget* w, ui_widget.dockWidgetContents->findChildren() ) + for( QWidget* w : ui_widget.dockWidgetContents->findChildren() ) { w->setEnabled(false); } ui_widget.Accept_button->setEnabled(true); @@ -445,7 +445,7 @@ public Q_SLOTS: ui_widget.Accept_button->setVisible(false); ui_widget.Reject_button->setVisible(false); - Q_FOREACH( QWidget* w, ui_widget.dockWidgetContents->findChildren() ) + for( QWidget* w : ui_widget.dockWidgetContents->findChildren() ) { w->setEnabled(true); } } } @@ -882,7 +882,7 @@ void Polyhedron_demo_hole_filling_plugin::on_Fill_from_selection_button() { vertices.push_back(target(opposite(b_edges.back(),*poly), *poly)); boost::property_map::type vpm = get(CGAL::vertex_point,*poly); - Q_FOREACH(fg_vertex_descriptor vh, vertices) + for(fg_vertex_descriptor vh : vertices) { points.push_back(get(vpm,vh)); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp index 53693c316379..288c59c36276 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Isotropic_remeshing_plugin.cpp @@ -228,7 +228,7 @@ class Polyhedron_demo_isotropic_remeshing_plugin : bool ok(true), found_poly(false); - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { if (!qobject_cast(scene->item(index))) ok = false; diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Join_and_split_polyhedra_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Join_and_split_polyhedra_plugin.cpp index 49e21cc66351..2688c4a80346 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Join_and_split_polyhedra_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Join_and_split_polyhedra_plugin.cpp @@ -62,7 +62,7 @@ class Polyhedron_demo_join_and_split_polyhedra_plugin: bool applicable(QAction* a) const { - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { if (qobject_cast(scene->item(index))) return true; @@ -94,7 +94,7 @@ void Polyhedron_demo_join_and_split_polyhedra_plugin::on_actionJoinPolyhedra_tri return; } std::vector indices_to_remove; - Q_FOREACH(int index, scene->selectionIndices()) { + for(int index : scene->selectionIndices()) { if (index == mainSelectionIndex) continue; @@ -113,7 +113,7 @@ void Polyhedron_demo_join_and_split_polyhedra_plugin::on_actionJoinPolyhedra_tri //remove the other items std::sort(indices_to_remove.begin(), indices_to_remove.end(), std::greater()); - Q_FOREACH(int index, indices_to_remove) + for(int index : indices_to_remove) { scene->erase(index); } @@ -137,7 +137,7 @@ bool operator()(const FaceGraph& mesh1, const FaceGraph& mesh2) void Polyhedron_demo_join_and_split_polyhedra_plugin::on_actionSplitPolyhedra_triggered() { - Q_FOREACH(int index, scene->selectionIndices()) { + for(int index : scene->selectionIndices()) { Scene_facegraph_item* item = qobject_cast(scene->item(index)); if(item) @@ -203,7 +203,7 @@ void Polyhedron_demo_join_and_split_polyhedra_plugin::on_actionColorConnectedCom std::set to_skip; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_facegraph_item* item = qobject_cast(scene->item(index)); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Mean_curvature_flow_skeleton_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Mean_curvature_flow_skeleton_plugin.cpp index 6684a48e7b78..81bd34ee9978 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Mean_curvature_flow_skeleton_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Mean_curvature_flow_skeleton_plugin.cpp @@ -891,7 +891,7 @@ Polyhedron_demo_mean_curvature_flow_skeleton_plugin::createContractedItem(Scene_ Scene_mcf_item* Polyhedron_demo_mean_curvature_flow_skeleton_plugin::getMCFItem() { - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_mcf_item* mcf = qobject_cast(scene->item(index)); if(mcf) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Orient_soup_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Orient_soup_plugin.cpp index 7ef5a3f2e585..de23c0ac471c 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Orient_soup_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Orient_soup_plugin.cpp @@ -34,7 +34,7 @@ class Polyhedron_demo_orient_soup_plugin : CGAL::Three::Scene_interface* scene_interface, Messages_interface* m); bool applicable(QAction* action) const { - Q_FOREACH(CGAL::Three::Scene_interface::Item_id index, scene->selectionIndices()) { + for(CGAL::Three::Scene_interface::Item_id index : scene->selectionIndices()) { if(qobject_cast(scene->item(index))) return true; else @@ -139,7 +139,7 @@ void set_fcolors(SMesh* smesh, std::vector colors) void Polyhedron_demo_orient_soup_plugin::orientSM() { - Q_FOREACH(CGAL::Three::Scene_interface::Item_id index, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id index : scene->selectionIndices()) { Scene_polygon_soup_item* item = qobject_cast(scene->item(index)); @@ -335,4 +335,3 @@ void Polyhedron_demo_orient_soup_plugin::cleanSoup() item->itemChanged(); } #include "Orient_soup_plugin.moc" - diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Point_inside_polyhedron_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Point_inside_polyhedron_plugin.cpp index 85238d26ff43..61e15f68eb32 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Point_inside_polyhedron_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Point_inside_polyhedron_plugin.cpp @@ -108,7 +108,7 @@ public Q_SLOTS: std::vectorinside_smesh_testers; std::vector point_sets; - Q_FOREACH(CGAL::Three::Scene_interface::Item_id id, scene->selectionIndices()) { + for(CGAL::Three::Scene_interface::Item_id id : scene->selectionIndices()) { Scene_surface_mesh_item* sm_item = qobject_cast(scene->item(id)); if (sm_item){ inside_smesh_testers.push_back(new Point_inside_smesh(*(sm_item->polyhedron()))); @@ -171,7 +171,7 @@ public Q_SLOTS: bool found = false; // for repaint - Q_FOREACH(CGAL::Three::Scene_interface::Item_id id, scene->selectionIndices()) { + for(CGAL::Three::Scene_interface::Item_id id : scene->selectionIndices()) { Scene_points_with_normal_item* point_item = qobject_cast(scene->item(id)); if(point_item) { found = true; @@ -196,7 +196,7 @@ public Q_SLOTS: // warning about '*bbox' not being initialized. // -- Laurent Rineau, 2014/10/30 - Q_FOREACH(CGAL::Three::Scene_interface::Item_id id, scene->selectionIndices()) { + for(CGAL::Three::Scene_interface::Item_id id : scene->selectionIndices()) { Scene_surface_mesh_item* sm_item = qobject_cast(scene->item(id)); if(sm_item) { if(!bbox) { @@ -254,7 +254,7 @@ public Q_SLOTS: private Q_SLOTS: void resetGeneratedPoints(QObject* o) { - Q_FOREACH(Scene_points_with_normal_item* item , generated_points) + for(Scene_points_with_normal_item* item : generated_points) if(item == o) { generated_points.removeAll(item); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Polyhedron_stitching_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Polyhedron_stitching_plugin.cpp index 7244edde87ef..6bedf046e855 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Polyhedron_stitching_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Polyhedron_stitching_plugin.cpp @@ -52,7 +52,7 @@ class Polyhedron_demo_polyhedron_stitching_plugin : } bool applicable(QAction*) const { - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { if ( qobject_cast(scene->item(index)) ) return true; @@ -120,7 +120,7 @@ void Polyhedron_demo_polyhedron_stitching_plugin::on_actionDetectBorders_trigger void Polyhedron_demo_polyhedron_stitching_plugin::on_actionDetectBorders_triggered() { - Q_FOREACH(int index, scene->selectionIndices()){ + for(int index : scene->selectionIndices()){ on_actionDetectBorders_triggered(index); } } @@ -142,7 +142,7 @@ void Polyhedron_demo_polyhedron_stitching_plugin::on_actionStitchBorders_trigger void Polyhedron_demo_polyhedron_stitching_plugin::on_actionStitchBorders_triggered() { - Q_FOREACH(int index, scene->selectionIndices()){ + for(int index : scene->selectionIndices()){ on_actionStitchBorders_triggered(index); } } @@ -177,14 +177,14 @@ void Polyhedron_demo_polyhedron_stitching_plugin::on_actionMergeReversibleCCs_tr void Polyhedron_demo_polyhedron_stitching_plugin::on_actionStitchByCC_triggered() { - Q_FOREACH(int index, scene->selectionIndices()){ + for(int index : scene->selectionIndices()){ on_actionStitchByCC_triggered(index); } } void Polyhedron_demo_polyhedron_stitching_plugin::on_actionMergeReversibleCCs_triggered() { - Q_FOREACH(int index, scene->selectionIndices()){ + for(int index : scene->selectionIndices()){ on_actionMergeReversibleCCs_triggered(index); } } diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Remesh_planar_patches_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Remesh_planar_patches_plugin.cpp index 1ea142c0795f..067f2c8fe721 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Remesh_planar_patches_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Remesh_planar_patches_plugin.cpp @@ -88,7 +88,7 @@ class Polyhedron_demo_remesh_planar_patches_plugin : if (scene->selectionIndices().size() == 1) return qobject_cast(scene->item(scene->mainSelectionIndex())); - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { if (qobject_cast(scene->item(index))) return true; diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Repair_polyhedron_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Repair_polyhedron_plugin.cpp index 5ecc8921433e..c4c68388d8c6 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Repair_polyhedron_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Repair_polyhedron_plugin.cpp @@ -273,7 +273,7 @@ void Polyhedron_demo_repair_polyhedron_plugin::on_actionSnapBorders_triggered() { std::vector tolerances/* = 0.005, 0.0125, 0.025, 0.05, 0.07 */; bool ok; - Q_FOREACH(QString tol_text, ui.tolerances->text().split(",")) + for(QString tol_text : ui.tolerances->text().split(",")) { double d = tol_text.toDouble(&ok); if (ok) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.h b/Polyhedron/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.h index 46d4c02ac9d6..e25a9ee15103 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.h +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.h @@ -112,7 +112,7 @@ class SCENE_FACEGRAPH_ITEM_K_RING_SELECTION_EXPORT Scene_facegraph_item_k_ring_s void setEditMode(bool b) { is_edit_mode = b; - Q_FOREACH(CGAL::QGLViewer* viewer,CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* viewer :CGAL::QGLViewer::QGLViewerPool()){ //for highlighting viewer->setMouseTracking(true); } @@ -132,7 +132,7 @@ class SCENE_FACEGRAPH_ITEM_K_RING_SELECTION_EXPORT Scene_facegraph_item_k_ring_s is_ready_to_paint_select = true; is_lasso_active = false; - Q_FOREACH(CGAL::QGLViewer* viewer,CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* viewer :CGAL::QGLViewer::QGLViewerPool()){ viewer->installEventFilter(this); viewer->setMouseBindingDescription(Qt::Key_D, Qt::ShiftModifier, Qt::LeftButton, "(When in selection plugin) Removes the clicked primitive from the selection. "); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Selection_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Selection_plugin.cpp index f4134ecfd150..b1ffae6e97bd 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Selection_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Selection_plugin.cpp @@ -1201,7 +1201,7 @@ void Polyhedron_demo_selection_plugin::on_actionSelfIntersection_triggered() CGAL::Three::Three::CursorScopeGuard guard(tmp_cursor); bool found = false; std::vector selected_polys; - Q_FOREACH(Scene_interface::Item_id index, scene->selectionIndices()) + for(Scene_interface::Item_id index : scene->selectionIndices()) { Scene_face_graph_item* poly_item = qobject_cast(scene->item(index)); @@ -1210,7 +1210,7 @@ void Polyhedron_demo_selection_plugin::on_actionSelfIntersection_triggered() selected_polys.push_back(poly_item); } } - Q_FOREACH(Scene_face_graph_item* poly_item, selected_polys) + for(Scene_face_graph_item* poly_item : selected_polys) { Face_graph* mesh = poly_item->face_graph(); std::vector > faces; diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Surface_intersection_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Surface_intersection_plugin.cpp index 036cdc430261..968a270f7064 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Surface_intersection_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Surface_intersection_plugin.cpp @@ -109,7 +109,7 @@ public Q_SLOTS: void Polyhedron_demo_intersection_plugin::intersectionSurfaces() { Scene_face_graph_item* itemA = nullptr; - Q_FOREACH(CGAL::Three::Scene_interface::Item_id index, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id index : scene->selectionIndices()) { Scene_face_graph_item* itemB = qobject_cast(scene->item(index)); @@ -175,7 +175,7 @@ void Polyhedron_demo_intersection_plugin::intersectionPolylines() std::pair > Poly_intersection; Scene_polylines_item* itemA = nullptr; - Q_FOREACH(CGAL::Three::Scene_interface::Item_id index, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id index : scene->selectionIndices()) { Scene_polylines_item* itemB = qobject_cast(scene->item(index)); @@ -196,11 +196,11 @@ void Polyhedron_demo_intersection_plugin::intersectionPolylines() QElapsedTimer time; time.start(); std::vector polyA, polyB; - Q_FOREACH(const Polyline_3& poly, itemA->polylines) + for(const Polyline_3& poly : itemA->polylines) { polyA.push_back(poly); } - Q_FOREACH(const Polyline_3& poly, itemB->polylines) + for(const Polyline_3& poly : itemB->polylines) { polyB.push_back(poly); } @@ -208,7 +208,7 @@ void Polyhedron_demo_intersection_plugin::intersectionPolylines() std::vector poly_intersections; PMP::internal::compute_polylines_polylines_intersection(polyA, polyB,std::back_inserter(poly_intersections) , Kernel()); - Q_FOREACH(const Poly_intersection& inter, poly_intersections) + for(const Poly_intersection& inter : poly_intersections) { Kernel::Segment_3 segA(polyA[inter.first.first][inter.first.second], polyA[inter.first.first][inter.first.second +1]); Kernel::Segment_3 segB(polyB[inter.second.first][inter.second.second], polyB[inter.second.first][inter.second.second+1]); @@ -293,7 +293,7 @@ void Polyhedron_demo_intersection_plugin::intersectionSurfacePolyline() time.start(); Scene_face_graph_item::Face_graph tm = *itemA->face_graph(); std::vector Afaces; - Q_FOREACH(face_descriptor f, faces(tm)) + for(face_descriptor f : faces(tm)) { Afaces.push_back(f); } @@ -302,7 +302,7 @@ void Polyhedron_demo_intersection_plugin::intersectionSurfacePolyline() std::vector polylines; //Polyline_3 polyline; - Q_FOREACH(const Polyline_3 &pol, itemB->polylines) + for(const Polyline_3 &pol : itemB->polylines) { polylines.push_back(pol); } @@ -313,7 +313,7 @@ void Polyhedron_demo_intersection_plugin::intersectionSurfacePolyline() std::back_inserter(poly_intersections), CGAL::parameters::default_values()); - Q_FOREACH(const Poly_intersection& inter, poly_intersections) + for(const Poly_intersection& inter : poly_intersections) { Kernel::Segment_3 segment(polylines[inter.second.first][inter.second.second], polylines[inter.second.first][inter.second.second+1]); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Triangulate_facets_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Triangulate_facets_plugin.cpp index 6b85c6fb45be..cd91bd1a6eb1 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Triangulate_facets_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Triangulate_facets_plugin.cpp @@ -65,7 +65,7 @@ class Polyhedron_demo_triangulate_facets_plugin : } bool applicable(QAction*) const { - Q_FOREACH(CGAL::Three::Scene_interface::Item_id index, scene->selectionIndices()){ + for(CGAL::Three::Scene_interface::Item_id index : scene->selectionIndices()){ if ( qobject_cast(scene->item(index)) ) return true; if ( qobject_cast(scene->item(index))) @@ -80,7 +80,7 @@ public Q_SLOTS: void triangulate() { QApplication::setOverrideCursor(Qt::WaitCursor); - Q_FOREACH(CGAL::Three::Scene_interface::Item_id index, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id index : scene->selectionIndices()) { Scene_surface_mesh_item* sm_item = qobject_cast(scene->item(index)); diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Alpha_shape_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Alpha_shape_plugin.cpp index 429781b20001..572f2a698a08 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Alpha_shape_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Alpha_shape_plugin.cpp @@ -363,7 +363,7 @@ void Scene_alpha_shape_item::invalidateOpenGLBuffers() { getTriangleContainer(0)->reset_vbos(ALL); setBuffersFilled(false); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { Viewer_interface* viewer = static_cast(v); if(viewer == NULL) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Merge_point_sets_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Merge_point_sets_plugin.cpp index 5a5c58b41537..694ce765c3b0 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Merge_point_sets_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Merge_point_sets_plugin.cpp @@ -39,7 +39,7 @@ class Polyhedron_demo_merge_point_sets_plugin : if (scene->selectionIndices().size() < 2) return false; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { if ( qobject_cast(scene->item(index)) ) return true; @@ -62,7 +62,7 @@ void Polyhedron_demo_merge_point_sets_plugin::on_actionMergePointSets_triggered( = qobject_cast(scene->item(mainSelectionIndex)); QList indices_to_remove; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { if (index == mainSelectionIndex) continue; @@ -82,7 +82,7 @@ void Polyhedron_demo_merge_point_sets_plugin::on_actionMergePointSets_triggered( scene->itemChanged(mainSelectionIndex); //remove the other items - Q_FOREACH(int index, indices_to_remove) + for(int index : indices_to_remove) { scene->erase(index); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_selection_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_selection_plugin.cpp index 634ae8c699b1..9281c202af22 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_selection_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_selection_plugin.cpp @@ -54,7 +54,7 @@ using namespace CGAL::Three; Viewer_interface* getActiveViewer() { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { if(v->hasFocus()) { @@ -606,7 +606,7 @@ class Polyhedron_demo_point_set_selection_plugin : shift_pressing = false; ctrl_pressing = false; - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()) { viewer->installEventFilter(this); } @@ -952,7 +952,7 @@ public Q_SLOTS: connect(edit_box, &Scene_edit_box_item::aboutToBeDestroyed, this, &Polyhedron_demo_point_set_selection_plugin::reset_editbox); scene->addItem(edit_box); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ v->installEventFilter(edit_box); } connect(mw, SIGNAL(newViewerCreated(QObject*)), diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp index e79f43e02d6b..5648125b774a 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp @@ -481,7 +481,7 @@ class Polyhedron_demo_point_set_shape_detection_plugin : ++index; } - Q_FOREACH(Scene_group_item* group, groups) + for(Scene_group_item* group : groups) if(group && group->getChildren().empty()) delete group; @@ -841,7 +841,7 @@ class Polyhedron_demo_point_set_shape_detection_plugin : ++index; } - Q_FOREACH(Scene_group_item* group, groups) + for(Scene_group_item* group : groups) if(group && group->getChildren().empty()) delete group; diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_to_mesh_distance_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_to_mesh_distance_plugin.cpp index 68b777f9ab89..ca915ab64cb8 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_to_mesh_distance_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_to_mesh_distance_plugin.cpp @@ -133,7 +133,7 @@ class Point_set_to_mesh_distance_plugin : return false; Scene_surface_mesh_item* sm = nullptr; Scene_points_with_normal_item* pn = nullptr; - Q_FOREACH(Scene_interface::Item_id i,scene->selectionIndices()) + for(Scene_interface::Item_id i :scene->selectionIndices()) { if(!sm) sm = qobject_cast(scene->item(i)); @@ -203,7 +203,7 @@ private Q_SLOTS: { Scene_surface_mesh_item* sm = nullptr; Scene_points_with_normal_item* pn = nullptr; - Q_FOREACH(Scene_interface::Item_id i,scene->selectionIndices()) + for(Scene_interface::Item_id i :scene->selectionIndices()) { if(!sm) sm = qobject_cast(scene->item(i)); diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Register_point_sets_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Register_point_sets_plugin.cpp index 037e8510daf6..70f44f0c3dc6 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Register_point_sets_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Register_point_sets_plugin.cpp @@ -125,7 +125,7 @@ class Polyhedron_demo_register_point_sets_plugin : { std::vector items; - Q_FOREACH(int index, scene->selectionIndices()) + for(int index : scene->selectionIndices()) { Scene_points_with_normal_item* item = qobject_cast(scene->item(index)); diff --git a/Polyhedron/demo/Polyhedron/Plugins/Subdivision_methods/Subdivision_methods_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Subdivision_methods/Subdivision_methods_plugin.cpp index 87bb50fd96fe..9b1ff6006722 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Subdivision_methods/Subdivision_methods_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Subdivision_methods/Subdivision_methods_plugin.cpp @@ -48,7 +48,7 @@ class Polyhedron_demo_subdivision_methods_plugin : << actionCatmullClark << actionSqrt3 << actionDooSabin; - Q_FOREACH(QAction* action, _actions) + for(QAction* action : _actions) action->setProperty("subMenuName", "3D Surface Subdivision Methods"); autoConnectActions(); diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Offset_meshing_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Offset_meshing_plugin.cpp index 429572694813..eb9be7db96ed 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Offset_meshing_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Offset_meshing_plugin.cpp @@ -437,7 +437,7 @@ class Polyhedron_demo_offset_meshing_plugin : return false; } - Q_FOREACH(CGAL::Three::Scene_interface::Item_id index, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id index : scene->selectionIndices()) { if ( qobject_cast(scene->item(index)) || qobject_cast(scene->item(index)) ) @@ -513,7 +513,7 @@ void Polyhedron_demo_offset_meshing_plugin::offset_meshing() bool mesh_or_soup_item_found = false; - Q_FOREACH(CGAL::Three::Scene_interface::Item_id index, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id index : scene->selectionIndices()) { if (!mesh_or_soup_item_found) { diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Parameterization_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Parameterization_plugin.cpp index fffd332a8322..fc3ab82204f5 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Parameterization_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Parameterization_plugin.cpp @@ -363,7 +363,7 @@ class Polyhedron_demo_parameterization_plugin : << actionMVC << actionOTE; autoConnectActions(); - Q_FOREACH(QAction *action, _actions) + for(QAction *action : _actions) action->setProperty("subMenuName", "Triangulated Surface Mesh Parameterization" ); @@ -396,7 +396,7 @@ class Polyhedron_demo_parameterization_plugin : || qobject_cast(scene->item(scene->mainSelectionIndex())); } - Q_FOREACH(CGAL::Three::Scene_interface::Item_id id, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id id : scene->selectionIndices()) { //if one facegraph is found in the selection, it's fine if (qobject_cast(scene->item(id))) @@ -432,7 +432,7 @@ public Q_SLOTS: int id = scene->mainSelectionIndex(); - Q_FOREACH(UVItem* pl, projections) + for(UVItem* pl : projections) { if(pl==nullptr || pl != projections[scene->item(id)]) continue; @@ -467,7 +467,7 @@ public Q_SLOTS: void destroyPolyline(CGAL::Three::Scene_item* item) { - Q_FOREACH(UVItem* pli, projections) + for(UVItem* pli : projections) { if(projections.key(pli) != item) continue; @@ -506,7 +506,7 @@ public Q_SLOTS: void Polyhedron_demo_parameterization_plugin::on_prevButton_pressed() { int id = scene->mainSelectionIndex(); - Q_FOREACH(UVItem* pl, projections) + for(UVItem* pl : projections) { if(pl==nullptr || pl != projections[scene->item(id)]) @@ -524,7 +524,7 @@ void Polyhedron_demo_parameterization_plugin::on_prevButton_pressed() void Polyhedron_demo_parameterization_plugin::on_nextButton_pressed() { int id = scene->mainSelectionIndex(); - Q_FOREACH(UVItem* pl, projections) + for(UVItem* pl : projections) { if(pl==nullptr || pl != projections[scene->item(id)]) @@ -545,7 +545,7 @@ void Polyhedron_demo_parameterization_plugin::parameterize(const Parameterizatio // get active polyhedron Scene_facegraph_item* poly_item = nullptr; CGAL::Three::Scene_interface::Item_id index = scene->mainSelectionIndex(); - Q_FOREACH(CGAL::Three::Scene_interface::Item_id id, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id id : scene->selectionIndices()) { poly_item = qobject_cast(scene->item(id)); if(!poly_item) @@ -573,7 +573,7 @@ void Polyhedron_demo_parameterization_plugin::parameterize(const Parameterizatio } Scene_polyhedron_selection_item* sel_item = nullptr; bool is_seamed = false; - Q_FOREACH(CGAL::Three::Scene_interface::Item_id id, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id id : scene->selectionIndices()) { sel_item = qobject_cast(scene->item(id)); if(!sel_item) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Scene_polyhedron_shortest_path_item.cpp b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Scene_polyhedron_shortest_path_item.cpp index b961a47da1d8..f32bef66a0f8 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Scene_polyhedron_shortest_path_item.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/Scene_polyhedron_shortest_path_item.cpp @@ -269,7 +269,7 @@ void Scene_polyhedron_shortest_path_item::invalidateOpenGLBuffers() compute_bbox(); setBuffersFilled(false); getPointContainer(0)->reset_vbos(ALL); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); if(viewer == nullptr) @@ -621,7 +621,7 @@ void Scene_polyhedron_shortest_path_item::initialize( d->m_sceneInterface = sceneInterface; connect(polyhedronItem, SIGNAL(item_is_about_to_be_changed()), this, SLOT(poly_item_changed())); - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()) viewer->installEventFilter(this); connect(d->m_mainWindow, SIGNAL(newViewerCreated(QObject*)), this, SLOT(connectNewViewer(QObject*))); diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/UVProjector.h b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/UVProjector.h index 4de499eda0f9..fa776d388487 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/UVProjector.h +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh/UVProjector.h @@ -47,7 +47,7 @@ class UVProjector:public QWidget painter.drawRect(QRect(QPoint(0,0), QPoint(this->width(),this->height()))); painter.setPen(QPen(Qt::black)); - Q_FOREACH(QPointF p, points) + for(QPointF p : points) { /*Translation(-w/2, -h/2) to recenter the scene, then * Scaling then Rotation and finally the Translation diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp index 3e94a0adea31..9f1c6b3ffb9a 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Edit_polyhedron_plugin.cpp @@ -90,7 +90,7 @@ QList Polyhedron_demo_edit_polyhedron_plugin::actions() const { return QList() << actionDeformation; } bool Polyhedron_demo_edit_polyhedron_plugin::applicable(QAction*) const { - Q_FOREACH(CGAL::Three::Scene_interface::Item_id i, scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id i : scene->selectionIndices()) { if(qobject_cast(scene->item(i))) return true; @@ -385,7 +385,7 @@ void Polyhedron_demo_edit_polyhedron_plugin::dock_widget_visibility_changed(bool else selection_item = nullptr; } - Q_FOREACH(CGAL::Three::Scene_interface::Item_id i , scene->selectionIndices()) + for(CGAL::Three::Scene_interface::Item_id i : scene->selectionIndices()) { Scene_facegraph_item* poly_item = qobject_cast(scene->item(i)); if (poly_item && @@ -499,7 +499,7 @@ Scene_edit_polyhedron_item* edit_item = nullptr; bool need_sel(true), need_edit(true); // find selection_item and edit_item in selection - Q_FOREACH(Item_id id, scene->selectionIndices()) + for(Item_id id : scene->selectionIndices()) { if(need_sel) { @@ -536,9 +536,9 @@ void Polyhedron_demo_edit_polyhedron_plugin::importSelection(Scene_polyhedron_se //converts the selection in selected points QVector sel_to_import; - Q_FOREACH(Scene_polyhedron_selection_item::fg_vertex_descriptor vh, selection_item->selected_vertices) + for(Scene_polyhedron_selection_item::fg_vertex_descriptor vh : selection_item->selected_vertices) sel_to_import.push_back(vh); - Q_FOREACH(Scene_polyhedron_selection_item::fg_edge_descriptor ed, selection_item->selected_edges) + for(Scene_polyhedron_selection_item::fg_edge_descriptor ed : selection_item->selected_edges) { Scene_polyhedron_selection_item::fg_vertex_descriptor vh = source(halfedge(ed, *selection_item->polyhedron()),*selection_item->polyhedron()); if(!sel_to_import.contains(vh)) @@ -549,7 +549,7 @@ void Polyhedron_demo_edit_polyhedron_plugin::importSelection(Scene_polyhedron_se sel_to_import.push_back(vh); } - Q_FOREACH(Scene_polyhedron_selection_item::fg_face_descriptor fh, selection_item->selected_facets) + for(Scene_polyhedron_selection_item::fg_face_descriptor fh : selection_item->selected_facets) { CGAL::Halfedge_around_face_circulator hafc(halfedge(fh, *selection_item->polyhedron()), *selection_item->polyhedron()); CGAL::Halfedge_around_face_circulator end = hafc; @@ -561,7 +561,7 @@ void Polyhedron_demo_edit_polyhedron_plugin::importSelection(Scene_polyhedron_se } //makes the selected points ROI - Q_FOREACH(Scene_polyhedron_selection_item::fg_vertex_descriptor vh, sel_to_import) + for(Scene_polyhedron_selection_item::fg_vertex_descriptor vh : sel_to_import) { edit_item->insert_roi_vertex(vh); } @@ -571,7 +571,7 @@ void Polyhedron_demo_edit_polyhedron_plugin::importSelection(Scene_polyhedron_se selection_item->set_highlighting(false); } selection_item->setVisible(false); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) v->update(); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.cpp b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.cpp index c4a060696cdb..86cd884ed14e 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Surface_mesh_deformation/Scene_edit_polyhedron_item.cpp @@ -1137,7 +1137,7 @@ void Scene_edit_polyhedron_item::invalidateOpenGLBuffers() } getEdgeContainer(2)->reset_vbos(ALL); setBuffersFilled(false); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); if(viewer == nullptr) diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp index 05f30fa3da64..ce8046a360f1 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo.cpp @@ -134,7 +134,7 @@ Polyhedron_demo::Polyhedron_demo(int& argc, char **argv, if(!parser.isSet(no_autostart) && autostart_js.exists()) { mainWindow.loadScript(autostart_js); } - Q_FOREACH(QString filename, parser.positionalArguments()) { + for(QString filename : parser.positionalArguments()) { mainWindow.open(filename); } @@ -155,7 +155,7 @@ bool Polyhedron_demo::notify(QObject* receiver, QEvent* event) return QApplication::notify(receiver, event); } catch (std::exception &e) { // find the mainwindow to spawn an error message - Q_FOREACH (QWidget *widget, QApplication::topLevelWidgets()) { + for (QWidget *widget : QApplication::topLevelWidgets()) { if(MainWindow* mw = qobject_cast(widget)) { QMessageBox::critical(mw, tr("Unhandled exception"), diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo_plugin_helper.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo_plugin_helper.cpp index 51a425f57f0e..10d78ec8583f 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo_plugin_helper.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo_plugin_helper.cpp @@ -12,7 +12,7 @@ void CGAL::Three::Polyhedron_demo_plugin_helper::addDockWidget(QDockWidget* dock dock_widget->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetFloatable); QList dockWidgets = mw->findChildren(); int counter = 0; - Q_FOREACH(QDockWidget* dock, dockWidgets) { + for(QDockWidget* dock : dockWidgets) { if( mw->dockWidgetArea(dock) != ::Qt::LeftDockWidgetArea || dock == dock_widget ) { continue; } @@ -45,7 +45,7 @@ void CGAL::Three::Polyhedron_demo_plugin_helper::autoConnectActions() methods << metaObject->method(i); } - Q_FOREACH(QAction* action, actions()) + for(QAction* action : actions()) { bool success = false; // qDebug("Autoconnecting action \"%s\"...", diff --git a/Polyhedron/demo/Polyhedron/Scene.cpp b/Polyhedron/demo/Polyhedron/Scene.cpp index feb5ab6f0024..b3f20ef8ef8b 100644 --- a/Polyhedron/demo/Polyhedron/Scene.cpp +++ b/Polyhedron/demo/Polyhedron/Scene.cpp @@ -113,7 +113,7 @@ Scene::replaceItem(Scene::Item_id index, CGAL::Three::Scene_item* item, bool emi if(group) { m_groups.removeAll(index); - Q_FOREACH(Item_id id, group->getChildren()) + for(Item_id id : group->getChildren()) { CGAL::Three::Scene_item* child = group->getChild(id); group->unlockChild(child); @@ -161,7 +161,7 @@ Scene::replaceItem(Scene::Item_id index, CGAL::Three::Scene_item* item, bool emi Q_EMIT restoreCollapsedState(); redraw_model(); Q_EMIT selectionChanged(index); - Q_FOREACH(Scene_item* child, group_children) + for(Scene_item* child : group_children) { erase(item_id(child)); } @@ -202,7 +202,7 @@ Scene::erase(Scene::Item_id index) item->deleteLater(); selected_item = -1; //re-creates the Scene_view - Q_FOREACH(Item_id id, children) + for(Item_id id : children) { organize_items(this->item(id), invisibleRootItem(), 0); } @@ -224,7 +224,7 @@ Scene::erase(QList indices) return -1; std::unordered_set to_be_removed; int max_index = -1; - Q_FOREACH(int index, indices) { + for(int index : indices) { if(index < 0 || index >= m_entries.size()) continue; @@ -237,7 +237,7 @@ Scene::erase(QList indices) Scene_group_item* group = qobject_cast(item); if(group) { - Q_FOREACH(Item_id id, group->getChildren()) + for(Item_id id : group->getChildren()) { CGAL::Three::Scene_item* child = group->getChild(id); to_be_removed.insert(child); @@ -264,7 +264,7 @@ Scene::erase(QList indices) clear(); index_map.clear(); selected_item = -1; - Q_FOREACH(Item_id id, children) + for(Item_id id : children) { organize_items(item(id), invisibleRootItem(), 0); } @@ -296,17 +296,17 @@ void Scene::remove_item_from_groups(Scene_item* item) } Scene::~Scene() { - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()) { removeViewer(static_cast(viewer)); viewer->setProperty("is_destroyed", true); } - Q_FOREACH(QOpenGLVertexArrayObject* vao, vaos.values()) + for(QOpenGLVertexArrayObject* vao : vaos.values()) { vao->destroy(); delete vao; } - Q_FOREACH(CGAL::Three::Scene_item* item_ptr, m_entries) + for(CGAL::Three::Scene_item* item_ptr : m_entries) { item_ptr->deleteLater(); } @@ -490,7 +490,7 @@ void Scene::initializeGL(CGAL::Three::Viewer_interface* viewer) void Scene::s_itemAboutToBeDestroyed(CGAL::Three::Scene_item *rmv_itm) { - Q_FOREACH(CGAL::Three::Scene_item* item, m_entries) + for(CGAL::Three::Scene_item* item : m_entries) { if(item == rmv_itm) item->itemAboutToBeDestroyed(item); @@ -500,7 +500,7 @@ bool Scene::keyPressEvent(QKeyEvent* e) { bool res = false; - Q_FOREACH(int i, selected_items_list) + for(int i : selected_items_list) { CGAL::Three::Scene_item* item = m_entries[i]; res |= item->keyPressEvent(e); @@ -542,7 +542,7 @@ void Scene::renderScene(const QList &items, viewer->setCurrentPass(pass); viewer->setDepthWriting(writing_depth); viewer->setDepthPeelingFbo(fbo); - Q_FOREACH(Scene_interface::Item_id index, items) + for(Scene_interface::Item_id index : items) { CGAL::Three::Scene_item& item = *m_entries[index]; CGAL::Three::Scene_group_item* group = @@ -586,7 +586,7 @@ void Scene::renderWireScene(const QList &items, QMap& picked_item_IDs, bool with_names) { - Q_FOREACH(Scene_interface::Item_id index, items) + for(Scene_interface::Item_id index : items) { CGAL::Three::Scene_item& item = *m_entries[index]; CGAL::Three::Scene_group_item* group = @@ -651,7 +651,7 @@ void Scene::renderPointScene(const QList &items, QMap& picked_item_IDs, bool with_names) { - Q_FOREACH(Scene_interface::Item_id index, items) + for(Scene_interface::Item_id index : items) { CGAL::Three::Scene_item& item = *m_entries[index]; CGAL::Three::Scene_group_item* group = @@ -691,7 +691,7 @@ void Scene::renderPointScene(const QList &items, bool Scene::has_alpha() { - Q_FOREACH(Scene_item* item, m_entries) + for(Scene_item* item : m_entries) if(item->alpha() != 1.0f) return true; return false; @@ -708,7 +708,7 @@ Scene::draw_aux(bool with_names, CGAL::Three::Viewer_interface* viewer) //the item stays opaque QList opaque_items; QList transparent_items; - Q_FOREACH(Item_id id, children) + for(Item_id id : children) { Scene_item* item = m_entries[id]; Scene_group_item* group = qobject_cast(item); @@ -1049,7 +1049,7 @@ Scene::setData(const QModelIndex &index, break; case ColorColumn: if(selectionIndices().contains(item_id(item))) - Q_FOREACH(Item_id item_index, selectionIndices()) + for(Item_id item_index : selectionIndices()) this->item(item_index)->setColor(value.value()); else item->setColor(value.value()); @@ -1095,13 +1095,13 @@ bool Scene::dropMimeData(const QMimeData * /*data*/, QList groups_children; //get IDs of all children of selected groups - Q_FOREACH(int i, selected_items_list) + for(int i : selected_items_list) { CGAL::Three::Scene_group_item* group = qobject_cast(item(i)); if(group) { - Q_FOREACH(Item_id id, group->getChildren()) + for(Item_id id : group->getChildren()) { CGAL::Three::Scene_item* child = item(id); groups_children << item_id(child); @@ -1109,7 +1109,7 @@ bool Scene::dropMimeData(const QMimeData * /*data*/, } } // Insure that children of selected groups will not be added twice - Q_FOREACH(int i, selected_items_list) + for(int i : selected_items_list) { if(!groups_children.contains(i)) { @@ -1123,7 +1123,7 @@ bool Scene::dropMimeData(const QMimeData * /*data*/, bool one_contained = false; if(group) { - Q_FOREACH(int id, selected_items_list) + for(int id : selected_items_list) { if(group->getChildren().contains(id)) { @@ -1139,7 +1139,7 @@ bool Scene::dropMimeData(const QMimeData * /*data*/, //unless the drop zone is empty, which means the item should be removed from all groups. if(!parent.isValid()) { - Q_FOREACH(Scene_item* item, items) + for(Scene_item* item : items) { if(item->parentGroup()) { @@ -1152,7 +1152,7 @@ bool Scene::dropMimeData(const QMimeData * /*data*/, } return false; } - Q_FOREACH(Scene_item* item, items) + for(Scene_item* item : items) changeGroup(item, group); redraw_model(); return true; @@ -1162,7 +1162,7 @@ bool Scene::dropMimeData(const QMimeData * /*data*/, bool Scene::sort_lists(QVector >&sorted_lists, bool up) { QVector group_found; - Q_FOREACH(int i, selectionIndices()) + for(int i : selectionIndices()) { Scene_item* item = this->item(i); if(item->has_group == 0) @@ -1359,7 +1359,7 @@ QItemSelection Scene::createSelection(int i) QItemSelection Scene::createSelection(QList is) { QItemSelection sel; - Q_FOREACH(int i, is) + for(int i : is) sel.select(index_map.keys(i).at(0), index_map.keys(i).at(4)); return sel; @@ -1610,7 +1610,7 @@ Scene::Bbox Scene::bbox() const bool bbox_initialized = false; Bbox bbox = Bbox(0,0,0,0,0,0); - Q_FOREACH(CGAL::Three::Scene_item* item, m_entries) + for(CGAL::Three::Scene_item* item : m_entries) { if(item->isFinite() && !item->isEmpty() && item->visible()) { if(bbox_initialized) { @@ -1639,7 +1639,7 @@ void Scene::redraw_model() clear(); index_map.clear(); //fills the model - Q_FOREACH(Item_id id, children) + for(Item_id id : children) { organize_items(m_entries[id], invisibleRootItem(), 0); } @@ -1778,7 +1778,7 @@ void Scene::organize_items(Scene_item* item, QStandardItem* root, int loop) qobject_cast(item); if(group) { - Q_FOREACH(Item_id id, group->getChildren()) + for(Item_id id : group->getChildren()) { CGAL::Three::Scene_item* child = group->getChild(id); organize_items(child, list.first(), loop+1); @@ -1832,7 +1832,7 @@ findItem(const CGAL::Three::Scene_interface* scene_interface, QString name, Scene_item_name_fn_ptr fn) { const Scene* scene = dynamic_cast(scene_interface); if(!scene) return nullptr; - Q_FOREACH(CGAL::Three::Scene_item* item, scene->entries()) { + for(CGAL::Three::Scene_item* item : scene->entries()) { CGAL::Three::Scene_item* ptr = qobject_cast(metaobj.cast(item)); if(ptr && ((ptr->*fn)() == name)) return ptr; } @@ -1850,7 +1850,7 @@ findItems(const CGAL::Three::Scene_interface* scene_interface, QList list; if(!scene) return list; - Q_FOREACH(CGAL::Three::Scene_item* item, scene->entries()) { + for(CGAL::Three::Scene_item* item : scene->entries()) { CGAL::Three::Scene_item* ptr = qobject_cast(item); if(ptr && ((ptr->*fn)() == name)) { list << ptr; @@ -1899,7 +1899,7 @@ void Scene::computeBbox() bool bbox_initialized = false; Bbox bbox = Bbox(0,0,0,0,0,0); - Q_FOREACH(CGAL::Three::Scene_item* item, m_entries) + for(CGAL::Three::Scene_item* item : m_entries) { if(item->isFinite() && !item->isEmpty() ) { if(bbox_initialized) { @@ -1920,7 +1920,7 @@ void Scene::computeBbox() void Scene::newViewer(Viewer_interface *viewer) { initGL(viewer); - Q_FOREACH(Scene_item* item, m_entries) + for(Scene_item* item : m_entries) { item->newViewer(viewer); } @@ -1936,7 +1936,7 @@ void Scene::removeViewer(Viewer_interface *viewer) vaos[viewer]->destroy(); vaos[viewer]->deleteLater(); vaos.remove(viewer); - Q_FOREACH(Scene_item* item, m_entries) + for(Scene_item* item : m_entries) { item->removeViewer(viewer); } @@ -1965,7 +1965,7 @@ void Scene::initGL(Viewer_interface *viewer) } void Scene::callDraw(){ - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { qobject_cast(v)->update(); } diff --git a/Polyhedron/demo/Polyhedron/Scene.h b/Polyhedron/demo/Polyhedron/Scene.h index f9d6f90805b5..7c42806b23f2 100644 --- a/Polyhedron/demo/Polyhedron/Scene.h +++ b/Polyhedron/demo/Polyhedron/Scene.h @@ -185,7 +185,7 @@ public Q_SLOTS: void setSelectedItem(CGAL::Three::Scene_item* item_to_select) { int i=0; - Q_FOREACH(CGAL::Three::Scene_item* item, m_entries) + for(CGAL::Three::Scene_item* item : m_entries) { if (item==item_to_select) { @@ -200,14 +200,14 @@ public Q_SLOTS: const QList& setSelectedItemIndices(QList l, const bool do_emit = true) { - Q_FOREACH(int i,l) + for(int i :l) { CGAL::Three::Scene_group_item* group = qobject_cast(item(i)); if(group) { QList list; - Q_FOREACH(Item_id id, group->getChildrenForSelection()) + for(Item_id id : group->getChildrenForSelection()) list << id; l << setSelectedItemIndices(list, false /*do not emit*/); } @@ -223,14 +223,14 @@ public Q_SLOTS: const QList& setSelectedItemList(QList l, const bool do_emit = true) { - Q_FOREACH(int i,l) + for(int i :l) { CGAL::Three::Scene_group_item* group = qobject_cast(item(i)); if(group) { QList list; - Q_FOREACH(Item_id id, group->getChildrenForSelection()) + for(Item_id id : group->getChildrenForSelection()) list << id; l << setSelectedItemList(list, false /*do not emit*/); } @@ -373,5 +373,3 @@ class SCENE_EXPORT SceneDelegate : public QItemDelegate }; // end class SceneDelegate #endif // SCENE_H - - diff --git a/Polyhedron/demo/Polyhedron/Scene_find_items.h b/Polyhedron/demo/Polyhedron/Scene_find_items.h index 9b2cc9b18818..7f7ed1e6da76 100644 --- a/Polyhedron/demo/Polyhedron/Scene_find_items.h +++ b/Polyhedron/demo/Polyhedron/Scene_find_items.h @@ -45,7 +45,7 @@ QList findItems(const CGAL::Three::Scene_interface* scene, QString name, findItems(scene, reinterpret_cast(0)->staticMetaObject, name, fn); QList list; - Q_FOREACH(CGAL::Three::Scene_item* ptr, void_list) { + for(CGAL::Three::Scene_item* ptr : void_list) { list << qobject_cast(ptr); } return list; @@ -106,7 +106,7 @@ QList findItemsByObjectName(const CGAL::Three::Scene_interface* scene, // scene_findItems(scene, name, fn, // reinterpret_cast(0)->staticMetaObject()); // QList list; -// Q_FOREACH(void* ptr, void_list) { +// for(void* ptr : void_list) { // list << static_cast(ptr); // } // return list; diff --git a/Polyhedron/demo/Polyhedron/Scene_group_item.cpp b/Polyhedron/demo/Polyhedron/Scene_group_item.cpp index b064cf4573f4..e0c382f32f5a 100644 --- a/Polyhedron/demo/Polyhedron/Scene_group_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_group_item.cpp @@ -91,7 +91,7 @@ void Scene_group_item::update_group_number(Scene_item * new_item, int n) qobject_cast(new_item); if(group) { - Q_FOREACH(Scene_interface::Item_id id, group->getChildren()){ + for(Scene_interface::Item_id id : group->getChildren()){ update_group_number(getChild(id),n+1); } diff --git a/Polyhedron/demo/Polyhedron/Scene_points_with_normal_item.cpp b/Polyhedron/demo/Polyhedron/Scene_points_with_normal_item.cpp index 75bea895cfac..0423a7d99b99 100644 --- a/Polyhedron/demo/Polyhedron/Scene_points_with_normal_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_points_with_normal_item.cpp @@ -905,7 +905,7 @@ void Scene_points_with_normal_item::invalidateOpenGLBuffers() getPointContainer(Priv::Shaded_points)->reset_vbos(Scene_item_rendering_helper::ALL); getEdgeContainer(0)->reset_vbos(Scene_item_rendering_helper::ALL); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); if(viewer == nullptr) diff --git a/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp b/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp index b986582fa00c..ef867028ac1d 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp @@ -1636,7 +1636,7 @@ void Scene_polyhedron_selection_item::selectPath(fg_vertex_descriptor vh) return; } bool found = false; - Q_FOREACH(Scene_polyhedron_selection_item_priv::vertex_on_path vop, d->path) + for(Scene_polyhedron_selection_item_priv::vertex_on_path vop : d->path) { if(vop.vertex == vh) { @@ -1843,7 +1843,7 @@ Scene_polyhedron_selection_item::Scene_polyhedron_selection_item(Scene_face_grap Scene_polyhedron_selection_item::~Scene_polyhedron_selection_item() { delete d; - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); viewer->setBindingSelect(); } @@ -1887,7 +1887,7 @@ void Scene_polyhedron_selection_item::invalidateOpenGLBuffers() { getPointContainer(Priv::Temp_points)->reset_vbos(ALL); getPointContainer(Priv::Fixed_points)->reset_vbos(ALL); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); @@ -1907,14 +1907,14 @@ void Scene_polyhedron_selection_item::invalidateOpenGLBuffers() { void Scene_polyhedron_selection_item::add_to_selection() { - Q_FOREACH(fg_edge_descriptor ed, temp_selected_edges) + for(fg_edge_descriptor ed : temp_selected_edges) { selected_edges.insert(ed); temp_selected_edges.erase(ed); } on_Ctrlz_pressed(); invalidateOpenGLBuffers(); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) v->update(); d->tempInstructions("Path added to selection.", "Select two vertices to create the path between them. (1/2)"); @@ -2217,7 +2217,7 @@ void Scene_polyhedron_selection_item::init(Scene_face_graph_item* poly_item, QMa redraw(); }); d->manipulated_frame = new ManipulatedFrame(); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) v->installEventFilter(this); mw->installEventFilter(this); connect(mw, SIGNAL(newViewerCreated(QObject*)), @@ -2241,12 +2241,12 @@ void Scene_polyhedron_selection_item::selection_changed(bool) Three::scene()->item(Three::scene()->mainSelectionIndex()))) do_bind_select = false; if(do_bind_select) - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); viewer->setBindingSelect(); } else - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); viewer->setNoBinding(); } diff --git a/Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp b/Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp index c931ba6da3e2..5a39c029f8a5 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp @@ -568,7 +568,7 @@ void Scene_polylines_item::change_corner_radii(double r) { scene->addItem(d->spheres); scene->changeGroup(d->spheres, this); lockChild(d->spheres); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { d->spheres->gl_initialization(qobject_cast(v)); } diff --git a/Polyhedron/demo/Polyhedron/Scene_surface_mesh_item.cpp b/Polyhedron/demo/Polyhedron/Scene_surface_mesh_item.cpp index 49e2da75e659..5dcd7cbc5182 100644 --- a/Polyhedron/demo/Polyhedron/Scene_surface_mesh_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_surface_mesh_item.cpp @@ -1146,7 +1146,7 @@ void* Scene_surface_mesh_item_priv::get_aabb_tree() if(!CGAL::is_triangle(halfedge(f, *sm), *sm)) { EPICK::Vector_3 normal = CGAL::Polygon_mesh_processing::compute_face_normal(f, *sm); - Q_FOREACH(EPICK::Triangle_3 triangle, triangulate_primitive(f,normal)) + for(EPICK::Triangle_3 triangle : triangulate_primitive(f,normal)) { Primitive primitive(triangle, f); tree->insert(primitive); @@ -1306,7 +1306,7 @@ void Scene_surface_mesh_item::invalidate(Gl_data_names name) d->flat_vertex_map_ready = false; } setBuffersFilled(false); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); if(viewer == nullptr) @@ -2183,7 +2183,7 @@ void Scene_surface_mesh_item::printAllIds() s3(printFaceIds()); if((s1 && s2 && s3)) { - Q_FOREACH(CGAL::QGLViewer* viewer, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* viewer : CGAL::QGLViewer::QGLViewerPool()){ viewer->update(); } return; @@ -2230,7 +2230,7 @@ void Scene_surface_mesh_item::showVertices(bool b) } else { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); TextRenderer *renderer = viewer->textRenderer(); renderer->addTextList(d->textVItems); @@ -2239,7 +2239,7 @@ void Scene_surface_mesh_item::showVertices(bool b) } else { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); TextRenderer *renderer = viewer->textRenderer(); renderer->removeTextList(d->textVItems); @@ -2260,7 +2260,7 @@ void Scene_surface_mesh_item::showEdges(bool b) } else { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); TextRenderer *renderer = viewer->textRenderer(); renderer->addTextList(d->textEItems); @@ -2270,7 +2270,7 @@ void Scene_surface_mesh_item::showEdges(bool b) } else { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); TextRenderer *renderer = viewer->textRenderer(); renderer->removeTextList(d->textEItems); @@ -2291,7 +2291,7 @@ void Scene_surface_mesh_item::showFaces(bool b) } else { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); TextRenderer *renderer = viewer->textRenderer(); renderer->addTextList(d->textFItems); @@ -2301,7 +2301,7 @@ void Scene_surface_mesh_item::showFaces(bool b) } else { - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()){ + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()){ CGAL::Three::Viewer_interface* viewer = dynamic_cast(v); TextRenderer *renderer = viewer->textRenderer(); renderer->removeTextList(d->textFItems); diff --git a/Polyhedron/demo/Polyhedron/Scene_textured_surface_mesh_item.cpp b/Polyhedron/demo/Polyhedron/Scene_textured_surface_mesh_item.cpp index 0985491e4458..d3fdcb2996d5 100644 --- a/Polyhedron/demo/Polyhedron/Scene_textured_surface_mesh_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_textured_surface_mesh_item.cpp @@ -326,7 +326,7 @@ Scene_textured_surface_mesh_item::selection_changed(bool p_is_selected) if(p_is_selected != is_selected) { is_selected = p_is_selected; - Q_FOREACH(CGAL::QGLViewer*v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer*v : CGAL::QGLViewer::QGLViewerPool()) { setBuffersInit(qobject_cast(v), false); } @@ -421,4 +421,3 @@ void Scene_textured_surface_mesh_item::computeElements() const setBuffersFilled(true); QApplication::restoreOverrideCursor(); } - diff --git a/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.cpp b/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.cpp index cdf64cf32c96..b3bd8575b6a5 100644 --- a/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.cpp @@ -1957,7 +1957,7 @@ void Scene_triangulation_3_item::invalidateOpenGLBuffers() getEdgeContainer(T3_edges)->reset_vbos(ALL); getEdgeContainer(Grid_edges)->reset_vbos(ALL); - Q_FOREACH(CGAL::QGLViewer* v, CGAL::QGLViewer::QGLViewerPool()) + for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { CGAL::Three::Viewer_interface* viewer = static_cast(v); if(viewer == NULL) @@ -2192,4 +2192,3 @@ void Scene_triangulation_3_item::set_cut_edge(bool b) } #include "Scene_triangulation_3_item.moc" - diff --git a/Polyhedron/demo/Polyhedron/TextRenderer.cpp b/Polyhedron/demo/Polyhedron/TextRenderer.cpp index 95dc18463717..1385c57aed62 100644 --- a/Polyhedron/demo/Polyhedron/TextRenderer.cpp +++ b/Polyhedron/demo/Polyhedron/TextRenderer.cpp @@ -10,14 +10,14 @@ void TextRenderer::draw(CGAL::Three::Viewer_interface *viewer, const QVector3D& QRect rect; CGAL::qglviewer::Camera* camera = viewer->camera(); //Display the items textItems - Q_FOREACH(TextListItem* list, textItems) + for(TextListItem* list : textItems) { CGAL::Three::Scene_print_item_interface* item = qobject_cast(scene->item(scene->mainSelectionIndex())); if( item && item->shouldDisplayIds(list->item()) ){ - Q_FOREACH(TextItem* item, list->textList()) + for(TextItem* item : list->textList()) { CGAL::qglviewer::Vec src(item->position().x(), item->position().y(),item->position().z()); if(viewer->testDisplayId(src.x, src.y, src.z)) @@ -52,7 +52,7 @@ void TextRenderer::draw(CGAL::Three::Viewer_interface *viewer, const QVector3D& } //Display the local TextItems - Q_FOREACH(TextItem* item, local_textItems) + for(TextItem* item : local_textItems) { CGAL::qglviewer::Vec src(item->position().x(), item->position().y(),item->position().z()); if(item->is_3D()) @@ -110,7 +110,7 @@ void TextRenderer::draw(CGAL::Three::Viewer_interface *viewer, const QVector3D& void TextRenderer::removeTextList(TextListItem *p_list) { - Q_FOREACH(TextListItem *list, textItems) + for(TextListItem *list : textItems) if(list == p_list) textItems.removeAll(list); } diff --git a/Polyhedron/demo/Polyhedron/Three.cpp b/Polyhedron/demo/Polyhedron/Three.cpp index 1d8470387d0f..8e6b8943e15d 100644 --- a/Polyhedron/demo/Polyhedron/Three.cpp +++ b/Polyhedron/demo/Polyhedron/Three.cpp @@ -83,7 +83,7 @@ Three::Three() template SceneType* Three::getSelectedItem(){ - Q_FOREACH(int item_id , scene()->selectionIndices()) + for(int item_id : scene()->selectionIndices()) { SceneType* scene_item = qobject_cast(scene()->item(item_id)); if(scene_item) @@ -99,7 +99,7 @@ void Three::addDockWidget(QDockWidget* dock_widget) QList dockWidgets = mainWindow()->findChildren(); int counter = 0; - Q_FOREACH(QDockWidget* dock, dockWidgets) { + for(QDockWidget* dock : dockWidgets) { if( mainWindow()->dockWidgetArea(dock) != ::Qt::LeftDockWidgetArea || dock == dock_widget ) { continue; } @@ -132,7 +132,7 @@ void Three::autoConnectActions(Polyhedron_demo_plugin_interface *plugin) methods << metaObject->method(i); } - Q_FOREACH(QAction* action, plugin->actions()) + for(QAction* action : plugin->actions()) { bool success = false; const QMetaObject* action_metaObject = action->metaObject(); @@ -273,4 +273,3 @@ bool& Three::isLocked() { return s_is_locked; } - diff --git a/Polyhedron/demo/Polyhedron/Viewer.cpp b/Polyhedron/demo/Polyhedron/Viewer.cpp index 53a6f3c86261..ac0ab4fb27f9 100644 --- a/Polyhedron/demo/Polyhedron/Viewer.cpp +++ b/Polyhedron/demo/Polyhedron/Viewer.cpp @@ -1631,7 +1631,7 @@ void Viewer_impl::showDistance(QPoint pixel) QString(" distance: %1").arg(dist), true, font, Qt::red, true); distance_text.append(centerCoord); - Q_FOREACH(TextItem* ti, distance_text) + for(TextItem* ti : distance_text) textRenderer->addText(ti); Q_EMIT(viewer->sendMessage(QString("First point : A(%1,%2,%3), second point : B(%4,%5,%6), distance between them : %7") .arg(APoint.x/scaler.x()-viewer->offset().x) @@ -1648,7 +1648,7 @@ void Viewer_impl::showDistance(QPoint pixel) void Viewer_impl::clearDistancedisplay() { distance_is_displayed = false; - Q_FOREACH(TextItem* ti, distance_text) + for(TextItem* ti : distance_text) { textRenderer->removeText(ti); delete ti; From 3c07d9a59121dbd3736fad06d47d67e38a1a8ead Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 15 Nov 2023 10:05:58 +0000 Subject: [PATCH 78/85] Add virtual --- Polyhedron/demo/Polyhedron/Scene_c3t3_item.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Scene_c3t3_item.h b/Polyhedron/demo/Polyhedron/Scene_c3t3_item.h index 834f3527edcd..d0dc4b13bb38 100644 --- a/Polyhedron/demo/Polyhedron/Scene_c3t3_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_c3t3_item.h @@ -34,7 +34,7 @@ using namespace CGAL::Three; Scene_c3t3_item(bool is_surface = false); Scene_c3t3_item(const C3t3& c3t3, bool is_surface = false); - ~Scene_c3t3_item(); + virtual ~Scene_c3t3_item(); Scene_c3t3_item* clone() const override; @@ -70,7 +70,7 @@ using namespace CGAL::Three; //stats QString computeStats(int type) override; - void copyProperties(Scene_item *) override; + virtual void copyProperties(Scene_item *) override; CGAL::Three::Scene_item::Header_data header() const override; bool has_cnc() const; From 9ead7b59f5dc4cd77bee9f042e05e0ca7e29b3ab Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 16 Nov 2023 07:26:44 +0000 Subject: [PATCH 79/85] Address unused variable warnings --- Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp | 3 +++ Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp index 27a258882ba2..fd99361c2902 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Io_image_plugin.cpp @@ -68,6 +68,7 @@ #endif #include +#include #include #include @@ -92,6 +93,8 @@ load_vtk_file(QFileInfo fileinfo, Image* image) *image = CGAL::IO::read_vtk_image_data(vtk_image); // copy the image data return true; #else + CGAL_USE(fileinfo); + CGAL_USE(image); return false; #endif } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp index f490c0da691c..86bade9004e7 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Mesh_3_plugin.cpp @@ -50,9 +50,6 @@ auto make_not_null(T&& t) { using namespace CGAL::Three; -// Constants -const QColor default_mesh_color(45,169,70); - #include "Mesh_3_plugin_cgal_code.h" // declare functions `cgal_code_mesh_3` #include "split_polylines.h" #include From 1dee4f8fff0363ba3156af32f0dd0c6653a33b80 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 16 Nov 2023 07:33:25 +0000 Subject: [PATCH 80/85] Fix conversion warning in T3 demo --- Triangulation_3/demo/Triangulation_3/Viewer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Triangulation_3/demo/Triangulation_3/Viewer.cpp b/Triangulation_3/demo/Triangulation_3/Viewer.cpp index 3975e951dc55..12308b485170 100644 --- a/Triangulation_3/demo/Triangulation_3/Viewer.cpp +++ b/Triangulation_3/demo/Triangulation_3/Viewer.cpp @@ -1307,7 +1307,7 @@ void Viewer::draw() // draw the rest to-be-inserted vertices rendering_program.bind(); vao[24].bind(); - color.setRgbF(0.7,0.7,0.7); + color.setRgbF(0.7f,0.7f,0.7f); rendering_program.setUniformValue(colorLocation[0],color); rendering_program.setUniformValue("point_size", 8.0f); glDrawArrays(GL_POINTS, 0, incremental_points->size()/3); @@ -1510,7 +1510,7 @@ void Viewer::draw() // draw the rest to-be-inserted vertices rendering_program_spheres.bind(); vao[25].bind(); - color.setRgbF(0.7,0.7,0.7); + color.setRgbF(0.7f,0.7f,0.7f); rendering_program_spheres.setUniformValue(colorLocation[1],color); glDrawArraysInstanced(GL_TRIANGLES, 0, points_sphere->size()/3, incremental_points->size()/3); vao[25].release(); From 2a223e6a1d80776de3011f76b4ea794ed20673ec Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 16 Nov 2023 07:48:04 +0000 Subject: [PATCH 81/85] Fix ipelet demo CMakeLists.txt --- CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt b/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt index 98a5ab469f39..fc3acb1cb7b9 100644 --- a/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt +++ b/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt @@ -97,7 +97,7 @@ if(IPE_FOUND AND IPE_VERSION) cgal_add_compilation_test(CGAL_${IPELET}) endforeach(IPELET) if(CGAL_Core_FOUND) - target_link_libraries(CGAL_cone_spanners PRIVATE CGAL::CGAL_Core + target_link_libraries(CGAL_cone_spanners PRIVATE CGAL::CGAL CGAL::CGAL_Core CGAL::Eigen3_support) endif() #example in doc not installed From bb6222d96d57bb04e78f989aba4296ca3c989e66 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 16 Nov 2023 09:58:08 +0000 Subject: [PATCH 82/85] Fix ipelet demo CMakeLists.txt --- CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt b/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt index fc3acb1cb7b9..13dd276a8a07 100644 --- a/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt +++ b/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt @@ -103,7 +103,7 @@ if(IPE_FOUND AND IPE_VERSION) #example in doc not installed add_library(simple_triangulation MODULE simple_triangulation.cpp) add_to_cached_list(CGAL_EXECUTABLE_TARGETS simple_triangulation) - target_link_libraries(simple_triangulation CGAL::Eigen3_support + target_link_libraries(simple_triangulation CGAL::CGAL CGAL::Eigen3_support ${IPE_LIBRARIES}) target_include_directories(simple_triangulation BEFORE PRIVATE ${IPE_INCLUDE_DIR}) if (WITH_IPE_7) From 1f8d66ba757858699ea6a1bbc375793db5db0ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 16 Nov 2023 11:36:09 +0100 Subject: [PATCH 83/85] add macro in new resource dir --- Documentation/doc/resources/1.10.0/BaseDoxyfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/doc/resources/1.10.0/BaseDoxyfile.in b/Documentation/doc/resources/1.10.0/BaseDoxyfile.in index 4818c4493363..9ce9ac906179 100644 --- a/Documentation/doc/resources/1.10.0/BaseDoxyfile.in +++ b/Documentation/doc/resources/1.10.0/BaseDoxyfile.in @@ -87,7 +87,7 @@ ALIASES = "cgal=%CGAL" \ "gnu=GNU" \ "ms=MS" \ "qt=Qt" \ - "qt5=Qt5" \ + "qt6=Qt6" \ "eigen=Eigen" \ "opengr=OpenGR" \ "libpointmatcher=libpointmatcher" \ From 15af7605fe57265e85b5690aae5932c108f21deb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 22 Nov 2023 11:34:27 +0100 Subject: [PATCH 84/85] Q_DECL_OVERRIDE -> override --- Polyhedron/demo/Polyhedron/MainWindow.h | 14 +-- .../Plugins/AABB_tree/Cut_plugin.cpp | 30 ++--- .../AABB_tree/Do_trees_intersect_plugin.cpp | 8 +- .../Display/Display_property_plugin.cpp | 8 +- .../Plugins/Display/Heat_method_plugin.cpp | 26 ++-- .../Polyhedron/Plugins/IO/3mf_io_plugin.cpp | 14 +-- .../Mesh_3/Tetrahedra_filtering_plugin.cpp | 6 +- .../Plugins/PCA/Scene_aff_transformed_item.h | 10 +- .../Scene_aff_transformed_point_set_item.h | 22 ++-- .../Scene_aff_transformed_polygon_soup_item.h | 22 ++-- .../Scene_aff_transformed_surface_mesh_item.h | 22 ++-- .../Plugins/PMP/Engrave_text_plugin.cpp | 8 +- .../Polyhedron/Plugins/PMP/Extrude_plugin.cpp | 26 ++-- .../Plugins/Point_set/Alpha_shape_plugin.cpp | 30 ++--- .../Three_examples/Basic_item_plugin.cpp | 6 +- .../Plugins/Three_examples/Basic_plugin.cpp | 6 +- .../Three_examples/Dock_widget_plugin.cpp | 8 +- .../Plugins/Three_examples/Example_plugin.cpp | 22 ++-- Polyhedron/demo/Polyhedron/Scene.h | 80 ++++++------ Polyhedron/demo/Polyhedron/Scene_lcc_item.h | 26 ++-- Polyhedron/demo/Polyhedron/Scene_plane_item.h | 28 ++--- .../Scene_points_with_normal_item.h | 30 ++--- .../demo/Polyhedron/Scene_polygon_soup_item.h | 34 +++--- .../demo/Polyhedron/Scene_polylines_item.h | 36 +++--- .../demo/Polyhedron/Scene_spheres_item.h | 26 ++-- .../demo/Polyhedron/Scene_surface_mesh_item.h | 62 +++++----- .../demo/Polyhedron/Scene_tetrahedra_item.h | 20 +-- .../Polyhedron/Scene_triangulation_3_item.cpp | 26 ++-- .../Polyhedron/Scene_triangulation_3_item.h | 58 ++++----- Polyhedron/demo/Polyhedron/Viewer.h | 114 +++++++++--------- Three/include/CGAL/Three/Edge_container.h | 6 +- Three/include/CGAL/Three/Point_container.h | 4 +- Three/include/CGAL/Three/Scene_group_item.h | 28 ++--- .../CGAL/Three/Scene_item_rendering_helper.h | 16 +-- Three/include/CGAL/Three/Triangle_container.h | 6 +- 35 files changed, 444 insertions(+), 444 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/MainWindow.h b/Polyhedron/demo/Polyhedron/MainWindow.h index 542cc40ea75d..e3100ad783fd 100644 --- a/Polyhedron/demo/Polyhedron/MainWindow.h +++ b/Polyhedron/demo/Polyhedron/MainWindow.h @@ -122,7 +122,7 @@ public Q_SLOTS: //! If `b` is true, recenters the scene. void updateViewersBboxes(bool recenter); //! Opens a script or a file with the default loader if there is. - void open(QString) Q_DECL_OVERRIDE; + void open(QString) override; //! Is called when the up button is pressed. void on_upButton_pressed(); //! Is called when the down button is pressed. @@ -242,15 +242,15 @@ public Q_SLOTS: /*! * Displays a text preceded by the mention "INFO :". */ - void message_information(QString) Q_DECL_OVERRIDE; + void message_information(QString) override; /*! * Displays a blue text preceded by the mention "WARNING :". */ - void message_warning(QString) Q_DECL_OVERRIDE; + void message_warning(QString) override; /*! * Displays a red text preceded by the mention "ERROR :". */ - void message_error(QString) Q_DECL_OVERRIDE; + void message_error(QString) override; //!Displays a text in the chosen html color with the chosen html font. @@ -392,7 +392,7 @@ protected Q_SLOTS: * Calls writeSettings() and set the flag accepted for the event. * @see writeSettings() */ - void closeEvent(QCloseEvent *event)Q_DECL_OVERRIDE; + void closeEvent(QCloseEvent *event)override; /*! Returns the currently selected item in the Geometric Objects view. Returns -1 * if none is selected. */ @@ -500,8 +500,8 @@ public Q_SLOTS: void lookat(); void color(); protected: - void closeEvent(QCloseEvent *closeEvent)Q_DECL_OVERRIDE; - void changeEvent(QEvent *event) Q_DECL_OVERRIDE; + void closeEvent(QCloseEvent *closeEvent)override; + void changeEvent(QEvent *event) override; private: bool is_main; }; diff --git a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp index 2d02ea43c88a..9c6105b5db7c 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Cut_plugin.cpp @@ -301,7 +301,7 @@ class Q_DECL_EXPORT Scene_aabb_plane_item : public Scene_plane_item { this->edge_sm_trees = edge_trees; } - void draw(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE + void draw(CGAL::Three::Viewer_interface* viewer) const override { if(!isInit(viewer)) initGL(viewer); @@ -338,7 +338,7 @@ class Q_DECL_EXPORT Scene_aabb_plane_item : public Scene_plane_item break; } } - void drawEdges(CGAL::Three::Viewer_interface *viewer) const Q_DECL_OVERRIDE + void drawEdges(CGAL::Three::Viewer_interface *viewer) const override { if(!isInit(viewer)) initGL(viewer); @@ -364,7 +364,7 @@ class Q_DECL_EXPORT Scene_aabb_plane_item : public Scene_plane_item ec->draw(viewer, true); } - void invalidateOpenGLBuffers()Q_DECL_OVERRIDE + void invalidateOpenGLBuffers()override { setBuffersFilled(false); getTriangleContainer(0)->reset_vbos(ALL); @@ -449,7 +449,7 @@ class Q_DECL_EXPORT Scene_aabb_plane_item : public Scene_plane_item }; #endif - void computeElements() const Q_DECL_OVERRIDE + void computeElements() const override { switch(m_cut_plane) { @@ -533,7 +533,7 @@ class Q_DECL_EXPORT Scene_aabb_plane_item : public Scene_plane_item } - void initializeBuffers(CGAL::Three::Viewer_interface *viewer) const Q_DECL_OVERRIDE + void initializeBuffers(CGAL::Three::Viewer_interface *viewer) const override { getTriangleContainer(0)->initializeBuffers(viewer); getTriangleContainer(1)->initializeBuffers(viewer); @@ -940,7 +940,7 @@ class Polyhedron_demo_cut_plugin : ~Polyhedron_demo_cut_plugin(); - bool applicable(QAction*) const Q_DECL_OVERRIDE{ + bool applicable(QAction*) const override{ // returns true if one surface_mesh is in the entries for (int i=0; i< scene->numberOfEntries(); ++i) { @@ -950,24 +950,24 @@ class Polyhedron_demo_cut_plugin : return false; } - QString name() const Q_DECL_OVERRIDE + QString name() const override { return "cut-plugin"; } - QString nameFilters() const Q_DECL_OVERRIDE + QString nameFilters() const override { return "Segment soup file (*.polylines.txt *.cgal)"; } - bool canLoad(QFileInfo) const Q_DECL_OVERRIDE + bool canLoad(QFileInfo) const override { return false; } - QList load(QFileInfo , bool& ok, bool add_to_scene=true) Q_DECL_OVERRIDE + QList load(QFileInfo , bool& ok, bool add_to_scene=true) override { Q_UNUSED(add_to_scene); @@ -975,7 +975,7 @@ class Polyhedron_demo_cut_plugin : return QList(); } - bool canSave(const CGAL::Three::Scene_item* item) Q_DECL_OVERRIDE + bool canSave(const CGAL::Three::Scene_item* item) override { // This plugin supports edges items bool b = qobject_cast(item) != 0; @@ -983,7 +983,7 @@ class Polyhedron_demo_cut_plugin : } - bool save(QFileInfo fileinfo,QList& items) Q_DECL_OVERRIDE + bool save(QFileInfo fileinfo,QList& items) override { Scene_item* item = items.front(); // This plugin supports edges items @@ -1001,7 +1001,7 @@ class Polyhedron_demo_cut_plugin : return ok; } - bool isDefaultLoader(const Scene_item* item) const Q_DECL_OVERRIDE{ + bool isDefaultLoader(const Scene_item* item) const override{ if(qobject_cast(item)) return true; return false; @@ -1010,9 +1010,9 @@ class Polyhedron_demo_cut_plugin : using Polyhedron_demo_io_plugin_interface::init; void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface, Messages_interface* m) override; - QList actions() const Q_DECL_OVERRIDE; + QList actions() const override; - bool eventFilter(QObject *, QEvent *event) Q_DECL_OVERRIDE + bool eventFilter(QObject *, QEvent *event) override { if(!plane_item) return false; diff --git a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp index 979453ec2af6..96741cfd9f04 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/AABB_tree/Do_trees_intersect_plugin.cpp @@ -25,7 +25,7 @@ class DoTreesIntersectplugin: Q_PLUGIN_METADATA(IID "com.geometryfactory.PolyhedronDemo.PluginInterface/1.0") public: - bool eventFilter(QObject *, QEvent *event) Q_DECL_OVERRIDE + bool eventFilter(QObject *, QEvent *event) override { if(event->type() != QEvent::KeyPress) return false; @@ -38,7 +38,7 @@ class DoTreesIntersectplugin: return false; } - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { if(scene->selectionIndices().size() <2) return false; @@ -50,13 +50,13 @@ class DoTreesIntersectplugin: return (! group_item); } - QList actions() const Q_DECL_OVERRIDE + QList actions() const override { return _actions; } - void init(QMainWindow* mw, CGAL::Three::Scene_interface* sc, Messages_interface* mi) Q_DECL_OVERRIDE + void init(QMainWindow* mw, CGAL::Three::Scene_interface* sc, Messages_interface* mi) override { this->messageInterface = mi; this->scene = sc; diff --git a/Polyhedron/demo/Polyhedron/Plugins/Display/Display_property_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Display/Display_property_plugin.cpp index 687cb6a92dfd..40959e98d095 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Display/Display_property_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Display/Display_property_plugin.cpp @@ -109,7 +109,7 @@ class Display_property_plugin }; public: - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { Scene_item* item = scene->item(scene->mainSelectionIndex()); if(!item) @@ -119,14 +119,14 @@ class Display_property_plugin qobject_cast(item); } - QList actions() const Q_DECL_OVERRIDE + QList actions() const override { return QList() << actionDisplayProperties; } void init(QMainWindow* mw, Scene_interface* sc, - Messages_interface*) Q_DECL_OVERRIDE + Messages_interface*) override { this->scene = sc; this->mw = mw; @@ -215,7 +215,7 @@ private Q_SLOTS: dock_widget->raise(); } - void closure() Q_DECL_OVERRIDE + void closure() override { dock_widget->hide(); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Display/Heat_method_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Display/Heat_method_plugin.cpp index fc6d564379b2..e901d5f3dab4 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Display/Heat_method_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Display/Heat_method_plugin.cpp @@ -66,14 +66,14 @@ class Scene_heat_item ~Scene_heat_item(){} - Scene_item* clone() const Q_DECL_OVERRIDE { return nullptr; } - QString toolTip() const Q_DECL_OVERRIDE{ return QString(); } + Scene_item* clone() const override { return nullptr; } + QString toolTip() const override{ return QString(); } Scene_surface_mesh_item* getParent() { return parent; } - bool isEmpty() const Q_DECL_OVERRIDE { return false; } + bool isEmpty() const override { return false; } SMesh* face_graph() { return sm; } - void initializeBuffers(Viewer_interface *viewer) const Q_DECL_OVERRIDE + void initializeBuffers(Viewer_interface *viewer) const override { getTriangleContainer(0)->initializeBuffers(viewer); getTriangleContainer(0)->setIdxSize(nb_idx); @@ -88,7 +88,7 @@ class Scene_heat_item idx.shrink_to_fit(); } - void draw(Viewer_interface *viewer) const Q_DECL_OVERRIDE + void draw(Viewer_interface *viewer) const override { if(!visible()) return; @@ -112,24 +112,24 @@ class Scene_heat_item getTriangleContainer(0)->draw(viewer, false); } - void compute_bbox() const Q_DECL_OVERRIDE + void compute_bbox() const override { setBbox(parent->bbox()); } - virtual bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE + virtual bool supportsRenderingMode(RenderingMode m) const override { return (m == Gouraud); } - virtual void invalidateOpenGLBuffers() Q_DECL_OVERRIDE + virtual void invalidateOpenGLBuffers() override { setBuffersFilled(false); compute_bbox(); getTriangleContainer(0)->reset_vbos(NOT_INSTANCED); } - void computeElements() const Q_DECL_OVERRIDE + void computeElements() const override { typedef CGAL::Buffer_for_vao CPF; @@ -243,7 +243,7 @@ class Heat_method_plugin std::unordered_map idt_heat_methods; public: - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { // Single item => it must be a mesh and the selection item will be created through the plugin's button if(scene->selectionIndices().size() == 1) @@ -265,14 +265,14 @@ class Heat_method_plugin return false; } - QList actions() const Q_DECL_OVERRIDE + QList actions() const override { return QList() << actionHeatMethod; } void init(QMainWindow* mw, Scene_interface* sc, - Messages_interface*) Q_DECL_OVERRIDE + Messages_interface*) override { this->scene = sc; this->mw = mw; @@ -354,7 +354,7 @@ private Q_SLOTS: dock_widget->raise(); } - void closure() Q_DECL_OVERRIDE + void closure() override { dock_widget->hide(); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/IO/3mf_io_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/IO/3mf_io_plugin.cpp index 739eb1801741..d757a5aaba24 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/IO/3mf_io_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/IO/3mf_io_plugin.cpp @@ -33,7 +33,7 @@ class Io_3mf_plugin: typedef std::vector PolygonRange; typedef std::list PolylineRange; typedef std::vector ColorRange; - void init() Q_DECL_OVERRIDE + void init() override { QMenu* menuFile = CGAL::Three::Three::mainWindow()->findChild("menuFile"); @@ -58,17 +58,17 @@ class Io_3mf_plugin: }); menuFile->insertAction(CGAL::Three::Three::mainWindow()->findChild("actionSa_ve_Scene_as_Script"), actionSaveSceneTo3mf); } - QString name() const Q_DECL_OVERRIDE { return "3mf_io_plugin"; } + QString name() const override { return "3mf_io_plugin"; } - QString nameFilters() const Q_DECL_OVERRIDE { return + QString nameFilters() const override { return "3mf files (*.3mf)"; } - bool canLoad(QFileInfo) const Q_DECL_OVERRIDE { return true; } + bool canLoad(QFileInfo) const override { return true; } - QList load(QFileInfo fileinfo, bool& ok, bool add_to_scene=true) Q_DECL_OVERRIDE { + QList load(QFileInfo fileinfo, bool& ok, bool add_to_scene=true) override { namespace PMP = CGAL::Polygon_mesh_processing; // Open file ok = true; @@ -135,10 +135,10 @@ class Io_3mf_plugin: } - bool canSave(const CGAL::Three::Scene_item*) Q_DECL_OVERRIDE {return false;} + bool canSave(const CGAL::Three::Scene_item*) override {return false;} - bool save(QFileInfo fi, QList& items) Q_DECL_OVERRIDE { + bool save(QFileInfo fi, QList& items) override { QList to_return; std::vector sm_items; diff --git a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Tetrahedra_filtering_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Tetrahedra_filtering_plugin.cpp index 0fb84c348adb..9c8d9877f59d 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Tetrahedra_filtering_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Mesh_3/Tetrahedra_filtering_plugin.cpp @@ -40,7 +40,7 @@ class Q_DECL_EXPORT Tetrahedra_filtering_plugin: Q_PLUGIN_METADATA(IID "com.geometryfactory.PolyhedronDemo.PluginInterface/1.0" FILE "tetrahedra_filtering_plugin.json") public : - void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface, Messages_interface*)Q_DECL_OVERRIDE { + void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface, Messages_interface*)override { this->scene = scene_interface; this->mw = mainWindow; this->tet_item = nullptr; @@ -66,11 +66,11 @@ public : filter(); }); } - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { return qobject_cast( scene->item( scene->mainSelectionIndex() ) ); } - QList actions() const Q_DECL_OVERRIDE { + QList actions() const override { return _actions; } virtual void closure() override diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_item.h b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_item.h index 77554fc11023..82f4ae91feb4 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_item.h +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_item.h @@ -57,19 +57,19 @@ class SCENE_AFF_TRANSFORMED_ITEM_EXPORT Scene_aff_transformed_item ~Scene_aff_transformed_item(); - void itemAboutToBeDestroyed(Scene_item *item) Q_DECL_OVERRIDE; + void itemAboutToBeDestroyed(Scene_item *item) override; void setManipulatable(bool b = true) { d->manipulable = b;} - bool manipulatable() const Q_DECL_OVERRIDE { return d->manipulable; } - CGAL::Three::Scene_item::ManipulatedFrame* manipulatedFrame() Q_DECL_OVERRIDE { return d->frame; } + bool manipulatable() const override { return d->manipulable; } + CGAL::Three::Scene_item::ManipulatedFrame* manipulatedFrame() override { return d->frame; } void setFMatrix(double matrix[16]); const QMatrix4x4& getFMatrix() const { return d->f_matrix; } // below is defined in the specific aff_transformed items - virtual void compute_bbox() const Q_DECL_OVERRIDE = 0; + virtual void compute_bbox() const override = 0; virtual const CGAL::qglviewer::Vec& center() const = 0; - virtual bool keyPressEvent(QKeyEvent* e) Q_DECL_OVERRIDE; + virtual bool keyPressEvent(QKeyEvent* e) override; Q_SIGNALS: void applyTransformation(); diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_point_set_item.h b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_point_set_item.h index 1bd9d46ca9c3..d632ab93b63a 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_point_set_item.h +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_point_set_item.h @@ -72,24 +72,24 @@ class SCENE_AFF_TRANSFORMED_POINT_SET_ITEM_EXPORT Scene_aff_transformed_point_se ~Scene_aff_transformed_point_set_item(); Scene_points_with_normal_item* item() { return d->pts_item; } - const CGAL::qglviewer::Vec& center() const Q_DECL_OVERRIDE { return d->center_; } + const CGAL::qglviewer::Vec& center() const override { return d->center_; } - CGAL::Three::Scene_item* clone() const Q_DECL_OVERRIDE { return nullptr; } - QString name() const Q_DECL_OVERRIDE { return tr("%1_transformed").arg(d->pts_item->name()); } - QString toolTip() const Q_DECL_OVERRIDE; + CGAL::Three::Scene_item* clone() const override { return nullptr; } + QString name() const override { return tr("%1_transformed").arg(d->pts_item->name()); } + QString toolTip() const override; - bool isEmpty() const Q_DECL_OVERRIDE { return (d->nb_points == 0); } + bool isEmpty() const override { return (d->nb_points == 0); } void updateCache(); - virtual bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE { return m == Points ; } + virtual bool supportsRenderingMode(RenderingMode m) const override { return m == Points ; } - virtual void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; - void initializeBuffers(CGAL::Three::Viewer_interface* v) const Q_DECL_OVERRIDE; + virtual void invalidateOpenGLBuffers() override; + void initializeBuffers(CGAL::Three::Viewer_interface* v) const override; - void compute_bbox() const Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; - void drawPoints(CGAL::Three::Viewer_interface *viewer) const Q_DECL_OVERRIDE; + void compute_bbox() const override; + void computeElements() const override; + void drawPoints(CGAL::Three::Viewer_interface *viewer) const override; }; #endif // SCENE_AFF_TRANSFORMED_POINT_SET_ITEM_H diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_polygon_soup_item.h b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_polygon_soup_item.h index 4222fb455d33..08c2decbd152 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_polygon_soup_item.h +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_polygon_soup_item.h @@ -96,23 +96,23 @@ class SCENE_AFF_TRANSFORMED_POLYGON_SOUP_ITEM_EXPORT Scene_aff_transformed_polyg ~Scene_aff_transformed_polygon_soup_item(); Scene_polygon_soup_item* item() { return d->ps_item; } - const CGAL::qglviewer::Vec& center() const Q_DECL_OVERRIDE { return d->center_; } + const CGAL::qglviewer::Vec& center() const override { return d->center_; } - CGAL::Three::Scene_item* clone() const Q_DECL_OVERRIDE { return nullptr; } - QString name() const Q_DECL_OVERRIDE { return tr("%1_transformed").arg(d->ps_item->name()); } - QString toolTip() const Q_DECL_OVERRIDE; + CGAL::Three::Scene_item* clone() const override { return nullptr; } + QString name() const override { return tr("%1_transformed").arg(d->ps_item->name()); } + QString toolTip() const override; void updateCache(); - bool isEmpty() const Q_DECL_OVERRIDE { return (d->nb_lines == 0); } + bool isEmpty() const override { return (d->nb_lines == 0); } - virtual bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE { return m == Wireframe ; } - virtual void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; - void initializeBuffers(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; + virtual bool supportsRenderingMode(RenderingMode m) const override { return m == Wireframe ; } + virtual void invalidateOpenGLBuffers() override; + void initializeBuffers(CGAL::Three::Viewer_interface*) const override; - void compute_bbox() const Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; - void drawEdges(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; + void compute_bbox() const override; + void computeElements() const override; + void drawEdges(CGAL::Three::Viewer_interface*) const override; }; #endif // SCENE_AFF_TRANSFORMED_POLYGON_SOUP_ITEM_H diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_surface_mesh_item.h b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_surface_mesh_item.h index 38ad5b0b124a..849ba139991c 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_surface_mesh_item.h +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Scene_aff_transformed_surface_mesh_item.h @@ -91,23 +91,23 @@ class SCENE_AFF_TRANSFORMED_SURFACE_MESH_ITEM_EXPORT Scene_aff_transformed_surfa ~Scene_aff_transformed_surface_mesh_item(); Scene_surface_mesh_item* item() { return d->sm_item; } - const CGAL::qglviewer::Vec& center() const Q_DECL_OVERRIDE { return d->center_; } + const CGAL::qglviewer::Vec& center() const override { return d->center_; } - CGAL::Three::Scene_item* clone() const Q_DECL_OVERRIDE { return nullptr; } - QString name() const Q_DECL_OVERRIDE { return tr("%1_transformed").arg(d->sm_item->name()); } - QString toolTip() const Q_DECL_OVERRIDE; + CGAL::Three::Scene_item* clone() const override { return nullptr; } + QString name() const override { return tr("%1_transformed").arg(d->sm_item->name()); } + QString toolTip() const override; - bool isEmpty() const Q_DECL_OVERRIDE { return (d->nb_lines == 0); } + bool isEmpty() const override { return (d->nb_lines == 0); } void updateCache(); - virtual bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE { return m == Wireframe ; } - virtual void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; - void initializeBuffers(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; + virtual bool supportsRenderingMode(RenderingMode m) const override { return m == Wireframe ; } + virtual void invalidateOpenGLBuffers() override; + void initializeBuffers(CGAL::Three::Viewer_interface*) const override; - void compute_bbox() const Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; - void drawEdges(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; + void compute_bbox() const override; + void computeElements() const override; + void drawEdges(CGAL::Three::Viewer_interface*) const override; }; #endif // SCENE_AFF_TRANSFORMED_SURFACE_MESH_ITEM_H diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Engrave_text_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Engrave_text_plugin.cpp index dc45cd9ce624..8c3048eaa3ff 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Engrave_text_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Engrave_text_plugin.cpp @@ -320,7 +320,7 @@ public : } void init(QMainWindow*, CGAL::Three::Scene_interface*, - Messages_interface* m) Q_DECL_OVERRIDE{ + Messages_interface* m) override{ //get refs this->scene = Three::scene(); this->mw = Three::mainWindow(); @@ -436,12 +436,12 @@ public : dock_widget->graphicsView->installEventFilter(navigation); dock_widget->graphicsView->viewport()->installEventFilter(navigation); } - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { return qobject_cast (scene->item(scene->mainSelectionIndex())); } - QList actions() const Q_DECL_OVERRIDE{ + QList actions() const override{ return _actions; } public Q_SLOTS: @@ -825,7 +825,7 @@ public Q_SLOTS: QApplication::restoreOverrideCursor(); } - void closure()Q_DECL_OVERRIDE + void closure()override { dock_widget->hide(); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp index f459ae84894b..a2647094914c 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Extrude_plugin.cpp @@ -56,11 +56,11 @@ public : setTriangleContainer(0, new Tc(Vi::PROGRAM_WITH_LIGHT, false)); } // Indicates if rendering mode is supported - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE { + bool supportsRenderingMode(RenderingMode m) const override { return (m == Gouraud); } //Displays the item - void draw(Viewer_interface* viewer) const Q_DECL_OVERRIDE + void draw(Viewer_interface* viewer) const override { if(!isInit(viewer)) initGL(viewer); @@ -89,7 +89,7 @@ public : tc->setColor(this->color()); tc->draw(viewer, true); } - void invalidateOpenGLBuffers() Q_DECL_OVERRIDE + void invalidateOpenGLBuffers() override { for(CGAL::QGLViewer* v : CGAL::QGLViewer::QGLViewerPool()) { @@ -101,13 +101,13 @@ public : } getTriangleContainer(0)->reset_vbos(ALL); } - void compute_bbox() const Q_DECL_OVERRIDE {} - Scene_item* clone() const Q_DECL_OVERRIDE {return 0;} - QString toolTip() const Q_DECL_OVERRIDE {return QString();} + void compute_bbox() const override {} + Scene_item* clone() const override {return 0;} + QString toolTip() const override {return QString();} Vec center()const { return center_; } - Scene_item::ManipulatedFrame* manipulatedFrame() Q_DECL_OVERRIDE { return frame; } - bool manipulatable() const Q_DECL_OVERRIDE { return true; } - bool eventFilter(QObject *, QEvent *event) Q_DECL_OVERRIDE + Scene_item::ManipulatedFrame* manipulatedFrame() override { return frame; } + bool manipulatable() const override { return true; } + bool eventFilter(QObject *, QEvent *event) override { if(event->type() == QEvent::KeyPress || event->type() == QEvent::KeyRelease) { @@ -130,7 +130,7 @@ public : double length()const { return length_; } private: //make an arrow showing the length and direction of the transformation for the extrusion. - void initializeBuffers(Viewer_interface *viewer)const Q_DECL_OVERRIDE + void initializeBuffers(Viewer_interface *viewer)const override { std::vector vertices; std::vector normals; @@ -319,7 +319,7 @@ class ExtrudePlugin : Q_PLUGIN_METADATA(IID "com.geometryfactory.PolyhedronDemo.PluginInterface/1.0" FILE "extrude_plugin.json") public: - bool applicable(QAction* action) const Q_DECL_OVERRIDE + bool applicable(QAction* action) const override { if(action == actionCreateItem) { @@ -332,12 +332,12 @@ class ExtrudePlugin : return false; } - QList actions() const Q_DECL_OVERRIDE + QList actions() const override { return _actions; } - void init(QMainWindow* mainWindow, Scene_interface* sc, Messages_interface* mi) Q_DECL_OVERRIDE + void init(QMainWindow* mainWindow, Scene_interface* sc, Messages_interface* mi) override { this->messageInterface = mi; this->scene = sc; diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Alpha_shape_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Alpha_shape_plugin.cpp index 572f2a698a08..0c9bf82f8afb 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Alpha_shape_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Alpha_shape_plugin.cpp @@ -78,18 +78,18 @@ class Scene_alpha_shape_item : public CGAL::Three::Scene_item_rendering_helper Q_OBJECT public : Scene_alpha_shape_item(Scene_points_with_normal_item* , int alpha); - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE { + bool supportsRenderingMode(RenderingMode m) const override { return (m == Flat); } - void draw(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - void drawPoints(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - void invalidateOpenGLBuffers()Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; - Scene_item* clone() const Q_DECL_OVERRIDE{return 0;} - QString toolTip() const Q_DECL_OVERRIDE{return QString();} - bool isEmpty() const Q_DECL_OVERRIDE{ return false;} - bool isFinite() const Q_DECL_OVERRIDE{ return true;} - void compute_bbox() const Q_DECL_OVERRIDE {} + void draw(CGAL::Three::Viewer_interface* viewer) const override; + void drawPoints(CGAL::Three::Viewer_interface* viewer) const override; + void invalidateOpenGLBuffers()override; + void computeElements() const override; + Scene_item* clone() const override{return 0;} + QString toolTip() const override{return QString();} + bool isEmpty() const override{ return false;} + bool isFinite() const override{ return true;} + void compute_bbox() const override {} Alpha_shape_3 alpha_shape; void createPolygonSoup(std::vector& points, std::vector >& polys) const; @@ -99,7 +99,7 @@ public Q_SLOTS: private: mutable std::vector vertices; mutable std::vector indices; - void initializeBuffers(CGAL::Three::Viewer_interface *viewer)const Q_DECL_OVERRIDE; + void initializeBuffers(CGAL::Three::Viewer_interface *viewer)const override; Point_set point_set; }; //end of class Scene_alpha_shape_item @@ -134,7 +134,7 @@ class Q_DECL_EXPORT Alpha_shape_plugin : Q_PLUGIN_METADATA(IID "com.geometryfactory.PolyhedronDemo.PluginInterface/1.0") public : - void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface, Messages_interface*)Q_DECL_OVERRIDE { + void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface, Messages_interface*)override { this->scene = scene_interface; this->mw = mainWindow; QAction* actionAlphaShapes= new QAction("Alpha Shapes", mw); @@ -167,11 +167,11 @@ public : } - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { return qobject_cast( scene->item( scene->mainSelectionIndex() ) ); } - QList actions() const Q_DECL_OVERRIDE { + QList actions() const override { return _actions; } public Q_SLOTS: @@ -260,7 +260,7 @@ public Q_SLOTS: dock_widget->poly_itemPushButton->setEnabled(true); } } - void closure() Q_DECL_OVERRIDE + void closure() override { dock_widget->hide(); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Basic_item_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Basic_item_plugin.cpp index 7be6b48736a8..6aaaf519c940 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Basic_item_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Basic_item_plugin.cpp @@ -20,18 +20,18 @@ class BasicItemPlugin : public: //! [applicable] //This plugin is only applicable if there is exactly one selected item. - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { return scene->selectionIndices().size() ==1; } //! [applicable] //the list of the actions of the plugin. - QList actions() const Q_DECL_OVERRIDE + QList actions() const override { return _actions; } //this acts like a constructor for the plugin. It gets the references to the mainwindow and the scene, and connects the action. - void init(QMainWindow* mw, CGAL::Three::Scene_interface* sc, Messages_interface*) Q_DECL_OVERRIDE + void init(QMainWindow* mw, CGAL::Three::Scene_interface* sc, Messages_interface*) override { //get the references this->scene = sc; diff --git a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Basic_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Basic_plugin.cpp index 6c4e3484f9c5..0edb4560030f 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Basic_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Basic_plugin.cpp @@ -43,17 +43,17 @@ class BasicPlugin : Q_PLUGIN_METADATA(IID "com.geometryfactory.PolyhedronDemo.PluginInterface/1.0") public: //decides if the plugin's actions will be displayed or not. - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { return true; } //the list of the actions of the plugin. - QList actions() const Q_DECL_OVERRIDE + QList actions() const override { return _actions; } //this acts like a constructor for the plugin. It gets the references to the main window and the scene, and connects the action. - void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* sc, Messages_interface*) Q_DECL_OVERRIDE + void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* sc, Messages_interface*) override { //get the references this->scene = sc; diff --git a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Dock_widget_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Dock_widget_plugin.cpp index 2fc76f1c03a2..392b89540a25 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Dock_widget_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Dock_widget_plugin.cpp @@ -29,18 +29,18 @@ class BasicPlugin : Q_PLUGIN_METADATA(IID "com.geometryfactory.PolyhedronDemo.PluginInterface/1.0") public: //decides if the plugin's actions will be displayed or not. - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { return true; } //the list of the actions of the plugin. - QList actions() const Q_DECL_OVERRIDE + QList actions() const override { return _actions; } //! [init] //this acts like a constructor for the plugin. It gets the references to the mainwindow and the scene, and connects the action. - void init(QMainWindow* mw, CGAL::Three::Scene_interface* sc, Messages_interface*) Q_DECL_OVERRIDE + void init(QMainWindow* mw, CGAL::Three::Scene_interface* sc, Messages_interface*) override { //get the references this->scene = sc; @@ -83,7 +83,7 @@ private Q_SLOTS: } //! [action] //! [closure] - void closure()Q_DECL_OVERRIDE + void closure()override { dock_widget->hide(); } diff --git a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Example_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Example_plugin.cpp index 127ece2b53f9..ec18b4657542 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Example_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Three_examples/Example_plugin.cpp @@ -29,30 +29,30 @@ public : double cx,double cy, double cz); // Indicates if rendering mode is supported - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE { + bool supportsRenderingMode(RenderingMode m) const override { return (m == Flat); } //Displays the item - void draw(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; + void draw(CGAL::Three::Viewer_interface* viewer) const override; //Specifies that the buffers need to be initialized again. //Is mostly called after a change of geometry in the data. - void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; + void invalidateOpenGLBuffers() override; //fills the std::vector - void computeElements() const Q_DECL_OVERRIDE; + void computeElements() const override; - Scene_item* clone() const Q_DECL_OVERRIDE {return 0;} - QString toolTip() const Q_DECL_OVERRIDE {return QString();} - void compute_bbox() const Q_DECL_OVERRIDE { _bbox = Bbox(); } + Scene_item* clone() const override {return 0;} + QString toolTip() const override {return QString();} + void compute_bbox() const override { _bbox = Bbox(); } private: //contains the data mutable std::vector vertices; mutable std::size_t nb_pos; //Fills the buffers with data. The buffers allow us to give data to the shaders. - void initializeBuffers(Viewer_interface *viewer) const Q_DECL_OVERRIDE; + void initializeBuffers(Viewer_interface *viewer) const override; }; //end of class Scene_triangle_item //! [itemdeclaration] Scene_triangle_item::Scene_triangle_item(double ax,double ay, double az, @@ -152,7 +152,7 @@ class Q_DECL_EXPORT Polyhedron_demo_example_plugin : public : // Adds an action to the menu and configures the widget - void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface, Messages_interface*) Q_DECL_OVERRIDE{ + void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface, Messages_interface*) override{ //get the references this->scene = scene_interface; this->mw = mainWindow; @@ -165,11 +165,11 @@ public : _actions << actionDrawTriangle; } } - bool applicable(QAction*) const Q_DECL_OVERRIDE + bool applicable(QAction*) const override { return true; } - QList actions() const Q_DECL_OVERRIDE{ + QList actions() const override{ return _actions; } diff --git a/Polyhedron/demo/Polyhedron/Scene.h b/Polyhedron/demo/Polyhedron/Scene.h index 7c42806b23f2..2d0a0cb2c7c9 100644 --- a/Polyhedron/demo/Polyhedron/Scene.h +++ b/Polyhedron/demo/Polyhedron/Scene.h @@ -51,22 +51,22 @@ class SCENE_EXPORT Scene : NumberOfColumns = LastColumn + 1}; Scene(QObject* parent); ~Scene(); - int addItem(CGAL::Three::Scene_item* item) Q_DECL_OVERRIDE; - void addChild(Scene_item* item) Q_DECL_OVERRIDE; - Q_INVOKABLE void changeGroup(CGAL::Three::Scene_item* item, CGAL::Three::Scene_group_item* target_group) Q_DECL_OVERRIDE; - CGAL::Three::Scene_item* replaceItem(int index, CGAL::Three::Scene_item* item, bool emit_item_about_to_be_destroyed = false) Q_DECL_OVERRIDE; - Q_INVOKABLE int erase(int) Q_DECL_OVERRIDE; + int addItem(CGAL::Three::Scene_item* item) override; + void addChild(Scene_item* item) override; + Q_INVOKABLE void changeGroup(CGAL::Three::Scene_item* item, CGAL::Three::Scene_group_item* target_group) override; + CGAL::Three::Scene_item* replaceItem(int index, CGAL::Three::Scene_item* item, bool emit_item_about_to_be_destroyed = false) override; + Q_INVOKABLE int erase(int) override; - int erase(QList) Q_DECL_OVERRIDE; - int duplicate(int index) Q_DECL_OVERRIDE; + int erase(QList) override; + int duplicate(int index) override; // Accessors (getters) - int numberOfEntries() const Q_DECL_OVERRIDE; + int numberOfEntries() const override; // returns the list of items. const QList& entries() const { return m_entries; } - Q_INVOKABLE CGAL::Three::Scene_item* item(int) const Q_DECL_OVERRIDE; - int item_id(CGAL::Three::Scene_item*) const Q_DECL_OVERRIDE; + Q_INVOKABLE CGAL::Three::Scene_item* item(int) const override; + int item_id(CGAL::Three::Scene_item*) const override; //! \todo Replace Index based selection functionality with those //! functions. @@ -77,28 +77,28 @@ class SCENE_EXPORT Scene : QList selectionB() const; ///@} - int mainSelectionIndex() const Q_DECL_OVERRIDE; - QList selectionIndices() const Q_DECL_OVERRIDE; - int selectionAindex() const Q_DECL_OVERRIDE; - int selectionBindex() const Q_DECL_OVERRIDE; - void initializeGL(CGAL::Three::Viewer_interface*) Q_DECL_OVERRIDE; + int mainSelectionIndex() const override; + QList selectionIndices() const override; + int selectionAindex() const override; + int selectionBindex() const override; + void initializeGL(CGAL::Three::Viewer_interface*) override; void initGL(CGAL::Three::Viewer_interface* viewer); - void setPickedPixel(const QPoint &p) Q_DECL_OVERRIDE {picked_pixel = p;} - void draw(CGAL::Three::Viewer_interface*) Q_DECL_OVERRIDE; - void drawWithNames(CGAL::Three::Viewer_interface*) Q_DECL_OVERRIDE; - bool keyPressEvent(QKeyEvent* e) Q_DECL_OVERRIDE; + void setPickedPixel(const QPoint &p) override {picked_pixel = p;} + void draw(CGAL::Three::Viewer_interface*) override; + void drawWithNames(CGAL::Three::Viewer_interface*) override; + bool keyPressEvent(QKeyEvent* e) override; void printPrimitiveId(QPoint point, - CGAL::Three::Viewer_interface*) Q_DECL_OVERRIDE; - void printVertexIds() Q_DECL_OVERRIDE; - void printEdgeIds() Q_DECL_OVERRIDE; - void printFaceIds() Q_DECL_OVERRIDE; - void printAllIds() Q_DECL_OVERRIDE; + CGAL::Three::Viewer_interface*) override; + void printVertexIds() override; + void printEdgeIds() override; + void printFaceIds() override; + void printAllIds() override; //!Re-computes the primitiveIds for `item` - void updatePrimitiveIds(Scene_item *item) Q_DECL_OVERRIDE; - bool testDisplayId(double x, double y, double z, CGAL::Three::Viewer_interface* viewer) Q_DECL_OVERRIDE; - Bbox bbox() const Q_DECL_OVERRIDE; + void updatePrimitiveIds(Scene_item *item) override; + bool testDisplayId(double x, double y, double z, CGAL::Three::Viewer_interface* viewer) override; + Bbox bbox() const override; void computeBbox(); - double len_diagonal() const Q_DECL_OVERRIDE + double len_diagonal() const override { Bbox box = bbox(); double dx = box.xmax() - box.xmin(); @@ -114,19 +114,19 @@ class SCENE_EXPORT Scene : // QStandardItemModel functions //Defines the behavior when a name is drag-and-dropped in the Geometric Objects view bool dropMimeData(const QMimeData *, Qt::DropAction, int, int, - const QModelIndex &parent) Q_DECL_OVERRIDE; + const QModelIndex &parent) override; //Contains the text and icons of an item in the Geometric Objects view QVariant data ( const QModelIndex & index, - int role = ::Qt::DisplayRole ) const Q_DECL_OVERRIDE; + int role = ::Qt::DisplayRole ) const override; //@returns the type of data correspondind to the role. QVariant headerData ( int section, ::Qt::Orientation orientation, - int role = ::Qt::DisplayRole ) const Q_DECL_OVERRIDE; + int role = ::Qt::DisplayRole ) const override; //@returns the flags for the item at the target index. - ::Qt::ItemFlags flags ( const QModelIndex & index ) const Q_DECL_OVERRIDE; + ::Qt::ItemFlags flags ( const QModelIndex & index ) const override; // Sets the column data for the target index. Returns false if index is not valid and // if role is not EditRole. bool setData(const QModelIndex &index, const QVariant &value, - int role) Q_DECL_OVERRIDE; + int role) override; //Returns a list of all the items. QList item_entries() const ; @@ -142,8 +142,8 @@ class SCENE_EXPORT Scene : void addGroup(Scene_group_item* group); void zoomToPosition(QPoint point, - CGAL::Three::Viewer_interface*) Q_DECL_OVERRIDE; - void setUpdatesEnabled(bool b) Q_DECL_OVERRIDE + CGAL::Three::Viewer_interface*) override; + void setUpdatesEnabled(bool b) override { dont_emit_changes = !b; if(!b) @@ -157,12 +157,12 @@ public Q_SLOTS: void setCollapsed(QModelIndex); //!Transmits a CGAL::Three::Scene_item::itemChanged() signal to the scene. void itemChanged(); - void itemChanged(int i) Q_DECL_OVERRIDE; - void itemChanged(CGAL::Three::Scene_item*) Q_DECL_OVERRIDE; - void allItemsChanged() Q_DECL_OVERRIDE; + void itemChanged(int i) override; + void itemChanged(CGAL::Three::Scene_item*) override; + void allItemsChanged() override; //!Transmits a CGAL::Three::Scene_item::itemVisibilityChanged() signal to the scene. void itemVisibilityChanged(); - void itemVisibilityChanged(CGAL::Three::Scene_item*) Q_DECL_OVERRIDE; + void itemVisibilityChanged(CGAL::Three::Scene_item*) override; //!Removes `item` from all the groups of the scene. void remove_item_from_groups(CGAL::Three::Scene_item* item); //!Re-organizes the sceneView. @@ -175,7 +175,7 @@ public Q_SLOTS: selected_item = i; Q_EMIT itemIndexSelected(i); } - void setSelectedItem(int i ) Q_DECL_OVERRIDE + void setSelectedItem(int i ) override { selected_item = i; Q_EMIT selectionChanged(i); diff --git a/Polyhedron/demo/Polyhedron/Scene_lcc_item.h b/Polyhedron/demo/Polyhedron/Scene_lcc_item.h index 6a07dfb522a5..828f44b97ffb 100644 --- a/Polyhedron/demo/Polyhedron/Scene_lcc_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_lcc_item.h @@ -27,26 +27,26 @@ class SCENE_LCC_ITEM_EXPORT Scene_lcc_item : public CGAL::Three::Scene_item_rend Scene_lcc_item(const LCC &lcc); ~Scene_lcc_item(); - bool isEmpty()const Q_DECL_OVERRIDE; - bool isFinite() const Q_DECL_OVERRIDE { return true; } + bool isEmpty()const override; + bool isFinite() const override { return true; } - Scene_lcc_item* clone() const Q_DECL_OVERRIDE ; - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE ; - QString toolTip() const Q_DECL_OVERRIDE ; - void compute_bbox()const Q_DECL_OVERRIDE; + Scene_lcc_item* clone() const override ; + bool supportsRenderingMode(RenderingMode m) const override ; + QString toolTip() const override ; + void compute_bbox()const override; - void draw(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE ; - void drawEdges(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE ; - void drawPoints(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE ; + void draw(CGAL::Three::Viewer_interface*) const override ; + void drawEdges(CGAL::Three::Viewer_interface*) const override ; + void drawPoints(CGAL::Three::Viewer_interface*) const override ; - void computeElements() const Q_DECL_OVERRIDE; - void initializeBuffers(CGAL::Three::Viewer_interface *) const Q_DECL_OVERRIDE; + void computeElements() const override; + void initializeBuffers(CGAL::Three::Viewer_interface *) const override; - QMenu* contextMenu() Q_DECL_OVERRIDE ; + QMenu* contextMenu() override ; public Q_SLOTS: - void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; + void invalidateOpenGLBuffers() override; void randomFaceColors(); void randomVolumeColors(); void resetColors(); diff --git a/Polyhedron/demo/Polyhedron/Scene_plane_item.h b/Polyhedron/demo/Polyhedron/Scene_plane_item.h index 7cbf72b32881..b2b210671eb7 100644 --- a/Polyhedron/demo/Polyhedron/Scene_plane_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_plane_item.h @@ -61,27 +61,27 @@ class SCENE_BASIC_OBJECTS_EXPORT Scene_plane_item zdelta*zdelta); return diag * 0.7; } - bool isFinite() const Q_DECL_OVERRIDE { return false; } - bool isEmpty() const Q_DECL_OVERRIDE { return false; } - void compute_bbox() const Q_DECL_OVERRIDE { _bbox = Bbox(); } - bool manipulatable() const Q_DECL_OVERRIDE; - ManipulatedFrame* manipulatedFrame() Q_DECL_OVERRIDE; - QMenu* contextMenu() Q_DECL_OVERRIDE; + bool isFinite() const override { return false; } + bool isEmpty() const override { return false; } + void compute_bbox() const override { _bbox = Bbox(); } + bool manipulatable() const override; + ManipulatedFrame* manipulatedFrame() override; + QMenu* contextMenu() override; - Scene_plane_item* clone() const Q_DECL_OVERRIDE ; + Scene_plane_item* clone() const override ; - QString toolTip() const Q_DECL_OVERRIDE ; + QString toolTip() const override ; // Indicate if rendering mode is supported - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE{ + bool supportsRenderingMode(RenderingMode m) const override{ return (m == Wireframe || m == Flat || m == FlatPlusEdges); } - virtual void draw(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; - virtual void drawEdges(CGAL::Three::Viewer_interface* viewer)const Q_DECL_OVERRIDE; + virtual void draw(CGAL::Three::Viewer_interface*) const override; + virtual void drawEdges(CGAL::Three::Viewer_interface* viewer)const override; Plane_3 plane(CGAL::qglviewer::Vec offset = CGAL::qglviewer::Vec(0,0,0)) const; public Q_SLOTS: - virtual void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; + virtual void invalidateOpenGLBuffers() override; void setPosition(float x, float y, float z); @@ -121,8 +121,8 @@ public Q_SLOTS: mutable bool smooth_shading; mutable QOpenGLShaderProgram *program; - void initializeBuffers(CGAL::Three::Viewer_interface *) const Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; + void initializeBuffers(CGAL::Three::Viewer_interface *) const override; + void computeElements() const override; }; #endif // SCENE_PLANE_ITEM_H diff --git a/Polyhedron/demo/Polyhedron/Scene_points_with_normal_item.h b/Polyhedron/demo/Polyhedron/Scene_points_with_normal_item.h index e306b96dee22..05a7723b3eb6 100644 --- a/Polyhedron/demo/Polyhedron/Scene_points_with_normal_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_points_with_normal_item.h @@ -41,13 +41,13 @@ class SCENE_POINTS_WITH_NORMAL_ITEM_EXPORT Scene_points_with_normal_item ~Scene_points_with_normal_item(); - Scene_points_with_normal_item* clone() const Q_DECL_OVERRIDE; + Scene_points_with_normal_item* clone() const override; // Is selection empty? virtual bool isSelectionEmpty() const; // Function to override the context menu - QMenu* contextMenu() Q_DECL_OVERRIDE; + QMenu* contextMenu() override; // IO bool read_ply_point_set(std::istream& in); @@ -58,15 +58,15 @@ class SCENE_POINTS_WITH_NORMAL_ITEM_EXPORT Scene_points_with_normal_item bool write_xyz_point_set(std::ostream& out) const; // Function for displaying meta-data of the item - virtual QString toolTip() const Q_DECL_OVERRIDE; + virtual QString toolTip() const override; - virtual void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; + virtual void invalidateOpenGLBuffers() override; // Indicate if rendering mode is supported - virtual bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE; + virtual bool supportsRenderingMode(RenderingMode m) const override; - virtual void drawEdges(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - virtual void drawPoints(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; + virtual void drawEdges(CGAL::Three::Viewer_interface* viewer) const override; + virtual void drawPoints(CGAL::Three::Viewer_interface*) const override; // Gets wrapped point set Point_set* point_set(); @@ -77,19 +77,19 @@ class SCENE_POINTS_WITH_NORMAL_ITEM_EXPORT Scene_points_with_normal_item const std::string& comments() const; // Gets dimensions - virtual bool isFinite() const Q_DECL_OVERRIDE { return true; } - virtual bool isEmpty() const Q_DECL_OVERRIDE; - virtual void compute_bbox() const Q_DECL_OVERRIDE; + virtual bool isFinite() const override { return true; } + virtual bool isEmpty() const override; + virtual void compute_bbox() const override; // computes the local point spacing (aka radius) of each point void computes_local_spacing(int k); bool has_normals() const; - void copyProperties(Scene_item *) Q_DECL_OVERRIDE; + void copyProperties(Scene_item *) override; int getNormalSliderValue(); int getPointSliderValue(); - void computeElements() const Q_DECL_OVERRIDE; - void initializeBuffers(CGAL::Three::Viewer_interface *) const Q_DECL_OVERRIDE; + void computeElements() const override; + void initializeBuffers(CGAL::Three::Viewer_interface *) const override; public Q_SLOTS: // Delete selection @@ -106,7 +106,7 @@ public Q_SLOTS: void pointSliderPressed(); //Set the status of the slider as `released` void pointSliderReleased(); - void itemAboutToBeDestroyed(Scene_item *) Q_DECL_OVERRIDE; + void itemAboutToBeDestroyed(Scene_item *) override; void setPointSize(int size); void setNormalSize(int size); void resetColors(); @@ -116,7 +116,7 @@ public Q_SLOTS: Scene_points_with_normal_item_priv* d; public: - void zoomToPosition(const QPoint &, CGAL::Three::Viewer_interface *)const Q_DECL_OVERRIDE; + void zoomToPosition(const QPoint &, CGAL::Three::Viewer_interface *)const override; }; // end class Scene_points_with_normal_item diff --git a/Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.h b/Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.h index 5d87338bd156..4169a0dd0649 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.h @@ -112,7 +112,7 @@ class SCENE_POLYGON_SOUP_ITEM_EXPORT Scene_polygon_soup_item Scene_polygon_soup_item(); ~Scene_polygon_soup_item(); - Scene_polygon_soup_item* clone() const Q_DECL_OVERRIDE; + Scene_polygon_soup_item* clone() const override; template void load(const std::vector& points, const std::vector& polygons); @@ -129,19 +129,19 @@ class SCENE_POLYGON_SOUP_ITEM_EXPORT Scene_polygon_soup_item bool save(std::ostream& out) const; std::vector getVColors() const; std::vector getFColors() const; - QString toolTip() const Q_DECL_OVERRIDE; + QString toolTip() const override; // Indicate if rendering mode is supported - virtual bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE{ return ( m!=PointsPlusNormals && m!=ShadedPoints); } + virtual bool supportsRenderingMode(RenderingMode m) const override{ return ( m!=PointsPlusNormals && m!=ShadedPoints); } // OpenGL drawing in a display list - virtual void draw() const Q_DECL_OVERRIDE{} - virtual void draw(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; - virtual void drawPoints(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; - virtual void drawEdges(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; - bool isFinite() const Q_DECL_OVERRIDE{ return true; } - bool isEmpty() const Q_DECL_OVERRIDE; - void compute_bbox() const Q_DECL_OVERRIDE; + virtual void draw() const override{} + virtual void draw(CGAL::Three::Viewer_interface*) const override; + virtual void drawPoints(CGAL::Three::Viewer_interface*) const override; + virtual void drawEdges(CGAL::Three::Viewer_interface* viewer) const override; + void invalidateOpenGLBuffers() override; + bool isFinite() const override{ return true; } + bool isEmpty() const override; + void compute_bbox() const override; void new_vertex(const double&, const double&, const double&); void new_triangle(const std::size_t, const std::size_t, const std::size_t); @@ -151,8 +151,8 @@ class SCENE_POLYGON_SOUP_ITEM_EXPORT Scene_polygon_soup_item const Points& points() const; const Polygons& polygons() const; const Edges& non_manifold_edges() const; - void initializeBuffers(CGAL::Three::Viewer_interface *) const Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; + void initializeBuffers(CGAL::Three::Viewer_interface *) const override; + void computeElements() const override; //statistics enum STATS @@ -177,9 +177,9 @@ class SCENE_POLYGON_SOUP_ITEM_EXPORT Scene_polygon_soup_item MEAN_ANGLE }; - bool has_stats()const Q_DECL_OVERRIDE{return true;} - QString computeStats(int type)Q_DECL_OVERRIDE; - CGAL::Three::Scene_item::Header_data header() const Q_DECL_OVERRIDE; + bool has_stats()const override{return true;} + QString computeStats(int type)override; + CGAL::Three::Scene_item::Header_data header() const override; public Q_SLOTS: void shuffle_orientations(); bool orient(std::vector& non_manifold_vertices); @@ -190,7 +190,7 @@ public Q_SLOTS: void setDisplayNonManifoldEdges(const bool); bool displayNonManifoldEdges() const; - void itemAboutToBeDestroyed(Scene_item *item) Q_DECL_OVERRIDE; + void itemAboutToBeDestroyed(Scene_item *item) override; protected: friend struct Scene_polygon_soup_item_priv; diff --git a/Polyhedron/demo/Polyhedron/Scene_polylines_item.h b/Polyhedron/demo/Polyhedron/Scene_polylines_item.h index fc7d886de080..3bc9578f989f 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polylines_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_polylines_item.h @@ -33,41 +33,41 @@ class SCENE_POLYLINES_ITEM_EXPORT Scene_polylines_item MAX_LENGTH, MEAN_LENGTH }; - bool has_stats()const Q_DECL_OVERRIDE {return true;} - QString computeStats(int type)Q_DECL_OVERRIDE ; - CGAL::Three::Scene_item::Header_data header() const Q_DECL_OVERRIDE ; + bool has_stats()const override {return true;} + QString computeStats(int type)override ; + CGAL::Three::Scene_item::Header_data header() const override ; - bool isFinite() const Q_DECL_OVERRIDE { return true; } - bool isEmpty() const Q_DECL_OVERRIDE ; - void compute_bbox() const Q_DECL_OVERRIDE ; - Bbox bbox() const Q_DECL_OVERRIDE ; + bool isFinite() const override { return true; } + bool isEmpty() const override ; + void compute_bbox() const override ; + Bbox bbox() const override ; - Scene_polylines_item* clone() const Q_DECL_OVERRIDE ; + Scene_polylines_item* clone() const override ; - QString toolTip() const Q_DECL_OVERRIDE ; + QString toolTip() const override ; // Indicate if rendering mode is supported - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE ; + bool supportsRenderingMode(RenderingMode m) const override ; - QMenu* contextMenu() Q_DECL_OVERRIDE ; + QMenu* contextMenu() override ; - void draw(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE ; - void drawEdges(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE ; - void drawPoints(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE ; + void draw(CGAL::Three::Viewer_interface*) const override ; + void drawEdges(CGAL::Three::Viewer_interface*) const override ; + void drawPoints(CGAL::Three::Viewer_interface*) const override ; void smooth(std::vector& polyline); //When selecting a polylineitem, we don't want to select its children, so //we can still apply Operations to it - QList getChildrenForSelection() const Q_DECL_OVERRIDE { + QList getChildrenForSelection() const override { return QList(); } void setWidth(int i); - void computeElements() const Q_DECL_OVERRIDE; - void initializeBuffers(Viewer_interface *) const Q_DECL_OVERRIDE; + void computeElements() const override; + void initializeBuffers(Viewer_interface *) const override; public Q_SLOTS: - void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; + void invalidateOpenGLBuffers() override; void change_corner_radii(double); void change_corner_radii(); void split_at_sharp_angles(); diff --git a/Polyhedron/demo/Polyhedron/Scene_spheres_item.h b/Polyhedron/demo/Polyhedron/Scene_spheres_item.h index bebaf110da5e..dd365a16ac25 100644 --- a/Polyhedron/demo/Polyhedron/Scene_spheres_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_spheres_item.h @@ -37,30 +37,30 @@ class SCENE_BASIC_OBJECTS_EXPORT Scene_spheres_item ~Scene_spheres_item(); - bool isFinite() const Q_DECL_OVERRIDE{ return true; } - bool isEmpty() const Q_DECL_OVERRIDE{ return false; } - Scene_item* clone() const Q_DECL_OVERRIDE{return nullptr;} - QString toolTip() const Q_DECL_OVERRIDE; - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE{ + bool isFinite() const override{ return true; } + bool isEmpty() const override{ return false; } + Scene_item* clone() const override{return nullptr;} + QString toolTip() const override; + bool supportsRenderingMode(RenderingMode m) const override{ return (m == Gouraud || m == Wireframe); } - void compute_bbox() const Q_DECL_OVERRIDE; + void compute_bbox() const override; void add_sphere(const Sphere &sphere, std::size_t index = 0, CGAL::IO::Color = CGAL::IO::Color(120,120,120)); void clear_spheres(); void setPrecision(int prec); void gl_initialization(CGAL::Three::Viewer_interface* viewer); - void draw(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - void drawEdges(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; + void draw(CGAL::Three::Viewer_interface* viewer) const override; + void drawEdges(CGAL::Three::Viewer_interface* viewer) const override; + void invalidateOpenGLBuffers() override; void setPlane(Kernel::Plane_3 p_plane); void setToolTip(QString s); - void setColor(QColor c) Q_DECL_OVERRIDE; + void setColor(QColor c) override; bool save(const std::string &file_name) const; - void initializeBuffers(Viewer_interface *) const Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; - bool eventFilter(QObject *watched, QEvent *event)Q_DECL_OVERRIDE; + void initializeBuffers(Viewer_interface *) const override; + void computeElements() const override; + bool eventFilter(QObject *watched, QEvent *event)override; Q_SIGNALS: void on_color_changed(); void picked(std::size_t id) const; diff --git a/Polyhedron/demo/Polyhedron/Scene_surface_mesh_item.h b/Polyhedron/demo/Polyhedron/Scene_surface_mesh_item.h index a4d655d17481..555f57f5fd53 100644 --- a/Polyhedron/demo/Polyhedron/Scene_surface_mesh_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_surface_mesh_item.h @@ -58,19 +58,19 @@ class SCENE_SURFACE_MESH_ITEM_EXPORT Scene_surface_mesh_item ~Scene_surface_mesh_item(); - Scene_surface_mesh_item* clone() const Q_DECL_OVERRIDE; - void draw(CGAL::Three::Viewer_interface *) const Q_DECL_OVERRIDE; - void drawEdges(CGAL::Three::Viewer_interface *) const Q_DECL_OVERRIDE; - void drawPoints(CGAL::Three::Viewer_interface *) const Q_DECL_OVERRIDE; + Scene_surface_mesh_item* clone() const override; + void draw(CGAL::Three::Viewer_interface *) const override; + void drawEdges(CGAL::Three::Viewer_interface *) const override; + void drawPoints(CGAL::Three::Viewer_interface *) const override; - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE; - bool isFinite() const Q_DECL_OVERRIDE { return true; } - bool isEmpty() const Q_DECL_OVERRIDE; - Bbox bbox() const Q_DECL_OVERRIDE; - QString toolTip() const Q_DECL_OVERRIDE; - void copyProperties(Scene_item *) Q_DECL_OVERRIDE; + bool supportsRenderingMode(RenderingMode m) const override; + bool isFinite() const override { return true; } + bool isEmpty() const override; + Bbox bbox() const override; + QString toolTip() const override; + void copyProperties(Scene_item *) override; - QMenu* contextMenu() Q_DECL_OVERRIDE; + QMenu* contextMenu() override; void setItemIsMulticolor(bool); //to be called before invalidate() to enable or disable the recomputation @@ -98,11 +98,11 @@ class SCENE_SURFACE_MESH_ITEM_EXPORT Scene_surface_mesh_item const std::string& comments() const; void invalidate_aabb_tree(); - void invalidateOpenGLBuffers()Q_DECL_OVERRIDE; + void invalidateOpenGLBuffers()override; void invalidate(Gl_data_names name); - void compute_bbox()const Q_DECL_OVERRIDE; + void compute_bbox()const override; bool save(std::ostream& out) const; bool save_obj(std::ostream& out) const; bool load_obj(std::istream& in); @@ -152,24 +152,24 @@ class SCENE_SURFACE_MESH_ITEM_EXPORT Scene_surface_mesh_item MEAN_ANGLE }; - bool has_stats()const Q_DECL_OVERRIDE{return true;} - QString computeStats(int type)Q_DECL_OVERRIDE; - CGAL::Three::Scene_item::Header_data header() const Q_DECL_OVERRIDE; + bool has_stats()const override{return true;} + QString computeStats(int type)override; + CGAL::Three::Scene_item::Header_data header() const override; //zoomable interface - void zoomToPosition(const QPoint &point, CGAL::Three::Viewer_interface *)const Q_DECL_OVERRIDE; + void zoomToPosition(const QPoint &point, CGAL::Three::Viewer_interface *)const override; //print_interface - void printPrimitiveId(QPoint point, CGAL::Three::Viewer_interface*viewer)Q_DECL_OVERRIDE; - bool printVertexIds()const Q_DECL_OVERRIDE; - bool printEdgeIds()const Q_DECL_OVERRIDE; - bool printFaceIds()const Q_DECL_OVERRIDE; - void printAllIds() Q_DECL_OVERRIDE; - bool shouldDisplayIds(CGAL::Three::Scene_item *current_item) const Q_DECL_OVERRIDE; - bool testDisplayId(double x, double y, double z, CGAL::Three::Viewer_interface*)const Q_DECL_OVERRIDE; - float alpha() const Q_DECL_OVERRIDE; - void setAlpha(int alpha) Q_DECL_OVERRIDE; + void printPrimitiveId(QPoint point, CGAL::Three::Viewer_interface*viewer) override; + bool printVertexIds()const override; + bool printEdgeIds()const override; + bool printFaceIds()const override; + void printAllIds() override; + bool shouldDisplayIds(CGAL::Three::Scene_item *current_item) const override; + bool testDisplayId(double x, double y, double z, CGAL::Three::Viewer_interface*)const override; + float alpha() const override; + void setAlpha(int alpha) override; QSlider* alphaSlider(); - void computeElements() const Q_DECL_OVERRIDE; - void initializeBuffers(CGAL::Three::Viewer_interface*)const Q_DECL_OVERRIDE; + void computeElements() const override; + void initializeBuffers(CGAL::Three::Viewer_interface*)const override; void updateVertex(vertex_descriptor vh); void fill_flat_vertex_map(); void updateIds(vertex_descriptor vh); @@ -183,14 +183,14 @@ class SCENE_SURFACE_MESH_ITEM_EXPORT Scene_surface_mesh_item public Q_SLOTS: - void itemAboutToBeDestroyed(Scene_item *) Q_DECL_OVERRIDE; - virtual void selection_changed(bool) Q_DECL_OVERRIDE; + void itemAboutToBeDestroyed(Scene_item *) override; + virtual void selection_changed(bool) override; void select(double orig_x, double orig_y, double orig_z, double dir_x, double dir_y, - double dir_z) Q_DECL_OVERRIDE; + double dir_z) override; bool intersect_face(double orig_x, double orig_y, double orig_z, diff --git a/Polyhedron/demo/Polyhedron/Scene_tetrahedra_item.h b/Polyhedron/demo/Polyhedron/Scene_tetrahedra_item.h index fdf609481d55..23608d333d5b 100644 --- a/Polyhedron/demo/Polyhedron/Scene_tetrahedra_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_tetrahedra_item.h @@ -30,18 +30,18 @@ class SCENE_TETRAHEDRA_ITEM_EXPORT Scene_tetrahedra_item : public CGAL::Three::S Q_OBJECT public : Scene_tetrahedra_item(Scene_c3t3_item*); - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE { + bool supportsRenderingMode(RenderingMode m) const override { return (m == Flat); } - void draw(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - void invalidateOpenGLBuffers()Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; - Scene_item* clone() const Q_DECL_OVERRIDE; - QString toolTip() const Q_DECL_OVERRIDE{return QString();} - bool isEmpty() const Q_DECL_OVERRIDE{ return false;} - bool isFinite() const Q_DECL_OVERRIDE{ return true;} - void initializeBuffers(CGAL::Three::Viewer_interface *) const Q_DECL_OVERRIDE; - void compute_bbox() const Q_DECL_OVERRIDE; + void draw(CGAL::Three::Viewer_interface* viewer) const override; + void invalidateOpenGLBuffers()override; + void computeElements() const override; + Scene_item* clone() const override; + QString toolTip() const override{return QString();} + bool isEmpty() const override{ return false;} + bool isFinite() const override{ return true;} + void initializeBuffers(CGAL::Three::Viewer_interface *) const override; + void compute_bbox() const override; void setMinMinLabelPointer(QLabel*); void setMinMaxLabelPointer(QLabel*); void setMaxMinLabelPointer(QLabel*); diff --git a/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.cpp b/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.cpp index d2c3ca9a0ea3..507122e3de6d 100644 --- a/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.cpp @@ -79,13 +79,13 @@ public : setTriangleContainer(0, new Tc(Vi::PROGRAM_C3T3, false)); setEdgeContainer(0, new Ec(Vi::PROGRAM_NO_SELECTION, false)); } - bool isFinite() const Q_DECL_OVERRIDE{ return false; } + bool isFinite() const override{ return false; } ~Scene_intersection_item() { if(alphaSlider) delete alphaSlider; } - void compute_bbox() const Q_DECL_OVERRIDE{} + void compute_bbox() const override{} void gl_initialization(Vi* viewer) { @@ -109,16 +109,16 @@ public : barycenters = p_bary; subdomain_ids = p_subdomain_ids; } - void setColor(QColor c) Q_DECL_OVERRIDE + void setColor(QColor c) override { qobject_cast(this->parent())->setColor(c); Scene_item::setColor(c); } // Indicates if rendering mode is supported - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE{ + bool supportsRenderingMode(RenderingMode m) const override{ return (m != Gouraud && m != PointsPlusNormals && m != Points && m != ShadedPoints); } - void computeElements() const Q_DECL_OVERRIDE + void computeElements() const override { getTriangleContainer(0)->reset_vbos(ALL); getEdgeContainer(0)->reset_vbos(ALL); @@ -137,7 +137,7 @@ public : static_cast(edges->size()*sizeof(float))); setBuffersFilled(true); } - void initializeBuffers(CGAL::Three::Viewer_interface *viewer)const Q_DECL_OVERRIDE + void initializeBuffers(CGAL::Three::Viewer_interface *viewer)const override { //vao containing the data for the facets { @@ -152,7 +152,7 @@ public : } //Displays the item - void draw(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE + void draw(CGAL::Three::Viewer_interface* viewer) const override { if(is_fast) return; @@ -174,7 +174,7 @@ public : getTriangleContainer(0)->setAlpha(alpha()); getTriangleContainer(0)->draw(viewer, false); } - void drawEdges(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE + void drawEdges(CGAL::Three::Viewer_interface* viewer) const override { if(is_fast) return; @@ -251,9 +251,9 @@ public : } } - Scene_item* clone() const Q_DECL_OVERRIDE{return 0;} - QString toolTip() const Q_DECL_OVERRIDE{return QString();} - QMenu* contextMenu() Q_DECL_OVERRIDE + Scene_item* clone() const override{return 0;} + QString toolTip() const override{return QString();} + QMenu* contextMenu() override { QMenu* menu = Scene_item::contextMenu(); @@ -279,12 +279,12 @@ public : } return menu; } - float alpha() const Q_DECL_OVERRIDE + float alpha() const override { return m_alpha ; } - void setAlpha(int a) Q_DECL_OVERRIDE + void setAlpha(int a) override { m_alpha = a / 255.0f; redraw(); diff --git a/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.h b/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.h index b59026124c2f..eda26394f1fd 100644 --- a/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.h +++ b/Polyhedron/demo/Polyhedron/Scene_triangulation_3_item.h @@ -38,15 +38,15 @@ using namespace CGAL::Three; ~Scene_triangulation_3_item(); void common_constructor(bool); - bool has_stats()const Q_DECL_OVERRIDE {return true;} - QString computeStats(int type) Q_DECL_OVERRIDE; - CGAL::Three::Scene_item::Header_data header() const Q_DECL_OVERRIDE; + bool has_stats()const override {return true;} + QString computeStats(int type) override; + CGAL::Three::Scene_item::Header_data header() const override; - void setColor(QColor c) Q_DECL_OVERRIDE; + void setColor(QColor c) override; void setUseSubdomainColors(bool use_subdomain_colors); - void invalidateOpenGLBuffers() Q_DECL_OVERRIDE; + void invalidateOpenGLBuffers() override; void triangulation_changed(); @@ -57,20 +57,20 @@ using namespace CGAL::Three; virtual const T3& triangulation() const; virtual T3& triangulation(); - bool manipulatable() const Q_DECL_OVERRIDE{ + bool manipulatable() const override{ return true; } - Scene_item::Bbox bbox() const Q_DECL_OVERRIDE; + Scene_item::Bbox bbox() const override; bool has_spheres() const; bool has_grid() const; bool has_tets() const; - float alpha() const Q_DECL_OVERRIDE; - void setAlpha(int alpha) Q_DECL_OVERRIDE; + float alpha() const override; + void setAlpha(int alpha) override; QSlider* alphaSlider(); - ManipulatedFrame* manipulatedFrame() Q_DECL_OVERRIDE; + ManipulatedFrame* manipulatedFrame() override; void setPosition(float x, float y, float z) ; @@ -78,8 +78,8 @@ using namespace CGAL::Three; Geom_traits::Plane_3 plane(CGAL::qglviewer::Vec offset = CGAL::qglviewer::Vec(0,0,0)) const; - bool isFinite() const Q_DECL_OVERRIDE { return true; } - bool isEmpty() const Q_DECL_OVERRIDE { + bool isFinite() const override { return true; } + bool isEmpty() const override { return triangulation().number_of_vertices() == 0 || ( triangulation().number_of_finite_facets() == 0 && triangulation().number_of_finite_cells() == 0 ); @@ -87,9 +87,9 @@ using namespace CGAL::Three; } - void compute_bbox() const Q_DECL_OVERRIDE; + void compute_bbox() const override; - Scene_triangulation_3_item* clone() const Q_DECL_OVERRIDE; + Scene_triangulation_3_item* clone() const override; virtual bool load_binary(std::istream& is); @@ -97,24 +97,24 @@ using namespace CGAL::Three; const Scene_item* data_item() const; void set_data_item(const Scene_item* data_item); - QString toolTip() const Q_DECL_OVERRIDE; + QString toolTip() const override; // Indicate if rendering mode is supported - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE{ + bool supportsRenderingMode(RenderingMode m) const override{ return (m != Gouraud && m != PointsPlusNormals && m != Points && m != ShadedPoints); } - void draw(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - void drawEdges(CGAL::Three::Viewer_interface* viewer) const Q_DECL_OVERRIDE; - void drawPoints(CGAL::Three::Viewer_interface * viewer) const Q_DECL_OVERRIDE; + void draw(CGAL::Three::Viewer_interface* viewer) const override; + void drawEdges(CGAL::Three::Viewer_interface* viewer) const override; + void drawPoints(CGAL::Three::Viewer_interface * viewer) const override; //When selecting a t3 item, we don't want to select its children, so we can still apply Operations to it - QList getChildrenForSelection() const Q_DECL_OVERRIDE { return QList(); } + QList getChildrenForSelection() const override { return QList(); } public: - QMenu* contextMenu() Q_DECL_OVERRIDE; - void copyProperties(Scene_item *) Q_DECL_OVERRIDE; + QMenu* contextMenu() override; + void copyProperties(Scene_item *) override; float getShrinkFactor() const; - bool keyPressEvent(QKeyEvent *) Q_DECL_OVERRIDE; - bool eventFilter(QObject *, QEvent *) Q_DECL_OVERRIDE; + bool keyPressEvent(QKeyEvent *) override; + bool eventFilter(QObject *, QEvent *) override; const std::set &subdomain_indices() const; QColor getSubdomainIndexColor(int i) const; public Q_SLOTS: @@ -135,7 +135,7 @@ using namespace CGAL::Three; void computeIntersection(); void set_cut_edge(bool b); - virtual QPixmap graphicalToolTip() const Q_DECL_OVERRIDE; + virtual QPixmap graphicalToolTip() const override; void update_histogram(); @@ -151,11 +151,11 @@ using namespace CGAL::Three; void switchVisibleSubdomain(int); bool isVisibleSubdomain(int) const; - void itemAboutToBeDestroyed(Scene_item *) Q_DECL_OVERRIDE; + void itemAboutToBeDestroyed(Scene_item *) override; - void initializeBuffers(Viewer_interface *) const Q_DECL_OVERRIDE; - void computeElements() const Q_DECL_OVERRIDE; - void newViewer(Viewer_interface *viewer) Q_DECL_OVERRIDE; + void initializeBuffers(Viewer_interface *) const override; + void computeElements() const override; + void newViewer(Viewer_interface *viewer) override; protected: friend struct Scene_triangulation_3_item_priv; diff --git a/Polyhedron/demo/Polyhedron/Viewer.h b/Polyhedron/demo/Polyhedron/Viewer.h index 357e8d52ec58..9989344a4026 100644 --- a/Polyhedron/demo/Polyhedron/Viewer.h +++ b/Polyhedron/demo/Polyhedron/Viewer.h @@ -40,55 +40,55 @@ class VIEWER_EXPORT Viewer : public CGAL::Three::Viewer_interface { Viewer(QWidget * parent, bool antialiasing = false); Viewer(QWidget * parent, Viewer *sharedWidget, bool antialiasing = false); ~Viewer(); - bool testDisplayId(double, double, double)Q_DECL_OVERRIDE; - void updateIds(CGAL::Three::Scene_item *)Q_DECL_OVERRIDE; + bool testDisplayId(double, double, double)override; + void updateIds(CGAL::Three::Scene_item *)override; //! overload several CGAL::QGLViewer virtual functions //! Draws the scene. - void draw()Q_DECL_OVERRIDE; + void draw()override; //!This step happens after draw(). It is here that all the useful information is displayed, like the axis system or the informative text. - void drawVisualHints()Q_DECL_OVERRIDE; + void drawVisualHints()override; //! Deprecated. Does the same as draw(). - void fastDraw()Q_DECL_OVERRIDE; - bool isExtensionFound()Q_DECL_OVERRIDE; - void initializeGL() Q_DECL_OVERRIDE; + void fastDraw()override; + bool isExtensionFound()override; + void initializeGL() override; //! Initializes the OpenGL functions and sets the backGround color. - void init()Q_DECL_OVERRIDE; + void init()override; //! Draws the scene "with names" to allow picking. - void drawWithNames()Q_DECL_OVERRIDE; + void drawWithNames()override; /*! Uses the parameter pixel's coordinates to get the corresponding point * in the World frame. If this point is found, emits selectedPoint, selected, * and selectionRay signals. */ - void postSelection(const QPoint&)Q_DECL_OVERRIDE; + void postSelection(const QPoint&)override; //! Sets the picking matrix to allow the picking. - void beginSelection(const QPoint &point)Q_DECL_OVERRIDE; + void beginSelection(const QPoint &point)override; //! Sets the pick matrix to Identity once the picking is done. - void endSelection(const QPoint &point)Q_DECL_OVERRIDE; + void endSelection(const QPoint &point)override; //! Sets the scene for the viewer. - void setScene(CGAL::Three::Scene_draw_interface* scene)Q_DECL_OVERRIDE; + void setScene(CGAL::Three::Scene_draw_interface* scene)override; //! @returns the antialiasing state. - bool antiAliasing() const Q_DECL_OVERRIDE; + bool antiAliasing() const override; //! @returns the fastDrawing state. - bool inFastDrawing() const Q_DECL_OVERRIDE; + bool inFastDrawing() const override; //! Implementation of `Viewer_interface::inDrawWithNames()` - bool inDrawWithNames() const Q_DECL_OVERRIDE; + bool inDrawWithNames() const override; //! Implementation of `Viewer_interface::attribBuffers()` - void attribBuffers(int program_name) const Q_DECL_OVERRIDE; + void attribBuffers(int program_name) const override; //! Implementation of `Viewer_interface::getShaderProgram()` - QOpenGLShaderProgram* getShaderProgram(int name) const Q_DECL_OVERRIDE; + QOpenGLShaderProgram* getShaderProgram(int name) const override; //!Declares a program names `name`, using `v_shader` as vertex shader and `f_shader` as fragment shader. QOpenGLShaderProgram* declare_program(int name, const char* v_shader, const char* f_shader)const; - QPainter* getPainter()Q_DECL_OVERRIDE; + QPainter* getPainter()override; - TextRenderer* textRenderer() Q_DECL_OVERRIDE; - void enableClippingBox(QVector4D box[6]) Q_DECL_OVERRIDE; - void disableClippingBox() Q_DECL_OVERRIDE; - void set2DSelectionMode(bool) Q_DECL_OVERRIDE; - void setStaticImage(QImage image) Q_DECL_OVERRIDE; - const QImage& staticImage() const Q_DECL_OVERRIDE; + TextRenderer* textRenderer() override; + void enableClippingBox(QVector4D box[6]) override; + void disableClippingBox() override; + void set2DSelectionMode(bool) override; + void setStaticImage(QImage image) override; + const QImage& staticImage() const override; //!Set total number of depth peeling passes. void setTotalPass(int); void resetFov(); @@ -99,32 +99,32 @@ class VIEWER_EXPORT Viewer : public CGAL::Three::Viewer_interface { void socketClosed(); public Q_SLOTS: //! Sets the antialiasing to true or false. - void setAntiAliasing(bool b) Q_DECL_OVERRIDE; + void setAntiAliasing(bool b) override; //! If b is true, facets will be ligted from both internal and external sides. //! If b is false, only the side that is exposed to the light source will be lighted. - void setTwoSides(bool b) Q_DECL_OVERRIDE; - void setBackFrontShading(bool b) Q_DECL_OVERRIDE; - void SetOrthoProjection( bool b) Q_DECL_OVERRIDE; + void setTwoSides(bool b) override; + void setBackFrontShading(bool b) override; + void SetOrthoProjection( bool b) override; //! If b is true, some items are displayed in a simplified version when moving the camera. //! If b is false, items display is never altered, even when moving. - void setFastDrawing(bool b) Q_DECL_OVERRIDE; + void setFastDrawing(bool b) override; //! Makes the camera turn around. - void turnCameraBy180Degres() Q_DECL_OVERRIDE; + void turnCameraBy180Degres() override; //! @returns a QString containing the position and orientation of the camera. - QString dumpCameraCoordinates() Q_DECL_OVERRIDE; + QString dumpCameraCoordinates() override; //!Moves the camera to the new coordinates (position and orientation) through an animation. bool moveCameraToCoordinates(QString, - float animation_duration = 0.5f) Q_DECL_OVERRIDE; + float animation_duration = 0.5f) override; //!Makes the Viewer display a message void printMessage(QString message, int ms_delay ); void displayMessage(const QString &_message, int delay); void displayMessage(const QString &_message){displayMessage(_message, 2000);} void hideMessage(); - void setBindingSelect() Q_DECL_OVERRIDE + void setBindingSelect() override { setMouseBinding(::Qt::ShiftModifier, ::Qt::LeftButton, CGAL::qglviewer::SELECT); } - virtual void setNoBinding() Q_DECL_OVERRIDE + virtual void setNoBinding() override { setMouseBinding(::Qt::ShiftModifier, ::Qt::LeftButton, CGAL::qglviewer::NO_CLICK_ACTION); } @@ -139,21 +139,21 @@ public Q_SLOTS: void onTextMessageSocketReceived(QString message); #endif void scaleScene(); - void showEntireScene()Q_DECL_OVERRIDE; + void showEntireScene()override; protected: - void paintEvent(QPaintEvent *)Q_DECL_OVERRIDE; - void paintGL()Q_DECL_OVERRIDE; + void paintEvent(QPaintEvent *)override; + void paintGL()override; //!Defines the behaviour for the mouse press events - void mousePressEvent(QMouseEvent*)Q_DECL_OVERRIDE; - void mouseDoubleClickEvent(QMouseEvent*)Q_DECL_OVERRIDE; - void wheelEvent(QWheelEvent *)Q_DECL_OVERRIDE; + void mousePressEvent(QMouseEvent*)override; + void mouseDoubleClickEvent(QMouseEvent*)override; + void wheelEvent(QWheelEvent *)override; //!Defines the behaviour for the key press events - void keyPressEvent(QKeyEvent*)Q_DECL_OVERRIDE; + void keyPressEvent(QKeyEvent*)override; //!Deal with context menu events - void contextMenuEvent(QContextMenuEvent*)Q_DECL_OVERRIDE; + void contextMenuEvent(QContextMenuEvent*)override; //!Defines the behaviour for the key release events - void keyReleaseEvent(QKeyEvent *)Q_DECL_OVERRIDE; + void keyReleaseEvent(QKeyEvent *)override; protected: friend class Viewer_impl; @@ -162,19 +162,19 @@ public Q_SLOTS: void doBindings(); public: - QOpenGLFunctions_4_3_Core* openGL_4_3_functions() Q_DECL_OVERRIDE; - void setCurrentPass(int pass) Q_DECL_OVERRIDE; - void setDepthWriting(bool writing_depth) Q_DECL_OVERRIDE; - void setDepthPeelingFbo(QOpenGLFramebufferObject *fbo) Q_DECL_OVERRIDE; - int currentPass()const Q_DECL_OVERRIDE; - bool isDepthWriting()const Q_DECL_OVERRIDE; - QOpenGLFramebufferObject* depthPeelingFbo()Q_DECL_OVERRIDE; - float total_pass()Q_DECL_OVERRIDE; - const GLfloat& getGlPointSize()const Q_DECL_OVERRIDE; - void setGlPointSize(const GLfloat& p) Q_DECL_OVERRIDE; - void makeCurrent() Q_DECL_OVERRIDE; - QVector4D* clipBox() const Q_DECL_OVERRIDE; - bool isClipping() const Q_DECL_OVERRIDE; + QOpenGLFunctions_4_3_Core* openGL_4_3_functions() override; + void setCurrentPass(int pass) override; + void setDepthWriting(bool writing_depth) override; + void setDepthPeelingFbo(QOpenGLFramebufferObject *fbo) override; + int currentPass()const override; + bool isDepthWriting()const override; + QOpenGLFramebufferObject* depthPeelingFbo()override; + float total_pass()override; + const GLfloat& getGlPointSize()const override; + void setGlPointSize(const GLfloat& p) override; + void makeCurrent() override; + QVector4D* clipBox() const override; + bool isClipping() const override; }; // end class Viewer diff --git a/Three/include/CGAL/Three/Edge_container.h b/Three/include/CGAL/Three/Edge_container.h index 1de5f9be4369..516f07ab32e4 100644 --- a/Three/include/CGAL/Three/Edge_container.h +++ b/Three/include/CGAL/Three/Edge_container.h @@ -67,7 +67,7 @@ struct DEMO_FRAMEWORK_EXPORT Edge_container :public Primitive_container //! //! \param viewer the active `Viewer_interface`. //! - void initGL(Viewer_interface *viewer) Q_DECL_OVERRIDE; + void initGL(Viewer_interface *viewer) override; //! //! \brief draw is the function that actually renders the data. @@ -75,9 +75,9 @@ struct DEMO_FRAMEWORK_EXPORT Edge_container :public Primitive_container //! \param is_color_uniform must be `false` if `VBOs`[`Colors`] is not empty, `true` otherwise. //! void draw(CGAL::Three::Viewer_interface* viewer, - bool is_color_uniform) Q_DECL_OVERRIDE; + bool is_color_uniform) override; - void initializeBuffers(Viewer_interface *viewer) Q_DECL_OVERRIDE; + void initializeBuffers(Viewer_interface *viewer) override; /// \name Getters and Setters for the shaders parameters. /// diff --git a/Three/include/CGAL/Three/Point_container.h b/Three/include/CGAL/Three/Point_container.h index f468fe8e5349..9adc08a708b4 100644 --- a/Three/include/CGAL/Three/Point_container.h +++ b/Three/include/CGAL/Three/Point_container.h @@ -65,7 +65,7 @@ struct DEMO_FRAMEWORK_EXPORT Point_container :public Primitive_container //! //! \param viewer the active `Viewer_interface`. //! - void initGL(Viewer_interface *viewer) Q_DECL_OVERRIDE; + void initGL(Viewer_interface *viewer) override; //! //! \brief draw is the function that actually renders the data. @@ -73,7 +73,7 @@ struct DEMO_FRAMEWORK_EXPORT Point_container :public Primitive_container //! \param is_color_uniform must be `false` if `VBOs`[`Colors`] is not empty, `true` otherwise. //! void draw(CGAL::Three::Viewer_interface* viewer, - bool is_color_uniform) Q_DECL_OVERRIDE; + bool is_color_uniform) override; /// \name Getters and Setters for the shaders parameters. /// diff --git a/Three/include/CGAL/Three/Scene_group_item.h b/Three/include/CGAL/Three/Scene_group_item.h index af3f89ceb01a..558c21e53016 100644 --- a/Three/include/CGAL/Three/Scene_group_item.h +++ b/Three/include/CGAL/Three/Scene_group_item.h @@ -41,9 +41,9 @@ public : Scene_group_item(QString name = QString("New group")); ~Scene_group_item() { delete children;} //!Returns false to avoid disturbing the BBox of the scene. - bool isFinite() const Q_DECL_OVERRIDE; + bool isFinite() const override; //!Returns true to avoid disturbing the BBox of the scene. - bool isEmpty() const Q_DECL_OVERRIDE; + bool isEmpty() const override; /*! * \brief locks a child * @@ -92,15 +92,15 @@ public : //! @see isExpanded(). void setExpanded(bool); //!Returns an empty Bbox to avoid disturbing the Bbox of the scene. - Bbox bbox() const Q_DECL_OVERRIDE; + Bbox bbox() const override; //!Not supported. - Scene_item* clone() const Q_DECL_OVERRIDE {return nullptr;} + Scene_item* clone() const override {return nullptr;} //! Indicates if the rendering mode is supported. //! \returns true for all rendering modes that are shared by //! all of the children. - bool supportsRenderingMode(RenderingMode m) const Q_DECL_OVERRIDE; + bool supportsRenderingMode(RenderingMode m) const override; //!\returns a string containing the number of children. - QString toolTip() const Q_DECL_OVERRIDE; + QString toolTip() const override; /// Draw functions /// Scene_group_item's children are not drawn by the scene, they are drawn by the group. @@ -111,21 +111,21 @@ public : //! and `Scene_item::drawPoints` for each child if its current //! rendering mode is adequat. //! @see #RenderingMode - virtual void draw(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; + virtual void draw(CGAL::Three::Viewer_interface*) const override; //!\brief draws all the children //! //! Calls `Scene_item::drawEdges()`, then calls `Scene_item::draw()` //! and `Scene_item::drawPoints` for each child if its current //! rendering mode is adequat. //! @see #RenderingMode - virtual void drawEdges(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; + virtual void drawEdges(CGAL::Three::Viewer_interface*) const override; //!\brief draws all the children //! //! Calls `Scene_item::drawPoints()`, then calls `Scene_item::draw()` //! and `Scene_item::drawEdges()` for each child if its current //! rendering mode is adequat. //! @see #RenderingMode - virtual void drawPoints(CGAL::Three::Viewer_interface*) const Q_DECL_OVERRIDE; + virtual void drawPoints(CGAL::Three::Viewer_interface*) const override; //! //! \brief deals with the rendering, selecting and picking of //! the group's children. @@ -152,11 +152,11 @@ public : Scene_item* getChild(Scene_interface::Item_id id) { return scene->item(id);} Scene_item* getChild(Scene_interface::Item_id id) const{ return scene->item(id);} //!Sets all the children to the specified color. - void setColor(QColor c) Q_DECL_OVERRIDE; + void setColor(QColor c) override; //!Sets all the children in the specified rendering mode. - void setRenderingMode(RenderingMode m) Q_DECL_OVERRIDE; + void setRenderingMode(RenderingMode m) override; //!Sets all the children to the specified visibility. - void setVisible(bool b) Q_DECL_OVERRIDE; + void setVisible(bool b) override; //!Sets all the children in points mode. void setPointsMode() { setRenderingMode(Points); @@ -190,7 +190,7 @@ public : setRenderingMode(PointsPlusNormals); } //!Sets the alpha value for the froup and all its children. - virtual void setAlpha(int) Q_DECL_OVERRIDE; + virtual void setAlpha(int) override; //! \brief returns a list of all the direct children. //! @@ -227,7 +227,7 @@ public : //!Moves a child down in the list. void moveDown(int); - void compute_bbox() const Q_DECL_OVERRIDE{}; + void compute_bbox() const override{}; public Q_SLOTS: //!\brief redraws children. //! diff --git a/Three/include/CGAL/Three/Scene_item_rendering_helper.h b/Three/include/CGAL/Three/Scene_item_rendering_helper.h index 72fd4ce154a9..83ee418e4054 100644 --- a/Three/include/CGAL/Three/Scene_item_rendering_helper.h +++ b/Three/include/CGAL/Three/Scene_item_rendering_helper.h @@ -69,7 +69,7 @@ class DEMO_FRAMEWORK_EXPORT Scene_item_rendering_helper #endif Q_DECLARE_FLAGS(Gl_data_names, Gl_data_name) - QMenu* contextMenu() Q_DECL_OVERRIDE; + QMenu* contextMenu() override; /*! * \brief processData calls `computeElements()` @@ -86,13 +86,13 @@ class DEMO_FRAMEWORK_EXPORT Scene_item_rendering_helper //! It must be between 0 and 255. //! \param alpha the integer value for the alpha channel. //! - void setAlpha(int alpha) Q_DECL_OVERRIDE; + void setAlpha(int alpha) override; //! \brief The item's bounding box. //! //! If the Bbox has never been computed, computes it and //! saves the result for further calls. //! @returns the item's bounding box. - Scene_item::Bbox bbox()const Q_DECL_OVERRIDE; + Scene_item::Bbox bbox()const override; //! //! \brief getTriangleContainer returns the `id`th `Triangle_container`. //! @@ -174,15 +174,15 @@ class DEMO_FRAMEWORK_EXPORT Scene_item_rendering_helper //! saves the result for further calls. //! @returns the item's bounding box's diagonal length. //! @todo must replace the one from Scene_item eventually - virtual double bboxDiagonal() const Q_DECL_OVERRIDE; + virtual double bboxDiagonal() const override; //! //! \brief newViewer adds Vaos for `viewer`. //! \param viewer the new viewer. //! - void newViewer(Viewer_interface *viewer) Q_DECL_OVERRIDE; + void newViewer(Viewer_interface *viewer) override; //! \brief removeViewer removes the Vaos for `viewer`. //! \param viewer the viewer to be removed. - void removeViewer(Viewer_interface *viewer) Q_DECL_OVERRIDE; + void removeViewer(Viewer_interface *viewer) override; protected: @@ -194,7 +194,7 @@ class DEMO_FRAMEWORK_EXPORT Scene_item_rendering_helper //!Returns the float alpha value of an item. //! This value is between 0.0f and 1.0f. - float alpha() const Q_DECL_OVERRIDE; + float alpha() const override; /*! Fills the `Vbo`s with data. */ @@ -205,7 +205,7 @@ class DEMO_FRAMEWORK_EXPORT Scene_item_rendering_helper //! //! Computes the items Bbox and stores the result. Must be overridden. //!@todo must replace the one from Scene_item eventually. - virtual void compute_bbox() const Q_DECL_OVERRIDE = 0; + virtual void compute_bbox() const override = 0; //! //! \brief setBbox allows to set the Bbox in compute_bbox(); //! \param b diff --git a/Three/include/CGAL/Three/Triangle_container.h b/Three/include/CGAL/Three/Triangle_container.h index bf8d4224e621..cc9ded272b47 100644 --- a/Three/include/CGAL/Three/Triangle_container.h +++ b/Three/include/CGAL/Three/Triangle_container.h @@ -68,7 +68,7 @@ struct DEMO_FRAMEWORK_EXPORT Triangle_container :public Primitive_container //! //! \param viewer the active `Viewer_interface`. //! - void initGL(CGAL::Three::Viewer_interface* viewer) Q_DECL_OVERRIDE; + void initGL(CGAL::Three::Viewer_interface* viewer) override; //! //! \brief draw is the function that actually renders the data. @@ -76,9 +76,9 @@ struct DEMO_FRAMEWORK_EXPORT Triangle_container :public Primitive_container //! \param is_color_uniform must be `false` if the color buffers are not empty, `true` otherwise. //! void draw(CGAL::Three::Viewer_interface* viewer, - bool is_color_uniform) Q_DECL_OVERRIDE; + bool is_color_uniform) override; - void initializeBuffers(Viewer_interface *viewer) Q_DECL_OVERRIDE; + void initializeBuffers(Viewer_interface *viewer) override; /// \name Getters and Setters for the shaders parameters. /// /// Each of those depends of the `OpenGL_program_IDs` this container is using. From f0f1d6a7b82d5232b2a91c604ab1090befc470d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 22 Nov 2023 13:11:28 +0100 Subject: [PATCH 85/85] fix warning --- AABB_tree/demo/AABB_tree/Scene.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AABB_tree/demo/AABB_tree/Scene.cpp b/AABB_tree/demo/AABB_tree/Scene.cpp index abf09661b438..41e11ac62091 100644 --- a/AABB_tree/demo/AABB_tree/Scene.cpp +++ b/AABB_tree/demo/AABB_tree/Scene.cpp @@ -618,7 +618,7 @@ void Scene::draw(CGAL::QGLViewer* viewer) vao[0].bind(); attrib_buffers(viewer); rendering_program.bind(); - color.setRgbF(0.7,0.0,0.0); + color.setRgbF(0.7f,0.0f,0.0f); rendering_program.setUniformValue(colorLocation, color); rendering_program.setUniformValue(fLocation, fMatrix); gl->glDrawArrays(GL_POINTS, 0, static_cast(pos_points.size()/3)); @@ -631,7 +631,7 @@ void Scene::draw(CGAL::QGLViewer* viewer) vao[1].bind(); attrib_buffers(viewer); rendering_program.bind(); - color.setRgbF(0.0,0.7,0.0); + color.setRgbF(0.0f,0.7f,0.0f); rendering_program.setUniformValue(colorLocation, color); rendering_program.setUniformValue(fLocation, fMatrix); gl->glDrawArrays(GL_LINES, 0, static_cast(pos_lines.size()/3)); @@ -669,7 +669,7 @@ void Scene::draw(CGAL::QGLViewer* viewer) vao[3].bind(); attrib_buffers(viewer); rendering_program.bind(); - color.setRgbF(1.0,0.0,0.0); + color.setRgbF(1.0f,0.0f,0.0f); rendering_program.setUniformValue(colorLocation, color); rendering_program.setUniformValue(fLocation, fMatrix); gl->glDrawArrays(GL_LINES, 0, static_cast(pos_cut_segments.size()/3));
%1 %1 %1
%1 %1