diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e025d905ad0b64e0cdf4d2a01c22da36b0b5bed6
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,15 @@
+PROJECT(Simox)
+
+cmake_minimum_required(VERSION 2.6)
+MESSAGE(STATUS "******************** Configuring Simox ************************")
+set (SIMOX_BUILD_DIRECTORY ${CMAKE_BINARY_DIR} CACHE STRING "Simox build directory")
+
+INCLUDE (config.cmake)
+
+
+MESSAGE(STATUS "\n** SETTING Simox target directory to: ${SIMOX_BUILD_DIRECTORY}")
+add_subdirectory(VirtualRobot)
+add_subdirectory(MotionPlanning)
+add_subdirectory(GraspPlanning)
+
+
diff --git a/CMakeModules/FindCoin3D.cmake b/CMakeModules/FindCoin3D.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..eca25776794f44268192c1a2b69ad9d3a6989ea4
--- /dev/null
+++ b/CMakeModules/FindCoin3D.cmake
@@ -0,0 +1,87 @@
+# - Find Coin3D (Open Inventor)
+# Coin3D is an implementation of the Open Inventor API.
+# It provides data structures and algorithms for 3D visualization
+# http://www.coin3d.org/
+#
+# This module defines the following variables
+#  COIN3D_FOUND         - system has Coin3D - Open Inventor
+#  COIN3D_INCLUDE_DIRS  - where the Inventor include directory can be found
+#  COIN3D_LIBRARIES     - Link to this to use Coin3D
+#
+
+#=============================================================================
+# Copyright 2008-2009 Kitware, Inc.
+#
+# Distributed under the OSI-approved BSD License (the "License");
+# see accompanying file Copyright.txt for details.
+#
+# This software is distributed WITHOUT ANY WARRANTY; without even the
+# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the License for more information.
+#=============================================================================
+# (To distribute this file outside of CMake, substitute the full
+#  License text for the above reference.)
+
+IF (WIN32)
+  IF (CYGWIN)
+
+    FIND_PATH(COIN3D_INCLUDE_DIRS Inventor/So.h)
+    FIND_LIBRARY(COIN3D_LIBRARIES Coin)
+
+  ELSE (CYGWIN)
+
+    FIND_PATH(COIN3D_INCLUDE_DIRS Inventor/So.h
+      "[HKEY_LOCAL_MACHINE\\SOFTWARE\\SIM\\Coin3D\\2;Installation Path]/include"
+    )
+
+    FIND_LIBRARY(COIN3D_LIBRARY_DEBUG coin2d
+      "[HKEY_LOCAL_MACHINE\\SOFTWARE\\SIM\\Coin3D\\2;Installation Path]/lib"
+    )
+
+    FIND_LIBRARY(COIN3D_LIBRARY_RELEASE coin2
+      "[HKEY_LOCAL_MACHINE\\SOFTWARE\\SIM\\Coin3D\\2;Installation Path]/lib"
+    )
+
+    IF (COIN3D_LIBRARY_DEBUG AND COIN3D_LIBRARY_RELEASE)
+      SET(COIN3D_LIBRARIES optimized ${COIN3D_LIBRARY_RELEASE}
+                           debug ${COIN3D_LIBRARY_DEBUG})
+    ELSE (COIN3D_LIBRARY_DEBUG AND COIN3D_LIBRARY_RELEASE)
+      IF (COIN3D_LIBRARY_DEBUG)
+        SET (COIN3D_LIBRARIES ${COIN3D_LIBRARY_DEBUG})
+      ENDIF (COIN3D_LIBRARY_DEBUG)
+      IF (COIN3D_LIBRARY_RELEASE)
+        SET (COIN3D_LIBRARIES ${COIN3D_LIBRARY_RELEASE})
+      ENDIF (COIN3D_LIBRARY_RELEASE)
+    ENDIF (COIN3D_LIBRARY_DEBUG AND COIN3D_LIBRARY_RELEASE)
+
+  ENDIF (CYGWIN)
+
+ELSE (WIN32)
+  IF(APPLE)
+    FIND_PATH(COIN3D_INCLUDE_DIRS Inventor/So.h
+     /Library/Frameworks/Inventor.framework/Headers 
+    )
+    FIND_LIBRARY(COIN3D_LIBRARIES Coin
+      /Library/Frameworks/Inventor.framework/Libraries
+    )   
+    SET(COIN3D_LIBRARIES "-framework Coin3d" CACHE STRING "Coin3D library for OSX")
+  ELSE(APPLE)
+
+    find_path( COIN3D_INCLUDE_DIRS NAMES Inventor/So.h PATHS $ENV{Coin3D_DIR}/include /usr/include /usr/local/include NO_DEFAULT_PATH )
+    find_library( COIN3D_LIBRARIES  NAMES Coin PATHS $ENV{Coin3D_DIR}/lib /usr/lib /usr/local/lib NO_DEFAULT_PATH )
+#FIND_PATH(COIN3D_INCLUDE_DIRS Inventor/So.h $ENV{COIN3D_DIR}/include)
+#FIND_LIBRARY(COIN3D_LIBRARIES Coin $ENV{COIN3D_DIR}/lib)   
+
+  ENDIF(APPLE)
+
+ENDIF (WIN32)
+
+# handle the QUIETLY and REQUIRED arguments and set COIN3D_FOUND to TRUE if 
+# all listed variables are TRUE
+#INCLUDE("${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake")
+INCLUDE( FindPackageHandleStandardArgs )
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(Coin3D DEFAULT_MSG COIN3D_LIBRARIES COIN3D_INCLUDE_DIRS)
+
+MARK_AS_ADVANCED(COIN3D_INCLUDE_DIRS COIN3D_LIBRARIES )
+
+
diff --git a/CMakeModules/FindEigen3.cmake b/CMakeModules/FindEigen3.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..b5de7e8d866d963ca201ba85dcf766c739a8aa9e
--- /dev/null
+++ b/CMakeModules/FindEigen3.cmake
@@ -0,0 +1,86 @@
+# - Try to find Eigen3 lib
+#
+# This module supports requiring a minimum version, e.g. you can do
+#   find_package(Eigen3 3.1.2)
+# to require version 3.1.2 or newer of Eigen3.
+#
+# Once done this will define
+#
+#  Eigen3_FOUND - system has eigen lib with correct version
+#  Eigen3_INCLUDE_DIR - the eigen include directory
+#  Eigen3_VERSION - eigen version
+
+# Copyright (c) 2006, 2007 Montel Laurent, <montel@kde.org>
+# Copyright (c) 2008, 2009 Gael Guennebaud, <g.gael@free.fr>
+# Copyright (c) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
+# Copyright (c) 2011 Manfred Kroehnert <Manfred.Kroehnert@kit.edu> "No all uppercase variable names"
+# Redistribution and use is allowed according to the terms of the 2-clause BSD license.
+
+if(NOT Eigen3_FIND_VERSION)
+  if(NOT Eigen3_FIND_VERSION_MAJOR)
+    set(Eigen3_FIND_VERSION_MAJOR 2)
+  endif(NOT Eigen3_FIND_VERSION_MAJOR)
+  if(NOT Eigen3_FIND_VERSION_MINOR)
+    set(Eigen3_FIND_VERSION_MINOR 91)
+  endif(NOT Eigen3_FIND_VERSION_MINOR)
+  if(NOT Eigen3_FIND_VERSION_PATCH)
+    set(Eigen3_FIND_VERSION_PATCH 0)
+  endif(NOT Eigen3_FIND_VERSION_PATCH)
+
+  set(Eigen3_FIND_VERSION "${Eigen3_FIND_VERSION_MAJOR}.${Eigen3_FIND_VERSION_MINOR}.${Eigen3_FIND_VERSION_PATCH}")
+endif(NOT Eigen3_FIND_VERSION)
+
+macro(_eigen3_check_version)
+  file(READ "${Eigen3_INCLUDE_DIR}/Eigen/src/Core/util/Macros.h" _eigen3_version_header)
+
+  string(REGEX MATCH "define[ \t]+EIGEN_WORLD_VERSION[ \t]+([0-9]+)" _eigen3_world_version_match "${_eigen3_version_header}")
+  set(EIGEN3_WORLD_VERSION "${CMAKE_MATCH_1}")
+  string(REGEX MATCH "define[ \t]+EIGEN_MAJOR_VERSION[ \t]+([0-9]+)" _eigen3_major_version_match "${_eigen3_version_header}")
+  set(EIGEN3_MAJOR_VERSION "${CMAKE_MATCH_1}")
+  string(REGEX MATCH "define[ \t]+EIGEN_MINOR_VERSION[ \t]+([0-9]+)" _eigen3_minor_version_match "${_eigen3_version_header}")
+  set(EIGEN3_MINOR_VERSION "${CMAKE_MATCH_1}")
+
+  set(Eigen3_VERSION ${EIGEN3_WORLD_VERSION}.${EIGEN3_MAJOR_VERSION}.${EIGEN3_MINOR_VERSION})
+  if(${Eigen3_VERSION} VERSION_LESS ${Eigen3_FIND_VERSION})
+    set(Eigen3_VERSION_OK FALSE)
+  else(${Eigen3_VERSION} VERSION_LESS ${Eigen3_FIND_VERSION})
+    set(Eigen3_VERSION_OK TRUE)
+  endif(${Eigen3_VERSION} VERSION_LESS ${Eigen3_FIND_VERSION})
+
+  if(NOT Eigen3_VERSION_OK)
+
+    message(STATUS "Eigen3 version ${Eigen3_VERSION} found in ${Eigen3_INCLUDE_DIR}, "
+                   "but at least version ${Eigen3_FIND_VERSION} is required")
+  endif(NOT Eigen3_VERSION_OK)
+endmacro(_eigen3_check_version)
+
+if (Eigen3_INCLUDE_DIR)
+
+  # in cache already
+  _eigen3_check_version()
+  set(Eigen3_FOUND ${Eigen3_VERSION_OK})
+
+else (Eigen3_INCLUDE_DIR)
+
+  find_path(Eigen3_INCLUDE_DIR NAMES signature_of_eigen3_matrix_library
+      PATHS
+      ${CMAKE_INSTALL_PREFIX}/include
+      ${KDE4_INCLUDE_DIR}
+      ${Eigen3_DIR}
+      $ENV{Eigen3_DIR}
+      /org/share/archive/SFB588_RefDist/eigen3/
+      PATH_SUFFIXES eigen3 eigen
+    )
+
+  if(Eigen3_INCLUDE_DIR)
+    _eigen3_check_version()
+    set(Eigen3_FOUND ${Eigen3_VERSION_OK})
+  endif(Eigen3_INCLUDE_DIR)
+
+  include(FindPackageHandleStandardArgs)
+  find_package_handle_standard_args(Eigen3 DEFAULT_MSG Eigen3_INCLUDE_DIR Eigen3_VERSION_OK)
+
+  mark_as_advanced(Eigen3_INCLUDE_DIR)
+
+endif(Eigen3_INCLUDE_DIR)
+
diff --git a/CMakeModules/FindRapidXML.cmake b/CMakeModules/FindRapidXML.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..507cedf63525f20a51ff637accc2ae09e0622f83
--- /dev/null
+++ b/CMakeModules/FindRapidXML.cmake
@@ -0,0 +1,25 @@
+# - Try to find RapidXML lib
+# Once done this will define
+#
+#  RapidXML_FOUND - system has eigen lib
+#  RapidXML_INCLUDE_DIR - the eigen include directory
+
+# Copyright (c) 2010, Manfred Kroehnert, <mkroehnert _at_ users _dot_ sourceforge _dot_ net>
+# Redistribution and use is allowed according to the terms of the BSD license.
+
+IF  (RapidXML_INCLUDE_DIR)
+    SET(RapidXML_FOUND TRUE)
+ELSE (RapidXML_INCLUDE_DIR)
+    FIND_PATH(RapidXML_INCLUDE_DIR NAMES rapidxml.hpp
+        HINTS
+        ${INCLUDE_INSTALL_DIR}
+        ${KDE4_INCLUDE_DIR}
+    )
+
+    INCLUDE(FindPackageHandleStandardArgs)
+
+    FIND_PACKAGE_HANDLE_STANDARD_ARGS(RapidXML DEFAULT_MSG RapidXML_INCLUDE_DIR )
+
+    MARK_AS_ADVANCED(RapidXML_INCLUDE_DIR)
+ENDIF (RapidXML_INCLUDE_DIR)
+
diff --git a/CMakeModules/FindSoQt.cmake b/CMakeModules/FindSoQt.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..2c5ec6a1357f10cca086287ba943fe2c08718b41
--- /dev/null
+++ b/CMakeModules/FindSoQt.cmake
@@ -0,0 +1,65 @@
+# - Find SoQt (Open Inventor Qt Integration)
+# SoQt is an implementation of the Open Inventor API.
+# It provides data structures and algorithms for 3D visualization
+# http://www.coin3d.org/
+#
+# This module defines the following variables
+#  SoQt_FOUND         - system has SoQt - Open Inventor Qt Integration
+#  SoQt_INCLUDE_DIRS  - where the SoQt include directory can be found
+#  SoQt_LIBRARIES     - Link to this to use SoQt
+#
+ 
+
+IF (WIN32)
+  IF (CYGWIN)
+
+    FIND_PATH(SoQt_INCLUDE_DIRS Inventor/Qt/SoQt.h)
+    FIND_LIBRARY(SoQt_LIBRARIES SoQt)
+
+  ELSE (CYGWIN)
+    FIND_PATH(SoQt_INCLUDE_DIRS Inventor/Qt/SoQt.h "$ENV{COINDIR}/include")
+    FIND_LIBRARY(SoQt_LIBRARY_RELEASE soqt1 "$ENV{COINDIR}/lib")
+    FIND_LIBRARY(SoQt_LIBRARY_DEBUG soqt1d "$ENV{COINDIR}/lib")
+
+    IF (SoQt_LIBRARY_DEBUG AND SoQt_LIBRARY_RELEASE)
+      SET(SoQt_LIBRARIES optimized ${SoQt_LIBRARY_RELEASE}
+                           debug ${SoQt_LIBRARY_DEBUG})
+    ELSE (SoQt_LIBRARY_DEBUG AND SoQt_LIBRARY_RELEASE)
+      IF (SoQt_LIBRARY_DEBUG)
+        SET (SoQt_LIBRARIES ${SoQt_LIBRARY_DEBUG})
+      ENDIF (SoQt_LIBRARY_DEBUG)
+      IF (SoQt_LIBRARY_RELEASE)
+        SET (SoQt_LIBRARIES ${SoQt_LIBRARY_RELEASE})
+      ENDIF (SoQt_LIBRARY_RELEASE)
+    ENDIF (SoQt_LIBRARY_DEBUG AND SoQt_LIBRARY_RELEASE)
+
+  ENDIF (CYGWIN)
+
+ELSE (WIN32)
+  IF(APPLE)
+    FIND_PATH(SoQt_INCLUDE_DIRS Inventor/Qt/SoQt.h
+     /Library/Frameworks/Inventor.framework/Headers 
+    )
+    FIND_LIBRARY(SoQt_LIBRARIES SoQt
+      /Library/Frameworks/Inventor.framework/Libraries
+    )   
+    SET(SoQt_LIBRARIES "-framework SoQt" CACHE STRING "SoQt library for OSX")
+  ELSE(APPLE)
+
+    FIND_PATH(SoQt_INCLUDE_DIRS NAMES Inventor/Qt/SoQt.h PATHS "$ENV{SoQt_DIR}/include" "$ENV{COIN3D_DIR}/include" /usr/include /usr/local/include NO_DEFAULT_PATH)
+    FIND_LIBRARY(SoQt_LIBRARIES NAMES SoQt PATHS "$ENV{SoQt_DIR}/lib" "$ENV{COIN3D_DIR}/lib" /usr/lib /usr/local/lib NO_DEFAULT_PATH)
+#FIND_PATH(SoQt_INCLUDE_DIRS Inventor/Qt/SoQt.h $ENV{SoQt_DIR}/include)
+#FIND_LIBRARY(SoQt_LIBRARIES SoQt $ENV{SoQt_DIR}/lib)
+
+  ENDIF(APPLE)
+
+ENDIF (WIN32)
+
+# handle the QUIETLY and REQUIRED arguments and set SoQt_FOUND to TRUE if 
+# all listed variables are TRUE
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(SoQt DEFAULT_MSG SoQt_LIBRARIES SoQt_INCLUDE_DIRS)
+
+MARK_AS_ADVANCED(SoQt_INCLUDE_DIRS SoQt_LIBRARIES )
+
+
diff --git a/CMakeModules/SimoxProject.cmake b/CMakeModules/SimoxProject.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..31fc9069a8b50b1a4ddd221e696a2f48337d83ae
--- /dev/null
+++ b/CMakeModules/SimoxProject.cmake
@@ -0,0 +1,23 @@
+# Macros for Simox executables
+
+function(simox_add_executable PROJECT_NAME SOURCES HEADERS GUI_MOC_HDRS GUI_UIS)
+
+    LINK_DIRECTORIES(${SIMOX_LIB_DIR})
+    
+    # QT stuff 
+    qt4_wrap_cpp(SOURCES ${GUI_MOC_HDRS})
+    qt4_wrap_ui(UI_HEADER ${GUI_UIS})
+    get_filename_component(UI_HEADER_DIR ${UI_HEADER} PATH)
+    list(APPEND HEADERS ${UI_HEADER})
+    include_directories(${UI_HEADER_DIR})
+
+    # setup target
+    ADD_EXECUTABLE(${PROJECT_NAME} ${SOURCES} ${HEADERS})
+    SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${SIMOX_BIN_DIR})
+    TARGET_LINK_LIBRARIES(${PROJECT_NAME} VirtualRobot Saba GraspStudio ${QT_LIBRARIES} ${COIN3D_LIBRARIES} ${SoQt_LIBRARIES})
+    INCLUDE_DIRECTORIES(${SoQt_INCLUDE_DIRS})
+    INCLUDE(${QT_USE_FILE})
+    ADD_DEFINITIONS(-DSOQT_DLL)
+
+    MESSAGE( STATUS ${PROJECT_NAME} " will be placed into " ${SIMOX_BIN_DIR})
+endfunction()
diff --git a/SimoxProject.cmake b/SimoxProject.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..31fc9069a8b50b1a4ddd221e696a2f48337d83ae
--- /dev/null
+++ b/SimoxProject.cmake
@@ -0,0 +1,23 @@
+# Macros for Simox executables
+
+function(simox_add_executable PROJECT_NAME SOURCES HEADERS GUI_MOC_HDRS GUI_UIS)
+
+    LINK_DIRECTORIES(${SIMOX_LIB_DIR})
+    
+    # QT stuff 
+    qt4_wrap_cpp(SOURCES ${GUI_MOC_HDRS})
+    qt4_wrap_ui(UI_HEADER ${GUI_UIS})
+    get_filename_component(UI_HEADER_DIR ${UI_HEADER} PATH)
+    list(APPEND HEADERS ${UI_HEADER})
+    include_directories(${UI_HEADER_DIR})
+
+    # setup target
+    ADD_EXECUTABLE(${PROJECT_NAME} ${SOURCES} ${HEADERS})
+    SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${SIMOX_BIN_DIR})
+    TARGET_LINK_LIBRARIES(${PROJECT_NAME} VirtualRobot Saba GraspStudio ${QT_LIBRARIES} ${COIN3D_LIBRARIES} ${SoQt_LIBRARIES})
+    INCLUDE_DIRECTORIES(${SoQt_INCLUDE_DIRS})
+    INCLUDE(${QT_USE_FILE})
+    ADD_DEFINITIONS(-DSOQT_DLL)
+
+    MESSAGE( STATUS ${PROJECT_NAME} " will be placed into " ${SIMOX_BIN_DIR})
+endfunction()
diff --git a/config.cmake b/config.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..c5dfcccffc98f5c66970638e85b2a0af811832b1
--- /dev/null
+++ b/config.cmake
@@ -0,0 +1,136 @@
+
+IF (NOT SIMOX_CONFIGURED)
+
+	# defines SIMOX_CONFIGURED variable which indicates that this config file has already been included
+	SET(SIMOX_CONFIGURED TRUE)
+	
+	# Set up for debug build
+	IF(NOT CMAKE_BUILD_TYPE)
+	  SET(CMAKE_BUILD_TYPE Debug CACHE STRING
+	      "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
+	      FORCE)
+	ENDIF(NOT CMAKE_BUILD_TYPE)
+	
+	############################# SETUP MODULES #############################
+	GET_FILENAME_COMPONENT (CurrentPath ${CMAKE_CURRENT_LIST_FILE} PATH)
+	#MESSAGE (STATUS "module path: "  ${CurrentPath}/CMakeModules)
+	SET(CMAKE_MODULE_PATH ${CurrentPath}/CMakeModules)
+	
+	#### Eigen
+	FIND_PACKAGE (Eigen3 REQUIRED)
+	if (Eigen3_FOUND)
+	    INCLUDE_DIRECTORIES(${Eigen3_INCLUDE_DIR})
+	endif (Eigen3_FOUND)
+	
+	#### BOOST
+	FIND_PACKAGE(Boost 1.42.0 COMPONENTS filesystem system unit_test_framework program_options REQUIRED)
+	if (Boost_FOUND)
+	    MESSAGE (STATUS "Boost found at: ${Boost_INCLUDE_DIR}")
+	    INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR})
+	    LINK_DIRECTORIES (${Boost_LIBRARY_DIRS})
+	    # disable boost auto linking
+	    add_definitions( -DBOOST_ALL_NO_LIB )
+	    add_definitions( -DBOOST_PROGRAM_OPTIONS_DYN_LINK )
+	    add_definitions( -DBOOST_FILESYSTEM_DYN_LINK )
+	    add_definitions( -DBOOST_SYSTEM_DYN_LINK )
+	    add_definitions( -DBOOST_UNIT_TEST_FRAMEWORK_DYN_LINK )
+        #add_definitions( -DBOOST_LIB_DIAGNOSTIC )
+	else (Boost_FOUND)
+	    MESSAGE ("!! Could not find Boost !!")
+	endif (Boost_FOUND)
+	
+	#### Coin3D (Qt and SoQt)
+	OPTION(SIMOX_USE_COIN_VISUALIZATION "Use Coin3D for visualization" ON)
+	if (SIMOX_USE_COIN_VISUALIZATION)
+		FIND_PACKAGE(Coin3D REQUIRED)
+		if (COIN3D_FOUND)
+			INCLUDE_DIRECTORIES(${COIN3D_INCLUDE_DIRS})
+			ADD_DEFINITIONS(-DCOIN_DLL)
+		endif (COIN3D_FOUND)
+		
+		#### QT 
+		# QT_QMAKE_EXECUTABLE is the only relieable way of setting the qt4 path!
+		# convert env var to cmake define	
+		IF(NOT "$ENV{QT_QMAKE_EXECUTABLE}" STREQUAL "")
+		    MESSAGE (STATUS "USING QT-PATH from environment variable QT_QMAKE_EXECUTABLE: $ENV{QT_QMAKE_EXECUTABLE}")
+		    file(TO_CMAKE_PATH "$ENV{QT_QMAKE_EXECUTABLE}" QT_QMAKE_EXECUTABLE)
+		ENDIF()
+		FIND_PACKAGE(Qt4 4.6.0 COMPONENTS QtOpenGL QtCore QtGui)
+		if ( QT_FOUND )
+			MESSAGE (STATUS "Found Qt4: " ${QT_INCLUDE_DIR})
+			include(${QT_USE_FILE})
+			#MESSAGE(STATUS "QT_LIBRARIES: " ${QT_LIBRARIES})
+	
+			#### SoQt
+			# This will set SoQt_INCLUDE_DIRS and SoQt_LIBRARIES
+			FIND_PACKAGE(SoQt)
+			if (SOQT_FOUND)
+				MESSAGE (STATUS "Found SoQt:" ${SoQt_INCLUDE_DIRS})
+				ADD_DEFINITIONS(-DSOQT_DLL)
+			else (SOQT_FOUND)
+				MESSAGE (STATUS "Did not found SoQt. Disabling SoQt support.")
+			endif (SOQT_FOUND)
+		else ( QT_FOUND )
+			MESSAGE (STATUS "Did not found Qt. Disabling Qt/SoQt support.")
+		endif ( QT_FOUND )
+	endif (SIMOX_USE_COIN_VISUALIZATION)
+	
+	############################# SETUP PATHS #############################
+	IF(DEFINED SIMOX_DIR)
+			get_filename_component(SIMOX_DIR ${SIMOX_DIR} ABSOLUTE)
+	ELSE()
+		SET(SIMOX_DIR ${CurrentPath})
+	ENDIF()
+	MESSAGE (STATUS "SIMOX_DIR: ${SIMOX_DIR}")
+	
+	ADD_DEFINITIONS(-DSIMOX_BASE_DIR="${SIMOX_DIR}")
+	
+	SET(BIN_DIR bin)
+	SET(LIB_DIR lib)
+	
+	IF(DEFINED SIMOX_BUILD_DIRECTORY)
+		get_filename_component(SIMOX_BUILD_DIRECTORY ${SIMOX_BUILD_DIRECTORY} ABSOLUTE)
+		MESSAGE (STATUS "** SIMOX Build dir defined: ${SIMOX_BUILD_DIRECTORY}")
+	ELSE()
+		SET(SIMOX_BUILD_DIRECTORY ${CMAKE_BINARY_DIR})
+		MESSAGE (STATUS "** SIMOX Build dir not defined, using CMAKE_BINARY_DIR: ${SIMOX_BUILD_DIRECTORY}")
+	ENDIF()
+	
+	SET(SIMOX_LIB_DIR ${SIMOX_BUILD_DIRECTORY}/${LIB_DIR})
+	SET(SIMOX_BIN_DIR ${SIMOX_BUILD_DIRECTORY}/${BIN_DIR})
+	
+	MESSAGE (STATUS "** SIMOX LIB DIR: ${SIMOX_LIB_DIR}")
+	MESSAGE (STATUS "** SIMOX BIN DIR: ${SIMOX_BIN_DIR}")
+	
+	SET(SIMOX_INSTALL_LIB_DIR ${CMAKE_INSTALL_PREFIX}/${LIB_DIR})
+	SET(SIMOX_INSTALL_BIN_DIR ${CMAKE_INSTALL_PREFIX}/${BIN_DIR})
+	SET(SIMOX_INSTALL_HEADER_DIR ${CMAKE_INSTALL_PREFIX}/include/)
+	
+	############################# Set OS specific options #############################
+	IF(UNIX)
+		# We are on Linux
+		IF(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64")
+			ADD_DEFINITIONS(-fPIC)
+		ENDIF(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64")
+	
+		IF(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
+			MESSAGE(STATUS "Configuring Debug build")
+			ADD_DEFINITIONS(-D_DEBUG) # -Wall -W -Werror -pedantic)
+		ELSE()
+			MESSAGE(STATUS "Configuring Release build")
+		ENDIF()
+	ELSE(UNIX)
+		# We are on Windows
+		ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS)
+		
+		# On MSVC we compile with /MP flag (use multiple threads)
+		IF(MSVC)
+			ADD_DEFINITIONS(/MP)
+		ENDIF(MSVC)
+	ENDIF(UNIX)
+	
+	
+	# Allow #include <VirtualRobot/*.h>
+	INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR} ${SIMOX_DIR})
+
+ENDIF(NOT SIMOX_CONFIGURED)
\ No newline at end of file
diff --git a/doc/Doxyfile b/doc/Doxyfile
new file mode 100644
index 0000000000000000000000000000000000000000..d11fc7bf9976b775de099ad9460e142ac51fb630
--- /dev/null
+++ b/doc/Doxyfile
@@ -0,0 +1,1808 @@
+# Doxyfile 1.7.5.1
+
+# This file describes the settings to be used by the documentation system
+# doxygen (www.doxygen.org) for a project
+#
+# All text after a hash (#) is considered a comment and will be ignored
+# The format is:
+#       TAG = value [value, ...]
+# For lists items can also be appended using:
+#       TAG += value [value, ...]
+# Values that contain spaces should be placed between quotes (" ")
+
+#---------------------------------------------------------------------------
+# Project related configuration options
+#---------------------------------------------------------------------------
+
+# This tag specifies the encoding used for all characters in the config file 
+# that follow. The default is UTF-8 which is also the encoding used for all 
+# text before the first occurrence of this tag. Doxygen uses libiconv (or the 
+# iconv built into libc) for the transcoding. See 
+# http://www.gnu.org/software/libiconv for the list of possible encodings.
+
+DOXYFILE_ENCODING      = UTF-8
+
+# The PROJECT_NAME tag is a single word (or sequence of words) that should 
+# identify the project. Note that if you do not use Doxywizard you need 
+# to put quotes around the project name if it contains spaces.
+
+PROJECT_NAME           = Simox
+
+# The PROJECT_NUMBER tag can be used to enter a project or revision number. 
+# This could be handy for archiving the generated documentation or 
+# if some version control system is used.
+
+PROJECT_NUMBER         = 2.0
+
+# Using the PROJECT_BRIEF tag one can provide an optional one line description 
+# for a project that appears at the top of each page and should give viewer 
+# a quick idea about the purpose of the project. Keep the description short.
+
+PROJECT_BRIEF          = 
+
+# With the PROJECT_LOGO tag one can specify an logo or icon that is 
+# included in the documentation. The maximum height of the logo should not 
+# exceed 55 pixels and the maximum width should not exceed 200 pixels. 
+# Doxygen will copy the logo to the output directory.
+
+PROJECT_LOGO           = 
+
+# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
+# base path where the generated documentation will be put. 
+# If a relative path is entered, it will be relative to the location 
+# where doxygen was started. If left blank the current directory will be used.
+
+OUTPUT_DIRECTORY       = doxygen
+
+# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 
+# 4096 sub-directories (in 2 levels) under the output directory of each output 
+# format and will distribute the generated files over these directories. 
+# Enabling this option can be useful when feeding doxygen a huge amount of 
+# source files, where putting all generated files in the same directory would 
+# otherwise cause performance problems for the file system.
+
+CREATE_SUBDIRS         = NO
+
+# The OUTPUT_LANGUAGE tag is used to specify the language in which all 
+# documentation generated by doxygen is written. Doxygen will use this 
+# information to generate all constant output in the proper language. 
+# The default language is English, other supported languages are: 
+# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 
+# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, 
+# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English 
+# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, 
+# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, 
+# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
+
+OUTPUT_LANGUAGE        = English
+
+# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 
+# include brief member descriptions after the members that are listed in 
+# the file and class documentation (similar to JavaDoc). 
+# Set to NO to disable this.
+
+BRIEF_MEMBER_DESC      = YES
+
+# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
+# the brief description of a member or function before the detailed description. 
+# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
+# brief descriptions will be completely suppressed.
+
+REPEAT_BRIEF           = YES
+
+# This tag implements a quasi-intelligent brief description abbreviator 
+# that is used to form the text in various listings. Each string 
+# in this list, if found as the leading text of the brief description, will be 
+# stripped from the text and the result after processing the whole list, is 
+# used as the annotated text. Otherwise, the brief description is used as-is. 
+# If left blank, the following values are used ("$name" is automatically 
+# replaced with the name of the entity): "The $name class" "The $name widget" 
+# "The $name file" "is" "provides" "specifies" "contains" 
+# "represents" "a" "an" "the"
+
+ABBREVIATE_BRIEF       = "The $name class" \
+                         "The $name widget" \
+                         "The $name file" \
+                         is \
+                         provides \
+                         specifies \
+                         contains \
+                         represents \
+                         a \
+                         an \
+                         the
+
+# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 
+# Doxygen will generate a detailed section even if there is only a brief 
+# description.
+
+ALWAYS_DETAILED_SEC    = YES
+
+# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 
+# inherited members of a class in the documentation of that class as if those 
+# members were ordinary class members. Constructors, destructors and assignment 
+# operators of the base classes will not be shown.
+
+INLINE_INHERITED_MEMB  = NO
+
+# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
+# path before files name in the file list and in the header files. If set 
+# to NO the shortest path that makes the file name unique will be used.
+
+FULL_PATH_NAMES        = NO
+
+# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 
+# can be used to strip a user-defined part of the path. Stripping is 
+# only done if one of the specified strings matches the left-hand part of 
+# the path. The tag can be used to show relative paths in the file list. 
+# If left blank the directory from which doxygen is run is used as the 
+# path to strip.
+
+STRIP_FROM_PATH        = 
+
+# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 
+# the path mentioned in the documentation of a class, which tells 
+# the reader which header file to include in order to use a class. 
+# If left blank only the name of the header file containing the class 
+# definition is used. Otherwise one should specify the include paths that 
+# are normally passed to the compiler using the -I flag.
+
+STRIP_FROM_INC_PATH    = 
+
+# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 
+# (but less readable) file names. This can be useful if your file system 
+# doesn't support long names like on DOS, Mac, or CD-ROM.
+
+SHORT_NAMES            = NO
+
+# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
+# will interpret the first line (until the first dot) of a JavaDoc-style 
+# comment as the brief description. If set to NO, the JavaDoc 
+# comments will behave just like regular Qt-style comments 
+# (thus requiring an explicit @brief command for a brief description.)
+
+JAVADOC_AUTOBRIEF      = NO
+
+# If the QT_AUTOBRIEF tag is set to YES then Doxygen will 
+# interpret the first line (until the first dot) of a Qt-style 
+# comment as the brief description. If set to NO, the comments 
+# will behave just like regular Qt-style comments (thus requiring 
+# an explicit \brief command for a brief description.)
+
+QT_AUTOBRIEF           = NO
+
+# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 
+# treat a multi-line C++ special comment block (i.e. a block of //! or /// 
+# comments) as a brief description. This used to be the default behaviour. 
+# The new default is to treat a multi-line C++ comment block as a detailed 
+# description. Set this tag to YES if you prefer the old behaviour instead.
+
+MULTILINE_CPP_IS_BRIEF = NO
+
+# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
+# member inherits the documentation from any documented member that it 
+# re-implements.
+
+INHERIT_DOCS           = YES
+
+# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 
+# a new page for each member. If set to NO, the documentation of a member will 
+# be part of the file/class/namespace that contains it.
+
+SEPARATE_MEMBER_PAGES  = NO
+
+# The TAB_SIZE tag can be used to set the number of spaces in a tab. 
+# Doxygen uses this value to replace tabs by spaces in code fragments.
+
+TAB_SIZE               = 16
+
+# This tag can be used to specify a number of aliases that acts 
+# as commands in the documentation. An alias has the form "name=value". 
+# For example adding "sideeffect=\par Side Effects:\n" will allow you to 
+# put the command \sideeffect (or @sideeffect) in the documentation, which 
+# will result in a user-defined paragraph with heading "Side Effects:". 
+# You can put \n's in the value part of an alias to insert newlines.
+
+ALIASES                = 
+
+# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 
+# sources only. Doxygen will then generate output that is more tailored for C. 
+# For instance, some of the names that are used will be different. The list 
+# of all members will be omitted, etc.
+
+OPTIMIZE_OUTPUT_FOR_C  = YES
+
+# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 
+# sources only. Doxygen will then generate output that is more tailored for 
+# Java. For instance, namespaces will be presented as packages, qualified 
+# scopes will look different, etc.
+
+OPTIMIZE_OUTPUT_JAVA   = NO
+
+# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 
+# sources only. Doxygen will then generate output that is more tailored for 
+# Fortran.
+
+OPTIMIZE_FOR_FORTRAN   = NO
+
+# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 
+# sources. Doxygen will then generate output that is tailored for 
+# VHDL.
+
+OPTIMIZE_OUTPUT_VHDL   = NO
+
+# Doxygen selects the parser to use depending on the extension of the files it 
+# parses. With this tag you can assign which parser to use for a given extension. 
+# Doxygen has a built-in mapping, but you can override or extend it using this 
+# tag. The format is ext=language, where ext is a file extension, and language 
+# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, 
+# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make 
+# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C 
+# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions 
+# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
+
+EXTENSION_MAPPING      = 
+
+# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 
+# to include (a tag file for) the STL sources as input, then you should 
+# set this tag to YES in order to let doxygen match functions declarations and 
+# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 
+# func(std::string) {}). This also makes the inheritance and collaboration 
+# diagrams that involve STL classes more complete and accurate.
+
+BUILTIN_STL_SUPPORT    = NO
+
+# If you use Microsoft's C++/CLI language, you should set this option to YES to 
+# enable parsing support.
+
+CPP_CLI_SUPPORT        = NO
+
+# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. 
+# Doxygen will parse them like normal C++ but will assume all classes use public 
+# instead of private inheritance when no explicit protection keyword is present.
+
+SIP_SUPPORT            = NO
+
+# For Microsoft's IDL there are propget and propput attributes to indicate getter 
+# and setter methods for a property. Setting this option to YES (the default) 
+# will make doxygen replace the get and set methods by a property in the 
+# documentation. This will only work if the methods are indeed getting or 
+# setting a simple type. If this is not the case, or you want to show the 
+# methods anyway, you should set this option to NO.
+
+IDL_PROPERTY_SUPPORT   = YES
+
+# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 
+# tag is set to YES, then doxygen will reuse the documentation of the first 
+# member in the group (if any) for the other members of the group. By default 
+# all members of a group must be documented explicitly.
+
+DISTRIBUTE_GROUP_DOC   = NO
+
+# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 
+# the same type (for instance a group of public functions) to be put as a 
+# subgroup of that type (e.g. under the Public Functions section). Set it to 
+# NO to prevent subgrouping. Alternatively, this can be done per class using 
+# the \nosubgrouping command.
+
+SUBGROUPING            = YES
+
+# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and 
+# unions are shown inside the group in which they are included (e.g. using 
+# @ingroup) instead of on a separate page (for HTML and Man pages) or 
+# section (for LaTeX and RTF).
+
+INLINE_GROUPED_CLASSES = NO
+
+# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and 
+# unions with only public data fields will be shown inline in the documentation 
+# of the scope in which they are defined (i.e. file, namespace, or group 
+# documentation), provided this scope is documented. If set to NO (the default), 
+# structs, classes, and unions are shown on a separate page (for HTML and Man 
+# pages) or section (for LaTeX and RTF).
+
+INLINE_SIMPLE_STRUCTS  = NO
+
+# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum 
+# is documented as struct, union, or enum with the name of the typedef. So 
+# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 
+# with name TypeT. When disabled the typedef will appear as a member of a file, 
+# namespace, or class. And the struct will be named TypeS. This can typically 
+# be useful for C code in case the coding convention dictates that all compound 
+# types are typedef'ed and only the typedef is referenced, never the tag name.
+
+TYPEDEF_HIDES_STRUCT   = NO
+
+# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to 
+# determine which symbols to keep in memory and which to flush to disk. 
+# When the cache is full, less often used symbols will be written to disk. 
+# For small to medium size projects (<1000 input files) the default value is 
+# probably good enough. For larger projects a too small cache size can cause 
+# doxygen to be busy swapping symbols to and from disk most of the time 
+# causing a significant performance penalty. 
+# If the system has enough physical memory increasing the cache will improve the 
+# performance by keeping more symbols in memory. Note that the value works on 
+# a logarithmic scale so increasing the size by one will roughly double the 
+# memory usage. The cache size is given by this formula: 
+# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, 
+# corresponding to a cache size of 2^16 = 65536 symbols
+
+SYMBOL_CACHE_SIZE      = 0
+
+#---------------------------------------------------------------------------
+# Build related configuration options
+#---------------------------------------------------------------------------
+
+# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
+# documentation are documented, even if no documentation was available. 
+# Private class members and static file members will be hidden unless 
+# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
+
+EXTRACT_ALL            = YES
+
+# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
+# will be included in the documentation.
+
+EXTRACT_PRIVATE        = NO
+
+# If the EXTRACT_STATIC tag is set to YES all static members of a file 
+# will be included in the documentation.
+
+EXTRACT_STATIC         = YES
+
+# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
+# defined locally in source files will be included in the documentation. 
+# If set to NO only classes defined in header files are included.
+
+EXTRACT_LOCAL_CLASSES  = YES
+
+# This flag is only useful for Objective-C code. When set to YES local 
+# methods, which are defined in the implementation section but not in 
+# the interface are included in the documentation. 
+# If set to NO (the default) only methods in the interface are included.
+
+EXTRACT_LOCAL_METHODS  = NO
+
+# If this flag is set to YES, the members of anonymous namespaces will be 
+# extracted and appear in the documentation as a namespace called 
+# 'anonymous_namespace{file}', where file will be replaced with the base 
+# name of the file that contains the anonymous namespace. By default 
+# anonymous namespaces are hidden.
+
+EXTRACT_ANON_NSPACES   = NO
+
+# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
+# undocumented members of documented classes, files or namespaces. 
+# If set to NO (the default) these members will be included in the 
+# various overviews, but no documentation section is generated. 
+# This option has no effect if EXTRACT_ALL is enabled.
+
+HIDE_UNDOC_MEMBERS     = NO
+
+# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
+# undocumented classes that are normally visible in the class hierarchy. 
+# If set to NO (the default) these classes will be included in the various 
+# overviews. This option has no effect if EXTRACT_ALL is enabled.
+
+HIDE_UNDOC_CLASSES     = NO
+
+# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 
+# friend (class|struct|union) declarations. 
+# If set to NO (the default) these declarations will be included in the 
+# documentation.
+
+HIDE_FRIEND_COMPOUNDS  = NO
+
+# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 
+# documentation blocks found inside the body of a function. 
+# If set to NO (the default) these blocks will be appended to the 
+# function's detailed documentation block.
+
+HIDE_IN_BODY_DOCS      = NO
+
+# The INTERNAL_DOCS tag determines if documentation 
+# that is typed after a \internal command is included. If the tag is set 
+# to NO (the default) then the documentation will be excluded. 
+# Set it to YES to include the internal documentation.
+
+INTERNAL_DOCS          = NO
+
+# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 
+# file names in lower-case letters. If set to YES upper-case letters are also 
+# allowed. This is useful if you have classes or files whose names only differ 
+# in case and if your file system supports case sensitive file names. Windows 
+# and Mac users are advised to set this option to NO.
+
+CASE_SENSE_NAMES       = NO
+
+# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
+# will show members with their full class and namespace scopes in the 
+# documentation. If set to YES the scope will be hidden.
+
+HIDE_SCOPE_NAMES       = NO
+
+# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
+# will put a list of the files that are included by a file in the documentation 
+# of that file.
+
+SHOW_INCLUDE_FILES     = NO
+
+# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen 
+# will list include files with double quotes in the documentation 
+# rather than with sharp brackets.
+
+FORCE_LOCAL_INCLUDES   = NO
+
+# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
+# is inserted in the documentation for inline members.
+
+INLINE_INFO            = YES
+
+# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
+# will sort the (detailed) documentation of file and class members 
+# alphabetically by member name. If set to NO the members will appear in 
+# declaration order.
+
+SORT_MEMBER_DOCS       = YES
+
+# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 
+# brief documentation of file, namespace and class members alphabetically 
+# by member name. If set to NO (the default) the members will appear in 
+# declaration order.
+
+SORT_BRIEF_DOCS        = NO
+
+# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen 
+# will sort the (brief and detailed) documentation of class members so that 
+# constructors and destructors are listed first. If set to NO (the default) 
+# the constructors will appear in the respective orders defined by 
+# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. 
+# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO 
+# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
+
+SORT_MEMBERS_CTORS_1ST = NO
+
+# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the 
+# hierarchy of group names into alphabetical order. If set to NO (the default) 
+# the group names will appear in their defined order.
+
+SORT_GROUP_NAMES       = NO
+
+# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 
+# sorted by fully-qualified names, including namespaces. If set to 
+# NO (the default), the class list will be sorted only by class name, 
+# not including the namespace part. 
+# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 
+# Note: This option applies only to the class list, not to the 
+# alphabetical list.
+
+SORT_BY_SCOPE_NAME     = NO
+
+# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to 
+# do proper type resolution of all parameters of a function it will reject a 
+# match between the prototype and the implementation of a member function even 
+# if there is only one candidate or it is obvious which candidate to choose 
+# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen 
+# will still accept a match between prototype and implementation in such cases.
+
+STRICT_PROTO_MATCHING  = NO
+
+# The GENERATE_TODOLIST tag can be used to enable (YES) or 
+# disable (NO) the todo list. This list is created by putting \todo 
+# commands in the documentation.
+
+GENERATE_TODOLIST      = YES
+
+# The GENERATE_TESTLIST tag can be used to enable (YES) or 
+# disable (NO) the test list. This list is created by putting \test 
+# commands in the documentation.
+
+GENERATE_TESTLIST      = YES
+
+# The GENERATE_BUGLIST tag can be used to enable (YES) or 
+# disable (NO) the bug list. This list is created by putting \bug 
+# commands in the documentation.
+
+GENERATE_BUGLIST       = YES
+
+# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 
+# disable (NO) the deprecated list. This list is created by putting 
+# \deprecated commands in the documentation.
+
+GENERATE_DEPRECATEDLIST= YES
+
+# The ENABLED_SECTIONS tag can be used to enable conditional 
+# documentation sections, marked by \if sectionname ... \endif.
+
+ENABLED_SECTIONS       = 
+
+# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 
+# the initial value of a variable or macro consists of for it to appear in 
+# the documentation. If the initializer consists of more lines than specified 
+# here it will be hidden. Use a value of 0 to hide initializers completely. 
+# The appearance of the initializer of individual variables and macros in the 
+# documentation can be controlled using \showinitializer or \hideinitializer 
+# command in the documentation regardless of this setting.
+
+MAX_INITIALIZER_LINES  = 30
+
+# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 
+# at the bottom of the documentation of classes and structs. If set to YES the 
+# list will mention the files that were used to generate the documentation.
+
+SHOW_USED_FILES        = NO
+
+# If the sources in your project are distributed over multiple directories 
+# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 
+# in the documentation. The default is NO.
+
+SHOW_DIRECTORIES       = YES
+
+# Set the SHOW_FILES tag to NO to disable the generation of the Files page. 
+# This will remove the Files entry from the Quick Index and from the 
+# Folder Tree View (if specified). The default is YES.
+
+SHOW_FILES             = NO
+
+# Set the SHOW_NAMESPACES tag to NO to disable the generation of the 
+# Namespaces page.  This will remove the Namespaces entry from the Quick Index 
+# and from the Folder Tree View (if specified). The default is YES.
+
+SHOW_NAMESPACES        = YES
+
+# The FILE_VERSION_FILTER tag can be used to specify a program or script that 
+# doxygen should invoke to get the current version for each file (typically from 
+# the version control system). Doxygen will invoke the program by executing (via 
+# popen()) the command <command> <input-file>, where <command> is the value of 
+# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 
+# provided by doxygen. Whatever the program writes to standard output 
+# is used as the file version. See the manual for examples.
+
+FILE_VERSION_FILTER    = 
+
+# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 
+# by doxygen. The layout file controls the global structure of the generated 
+# output files in an output format independent way. The create the layout file 
+# that represents doxygen's defaults, run doxygen with the -l option. 
+# You can optionally specify a file name after the option, if omitted 
+# DoxygenLayout.xml will be used as the name of the layout file.
+
+LAYOUT_FILE            = 
+
+# The CITE_BIB_FILES tag can be used to specify one or more bib files 
+# containing the references data. This must be a list of .bib files. The 
+# .bib extension is automatically appended if omitted. Using this command 
+# requires the bibtex tool to be installed. See also 
+# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style 
+# of the bibliography can be controlled using LATEX_BIB_STYLE.
+
+CITE_BIB_FILES         = 
+
+#---------------------------------------------------------------------------
+# configuration options related to warning and progress messages
+#---------------------------------------------------------------------------
+
+# The QUIET tag can be used to turn on/off the messages that are generated 
+# by doxygen. Possible values are YES and NO. If left blank NO is used.
+
+QUIET                  = NO
+
+# The WARNINGS tag can be used to turn on/off the warning messages that are 
+# generated by doxygen. Possible values are YES and NO. If left blank 
+# NO is used.
+
+WARNINGS               = YES
+
+# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
+# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
+# automatically be disabled.
+
+WARN_IF_UNDOCUMENTED   = YES
+
+# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 
+# potential errors in the documentation, such as not documenting some 
+# parameters in a documented function, or documenting parameters that 
+# don't exist or using markup commands wrongly.
+
+WARN_IF_DOC_ERROR      = YES
+
+# The WARN_NO_PARAMDOC option can be enabled to get warnings for 
+# functions that are documented, but have no documentation for their parameters 
+# or return value. If set to NO (the default) doxygen will only warn about 
+# wrong or incomplete parameter documentation, but not about the absence of 
+# documentation.
+
+WARN_NO_PARAMDOC       = NO
+
+# The WARN_FORMAT tag determines the format of the warning messages that 
+# doxygen can produce. The string should contain the $file, $line, and $text 
+# tags, which will be replaced by the file and line number from which the 
+# warning originated and the warning text. Optionally the format may contain 
+# $version, which will be replaced by the version of the file (if it could 
+# be obtained via FILE_VERSION_FILTER)
+
+WARN_FORMAT            = "$file:$line: $text"
+
+# The WARN_LOGFILE tag can be used to specify a file to which warning 
+# and error messages should be written. If left blank the output is written 
+# to stderr.
+
+WARN_LOGFILE           = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the input files
+#---------------------------------------------------------------------------
+
+# The INPUT tag can be used to specify the files and/or directories that contain 
+# documented source files. You may enter file names like "myfile.cpp" or 
+# directories like "/usr/src/myproject". Separate the files or directories 
+# with spaces.
+
+INPUT                  = .. \
+                         ..\GraspPlanning \
+                         ..\GraspPlanning\GraspPlanner \
+                         ..\GraspPlanning\GraspQuality \
+                         ..\GraspPlanning\Visualization \
+                         ..\MotionPlanning \
+                         ..\MotionPlanning\CSpace \
+                         ..\MotionPlanning\Planner \
+                         ..\MotionPlanning\PostProcessing \
+                         ..\MotionPlanning\Visualization \
+                         ..\VirtualRobot\CollisionDetection \
+                         ..\VirtualRobot\CollisionDetection\PQP \
+                         ..\VirtualRobot\CollisionDetection\Dummy \
+                         ..\VirtualRobot\EndEffector \
+                         ..\VirtualRobot\IK \
+                         ..\VirtualRobot\Nodes \
+                         ..\VirtualRobot\Transformation \
+                         ..\VirtualRobot\Visualization \
+                         ..\VirtualRobot
+
+# This tag can be used to specify the character encoding of the source files 
+# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is 
+# also the default input encoding. Doxygen uses libiconv (or the iconv built 
+# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for 
+# the list of possible encodings.
+
+INPUT_ENCODING         = UTF-8
+
+# If the value of the INPUT tag contains directories, you can use the 
+# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
+# and *.h) to filter out the source-files in the directories. If left 
+# blank the following patterns are tested: 
+# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh 
+# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py 
+# *.f90 *.f *.for *.vhd *.vhdl
+
+FILE_PATTERNS          = *.c \
+                         *.cc \
+                         *.cxx \
+                         *.cpp \
+                         *.c++ \
+                         *.d \
+                         *.java \
+                         *.ii \
+                         *.ixx \
+                         *.ipp \
+                         *.i++ \
+                         *.inl \
+                         *.h \
+                         *.hh \
+                         *.hxx \
+                         *.hpp \
+                         *.h++ \
+                         *.idl \
+                         *.odl \
+                         *.cs \
+                         *.php \
+                         *.php3 \
+                         *.inc \
+                         *.m \
+                         *.mm \
+                         *.dox \
+                         *.py \
+                         *.f90 \
+                         *.f \
+                         *.vhd \
+                         *.vhdl
+
+# The RECURSIVE tag can be used to turn specify whether or not subdirectories 
+# should be searched for input files as well. Possible values are YES and NO. 
+# If left blank NO is used.
+
+RECURSIVE              = NO
+
+# The EXCLUDE tag can be used to specify files and/or directories that should 
+# excluded from the INPUT source files. This way you can easily exclude a 
+# subdirectory from a directory tree whose root is specified with the INPUT tag. 
+# Note that relative paths are relative to directory from which doxygen is run.
+
+EXCLUDE                = ../VirtualRobot/CollisionDetection/C2A \
+                         ../ExternalDependencies \
+                         ../VirtualRobot/examples/SceneEditor
+
+# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 
+# directories that are symbolic links (a Unix file system feature) are excluded 
+# from the input.
+
+EXCLUDE_SYMLINKS       = NO
+
+# If the value of the INPUT tag contains directories, you can use the 
+# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 
+# certain files from those directories. Note that the wildcards are matched 
+# against the file with absolute path, so to exclude all test directories 
+# for example use the pattern */test/*
+
+EXCLUDE_PATTERNS       = 
+
+# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 
+# (namespaces, classes, functions, etc.) that should be excluded from the 
+# output. The symbol name can be a fully qualified name, a word, or if the 
+# wildcard * is used, a substring. Examples: ANamespace, AClass, 
+# AClass::ANamespace, ANamespace::*Test
+
+EXCLUDE_SYMBOLS        = 
+
+# The EXAMPLE_PATH tag can be used to specify one or more files or 
+# directories that contain example code fragments that are included (see 
+# the \include command).
+
+EXAMPLE_PATH           = 
+
+# If the value of the EXAMPLE_PATH tag contains directories, you can use the 
+# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
+# and *.h) to filter out the source-files in the directories. If left 
+# blank all files are included.
+
+EXAMPLE_PATTERNS       = *
+
+# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 
+# searched for input files to be used with the \include or \dontinclude 
+# commands irrespective of the value of the RECURSIVE tag. 
+# Possible values are YES and NO. If left blank NO is used.
+
+EXAMPLE_RECURSIVE      = NO
+
+# The IMAGE_PATH tag can be used to specify one or more files or 
+# directories that contain image that are included in the documentation (see 
+# the \image command).
+
+IMAGE_PATH             = 
+
+# The INPUT_FILTER tag can be used to specify a program that doxygen should 
+# invoke to filter for each input file. Doxygen will invoke the filter program 
+# by executing (via popen()) the command <filter> <input-file>, where <filter> 
+# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 
+# input file. Doxygen will then use the output that the filter program writes 
+# to standard output.  If FILTER_PATTERNS is specified, this tag will be 
+# ignored.
+
+INPUT_FILTER           = 
+
+# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 
+# basis.  Doxygen will compare the file name with each pattern and apply the 
+# filter if there is a match.  The filters are a list of the form: 
+# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 
+# info on how filters are used. If FILTER_PATTERNS is empty or if 
+# non of the patterns match the file name, INPUT_FILTER is applied.
+
+FILTER_PATTERNS        = 
+
+# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 
+# INPUT_FILTER) will be used to filter the input files when producing source 
+# files to browse (i.e. when SOURCE_BROWSER is set to YES).
+
+FILTER_SOURCE_FILES    = NO
+
+# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file 
+# pattern. A pattern will override the setting for FILTER_PATTERN (if any) 
+# and it is also possible to disable source filtering for a specific pattern 
+# using *.ext= (so without naming a filter). This option only has effect when 
+# FILTER_SOURCE_FILES is enabled.
+
+FILTER_SOURCE_PATTERNS = 
+
+#---------------------------------------------------------------------------
+# configuration options related to source browsing
+#---------------------------------------------------------------------------
+
+# If the SOURCE_BROWSER tag is set to YES then a list of source files will 
+# be generated. Documented entities will be cross-referenced with these sources. 
+# Note: To get rid of all source code in the generated output, make sure also 
+# VERBATIM_HEADERS is set to NO.
+
+SOURCE_BROWSER         = NO
+
+# Setting the INLINE_SOURCES tag to YES will include the body 
+# of functions and classes directly in the documentation.
+
+INLINE_SOURCES         = NO
+
+# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
+# doxygen to hide any special comment blocks from generated source code 
+# fragments. Normal C and C++ comments will always remain visible.
+
+STRIP_CODE_COMMENTS    = YES
+
+# If the REFERENCED_BY_RELATION tag is set to YES 
+# then for each documented function all documented 
+# functions referencing it will be listed.
+
+REFERENCED_BY_RELATION = NO
+
+# If the REFERENCES_RELATION tag is set to YES 
+# then for each documented function all documented entities 
+# called/used by that function will be listed.
+
+REFERENCES_RELATION    = NO
+
+# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 
+# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 
+# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 
+# link to the source code.  Otherwise they will link to the documentation.
+
+REFERENCES_LINK_SOURCE = YES
+
+# If the USE_HTAGS tag is set to YES then the references to source code 
+# will point to the HTML generated by the htags(1) tool instead of doxygen 
+# built-in source browser. The htags tool is part of GNU's global source 
+# tagging system (see http://www.gnu.org/software/global/global.html). You 
+# will need version 4.8.6 or higher.
+
+USE_HTAGS              = NO
+
+# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 
+# will generate a verbatim copy of the header file for each class for 
+# which an include is specified. Set to NO to disable this.
+
+VERBATIM_HEADERS       = YES
+
+#---------------------------------------------------------------------------
+# configuration options related to the alphabetical class index
+#---------------------------------------------------------------------------
+
+# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
+# of all compounds will be generated. Enable this if the project 
+# contains a lot of classes, structs, unions or interfaces.
+
+ALPHABETICAL_INDEX     = YES
+
+# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
+# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
+# in which this list will be split (can be a number in the range [1..20])
+
+COLS_IN_ALPHA_INDEX    = 5
+
+# In case all classes in a project start with a common prefix, all 
+# classes will be put under the same header in the alphabetical index. 
+# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 
+# should be ignored while generating the index headers.
+
+IGNORE_PREFIX          = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the HTML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 
+# generate HTML output.
+
+GENERATE_HTML          = YES
+
+# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `html' will be used as the default path.
+
+HTML_OUTPUT            = html
+
+# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 
+# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 
+# doxygen will generate files with .html extension.
+
+HTML_FILE_EXTENSION    = .html
+
+# The HTML_HEADER tag can be used to specify a personal HTML header for 
+# each generated HTML page. If it is left blank doxygen will generate a 
+# standard header. Note that when using a custom header you are responsible  
+# for the proper inclusion of any scripts and style sheets that doxygen 
+# needs, which is dependent on the configuration options used. 
+# It is adviced to generate a default header using "doxygen -w html 
+# header.html footer.html stylesheet.css YourConfigFile" and then modify 
+# that header. Note that the header is subject to change so you typically 
+# have to redo this when upgrading to a newer version of doxygen or when 
+# changing the value of configuration settings such as GENERATE_TREEVIEW!
+
+HTML_HEADER            = 
+
+# The HTML_FOOTER tag can be used to specify a personal HTML footer for 
+# each generated HTML page. If it is left blank doxygen will generate a 
+# standard footer.
+
+HTML_FOOTER            = 
+
+# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 
+# style sheet that is used by each HTML page. It can be used to 
+# fine-tune the look of the HTML output. If the tag is left blank doxygen 
+# will generate a default style sheet. Note that doxygen will try to copy 
+# the style sheet file to the HTML output directory, so don't put your own 
+# stylesheet in the HTML output directory as well, or it will be erased!
+
+HTML_STYLESHEET        = 
+
+# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 
+# other source files which should be copied to the HTML output directory. Note 
+# that these files will be copied to the base HTML output directory. Use the 
+# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 
+# files. In the HTML_STYLESHEET file, use the file name only. Also note that 
+# the files will be copied as-is; there are no commands or markers available.
+
+HTML_EXTRA_FILES       = 
+
+# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. 
+# Doxygen will adjust the colors in the stylesheet and background images 
+# according to this color. Hue is specified as an angle on a colorwheel, 
+# see http://en.wikipedia.org/wiki/Hue for more information. 
+# For instance the value 0 represents red, 60 is yellow, 120 is green, 
+# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. 
+# The allowed range is 0 to 359.
+
+HTML_COLORSTYLE_HUE    = 220
+
+# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of 
+# the colors in the HTML output. For a value of 0 the output will use 
+# grayscales only. A value of 255 will produce the most vivid colors.
+
+HTML_COLORSTYLE_SAT    = 100
+
+# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to 
+# the luminance component of the colors in the HTML output. Values below 
+# 100 gradually make the output lighter, whereas values above 100 make 
+# the output darker. The value divided by 100 is the actual gamma applied, 
+# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, 
+# and 100 does not change the gamma.
+
+HTML_COLORSTYLE_GAMMA  = 80
+
+# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 
+# page will contain the date and time when the page was generated. Setting 
+# this to NO can help when comparing the output of multiple runs.
+
+HTML_TIMESTAMP         = YES
+
+# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 
+# files or namespaces will be aligned in HTML using tables. If set to 
+# NO a bullet list will be used.
+
+HTML_ALIGN_MEMBERS     = YES
+
+# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 
+# documentation will contain sections that can be hidden and shown after the 
+# page has loaded. For this to work a browser that supports 
+# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 
+# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
+
+HTML_DYNAMIC_SECTIONS  = NO
+
+# If the GENERATE_DOCSET tag is set to YES, additional index files 
+# will be generated that can be used as input for Apple's Xcode 3 
+# integrated development environment, introduced with OSX 10.5 (Leopard). 
+# To create a documentation set, doxygen will generate a Makefile in the 
+# HTML output directory. Running make will produce the docset in that 
+# directory and running "make install" will install the docset in 
+# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find 
+# it at startup. 
+# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html 
+# for more information.
+
+GENERATE_DOCSET        = NO
+
+# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the 
+# feed. A documentation feed provides an umbrella under which multiple 
+# documentation sets from a single provider (such as a company or product suite) 
+# can be grouped.
+
+DOCSET_FEEDNAME        = "Doxygen generated docs"
+
+# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that 
+# should uniquely identify the documentation set bundle. This should be a 
+# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen 
+# will append .docset to the name.
+
+DOCSET_BUNDLE_ID       = org.doxygen.Project
+
+# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify 
+# the documentation publisher. This should be a reverse domain-name style 
+# string, e.g. com.mycompany.MyDocSet.documentation.
+
+DOCSET_PUBLISHER_ID    = org.doxygen.Publisher
+
+# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
+
+DOCSET_PUBLISHER_NAME  = Publisher
+
+# If the GENERATE_HTMLHELP tag is set to YES, additional index files 
+# will be generated that can be used as input for tools like the 
+# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) 
+# of the generated HTML documentation.
+
+GENERATE_HTMLHELP      = NO
+
+# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 
+# be used to specify the file name of the resulting .chm file. You 
+# can add a path in front of the file if the result should not be 
+# written to the html output directory.
+
+CHM_FILE               = 
+
+# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 
+# be used to specify the location (absolute path including file name) of 
+# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 
+# the HTML help compiler on the generated index.hhp.
+
+HHC_LOCATION           = 
+
+# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 
+# controls if a separate .chi index file is generated (YES) or that 
+# it should be included in the master .chm file (NO).
+
+GENERATE_CHI           = NO
+
+# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING 
+# is used to encode HtmlHelp index (hhk), content (hhc) and project file 
+# content.
+
+CHM_INDEX_ENCODING     = 
+
+# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 
+# controls whether a binary table of contents is generated (YES) or a 
+# normal table of contents (NO) in the .chm file.
+
+BINARY_TOC             = NO
+
+# The TOC_EXPAND flag can be set to YES to add extra items for group members 
+# to the contents of the HTML help documentation and to the tree view.
+
+TOC_EXPAND             = NO
+
+# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 
+# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated 
+# that can be used as input for Qt's qhelpgenerator to generate a 
+# Qt Compressed Help (.qch) of the generated HTML documentation.
+
+GENERATE_QHP           = NO
+
+# If the QHG_LOCATION tag is specified, the QCH_FILE tag can 
+# be used to specify the file name of the resulting .qch file. 
+# The path specified is relative to the HTML output folder.
+
+QCH_FILE               = 
+
+# The QHP_NAMESPACE tag specifies the namespace to use when generating 
+# Qt Help Project output. For more information please see 
+# http://doc.trolltech.com/qthelpproject.html#namespace
+
+QHP_NAMESPACE          = org.doxygen.Project
+
+# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating 
+# Qt Help Project output. For more information please see 
+# http://doc.trolltech.com/qthelpproject.html#virtual-folders
+
+QHP_VIRTUAL_FOLDER     = doc
+
+# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to 
+# add. For more information please see 
+# http://doc.trolltech.com/qthelpproject.html#custom-filters
+
+QHP_CUST_FILTER_NAME   = 
+
+# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the 
+# custom filter to add. For more information please see 
+# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> 
+# Qt Help Project / Custom Filters</a>.
+
+QHP_CUST_FILTER_ATTRS  = 
+
+# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 
+# project's 
+# filter section matches. 
+# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> 
+# Qt Help Project / Filter Attributes</a>.
+
+QHP_SECT_FILTER_ATTRS  = 
+
+# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can 
+# be used to specify the location of Qt's qhelpgenerator. 
+# If non-empty doxygen will try to run qhelpgenerator on the generated 
+# .qhp file.
+
+QHG_LOCATION           = 
+
+# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files  
+# will be generated, which together with the HTML files, form an Eclipse help 
+# plugin. To install this plugin and make it available under the help contents 
+# menu in Eclipse, the contents of the directory containing the HTML and XML 
+# files needs to be copied into the plugins directory of eclipse. The name of 
+# the directory within the plugins directory should be the same as 
+# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before 
+# the help appears.
+
+GENERATE_ECLIPSEHELP   = NO
+
+# A unique identifier for the eclipse help plugin. When installing the plugin 
+# the directory name containing the HTML and XML files should also have 
+# this name.
+
+ECLIPSE_DOC_ID         = org.doxygen.Project
+
+# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 
+# top of each HTML page. The value NO (the default) enables the index and 
+# the value YES disables it.
+
+DISABLE_INDEX          = NO
+
+# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values 
+# (range [0,1..20]) that doxygen will group on one line in the generated HTML 
+# documentation. Note that a value of 0 will completely suppress the enum 
+# values from appearing in the overview section.
+
+ENUM_VALUES_PER_LINE   = 4
+
+# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 
+# structure should be generated to display hierarchical information. 
+# If the tag value is set to YES, a side panel will be generated 
+# containing a tree-like index structure (just like the one that 
+# is generated for HTML Help). For this to work a browser that supports 
+# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). 
+# Windows users are probably better off using the HTML help feature.
+
+GENERATE_TREEVIEW      = YES
+
+# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, 
+# and Class Hierarchy pages using a tree view instead of an ordered list.
+
+USE_INLINE_TREES       = NO
+
+# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 
+# used to set the initial width (in pixels) of the frame in which the tree 
+# is shown.
+
+TREEVIEW_WIDTH         = 250
+
+# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open 
+# links to external symbols imported via tag files in a separate window.
+
+EXT_LINKS_IN_WINDOW    = NO
+
+# Use this tag to change the font size of Latex formulas included 
+# as images in the HTML documentation. The default is 10. Note that 
+# when you change the font size after a successful doxygen run you need 
+# to manually remove any form_*.png images from the HTML output directory 
+# to force them to be regenerated.
+
+FORMULA_FONTSIZE       = 10
+
+# Use the FORMULA_TRANPARENT tag to determine whether or not the images 
+# generated for formulas are transparent PNGs. Transparent PNGs are 
+# not supported properly for IE 6.0, but are supported on all modern browsers. 
+# Note that when changing this option you need to delete any form_*.png files 
+# in the HTML output before the changes have effect.
+
+FORMULA_TRANSPARENT    = YES
+
+# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax 
+# (see http://www.mathjax.org) which uses client side Javascript for the 
+# rendering instead of using prerendered bitmaps. Use this if you do not 
+# have LaTeX installed or if you want to formulas look prettier in the HTML 
+# output. When enabled you also need to install MathJax separately and 
+# configure the path to it using the MATHJAX_RELPATH option.
+
+USE_MATHJAX            = NO
+
+# When MathJax is enabled you need to specify the location relative to the 
+# HTML output directory using the MATHJAX_RELPATH option. The destination 
+# directory should contain the MathJax.js script. For instance, if the mathjax 
+# directory is located at the same level as the HTML output directory, then 
+# MATHJAX_RELPATH should be ../mathjax. The default value points to the 
+# mathjax.org site, so you can quickly see the result without installing 
+# MathJax, but it is strongly recommended to install a local copy of MathJax 
+# before deployment.
+
+MATHJAX_RELPATH        = http://www.mathjax.org/mathjax
+
+# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension 
+# names that should be enabled during MathJax rendering.
+
+MATHJAX_EXTENSIONS     = 
+
+# When the SEARCHENGINE tag is enabled doxygen will generate a search box 
+# for the HTML output. The underlying search engine uses javascript 
+# and DHTML and should work on any modern browser. Note that when using 
+# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets 
+# (GENERATE_DOCSET) there is already a search function so this one should 
+# typically be disabled. For large projects the javascript based search engine 
+# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
+
+SEARCHENGINE           = NO
+
+# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 
+# implemented using a PHP enabled web server instead of at the web client 
+# using Javascript. Doxygen will generate the search PHP script and index 
+# file to put on the web server. The advantage of the server 
+# based approach is that it scales better to large projects and allows 
+# full text search. The disadvantages are that it is more difficult to setup 
+# and does not have live searching capabilities.
+
+SERVER_BASED_SEARCH    = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the LaTeX output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
+# generate Latex output.
+
+GENERATE_LATEX         = YES
+
+# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `latex' will be used as the default path.
+
+LATEX_OUTPUT           = latex
+
+# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 
+# invoked. If left blank `latex' will be used as the default command name. 
+# Note that when enabling USE_PDFLATEX this option is only used for 
+# generating bitmaps for formulas in the HTML output, but not in the 
+# Makefile that is written to the output directory.
+
+LATEX_CMD_NAME         = latex
+
+# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 
+# generate index for LaTeX. If left blank `makeindex' will be used as the 
+# default command name.
+
+MAKEINDEX_CMD_NAME     = makeindex
+
+# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 
+# LaTeX documents. This may be useful for small projects and may help to 
+# save some trees in general.
+
+COMPACT_LATEX          = NO
+
+# The PAPER_TYPE tag can be used to set the paper type that is used 
+# by the printer. Possible values are: a4, letter, legal and 
+# executive. If left blank a4wide will be used.
+
+PAPER_TYPE             = a4wide
+
+# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
+# packages that should be included in the LaTeX output.
+
+EXTRA_PACKAGES         = 
+
+# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
+# the generated latex document. The header should contain everything until 
+# the first chapter. If it is left blank doxygen will generate a 
+# standard header. Notice: only use this tag if you know what you are doing!
+
+LATEX_HEADER           = 
+
+# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for 
+# the generated latex document. The footer should contain everything after 
+# the last chapter. If it is left blank doxygen will generate a 
+# standard footer. Notice: only use this tag if you know what you are doing!
+
+LATEX_FOOTER           = 
+
+# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 
+# is prepared for conversion to pdf (using ps2pdf). The pdf file will 
+# contain links (just like the HTML output) instead of page references 
+# This makes the output suitable for online browsing using a pdf viewer.
+
+PDF_HYPERLINKS         = YES
+
+# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 
+# plain latex in the generated Makefile. Set this option to YES to get a 
+# higher quality PDF documentation.
+
+USE_PDFLATEX           = YES
+
+# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 
+# command to the generated LaTeX files. This will instruct LaTeX to keep 
+# running if errors occur, instead of asking the user for help. 
+# This option is also used when generating formulas in HTML.
+
+LATEX_BATCHMODE        = NO
+
+# If LATEX_HIDE_INDICES is set to YES then doxygen will not 
+# include the index chapters (such as File Index, Compound Index, etc.) 
+# in the output.
+
+LATEX_HIDE_INDICES     = NO
+
+# If LATEX_SOURCE_CODE is set to YES then doxygen will include 
+# source code with syntax highlighting in the LaTeX output. 
+# Note that which sources are shown also depends on other settings 
+# such as SOURCE_BROWSER.
+
+LATEX_SOURCE_CODE      = NO
+
+# The LATEX_BIB_STYLE tag can be used to specify the style to use for the 
+# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See 
+# http://en.wikipedia.org/wiki/BibTeX for more info.
+
+LATEX_BIB_STYLE        = plain
+
+#---------------------------------------------------------------------------
+# configuration options related to the RTF output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 
+# The RTF output is optimized for Word 97 and may not look very pretty with 
+# other RTF readers or editors.
+
+GENERATE_RTF           = NO
+
+# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `rtf' will be used as the default path.
+
+RTF_OUTPUT             = rtf
+
+# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 
+# RTF documents. This may be useful for small projects and may help to 
+# save some trees in general.
+
+COMPACT_RTF            = NO
+
+# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 
+# will contain hyperlink fields. The RTF file will 
+# contain links (just like the HTML output) instead of page references. 
+# This makes the output suitable for online browsing using WORD or other 
+# programs which support those fields. 
+# Note: wordpad (write) and others do not support links.
+
+RTF_HYPERLINKS         = NO
+
+# Load stylesheet definitions from file. Syntax is similar to doxygen's 
+# config file, i.e. a series of assignments. You only have to provide 
+# replacements, missing definitions are set to their default value.
+
+RTF_STYLESHEET_FILE    = 
+
+# Set optional variables used in the generation of an rtf document. 
+# Syntax is similar to doxygen's config file.
+
+RTF_EXTENSIONS_FILE    = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the man page output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 
+# generate man pages
+
+GENERATE_MAN           = NO
+
+# The MAN_OUTPUT tag is used to specify where the man pages will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `man' will be used as the default path.
+
+MAN_OUTPUT             = man
+
+# The MAN_EXTENSION tag determines the extension that is added to 
+# the generated man pages (default is the subroutine's section .3)
+
+MAN_EXTENSION          = .3
+
+# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 
+# then it will generate one additional man file for each entity 
+# documented in the real man page(s). These additional files 
+# only source the real man page, but without them the man command 
+# would be unable to find the correct page. The default is NO.
+
+MAN_LINKS              = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the XML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_XML tag is set to YES Doxygen will 
+# generate an XML file that captures the structure of 
+# the code including all documentation.
+
+GENERATE_XML           = NO
+
+# The XML_OUTPUT tag is used to specify where the XML pages will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `xml' will be used as the default path.
+
+XML_OUTPUT             = xml
+
+# The XML_SCHEMA tag can be used to specify an XML schema, 
+# which can be used by a validating XML parser to check the 
+# syntax of the XML files.
+
+XML_SCHEMA             = 
+
+# The XML_DTD tag can be used to specify an XML DTD, 
+# which can be used by a validating XML parser to check the 
+# syntax of the XML files.
+
+XML_DTD                = 
+
+# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 
+# dump the program listings (including syntax highlighting 
+# and cross-referencing information) to the XML output. Note that 
+# enabling this will significantly increase the size of the XML output.
+
+XML_PROGRAMLISTING     = YES
+
+#---------------------------------------------------------------------------
+# configuration options for the AutoGen Definitions output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 
+# generate an AutoGen Definitions (see autogen.sf.net) file 
+# that captures the structure of the code including all 
+# documentation. Note that this feature is still experimental 
+# and incomplete at the moment.
+
+GENERATE_AUTOGEN_DEF   = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the Perl module output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_PERLMOD tag is set to YES Doxygen will 
+# generate a Perl module file that captures the structure of 
+# the code including all documentation. Note that this 
+# feature is still experimental and incomplete at the 
+# moment.
+
+GENERATE_PERLMOD       = NO
+
+# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 
+# the necessary Makefile rules, Perl scripts and LaTeX code to be able 
+# to generate PDF and DVI output from the Perl module output.
+
+PERLMOD_LATEX          = NO
+
+# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 
+# nicely formatted so it can be parsed by a human reader.  This is useful 
+# if you want to understand what is going on.  On the other hand, if this 
+# tag is set to NO the size of the Perl module output will be much smaller 
+# and Perl will parse it just the same.
+
+PERLMOD_PRETTY         = YES
+
+# The names of the make variables in the generated doxyrules.make file 
+# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 
+# This is useful so different doxyrules.make files included by the same 
+# Makefile don't overwrite each other's variables.
+
+PERLMOD_MAKEVAR_PREFIX = 
+
+#---------------------------------------------------------------------------
+# Configuration options related to the preprocessor
+#---------------------------------------------------------------------------
+
+# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
+# evaluate all C-preprocessor directives found in the sources and include 
+# files.
+
+ENABLE_PREPROCESSING   = YES
+
+# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 
+# names in the source code. If set to NO (the default) only conditional 
+# compilation will be performed. Macro expansion can be done in a controlled 
+# way by setting EXPAND_ONLY_PREDEF to YES.
+
+MACRO_EXPANSION        = NO
+
+# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 
+# then the macro expansion is limited to the macros specified with the 
+# PREDEFINED and EXPAND_AS_DEFINED tags.
+
+EXPAND_ONLY_PREDEF     = NO
+
+# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 
+# pointed to by INCLUDE_PATH will be searched when a #include is found.
+
+SEARCH_INCLUDES        = YES
+
+# The INCLUDE_PATH tag can be used to specify one or more directories that 
+# contain include files that are not input files but should be processed by 
+# the preprocessor.
+
+INCLUDE_PATH           = 
+
+# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
+# patterns (like *.h and *.hpp) to filter out the header-files in the 
+# directories. If left blank, the patterns specified with FILE_PATTERNS will 
+# be used.
+
+INCLUDE_FILE_PATTERNS  = 
+
+# The PREDEFINED tag can be used to specify one or more macro names that 
+# are defined before the preprocessor is started (similar to the -D option of 
+# gcc). The argument of the tag is a list of macros of the form: name 
+# or name=definition (no spaces). If the definition and the = are 
+# omitted =1 is assumed. To prevent a macro definition from being 
+# undefined via #undef or recursively expanded use the := operator 
+# instead of the = operator.
+
+PREDEFINED             = 
+
+# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 
+# this tag can be used to specify a list of macro names that should be expanded. 
+# The macro definition that is found in the sources will be used. 
+# Use the PREDEFINED tag if you want to use a different macro definition that 
+# overrules the definition found in the source code.
+
+EXPAND_AS_DEFINED      = 
+
+# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 
+# doxygen's preprocessor will remove all references to function-like macros 
+# that are alone on a line, have an all uppercase name, and do not end with a 
+# semicolon, because these will confuse the parser if not removed.
+
+SKIP_FUNCTION_MACROS   = YES
+
+#---------------------------------------------------------------------------
+# Configuration::additions related to external references
+#---------------------------------------------------------------------------
+
+# The TAGFILES option can be used to specify one or more tagfiles. 
+# Optionally an initial location of the external documentation 
+# can be added for each tagfile. The format of a tag file without 
+# this location is as follows: 
+#   TAGFILES = file1 file2 ... 
+# Adding location for the tag files is done as follows: 
+#   TAGFILES = file1=loc1 "file2 = loc2" ... 
+# where "loc1" and "loc2" can be relative or absolute paths or 
+# URLs. If a location is present for each tag, the installdox tool 
+# does not have to be run to correct the links. 
+# Note that each tag file must have a unique name 
+# (where the name does NOT include the path) 
+# If a tag file is not located in the directory in which doxygen 
+# is run, you must also specify the path to the tagfile here.
+
+TAGFILES               = 
+
+# When a file name is specified after GENERATE_TAGFILE, doxygen will create 
+# a tag file that is based on the input files it reads.
+
+GENERATE_TAGFILE       = 
+
+# If the ALLEXTERNALS tag is set to YES all external classes will be listed 
+# in the class index. If set to NO only the inherited external classes 
+# will be listed.
+
+ALLEXTERNALS           = NO
+
+# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 
+# in the modules index. If set to NO, only the current project's groups will 
+# be listed.
+
+EXTERNAL_GROUPS        = YES
+
+# The PERL_PATH should be the absolute path and name of the perl script 
+# interpreter (i.e. the result of `which perl').
+
+PERL_PATH              = /usr/bin/perl
+
+#---------------------------------------------------------------------------
+# Configuration options related to the dot tool
+#---------------------------------------------------------------------------
+
+# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 
+# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 
+# or super classes. Setting the tag to NO turns the diagrams off. Note that 
+# this option also works with HAVE_DOT disabled, but it is recommended to 
+# install and use dot, since it yields more powerful graphs.
+
+CLASS_DIAGRAMS         = YES
+
+# You can define message sequence charts within doxygen comments using the \msc 
+# command. Doxygen will then run the mscgen tool (see 
+# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the 
+# documentation. The MSCGEN_PATH tag allows you to specify the directory where 
+# the mscgen tool resides. If left empty the tool is assumed to be found in the 
+# default search path.
+
+MSCGEN_PATH            = 
+
+# If set to YES, the inheritance and collaboration graphs will hide 
+# inheritance and usage relations if the target is undocumented 
+# or is not a class.
+
+HIDE_UNDOC_RELATIONS   = YES
+
+# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 
+# available from the path. This tool is part of Graphviz, a graph visualization 
+# toolkit from AT&T and Lucent Bell Labs. The other options in this section 
+# have no effect if this option is set to NO (the default)
+
+HAVE_DOT               = NO
+
+# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is 
+# allowed to run in parallel. When set to 0 (the default) doxygen will 
+# base this on the number of processors available in the system. You can set it 
+# explicitly to a value larger than 0 to get control over the balance 
+# between CPU load and processing speed.
+
+DOT_NUM_THREADS        = 0
+
+# By default doxygen will use the Helvetica font for all dot files that 
+# doxygen generates. When you want a differently looking font you can specify 
+# the font name using DOT_FONTNAME. You need to make sure dot is able to find 
+# the font, which can be done by putting it in a standard location or by setting 
+# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the 
+# directory containing the font.
+
+DOT_FONTNAME           = FreeSans
+
+# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. 
+# The default size is 10pt.
+
+DOT_FONTSIZE           = 10
+
+# By default doxygen will tell dot to use the Helvetica font. 
+# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to 
+# set the path where dot can find it.
+
+DOT_FONTPATH           = 
+
+# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graph for each documented class showing the direct and 
+# indirect inheritance relations. Setting this tag to YES will force the 
+# the CLASS_DIAGRAMS tag to NO.
+
+CLASS_GRAPH            = YES
+
+# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graph for each documented class showing the direct and 
+# indirect implementation dependencies (inheritance, containment, and 
+# class references variables) of the class with other documented classes.
+
+COLLABORATION_GRAPH    = YES
+
+# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graph for groups, showing the direct groups dependencies
+
+GROUP_GRAPHS           = YES
+
+# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 
+# collaboration diagrams in a style similar to the OMG's Unified Modeling 
+# Language.
+
+UML_LOOK               = NO
+
+# If set to YES, the inheritance and collaboration graphs will show the 
+# relations between templates and their instances.
+
+TEMPLATE_RELATIONS     = NO
+
+# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 
+# tags are set to YES then doxygen will generate a graph for each documented 
+# file showing the direct and indirect include dependencies of the file with 
+# other documented files.
+
+INCLUDE_GRAPH          = YES
+
+# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 
+# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 
+# documented header file showing the documented files that directly or 
+# indirectly include this file.
+
+INCLUDED_BY_GRAPH      = YES
+
+# If the CALL_GRAPH and HAVE_DOT options are set to YES then 
+# doxygen will generate a call dependency graph for every global function 
+# or class method. Note that enabling this option will significantly increase 
+# the time of a run. So in most cases it will be better to enable call graphs 
+# for selected functions only using the \callgraph command.
+
+CALL_GRAPH             = NO
+
+# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then 
+# doxygen will generate a caller dependency graph for every global function 
+# or class method. Note that enabling this option will significantly increase 
+# the time of a run. So in most cases it will be better to enable caller 
+# graphs for selected functions only using the \callergraph command.
+
+CALLER_GRAPH           = NO
+
+# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graphical hierarchy of all classes instead of a textual one.
+
+GRAPHICAL_HIERARCHY    = YES
+
+# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 
+# then doxygen will show the dependencies a directory has on other directories 
+# in a graphical way. The dependency relations are determined by the #include 
+# relations between the files in the directories.
+
+DIRECTORY_GRAPH        = YES
+
+# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 
+# generated by dot. Possible values are svg, png, jpg, or gif. 
+# If left blank png will be used. If you choose svg you need to set 
+# HTML_FILE_EXTENSION to xhtml in order to make the SVG files 
+# visible in IE 9+ (other browsers do not have this requirement).
+
+DOT_IMAGE_FORMAT       = png
+
+# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to 
+# enable generation of interactive SVG images that allow zooming and panning. 
+# Note that this requires a modern browser other than Internet Explorer. 
+# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you 
+# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files 
+# visible. Older versions of IE do not have SVG support.
+
+INTERACTIVE_SVG        = NO
+
+# The tag DOT_PATH can be used to specify the path where the dot tool can be 
+# found. If left blank, it is assumed the dot tool can be found in the path.
+
+DOT_PATH               = 
+
+# The DOTFILE_DIRS tag can be used to specify one or more directories that 
+# contain dot files that are included in the documentation (see the 
+# \dotfile command).
+
+DOTFILE_DIRS           = 
+
+# The MSCFILE_DIRS tag can be used to specify one or more directories that 
+# contain msc files that are included in the documentation (see the 
+# \mscfile command).
+
+MSCFILE_DIRS           = 
+
+# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 
+# nodes that will be shown in the graph. If the number of nodes in a graph 
+# becomes larger than this value, doxygen will truncate the graph, which is 
+# visualized by representing a node as a red box. Note that doxygen if the 
+# number of direct children of the root node in a graph is already larger than 
+# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note 
+# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
+
+DOT_GRAPH_MAX_NODES    = 50
+
+# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 
+# graphs generated by dot. A depth value of 3 means that only nodes reachable 
+# from the root by following a path via at most 3 edges will be shown. Nodes 
+# that lay further from the root node will be omitted. Note that setting this 
+# option to 1 or 2 may greatly reduce the computation time needed for large 
+# code bases. Also note that the size of a graph can be further restricted by 
+# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
+
+MAX_DOT_GRAPH_DEPTH    = 0
+
+# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 
+# background. This is disabled by default, because dot on Windows does not 
+# seem to support this out of the box. Warning: Depending on the platform used, 
+# enabling this option may lead to badly anti-aliased labels on the edges of 
+# a graph (i.e. they become hard to read).
+
+DOT_TRANSPARENT        = NO
+
+# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 
+# files in one run (i.e. multiple -o and -T options on the command line). This 
+# makes dot run faster, but since only newer versions of dot (>1.8.10) 
+# support this, this feature is disabled by default.
+
+DOT_MULTI_TARGETS      = NO
+
+# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 
+# generate a legend page explaining the meaning of the various boxes and 
+# arrows in the dot generated graphs.
+
+GENERATE_LEGEND        = YES
+
+# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 
+# remove the intermediate dot files that are used to generate 
+# the various graphs.
+
+DOT_CLEANUP            = YES
diff --git a/doc/external_project_setup.txt b/doc/external_project_setup.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7d67e5a0b78aa36c3e6307018af3b9c070eab807
--- /dev/null
+++ b/doc/external_project_setup.txt
@@ -0,0 +1,53 @@
+When you intend to use Simox with an external project, you can use the following CMakeLists.txt code:
+
+<---- snippet ----->
+
+PROJECT ( DemoProject )
+
+CMAKE_MINIMUM_REQUIRED(VERSION 2.6.0)
+CMAKE_POLICY(VERSION 2.6)
+
+############################# SETUP PATHS TO Simox #############################
+GET_FILENAME_COMPONENT (CurrentPath ${CMAKE_CURRENT_LIST_FILE} PATH)
+
+# Either you set your environment variable or you edit the path here manually
+SET(SIMOX_DIR_STANDARD "$ENV{Simox_DIR}")
+
+# be sure to have the absolute path
+get_filename_component(SIMOX_DIR_STANDARD ${SIMOX_DIR_STANDARD} ABSOLUTE)
+
+SET (SIMOX_DIR ${SIMOX_DIR_STANDARD} CACHE STRING "Path to Simox used by ${PROJECT_NAME}")
+
+# where is the build directory located
+SET (SIMOX_BUILD_DIRECTORY ${SIMOX_DIR}/build CACHE STRING "Path to Simox build directory")
+
+# include simox settings (handles lib search)
+INCLUDE(${SIMOX_DIR}/config.cmake)
+INCLUDE(${SIMOX_DIR}/CMakeModules/SimoxProject.cmake)
+
+# Makes the demo directory available in your code 
+SET(DEMO_BASE_DIR ${PROJECT_SOURCE_DIR})
+ADD_DEFINITIONS(-DDEMO_BASE_DIR="${DEMO_BASE_DIR}")
+
+IF(SIMOX_USE_COIN_VISUALIZATION)
+
+    # Adjust these lines according to your filenames 
+	FILE(GLOB demo_SRCS ${PROJECT_SOURCE_DIR}/demoFile1.cpp ${PROJECT_SOURCE_DIR}/demoFile1.cpp)
+	FILE(GLOB demo_INCS ${PROJECT_SOURCE_DIR}/demoFile1.h)
+	
+	# if you have a Qt-based project, you have to moc the QMainWindow class file
+    set(GUI_MOC_HDRS
+        ${PROJECT_SOURCE_DIR}/demoFile1.h
+    )
+    
+    # When you are using QtDesigner to build the UI, you can specify all .ui files here
+    set(GUI_UIS
+        ${PROJECT_SOURCE_DIR}/demoGuiFile.ui
+    )
+    
+    # pass file lists to simox cmake script: create the executable
+    simox_add_executable(${PROJECT_NAME} "${demo_SRCS}" "${demo_INCS}" "${GUI_MOC_HDRS}" "${GUI_UIS}")
+    
+ENDIF(SIMOX_USE_COIN_VISUALIZATION)
+
+<---- snippet ----->
diff --git a/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger0.wrl b/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger0.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..2428c7e68820cd5296ea1814d05ec8626d168bd9
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger0.wrl
@@ -0,0 +1,58 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            9.3 3.9883 -3.05312, 18.6026 1.87196 3.42929, 19.6667 -5.73321 0.0738245, 9.3 4.01808 2.99649, 
+            13.8 2.85 -4.59238, 5.42929 0.57385 -6.09486, 16.6118 1.88586 -5.39938, 14.5277 -0.318785 -6.40409, 
+            6.64154 -3.33559 -6.4671, 19.4554 1.85331 -1.22175, -2.68684 3.98494 -3.1219, -2.69242 -3.94677 -5.09013, 
+            17.1476 -5.64658 -5.39873, -4.0924 2.41421 5, -4.78005 0.494645 -5.00441, -2.81872 3.97559 3.12797, 
+            8.81761 2.59667 4.99846, 9.0503 -6.27919 4.96095, 7.10544 -8.34624 2.12319, 18.0444 1.85 -4.09924, 
+            6.40289 -8.52186 -1.09504, 9.3 4.62868 -1.25, -0.855692 4.71124 -1.17049e-005, 9.3 4.62868 1.25, 
+            -4.09436 2.41013 -4.99905, 18.5417 -5.73932 3.44435, 6.06758 -7.07848 -3.83577, -1.51048 -4.54625 5.00076, 
+            -4.75183 -1.44984 5.0001
+          ]
+        }
+        coordIndex
+        [
+          0,4,10,-1, 23,1,9,-1, 14,28,13,-1, 22,15,23,-1, 11,14,8,-1, 4,19,6,-1, 
+          12,6,19,-1, 9,21,23,-1, 0,21,4,-1, 19,21,9,-1, 4,21,19,-1, 7,5,6,-1, 
+          24,4,6,-1, 1,2,9,-1, 3,16,1,-1, 3,1,23,-1, 15,3,23,-1, 25,17,18,-1, 
+          5,7,8,-1, 22,10,15,-1, 21,10,22,-1, 10,21,0,-1, 5,8,24,-1, 15,10,24,-1, 
+          1,25,2,-1, 2,25,18,-1, 18,27,20,-1, 3,15,16,-1, 24,10,4,-1, 24,8,14,-1, 
+          24,6,5,-1, 12,8,7,-1, 11,8,26,-1, 26,20,11,-1, 12,19,9,-1, 2,12,9,-1, 
+          11,20,27,-1, 7,6,12,-1, 15,13,16,-1, 14,11,28,-1, 18,20,2,-1, 27,18,17,-1, 
+          20,26,12,-1, 20,12,2,-1, 22,23,21,-1, 25,16,17,-1, 1,16,25,-1, 15,24,13,-1, 
+          24,14,13,-1, 8,12,26,-1, 13,27,16,-1, 28,27,13,-1, 16,27,17,-1, 27,28,11,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger1.wrl b/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger1.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..9a70d3cefcd607e19a0294a4b41b068addc55c18
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger1.wrl
@@ -0,0 +1,55 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            2.2192 -1.46205 5.34979, -19.6441 -5.28709 -3.78109, -30.8529 1.87742 -2.54246, -19.9364 -3.62894 -5.39266, 
+            -8.05585 -6.60576 -1.17649, 0.491578 -4.43815 -4.80975, -9.19446 6.55573 -0.679228, -26.9714 5.45123 -3.7818, 
+            -20.4 2.1 6.15142, -5.39921 6.106 2.4236, -20.2998 -2.46674 6.15496, -29.2791 -3.41232 3.99911, 
+            -2.15617 -4.01914 5.43575, 0.525989 5.11317 -4.2131, -30.2497 0.621677 4.01163, -14.9937 -6.85638 1.62948, 
+            2.76929 2.05108 -6.32904, 1.76771 1.76745 5.30157, -1.38248 3.45838 5.69469, -20.4 1.5 -6.32456, 
+            -20.3118 -1.5 -6.32456, -29.8045 -3.40768 -2.5219, 3.08729 -1.96249 -6.26357, -27.5642 5.48718 3.7292
+          ]
+        }
+        coordIndex
+        [
+          11,21,15,-1, 1,21,3,-1, 2,21,11,-1, 5,0,12,-1, 0,22,16,-1, 19,2,7,-1, 
+          20,2,19,-1, 5,4,1,-1, 6,9,13,-1, 23,14,8,-1, 8,18,23,-1, 15,21,1,-1, 
+          4,15,1,-1, 3,21,20,-1, 2,20,21,-1, 22,0,5,-1, 3,22,5,-1, 10,18,8,-1, 
+          18,12,0,-1, 10,12,18,-1, 17,18,0,-1, 17,0,16,-1, 3,5,1,-1, 23,6,7,-1, 
+          13,7,6,-1, 2,23,7,-1, 11,14,2,-1, 10,14,11,-1, 14,10,8,-1, 13,9,18,-1, 
+          17,13,18,-1, 20,22,3,-1, 4,5,12,-1, 7,16,19,-1, 13,16,7,-1, 9,6,23,-1, 
+          17,16,13,-1, 15,10,11,-1, 12,10,15,-1, 14,23,2,-1, 12,15,4,-1, 19,16,22,-1, 
+          19,22,20,-1, 18,9,23,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger2.wrl b/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger2.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..70c444100f7c2d6bdfe7afd2896995b23f34de62
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFinger2.wrl
@@ -0,0 +1,57 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            -25.1278 -4.41902 -2.71783, -27.1786 0.105783 3.95587, 2.5 -2.48651e-015 5.3, -16.825 -2.82235 6.05044, 
+            -5.98648 -1.83227 6.34616, -7.2382 1.38009 6.53662, -26.3324 3.00904 -2.61566, -22.6521 6.16614 -2.37741, 
+            3.0129 -3.29333 -5.65607, 1.76491 -1.77049 5.30405, -5.5 6.47728 -0.541803, -22.1056 6.3092 1.85135, 
+            0.655306 -5.25922 -3.9762, 3.11767 2.24965 -6.28365, -5.53454 6.06833 2.48327, 1.7675 1.76653 5.30485, 
+            -20.5 4.59239 -4.6, -2.69487 4.09944 5.1886, -16.5 2.1 6.15142, -14.9402 -2.57676 -6.33384, 
+            -16.5 1.5 -6.32456, -16.5 -1.5 -6.32456, -16.5 -5.5 -3.4641, -16.5 -5.5 3.4641, 
+            0.589753 5.63126 -3.67068, -24.9462 -4.46657 4.00025, -6.50087 -5.45955 3.73397, -24.2 5.12348 4
+          ]
+        }
+        coordIndex
+        [
+          18,3,5,-1, 3,18,1,-1, 6,7,16,-1, 3,1,25,-1, 16,13,20,-1, 18,27,1,-1, 
+          21,6,20,-1, 0,6,21,-1, 20,6,16,-1, 3,25,23,-1, 1,6,0,-1, 27,6,1,-1, 
+          7,6,11,-1, 27,11,6,-1, 13,16,24,-1, 10,24,7,-1, 13,24,15,-1, 13,2,8,-1, 
+          13,15,2,-1, 4,9,2,-1, 2,5,4,-1, 5,2,15,-1, 19,13,8,-1, 2,9,8,-1, 
+          12,8,9,-1, 9,26,12,-1, 3,4,5,-1, 7,11,10,-1, 24,17,15,-1, 22,19,12,-1, 
+          9,4,26,-1, 26,4,3,-1, 3,23,26,-1, 10,14,24,-1, 14,17,24,-1, 11,14,10,-1, 
+          15,17,5,-1, 19,0,21,-1, 0,19,22,-1, 12,19,8,-1, 16,7,24,-1, 27,14,11,-1, 
+          18,17,27,-1, 5,17,18,-1, 25,1,0,-1, 13,19,20,-1, 20,19,21,-1, 23,22,26,-1, 
+          12,26,22,-1, 23,0,22,-1, 23,25,0,-1, 17,14,27,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFingerTip.wrl b/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFingerTip.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..570bc187939e037b0e23e6f604486c3ed877cef5
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/col_LeftIndexFingerTip.wrl
@@ -0,0 +1,71 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            1.28504 2.22353 -5.33418, 0.5 -5.76628 3, 1.55114 -1.99116 -5.33707, 2.50035 0.34543 -5.30008, 
+            2.37769 -0.772293 -5.3, 1.53403 -4.69917 4.56572, -13.6928 -3.32892 6.97592, -14.0046 1.78102 6.26928, 
+            -2.3755 1.57054 6.31576, -9.27623 5.52885 -3.52931, -15.7562 4.65845 -4.43239, -5.53791 1.08799 -6.41748, 
+            -5.45091 3.04029 -5.76914, -10.7666 3.29713 5.64549, -9.5 -5.1 6.39814, -22.672 2.06132 3.50027, 
+            -21.8939 4.40652 1.91845, -18.5852 6.13474 0.128376, -24.6716 -3.94652 -0.924471, -22.4537 -3.20508 -4.74753, 
+            -18.0055 2.36619 -5.77732, -12.2262 1.90426 -6.2603, -19.344 5.49972 -2.155, -3.5 -4.78435 -4.4, 
+            -18.1786 -3.69106 -6.68459, -9.47941 -5.84846 5.71792, -23.0721 -3.41279 4.28377, -23.6246 2.53112 -1.57795, 
+            -22.4197 -6.09836 -2.5875, -18.7485 -6.39776 -3.74203, -9.61859 -6.15635 -5.38267, -21.2712 2.41981 -4.57322, 
+            -9.78274 -3.45684 -7.03956, 0.815164 5.13999 4.08023, -19.7763 2.01163 5.38312, -16.7051 4.66584 4.29515, 
+            -19.2989 -3.23226 6.30351, -9.8712 -4.95515 -6.63927, -13.405 5.90854 2.74383, -9.13842 6.4152 1.31324, 
+            -15.2761 -5.11486 6.10779, -22.0753 -6.05629 3.10001, 1.5 -4.76628 3, 3.04709 -2.45043 5.97199, 
+            3.05515 2.6702 5.97195, 2.7 3 3, 3 -1.5 6.32456, -9.25167 6.43464 -1.45264, 
+            0.5 5.2 3, -20.6148 -6.49995 3.22381, -4.93072 -6.49578 -0.400094, -9.52994 -6.456 4.35756
+          ]
+        }
+        coordIndex
+        [
+          45,0,48,-1, 1,23,2,-1, 42,4,43,-1, 46,8,6,-1, 5,43,14,-1, 1,50,23,-1, 
+          30,23,50,-1, 48,44,45,-1, 33,44,48,-1, 2,4,42,-1, 1,2,42,-1, 47,48,0,-1, 
+          9,0,12,-1, 40,14,6,-1, 46,6,14,-1, 42,5,1,-1, 46,14,43,-1, 51,50,1,-1, 
+          21,11,32,-1, 3,11,0,-1, 44,3,45,-1, 45,3,0,-1, 0,11,12,-1, 0,9,47,-1, 
+          46,44,8,-1, 1,25,51,-1, 5,25,1,-1, 28,29,49,-1, 22,16,17,-1, 16,22,27,-1, 
+          2,32,4,-1, 37,32,2,-1, 4,32,3,-1, 11,3,32,-1, 44,43,3,-1, 4,3,43,-1, 
+          8,7,6,-1, 44,13,8,-1, 7,8,13,-1, 5,14,25,-1, 15,26,34,-1, 34,26,36,-1, 
+          41,18,28,-1, 24,28,19,-1, 22,47,10,-1, 9,12,10,-1, 47,9,10,-1, 34,36,7,-1, 
+          6,36,40,-1, 27,22,31,-1, 16,27,15,-1, 31,19,27,-1, 28,18,19,-1, 27,19,18,-1, 
+          10,12,21,-1, 38,35,33,-1, 13,33,35,-1, 33,13,44,-1, 7,35,34,-1, 34,16,15,-1, 
+          21,12,11,-1, 25,40,49,-1, 40,25,14,-1, 36,6,7,-1, 47,22,17,-1, 17,16,35,-1, 
+          47,17,39,-1, 15,18,26,-1, 27,18,15,-1, 26,41,36,-1, 40,36,41,-1, 50,49,30,-1, 
+          20,24,31,-1, 29,24,37,-1, 31,22,10,-1, 31,10,20,-1, 10,21,20,-1, 30,29,37,-1, 
+          23,30,2,-1, 2,30,37,-1, 24,20,21,-1, 17,38,39,-1, 28,24,29,-1, 49,51,25,-1, 
+          49,29,30,-1, 31,24,19,-1, 37,24,32,-1, 24,21,32,-1, 13,35,7,-1, 39,38,33,-1, 
+          35,16,34,-1, 35,38,17,-1, 41,26,18,-1, 49,41,28,-1, 41,49,40,-1, 42,43,5,-1, 
+          43,44,46,-1, 39,33,47,-1, 48,47,33,-1, 51,49,50,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger0.iv b/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger0.iv
new file mode 100644
index 0000000000000000000000000000000000000000..cf374a1851a0537a1c80cb2e95083349b2d83b29
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger0.iv
@@ -0,0 +1,20 @@
+#Inventor V2.1 ascii
+
+Separator {
+
+
+	Transform {
+		translation 0 0 0
+		rotation 0 1 0 0
+	}
+
+	Transform {
+		translation 0 0 0
+		rotation 1 0 0 0
+	}
+
+	Separator 
+	{
+		File {name col_LeftIndexFinger0.wrl }
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger1.iv b/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger1.iv
new file mode 100644
index 0000000000000000000000000000000000000000..5ed6dbca2e8ef0cc2048eead969ad6da4c0d5be1
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger1.iv
@@ -0,0 +1,20 @@
+#Inventor V2.1 ascii
+
+Separator {
+
+
+	Transform {
+		translation 0 0 0
+		rotation 0 1 0 3.14
+	}
+
+	Transform {
+		translation 0 0 0
+		rotation 1 0 0 3.14
+	}
+
+	Separator 
+	{
+		File {name col_LeftIndexFinger1.wrl }
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger2.iv b/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger2.iv
new file mode 100644
index 0000000000000000000000000000000000000000..ec7161b0436fec94ce5dd684de25d19ae5573047
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFinger2.iv
@@ -0,0 +1,20 @@
+#Inventor V2.1 ascii
+
+Separator {
+
+
+	Transform {
+		translation 0 0 0
+		rotation 0 1 0 3.14
+	}
+
+	Transform {
+		translation 0 0 0
+		rotation 1 0 0 3.14
+	}
+
+	Separator 
+	{
+		File {name col_LeftIndexFinger2.wrl }
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFingerTip.iv b/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFingerTip.iv
new file mode 100644
index 0000000000000000000000000000000000000000..0ea9816458b5861f3f41b854b698009e769f9935
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/col_leftIndexFingerTip.iv
@@ -0,0 +1,20 @@
+#Inventor V2.1 ascii
+
+Separator {
+
+
+	Transform {
+		translation 0 0 0
+		rotation 0 1 0 3.14
+	}
+
+	Transform {
+		translation 0 0 0
+		rotation 1 0 0 0
+	}
+
+	Separator 
+	{
+		File {name col_LeftIndexFingerTip.wrl }
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger0.wrl b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger0.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..9a6d79d2a22f9ffe059166b0950f6aad34f10f2a
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger0.wrl
@@ -0,0 +1,1204 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            -2.3574 4.12366 2.7839, 9.3 4.62868 1.25, -1.06671 4.62868 1.25, 4.55 4.05 1.25, 
+            -1.06671 4.62868 1.25, 9.3 4.62868 1.25, -2.6458 3.94485 1.25, -2.3574 4.12366 2.7839, 
+            -1.06671 4.62868 1.25, -0.8 2.22045e-016 1.25, -1.69251 -4.43819 1.25, -1.06671 4.62868 1.25, 
+            -1.58477 2.06655 1.25, -1.06671 4.62868 1.25, -1.69251 -4.43819 1.25, -2.2981 3.0481 1.25, 
+            -2.6458 3.94485 1.25, -1.06671 4.62868 1.25, -0.246983 0.760882 1.25, -1.06671 4.62868 1.25, 
+            4.55 4.05 1.25, -0.647216 0.470087 1.25, -0.8 2.22045e-016 1.25, -1.06671 4.62868 1.25, 
+            -0.246983 0.760882 1.25, -0.647216 0.470087 1.25, -1.06671 4.62868 1.25, -1.85739 2.90486 1.25, 
+            -2.2981 3.0481 1.25, -1.06671 4.62868 1.25, -1.58477 2.52964 1.25, -1.85739 2.90486 1.25, 
+            -1.06671 4.62868 1.25, -1.58477 2.06655 1.25, -1.58477 2.52964 1.25, -1.06671 4.62868 1.25, 
+            -2.3574 4.12366 2.7839, 9.3 4.01808 2.99649, 9.3 4.62868 1.25, 9.3 4.05 1.25, 
+            9.3 4.62868 1.25, 9.3 4.01808 2.99649, 4.55 4.05 1.25, 9.3 4.62868 1.25, 
+            9.3 4.05 1.25, -1.94721 2.96096 4.47849, 9.3 2.94042 4.5, 9.3 4.01808 2.99649, 
+            9.3 3.83792 1.16208, 9.3 4.01808 2.99649, 9.3 2.94042 4.5, -2.2981 3.0481 4.385, 
+            -1.94721 2.96096 4.47849, 9.3 4.01808 2.99649, -3.37963 3.3377 4.0454, -2.2981 3.0481 4.385, 
+            9.3 4.01808 2.99649, -2.3574 4.12366 2.7839, -3.37963 3.3377 4.0454, 9.3 4.01808 2.99649, 
+            9.3 3.83792 1.16208, 9.3 4.05 1.25, 9.3 4.01808 2.99649, 8.8 2.40331 5, 
+            9.3 2.94042 4.5, 9.03969 2.67599 4.76031, -1.68253 2.72649 4.71286, 9.03969 2.67599 4.76031, 
+            9.3 2.94042 4.5, 8.8 -5.90331 5, 9.3 2.94042 4.5, 8.8 2.40331 5, 
+            -1.94721 2.96096 4.47849, -1.68253 2.72649 4.71286, 9.3 2.94042 4.5, 9.03967 -6.17598 4.76032, 
+            9.3 2.94042 4.5, 8.8 -5.90331 5, 9.3 -6.44042 4.5, 9.3 2.94042 4.5, 
+            9.03967 -6.17598 4.76032, 9.3 1.85 3.5, 9.3 2.94042 4.5, 9.3 -6.44042 4.5, 
+            9.3 2.85 -2.5, 9.3 3.9883 -3.05312, 9.3 2.94042 4.5, 9.3 3.75 -0.95, 
+            9.3 2.94042 4.5, 9.3 3.9883 -3.05312, 9.3 1.85 3.5, 9.3 2.85 -2.5, 
+            9.3 2.94042 4.5, 9.3 3.75 0.95, 9.3 3.83792 1.16208, 9.3 2.94042 4.5, 
+            9.3 3.75 -0.95, 9.3 3.75 0.95, 9.3 2.94042 4.5, 3.28091 2.40331 5, 
+            8.8 2.40331 5, 9.03969 2.67599 4.76031, 3.19912 2.41967 4.98636, 3.28091 2.40331 5, 
+            9.03969 2.67599 4.76031, 3.11769 2.425 4.9819, 3.19912 2.41967 4.98636, 9.03969 2.67599 4.76031, 
+            -1.55551 2.40331 5, 3.11769 2.425 4.9819, 9.03969 2.67599 4.76031, -1.68253 2.72649 4.71286, 
+            -1.55551 2.40331 5, 9.03969 2.67599 4.76031, 3.48269 2.30728 5, 8.8 2.40331 5, 
+            3.28091 2.40331 5, 3.63805 2.14612 5, 8.8 -5.90331 5, 8.8 2.40331 5, 
+            3.48269 2.30728 5, 3.63805 2.14612 5, 8.8 2.40331 5, 3.48495 2.30564 1.25, 
+            3.28091 2.40331 5, 3.19912 2.41967 4.98636, 3.48495 2.30564 1.25, 3.48269 2.30728 5, 
+            3.28091 2.40331 5, 3.48495 2.30564 1.25, 3.19912 2.41967 4.98636, 3.11769 2.425 4.9819, 
+            -1.55551 2.40331 5, 3.03654 2.41971 4.98633, 3.11769 2.425 4.9819, 3.11769 2.425 1.25, 
+            3.11769 2.425 4.9819, 3.03654 2.41971 4.98633, 3.48495 2.30564 1.25, 3.11769 2.425 4.9819, 
+            3.11769 2.425 1.25, -1.55551 2.40331 5, 2.95447 2.40331 5, 3.03654 2.41971 4.98633, 
+            3.11769 2.425 1.25, 3.03654 2.41971 4.98633, 2.95447 2.40331 5, 2.7527 2.30728 5, 
+            2.95447 2.40331 5, -1.55551 2.40331 5, 3.11769 2.425 1.25, 2.95447 2.40331 5, 
+            2.7527 2.30728 5, -1.58477 2.52964 1.25, -1.55551 2.40331 5, -1.68253 2.72649 4.71286, 
+            -0.958536 0.696682 5, -1.55551 2.40331 5, -1.185 2.22045e-016 5, -1.61627 1.98578 5, 
+            -1.185 2.22045e-016 5, -1.55551 2.40331 5, -0.366063 1.12697 5, 0.366063 1.12697 5, 
+            -1.55551 2.40331 5, 2.4982 1.71768 5, -1.55551 2.40331 5, 0.366063 1.12697 5, 
+            -0.958536 0.696682 5, -0.366063 1.12697 5, -1.55551 2.40331 5, 2.59733 2.14612 5, 
+            2.7527 2.30728 5, -1.55551 2.40331 5, 2.50885 1.94115 5, 2.59733 2.14612 5, 
+            -1.55551 2.40331 5, 2.4982 1.71768 5, 2.50885 1.94115 5, -1.55551 2.40331 5, 
+            -1.58477 2.06655 1.25, -1.61627 1.98578 5, -1.55551 2.40331 5, -1.58477 2.06655 1.25, 
+            -1.55551 2.40331 5, -1.58477 2.52964 1.25, -1.85739 2.90486 1.25, -1.68253 2.72649 4.71286, 
+            -1.94721 2.96096 4.47849, -1.58477 2.52964 1.25, -1.68253 2.72649 4.71286, -1.85739 2.90486 1.25, 
+            -1.85739 2.90486 1.25, -1.94721 2.96096 4.47849, -2.2981 3.0481 4.385, -3.37963 3.3377 4.0454, 
+            -2.65693 2.95668 4.48299, -2.2981 3.0481 4.385, -2.2981 3.0481 1.25, -2.2981 3.0481 4.385, 
+            -2.65693 2.95668 4.48299, -1.85739 2.90486 1.25, -2.2981 3.0481 4.385, -2.2981 3.0481 1.25, 
+            -4.09714 2.40331 5, -2.91738 2.72115 4.71793, -2.65693 2.95668 4.48299, -2.7388 2.90486 1.25, 
+            -2.65693 2.95668 4.48299, -2.91738 2.72115 4.71793, -3.37963 3.3377 4.0454, -4.09714 2.40331 5, 
+            -2.65693 2.95668 4.48299, -2.7388 2.90486 1.25, -2.2981 3.0481 1.25, -2.65693 2.95668 4.48299, 
+            -4.09714 2.40331 5, -3.04068 2.40331 5, -2.91738 2.72115 4.71793, -3.01142 2.52964 1.25, 
+            -2.91738 2.72115 4.71793, -3.04068 2.40331 5, -2.7388 2.90486 1.25, -2.91738 2.72115 4.71793, 
+            -3.01142 2.52964 1.25, -3.23274 0.505638 5, -3.04068 2.40331 5, -4.09714 2.40331 5, 
+            -3.23274 0.505638 5, -3.00556 0.192956 5, -3.04068 2.40331 5, -2.97992 1.98578 5, 
+            -3.04068 2.40331 5, -3.00556 0.192956 5, -3.01142 2.06655 1.25, -3.04068 2.40331 5, 
+            -2.97992 1.98578 5, -3.01142 2.52964 1.25, -3.04068 2.40331 5, -3.01142 2.06655 1.25, 
+            -3.87805 2.74271 1.25, -4.09714 2.40331 5, -3.37963 3.3377 4.0454, -3.87805 2.74271 1.25, 
+            -4.60097 1.18032 1.25, -4.09714 2.40331 5, -4.67287 0.852368 5, -4.09714 2.40331 5, 
+            -4.60097 1.18032 1.25, -4.19444 0.192956 5, -4.09714 2.40331 5, -4.67287 0.852368 5, 
+            -3.96726 0.505638 5, -3.6 0.625 5, -4.09714 2.40331 5, -3.23274 0.505638 5, 
+            -4.09714 2.40331 5, -3.6 0.625 5, -4.19444 0.192956 5, -3.96726 0.505638 5, 
+            -4.09714 2.40331 5, -2.6458 3.94485 1.25, -3.37963 3.3377 4.0454, -2.3574 4.12366 2.7839, 
+            -2.6458 3.94485 1.25, -3.87805 2.74271 1.25, -3.37963 3.3377 4.0454, 9.3 3.9883 -3.05312, 
+            -1.06671 4.62868 -1.25, 9.3 4.62868 -1.25, 9.3 4.05 -1.25, 9.3 4.62868 -1.25, 
+            -1.06671 4.62868 -1.25, 9.3 4.05 -1.25, 9.3 3.9883 -3.05312, 9.3 4.62868 -1.25, 
+            9.3 3.9883 -3.05312, -2.35741 4.12366 -2.78391, -1.06671 4.62868 -1.25, -2.6458 3.94485 -1.25, 
+            -1.06671 4.62868 -1.25, -2.35741 4.12366 -2.78391, 4.55 4.05 -1.25, 9.3 4.05 -1.25, 
+            -1.06671 4.62868 -1.25, 0.647216 0.470087 -1.25, 4.55 -4.75 -1.25, -1.06671 4.62868 -1.25, 
+            4.55 4.05 -1.25, -1.06671 4.62868 -1.25, 4.55 -4.75 -1.25, -1.85739 2.90486 -1.25, 
+            -1.06671 4.62868 -1.25, -2.6458 3.94485 -1.25, -0.647216 0.470087 -1.25, -1.06671 4.62868 -1.25, 
+            -0.8 2.22045e-016 -1.25, -1.58477 2.52964 -1.25, -0.8 2.22045e-016 -1.25, -1.06671 4.62868 -1.25, 
+            0.246983 0.760882 -1.25, 0.647216 0.470087 -1.25, -1.06671 4.62868 -1.25, -0.246983 0.760882 -1.25, 
+            0.246983 0.760882 -1.25, -1.06671 4.62868 -1.25, -0.647216 0.470087 -1.25, -0.246983 0.760882 -1.25, 
+            -1.06671 4.62868 -1.25, -1.85739 2.90486 -1.25, -1.58477 2.52964 -1.25, -1.06671 4.62868 -1.25, 
+            9.3 3.9883 -3.05312, -3.37965 3.33767 -4.04544, -2.35741 4.12366 -2.78391, -2.6458 3.94485 -1.25, 
+            -2.35741 4.12366 -2.78391, -3.37965 3.33767 -4.04544, -3.04068 2.40331 -5, -4.09714 2.40331 -5, 
+            -3.37965 3.33767 -4.04544, -3.87805 2.74271 -1.25, -3.37965 3.33767 -4.04544, -4.09714 2.40331 -5, 
+            -2.91221 2.72842 -4.71102, -3.04068 2.40331 -5, -3.37965 3.33767 -4.04544, -2.64092 2.96519 -4.47404, 
+            -2.91221 2.72842 -4.71102, -3.37965 3.33767 -4.04544, -2.2981 3.0481 -4.385, -2.64092 2.96519 -4.47404, 
+            -3.37965 3.33767 -4.04544, 9.3 2.85 -4.59238, -2.2981 3.0481 -4.385, -3.37965 3.33767 -4.04544, 
+            9.3 3.9883 -3.05312, 9.3 2.85 -4.59238, -3.37965 3.33767 -4.04544, -3.87805 2.74271 -1.25, 
+            -2.6458 3.94485 -1.25, -3.37965 3.33767 -4.04544, -3.06148 -3.6317 -5, -4.09714 2.40331 -5, 
+            -3.04068 2.40331 -5, -4.1218 -2.36062 -5, -4.09714 2.40331 -5, -3.06148 -3.6317 -5, 
+            -4.67293 0.852079 -5, -4.09714 2.40331 -5, -4.1218 -2.36062 -5, -4.60097 1.18032 -1.25, 
+            -4.09714 2.40331 -5, -4.67293 0.852079 -5, -4.60097 1.18032 -1.25, -3.87805 2.74271 -1.25, 
+            -4.09714 2.40331 -5, -3.01142 2.52964 -1.25, -3.04068 2.40331 -5, -2.91221 2.72842 -4.71102, 
+            -2.97992 1.98578 -5, -3.06148 -3.6317 -5, -3.04068 2.40331 -5, -3.01142 2.06655 -1.25, 
+            -2.97992 1.98578 -5, -3.04068 2.40331 -5, -3.01142 2.06655 -1.25, -3.04068 2.40331 -5, 
+            -3.01142 2.52964 -1.25, -2.7388 2.90486 -1.25, -2.91221 2.72842 -4.71102, -2.64092 2.96519 -4.47404, 
+            -3.01142 2.52964 -1.25, -2.91221 2.72842 -4.71102, -2.7388 2.90486 -1.25, -2.7388 2.90486 -1.25, 
+            -2.64092 2.96519 -4.47404, -2.2981 3.0481 -4.385, 9.3 2.85 -4.59238, -1.95805 2.9666 -4.47255, 
+            -2.2981 3.0481 -4.385, -2.2981 3.0481 -1.25, -2.2981 3.0481 -4.385, -1.95805 2.9666 -4.47255, 
+            -2.7388 2.90486 -1.25, -2.2981 3.0481 -4.385, -2.2981 3.0481 -1.25, 9.3 2.85 -4.59238, 
+            -1.68521 2.73014 -4.70939, -1.95805 2.9666 -4.47255, -1.85739 2.90486 -1.25, -1.95805 2.9666 -4.47255, 
+            -1.68521 2.73014 -4.70939, -1.85739 2.90486 -1.25, -2.2981 3.0481 -1.25, -1.95805 2.9666 -4.47255, 
+            6.49832 2.40331 -5, -1.55551 2.40331 -5, -1.68521 2.73014 -4.70939, -1.58477 2.52964 -1.25, 
+            -1.68521 2.73014 -4.70939, -1.55551 2.40331 -5, 13.8 2.37043 -5.02713, 6.49832 2.40331 -5, 
+            -1.68521 2.73014 -4.70939, 9.3 2.85 -4.59238, 13.8 2.37043 -5.02713, -1.68521 2.73014 -4.70939, 
+            -1.85739 2.90486 -1.25, -1.68521 2.73014 -4.70939, -1.58477 2.52964 -1.25, -0.366063 1.12697 -5, 
+            -1.55551 2.40331 -5, 6.49832 2.40331 -5, -1.185 2.22045e-016 -5, -1.62952 -4.46172 -5, 
+            -1.55551 2.40331 -5, -1.61627 1.98578 -5, -1.55551 2.40331 -5, -1.62952 -4.46172 -5, 
+            -0.958536 0.696682 -5, -1.185 2.22045e-016 -5, -1.55551 2.40331 -5, -0.366063 1.12697 -5, 
+            -0.958536 0.696682 -5, -1.55551 2.40331 -5, -1.58477 2.06655 -1.25, -1.55551 2.40331 -5, 
+            -1.61627 1.98578 -5, -1.58477 2.52964 -1.25, -1.55551 2.40331 -5, -1.58477 2.06655 -1.25, 
+            6.49832 0.458339 -6.11331, 6.49832 2.40331 -5, 6.49832 1.47931 -5.64104, 13.8 1.85 -5.41202, 
+            6.49832 1.47931 -5.64104, 6.49832 2.40331 -5, 6.49832 -0.628985 -6.40253, 6.49832 2.40331 -5, 
+            6.49832 0.458339 -6.11331, 6.49832 -1.75 -6.49991, 6.49832 2.40331 -5, 6.49832 -0.628985 -6.40253, 
+            6.49832 -2.87101 -6.40253, 6.49832 2.40331 -5, 6.49832 -1.75 -6.49991, 6.49832 -3.95834 -6.11331, 
+            6.49832 2.40331 -5, 6.49832 -2.87101 -6.40253, 6.49832 -4.97931 -5.64104, 6.49832 2.40331 -5, 
+            6.49832 -3.95834 -6.11331, 6.49832 -5.90331 -5, 6.49832 2.40331 -5, 6.49832 -4.97931 -5.64104, 
+            5.8 -5.90331 -5, 6.49832 2.40331 -5, 6.49832 -5.90331 -5, 5.8 -5.75 -5, 
+            6.49832 2.40331 -5, 5.8 -5.90331 -5, 13.8 2.37043 -5.02713, 13.8 1.85 -5.41202, 
+            6.49832 2.40331 -5, 5.66605 -5.25014 -5, 6.49832 2.40331 -5, 5.8 -5.75 -5, 
+            1.185 2.22045e-016 -5, 6.49832 2.40331 -5, 4.8 -4.75 -5, 5.29986 -4.88394 -5, 
+            4.8 -4.75 -5, 6.49832 2.40331 -5, 0.366063 1.12697 -5, -0.366063 1.12697 -5, 
+            6.49832 2.40331 -5, 0.958536 0.696682 -5, 0.366063 1.12697 -5, 6.49832 2.40331 -5, 
+            1.185 2.22045e-016 -5, 0.958536 0.696682 -5, 6.49832 2.40331 -5, 5.66605 -5.25014 -5, 
+            5.29986 -4.88394 -5, 6.49832 2.40331 -5, 15.1838 0.433765 -6.12219, 6.49832 0.458339 -6.11331, 
+            6.49832 1.47931 -5.64104, 13.8 1.85 -5.41202, 15.1838 0.433765 -6.12219, 6.49832 1.47931 -5.64104, 
+            15.1838 0.433765 -6.12219, 6.49832 -0.628985 -6.40253, 6.49832 0.458339 -6.11331, 9.3 -1.15 -6.47225, 
+            6.49832 -1.75 -6.49991, 6.49832 -0.628985 -6.40253, 13.6 -1.15 -6.47225, 9.3 -1.15 -6.47225, 
+            6.49832 -0.628985 -6.40253, 15.1838 0.433765 -6.12219, 13.6 -1.15 -6.47225, 6.49832 -0.628985 -6.40253, 
+            9.3 -2.4645 -6.46056, 6.49832 -2.87101 -6.40253, 6.49832 -1.75 -6.49991, 9.3 -1.15 -6.47225, 
+            9.3 -2.4645 -6.46056, 6.49832 -1.75 -6.49991, 9.3 -3.75 -6.18466, 6.49832 -3.95834 -6.11331, 
+            6.49832 -2.87101 -6.40253, 9.3 -2.4645 -6.46056, 9.3 -3.75 -6.18466, 6.49832 -2.87101 -6.40253, 
+            16.0937 -4.84393 -5.71643, 6.49832 -4.97931 -5.64104, 6.49832 -3.95834 -6.11331, 9.3 -3.75 -6.18466, 
+            16.0937 -4.84393 -5.71643, 6.49832 -3.95834 -6.11331, 9.3 -5.75 -5.12348, 6.49832 -5.90331 -5, 
+            6.49832 -4.97931 -5.64104, 17 -5.75 -5.12348, 9.3 -5.75 -5.12348, 6.49832 -4.97931 -5.64104, 
+            16.0937 -4.84393 -5.71643, 17 -5.75 -5.12348, 6.49832 -4.97931 -5.64104, 9.3 -7.04611 -3.76846, 
+            5.8 -5.90331 -5, 6.49832 -5.90331 -5, 9.3 -5.75 -5.12348, 9.3 -7.04611 -3.76846, 
+            6.49832 -5.90331 -5, 9.3 -7.04611 -3.76846, 5.8 -7.1687 -3.58995, 5.8 -5.90331 -5, 
+            5.8 -5.75 -5, 5.8 -5.90331 -5, 5.8 -7.1687 -3.58995, 7.25108 -7.96622 -1.89963, 
+            5.8 -7.97379 -1.8747, 5.8 -7.1687 -3.58995, 5.8 -5.75 -5, 5.8 -7.1687 -3.58995, 
+            5.8 -7.97379 -1.8747, 8 -7.90142 -2.1, 7.25108 -7.96622 -1.89963, 5.8 -7.1687 -3.58995, 
+            9.3 -7.90142 -2.1, 8 -7.90142 -2.1, 5.8 -7.1687 -3.58995, 9.3 -7.04611 -3.76846, 
+            9.3 -7.90142 -2.1, 5.8 -7.1687 -3.58995, 6.5 -8.25 -1.22124e-015, 5.8 -8.25 8.88185e-016, 
+            5.8 -7.97379 -1.8747, 5.8 -5.75 -5, 5.8 -7.97379 -1.8747, 5.8 -8.25 8.88185e-016, 
+            6.5 -8.22225 -0.6, 6.5 -8.25 -1.22124e-015, 5.8 -7.97379 -1.8747, 6.55214 -8.17388 -0.991829, 
+            6.5 -8.22225 -0.6, 5.8 -7.97379 -1.8747, 6.70423 -8.10709 -1.35553, 6.55214 -8.17388 -0.991829, 
+            5.8 -7.97379 -1.8747, 7.25108 -7.96622 -1.89963, 6.70423 -8.10709 -1.35553, 5.8 -7.97379 -1.8747, 
+            6.71442 -8.10338 1.3728, 5.8 -7.97379 1.8747, 5.8 -8.25 8.88185e-016, 5.8 -5.75 6.12323e-021, 
+            5.8 -8.25 8.88185e-016, 5.8 -7.97379 1.8747, 6.557 -8.17107 1.00986, 6.71442 -8.10338 1.3728, 
+            5.8 -8.25 8.88185e-016, 6.5 -8.22225 0.6, 6.557 -8.17107 1.00986, 5.8 -8.25 8.88185e-016, 
+            6.5 -8.25 -1.22124e-015, 6.5 -8.22225 0.6, 5.8 -8.25 8.88185e-016, 5.8 -5.75 -5, 
+            5.8 -8.25 8.88185e-016, 5.8 -5.75 6.12323e-021, 9.3 -7.30199 3.38014, 5.8 -7.1687 3.58995, 
+            5.8 -7.97379 1.8747, 5.8 -5.75 6.12323e-021, 5.8 -7.97379 1.8747, 5.8 -7.1687 3.58995, 
+            8 -7.90142 2.1, 9.3 -7.30199 3.38014, 5.8 -7.97379 1.8747, 7.25934 -7.96478 1.90435, 
+            8 -7.90142 2.1, 5.8 -7.97379 1.8747, 6.71442 -8.10338 1.3728, 7.25934 -7.96478 1.90435, 
+            5.8 -7.97379 1.8747, 8.8 -5.90331 5, 5.8 -5.90331 5, 5.8 -7.1687 3.58995, 
+            5.8 -5.75 6.12323e-021, 5.8 -7.1687 3.58995, 5.8 -5.90331 5, 9.03967 -6.17598 4.76032, 
+            8.8 -5.90331 5, 5.8 -7.1687 3.58995, 9.3 -6.44042 4.5, 9.03967 -6.17598 4.76032, 
+            5.8 -7.1687 3.58995, 9.3 -7.30199 3.38014, 9.3 -6.44042 4.5, 5.8 -7.1687 3.58995, 
+            5.8 -5.75 5, 5.8 -5.90331 5, 8.8 -5.90331 5, 5.8 -5.75 5, 
+            5.8 -5.75 6.12323e-021, 5.8 -5.90331 5, 5.66605 -5.25014 5, 5.8 -5.75 5, 
+            8.8 -5.90331 5, 3.63805 2.14612 5, 3.72653 1.94115 5, 8.8 -5.90331 5, 
+            5.66605 -5.25014 5, 8.8 -5.90331 5, 3.72653 1.94115 5, 9.3 -5.75 2.1, 
+            9.3 -6.44042 4.5, 9.3 -7.30199 3.38014, 9.3 -5.75 3.5, 9.3 -6.44042 4.5, 
+            9.3 -5.75 2.1, 9.3 -3.75 3.5, 9.3 -6.44042 4.5, 9.3 -5.75 3.5, 
+            9.3 -2.80339 3.70365, 9.3 -6.44042 4.5, 9.3 -2.95 3.35, 9.3 -3.75 3.5, 
+            9.3 -2.95 3.35, 9.3 -6.44042 4.5, 9.3 -2.80339 3.70365, 9.3 -2.45 3.84992, 
+            9.3 -6.44042 4.5, 9.3 1.85 3.5, 9.3 -6.44042 4.5, 9.3 -2.45 3.84992, 
+            8 -7.90142 2.1, 9.3 -7.90142 2.1, 9.3 -7.30199 3.38014, 9.3 -5.75 2.1, 
+            9.3 -7.30199 3.38014, 9.3 -7.90142 2.1, 9.3 -5.75 2.1, 9.3 -7.90142 2.1, 
+            8 -7.90142 2.1, 8 -4.95 2.1, 8 -7.90142 2.1, 7.25934 -7.96478 1.90435, 
+            8 -4.95 2.1, 9.3 -5.75 2.1, 8 -7.90142 2.1, 7.25 -4.95 1.89904, 
+            7.25934 -7.96478 1.90435, 6.71442 -8.10338 1.3728, 8 -4.95 2.1, 7.25934 -7.96478 1.90435, 
+            7.25 -4.95 1.89904, 6.70096 -4.95 1.35, 6.71442 -8.10338 1.3728, 6.557 -8.17107 1.00986, 
+            7.25 -4.95 1.89904, 6.71442 -8.10338 1.3728, 6.70096 -4.95 1.35, 6.70096 -4.95 1.35, 
+            6.557 -8.17107 1.00986, 6.5 -8.22225 0.6, 6.5 -8.22225 -0.6, 6.5 -8.22225 0.6, 
+            6.5 -8.25 -1.22124e-015, 6.5 -4.95 -0.6, 6.5 -8.22225 0.6, 6.5 -8.22225 -0.6, 
+            6.70096 -4.95 1.35, 6.5 -8.22225 0.6, 6.5 -4.95 0.6, 6.5 -4.95 -0.6, 
+            6.5 -4.95 0.6, 6.5 -8.22225 0.6, 6.5 -4.95 -0.6, 6.5 -8.22225 -0.6, 
+            6.55214 -8.17388 -0.991829, 6.70096 -4.95 -1.35, 6.55214 -8.17388 -0.991829, 6.70423 -8.10709 -1.35553, 
+            6.5 -4.95 -0.6, 6.55214 -8.17388 -0.991829, 6.70096 -4.95 -1.35, 7.25 -4.95 -1.89904, 
+            6.70423 -8.10709 -1.35553, 7.25108 -7.96622 -1.89963, 6.70096 -4.95 -1.35, 6.70423 -8.10709 -1.35553, 
+            7.25 -4.95 -1.89904, 7.25 -4.95 -1.89904, 7.25108 -7.96622 -1.89963, 8 -7.90142 -2.1, 
+            8 -4.95 -2.1, 8 -7.90142 -2.1, 9.3 -7.90142 -2.1, 7.25 -4.95 -1.89904, 
+            8 -7.90142 -2.1, 8 -4.95 -2.1, 9.3 -5.75 -5.12348, 9.3 -7.90142 -2.1, 
+            9.3 -7.04611 -3.76846, 9.3 -5.75 -2.1, 9.3 -7.90142 -2.1, 9.3 -5.75 -5.12348, 
+            8 -4.95 -2.1, 9.3 -7.90142 -2.1, 9.3 -5.75 -2.1, 9.3 -5.75 -2.1, 
+            9.3 -5.75 -5.12348, 17 -5.75 -5.12348, 16.7224 -3.75 -5.32859, 17 -5.75 -5.12348, 
+            16.0937 -4.84393 -5.71643, 17.1815 -5.75 6.12323e-021, 17 -5.75 -5.12348, 18.2838 -5.75 -3.78567, 
+            18.1188 -3.75 -4.00599, 18.2838 -5.75 -3.78567, 17 -5.75 -5.12348, 12 -5.75 -2.1, 
+            9.3 -5.75 -2.1, 17 -5.75 -5.12348, 12.3537 -5.75 -1.95339, 12 -5.75 -2.1, 
+            17 -5.75 -5.12348, 12.4999 -5.75 -1.6, 12.3537 -5.75 -1.95339, 17 -5.75 -5.12348, 
+            13.6091 -5.75 -2.06227, 12.4999 -5.75 -1.6, 17 -5.75 -5.12348, 14.8 -5.75 -2.3815, 
+            13.6091 -5.75 -2.06227, 17 -5.75 -5.12348, 15.9909 -5.75 -2.06227, 14.8 -5.75 -2.3815, 
+            17 -5.75 -5.12348, 16.8623 -5.75 -1.19091, 15.9909 -5.75 -2.06227, 17 -5.75 -5.12348, 
+            17.1815 -5.75 6.12323e-021, 16.8623 -5.75 -1.19091, 17 -5.75 -5.12348, 18.1188 -3.75 -4.00599, 
+            17 -5.75 -5.12348, 16.7224 -3.75 -5.32859, 9.3 -3.75 -6.18466, 15 -3.75 -6.18466, 
+            16.0937 -4.84393 -5.71643, 16.7224 -3.75 -5.32859, 16.0937 -4.84393 -5.71643, 15 -3.75 -6.18466, 
+            14.8 -3.75 -2, 15 -3.75 -6.18466, 9.3 -3.75 -6.18466, 16.5319 -3.75 -1.00013, 
+            16.7224 -3.75 -5.32859, 15 -3.75 -6.18466, 15.8001 -3.75 -1.73191, 16.5319 -3.75 -1.00013, 
+            15 -3.75 -6.18466, 14.8 -3.75 -2, 15.8001 -3.75 -1.73191, 15 -3.75 -6.18466, 
+            9.3 -2.95 -3.35, 9.3 -3.75 -6.18466, 9.3 -2.4645 -6.46056, 9.3 -3.75 3.5, 
+            9.3 -3.75 -6.18466, 9.3 -2.95 -3.35, 13.0681 -3.75 1.00013, 9.3 -3.75 -6.18466, 
+            9.3 -3.75 3.5, 13.7999 -3.75 -1.73191, 14.8 -3.75 -2, 9.3 -3.75 -6.18466, 
+            13.0681 -3.75 -1.00013, 13.7999 -3.75 -1.73191, 9.3 -3.75 -6.18466, 12.8 -3.75 6.12323e-021, 
+            13.0681 -3.75 -1.00013, 9.3 -3.75 -6.18466, 13.0681 -3.75 1.00013, 12.8 -3.75 6.12323e-021, 
+            9.3 -3.75 -6.18466, 9.3 -2.45 -3.84992, 9.3 -2.4645 -6.46056, 9.3 -1.15 -6.47225, 
+            9.3 -2.80339 -3.70365, 9.3 -2.95 -3.35, 9.3 -2.4645 -6.46056, 9.3 -2.45 -3.84992, 
+            9.3 -2.80339 -3.70365, 9.3 -2.4645 -6.46056, 9.3 -1.15 3.5, 9.3 -1.15 -6.47225, 
+            13.6 -1.15 -6.47225, 9.3 -1.95 -3.35, 9.3 -1.15 -6.47225, 9.3 -1.95 3.35, 
+            9.3 -1.15 3.5, 9.3 -1.95 3.35, 9.3 -1.15 -6.47225, 9.3 -2.09661 -3.70365, 
+            9.3 -2.45 -3.84992, 9.3 -1.15 -6.47225, 9.3 -1.95 -3.35, 9.3 -2.09661 -3.70365, 
+            9.3 -1.15 -6.47225, 15.6857 -1.15 -5.91915, 13.6 -1.15 -6.47225, 15.1838 0.433765 -6.12219, 
+            12.8 -1.15 6.12323e-021, 9.3 -1.15 3.5, 13.6 -1.15 -6.47225, 13.7999 -1.15 -1.73191, 
+            13.6 -1.15 -6.47225, 15.6857 -1.15 -5.91915, 13.0681 -1.15 -1.00013, 12.8 -1.15 6.12323e-021, 
+            13.6 -1.15 -6.47225, 13.7999 -1.15 -1.73191, 13.0681 -1.15 -1.00013, 13.6 -1.15 -6.47225, 
+            13.8 1.85 -5.41202, 16.6 1.85 -5.41202, 15.1838 0.433765 -6.12219, 15.6857 -1.15 -5.91915, 
+            15.1838 0.433765 -6.12219, 16.6 1.85 -5.41202, 15.9909 1.85 -2.06227, 16.6 1.85 -5.41202, 
+            13.8 1.85 -5.41202, 15.6857 -1.15 -5.91915, 16.6 1.85 -5.41202, 17.4767 -1.15 -4.71257, 
+            18.0444 1.85 -4.09924, 17.4767 -1.15 -4.71257, 16.6 1.85 -5.41202, 17.1815 1.85 6.12323e-021, 
+            18.0444 1.85 -4.09924, 16.6 1.85 -5.41202, 16.8623 1.85 -1.19091, 17.1815 1.85 6.12323e-021, 
+            16.6 1.85 -5.41202, 15.9909 1.85 -2.06227, 16.8623 1.85 -1.19091, 16.6 1.85 -5.41202, 
+            13.8 2.85 -4.59238, 13.8 1.85 -5.41202, 13.8 2.37043 -5.02713, 13.8 2.85 -3.5, 
+            13.8 1.85 -5.41202, 13.8 2.85 -4.59238, 14.8 1.85 -2.3815, 13.8 1.85 -5.41202, 
+            13.8 1.85 -3.5, 13.8 2.85 -3.5, 13.8 1.85 -3.5, 13.8 1.85 -5.41202, 
+            15.9909 1.85 -2.06227, 13.8 1.85 -5.41202, 14.8 1.85 -2.3815, 9.3 2.85 -4.59238, 
+            13.8 2.85 -4.59238, 13.8 2.37043 -5.02713, 13.8 2.85 -3.5, 13.8 2.85 -4.59238, 
+            9.3 2.85 -4.59238, 9.3 2.85 -2.5, 9.3 2.85 -4.59238, 9.3 3.9883 -3.05312, 
+            9.43394 2.85 -2.99986, 9.3 2.85 -4.59238, 9.3 2.85 -2.5, 10.3 2.85 -3.5, 
+            13.8 2.85 -3.5, 9.3 2.85 -4.59238, 9.80015 2.85 -3.36606, 10.3 2.85 -3.5, 
+            9.3 2.85 -4.59238, 9.43394 2.85 -2.99986, 9.80015 2.85 -3.36606, 9.3 2.85 -4.59238, 
+            9.3 3.83792 -1.16208, 9.3 3.9883 -3.05312, 9.3 4.05 -1.25, 9.3 3.83792 -1.16208, 
+            9.3 3.75 -0.95, 9.3 3.9883 -3.05312, 11 -5.75 2.1, 9.3 -5.75 3.5, 
+            9.3 -5.75 2.1, 11 -4.95 2.1, 11 -5.75 2.1, 9.3 -5.75 2.1, 
+            11 -4.95 2.1, 9.3 -5.75 2.1, 8 -4.95 2.1, 14.8 -5.75 2.3815, 
+            18.1962 -5.75 3.5, 9.3 -5.75 3.5, 9.3 -3.75 3.5, 9.3 -5.75 3.5, 
+            18.1962 -5.75 3.5, 11.1466 -5.75 2.45365, 11.5 -5.75 2.59992, 9.3 -5.75 3.5, 
+            13.6091 -5.75 2.06227, 9.3 -5.75 3.5, 11.5 -5.75 2.59992, 11 -5.75 2.1, 
+            11.1466 -5.75 2.45365, 9.3 -5.75 3.5, 13.6091 -5.75 2.06227, 14.8 -5.75 2.3815, 
+            9.3 -5.75 3.5, 18.2838 -5.75 -3.78567, 18.6292 -5.75 3.25, 18.1962 -5.75 3.5, 
+            18.6292 -3.75 3.25, 18.1962 -5.75 3.5, 18.6292 -5.75 3.25, 17.1815 -5.75 6.12323e-021, 
+            18.2838 -5.75 -3.78567, 18.1962 -5.75 3.5, 15.9909 -5.75 2.06227, 18.1962 -5.75 3.5, 
+            14.8 -5.75 2.3815, 16.8623 -5.75 1.19091, 17.1815 -5.75 6.12323e-021, 18.1962 -5.75 3.5, 
+            15.9909 -5.75 2.06227, 16.8623 -5.75 1.19091, 18.1962 -5.75 3.5, 18.1962 -3.75 3.5, 
+            9.3 -3.75 3.5, 18.1962 -5.75 3.5, 18.1962 -3.75 3.5, 18.1962 -5.75 3.5, 
+            18.6292 -3.75 3.25, 19.1379 -5.75 -2.13903, 19.3176 -5.75 1.5288, 18.6292 -5.75 3.25, 
+            18.6292 -3.75 3.25, 18.6292 -5.75 3.25, 19.3176 -5.75 1.5288, 18.2838 -5.75 -3.78567, 
+            19.1379 -5.75 -2.13903, 18.6292 -5.75 3.25, 19.1379 -5.75 -2.13903, 19.4922 -5.75 -0.318066, 
+            19.3176 -5.75 1.5288, 19.3334 -3.75 1.46215, 19.3176 -5.75 1.5288, 19.4922 -5.75 -0.318066, 
+            19.3334 -3.75 1.46215, 18.6292 -3.75 3.25, 19.3176 -5.75 1.5288, 19.484 -3.75 -0.45517, 
+            19.4922 -5.75 -0.318066, 19.1379 -5.75 -2.13903, 19.3334 -3.75 1.46215, 19.4922 -5.75 -0.318066, 
+            19.484 -3.75 -0.45517, 19.067 -3.75 -2.33268, 19.1379 -5.75 -2.13903, 18.2838 -5.75 -3.78567, 
+            19.484 -3.75 -0.45517, 19.1379 -5.75 -2.13903, 19.067 -3.75 -2.33268, 19.067 -3.75 -2.33268, 
+            18.2838 -5.75 -3.78567, 18.1188 -3.75 -4.00599, 8 -4.95 -2.1, 9.3 -5.75 -2.1, 
+            12 -5.75 -2.1, 12 -4.95 -2.1, 12 -5.75 -2.1, 12.3537 -5.75 -1.95339, 
+            8 -4.95 -2.1, 12 -5.75 -2.1, 12 -4.95 -2.1, 12.3535 -4.95 -1.95347, 
+            12.3537 -5.75 -1.95339, 12.4999 -5.75 -1.6, 12 -4.95 -2.1, 12.3537 -5.75 -1.95339, 
+            12.3535 -4.95 -1.95347, 12.4185 -5.75 -8.88172e-016, 12.3537 -5.75 -1.24661, 12.4999 -5.75 -1.6, 
+            12.5 -4.95 -1.6, 12.4999 -5.75 -1.6, 12.3537 -5.75 -1.24661, 12.7377 -5.75 -1.19091, 
+            12.4185 -5.75 -8.88172e-016, 12.4999 -5.75 -1.6, 13.6091 -5.75 -2.06227, 12.7377 -5.75 -1.19091, 
+            12.4999 -5.75 -1.6, 12.3535 -4.95 -1.95347, 12.4999 -5.75 -1.6, 12.5 -4.95 -1.6, 
+            12 -5.75 2.1, 12 -5.75 -1.1, 12.3537 -5.75 -1.24661, 12.3535 -4.95 -1.24653, 
+            12.3537 -5.75 -1.24661, 12 -5.75 -1.1, 12.4185 -5.75 -8.88172e-016, 12 -5.75 2.1, 
+            12.3537 -5.75 -1.24661, 12.5 -4.95 -1.6, 12.3537 -5.75 -1.24661, 12.3535 -4.95 -1.24653, 
+            12 -4.95 -1.1, 12 -5.75 -1.1, 12 -5.75 2.1, 12.3535 -4.95 -1.24653, 
+            12 -5.75 -1.1, 12 -4.95 -1.1, 12.7377 -5.75 1.19091, 11.8534 -5.75 2.45365, 
+            12 -5.75 2.1, 12 -4.95 2.1, 12 -5.75 2.1, 11.8534 -5.75 2.45365, 
+            12.4185 -5.75 -8.88172e-016, 12.7377 -5.75 1.19091, 12 -5.75 2.1, 12 -4.95 -1.1, 
+            12 -5.75 2.1, 12 -4.95 2.1, 13.6091 -5.75 2.06227, 11.5 -5.75 2.59992, 
+            11.8534 -5.75 2.45365, 11.8535 -4.95 2.45347, 11.8534 -5.75 2.45365, 11.5 -5.75 2.59992, 
+            12.7377 -5.75 1.19091, 13.6091 -5.75 2.06227, 11.8534 -5.75 2.45365, 12 -4.95 2.1, 
+            11.8534 -5.75 2.45365, 11.8535 -4.95 2.45347, 11.5 -4.95 2.6, 11.5 -5.75 2.59992, 
+            11.1466 -5.75 2.45365, 11.8535 -4.95 2.45347, 11.5 -5.75 2.59992, 11.5 -4.95 2.6, 
+            11.1465 -4.95 2.45347, 11.1466 -5.75 2.45365, 11 -5.75 2.1, 11.5 -4.95 2.6, 
+            11.1466 -5.75 2.45365, 11.1465 -4.95 2.45347, 11.1465 -4.95 2.45347, 11 -5.75 2.1, 
+            11 -4.95 2.1, 14.8 -4.15 2.3815, 14.8 -5.75 2.3815, 13.6091 -5.75 2.06227, 
+            15.9907 -4.15 2.06235, 15.9909 -5.75 2.06227, 14.8 -5.75 2.3815, 15.9907 -4.15 2.06235, 
+            14.8 -5.75 2.3815, 14.8 -4.15 2.3815, 13.6093 -4.15 2.06235, 13.6091 -5.75 2.06227, 
+            12.7377 -5.75 1.19091, 13.6093 -4.15 2.06235, 14.8 -4.15 2.3815, 13.6091 -5.75 2.06227, 
+            12.7376 -4.15 1.19075, 12.7377 -5.75 1.19091, 12.4185 -5.75 -8.88172e-016, 13.6093 -4.15 2.06235, 
+            12.7377 -5.75 1.19091, 12.7376 -4.15 1.19075, 12.4186 -4.15 1.38784e-016, 12.4185 -5.75 -8.88172e-016, 
+            12.7377 -5.75 -1.19091, 12.7376 -4.15 1.19075, 12.4185 -5.75 -8.88172e-016, 12.4186 -4.15 1.38784e-016, 
+            12.7376 -4.15 -1.19075, 12.7377 -5.75 -1.19091, 13.6091 -5.75 -2.06227, 12.4186 -4.15 1.38784e-016, 
+            12.7377 -5.75 -1.19091, 12.7376 -4.15 -1.19075, 13.6093 -4.15 -2.06235, 13.6091 -5.75 -2.06227, 
+            14.8 -5.75 -2.3815, 12.7376 -4.15 -1.19075, 13.6091 -5.75 -2.06227, 13.6093 -4.15 -2.06235, 
+            14.8 -4.15 -2.3815, 14.8 -5.75 -2.3815, 15.9909 -5.75 -2.06227, 13.6093 -4.15 -2.06235, 
+            14.8 -5.75 -2.3815, 14.8 -4.15 -2.3815, 15.9907 -4.15 -2.06235, 15.9909 -5.75 -2.06227, 
+            16.8623 -5.75 -1.19091, 14.8 -4.15 -2.3815, 15.9909 -5.75 -2.06227, 15.9907 -4.15 -2.06235, 
+            16.8624 -4.15 -1.19075, 16.8623 -5.75 -1.19091, 17.1815 -5.75 6.12323e-021, 15.9907 -4.15 -2.06235, 
+            16.8623 -5.75 -1.19091, 16.8624 -4.15 -1.19075, 17.1814 -4.15 1.38784e-016, 17.1815 -5.75 6.12323e-021, 
+            16.8623 -5.75 1.19091, 16.8624 -4.15 -1.19075, 17.1815 -5.75 6.12323e-021, 17.1814 -4.15 1.38784e-016, 
+            16.8624 -4.15 1.19075, 16.8623 -5.75 1.19091, 15.9909 -5.75 2.06227, 17.1814 -4.15 1.38784e-016, 
+            16.8623 -5.75 1.19091, 16.8624 -4.15 1.19075, 16.8624 -4.15 1.19075, 15.9909 -5.75 2.06227, 
+            15.9907 -4.15 2.06235, 9.3 -2.80339 -2.99635, 9.3 -2.80339 2.99635, 9.3 -2.95 3.35, 
+            6.5 -2.95 3.35, 9.3 -2.95 3.35, 9.3 -2.80339 2.99635, 6.5 -2.80347 3.70347, 
+            9.3 -2.80339 3.70365, 9.3 -2.95 3.35, 9.3 -2.80339 -2.99635, 9.3 -2.95 3.35, 
+            9.3 -2.95 -3.35, 9.3 -3.75 3.5, 9.3 -2.95 -3.35, 9.3 -2.95 3.35, 
+            6.5 -2.80347 3.70347, 9.3 -2.95 3.35, 6.5 -2.95 3.35, 9.3 -2.45 -2.85008, 
+            9.3 -2.45 2.85008, 9.3 -2.80339 2.99635, 6.5 -2.80347 2.99653, 9.3 -2.80339 2.99635, 
+            9.3 -2.45 2.85008, 9.3 -2.80339 -2.99635, 9.3 -2.45 -2.85008, 9.3 -2.80339 2.99635, 
+            6.5 -2.80347 2.99653, 6.5 -2.95 3.35, 9.3 -2.80339 2.99635, 9.3 -2.09661 -2.99635, 
+            9.3 -2.09661 2.99635, 9.3 -2.45 2.85008, 6.5 -2.45 2.85, 9.3 -2.45 2.85008, 
+            9.3 -2.09661 2.99635, 9.3 -2.45 -2.85008, 9.3 -2.09661 -2.99635, 9.3 -2.45 2.85008, 
+            6.5 -2.80347 2.99653, 9.3 -2.45 2.85008, 6.5 -2.45 2.85, 9.3 -1.95 -3.35, 
+            9.3 -1.95 3.35, 9.3 -2.09661 2.99635, 6.5 -2.09653 2.99653, 9.3 -2.09661 2.99635, 
+            9.3 -1.95 3.35, 9.3 -2.09661 -2.99635, 9.3 -1.95 -3.35, 9.3 -2.09661 2.99635, 
+            6.5 -2.45 2.85, 9.3 -2.09661 2.99635, 6.5 -2.09653 2.99653, 9.3 -1.15 3.5, 
+            9.3 -2.09661 3.70365, 9.3 -1.95 3.35, 6.5 -1.95 3.35, 9.3 -1.95 3.35, 
+            9.3 -2.09661 3.70365, 6.5 -2.09653 2.99653, 9.3 -1.95 3.35, 6.5 -1.95 3.35, 
+            9.3 -1.15 3.5, 9.3 -2.45 3.84992, 9.3 -2.09661 3.70365, 6.5 -2.09653 3.70347, 
+            9.3 -2.09661 3.70365, 9.3 -2.45 3.84992, 6.5 -1.95 3.35, 9.3 -2.09661 3.70365, 
+            6.5 -2.09653 3.70347, 6.5 -2.45 3.85, 9.3 -2.45 3.84992, 9.3 -2.80339 3.70365, 
+            9.3 -1.15 3.5, 9.3 1.85 3.5, 9.3 -2.45 3.84992, 6.5 -2.09653 3.70347, 
+            9.3 -2.45 3.84992, 6.5 -2.45 3.85, 6.5 -2.45 3.85, 9.3 -2.80339 3.70365, 
+            6.5 -2.80347 3.70347, 6.5 -2.95 -3.35, 9.3 -2.95 -3.35, 9.3 -2.80339 -3.70365, 
+            6.5 -2.80347 -2.99653, 9.3 -2.80339 -2.99635, 9.3 -2.95 -3.35, 6.5 -2.80347 -2.99653, 
+            9.3 -2.95 -3.35, 6.5 -2.95 -3.35, 6.5 -2.80347 -3.70347, 9.3 -2.80339 -3.70365, 
+            9.3 -2.45 -3.84992, 6.5 -2.80347 -3.70347, 6.5 -2.95 -3.35, 9.3 -2.80339 -3.70365, 
+            6.5 -2.45 -3.85, 9.3 -2.45 -3.84992, 9.3 -2.09661 -3.70365, 6.5 -2.80347 -3.70347, 
+            9.3 -2.45 -3.84992, 6.5 -2.45 -3.85, 6.5 -2.09653 -3.70347, 9.3 -2.09661 -3.70365, 
+            9.3 -1.95 -3.35, 6.5 -2.45 -3.85, 9.3 -2.09661 -3.70365, 6.5 -2.09653 -3.70347, 
+            6.5 -1.95 -3.35, 9.3 -1.95 -3.35, 9.3 -2.09661 -2.99635, 6.5 -2.09653 -3.70347, 
+            9.3 -1.95 -3.35, 6.5 -1.95 -3.35, 6.5 -2.09653 -2.99653, 9.3 -2.09661 -2.99635, 
+            9.3 -2.45 -2.85008, 6.5 -1.95 -3.35, 9.3 -2.09661 -2.99635, 6.5 -2.09653 -2.99653, 
+            6.5 -2.45 -2.85, 9.3 -2.45 -2.85008, 9.3 -2.80339 -2.99635, 6.5 -2.09653 -2.99653, 
+            9.3 -2.45 -2.85008, 6.5 -2.45 -2.85, 6.5 -2.45 -2.85, 9.3 -2.80339 -2.99635, 
+            6.5 -2.80347 -2.99653, 4.96448 3.85654 -1.17929, 9.3 3.83792 -1.16208, 9.3 4.05 -1.25, 
+            4.96448 3.85654 -1.17929, 9.3 4.05 -1.25, 4.55 4.05 -1.25, 9.3 1.85 3.5, 
+            9.3 1.85 -2.5, 9.3 2.85 -2.5, 9.43394 1.85 -2.99986, 9.3 2.85 -2.5, 
+            9.3 1.85 -2.5, 9.43394 2.85 -2.99986, 9.3 2.85 -2.5, 9.43394 1.85 -2.99986, 
+            12.7377 1.85 1.19091, 9.3 1.85 -2.5, 9.3 1.85 3.5, 12.7377 1.85 1.19091, 
+            9.43394 1.85 -2.99986, 9.3 1.85 -2.5, 18.1962 -1.15 3.5, 9.3 1.85 3.5, 
+            9.3 -1.15 3.5, 18.1962 1.85 3.5, 9.3 1.85 3.5, 18.1962 -1.15 3.5, 
+            13.6091 1.85 2.06227, 9.3 1.85 3.5, 18.1962 1.85 3.5, 13.6091 1.85 2.06227, 
+            12.7377 1.85 1.19091, 9.3 1.85 3.5, 15.8001 -1.15 1.73191, 18.1962 -1.15 3.5, 
+            9.3 -1.15 3.5, 14.8 -1.15 2, 15.8001 -1.15 1.73191, 9.3 -1.15 3.5, 
+            13.7999 -1.15 1.73191, 14.8 -1.15 2, 9.3 -1.15 3.5, 13.0681 -1.15 1.00013, 
+            13.7999 -1.15 1.73191, 9.3 -1.15 3.5, 12.8 -1.15 6.12323e-021, 13.0681 -1.15 1.00013, 
+            9.3 -1.15 3.5, 13.7999 -3.75 1.73191, 9.3 -3.75 3.5, 18.1962 -3.75 3.5, 
+            13.7999 -3.75 1.73191, 13.0681 -3.75 1.00013, 9.3 -3.75 3.5, 4.55 4.05 1.25, 
+            9.3 4.05 1.25, 9.3 3.83792 1.16208, 8 3.7542 1, 9.3 3.83792 1.16208, 
+            9.3 3.75 0.95, 4.96603 3.85589 1.17874, 9.3 3.83792 1.16208, 5.16395 3.78406 1.08884, 
+            8 3.7542 1, 5.16395 3.78406 1.08884, 9.3 3.83792 1.16208, 4.55 4.05 1.25, 
+            9.3 3.83792 1.16208, 4.96603 3.85589 1.17874, 8.99994 3.75 8.88185e-016, 9.3 3.75 0.95, 
+            9.3 3.75 -0.95, 8.15099 3.75249 0.988591, 8 3.7542 1, 9.3 3.75 0.95, 
+            8.81003 3.75 0.586335, 9.3 3.75 0.95, 8.99994 3.75 8.88185e-016, 8.31225 3.75 0.95, 
+            9.3 3.75 0.95, 8.81003 3.75 0.586335, 8.15099 3.75249 0.988591, 9.3 3.75 0.95, 
+            8.31225 3.75 0.95, 8.31225 3.75 -0.95, 9.3 3.75 -0.95, 9.3 3.83792 -1.16208, 
+            8.81003 3.75 -0.586335, 9.3 3.75 -0.95, 8.31225 3.75 -0.95, 8.99994 3.75 8.88185e-016, 
+            9.3 3.75 -0.95, 8.81003 3.75 -0.586335, 5.16295 3.78435 -1.08938, 9.3 3.83792 -1.16208, 
+            4.96448 3.85654 -1.17929, 8 3.7542 -1, 9.3 3.83792 -1.16208, 5.16295 3.78435 -1.08938, 
+            8.15084 3.7525 -0.988614, 9.3 3.83792 -1.16208, 8 3.7542 -1, 8.15084 3.7525 -0.988614, 
+            8.31225 3.75 -0.95, 9.3 3.83792 -1.16208, 18.1188 -3.75 -4.00599, 18.1962 -3.75 3.5, 
+            18.6292 -3.75 3.25, 19.067 -3.75 -2.33268, 18.1188 -3.75 -4.00599, 18.6292 -3.75 3.25, 
+            19.3334 -3.75 1.46215, 19.067 -3.75 -2.33268, 18.6292 -3.75 3.25, 16.8 -3.75 6.12323e-021, 
+            18.1962 -3.75 3.5, 18.1188 -3.75 -4.00599, 15.8001 -3.75 1.73191, 14.8 -3.75 2, 
+            18.1962 -3.75 3.5, 13.7999 -3.75 1.73191, 18.1962 -3.75 3.5, 14.8 -3.75 2, 
+            16.5319 -3.75 1.00013, 15.8001 -3.75 1.73191, 18.1962 -3.75 3.5, 16.8 -3.75 6.12323e-021, 
+            16.5319 -3.75 1.00013, 18.1962 -3.75 3.5, 16.8 -3.75 6.12323e-021, 18.1188 -3.75 -4.00599, 
+            16.7224 -3.75 -5.32859, 16.5319 -3.75 -1.00013, 16.8 -3.75 6.12323e-021, 16.7224 -3.75 -5.32859, 
+            19.3334 -3.75 1.46215, 19.484 -3.75 -0.45517, 19.067 -3.75 -2.33268, 14.8 -4.15 2, 
+            14.8 -3.75 2, 15.8001 -3.75 1.73191, 13.8 -4.15 1.73197, 13.7999 -3.75 1.73191, 
+            14.8 -3.75 2, 13.8 -4.15 1.73197, 14.8 -3.75 2, 14.8 -4.15 2, 
+            15.8 -4.15 1.73197, 15.8001 -3.75 1.73191, 16.5319 -3.75 1.00013, 15.8 -4.15 1.73197, 
+            14.8 -4.15 2, 15.8001 -3.75 1.73191, 16.5321 -4.15 1, 16.5319 -3.75 1.00013, 
+            16.8 -3.75 6.12323e-021, 16.5321 -4.15 1, 15.8 -4.15 1.73197, 16.5319 -3.75 1.00013, 
+            16.7999 -4.15 1.31845e-016, 16.8 -3.75 6.12323e-021, 16.5319 -3.75 -1.00013, 16.7999 -4.15 1.31845e-016, 
+            16.5321 -4.15 1, 16.8 -3.75 6.12323e-021, 16.5321 -4.15 -1, 16.5319 -3.75 -1.00013, 
+            15.8001 -3.75 -1.73191, 16.5321 -4.15 -1, 16.7999 -4.15 1.31845e-016, 16.5319 -3.75 -1.00013, 
+            15.8 -4.15 -1.73197, 15.8001 -3.75 -1.73191, 14.8 -3.75 -2, 15.8 -4.15 -1.73197, 
+            16.5321 -4.15 -1, 15.8001 -3.75 -1.73191, 14.8 -4.15 -2, 14.8 -3.75 -2, 
+            13.7999 -3.75 -1.73191, 14.8 -4.15 -2, 15.8 -4.15 -1.73197, 14.8 -3.75 -2, 
+            13.8 -4.15 -1.73197, 13.7999 -3.75 -1.73191, 13.0681 -3.75 -1.00013, 13.8 -4.15 -1.73197, 
+            14.8 -4.15 -2, 13.7999 -3.75 -1.73191, 13.0679 -4.15 -1, 13.0681 -3.75 -1.00013, 
+            12.8 -3.75 6.12323e-021, 13.8 -4.15 -1.73197, 13.0681 -3.75 -1.00013, 13.0679 -4.15 -1, 
+            12.8001 -4.15 1.31845e-016, 12.8 -3.75 6.12323e-021, 13.0681 -3.75 1.00013, 13.0679 -4.15 -1, 
+            12.8 -3.75 6.12323e-021, 12.8001 -4.15 1.31845e-016, 13.0679 -4.15 1, 13.0681 -3.75 1.00013, 
+            13.7999 -3.75 1.73191, 12.8001 -4.15 1.31845e-016, 13.0681 -3.75 1.00013, 13.0679 -4.15 1, 
+            13.0679 -4.15 1, 13.7999 -3.75 1.73191, 13.8 -4.15 1.73197, 18.7733 -1.15 -2.98646, 
+            18.6292 -1.15 3.25, 18.1962 -1.15 3.5, 18.6292 1.85 3.25, 18.1962 -1.15 3.5, 
+            18.6292 -1.15 3.25, 17.4767 -1.15 -4.71257, 18.7733 -1.15 -2.98646, 18.1962 -1.15 3.5, 
+            16.8 -1.15 -8.88172e-016, 17.4767 -1.15 -4.71257, 18.1962 -1.15 3.5, 16.5319 -1.15 1.00013, 
+            16.8 -1.15 -8.88172e-016, 18.1962 -1.15 3.5, 15.8001 -1.15 1.73191, 16.5319 -1.15 1.00013, 
+            18.1962 -1.15 3.5, 18.1962 1.85 3.5, 18.1962 -1.15 3.5, 18.6292 1.85 3.25, 
+            18.7733 -1.15 -2.98646, 19.3828 -1.15 1.22827, 18.6292 -1.15 3.25, 18.6292 1.85 3.25, 
+            18.6292 -1.15 3.25, 19.3828 -1.15 1.22827, 18.7733 -1.15 -2.98646, 19.433 -1.15 -0.930822, 
+            19.3828 -1.15 1.22827, 19.4795 1.85 -0.514862, 19.3828 -1.15 1.22827, 19.433 -1.15 -0.930822, 
+            19.3401 1.85 1.43287, 18.6292 1.85 3.25, 19.3828 -1.15 1.22827, 19.3401 1.85 1.43287, 
+            19.3828 -1.15 1.22827, 19.4795 1.85 -0.514862, 19.0342 1.85 -2.41612, 19.433 -1.15 -0.930822, 
+            18.7733 -1.15 -2.98646, 19.4795 1.85 -0.514862, 19.433 -1.15 -0.930822, 19.0342 1.85 -2.41612, 
+            18.0444 1.85 -4.09924, 18.7733 -1.15 -2.98646, 17.4767 -1.15 -4.71257, 19.0342 1.85 -2.41612, 
+            18.7733 -1.15 -2.98646, 18.0444 1.85 -4.09924, 15.8001 -1.15 -1.73191, 15.6857 -1.15 -5.91915, 
+            17.4767 -1.15 -4.71257, 16.5319 -1.15 -1.00013, 15.8001 -1.15 -1.73191, 17.4767 -1.15 -4.71257, 
+            16.8 -1.15 -8.88172e-016, 16.5319 -1.15 -1.00013, 17.4767 -1.15 -4.71257, 15.8001 -1.15 -1.73191, 
+            14.8 -1.15 -2, 15.6857 -1.15 -5.91915, 13.7999 -1.15 -1.73191, 15.6857 -1.15 -5.91915, 
+            14.8 -1.15 -2, 14.8 -0.75 -2, 14.8 -1.15 -2, 15.8001 -1.15 -1.73191, 
+            13.8 -0.75 -1.73197, 13.7999 -1.15 -1.73191, 14.8 -1.15 -2, 13.8 -0.75 -1.73197, 
+            14.8 -1.15 -2, 14.8 -0.75 -2, 15.8 -0.75 -1.73197, 15.8001 -1.15 -1.73191, 
+            16.5319 -1.15 -1.00013, 15.8 -0.75 -1.73197, 14.8 -0.75 -2, 15.8001 -1.15 -1.73191, 
+            16.5321 -0.75 -1, 16.5319 -1.15 -1.00013, 16.8 -1.15 -8.88172e-016, 16.5321 -0.75 -1, 
+            15.8 -0.75 -1.73197, 16.5319 -1.15 -1.00013, 16.7999 -0.75 -1.31833e-016, 16.8 -1.15 -8.88172e-016, 
+            16.5319 -1.15 1.00013, 16.7999 -0.75 -1.31833e-016, 16.5321 -0.75 -1, 16.8 -1.15 -8.88172e-016, 
+            16.5321 -0.75 1, 16.5319 -1.15 1.00013, 15.8001 -1.15 1.73191, 16.5321 -0.75 1, 
+            16.7999 -0.75 -1.31833e-016, 16.5319 -1.15 1.00013, 15.8 -0.75 1.73197, 15.8001 -1.15 1.73191, 
+            14.8 -1.15 2, 15.8 -0.75 1.73197, 16.5321 -0.75 1, 15.8001 -1.15 1.73191, 
+            14.8 -0.75 2, 14.8 -1.15 2, 13.7999 -1.15 1.73191, 14.8 -0.75 2, 
+            15.8 -0.75 1.73197, 14.8 -1.15 2, 13.8 -0.75 1.73197, 13.7999 -1.15 1.73191, 
+            13.0681 -1.15 1.00013, 13.8 -0.75 1.73197, 14.8 -0.75 2, 13.7999 -1.15 1.73191, 
+            13.0679 -0.75 1, 13.0681 -1.15 1.00013, 12.8 -1.15 6.12323e-021, 13.8 -0.75 1.73197, 
+            13.0681 -1.15 1.00013, 13.0679 -0.75 1, 12.8001 -0.75 -1.31833e-016, 12.8 -1.15 6.12323e-021, 
+            13.0681 -1.15 -1.00013, 13.0679 -0.75 1, 12.8 -1.15 6.12323e-021, 12.8001 -0.75 -1.31833e-016, 
+            13.0679 -0.75 -1, 13.0681 -1.15 -1.00013, 13.7999 -1.15 -1.73191, 12.8001 -0.75 -1.31833e-016, 
+            13.0681 -1.15 -1.00013, 13.0679 -0.75 -1, 13.0679 -0.75 -1, 13.7999 -1.15 -1.73191, 
+            13.8 -0.75 -1.73197, 18.0444 1.85 -4.09924, 18.1962 1.85 3.5, 18.6292 1.85 3.25, 
+            19.0342 1.85 -2.41612, 18.0444 1.85 -4.09924, 18.6292 1.85 3.25, 19.3401 1.85 1.43287, 
+            19.0342 1.85 -2.41612, 18.6292 1.85 3.25, 17.1815 1.85 6.12323e-021, 18.1962 1.85 3.5, 
+            18.0444 1.85 -4.09924, 14.8 1.85 2.3815, 13.6091 1.85 2.06227, 18.1962 1.85 3.5, 
+            15.9909 1.85 2.06227, 14.8 1.85 2.3815, 18.1962 1.85 3.5, 16.8623 1.85 1.19091, 
+            15.9909 1.85 2.06227, 18.1962 1.85 3.5, 17.1815 1.85 6.12323e-021, 16.8623 1.85 1.19091, 
+            18.1962 1.85 3.5, 12.7377 1.85 1.19091, 9.80015 1.85 -3.36606, 9.43394 1.85 -2.99986, 
+            9.43394 2.85 -2.99986, 9.43394 1.85 -2.99986, 9.80015 1.85 -3.36606, 12.7377 1.85 1.19091, 
+            10.3 1.85 -3.5, 9.80015 1.85 -3.36606, 9.80015 2.85 -3.36606, 9.80015 1.85 -3.36606, 
+            10.3 1.85 -3.5, 9.43394 2.85 -2.99986, 9.80015 1.85 -3.36606, 9.80015 2.85 -3.36606, 
+            13.6091 1.85 -2.06227, 13.8 1.85 -3.5, 10.3 1.85 -3.5, 10.3 2.85 -3.5, 
+            10.3 1.85 -3.5, 13.8 1.85 -3.5, 12.7377 1.85 -1.19091, 13.6091 1.85 -2.06227, 
+            10.3 1.85 -3.5, 12.4185 1.85 6.12323e-021, 12.7377 1.85 -1.19091, 10.3 1.85 -3.5, 
+            12.7377 1.85 1.19091, 12.4185 1.85 6.12323e-021, 10.3 1.85 -3.5, 9.80015 2.85 -3.36606, 
+            10.3 1.85 -3.5, 10.3 2.85 -3.5, 13.6091 1.85 -2.06227, 14.8 1.85 -2.3815, 
+            13.8 1.85 -3.5, 10.3 2.85 -3.5, 13.8 1.85 -3.5, 13.8 2.85 -3.5, 
+            19.3401 1.85 1.43287, 19.4795 1.85 -0.514862, 19.0342 1.85 -2.41612, 14.8 -0.75 -2.3815, 
+            14.8 1.85 -2.3815, 13.6091 1.85 -2.06227, 15.9907 -0.75 -2.06235, 15.9909 1.85 -2.06227, 
+            14.8 1.85 -2.3815, 15.9907 -0.75 -2.06235, 14.8 1.85 -2.3815, 14.8 -0.75 -2.3815, 
+            13.6093 -0.75 -2.06235, 13.6091 1.85 -2.06227, 12.7377 1.85 -1.19091, 13.6093 -0.75 -2.06235, 
+            14.8 -0.75 -2.3815, 13.6091 1.85 -2.06227, 12.7376 -0.75 -1.19075, 12.7377 1.85 -1.19091, 
+            12.4185 1.85 6.12323e-021, 13.6093 -0.75 -2.06235, 12.7377 1.85 -1.19091, 12.7376 -0.75 -1.19075, 
+            12.4186 -0.75 -1.38772e-016, 12.4185 1.85 6.12323e-021, 12.7377 1.85 1.19091, 12.7376 -0.75 -1.19075, 
+            12.4185 1.85 6.12323e-021, 12.4186 -0.75 -1.38772e-016, 12.7376 -0.75 1.19075, 12.7377 1.85 1.19091, 
+            13.6091 1.85 2.06227, 12.4186 -0.75 -1.38772e-016, 12.7377 1.85 1.19091, 12.7376 -0.75 1.19075, 
+            13.6093 -0.75 2.06235, 13.6091 1.85 2.06227, 14.8 1.85 2.3815, 12.7376 -0.75 1.19075, 
+            13.6091 1.85 2.06227, 13.6093 -0.75 2.06235, 14.8 -0.75 2.3815, 14.8 1.85 2.3815, 
+            15.9909 1.85 2.06227, 13.6093 -0.75 2.06235, 14.8 1.85 2.3815, 14.8 -0.75 2.3815, 
+            15.9907 -0.75 2.06235, 15.9909 1.85 2.06227, 16.8623 1.85 1.19091, 14.8 -0.75 2.3815, 
+            15.9909 1.85 2.06227, 15.9907 -0.75 2.06235, 16.8624 -0.75 1.19075, 16.8623 1.85 1.19091, 
+            17.1815 1.85 6.12323e-021, 15.9907 -0.75 2.06235, 16.8623 1.85 1.19091, 16.8624 -0.75 1.19075, 
+            17.1814 -0.75 -1.38772e-016, 17.1815 1.85 6.12323e-021, 16.8623 1.85 -1.19091, 16.8624 -0.75 1.19075, 
+            17.1815 1.85 6.12323e-021, 17.1814 -0.75 -1.38772e-016, 16.8624 -0.75 -1.19075, 16.8623 1.85 -1.19091, 
+            15.9909 1.85 -2.06227, 17.1814 -0.75 -1.38772e-016, 16.8623 1.85 -1.19091, 16.8624 -0.75 -1.19075, 
+            16.8624 -0.75 -1.19075, 15.9909 1.85 -2.06227, 15.9907 -0.75 -2.06235, 5.66605 -5.25014 5, 
+            5.8 -5.75 6.12323e-021, 5.8 -5.75 5, 5.75367 -5.44914 -0.336971, 5.8 -5.75 -5, 
+            5.8 -5.75 6.12323e-021, 5.75328 -5.44791 0.338353, 5.8 -5.75 6.12323e-021, 5.66605 -5.25014 5, 
+            5.75328 -5.44791 0.338353, 5.74859 3.75 -0.354636, 5.8 -5.75 6.12323e-021, 5.75367 -5.44914 -0.336971, 
+            5.8 -5.75 6.12323e-021, 5.74859 3.75 -0.354636, 5.75367 -5.44914 -0.336971, 5.66605 -5.25014 -5, 
+            5.8 -5.75 -5, 4.8 -4.75 5, -3.55271e-015 -4.75 5, -3.55271e-015 -4.75 4.35, 
+            -1.62951 -4.46172 5, -3.55271e-015 -4.75 4.35, -3.55271e-015 -4.75 5, 1.25 -4.75 4.35, 
+            4.8 -4.75 5, -3.55271e-015 -4.75 4.35, 1.25 -2.25 4.35, 1.25 -4.75 4.35, 
+            -3.55271e-015 -4.75 4.35, -1.66986 -4.44675 4.35, -3.55271e-015 -4.75 4.35, -1.62951 -4.46172 5, 
+            1.25 -2.25 4.35, -3.55271e-015 -4.75 4.35, -1.66986 -4.44675 4.35, 0.366063 -1.12697 5, 
+            -3.55271e-015 -4.75 5, 4.8 -4.75 5, -1.185 2.22045e-016 5, -1.62951 -4.46172 5, 
+            -3.55271e-015 -4.75 5, -0.958536 -0.696682 5, -1.185 2.22045e-016 5, -3.55271e-015 -4.75 5, 
+            -0.366063 -1.12697 5, -0.958536 -0.696682 5, -3.55271e-015 -4.75 5, 0.366063 -1.12697 5, 
+            -0.366063 -1.12697 5, -3.55271e-015 -4.75 5, 4.67641 -4.75 1.24359, 4.8 -4.75 1.22474, 
+            4.8 -4.75 5, 5.25135 -4.85765 1.03468, 4.8 -4.75 5, 4.8 -4.75 1.22474, 
+            4.55 -4.75 1.25, 4.67641 -4.75 1.24359, 4.8 -4.75 5, 1.83783 -4.75 2.54111, 
+            4.55 -4.75 1.25, 4.8 -4.75 5, 2.20096 -4.75 3.04078, 1.83783 -4.75 2.54111, 
+            4.8 -4.75 5, 2.20096 -4.75 3.65922, 2.20096 -4.75 3.04078, 4.8 -4.75 5, 
+            1.83783 -4.75 4.15889, 2.20096 -4.75 3.65922, 4.8 -4.75 5, 1.25 -4.75 4.35, 
+            1.83783 -4.75 4.15889, 4.8 -4.75 5, 0.958536 -0.696682 5, 0.366063 -1.12697 5, 
+            4.8 -4.75 5, 1.185 2.22045e-016 5, 0.958536 -0.696682 5, 4.8 -4.75 5, 
+            2.56684 1.50475 5, 1.185 2.22045e-016 5, 4.8 -4.75 5, 2.70578 1.33 5, 
+            2.56684 1.50475 5, 4.8 -4.75 5, 2.89784 1.21501 5, 2.70578 1.33 5, 
+            4.8 -4.75 5, 3.11769 1.175 5, 2.89784 1.21501 5, 4.8 -4.75 5, 
+            3.33755 1.21501 5, 3.11769 1.175 5, 4.8 -4.75 5, 3.52961 1.33 5, 
+            3.33755 1.21501 5, 4.8 -4.75 5, 3.66854 1.50475 5, 3.52961 1.33 5, 
+            4.8 -4.75 5, 3.73718 1.71768 5, 3.66854 1.50475 5, 4.8 -4.75 5, 
+            3.72653 1.94115 5, 3.73718 1.71768 5, 4.8 -4.75 5, 5.29986 -4.88394 5, 
+            3.72653 1.94115 5, 4.8 -4.75 5, 5.25135 -4.85765 1.03468, 5.29986 -4.88394 5, 
+            4.8 -4.75 5, 4.96603 3.85589 1.17874, 4.8 -4.75 1.22474, 4.67641 -4.75 1.24359, 
+            4.96603 3.85589 1.17874, 5.16395 3.78406 1.08884, 4.8 -4.75 1.22474, 5.25135 -4.85765 1.03468, 
+            4.8 -4.75 1.22474, 5.16395 3.78406 1.08884, 4.96603 3.85589 1.17874, 4.67641 -4.75 1.24359, 
+            4.55 -4.75 1.25, 1.83783 -4.75 2.54111, -3.55271e-015 -4.75 1.25, 4.55 -4.75 1.25, 
+            3.71213 1.60704 1.25, 4.55 -4.75 1.25, -3.55271e-015 -4.75 1.25, 4.55 4.05 1.25, 
+            4.96603 3.85589 1.17874, 4.55 -4.75 1.25, 3.71213 1.60704 1.25, 4.55 4.05 1.25, 
+            4.55 -4.75 1.25, 1.25 -4.75 2.35, -3.55271e-015 -4.75 2.35, -3.55271e-015 -4.75 1.25, 
+            -1.66986 -4.44675 2.35, -3.55271e-015 -4.75 1.25, -3.55271e-015 -4.75 2.35, 1.83783 -4.75 2.54111, 
+            1.25 -4.75 2.35, -3.55271e-015 -4.75 1.25, -1.69251 -4.43819 1.25, -3.55271e-015 -4.75 1.25, 
+            -1.66986 -4.44675 2.35, -0.246983 -0.760882 1.25, -3.55271e-015 -4.75 1.25, -1.69251 -4.43819 1.25, 
+            0.647216 -0.470087 1.25, 0.8 2.22045e-016 1.25, -3.55271e-015 -4.75 1.25, 2.52325 1.99296 1.25, 
+            -3.55271e-015 -4.75 1.25, 0.8 2.22045e-016 1.25, 0.246983 -0.760882 1.25, 0.647216 -0.470087 1.25, 
+            -3.55271e-015 -4.75 1.25, -0.246983 -0.760882 1.25, 0.246983 -0.760882 1.25, -3.55271e-015 -4.75 1.25, 
+            3.48495 1.29436 1.25, 3.71213 1.60704 1.25, -3.55271e-015 -4.75 1.25, 3.11769 1.175 1.25, 
+            3.48495 1.29436 1.25, -3.55271e-015 -4.75 1.25, 2.75044 1.29436 1.25, 3.11769 1.175 1.25, 
+            -3.55271e-015 -4.75 1.25, 2.52325 1.60704 1.25, 2.75044 1.29436 1.25, -3.55271e-015 -4.75 1.25, 
+            2.52325 1.99296 1.25, 2.52325 1.60704 1.25, -3.55271e-015 -4.75 1.25, -4.1833 -2.25 2.35, 
+            -3.55271e-015 -4.75 2.35, 1.25 -4.75 2.35, -1.66986 -4.44675 2.35, -3.55271e-015 -4.75 2.35, 
+            -4.1833 -2.25 2.35, 1.25 -2.25 2.35, 1.25 -4.75 2.35, 1.83783 -4.75 2.54111, 
+            1.25 -2.25 2.35, -4.1833 -2.25 2.35, 1.25 -4.75 2.35, 1.87236 -2.61473 2.56727, 
+            1.83783 -4.75 2.54111, 2.20096 -4.75 3.04078, 1.25 -2.25 2.35, 1.83783 -4.75 2.54111, 
+            1.58595 -2.25 2.40818, 1.87236 -2.61473 2.56727, 1.58595 -2.25 2.40818, 1.83783 -4.75 2.54111, 
+            2.25 -3.25 3.35, 2.20096 -4.75 3.04078, 2.20096 -4.75 3.65922, 2.17995 -3.16044 2.98231, 
+            2.20096 -4.75 3.04078, 2.25 -3.25 3.35, 2.02124 -2.93461 2.71345, 1.87236 -2.61473 2.56727, 
+            2.20096 -4.75 3.04078, 2.17995 -3.16044 2.98231, 2.02124 -2.93461 2.71345, 2.20096 -4.75 3.04078, 
+            2.17871 -3.15891 3.7208, 2.20096 -4.75 3.65922, 1.83783 -4.75 4.15889, 2.17871 -3.15891 3.7208, 
+            2.25 -3.25 3.35, 2.20096 -4.75 3.65922, 1.58595 -2.25 4.29182, 1.83783 -4.75 4.15889, 
+            1.25 -4.75 4.35, 1.87038 -2.60697 4.1343, 1.83783 -4.75 4.15889, 1.58595 -2.25 4.29182, 
+            2.01784 -2.92915 3.99064, 2.17871 -3.15891 3.7208, 1.83783 -4.75 4.15889, 1.87038 -2.60697 4.1343, 
+            2.01784 -2.92915 3.99064, 1.83783 -4.75 4.15889, 1.58595 -2.25 4.29182, 1.25 -4.75 4.35, 
+            1.25 -2.25 4.35, 4.55 -4.75 -1.25, -3.55271e-015 -4.75 -1.25, -3.55271e-015 -4.75 -2.35, 
+            -1.69251 -4.43819 -1.25, -3.55271e-015 -4.75 -2.35, -3.55271e-015 -4.75 -1.25, 4.67641 -4.75 -1.24359, 
+            4.55 -4.75 -1.25, -3.55271e-015 -4.75 -2.35, 4.8 -4.75 -1.22474, 4.67641 -4.75 -1.24359, 
+            -3.55271e-015 -4.75 -2.35, 1.25 -4.75 -2.35, 4.8 -4.75 -1.22474, -3.55271e-015 -4.75 -2.35, 
+            1.25 -2.25 -2.35, 1.25 -4.75 -2.35, -3.55271e-015 -4.75 -2.35, -1.66986 -4.44675 -2.35, 
+            -3.55271e-015 -4.75 -2.35, -1.69251 -4.43819 -1.25, 1.25 -2.25 -2.35, -3.55271e-015 -4.75 -2.35, 
+            -1.66986 -4.44675 -2.35, 0.246983 -0.760882 -1.25, -3.55271e-015 -4.75 -1.25, 4.55 -4.75 -1.25, 
+            -1.58477 2.06655 -1.25, -1.69251 -4.43819 -1.25, -3.55271e-015 -4.75 -1.25, -0.647216 -0.470087 -1.25, 
+            -0.8 2.22045e-016 -1.25, -3.55271e-015 -4.75 -1.25, -1.58477 2.52964 -1.25, -3.55271e-015 -4.75 -1.25, 
+            -0.8 2.22045e-016 -1.25, -0.246983 -0.760882 -1.25, -0.647216 -0.470087 -1.25, -3.55271e-015 -4.75 -1.25, 
+            0.246983 -0.760882 -1.25, -0.246983 -0.760882 -1.25, -3.55271e-015 -4.75 -1.25, -1.58477 2.52964 -1.25, 
+            -1.58477 2.06655 -1.25, -3.55271e-015 -4.75 -1.25, 4.55 4.05 -1.25, 4.55 -4.75 -1.25, 
+            4.67641 -4.75 -1.24359, 0.647216 -0.470087 -1.25, 0.246983 -0.760882 -1.25, 4.55 -4.75 -1.25, 
+            0.8 2.22045e-016 -1.25, 0.647216 -0.470087 -1.25, 4.55 -4.75 -1.25, 0.647216 0.470087 -1.25, 
+            0.8 2.22045e-016 -1.25, 4.55 -4.75 -1.25, 4.55 4.05 -1.25, 4.67641 -4.75 -1.24359, 
+            4.8 -4.75 -1.22474, 1.83783 -4.75 -4.15889, 4.8 -4.75 -5, 4.8 -4.75 -1.22474, 
+            5.29986 -4.88394 -5, 4.8 -4.75 -1.22474, 4.8 -4.75 -5, 2.20096 -4.75 -3.65922, 
+            1.83783 -4.75 -4.15889, 4.8 -4.75 -1.22474, 2.20096 -4.75 -3.04078, 2.20096 -4.75 -3.65922, 
+            4.8 -4.75 -1.22474, 1.83783 -4.75 -2.54111, 2.20096 -4.75 -3.04078, 4.8 -4.75 -1.22474, 
+            1.25 -4.75 -2.35, 1.83783 -4.75 -2.54111, 4.8 -4.75 -1.22474, 5.25379 -4.85889 -1.03304, 
+            4.8 -4.75 -1.22474, 5.29986 -4.88394 -5, 4.96448 3.85654 -1.17929, 4.55 4.05 -1.25, 
+            4.8 -4.75 -1.22474, 4.96448 3.85654 -1.17929, 4.8 -4.75 -1.22474, 5.25379 -4.85889 -1.03304, 
+            1.83783 -4.75 -4.15889, -3.55271e-015 -4.75 -5, 4.8 -4.75 -5, 1.185 2.22045e-016 -5, 
+            4.8 -4.75 -5, -3.55271e-015 -4.75 -5, 1.25 -4.75 -4.35, -3.55271e-015 -4.75 -4.35, 
+            -3.55271e-015 -4.75 -5, -1.66986 -4.44675 -4.35, -3.55271e-015 -4.75 -5, -3.55271e-015 -4.75 -4.35, 
+            1.83783 -4.75 -4.15889, 1.25 -4.75 -4.35, -3.55271e-015 -4.75 -5, -1.62952 -4.46172 -5, 
+            -3.55271e-015 -4.75 -5, -1.66986 -4.44675 -4.35, -0.366063 -1.12697 -5, -3.55271e-015 -4.75 -5, 
+            -1.62952 -4.46172 -5, 0.958536 -0.696682 -5, 1.185 2.22045e-016 -5, -3.55271e-015 -4.75 -5, 
+            0.366063 -1.12697 -5, 0.958536 -0.696682 -5, -3.55271e-015 -4.75 -5, -0.366063 -1.12697 -5, 
+            0.366063 -1.12697 -5, -3.55271e-015 -4.75 -5, -4.1833 -2.25 -4.35, -3.55271e-015 -4.75 -4.35, 
+            1.25 -4.75 -4.35, -1.66986 -4.44675 -4.35, -3.55271e-015 -4.75 -4.35, -4.1833 -2.25 -4.35, 
+            1.25 -2.25 -4.35, 1.25 -4.75 -4.35, 1.83783 -4.75 -4.15889, 1.25 -2.25 -4.35, 
+            -4.1833 -2.25 -4.35, 1.25 -4.75 -4.35, 1.87236 -2.61473 -4.13273, 1.83783 -4.75 -4.15889, 
+            2.20096 -4.75 -3.65922, 1.25 -2.25 -4.35, 1.83783 -4.75 -4.15889, 1.58595 -2.25 -4.29182, 
+            1.87236 -2.61473 -4.13273, 1.58595 -2.25 -4.29182, 1.83783 -4.75 -4.15889, 2.25 -3.25 -3.35, 
+            2.20096 -4.75 -3.65922, 2.20096 -4.75 -3.04078, 2.17995 -3.16044 -3.71769, 2.20096 -4.75 -3.65922, 
+            2.25 -3.25 -3.35, 2.02124 -2.93461 -3.98655, 1.87236 -2.61473 -4.13273, 2.20096 -4.75 -3.65922, 
+            2.17995 -3.16044 -3.71769, 2.02124 -2.93461 -3.98655, 2.20096 -4.75 -3.65922, 2.17871 -3.15891 -2.9792, 
+            2.20096 -4.75 -3.04078, 1.83783 -4.75 -2.54111, 2.17871 -3.15891 -2.9792, 2.25 -3.25 -3.35, 
+            2.20096 -4.75 -3.04078, 1.58595 -2.25 -2.40818, 1.83783 -4.75 -2.54111, 1.25 -4.75 -2.35, 
+            1.87038 -2.60697 -2.5657, 1.83783 -4.75 -2.54111, 1.58595 -2.25 -2.40818, 2.01784 -2.92915 -2.70936, 
+            2.17871 -3.15891 -2.9792, 1.83783 -4.75 -2.54111, 1.87038 -2.60697 -2.5657, 2.01784 -2.92915 -2.70936, 
+            1.83783 -4.75 -2.54111, 1.58595 -2.25 -2.40818, 1.25 -4.75 -2.35, 1.25 -2.25 -2.35, 
+            -4.68163 -0.802638 5, -4.33846 -1.93398 3.96133, -4.1833 -2.25 4.1246, 1.88246 -2.25 4.1246, 
+            -4.1833 -2.25 4.1246, -4.33846 -1.93398 3.96133, -4.1833 -2.25 4.35, -4.68163 -0.802638 5, 
+            -4.1833 -2.25 4.1246, 1.88246 -2.25 4.1246, -4.1833 -2.25 4.35, -4.1833 -2.25 4.1246, 
+            -4.68163 -0.802638 5, -4.4237 -1.73014 3.699, -4.33846 -1.93398 3.96133, 6.5 -1.80265 3.81996, 
+            -4.33846 -1.93398 3.96133, -4.4237 -1.73014 3.699, 6.5 -2.20268 4.11069, 1.88246 -2.25 4.1246, 
+            -4.33846 -1.93398 3.96133, 6.5 -1.80265 3.81996, 6.5 -2.20268 4.11069, -4.33846 -1.93398 3.96133, 
+            -4.68163 -0.802638 5, -4.45421 -1.65 3.35, -4.4237 -1.73014 3.699, 6.5 -1.80265 3.81996, 
+            -4.4237 -1.73014 3.699, -4.45421 -1.65 3.35, -4.68163 -0.802638 5, -4.42347 -1.73072 3.00012, 
+            -4.45421 -1.65 3.35, 6.5 -1.65 3.35, -4.45421 -1.65 3.35, -4.42347 -1.73072 3.00012, 
+            6.5 -1.65 3.35, 6.5 -1.80265 3.81996, -4.45421 -1.65 3.35, -4.21858 -2.18305 1.25, 
+            -4.33734 -1.93648 2.73626, -4.42347 -1.73072 3.00012, 6.5 -1.80265 2.88004, -4.42347 -1.73072 3.00012, 
+            -4.33734 -1.93648 2.73626, -4.68163 -0.802638 5, -4.21858 -2.18305 1.25, -4.42347 -1.73072 3.00012, 
+            6.5 -1.80265 2.88004, 6.5 -1.65 3.35, -4.42347 -1.73072 3.00012, -4.1833 -2.25 2.35, 
+            -4.1833 -2.25 2.5754, -4.33734 -1.93648 2.73626, 6.5 -2.20268 2.58931, -4.33734 -1.93648 2.73626, 
+            -4.1833 -2.25 2.5754, -4.21858 -2.18305 1.25, -4.1833 -2.25 2.35, -4.33734 -1.93648 2.73626, 
+            6.5 -1.80265 2.88004, -4.33734 -1.93648 2.73626, 6.5 -2.20268 2.58931, 1.25 -2.25 2.35, 
+            -4.1833 -2.25 2.5754, -4.1833 -2.25 2.35, 1.58595 -2.25 2.40818, 1.88246 -2.25 2.5754, 
+            -4.1833 -2.25 2.5754, 6.5 -2.20268 2.58931, -4.1833 -2.25 2.5754, 1.88246 -2.25 2.5754, 
+            1.25 -2.25 2.35, 1.58595 -2.25 2.40818, -4.1833 -2.25 2.5754, -1.66986 -4.44675 2.35, 
+            -4.1833 -2.25 2.35, -3.1267 -3.57572 2.35, -3.1633 -3.54335 1.25, -3.1267 -3.57572 2.35, 
+            -4.1833 -2.25 2.35, -4.21858 -2.18305 1.25, -3.1633 -3.54335 1.25, -4.1833 -2.25 2.35, 
+            -1.69251 -4.43819 1.25, -1.66986 -4.44675 2.35, -3.1267 -3.57572 2.35, -3.1633 -3.54335 1.25, 
+            -1.69251 -4.43819 1.25, -3.1267 -3.57572 2.35, -1.85739 1.69133 1.25, -1.69251 -4.43819 1.25, 
+            -3.1633 -3.54335 1.25, -0.647216 -0.470087 1.25, -1.69251 -4.43819 1.25, -0.8 2.22045e-016 1.25, 
+            -0.647216 -0.470087 1.25, -0.246983 -0.760882 1.25, -1.69251 -4.43819 1.25, -1.85739 1.69133 1.25, 
+            -1.58477 2.06655 1.25, -1.69251 -4.43819 1.25, -3.23274 -0.505638 1.25, -3.1633 -3.54335 1.25, 
+            -4.21858 -2.18305 1.25, -2.2981 1.5481 1.25, -1.85739 1.69133 1.25, -3.1633 -3.54335 1.25, 
+            -2.7388 1.69133 1.25, -2.2981 1.5481 1.25, -3.1633 -3.54335 1.25, -3.00556 -0.192956 1.25, 
+            -2.7388 1.69133 1.25, -3.1633 -3.54335 1.25, -3.23274 -0.505638 1.25, -3.00556 -0.192956 1.25, 
+            -3.1633 -3.54335 1.25, -4.60097 1.18032 1.25, -4.21858 -2.18305 1.25, -4.7196 -0.536547 1.25, 
+            -4.68163 -0.802638 5, -4.7196 -0.536547 1.25, -4.21858 -2.18305 1.25, -4.19444 0.192956 1.25, 
+            -4.21858 -2.18305 1.25, -4.60097 1.18032 1.25, -3.6 -0.625 1.25, -3.23274 -0.505638 1.25, 
+            -4.21858 -2.18305 1.25, -3.96726 -0.505638 1.25, -3.6 -0.625 1.25, -4.21858 -2.18305 1.25, 
+            -4.19444 -0.192956 1.25, -3.96726 -0.505638 1.25, -4.21858 -2.18305 1.25, -4.19444 0.192956 1.25, 
+            -4.19444 -0.192956 1.25, -4.21858 -2.18305 1.25, -4.67287 0.852368 5, -4.60097 1.18032 1.25, 
+            -4.7196 -0.536547 1.25, -4.68163 -0.802638 5, -4.67287 0.852368 5, -4.7196 -0.536547 1.25, 
+            -4.19444 0.192956 1.25, -4.60097 1.18032 1.25, -3.87805 2.74271 1.25, -3.6 0.625 1.25, 
+            -3.87805 2.74271 1.25, -2.6458 3.94485 1.25, -3.96726 0.505638 1.25, -3.87805 2.74271 1.25, 
+            -3.6 0.625 1.25, -3.96726 0.505638 1.25, -4.19444 0.192956 1.25, -3.87805 2.74271 1.25, 
+            -2.7388 2.90486 1.25, -2.6458 3.94485 1.25, -2.2981 3.0481 1.25, -2.7388 2.90486 1.25, 
+            -3.01142 2.52964 1.25, -2.6458 3.94485 1.25, -3.6 0.625 1.25, -2.6458 3.94485 1.25, 
+            -3.01142 2.52964 1.25, -4.12187 -2.3605 5, -4.67287 0.852368 5, -4.68163 -0.802638 5, 
+            -4.19444 -0.192956 5, -4.67287 0.852368 5, -4.12187 -2.3605 5, -4.19444 -0.192956 5, 
+            -4.19444 0.192956 5, -4.67287 0.852368 5, -4.1833 -2.25 4.35, -4.12187 -2.3605 5, 
+            -4.68163 -0.802638 5, -3.1267 -3.57572 4.35, -3.06151 -3.63168 5, -4.12187 -2.3605 5, 
+            -3.96726 -0.505638 5, -4.12187 -2.3605 5, -3.06151 -3.63168 5, -4.1833 -2.25 4.35, 
+            -3.1267 -3.57572 4.35, -4.12187 -2.3605 5, -3.96726 -0.505638 5, -4.19444 -0.192956 5, 
+            -4.12187 -2.3605 5, -1.66986 -4.44675 4.35, -1.62951 -4.46172 5, -3.06151 -3.63168 5, 
+            -3.00556 -0.192956 5, -3.06151 -3.63168 5, -1.62951 -4.46172 5, -3.1267 -3.57572 4.35, 
+            -1.66986 -4.44675 4.35, -3.06151 -3.63168 5, -3.6 -0.625 5, -3.96726 -0.505638 5, 
+            -3.06151 -3.63168 5, -3.23274 -0.505638 5, -3.6 -0.625 5, -3.06151 -3.63168 5, 
+            -3.00556 -0.192956 5, -3.23274 -0.505638 5, -3.06151 -3.63168 5, -1.61627 1.98578 5, 
+            -1.62951 -4.46172 5, -1.185 2.22045e-016 5, -3.00556 0.192956 5, -3.00556 -0.192956 5, 
+            -1.62951 -4.46172 5, -2.97992 1.98578 5, -3.00556 0.192956 5, -1.62951 -4.46172 5, 
+            -2.70304 1.66687 5, -2.97992 1.98578 5, -1.62951 -4.46172 5, -2.2981 1.5481 5, 
+            -2.70304 1.66687 5, -1.62951 -4.46172 5, -1.89316 1.66687 5, -2.2981 1.5481 5, 
+            -1.62951 -4.46172 5, -1.61627 1.98578 5, -1.89316 1.66687 5, -1.62951 -4.46172 5, 
+            1.25 -2.25 4.35, -1.66986 -4.44675 4.35, -3.1267 -3.57572 4.35, 1.25 -2.25 4.35, 
+            -3.1267 -3.57572 4.35, -4.1833 -2.25 4.35, 1.88246 -2.25 4.1246, 1.25 -2.25 4.35, 
+            -4.1833 -2.25 4.35, -4.21858 -2.18305 -1.25, -4.33846 -1.93398 -2.73867, -4.1833 -2.25 -2.5754, 
+            1.88246 -2.25 -2.5754, -4.1833 -2.25 -2.5754, -4.33846 -1.93398 -2.73867, -4.1833 -2.25 -2.35, 
+            -4.21858 -2.18305 -1.25, -4.1833 -2.25 -2.5754, 1.88246 -2.25 -2.5754, -4.1833 -2.25 -2.35, 
+            -4.1833 -2.25 -2.5754, -4.7196 -0.536547 -1.25, -4.4237 -1.73014 -3.001, -4.33846 -1.93398 -2.73867, 
+            6.5 -1.80265 -2.88004, -4.33846 -1.93398 -2.73867, -4.4237 -1.73014 -3.001, -4.21858 -2.18305 -1.25, 
+            -4.7196 -0.536547 -1.25, -4.33846 -1.93398 -2.73867, 6.5 -2.20268 -2.58931, 1.88246 -2.25 -2.5754, 
+            -4.33846 -1.93398 -2.73867, 6.5 -1.80265 -2.88004, 6.5 -2.20268 -2.58931, -4.33846 -1.93398 -2.73867, 
+            -4.7196 -0.536547 -1.25, -4.45421 -1.65 -3.35, -4.4237 -1.73014 -3.001, 6.5 -1.80265 -2.88004, 
+            -4.4237 -1.73014 -3.001, -4.45421 -1.65 -3.35, -4.68159 -0.802924 -5, -4.42347 -1.73072 -3.69988, 
+            -4.45421 -1.65 -3.35, 6.5 -1.65 -3.35, -4.45421 -1.65 -3.35, -4.42347 -1.73072 -3.69988, 
+            -4.7196 -0.536547 -1.25, -4.68159 -0.802924 -5, -4.45421 -1.65 -3.35, 6.5 -1.65 -3.35, 
+            6.5 -1.80265 -2.88004, -4.45421 -1.65 -3.35, -4.1218 -2.36062 -5, -4.33734 -1.93648 -3.96374, 
+            -4.42347 -1.73072 -3.69988, 6.5 -1.80265 -3.81996, -4.42347 -1.73072 -3.69988, -4.33734 -1.93648 -3.96374, 
+            -4.68159 -0.802924 -5, -4.1218 -2.36062 -5, -4.42347 -1.73072 -3.69988, 6.5 -1.80265 -3.81996, 
+            6.5 -1.65 -3.35, -4.42347 -1.73072 -3.69988, -4.1833 -2.25 -4.35, -4.1833 -2.25 -4.1246, 
+            -4.33734 -1.93648 -3.96374, 6.5 -2.20268 -4.11069, -4.33734 -1.93648 -3.96374, -4.1833 -2.25 -4.1246, 
+            -4.1218 -2.36062 -5, -4.1833 -2.25 -4.35, -4.33734 -1.93648 -3.96374, 6.5 -1.80265 -3.81996, 
+            -4.33734 -1.93648 -3.96374, 6.5 -2.20268 -4.11069, 1.25 -2.25 -4.35, -4.1833 -2.25 -4.1246, 
+            -4.1833 -2.25 -4.35, 1.58595 -2.25 -4.29182, 1.88246 -2.25 -4.1246, -4.1833 -2.25 -4.1246, 
+            6.5 -2.20268 -4.11069, -4.1833 -2.25 -4.1246, 1.88246 -2.25 -4.1246, 1.25 -2.25 -4.35, 
+            1.58595 -2.25 -4.29182, -4.1833 -2.25 -4.1246, -1.66986 -4.44675 -4.35, -4.1833 -2.25 -4.35, 
+            -3.1267 -3.57572 -4.35, -4.1218 -2.36062 -5, -3.1267 -3.57572 -4.35, -4.1833 -2.25 -4.35, 
+            -3.06148 -3.6317 -5, -1.66986 -4.44675 -4.35, -3.1267 -3.57572 -4.35, -4.1218 -2.36062 -5, 
+            -3.06148 -3.6317 -5, -3.1267 -3.57572 -4.35, -3.06148 -3.6317 -5, -1.62952 -4.46172 -5, 
+            -1.66986 -4.44675 -4.35, -1.89316 1.66687 -5, -1.62952 -4.46172 -5, -3.06148 -3.6317 -5, 
+            -0.958536 -0.696682 -5, -1.62952 -4.46172 -5, -1.185 2.22045e-016 -5, -0.958536 -0.696682 -5, 
+            -0.366063 -1.12697 -5, -1.62952 -4.46172 -5, -1.89316 1.66687 -5, -1.61627 1.98578 -5, 
+            -1.62952 -4.46172 -5, -2.2981 1.5481 -5, -1.89316 1.66687 -5, -3.06148 -3.6317 -5, 
+            -2.70304 1.66687 -5, -2.2981 1.5481 -5, -3.06148 -3.6317 -5, -2.97992 1.98578 -5, 
+            -2.70304 1.66687 -5, -3.06148 -3.6317 -5, -4.67293 0.852079 -5, -4.1218 -2.36062 -5, 
+            -4.68159 -0.802924 -5, -4.7196 -0.536547 -1.25, -4.67293 0.852079 -5, -4.68159 -0.802924 -5, 
+            -4.7196 -0.536547 -1.25, -4.60097 1.18032 -1.25, -4.67293 0.852079 -5, -2.7388 2.90486 -1.25, 
+            -2.6458 3.94485 -1.25, -3.87805 2.74271 -1.25, -2.7388 2.90486 -1.25, -2.2981 3.0481 -1.25, 
+            -2.6458 3.94485 -1.25, -1.85739 2.90486 -1.25, -2.6458 3.94485 -1.25, -2.2981 3.0481 -1.25, 
+            -4.21858 -2.18305 -1.25, -3.87805 2.74271 -1.25, -4.60097 1.18032 -1.25, -3.1633 -3.54335 -1.25, 
+            -3.87805 2.74271 -1.25, -4.21858 -2.18305 -1.25, -3.01142 2.06655 -1.25, -3.87805 2.74271 -1.25, 
+            -3.1633 -3.54335 -1.25, -3.01142 2.52964 -1.25, -2.7388 2.90486 -1.25, -3.87805 2.74271 -1.25, 
+            -3.01142 2.06655 -1.25, -3.01142 2.52964 -1.25, -3.87805 2.74271 -1.25, -4.21858 -2.18305 -1.25, 
+            -4.60097 1.18032 -1.25, -4.7196 -0.536547 -1.25, -4.1833 -2.25 -2.35, -3.1633 -3.54335 -1.25, 
+            -4.21858 -2.18305 -1.25, -3.1267 -3.57572 -2.35, -1.69251 -4.43819 -1.25, -3.1633 -3.54335 -1.25, 
+            -3.01142 2.06655 -1.25, -3.1633 -3.54335 -1.25, -1.69251 -4.43819 -1.25, -4.1833 -2.25 -2.35, 
+            -3.1267 -3.57572 -2.35, -3.1633 -3.54335 -1.25, -3.1267 -3.57572 -2.35, -1.66986 -4.44675 -2.35, 
+            -1.69251 -4.43819 -1.25, -2.7388 1.69133 -1.25, -3.01142 2.06655 -1.25, -1.69251 -4.43819 -1.25, 
+            -2.2981 1.5481 -1.25, -2.7388 1.69133 -1.25, -1.69251 -4.43819 -1.25, -1.85739 1.69133 -1.25, 
+            -2.2981 1.5481 -1.25, -1.69251 -4.43819 -1.25, -1.58477 2.06655 -1.25, -1.85739 1.69133 -1.25, 
+            -1.69251 -4.43819 -1.25, 1.25 -2.25 -2.35, -1.66986 -4.44675 -2.35, -3.1267 -3.57572 -2.35, 
+            1.25 -2.25 -2.35, -3.1267 -3.57572 -2.35, -4.1833 -2.25 -2.35, 1.88246 -2.25 -2.5754, 
+            1.25 -2.25 -2.35, -4.1833 -2.25 -2.35, -1.185 0 3.5, -1.185 2.22045e-016 5, 
+            -0.958536 -0.696682 5, -0.958536 0.696583 3.5, -0.958536 0.696682 5, -1.185 2.22045e-016 5, 
+            -0.958536 0.696583 3.5, -1.185 2.22045e-016 5, -1.185 0 3.5, -0.958536 -0.696583 3.5, 
+            -0.958536 -0.696682 5, -0.366063 -1.12697 5, -0.958536 -0.696583 3.5, -1.185 0 3.5, 
+            -0.958536 -0.696682 5, -0.366428 -1.12688 3.5, -0.366063 -1.12697 5, 0.366063 -1.12697 5, 
+            -0.958536 -0.696583 3.5, -0.366063 -1.12697 5, -0.366428 -1.12688 3.5, 0.366428 -1.12688 3.5, 
+            0.366063 -1.12697 5, 0.958536 -0.696682 5, -0.366428 -1.12688 3.5, 0.366063 -1.12697 5, 
+            0.366428 -1.12688 3.5, 0.958536 -0.696583 3.5, 0.958536 -0.696682 5, 1.185 2.22045e-016 5, 
+            0.366428 -1.12688 3.5, 0.958536 -0.696682 5, 0.958536 -0.696583 3.5, 2.4982 1.71768 5, 
+            0.958536 0.696682 5, 1.185 2.22045e-016 5, 1.185 0 3.5, 1.185 2.22045e-016 5, 
+            0.958536 0.696682 5, 2.56684 1.50475 5, 2.4982 1.71768 5, 1.185 2.22045e-016 5, 
+            0.958536 -0.696583 3.5, 1.185 2.22045e-016 5, 1.185 0 3.5, 2.4982 1.71768 5, 
+            0.366063 1.12697 5, 0.958536 0.696682 5, 0.958536 0.696583 3.5, 0.958536 0.696682 5, 
+            0.366063 1.12697 5, 1.185 0 3.5, 0.958536 0.696682 5, 0.958536 0.696583 3.5, 
+            0.366428 1.12688 3.5, 0.366063 1.12697 5, -0.366063 1.12697 5, 0.958536 0.696583 3.5, 
+            0.366063 1.12697 5, 0.366428 1.12688 3.5, -0.366428 1.12688 3.5, -0.366063 1.12697 5, 
+            -0.958536 0.696682 5, 0.366428 1.12688 3.5, -0.366063 1.12697 5, -0.366428 1.12688 3.5, 
+            -0.366428 1.12688 3.5, -0.958536 0.696682 5, -0.958536 0.696583 3.5, -3.6 0.625 1.25, 
+            -3.6 0.625 5, -3.96726 0.505638 5, -3.23274 0.505638 1.25, -3.23274 0.505638 5, 
+            -3.6 0.625 5, -3.23274 0.505638 1.25, -3.6 0.625 5, -3.6 0.625 1.25, 
+            -3.96726 0.505638 1.25, -3.96726 0.505638 5, -4.19444 0.192956 5, -3.96726 0.505638 1.25, 
+            -3.6 0.625 1.25, -3.96726 0.505638 5, -4.19444 0.192956 1.25, -4.19444 0.192956 5, 
+            -4.19444 -0.192956 5, -3.96726 0.505638 1.25, -4.19444 0.192956 5, -4.19444 0.192956 1.25, 
+            -4.19444 -0.192956 1.25, -4.19444 -0.192956 5, -3.96726 -0.505638 5, -4.19444 0.192956 1.25, 
+            -4.19444 -0.192956 5, -4.19444 -0.192956 1.25, -3.96726 -0.505638 1.25, -3.96726 -0.505638 5, 
+            -3.6 -0.625 5, -4.19444 -0.192956 1.25, -3.96726 -0.505638 5, -3.96726 -0.505638 1.25, 
+            -3.6 -0.625 1.25, -3.6 -0.625 5, -3.23274 -0.505638 5, -3.96726 -0.505638 1.25, 
+            -3.6 -0.625 5, -3.6 -0.625 1.25, -3.23274 -0.505638 1.25, -3.23274 -0.505638 5, 
+            -3.00556 -0.192956 5, -3.6 -0.625 1.25, -3.23274 -0.505638 5, -3.23274 -0.505638 1.25, 
+            -3.00556 -0.192956 1.25, -3.00556 -0.192956 5, -3.00556 0.192956 5, -3.23274 -0.505638 1.25, 
+            -3.00556 -0.192956 5, -3.00556 -0.192956 1.25, -3.00556 0.192956 1.25, -3.00556 0.192956 5, 
+            -3.23274 0.505638 5, -3.00556 -0.192956 1.25, -3.00556 0.192956 5, -3.00556 0.192956 1.25, 
+            -3.00556 0.192956 1.25, -3.23274 0.505638 5, -3.23274 0.505638 1.25, 2.75044 2.30564 1.25, 
+            2.7527 2.30728 5, 2.59733 2.14612 5, 2.75044 2.30564 1.25, 3.11769 2.425 1.25, 
+            2.7527 2.30728 5, 2.52325 1.99296 1.25, 2.59733 2.14612 5, 2.50885 1.94115 5, 
+            2.75044 2.30564 1.25, 2.59733 2.14612 5, 2.52325 1.99296 1.25, 2.52325 1.99296 1.25, 
+            2.50885 1.94115 5, 2.4982 1.71768 5, 2.52325 1.60704 1.25, 2.4982 1.71768 5, 
+            2.56684 1.50475 5, 2.52325 1.99296 1.25, 2.4982 1.71768 5, 2.52325 1.60704 1.25, 
+            2.52325 1.60704 1.25, 2.56684 1.50475 5, 2.70578 1.33 5, 2.75044 1.29436 1.25, 
+            2.70578 1.33 5, 2.89784 1.21501 5, 2.52325 1.60704 1.25, 2.70578 1.33 5, 
+            2.75044 1.29436 1.25, 2.75044 1.29436 1.25, 2.89784 1.21501 5, 3.11769 1.175 5, 
+            3.11769 1.175 1.25, 3.11769 1.175 5, 3.33755 1.21501 5, 2.75044 1.29436 1.25, 
+            3.11769 1.175 5, 3.11769 1.175 1.25, 3.48495 1.29436 1.25, 3.33755 1.21501 5, 
+            3.52961 1.33 5, 3.11769 1.175 1.25, 3.33755 1.21501 5, 3.48495 1.29436 1.25, 
+            3.48495 1.29436 1.25, 3.52961 1.33 5, 3.66854 1.50475 5, 3.71213 1.60704 1.25, 
+            3.66854 1.50475 5, 3.73718 1.71768 5, 3.48495 1.29436 1.25, 3.66854 1.50475 5, 
+            3.71213 1.60704 1.25, 3.71213 1.60704 1.25, 3.73718 1.71768 5, 3.72653 1.94115 5, 
+            3.71213 1.99296 1.25, 3.72653 1.94115 5, 3.63805 2.14612 5, 5.29986 -4.88394 5, 
+            5.66605 -5.25014 5, 3.72653 1.94115 5, 3.71213 1.60704 1.25, 3.72653 1.94115 5, 
+            3.71213 1.99296 1.25, 3.48495 2.30564 1.25, 3.63805 2.14612 5, 3.48269 2.30728 5, 
+            3.71213 1.99296 1.25, 3.63805 2.14612 5, 3.48495 2.30564 1.25, 5.63177 -5.19488 0.626187, 
+            5.66605 -5.25014 5, 5.29986 -4.88394 5, 5.75328 -5.44791 0.338353, 5.66605 -5.25014 5, 
+            5.63177 -5.19488 0.626187, 5.63177 -5.19488 0.626187, 5.29986 -4.88394 5, 5.25135 -4.85765 1.03468, 
+            -2.7388 1.69133 1.25, -2.97992 1.98578 5, -2.70304 1.66687 5, -3.01142 2.06655 1.25, 
+            -2.97992 1.98578 5, -2.7388 1.69133 1.25, -2.7388 1.69133 1.25, -2.70304 1.66687 5, 
+            -2.2981 1.5481 5, -2.2981 1.5481 1.25, -2.2981 1.5481 5, -1.89316 1.66687 5, 
+            -2.7388 1.69133 1.25, -2.2981 1.5481 5, -2.2981 1.5481 1.25, -1.85739 1.69133 1.25, 
+            -1.89316 1.66687 5, -1.61627 1.98578 5, -2.2981 1.5481 1.25, -1.89316 1.66687 5, 
+            -1.85739 1.69133 1.25, -1.85739 1.69133 1.25, -1.61627 1.98578 5, -1.58477 2.06655 1.25, 
+            -1.185 0 -3.5, -1.185 2.22045e-016 -5, -0.958536 0.696682 -5, -0.958536 -0.696583 -3.5, 
+            -0.958536 -0.696682 -5, -1.185 2.22045e-016 -5, -0.958536 -0.696583 -3.5, -1.185 2.22045e-016 -5, 
+            -1.185 0 -3.5, -0.958536 0.696583 -3.5, -0.958536 0.696682 -5, -0.366063 1.12697 -5, 
+            -0.958536 0.696583 -3.5, -1.185 0 -3.5, -0.958536 0.696682 -5, -0.366428 1.12688 -3.5, 
+            -0.366063 1.12697 -5, 0.366063 1.12697 -5, -0.366428 1.12688 -3.5, -0.958536 0.696583 -3.5, 
+            -0.366063 1.12697 -5, 0.366428 1.12688 -3.5, 0.366063 1.12697 -5, 0.958536 0.696682 -5, 
+            0.366428 1.12688 -3.5, -0.366428 1.12688 -3.5, 0.366063 1.12697 -5, 0.958536 0.696583 -3.5, 
+            0.958536 0.696682 -5, 1.185 2.22045e-016 -5, 0.958536 0.696583 -3.5, 0.366428 1.12688 -3.5, 
+            0.958536 0.696682 -5, 1.185 0 -3.5, 1.185 2.22045e-016 -5, 0.958536 -0.696682 -5, 
+            1.185 0 -3.5, 0.958536 0.696583 -3.5, 1.185 2.22045e-016 -5, 0.958536 -0.696583 -3.5, 
+            0.958536 -0.696682 -5, 0.366063 -1.12697 -5, 0.958536 -0.696583 -3.5, 1.185 0 -3.5, 
+            0.958536 -0.696682 -5, 0.366428 -1.12688 -3.5, 0.366063 -1.12697 -5, -0.366063 -1.12697 -5, 
+            0.958536 -0.696583 -3.5, 0.366063 -1.12697 -5, 0.366428 -1.12688 -3.5, -0.366428 -1.12688 -3.5, 
+            -0.366063 -1.12697 -5, -0.958536 -0.696682 -5, 0.366428 -1.12688 -3.5, -0.366063 -1.12697 -5, 
+            -0.366428 -1.12688 -3.5, -0.366428 -1.12688 -3.5, -0.958536 -0.696682 -5, -0.958536 -0.696583 -3.5, 
+            5.63283 -5.19647 -0.624361, 5.29986 -4.88394 -5, 5.66605 -5.25014 -5, 5.25379 -4.85889 -1.03304, 
+            5.29986 -4.88394 -5, 5.63283 -5.19647 -0.624361, 5.63283 -5.19647 -0.624361, 5.66605 -5.25014 -5, 
+            5.75367 -5.44914 -0.336971, -1.85739 1.69133 -1.25, -1.61627 1.98578 -5, -1.89316 1.66687 -5, 
+            -1.58477 2.06655 -1.25, -1.61627 1.98578 -5, -1.85739 1.69133 -1.25, -1.85739 1.69133 -1.25, 
+            -1.89316 1.66687 -5, -2.2981 1.5481 -5, -2.2981 1.5481 -1.25, -2.2981 1.5481 -5, 
+            -2.70304 1.66687 -5, -1.85739 1.69133 -1.25, -2.2981 1.5481 -5, -2.2981 1.5481 -1.25, 
+            -2.7388 1.69133 -1.25, -2.70304 1.66687 -5, -2.97992 1.98578 -5, -2.2981 1.5481 -1.25, 
+            -2.70304 1.66687 -5, -2.7388 1.69133 -1.25, -2.7388 1.69133 -1.25, -2.97992 1.98578 -5, 
+            -3.01142 2.06655 -1.25, -0.8 0 -3.5, -0.8 2.22045e-016 -1.25, -0.647216 -0.470087 -1.25, 
+            -0.647349 0.469956 -3.5, -0.647216 0.470087 -1.25, -0.8 2.22045e-016 -1.25, -0.647349 0.469956 -3.5, 
+            -0.8 2.22045e-016 -1.25, -0.8 0 -3.5, -0.647349 -0.469956 -3.5, -0.647216 -0.470087 -1.25, 
+            -0.246983 -0.760882 -1.25, -0.647349 -0.469956 -3.5, -0.8 0 -3.5, -0.647216 -0.470087 -1.25, 
+            -0.247321 -0.76069 -3.5, -0.246983 -0.760882 -1.25, 0.246983 -0.760882 -1.25, -0.647349 -0.469956 -3.5, 
+            -0.246983 -0.760882 -1.25, -0.247321 -0.76069 -3.5, 0.247321 -0.76069 -3.5, 0.246983 -0.760882 -1.25, 
+            0.647216 -0.470087 -1.25, -0.247321 -0.76069 -3.5, 0.246983 -0.760882 -1.25, 0.247321 -0.76069 -3.5, 
+            0.647349 -0.469956 -3.5, 0.647216 -0.470087 -1.25, 0.8 2.22045e-016 -1.25, 0.247321 -0.76069 -3.5, 
+            0.647216 -0.470087 -1.25, 0.647349 -0.469956 -3.5, 0.8 0 -3.5, 0.8 2.22045e-016 -1.25, 
+            0.647216 0.470087 -1.25, 0.647349 -0.469956 -3.5, 0.8 2.22045e-016 -1.25, 0.8 0 -3.5, 
+            0.647349 0.469956 -3.5, 0.647216 0.470087 -1.25, 0.246983 0.760882 -1.25, 0.8 0 -3.5, 
+            0.647216 0.470087 -1.25, 0.647349 0.469956 -3.5, 0.247321 0.76069 -3.5, 0.246983 0.760882 -1.25, 
+            -0.246983 0.760882 -1.25, 0.647349 0.469956 -3.5, 0.246983 0.760882 -1.25, 0.247321 0.76069 -3.5, 
+            -0.247321 0.76069 -3.5, -0.246983 0.760882 -1.25, -0.647216 0.470087 -1.25, 0.247321 0.76069 -3.5, 
+            -0.246983 0.760882 -1.25, -0.247321 0.76069 -3.5, -0.247321 0.76069 -3.5, -0.647216 0.470087 -1.25, 
+            -0.647349 0.469956 -3.5, 5.63283 -5.19647 -0.624361, 5.74859 3.75 -0.354636, 5.3624 3.75 -0.95, 
+            7.00006 3.75 6.12323e-021, 5.3624 3.75 -0.95, 5.74859 3.75 -0.354636, 5.25379 -4.85889 -1.03304, 
+            5.63283 -5.19647 -0.624361, 5.3624 3.75 -0.95, 5.16295 3.78435 -1.08938, 5.25379 -4.85889 -1.03304, 
+            5.3624 3.75 -0.95, 8 3.7542 -1, 5.16295 3.78435 -1.08938, 5.3624 3.75 -0.95, 
+            7.18997 3.75 -0.586335, 5.3624 3.75 -0.95, 7.00006 3.75 6.12323e-021, 7.68775 3.75 -0.95, 
+            5.3624 3.75 -0.95, 7.18997 3.75 -0.586335, 7.84901 3.75249 -0.988591, 5.3624 3.75 -0.95, 
+            7.68775 3.75 -0.95, 8 3.7542 -1, 5.3624 3.75 -0.95, 7.84901 3.75249 -0.988591, 
+            5.75328 -5.44791 0.338353, 5.74859 3.75 0.354636, 5.74859 3.75 -0.354636, 7.68775 3.75 0.95, 
+            5.74859 3.75 -0.354636, 5.74859 3.75 0.354636, 5.63283 -5.19647 -0.624361, 5.75367 -5.44914 -0.336971, 
+            5.74859 3.75 -0.354636, 7.18997 3.75 0.586335, 5.74859 3.75 -0.354636, 7.68775 3.75 0.95, 
+            7.00006 3.75 6.12323e-021, 5.74859 3.75 -0.354636, 7.18997 3.75 0.586335, 5.63177 -5.19488 0.626187, 
+            5.3624 3.75 0.95, 5.74859 3.75 0.354636, 7.68775 3.75 0.95, 5.74859 3.75 0.354636, 
+            5.3624 3.75 0.95, 5.75328 -5.44791 0.338353, 5.63177 -5.19488 0.626187, 5.74859 3.75 0.354636, 
+            5.25135 -4.85765 1.03468, 5.16395 3.78406 1.08884, 5.3624 3.75 0.95, 7.68775 3.75 0.95, 
+            5.3624 3.75 0.95, 5.16395 3.78406 1.08884, 5.63177 -5.19488 0.626187, 5.25135 -4.85765 1.03468, 
+            5.3624 3.75 0.95, 7.84916 3.7525 0.988614, 5.16395 3.78406 1.08884, 8 3.7542 1, 
+            7.68775 3.75 0.95, 5.16395 3.78406 1.08884, 7.84916 3.7525 0.988614, 0.246983 0.760882 1.25, 
+            -0.246983 0.760882 1.25, 4.55 4.05 1.25, 0.647216 0.470087 1.25, 0.246983 0.760882 1.25, 
+            4.55 4.05 1.25, 2.75044 2.30564 1.25, 0.647216 0.470087 1.25, 4.55 4.05 1.25, 
+            3.48495 2.30564 1.25, 3.11769 2.425 1.25, 4.55 4.05 1.25, 2.75044 2.30564 1.25, 
+            4.55 4.05 1.25, 3.11769 2.425 1.25, 3.71213 1.99296 1.25, 3.48495 2.30564 1.25, 
+            4.55 4.05 1.25, 3.71213 1.60704 1.25, 3.71213 1.99296 1.25, 4.55 4.05 1.25, 
+            5.16295 3.78435 -1.08938, 4.96448 3.85654 -1.17929, 5.25379 -4.85889 -1.03304, -0.8 0 3.5, 
+            -0.8 2.22045e-016 1.25, -0.647216 0.470087 1.25, -0.647349 -0.469956 3.5, -0.647216 -0.470087 1.25, 
+            -0.8 2.22045e-016 1.25, -0.647349 -0.469956 3.5, -0.8 2.22045e-016 1.25, -0.8 0 3.5, 
+            -0.647349 0.469956 3.5, -0.647216 0.470087 1.25, -0.246983 0.760882 1.25, -0.647349 0.469956 3.5, 
+            -0.8 0 3.5, -0.647216 0.470087 1.25, -0.247321 0.76069 3.5, -0.246983 0.760882 1.25, 
+            0.246983 0.760882 1.25, -0.247321 0.76069 3.5, -0.647349 0.469956 3.5, -0.246983 0.760882 1.25, 
+            0.247321 0.76069 3.5, 0.246983 0.760882 1.25, 0.647216 0.470087 1.25, 0.247321 0.76069 3.5, 
+            -0.247321 0.76069 3.5, 0.246983 0.760882 1.25, 2.75044 2.30564 1.25, 0.8 2.22045e-016 1.25, 
+            0.647216 0.470087 1.25, 0.647349 0.469956 3.5, 0.647216 0.470087 1.25, 0.8 2.22045e-016 1.25, 
+            0.647349 0.469956 3.5, 0.247321 0.76069 3.5, 0.647216 0.470087 1.25, 0.8 0 3.5, 
+            0.8 2.22045e-016 1.25, 0.647216 -0.470087 1.25, 2.75044 2.30564 1.25, 2.52325 1.99296 1.25, 
+            0.8 2.22045e-016 1.25, 0.8 0 3.5, 0.647349 0.469956 3.5, 0.8 2.22045e-016 1.25, 
+            0.647349 -0.469956 3.5, 0.647216 -0.470087 1.25, 0.246983 -0.760882 1.25, 0.647349 -0.469956 3.5, 
+            0.8 0 3.5, 0.647216 -0.470087 1.25, 0.247321 -0.76069 3.5, 0.246983 -0.760882 1.25, 
+            -0.246983 -0.760882 1.25, 0.647349 -0.469956 3.5, 0.246983 -0.760882 1.25, 0.247321 -0.76069 3.5, 
+            -0.247321 -0.76069 3.5, -0.246983 -0.760882 1.25, -0.647216 -0.470087 1.25, 0.247321 -0.76069 3.5, 
+            -0.246983 -0.760882 1.25, -0.247321 -0.76069 3.5, -0.247321 -0.76069 3.5, -0.647216 -0.470087 1.25, 
+            -0.647349 -0.469956 3.5, -3.00556 0.192956 1.25, -3.01142 2.06655 1.25, -2.7388 1.69133 1.25, 
+            -3.00556 -0.192956 1.25, -3.00556 0.192956 1.25, -2.7388 1.69133 1.25, -3.23274 0.505638 1.25, 
+            -3.01142 2.52964 1.25, -3.01142 2.06655 1.25, -3.00556 0.192956 1.25, -3.23274 0.505638 1.25, 
+            -3.01142 2.06655 1.25, -3.23274 0.505638 1.25, -3.6 0.625 1.25, -3.01142 2.52964 1.25, 
+            6.70096 -4.95 -1.35, 6.70096 -4.95 1.35, 6.5 -4.95 0.6, 6.5 -4.95 -0.6, 
+            6.70096 -4.95 -1.35, 6.5 -4.95 0.6, 7.04904 -4.95 0.309222, 7.25 -4.95 1.89904, 
+            6.70096 -4.95 1.35, 6.70096 -4.95 -1.35, 7.25 -4.95 -1.89904, 6.70096 -4.95 1.35, 
+            7.04904 -4.95 -0.309222, 6.70096 -4.95 1.35, 7.25 -4.95 -1.89904, 7.04904 -4.95 -0.309222, 
+            7.04904 -4.95 0.309222, 6.70096 -4.95 1.35, 8 -4.95 1, 8 -4.95 2.1, 
+            7.25 -4.95 1.89904, 7.41217 -4.95 0.808891, 8 -4.95 1, 7.25 -4.95 1.89904, 
+            7.04904 -4.95 0.309222, 7.41217 -4.95 0.808891, 7.25 -4.95 1.89904, 8.95096 -4.95 0.309222, 
+            11 -4.95 2.1, 8 -4.95 2.1, 8.58783 -4.95 0.808891, 8 -4.95 2.1, 
+            8 -4.95 1, 8.58783 -4.95 0.808891, 8.95096 -4.95 0.309222, 8 -4.95 2.1, 
+            12 -4.95 -2.1, 11.1465 -4.95 2.45347, 11 -4.95 2.1, 8.95096 -4.95 0.309222, 
+            12 -4.95 -2.1, 11 -4.95 2.1, 12 -4.95 -2.1, 11.5 -4.95 2.6, 
+            11.1465 -4.95 2.45347, 12 -4.95 -2.1, 11.8535 -4.95 2.45347, 11.5 -4.95 2.6, 
+            12 -4.95 -1.1, 12 -4.95 2.1, 11.8535 -4.95 2.45347, 12 -4.95 -2.1, 
+            12 -4.95 -1.1, 11.8535 -4.95 2.45347, 12.3535 -4.95 -1.95347, 12.3535 -4.95 -1.24653, 
+            12 -4.95 -1.1, 12 -4.95 -2.1, 12.3535 -4.95 -1.95347, 12 -4.95 -1.1, 
+            12.3535 -4.95 -1.95347, 12.5 -4.95 -1.6, 12.3535 -4.95 -1.24653, 8 -4.95 -1, 
+            8 -4.95 -2.1, 12 -4.95 -2.1, 8.58783 -4.95 -0.808891, 8 -4.95 -1, 
+            12 -4.95 -2.1, 8.95096 -4.95 -0.309222, 8.58783 -4.95 -0.808891, 12 -4.95 -2.1, 
+            8.95096 -4.95 0.309222, 8.95096 -4.95 -0.309222, 12 -4.95 -2.1, 7.41217 -4.95 -0.808891, 
+            7.25 -4.95 -1.89904, 8 -4.95 -2.1, 8 -4.95 -1, 7.41217 -4.95 -0.808891, 
+            8 -4.95 -2.1, 7.41217 -4.95 -0.808891, 7.04904 -4.95 -0.309222, 7.25 -4.95 -1.89904, 
+            8 3.7542 1, 8 -4.95 1, 7.41217 -4.95 0.808891, 8.31225 3.75 0.95, 
+            8.58783 -4.95 0.808891, 8 -4.95 1, 8.15099 3.75249 0.988591, 8 -4.95 1, 
+            8 3.7542 1, 8.15099 3.75249 0.988591, 8.31225 3.75 0.95, 8 -4.95 1, 
+            7.18997 3.75 0.586335, 7.41217 -4.95 0.808891, 7.04904 -4.95 0.309222, 7.84916 3.7525 0.988614, 
+            8 3.7542 1, 7.41217 -4.95 0.808891, 7.68775 3.75 0.95, 7.84916 3.7525 0.988614, 
+            7.41217 -4.95 0.808891, 7.18997 3.75 0.586335, 7.68775 3.75 0.95, 7.41217 -4.95 0.808891, 
+            7.00006 3.75 6.12323e-021, 7.04904 -4.95 0.309222, 7.04904 -4.95 -0.309222, 7.00006 3.75 6.12323e-021, 
+            7.18997 3.75 0.586335, 7.04904 -4.95 0.309222, 7.18997 3.75 -0.586335, 7.04904 -4.95 -0.309222, 
+            7.41217 -4.95 -0.808891, 7.18997 3.75 -0.586335, 7.00006 3.75 6.12323e-021, 7.04904 -4.95 -0.309222, 
+            7.68775 3.75 -0.95, 7.41217 -4.95 -0.808891, 8 -4.95 -1, 7.68775 3.75 -0.95, 
+            7.18997 3.75 -0.586335, 7.41217 -4.95 -0.808891, 8 3.7542 -1, 8 -4.95 -1, 
+            8.58783 -4.95 -0.808891, 7.84901 3.75249 -0.988591, 7.68775 3.75 -0.95, 8 -4.95 -1, 
+            8 3.7542 -1, 7.84901 3.75249 -0.988591, 8 -4.95 -1, 8.81003 3.75 -0.586335, 
+            8.58783 -4.95 -0.808891, 8.95096 -4.95 -0.309222, 8.15084 3.7525 -0.988614, 8 3.7542 -1, 
+            8.58783 -4.95 -0.808891, 8.81003 3.75 -0.586335, 8.31225 3.75 -0.95, 8.58783 -4.95 -0.808891, 
+            8.15084 3.7525 -0.988614, 8.58783 -4.95 -0.808891, 8.31225 3.75 -0.95, 8.99994 3.75 8.88185e-016, 
+            8.95096 -4.95 -0.309222, 8.95096 -4.95 0.309222, 8.99994 3.75 8.88185e-016, 8.81003 3.75 -0.586335, 
+            8.95096 -4.95 -0.309222, 8.81003 3.75 0.586335, 8.95096 -4.95 0.309222, 8.58783 -4.95 0.808891, 
+            8.81003 3.75 0.586335, 8.99994 3.75 8.88185e-016, 8.95096 -4.95 0.309222, 8.31225 3.75 0.95, 
+            8.81003 3.75 0.586335, 8.58783 -4.95 0.808891, 14.8 -0.75 -2.3815, 14.8 -0.75 -2, 
+            15.8 -0.75 -1.73197, 13.6093 -0.75 -2.06235, 14.8 -0.75 -2, 14.8 -0.75 -2.3815, 
+            13.8 -0.75 -1.73197, 14.8 -0.75 -2, 13.6093 -0.75 -2.06235, 15.9907 -0.75 -2.06235, 
+            15.8 -0.75 -1.73197, 16.5321 -0.75 -1, 15.9907 -0.75 -2.06235, 14.8 -0.75 -2.3815, 
+            15.8 -0.75 -1.73197, 16.8624 -0.75 -1.19075, 16.5321 -0.75 -1, 16.7999 -0.75 -1.31833e-016, 
+            16.8624 -0.75 -1.19075, 15.9907 -0.75 -2.06235, 16.5321 -0.75 -1, 16.8624 -0.75 1.19075, 
+            16.7999 -0.75 -1.31833e-016, 16.5321 -0.75 1, 16.8624 -0.75 1.19075, 16.8624 -0.75 -1.19075, 
+            16.7999 -0.75 -1.31833e-016, 15.9907 -0.75 2.06235, 16.5321 -0.75 1, 15.8 -0.75 1.73197, 
+            15.9907 -0.75 2.06235, 16.8624 -0.75 1.19075, 16.5321 -0.75 1, 15.9907 -0.75 2.06235, 
+            15.8 -0.75 1.73197, 14.8 -0.75 2, 14.8 -0.75 2.3815, 15.9907 -0.75 2.06235, 
+            14.8 -0.75 2, 13.8 -0.75 1.73197, 14.8 -0.75 2.3815, 14.8 -0.75 2, 
+            16.8624 -0.75 1.19075, 17.1814 -0.75 -1.38772e-016, 16.8624 -0.75 -1.19075, 13.8 -0.75 1.73197, 
+            13.6093 -0.75 2.06235, 14.8 -0.75 2.3815, 13.0679 -0.75 1, 12.7376 -0.75 1.19075, 
+            13.6093 -0.75 2.06235, 13.8 -0.75 1.73197, 13.0679 -0.75 1, 13.6093 -0.75 2.06235, 
+            12.7376 -0.75 -1.19075, 12.4186 -0.75 -1.38772e-016, 12.7376 -0.75 1.19075, 12.8001 -0.75 -1.31833e-016, 
+            12.7376 -0.75 -1.19075, 12.7376 -0.75 1.19075, 13.0679 -0.75 1, 12.8001 -0.75 -1.31833e-016, 
+            12.7376 -0.75 1.19075, 13.0679 -0.75 -1, 13.6093 -0.75 -2.06235, 12.7376 -0.75 -1.19075, 
+            12.8001 -0.75 -1.31833e-016, 13.0679 -0.75 -1, 12.7376 -0.75 -1.19075, 13.0679 -0.75 -1, 
+            13.8 -0.75 -1.73197, 13.6093 -0.75 -2.06235, 14.8 -4.15 2.3815, 14.8 -4.15 2, 
+            15.8 -4.15 1.73197, 13.6093 -4.15 2.06235, 14.8 -4.15 2, 14.8 -4.15 2.3815, 
+            13.8 -4.15 1.73197, 14.8 -4.15 2, 13.6093 -4.15 2.06235, 15.9907 -4.15 2.06235, 
+            15.8 -4.15 1.73197, 16.5321 -4.15 1, 15.9907 -4.15 2.06235, 14.8 -4.15 2.3815, 
+            15.8 -4.15 1.73197, 16.8624 -4.15 1.19075, 16.5321 -4.15 1, 16.7999 -4.15 1.31845e-016, 
+            16.8624 -4.15 1.19075, 15.9907 -4.15 2.06235, 16.5321 -4.15 1, 16.8624 -4.15 -1.19075, 
+            16.7999 -4.15 1.31845e-016, 16.5321 -4.15 -1, 16.8624 -4.15 -1.19075, 16.8624 -4.15 1.19075, 
+            16.7999 -4.15 1.31845e-016, 15.9907 -4.15 -2.06235, 16.5321 -4.15 -1, 15.8 -4.15 -1.73197, 
+            15.9907 -4.15 -2.06235, 16.8624 -4.15 -1.19075, 16.5321 -4.15 -1, 15.9907 -4.15 -2.06235, 
+            15.8 -4.15 -1.73197, 14.8 -4.15 -2, 14.8 -4.15 -2.3815, 15.9907 -4.15 -2.06235, 
+            14.8 -4.15 -2, 13.8 -4.15 -1.73197, 14.8 -4.15 -2.3815, 14.8 -4.15 -2, 
+            16.8624 -4.15 -1.19075, 17.1814 -4.15 1.38784e-016, 16.8624 -4.15 1.19075, 13.8 -4.15 -1.73197, 
+            13.6093 -4.15 -2.06235, 14.8 -4.15 -2.3815, 13.0679 -4.15 -1, 12.7376 -4.15 -1.19075, 
+            13.6093 -4.15 -2.06235, 13.8 -4.15 -1.73197, 13.0679 -4.15 -1, 13.6093 -4.15 -2.06235, 
+            12.7376 -4.15 1.19075, 12.4186 -4.15 1.38784e-016, 12.7376 -4.15 -1.19075, 12.8001 -4.15 1.31845e-016, 
+            12.7376 -4.15 1.19075, 12.7376 -4.15 -1.19075, 13.0679 -4.15 -1, 12.8001 -4.15 1.31845e-016, 
+            12.7376 -4.15 -1.19075, 13.0679 -4.15 1, 13.6093 -4.15 2.06235, 12.7376 -4.15 1.19075, 
+            12.8001 -4.15 1.31845e-016, 13.0679 -4.15 1, 12.7376 -4.15 1.19075, 13.0679 -4.15 1, 
+            13.8 -4.15 1.73197, 13.6093 -4.15 2.06235, 1.88246 -2.25 4.1246, 1.58595 -2.25 4.29182, 
+            1.25 -2.25 4.35, 1.87038 -2.60697 4.1343, 1.58595 -2.25 4.29182, 1.88246 -2.25 4.1246, 
+            6.5 -2.69732 4.11069, 1.87038 -2.60697 4.1343, 1.88246 -2.25 4.1246, 6.5 -2.20268 4.11069, 
+            6.5 -2.69732 4.11069, 1.88246 -2.25 4.1246, 1.87236 -2.61473 2.56727, 1.88246 -2.25 2.5754, 
+            1.58595 -2.25 2.40818, 6.5 -2.20268 2.58931, 1.88246 -2.25 2.5754, 1.87236 -2.61473 2.56727, 
+            6.5 -3.25 3.35, 2.25 -3.25 3.35, 2.17871 -3.15891 3.7208, 6.5 -3.09735 2.88004, 
+            2.17995 -3.16044 2.98231, 2.25 -3.25 3.35, 6.5 -3.09735 2.88004, 2.25 -3.25 3.35, 
+            6.5 -3.25 3.35, 6.5 -3.09735 3.81996, 2.17871 -3.15891 3.7208, 2.01784 -2.92915 3.99064, 
+            6.5 -3.09735 3.81996, 6.5 -3.25 3.35, 2.17871 -3.15891 3.7208, 6.5 -2.69732 4.11069, 
+            2.01784 -2.92915 3.99064, 1.87038 -2.60697 4.1343, 6.5 -2.69732 4.11069, 6.5 -3.09735 3.81996, 
+            2.01784 -2.92915 3.99064, 6.5 -2.69732 2.58931, 1.87236 -2.61473 2.56727, 2.02124 -2.93461 2.71345, 
+            6.5 -2.20268 2.58931, 1.87236 -2.61473 2.56727, 6.5 -2.69732 2.58931, 6.5 -3.09735 2.88004, 
+            2.02124 -2.93461 2.71345, 2.17995 -3.16044 2.98231, 6.5 -2.69732 2.58931, 2.02124 -2.93461 2.71345, 
+            6.5 -3.09735 2.88004, 1.88246 -2.25 -2.5754, 1.58595 -2.25 -2.40818, 1.25 -2.25 -2.35, 
+            1.87038 -2.60697 -2.5657, 1.58595 -2.25 -2.40818, 1.88246 -2.25 -2.5754, 6.5 -2.69732 -2.58931, 
+            1.87038 -2.60697 -2.5657, 1.88246 -2.25 -2.5754, 6.5 -2.20268 -2.58931, 6.5 -2.69732 -2.58931, 
+            1.88246 -2.25 -2.5754, 1.87236 -2.61473 -4.13273, 1.88246 -2.25 -4.1246, 1.58595 -2.25 -4.29182, 
+            6.5 -2.20268 -4.11069, 1.88246 -2.25 -4.1246, 1.87236 -2.61473 -4.13273, 6.5 -3.25 -3.35, 
+            2.25 -3.25 -3.35, 2.17871 -3.15891 -2.9792, 6.5 -3.09735 -3.81996, 2.17995 -3.16044 -3.71769, 
+            2.25 -3.25 -3.35, 6.5 -3.09735 -3.81996, 2.25 -3.25 -3.35, 6.5 -3.25 -3.35, 
+            6.5 -3.09735 -2.88004, 2.17871 -3.15891 -2.9792, 2.01784 -2.92915 -2.70936, 6.5 -3.09735 -2.88004, 
+            6.5 -3.25 -3.35, 2.17871 -3.15891 -2.9792, 6.5 -2.69732 -2.58931, 2.01784 -2.92915 -2.70936, 
+            1.87038 -2.60697 -2.5657, 6.5 -2.69732 -2.58931, 6.5 -3.09735 -2.88004, 2.01784 -2.92915 -2.70936, 
+            6.5 -2.69732 -4.11069, 1.87236 -2.61473 -4.13273, 2.02124 -2.93461 -3.98655, 6.5 -2.20268 -4.11069, 
+            1.87236 -2.61473 -4.13273, 6.5 -2.69732 -4.11069, 6.5 -3.09735 -3.81996, 2.02124 -2.93461 -3.98655, 
+            2.17995 -3.16044 -3.71769, 6.5 -2.69732 -4.11069, 2.02124 -2.93461 -3.98655, 6.5 -3.09735 -3.81996, 
+            6.5 -2.95 3.35, 6.5 -3.25 3.35, 6.5 -3.09735 3.81996, 6.5 -2.80347 2.99653, 
+            6.5 -3.25 3.35, 6.5 -2.95 3.35, 6.5 -3.09735 2.88004, 6.5 -3.25 3.35, 
+            6.5 -2.80347 2.99653, 6.5 -2.45 3.85, 6.5 -3.09735 3.81996, 6.5 -2.69732 4.11069, 
+            6.5 -2.80347 3.70347, 6.5 -2.95 3.35, 6.5 -3.09735 3.81996, 6.5 -2.45 3.85, 
+            6.5 -2.80347 3.70347, 6.5 -3.09735 3.81996, 6.5 -1.80265 3.81996, 6.5 -2.69732 4.11069, 
+            6.5 -2.20268 4.11069, 6.5 -2.45 3.85, 6.5 -2.69732 4.11069, 6.5 -1.80265 3.81996, 
+            6.5 -2.09653 3.70347, 6.5 -1.80265 3.81996, 6.5 -1.65 3.35, 6.5 -2.09653 3.70347, 
+            6.5 -2.45 3.85, 6.5 -1.80265 3.81996, 6.5 -1.95 3.35, 6.5 -2.09653 3.70347, 
+            6.5 -1.65 3.35, 6.5 -1.80265 2.88004, 6.5 -1.95 3.35, 6.5 -1.65 3.35, 
+            6.5 -1.80265 2.88004, 6.5 -2.09653 2.99653, 6.5 -1.95 3.35, 6.5 -1.80265 2.88004, 
+            6.5 -2.45 2.85, 6.5 -2.09653 2.99653, 6.5 -3.09735 2.88004, 6.5 -2.80347 2.99653, 
+            6.5 -2.45 2.85, 6.5 -2.20268 2.58931, 6.5 -3.09735 2.88004, 6.5 -2.45 2.85, 
+            6.5 -1.80265 2.88004, 6.5 -2.20268 2.58931, 6.5 -2.45 2.85, 6.5 -2.20268 2.58931, 
+            6.5 -2.69732 2.58931, 6.5 -3.09735 2.88004, 6.5 -2.95 -3.35, 6.5 -3.25 -3.35, 
+            6.5 -3.09735 -2.88004, 6.5 -2.80347 -3.70347, 6.5 -3.25 -3.35, 6.5 -2.95 -3.35, 
+            6.5 -3.09735 -3.81996, 6.5 -3.25 -3.35, 6.5 -2.80347 -3.70347, 6.5 -2.45 -2.85, 
+            6.5 -3.09735 -2.88004, 6.5 -2.69732 -2.58931, 6.5 -2.80347 -2.99653, 6.5 -2.95 -3.35, 
+            6.5 -3.09735 -2.88004, 6.5 -2.45 -2.85, 6.5 -2.80347 -2.99653, 6.5 -3.09735 -2.88004, 
+            6.5 -1.80265 -2.88004, 6.5 -2.69732 -2.58931, 6.5 -2.20268 -2.58931, 6.5 -2.45 -2.85, 
+            6.5 -2.69732 -2.58931, 6.5 -1.80265 -2.88004, 6.5 -2.09653 -2.99653, 6.5 -1.80265 -2.88004, 
+            6.5 -1.65 -3.35, 6.5 -2.09653 -2.99653, 6.5 -2.45 -2.85, 6.5 -1.80265 -2.88004, 
+            6.5 -1.95 -3.35, 6.5 -2.09653 -2.99653, 6.5 -1.65 -3.35, 6.5 -1.80265 -3.81996, 
+            6.5 -1.95 -3.35, 6.5 -1.65 -3.35, 6.5 -1.80265 -3.81996, 6.5 -2.09653 -3.70347, 
+            6.5 -1.95 -3.35, 6.5 -1.80265 -3.81996, 6.5 -2.45 -3.85, 6.5 -2.09653 -3.70347, 
+            6.5 -3.09735 -3.81996, 6.5 -2.80347 -3.70347, 6.5 -2.45 -3.85, 6.5 -2.20268 -4.11069, 
+            6.5 -3.09735 -3.81996, 6.5 -2.45 -3.85, 6.5 -1.80265 -3.81996, 6.5 -2.20268 -4.11069, 
+            6.5 -2.45 -3.85, 6.5 -2.20268 -4.11069, 6.5 -2.69732 -4.11069, 6.5 -3.09735 -3.81996, 
+            -0.8 0 -3.5, -1.185 0 -3.5, -0.958536 0.696583 -3.5, -0.647349 -0.469956 -3.5, 
+            -1.185 0 -3.5, -0.8 0 -3.5, -0.958536 -0.696583 -3.5, -1.185 0 -3.5, 
+            -0.647349 -0.469956 -3.5, -0.247321 0.76069 -3.5, -0.958536 0.696583 -3.5, -0.366428 1.12688 -3.5, 
+            -0.647349 0.469956 -3.5, -0.8 0 -3.5, -0.958536 0.696583 -3.5, -0.247321 0.76069 -3.5, 
+            -0.647349 0.469956 -3.5, -0.958536 0.696583 -3.5, 0.958536 0.696583 -3.5, -0.366428 1.12688 -3.5, 
+            0.366428 1.12688 -3.5, 0.247321 0.76069 -3.5, -0.366428 1.12688 -3.5, 0.958536 0.696583 -3.5, 
+            0.247321 0.76069 -3.5, -0.247321 0.76069 -3.5, -0.366428 1.12688 -3.5, 0.647349 0.469956 -3.5, 
+            0.958536 0.696583 -3.5, 1.185 0 -3.5, 0.647349 0.469956 -3.5, 0.247321 0.76069 -3.5, 
+            0.958536 0.696583 -3.5, 0.8 0 -3.5, 0.647349 0.469956 -3.5, 1.185 0 -3.5, 
+            0.958536 -0.696583 -3.5, 0.8 0 -3.5, 1.185 0 -3.5, 0.958536 -0.696583 -3.5, 
+            0.647349 -0.469956 -3.5, 0.8 0 -3.5, 0.958536 -0.696583 -3.5, 0.247321 -0.76069 -3.5, 
+            0.647349 -0.469956 -3.5, 0.366428 -1.12688 -3.5, -0.247321 -0.76069 -3.5, 0.247321 -0.76069 -3.5, 
+            0.958536 -0.696583 -3.5, 0.366428 -1.12688 -3.5, 0.247321 -0.76069 -3.5, -0.958536 -0.696583 -3.5, 
+            -0.647349 -0.469956 -3.5, -0.247321 -0.76069 -3.5, 0.366428 -1.12688 -3.5, -0.958536 -0.696583 -3.5, 
+            -0.247321 -0.76069 -3.5, 0.366428 -1.12688 -3.5, -0.366428 -1.12688 -3.5, -0.958536 -0.696583 -3.5, 
+            -1.185 0 3.5, -0.8 0 3.5, -0.647349 0.469956 3.5, -0.958536 -0.696583 3.5, 
+            -0.8 0 3.5, -1.185 0 3.5, -0.647349 -0.469956 3.5, -0.8 0 3.5, 
+            -0.958536 -0.696583 3.5, -0.958536 0.696583 3.5, -0.647349 0.469956 3.5, -0.247321 0.76069 3.5, 
+            -0.958536 0.696583 3.5, -1.185 0 3.5, -0.647349 0.469956 3.5, 0.366428 1.12688 3.5, 
+            -0.247321 0.76069 3.5, 0.247321 0.76069 3.5, 0.366428 1.12688 3.5, -0.958536 0.696583 3.5, 
+            -0.247321 0.76069 3.5, 0.958536 0.696583 3.5, 0.247321 0.76069 3.5, 0.647349 0.469956 3.5, 
+            0.958536 0.696583 3.5, 0.366428 1.12688 3.5, 0.247321 0.76069 3.5, 0.958536 0.696583 3.5, 
+            0.647349 0.469956 3.5, 0.8 0 3.5, 1.185 0 3.5, 0.958536 0.696583 3.5, 
+            0.8 0 3.5, 0.647349 -0.469956 3.5, 1.185 0 3.5, 0.8 0 3.5, 
+            0.366428 1.12688 3.5, -0.366428 1.12688 3.5, -0.958536 0.696583 3.5, 0.647349 -0.469956 3.5, 
+            0.958536 -0.696583 3.5, 1.185 0 3.5, -0.366428 -1.12688 3.5, 0.366428 -1.12688 3.5, 
+            0.958536 -0.696583 3.5, 0.247321 -0.76069 3.5, -0.366428 -1.12688 3.5, 0.958536 -0.696583 3.5, 
+            0.647349 -0.469956 3.5, 0.247321 -0.76069 3.5, 0.958536 -0.696583 3.5, -0.247321 -0.76069 3.5, 
+            -0.958536 -0.696583 3.5, -0.366428 -1.12688 3.5, 0.247321 -0.76069 3.5, -0.247321 -0.76069 3.5, 
+            -0.366428 -1.12688 3.5, -0.247321 -0.76069 3.5, -0.647349 -0.469956 3.5, -0.958536 -0.696583 3.5
+          ]
+        }
+        coordIndex
+        [
+          0,1,2,-1, 3,4,5,-1, 6,7,8,-1, 9,10,11,-1, 12,13,14,-1, 15,16,17,-1, 
+          18,19,20,-1, 21,22,23,-1, 24,25,26,-1, 27,28,29,-1, 30,31,32,-1, 33,34,35,-1, 
+          36,37,38,-1, 39,40,41,-1, 42,43,44,-1, 45,46,47,-1, 48,49,50,-1, 51,52,53,-1, 
+          54,55,56,-1, 57,58,59,-1, 60,61,62,-1, 63,64,65,-1, 66,67,68,-1, 69,70,71,-1, 
+          72,73,74,-1, 75,76,77,-1, 78,79,80,-1, 81,82,83,-1, 84,85,86,-1, 87,88,89,-1, 
+          90,91,92,-1, 93,94,95,-1, 96,97,98,-1, 99,100,101,-1, 102,103,104,-1, 105,106,107,-1, 
+          108,109,110,-1, 111,112,113,-1, 114,115,116,-1, 117,118,119,-1, 120,121,122,-1, 123,124,125,-1, 
+          126,127,128,-1, 129,130,131,-1, 132,133,134,-1, 135,136,137,-1, 138,139,140,-1, 141,142,143,-1, 
+          144,145,146,-1, 147,148,149,-1, 150,151,152,-1, 153,154,155,-1, 156,157,158,-1, 159,160,161,-1, 
+          162,163,164,-1, 165,166,167,-1, 168,169,170,-1, 171,172,173,-1, 174,175,176,-1, 177,178,179,-1, 
+          180,181,182,-1, 183,184,185,-1, 186,187,188,-1, 189,190,191,-1, 192,193,194,-1, 195,196,197,-1, 
+          198,199,200,-1, 201,202,203,-1, 204,205,206,-1, 207,208,209,-1, 210,211,212,-1, 213,214,215,-1, 
+          216,217,218,-1, 219,220,221,-1, 222,223,224,-1, 225,226,227,-1, 228,229,230,-1, 231,232,233,-1, 
+          234,235,236,-1, 237,238,239,-1, 240,241,242,-1, 243,244,245,-1, 246,247,248,-1, 249,250,251,-1, 
+          252,253,254,-1, 255,256,257,-1, 258,259,260,-1, 261,262,263,-1, 264,265,266,-1, 267,268,269,-1, 
+          270,271,272,-1, 273,274,275,-1, 276,277,278,-1, 279,280,281,-1, 282,283,284,-1, 285,286,287,-1, 
+          288,289,290,-1, 291,292,293,-1, 294,295,296,-1, 297,298,299,-1, 300,301,302,-1, 303,304,305,-1, 
+          306,307,308,-1, 309,310,311,-1, 312,313,314,-1, 315,316,317,-1, 318,319,320,-1, 321,322,323,-1, 
+          324,325,326,-1, 327,328,329,-1, 330,331,332,-1, 333,334,335,-1, 336,337,338,-1, 339,340,341,-1, 
+          342,343,344,-1, 345,346,347,-1, 348,349,350,-1, 351,352,353,-1, 354,355,356,-1, 357,358,359,-1, 
+          360,361,362,-1, 363,364,365,-1, 366,367,368,-1, 369,370,371,-1, 372,373,374,-1, 375,376,377,-1, 
+          378,379,380,-1, 381,382,383,-1, 384,385,386,-1, 387,388,389,-1, 390,391,392,-1, 393,394,395,-1, 
+          396,397,398,-1, 399,400,401,-1, 402,403,404,-1, 405,406,407,-1, 408,409,410,-1, 411,412,413,-1, 
+          414,415,416,-1, 417,418,419,-1, 420,421,422,-1, 423,424,425,-1, 426,427,428,-1, 429,430,431,-1, 
+          432,433,434,-1, 435,436,437,-1, 438,439,440,-1, 441,442,443,-1, 444,445,446,-1, 447,448,449,-1, 
+          450,451,452,-1, 453,454,455,-1, 456,457,458,-1, 459,460,461,-1, 462,463,464,-1, 465,466,467,-1, 
+          468,469,470,-1, 471,472,473,-1, 474,475,476,-1, 477,478,479,-1, 480,481,482,-1, 483,484,485,-1, 
+          486,487,488,-1, 489,490,491,-1, 492,493,494,-1, 495,496,497,-1, 498,499,500,-1, 501,502,503,-1, 
+          504,505,506,-1, 507,508,509,-1, 510,511,512,-1, 513,514,515,-1, 516,517,518,-1, 519,520,521,-1, 
+          522,523,524,-1, 525,526,527,-1, 528,529,530,-1, 531,532,533,-1, 534,535,536,-1, 537,538,539,-1, 
+          540,541,542,-1, 543,544,545,-1, 546,547,548,-1, 549,550,551,-1, 552,553,554,-1, 555,556,557,-1, 
+          558,559,560,-1, 561,562,563,-1, 564,565,566,-1, 567,568,569,-1, 570,571,572,-1, 573,574,575,-1, 
+          576,577,578,-1, 579,580,581,-1, 582,583,584,-1, 585,586,587,-1, 588,589,590,-1, 591,592,593,-1, 
+          594,595,596,-1, 597,598,599,-1, 600,601,602,-1, 603,604,605,-1, 606,607,608,-1, 609,610,611,-1, 
+          612,613,614,-1, 615,616,617,-1, 618,619,620,-1, 621,622,623,-1, 624,625,626,-1, 627,628,629,-1, 
+          630,631,632,-1, 633,634,635,-1, 636,637,638,-1, 639,640,641,-1, 642,643,644,-1, 645,646,647,-1, 
+          648,649,650,-1, 651,652,653,-1, 654,655,656,-1, 657,658,659,-1, 660,661,662,-1, 663,664,665,-1, 
+          666,667,668,-1, 669,670,671,-1, 672,673,674,-1, 675,676,677,-1, 678,679,680,-1, 681,682,683,-1, 
+          684,685,686,-1, 687,688,689,-1, 690,691,692,-1, 693,694,695,-1, 696,697,698,-1, 699,700,701,-1, 
+          702,703,704,-1, 705,706,707,-1, 708,709,710,-1, 711,712,713,-1, 714,715,716,-1, 717,718,719,-1, 
+          720,721,722,-1, 723,724,725,-1, 726,727,728,-1, 729,730,731,-1, 732,733,734,-1, 735,736,737,-1, 
+          738,739,740,-1, 741,742,743,-1, 744,745,746,-1, 747,748,749,-1, 750,751,752,-1, 753,754,755,-1, 
+          756,757,758,-1, 759,760,761,-1, 762,763,764,-1, 765,766,767,-1, 768,769,770,-1, 771,772,773,-1, 
+          774,775,776,-1, 777,778,779,-1, 780,781,782,-1, 783,784,785,-1, 786,787,788,-1, 789,790,791,-1, 
+          792,793,794,-1, 795,796,797,-1, 798,799,800,-1, 801,802,803,-1, 804,805,806,-1, 807,808,809,-1, 
+          810,811,812,-1, 813,814,815,-1, 816,817,818,-1, 819,820,821,-1, 822,823,824,-1, 825,826,827,-1, 
+          828,829,830,-1, 831,832,833,-1, 834,835,836,-1, 837,838,839,-1, 840,841,842,-1, 843,844,845,-1, 
+          846,847,848,-1, 849,850,851,-1, 852,853,854,-1, 855,856,857,-1, 858,859,860,-1, 861,862,863,-1, 
+          864,865,866,-1, 867,868,869,-1, 870,871,872,-1, 873,874,875,-1, 876,877,878,-1, 879,880,881,-1, 
+          882,883,884,-1, 885,886,887,-1, 888,889,890,-1, 891,892,893,-1, 894,895,896,-1, 897,898,899,-1, 
+          900,901,902,-1, 903,904,905,-1, 906,907,908,-1, 909,910,911,-1, 912,913,914,-1, 915,916,917,-1, 
+          918,919,920,-1, 921,922,923,-1, 924,925,926,-1, 927,928,929,-1, 930,931,932,-1, 933,934,935,-1, 
+          936,937,938,-1, 939,940,941,-1, 942,943,944,-1, 945,946,947,-1, 948,949,950,-1, 951,952,953,-1, 
+          954,955,956,-1, 957,958,959,-1, 960,961,962,-1, 963,964,965,-1, 966,967,968,-1, 969,970,971,-1, 
+          972,973,974,-1, 975,976,977,-1, 978,979,980,-1, 981,982,983,-1, 984,985,986,-1, 987,988,989,-1, 
+          990,991,992,-1, 993,994,995,-1, 996,997,998,-1, 999,1000,1001,-1, 1002,1003,1004,-1, 1005,1006,1007,-1, 
+          1008,1009,1010,-1, 1011,1012,1013,-1, 1014,1015,1016,-1, 1017,1018,1019,-1, 1020,1021,1022,-1, 1023,1024,1025,-1, 
+          1026,1027,1028,-1, 1029,1030,1031,-1, 1032,1033,1034,-1, 1035,1036,1037,-1, 1038,1039,1040,-1, 1041,1042,1043,-1, 
+          1044,1045,1046,-1, 1047,1048,1049,-1, 1050,1051,1052,-1, 1053,1054,1055,-1, 1056,1057,1058,-1, 1059,1060,1061,-1, 
+          1062,1063,1064,-1, 1065,1066,1067,-1, 1068,1069,1070,-1, 1071,1072,1073,-1, 1074,1075,1076,-1, 1077,1078,1079,-1, 
+          1080,1081,1082,-1, 1083,1084,1085,-1, 1086,1087,1088,-1, 1089,1090,1091,-1, 1092,1093,1094,-1, 1095,1096,1097,-1, 
+          1098,1099,1100,-1, 1101,1102,1103,-1, 1104,1105,1106,-1, 1107,1108,1109,-1, 1110,1111,1112,-1, 1113,1114,1115,-1, 
+          1116,1117,1118,-1, 1119,1120,1121,-1, 1122,1123,1124,-1, 1125,1126,1127,-1, 1128,1129,1130,-1, 1131,1132,1133,-1, 
+          1134,1135,1136,-1, 1137,1138,1139,-1, 1140,1141,1142,-1, 1143,1144,1145,-1, 1146,1147,1148,-1, 1149,1150,1151,-1, 
+          1152,1153,1154,-1, 1155,1156,1157,-1, 1158,1159,1160,-1, 1161,1162,1163,-1, 1164,1165,1166,-1, 1167,1168,1169,-1, 
+          1170,1171,1172,-1, 1173,1174,1175,-1, 1176,1177,1178,-1, 1179,1180,1181,-1, 1182,1183,1184,-1, 1185,1186,1187,-1, 
+          1188,1189,1190,-1, 1191,1192,1193,-1, 1194,1195,1196,-1, 1197,1198,1199,-1, 1200,1201,1202,-1, 1203,1204,1205,-1, 
+          1206,1207,1208,-1, 1209,1210,1211,-1, 1212,1213,1214,-1, 1215,1216,1217,-1, 1218,1219,1220,-1, 1221,1222,1223,-1, 
+          1224,1225,1226,-1, 1227,1228,1229,-1, 1230,1231,1232,-1, 1233,1234,1235,-1, 1236,1237,1238,-1, 1239,1240,1241,-1, 
+          1242,1243,1244,-1, 1245,1246,1247,-1, 1248,1249,1250,-1, 1251,1252,1253,-1, 1254,1255,1256,-1, 1257,1258,1259,-1, 
+          1260,1261,1262,-1, 1263,1264,1265,-1, 1266,1267,1268,-1, 1269,1270,1271,-1, 1272,1273,1274,-1, 1275,1276,1277,-1, 
+          1278,1279,1280,-1, 1281,1282,1283,-1, 1284,1285,1286,-1, 1287,1288,1289,-1, 1290,1291,1292,-1, 1293,1294,1295,-1, 
+          1296,1297,1298,-1, 1299,1300,1301,-1, 1302,1303,1304,-1, 1305,1306,1307,-1, 1308,1309,1310,-1, 1311,1312,1313,-1, 
+          1314,1315,1316,-1, 1317,1318,1319,-1, 1320,1321,1322,-1, 1323,1324,1325,-1, 1326,1327,1328,-1, 1329,1330,1331,-1, 
+          1332,1333,1334,-1, 1335,1336,1337,-1, 1338,1339,1340,-1, 1341,1342,1343,-1, 1344,1345,1346,-1, 1347,1348,1349,-1, 
+          1350,1351,1352,-1, 1353,1354,1355,-1, 1356,1357,1358,-1, 1359,1360,1361,-1, 1362,1363,1364,-1, 1365,1366,1367,-1, 
+          1368,1369,1370,-1, 1371,1372,1373,-1, 1374,1375,1376,-1, 1377,1378,1379,-1, 1380,1381,1382,-1, 1383,1384,1385,-1, 
+          1386,1387,1388,-1, 1389,1390,1391,-1, 1392,1393,1394,-1, 1395,1396,1397,-1, 1398,1399,1400,-1, 1401,1402,1403,-1, 
+          1404,1405,1406,-1, 1407,1408,1409,-1, 1410,1411,1412,-1, 1413,1414,1415,-1, 1416,1417,1418,-1, 1419,1420,1421,-1, 
+          1422,1423,1424,-1, 1425,1426,1427,-1, 1428,1429,1430,-1, 1431,1432,1433,-1, 1434,1435,1436,-1, 1437,1438,1439,-1, 
+          1440,1441,1442,-1, 1443,1444,1445,-1, 1446,1447,1448,-1, 1449,1450,1451,-1, 1452,1453,1454,-1, 1455,1456,1457,-1, 
+          1458,1459,1460,-1, 1461,1462,1463,-1, 1464,1465,1466,-1, 1467,1468,1469,-1, 1470,1471,1472,-1, 1473,1474,1475,-1, 
+          1476,1477,1478,-1, 1479,1480,1481,-1, 1482,1483,1484,-1, 1485,1486,1487,-1, 1488,1489,1490,-1, 1491,1492,1493,-1, 
+          1494,1495,1496,-1, 1497,1498,1499,-1, 1500,1501,1502,-1, 1503,1504,1505,-1, 1506,1507,1508,-1, 1509,1510,1511,-1, 
+          1512,1513,1514,-1, 1515,1516,1517,-1, 1518,1519,1520,-1, 1521,1522,1523,-1, 1524,1525,1526,-1, 1527,1528,1529,-1, 
+          1530,1531,1532,-1, 1533,1534,1535,-1, 1536,1537,1538,-1, 1539,1540,1541,-1, 1542,1543,1544,-1, 1545,1546,1547,-1, 
+          1548,1549,1550,-1, 1551,1552,1553,-1, 1554,1555,1556,-1, 1557,1558,1559,-1, 1560,1561,1562,-1, 1563,1564,1565,-1, 
+          1566,1567,1568,-1, 1569,1570,1571,-1, 1572,1573,1574,-1, 1575,1576,1577,-1, 1578,1579,1580,-1, 1581,1582,1583,-1, 
+          1584,1585,1586,-1, 1587,1588,1589,-1, 1590,1591,1592,-1, 1593,1594,1595,-1, 1596,1597,1598,-1, 1599,1600,1601,-1, 
+          1602,1603,1604,-1, 1605,1606,1607,-1, 1608,1609,1610,-1, 1611,1612,1613,-1, 1614,1615,1616,-1, 1617,1618,1619,-1, 
+          1620,1621,1622,-1, 1623,1624,1625,-1, 1626,1627,1628,-1, 1629,1630,1631,-1, 1632,1633,1634,-1, 1635,1636,1637,-1, 
+          1638,1639,1640,-1, 1641,1642,1643,-1, 1644,1645,1646,-1, 1647,1648,1649,-1, 1650,1651,1652,-1, 1653,1654,1655,-1, 
+          1656,1657,1658,-1, 1659,1660,1661,-1, 1662,1663,1664,-1, 1665,1666,1667,-1, 1668,1669,1670,-1, 1671,1672,1673,-1, 
+          1674,1675,1676,-1, 1677,1678,1679,-1, 1680,1681,1682,-1, 1683,1684,1685,-1, 1686,1687,1688,-1, 1689,1690,1691,-1, 
+          1692,1693,1694,-1, 1695,1696,1697,-1, 1698,1699,1700,-1, 1701,1702,1703,-1, 1704,1705,1706,-1, 1707,1708,1709,-1, 
+          1710,1711,1712,-1, 1713,1714,1715,-1, 1716,1717,1718,-1, 1719,1720,1721,-1, 1722,1723,1724,-1, 1725,1726,1727,-1, 
+          1728,1729,1730,-1, 1731,1732,1733,-1, 1734,1735,1736,-1, 1737,1738,1739,-1, 1740,1741,1742,-1, 1743,1744,1745,-1, 
+          1746,1747,1748,-1, 1749,1750,1751,-1, 1752,1753,1754,-1, 1755,1756,1757,-1, 1758,1759,1760,-1, 1761,1762,1763,-1, 
+          1764,1765,1766,-1, 1767,1768,1769,-1, 1770,1771,1772,-1, 1773,1774,1775,-1, 1776,1777,1778,-1, 1779,1780,1781,-1, 
+          1782,1783,1784,-1, 1785,1786,1787,-1, 1788,1789,1790,-1, 1791,1792,1793,-1, 1794,1795,1796,-1, 1797,1798,1799,-1, 
+          1800,1801,1802,-1, 1803,1804,1805,-1, 1806,1807,1808,-1, 1809,1810,1811,-1, 1812,1813,1814,-1, 1815,1816,1817,-1, 
+          1818,1819,1820,-1, 1821,1822,1823,-1, 1824,1825,1826,-1, 1827,1828,1829,-1, 1830,1831,1832,-1, 1833,1834,1835,-1, 
+          1836,1837,1838,-1, 1839,1840,1841,-1, 1842,1843,1844,-1, 1845,1846,1847,-1, 1848,1849,1850,-1, 1851,1852,1853,-1, 
+          1854,1855,1856,-1, 1857,1858,1859,-1, 1860,1861,1862,-1, 1863,1864,1865,-1, 1866,1867,1868,-1, 1869,1870,1871,-1, 
+          1872,1873,1874,-1, 1875,1876,1877,-1, 1878,1879,1880,-1, 1881,1882,1883,-1, 1884,1885,1886,-1, 1887,1888,1889,-1, 
+          1890,1891,1892,-1, 1893,1894,1895,-1, 1896,1897,1898,-1, 1899,1900,1901,-1, 1902,1903,1904,-1, 1905,1906,1907,-1, 
+          1908,1909,1910,-1, 1911,1912,1913,-1, 1914,1915,1916,-1, 1917,1918,1919,-1, 1920,1921,1922,-1, 1923,1924,1925,-1, 
+          1926,1927,1928,-1, 1929,1930,1931,-1, 1932,1933,1934,-1, 1935,1936,1937,-1, 1938,1939,1940,-1, 1941,1942,1943,-1, 
+          1944,1945,1946,-1, 1947,1948,1949,-1, 1950,1951,1952,-1, 1953,1954,1955,-1, 1956,1957,1958,-1, 1959,1960,1961,-1, 
+          1962,1963,1964,-1, 1965,1966,1967,-1, 1968,1969,1970,-1, 1971,1972,1973,-1, 1974,1975,1976,-1, 1977,1978,1979,-1, 
+          1980,1981,1982,-1, 1983,1984,1985,-1, 1986,1987,1988,-1, 1989,1990,1991,-1, 1992,1993,1994,-1, 1995,1996,1997,-1, 
+          1998,1999,2000,-1, 2001,2002,2003,-1, 2004,2005,2006,-1, 2007,2008,2009,-1, 2010,2011,2012,-1, 2013,2014,2015,-1, 
+          2016,2017,2018,-1, 2019,2020,2021,-1, 2022,2023,2024,-1, 2025,2026,2027,-1, 2028,2029,2030,-1, 2031,2032,2033,-1, 
+          2034,2035,2036,-1, 2037,2038,2039,-1, 2040,2041,2042,-1, 2043,2044,2045,-1, 2046,2047,2048,-1, 2049,2050,2051,-1, 
+          2052,2053,2054,-1, 2055,2056,2057,-1, 2058,2059,2060,-1, 2061,2062,2063,-1, 2064,2065,2066,-1, 2067,2068,2069,-1, 
+          2070,2071,2072,-1, 2073,2074,2075,-1, 2076,2077,2078,-1, 2079,2080,2081,-1, 2082,2083,2084,-1, 2085,2086,2087,-1, 
+          2088,2089,2090,-1, 2091,2092,2093,-1, 2094,2095,2096,-1, 2097,2098,2099,-1, 2100,2101,2102,-1, 2103,2104,2105,-1, 
+          2106,2107,2108,-1, 2109,2110,2111,-1, 2112,2113,2114,-1, 2115,2116,2117,-1, 2118,2119,2120,-1, 2121,2122,2123,-1, 
+          2124,2125,2126,-1, 2127,2128,2129,-1, 2130,2131,2132,-1, 2133,2134,2135,-1, 2136,2137,2138,-1, 2139,2140,2141,-1, 
+          2142,2143,2144,-1, 2145,2146,2147,-1, 2148,2149,2150,-1, 2151,2152,2153,-1, 2154,2155,2156,-1, 2157,2158,2159,-1, 
+          2160,2161,2162,-1, 2163,2164,2165,-1, 2166,2167,2168,-1, 2169,2170,2171,-1, 2172,2173,2174,-1, 2175,2176,2177,-1, 
+          2178,2179,2180,-1, 2181,2182,2183,-1, 2184,2185,2186,-1, 2187,2188,2189,-1, 2190,2191,2192,-1, 2193,2194,2195,-1, 
+          2196,2197,2198,-1, 2199,2200,2201,-1, 2202,2203,2204,-1, 2205,2206,2207,-1, 2208,2209,2210,-1, 2211,2212,2213,-1, 
+          2214,2215,2216,-1, 2217,2218,2219,-1, 2220,2221,2222,-1, 2223,2224,2225,-1, 2226,2227,2228,-1, 2229,2230,2231,-1, 
+          2232,2233,2234,-1, 2235,2236,2237,-1, 2238,2239,2240,-1, 2241,2242,2243,-1, 2244,2245,2246,-1, 2247,2248,2249,-1, 
+          2250,2251,2252,-1, 2253,2254,2255,-1, 2256,2257,2258,-1, 2259,2260,2261,-1, 2262,2263,2264,-1, 2265,2266,2267,-1, 
+          2268,2269,2270,-1, 2271,2272,2273,-1, 2274,2275,2276,-1, 2277,2278,2279,-1, 2280,2281,2282,-1, 2283,2284,2285,-1, 
+          2286,2287,2288,-1, 2289,2290,2291,-1, 2292,2293,2294,-1, 2295,2296,2297,-1, 2298,2299,2300,-1, 2301,2302,2303,-1, 
+          2304,2305,2306,-1, 2307,2308,2309,-1, 2310,2311,2312,-1, 2313,2314,2315,-1, 2316,2317,2318,-1, 2319,2320,2321,-1, 
+          2322,2323,2324,-1, 2325,2326,2327,-1, 2328,2329,2330,-1, 2331,2332,2333,-1, 2334,2335,2336,-1, 2337,2338,2339,-1, 
+          2340,2341,2342,-1, 2343,2344,2345,-1, 2346,2347,2348,-1, 2349,2350,2351,-1, 2352,2353,2354,-1, 2355,2356,2357,-1, 
+          2358,2359,2360,-1, 2361,2362,2363,-1, 2364,2365,2366,-1, 2367,2368,2369,-1, 2370,2371,2372,-1, 2373,2374,2375,-1, 
+          2376,2377,2378,-1, 2379,2380,2381,-1, 2382,2383,2384,-1, 2385,2386,2387,-1, 2388,2389,2390,-1, 2391,2392,2393,-1, 
+          2394,2395,2396,-1, 2397,2398,2399,-1, 2400,2401,2402,-1, 2403,2404,2405,-1, 2406,2407,2408,-1, 2409,2410,2411,-1, 
+          2412,2413,2414,-1, 2415,2416,2417,-1, 2418,2419,2420,-1, 2421,2422,2423,-1, 2424,2425,2426,-1, 2427,2428,2429,-1, 
+          2430,2431,2432,-1, 2433,2434,2435,-1, 2436,2437,2438,-1, 2439,2440,2441,-1, 2442,2443,2444,-1, 2445,2446,2447,-1, 
+          2448,2449,2450,-1, 2451,2452,2453,-1, 2454,2455,2456,-1, 2457,2458,2459,-1, 2460,2461,2462,-1, 2463,2464,2465,-1, 
+          2466,2467,2468,-1, 2469,2470,2471,-1, 2472,2473,2474,-1, 2475,2476,2477,-1, 2478,2479,2480,-1, 2481,2482,2483,-1, 
+          2484,2485,2486,-1, 2487,2488,2489,-1, 2490,2491,2492,-1, 2493,2494,2495,-1, 2496,2497,2498,-1, 2499,2500,2501,-1, 
+          2502,2503,2504,-1, 2505,2506,2507,-1, 2508,2509,2510,-1, 2511,2512,2513,-1, 2514,2515,2516,-1, 2517,2518,2519,-1, 
+          2520,2521,2522,-1, 2523,2524,2525,-1, 2526,2527,2528,-1, 2529,2530,2531,-1, 2532,2533,2534,-1, 2535,2536,2537,-1, 
+          2538,2539,2540,-1, 2541,2542,2543,-1, 2544,2545,2546,-1, 2547,2548,2549,-1, 2550,2551,2552,-1, 2553,2554,2555,-1, 
+          2556,2557,2558,-1, 2559,2560,2561,-1, 2562,2563,2564,-1, 2565,2566,2567,-1, 2568,2569,2570,-1, 2571,2572,2573,-1, 
+          2574,2575,2576,-1, 2577,2578,2579,-1, 2580,2581,2582,-1, 2583,2584,2585,-1, 2586,2587,2588,-1, 2589,2590,2591,-1, 
+          2592,2593,2594,-1, 2595,2596,2597,-1, 2598,2599,2600,-1, 2601,2602,2603,-1, 2604,2605,2606,-1, 2607,2608,2609,-1, 
+          2610,2611,2612,-1, 2613,2614,2615,-1, 2616,2617,2618,-1, 2619,2620,2621,-1, 2622,2623,2624,-1, 2625,2626,2627,-1, 
+          2628,2629,2630,-1, 2631,2632,2633,-1, 2634,2635,2636,-1, 2637,2638,2639,-1, 2640,2641,2642,-1, 2643,2644,2645,-1, 
+          2646,2647,2648,-1, 2649,2650,2651,-1, 2652,2653,2654,-1, 2655,2656,2657,-1, 2658,2659,2660,-1, 2661,2662,2663,-1, 
+          2664,2665,2666,-1, 2667,2668,2669,-1, 2670,2671,2672,-1, 2673,2674,2675,-1, 2676,2677,2678,-1, 2679,2680,2681,-1, 
+          2682,2683,2684,-1, 2685,2686,2687,-1, 2688,2689,2690,-1, 2691,2692,2693,-1, 2694,2695,2696,-1, 2697,2698,2699,-1, 
+          2700,2701,2702,-1, 2703,2704,2705,-1, 2706,2707,2708,-1, 2709,2710,2711,-1, 2712,2713,2714,-1, 2715,2716,2717,-1, 
+          2718,2719,2720,-1, 2721,2722,2723,-1, 2724,2725,2726,-1, 2727,2728,2729,-1, 2730,2731,2732,-1, 2733,2734,2735,-1, 
+          2736,2737,2738,-1, 2739,2740,2741,-1, 2742,2743,2744,-1, 2745,2746,2747,-1, 2748,2749,2750,-1, 2751,2752,2753,-1, 
+          2754,2755,2756,-1, 2757,2758,2759,-1, 2760,2761,2762,-1, 2763,2764,2765,-1, 2766,2767,2768,-1, 2769,2770,2771,-1, 
+          2772,2773,2774,-1, 2775,2776,2777,-1, 2778,2779,2780,-1, 2781,2782,2783,-1, 2784,2785,2786,-1, 2787,2788,2789,-1, 
+          2790,2791,2792,-1, 2793,2794,2795,-1, 2796,2797,2798,-1, 2799,2800,2801,-1, 2802,2803,2804,-1, 2805,2806,2807,-1, 
+          2808,2809,2810,-1, 2811,2812,2813,-1, 2814,2815,2816,-1, 2817,2818,2819,-1, 2820,2821,2822,-1, 2823,2824,2825,-1, 
+          2826,2827,2828,-1, 2829,2830,2831,-1, 2832,2833,2834,-1, 2835,2836,2837,-1, 2838,2839,2840,-1, 2841,2842,2843,-1, 
+          2844,2845,2846,-1, 2847,2848,2849,-1, 2850,2851,2852,-1, 2853,2854,2855,-1, 2856,2857,2858,-1, 2859,2860,2861,-1, 
+          2862,2863,2864,-1, 2865,2866,2867,-1, 2868,2869,2870,-1, 2871,2872,2873,-1, 2874,2875,2876,-1, 2877,2878,2879,-1, 
+          2880,2881,2882,-1, 2883,2884,2885,-1, 2886,2887,2888,-1, 2889,2890,2891,-1, 2892,2893,2894,-1, 2895,2896,2897,-1, 
+          2898,2899,2900,-1, 2901,2902,2903,-1, 2904,2905,2906,-1, 2907,2908,2909,-1, 2910,2911,2912,-1, 2913,2914,2915,-1, 
+          2916,2917,2918,-1, 2919,2920,2921,-1, 2922,2923,2924,-1, 2925,2926,2927,-1, 2928,2929,2930,-1, 2931,2932,2933,-1, 
+          2934,2935,2936,-1, 2937,2938,2939,-1, 2940,2941,2942,-1, 2943,2944,2945,-1, 2946,2947,2948,-1, 2949,2950,2951,-1, 
+          2952,2953,2954,-1, 2955,2956,2957,-1, 2958,2959,2960,-1, 2961,2962,2963,-1, 2964,2965,2966,-1, 2967,2968,2969,-1, 
+          2970,2971,2972,-1, 2973,2974,2975,-1, 2976,2977,2978,-1, 2979,2980,2981,-1, 2982,2983,2984,-1, 2985,2986,2987,-1, 
+          2988,2989,2990,-1, 2991,2992,2993,-1, 2994,2995,2996,-1, 2997,2998,2999,-1, 3000,3001,3002,-1, 3003,3004,3005,-1, 
+          3006,3007,3008,-1, 3009,3010,3011,-1, 3012,3013,3014,-1, 3015,3016,3017,-1, 3018,3019,3020,-1, 3021,3022,3023,-1, 
+          3024,3025,3026,-1, 3027,3028,3029,-1, 3030,3031,3032,-1, 3033,3034,3035,-1, 3036,3037,3038,-1, 3039,3040,3041,-1, 
+          3042,3043,3044,-1, 3045,3046,3047,-1, 3048,3049,3050,-1, 3051,3052,3053,-1, 3054,3055,3056,-1, 3057,3058,3059,-1, 
+          3060,3061,3062,-1, 3063,3064,3065,-1, 3066,3067,3068,-1, 3069,3070,3071,-1, 3072,3073,3074,-1, 3075,3076,3077,-1, 
+          3078,3079,3080,-1, 3081,3082,3083,-1, 3084,3085,3086,-1, 3087,3088,3089,-1, 3090,3091,3092,-1, 3093,3094,3095,-1, 
+          3096,3097,3098,-1, 3099,3100,3101,-1, 3102,3103,3104,-1, 3105,3106,3107,-1, 3108,3109,3110,-1, 3111,3112,3113,-1, 
+          3114,3115,3116,-1, 3117,3118,3119,-1, 3120,3121,3122,-1, 3123,3124,3125,-1, 3126,3127,3128,-1, 3129,3130,3131,-1, 
+          3132,3133,3134,-1, 3135,3136,3137,-1, 3138,3139,3140,-1, 3141,3142,3143,-1, 3144,3145,3146,-1, 3147,3148,3149,-1, 
+          3150,3151,3152,-1, 3153,3154,3155,-1, 3156,3157,3158,-1, 3159,3160,3161,-1, 3162,3163,3164,-1, 3165,3166,3167,-1, 
+          3168,3169,3170,-1, 3171,3172,3173,-1, 3174,3175,3176,-1, 3177,3178,3179,-1, 3180,3181,3182,-1, 3183,3184,3185,-1, 
+          3186,3187,3188,-1, 3189,3190,3191,-1, 3192,3193,3194,-1, 3195,3196,3197,-1, 3198,3199,3200,-1, 3201,3202,3203,-1, 
+          3204,3205,3206,-1, 3207,3208,3209,-1, 3210,3211,3212,-1, 3213,3214,3215,-1, 3216,3217,3218,-1, 3219,3220,3221,-1, 
+          3222,3223,3224,-1, 3225,3226,3227,-1, 3228,3229,3230,-1, 3231,3232,3233,-1, 3234,3235,3236,-1, 3237,3238,3239,-1, 
+          3240,3241,3242,-1, 3243,3244,3245,-1, 3246,3247,3248,-1, 3249,3250,3251,-1, 3252,3253,3254,-1, 3255,3256,3257,-1, 
+          3258,3259,3260,-1, 3261,3262,3263,-1, 3264,3265,3266,-1, 3267,3268,3269,-1, 3270,3271,3272,-1, 3273,3274,3275,-1, 
+          3276,3277,3278,-1, 3279,3280,3281,-1, 3282,3283,3284,-1, 3285,3286,3287,-1, 3288,3289,3290,-1, 3291,3292,3293,-1, 
+          3294,3295,3296,-1, 3297,3298,3299,-1, 3300,3301,3302,-1, 3303,3304,3305,-1, 3306,3307,3308,-1, 3309,3310,3311,-1, 
+          3312,3313,3314,-1, 3315,3316,3317,-1, 3318,3319,3320,-1, 3321,3322,3323,-1, 3324,3325,3326,-1, 3327,3328,3329,-1, 
+          3330,3331,3332,-1, 3333,3334,3335,-1, 3336,3337,3338,-1, 3339,3340,3341,-1, 3342,3343,3344,-1, 3345,3346,3347,-1, 
+          3348,3349,3350,-1, 3351,3352,3353,-1, 3354,3355,3356,-1, 3357,3358,3359,-1, 3360,3361,3362,-1, 3363,3364,3365,-1, 
+          3366,3367,3368,-1, 3369,3370,3371,-1, 3372,3373,3374,-1, 3375,3376,3377,-1, 3378,3379,3380,-1, 3381,3382,3383,-1, 
+          3384,3385,3386,-1, 3387,3388,3389,-1, 3390,3391,3392,-1, 3393,3394,3395,-1, 3396,3397,3398,-1, 3399,3400,3401,-1, 
+          3402,3403,3404,-1, 3405,3406,3407,-1, 3408,3409,3410,-1, 3411,3412,3413,-1, 3414,3415,3416,-1, 3417,3418,3419,-1, 
+          3420,3421,3422,-1, 3423,3424,3425,-1, 3426,3427,3428,-1, 3429,3430,3431,-1, 3432,3433,3434,-1, 3435,3436,3437,-1, 
+          3438,3439,3440,-1, 3441,3442,3443,-1, 3444,3445,3446,-1, 3447,3448,3449,-1, 3450,3451,3452,-1, 3453,3454,3455,-1, 
+          3456,3457,3458,-1, 3459,3460,3461,-1, 3462,3463,3464,-1, 3465,3466,3467,-1, 3468,3469,3470,-1, 3471,3472,3473,-1, 
+          3474,3475,3476,-1, 3477,3478,3479,-1, 3480,3481,3482,-1, 3483,3484,3485,-1, 3486,3487,3488,-1, 3489,3490,3491,-1, 
+          3492,3493,3494,-1, 3495,3496,3497,-1, 3498,3499,3500,-1, 3501,3502,3503,-1, 3504,3505,3506,-1, 3507,3508,3509,-1, 
+          3510,3511,3512,-1, 3513,3514,3515,-1, 3516,3517,3518,-1, 3519,3520,3521,-1, 3522,3523,3524,-1, 3525,3526,3527,-1, 
+          3528,3529,3530,-1, 3531,3532,3533,-1, 3534,3535,3536,-1, 3537,3538,3539,-1, 3540,3541,3542,-1, 3543,3544,3545,-1, 
+          3546,3547,3548,-1, 3549,3550,3551,-1, 3552,3553,3554,-1, 3555,3556,3557,-1, 3558,3559,3560,-1, 3561,3562,3563,-1, 
+          3564,3565,3566,-1, 3567,3568,3569,-1, 3570,3571,3572,-1, 3573,3574,3575,-1, 3576,3577,3578,-1, 3579,3580,3581,-1, 
+          3582,3583,3584,-1, 3585,3586,3587,-1, 3588,3589,3590,-1, 3591,3592,3593,-1, 3594,3595,3596,-1, 3597,3598,3599,-1, 
+          3600,3601,3602,-1, 3603,3604,3605,-1, 3606,3607,3608,-1, 3609,3610,3611,-1, 3612,3613,3614,-1, 3615,3616,3617,-1, 
+          3618,3619,3620,-1, 3621,3622,3623,-1, 3624,3625,3626,-1, 3627,3628,3629,-1, 3630,3631,3632,-1, 3633,3634,3635,-1, 
+          3636,3637,3638,-1, 3639,3640,3641,-1, 3642,3643,3644,-1, 3645,3646,3647,-1, 3648,3649,3650,-1, 3651,3652,3653,-1, 
+          3654,3655,3656,-1, 3657,3658,3659,-1, 3660,3661,3662,-1, 3663,3664,3665,-1, 3666,3667,3668,-1, 3669,3670,3671,-1, 
+          3672,3673,3674,-1, 3675,3676,3677,-1, 3678,3679,3680,-1, 3681,3682,3683,-1, 3684,3685,3686,-1, 3687,3688,3689,-1, 
+          3690,3691,3692,-1, 3693,3694,3695,-1, 3696,3697,3698,-1, 3699,3700,3701,-1, 3702,3703,3704,-1, 3705,3706,3707,-1, 
+          3708,3709,3710,-1, 3711,3712,3713,-1, 3714,3715,3716,-1, 3717,3718,3719,-1, 3720,3721,3722,-1, 3723,3724,3725,-1, 
+          3726,3727,3728,-1, 3729,3730,3731,-1, 3732,3733,3734,-1, 3735,3736,3737,-1, 3738,3739,3740,-1, 3741,3742,3743,-1, 
+          3744,3745,3746,-1, 3747,3748,3749,-1, 3750,3751,3752,-1, 3753,3754,3755,-1, 3756,3757,3758,-1, 3759,3760,3761,-1, 
+          3762,3763,3764,-1, 3765,3766,3767,-1, 3768,3769,3770,-1, 3771,3772,3773,-1, 3774,3775,3776,-1, 3777,3778,3779,-1, 
+          3780,3781,3782,-1, 3783,3784,3785,-1, 3786,3787,3788,-1, 3789,3790,3791,-1, 3792,3793,3794,-1, 3795,3796,3797,-1, 
+          3798,3799,3800,-1, 3801,3802,3803,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger1.wrl b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger1.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..b3e371e52e484997b42fb8888e2db9c4bd77650f
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger1.wrl
@@ -0,0 +1,866 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            3.1 0.8 -3.8, 3.1 -1.1 -3.8, 3.1 -1.1 -5.8, 2.07482 -3.57482 -3.8, 
+            3.1 -1.1 -5.8, 3.1 -1.1 -3.8, 3.1 0.8 -5.8, 3.1 0.8 -3.8, 
+            3.1 -1.1 -5.8, 2.96764 -2.05342 -5.8, 3.1 0.8 -5.8, 3.1 -1.1 -5.8, 
+            2.96764 -2.05342 -5.8, 3.1 -1.1 -5.8, 2.07482 -3.57482 -3.8, 0.866025 -0.5 -3.8, 
+            3.1 -1.1 -3.8, 3.1 0.8 -3.8, 2.07482 -3.57482 -3.8, 3.1 -1.1 -3.8, 
+            -5.4 -4.6 -3.8, 5.32907e-015 -1 -3.8, -5.4 -4.6 -3.8, 3.1 -1.1 -3.8, 
+            0.866025 -0.5 -3.8, 5.32907e-015 -1 -3.8, 3.1 -1.1 -3.8, 2.23397 2.3 -3.8, 
+            3.1 0.8 -3.8, 3.1 0.8 -5.8, 5.32907e-015 1 -3.8, 3.1 0.8 -3.8, 
+            2.23397 2.3 -3.8, 0.866025 0.5 -3.8, 0.866025 -0.5 -3.8, 3.1 0.8 -3.8, 
+            5.32907e-015 1 -3.8, 0.866025 0.5 -3.8, 3.1 0.8 -3.8, 2.69585 1.5 -5.8, 
+            2.23397 2.3 -3.8, 3.1 0.8 -5.8, 2.96764 -2.05342 -5.8, 2.69585 1.5 -5.8, 
+            3.1 0.8 -5.8, -3.4 -2.23177 -6.10485, -20.3118 -1.5 -6.32456, -3.4 -1.5 -6.32456, 
+            -3.4 -1.5 -5.8, -3.4 -1.5 -6.32456, -20.3118 -1.5 -6.32456, -3.4 -2.23177 -6.10485, 
+            -3.4 -1.5 -6.32456, -3.4 -2.93428 -5.8, -3.4 -1.5 -5.8, -3.4 -2.93428 -5.8, 
+            -3.4 -1.5 -6.32456, -3.4 -2.93428 -5.8, -19.9364 -3.62894 -5.39266, -20.3118 -1.5 -6.32456, 
+            -20.3118 -1.5 -5.8, -20.3118 -1.5 -6.32456, -19.9364 -3.62894 -5.39266, -3.4 -2.23177 -6.10485, 
+            -3.4 -2.93428 -5.8, -20.3118 -1.5 -6.32456, -3.4 -1.5 -5.8, -20.3118 -1.5 -6.32456, 
+            -20.3118 -1.5 -5.8, -5.4 -4.6 -4.59238, -19.6441 -5.28709 -3.78109, -19.9364 -3.62894 -5.39266, 
+            -20.4 -1 -5.8, -19.9364 -3.62894 -5.39266, -19.6441 -5.28709 -3.78109, -0.4 -4.6 -4.59238, 
+            -5.4 -4.6 -4.59238, -19.9364 -3.62894 -5.39266, 1.3285 -4.1434 -5.00822, -0.4 -4.6 -4.59238, 
+            -19.9364 -3.62894 -5.39266, -3.4 -2.93428 -5.8, 1.3285 -4.1434 -5.00822, -19.9364 -3.62894 -5.39266, 
+            -20.4 -1 -5.8, -20.3118 -1.5 -5.8, -19.9364 -3.62894 -5.39266, -16.4 -6.5 -5.42176e-015, 
+            -19.6441 -5.28709 -3.78109, -17.1493 -6.21983 -1.88767, -7.52906 -6.09078 -2.26994, -17.1493 -6.21983 -1.88767, 
+            -19.6441 -5.28709 -3.78109, -19.6441 -5.28709 -5.40446e-015, -19.6441 -5.28709 -3.78109, -16.4 -6.5 -5.42176e-015, 
+            -5.4 -4.6 -4.59238, -7.52906 -6.09078 -2.26994, -19.6441 -5.28709 -3.78109, -19.9592 -3.5 -2.6, 
+            -19.6441 -5.28709 -3.78109, -19.6441 -5.28709 -5.40446e-015, -20.4 -1 -5.8, -19.6441 -5.28709 -3.78109, 
+            -19.9592 -3.5 -2.6, -8.11348 -6.5 -5.42176e-015, -16.4 -6.5 -5.42176e-015, -17.1493 -6.21983 -1.88767, 
+            -7.52906 -6.09078 -2.26994, -8.11348 -6.5 -5.42176e-015, -17.1493 -6.21983 -1.88767, -15.3928 -0.4 -5.33477e-015, 
+            -16.4 -6.5 -5.42176e-015, -8.11348 -6.5 -5.42176e-015, -19.1 -1 -5.34333e-015, -19.6441 -5.28709 -5.40446e-015, 
+            -16.4 -6.5 -5.42176e-015, -18.234 -0.5 -5.3362e-015, -19.1 -1 -5.34333e-015, -16.4 -6.5 -5.42176e-015, 
+            -18.234 0.5 -5.32194e-015, -18.234 -0.5 -5.3362e-015, -16.4 -6.5 -5.42176e-015, -15.3928 -0.4 -5.33477e-015, 
+            -18.234 0.5 -5.32194e-015, -16.4 -6.5 -5.42176e-015, -5.4 -4.6 -5.39466e-015, -8.11348 -6.5 -5.42176e-015, 
+            -7.52906 -6.09078 -2.26994, -14.0072 0.4 -5.32337e-015, -8.11348 -6.5 -5.42176e-015, -5.4 -4.6 -5.39466e-015, 
+            -14.7 -0.8 -5.34048e-015, -15.3928 -0.4 -5.33477e-015, -8.11348 -6.5 -5.42176e-015, -14.0072 -0.4 -5.33477e-015, 
+            -14.7 -0.8 -5.34048e-015, -8.11348 -6.5 -5.42176e-015, -14.0072 0.4 -5.32337e-015, -14.0072 -0.4 -5.33477e-015, 
+            -8.11348 -6.5 -5.42176e-015, -5.4 -4.6 -3.8, -7.52906 -6.09078 -2.26994, -5.4 -4.6 -4.59238, 
+            -5.4 -4.6 -3.8, -5.4 -4.6 -5.39466e-015, -7.52906 -6.09078 -2.26994, -5.4 -4.6 -3.8, 
+            -5.4 -4.6 -4.59238, -0.4 -4.6 -4.59238, -0.4 -4.6 -3.8, -0.4 -4.6 -4.59238, 
+            1.3285 -4.1434 -5.00822, -0.4 -4.6 -3.8, -5.4 -4.6 -3.8, -0.4 -4.6 -4.59238, 
+            -3.4 -2.93428 -5.8, 2.58084 -2.93428 -5.8, 1.3285 -4.1434 -5.00822, 2.07482 -3.57482 -3.8, 
+            1.3285 -4.1434 -5.00822, 2.58084 -2.93428 -5.8, -0.4 -4.6 -3.8, 1.3285 -4.1434 -5.00822, 
+            2.07482 -3.57482 -3.8, 3.55271e-015 -1 -5.8, 2.58084 -2.93428 -5.8, -3.4 -2.93428 -5.8, 
+            2.96764 -2.05342 -5.8, 2.07482 -3.57482 -3.8, 2.58084 -2.93428 -5.8, 2.96764 -2.05342 -5.8, 
+            2.58084 -2.93428 -5.8, 2.69585 1.5 -5.8, 0.866025 -0.5 -5.8, 2.69585 1.5 -5.8, 
+            2.58084 -2.93428 -5.8, 0.866025 -0.5 -5.8, 2.58084 -2.93428 -5.8, 3.55271e-015 -1 -5.8, 
+            -0.866025 0.5 -5.8, -3.4 -2.93428 -5.8, -3.4 -1.5 -5.8, -0.866025 -0.5 -5.8, 
+            3.55271e-015 -1 -5.8, -3.4 -2.93428 -5.8, -0.866025 0.5 -5.8, -0.866025 -0.5 -5.8, 
+            -3.4 -2.93428 -5.8, 2.23397 2.3 -6.07947, 2.69585 1.5 -6.32456, 2.46201 1.90504 -6.21457, 
+            -20.4 3.16571 -5.67697, 2.46201 1.90504 -6.21457, 2.69585 1.5 -6.32456, 2.69585 1.5 -5.8, 
+            2.69585 1.5 -6.32456, 2.23397 2.3 -6.07947, -20.4 1.5 -6.32456, -20.4 3.16571 -5.67697, 
+            2.69585 1.5 -6.32456, -20.4 1.5 -5.8, -20.4 1.5 -6.32456, 2.69585 1.5 -6.32456, 
+            -20.4 1.5 -5.8, 2.69585 1.5 -6.32456, 2.69585 1.5 -5.8, 1.6 2.3 -6.07947, 
+            2.23397 2.3 -6.07947, 2.46201 1.90504 -6.21457, -20.4 3.16571 -5.67697, 1.6 2.3 -6.07947, 
+            2.46201 1.90504 -6.21457, 1.6 2.3 -3.8, 2.23397 2.3 -6.07947, 1.6 2.3 -6.07947, 
+            2.23397 2.3 -3.8, 2.23397 2.3 -6.07947, 1.6 2.3 -3.8, 2.69585 1.5 -5.8, 
+            2.23397 2.3 -6.07947, 2.23397 2.3 -3.8, -20.4 3.16571 -5.67697, 0.899057 2.58678 -5.9631, 
+            1.6 2.3 -6.07947, 1.6 2.3 -3.8, 1.6 2.3 -6.07947, 0.899057 2.58678 -5.9631, 
+            -20.4 3.16571 -5.67697, 0.687346 2.89127 -5.82156, 0.899057 2.58678 -5.9631, 0.892893 2.59289 -3.8, 
+            0.899057 2.58678 -5.9631, 0.687346 2.89127 -5.82156, 1.6 2.3 -3.8, 0.899057 2.58678 -5.9631, 
+            0.892893 2.59289 -3.8, -20.4 3.16571 -5.67697, 0.6 3.3 -5.6, 0.687346 2.89127 -5.82156, 
+            0.892893 2.59289 -3.8, 0.687346 2.89127 -5.82156, 0.6 3.3 -5.6, 0.6 4.77352 -4.41175, 
+            0.6 3.3 -5.6, 0.6 4.07991 -5.06007, -20.4 4.59238 -4.6, 0.6 4.07991 -5.06007, 
+            0.6 3.3 -5.6, 0.6 4.77352 -3.8, 0.6 3.3 -5.6, 0.6 4.77352 -4.41175, 
+            -20.4 3.16571 -5.67697, -20.4 4.59238 -4.6, 0.6 3.3 -5.6, 0.6 3.3 -3.8, 
+            0.6 3.3 -5.6, 0.6 4.77352 -3.8, 0.892893 2.59289 -3.8, 0.6 3.3 -5.6, 
+            0.6 3.3 -3.8, -20.4 4.59238 -4.6, 0.6 4.77352 -4.41175, 0.6 4.07991 -5.06007, 
+            -24.9 5.36879 -3.6641, 0.337454 5.03607 -4.10951, 0.6 4.77352 -4.41175, 0.6 4.77352 -3.8, 
+            0.6 4.77352 -4.41175, 0.337454 5.03607 -4.10951, -20.4 4.59238 -4.6, -24.9 5.36879 -3.6641, 
+            0.6 4.77352 -4.41175, -5.4 5.27352 -3.8, 0.1 5.27352 -3.8, 0.337454 5.03607 -4.10951, 
+            0.6 4.77352 -3.8, 0.337454 5.03607 -4.10951, 0.1 5.27352 -3.8, -24.9 5.36879 -3.6641, 
+            -5.4 5.27352 -3.8, 0.337454 5.03607 -4.10951, -5.4 -4.6 -3.8, 0.1 5.27352 -3.8, 
+            -5.4 5.27352 -3.8, 0.6 4.77352 -3.8, 0.1 5.27352 -3.8, -5.4 -4.6 -3.8, 
+            -5.4 6.18466 2, -5.4 5.27352 -3.8, -5.4 6.42107 -1.00955, -25.7326 6.29165 -1.63251, 
+            -5.4 6.42107 -1.00955, -5.4 5.27352 -3.8, -5.4 4.5 2, -5.4 5.27352 -3.8, 
+            -5.4 6.18466 2, -24.9 5.95735 -2.6, -25.7326 6.29165 -1.63251, -5.4 5.27352 -3.8, 
+            -24.9 5.36879 -3.6641, -24.9 5.95735 -2.6, -5.4 5.27352 -3.8, -5.4 -4.6 -5.39466e-015, 
+            -5.4 5.27352 -3.8, -5.4 4.5 -5.2649e-015, -5.4 4.5 2, -5.4 4.5 -5.2649e-015, 
+            -5.4 5.27352 -3.8, -5.4 -4.6 -3.8, -5.4 5.27352 -3.8, -5.4 -4.6 -5.39466e-015, 
+            -20.4 6.18466 2, -5.4 6.18466 2, -5.4 6.42107 -1.00955, -20.4 6.46059 0.714197, 
+            -20.4 6.18466 2, -5.4 6.42107 -1.00955, -20.4 6.47225 -0.6, -20.4 6.46059 0.714197, 
+            -5.4 6.42107 -1.00955, -24.7009 6.47225 -0.6, -20.4 6.47225 -0.6, -5.4 6.42107 -1.00955, 
+            -25.7326 6.29165 -1.63251, -24.7009 6.47225 -0.6, -5.4 6.42107 -1.00955, -5.4 4.5 2, 
+            -5.4 6.18466 2, -20.4 6.18466 2, -20.4 4.5 -5.2649e-015, -20.4 6.18466 2, 
+            -20.4 6.46059 0.714197, -20.4 4.5 2, -20.4 6.18466 2, -20.4 4.5 -5.2649e-015, 
+            -5.4 4.5 2, -20.4 6.18466 2, -20.4 4.5 2, -20.4 4.5 -5.2649e-015, 
+            -20.4 6.46059 0.714197, -20.4 6.47225 -0.6, -20.4 -3.5 -0.6, -20.4 6.47225 -0.6, 
+            -24.7009 6.47225 -0.6, -20.4 -3.5 -0.6, -20.4 4.5 -5.2649e-015, -20.4 6.47225 -0.6, 
+            -26.7002 5.95735 -2.6, -24.7009 6.47225 -0.6, -25.7326 6.29165 -1.63251, -27.7335 5.38956 -0.6, 
+            -24.7009 6.47225 -0.6, -26.7002 5.95735 -2.6, -25.9 2 -0.6, -24.7009 6.47225 -0.6, 
+            -27.7335 5.38956 -0.6, -23.9001 -1.01192e-015 -0.6, -20.4 -3.5 -0.6, -24.7009 6.47225 -0.6, 
+            -24.4856 1.41397 -0.6, -24.7009 6.47225 -0.6, -25.9 2 -0.6, -24.4856 1.41397 -0.6, 
+            -23.9001 -1.01192e-015 -0.6, -24.7009 6.47225 -0.6, -24.9 5.95735 -2.6, -26.7002 5.95735 -2.6, 
+            -25.7326 6.29165 -1.63251, -25.9 2.3815 -2.6, -26.7002 5.95735 -2.6, -24.9 5.95735 -2.6, 
+            -27.7335 5.38956 -0.6, -26.7002 5.95735 -2.6, -28.2488 5.00374 -2.6, -27.5842 1.68369 -2.6, 
+            -28.2488 5.00374 -2.6, -26.7002 5.95735 -2.6, -27.5842 1.68369 -2.6, -26.7002 5.95735 -2.6, 
+            -25.9 2.3815 -2.6, -24.9 4.59238 -4.6, -24.9 5.95735 -2.6, -24.9 5.36879 -3.6641, 
+            -24.9 3.5 -4.6, -24.9 5.95735 -2.6, -24.9 4.59238 -4.6, -24.9 3.5 -2.6, 
+            -25.9 2.3815 -2.6, -24.9 5.95735 -2.6, -24.9 3.5 -4.6, -24.9 3.5 -2.6, 
+            -24.9 5.95735 -2.6, -20.4 4.59238 -4.6, -24.9 4.59238 -4.6, -24.9 5.36879 -3.6641, 
+            -24.9 3.5 -4.6, -24.9 4.59238 -4.6, -20.4 4.59238 -4.6, -20.4 2.5 -4.6, 
+            -20.4 4.59238 -4.6, -20.4 3.16571 -5.67697, -20.6929 3.20711 -4.6, -20.4 4.59238 -4.6, 
+            -20.4 2.5 -4.6, -21.4 3.5 -4.6, -24.9 3.5 -4.6, -20.4 4.59238 -4.6, 
+            -20.6929 3.20711 -4.6, -21.4 3.5 -4.6, -20.4 4.59238 -4.6, -20.4 2.5 -4.6, 
+            -20.4 3.16571 -5.67697, -20.4 1.5 -6.32456, -20.4 2.30006 -3.1, -20.4 1.5 -6.32456, 
+            -20.4 1.5 -5.8, -20.4 2.5 -3.5, -20.4 2.5 -4.6, -20.4 1.5 -6.32456, 
+            -20.4 2.30006 -3.1, -20.4 2.5 -3.5, -20.4 1.5 -6.32456, -19.9592 -3.5 -5.37898e-015, 
+            -20.4 4.5 -5.2649e-015, -20.4 -3.5 -5.37898e-015, -20.4 -3.5 -0.6, -20.4 -3.5 -5.37898e-015, 
+            -20.4 4.5 -5.2649e-015, -19.9592 -3.5 -2.6, -19.9592 -3.5 -5.37898e-015, -20.4 -3.5 -5.37898e-015, 
+            -19.9592 -3.5 -2.6, -20.4 -3.5 -5.37898e-015, -20.4 -3.5 -0.6, -5.4 -4.6 -5.39466e-015, 
+            -5.4 4.5 -5.2649e-015, -20.4 4.5 -5.2649e-015, -20.4 4.5 2, -20.4 4.5 -5.2649e-015, 
+            -5.4 4.5 -5.2649e-015, -14.0072 0.4 -5.32337e-015, -5.4 -4.6 -5.39466e-015, -20.4 4.5 -5.2649e-015, 
+            -19.966 -0.5 -5.3362e-015, -20.4 4.5 -5.2649e-015, -19.9592 -3.5 -5.37898e-015, -19.966 0.5 -5.32194e-015, 
+            -19.1 1 -5.31481e-015, -20.4 4.5 -5.2649e-015, -18.234 0.5 -5.32194e-015, -20.4 4.5 -5.2649e-015, 
+            -19.1 1 -5.31481e-015, -19.966 -0.5 -5.3362e-015, -19.966 0.5 -5.32194e-015, -20.4 4.5 -5.2649e-015, 
+            -15.3928 -0.4 -5.33477e-015, -20.4 4.5 -5.2649e-015, -18.234 0.5 -5.32194e-015, -15.3928 0.4 -5.32337e-015, 
+            -14.7 0.8 -5.31766e-015, -20.4 4.5 -5.2649e-015, -14.0072 0.4 -5.32337e-015, -20.4 4.5 -5.2649e-015, 
+            -14.7 0.8 -5.31766e-015, -15.3928 -0.4 -5.33477e-015, -15.3928 0.4 -5.32337e-015, -20.4 4.5 -5.2649e-015, 
+            -5.4 4.5 2, -20.4 4.5 2, -5.4 4.5 -5.2649e-015, -19.966 -0.5 -5.3362e-015, 
+            -19.9592 -3.5 -5.37898e-015, -19.6441 -5.28709 -5.40446e-015, -19.9592 -3.5 -2.6, -19.6441 -5.28709 -5.40446e-015, 
+            -19.9592 -3.5 -5.37898e-015, -19.1 -1 -5.34333e-015, -19.966 -0.5 -5.3362e-015, -19.6441 -5.28709 -5.40446e-015, 
+            -19.1 1 -5.8, -19.1 1 -5.31481e-015, -19.966 0.5 -5.32194e-015, -18.234 0.5 -5.8, 
+            -18.234 0.5 -5.32194e-015, -19.1 1 -5.31481e-015, -18.234 0.5 -5.8, -19.1 1 -5.31481e-015, 
+            -19.1 1 -5.8, -19.966 0.5 -5.8, -19.966 0.5 -5.32194e-015, -19.966 -0.5 -5.3362e-015, 
+            -19.966 0.5 -5.8, -19.1 1 -5.8, -19.966 0.5 -5.32194e-015, -19.966 -0.5 -5.8, 
+            -19.966 -0.5 -5.3362e-015, -19.1 -1 -5.34333e-015, -19.966 0.5 -5.8, -19.966 -0.5 -5.3362e-015, 
+            -19.966 -0.5 -5.8, -19.1 -1 -5.8, -19.1 -1 -5.34333e-015, -18.234 -0.5 -5.3362e-015, 
+            -19.966 -0.5 -5.8, -19.1 -1 -5.34333e-015, -19.1 -1 -5.8, -18.234 -0.5 -5.8, 
+            -18.234 -0.5 -5.3362e-015, -18.234 0.5 -5.32194e-015, -19.1 -1 -5.8, -18.234 -0.5 -5.3362e-015, 
+            -18.234 -0.5 -5.8, -18.234 -0.5 -5.8, -18.234 0.5 -5.32194e-015, -18.234 0.5 -5.8, 
+            -14.7 0.8 -5.8, -14.7 0.8 -5.31766e-015, -15.3928 0.4 -5.32337e-015, -14.0072 0.4 -5.8, 
+            -14.0072 0.4 -5.32337e-015, -14.7 0.8 -5.31766e-015, -14.0072 0.4 -5.8, -14.7 0.8 -5.31766e-015, 
+            -14.7 0.8 -5.8, -15.3928 0.4 -5.8, -15.3928 0.4 -5.32337e-015, -15.3928 -0.4 -5.33477e-015, 
+            -15.3928 0.4 -5.8, -14.7 0.8 -5.8, -15.3928 0.4 -5.32337e-015, -15.3928 -0.4 -5.8, 
+            -15.3928 -0.4 -5.33477e-015, -14.7 -0.8 -5.34048e-015, -15.3928 0.4 -5.8, -15.3928 -0.4 -5.33477e-015, 
+            -15.3928 -0.4 -5.8, -14.7 -0.8 -5.8, -14.7 -0.8 -5.34048e-015, -14.0072 -0.4 -5.33477e-015, 
+            -15.3928 -0.4 -5.8, -14.7 -0.8 -5.34048e-015, -14.7 -0.8 -5.8, -14.0072 -0.4 -5.8, 
+            -14.0072 -0.4 -5.33477e-015, -14.0072 0.4 -5.32337e-015, -14.7 -0.8 -5.8, -14.0072 -0.4 -5.33477e-015, 
+            -14.0072 -0.4 -5.8, -14.0072 -0.4 -5.8, -14.0072 0.4 -5.32337e-015, -14.0072 0.4 -5.8, 
+            -30.5982 -0.152741 -0.6, -29.7292 -3.25 -2.6, -29.7292 -3.25 -0.6, -29.2962 -3.5 -0.6, 
+            -29.7292 -3.25 -0.6, -29.7292 -3.25 -2.6, -30.5982 -0.152741 -0.6, -29.7292 -3.25 -0.6, 
+            -29.8742 2.98452 -0.6, -29.2962 -3.5 -0.6, -29.8742 2.98452 -0.6, -29.7292 -3.25 -0.6, 
+            -30.2749 2.02972 -2.6, -29.7292 -3.25 -2.6, -30.4084 -1.56626 -2.6, -30.5982 -0.152741 -0.6, 
+            -30.4084 -1.56626 -2.6, -29.7292 -3.25 -2.6, -29.4718 3.65965 -2.6, -29.7292 -3.25 -2.6, 
+            -30.2749 2.02972 -2.6, -29.2962 -3.5 -2.6, -29.7292 -3.25 -2.6, -29.4718 3.65965 -2.6, 
+            -29.2962 -3.5 -2.6, -29.2962 -3.5 -0.6, -29.7292 -3.25 -2.6, -30.2749 2.02972 -2.6, 
+            -30.4084 -1.56626 -2.6, -30.5955 0.241225 -2.6, -30.5982 -0.152741 -0.6, -30.5955 0.241225 -2.6, 
+            -30.4084 -1.56626 -2.6, -29.8742 2.98452 -0.6, -30.2749 2.02972 -2.6, -30.5955 0.241225 -2.6, 
+            -30.5982 -0.152741 -0.6, -29.8742 2.98452 -0.6, -30.5955 0.241225 -2.6, -29.8742 2.98452 -0.6, 
+            -29.4718 3.65965 -2.6, -30.2749 2.02972 -2.6, -27.7335 5.38956 -0.6, -28.2488 5.00374 -2.6, 
+            -29.4718 3.65965 -2.6, -29.2962 -3.5 -2.6, -29.4718 3.65965 -2.6, -28.2488 5.00374 -2.6, 
+            -29.8742 2.98452 -0.6, -27.7335 5.38956 -0.6, -29.4718 3.65965 -2.6, -28.2814 -1.83576e-015 -2.6, 
+            -29.2962 -3.5 -2.6, -28.2488 5.00374 -2.6, -27.5842 1.68369 -2.6, -28.2814 -1.83576e-015 -2.6, 
+            -28.2488 5.00374 -2.6, -27.8999 -1.5128e-015 -0.6, -27.7335 5.38956 -0.6, -29.8742 2.98452 -0.6, 
+            -27.3144 1.41397 -0.6, -25.9 2 -0.6, -27.7335 5.38956 -0.6, -27.8999 -1.5128e-015 -0.6, 
+            -27.3144 1.41397 -0.6, -27.7335 5.38956 -0.6, -27.8999 -1.5128e-015 -0.6, -29.8742 2.98452 -0.6, 
+            -29.2962 -3.5 -0.6, -0.4 -4.6 -3.8, 2.07482 -3.57482 -3.8, -5.4 -4.6 -3.8, 
+            0.6 3.3 -3.8, 0.6 4.77352 -3.8, -5.4 -4.6 -3.8, 0.892893 2.59289 -3.8, 
+            0.6 3.3 -3.8, -5.4 -4.6 -3.8, -0.866025 0.5 -3.8, 0.892893 2.59289 -3.8, 
+            -5.4 -4.6 -3.8, -0.866025 -0.5 -3.8, -5.4 -4.6 -3.8, 5.32907e-015 -1 -3.8, 
+            -0.866025 -0.5 -3.8, -0.866025 0.5 -3.8, -5.4 -4.6 -3.8, -0.866025 0.5 -3.8, 
+            1.6 2.3 -3.8, 0.892893 2.59289 -3.8, -0.866025 0.5 -3.8, 2.23397 2.3 -3.8, 
+            1.6 2.3 -3.8, -0.866025 0.5 -3.8, 5.32907e-015 1 -3.8, 2.23397 2.3 -3.8, 
+            3.55271e-015 -1 -5.8, 5.32907e-015 -1 -3.8, 0.866025 -0.5 -3.8, -0.866025 -0.5 -5.8, 
+            -0.866025 -0.5 -3.8, 5.32907e-015 -1 -3.8, -0.866025 -0.5 -5.8, 5.32907e-015 -1 -3.8, 
+            3.55271e-015 -1 -5.8, 0.866025 -0.5 -5.8, 0.866025 -0.5 -3.8, 0.866025 0.5 -3.8, 
+            0.866025 -0.5 -5.8, 3.55271e-015 -1 -5.8, 0.866025 -0.5 -3.8, 0.866025 0.5 -5.8, 
+            0.866025 0.5 -3.8, 5.32907e-015 1 -3.8, 0.866025 -0.5 -5.8, 0.866025 0.5 -3.8, 
+            0.866025 0.5 -5.8, 3.55271e-015 1 -5.8, 5.32907e-015 1 -3.8, -0.866025 0.5 -3.8, 
+            0.866025 0.5 -5.8, 5.32907e-015 1 -3.8, 3.55271e-015 1 -5.8, -0.866025 0.5 -5.8, 
+            -0.866025 0.5 -3.8, -0.866025 -0.5 -3.8, 3.55271e-015 1 -5.8, -0.866025 0.5 -3.8, 
+            -0.866025 0.5 -5.8, -0.866025 0.5 -5.8, -0.866025 -0.5 -3.8, -0.866025 -0.5 -5.8, 
+            -19.1 1 -5.8, -20.4 1.5 -5.8, 2.69585 1.5 -5.8, 0.866025 0.5 -5.8, 
+            3.55271e-015 1 -5.8, 2.69585 1.5 -5.8, -14.0072 -0.4 -5.8, 2.69585 1.5 -5.8, 
+            3.55271e-015 1 -5.8, 0.866025 -0.5 -5.8, 0.866025 0.5 -5.8, 2.69585 1.5 -5.8, 
+            -14.7 0.8 -5.8, -19.1 1 -5.8, 2.69585 1.5 -5.8, -14.0072 0.4 -5.8, 
+            -14.7 0.8 -5.8, 2.69585 1.5 -5.8, -14.0072 -0.4 -5.8, -14.0072 0.4 -5.8, 
+            2.69585 1.5 -5.8, -19.9592 -3.5 -2.6, -20.4 -3.5 -0.6, -29.2962 -3.5 -0.6, 
+            -25.9 -2 -0.6, -29.2962 -3.5 -0.6, -20.4 -3.5 -0.6, -29.2962 -3.5 -2.6, 
+            -19.9592 -3.5 -2.6, -29.2962 -3.5 -0.6, -27.3144 -1.41397 -0.6, -27.8999 -1.5128e-015 -0.6, 
+            -29.2962 -3.5 -0.6, -25.9 -2 -0.6, -27.3144 -1.41397 -0.6, -29.2962 -3.5 -0.6, 
+            -24.4856 -1.41397 -0.6, -25.9 -2 -0.6, -20.4 -3.5 -0.6, -23.9001 -1.01192e-015 -0.6, 
+            -24.4856 -1.41397 -0.6, -20.4 -3.5 -0.6, -20.4 -1 -2.6, -19.9592 -3.5 -2.6, 
+            -29.2962 -3.5 -2.6, -20.4 -1 -5.8, -19.9592 -3.5 -2.6, -20.4 -1 -2.6, 
+            -27.5842 -1.68369 -2.6, -25.9 -2.3815 -2.6, -29.2962 -3.5 -2.6, -20.4 -1 -2.6, 
+            -29.2962 -3.5 -2.6, -25.9 -2.3815 -2.6, -28.2814 -1.83576e-015 -2.6, -27.5842 -1.68369 -2.6, 
+            -29.2962 -3.5 -2.6, -24.9 3.5 -2.6, -24.2158 1.68369 -2.6, -25.9 2.3815 -2.6, 
+            -25.9 2.3815 -1, -25.9 2.3815 -2.6, -24.2158 1.68369 -2.6, -27.5839 1.68388 -1, 
+            -27.5842 1.68369 -2.6, -25.9 2.3815 -2.6, -27.5839 1.68388 -1, -25.9 2.3815 -2.6, 
+            -25.9 2.3815 -1, -21.4 3.5 -2.6, -23.5186 -1.54577e-015 -2.6, -24.2158 1.68369 -2.6, 
+            -24.2161 1.68388 -1, -24.2158 1.68369 -2.6, -23.5186 -1.54577e-015 -2.6, -24.9 3.5 -2.6, 
+            -21.4 3.5 -2.6, -24.2158 1.68369 -2.6, -24.2161 1.68388 -1, -25.9 2.3815 -1, 
+            -24.2158 1.68369 -2.6, -21.4 3.5 -2.6, -24.2158 -1.68369 -2.6, -23.5186 -1.54577e-015 -2.6, 
+            -23.5185 -1.70532e-015 -1, -23.5186 -1.54577e-015 -2.6, -24.2158 -1.68369 -2.6, -23.5185 -1.70532e-015 -1, 
+            -24.2161 1.68388 -1, -23.5186 -1.54577e-015 -2.6, -20.4 -1 -2.6, -25.9 -2.3815 -2.6, 
+            -24.2158 -1.68369 -2.6, -24.2161 -1.68388 -1, -24.2158 -1.68369 -2.6, -25.9 -2.3815 -2.6, 
+            -20.4118 2.65291 -2.6, -20.4 2.5 -2.6, -24.2158 -1.68369 -2.6, -20.4 -1 -2.6, 
+            -24.2158 -1.68369 -2.6, -20.4 2.5 -2.6, -20.4461 2.8 -2.6, -20.4118 2.65291 -2.6, 
+            -24.2158 -1.68369 -2.6, -20.8084 3.30612 -2.6, -20.4461 2.8 -2.6, -24.2158 -1.68369 -2.6, 
+            -21.4 3.5 -2.6, -20.8084 3.30612 -2.6, -24.2158 -1.68369 -2.6, -24.2161 -1.68388 -1, 
+            -23.5185 -1.70532e-015 -1, -24.2158 -1.68369 -2.6, -25.9 -2.3815 -1, -25.9 -2.3815 -2.6, 
+            -27.5842 -1.68369 -2.6, -25.9 -2.3815 -1, -24.2161 -1.68388 -1, -25.9 -2.3815 -2.6, 
+            -27.5839 -1.68388 -1, -27.5842 -1.68369 -2.6, -28.2814 -1.83576e-015 -2.6, -27.5839 -1.68388 -1, 
+            -25.9 -2.3815 -1, -27.5842 -1.68369 -2.6, -28.2815 -1.73163e-015 -1, -28.2814 -1.83576e-015 -2.6, 
+            -27.5842 1.68369 -2.6, -27.5839 -1.68388 -1, -28.2814 -1.83576e-015 -2.6, -28.2815 -1.73163e-015 -1, 
+            -28.2815 -1.73163e-015 -1, -27.5842 1.68369 -2.6, -27.5839 1.68388 -1, -20.4 2.5 -2.7, 
+            -20.4 2.5 -2.6, -20.4118 2.65291 -2.6, -20.4 -1 -5.8, -20.4 -1 -2.6, 
+            -20.4 2.5 -2.6, -20.4 2.30006 -3.1, -20.4 -1 -5.8, -20.4 2.5 -2.6, 
+            -20.4 2.30006 -3.1, -20.4 2.5 -2.6, -20.4 2.5 -2.7, -20.4103 2.64315 -2.6253, 
+            -20.4118 2.65291 -2.6, -20.4461 2.8 -2.6, -20.4103 2.64315 -2.6253, -20.4 2.5 -2.7, 
+            -20.4118 2.65291 -2.6, -20.6657 3.17884 -2.77357, -20.4461 2.8 -2.6, -20.8084 3.30612 -2.6, 
+            -10.6887 2.36699 -2.85, -20.4103 2.64315 -2.6253, -20.4461 2.8 -2.6, -10.6887 2.8 -2.6, 
+            -20.4461 2.8 -2.6, -20.6657 3.17884 -2.77357, -10.6887 2.36699 -2.85, -20.4461 2.8 -2.6, 
+            -10.6887 2.8 -2.6, -20.8 3.29998 -3.09375, -20.8084 3.30612 -2.6, -21.4 3.5 -2.6, 
+            -20.8 3.29998 -3.09375, -20.6657 3.17884 -2.77357, -20.8084 3.30612 -2.6, -21.4 3.5 -4.6, 
+            -21.4 3.5 -2.6, -24.9 3.5 -2.6, -20.6929 3.20711 -4.6, -21.4 3.5 -2.6, 
+            -21.4 3.5 -4.6, -20.8 3.29998 -3.09375, -21.4 3.5 -2.6, -20.6929 3.20711 -4.6, 
+            -21.4 3.5 -4.6, -24.9 3.5 -2.6, -24.9 3.5 -4.6, -19.966 0.5 -5.8, 
+            -20.3118 -1.5 -5.8, -20.4 -1 -5.8, -14.7 -0.8 -5.8, -3.4 -1.5 -5.8, 
+            -20.3118 -1.5 -5.8, -19.966 -0.5 -5.8, -19.1 -1 -5.8, -20.3118 -1.5 -5.8, 
+            -15.3928 0.4 -5.8, -20.3118 -1.5 -5.8, -19.1 -1 -5.8, -19.966 0.5 -5.8, 
+            -19.966 -0.5 -5.8, -20.3118 -1.5 -5.8, -15.3928 -0.4 -5.8, -14.7 -0.8 -5.8, 
+            -20.3118 -1.5 -5.8, -15.3928 0.4 -5.8, -15.3928 -0.4 -5.8, -20.3118 -1.5 -5.8, 
+            -20.4 2.30006 -3.1, -20.4 1.5 -5.8, -20.4 -1 -5.8, -19.966 0.5 -5.8, 
+            -20.4 -1 -5.8, -20.4 1.5 -5.8, -10.6887 2.36699 -2.85, -20.4 2.30006 -3.1, 
+            -20.4 2.5 -2.7, -10.6887 2.36699 -2.85, -20.4 2.5 -2.7, -20.4103 2.64315 -2.6253, 
+            -19.966 0.5 -5.8, -20.4 1.5 -5.8, -19.1 1 -5.8, -20.4103 2.64307 -3.57468, 
+            -20.4 2.5 -4.6, -20.4 2.5 -3.5, -20.6686 3.18195 -3.42279, -20.6929 3.20711 -4.6, 
+            -20.4 2.5 -4.6, -20.4103 2.64307 -3.57468, -20.4461 2.8 -3.6, -20.4 2.5 -4.6, 
+            -20.6686 3.18195 -3.42279, -20.4 2.5 -4.6, -20.4461 2.8 -3.6, -10.6887 2.36699 -3.35, 
+            -20.4 2.5 -3.5, -20.4 2.30006 -3.1, -10.6887 2.8 -3.6, -20.4103 2.64307 -3.57468, 
+            -20.4 2.5 -3.5, -10.6887 2.8 -3.6, -20.4 2.5 -3.5, -10.6887 2.36699 -3.35, 
+            -10.6887 2.36699 -3.35, -20.4 2.30006 -3.1, -10.6887 2.36699 -2.85, -20.6686 3.18195 -3.42279, 
+            -20.8 3.29998 -3.09375, -20.6929 3.20711 -4.6, -10.6887 2.8 -3.6, -20.4461 2.8 -3.6, 
+            -20.4103 2.64307 -3.57468, -10.6887 3.23301 -3.35, -20.6686 3.18195 -3.42279, -20.4461 2.8 -3.6, 
+            -10.6887 3.23301 -3.35, -20.4461 2.8 -3.6, -10.6887 2.8 -3.6, -10.6887 3.23301 -2.85, 
+            -20.6657 3.17884 -2.77357, -20.8 3.29998 -3.09375, -10.6887 3.23301 -2.85, -10.6887 2.8 -2.6, 
+            -20.6657 3.17884 -2.77357, -10.6887 3.23301 -3.35, -20.8 3.29998 -3.09375, -20.6686 3.18195 -3.42279, 
+            -10.6887 3.23301 -2.85, -20.8 3.29998 -3.09375, -10.6887 3.23301 -3.35, -25.9 2 -1, 
+            -25.9 2 -0.6, -27.3144 1.41397 -0.6, -24.4859 1.41413 -1, -24.4856 1.41397 -0.6, 
+            -25.9 2 -0.6, -24.4859 1.41413 -1, -25.9 2 -0.6, -25.9 2 -1, 
+            -27.3141 1.41413 -1, -27.3144 1.41397 -0.6, -27.8999 -1.5128e-015 -0.6, -27.3141 1.41413 -1, 
+            -25.9 2 -1, -27.3144 1.41397 -0.6, -27.9 -1.75288e-015 -1, -27.8999 -1.5128e-015 -0.6, 
+            -27.3144 -1.41397 -0.6, -27.3141 1.41413 -1, -27.8999 -1.5128e-015 -0.6, -27.9 -1.75288e-015 -1, 
+            -27.3141 -1.41413 -1, -27.3144 -1.41397 -0.6, -25.9 -2 -0.6, -27.9 -1.75288e-015 -1, 
+            -27.3144 -1.41397 -0.6, -27.3141 -1.41413 -1, -25.9 -2 -1, -25.9 -2 -0.6, 
+            -24.4856 -1.41397 -0.6, -27.3141 -1.41413 -1, -25.9 -2 -0.6, -25.9 -2 -1, 
+            -24.4859 -1.41413 -1, -24.4856 -1.41397 -0.6, -23.9001 -1.01192e-015 -0.6, -25.9 -2 -1, 
+            -24.4856 -1.41397 -0.6, -24.4859 -1.41413 -1, -23.9 -1.73078e-015 -1, -23.9001 -1.01192e-015 -0.6, 
+            -24.4856 1.41397 -0.6, -24.4859 -1.41413 -1, -23.9001 -1.01192e-015 -0.6, -23.9 -1.73078e-015 -1, 
+            -23.9 -1.73078e-015 -1, -24.4856 1.41397 -0.6, -24.4859 1.41413 -1, -14.0072 -0.4 -5.8, 
+            -0.866025 0.5 -5.8, -3.4 -1.5 -5.8, -14.7 -0.8 -5.8, -14.0072 -0.4 -5.8, 
+            -3.4 -1.5 -5.8, -14.0072 -0.4 -5.8, 3.55271e-015 1 -5.8, -0.866025 0.5 -5.8, 
+            -14.7 0.8 -5.8, -18.234 0.5 -5.8, -19.1 1 -5.8, -14.7 0.8 -5.8, 
+            -18.234 -0.5 -5.8, -18.234 0.5 -5.8, -15.3928 0.4 -5.8, -19.1 -1 -5.8, 
+            -18.234 -0.5 -5.8, -15.3928 0.4 -5.8, -18.234 -0.5 -5.8, -14.7 0.8 -5.8, 
+            -25.9 2 -1, -25.9 2.3815 -1, -24.2161 1.68388 -1, -27.3141 1.41413 -1, 
+            -25.9 2.3815 -1, -25.9 2 -1, -27.5839 1.68388 -1, -25.9 2.3815 -1, 
+            -27.3141 1.41413 -1, -23.9 -1.73078e-015 -1, -24.2161 1.68388 -1, -23.5185 -1.70532e-015 -1, 
+            -24.4859 1.41413 -1, -25.9 2 -1, -24.2161 1.68388 -1, -23.9 -1.73078e-015 -1, 
+            -24.4859 1.41413 -1, -24.2161 1.68388 -1, -23.9 -1.73078e-015 -1, -23.5185 -1.70532e-015 -1, 
+            -24.2161 -1.68388 -1, -24.4859 -1.41413 -1, -24.2161 -1.68388 -1, -25.9 -2.3815 -1, 
+            -24.4859 -1.41413 -1, -23.9 -1.73078e-015 -1, -24.2161 -1.68388 -1, -25.9 -2 -1, 
+            -24.4859 -1.41413 -1, -25.9 -2.3815 -1, -27.5839 -1.68388 -1, -25.9 -2 -1, 
+            -25.9 -2.3815 -1, -27.5839 -1.68388 -1, -27.3141 -1.41413 -1, -25.9 -2 -1, 
+            -27.5839 -1.68388 -1, -27.9 -1.75288e-015 -1, -27.3141 -1.41413 -1, -27.5839 1.68388 -1, 
+            -27.3141 1.41413 -1, -27.9 -1.75288e-015 -1, -28.2815 -1.73163e-015 -1, -27.5839 1.68388 -1, 
+            -27.9 -1.75288e-015 -1, -27.5839 -1.68388 -1, -28.2815 -1.73163e-015 -1, -27.9 -1.75288e-015 -1, 
+            -10.6887 2.36699 -2.85, -10.6887 2.8 -2.6, -10.4 2.8 -3.1, -10.6887 3.23301 -2.85, 
+            -10.4 2.8 -3.1, -10.6887 2.8 -2.6, -10.6887 2.36699 -3.35, -10.6887 2.36699 -2.85, 
+            -10.4 2.8 -3.1, -10.6887 2.8 -3.6, -10.6887 2.36699 -3.35, -10.4 2.8 -3.1, 
+            -10.6887 3.23301 -3.35, -10.6887 2.8 -3.6, -10.4 2.8 -3.1, -10.6887 3.23301 -2.85, 
+            -10.6887 3.23301 -3.35, -10.4 2.8 -3.1, -6.67819 -5.495 3.47203, -14.3 -6.07947 2.3, 
+            -7.51291 -6.07947 2.3, -7.39941 -6 2.3, -7.51291 -6.07947 2.3, -14.3 -6.07947 2.3, 
+            -5.4 -4.6 4.4, -6.67819 -5.495 3.47203, -7.51291 -6.07947 2.3, -7.39941 -6 2.3, 
+            -5.4 -4.6 4.4, -7.51291 -6.07947 2.3, -17.3246 -6.15431 2.09141, -15.165 -6.24527 1.80185, 
+            -14.3 -6.07947 2.3, -14.3 -6 2.3, -14.3 -6.07947 2.3, -15.165 -6.24527 1.80185, 
+            -6.67819 -5.495 3.47203, -17.3246 -6.15431 2.09141, -14.3 -6.07947 2.3, -14.3 -6 2.3, 
+            -7.39941 -6 2.3, -14.3 -6.07947 2.3, -16.4 -6.5 -1.86904e-015, -15.1696 -6.44981 0.806222, 
+            -15.165 -6.24527 1.80185, -15.2273 -6 1.67436, -15.165 -6.24527 1.80185, -15.1696 -6.44981 0.806222, 
+            -17.3246 -6.15431 2.09141, -16.4 -6.5 -1.86904e-015, -15.165 -6.24527 1.80185, -14.8595 -6 2.12876, 
+            -15.165 -6.24527 1.80185, -15.2273 -6 1.67436, -14.3 -6 2.3, -15.165 -6.24527 1.80185, 
+            -14.8595 -6 2.12876, -16.4 -6.5 -1.86904e-015, -14.803 -6.48538 0.43577, -15.1696 -6.44981 0.806222, 
+            -14.8595 -6 0.471242, -15.1696 -6.44981 0.806222, -14.803 -6.48538 0.43577, -15.2273 -6 0.92564, 
+            -15.1696 -6.44981 0.806222, -14.8595 -6 0.471242, -15.282 -6.06184 1.11123, -15.1696 -6.44981 0.806222, 
+            -15.2273 -6 0.92564, -15.2821 -6.06185 1.48837, -15.2273 -6 1.67436, -15.1696 -6.44981 0.806222, 
+            -15.282 -6.06184 1.11123, -15.3 -6.08161 1.3, -15.1696 -6.44981 0.806222, -15.2821 -6.06185 1.48837, 
+            -15.1696 -6.44981 0.806222, -15.3 -6.08161 1.3, -16.4 -6.5 -1.86904e-015, -14.3 -6.49307 0.3, 
+            -14.803 -6.48538 0.43577, -14.8595 -6 0.471242, -14.803 -6.48538 0.43577, -14.3 -6.49307 0.3, 
+            -16.4 -6.5 -1.86904e-015, -8.10359 -6.49307 0.3, -14.3 -6.49307 0.3, -14.3 -6 0.3, 
+            -14.3 -6.49307 0.3, -8.10359 -6.49307 0.3, -14.8595 -6 0.471242, -14.3 -6.49307 0.3, 
+            -14.3 -6 0.3, -16.4 -6.5 -1.86904e-015, -8.11102 -6.49827 0.149764, -8.10359 -6.49307 0.3, 
+            -7.39941 -6 0.3, -8.10359 -6.49307 0.3, -8.11102 -6.49827 0.149764, -14.3 -6 0.3, 
+            -8.10359 -6.49307 0.3, -7.39941 -6 0.3, -16.4 -6.5 -1.86904e-015, -8.11348 -6.5 -1.86904e-015, 
+            -8.11102 -6.49827 0.149764, -7.39941 -6 0.3, -8.11102 -6.49827 0.149764, -8.11348 -6.5 -1.86904e-015, 
+            -13.7475 -0.550132 -1.7842e-015, -8.11348 -6.5 -1.86904e-015, -16.4 -6.5 -1.86904e-015, -5.4 -4.6 -1.84195e-015, 
+            -8.11348 -6.5 -1.86904e-015, -5.4 4.5 -1.71219e-015, -13.7475 -0.550132 -1.7842e-015, -5.4 4.5 -1.71219e-015, 
+            -8.11348 -6.5 -1.86904e-015, -7.39941 -6 0.3, -8.11348 -6.5 -1.86904e-015, -5.4 -4.6 -1.84195e-015, 
+            -20.4 -5.00446 4.14794, -16.4 -6.5 -1.86904e-015, -17.3246 -6.15431 2.09141, -20.4 -5.00446 -1.84772e-015, 
+            -16.4 -6.5 -1.86904e-015, -20.4 -5.00446 4.14794, -18.2341 -0.50012 -1.78349e-015, -16.4 -6.5 -1.86904e-015, 
+            -20.4 -5.00446 -1.84772e-015, -15.6525 0.550132 -1.76851e-015, -16.4 -6.5 -1.86904e-015, -18.2341 -0.50012 -1.78349e-015, 
+            -15.6525 -0.550132 -1.7842e-015, -14.7 -1.1 -1.79204e-015, -16.4 -6.5 -1.86904e-015, -13.7475 -0.550132 -1.7842e-015, 
+            -16.4 -6.5 -1.86904e-015, -14.7 -1.1 -1.79204e-015, -15.6525 0.550132 -1.76851e-015, -15.6525 -0.550132 -1.7842e-015, 
+            -16.4 -6.5 -1.86904e-015, -6.67819 -5.495 3.47203, -20.4 -5.00446 4.14794, -17.3246 -6.15431 2.09141, 
+            -4.67333 -3.76298 5.3, -20.4 -3.69123 5.35022, -20.4 -5.00446 4.14794, -20.4 -4.87771 1.3, 
+            -20.4 -5.00446 4.14794, -20.4 -3.69123 5.35022, -3.2 -3.76298 5.3, -4.67333 -3.76298 5.3, 
+            -20.4 -5.00446 4.14794, -3.2 -4.19621 4.96405, -3.2 -3.76298 5.3, -20.4 -5.00446 4.14794, 
+            -5.4 -4.6 4.59238, -3.2 -4.19621 4.96405, -20.4 -5.00446 4.14794, -6.67819 -5.495 3.47203, 
+            -5.4 -4.6 4.59238, -20.4 -5.00446 4.14794, -20.4 -4.87771 1.3, -20.4 -5.00446 -1.84772e-015, 
+            -20.4 -5.00446 4.14794, -14.2 -2.1 6.15142, -20.4 -2.1 6.15142, -20.4 -3.69123 5.35022, 
+            -20.4 -3.5 4, -20.4 -3.69123 5.35022, -20.4 -2.1 6.15142, -5.44339 -2.52379 5.98995, 
+            -14.2 -2.1 6.15142, -20.4 -3.69123 5.35022, -4.67333 -3.76298 5.3, -5.44339 -2.52379 5.98995, 
+            -20.4 -3.69123 5.35022, -20.4 -3.86229 1.3, -20.4 -3.69123 5.35022, -20.4 -3.5 4, 
+            -20.4 -4.1146 1.73206, -20.4 -3.69123 5.35022, -20.4 -3.86229 1.3, -20.4 -4.62542 1.73205, 
+            -20.4 -4.87771 1.3, -20.4 -3.69123 5.35022, -20.4 -4.37001 1.79991, -20.4 -4.62542 1.73205, 
+            -20.4 -3.69123 5.35022, -20.4 -4.1146 1.73206, -20.4 -4.37001 1.79991, -20.4 -3.69123 5.35022, 
+            -20.4 -2.1 4, -20.4 -2.1 6.15142, -14.2 -2.1 6.15142, -20.4 -2.1 4, 
+            -20.4 -3.5 4, -20.4 -2.1 6.15142, -5.86624 -1.25984 6.37686, -12.7856 -1.51407 6.3212, 
+            -14.2 -2.1 6.15142, -14.2 -2.1 3.2, -14.2 -2.1 6.15142, -12.7856 -1.51407 6.3212, 
+            -5.44339 -2.52379 5.98995, -5.86624 -1.25984 6.37686, -14.2 -2.1 6.15142, -21.7 -2.1 3.2, 
+            -20.4 -2.1 4, -14.2 -2.1 6.15142, -21.7 -2.1 3.2, -14.2 -2.1 6.15142, 
+            -14.2 -2.1 3.2, -5.86624 -1.25984 6.37686, -12.2 -0.1 6.49923, -12.7856 -1.51407 6.3212, 
+            -12.7859 -1.51413 3.2, -12.7856 -1.51407 6.3212, -12.2 -0.1 6.49923, -12.7859 -1.51413 3.2, 
+            -14.2 -2.1 3.2, -12.7856 -1.51407 6.3212, -12.2 0.1 6.49923, -12.2 -0.1 6.49923, 
+            -12.2 -1.36898e-015 6.5, -5.86613 1.26035 6.37676, -12.2 -1.36898e-015 6.5, -12.2 -0.1 6.49923, 
+            -12.2 0.1 3.2, -12.2 -0.1 6.49923, -12.2 0.1 6.49923, -5.86624 -1.25984 6.37686, 
+            -5.86613 1.26035 6.37676, -12.2 -0.1 6.49923, -12.2 -0.1 3.2, -12.2 -0.1 6.49923, 
+            -12.2 0.1 3.2, -12.7859 -1.51413 3.2, -12.2 -0.1 6.49923, -12.2 -0.1 3.2, 
+            -5.86613 1.26035 6.37676, -12.2 0.1 6.49923, -12.2 -1.36898e-015 6.5, -5.86613 1.26035 6.37676, 
+            -12.5907 1.28828 6.37105, -12.2 0.1 6.49923, -12.2 0.1 3.2, -12.2 0.1 6.49923, 
+            -12.5907 1.28828 6.37105, -5.44344 2.52368 5.98999, -13.3118 1.89204 6.21854, -12.5907 1.28828 6.37105, 
+            -12.7859 1.51413 3.2, -12.5907 1.28828 6.37105, -13.3118 1.89204 6.21854, -5.86613 1.26035 6.37676, 
+            -5.44344 2.52368 5.98999, -12.5907 1.28828 6.37105, -12.2 0.1 3.2, -12.5907 1.28828 6.37105, 
+            -12.7859 1.51413 3.2, -5.44344 2.52368 5.98999, -14.2 2.1 6.15142, -13.3118 1.89204 6.21854, 
+            -12.7859 1.51413 3.2, -13.3118 1.89204 6.21854, -14.2 2.1 6.15142, -5.44344 2.52368 5.98999, 
+            -20.4 2.1 6.15142, -14.2 2.1 6.15142, -14.2 2.1 3.2, -14.2 2.1 6.15142, 
+            -20.4 2.1 6.15142, -12.7859 1.51413 3.2, -14.2 2.1 6.15142, -14.2 2.1 3.2, 
+            -4.67333 3.76298 5.3, -20.4 3.7685 5.29608, -20.4 2.1 6.15142, -20.4 2.1 4, 
+            -20.4 2.1 6.15142, -20.4 3.7685 5.29608, -5.44344 2.52368 5.98999, -4.67333 3.76298 5.3, 
+            -20.4 2.1 6.15142, -14.2 2.1 3.2, -20.4 2.1 6.15142, -20.4 2.1 4, 
+            -5.4 4.78435 4.4, -20.4 5.12348 4, -20.4 3.7685 5.29608, -20.4 2.1 4, 
+            -20.4 3.7685 5.29608, -20.4 5.12348 4, -3.2 4.78435 4.4, -5.4 4.78435 4.4, 
+            -20.4 3.7685 5.29608, -3.2 4.29635 4.87764, -3.2 4.78435 4.4, -20.4 3.7685 5.29608, 
+            -4.67333 3.76298 5.3, -3.2 4.29635 4.87764, -20.4 3.7685 5.29608, -5.4 5.61405 3.27605, 
+            -27.7 5.12348 4, -20.4 5.12348 4, -20.4 2.1 4, -20.4 5.12348 4, 
+            -27.7 5.12348 4, -5.4 4.78435 4.4, -5.4 5.61405 3.27605, -20.4 5.12348 4, 
+            -5.4 5.61405 3.27605, -26.7395 5.74562 3.03939, -27.7 5.12348 4, -28.8185 4.00635 2, 
+            -27.7 5.12348 4, -26.7395 5.74562 3.03939, -29.6065 2.71341 4, -27.7 5.12348 4, 
+            -28.8185 4.00635 2, -28.2815 -1.61592e-015 4, -27.7 5.12348 4, -29.6065 2.71341 4, 
+            -22.7 2.1 4, -20.4 2.1 4, -27.7 5.12348 4, -23.133 1.84984 4, 
+            -22.7 2.1 4, -27.7 5.12348 4, -23.133 1.35016 4, -23.133 1.84984 4, 
+            -27.7 5.12348 4, -24.216 1.68397 4, -23.133 1.35016 4, -27.7 5.12348 4, 
+            -27.584 1.68397 4, -25.9 2.3815 4, -27.7 5.12348 4, -24.216 1.68397 4, 
+            -27.7 5.12348 4, -25.9 2.3815 4, -28.2815 -1.61592e-015 4, -27.584 1.68397 4, 
+            -27.7 5.12348 4, -5.4 6.18466 2, -25.7 6.18466 2, -26.7395 5.74562 3.03939, 
+            -28.8185 4.00635 2, -26.7395 5.74562 3.03939, -25.7 6.18466 2, -5.4 5.61405 3.27605, 
+            -5.4 6.18466 2, -26.7395 5.74562 3.03939, -20.4 4.5 2, -25.7 6.18466 2, 
+            -5.4 6.18466 2, -24.4856 1.41397 2, -25.7 6.18466 2, -20.4 4.5 2, 
+            -27.8999 -1.80293e-015 2, -28.8185 4.00635 2, -25.7 6.18466 2, -24.4856 1.41397 2, 
+            -25.9 2 2, -25.7 6.18466 2, -27.3144 1.41397 2, -25.7 6.18466 2, 
+            -25.9 2 2, -27.3144 1.41397 2, -27.8999 -1.80293e-015 2, -25.7 6.18466 2, 
+            -5.4 4.78435 4.4, -5.4 6.18466 2, -5.4 5.61405 3.27605, -5.4 4.5 2, 
+            -5.4 6.18466 2, -5.4 4.78435 4.4, -5.4 4.5 2, -20.4 4.5 2, 
+            -5.4 6.18466 2, -3.2 3.5 4.4, -5.4 4.78435 4.4, -3.2 4.78435 4.4, 
+            -5.4 -4.6 4.4, -5.4 4.5 2, -5.4 4.78435 4.4, -2.90706 2.79294 4.4, 
+            -5.4 4.78435 4.4, -3.2 3.5 4.4, -4.6 0.625 4.4, -5.4 4.78435 4.4, 
+            -2.90706 2.79294 4.4, -5.14129 -0.312305 4.4, -5.4 -4.6 4.4, -5.4 4.78435 4.4, 
+            -5.14129 0.312305 4.4, -5.4 4.78435 4.4, -4.6 0.625 4.4, -5.14129 0.312305 4.4, 
+            -5.14129 -0.312305 4.4, -5.4 4.78435 4.4, -3.2 3.76298 5.3, -3.2 4.78435 4.4, 
+            -3.2 4.29635 4.87764, -3.2 3.5 5.3, -3.2 4.78435 4.4, -3.2 3.76298 5.3, 
+            -3.2 3.5 5.3, -3.2 3.5 4.4, -3.2 4.78435 4.4, -4.67333 3.76298 5.3, 
+            -3.2 3.76298 5.3, -3.2 4.29635 4.87764, -3.2 3.5 5.3, -3.2 3.76298 5.3, 
+            -4.67333 3.76298 5.3, -5.84749 1.34421 5.3, -4.67333 3.76298 5.3, -5.44344 2.52368 5.98999, 
+            -3.2 -3.5 5.3, -4.67333 3.76298 5.3, -3.2 -3.76298 5.3, -4.05871 0.312305 5.3, 
+            -3.2 -3.76298 5.3, -4.67333 3.76298 5.3, -3.2 -3.5 5.3, -3.2 3.5 5.3, 
+            -4.67333 3.76298 5.3, -5.14129 0.312305 5.3, -4.67333 3.76298 5.3, -5.84749 1.34421 5.3, 
+            -5.14129 0.312305 5.3, -4.6 0.625 5.3, -4.67333 3.76298 5.3, -4.05871 0.312305 5.3, 
+            -4.67333 3.76298 5.3, -4.6 0.625 5.3, -5.84749 1.34421 5.3, -5.44344 2.52368 5.98999, 
+            -5.86613 1.26035 6.37676, -5.84749 1.34421 5.3, -5.86613 1.26035 6.37676, -5.86624 -1.25984 6.37686, 
+            -5.84749 -1.34421 5.3, -5.86624 -1.25984 6.37686, -5.44339 -2.52379 5.98995, -5.84749 1.34421 5.3, 
+            -5.86624 -1.25984 6.37686, -5.84749 -1.34421 5.3, -5.84749 -1.34421 5.3, -5.44339 -2.52379 5.98995, 
+            -4.67333 -3.76298 5.3, -4.6 -0.625 5.3, -4.67333 -3.76298 5.3, -3.2 -3.76298 5.3, 
+            -5.84749 1.34421 5.3, -5.84749 -1.34421 5.3, -4.67333 -3.76298 5.3, -5.14129 -0.312305 5.3, 
+            -5.84749 1.34421 5.3, -4.67333 -3.76298 5.3, -4.6 -0.625 5.3, -5.14129 -0.312305 5.3, 
+            -4.67333 -3.76298 5.3, -3.2 -3.5 4.4, -3.2 -3.76298 5.3, -3.2 -4.19621 4.96405, 
+            -3.2 -3.5 5.3, -3.2 -3.76298 5.3, -3.2 -3.5 4.4, -4.05871 -0.312305 5.3, 
+            -4.6 -0.625 5.3, -3.2 -3.76298 5.3, -4.05871 0.312305 5.3, -4.05871 -0.312305 5.3, 
+            -3.2 -3.76298 5.3, -5.4 -4.6 4.59238, -3.2 -4.6 4.59238, -3.2 -4.19621 4.96405, 
+            -3.2 -3.5 4.4, -3.2 -4.19621 4.96405, -3.2 -4.6 4.59238, -3.2 -4.6 4.4, 
+            -3.2 -4.6 4.59238, -5.4 -4.6 4.59238, -3.2 -4.6 4.4, -3.2 -3.5 4.4, 
+            -3.2 -4.6 4.59238, -5.4 -4.6 4.4, -5.4 -4.6 4.59238, -6.67819 -5.495 3.47203, 
+            -5.4 -4.6 4.4, -3.2 -4.6 4.4, -5.4 -4.6 4.59238, -28.8185 4.00635 2, 
+            -28.8962 -3.5 2, -29.3292 -3.25 2, -28.8962 -3.5 4, -29.3292 -3.25 2, 
+            -28.8962 -3.5 2, -30.184 0.455295 2, -28.8185 4.00635 2, -29.3292 -3.25 2, 
+            -30.1929 -0.303242 4, -30.184 0.455295 2, -29.3292 -3.25 2, -30.1929 -0.303242 4, 
+            -29.3292 -3.25 2, -29.3292 -3.25 4, -28.8962 -3.5 4, -29.3292 -3.25 4, 
+            -29.3292 -3.25 2, -24.4856 -1.41397 2, -20.4 -3.5 2, -28.8962 -3.5 2, 
+            -28.8962 -3.5 4, -28.8962 -3.5 2, -20.4 -3.5 2, -27.8999 -1.80293e-015 2, 
+            -28.8962 -3.5 2, -28.8185 4.00635 2, -25.9 -2 2, -24.4856 -1.41397 2, 
+            -28.8962 -3.5 2, -27.3144 -1.41397 2, -25.9 -2 2, -28.8962 -3.5 2, 
+            -27.8999 -1.80293e-015 2, -27.3144 -1.41397 2, -28.8962 -3.5 2, -24.4856 -1.41397 2, 
+            -20.4 4.5 2, -20.4 -3.5 2, -20.4 -2.8 1.2, -20.4 -3.5 2, 
+            -20.4 4.5 2, -20.4 -3.86229 1.3, -20.4 -3.5 4, -20.4 -3.5 2, 
+            -28.8962 -3.5 4, -20.4 -3.5 2, -20.4 -3.5 4, -20.4 -3.23303 0.949844, 
+            -20.4 -3.5 2, -20.4 -2.8 1.2, -20.4 -3.86229 1.3, -20.4 -3.5 2, 
+            -20.4 -3.23303 0.949844, -20.4 4.5 -1.71219e-015, -20.4 4.5 2, -5.4 4.5 2, 
+            -23.9001 -1.78084e-015 2, -24.4856 1.41397 2, -20.4 4.5 2, -24.4856 -1.41397 2, 
+            -23.9001 -1.78084e-015 2, -20.4 4.5 2, -20.4 3.23303 0.450156, -20.4 4.5 2, 
+            -20.4 4.5 -1.71219e-015, -20.4 3.23303 0.949844, -20.4 2.8 1.2, -20.4 4.5 2, 
+            -20.4 -2.36697 0.450156, -20.4 4.5 2, -20.4 2.8 1.2, -20.4 3.23303 0.450156, 
+            -20.4 3.23303 0.949844, -20.4 4.5 2, -20.4 -2.36697 0.949844, -20.4 -2.8 1.2, 
+            -20.4 4.5 2, -20.4 -2.36697 0.450156, -20.4 -2.36697 0.949844, -20.4 4.5 2, 
+            -5.4 4.5 -1.71219e-015, -20.4 4.5 -1.71219e-015, -5.4 4.5 2, -5.4 3.23303 0.949844, 
+            -5.4 4.5 -1.71219e-015, -5.4 4.5 2, -5.4 2.8 1.2, -5.4 4.5 2, 
+            -5.4 -4.6 4.4, -5.4 3.23303 0.949844, -5.4 4.5 2, -5.4 2.8 1.2, 
+            -29.6065 2.71341 4, -28.8185 4.00635 2, -30.184 0.455295 2, -30.1929 -0.303242 4, 
+            -29.6065 2.71341 4, -30.184 0.455295 2, -25.9 2 2.4, -25.9 2 2, 
+            -24.4856 1.41397 2, -27.3141 1.41413 2.4, -27.3144 1.41397 2, -25.9 2 2, 
+            -27.3141 1.41413 2.4, -25.9 2 2, -25.9 2 2.4, -24.4859 1.41413 2.4, 
+            -24.4856 1.41397 2, -23.9001 -1.78084e-015 2, -24.4859 1.41413 2.4, -25.9 2 2.4, 
+            -24.4856 1.41397 2, -23.9 -1.64972e-015 2.4, -23.9001 -1.78084e-015 2, -24.4856 -1.41397 2, 
+            -23.9 -1.64972e-015 2.4, -24.4859 1.41413 2.4, -23.9001 -1.78084e-015 2, -24.4859 -1.41413 2.4, 
+            -24.4856 -1.41397 2, -25.9 -2 2, -24.4859 -1.41413 2.4, -23.9 -1.64972e-015 2.4, 
+            -24.4856 -1.41397 2, -25.9 -2 2.4, -25.9 -2 2, -27.3144 -1.41397 2, 
+            -25.9 -2 2.4, -24.4859 -1.41413 2.4, -25.9 -2 2, -27.3141 -1.41413 2.4, 
+            -27.3144 -1.41397 2, -27.8999 -1.80293e-015 2, -27.3141 -1.41413 2.4, -25.9 -2 2.4, 
+            -27.3144 -1.41397 2, -27.9 -1.67181e-015 2.4, -27.8999 -1.80293e-015 2, -27.3144 1.41397 2, 
+            -27.3141 -1.41413 2.4, -27.8999 -1.80293e-015 2, -27.9 -1.67181e-015 2.4, -27.9 -1.67181e-015 2.4, 
+            -27.3144 1.41397 2, -27.3141 1.41413 2.4, -19.1 1 -1.7621e-015, -20.4 4.5 -1.71219e-015, 
+            -5.4 4.5 -1.71219e-015, -19.9659 0.50012 -1.76923e-015, -20.4 -5.00446 -1.84772e-015, -20.4 4.5 -1.71219e-015, 
+            -20.4 2.8 0.2, -20.4 4.5 -1.71219e-015, -20.4 -5.00446 -1.84772e-015, -19.1 1 -1.7621e-015, 
+            -19.9659 0.50012 -1.76923e-015, -20.4 4.5 -1.71219e-015, -20.4 2.8 0.2, -20.4 3.23303 0.450156, 
+            -20.4 4.5 -1.71219e-015, -5.4 -2.8 0.2, -5.4 -4.6 -1.84195e-015, -5.4 4.5 -1.71219e-015, 
+            -18.2341 0.50012 -1.76923e-015, -19.1 1 -1.7621e-015, -5.4 4.5 -1.71219e-015, -14.7 1.1 -1.76067e-015, 
+            -18.2341 0.50012 -1.76923e-015, -5.4 4.5 -1.71219e-015, -13.7475 0.550132 -1.76851e-015, -14.7 1.1 -1.76067e-015, 
+            -5.4 4.5 -1.71219e-015, -13.7475 -0.550132 -1.7842e-015, -13.7475 0.550132 -1.76851e-015, -5.4 4.5 -1.71219e-015, 
+            -5.4 3.23303 0.450156, -5.4 2.8 0.2, -5.4 4.5 -1.71219e-015, -5.4 -2.36697 0.450156, 
+            -5.4 4.5 -1.71219e-015, -5.4 2.8 0.2, -5.4 3.23303 0.949844, -5.4 3.23303 0.450156, 
+            -5.4 4.5 -1.71219e-015, -5.4 -2.36697 0.450156, -5.4 -2.8 0.2, -5.4 4.5 -1.71219e-015, 
+            -5.4 -3.23303 0.450156, -5.4 -4.6 4.4, -5.4 -4.6 -1.84195e-015, -7.39941 -6 0.3, 
+            -5.4 -4.6 -1.84195e-015, -5.4 -4.6 4.4, -5.4 -2.8 0.2, -5.4 -3.23303 0.450156, 
+            -5.4 -4.6 -1.84195e-015, -19.9659 -0.50012 -1.78349e-015, -19.1 -1 -1.79062e-015, -20.4 -5.00446 -1.84772e-015, 
+            -18.2341 -0.50012 -1.78349e-015, -20.4 -5.00446 -1.84772e-015, -19.1 -1 -1.79062e-015, -19.9659 0.50012 -1.76923e-015, 
+            -19.9659 -0.50012 -1.78349e-015, -20.4 -5.00446 -1.84772e-015, -20.4 2.36697 0.450156, -20.4 2.8 0.2, 
+            -20.4 -5.00446 -1.84772e-015, -20.4 -2.8 0.2, -20.4 2.36697 0.450156, -20.4 -5.00446 -1.84772e-015, 
+            -20.4 -3.23303 0.450156, -20.4 -2.8 0.2, -20.4 -5.00446 -1.84772e-015, -20.4 -3.23303 0.949844, 
+            -20.4 -3.23303 0.450156, -20.4 -5.00446 -1.84772e-015, -20.4 -4.11458 0.867948, -20.4 -3.23303 0.949844, 
+            -20.4 -5.00446 -1.84772e-015, -20.4 -4.36999 0.800091, -20.4 -4.11458 0.867948, -20.4 -5.00446 -1.84772e-015, 
+            -20.4 -4.6254 0.867938, -20.4 -4.36999 0.800091, -20.4 -5.00446 -1.84772e-015, -20.4 -4.87771 1.3, 
+            -20.4 -4.6254 0.867938, -20.4 -5.00446 -1.84772e-015, -19.1 -1 3.2, -19.1 -1 -1.79062e-015, 
+            -19.9659 -0.50012 -1.78349e-015, -18.2341 -0.50012 3.2, -18.2341 -0.50012 -1.78349e-015, -19.1 -1 -1.79062e-015, 
+            -18.2341 -0.50012 3.2, -19.1 -1 -1.79062e-015, -19.1 -1 3.2, -19.9659 -0.50012 3.2, 
+            -19.9659 -0.50012 -1.78349e-015, -19.9659 0.50012 -1.76923e-015, -19.9659 -0.50012 3.2, -19.1 -1 3.2, 
+            -19.9659 -0.50012 -1.78349e-015, -19.9659 0.50012 3.2, -19.9659 0.50012 -1.76923e-015, -19.1 1 -1.7621e-015, 
+            -19.9659 -0.50012 3.2, -19.9659 0.50012 -1.76923e-015, -19.9659 0.50012 3.2, -19.1 1 3.2, 
+            -19.1 1 -1.7621e-015, -18.2341 0.50012 -1.76923e-015, -19.9659 0.50012 3.2, -19.1 1 -1.7621e-015, 
+            -19.1 1 3.2, -14.7 1.1 -1.76067e-015, -18.2341 -0.50012 -1.78349e-015, -18.2341 0.50012 -1.76923e-015, 
+            -18.2341 0.50012 3.2, -18.2341 0.50012 -1.76923e-015, -18.2341 -0.50012 -1.78349e-015, -19.1 1 3.2, 
+            -18.2341 0.50012 -1.76923e-015, -18.2341 0.50012 3.2, -14.7 1.1 -1.76067e-015, -15.6525 0.550132 -1.76851e-015, 
+            -18.2341 -0.50012 -1.78349e-015, -18.2341 0.50012 3.2, -18.2341 -0.50012 -1.78349e-015, -18.2341 -0.50012 3.2, 
+            -14.7 -1.1 3.2, -14.7 -1.1 -1.79204e-015, -15.6525 -0.550132 -1.7842e-015, -13.7475 -0.550132 3.2, 
+            -13.7475 -0.550132 -1.7842e-015, -14.7 -1.1 -1.79204e-015, -13.7475 -0.550132 3.2, -14.7 -1.1 -1.79204e-015, 
+            -14.7 -1.1 3.2, -15.6525 -0.550132 3.2, -15.6525 -0.550132 -1.7842e-015, -15.6525 0.550132 -1.76851e-015, 
+            -15.6525 -0.550132 3.2, -14.7 -1.1 3.2, -15.6525 -0.550132 -1.7842e-015, -15.6525 0.550132 3.2, 
+            -15.6525 0.550132 -1.76851e-015, -14.7 1.1 -1.76067e-015, -15.6525 -0.550132 3.2, -15.6525 0.550132 -1.76851e-015, 
+            -15.6525 0.550132 3.2, -14.7 1.1 3.2, -14.7 1.1 -1.76067e-015, -13.7475 0.550132 -1.76851e-015, 
+            -15.6525 0.550132 3.2, -14.7 1.1 -1.76067e-015, -14.7 1.1 3.2, -13.7475 0.550132 3.2, 
+            -13.7475 0.550132 -1.76851e-015, -13.7475 -0.550132 -1.7842e-015, -14.7 1.1 3.2, -13.7475 0.550132 -1.76851e-015, 
+            -13.7475 0.550132 3.2, -13.7475 0.550132 3.2, -13.7475 -0.550132 -1.7842e-015, -13.7475 -0.550132 3.2, 
+            -30.1929 -0.303242 4, -29.3292 -3.25 4, -29.6065 2.71341 4, -28.8962 -3.5 4, 
+            -29.6065 2.71341 4, -29.3292 -3.25 4, -28.2815 -1.61592e-015 4, -29.6065 2.71341 4, 
+            -28.8962 -3.5 4, -2.90706 2.79294 5.3, -3.2 3.5 4.4, -3.2 3.5 5.3, 
+            -2.90706 2.79294 5.3, -2.90706 2.79294 4.4, -3.2 3.5 4.4, -2.90706 -2.79294 5.3, 
+            -2.90706 2.79294 5.3, -3.2 3.5 5.3, -2.90706 -2.79294 5.3, -3.2 3.5 5.3, 
+            -3.2 -3.5 5.3, -2.2 2.5 5.3, -2.2 2.5 4.4, -2.90706 2.79294 4.4, 
+            1.77636e-015 1.185 4.4, -2.90706 2.79294 4.4, -2.2 2.5 4.4, -2.90706 2.79294 5.3, 
+            -2.2 2.5 5.3, -2.90706 2.79294 4.4, -4.6 0.625 4.4, -2.90706 2.79294 4.4, 
+            1.77636e-015 1.185 4.4, 1.77636e-015 2.5 5.3, -2.2 2.5 4.4, -2.2 2.5 5.3, 
+            1.77636e-015 2.5 5.3, 5.32907e-015 2.5 4.4, -2.2 2.5 4.4, 1.76777 1.76777 4.4, 
+            -2.2 2.5 4.4, 5.32907e-015 2.5 4.4, 1.77636e-015 1.185 4.4, -2.2 2.5 4.4, 
+            1.76777 1.76777 4.4, -2.2 -2.5 5.3, -2.2 2.5 5.3, -2.90706 2.79294 5.3, 
+            1.77636e-015 1.185 5.3, 1.77636e-015 2.5 5.3, -2.2 2.5 5.3, -1.02607 -0.592642 5.3, 
+            -2.2 2.5 5.3, -2.2 -2.5 5.3, -1.02607 0.592642 5.3, 1.77636e-015 1.185 5.3, 
+            -2.2 2.5 5.3, -1.02607 -0.592642 5.3, -1.02607 0.592642 5.3, -2.2 2.5 5.3, 
+            -2.90706 -2.79294 5.3, -2.2 -2.5 5.3, -2.90706 2.79294 5.3, 1.76777 1.76777 5.3, 
+            5.32907e-015 2.5 4.4, 1.77636e-015 2.5 5.3, 1.76777 1.76777 4.4, 5.32907e-015 2.5 4.4, 
+            1.76777 1.76777 5.3, 1.02607 0.592642 5.3, 1.76777 1.76777 5.3, 1.77636e-015 2.5 5.3, 
+            1.77636e-015 1.185 5.3, 1.02607 0.592642 5.3, 1.77636e-015 2.5 5.3, 1.76777 -1.76777 4.4, 
+            1.76777 -1.76777 5.3, 1.77636e-015 -2.5 5.3, 1.77636e-015 -1.185 5.3, 1.77636e-015 -2.5 5.3, 
+            1.76777 -1.76777 5.3, 1.77636e-015 -2.5 4.4, 1.76777 -1.76777 4.4, 1.77636e-015 -2.5 5.3, 
+            -2.2 -2.5 5.3, 1.77636e-015 -2.5 4.4, 1.77636e-015 -2.5 5.3, -1.02607 -0.592642 5.3, 
+            -2.2 -2.5 5.3, 1.77636e-015 -2.5 5.3, -1.02607 -0.592642 5.3, 1.77636e-015 -2.5 5.3, 
+            1.77636e-015 -1.185 5.3, 1.76777 1.76777 5.3, 1.76777 -1.76777 5.3, 2.5 -2.39246e-015 5.3, 
+            2.5 -2.32448e-015 4.4, 2.5 -2.39246e-015 5.3, 1.76777 -1.76777 5.3, 1.02607 0.592642 5.3, 
+            1.76777 -1.76777 5.3, 1.76777 1.76777 5.3, 1.76777 -1.76777 4.4, 2.5 -2.32448e-015 4.4, 
+            1.76777 -1.76777 5.3, 1.02607 -0.592642 5.3, 1.77636e-015 -1.185 5.3, 1.76777 -1.76777 5.3, 
+            1.02607 0.592642 5.3, 1.02607 -0.592642 5.3, 1.76777 -1.76777 5.3, 1.76777 1.76777 4.4, 
+            1.76777 1.76777 5.3, 2.5 -2.39246e-015 5.3, 2.5 -2.32448e-015 4.4, 1.76777 1.76777 4.4, 
+            2.5 -2.39246e-015 5.3, 1.77636e-015 1.185 4.4, 1.76777 1.76777 4.4, 2.5 -2.32448e-015 4.4, 
+            1.02607 -0.592642 4.4, 2.5 -2.32448e-015 4.4, 1.76777 -1.76777 4.4, 1.02607 0.592642 4.4, 
+            1.77636e-015 1.185 4.4, 2.5 -2.32448e-015 4.4, 1.02607 -0.592642 4.4, 1.02607 0.592642 4.4, 
+            2.5 -2.32448e-015 4.4, -4.6 -0.625 4.4, 1.76777 -1.76777 4.4, 1.77636e-015 -2.5 4.4, 
+            1.02607 -0.592642 4.4, 1.76777 -1.76777 4.4, 1.77636e-015 -1.185 4.4, -4.6 -0.625 4.4, 
+            1.77636e-015 -1.185 4.4, 1.76777 -1.76777 4.4, -2.2 -2.5 5.3, -2.2 -2.5 4.4, 
+            1.77636e-015 -2.5 4.4, -4.6 -0.625 4.4, 1.77636e-015 -2.5 4.4, -2.2 -2.5 4.4, 
+            -2.90706 -2.79294 5.3, -2.2 -2.5 4.4, -2.2 -2.5 5.3, -2.90706 -2.79294 5.3, 
+            -2.90706 -2.79294 4.4, -2.2 -2.5 4.4, -5.14129 -0.312305 4.4, -2.2 -2.5 4.4, 
+            -2.90706 -2.79294 4.4, -5.14129 -0.312305 4.4, -4.6 -0.625 4.4, -2.2 -2.5 4.4, 
+            -3.2 -3.5 5.3, -3.2 -3.5 4.4, -2.90706 -2.79294 4.4, -5.14129 -0.312305 4.4, 
+            -2.90706 -2.79294 4.4, -3.2 -3.5 4.4, -2.90706 -2.79294 5.3, -3.2 -3.5 5.3, 
+            -2.90706 -2.79294 4.4, -5.14129 -0.312305 4.4, -3.2 -3.5 4.4, -3.2 -4.6 4.4, 
+            -5.14129 -0.312305 4.4, -3.2 -4.6 4.4, -5.4 -4.6 4.4, -5.4 2.36697 0.949844, 
+            -5.4 2.8 1.2, -5.4 -4.6 4.4, -5.4 2.36697 0.450156, -5.4 2.36697 0.949844, 
+            -5.4 -4.6 4.4, -5.4 -2.36697 0.949844, -5.4 2.36697 0.450156, -5.4 -4.6 4.4, 
+            -5.4 -3.23303 0.949844, -5.4 -2.8 1.2, -5.4 -4.6 4.4, -5.4 -2.36697 0.949844, 
+            -5.4 -4.6 4.4, -5.4 -2.8 1.2, -5.4 -3.23303 0.450156, -5.4 -3.23303 0.949844, 
+            -5.4 -4.6 4.4, -7.26893 -5.90864 1.53437, -7.22829 -5.88019 1.3, -5.4 -4.6 4.4, 
+            -7.26893 -5.90864 1.0656, -5.4 -4.6 4.4, -7.22829 -5.88019 1.3, -7.39941 -6 1.76316, 
+            -7.26893 -5.90864 1.53437, -5.4 -4.6 4.4, -7.39941 -6 2.3, -7.39941 -6 1.76316, 
+            -5.4 -4.6 4.4, -7.26893 -5.90864 1.0656, -7.39941 -6 0.3, -5.4 -4.6 4.4, 
+            -4.6 -0.625 4.4, -1.02607 -0.592642 4.4, 1.77636e-015 -1.185 4.4, 1.77636e-015 -1.185 5.3, 
+            1.77636e-015 -1.185 4.4, -1.02607 -0.592642 4.4, 1.02607 -0.592642 5.3, 1.02607 -0.592642 4.4, 
+            1.77636e-015 -1.185 4.4, 1.02607 -0.592642 5.3, 1.77636e-015 -1.185 4.4, 1.77636e-015 -1.185 5.3, 
+            -4.05871 0.312305 4.4, -1.02607 0.592642 4.4, -1.02607 -0.592642 4.4, -1.02607 -0.592642 5.3, 
+            -1.02607 -0.592642 4.4, -1.02607 0.592642 4.4, -4.05871 -0.312305 4.4, -4.05871 0.312305 4.4, 
+            -1.02607 -0.592642 4.4, -4.6 -0.625 4.4, -4.05871 -0.312305 4.4, -1.02607 -0.592642 4.4, 
+            -1.02607 -0.592642 5.3, 1.77636e-015 -1.185 5.3, -1.02607 -0.592642 4.4, -4.6 0.625 4.4, 
+            1.77636e-015 1.185 4.4, -1.02607 0.592642 4.4, -1.02607 0.592642 5.3, -1.02607 0.592642 4.4, 
+            1.77636e-015 1.185 4.4, -4.05871 0.312305 4.4, -4.6 0.625 4.4, -1.02607 0.592642 4.4, 
+            -1.02607 -0.592642 5.3, -1.02607 0.592642 4.4, -1.02607 0.592642 5.3, 1.77636e-015 1.185 5.3, 
+            1.77636e-015 1.185 4.4, 1.02607 0.592642 4.4, -1.02607 0.592642 5.3, 1.77636e-015 1.185 4.4, 
+            1.77636e-015 1.185 5.3, 1.02607 0.592642 5.3, 1.02607 0.592642 4.4, 1.02607 -0.592642 4.4, 
+            1.77636e-015 1.185 5.3, 1.02607 0.592642 4.4, 1.02607 0.592642 5.3, 1.02607 0.592642 5.3, 
+            1.02607 -0.592642 4.4, 1.02607 -0.592642 5.3, -4.6 0.625 5.3, -4.6 0.625 4.4, 
+            -4.05871 0.312305 4.4, -5.14129 0.312305 5.3, -5.14129 0.312305 4.4, -4.6 0.625 4.4, 
+            -5.14129 0.312305 5.3, -4.6 0.625 4.4, -4.6 0.625 5.3, -4.05871 0.312305 5.3, 
+            -4.05871 0.312305 4.4, -4.05871 -0.312305 4.4, -4.05871 0.312305 5.3, -4.6 0.625 5.3, 
+            -4.05871 0.312305 4.4, -4.05871 -0.312305 5.3, -4.05871 -0.312305 4.4, -4.6 -0.625 4.4, 
+            -4.05871 0.312305 5.3, -4.05871 -0.312305 4.4, -4.05871 -0.312305 5.3, -4.6 -0.625 5.3, 
+            -4.6 -0.625 4.4, -5.14129 -0.312305 4.4, -4.05871 -0.312305 5.3, -4.6 -0.625 4.4, 
+            -4.6 -0.625 5.3, -5.14129 -0.312305 5.3, -5.14129 -0.312305 4.4, -5.14129 0.312305 4.4, 
+            -4.6 -0.625 5.3, -5.14129 -0.312305 4.4, -5.14129 -0.312305 5.3, -5.14129 -0.312305 5.3, 
+            -5.14129 0.312305 4.4, -5.14129 0.312305 5.3, -20.4 2.8 1.2, -5.4 2.8 1.2, 
+            -5.4 2.36697 0.949844, -20.4 3.23303 0.949844, -5.4 3.23303 0.949844, -5.4 2.8 1.2, 
+            -20.4 3.23303 0.949844, -5.4 2.8 1.2, -20.4 2.8 1.2, -20.4 2.36697 0.949844, 
+            -5.4 2.36697 0.949844, -5.4 2.36697 0.450156, -20.4 2.36697 0.949844, -20.4 2.8 1.2, 
+            -5.4 2.36697 0.949844, -5.4 -2.36697 0.949844, -5.4 2.8 0.2, -5.4 2.36697 0.450156, 
+            -20.4 2.36697 0.450156, -5.4 2.36697 0.450156, -5.4 2.8 0.2, -20.4 2.36697 0.949844, 
+            -5.4 2.36697 0.450156, -20.4 2.36697 0.450156, -20.4 2.8 0.2, -5.4 2.8 0.2, 
+            -5.4 3.23303 0.450156, -5.4 -2.36697 0.949844, -5.4 -2.36697 0.450156, -5.4 2.8 0.2, 
+            -20.4 2.36697 0.450156, -5.4 2.8 0.2, -20.4 2.8 0.2, -20.4 3.23303 0.450156, 
+            -5.4 3.23303 0.450156, -5.4 3.23303 0.949844, -20.4 2.8 0.2, -5.4 3.23303 0.450156, 
+            -20.4 3.23303 0.450156, -20.4 3.23303 0.450156, -5.4 3.23303 0.949844, -20.4 3.23303 0.949844, 
+            -20.4 -2.8 1.2, -5.4 -2.8 1.2, -5.4 -3.23303 0.949844, -20.4 -2.36697 0.949844, 
+            -5.4 -2.36697 0.949844, -5.4 -2.8 1.2, -20.4 -2.36697 0.949844, -5.4 -2.8 1.2, 
+            -20.4 -2.8 1.2, -20.4 -3.23303 0.949844, -5.4 -3.23303 0.949844, -5.4 -3.23303 0.450156, 
+            -20.4 -3.23303 0.949844, -20.4 -2.8 1.2, -5.4 -3.23303 0.949844, -20.4 -3.23303 0.450156, 
+            -5.4 -3.23303 0.450156, -5.4 -2.8 0.2, -20.4 -3.23303 0.949844, -5.4 -3.23303 0.450156, 
+            -20.4 -3.23303 0.450156, -20.4 -2.8 0.2, -5.4 -2.8 0.2, -5.4 -2.36697 0.450156, 
+            -20.4 -3.23303 0.450156, -5.4 -2.8 0.2, -20.4 -2.8 0.2, -20.4 -2.36697 0.450156, 
+            -5.4 -2.36697 0.450156, -5.4 -2.36697 0.949844, -20.4 -2.8 0.2, -5.4 -2.36697 0.450156, 
+            -20.4 -2.36697 0.450156, -20.4 -2.36697 0.450156, -5.4 -2.36697 0.949844, -20.4 -2.36697 0.949844, 
+            -14.2 2.1 3.2, -20.4 2.1 4, -22.7 2.1 4, -21.7 -2.1 4, 
+            -20.4 -3.5 4, -20.4 -2.1 4, -21.9502 -2.53303 4, -22.4498 -2.53303 4, 
+            -20.4 -3.5 4, -25.9 -2.3815 4, -20.4 -3.5 4, -22.4498 -2.53303 4, 
+            -21.7 -2.1 4, -21.9502 -2.53303 4, -20.4 -3.5 4, -25.9 -2.3815 4, 
+            -28.8962 -3.5 4, -20.4 -3.5 4, -21.7 -2.1 3.2, -21.7 -2.1 4, 
+            -20.4 -2.1 4, -20.4 -2.36697 0.450156, -20.4 2.8 1.2, -20.4 2.36697 0.949844, 
+            -20.4 -2.8 0.2, -20.4 2.36697 0.949844, -20.4 2.36697 0.450156, -20.4 -2.8 0.2, 
+            -20.4 -2.36697 0.450156, -20.4 2.36697 0.949844, -20.4 -4.11458 0.867948, -20.4 -3.86229 1.3, 
+            -20.4 -3.23303 0.949844, -17.7755 -4.32505 1.3, -20.4 -3.86229 1.3, -20.4 -4.11458 0.867948, 
+            -17.8189 -4.57113 1.73284, -20.4 -4.1146 1.73206, -20.4 -3.86229 1.3, -17.8189 -4.57113 1.73284, 
+            -20.4 -3.86229 1.3, -17.7755 -4.32505 1.3, -17.8189 -4.57113 0.867161, -20.4 -4.11458 0.867948, 
+            -20.4 -4.36999 0.800091, -17.8189 -4.57113 0.867161, -17.7755 -4.32505 1.3, -20.4 -4.11458 0.867948, 
+            -17.9058 -5.06378 0.867161, -20.4 -4.36999 0.800091, -20.4 -4.6254 0.867938, -17.8189 -4.57113 0.867161, 
+            -20.4 -4.36999 0.800091, -17.9058 -5.06378 0.867161, -17.9058 -5.06378 0.867161, -20.4 -4.6254 0.867938, 
+            -20.4 -4.87771 1.3, -17.9492 -5.30986 1.3, -20.4 -4.87771 1.3, -20.4 -4.62542 1.73205, 
+            -17.9058 -5.06378 0.867161, -20.4 -4.87771 1.3, -17.9492 -5.30986 1.3, -17.9058 -5.06378 1.73284, 
+            -20.4 -4.62542 1.73205, -20.4 -4.37001 1.79991, -17.9492 -5.30986 1.3, -20.4 -4.62542 1.73205, 
+            -17.9058 -5.06378 1.73284, -17.8189 -4.57113 1.73284, -20.4 -4.37001 1.79991, -20.4 -4.1146 1.73206, 
+            -17.9058 -5.06378 1.73284, -20.4 -4.37001 1.79991, -17.8189 -4.57113 1.73284, -5.14129 -0.312305 5.3, 
+            -5.14129 0.312305 5.3, -5.84749 1.34421 5.3, -22.7 2.1 3.2, -22.7 2.1 4, 
+            -23.133 1.84984 4, -14.2 2.1 3.2, -22.7 2.1 4, -22.7 2.1 3.2, 
+            -23.1328 1.85012 3.2, -23.133 1.84984 4, -23.133 1.35016 4, -22.7 2.1 3.2, 
+            -23.133 1.84984 4, -23.1328 1.85012 3.2, -22.7 -2.1 4, -22.7 1.1 4, 
+            -23.133 1.35016 4, -23.1328 1.34988 3.2, -23.133 1.35016 4, -22.7 1.1 4, 
+            -23.5185 -1.58961e-015 4, -22.7 -2.1 4, -23.133 1.35016 4, -24.216 1.68397 4, 
+            -23.5185 -1.58961e-015 4, -23.133 1.35016 4, -23.1328 1.85012 3.2, -23.133 1.35016 4, 
+            -23.1328 1.34988 3.2, -22.7 1.1 3.2, -22.7 1.1 4, -22.7 -2.1 4, 
+            -23.1328 1.34988 3.2, -22.7 1.1 4, -22.7 1.1 3.2, -24.216 -1.68397 4, 
+            -22.4498 -2.53303 4, -22.7 -2.1 4, -22.7 -2.1 3.2, -22.7 -2.1 4, 
+            -22.4498 -2.53303 4, -23.5185 -1.58961e-015 4, -24.216 -1.68397 4, -22.7 -2.1 4, 
+            -22.7 1.1 3.2, -22.7 -2.1 4, -22.7 -2.1 3.2, -22.4501 -2.53284 3.2, 
+            -22.4498 -2.53303 4, -21.9502 -2.53303 4, -24.216 -1.68397 4, -25.9 -2.3815 4, 
+            -22.4498 -2.53303 4, -22.7 -2.1 3.2, -22.4498 -2.53303 4, -22.4501 -2.53284 3.2, 
+            -21.9499 -2.53284 3.2, -21.9502 -2.53303 4, -21.7 -2.1 4, -22.4501 -2.53284 3.2, 
+            -21.9502 -2.53303 4, -21.9499 -2.53284 3.2, -21.9499 -2.53284 3.2, -21.7 -2.1 4, 
+            -21.7 -2.1 3.2, -27.584 -1.68397 4, -28.2815 -1.61592e-015 4, -28.8962 -3.5 4, 
+            -25.9 -2.3815 4, -27.584 -1.68397 4, -28.8962 -3.5 4, -25.9 2.3815 2.4, 
+            -25.9 2.3815 4, -27.584 1.68397 4, -24.2158 1.68369 2.4, -24.216 1.68397 4, 
+            -25.9 2.3815 4, -24.2158 1.68369 2.4, -25.9 2.3815 4, -25.9 2.3815 2.4, 
+            -27.5842 1.68369 2.4, -27.584 1.68397 4, -28.2815 -1.61592e-015 4, -27.5842 1.68369 2.4, 
+            -25.9 2.3815 2.4, -27.584 1.68397 4, -28.2814 -1.6576e-015 2.4, -28.2815 -1.61592e-015 4, 
+            -27.584 -1.68397 4, -27.5842 1.68369 2.4, -28.2815 -1.61592e-015 4, -28.2814 -1.6576e-015 2.4, 
+            -27.5842 -1.68369 2.4, -27.584 -1.68397 4, -25.9 -2.3815 4, -28.2814 -1.6576e-015 2.4, 
+            -27.584 -1.68397 4, -27.5842 -1.68369 2.4, -25.9 -2.3815 2.4, -25.9 -2.3815 4, 
+            -24.216 -1.68397 4, -27.5842 -1.68369 2.4, -25.9 -2.3815 4, -25.9 -2.3815 2.4, 
+            -24.2158 -1.68369 2.4, -24.216 -1.68397 4, -23.5185 -1.58961e-015 4, -25.9 -2.3815 2.4, 
+            -24.216 -1.68397 4, -24.2158 -1.68369 2.4, -23.5186 -1.63129e-015 2.4, -23.5185 -1.58961e-015 4, 
+            -24.216 1.68397 4, -24.2158 -1.68369 2.4, -23.5185 -1.58961e-015 4, -23.5186 -1.63129e-015 2.4, 
+            -23.5186 -1.63129e-015 2.4, -24.216 1.68397 4, -24.2158 1.68369 2.4, -19.1 -1 3.2, 
+            -21.7 -2.1 3.2, -14.2 -2.1 3.2, -13.7475 -0.550132 3.2, -14.2 -2.1 3.2, 
+            -12.7859 -1.51413 3.2, -18.2341 -0.50012 3.2, -19.1 -1 3.2, -14.2 -2.1 3.2, 
+            -18.2341 0.50012 3.2, -18.2341 -0.50012 3.2, -14.2 -2.1 3.2, -15.6525 -0.550132 3.2, 
+            -18.2341 0.50012 3.2, -14.2 -2.1 3.2, -13.7475 -0.550132 3.2, -14.7 -1.1 3.2, 
+            -14.2 -2.1 3.2, -15.6525 -0.550132 3.2, -14.2 -2.1 3.2, -14.7 -1.1 3.2, 
+            -22.7 2.1 3.2, -21.9499 -2.53284 3.2, -21.7 -2.1 3.2, -19.9659 -0.50012 3.2, 
+            -22.7 2.1 3.2, -21.7 -2.1 3.2, -19.9659 -0.50012 3.2, -21.7 -2.1 3.2, 
+            -19.1 -1 3.2, -22.7 2.1 3.2, -22.4501 -2.53284 3.2, -21.9499 -2.53284 3.2, 
+            -22.7 1.1 3.2, -22.7 -2.1 3.2, -22.4501 -2.53284 3.2, -22.7 2.1 3.2, 
+            -22.7 1.1 3.2, -22.4501 -2.53284 3.2, -23.1328 1.85012 3.2, -23.1328 1.34988 3.2, 
+            -22.7 1.1 3.2, -22.7 2.1 3.2, -23.1328 1.85012 3.2, -22.7 1.1 3.2, 
+            -14.7 1.1 3.2, -14.2 2.1 3.2, -22.7 2.1 3.2, -19.9659 0.50012 3.2, 
+            -19.1 1 3.2, -22.7 2.1 3.2, -15.6525 0.550132 3.2, -22.7 2.1 3.2, 
+            -19.1 1 3.2, -19.9659 -0.50012 3.2, -19.9659 0.50012 3.2, -22.7 2.1 3.2, 
+            -15.6525 0.550132 3.2, -14.7 1.1 3.2, -22.7 2.1 3.2, -12.7859 -1.51413 3.2, 
+            -12.7859 1.51413 3.2, -14.2 2.1 3.2, -13.7475 0.550132 3.2, -12.7859 -1.51413 3.2, 
+            -14.2 2.1 3.2, -14.7 1.1 3.2, -13.7475 0.550132 3.2, -14.2 2.1 3.2, 
+            -12.2 -0.1 3.2, -12.2 0.1 3.2, -12.7859 1.51413 3.2, -12.7859 -1.51413 3.2, 
+            -12.2 -0.1 3.2, -12.7859 1.51413 3.2, -13.7475 0.550132 3.2, -13.7475 -0.550132 3.2, 
+            -12.7859 -1.51413 3.2, -15.6525 -0.550132 3.2, -19.1 1 3.2, -18.2341 0.50012 3.2, 
+            -15.6525 -0.550132 3.2, -15.6525 0.550132 3.2, -19.1 1 3.2, -17.7234 -4.02961 1.3, 
+            -7.22829 -5.88019 1.3, -7.26893 -5.90864 1.53437, -17.7929 -4.42378 0.607149, -7.26893 -5.90864 1.0656, 
+            -7.22829 -5.88019 1.3, -17.7234 -4.02961 1.3, -17.7929 -4.42378 0.607149, -7.22829 -5.88019 1.3, 
+            -17.7234 -4.02961 1.3, -7.26893 -5.90864 1.53437, -7.39941 -6 1.76316, -11.5098 -6 2.09762, 
+            -7.39941 -6 1.76316, -7.39941 -6 2.3, -17.7929 -4.42378 1.99285, -7.39941 -6 1.76316, 
+            -11.5098 -6 2.09762, -17.7929 -4.42378 1.99285, -17.7234 -4.02961 1.3, -7.39941 -6 1.76316, 
+            -11.5098 -6 2.09762, -7.39941 -6 2.3, -14.3 -6 2.3, -7.26893 -5.90864 1.0656, 
+            -7.39941 -6 0.836843, -7.39941 -6 0.3, -11.5896 -6 0.503505, -7.39941 -6 0.3, 
+            -7.39941 -6 0.836843, -11.5896 -6 0.503505, -14.3 -6 0.3, -7.39941 -6 0.3, 
+            -17.7929 -4.42378 0.607149, -7.39941 -6 0.836843, -7.26893 -5.90864 1.0656, -17.7929 -4.42378 0.607149, 
+            -11.5896 -6 0.503505, -7.39941 -6 0.836843, -25.9 2.3815 2.4, -25.9 2 2.4, 
+            -24.4859 1.41413 2.4, -27.5842 1.68369 2.4, -25.9 2 2.4, -25.9 2.3815 2.4, 
+            -27.3141 1.41413 2.4, -25.9 2 2.4, -27.5842 1.68369 2.4, -24.2158 1.68369 2.4, 
+            -24.4859 1.41413 2.4, -23.9 -1.64972e-015 2.4, -24.2158 1.68369 2.4, -25.9 2.3815 2.4, 
+            -24.4859 1.41413 2.4, -24.2158 -1.68369 2.4, -23.9 -1.64972e-015 2.4, -24.4859 -1.41413 2.4, 
+            -23.5186 -1.63129e-015 2.4, -24.2158 1.68369 2.4, -23.9 -1.64972e-015 2.4, -24.2158 -1.68369 2.4, 
+            -23.5186 -1.63129e-015 2.4, -23.9 -1.64972e-015 2.4, -24.2158 -1.68369 2.4, -24.4859 -1.41413 2.4, 
+            -25.9 -2 2.4, -25.9 -2.3815 2.4, -24.2158 -1.68369 2.4, -25.9 -2 2.4, 
+            -27.3141 -1.41413 2.4, -25.9 -2.3815 2.4, -25.9 -2 2.4, -27.3141 -1.41413 2.4, 
+            -27.5842 -1.68369 2.4, -25.9 -2.3815 2.4, -27.9 -1.67181e-015 2.4, -28.2814 -1.6576e-015 2.4, 
+            -27.5842 -1.68369 2.4, -27.3141 -1.41413 2.4, -27.9 -1.67181e-015 2.4, -27.5842 -1.68369 2.4, 
+            -27.9 -1.67181e-015 2.4, -27.5842 1.68369 2.4, -28.2814 -1.6576e-015 2.4, -27.9 -1.67181e-015 2.4, 
+            -27.3141 1.41413 2.4, -27.5842 1.68369 2.4, -15.2273 -6 0.92564, -14.8595 -6 0.471242, 
+            -14.3 -6 0.3, -13.9948 -6 0.669957, -15.2273 -6 0.92564, -14.3 -6 0.3, 
+            -11.5896 -6 0.503505, -13.9948 -6 0.669957, -14.3 -6 0.3, -18.0013 -5.6053 1.3, 
+            -15.2273 -6 0.92564, -13.9948 -6 0.669957, -18.0013 -5.6053 1.3, -15.282 -6.06184 1.11123, 
+            -15.2273 -6 0.92564, -17.9318 -5.21113 0.607149, -13.9948 -6 0.669957, -11.5896 -6 0.503505, 
+            -17.9318 -5.21113 0.607149, -18.0013 -5.6053 1.3, -13.9948 -6 0.669957, -17.7929 -4.42378 0.607149, 
+            -17.9318 -5.21113 0.607149, -11.5896 -6 0.503505, -13.9402 -6 1.93736, -14.8595 -6 2.12876, 
+            -15.2273 -6 1.67436, -17.9318 -5.21113 1.99285, -13.9402 -6 1.93736, -15.2273 -6 1.67436, 
+            -17.9318 -5.21113 1.99285, -15.2273 -6 1.67436, -15.2821 -6.06185 1.48837, -13.9402 -6 1.93736, 
+            -14.3 -6 2.3, -14.8595 -6 2.12876, -13.9402 -6 1.93736, -11.5098 -6 2.09762, 
+            -14.3 -6 2.3, -17.9318 -5.21113 1.99285, -11.5098 -6 2.09762, -13.9402 -6 1.93736, 
+            -17.7929 -4.42378 1.99285, -11.5098 -6 2.09762, -17.9318 -5.21113 1.99285, -18.0013 -5.6053 1.3, 
+            -15.3 -6.08161 1.3, -15.282 -6.06184 1.11123, -17.9318 -5.21113 1.99285, -15.2821 -6.06185 1.48837, 
+            -15.3 -6.08161 1.3, -17.9318 -5.21113 1.99285, -15.3 -6.08161 1.3, -18.0013 -5.6053 1.3, 
+            -17.9492 -5.30986 1.3, -18.0013 -5.6053 1.3, -17.9318 -5.21113 0.607149, -17.9492 -5.30986 1.3, 
+            -17.9058 -5.06378 1.73284, -18.0013 -5.6053 1.3, -17.9318 -5.21113 1.99285, -18.0013 -5.6053 1.3, 
+            -17.9058 -5.06378 1.73284, -17.8189 -4.57113 0.867161, -17.9318 -5.21113 0.607149, -17.7929 -4.42378 0.607149, 
+            -17.9058 -5.06378 0.867161, -17.9492 -5.30986 1.3, -17.9318 -5.21113 0.607149, -17.8189 -4.57113 0.867161, 
+            -17.9058 -5.06378 0.867161, -17.9318 -5.21113 0.607149, -17.8189 -4.57113 0.867161, -17.7929 -4.42378 0.607149, 
+            -17.7234 -4.02961 1.3, -17.8189 -4.57113 0.867161, -17.7234 -4.02961 1.3, -17.7755 -4.32505 1.3, 
+            -17.7929 -4.42378 1.99285, -17.7755 -4.32505 1.3, -17.7234 -4.02961 1.3, -17.7929 -4.42378 1.99285, 
+            -17.8189 -4.57113 1.73284, -17.7755 -4.32505 1.3, -17.7929 -4.42378 1.99285, -17.9058 -5.06378 1.73284, 
+            -17.8189 -4.57113 1.73284, -17.7929 -4.42378 1.99285, -17.9318 -5.21113 1.99285, -17.9058 -5.06378 1.73284
+          ]
+        }
+        coordIndex
+        [
+          0,1,2,-1, 3,4,5,-1, 6,7,8,-1, 9,10,11,-1, 12,13,14,-1, 15,16,17,-1, 
+          18,19,20,-1, 21,22,23,-1, 24,25,26,-1, 27,28,29,-1, 30,31,32,-1, 33,34,35,-1, 
+          36,37,38,-1, 39,40,41,-1, 42,43,44,-1, 45,46,47,-1, 48,49,50,-1, 51,52,53,-1, 
+          54,55,56,-1, 57,58,59,-1, 60,61,62,-1, 63,64,65,-1, 66,67,68,-1, 69,70,71,-1, 
+          72,73,74,-1, 75,76,77,-1, 78,79,80,-1, 81,82,83,-1, 84,85,86,-1, 87,88,89,-1, 
+          90,91,92,-1, 93,94,95,-1, 96,97,98,-1, 99,100,101,-1, 102,103,104,-1, 105,106,107,-1, 
+          108,109,110,-1, 111,112,113,-1, 114,115,116,-1, 117,118,119,-1, 120,121,122,-1, 123,124,125,-1, 
+          126,127,128,-1, 129,130,131,-1, 132,133,134,-1, 135,136,137,-1, 138,139,140,-1, 141,142,143,-1, 
+          144,145,146,-1, 147,148,149,-1, 150,151,152,-1, 153,154,155,-1, 156,157,158,-1, 159,160,161,-1, 
+          162,163,164,-1, 165,166,167,-1, 168,169,170,-1, 171,172,173,-1, 174,175,176,-1, 177,178,179,-1, 
+          180,181,182,-1, 183,184,185,-1, 186,187,188,-1, 189,190,191,-1, 192,193,194,-1, 195,196,197,-1, 
+          198,199,200,-1, 201,202,203,-1, 204,205,206,-1, 207,208,209,-1, 210,211,212,-1, 213,214,215,-1, 
+          216,217,218,-1, 219,220,221,-1, 222,223,224,-1, 225,226,227,-1, 228,229,230,-1, 231,232,233,-1, 
+          234,235,236,-1, 237,238,239,-1, 240,241,242,-1, 243,244,245,-1, 246,247,248,-1, 249,250,251,-1, 
+          252,253,254,-1, 255,256,257,-1, 258,259,260,-1, 261,262,263,-1, 264,265,266,-1, 267,268,269,-1, 
+          270,271,272,-1, 273,274,275,-1, 276,277,278,-1, 279,280,281,-1, 282,283,284,-1, 285,286,287,-1, 
+          288,289,290,-1, 291,292,293,-1, 294,295,296,-1, 297,298,299,-1, 300,301,302,-1, 303,304,305,-1, 
+          306,307,308,-1, 309,310,311,-1, 312,313,314,-1, 315,316,317,-1, 318,319,320,-1, 321,322,323,-1, 
+          324,325,326,-1, 327,328,329,-1, 330,331,332,-1, 333,334,335,-1, 336,337,338,-1, 339,340,341,-1, 
+          342,343,344,-1, 345,346,347,-1, 348,349,350,-1, 351,352,353,-1, 354,355,356,-1, 357,358,359,-1, 
+          360,361,362,-1, 363,364,365,-1, 366,367,368,-1, 369,370,371,-1, 372,373,374,-1, 375,376,377,-1, 
+          378,379,380,-1, 381,382,383,-1, 384,385,386,-1, 387,388,389,-1, 390,391,392,-1, 393,394,395,-1, 
+          396,397,398,-1, 399,400,401,-1, 402,403,404,-1, 405,406,407,-1, 408,409,410,-1, 411,412,413,-1, 
+          414,415,416,-1, 417,418,419,-1, 420,421,422,-1, 423,424,425,-1, 426,427,428,-1, 429,430,431,-1, 
+          432,433,434,-1, 435,436,437,-1, 438,439,440,-1, 441,442,443,-1, 444,445,446,-1, 447,448,449,-1, 
+          450,451,452,-1, 453,454,455,-1, 456,457,458,-1, 459,460,461,-1, 462,463,464,-1, 465,466,467,-1, 
+          468,469,470,-1, 471,472,473,-1, 474,475,476,-1, 477,478,479,-1, 480,481,482,-1, 483,484,485,-1, 
+          486,487,488,-1, 489,490,491,-1, 492,493,494,-1, 495,496,497,-1, 498,499,500,-1, 501,502,503,-1, 
+          504,505,506,-1, 507,508,509,-1, 510,511,512,-1, 513,514,515,-1, 516,517,518,-1, 519,520,521,-1, 
+          522,523,524,-1, 525,526,527,-1, 528,529,530,-1, 531,532,533,-1, 534,535,536,-1, 537,538,539,-1, 
+          540,541,542,-1, 543,544,545,-1, 546,547,548,-1, 549,550,551,-1, 552,553,554,-1, 555,556,557,-1, 
+          558,559,560,-1, 561,562,563,-1, 564,565,566,-1, 567,568,569,-1, 570,571,572,-1, 573,574,575,-1, 
+          576,577,578,-1, 579,580,581,-1, 582,583,584,-1, 585,586,587,-1, 588,589,590,-1, 591,592,593,-1, 
+          594,595,596,-1, 597,598,599,-1, 600,601,602,-1, 603,604,605,-1, 606,607,608,-1, 609,610,611,-1, 
+          612,613,614,-1, 615,616,617,-1, 618,619,620,-1, 621,622,623,-1, 624,625,626,-1, 627,628,629,-1, 
+          630,631,632,-1, 633,634,635,-1, 636,637,638,-1, 639,640,641,-1, 642,643,644,-1, 645,646,647,-1, 
+          648,649,650,-1, 651,652,653,-1, 654,655,656,-1, 657,658,659,-1, 660,661,662,-1, 663,664,665,-1, 
+          666,667,668,-1, 669,670,671,-1, 672,673,674,-1, 675,676,677,-1, 678,679,680,-1, 681,682,683,-1, 
+          684,685,686,-1, 687,688,689,-1, 690,691,692,-1, 693,694,695,-1, 696,697,698,-1, 699,700,701,-1, 
+          702,703,704,-1, 705,706,707,-1, 708,709,710,-1, 711,712,713,-1, 714,715,716,-1, 717,718,719,-1, 
+          720,721,722,-1, 723,724,725,-1, 726,727,728,-1, 729,730,731,-1, 732,733,734,-1, 735,736,737,-1, 
+          738,739,740,-1, 741,742,743,-1, 744,745,746,-1, 747,748,749,-1, 750,751,752,-1, 753,754,755,-1, 
+          756,757,758,-1, 759,760,761,-1, 762,763,764,-1, 765,766,767,-1, 768,769,770,-1, 771,772,773,-1, 
+          774,775,776,-1, 777,778,779,-1, 780,781,782,-1, 783,784,785,-1, 786,787,788,-1, 789,790,791,-1, 
+          792,793,794,-1, 795,796,797,-1, 798,799,800,-1, 801,802,803,-1, 804,805,806,-1, 807,808,809,-1, 
+          810,811,812,-1, 813,814,815,-1, 816,817,818,-1, 819,820,821,-1, 822,823,824,-1, 825,826,827,-1, 
+          828,829,830,-1, 831,832,833,-1, 834,835,836,-1, 837,838,839,-1, 840,841,842,-1, 843,844,845,-1, 
+          846,847,848,-1, 849,850,851,-1, 852,853,854,-1, 855,856,857,-1, 858,859,860,-1, 861,862,863,-1, 
+          864,865,866,-1, 867,868,869,-1, 870,871,872,-1, 873,874,875,-1, 876,877,878,-1, 879,880,881,-1, 
+          882,883,884,-1, 885,886,887,-1, 888,889,890,-1, 891,892,893,-1, 894,895,896,-1, 897,898,899,-1, 
+          900,901,902,-1, 903,904,905,-1, 906,907,908,-1, 909,910,911,-1, 912,913,914,-1, 915,916,917,-1, 
+          918,919,920,-1, 921,922,923,-1, 924,925,926,-1, 927,928,929,-1, 930,931,932,-1, 933,934,935,-1, 
+          936,937,938,-1, 939,940,941,-1, 942,943,944,-1, 945,946,947,-1, 948,949,950,-1, 951,952,953,-1, 
+          954,955,956,-1, 957,958,959,-1, 960,961,962,-1, 963,964,965,-1, 966,967,968,-1, 969,970,971,-1, 
+          972,973,974,-1, 975,976,977,-1, 978,979,980,-1, 981,982,983,-1, 984,985,986,-1, 987,988,989,-1, 
+          990,991,992,-1, 993,994,995,-1, 996,997,998,-1, 999,1000,1001,-1, 1002,1003,1004,-1, 1005,1006,1007,-1, 
+          1008,1009,1010,-1, 1011,1012,1013,-1, 1014,1015,1016,-1, 1017,1018,1019,-1, 1020,1021,1022,-1, 1023,1024,1025,-1, 
+          1026,1027,1028,-1, 1029,1030,1031,-1, 1032,1033,1034,-1, 1035,1036,1037,-1, 1038,1039,1040,-1, 1041,1042,1043,-1, 
+          1044,1045,1046,-1, 1047,1048,1049,-1, 1050,1051,1052,-1, 1053,1054,1055,-1, 1056,1057,1058,-1, 1059,1060,1061,-1, 
+          1062,1063,1064,-1, 1065,1066,1067,-1, 1068,1069,1070,-1, 1071,1072,1073,-1, 1074,1075,1076,-1, 1077,1078,1079,-1, 
+          1080,1081,1082,-1, 1083,1084,1085,-1, 1086,1087,1088,-1, 1089,1090,1091,-1, 1092,1093,1094,-1, 1095,1096,1097,-1, 
+          1098,1099,1100,-1, 1101,1102,1103,-1, 1104,1105,1106,-1, 1107,1108,1109,-1, 1110,1111,1112,-1, 1113,1114,1115,-1, 
+          1116,1117,1118,-1, 1119,1120,1121,-1, 1122,1123,1124,-1, 1125,1126,1127,-1, 1128,1129,1130,-1, 1131,1132,1133,-1, 
+          1134,1135,1136,-1, 1137,1138,1139,-1, 1140,1141,1142,-1, 1143,1144,1145,-1, 1146,1147,1148,-1, 1149,1150,1151,-1, 
+          1152,1153,1154,-1, 1155,1156,1157,-1, 1158,1159,1160,-1, 1161,1162,1163,-1, 1164,1165,1166,-1, 1167,1168,1169,-1, 
+          1170,1171,1172,-1, 1173,1174,1175,-1, 1176,1177,1178,-1, 1179,1180,1181,-1, 1182,1183,1184,-1, 1185,1186,1187,-1, 
+          1188,1189,1190,-1, 1191,1192,1193,-1, 1194,1195,1196,-1, 1197,1198,1199,-1, 1200,1201,1202,-1, 1203,1204,1205,-1, 
+          1206,1207,1208,-1, 1209,1210,1211,-1, 1212,1213,1214,-1, 1215,1216,1217,-1, 1218,1219,1220,-1, 1221,1222,1223,-1, 
+          1224,1225,1226,-1, 1227,1228,1229,-1, 1230,1231,1232,-1, 1233,1234,1235,-1, 1236,1237,1238,-1, 1239,1240,1241,-1, 
+          1242,1243,1244,-1, 1245,1246,1247,-1, 1248,1249,1250,-1, 1251,1252,1253,-1, 1254,1255,1256,-1, 1257,1258,1259,-1, 
+          1260,1261,1262,-1, 1263,1264,1265,-1, 1266,1267,1268,-1, 1269,1270,1271,-1, 1272,1273,1274,-1, 1275,1276,1277,-1, 
+          1278,1279,1280,-1, 1281,1282,1283,-1, 1284,1285,1286,-1, 1287,1288,1289,-1, 1290,1291,1292,-1, 1293,1294,1295,-1, 
+          1296,1297,1298,-1, 1299,1300,1301,-1, 1302,1303,1304,-1, 1305,1306,1307,-1, 1308,1309,1310,-1, 1311,1312,1313,-1, 
+          1314,1315,1316,-1, 1317,1318,1319,-1, 1320,1321,1322,-1, 1323,1324,1325,-1, 1326,1327,1328,-1, 1329,1330,1331,-1, 
+          1332,1333,1334,-1, 1335,1336,1337,-1, 1338,1339,1340,-1, 1341,1342,1343,-1, 1344,1345,1346,-1, 1347,1348,1349,-1, 
+          1350,1351,1352,-1, 1353,1354,1355,-1, 1356,1357,1358,-1, 1359,1360,1361,-1, 1362,1363,1364,-1, 1365,1366,1367,-1, 
+          1368,1369,1370,-1, 1371,1372,1373,-1, 1374,1375,1376,-1, 1377,1378,1379,-1, 1380,1381,1382,-1, 1383,1384,1385,-1, 
+          1386,1387,1388,-1, 1389,1390,1391,-1, 1392,1393,1394,-1, 1395,1396,1397,-1, 1398,1399,1400,-1, 1401,1402,1403,-1, 
+          1404,1405,1406,-1, 1407,1408,1409,-1, 1410,1411,1412,-1, 1413,1414,1415,-1, 1416,1417,1418,-1, 1419,1420,1421,-1, 
+          1422,1423,1424,-1, 1425,1426,1427,-1, 1428,1429,1430,-1, 1431,1432,1433,-1, 1434,1435,1436,-1, 1437,1438,1439,-1, 
+          1440,1441,1442,-1, 1443,1444,1445,-1, 1446,1447,1448,-1, 1449,1450,1451,-1, 1452,1453,1454,-1, 1455,1456,1457,-1, 
+          1458,1459,1460,-1, 1461,1462,1463,-1, 1464,1465,1466,-1, 1467,1468,1469,-1, 1470,1471,1472,-1, 1473,1474,1475,-1, 
+          1476,1477,1478,-1, 1479,1480,1481,-1, 1482,1483,1484,-1, 1485,1486,1487,-1, 1488,1489,1490,-1, 1491,1492,1493,-1, 
+          1494,1495,1496,-1, 1497,1498,1499,-1, 1500,1501,1502,-1, 1503,1504,1505,-1, 1506,1507,1508,-1, 1509,1510,1511,-1, 
+          1512,1513,1514,-1, 1515,1516,1517,-1, 1518,1519,1520,-1, 1521,1522,1523,-1, 1524,1525,1526,-1, 1527,1528,1529,-1, 
+          1530,1531,1532,-1, 1533,1534,1535,-1, 1536,1537,1538,-1, 1539,1540,1541,-1, 1542,1543,1544,-1, 1545,1546,1547,-1, 
+          1548,1549,1550,-1, 1551,1552,1553,-1, 1554,1555,1556,-1, 1557,1558,1559,-1, 1560,1561,1562,-1, 1563,1564,1565,-1, 
+          1566,1567,1568,-1, 1569,1570,1571,-1, 1572,1573,1574,-1, 1575,1576,1577,-1, 1578,1579,1580,-1, 1581,1582,1583,-1, 
+          1584,1585,1586,-1, 1587,1588,1589,-1, 1590,1591,1592,-1, 1593,1594,1595,-1, 1596,1597,1598,-1, 1599,1600,1601,-1, 
+          1602,1603,1604,-1, 1605,1606,1607,-1, 1608,1609,1610,-1, 1611,1612,1613,-1, 1614,1615,1616,-1, 1617,1618,1619,-1, 
+          1620,1621,1622,-1, 1623,1624,1625,-1, 1626,1627,1628,-1, 1629,1630,1631,-1, 1632,1633,1634,-1, 1635,1636,1637,-1, 
+          1638,1639,1640,-1, 1641,1642,1643,-1, 1644,1645,1646,-1, 1647,1648,1649,-1, 1650,1651,1652,-1, 1653,1654,1655,-1, 
+          1656,1657,1658,-1, 1659,1660,1661,-1, 1662,1663,1664,-1, 1665,1666,1667,-1, 1668,1669,1670,-1, 1671,1672,1673,-1, 
+          1674,1675,1676,-1, 1677,1678,1679,-1, 1680,1681,1682,-1, 1683,1684,1685,-1, 1686,1687,1688,-1, 1689,1690,1691,-1, 
+          1692,1693,1694,-1, 1695,1696,1697,-1, 1698,1699,1700,-1, 1701,1702,1703,-1, 1704,1705,1706,-1, 1707,1708,1709,-1, 
+          1710,1711,1712,-1, 1713,1714,1715,-1, 1716,1717,1718,-1, 1719,1720,1721,-1, 1722,1723,1724,-1, 1725,1726,1727,-1, 
+          1728,1729,1730,-1, 1731,1732,1733,-1, 1734,1735,1736,-1, 1737,1738,1739,-1, 1740,1741,1742,-1, 1743,1744,1745,-1, 
+          1746,1747,1748,-1, 1749,1750,1751,-1, 1752,1753,1754,-1, 1755,1756,1757,-1, 1758,1759,1760,-1, 1761,1762,1763,-1, 
+          1764,1765,1766,-1, 1767,1768,1769,-1, 1770,1771,1772,-1, 1773,1774,1775,-1, 1776,1777,1778,-1, 1779,1780,1781,-1, 
+          1782,1783,1784,-1, 1785,1786,1787,-1, 1788,1789,1790,-1, 1791,1792,1793,-1, 1794,1795,1796,-1, 1797,1798,1799,-1, 
+          1800,1801,1802,-1, 1803,1804,1805,-1, 1806,1807,1808,-1, 1809,1810,1811,-1, 1812,1813,1814,-1, 1815,1816,1817,-1, 
+          1818,1819,1820,-1, 1821,1822,1823,-1, 1824,1825,1826,-1, 1827,1828,1829,-1, 1830,1831,1832,-1, 1833,1834,1835,-1, 
+          1836,1837,1838,-1, 1839,1840,1841,-1, 1842,1843,1844,-1, 1845,1846,1847,-1, 1848,1849,1850,-1, 1851,1852,1853,-1, 
+          1854,1855,1856,-1, 1857,1858,1859,-1, 1860,1861,1862,-1, 1863,1864,1865,-1, 1866,1867,1868,-1, 1869,1870,1871,-1, 
+          1872,1873,1874,-1, 1875,1876,1877,-1, 1878,1879,1880,-1, 1881,1882,1883,-1, 1884,1885,1886,-1, 1887,1888,1889,-1, 
+          1890,1891,1892,-1, 1893,1894,1895,-1, 1896,1897,1898,-1, 1899,1900,1901,-1, 1902,1903,1904,-1, 1905,1906,1907,-1, 
+          1908,1909,1910,-1, 1911,1912,1913,-1, 1914,1915,1916,-1, 1917,1918,1919,-1, 1920,1921,1922,-1, 1923,1924,1925,-1, 
+          1926,1927,1928,-1, 1929,1930,1931,-1, 1932,1933,1934,-1, 1935,1936,1937,-1, 1938,1939,1940,-1, 1941,1942,1943,-1, 
+          1944,1945,1946,-1, 1947,1948,1949,-1, 1950,1951,1952,-1, 1953,1954,1955,-1, 1956,1957,1958,-1, 1959,1960,1961,-1, 
+          1962,1963,1964,-1, 1965,1966,1967,-1, 1968,1969,1970,-1, 1971,1972,1973,-1, 1974,1975,1976,-1, 1977,1978,1979,-1, 
+          1980,1981,1982,-1, 1983,1984,1985,-1, 1986,1987,1988,-1, 1989,1990,1991,-1, 1992,1993,1994,-1, 1995,1996,1997,-1, 
+          1998,1999,2000,-1, 2001,2002,2003,-1, 2004,2005,2006,-1, 2007,2008,2009,-1, 2010,2011,2012,-1, 2013,2014,2015,-1, 
+          2016,2017,2018,-1, 2019,2020,2021,-1, 2022,2023,2024,-1, 2025,2026,2027,-1, 2028,2029,2030,-1, 2031,2032,2033,-1, 
+          2034,2035,2036,-1, 2037,2038,2039,-1, 2040,2041,2042,-1, 2043,2044,2045,-1, 2046,2047,2048,-1, 2049,2050,2051,-1, 
+          2052,2053,2054,-1, 2055,2056,2057,-1, 2058,2059,2060,-1, 2061,2062,2063,-1, 2064,2065,2066,-1, 2067,2068,2069,-1, 
+          2070,2071,2072,-1, 2073,2074,2075,-1, 2076,2077,2078,-1, 2079,2080,2081,-1, 2082,2083,2084,-1, 2085,2086,2087,-1, 
+          2088,2089,2090,-1, 2091,2092,2093,-1, 2094,2095,2096,-1, 2097,2098,2099,-1, 2100,2101,2102,-1, 2103,2104,2105,-1, 
+          2106,2107,2108,-1, 2109,2110,2111,-1, 2112,2113,2114,-1, 2115,2116,2117,-1, 2118,2119,2120,-1, 2121,2122,2123,-1, 
+          2124,2125,2126,-1, 2127,2128,2129,-1, 2130,2131,2132,-1, 2133,2134,2135,-1, 2136,2137,2138,-1, 2139,2140,2141,-1, 
+          2142,2143,2144,-1, 2145,2146,2147,-1, 2148,2149,2150,-1, 2151,2152,2153,-1, 2154,2155,2156,-1, 2157,2158,2159,-1, 
+          2160,2161,2162,-1, 2163,2164,2165,-1, 2166,2167,2168,-1, 2169,2170,2171,-1, 2172,2173,2174,-1, 2175,2176,2177,-1, 
+          2178,2179,2180,-1, 2181,2182,2183,-1, 2184,2185,2186,-1, 2187,2188,2189,-1, 2190,2191,2192,-1, 2193,2194,2195,-1, 
+          2196,2197,2198,-1, 2199,2200,2201,-1, 2202,2203,2204,-1, 2205,2206,2207,-1, 2208,2209,2210,-1, 2211,2212,2213,-1, 
+          2214,2215,2216,-1, 2217,2218,2219,-1, 2220,2221,2222,-1, 2223,2224,2225,-1, 2226,2227,2228,-1, 2229,2230,2231,-1, 
+          2232,2233,2234,-1, 2235,2236,2237,-1, 2238,2239,2240,-1, 2241,2242,2243,-1, 2244,2245,2246,-1, 2247,2248,2249,-1, 
+          2250,2251,2252,-1, 2253,2254,2255,-1, 2256,2257,2258,-1, 2259,2260,2261,-1, 2262,2263,2264,-1, 2265,2266,2267,-1, 
+          2268,2269,2270,-1, 2271,2272,2273,-1, 2274,2275,2276,-1, 2277,2278,2279,-1, 2280,2281,2282,-1, 2283,2284,2285,-1, 
+          2286,2287,2288,-1, 2289,2290,2291,-1, 2292,2293,2294,-1, 2295,2296,2297,-1, 2298,2299,2300,-1, 2301,2302,2303,-1, 
+          2304,2305,2306,-1, 2307,2308,2309,-1, 2310,2311,2312,-1, 2313,2314,2315,-1, 2316,2317,2318,-1, 2319,2320,2321,-1, 
+          2322,2323,2324,-1, 2325,2326,2327,-1, 2328,2329,2330,-1, 2331,2332,2333,-1, 2334,2335,2336,-1, 2337,2338,2339,-1, 
+          2340,2341,2342,-1, 2343,2344,2345,-1, 2346,2347,2348,-1, 2349,2350,2351,-1, 2352,2353,2354,-1, 2355,2356,2357,-1, 
+          2358,2359,2360,-1, 2361,2362,2363,-1, 2364,2365,2366,-1, 2367,2368,2369,-1, 2370,2371,2372,-1, 2373,2374,2375,-1, 
+          2376,2377,2378,-1, 2379,2380,2381,-1, 2382,2383,2384,-1, 2385,2386,2387,-1, 2388,2389,2390,-1, 2391,2392,2393,-1, 
+          2394,2395,2396,-1, 2397,2398,2399,-1, 2400,2401,2402,-1, 2403,2404,2405,-1, 2406,2407,2408,-1, 2409,2410,2411,-1, 
+          2412,2413,2414,-1, 2415,2416,2417,-1, 2418,2419,2420,-1, 2421,2422,2423,-1, 2424,2425,2426,-1, 2427,2428,2429,-1, 
+          2430,2431,2432,-1, 2433,2434,2435,-1, 2436,2437,2438,-1, 2439,2440,2441,-1, 2442,2443,2444,-1, 2445,2446,2447,-1, 
+          2448,2449,2450,-1, 2451,2452,2453,-1, 2454,2455,2456,-1, 2457,2458,2459,-1, 2460,2461,2462,-1, 2463,2464,2465,-1, 
+          2466,2467,2468,-1, 2469,2470,2471,-1, 2472,2473,2474,-1, 2475,2476,2477,-1, 2478,2479,2480,-1, 2481,2482,2483,-1, 
+          2484,2485,2486,-1, 2487,2488,2489,-1, 2490,2491,2492,-1, 2493,2494,2495,-1, 2496,2497,2498,-1, 2499,2500,2501,-1, 
+          2502,2503,2504,-1, 2505,2506,2507,-1, 2508,2509,2510,-1, 2511,2512,2513,-1, 2514,2515,2516,-1, 2517,2518,2519,-1, 
+          2520,2521,2522,-1, 2523,2524,2525,-1, 2526,2527,2528,-1, 2529,2530,2531,-1, 2532,2533,2534,-1, 2535,2536,2537,-1, 
+          2538,2539,2540,-1, 2541,2542,2543,-1, 2544,2545,2546,-1, 2547,2548,2549,-1, 2550,2551,2552,-1, 2553,2554,2555,-1, 
+          2556,2557,2558,-1, 2559,2560,2561,-1, 2562,2563,2564,-1, 2565,2566,2567,-1, 2568,2569,2570,-1, 2571,2572,2573,-1, 
+          2574,2575,2576,-1, 2577,2578,2579,-1, 2580,2581,2582,-1, 2583,2584,2585,-1, 2586,2587,2588,-1, 2589,2590,2591,-1, 
+          2592,2593,2594,-1, 2595,2596,2597,-1, 2598,2599,2600,-1, 2601,2602,2603,-1, 2604,2605,2606,-1, 2607,2608,2609,-1, 
+          2610,2611,2612,-1, 2613,2614,2615,-1, 2616,2617,2618,-1, 2619,2620,2621,-1, 2622,2623,2624,-1, 2625,2626,2627,-1, 
+          2628,2629,2630,-1, 2631,2632,2633,-1, 2634,2635,2636,-1, 2637,2638,2639,-1, 2640,2641,2642,-1, 2643,2644,2645,-1, 
+          2646,2647,2648,-1, 2649,2650,2651,-1, 2652,2653,2654,-1, 2655,2656,2657,-1, 2658,2659,2660,-1, 2661,2662,2663,-1, 
+          2664,2665,2666,-1, 2667,2668,2669,-1, 2670,2671,2672,-1, 2673,2674,2675,-1, 2676,2677,2678,-1, 2679,2680,2681,-1, 
+          2682,2683,2684,-1, 2685,2686,2687,-1, 2688,2689,2690,-1, 2691,2692,2693,-1, 2694,2695,2696,-1, 2697,2698,2699,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger2.wrl b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger2.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..ca6ca4c44c32371f31aaacbad5ac180b1fe88b87
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFinger2.wrl
@@ -0,0 +1,914 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            3 1.5 -5.8, 3 -1.7 -5, 3 -1.7 -5.8, 2.90181 -2.52322 -5, 
+            3 -1.7 -5.8, 3 -1.7 -5, 2.94322 -2.3279 -5.8, 3 1.5 -5.8, 
+            3 -1.7 -5.8, 2.90181 -2.52322 -5, 2.94322 -2.3279 -5.8, 3 -1.7 -5.8, 
+            3 1.5 -5.8, 3 2.3 -5, 3 -1.7 -5, 2 2.3 -5, 
+            3 -1.7 -5, 3 2.3 -5, 2.90181 -2.52322 -5, 3 -1.7 -5, 
+            2 2.3 -5, 3 1.5 -5.8, 3 2.3 -6.07947, 3 2.3 -5, 
+            2 2.3 -5, 3 2.3 -5, 3 2.3 -6.07947, 3 1.5 -5.8, 
+            3 1.90496 -6.21459, 3 2.3 -6.07947, 2 2.3 -6.07947, 3 2.3 -6.07947, 
+            3 1.90496 -6.21459, 2 2.3 -5, 3 2.3 -6.07947, 2 2.3 -6.07947, 
+            3 1.5 -5.8, 3 1.5 -6.32456, 3 1.90496 -6.21459, -16.5 3.16595 -5.67686, 
+            3 1.90496 -6.21459, 3 1.5 -6.32456, 2 2.3 -6.07947, 3 1.90496 -6.21459, 
+            -16.5 3.16595 -5.67686, -16.5 1.5 -5.8, 3 1.5 -6.32456, 3 1.5 -5.8, 
+            -16.5 1.5 -6.32456, -16.5 3.16595 -5.67686, 3 1.5 -6.32456, -16.5 1.5 -5.8, 
+            -16.5 1.5 -6.32456, 3 1.5 -6.32456, 2.94322 -2.3279 -5.8, 2.77514 -2.93428 -5.8, 
+            3 1.5 -5.8, 1.36588 -0.50012 -5.8, 3 1.5 -5.8, 2.77514 -2.93428 -5.8, 
+            -15.2 1 -5.8, -16.5 1.5 -5.8, 3 1.5 -5.8, -10.8 0.8 -5.8, 
+            -15.2 1 -5.8, 3 1.5 -5.8, -10.1072 0.4 -5.8, -10.8 0.8 -5.8, 
+            3 1.5 -5.8, -0.5 1 -5.8, -10.1072 0.4 -5.8, 3 1.5 -5.8, 
+            0.5 1 -5.8, -0.5 1 -5.8, 3 1.5 -5.8, 1.36588 0.50012 -5.8, 
+            0.5 1 -5.8, 3 1.5 -5.8, 1.36588 -0.50012 -5.8, 1.36588 0.50012 -5.8, 
+            3 1.5 -5.8, -10.5 -5.5 -3.4641, -10.5 -3.9 -5.2, -10.5 -4.77887 -4.40589, 
+            -3.49913 -4.66197 -4.52946, -10.5 -4.77887 -4.40589, -10.5 -3.9 -5.2, -10.5 -3.9 -0.6, 
+            -10.5 -3.9 -5.2, -10.5 -5.5 -3.4641, -16.5 -3.78094 -5.2872, 2.04119 -4.1067 -5.03835, 
+            -10.5 -3.9 -5.2, -3 -4.15331 -5, -10.5 -3.9 -5.2, 2.04119 -4.1067 -5.03835, 
+            -14.5 -3.9 -5.2, -16.5 -3.78094 -5.2872, -10.5 -3.9 -5.2, -10.5 -3.9 -0.6, 
+            -14.5 -3.9 -5.2, -10.5 -3.9 -5.2, -3.40757 -4.39425 -4.78963, -3.49913 -4.66197 -4.52946, 
+            -10.5 -3.9 -5.2, -3 -4.15331 -5, -3.40757 -4.39425 -4.78963, -10.5 -3.9 -5.2, 
+            -8.5 -5.5 -3.4641, -10.5 -5.5 -3.4641, -10.5 -4.77887 -4.40589, -8.5 -5.35433 -3.68526, 
+            -8.5 -5.5 -3.4641, -10.5 -4.77887 -4.40589, -8.5 -5.2 -3.9, -8.5 -5.35433 -3.68526, 
+            -10.5 -4.77887 -4.40589, -3 -5.12348 -4, -8.5 -5.2 -3.9, -10.5 -4.77887 -4.40589, 
+            -3.43153 -4.92029 -4.24744, -3 -5.12348 -4, -10.5 -4.77887 -4.40589, -3.49913 -4.66197 -4.52946, 
+            -3.43153 -4.92029 -4.24744, -10.5 -4.77887 -4.40589, -8.5 -5.5 7.21296e-015, -10.5 -5.5 -3.4641, 
+            -8.5 -5.5 -3.4641, -10.5 -5.5 7.10194e-015, -10.5 -5.5 -3.4641, -8.5 -5.5 7.21296e-015, 
+            -10.5 -3.9 -0.6, -10.5 -5.5 -3.4641, -10.5 -5.5 7.10194e-015, -8.5 -5.2 7.21724e-015, 
+            -8.5 -5.5 -3.4641, -8.5 -5.35433 -3.68526, -8.5 -5.5 7.21296e-015, -8.5 -5.5 -3.4641, 
+            -8.5 -5.2 7.21724e-015, -8.5 -5.2 7.21724e-015, -8.5 -5.35433 -3.68526, -8.5 -5.2 -3.9, 
+            -3 -5.12348 -4, -0.5 -5.2 -3.9, -8.5 -5.2 -3.9, -6.19282 -5.2 -3, 
+            -8.5 -5.2 -3.9, -0.5 -5.2 -3.9, -6.19282 -5.2 -3, -8.5 -5.2 7.21724e-015, 
+            -8.5 -5.2 -3.9, -2.56933 -4.92154 -4.24599, 0.875399 -4.91849 -4.24952, -0.5 -5.2 -3.9, 
+            -0.5 -5.2 -3, -0.5 -5.2 -3.9, 0.875399 -4.91849 -4.24952, -2.56933 -4.92154 -4.24599, 
+            -0.5 -5.2 -3.9, -3 -5.12348 -4, -6.19282 -5.2 -3, -0.5 -5.2 -3.9, 
+            -0.5 -5.2 -3, -3 -4.15331 -5, 2.04119 -4.1067 -5.03835, 0.875399 -4.91849 -4.24952, 
+            1.32372 -4.68726 -3, 0.875399 -4.91849 -4.24952, 2.04119 -4.1067 -5.03835, -2.58853 -4.4003 -4.78407, 
+            -3 -4.15331 -5, 0.875399 -4.91849 -4.24952, -2.50069 -4.66511 -4.52623, -2.58853 -4.4003 -4.78407, 
+            0.875399 -4.91849 -4.24952, -2.56933 -4.92154 -4.24599, -2.50069 -4.66511 -4.52623, 0.875399 -4.91849 -4.24952, 
+            -0.5 -5.2 -3, 0.875399 -4.91849 -4.24952, 1.32372 -4.68726 -3, -3.5 -2.93428 -5.8, 
+            2.77514 -2.93428 -5.8, 2.04119 -4.1067 -5.03835, 2.61288 -3.3 -5, 2.04119 -4.1067 -5.03835, 
+            2.77514 -2.93428 -5.8, -10.5 -2.93428 -5.8, -3.5 -2.93428 -5.8, 2.04119 -4.1067 -5.03835, 
+            -14.5 -2.93428 -5.8, -10.5 -2.93428 -5.8, 2.04119 -4.1067 -5.03835, -16.5 -3.78094 -5.2872, 
+            -14.5 -2.93428 -5.8, 2.04119 -4.1067 -5.03835, 2.61288 -3.3 -5, 1.32372 -4.68726 -3, 
+            2.04119 -4.1067 -5.03835, 0.5 -1 -5.8, 2.77514 -2.93428 -5.8, -3.5 -2.93428 -5.8, 
+            2.90181 -2.52322 -5, 2.77514 -2.93428 -5.8, 2.94322 -2.3279 -5.8, 0.5 -1 -5.8, 
+            1.36588 -0.50012 -5.8, 2.77514 -2.93428 -5.8, 2.61288 -3.3 -5, 2.77514 -2.93428 -5.8, 
+            2.90181 -2.52322 -5, -3.5 -1.5 -6.32456, -3.5 -2.93428 -5.8, -3.5 -2.23193 -6.10479, 
+            -10.5 -2.23193 -6.10479, -3.5 -2.23193 -6.10479, -3.5 -2.93428 -5.8, -3.5 -1.5 -5.8, 
+            -3.5 -2.93428 -5.8, -3.5 -1.5 -6.32456, -10.5 -2.93428 -5.8, -10.5 -2.23193 -6.10479, 
+            -3.5 -2.93428 -5.8, -1.36588 0.50012 -5.8, -3.5 -2.93428 -5.8, -3.5 -1.5 -5.8, 
+            -0.5 -1 -5.8, 0.5 -1 -5.8, -3.5 -2.93428 -5.8, -1.36588 -0.50012 -5.8, 
+            -0.5 -1 -5.8, -3.5 -2.93428 -5.8, -1.36588 0.50012 -5.8, -1.36588 -0.50012 -5.8, 
+            -3.5 -2.93428 -5.8, -10.5 -1.5 -6.32456, -3.5 -1.5 -6.32456, -3.5 -2.23193 -6.10479, 
+            -10.5 -2.23193 -6.10479, -10.5 -1.5 -6.32456, -3.5 -2.23193 -6.10479, -3.5 -1.5 -5.8, 
+            -3.5 -1.5 -6.32456, -10.5 -1.5 -6.32456, -10.5 -1.5 -5.8, -10.5 -1.5 -6.32456, 
+            -10.5 -2.23193 -6.10479, -3.5 -1.5 -5.8, -10.5 -1.5 -6.32456, -10.5 -1.5 -5.8, 
+            -10.5 -1.5 -5.8, -10.5 -2.23193 -6.10479, -10.5 -2.93428 -5.8, -10.5 -1.5 -5.8, 
+            -10.5 -2.93428 -5.8, -14.5 -2.93428 -5.8, -14.5 -1.5 -6.32456, -14.5 -2.93428 -5.8, 
+            -14.5 -2.23193 -6.10479, -16.5 -1.5 -6.32456, -14.5 -2.23193 -6.10479, -14.5 -2.93428 -5.8, 
+            -14.5 -1.5 -5.8, -14.5 -2.93428 -5.8, -14.5 -1.5 -6.32456, -16.5 -3.78094 -5.2872, 
+            -16.5 -1.5 -6.32456, -14.5 -2.93428 -5.8, -14.3341 -0.50012 -5.8, -14.5 -2.93428 -5.8, 
+            -14.5 -1.5 -5.8, -10.8 -0.8 -5.8, -10.5 -1.5 -5.8, -14.5 -2.93428 -5.8, 
+            -11.4928 0.4 -5.8, -14.5 -2.93428 -5.8, -14.3341 -0.50012 -5.8, -11.4928 -0.4 -5.8, 
+            -10.8 -0.8 -5.8, -14.5 -2.93428 -5.8, -11.4928 0.4 -5.8, -11.4928 -0.4 -5.8, 
+            -14.5 -2.93428 -5.8, -16.5 -1.5 -6.32456, -14.5 -1.5 -6.32456, -14.5 -2.23193 -6.10479, 
+            -14.5 -1.5 -5.8, -14.5 -1.5 -6.32456, -16.5 -1.5 -6.32456, -16.5 -1.5 -5.8, 
+            -16.5 -1.5 -6.32456, -16.5 -3.78094 -5.2872, -14.5 -1.5 -5.8, -16.5 -1.5 -6.32456, 
+            -16.5 -1.5 -5.8, -14.5 -5.5 -3.4641, -16.5 -5.5 -3.4641, -16.5 -3.78094 -5.2872, 
+            -16.5 -4.5 -2.6, -16.5 -3.78094 -5.2872, -16.5 -5.5 -3.4641, -14.5 -4.77887 -4.40589, 
+            -14.5 -5.5 -3.4641, -16.5 -3.78094 -5.2872, -14.5 -3.9 -5.2, -14.5 -4.77887 -4.40589, 
+            -16.5 -3.78094 -5.2872, -16.5 -4.5 -2.6, -16.5 2.3 -2.6, -16.5 -3.78094 -5.2872, 
+            -16.5 -1.5 -5.8, -16.5 -3.78094 -5.2872, -16.5 2.3 -2.6, -14.5 -5.5 6.8799e-015, 
+            -16.5 -5.5 -3.4641, -14.5 -5.5 -3.4641, -16.5 -5.5 6.76887e-015, -16.5 -5.5 -3.4641, 
+            -14.5 -5.5 6.8799e-015, -16.5 -4.5 -0.6, -16.5 -5.5 -3.4641, -16.5 -5.5 6.76887e-015, 
+            -16.5 -4.5 -0.6, -16.5 -4.5 -2.6, -16.5 -5.5 -3.4641, -14.5 -3.9 -0.6, 
+            -14.5 -5.5 -3.4641, -14.5 -4.77887 -4.40589, -14.5 -5.5 6.8799e-015, -14.5 -5.5 -3.4641, 
+            -14.5 -3.9 6.90271e-015, -14.5 -3.9 -0.6, -14.5 -3.9 6.90271e-015, -14.5 -5.5 -3.4641, 
+            -14.5 -3.9 -0.6, -14.5 -4.77887 -4.40589, -14.5 -3.9 -5.2, -10.5 -3.9 -0.6, 
+            -14.5 -3.9 -0.6, -14.5 -3.9 -5.2, -5.5 5.76628 -3, -20.8008 6.47225 -0.6, 
+            -16.5 6.47225 -0.6, -16.5 -1.9 -0.6, -16.5 6.47225 -0.6, -20.8008 6.47225 -0.6, 
+            -5.5 6.47728 -0.541803, -5.5 5.76628 -3, -16.5 6.47225 -0.6, -16.5 6.46059 0.714197, 
+            -5.5 6.47728 -0.541803, -16.5 6.47225 -0.6, -16.5 4.5 6.91147e-015, -16.5 6.46059 0.714197, 
+            -16.5 6.47225 -0.6, -16.5 -1.9 -0.6, -16.5 4.5 6.91147e-015, -16.5 6.47225 -0.6, 
+            -22.8001 5.95735 -2.6, -20.8008 6.47225 -0.6, -21.8322 6.29168 -1.63242, -5.5 5.76628 -3, 
+            -21.8322 6.29168 -1.63242, -20.8008 6.47225 -0.6, -24.1058 5.19563 -0.6, -20.8008 6.47225 -0.6, 
+            -22.8001 5.95735 -2.6, -22 2 -0.6, -20.8008 6.47225 -0.6, -24.1058 5.19563 -0.6, 
+            -16.5 -3.9 -0.6, -20.8008 6.47225 -0.6, -16.5 -4.5 -0.6, -20.0001 6.36122e-016 -0.6, 
+            -16.5 -4.5 -0.6, -20.8008 6.47225 -0.6, -16.5 -1.9 -0.6, -20.8008 6.47225 -0.6, 
+            -16.5 -3.9 -0.6, -20.5856 1.41397 -0.6, -20.8008 6.47225 -0.6, -22 2 -0.6, 
+            -20.5856 1.41397 -0.6, -20.0001 6.36122e-016 -0.6, -20.8008 6.47225 -0.6, -20.5 5.95735 -2.6, 
+            -22.8001 5.95735 -2.6, -21.8322 6.29168 -1.63242, -5.5 5.76628 -3, -20.5 5.95735 -2.6, 
+            -21.8322 6.29168 -1.63242, -20.5 3.3 -2.6, -22.8001 5.95735 -2.6, -20.5 5.95735 -2.6, 
+            -24.1058 5.19563 -0.6, -22.8001 5.95735 -2.6, -25.2259 4.1219 -2.6, -20.5 3.3 -2.6, 
+            -25.2259 4.1219 -2.6, -22.8001 5.95735 -2.6, -20.5 4.59238 -4.6, -20.5 5.95735 -2.6, 
+            -20.5 5.36879 -3.6641, -5.5 5.76628 -3, -20.5 5.36879 -3.6641, -20.5 5.95735 -2.6, 
+            -20.5 3.3 -4.6, -20.5 5.95735 -2.6, -20.5 4.59238 -4.6, -20.5 3.3 -4.6, 
+            -20.5 3.3 -2.6, -20.5 5.95735 -2.6, -16.5 4.59238 -4.6, -20.5 4.59238 -4.6, 
+            -20.5 5.36879 -3.6641, -3.49933 4.66549 -4.52584, -16.5 4.59238 -4.6, -20.5 5.36879 -3.6641, 
+            -5.5 5.76628 -3, 0.438085 5.3282 -3.72295, -20.5 5.36879 -3.6641, -3 5.12348 -4, 
+            -20.5 5.36879 -3.6641, 0.438085 5.3282 -3.72295, -3.44048 4.90646 -4.26341, -3.49933 4.66549 -4.52584, 
+            -20.5 5.36879 -3.6641, -3.25286 5.06913 -4.06865, -3.44048 4.90646 -4.26341, -20.5 5.36879 -3.6641, 
+            -3 5.12348 -4, -3.25286 5.06913 -4.06865, -20.5 5.36879 -3.6641, -20.5 3.3 -4.6, 
+            -20.5 4.59238 -4.6, -16.5 4.59238 -4.6, 1 3.3 -5.6, -16.5 3.16595 -5.67686, 
+            -16.5 4.59238 -4.6, -16.5 2.3 -4.6, -16.5 4.59238 -4.6, -16.5 3.16595 -5.67686, 
+            -3 4.15331 -5, 1 3.3 -5.6, -16.5 4.59238 -4.6, -3.41681 4.40887 -4.77617, 
+            -3 4.15331 -5, -16.5 4.59238 -4.6, -3.49933 4.66549 -4.52584, -3.41681 4.40887 -4.77617, 
+            -16.5 4.59238 -4.6, -16.7929 3.00706 -4.6, -16.5 4.59238 -4.6, -16.5 2.3 -4.6, 
+            -17.5 3.3 -4.6, -20.5 3.3 -4.6, -16.5 4.59238 -4.6, -16.7929 3.00706 -4.6, 
+            -17.5 3.3 -4.6, -16.5 4.59238 -4.6, -16.5 2.3 -4.6, -16.5 3.16595 -5.67686, 
+            -16.5 1.5 -6.32456, 1.30162 2.58427 -5.96419, 2 2.3 -6.07947, -16.5 3.16595 -5.67686, 
+            1.08794 2.88995 -5.82221, 1.30162 2.58427 -5.96419, -16.5 3.16595 -5.67686, 1 3.3 -5.6, 
+            1.08794 2.88995 -5.82221, -16.5 3.16595 -5.67686, -16.5 2.00006 -3.1, -16.5 1.5 -6.32456, 
+            -16.5 1.5 -5.8, -16.5 2.3 -3.55826, -16.5 2.3 -4.6, -16.5 1.5 -6.32456, 
+            -16.5 2.08185 -3.37409, -16.5 2.3 -3.55826, -16.5 1.5 -6.32456, -16.5 2.00006 -3.1, 
+            -16.5 2.08185 -3.37409, -16.5 1.5 -6.32456, 2 2.3 -5, 2 2.3 -6.07947, 
+            1.30162 2.58427 -5.96419, 1.29294 2.59294 -5, 1.30162 2.58427 -5.96419, 1.08794 2.88995 -5.82221, 
+            2 2.3 -5, 1.30162 2.58427 -5.96419, 1.29294 2.59294 -5, 1.29294 2.59294 -5, 
+            1.08794 2.88995 -5.82221, 1 3.3 -5.6, -3 4.15331 -5, 1 4.07585 -5.06334, 
+            1 3.3 -5.6, 1 3.3 -5, 1 3.3 -5.6, 1 4.07585 -5.06334, 
+            1.29294 2.59294 -5, 1 3.3 -5.6, 1 3.3 -5, -2.50125 4.6563 -4.53529, 
+            1 4.76628 -4.41957, 1 4.07585 -5.06334, 1 3.3 -5, 1 4.07585 -5.06334, 
+            1 4.76628 -4.41957, -2.58786 4.40136 -4.7831, 1 4.07585 -5.06334, -3 4.15331 -5, 
+            -2.58786 4.40136 -4.7831, -2.50125 4.6563 -4.53529, 1 4.07585 -5.06334, 1.95399e-014 5.76628 -3, 
+            1 4.76628 -4.41957, 0.438085 5.3282 -3.72295, -3 5.12348 -4, 0.438085 5.3282 -3.72295, 
+            1 4.76628 -4.41957, 1 4.76628 -3, 1 4.76628 -4.41957, 1.95399e-014 5.76628 -3, 
+            -2.74418 5.06773 -4.0704, -3 5.12348 -4, 1 4.76628 -4.41957, -2.55657 4.90161 -4.26898, 
+            -2.74418 5.06773 -4.0704, 1 4.76628 -4.41957, -2.50125 4.6563 -4.53529, -2.55657 4.90161 -4.26898, 
+            1 4.76628 -4.41957, 1 3.3 -5, 1 4.76628 -4.41957, 1 4.76628 -3, 
+            -5.5 5.76628 -3, 1.95399e-014 5.76628 -3, 0.438085 5.3282 -3.72295, -5.20707 3.00706 -3, 
+            1.95399e-014 5.76628 -3, -5.5 5.76628 -3, -5.20707 3.00706 -3, -4.5 3.3 -3, 
+            1.95399e-014 5.76628 -3, 1 4.76628 -3, 1.95399e-014 5.76628 -3, -4.5 3.3 -3, 
+            -5.5 6.18466 2, -5.5 5.76628 -3, -5.5 6.47728 -0.541803, -5.5 4.5 2, 
+            -5.5 5.76628 -3, -5.5 6.18466 2, -5.5 4.5 2, -5.5 4.5 7.52209e-015, 
+            -5.5 5.76628 -3, -5.5 2.3 -3, -5.5 5.76628 -3, -5.5 4.5 7.52209e-015, 
+            -5.5 2.3 -3, -5.20707 3.00706 -3, -5.5 5.76628 -3, -16.5 6.18466 2, 
+            -5.5 6.18466 2, -5.5 6.47728 -0.541803, -16.5 6.46059 0.714197, -16.5 6.18466 2, 
+            -5.5 6.47728 -0.541803, -5.5 4.5 2, -5.5 6.18466 2, -16.5 6.18466 2, 
+            -16.5 4.5 6.91147e-015, -16.5 6.18466 2, -16.5 6.46059 0.714197, -16.5 4.5 2, 
+            -16.5 6.18466 2, -16.5 4.5 6.91147e-015, -5.5 4.5 2, -16.5 6.18466 2, 
+            -16.5 4.5 2, -3 -3.3 -4, -3 -5.12348 -4, -3.43153 -4.92029 -4.24744, 
+            -2.56697 -3.3 -4.25016, -2.56933 -4.92154 -4.24599, -3 -5.12348 -4, -2.56697 -3.3 -4.25016, 
+            -3 -5.12348 -4, -3 -3.3 -4, -3.43303 -3.3 -4.25016, -3.43153 -4.92029 -4.24744, 
+            -3.49913 -4.66197 -4.52946, -3.43303 -3.3 -4.25016, -3 -3.3 -4, -3.43153 -4.92029 -4.24744, 
+            -3.43303 -3.3 -4.74984, -3.49913 -4.66197 -4.52946, -3.40757 -4.39425 -4.78963, -3.43303 -3.3 -4.25016, 
+            -3.49913 -4.66197 -4.52946, -3.43303 -3.3 -4.74984, -3.43303 -3.3 -4.74984, -3.40757 -4.39425 -4.78963, 
+            -3 -4.15331 -5, -3 -3.3 -5, -3 -4.15331 -5, -2.58853 -4.4003 -4.78407, 
+            -3.43303 -3.3 -4.74984, -3 -4.15331 -5, -3 -3.3 -5, -2.56697 -3.3 -4.74984, 
+            -2.58853 -4.4003 -4.78407, -2.50069 -4.66511 -4.52623, -2.56697 -3.3 -4.74984, -3 -3.3 -5, 
+            -2.58853 -4.4003 -4.78407, -2.56697 -3.3 -4.25016, -2.50069 -4.66511 -4.52623, -2.56933 -4.92154 -4.24599, 
+            -2.56697 -3.3 -4.74984, -2.50069 -4.66511 -4.52623, -2.56697 -3.3 -4.25016, -3 3.3 -5, 
+            -3 4.15331 -5, -3.41681 4.40887 -4.77617, -2.56697 3.3 -4.74984, -2.58786 4.40136 -4.7831, 
+            -3 4.15331 -5, -2.56697 3.3 -4.74984, -3 4.15331 -5, -3 3.3 -5, 
+            -3.43303 3.3 -4.74984, -3.41681 4.40887 -4.77617, -3.49933 4.66549 -4.52584, -3.43303 3.3 -4.74984, 
+            -3 3.3 -5, -3.41681 4.40887 -4.77617, -3.43303 3.3 -4.74984, -3.49933 4.66549 -4.52584, 
+            -3.44048 4.90646 -4.26341, -3.43303 3.3 -4.25016, -3.44048 4.90646 -4.26341, -3.25286 5.06913 -4.06865, 
+            -3.43303 3.3 -4.74984, -3.44048 4.90646 -4.26341, -3.43303 3.3 -4.25016, -3.43303 3.3 -4.25016, 
+            -3.25286 5.06913 -4.06865, -3 5.12348 -4, -3 3.3 -4, -3 5.12348 -4, 
+            -2.74418 5.06773 -4.0704, -3.43303 3.3 -4.25016, -3 5.12348 -4, -3 3.3 -4, 
+            -2.56697 3.3 -4.25016, -2.74418 5.06773 -4.0704, -2.55657 4.90161 -4.26898, -2.56697 3.3 -4.25016, 
+            -3 3.3 -4, -2.74418 5.06773 -4.0704, -2.56697 3.3 -4.25016, -2.55657 4.90161 -4.26898, 
+            -2.50125 4.6563 -4.53529, -2.56697 3.3 -4.74984, -2.50125 4.6563 -4.53529, -2.58786 4.40136 -4.7831, 
+            -2.56697 3.3 -4.25016, -2.50125 4.6563 -4.53529, -2.56697 3.3 -4.74984, -5.5 -1.9 7.43083e-015, 
+            -5.5 4.5 7.52209e-015, -16.5 4.5 6.91147e-015, -16.5 4.5 2, -16.5 4.5 6.91147e-015, 
+            -5.5 4.5 7.52209e-015, -10.1072 0.4 7.20788e-015, -5.5 -1.9 7.43083e-015, -16.5 4.5 6.91147e-015, 
+            -16.0659 -0.50012 6.86427e-015, -16.5 4.5 6.91147e-015, -16.5 -1.9 6.82021e-015, -16.5 -1.9 -0.6, 
+            -16.5 -1.9 6.82021e-015, -16.5 4.5 6.91147e-015, -16.0659 0.50012 6.87853e-015, -15.2 1 6.93372e-015, 
+            -16.5 4.5 6.91147e-015, -14.3341 0.50012 6.97466e-015, -16.5 4.5 6.91147e-015, -15.2 1 6.93372e-015, 
+            -16.0659 -0.50012 6.86427e-015, -16.0659 0.50012 6.87853e-015, -16.5 4.5 6.91147e-015, -11.4928 -0.4 7.11955e-015, 
+            -16.5 4.5 6.91147e-015, -14.3341 0.50012 6.97466e-015, -11.4928 0.4 7.13096e-015, -10.8 0.8 7.17512e-015, 
+            -16.5 4.5 6.91147e-015, -10.1072 0.4 7.20788e-015, -16.5 4.5 6.91147e-015, -10.8 0.8 7.17512e-015, 
+            -11.4928 -0.4 7.11955e-015, -11.4928 0.4 7.13096e-015, -16.5 4.5 6.91147e-015, -5.5 2.3 -3, 
+            -5.5 4.5 7.52209e-015, -5.5 -1.9 7.43083e-015, -5.5 4.5 2, -16.5 4.5 2, 
+            -5.5 4.5 7.52209e-015, -15.2 -1 6.90521e-015, -16.5 -1.9 6.82021e-015, -5.5 -1.9 7.43083e-015, 
+            -5.5 -1.9 -0.6, -5.5 -1.9 7.43083e-015, -16.5 -1.9 6.82021e-015, -14.3341 -0.50012 6.9604e-015, 
+            -15.2 -1 6.90521e-015, -5.5 -1.9 7.43083e-015, -10.8 -0.8 7.15231e-015, -14.3341 -0.50012 6.9604e-015, 
+            -5.5 -1.9 7.43083e-015, -10.1072 -0.4 7.19647e-015, -10.8 -0.8 7.15231e-015, -5.5 -1.9 7.43083e-015, 
+            -10.1072 0.4 7.20788e-015, -10.1072 -0.4 7.19647e-015, -5.5 -1.9 7.43083e-015, -5.5 2.3 -5, 
+            -5.5 2.3 -3, -5.5 -1.9 7.43083e-015, -5.5 2.3 -5, -5.5 -1.9 7.43083e-015, 
+            -5.5 -1.9 -0.6, -15.2 -1 6.90521e-015, -16.0659 -0.50012 6.86427e-015, -16.5 -1.9 6.82021e-015, 
+            -16.5 -1.9 -0.6, -5.5 -1.9 -0.6, -16.5 -1.9 6.82021e-015, -16.5 -3.9 6.79169e-015, 
+            -14.5 -5.5 6.8799e-015, -14.5 -3.9 6.90271e-015, -16.5 -3.9 -0.6, -16.5 -3.9 6.79169e-015, 
+            -14.5 -3.9 6.90271e-015, -14.5 -3.9 -0.6, -16.5 -3.9 -0.6, -14.5 -3.9 6.90271e-015, 
+            -16.5 -3.9 6.79169e-015, -16.5 -5.5 6.76887e-015, -14.5 -5.5 6.8799e-015, -16.5 -4.5 -0.6, 
+            -16.5 -5.5 6.76887e-015, -16.5 -3.9 6.79169e-015, -16.5 -3.9 -0.6, -16.5 -4.5 -0.6, 
+            -16.5 -3.9 6.79169e-015, -10.5 -3.9 7.12476e-015, -8.5 -5.2 7.21724e-015, -6.19282 -5.2 7.34532e-015, 
+            -6.19282 -5.2 -3, -6.19282 -5.2 7.34532e-015, -8.5 -5.2 7.21724e-015, -5.5 -4 7.40089e-015, 
+            -10.5 -3.9 7.12476e-015, -6.19282 -5.2 7.34532e-015, -6.19282 -5.2 -3, -5.5 -4 7.40089e-015, 
+            -6.19282 -5.2 7.34532e-015, -10.5 -3.9 7.12476e-015, -8.5 -5.5 7.21296e-015, -8.5 -5.2 7.21724e-015, 
+            -10.5 -3.9 7.12476e-015, -10.5 -5.5 7.10194e-015, -8.5 -5.5 7.21296e-015, -10.5 -3.9 -0.6, 
+            -10.5 -5.5 7.10194e-015, -10.5 -3.9 7.12476e-015, -5.5 -4 7.40089e-015, -5.5 -3.9 7.40231e-015, 
+            -10.5 -3.9 7.12476e-015, -10.5 -3.9 -0.6, -10.5 -3.9 7.12476e-015, -5.5 -3.9 7.40231e-015, 
+            -5.5 -3.9 -0.6, -5.5 -3.9 7.40231e-015, -5.5 -4 7.40089e-015, -10.5 -3.9 -0.6, 
+            -5.5 -3.9 7.40231e-015, -5.5 -3.9 -0.6, -5.5 -4 -3, -5.5 -4 7.40089e-015, 
+            -6.19282 -5.2 -3, -5.5 -3.9 -0.6, -5.5 -4 7.40089e-015, -5.5 -4 -3, 
+            -15.2 1 -5.8, -15.2 1 6.93372e-015, -16.0659 0.50012 6.87853e-015, -14.3341 0.50012 -5.8, 
+            -14.3341 0.50012 6.97466e-015, -15.2 1 6.93372e-015, -14.3341 0.50012 -5.8, -15.2 1 6.93372e-015, 
+            -15.2 1 -5.8, -16.0659 0.50012 -5.8, -16.0659 0.50012 6.87853e-015, -16.0659 -0.50012 6.86427e-015, 
+            -16.0659 0.50012 -5.8, -15.2 1 -5.8, -16.0659 0.50012 6.87853e-015, -16.0659 -0.50012 -5.8, 
+            -16.0659 -0.50012 6.86427e-015, -15.2 -1 6.90521e-015, -16.0659 0.50012 -5.8, -16.0659 -0.50012 6.86427e-015, 
+            -16.0659 -0.50012 -5.8, -15.2 -1 -5.8, -15.2 -1 6.90521e-015, -14.3341 -0.50012 6.9604e-015, 
+            -16.0659 -0.50012 -5.8, -15.2 -1 6.90521e-015, -15.2 -1 -5.8, -10.8 -0.8 7.15231e-015, 
+            -14.3341 0.50012 6.97466e-015, -14.3341 -0.50012 6.9604e-015, -14.3341 -0.50012 -5.8, -14.3341 -0.50012 6.9604e-015, 
+            -14.3341 0.50012 6.97466e-015, -15.2 -1 -5.8, -14.3341 -0.50012 6.9604e-015, -14.3341 -0.50012 -5.8, 
+            -10.8 -0.8 7.15231e-015, -11.4928 -0.4 7.11955e-015, -14.3341 0.50012 6.97466e-015, -14.3341 -0.50012 -5.8, 
+            -14.3341 0.50012 6.97466e-015, -14.3341 0.50012 -5.8, -10.8 0.8 -5.8, -10.8 0.8 7.17512e-015, 
+            -11.4928 0.4 7.13096e-015, -10.1072 0.4 -5.8, -10.1072 0.4 7.20788e-015, -10.8 0.8 7.17512e-015, 
+            -10.1072 0.4 -5.8, -10.8 0.8 7.17512e-015, -10.8 0.8 -5.8, -11.4928 0.4 -5.8, 
+            -11.4928 0.4 7.13096e-015, -11.4928 -0.4 7.11955e-015, -11.4928 0.4 -5.8, -10.8 0.8 -5.8, 
+            -11.4928 0.4 7.13096e-015, -11.4928 -0.4 -5.8, -11.4928 -0.4 7.11955e-015, -10.8 -0.8 7.15231e-015, 
+            -11.4928 0.4 -5.8, -11.4928 -0.4 7.11955e-015, -11.4928 -0.4 -5.8, -10.8 -0.8 -5.8, 
+            -10.8 -0.8 7.15231e-015, -10.1072 -0.4 7.19647e-015, -11.4928 -0.4 -5.8, -10.8 -0.8 7.15231e-015, 
+            -10.8 -0.8 -5.8, -10.1072 -0.4 -5.8, -10.1072 -0.4 7.19647e-015, -10.1072 0.4 7.20788e-015, 
+            -10.8 -0.8 -5.8, -10.1072 -0.4 7.19647e-015, -10.1072 -0.4 -5.8, -10.1072 -0.4 -5.8, 
+            -10.1072 0.4 7.20788e-015, -10.1072 0.4 -5.8, -26.5975 -1.14964 -0.6, -25.0448 -4.33333 -2.6, 
+            -25.0448 -4.33333 -0.6, -24.6721 -4.5 -0.6, -25.0448 -4.33333 -0.6, -25.0448 -4.33333 -2.6, 
+            -26.5975 -1.14964 -0.6, -25.0448 -4.33333 -0.6, -26.2501 2.37592 -0.6, -24.6721 -4.5 -0.6, 
+            -26.2501 2.37592 -0.6, -25.0448 -4.33333 -0.6, -26.5975 -1.14964 -0.6, -26.4852 -1.65694 -2.6, 
+            -25.0448 -4.33333 -2.6, -22 -2.3815 -2.6, -25.0448 -4.33333 -2.6, -26.4852 -1.65694 -2.6, 
+            -16.5 -4.5 -2.6, -25.0448 -4.33333 -2.6, -22 -2.3815 -2.6, -16.5 -4.5 -2.6, 
+            -24.6721 -4.5 -2.6, -25.0448 -4.33333 -2.6, -24.6721 -4.5 -0.6, -25.0448 -4.33333 -2.6, 
+            -24.6721 -4.5 -2.6, -26.5975 -1.14964 -0.6, -26.5509 1.3839 -2.6, -26.4852 -1.65694 -2.6, 
+            -24.3815 -1.54061e-016 -2.6, -26.4852 -1.65694 -2.6, -26.5509 1.3839 -2.6, -23.684 -1.68397 -2.6, 
+            -22 -2.3815 -2.6, -26.4852 -1.65694 -2.6, -24.3815 -1.54061e-016 -2.6, -23.684 -1.68397 -2.6, 
+            -26.4852 -1.65694 -2.6, -26.2501 2.37592 -0.6, -25.2259 4.1219 -2.6, -26.5509 1.3839 -2.6, 
+            -23.684 1.68397 -2.6, -26.5509 1.3839 -2.6, -25.2259 4.1219 -2.6, -26.5975 -1.14964 -0.6, 
+            -26.2501 2.37592 -0.6, -26.5509 1.3839 -2.6, -23.684 1.68397 -2.6, -24.3815 -1.54061e-016 -2.6, 
+            -26.5509 1.3839 -2.6, -26.2501 2.37592 -0.6, -24.1058 5.19563 -0.6, -25.2259 4.1219 -2.6, 
+            -23.684 1.68397 -2.6, -25.2259 4.1219 -2.6, -22 2.3815 -2.6, -16.5051 2.40113 -2.6, 
+            -22 2.3815 -2.6, -25.2259 4.1219 -2.6, -16.5202 2.5 -2.6, -16.5051 2.40113 -2.6, 
+            -25.2259 4.1219 -2.6, -20.5 3.3 -2.6, -16.5202 2.5 -2.6, -25.2259 4.1219 -2.6, 
+            -24.6721 -4.5 -0.6, -24.1058 5.19563 -0.6, -26.2501 2.37592 -0.6, -23.9999 -8.41584e-016 -0.6, 
+            -24.1058 5.19563 -0.6, -24.6721 -4.5 -0.6, -23.4144 1.41397 -0.6, -22 2 -0.6, 
+            -24.1058 5.19563 -0.6, -23.9999 -8.41584e-016 -0.6, -23.4144 1.41397 -0.6, -24.1058 5.19563 -0.6, 
+            -16.5 2.3 -2.6, -20.316 1.68397 -2.6, -22 2.3815 -2.6, -22 2.3815 -1, 
+            -22 2.3815 -2.6, -20.316 1.68397 -2.6, -23.6842 1.68369 -1, -23.684 1.68397 -2.6, 
+            -22 2.3815 -2.6, -16.5051 2.40113 -2.6, -16.5 2.3 -2.6, -22 2.3815 -2.6, 
+            -23.6842 1.68369 -1, -22 2.3815 -2.6, -22 2.3815 -1, -16.5 -4.5 -2.6, 
+            -19.6185 -3.87124e-017 -2.6, -20.316 1.68397 -2.6, -20.3158 1.68369 -1, -20.316 1.68397 -2.6, 
+            -19.6185 -3.87124e-017 -2.6, -16.5 -4.5 -2.6, -20.316 1.68397 -2.6, -16.5 2.3 -2.6, 
+            -20.3158 1.68369 -1, -22 2.3815 -1, -20.316 1.68397 -2.6, -16.5 -4.5 -2.6, 
+            -20.316 -1.68397 -2.6, -19.6185 -3.87124e-017 -2.6, -19.6186 -4.79742e-017 -1, -19.6185 -3.87124e-017 -2.6, 
+            -20.316 -1.68397 -2.6, -19.6186 -4.79742e-017 -1, -20.3158 1.68369 -1, -19.6185 -3.87124e-017 -2.6, 
+            -16.5 -4.5 -2.6, -22 -2.3815 -2.6, -20.316 -1.68397 -2.6, -20.3158 -1.68369 -1, 
+            -20.316 -1.68397 -2.6, -22 -2.3815 -2.6, -20.3158 -1.68369 -1, -19.6186 -4.79742e-017 -1, 
+            -20.316 -1.68397 -2.6, -22 -2.3815 -1, -22 -2.3815 -2.6, -23.684 -1.68397 -2.6, 
+            -22 -2.3815 -1, -20.3158 -1.68369 -1, -22 -2.3815 -2.6, -23.6842 -1.68369 -1, 
+            -23.684 -1.68397 -2.6, -24.3815 -1.54061e-016 -2.6, -23.6842 -1.68369 -1, -22 -2.3815 -1, 
+            -23.684 -1.68397 -2.6, -24.3814 -1.63318e-016 -1, -24.3815 -1.54061e-016 -2.6, -23.684 1.68397 -2.6, 
+            -23.6842 -1.68369 -1, -24.3815 -1.54061e-016 -2.6, -24.3814 -1.63318e-016 -1, -24.3814 -1.63318e-016 -1, 
+            -23.684 1.68397 -2.6, -23.6842 1.68369 -1, -16.5 2.3 -2.64174, -16.5 2.3 -2.6, 
+            -16.5051 2.40113 -2.6, -16.5 2.08185 -2.82591, -16.5 -1.5 -5.8, -16.5 2.3 -2.6, 
+            -16.5 2.3 -2.64174, -16.5 2.08185 -2.82591, -16.5 2.3 -2.6, -16.5048 2.39831 -2.61045, 
+            -16.5051 2.40113 -2.6, -16.5202 2.5 -2.6, -16.5048 2.39831 -2.61045, -16.5 2.3 -2.64174, 
+            -16.5051 2.40113 -2.6, -20.5 3.3 -2.6, -16.8675 3.07448 -2.6, -16.5202 2.5 -2.6, 
+            -16.6109 2.75777 -2.67162, -16.5202 2.5 -2.6, -16.8675 3.07448 -2.6, -6.48868 2.06699 -2.85, 
+            -16.5048 2.39831 -2.61045, -16.5202 2.5 -2.6, -6.48868 2.5 -2.6, -16.5202 2.5 -2.6, 
+            -16.6109 2.75777 -2.67162, -6.48868 2.5 -2.6, -6.48868 2.06699 -2.85, -16.5202 2.5 -2.6, 
+            -20.5 3.3 -2.6, -17.5 3.3 -2.6, -16.8675 3.07448 -2.6, -16.7929 3.00706 -4.6, 
+            -16.8675 3.07448 -2.6, -17.5 3.3 -2.6, -16.7495 2.96089 -3.29389, -16.8675 3.07448 -2.6, 
+            -16.7929 3.00706 -4.6, -16.7306 2.9388 -2.86054, -16.6109 2.75777 -2.67162, -16.8675 3.07448 -2.6, 
+            -16.7495 2.96089 -3.29389, -16.7306 2.9388 -2.86054, -16.8675 3.07448 -2.6, -17.5 3.3 -4.6, 
+            -17.5 3.3 -2.6, -20.5 3.3 -2.6, -16.7929 3.00706 -4.6, -17.5 3.3 -2.6, 
+            -17.5 3.3 -4.6, -17.5 3.3 -4.6, -20.5 3.3 -2.6, -20.5 3.3 -4.6, 
+            -24.6721 -4.5 -0.6, -24.6721 -4.5 -2.6, -16.5 -4.5 -2.6, -24.6721 -4.5 -0.6, 
+            -16.5 -4.5 -2.6, -16.5 -4.5 -0.6, -23.4144 -1.41397 -0.6, -24.6721 -4.5 -0.6, 
+            -16.5 -4.5 -0.6, -22 -2 -0.6, -23.4144 -1.41397 -0.6, -16.5 -4.5 -0.6, 
+            -20.5856 -1.41397 -0.6, -22 -2 -0.6, -16.5 -4.5 -0.6, -20.0001 6.36122e-016 -0.6, 
+            -20.5856 -1.41397 -0.6, -16.5 -4.5 -0.6, -16.5 -1.9 -0.6, -16.5 -3.9 -0.6, 
+            -14.5 -3.9 -0.6, -16.5 2.00006 -3.1, -16.5 1.5 -5.8, -16.5 -1.5 -5.8, 
+            -16.0659 0.50012 -5.8, -16.5 -1.5 -5.8, -16.5 1.5 -5.8, -16.5 2.08185 -2.82591, 
+            -16.5 2.00006 -3.1, -16.5 -1.5 -5.8, -15.2 -1 -5.8, -14.5 -1.5 -5.8, 
+            -16.5 -1.5 -5.8, -16.0659 -0.50012 -5.8, -15.2 -1 -5.8, -16.5 -1.5 -5.8, 
+            -16.0659 0.50012 -5.8, -16.0659 -0.50012 -5.8, -16.5 -1.5 -5.8, -16.0659 0.50012 -5.8, 
+            -16.5 1.5 -5.8, -15.2 1 -5.8, -16.5048 2.39804 -3.58949, -16.5 2.3 -4.6, 
+            -16.5 2.3 -3.55826, -16.7495 2.96089 -3.29389, -16.7929 3.00706 -4.6, -16.5 2.3 -4.6, 
+            -16.6139 2.76351 -3.52496, -16.7495 2.96089 -3.29389, -16.5 2.3 -4.6, -16.5202 2.5 -3.6, 
+            -16.6139 2.76351 -3.52496, -16.5 2.3 -4.6, -16.5048 2.39804 -3.58949, -16.5202 2.5 -3.6, 
+            -16.5 2.3 -4.6, -6.48868 2.5 -3.6, -16.5 2.3 -3.55826, -16.5 2.08185 -3.37409, 
+            -6.48868 2.5 -3.6, -16.5048 2.39804 -3.58949, -16.5 2.3 -3.55826, -6.48868 2.06699 -3.35, 
+            -16.5 2.08185 -3.37409, -16.5 2.00006 -3.1, -6.48868 2.06699 -3.35, -6.48868 2.5 -3.6, 
+            -16.5 2.08185 -3.37409, -6.48868 2.06699 -2.85, -16.5 2.00006 -3.1, -16.5 2.08185 -2.82591, 
+            -6.48868 2.06699 -2.85, -6.48868 2.06699 -3.35, -16.5 2.00006 -3.1, -6.48868 2.06699 -2.85, 
+            -16.5 2.08185 -2.82591, -16.5 2.3 -2.64174, -6.48868 2.06699 -2.85, -16.5 2.3 -2.64174, 
+            -16.5048 2.39831 -2.61045, -6.48868 2.93301 -2.85, -16.6109 2.75777 -2.67162, -16.7306 2.9388 -2.86054, 
+            -6.48868 2.93301 -2.85, -6.48868 2.5 -2.6, -16.6109 2.75777 -2.67162, -6.48868 2.93301 -2.85, 
+            -16.7306 2.9388 -2.86054, -16.7495 2.96089 -3.29389, -6.48868 2.93301 -3.35, -16.7495 2.96089 -3.29389, 
+            -16.6139 2.76351 -3.52496, -6.48868 2.93301 -3.35, -6.48868 2.93301 -2.85, -16.7495 2.96089 -3.29389, 
+            -6.48868 2.93301 -3.35, -16.6139 2.76351 -3.52496, -16.5202 2.5 -3.6, -6.48868 2.5 -3.6, 
+            -16.5202 2.5 -3.6, -16.5048 2.39804 -3.58949, -6.48868 2.93301 -3.35, -16.5202 2.5 -3.6, 
+            -6.48868 2.5 -3.6, -15.2 -1 -5.8, -14.3341 -0.50012 -5.8, -14.5 -1.5 -5.8, 
+            -10.1072 -0.4 -5.8, -3.5 -1.5 -5.8, -10.5 -1.5 -5.8, -10.8 -0.8 -5.8, 
+            -10.1072 -0.4 -5.8, -10.5 -1.5 -5.8, -1.36588 0.50012 -5.8, -3.5 -1.5 -5.8, 
+            -10.1072 -0.4 -5.8, -10.8 0.8 -5.8, -14.3341 0.50012 -5.8, -15.2 1 -5.8, 
+            -10.8 0.8 -5.8, -14.3341 -0.50012 -5.8, -14.3341 0.50012 -5.8, -11.4928 0.4 -5.8, 
+            -14.3341 -0.50012 -5.8, -10.8 0.8 -5.8, -0.5 1 -5.8, -10.1072 -0.4 -5.8, 
+            -10.1072 0.4 -5.8, -1.36588 0.50012 -5.8, -10.1072 -0.4 -5.8, -0.5 1 -5.8, 
+            -0.5 1 -5, -0.5 1 -5.8, 0.5 1 -5.8, -1.36588 0.50012 -5, 
+            -1.36588 0.50012 -5.8, -0.5 1 -5.8, -1.36588 0.50012 -5, -0.5 1 -5.8, 
+            -0.5 1 -5, 0.5 1 -5, 0.5 1 -5.8, 1.36588 0.50012 -5.8, 
+            0.5 1 -5, -0.5 1 -5, 0.5 1 -5.8, 1.36588 0.50012 -5, 
+            1.36588 0.50012 -5.8, 1.36588 -0.50012 -5.8, 0.5 1 -5, 1.36588 0.50012 -5.8, 
+            1.36588 0.50012 -5, 1.36588 -0.50012 -5, 1.36588 -0.50012 -5.8, 0.5 -1 -5.8, 
+            1.36588 0.50012 -5, 1.36588 -0.50012 -5.8, 1.36588 -0.50012 -5, 0.5 -1 -5, 
+            0.5 -1 -5.8, -0.5 -1 -5.8, 1.36588 -0.50012 -5, 0.5 -1 -5.8, 
+            0.5 -1 -5, -0.5 -1 -5, -0.5 -1 -5.8, -1.36588 -0.50012 -5.8, 
+            0.5 -1 -5, -0.5 -1 -5.8, -0.5 -1 -5, -1.36588 -0.50012 -5, 
+            -1.36588 -0.50012 -5.8, -1.36588 0.50012 -5.8, -0.5 -1 -5, -1.36588 -0.50012 -5.8, 
+            -1.36588 -0.50012 -5, -1.36588 -0.50012 -5, -1.36588 0.50012 -5.8, -1.36588 0.50012 -5, 
+            1 4.76628 -3, -4.5 3.3 -3, 1 3.3 -3, 1 3.3 -5, 
+            1 3.3 -3, -4.5 3.3 -3, 1 3.3 -5, 1 4.76628 -3, 
+            1 3.3 -3, -4.5 3.3 -5, -4.5 3.3 -3, -5.20707 3.00706 -3, 
+            -3.43303 3.3 -4.74984, -4.5 3.3 -3, -4.5 3.3 -5, -2.56697 3.3 -4.25016, 
+            1 3.3 -5, -4.5 3.3 -3, -3.43303 3.3 -4.25016, -3 3.3 -4, 
+            -4.5 3.3 -3, -2.56697 3.3 -4.25016, -4.5 3.3 -3, -3 3.3 -4, 
+            -3.43303 3.3 -4.74984, -3.43303 3.3 -4.25016, -4.5 3.3 -3, -5.20711 3.00711 -5, 
+            -5.20707 3.00706 -3, -5.5 2.3 -3, -5.20711 3.00711 -5, -4.5 3.3 -5, 
+            -5.20707 3.00706 -3, -5.20711 3.00711 -5, -5.5 2.3 -3, -5.5 2.3 -5, 
+            -5.5 -4 -3, -5.20707 -3.00706 -3, -5.5 -2.3 -3, -5.5 -2.3 -5, 
+            -5.5 -2.3 -3, -5.20707 -3.00706 -3, -5.5 -3.9 -0.6, -5.5 -4 -3, 
+            -5.5 -2.3 -3, -5.5 -1.9 -0.6, -5.5 -3.9 -0.6, -5.5 -2.3 -3, 
+            -5.5 2.3 -5, -5.5 -1.9 -0.6, -5.5 -2.3 -3, -5.5 -2.3 -5, 
+            -5.5 2.3 -5, -5.5 -2.3 -3, -5.5 -4 -3, -4.5 -3.3 -3, 
+            -5.20707 -3.00706 -3, -5.20711 -3.00711 -5, -5.20707 -3.00706 -3, -4.5 -3.3 -3, 
+            -5.20711 -3.00711 -5, -5.5 -2.3 -5, -5.20707 -3.00706 -3, -5.5 -4 -3, 
+            2.61288 -3.3 -3, -4.5 -3.3 -3, -3 -3.3 -4, -4.5 -3.3 -3, 
+            2.61288 -3.3 -3, -5.20711 -3.00711 -5, -4.5 -3.3 -3, -4.5 -3.3 -5, 
+            -3.43303 -3.3 -4.25016, -4.5 -3.3 -5, -4.5 -3.3 -3, -3.43303 -3.3 -4.25016, 
+            -4.5 -3.3 -3, -3 -3.3 -4, -5.5 -4 -3, 1.32372 -4.68726 -3, 
+            2.61288 -3.3 -3, 2.61288 -3.3 -5, 2.61288 -3.3 -3, 1.32372 -4.68726 -3, 
+            -3 -3.3 -5, 2.61288 -3.3 -3, 2.61288 -3.3 -5, -2.56697 -3.3 -4.74984, 
+            2.61288 -3.3 -3, -3 -3.3 -5, -2.56697 -3.3 -4.25016, -3 -3.3 -4, 
+            2.61288 -3.3 -3, -2.56697 -3.3 -4.74984, -2.56697 -3.3 -4.25016, 2.61288 -3.3 -3, 
+            -6.19282 -5.2 -3, -0.5 -5.2 -3, 1.32372 -4.68726 -3, -5.5 -4 -3, 
+            -6.19282 -5.2 -3, 1.32372 -4.68726 -3, -16.5 -1.9 -0.6, -5.5 -3.9 -0.6, 
+            -5.5 -1.9 -0.6, -16.5 -1.9 -0.6, -10.5 -3.9 -0.6, -5.5 -3.9 -0.6, 
+            -5.20711 -3.00711 -5, -5.5 2.3 -5, -5.5 -2.3 -5, -5.20711 3.00711 -5, 
+            -5.5 2.3 -5, -5.20711 -3.00711 -5, -3 -3.3 -5, -3 3.3 -5, 
+            -4.5 3.3 -5, -3.43303 3.3 -4.74984, -4.5 3.3 -5, -3 3.3 -5, 
+            -4.5 -3.3 -5, -3 -3.3 -5, -4.5 3.3 -5, -5.20711 3.00711 -5, 
+            -4.5 -3.3 -5, -4.5 3.3 -5, 0.5 1 -5, 1 3.3 -5, 
+            -3 3.3 -5, -2.56697 3.3 -4.74984, -3 3.3 -5, 1 3.3 -5, 
+            -1.36588 -0.50012 -5, -3 3.3 -5, -3 -3.3 -5, -1.36588 0.50012 -5, 
+            -0.5 1 -5, -3 3.3 -5, 0.5 1 -5, -3 3.3 -5, 
+            -0.5 1 -5, -1.36588 -0.50012 -5, -1.36588 0.50012 -5, -3 3.3 -5, 
+            1.36588 0.50012 -5, 1.29294 2.59294 -5, 1 3.3 -5, 0.5 1 -5, 
+            1.36588 0.50012 -5, 1 3.3 -5, -2.56697 3.3 -4.25016, -2.56697 3.3 -4.74984, 
+            1 3.3 -5, 1.36588 0.50012 -5, 2 2.3 -5, 1.29294 2.59294 -5, 
+            2.61288 -3.3 -5, 2.90181 -2.52322 -5, 2 2.3 -5, 1.36588 0.50012 -5, 
+            2.61288 -3.3 -5, 2 2.3 -5, -1.36588 -0.50012 -5, -3 -3.3 -5, 
+            2.61288 -3.3 -5, -0.5 -1 -5, -1.36588 -0.50012 -5, 2.61288 -3.3 -5, 
+            0.5 -1 -5, -0.5 -1 -5, 2.61288 -3.3 -5, 1.36588 -0.50012 -5, 
+            0.5 -1 -5, 2.61288 -3.3 -5, 1.36588 0.50012 -5, 1.36588 -0.50012 -5, 
+            2.61288 -3.3 -5, -3.43303 -3.3 -4.74984, -3 -3.3 -5, -4.5 -3.3 -5, 
+            -5.20711 3.00711 -5, -5.20711 -3.00711 -5, -4.5 -3.3 -5, -3.43303 -3.3 -4.25016, 
+            -3.43303 -3.3 -4.74984, -4.5 -3.3 -5, -23.4144 -1.41397 -0.6, -23.9999 -8.41584e-016 -0.6, 
+            -24.6721 -4.5 -0.6, -16.5 -1.9 -0.6, -14.5 -3.9 -0.6, -10.5 -3.9 -0.6, 
+            -22 2 -1, -22 2 -0.6, -23.4144 1.41397 -0.6, -20.5859 1.41413 -1, 
+            -20.5856 1.41397 -0.6, -22 2 -0.6, -20.5859 1.41413 -1, -22 2 -0.6, 
+            -22 2 -1, -23.4141 1.41413 -1, -23.4144 1.41397 -0.6, -23.9999 -8.41584e-016 -0.6, 
+            -23.4141 1.41413 -1, -22 2 -1, -23.4144 1.41397 -0.6, -24 -1.70399e-016 -1, 
+            -23.9999 -8.41584e-016 -0.6, -23.4144 -1.41397 -0.6, -23.4141 1.41413 -1, -23.9999 -8.41584e-016 -0.6, 
+            -24 -1.70399e-016 -1, -23.4141 -1.41413 -1, -23.4144 -1.41397 -0.6, -22 -2 -0.6, 
+            -24 -1.70399e-016 -1, -23.4144 -1.41397 -0.6, -23.4141 -1.41413 -1, -22 -2 -1, 
+            -22 -2 -0.6, -20.5856 -1.41397 -0.6, -23.4141 -1.41413 -1, -22 -2 -0.6, 
+            -22 -2 -1, -20.5859 -1.41413 -1, -20.5856 -1.41397 -0.6, -20.0001 6.36122e-016 -0.6, 
+            -22 -2 -1, -20.5856 -1.41397 -0.6, -20.5859 -1.41413 -1, -20 -7.35279e-017 -1, 
+            -20.0001 6.36122e-016 -0.6, -20.5856 1.41397 -0.6, -20.5859 -1.41413 -1, -20.0001 6.36122e-016 -0.6, 
+            -20 -7.35279e-017 -1, -20 -7.35279e-017 -1, -20.5856 1.41397 -0.6, -20.5859 1.41413 -1, 
+            -22 2 -1, -22 2.3815 -1, -20.3158 1.68369 -1, -23.4141 1.41413 -1, 
+            -22 2.3815 -1, -22 2 -1, -23.6842 1.68369 -1, -22 2.3815 -1, 
+            -23.4141 1.41413 -1, -20 -7.35279e-017 -1, -20.3158 1.68369 -1, -19.6186 -4.79742e-017 -1, 
+            -20.5859 1.41413 -1, -22 2 -1, -20.3158 1.68369 -1, -20 -7.35279e-017 -1, 
+            -20.5859 1.41413 -1, -20.3158 1.68369 -1, -20 -7.35279e-017 -1, -19.6186 -4.79742e-017 -1, 
+            -20.3158 -1.68369 -1, -20.5859 -1.41413 -1, -20.3158 -1.68369 -1, -22 -2.3815 -1, 
+            -20.5859 -1.41413 -1, -20 -7.35279e-017 -1, -20.3158 -1.68369 -1, -22 -2 -1, 
+            -20.5859 -1.41413 -1, -22 -2.3815 -1, -23.6842 -1.68369 -1, -22 -2 -1, 
+            -22 -2.3815 -1, -23.6842 -1.68369 -1, -23.4141 -1.41413 -1, -22 -2 -1, 
+            -23.6842 -1.68369 -1, -24 -1.70399e-016 -1, -23.4141 -1.41413 -1, -23.6842 1.68369 -1, 
+            -23.4141 1.41413 -1, -24 -1.70399e-016 -1, -24.3814 -1.63318e-016 -1, -23.6842 1.68369 -1, 
+            -24 -1.70399e-016 -1, -23.6842 -1.68369 -1, -24.3814 -1.63318e-016 -1, -24 -1.70399e-016 -1, 
+            -6.2 2.5 -3.1, -6.48868 2.5 -3.6, -6.48868 2.06699 -3.35, -6.2 2.5 -3.1, 
+            -6.48868 2.93301 -3.35, -6.48868 2.5 -3.6, -6.2 2.5 -3.1, -6.48868 2.06699 -3.35, 
+            -6.48868 2.06699 -2.85, -6.2 2.5 -3.1, -6.48868 2.06699 -2.85, -6.48868 2.5 -2.6, 
+            -6.2 2.5 -3.1, -6.48868 2.5 -2.6, -6.48868 2.93301 -2.85, -6.2 2.5 -3.1, 
+            -6.48868 2.93301 -2.85, -6.48868 2.93301 -3.35, -3.5 -3.88256 5.21304, -5.5 -4 5.12348, 
+            -3.5 -4 5.12348, -3.5 -4 4.4, -3.5 -4 5.12348, -5.5 -4 5.12348, 
+            -3.5 -3.5 5.3, -3.5 -3.88256 5.21304, -3.5 -4 5.12348, -3.5 -4 4.4, 
+            -3.5 -3.5 5.3, -3.5 -4 5.12348, -10.5 -4.77888 4.40587, -5.87371 -4.64728 4.54453, 
+            -5.5 -4 5.12348, -5.5 -4 4.4, -5.5 -4 5.12348, -5.87371 -4.64728 4.54453, 
+            -10.5 -3.9 5.2, -10.5 -4.77888 4.40587, -5.5 -4 5.12348, -3.5 -3.88256 5.21304, 
+            -10.5 -3.9 5.2, -5.5 -4 5.12348, -5.5 -4 4.4, -3.5 -4 4.4, 
+            -5.5 -4 5.12348, -8.5 -5.2 3.9, -6.19282 -5.2 3.9, -5.87371 -4.64728 4.54453, 
+            -5.5 -4 4.4, -5.87371 -4.64728 4.54453, -6.19282 -5.2 3.9, -10.5 -4.77888 4.40587, 
+            -8.5 -5.2 3.9, -5.87371 -4.64728 4.54453, -8.5 -5.2 -3.42184e-015, -6.19282 -5.2 3.9, 
+            -8.5 -5.2 3.9, -6.19282 -5.2 -3.29376e-015, -6.19282 -5.2 3.9, -8.5 -5.2 -3.42184e-015, 
+            -5.5 -4 4.4, -6.19282 -5.2 3.9, -6.19282 -5.2 -3.29376e-015, -8.5 -5.5 3.4641, 
+            -8.5 -5.2 3.9, -8.5 -5.35433 3.68525, -10.5 -5.5 3.4641, -8.5 -5.35433 3.68525, 
+            -8.5 -5.2 3.9, -8.5 -5.5 -3.42582e-015, -8.5 -5.2 3.9, -8.5 -5.5 3.4641, 
+            -10.5 -4.77888 4.40587, -10.5 -5.5 3.4641, -8.5 -5.2 3.9, -8.5 -5.2 -3.42184e-015, 
+            -8.5 -5.2 3.9, -8.5 -5.5 -3.42582e-015, -10.5 -5.5 3.4641, -8.5 -5.5 3.4641, 
+            -8.5 -5.35433 3.68525, -10.5 -5.5 -3.53684e-015, -8.5 -5.5 3.4641, -10.5 -5.5 3.4641, 
+            -8.5 -5.5 -3.42582e-015, -8.5 -5.5 3.4641, -10.5 -5.5 -3.53684e-015, -10.5 -3.9 2, 
+            -10.5 -5.5 3.4641, -10.5 -4.77888 4.40587, -10.5 -3.9 -3.51562e-015, -10.5 -5.5 3.4641, 
+            -10.5 -3.9 2, -10.5 -5.5 -3.53684e-015, -10.5 -5.5 3.4641, -10.5 -3.9 -3.51562e-015, 
+            -10.5 -3.9 2, -10.5 -4.77888 4.40587, -10.5 -3.9 5.2, -3.5 -3.88256 5.21304, 
+            -14.5 -3.9 5.2, -10.5 -3.9 5.2, -10.5 -3.9 2, -10.5 -3.9 5.2, 
+            -14.5 -3.9 5.2, -14.5 -5.5 3.4641, -14.5 -3.9 5.2, -14.5 -4.77888 4.40587, 
+            -16.5 -4.03078 5.09923, -14.5 -4.77888 4.40587, -14.5 -3.9 5.2, -14.5 -3.9 2, 
+            -14.5 -3.9 5.2, -14.5 -5.5 3.4641, -5.44339 -2.52378 5.98995, -16.5 -4.03078 5.09923, 
+            -14.5 -3.9 5.2, -4.67333 -3.76298 5.3, -5.44339 -2.52378 5.98995, -14.5 -3.9 5.2, 
+            -3.5 -3.76298 5.3, -4.67333 -3.76298 5.3, -14.5 -3.9 5.2, -3.5 -3.88256 5.21304, 
+            -3.5 -3.76298 5.3, -14.5 -3.9 5.2, -10.5 -3.9 2, -14.5 -3.9 5.2, 
+            -14.5 -3.9 2, -16.5 -5.5 3.4641, -14.5 -5.5 3.4641, -14.5 -4.77888 4.40587, 
+            -16.5 -4.03078 5.09923, -16.5 -5.5 3.4641, -14.5 -4.77888 4.40587, -16.5 -5.5 -3.86991e-015, 
+            -14.5 -5.5 3.4641, -16.5 -5.5 3.4641, -14.5 -5.5 -3.75888e-015, -14.5 -3.9 2, 
+            -14.5 -5.5 3.4641, -14.5 -5.5 -3.75888e-015, -14.5 -5.5 3.4641, -16.5 -5.5 -3.86991e-015, 
+            -16.5 -4.5 4, -16.5 -5.5 3.4641, -16.5 -4.03078 5.09923, -16.5 -4.5 4, 
+            -16.5 -5.5 -3.86991e-015, -16.5 -5.5 3.4641, -10.8 -2.1 6.15142, -16.5 -2.1 6.15142, 
+            -16.5 -4.03078 5.09923, -16.5 -4.5 4, -16.5 -4.03078 5.09923, -16.5 -2.1 6.15142, 
+            -5.44339 -2.52378 5.98995, -10.8 -2.1 6.15142, -16.5 -4.03078 5.09923, -16.5 -2.1 4, 
+            -16.5 -2.1 6.15142, -10.8 -2.1 6.15142, -16.5 -4.5 4, -16.5 -2.1 6.15142, 
+            -16.5 -2.1 4, -5.86624 -1.25983 6.37686, -9.31554 -1.48539 6.328, -10.8 -2.1 6.15142, 
+            -10.8 -2.1 3.2, -10.8 -2.1 6.15142, -9.31554 -1.48539 6.328, -5.44339 -2.52378 5.98995, 
+            -5.86624 -1.25983 6.37686, -10.8 -2.1 6.15142, -18.2 -2.1 3.2, -16.5 -2.1 4, 
+            -10.8 -2.1 6.15142, -18.2 -2.1 3.2, -10.8 -2.1 6.15142, -10.8 -2.1 3.2, 
+            -5.86624 -1.25983 6.37686, -8.7 -1.17986e-006 6.5, -9.31554 -1.48539 6.328, -9.31516 -1.48484 3.2, 
+            -9.31554 -1.48539 6.328, -8.7 -1.17986e-006 6.5, -10.8 -2.1 3.2, -9.31554 -1.48539 6.328, 
+            -9.31516 -1.48484 3.2, -5.86613 1.26035 6.37676, -9.31554 1.48539 6.328, -8.7 -1.17986e-006 6.5, 
+            -8.7 3.35073e-016 3.2, -8.7 -1.17986e-006 6.5, -9.31554 1.48539 6.328, -5.86624 -1.25983 6.37686, 
+            -5.86613 1.26035 6.37676, -8.7 -1.17986e-006 6.5, -9.31516 -1.48484 3.2, -8.7 -1.17986e-006 6.5, 
+            -8.7 3.35073e-016 3.2, -5.44344 2.52368 5.98999, -10.8 2.1 6.15142, -9.31554 1.48539 6.328, 
+            -9.31516 1.48484 3.2, -9.31554 1.48539 6.328, -10.8 2.1 6.15142, -5.86613 1.26035 6.37676, 
+            -5.44344 2.52368 5.98999, -9.31554 1.48539 6.328, -8.7 3.35073e-016 3.2, -9.31554 1.48539 6.328, 
+            -9.31516 1.48484 3.2, -5.44344 2.52368 5.98999, -16.5 2.1 6.15142, -10.8 2.1 6.15142, 
+            -10.8 2.1 3.2, -10.8 2.1 6.15142, -16.5 2.1 6.15142, -9.31516 1.48484 3.2, 
+            -10.8 2.1 6.15142, -10.8 2.1 3.2, -4.67333 3.76298 5.3, -16.5 3.76847 5.29609, 
+            -16.5 2.1 6.15142, -16.5 2.1 4, -16.5 2.1 6.15142, -16.5 3.76847 5.29609, 
+            -5.44344 2.52368 5.98999, -4.67333 3.76298 5.3, -16.5 2.1 6.15142, -10.8 2.1 3.2, 
+            -16.5 2.1 6.15142, -16.5 2.1 4, -5.5 4.78435 4.4, -16.5 5.12348 4, 
+            -16.5 3.76847 5.29609, -16.5 2.1 4, -16.5 3.76847 5.29609, -16.5 5.12348 4, 
+            -3.5 4.78435 4.4, -5.5 4.78435 4.4, -16.5 3.76847 5.29609, -3.5 4.29631 4.87767, 
+            -3.5 4.78435 4.4, -16.5 3.76847 5.29609, -4.67333 3.76298 5.3, -3.5 4.29631 4.87767, 
+            -16.5 3.76847 5.29609, -5.5 5.614 3.27613, -24.2 5.12348 4, -16.5 5.12348 4, 
+            -16.5 2.1 4, -16.5 5.12348 4, -24.2 5.12348 4, -5.5 4.78435 4.4, 
+            -5.5 5.614 3.27613, -16.5 5.12348 4, -5.5 5.614 3.27613, -23.2725 5.72805 3.07236, 
+            -24.2 5.12348 4, -24.9061 4.48352 2, -24.2 5.12348 4, -23.2725 5.72805 3.07236, 
+            -25.4334 3.85502 4, -24.2 5.12348 4, -24.9061 4.48352 2, -24.3815 -8.23286e-016 4, 
+            -24.2 5.12348 4, -25.4334 3.85502 4, -19.2 2.1 4, -16.5 2.1 4, 
+            -24.2 5.12348 4, -19.633 1.84984 4, -19.2 2.1 4, -24.2 5.12348 4, 
+            -19.633 1.35016 4, -19.633 1.84984 4, -24.2 5.12348 4, -20.316 1.68397 4, 
+            -19.633 1.35016 4, -24.2 5.12348 4, -23.684 1.68397 4, -22 2.3815 4, 
+            -24.2 5.12348 4, -20.316 1.68397 4, -24.2 5.12348 4, -22 2.3815 4, 
+            -24.3815 -8.23286e-016 4, -23.684 1.68397 4, -24.2 5.12348 4, -5.5 6.18466 2, 
+            -22.2 6.18466 2, -23.2725 5.72805 3.07236, -24.9061 4.48352 2, -23.2725 5.72805 3.07236, 
+            -22.2 6.18466 2, -5.5 5.614 3.27613, -5.5 6.18466 2, -23.2725 5.72805 3.07236, 
+            -16.5 4.5 2, -22.2 6.18466 2, -5.5 6.18466 2, -22 2 2, 
+            -22.2 6.18466 2, -16.5 4.5 2, -23.9999 -1.17914e-015 2, -24.9061 4.48352 2, 
+            -22.2 6.18466 2, -23.4144 1.41397 2, -22.2 6.18466 2, -22 2 2, 
+            -23.4144 1.41397 2, -23.9999 -1.17914e-015 2, -22.2 6.18466 2, -5.5 4.78435 4.4, 
+            -5.5 6.18466 2, -5.5 5.614 3.27613, -5.5 4.5 2, -5.5 6.18466 2, 
+            -5.5 4.78435 4.4, -5.5 4.5 2, -16.5 4.5 2, -5.5 6.18466 2, 
+            -3.5 3.5 4.4, -5.5 4.78435 4.4, -3.5 4.78435 4.4, -5.5 -4 4.4, 
+            -5.5 4.5 2, -5.5 4.78435 4.4, -3.20706 2.79294 4.4, -5.5 4.78435 4.4, 
+            -3.5 3.5 4.4, -4.6 0.625 4.4, -5.5 4.78435 4.4, -3.20706 2.79294 4.4, 
+            -5.14127 -0.3125 4.4, -5.5 -4 4.4, -5.5 4.78435 4.4, -5.14127 0.3125 4.4, 
+            -5.5 4.78435 4.4, -4.6 0.625 4.4, -5.14127 0.3125 4.4, -5.14127 -0.3125 4.4, 
+            -5.5 4.78435 4.4, -3.5 3.76298 5.3, -3.5 4.78435 4.4, -3.5 4.29631 4.87767, 
+            -3.5 3.5 5.3, -3.5 4.78435 4.4, -3.5 3.76298 5.3, -3.5 3.5 5.3, 
+            -3.5 3.5 4.4, -3.5 4.78435 4.4, -4.67333 3.76298 5.3, -3.5 3.76298 5.3, 
+            -3.5 4.29631 4.87767, -3.5 3.5 5.3, -3.5 3.76298 5.3, -4.67333 3.76298 5.3, 
+            -5.84746 1.34435 5.3, -4.67333 3.76298 5.3, -5.44344 2.52368 5.98999, -4.05873 0.3125 5.3, 
+            -3.5 3.5 5.3, -4.67333 3.76298 5.3, -5.14127 0.3125 5.3, -4.67333 3.76298 5.3, 
+            -5.84746 1.34435 5.3, -5.14127 0.3125 5.3, -4.6 0.625 5.3, -4.67333 3.76298 5.3, 
+            -4.05873 0.3125 5.3, -4.67333 3.76298 5.3, -4.6 0.625 5.3, -5.84746 1.34435 5.3, 
+            -5.44344 2.52368 5.98999, -5.86613 1.26035 6.37676, -5.84746 1.34435 5.3, -5.86613 1.26035 6.37676, 
+            -5.86624 -1.25983 6.37686, -5.84746 -1.34435 5.3, -5.86624 -1.25983 6.37686, -5.44339 -2.52378 5.98995, 
+            -5.84746 1.34435 5.3, -5.86624 -1.25983 6.37686, -5.84746 -1.34435 5.3, -5.84746 -1.34435 5.3, 
+            -5.44339 -2.52378 5.98995, -4.67333 -3.76298 5.3, -4.6 -0.625 5.3, -4.67333 -3.76298 5.3, 
+            -3.5 -3.76298 5.3, -5.84746 1.34435 5.3, -5.84746 -1.34435 5.3, -4.67333 -3.76298 5.3, 
+            -5.14127 -0.3125 5.3, -5.84746 1.34435 5.3, -4.67333 -3.76298 5.3, -4.6 -0.625 5.3, 
+            -5.14127 -0.3125 5.3, -4.67333 -3.76298 5.3, -3.5 -3.5 5.3, -3.5 -3.76298 5.3, 
+            -3.5 -3.88256 5.21304, -4.05873 0.3125 5.3, -3.5 -3.76298 5.3, -3.5 -3.5 5.3, 
+            -4.05873 -0.3125 5.3, -4.6 -0.625 5.3, -3.5 -3.76298 5.3, -4.05873 0.3125 5.3, 
+            -4.05873 -0.3125 5.3, -3.5 -3.76298 5.3, -24.9061 4.48352 2, -24.6721 -4.5 2, 
+            -25.0448 -4.33333 2, -24.6721 -4.5 4, -25.0448 -4.33333 2, -24.6721 -4.5 2, 
+            -26.4746 1.69661 2, -24.9061 4.48352 2, -25.0448 -4.33333 2, -26.5243 -1.5009 2, 
+            -26.4746 1.69661 2, -25.0448 -4.33333 2, -26.0332 -2.86775 4, -26.5243 -1.5009 2, 
+            -25.0448 -4.33333 2, -26.0332 -2.86775 4, -25.0448 -4.33333 2, -25.0448 -4.33333 4, 
+            -24.6721 -4.5 4, -25.0448 -4.33333 4, -25.0448 -4.33333 2, -16.5 -3.9 2, 
+            -16.5 -4.5 2, -24.6721 -4.5 2, -24.6721 -4.5 4, -24.6721 -4.5 2, 
+            -16.5 -4.5 2, -16.5 -1.9 2, -16.5 -3.9 2, -24.6721 -4.5 2, 
+            -20.5856 -1.41397 2, -16.5 -1.9 2, -24.6721 -4.5 2, -23.9999 -1.17914e-015 2, 
+            -24.6721 -4.5 2, -24.9061 4.48352 2, -22 -2 2, -20.5856 -1.41397 2, 
+            -24.6721 -4.5 2, -23.4144 -1.41397 2, -22 -2 2, -24.6721 -4.5 2, 
+            -23.9999 -1.17914e-015 2, -23.4144 -1.41397 2, -24.6721 -4.5 2, -16.5 -5.5 -3.86991e-015, 
+            -16.5 -4.5 2, -16.5 -3.9 2, -16.5 -4.5 4, -16.5 -4.5 2, 
+            -16.5 -5.5 -3.86991e-015, -16.5 -4.5 4, -24.6721 -4.5 4, -16.5 -4.5 2, 
+            -5.5 -1.9 2, -14.5 -3.9 2, -16.5 -3.9 2, -14.5 -3.9 -3.73766e-015, 
+            -16.5 -3.9 2, -14.5 -3.9 2, -16.5 -1.9 2, -5.5 -1.9 2, 
+            -16.5 -3.9 2, -16.5 -5.5 -3.86991e-015, -16.5 -3.9 2, -16.5 -3.9 -3.84869e-015, 
+            -14.5 -3.9 -3.73766e-015, -16.5 -3.9 -3.84869e-015, -16.5 -3.9 2, -5.5 -1.9 2, 
+            -10.5 -3.9 2, -14.5 -3.9 2, -14.5 -3.9 -3.73766e-015, -14.5 -3.9 2, 
+            -14.5 -5.5 -3.75888e-015, -5.5 -1.9 2, -5.5 -3.9 2, -10.5 -3.9 2, 
+            -10.5 -3.9 -3.51562e-015, -10.5 -3.9 2, -5.5 -3.9 2, -5.5 -4 4.4, 
+            -5.5 -3.9 2, -5.5 -1.9 2, -10.5 -3.9 -3.51562e-015, -5.5 -3.9 2, 
+            -5.5 -3.9 -3.23806e-015, -5.5 -4 4.4, -5.5 -3.9 -3.23806e-015, -5.5 -3.9 2, 
+            -5.5 -1.9 -3.21154e-015, -5.5 -1.9 2, -16.5 -1.9 2, -5.5 -1.9 -3.21154e-015, 
+            -5.5 4.5 -3.12666e-015, -5.5 -1.9 2, -5.5 -4 4.4, -5.5 -1.9 2, 
+            -5.5 4.5 -3.12666e-015, -20.5856 -1.41397 2, -16.5 4.5 2, -16.5 -1.9 2, 
+            -16.5 -1.9 -3.82216e-015, -16.5 -1.9 2, -16.5 4.5 2, -16.5 -1.9 -3.82216e-015, 
+            -5.5 -1.9 -3.21154e-015, -16.5 -1.9 2, -16.5 4.5 -3.73728e-015, -16.5 4.5 2, 
+            -5.5 4.5 2, -20.5856 1.41397 2, -22 2 2, -16.5 4.5 2, 
+            -20.0001 -1.94093e-016 2, -20.5856 1.41397 2, -16.5 4.5 2, -20.5856 -1.41397 2, 
+            -20.0001 -1.94093e-016 2, -16.5 4.5 2, -16.5 -1.9 -3.82216e-015, -16.5 4.5 2, 
+            -16.5 4.5 -3.73728e-015, -5.5 4.5 -3.12666e-015, -16.5 4.5 -3.73728e-015, -5.5 4.5 2, 
+            -5.5 -4 4.4, -5.5 4.5 -3.12666e-015, -5.5 4.5 2, -25.4334 3.85502 4, 
+            -24.9061 4.48352 2, -26.4746 1.69661 2, -26.6743 0.577458 4, -26.4746 1.69661 2, 
+            -26.5243 -1.5009 2, -26.279 2.30134 4, -25.4334 3.85502 4, -26.4746 1.69661 2, 
+            -26.6743 0.577458 4, -26.279 2.30134 4, -26.4746 1.69661 2, -26.5903 -1.18912 4, 
+            -26.6743 0.577458 4, -26.5243 -1.5009 2, -26.0332 -2.86775 4, -26.5903 -1.18912 4, 
+            -26.5243 -1.5009 2, -22 2 2.4, -22 2 2, -20.5856 1.41397 2, 
+            -23.4141 1.41413 2.4, -23.4144 1.41397 2, -22 2 2, -23.4141 1.41413 2.4, 
+            -22 2 2, -22 2 2.4, -20.5859 1.41413 2.4, -20.5856 1.41397 2, 
+            -20.0001 -1.94093e-016 2, -20.5859 1.41413 2.4, -22 2 2.4, -20.5856 1.41397 2, 
+            -20 -7.38319e-016 2.4, -20.0001 -1.94093e-016 2, -20.5856 -1.41397 2, -20 -7.38319e-016 2.4, 
+            -20.5859 1.41413 2.4, -20.0001 -1.94093e-016 2, -20.5859 -1.41413 2.4, -20.5856 -1.41397 2, 
+            -22 -2 2, -20.5859 -1.41413 2.4, -20 -7.38319e-016 2.4, -20.5856 -1.41397 2, 
+            -22 -2 2.4, -22 -2 2, -23.4144 -1.41397 2, -22 -2 2.4, 
+            -20.5859 -1.41413 2.4, -22 -2 2, -23.4141 -1.41413 2.4, -23.4144 -1.41397 2, 
+            -23.9999 -1.17914e-015 2, -23.4141 -1.41413 2.4, -22 -2 2.4, -23.4144 -1.41397 2, 
+            -24 -8.35189e-016 2.4, -23.9999 -1.17914e-015 2, -23.4144 1.41397 2, -23.4141 -1.41413 2.4, 
+            -23.9999 -1.17914e-015 2, -24 -8.35189e-016 2.4, -24 -8.35189e-016 2.4, -23.4144 1.41397 2, 
+            -23.4141 1.41413 2.4, -15.2 1 -3.71154e-015, -16.5 4.5 -3.73728e-015, -5.5 4.5 -3.12666e-015, 
+            -16.0659 0.50012 -3.76623e-015, -16.5 -1.9 -3.82216e-015, -16.5 4.5 -3.73728e-015, -15.2 1 -3.71154e-015, 
+            -16.0659 0.50012 -3.76623e-015, -16.5 4.5 -3.73728e-015, -9.84753 -0.550132 -3.43497e-015, -5.5 4.5 -3.12666e-015, 
+            -5.5 -1.9 -3.21154e-015, -14.3341 0.50012 -3.6701e-015, -15.2 1 -3.71154e-015, -5.5 4.5 -3.12666e-015, 
+            -14.3341 -0.50012 -3.68336e-015, -14.3341 0.50012 -3.6701e-015, -5.5 4.5 -3.12666e-015, -11.7525 0.550132 -3.52613e-015, 
+            -14.3341 -0.50012 -3.68336e-015, -5.5 4.5 -3.12666e-015, -10.8 1.1 -3.46596e-015, -11.7525 0.550132 -3.52613e-015, 
+            -5.5 4.5 -3.12666e-015, -9.84753 0.550132 -3.42038e-015, -10.8 1.1 -3.46596e-015, -5.5 4.5 -3.12666e-015, 
+            -9.84753 -0.550132 -3.43497e-015, -9.84753 0.550132 -3.42038e-015, -5.5 4.5 -3.12666e-015, -10.8 -1.1 -3.49514e-015, 
+            -5.5 -1.9 -3.21154e-015, -16.5 -1.9 -3.82216e-015, -9.84753 -0.550132 -3.43497e-015, -5.5 -1.9 -3.21154e-015, 
+            -10.8 -1.1 -3.49514e-015, -16.0659 -0.50012 -3.7795e-015, -15.2 -1 -3.73806e-015, -16.5 -1.9 -3.82216e-015, 
+            -14.3341 -0.50012 -3.68336e-015, -16.5 -1.9 -3.82216e-015, -15.2 -1 -3.73806e-015, -16.0659 0.50012 -3.76623e-015, 
+            -16.0659 -0.50012 -3.7795e-015, -16.5 -1.9 -3.82216e-015, -11.7525 0.550132 -3.52613e-015, -16.5 -1.9 -3.82216e-015, 
+            -14.3341 -0.50012 -3.68336e-015, -11.7525 -0.550132 -3.54072e-015, -10.8 -1.1 -3.49514e-015, -16.5 -1.9 -3.82216e-015, 
+            -11.7525 0.550132 -3.52613e-015, -11.7525 -0.550132 -3.54072e-015, -16.5 -1.9 -3.82216e-015, -14.5 -3.9 -3.73766e-015, 
+            -16.5 -5.5 -3.86991e-015, -16.5 -3.9 -3.84869e-015, -14.5 -3.9 -3.73766e-015, -14.5 -5.5 -3.75888e-015, 
+            -16.5 -5.5 -3.86991e-015, -6.19282 -5.2 -3.29376e-015, -5.5 -3.9 -3.23806e-015, -5.5 -4 -3.23939e-015, 
+            -5.5 -4 4.4, -5.5 -4 -3.23939e-015, -5.5 -3.9 -3.23806e-015, -5.5 -4 4.4, 
+            -6.19282 -5.2 -3.29376e-015, -5.5 -4 -3.23939e-015, -10.5 -5.5 -3.53684e-015, -10.5 -3.9 -3.51562e-015, 
+            -5.5 -3.9 -3.23806e-015, -8.5 -5.2 -3.42184e-015, -10.5 -5.5 -3.53684e-015, -5.5 -3.9 -3.23806e-015, 
+            -6.19282 -5.2 -3.29376e-015, -8.5 -5.2 -3.42184e-015, -5.5 -3.9 -3.23806e-015, -8.5 -5.2 -3.42184e-015, 
+            -8.5 -5.5 -3.42582e-015, -10.5 -5.5 -3.53684e-015, -15.2 -1 3.2, -15.2 -1 -3.73806e-015, 
+            -16.0659 -0.50012 -3.7795e-015, -14.3341 -0.50012 3.2, -14.3341 -0.50012 -3.68336e-015, -15.2 -1 -3.73806e-015, 
+            -14.3341 -0.50012 3.2, -15.2 -1 -3.73806e-015, -15.2 -1 3.2, -16.0659 -0.50012 3.2, 
+            -16.0659 -0.50012 -3.7795e-015, -16.0659 0.50012 -3.76623e-015, -16.0659 -0.50012 3.2, -15.2 -1 3.2, 
+            -16.0659 -0.50012 -3.7795e-015, -16.0659 0.50012 3.2, -16.0659 0.50012 -3.76623e-015, -15.2 1 -3.71154e-015, 
+            -16.0659 -0.50012 3.2, -16.0659 0.50012 -3.76623e-015, -16.0659 0.50012 3.2, -15.2 1 3.2, 
+            -15.2 1 -3.71154e-015, -14.3341 0.50012 -3.6701e-015, -16.0659 0.50012 3.2, -15.2 1 -3.71154e-015, 
+            -15.2 1 3.2, -14.3341 0.50012 3.2, -14.3341 0.50012 -3.6701e-015, -14.3341 -0.50012 -3.68336e-015, 
+            -15.2 1 3.2, -14.3341 0.50012 -3.6701e-015, -14.3341 0.50012 3.2, -14.3341 0.50012 3.2, 
+            -14.3341 -0.50012 -3.68336e-015, -14.3341 -0.50012 3.2, -10.8 -1.1 3.2, -10.8 -1.1 -3.49514e-015, 
+            -11.7525 -0.550132 -3.54072e-015, -9.84753 -0.550132 3.2, -9.84753 -0.550132 -3.43497e-015, -10.8 -1.1 -3.49514e-015, 
+            -9.84753 -0.550132 3.2, -10.8 -1.1 -3.49514e-015, -10.8 -1.1 3.2, -11.7525 -0.550132 3.2, 
+            -11.7525 -0.550132 -3.54072e-015, -11.7525 0.550132 -3.52613e-015, -11.7525 -0.550132 3.2, -10.8 -1.1 3.2, 
+            -11.7525 -0.550132 -3.54072e-015, -11.7525 0.550132 3.2, -11.7525 0.550132 -3.52613e-015, -10.8 1.1 -3.46596e-015, 
+            -11.7525 -0.550132 3.2, -11.7525 0.550132 -3.52613e-015, -11.7525 0.550132 3.2, -10.8 1.1 3.2, 
+            -10.8 1.1 -3.46596e-015, -9.84753 0.550132 -3.42038e-015, -11.7525 0.550132 3.2, -10.8 1.1 -3.46596e-015, 
+            -10.8 1.1 3.2, -9.84753 0.550132 3.2, -9.84753 0.550132 -3.42038e-015, -9.84753 -0.550132 -3.43497e-015, 
+            -10.8 1.1 3.2, -9.84753 0.550132 -3.42038e-015, -9.84753 0.550132 3.2, -9.84753 0.550132 3.2, 
+            -9.84753 -0.550132 -3.43497e-015, -9.84753 -0.550132 3.2, -26.0332 -2.86775 4, -25.0448 -4.33333 4, 
+            -25.4334 3.85502 4, -24.6721 -4.5 4, -25.4334 3.85502 4, -25.0448 -4.33333 4, 
+            -26.0332 -2.86775 4, -25.4334 3.85502 4, -26.279 2.30134 4, -24.3815 -8.23286e-016 4, 
+            -25.4334 3.85502 4, -24.6721 -4.5 4, -26.5903 -1.18912 4, -26.279 2.30134 4, 
+            -26.6743 0.577458 4, -26.0332 -2.86775 4, -26.279 2.30134 4, -26.5903 -1.18912 4, 
+            -3.20706 2.79294 5.3, -3.5 3.5 4.4, -3.5 3.5 5.3, -3.20706 2.79294 5.3, 
+            -3.20706 2.79294 4.4, -3.5 3.5 4.4, -3.20706 -2.79294 5.3, -3.20706 2.79294 5.3, 
+            -3.5 3.5 5.3, -3.20706 -2.79294 5.3, -3.5 3.5 5.3, -3.5 -3.5 5.3, 
+            -4.05873 0.3125 5.3, -3.5 -3.5 5.3, -3.5 3.5 5.3, -2.5 2.5 5.3, 
+            -2.5 2.5 4.4, -3.20706 2.79294 4.4, 3.55271e-015 1.185 4.4, -3.20706 2.79294 4.4, 
+            -2.5 2.5 4.4, -3.20706 2.79294 5.3, -2.5 2.5 5.3, -3.20706 2.79294 4.4, 
+            -4.6 0.625 4.4, -3.20706 2.79294 4.4, 3.55271e-015 1.185 4.4, 3.55271e-015 2.5 5.3, 
+            -2.5 2.5 4.4, -2.5 2.5 5.3, 3.55271e-015 2.5 5.3, 3.55271e-015 2.5 4.4, 
+            -2.5 2.5 4.4, 1.76777 1.76777 4.4, -2.5 2.5 4.4, 3.55271e-015 2.5 4.4, 
+            3.55271e-015 1.185 4.4, -2.5 2.5 4.4, 1.76777 1.76777 4.4, -2.5 -2.5 5.3, 
+            -2.5 2.5 5.3, -3.20706 2.79294 5.3, 3.55271e-015 1.185 5.3, 3.55271e-015 2.5 5.3, 
+            -2.5 2.5 5.3, -1.02607 -0.592642 5.3, -2.5 2.5 5.3, -2.5 -2.5 5.3, 
+            -1.02607 0.592642 5.3, 3.55271e-015 1.185 5.3, -2.5 2.5 5.3, -1.02607 -0.592642 5.3, 
+            -1.02607 0.592642 5.3, -2.5 2.5 5.3, -3.20706 -2.79294 5.3, -2.5 -2.5 5.3, 
+            -3.20706 2.79294 5.3, 1.76777 1.76777 5.3, 3.55271e-015 2.5 4.4, 3.55271e-015 2.5 5.3, 
+            1.76777 1.76777 4.4, 3.55271e-015 2.5 4.4, 1.76777 1.76777 5.3, 1.02607 0.592642 5.3, 
+            1.76777 1.76777 5.3, 3.55271e-015 2.5 5.3, 3.55271e-015 1.185 5.3, 1.02607 0.592642 5.3, 
+            3.55271e-015 2.5 5.3, 1.76777 -1.76777 4.4, 1.76777 -1.76777 5.3, 3.55271e-015 -2.5 5.3, 
+            3.55271e-015 -1.185 5.3, 3.55271e-015 -2.5 5.3, 1.76777 -1.76777 5.3, 3.55271e-015 -2.5 4.4, 
+            1.76777 -1.76777 4.4, 3.55271e-015 -2.5 5.3, -2.5 -2.5 5.3, 3.55271e-015 -2.5 4.4, 
+            3.55271e-015 -2.5 5.3, -1.02607 -0.592642 5.3, -2.5 -2.5 5.3, 3.55271e-015 -2.5 5.3, 
+            -1.02607 -0.592642 5.3, 3.55271e-015 -2.5 5.3, 3.55271e-015 -1.185 5.3, 1.76777 1.76777 5.3, 
+            1.76777 -1.76777 5.3, 2.5 -2.48651e-015 5.3, 2.5 4.85419e-016 4.4, 2.5 -2.48651e-015 5.3, 
+            1.76777 -1.76777 5.3, 1.02607 0.592642 5.3, 1.76777 -1.76777 5.3, 1.76777 1.76777 5.3, 
+            1.76777 -1.76777 4.4, 2.5 4.85419e-016 4.4, 1.76777 -1.76777 5.3, 1.02607 -0.592642 5.3, 
+            3.55271e-015 -1.185 5.3, 1.76777 -1.76777 5.3, 1.02607 0.592642 5.3, 1.02607 -0.592642 5.3, 
+            1.76777 -1.76777 5.3, 1.76777 1.76777 4.4, 1.76777 1.76777 5.3, 2.5 -2.48651e-015 5.3, 
+            2.5 4.85419e-016 4.4, 1.76777 1.76777 4.4, 2.5 -2.48651e-015 5.3, 3.55271e-015 1.185 4.4, 
+            1.76777 1.76777 4.4, 2.5 4.85419e-016 4.4, 1.02607 -0.592642 4.4, 2.5 4.85419e-016 4.4, 
+            1.76777 -1.76777 4.4, 1.02607 0.592642 4.4, 3.55271e-015 1.185 4.4, 2.5 4.85419e-016 4.4, 
+            1.02607 -0.592642 4.4, 1.02607 0.592642 4.4, 2.5 4.85419e-016 4.4, -4.6 -0.625 4.4, 
+            1.76777 -1.76777 4.4, 3.55271e-015 -2.5 4.4, 1.02607 -0.592642 4.4, 1.76777 -1.76777 4.4, 
+            3.55271e-015 -1.185 4.4, -4.6 -0.625 4.4, 3.55271e-015 -1.185 4.4, 1.76777 -1.76777 4.4, 
+            -2.5 -2.5 5.3, -2.5 -2.5 4.4, 3.55271e-015 -2.5 4.4, -4.6 -0.625 4.4, 
+            3.55271e-015 -2.5 4.4, -2.5 -2.5 4.4, -3.20706 -2.79294 5.3, -2.5 -2.5 4.4, 
+            -2.5 -2.5 5.3, -3.20706 -2.79294 5.3, -3.20706 -2.79294 4.4, -2.5 -2.5 4.4, 
+            -5.14127 -0.3125 4.4, -2.5 -2.5 4.4, -3.20706 -2.79294 4.4, -5.14127 -0.3125 4.4, 
+            -4.6 -0.625 4.4, -2.5 -2.5 4.4, -3.5 -3.5 5.3, -3.5 -3.5 4.4, 
+            -3.20706 -2.79294 4.4, -5.14127 -0.3125 4.4, -3.20706 -2.79294 4.4, -3.5 -3.5 4.4, 
+            -3.20706 -2.79294 5.3, -3.5 -3.5 5.3, -3.20706 -2.79294 4.4, -3.5 -4 4.4, 
+            -3.5 -3.5 4.4, -3.5 -3.5 5.3, -5.14127 -0.3125 4.4, -3.5 -3.5 4.4, 
+            -3.5 -4 4.4, -5.14127 -0.3125 4.4, -3.5 -4 4.4, -5.5 -4 4.4, 
+            -4.6 -0.625 4.4, -1.02607 -0.592642 4.4, 3.55271e-015 -1.185 4.4, 3.55271e-015 -1.185 5.3, 
+            3.55271e-015 -1.185 4.4, -1.02607 -0.592642 4.4, 1.02607 -0.592642 5.3, 1.02607 -0.592642 4.4, 
+            3.55271e-015 -1.185 4.4, 1.02607 -0.592642 5.3, 3.55271e-015 -1.185 4.4, 3.55271e-015 -1.185 5.3, 
+            -4.05873 0.3125 4.4, -1.02607 0.592642 4.4, -1.02607 -0.592642 4.4, -1.02607 -0.592642 5.3, 
+            -1.02607 -0.592642 4.4, -1.02607 0.592642 4.4, -4.05873 -0.3125 4.4, -4.05873 0.3125 4.4, 
+            -1.02607 -0.592642 4.4, -4.6 -0.625 4.4, -4.05873 -0.3125 4.4, -1.02607 -0.592642 4.4, 
+            -1.02607 -0.592642 5.3, 3.55271e-015 -1.185 5.3, -1.02607 -0.592642 4.4, -4.6 0.625 4.4, 
+            3.55271e-015 1.185 4.4, -1.02607 0.592642 4.4, -1.02607 0.592642 5.3, -1.02607 0.592642 4.4, 
+            3.55271e-015 1.185 4.4, -4.05873 0.3125 4.4, -4.6 0.625 4.4, -1.02607 0.592642 4.4, 
+            -1.02607 -0.592642 5.3, -1.02607 0.592642 4.4, -1.02607 0.592642 5.3, 3.55271e-015 1.185 5.3, 
+            3.55271e-015 1.185 4.4, 1.02607 0.592642 4.4, -1.02607 0.592642 5.3, 3.55271e-015 1.185 4.4, 
+            3.55271e-015 1.185 5.3, 1.02607 0.592642 5.3, 1.02607 0.592642 4.4, 1.02607 -0.592642 4.4, 
+            3.55271e-015 1.185 5.3, 1.02607 0.592642 4.4, 1.02607 0.592642 5.3, 1.02607 0.592642 5.3, 
+            1.02607 -0.592642 4.4, 1.02607 -0.592642 5.3, -4.6 0.625 5.3, -4.6 0.625 4.4, 
+            -4.05873 0.3125 4.4, -5.14127 0.3125 5.3, -5.14127 0.3125 4.4, -4.6 0.625 4.4, 
+            -5.14127 0.3125 5.3, -4.6 0.625 4.4, -4.6 0.625 5.3, -4.05873 0.3125 5.3, 
+            -4.05873 0.3125 4.4, -4.05873 -0.3125 4.4, -4.05873 0.3125 5.3, -4.6 0.625 5.3, 
+            -4.05873 0.3125 4.4, -4.05873 -0.3125 5.3, -4.05873 -0.3125 4.4, -4.6 -0.625 4.4, 
+            -4.05873 0.3125 5.3, -4.05873 -0.3125 4.4, -4.05873 -0.3125 5.3, -4.6 -0.625 5.3, 
+            -4.6 -0.625 4.4, -5.14127 -0.3125 4.4, -4.05873 -0.3125 5.3, -4.6 -0.625 4.4, 
+            -4.6 -0.625 5.3, -5.14127 -0.3125 5.3, -5.14127 -0.3125 4.4, -5.14127 0.3125 4.4, 
+            -4.6 -0.625 5.3, -5.14127 -0.3125 4.4, -5.14127 -0.3125 5.3, -5.14127 -0.3125 5.3, 
+            -5.14127 0.3125 4.4, -5.14127 0.3125 5.3, -5.14127 -0.3125 5.3, -5.14127 0.3125 5.3, 
+            -5.84746 1.34435 5.3, -22 -2.3815 4, -24.6721 -4.5 4, -16.5 -4.5 4, 
+            -23.684 -1.68397 4, -24.3815 -8.23286e-016 4, -24.6721 -4.5 4, -22 -2.3815 4, 
+            -23.684 -1.68397 4, -24.6721 -4.5 4, -10.8 2.1 3.2, -16.5 2.1 4, 
+            -19.2 2.1 4, -19.2 2.1 3.2, -19.2 2.1 4, -19.633 1.84984 4, 
+            -10.8 2.1 3.2, -19.2 2.1 4, -19.2 2.1 3.2, -19.6328 1.85012 3.2, 
+            -19.633 1.84984 4, -19.633 1.35016 4, -19.6328 1.85012 3.2, -19.2 2.1 3.2, 
+            -19.633 1.84984 4, -19.2 -2.1 4, -19.2 1.1 4, -19.633 1.35016 4, 
+            -19.6328 1.34988 3.2, -19.633 1.35016 4, -19.2 1.1 4, -19.6185 -7.07937e-016 4, 
+            -19.2 -2.1 4, -19.633 1.35016 4, -20.316 1.68397 4, -19.6185 -7.07937e-016 4, 
+            -19.633 1.35016 4, -19.6328 1.85012 3.2, -19.633 1.35016 4, -19.6328 1.34988 3.2, 
+            -19.2 1.1 3.2, -19.2 1.1 4, -19.2 -2.1 4, -19.6328 1.34988 3.2, 
+            -19.2 1.1 4, -19.2 1.1 3.2, -20.316 -1.68397 4, -18.9498 -2.53303 4, 
+            -19.2 -2.1 4, -19.2 -2.1 3.2, -19.2 -2.1 4, -18.9498 -2.53303 4, 
+            -19.6185 -7.07937e-016 4, -20.316 -1.68397 4, -19.2 -2.1 4, -19.2 1.1 3.2, 
+            -19.2 -2.1 4, -19.2 -2.1 3.2, -16.5 -4.5 4, -18.4502 -2.53303 4, 
+            -18.9498 -2.53303 4, -18.9501 -2.53284 3.2, -18.9498 -2.53303 4, -18.4502 -2.53303 4, 
+            -20.316 -1.68397 4, -16.5 -4.5 4, -18.9498 -2.53303 4, -19.2 -2.1 3.2, 
+            -18.9498 -2.53303 4, -18.9501 -2.53284 3.2, -16.5 -4.5 4, -18.2 -2.1 4, 
+            -18.4502 -2.53303 4, -18.4499 -2.53284 3.2, -18.4502 -2.53303 4, -18.2 -2.1 4, 
+            -18.9501 -2.53284 3.2, -18.4502 -2.53303 4, -18.4499 -2.53284 3.2, -16.5 -4.5 4, 
+            -16.5 -2.1 4, -18.2 -2.1 4, -18.2 -2.1 3.2, -18.2 -2.1 4, 
+            -16.5 -2.1 4, -18.4499 -2.53284 3.2, -18.2 -2.1 4, -18.2 -2.1 3.2, 
+            -20.316 -1.68397 4, -22 -2.3815 4, -16.5 -4.5 4, -22 2.3815 2.4, 
+            -22 2.3815 4, -23.684 1.68397 4, -20.3158 1.68369 2.4, -20.316 1.68397 4, 
+            -22 2.3815 4, -20.3158 1.68369 2.4, -22 2.3815 4, -22 2.3815 2.4, 
+            -23.6842 1.68369 2.4, -23.684 1.68397 4, -24.3815 -8.23286e-016 4, -23.6842 1.68369 2.4, 
+            -22 2.3815 2.4, -23.684 1.68397 4, -24.3814 -8.28109e-016 2.4, -24.3815 -8.23286e-016 4, 
+            -23.684 -1.68397 4, -23.6842 1.68369 2.4, -24.3815 -8.23286e-016 4, -24.3814 -8.28109e-016 2.4, 
+            -23.6842 -1.68369 2.4, -23.684 -1.68397 4, -22 -2.3815 4, -24.3814 -8.28109e-016 2.4, 
+            -23.684 -1.68397 4, -23.6842 -1.68369 2.4, -22 -2.3815 2.4, -22 -2.3815 4, 
+            -20.316 -1.68397 4, -23.6842 -1.68369 2.4, -22 -2.3815 4, -22 -2.3815 2.4, 
+            -20.3158 -1.68369 2.4, -20.316 -1.68397 4, -19.6185 -7.07937e-016 4, -22 -2.3815 2.4, 
+            -20.316 -1.68397 4, -20.3158 -1.68369 2.4, -19.6186 -7.12765e-016 2.4, -19.6185 -7.07937e-016 4, 
+            -20.316 1.68397 4, -20.3158 -1.68369 2.4, -19.6185 -7.07937e-016 4, -19.6186 -7.12765e-016 2.4, 
+            -19.6186 -7.12765e-016 2.4, -20.316 1.68397 4, -20.3158 1.68369 2.4, -10.8 1.1 3.2, 
+            -10.8 2.1 3.2, -19.2 2.1 3.2, -18.4499 -2.53284 3.2, -18.2 -2.1 3.2, 
+            -19.2 2.1 3.2, -16.0659 -0.50012 3.2, -19.2 2.1 3.2, -18.2 -2.1 3.2, 
+            -18.9501 -2.53284 3.2, -18.4499 -2.53284 3.2, -19.2 2.1 3.2, -19.2 1.1 3.2, 
+            -18.9501 -2.53284 3.2, -19.2 2.1 3.2, -19.6328 1.85012 3.2, -19.2 1.1 3.2, 
+            -19.2 2.1 3.2, -16.0659 0.50012 3.2, -15.2 1 3.2, -19.2 2.1 3.2, 
+            -11.7525 0.550132 3.2, -19.2 2.1 3.2, -15.2 1 3.2, -16.0659 -0.50012 3.2, 
+            -16.0659 0.50012 3.2, -19.2 2.1 3.2, -11.7525 0.550132 3.2, -10.8 1.1 3.2, 
+            -19.2 2.1 3.2, -9.84753 0.550132 3.2, -9.31516 1.48484 3.2, -10.8 2.1 3.2, 
+            -10.8 1.1 3.2, -9.84753 0.550132 3.2, -10.8 2.1 3.2, -9.31516 -1.48484 3.2, 
+            -8.7 3.35073e-016 3.2, -9.31516 1.48484 3.2, -9.84753 0.550132 3.2, -9.31516 -1.48484 3.2, 
+            -9.31516 1.48484 3.2, -10.8 -1.1 3.2, -10.8 -2.1 3.2, -9.31516 -1.48484 3.2, 
+            -9.84753 -0.550132 3.2, -10.8 -1.1 3.2, -9.31516 -1.48484 3.2, -9.84753 0.550132 3.2, 
+            -9.84753 -0.550132 3.2, -9.31516 -1.48484 3.2, -15.2 -1 3.2, -18.2 -2.1 3.2, 
+            -10.8 -2.1 3.2, -14.3341 -0.50012 3.2, -15.2 -1 3.2, -10.8 -2.1 3.2, 
+            -14.3341 0.50012 3.2, -14.3341 -0.50012 3.2, -10.8 -2.1 3.2, -11.7525 -0.550132 3.2, 
+            -14.3341 0.50012 3.2, -10.8 -2.1 3.2, -11.7525 -0.550132 3.2, -10.8 -2.1 3.2, 
+            -10.8 -1.1 3.2, -16.0659 -0.50012 3.2, -18.2 -2.1 3.2, -15.2 -1 3.2, 
+            -19.2 1.1 3.2, -19.2 -2.1 3.2, -18.9501 -2.53284 3.2, -19.6328 1.85012 3.2, 
+            -19.6328 1.34988 3.2, -19.2 1.1 3.2, -11.7525 -0.550132 3.2, -15.2 1 3.2, 
+            -14.3341 0.50012 3.2, -11.7525 -0.550132 3.2, -11.7525 0.550132 3.2, -15.2 1 3.2, 
+            -22 2.3815 2.4, -22 2 2.4, -20.5859 1.41413 2.4, -23.6842 1.68369 2.4, 
+            -22 2 2.4, -22 2.3815 2.4, -23.4141 1.41413 2.4, -22 2 2.4, 
+            -23.6842 1.68369 2.4, -20.3158 1.68369 2.4, -20.5859 1.41413 2.4, -20 -7.38319e-016 2.4, 
+            -20.3158 1.68369 2.4, -22 2.3815 2.4, -20.5859 1.41413 2.4, -20.3158 -1.68369 2.4, 
+            -20 -7.38319e-016 2.4, -20.5859 -1.41413 2.4, -19.6186 -7.12765e-016 2.4, -20.3158 1.68369 2.4, 
+            -20 -7.38319e-016 2.4, -20.3158 -1.68369 2.4, -19.6186 -7.12765e-016 2.4, -20 -7.38319e-016 2.4, 
+            -20.3158 -1.68369 2.4, -20.5859 -1.41413 2.4, -22 -2 2.4, -22 -2.3815 2.4, 
+            -20.3158 -1.68369 2.4, -22 -2 2.4, -23.4141 -1.41413 2.4, -22 -2.3815 2.4, 
+            -22 -2 2.4, -23.4141 -1.41413 2.4, -23.6842 -1.68369 2.4, -22 -2.3815 2.4, 
+            -24 -8.35189e-016 2.4, -24.3814 -8.28109e-016 2.4, -23.6842 -1.68369 2.4, -23.4141 -1.41413 2.4, 
+            -24 -8.35189e-016 2.4, -23.6842 -1.68369 2.4, -24 -8.35189e-016 2.4, -23.6842 1.68369 2.4, 
+            -24.3814 -8.28109e-016 2.4, -24 -8.35189e-016 2.4, -23.4141 1.41413 2.4, -23.6842 1.68369 2.4
+          ]
+        }
+        coordIndex
+        [
+          0,1,2,-1, 3,4,5,-1, 6,7,8,-1, 9,10,11,-1, 12,13,14,-1, 15,16,17,-1, 
+          18,19,20,-1, 21,22,23,-1, 24,25,26,-1, 27,28,29,-1, 30,31,32,-1, 33,34,35,-1, 
+          36,37,38,-1, 39,40,41,-1, 42,43,44,-1, 45,46,47,-1, 48,49,50,-1, 51,52,53,-1, 
+          54,55,56,-1, 57,58,59,-1, 60,61,62,-1, 63,64,65,-1, 66,67,68,-1, 69,70,71,-1, 
+          72,73,74,-1, 75,76,77,-1, 78,79,80,-1, 81,82,83,-1, 84,85,86,-1, 87,88,89,-1, 
+          90,91,92,-1, 93,94,95,-1, 96,97,98,-1, 99,100,101,-1, 102,103,104,-1, 105,106,107,-1, 
+          108,109,110,-1, 111,112,113,-1, 114,115,116,-1, 117,118,119,-1, 120,121,122,-1, 123,124,125,-1, 
+          126,127,128,-1, 129,130,131,-1, 132,133,134,-1, 135,136,137,-1, 138,139,140,-1, 141,142,143,-1, 
+          144,145,146,-1, 147,148,149,-1, 150,151,152,-1, 153,154,155,-1, 156,157,158,-1, 159,160,161,-1, 
+          162,163,164,-1, 165,166,167,-1, 168,169,170,-1, 171,172,173,-1, 174,175,176,-1, 177,178,179,-1, 
+          180,181,182,-1, 183,184,185,-1, 186,187,188,-1, 189,190,191,-1, 192,193,194,-1, 195,196,197,-1, 
+          198,199,200,-1, 201,202,203,-1, 204,205,206,-1, 207,208,209,-1, 210,211,212,-1, 213,214,215,-1, 
+          216,217,218,-1, 219,220,221,-1, 222,223,224,-1, 225,226,227,-1, 228,229,230,-1, 231,232,233,-1, 
+          234,235,236,-1, 237,238,239,-1, 240,241,242,-1, 243,244,245,-1, 246,247,248,-1, 249,250,251,-1, 
+          252,253,254,-1, 255,256,257,-1, 258,259,260,-1, 261,262,263,-1, 264,265,266,-1, 267,268,269,-1, 
+          270,271,272,-1, 273,274,275,-1, 276,277,278,-1, 279,280,281,-1, 282,283,284,-1, 285,286,287,-1, 
+          288,289,290,-1, 291,292,293,-1, 294,295,296,-1, 297,298,299,-1, 300,301,302,-1, 303,304,305,-1, 
+          306,307,308,-1, 309,310,311,-1, 312,313,314,-1, 315,316,317,-1, 318,319,320,-1, 321,322,323,-1, 
+          324,325,326,-1, 327,328,329,-1, 330,331,332,-1, 333,334,335,-1, 336,337,338,-1, 339,340,341,-1, 
+          342,343,344,-1, 345,346,347,-1, 348,349,350,-1, 351,352,353,-1, 354,355,356,-1, 357,358,359,-1, 
+          360,361,362,-1, 363,364,365,-1, 366,367,368,-1, 369,370,371,-1, 372,373,374,-1, 375,376,377,-1, 
+          378,379,380,-1, 381,382,383,-1, 384,385,386,-1, 387,388,389,-1, 390,391,392,-1, 393,394,395,-1, 
+          396,397,398,-1, 399,400,401,-1, 402,403,404,-1, 405,406,407,-1, 408,409,410,-1, 411,412,413,-1, 
+          414,415,416,-1, 417,418,419,-1, 420,421,422,-1, 423,424,425,-1, 426,427,428,-1, 429,430,431,-1, 
+          432,433,434,-1, 435,436,437,-1, 438,439,440,-1, 441,442,443,-1, 444,445,446,-1, 447,448,449,-1, 
+          450,451,452,-1, 453,454,455,-1, 456,457,458,-1, 459,460,461,-1, 462,463,464,-1, 465,466,467,-1, 
+          468,469,470,-1, 471,472,473,-1, 474,475,476,-1, 477,478,479,-1, 480,481,482,-1, 483,484,485,-1, 
+          486,487,488,-1, 489,490,491,-1, 492,493,494,-1, 495,496,497,-1, 498,499,500,-1, 501,502,503,-1, 
+          504,505,506,-1, 507,508,509,-1, 510,511,512,-1, 513,514,515,-1, 516,517,518,-1, 519,520,521,-1, 
+          522,523,524,-1, 525,526,527,-1, 528,529,530,-1, 531,532,533,-1, 534,535,536,-1, 537,538,539,-1, 
+          540,541,542,-1, 543,544,545,-1, 546,547,548,-1, 549,550,551,-1, 552,553,554,-1, 555,556,557,-1, 
+          558,559,560,-1, 561,562,563,-1, 564,565,566,-1, 567,568,569,-1, 570,571,572,-1, 573,574,575,-1, 
+          576,577,578,-1, 579,580,581,-1, 582,583,584,-1, 585,586,587,-1, 588,589,590,-1, 591,592,593,-1, 
+          594,595,596,-1, 597,598,599,-1, 600,601,602,-1, 603,604,605,-1, 606,607,608,-1, 609,610,611,-1, 
+          612,613,614,-1, 615,616,617,-1, 618,619,620,-1, 621,622,623,-1, 624,625,626,-1, 627,628,629,-1, 
+          630,631,632,-1, 633,634,635,-1, 636,637,638,-1, 639,640,641,-1, 642,643,644,-1, 645,646,647,-1, 
+          648,649,650,-1, 651,652,653,-1, 654,655,656,-1, 657,658,659,-1, 660,661,662,-1, 663,664,665,-1, 
+          666,667,668,-1, 669,670,671,-1, 672,673,674,-1, 675,676,677,-1, 678,679,680,-1, 681,682,683,-1, 
+          684,685,686,-1, 687,688,689,-1, 690,691,692,-1, 693,694,695,-1, 696,697,698,-1, 699,700,701,-1, 
+          702,703,704,-1, 705,706,707,-1, 708,709,710,-1, 711,712,713,-1, 714,715,716,-1, 717,718,719,-1, 
+          720,721,722,-1, 723,724,725,-1, 726,727,728,-1, 729,730,731,-1, 732,733,734,-1, 735,736,737,-1, 
+          738,739,740,-1, 741,742,743,-1, 744,745,746,-1, 747,748,749,-1, 750,751,752,-1, 753,754,755,-1, 
+          756,757,758,-1, 759,760,761,-1, 762,763,764,-1, 765,766,767,-1, 768,769,770,-1, 771,772,773,-1, 
+          774,775,776,-1, 777,778,779,-1, 780,781,782,-1, 783,784,785,-1, 786,787,788,-1, 789,790,791,-1, 
+          792,793,794,-1, 795,796,797,-1, 798,799,800,-1, 801,802,803,-1, 804,805,806,-1, 807,808,809,-1, 
+          810,811,812,-1, 813,814,815,-1, 816,817,818,-1, 819,820,821,-1, 822,823,824,-1, 825,826,827,-1, 
+          828,829,830,-1, 831,832,833,-1, 834,835,836,-1, 837,838,839,-1, 840,841,842,-1, 843,844,845,-1, 
+          846,847,848,-1, 849,850,851,-1, 852,853,854,-1, 855,856,857,-1, 858,859,860,-1, 861,862,863,-1, 
+          864,865,866,-1, 867,868,869,-1, 870,871,872,-1, 873,874,875,-1, 876,877,878,-1, 879,880,881,-1, 
+          882,883,884,-1, 885,886,887,-1, 888,889,890,-1, 891,892,893,-1, 894,895,896,-1, 897,898,899,-1, 
+          900,901,902,-1, 903,904,905,-1, 906,907,908,-1, 909,910,911,-1, 912,913,914,-1, 915,916,917,-1, 
+          918,919,920,-1, 921,922,923,-1, 924,925,926,-1, 927,928,929,-1, 930,931,932,-1, 933,934,935,-1, 
+          936,937,938,-1, 939,940,941,-1, 942,943,944,-1, 945,946,947,-1, 948,949,950,-1, 951,952,953,-1, 
+          954,955,956,-1, 957,958,959,-1, 960,961,962,-1, 963,964,965,-1, 966,967,968,-1, 969,970,971,-1, 
+          972,973,974,-1, 975,976,977,-1, 978,979,980,-1, 981,982,983,-1, 984,985,986,-1, 987,988,989,-1, 
+          990,991,992,-1, 993,994,995,-1, 996,997,998,-1, 999,1000,1001,-1, 1002,1003,1004,-1, 1005,1006,1007,-1, 
+          1008,1009,1010,-1, 1011,1012,1013,-1, 1014,1015,1016,-1, 1017,1018,1019,-1, 1020,1021,1022,-1, 1023,1024,1025,-1, 
+          1026,1027,1028,-1, 1029,1030,1031,-1, 1032,1033,1034,-1, 1035,1036,1037,-1, 1038,1039,1040,-1, 1041,1042,1043,-1, 
+          1044,1045,1046,-1, 1047,1048,1049,-1, 1050,1051,1052,-1, 1053,1054,1055,-1, 1056,1057,1058,-1, 1059,1060,1061,-1, 
+          1062,1063,1064,-1, 1065,1066,1067,-1, 1068,1069,1070,-1, 1071,1072,1073,-1, 1074,1075,1076,-1, 1077,1078,1079,-1, 
+          1080,1081,1082,-1, 1083,1084,1085,-1, 1086,1087,1088,-1, 1089,1090,1091,-1, 1092,1093,1094,-1, 1095,1096,1097,-1, 
+          1098,1099,1100,-1, 1101,1102,1103,-1, 1104,1105,1106,-1, 1107,1108,1109,-1, 1110,1111,1112,-1, 1113,1114,1115,-1, 
+          1116,1117,1118,-1, 1119,1120,1121,-1, 1122,1123,1124,-1, 1125,1126,1127,-1, 1128,1129,1130,-1, 1131,1132,1133,-1, 
+          1134,1135,1136,-1, 1137,1138,1139,-1, 1140,1141,1142,-1, 1143,1144,1145,-1, 1146,1147,1148,-1, 1149,1150,1151,-1, 
+          1152,1153,1154,-1, 1155,1156,1157,-1, 1158,1159,1160,-1, 1161,1162,1163,-1, 1164,1165,1166,-1, 1167,1168,1169,-1, 
+          1170,1171,1172,-1, 1173,1174,1175,-1, 1176,1177,1178,-1, 1179,1180,1181,-1, 1182,1183,1184,-1, 1185,1186,1187,-1, 
+          1188,1189,1190,-1, 1191,1192,1193,-1, 1194,1195,1196,-1, 1197,1198,1199,-1, 1200,1201,1202,-1, 1203,1204,1205,-1, 
+          1206,1207,1208,-1, 1209,1210,1211,-1, 1212,1213,1214,-1, 1215,1216,1217,-1, 1218,1219,1220,-1, 1221,1222,1223,-1, 
+          1224,1225,1226,-1, 1227,1228,1229,-1, 1230,1231,1232,-1, 1233,1234,1235,-1, 1236,1237,1238,-1, 1239,1240,1241,-1, 
+          1242,1243,1244,-1, 1245,1246,1247,-1, 1248,1249,1250,-1, 1251,1252,1253,-1, 1254,1255,1256,-1, 1257,1258,1259,-1, 
+          1260,1261,1262,-1, 1263,1264,1265,-1, 1266,1267,1268,-1, 1269,1270,1271,-1, 1272,1273,1274,-1, 1275,1276,1277,-1, 
+          1278,1279,1280,-1, 1281,1282,1283,-1, 1284,1285,1286,-1, 1287,1288,1289,-1, 1290,1291,1292,-1, 1293,1294,1295,-1, 
+          1296,1297,1298,-1, 1299,1300,1301,-1, 1302,1303,1304,-1, 1305,1306,1307,-1, 1308,1309,1310,-1, 1311,1312,1313,-1, 
+          1314,1315,1316,-1, 1317,1318,1319,-1, 1320,1321,1322,-1, 1323,1324,1325,-1, 1326,1327,1328,-1, 1329,1330,1331,-1, 
+          1332,1333,1334,-1, 1335,1336,1337,-1, 1338,1339,1340,-1, 1341,1342,1343,-1, 1344,1345,1346,-1, 1347,1348,1349,-1, 
+          1350,1351,1352,-1, 1353,1354,1355,-1, 1356,1357,1358,-1, 1359,1360,1361,-1, 1362,1363,1364,-1, 1365,1366,1367,-1, 
+          1368,1369,1370,-1, 1371,1372,1373,-1, 1374,1375,1376,-1, 1377,1378,1379,-1, 1380,1381,1382,-1, 1383,1384,1385,-1, 
+          1386,1387,1388,-1, 1389,1390,1391,-1, 1392,1393,1394,-1, 1395,1396,1397,-1, 1398,1399,1400,-1, 1401,1402,1403,-1, 
+          1404,1405,1406,-1, 1407,1408,1409,-1, 1410,1411,1412,-1, 1413,1414,1415,-1, 1416,1417,1418,-1, 1419,1420,1421,-1, 
+          1422,1423,1424,-1, 1425,1426,1427,-1, 1428,1429,1430,-1, 1431,1432,1433,-1, 1434,1435,1436,-1, 1437,1438,1439,-1, 
+          1440,1441,1442,-1, 1443,1444,1445,-1, 1446,1447,1448,-1, 1449,1450,1451,-1, 1452,1453,1454,-1, 1455,1456,1457,-1, 
+          1458,1459,1460,-1, 1461,1462,1463,-1, 1464,1465,1466,-1, 1467,1468,1469,-1, 1470,1471,1472,-1, 1473,1474,1475,-1, 
+          1476,1477,1478,-1, 1479,1480,1481,-1, 1482,1483,1484,-1, 1485,1486,1487,-1, 1488,1489,1490,-1, 1491,1492,1493,-1, 
+          1494,1495,1496,-1, 1497,1498,1499,-1, 1500,1501,1502,-1, 1503,1504,1505,-1, 1506,1507,1508,-1, 1509,1510,1511,-1, 
+          1512,1513,1514,-1, 1515,1516,1517,-1, 1518,1519,1520,-1, 1521,1522,1523,-1, 1524,1525,1526,-1, 1527,1528,1529,-1, 
+          1530,1531,1532,-1, 1533,1534,1535,-1, 1536,1537,1538,-1, 1539,1540,1541,-1, 1542,1543,1544,-1, 1545,1546,1547,-1, 
+          1548,1549,1550,-1, 1551,1552,1553,-1, 1554,1555,1556,-1, 1557,1558,1559,-1, 1560,1561,1562,-1, 1563,1564,1565,-1, 
+          1566,1567,1568,-1, 1569,1570,1571,-1, 1572,1573,1574,-1, 1575,1576,1577,-1, 1578,1579,1580,-1, 1581,1582,1583,-1, 
+          1584,1585,1586,-1, 1587,1588,1589,-1, 1590,1591,1592,-1, 1593,1594,1595,-1, 1596,1597,1598,-1, 1599,1600,1601,-1, 
+          1602,1603,1604,-1, 1605,1606,1607,-1, 1608,1609,1610,-1, 1611,1612,1613,-1, 1614,1615,1616,-1, 1617,1618,1619,-1, 
+          1620,1621,1622,-1, 1623,1624,1625,-1, 1626,1627,1628,-1, 1629,1630,1631,-1, 1632,1633,1634,-1, 1635,1636,1637,-1, 
+          1638,1639,1640,-1, 1641,1642,1643,-1, 1644,1645,1646,-1, 1647,1648,1649,-1, 1650,1651,1652,-1, 1653,1654,1655,-1, 
+          1656,1657,1658,-1, 1659,1660,1661,-1, 1662,1663,1664,-1, 1665,1666,1667,-1, 1668,1669,1670,-1, 1671,1672,1673,-1, 
+          1674,1675,1676,-1, 1677,1678,1679,-1, 1680,1681,1682,-1, 1683,1684,1685,-1, 1686,1687,1688,-1, 1689,1690,1691,-1, 
+          1692,1693,1694,-1, 1695,1696,1697,-1, 1698,1699,1700,-1, 1701,1702,1703,-1, 1704,1705,1706,-1, 1707,1708,1709,-1, 
+          1710,1711,1712,-1, 1713,1714,1715,-1, 1716,1717,1718,-1, 1719,1720,1721,-1, 1722,1723,1724,-1, 1725,1726,1727,-1, 
+          1728,1729,1730,-1, 1731,1732,1733,-1, 1734,1735,1736,-1, 1737,1738,1739,-1, 1740,1741,1742,-1, 1743,1744,1745,-1, 
+          1746,1747,1748,-1, 1749,1750,1751,-1, 1752,1753,1754,-1, 1755,1756,1757,-1, 1758,1759,1760,-1, 1761,1762,1763,-1, 
+          1764,1765,1766,-1, 1767,1768,1769,-1, 1770,1771,1772,-1, 1773,1774,1775,-1, 1776,1777,1778,-1, 1779,1780,1781,-1, 
+          1782,1783,1784,-1, 1785,1786,1787,-1, 1788,1789,1790,-1, 1791,1792,1793,-1, 1794,1795,1796,-1, 1797,1798,1799,-1, 
+          1800,1801,1802,-1, 1803,1804,1805,-1, 1806,1807,1808,-1, 1809,1810,1811,-1, 1812,1813,1814,-1, 1815,1816,1817,-1, 
+          1818,1819,1820,-1, 1821,1822,1823,-1, 1824,1825,1826,-1, 1827,1828,1829,-1, 1830,1831,1832,-1, 1833,1834,1835,-1, 
+          1836,1837,1838,-1, 1839,1840,1841,-1, 1842,1843,1844,-1, 1845,1846,1847,-1, 1848,1849,1850,-1, 1851,1852,1853,-1, 
+          1854,1855,1856,-1, 1857,1858,1859,-1, 1860,1861,1862,-1, 1863,1864,1865,-1, 1866,1867,1868,-1, 1869,1870,1871,-1, 
+          1872,1873,1874,-1, 1875,1876,1877,-1, 1878,1879,1880,-1, 1881,1882,1883,-1, 1884,1885,1886,-1, 1887,1888,1889,-1, 
+          1890,1891,1892,-1, 1893,1894,1895,-1, 1896,1897,1898,-1, 1899,1900,1901,-1, 1902,1903,1904,-1, 1905,1906,1907,-1, 
+          1908,1909,1910,-1, 1911,1912,1913,-1, 1914,1915,1916,-1, 1917,1918,1919,-1, 1920,1921,1922,-1, 1923,1924,1925,-1, 
+          1926,1927,1928,-1, 1929,1930,1931,-1, 1932,1933,1934,-1, 1935,1936,1937,-1, 1938,1939,1940,-1, 1941,1942,1943,-1, 
+          1944,1945,1946,-1, 1947,1948,1949,-1, 1950,1951,1952,-1, 1953,1954,1955,-1, 1956,1957,1958,-1, 1959,1960,1961,-1, 
+          1962,1963,1964,-1, 1965,1966,1967,-1, 1968,1969,1970,-1, 1971,1972,1973,-1, 1974,1975,1976,-1, 1977,1978,1979,-1, 
+          1980,1981,1982,-1, 1983,1984,1985,-1, 1986,1987,1988,-1, 1989,1990,1991,-1, 1992,1993,1994,-1, 1995,1996,1997,-1, 
+          1998,1999,2000,-1, 2001,2002,2003,-1, 2004,2005,2006,-1, 2007,2008,2009,-1, 2010,2011,2012,-1, 2013,2014,2015,-1, 
+          2016,2017,2018,-1, 2019,2020,2021,-1, 2022,2023,2024,-1, 2025,2026,2027,-1, 2028,2029,2030,-1, 2031,2032,2033,-1, 
+          2034,2035,2036,-1, 2037,2038,2039,-1, 2040,2041,2042,-1, 2043,2044,2045,-1, 2046,2047,2048,-1, 2049,2050,2051,-1, 
+          2052,2053,2054,-1, 2055,2056,2057,-1, 2058,2059,2060,-1, 2061,2062,2063,-1, 2064,2065,2066,-1, 2067,2068,2069,-1, 
+          2070,2071,2072,-1, 2073,2074,2075,-1, 2076,2077,2078,-1, 2079,2080,2081,-1, 2082,2083,2084,-1, 2085,2086,2087,-1, 
+          2088,2089,2090,-1, 2091,2092,2093,-1, 2094,2095,2096,-1, 2097,2098,2099,-1, 2100,2101,2102,-1, 2103,2104,2105,-1, 
+          2106,2107,2108,-1, 2109,2110,2111,-1, 2112,2113,2114,-1, 2115,2116,2117,-1, 2118,2119,2120,-1, 2121,2122,2123,-1, 
+          2124,2125,2126,-1, 2127,2128,2129,-1, 2130,2131,2132,-1, 2133,2134,2135,-1, 2136,2137,2138,-1, 2139,2140,2141,-1, 
+          2142,2143,2144,-1, 2145,2146,2147,-1, 2148,2149,2150,-1, 2151,2152,2153,-1, 2154,2155,2156,-1, 2157,2158,2159,-1, 
+          2160,2161,2162,-1, 2163,2164,2165,-1, 2166,2167,2168,-1, 2169,2170,2171,-1, 2172,2173,2174,-1, 2175,2176,2177,-1, 
+          2178,2179,2180,-1, 2181,2182,2183,-1, 2184,2185,2186,-1, 2187,2188,2189,-1, 2190,2191,2192,-1, 2193,2194,2195,-1, 
+          2196,2197,2198,-1, 2199,2200,2201,-1, 2202,2203,2204,-1, 2205,2206,2207,-1, 2208,2209,2210,-1, 2211,2212,2213,-1, 
+          2214,2215,2216,-1, 2217,2218,2219,-1, 2220,2221,2222,-1, 2223,2224,2225,-1, 2226,2227,2228,-1, 2229,2230,2231,-1, 
+          2232,2233,2234,-1, 2235,2236,2237,-1, 2238,2239,2240,-1, 2241,2242,2243,-1, 2244,2245,2246,-1, 2247,2248,2249,-1, 
+          2250,2251,2252,-1, 2253,2254,2255,-1, 2256,2257,2258,-1, 2259,2260,2261,-1, 2262,2263,2264,-1, 2265,2266,2267,-1, 
+          2268,2269,2270,-1, 2271,2272,2273,-1, 2274,2275,2276,-1, 2277,2278,2279,-1, 2280,2281,2282,-1, 2283,2284,2285,-1, 
+          2286,2287,2288,-1, 2289,2290,2291,-1, 2292,2293,2294,-1, 2295,2296,2297,-1, 2298,2299,2300,-1, 2301,2302,2303,-1, 
+          2304,2305,2306,-1, 2307,2308,2309,-1, 2310,2311,2312,-1, 2313,2314,2315,-1, 2316,2317,2318,-1, 2319,2320,2321,-1, 
+          2322,2323,2324,-1, 2325,2326,2327,-1, 2328,2329,2330,-1, 2331,2332,2333,-1, 2334,2335,2336,-1, 2337,2338,2339,-1, 
+          2340,2341,2342,-1, 2343,2344,2345,-1, 2346,2347,2348,-1, 2349,2350,2351,-1, 2352,2353,2354,-1, 2355,2356,2357,-1, 
+          2358,2359,2360,-1, 2361,2362,2363,-1, 2364,2365,2366,-1, 2367,2368,2369,-1, 2370,2371,2372,-1, 2373,2374,2375,-1, 
+          2376,2377,2378,-1, 2379,2380,2381,-1, 2382,2383,2384,-1, 2385,2386,2387,-1, 2388,2389,2390,-1, 2391,2392,2393,-1, 
+          2394,2395,2396,-1, 2397,2398,2399,-1, 2400,2401,2402,-1, 2403,2404,2405,-1, 2406,2407,2408,-1, 2409,2410,2411,-1, 
+          2412,2413,2414,-1, 2415,2416,2417,-1, 2418,2419,2420,-1, 2421,2422,2423,-1, 2424,2425,2426,-1, 2427,2428,2429,-1, 
+          2430,2431,2432,-1, 2433,2434,2435,-1, 2436,2437,2438,-1, 2439,2440,2441,-1, 2442,2443,2444,-1, 2445,2446,2447,-1, 
+          2448,2449,2450,-1, 2451,2452,2453,-1, 2454,2455,2456,-1, 2457,2458,2459,-1, 2460,2461,2462,-1, 2463,2464,2465,-1, 
+          2466,2467,2468,-1, 2469,2470,2471,-1, 2472,2473,2474,-1, 2475,2476,2477,-1, 2478,2479,2480,-1, 2481,2482,2483,-1, 
+          2484,2485,2486,-1, 2487,2488,2489,-1, 2490,2491,2492,-1, 2493,2494,2495,-1, 2496,2497,2498,-1, 2499,2500,2501,-1, 
+          2502,2503,2504,-1, 2505,2506,2507,-1, 2508,2509,2510,-1, 2511,2512,2513,-1, 2514,2515,2516,-1, 2517,2518,2519,-1, 
+          2520,2521,2522,-1, 2523,2524,2525,-1, 2526,2527,2528,-1, 2529,2530,2531,-1, 2532,2533,2534,-1, 2535,2536,2537,-1, 
+          2538,2539,2540,-1, 2541,2542,2543,-1, 2544,2545,2546,-1, 2547,2548,2549,-1, 2550,2551,2552,-1, 2553,2554,2555,-1, 
+          2556,2557,2558,-1, 2559,2560,2561,-1, 2562,2563,2564,-1, 2565,2566,2567,-1, 2568,2569,2570,-1, 2571,2572,2573,-1, 
+          2574,2575,2576,-1, 2577,2578,2579,-1, 2580,2581,2582,-1, 2583,2584,2585,-1, 2586,2587,2588,-1, 2589,2590,2591,-1, 
+          2592,2593,2594,-1, 2595,2596,2597,-1, 2598,2599,2600,-1, 2601,2602,2603,-1, 2604,2605,2606,-1, 2607,2608,2609,-1, 
+          2610,2611,2612,-1, 2613,2614,2615,-1, 2616,2617,2618,-1, 2619,2620,2621,-1, 2622,2623,2624,-1, 2625,2626,2627,-1, 
+          2628,2629,2630,-1, 2631,2632,2633,-1, 2634,2635,2636,-1, 2637,2638,2639,-1, 2640,2641,2642,-1, 2643,2644,2645,-1, 
+          2646,2647,2648,-1, 2649,2650,2651,-1, 2652,2653,2654,-1, 2655,2656,2657,-1, 2658,2659,2660,-1, 2661,2662,2663,-1, 
+          2664,2665,2666,-1, 2667,2668,2669,-1, 2670,2671,2672,-1, 2673,2674,2675,-1, 2676,2677,2678,-1, 2679,2680,2681,-1, 
+          2682,2683,2684,-1, 2685,2686,2687,-1, 2688,2689,2690,-1, 2691,2692,2693,-1, 2694,2695,2696,-1, 2697,2698,2699,-1, 
+          2700,2701,2702,-1, 2703,2704,2705,-1, 2706,2707,2708,-1, 2709,2710,2711,-1, 2712,2713,2714,-1, 2715,2716,2717,-1, 
+          2718,2719,2720,-1, 2721,2722,2723,-1, 2724,2725,2726,-1, 2727,2728,2729,-1, 2730,2731,2732,-1, 2733,2734,2735,-1, 
+          2736,2737,2738,-1, 2739,2740,2741,-1, 2742,2743,2744,-1, 2745,2746,2747,-1, 2748,2749,2750,-1, 2751,2752,2753,-1, 
+          2754,2755,2756,-1, 2757,2758,2759,-1, 2760,2761,2762,-1, 2763,2764,2765,-1, 2766,2767,2768,-1, 2769,2770,2771,-1, 
+          2772,2773,2774,-1, 2775,2776,2777,-1, 2778,2779,2780,-1, 2781,2782,2783,-1, 2784,2785,2786,-1, 2787,2788,2789,-1, 
+          2790,2791,2792,-1, 2793,2794,2795,-1, 2796,2797,2798,-1, 2799,2800,2801,-1, 2802,2803,2804,-1, 2805,2806,2807,-1, 
+          2808,2809,2810,-1, 2811,2812,2813,-1, 2814,2815,2816,-1, 2817,2818,2819,-1, 2820,2821,2822,-1, 2823,2824,2825,-1, 
+          2826,2827,2828,-1, 2829,2830,2831,-1, 2832,2833,2834,-1, 2835,2836,2837,-1, 2838,2839,2840,-1, 2841,2842,2843,-1, 
+          2844,2845,2846,-1, 2847,2848,2849,-1, 2850,2851,2852,-1, 2853,2854,2855,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFingerTip.wrl b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFingerTip.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..05f79e82d32f659c7d31c2dce59e8816866e353a
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFingerTip.wrl
@@ -0,0 +1,1145 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            -19 0.55 -1.45, -19 -2.05 -1.45, -19 -2.05 1.45, -18.8 -2.25 1.45, 
+            -19 -2.05 1.45, -19 -2.05 -1.45, -19 0.55 1.45, -19 0.55 -1.45, 
+            -19 -2.05 1.45, -18.8 0.55 1.65, -19 0.55 1.45, -19 -2.05 1.45, 
+            -18.9 -2.15 1.55, -19 -2.05 1.45, -18.8 -2.25 1.45, -18.8 0.55 1.65, 
+            -19 -2.05 1.45, -18.8 -2.05 1.65, -18.9 -2.15 1.55, -18.8 -2.05 1.65, 
+            -19 -2.05 1.45, -18.8 -2.05 -1.65, -19 -2.05 -1.45, -19 0.55 -1.45, 
+            -18.8 -2.25 -1.45, -18.8 -2.25 1.45, -19 -2.05 -1.45, -18.9 -2.15 -1.55, 
+            -18.8 -2.25 -1.45, -19 -2.05 -1.45, -18.9 -2.15 -1.55, -19 -2.05 -1.45, 
+            -18.8 -2.05 -1.65, -18.8 0.75 -1.45, -19 0.55 -1.45, -19 0.55 1.45, 
+            -18.9 0.65 -1.55, -19 0.55 -1.45, -18.8 0.75 -1.45, -18.8 -2.05 -1.65, 
+            -19 0.55 -1.45, -18.8 0.55 -1.65, -18.9 0.65 -1.55, -18.8 0.55 -1.65, 
+            -19 0.55 -1.45, -18.9 0.65 1.55, -19 0.55 1.45, -18.8 0.55 1.65, 
+            -18.8 0.75 -1.45, -19 0.55 1.45, -18.8 0.75 1.45, -18.9 0.65 1.55, 
+            -18.8 0.75 1.45, -19 0.55 1.45, -5.25 1.75357e-015 4.4, -5.5 4.78435 4.4, 
+            -3.5 4.78435 4.4, -7.98986 3.94186 5.16834, -3.5 4.78435 4.4, -5.5 4.78435 4.4, 
+            -3.95 1.75081e-015 4.4, -3.5 4.78435 4.4, -3.5 3.5 4.4, -3.5 3.5 5.3, 
+            -3.5 3.5 4.4, -3.5 4.78435 4.4, -4.275 0.562917 4.4, -3.5 4.78435 4.4, 
+            -3.95 1.75081e-015 4.4, -4.925 0.562917 4.4, -5.25 1.75357e-015 4.4, -3.5 4.78435 4.4, 
+            -4.275 0.562917 4.4, -4.925 0.562917 4.4, -3.5 4.78435 4.4, -3.5 3.5 5.3, 
+            -3.5 4.78435 4.4, -3.5 3.76298 5.3, -3.5 4.2975 4.87663, -3.5 3.76298 5.3, 
+            -3.5 4.78435 4.4, -7.98986 3.94186 5.16834, -3.5 4.2975 4.87663, -3.5 4.78435 4.4, 
+            -5.25 1.75357e-015 4.4, -5.5 -3 4.4, -5.5 4.78435 4.4, -5.5 0.00545309 1.03644, 
+            -5.5 4.78435 4.4, -5.5 -3 4.4, -5.5 5.76628 -3, -5.5 6.44358 0.854584, 
+            -5.5 4.78435 4.4, -9 5.06374 4.07536, -5.5 4.78435 4.4, -5.5 6.44358 0.854584, 
+            -5.5 0.27991 0.7, -5.5 5.76628 -3, -5.5 4.78435 4.4, -5.5 0.00545309 1.03644, 
+            -5.5 0.27991 0.7, -5.5 4.78435 4.4, -7.98986 3.94186 5.16834, -5.5 4.78435 4.4, 
+            -9 5.06374 4.07536, -3.95 1.75081e-015 4.4, -3 -3 4.4, -5.5 -3 4.4, 
+            -3 -3 5.3, -5.5 -3 4.4, -3 -3 4.4, -4.275 -0.562917 4.4, 
+            -3.95 1.75081e-015 4.4, -5.5 -3 4.4, -4.925 -0.562917 4.4, -4.275 -0.562917 4.4, 
+            -5.5 -3 4.4, -5.25 1.75357e-015 4.4, -4.925 -0.562917 4.4, -5.5 -3 4.4, 
+            -5.5 -0.915671 0.7, -5.5 -3 4.4, -5.5 -3 -3, -9 -3 -5.76628, 
+            -5.5 -3 -3, -5.5 -3 4.4, -5.5 -0.641513 1.0363, -5.5 -3 4.4, 
+            -5.5 -0.915671 0.7, -5.5 -0.318794 1.09972, -5.5 0.00545309 1.03644, -5.5 -3 4.4, 
+            -5.5 -0.641513 1.0363, -5.5 -0.318794 1.09972, -5.5 -3 4.4, -3 -3 5.3, 
+            -5.19615 -3 5.3, -5.5 -3 4.4, -9 -3 -5.76628, -5.5 -3 4.4, 
+            -5.19615 -3 5.3, -2.5 2.5 4.4, -2.63395 -2.63401 4.4, -3 -3 4.4, 
+            -3 -3 5.3, -3 -3 4.4, -2.63395 -2.63401 4.4, -3.20706 2.79294 4.4, 
+            -2.5 2.5 4.4, -3 -3 4.4, -3.95 1.75081e-015 4.4, -3.20706 2.79294 4.4, 
+            -3 -3 4.4, -2.5 2.5 4.4, -2.13397 -2.5 4.4, -2.63395 -2.63401 4.4, 
+            -2.63395 -2.63401 5.3, -2.63395 -2.63401 4.4, -2.13397 -2.5 4.4, -2.63395 -2.63401 5.3, 
+            -3 -3 5.3, -2.63395 -2.63401 4.4, -0.592329 -1.02628 4.4, -1.46549e-014 -2.5 4.4, 
+            -2.13397 -2.5 4.4, -2.13397 -2.5 5.3, -2.13397 -2.5 4.4, -1.46549e-014 -2.5 4.4, 
+            -1.185 1.74494e-015 4.4, -2.13397 -2.5 4.4, -2.5 2.5 4.4, -1.185 1.74494e-015 4.4, 
+            -0.592329 -1.02628 4.4, -2.13397 -2.5 4.4, -2.63395 -2.63401 5.3, -2.13397 -2.5 4.4, 
+            -2.13397 -2.5 5.3, 1.185 1.73991e-015 4.4, 1.2502 -2.16492 4.4, -1.46549e-014 -2.5 4.4, 
+            -1.42109e-014 -2.5 5.3, -1.46549e-014 -2.5 4.4, 1.2502 -2.16492 4.4, 0.592329 -1.02628 4.4, 
+            1.185 1.73991e-015 4.4, -1.46549e-014 -2.5 4.4, -0.592329 -1.02628 4.4, 0.592329 -1.02628 4.4, 
+            -1.46549e-014 -2.5 4.4, -2.13397 -2.5 5.3, -1.46549e-014 -2.5 4.4, -1.42109e-014 -2.5 5.3, 
+            2.16511 1.2498 4.4, 2.16511 -1.2498 4.4, 1.2502 -2.16492 4.4, 1.2502 -2.16492 5.3, 
+            1.2502 -2.16492 4.4, 2.16511 -1.2498 4.4, 1.2502 2.16492 4.4, 2.16511 1.2498 4.4, 
+            1.2502 -2.16492 4.4, 1.185 1.73991e-015 4.4, 1.2502 2.16492 4.4, 1.2502 -2.16492 4.4, 
+            -1.42109e-014 -2.5 5.3, 1.2502 -2.16492 4.4, 1.2502 -2.16492 5.3, 2.16511 1.2498 4.4, 
+            2.49993 3.51348e-015 4.4, 2.16511 -1.2498 4.4, 2.16511 -1.2498 5.3, 2.16511 -1.2498 4.4, 
+            2.49993 3.51348e-015 4.4, 1.2502 -2.16492 5.3, 2.16511 -1.2498 4.4, 2.16511 -1.2498 5.3, 
+            2.49993 3.5885e-015 5.3, 2.49993 3.51348e-015 4.4, 2.16511 1.2498 4.4, 2.16511 -1.2498 5.3, 
+            2.49993 3.51348e-015 4.4, 2.49993 3.5885e-015 5.3, 2.16511 1.2498 5.3, 2.16511 1.2498 4.4, 
+            1.2502 2.16492 4.4, 2.49993 3.5885e-015 5.3, 2.16511 1.2498 4.4, 2.16511 1.2498 5.3, 
+            0.592329 1.02628 4.4, -1.55431e-014 2.5 4.4, 1.2502 2.16492 4.4, 1.2502 2.16492 5.3, 
+            1.2502 2.16492 4.4, -1.55431e-014 2.5 4.4, 0.592329 1.02628 4.4, 1.2502 2.16492 4.4, 
+            1.185 1.73991e-015 4.4, 2.16511 1.2498 5.3, 1.2502 2.16492 4.4, 1.2502 2.16492 5.3, 
+            -1.185 1.74494e-015 4.4, -2.5 2.5 4.4, -1.55431e-014 2.5 4.4, -1.59872e-014 2.5 5.3, 
+            -1.55431e-014 2.5 4.4, -2.5 2.5 4.4, -0.592329 1.02628 4.4, -1.185 1.74494e-015 4.4, 
+            -1.55431e-014 2.5 4.4, 0.592329 1.02628 4.4, -0.592329 1.02628 4.4, -1.55431e-014 2.5 4.4, 
+            1.2502 2.16492 5.3, -1.55431e-014 2.5 4.4, -1.59872e-014 2.5 5.3, -2.5 2.5 5.3, 
+            -2.5 2.5 4.4, -3.20706 2.79294 4.4, -2.5 2.5 5.3, -1.59872e-014 2.5 5.3, 
+            -2.5 2.5 4.4, -3.95 1.75081e-015 4.4, -3.5 3.5 4.4, -3.20706 2.79294 4.4, 
+            -3.20706 2.79294 5.3, -3.20706 2.79294 4.4, -3.5 3.5 4.4, -2.5 2.5 5.3, 
+            -3.20706 2.79294 4.4, -3.20706 2.79294 5.3, -3.20706 2.79294 5.3, -3.5 3.5 4.4, 
+            -3.5 3.5 5.3, 1.185 1.58656e-015 5.3, 1.185 1.73991e-015 4.4, 0.592329 -1.02628 4.4, 
+            0.592329 1.02628 5.3, 0.592329 1.02628 4.4, 1.185 1.73991e-015 4.4, 0.592329 1.02628 5.3, 
+            1.185 1.73991e-015 4.4, 1.185 1.58656e-015 5.3, 0.592329 -1.02628 5.3, 0.592329 -1.02628 4.4, 
+            -0.592329 -1.02628 4.4, 0.592329 -1.02628 5.3, 1.185 1.58656e-015 5.3, 0.592329 -1.02628 4.4, 
+            -0.592329 -1.02628 5.3, -0.592329 -1.02628 4.4, -1.185 1.74494e-015 4.4, 0.592329 -1.02628 5.3, 
+            -0.592329 -1.02628 4.4, -0.592329 -1.02628 5.3, -1.185 1.88182e-015 5.3, -1.185 1.74494e-015 4.4, 
+            -0.592329 1.02628 4.4, -0.592329 -1.02628 5.3, -1.185 1.74494e-015 4.4, -1.185 1.88182e-015 5.3, 
+            -0.592329 1.02628 5.3, -0.592329 1.02628 4.4, 0.592329 1.02628 4.4, -1.185 1.88182e-015 5.3, 
+            -0.592329 1.02628 4.4, -0.592329 1.02628 5.3, -0.592329 1.02628 5.3, 0.592329 1.02628 4.4, 
+            0.592329 1.02628 5.3, -3.95 2.55115e-015 5.3, -3.95 1.75081e-015 4.4, -4.275 -0.562917 4.4, 
+            -4.275 0.562917 5.3, -4.275 0.562917 4.4, -3.95 1.75081e-015 4.4, -4.275 0.562917 5.3, 
+            -3.95 1.75081e-015 4.4, -3.95 2.55115e-015 5.3, -4.275 -0.562917 5.3, -4.275 -0.562917 4.4, 
+            -4.925 -0.562917 4.4, -4.275 -0.562917 5.3, -3.95 2.55115e-015 5.3, -4.275 -0.562917 4.4, 
+            -4.925 -0.562917 5.3, -4.925 -0.562917 4.4, -5.25 1.75357e-015 4.4, -4.275 -0.562917 5.3, 
+            -4.925 -0.562917 4.4, -4.925 -0.562917 5.3, -5.25 2.71311e-015 5.3, -5.25 1.75357e-015 4.4, 
+            -4.925 0.562917 4.4, -4.925 -0.562917 5.3, -5.25 1.75357e-015 4.4, -5.25 2.71311e-015 5.3, 
+            -4.925 0.562917 5.3, -4.925 0.562917 4.4, -4.275 0.562917 4.4, -5.25 2.71311e-015 5.3, 
+            -4.925 0.562917 4.4, -4.925 0.562917 5.3, -4.925 0.562917 5.3, -4.275 0.562917 4.4, 
+            -4.275 0.562917 5.3, -9 6.5 -0.000343826, -5.5 6.44358 0.854584, -5.5 5.76628 -3, 
+            -9 6.13036 2.16057, -5.5 6.44358 0.854584, -9 6.5 -0.000343826, -9 5.06374 4.07536, 
+            -5.5 6.44358 0.854584, -9 6.13036 2.16057, -5.5 -0.641214 0.363558, -5.5 -3 -3, 
+            -5.5 5.76628 -3, -4.5 3.6 -3, -5.5 5.76628 -3, -5.5 -3 -3, 
+            -5.5 -0.316967 0.300277, -5.5 -0.641214 0.363558, -5.5 5.76628 -3, -5.5 0.00575265 0.363701, 
+            -5.5 -0.316967 0.300277, -5.5 5.76628 -3, -5.5 0.27991 0.7, -5.5 0.00575265 0.363701, 
+            -5.5 5.76628 -3, -4.5 3.6 -3, 0.5 5.76628 -3, -5.5 5.76628 -3, 
+            0.93799 5.32829 -3.72282, -5.5 5.76628 -3, 0.5 5.76628 -3, -2.5 5.12348 -4, 
+            -5.5 5.76628 -3, 0.93799 5.32829 -3.72282, -9 6.5 -0.000343826, -5.5 5.76628 -3, 
+            -9 6.13026 -2.16084, -2.5 5.12348 -4, -9 6.13026 -2.16084, -5.5 5.76628 -3, 
+            -5.5 -0.641214 0.363558, -5.5 -0.915671 0.7, -5.5 -3 -3, -4.5 -3 -3, 
+            -4.5 3.6 -3, -5.5 -3 -3, -5.5 -5.2 -3, -4.5 -3 -3, 
+            -5.5 -3 -3, -5.5 -3 -5.76628, -5.5 -5.2 -3, -5.5 -3 -3, 
+            -9 -3 -5.76628, -5.5 -3 -5.76628, -5.5 -3 -3, -7.7083 1.5369 0.7, 
+            -5.5 -0.915671 0.7, -5.5 -0.641214 0.363558, -7.62114 1.61538 0.982922, -5.5 -0.641513 1.0363, 
+            -5.5 -0.915671 0.7, -7.62114 1.61538 0.982922, -5.5 -0.915671 0.7, -7.7083 1.5369 0.7, 
+            -7.41105 1.80455 0.300062, -5.5 -0.641214 0.363558, -5.5 -0.316967 0.300277, -7.62114 1.61538 0.417078, 
+            -7.7083 1.5369 0.7, -5.5 -0.641214 0.363558, -7.62114 1.61538 0.417078, -5.5 -0.641214 0.363558, 
+            -7.41105 1.80455 0.300062, -7.41105 1.80455 0.300062, -5.5 -0.316967 0.300277, -5.5 0.00575265 0.363701, 
+            -7.20095 1.99372 0.417078, -5.5 0.00575265 0.363701, -5.5 0.27991 0.7, -7.41105 1.80455 0.300062, 
+            -5.5 0.00575265 0.363701, -7.20095 1.99372 0.417078, -7.11379 2.0722 0.7, -5.5 0.27991 0.7, 
+            -5.5 0.00545309 1.03644, -7.20095 1.99372 0.417078, -5.5 0.27991 0.7, -7.11379 2.0722 0.7, 
+            -7.41105 1.80455 1.09994, -5.5 0.00545309 1.03644, -5.5 -0.318794 1.09972, -7.20095 1.99372 0.982922, 
+            -5.5 0.00545309 1.03644, -7.41105 1.80455 1.09994, -7.11379 2.0722 0.7, -5.5 0.00545309 1.03644, 
+            -7.20095 1.99372 0.982922, -7.41105 1.80455 1.09994, -5.5 -0.318794 1.09972, -5.5 -0.641513 1.0363, 
+            -7.41105 1.80455 1.09994, -5.5 -0.641513 1.0363, -7.62114 1.61538 0.982922, -4.5 3.6 -3, 
+            1.5 4.76628 -3, 0.5 5.76628 -3, 1.5 4.76628 -4.41957, 0.5 5.76628 -3, 
+            1.5 4.76628 -3, 1.5 4.76628 -4.41957, 0.93799 5.32829 -3.72282, 0.5 5.76628 -3, 
+            -4.5 3.6 -3, 1.5 3.6 -3, 1.5 4.76628 -3, 1.5 3.6 -4.25, 
+            1.5 4.76628 -3, 1.5 3.6 -3, 1.5 4.76628 -4.41957, 1.5 4.76628 -3, 
+            1.5 3.6 -4.25, 1.5 3.6 -4.25, 1.5 3.6 -3, -4.5 3.6 -3, 
+            -4.5 3.6 -4.25, -4.5 3.6 -3, -4.5 -3 -3, -2.93301 3.6 -4.25, 
+            -4.5 3.6 -3, -4.5 3.6 -4.25, -2.75008 3.6 -4.06706, -2.5 3.6 -4, 
+            -4.5 3.6 -3, -2.24992 3.6 -4.06706, -4.5 3.6 -3, -2.5 3.6 -4, 
+            -2.93301 3.6 -4.25, -2.75008 3.6 -4.06706, -4.5 3.6 -3, -2.24992 3.6 -4.06706, 
+            1.5 3.6 -4.25, -4.5 3.6 -3, -5.5 -5.2 -3, 2.7 -3 -3, 
+            -4.5 -3 -3, -4.5 -3 -4.25, -4.5 -3 -3, 2.7 -3 -3, 
+            -4.5 3.38033 -4.78033, -4.5 3.6 -4.25, -4.5 -3 -3, -4.5 2.85 -5, 
+            -4.5 3.38033 -4.78033, -4.5 -3 -3, -4.5 -2.25 -5, -4.5 2.85 -5, 
+            -4.5 -3 -3, -4.5 -2.78033 -4.78033, -4.5 -2.25 -5, -4.5 -3 -3, 
+            -4.5 -3 -4.25, -4.5 -2.78033 -4.78033, -4.5 -3 -3, -5.5 -5.2 -3, 
+            0.5 -5.2 -3, 2.7 -3 -3, 2.7 -3 -4.25, 2.7 -3 -3, 
+            0.5 -5.2 -3, -2.5 -3 -4, -4.5 -3 -4.25, 2.7 -3 -3, 
+            -2.24992 -3 -4.06706, -2.5 -3 -4, 2.7 -3 -3, -2.06699 -3 -4.25, 
+            -2.24992 -3 -4.06706, 2.7 -3 -3, 2.7 -3 -4.25, -2.06699 -3 -4.25, 
+            2.7 -3 -3, 0.5 -5.2 -3.9, 0.5 -5.2 -3, -5.5 -5.2 -3, 
+            1.56507 -4.13493 -5.01521, 0.5 -5.2 -3, 0.5 -5.2 -3.9, 1.56507 -4.13493 -5.01521, 
+            2.7 -3 -4.25, 0.5 -5.2 -3, -5.5 -5.2 -3.9, -5.5 -5.2 -3, 
+            -5.5 -3 -5.76628, -5.5 -5.2 -3.9, 0.5 -5.2 -3.9, -5.5 -5.2 -3, 
+            -9 -3 -5.76628, -5.19615 -3 5.76628, -9 -3 5.76628, -5.95423 -0.739656 6.45786, 
+            -9 -3 5.76628, -5.19615 -3 5.76628, -9 -2.25 -1.45, -9 -3 -5.76628, 
+            -9 -3 5.76628, -9 -0.761359 6.45526, -9 -3 5.76628, -5.95423 -0.739656 6.45786, 
+            -9 0.55 1.65, -9 -3 5.76628, -9 0.75 1.45, -9 1.57479 6.30635, 
+            -9 0.75 1.45, -9 -3 5.76628, -9 -2.25 1.45, -9 -2.25 -1.45, 
+            -9 -3 5.76628, -9 -2.05 1.65, -9 -2.25 1.45, -9 -3 5.76628, 
+            -9 0.55 1.65, -9 -2.05 1.65, -9 -3 5.76628, -9 -0.761359 6.45526, 
+            -9 1.57479 6.30635, -9 -3 5.76628, -9 -3 -5.76628, -5.19615 -3 5.3, 
+            -5.19615 -3 5.76628, -5.98216 0.462401 5.3, -5.19615 -3 5.76628, -5.19615 -3 5.3, 
+            -5.95423 -0.739656 6.45786, -5.19615 -3 5.76628, -5.98216 0.462401 5.3, -4.925 -0.562917 5.3, 
+            -5.19615 -3 5.3, -3 -3 5.3, -5.25 2.71311e-015 5.3, -5.98216 0.462401 5.3, 
+            -5.19615 -3 5.3, -4.925 -0.562917 5.3, -5.25 2.71311e-015 5.3, -5.19615 -3 5.3, 
+            -3.20706 2.79294 5.3, -3 -3 5.3, -2.63395 -2.63401 5.3, -3.20706 2.79294 5.3, 
+            -3.5 3.5 5.3, -3 -3 5.3, -3.95 2.55115e-015 5.3, -3 -3 5.3, 
+            -3.5 3.5 5.3, -4.275 -0.562917 5.3, -3 -3 5.3, -3.95 2.55115e-015 5.3, 
+            -4.275 -0.562917 5.3, -4.925 -0.562917 5.3, -3 -3 5.3, -9 -2.26705 -6.09184, 
+            -5.5 -3 -5.76628, -9 -3 -5.76628, -5.5 -4.20437 -4.95714, -5.5 -5.2 -3.9, 
+            -5.5 -3 -5.76628, -2.5 -4.15331 -5, -5.5 -4.20437 -4.95714, -5.5 -3 -5.76628, 
+            1.56507 -4.13493 -5.01521, -5.5 -3 -5.76628, 3 -2.7 -5.9127, -9 -2.26705 -6.09184, 
+            3 -2.7 -5.9127, -5.5 -3 -5.76628, -2.5 -4.15331 -5, -5.5 -3 -5.76628, 
+            1.56507 -4.13493 -5.01521, -9 -1.5 -6, -9 -3 -5.76628, -9 0.37385 -6, 
+            -9 0.37385 -4.5, -9 0.37385 -6, -9 -3 -5.76628, -9 -2.26705 -6.09184, 
+            -9 -3 -5.76628, -9 -1.5 -6, -9 0.37385 -4.5, -9 -3 -5.76628, 
+            -9 -2.25 -1.45, -2.5 -5.12348 -4, 0.5 -5.2 -3.9, -5.5 -5.2 -3.9, 
+            -2.21861 -4.25549 -4.91333, 1.56507 -4.13493 -5.01521, 0.5 -5.2 -3.9, -2.24359 -5.06738 -4.07083, 
+            0.5 -5.2 -3.9, -2.5 -5.12348 -4, -2.0385 -4.49785 -4.69248, -2.21861 -4.25549 -4.91333, 
+            0.5 -5.2 -3.9, -2.05637 -4.90127 -4.26937, -2.0385 -4.49785 -4.69248, 0.5 -5.2 -3.9, 
+            -2.24359 -5.06738 -4.07083, -2.05637 -4.90127 -4.26937, 0.5 -5.2 -3.9, -2.5 -5.12348 -4, 
+            -5.5 -5.2 -3.9, -5.5 -4.20437 -4.95714, -2.93301 3.6 -4.25, -4.5 3.6 -4.25, 
+            -4.5 3.38033 -4.78033, -2.73846 3.14534 -4.9394, -4.5 3.38033 -4.78033, -4.5 2.85 -5, 
+            -3.00004 3.55618 -4.5026, -2.93301 3.6 -4.25, -4.5 3.38033 -4.78033, -2.93222 3.40784 -4.75131, 
+            -3.00004 3.55618 -4.5026, -4.5 3.38033 -4.78033, -2.73846 3.14534 -4.9394, -2.93222 3.40784 -4.75131, 
+            -4.5 3.38033 -4.78033, -2.5 -2.25 -5, -4.5 2.85 -5, -4.5 -2.25 -5, 
+            -2.5 2.85 -5, -4.5 2.85 -5, -2.5 -2.25 -5, -2.73846 3.14534 -4.9394, 
+            -4.5 2.85 -5, -2.5 2.85 -5, -2.5 -2.25 -5, -4.5 -2.25 -5, 
+            -4.5 -2.78033 -4.78033, -2.93357 -2.80993 -4.74897, -4.5 -2.78033 -4.78033, -4.5 -3 -4.25, 
+            -2.73954 -2.54672 -4.93881, -2.5 -2.25 -5, -4.5 -2.78033 -4.78033, -2.93357 -2.80993 -4.74897, 
+            -2.73954 -2.54672 -4.93881, -4.5 -2.78033 -4.78033, -2.75008 -3 -4.06706, -4.5 -3 -4.25, 
+            -2.5 -3 -4, -2.75008 -3 -4.06706, -2.93301 -3 -4.25, -4.5 -3 -4.25, 
+            -2.93357 -2.80993 -4.74897, -4.5 -3 -4.25, -2.93301 -3 -4.25, -2.5 5.12348 -4, 
+            -2.5 3.6 -4, -2.75008 3.6 -4.06706, -2.24414 5.06765 -4.0705, -2.24992 3.6 -4.06706, 
+            -2.5 3.6 -4, -2.24414 5.06765 -4.0705, -2.5 3.6 -4, -2.5 5.12348 -4, 
+            -2.92973 4.92266 -4.24469, -2.75008 3.6 -4.06706, -2.93301 3.6 -4.25, -2.5 5.12348 -4, 
+            -2.75008 3.6 -4.06706, -2.92973 4.92266 -4.24469, -2.92973 4.92266 -4.24469, -2.93301 3.6 -4.25, 
+            -3.00004 3.55618 -4.5026, -2.24992 3.6 -4.06706, -2.06699 3.6 -4.25, 1.5 3.6 -4.25, 
+            -2.06763 3.40806 -4.75107, 1.5 3.6 -4.25, -2.06699 3.6 -4.25, 1.5 3.52081 -4.58542, 
+            1.5 3.6 -4.25, -2.06763 3.40806 -4.75107, 1.5 4.76628 -4.41957, 1.5 3.6 -4.25, 
+            1.5 3.52081 -4.58542, -2.24414 5.06765 -4.0705, -2.06699 3.6 -4.25, -2.24992 3.6 -4.06706, 
+            -2.0385 4.49784 -4.69249, -2.06763 3.40806 -4.75107, -2.06699 3.6 -4.25, -2.05677 4.90193 -4.26861, 
+            -2.06699 3.6 -4.25, -2.24414 5.06765 -4.0705, -2.0385 4.49784 -4.69249, -2.06699 3.6 -4.25, 
+            -2.05677 4.90193 -4.26861, -2.5 -2.25 -5, -0.50012 -0.865883 -5, -1 1.83064e-015 -5, 
+            -1 1.65611e-015 -6, -1 1.83064e-015 -5, -0.50012 -0.865883 -5, -2.5 2.85 -5, 
+            -1 1.83064e-015 -5, -0.50012 0.865883 -5, -0.50012 0.865883 -6, -0.50012 0.865883 -5, 
+            -1 1.83064e-015 -5, -2.5 2.85 -5, -2.5 -2.25 -5, -1 1.83064e-015 -5, 
+            -0.50012 0.865883 -6, -1 1.83064e-015 -5, -1 1.65611e-015 -6, 3 -2.25 -5, 
+            0.50012 -0.865883 -5, -0.50012 -0.865883 -5, -0.50012 -0.865883 -6, -0.50012 -0.865883 -5, 
+            0.50012 -0.865883 -5, -2.5 -2.25 -5, 3 -2.25 -5, -0.50012 -0.865883 -5, 
+            -0.50012 -0.865883 -6, -1 1.65611e-015 -6, -0.50012 -0.865883 -5, 3 -2.25 -5, 
+            1 1.82639e-015 -5, 0.50012 -0.865883 -5, 0.50012 -0.865883 -6, 0.50012 -0.865883 -5, 
+            1 1.82639e-015 -5, -0.50012 -0.865883 -6, 0.50012 -0.865883 -5, 0.50012 -0.865883 -6, 
+            1.60697 2.85 -5, 0.50012 0.865883 -5, 1 1.82639e-015 -5, 1 1.95801e-015 -6, 
+            1 1.82639e-015 -5, 0.50012 0.865883 -5, 3 -2.25 -5, 1.60697 2.85 -5, 
+            1 1.82639e-015 -5, 0.50012 -0.865883 -6, 1 1.82639e-015 -5, 1 1.95801e-015 -6, 
+            -2.5 2.85 -5, -0.50012 0.865883 -5, 0.50012 0.865883 -5, 0.50012 0.865883 -6, 
+            0.50012 0.865883 -5, -0.50012 0.865883 -5, -2.5 2.85 -5, 0.50012 0.865883 -5, 
+            1.60697 2.85 -5, 1 1.95801e-015 -6, 0.50012 0.865883 -5, 0.50012 0.865883 -6, 
+            0.50012 0.865883 -6, -0.50012 0.865883 -5, -0.50012 0.865883 -6, 3 -2.25 -5, 
+            1.97544 2.44869 -5, 1.60697 2.85 -5, 1.78855 2.59726 -5.95854, 1.60697 2.85 -5, 
+            1.97544 2.44869 -5, 1.52409 3.08181 -4.96328, -2.5 2.85 -5, 1.60697 2.85 -5, 
+            1.5 3.3 -5.6, 1.52409 3.08181 -4.96328, 1.60697 2.85 -5, 1.78855 2.59726 -5.95854, 
+            1.5 3.3 -5.6, 1.60697 2.85 -5, 3 -2.25 -5, 2.5 2.3 -5, 
+            1.97544 2.44869 -5, 2.11088 2.37881 -6.04907, 1.97544 2.44869 -5, 2.5 2.3 -5, 
+            2.11088 2.37881 -6.04907, 1.78855 2.59726 -5.95854, 1.97544 2.44869 -5, 3 -2.25 -5, 
+            3 2.3 -5, 2.5 2.3 -5, 3 2.3 -6.07947, 2.5 2.3 -5, 
+            3 2.3 -5, 2.5 2.3 -6.07947, 2.11088 2.37881 -6.04907, 2.5 2.3 -5, 
+            3 2.3 -6.07947, 2.5 2.3 -6.07947, 2.5 2.3 -5, 3 2.3 -6.07947, 
+            3 2.3 -5, 3 -2.25 -5, -2.26102 -2.546 -4.93912, 3 -2.25 -5, 
+            -2.5 -2.25 -5, 3 -2.48747 -4.96139, 3 -2.25 -5, -2.26102 -2.546 -4.93912, 
+            3 1.5 -6, 3 -2.25 -5, 3 -2.48747 -4.96139, 3 1.5 -6, 
+            3 2.3 -6.07947, 3 -2.25 -5, -2.5 -4.15331 -5, -2.5 -2.25 -5, 
+            -2.73954 -2.54672 -4.93881, -2.21861 -4.25549 -4.91333, -2.26102 -2.546 -4.93912, -2.5 -2.25 -5, 
+            -2.21861 -4.25549 -4.91333, -2.5 -2.25 -5, -2.5 -4.15331 -5, -2.90687 4.3933 -4.7905, 
+            -2.73846 3.14534 -4.9394, -2.5 2.85 -5, 1.52409 3.08181 -4.96328, -2.26131 3.14563 -4.93928, 
+            -2.5 2.85 -5, -2.5 4.15331 -5, -2.5 2.85 -5, -2.26131 3.14563 -4.93928, 
+            -2.90687 4.3933 -4.7905, -2.5 2.85 -5, -2.5 4.15331 -5, -2.5 -5.12348 -4, 
+            -2.5 -3 -4, -2.24992 -3 -4.06706, -2.92983 -4.92253 -4.24485, -2.75008 -3 -4.06706, 
+            -2.5 -3 -4, -2.92983 -4.92253 -4.24485, -2.5 -3 -4, -2.5 -5.12348 -4, 
+            -2.24359 -5.06738 -4.07083, -2.24992 -3 -4.06706, -2.06699 -3 -4.25, -2.24359 -5.06738 -4.07083, 
+            -2.5 -5.12348 -4, -2.24992 -3 -4.06706, 2.77036 -2.92964 -4.56712, -2.06699 -3 -4.25, 
+            2.7 -3 -4.25, 2.77036 -2.92964 -4.56712, -2.06703 -2.809 -4.75002, -2.06699 -3 -4.25, 
+            -2.05637 -4.90127 -4.26937, -2.06699 -3 -4.25, -2.06703 -2.809 -4.75002, -2.24359 -5.06738 -4.07083, 
+            -2.06699 -3 -4.25, -2.05637 -4.90127 -4.26937, 3 -2.7 -5.9127, 2.77036 -2.92964 -4.56712, 
+            2.7 -3 -4.25, 1.56507 -4.13493 -5.01521, 3 -2.7 -5.9127, 2.7 -3 -4.25, 
+            -2.92983 -4.92253 -4.24485, -2.93301 -3 -4.25, -2.75008 -3 -4.06706, -2.99909 -4.66345 -4.52794, 
+            -2.93357 -2.80993 -4.74897, -2.93301 -3 -4.25, -2.99909 -4.66345 -4.52794, -2.93301 -3 -4.25, 
+            -2.92983 -4.92253 -4.24485, -2.99909 4.66342 -4.52797, -3.00004 3.55618 -4.5026, -2.93222 3.40784 -4.75131, 
+            -2.92973 4.92266 -4.24469, -3.00004 3.55618 -4.5026, -2.99909 4.66342 -4.52797, -2.90687 4.3933 -4.7905, 
+            -2.93222 3.40784 -4.75131, -2.73846 3.14534 -4.9394, -2.99909 4.66342 -4.52797, -2.93222 3.40784 -4.75131, 
+            -2.90687 4.3933 -4.7905, 1.5 3.3 -4.85, -2.06763 3.40806 -4.75107, -2.26131 3.14563 -4.93928, 
+            -2.21855 4.25553 -4.9133, -2.26131 3.14563 -4.93928, -2.06763 3.40806 -4.75107, 1.52409 3.08181 -4.96328, 
+            1.5 3.3 -4.85, -2.26131 3.14563 -4.93928, -2.21855 4.25553 -4.9133, -2.5 4.15331 -5, 
+            -2.26131 3.14563 -4.93928, 1.5 3.3 -4.85, 1.5 3.52081 -4.58542, -2.06763 3.40806 -4.75107, 
+            -2.21855 4.25553 -4.9133, -2.06763 3.40806 -4.75107, -2.0385 4.49784 -4.69249, 1.5 4.76628 -4.41957, 
+            1.5 3.52081 -4.58542, 1.5 3.3 -4.85, 1.5 3.3 -5.6, 1.5 3.3 -4.85, 
+            1.52409 3.08181 -4.96328, 1.5 4.07606 -5.06311, 1.5 4.76628 -4.41957, 1.5 3.3 -4.85, 
+            1.5 3.3 -5.6, 1.5 4.07606 -5.06311, 1.5 3.3 -4.85, -2.90699 -4.39349 -4.79033, 
+            -2.73954 -2.54672 -4.93881, -2.93357 -2.80993 -4.74897, -2.5 -4.15331 -5, -2.73954 -2.54672 -4.93881, 
+            -2.90699 -4.39349 -4.79033, -2.90699 -4.39349 -4.79033, -2.93357 -2.80993 -4.74897, -2.99909 -4.66345 -4.52794, 
+            3 -2.7 -4.85, -2.26102 -2.546 -4.93912, -2.06703 -2.809 -4.75002, -2.21861 -4.25549 -4.91333, 
+            -2.06703 -2.809 -4.75002, -2.26102 -2.546 -4.93912, 2.77036 -2.92964 -4.56712, 3 -2.7 -4.85, 
+            -2.06703 -2.809 -4.75002, -2.0385 -4.49785 -4.69248, -2.06703 -2.809 -4.75002, -2.21861 -4.25549 -4.91333, 
+            -2.05637 -4.90127 -4.26937, -2.06703 -2.809 -4.75002, -2.0385 -4.49785 -4.69248, 3 -2.7 -4.85, 
+            3 -2.48747 -4.96139, -2.26102 -2.546 -4.93912, 3 -2.5 -6, 3 -2.48747 -4.96139, 
+            3 -2.7 -4.85, 3 1.5 -6, 3 -2.48747 -4.96139, 3 -2.5 -6, 
+            3 -2.7 -5.9127, 3 -2.7 -4.85, 2.77036 -2.92964 -4.56712, 3 -2.60027 -5.95723, 
+            3 -2.5 -6, 3 -2.7 -4.85, 3 -2.7 -5.9127, 3 -2.60027 -5.95723, 
+            3 -2.7 -4.85, -2.92983 -4.92253 -4.24485, -2.5 -5.12348 -4, -5.5 -4.20437 -4.95714, 
+            -2.99909 -4.66345 -4.52794, -2.92983 -4.92253 -4.24485, -5.5 -4.20437 -4.95714, -2.90699 -4.39349 -4.79033, 
+            -2.99909 -4.66345 -4.52794, -5.5 -4.20437 -4.95714, -2.5 -4.15331 -5, -2.90699 -4.39349 -4.79033, 
+            -5.5 -4.20437 -4.95714, -2.5 5.12348 -4, 0.93799 5.32829 -3.72282, 1.5 4.76628 -4.41957, 
+            -2.0385 4.49784 -4.69249, 1.5 4.76628 -4.41957, 1.5 4.07606 -5.06311, -2.24414 5.06765 -4.0705, 
+            -2.5 5.12348 -4, 1.5 4.76628 -4.41957, -2.05677 4.90193 -4.26861, -2.24414 5.06765 -4.0705, 
+            1.5 4.76628 -4.41957, -2.0385 4.49784 -4.69249, -2.05677 4.90193 -4.26861, 1.5 4.76628 -4.41957, 
+            -7.98986 3.94186 -5.16834, 1.5 4.07606 -5.06311, 1.5 3.3 -5.6, -2.5 4.15331 -5, 
+            1.5 4.07606 -5.06311, -7.98986 3.94186 -5.16834, -2.21855 4.25553 -4.9133, 1.5 4.07606 -5.06311, 
+            -2.5 4.15331 -5, -2.21855 4.25553 -4.9133, -2.0385 4.49784 -4.69249, 1.5 4.07606 -5.06311, 
+            -7.98986 3.94186 -5.16834, 1.5 3.3 -5.6, 1.78855 2.59726 -5.95854, -6.6679 2.47368 -6.0109, 
+            1.78855 2.59726 -5.95854, 2.11088 2.37881 -6.04907, -7.98986 3.94186 -5.16834, 1.78855 2.59726 -5.95854, 
+            -6.6679 2.47368 -6.0109, -6.6679 2.47368 -6.0109, 2.11088 2.37881 -6.04907, 2.5 2.3 -6.07947, 
+            3 1.90308 -6.21516, 2.5 2.3 -6.07947, 3 2.3 -6.07947, -7.19688 1.99739 -6.1855, 
+            2.5 2.3 -6.07947, 3 1.90308 -6.21516, -6.6679 2.47368 -6.0109, 2.5 2.3 -6.07947, 
+            -7.19688 1.99739 -6.1855, 3 1.90308 -6.21516, 3 2.3 -6.07947, 3 1.5 -6, 
+            -2.5 -2.5 -6, -0.50012 0.865883 -6, -1 1.65611e-015 -6, -2.5 -2.5 -6, 
+            -1 1.65611e-015 -6, -0.50012 -0.865883 -6, 3 1.5 -6, 0.50012 0.865883 -6, 
+            -0.50012 0.865883 -6, -2.5 -2.5 -6, -2.5 -1.5 -6, -0.50012 0.865883 -6, 
+            -4.82009 -0.0857512 -6, -0.50012 0.865883 -6, -2.5 -1.5 -6, -5.14324 0.48148 -6, 
+            3 1.5 -6, -0.50012 0.865883 -6, -4.82009 -0.0857512 -6, -5.14324 0.48148 -6, 
+            -0.50012 0.865883 -6, 3 1.5 -6, 1 1.95801e-015 -6, 0.50012 0.865883 -6, 
+            3 1.5 -6, 0.50012 -0.865883 -6, 1 1.95801e-015 -6, -2.5 -2.5 -6, 
+            -0.50012 -0.865883 -6, 0.50012 -0.865883 -6, 3 -2.5 -6, -2.5 -2.5 -6, 
+            0.50012 -0.865883 -6, 3 1.5 -6, 3 -2.5 -6, 0.50012 -0.865883 -6, 
+            -9 -1.5 -6, -9 0.37385 -6, -7.74928 1.5 -6, -9 0.37385 -4.5, 
+            -7.74928 1.5 -6, -9 0.37385 -6, -6.65635 -0.0208714 -6, -9 -1.5 -6, 
+            -7.74928 1.5 -6, -5.67505 0.863418 -6, -7.74928 1.5 -6, 3 1.5 -6, 
+            3 1.5 -6.32456, 3 1.5 -6, -7.74928 1.5 -6, -5.67505 0.863418 -6, 
+            -6.49525 0.787461 -6, -7.74928 1.5 -6, -6.65635 -0.0208714 -6, -7.74928 1.5 -6, 
+            -6.49525 0.787461 -6, -7.74928 1.5 -6.32456, 3 1.5 -6.32456, -7.74928 1.5 -6, 
+            -7.41105 1.80455 -4.63137, -7.74928 1.5 -6, -9 0.37385 -4.5, -7.19688 1.99739 -6.1855, 
+            -7.74928 1.5 -6.32456, -7.74928 1.5 -6, -6.6679 2.47368 -6.0109, -7.19688 1.99739 -6.1855, 
+            -7.74928 1.5 -6, -7.41105 1.80455 -4.63137, -6.6679 2.47368 -6.0109, -7.74928 1.5 -6, 
+            -4.98118 -0.894084 -6, -2.5 -1.5 -6, -9 -1.5 -6, -9 -1.5 -6.32456, 
+            -9 -1.5 -6, -2.5 -1.5 -6, -5.80139 -0.970041 -6, -4.98118 -0.894084 -6, 
+            -9 -1.5 -6, -6.3332 -0.588102 -6, -5.80139 -0.970041 -6, -9 -1.5 -6, 
+            -6.65635 -0.0208714 -6, -6.3332 -0.588102 -6, -9 -1.5 -6, -9 -2.26705 -6.09184, 
+            -9 -1.5 -6, -9 -1.5 -6.32456, -2.5 -1.5 -6.32456, -2.5 -1.5 -6, 
+            -2.5 -2.5 -6, -4.98118 -0.894084 -6, -4.82009 -0.0857512 -6, -2.5 -1.5 -6, 
+            -9 -1.5 -6.32456, -2.5 -1.5 -6, -2.5 -1.5 -6.32456, 3 -2.60027 -5.95723, 
+            -2.5 -2.5 -6, 3 -2.5 -6, -2.5 -2.00611 -6.18268, -2.5 -1.5 -6.32456, 
+            -2.5 -2.5 -6, -9 -2.26705 -6.09184, -2.5 -2.00611 -6.18268, -2.5 -2.5 -6, 
+            3 -2.7 -5.9127, -2.5 -2.5 -6, 3 -2.60027 -5.95723, -9 -2.26705 -6.09184, 
+            -2.5 -2.5 -6, 3 -2.7 -5.9127, -5.14324 0.48148 -6, -5.67505 0.863418 -6, 
+            3 1.5 -6, 3 1.5 -6.32456, 3 1.90308 -6.21516, 3 1.5 -6, 
+            -7.41105 1.80455 -4.63137, -6.49525 0.787461 -6, -5.67505 0.863418 -6, -7.90196 1.36253 -4.13845, 
+            -6.65635 -0.0208714 -6, -6.49525 0.787461 -6, -7.90196 1.36253 -4.13845, -6.49525 0.787461 -6, 
+            -7.41105 1.80455 -4.63137, -6.92031 2.24642 -4.13899, -5.67505 0.863418 -6, -5.14324 0.48148 -6, 
+            -6.92031 2.24642 -4.13899, -7.41105 1.80455 -4.63137, -5.67505 0.863418 -6, -6.81653 2.33986 -3.49931, 
+            -5.14324 0.48148 -6, -4.82009 -0.0857512 -6, -6.92031 2.24642 -4.13899, -5.14324 0.48148 -6, 
+            -6.81653 2.33986 -3.49931, -6.92013 2.24658 -2.86155, -4.82009 -0.0857512 -6, -4.98118 -0.894084 -6, 
+            -6.81653 2.33986 -3.49931, -4.82009 -0.0857512 -6, -6.92013 2.24658 -2.86155, -7.41105 1.80455 -2.36863, 
+            -4.98118 -0.894084 -6, -5.80139 -0.970041 -6, -6.92013 2.24658 -2.86155, -4.98118 -0.894084 -6, 
+            -7.41105 1.80455 -2.36863, -7.90179 1.36269 -2.86101, -5.80139 -0.970041 -6, -6.3332 -0.588102 -6, 
+            -7.41105 1.80455 -2.36863, -5.80139 -0.970041 -6, -7.90179 1.36269 -2.86101, -8.00556 1.26925 -3.50069, 
+            -6.3332 -0.588102 -6, -6.65635 -0.0208714 -6, -7.90179 1.36269 -2.86101, -6.3332 -0.588102 -6, 
+            -8.00556 1.26925 -3.50069, -8.00556 1.26925 -3.50069, -6.65635 -0.0208714 -6, -7.90196 1.36253 -4.13845, 
+            -9 -1.5 -6.32456, -2.5 -1.5 -6.32456, -2.5 -2.00611 -6.18268, -9 -2.26705 -6.09184, 
+            -9 -1.5 -6.32456, -2.5 -2.00611 -6.18268, 1.185 1.58656e-015 5.3, 1.2502 2.16492 5.3, 
+            -1.59872e-014 2.5 5.3, -0.592329 1.02628 5.3, -1.59872e-014 2.5 5.3, -2.5 2.5 5.3, 
+            0.592329 1.02628 5.3, 1.185 1.58656e-015 5.3, -1.59872e-014 2.5 5.3, -0.592329 1.02628 5.3, 
+            0.592329 1.02628 5.3, -1.59872e-014 2.5 5.3, 2.16511 -1.2498 5.3, 2.16511 1.2498 5.3, 
+            1.2502 2.16492 5.3, 1.2502 -2.16492 5.3, 2.16511 -1.2498 5.3, 1.2502 2.16492 5.3, 
+            1.185 1.58656e-015 5.3, 1.2502 -2.16492 5.3, 1.2502 2.16492 5.3, 2.16511 -1.2498 5.3, 
+            2.49993 3.5885e-015 5.3, 2.16511 1.2498 5.3, 0.592329 -1.02628 5.3, -1.42109e-014 -2.5 5.3, 
+            1.2502 -2.16492 5.3, 0.592329 -1.02628 5.3, 1.2502 -2.16492 5.3, 1.185 1.58656e-015 5.3, 
+            -1.185 1.88182e-015 5.3, -2.13397 -2.5 5.3, -1.42109e-014 -2.5 5.3, -0.592329 -1.02628 5.3, 
+            -1.185 1.88182e-015 5.3, -1.42109e-014 -2.5 5.3, 0.592329 -1.02628 5.3, -0.592329 -1.02628 5.3, 
+            -1.42109e-014 -2.5 5.3, -2.5 2.5 5.3, -2.63395 -2.63401 5.3, -2.13397 -2.5 5.3, 
+            -1.185 1.88182e-015 5.3, -2.5 2.5 5.3, -2.13397 -2.5 5.3, -2.5 2.5 5.3, 
+            -3.20706 2.79294 5.3, -2.63395 -2.63401 5.3, -4.925 0.562917 5.3, -4.67333 3.76298 5.3, 
+            -5.98216 0.462401 5.3, -5.80437 1.51962 6.31995, -5.98216 0.462401 5.3, -4.67333 3.76298 5.3, 
+            -5.25 2.71311e-015 5.3, -4.925 0.562917 5.3, -5.98216 0.462401 5.3, -5.80437 1.51962 6.31995, 
+            -5.95423 -0.739656 6.45786, -5.98216 0.462401 5.3, -3.5 3.5 5.3, -3.5 3.76298 5.3, 
+            -4.67333 3.76298 5.3, -3.5 4.2975 4.87663, -4.67333 3.76298 5.3, -3.5 3.76298 5.3, 
+            -3.95 2.55115e-015 5.3, -3.5 3.5 5.3, -4.67333 3.76298 5.3, -4.275 0.562917 5.3, 
+            -3.95 2.55115e-015 5.3, -4.67333 3.76298 5.3, -4.925 0.562917 5.3, -4.275 0.562917 5.3, 
+            -4.67333 3.76298 5.3, -7.39217 1.82154 6.23952, -5.80437 1.51962 6.31995, -4.67333 3.76298 5.3, 
+            -7.98986 3.94186 5.16834, -4.67333 3.76298 5.3, -3.5 4.2975 4.87663, -7.39217 1.82154 6.23952, 
+            -4.67333 3.76298 5.3, -6.6679 2.47368 6.0109, -7.98986 3.94186 5.16834, -6.6679 2.47368 6.0109, 
+            -4.67333 3.76298 5.3, -1.185 1.88182e-015 5.3, -0.592329 1.02628 5.3, -2.5 2.5 5.3, 
+            -8.15419 1.13542 6.40006, -5.95423 -0.739656 6.45786, -5.80437 1.51962 6.31995, -8.15419 1.13542 6.40006, 
+            -9 -0.761359 6.45526, -5.95423 -0.739656 6.45786, -8.15419 1.13542 6.40006, -5.80437 1.51962 6.31995, 
+            -7.39217 1.82154 6.23952, -7.19688 1.99739 -6.1855, 3 1.90308 -6.21516, 3 1.5 -6.32456, 
+            -7.19688 1.99739 -6.1855, 3 1.5 -6.32456, -7.74928 1.5 -6.32456, -2.21861 -4.25549 -4.91333, 
+            -2.5 -4.15331 -5, 1.56507 -4.13493 -5.01521, -9 5.06374 4.07536, -9 6.13026 -2.16084, 
+            -9 5.06374 -4.07536, -2.5 5.12348 -4, -9 5.06374 -4.07536, -9 6.13026 -2.16084, 
+            -6.6679 2.47368 6.0109, -9 5.06374 4.07536, -9 5.06374 -4.07536, -7.98986 3.94186 -5.16834, 
+            -6.6679 2.47368 6.0109, -9 5.06374 -4.07536, -2.5 4.15331 -5, -7.98986 3.94186 -5.16834, 
+            -9 5.06374 -4.07536, -2.90687 4.3933 -4.7905, -2.5 4.15331 -5, -9 5.06374 -4.07536, 
+            -2.99909 4.66342 -4.52797, -2.90687 4.3933 -4.7905, -9 5.06374 -4.07536, -2.92973 4.92266 -4.24469, 
+            -2.99909 4.66342 -4.52797, -9 5.06374 -4.07536, -2.5 5.12348 -4, -2.92973 4.92266 -4.24469, 
+            -9 5.06374 -4.07536, -9 5.06374 4.07536, -9 6.5 -0.000343826, -9 6.13026 -2.16084, 
+            -9 5.06374 4.07536, -9 6.13036 2.16057, -9 6.5 -0.000343826, -7.98986 3.94186 5.16834, 
+            -9 5.06374 4.07536, -6.6679 2.47368 6.0109, -9 1.57479 -4.5, -9 0.75 -1.45, 
+            -9 0.75 1.45, -10.9587 0.75 -0.3125, -9 0.75 1.45, -9 0.75 -1.45, 
+            -18.8 0.75 1.45, -9 0.55 1.65, -9 0.75 1.45, -9 1.57479 6.30635, 
+            -9 1.57479 -4.5, -9 0.75 1.45, -14.6073 0.75 0.400096, -15.3 0.75 0.8, 
+            -9 0.75 1.45, -18.8 0.75 1.45, -9 0.75 1.45, -15.3 0.75 0.8, 
+            -14.6073 0.75 0.400096, -9 0.75 1.45, -11.5 0.75 0.625, -11.5 0.75 0.625, 
+            -14.6073 0.75 -0.400096, -14.6073 0.75 0.400096, -10.9587 0.75 0.3125, -11.5 0.75 0.625, 
+            -9 0.75 1.45, -10.9587 0.75 -0.3125, -10.9587 0.75 0.3125, -9 0.75 1.45, 
+            -9 1.57479 -4.5, -9 0.55 -1.65, -9 0.75 -1.45, -18.8 0.55 -1.65, 
+            -9 0.75 -1.45, -9 0.55 -1.65, -11.5 0.75 -0.625, -10.9587 0.75 -0.3125, 
+            -9 0.75 -1.45, -18.8 0.75 -1.45, -11.5 0.75 -0.625, -9 0.75 -1.45, 
+            -18.8 0.55 -1.65, -18.8 0.75 -1.45, -9 0.75 -1.45, -9 1.57479 -4.5, 
+            -9 -2.05 -1.65, -9 0.55 -1.65, -18.8 -2.05 -1.65, -9 0.55 -1.65, 
+            -9 -2.05 -1.65, -18.8 -2.05 -1.65, -18.8 0.55 -1.65, -9 0.55 -1.65, 
+            -9 0.37385 -4.5, -9 -2.25 -1.45, -9 -2.05 -1.65, -18.8 -2.25 -1.45, 
+            -9 -2.05 -1.65, -9 -2.25 -1.45, -9 0.37385 -4.5, -9 -2.05 -1.65, 
+            -9 1.57479 -4.5, -18.8 -2.05 -1.65, -9 -2.05 -1.65, -18.8 -2.25 -1.45, 
+            -10.9587 -2.25 0.3125, -9 -2.25 -1.45, -9 -2.25 1.45, -14.6073 -2.25 -0.400096, 
+            -15.3 -2.25 -0.8, -9 -2.25 -1.45, -18.8 -2.25 -1.45, -9 -2.25 -1.45, 
+            -15.3 -2.25 -0.8, -14.6073 -2.25 -0.400096, -9 -2.25 -1.45, -11.5 -2.25 -0.625, 
+            -11.5 -2.25 -0.625, -14.6073 -2.25 0.400096, -14.6073 -2.25 -0.400096, -10.9587 -2.25 -0.3125, 
+            -11.5 -2.25 -0.625, -9 -2.25 -1.45, -10.9587 -2.25 0.3125, -10.9587 -2.25 -0.3125, 
+            -9 -2.25 -1.45, -18.8 -2.05 1.65, -9 -2.25 1.45, -9 -2.05 1.65, 
+            -10.9587 -2.25 0.3125, -9 -2.25 1.45, -11.5 -2.25 0.625, -18.8 -2.25 1.45, 
+            -11.5 -2.25 0.625, -9 -2.25 1.45, -18.8 -2.05 1.65, -18.8 -2.25 1.45, 
+            -9 -2.25 1.45, -18.8 0.55 1.65, -9 -2.05 1.65, -9 0.55 1.65, 
+            -18.8 0.55 1.65, -18.8 -2.05 1.65, -9 -2.05 1.65, -18.8 0.75 1.45, 
+            -18.8 0.55 1.65, -9 0.55 1.65, -8.66543 1.70321 -4.5, -9 1.57479 -4.5, 
+            -9 1.57479 6.30635, -8.66543 1.70321 -4.5, -9 0.37385 -4.5, -9 1.57479 -4.5, 
+            -8.41177 1.42149 6.34266, -9 1.57479 6.30635, -9 -0.761359 6.45526, -8.66543 1.70321 6.27288, 
+            -8.66543 1.70321 -4.5, -9 1.57479 6.30635, -8.83181 1.63935 6.28988, -9 1.57479 6.30635, 
+            -8.41177 1.42149 6.34266, -8.83181 1.63935 6.28988, -8.66543 1.70321 6.27288, -9 1.57479 6.30635, 
+            -8.41177 1.42149 6.34266, -9 -0.761359 6.45526, -8.15419 1.13542 6.40006, -7.41105 1.80455 -4.63137, 
+            -9 0.37385 -4.5, -8.15419 1.13542 -4.5, -8.66543 1.70321 -4.5, -8.15419 1.13542 -4.5, 
+            -9 0.37385 -4.5, -18.8 -2.25 1.45, -15.9927 -2.25 0.400096, -15.3 -2.25 0.8, 
+            -15.3 0.75 0.8, -15.3 -2.25 0.8, -15.9927 -2.25 0.400096, -12.0413 -2.25 -0.3125, 
+            -15.3 -2.25 0.8, -14.6073 -2.25 0.400096, -14.6073 0.75 0.400096, -14.6073 -2.25 0.400096, 
+            -15.3 -2.25 0.8, -12.0413 -2.25 -0.3125, -12.0413 -2.25 0.3125, -15.3 -2.25 0.8, 
+            -18.8 -2.25 1.45, -15.3 -2.25 0.8, -12.0413 -2.25 0.3125, -14.6073 0.75 0.400096, 
+            -15.3 -2.25 0.8, -15.3 0.75 0.8, -18.8 -2.25 1.45, -15.9927 -2.25 -0.400096, 
+            -15.9927 -2.25 0.400096, -15.9927 0.75 0.400096, -15.9927 -2.25 0.400096, -15.9927 -2.25 -0.400096, 
+            -15.9927 0.75 0.400096, -15.3 0.75 0.8, -15.9927 -2.25 0.400096, -18.8 -2.25 -1.45, 
+            -15.3 -2.25 -0.8, -15.9927 -2.25 -0.400096, -15.9927 0.75 -0.400096, -15.9927 -2.25 -0.400096, 
+            -15.3 -2.25 -0.8, -18.8 -2.25 -1.45, -15.9927 -2.25 -0.400096, -18.8 -2.25 1.45, 
+            -15.9927 0.75 0.400096, -15.9927 -2.25 -0.400096, -15.9927 0.75 -0.400096, -15.3 0.75 -0.8, 
+            -15.3 -2.25 -0.8, -14.6073 -2.25 -0.400096, -15.9927 0.75 -0.400096, -15.3 -2.25 -0.8, 
+            -15.3 0.75 -0.8, -14.6073 0.75 -0.400096, -14.6073 -2.25 -0.400096, -14.6073 -2.25 0.400096, 
+            -15.3 0.75 -0.8, -14.6073 -2.25 -0.400096, -14.6073 0.75 -0.400096, -11.5 -2.25 -0.625, 
+            -12.0413 -2.25 -0.3125, -14.6073 -2.25 0.400096, -14.6073 0.75 -0.400096, -14.6073 -2.25 0.400096, 
+            -14.6073 0.75 0.400096, -18.8 -2.25 1.45, -12.0413 -2.25 0.3125, -11.5 -2.25 0.625, 
+            -11.5 0.75 0.625, -11.5 -2.25 0.625, -12.0413 -2.25 0.3125, -10.9587 0.75 0.3125, 
+            -10.9587 -2.25 0.3125, -11.5 -2.25 0.625, -10.9587 0.75 0.3125, -11.5 -2.25 0.625, 
+            -11.5 0.75 0.625, -12.0413 0.75 0.3125, -12.0413 -2.25 0.3125, -12.0413 -2.25 -0.3125, 
+            -12.0413 0.75 0.3125, -11.5 0.75 0.625, -12.0413 -2.25 0.3125, -12.0413 0.75 -0.3125, 
+            -12.0413 -2.25 -0.3125, -11.5 -2.25 -0.625, -12.0413 0.75 0.3125, -12.0413 -2.25 -0.3125, 
+            -12.0413 0.75 -0.3125, -11.5 0.75 -0.625, -11.5 -2.25 -0.625, -10.9587 -2.25 -0.3125, 
+            -12.0413 0.75 -0.3125, -11.5 -2.25 -0.625, -11.5 0.75 -0.625, -10.9587 0.75 -0.3125, 
+            -10.9587 -2.25 -0.3125, -10.9587 -2.25 0.3125, -11.5 0.75 -0.625, -10.9587 -2.25 -0.3125, 
+            -10.9587 0.75 -0.3125, -10.9587 0.75 -0.3125, -10.9587 -2.25 0.3125, -10.9587 0.75 0.3125, 
+            -18.9 -2.15 1.55, -18.8 -2.25 1.45, -18.8 -2.05 1.65, -18.9 -2.15 -1.55, 
+            -18.8 -2.05 -1.65, -18.8 -2.25 -1.45, -18.9 0.65 1.55, -18.8 0.55 1.65, 
+            -18.8 0.75 1.45, -18.8 0.75 1.45, -15.3 0.75 0.8, -15.9927 0.75 0.400096, 
+            -12.0413 0.75 0.3125, -15.3 0.75 -0.8, -14.6073 0.75 -0.400096, -12.0413 0.75 0.3125, 
+            -14.6073 0.75 -0.400096, -11.5 0.75 0.625, -18.8 0.75 -1.45, -15.9927 0.75 -0.400096, 
+            -15.3 0.75 -0.8, -12.0413 0.75 0.3125, -12.0413 0.75 -0.3125, -15.3 0.75 -0.8, 
+            -18.8 0.75 -1.45, -15.3 0.75 -0.8, -12.0413 0.75 -0.3125, -18.8 0.75 -1.45, 
+            -15.9927 0.75 0.400096, -15.9927 0.75 -0.400096, -18.8 0.75 -1.45, -18.8 0.75 1.45, 
+            -15.9927 0.75 0.400096, -18.8 0.75 -1.45, -12.0413 0.75 -0.3125, -11.5 0.75 -0.625, 
+            -18.9 0.65 -1.55, -18.8 0.75 -1.45, -18.8 0.55 -1.65, -6.81653 2.33986 -3.49931, 
+            -6.6679 2.47368 6.0109, -6.6679 2.47368 -6.0109, -7.98986 3.94186 -5.16834, -6.6679 2.47368 -6.0109, 
+            -6.6679 2.47368 6.0109, -6.92031 2.24642 -4.13899, -6.6679 2.47368 -6.0109, -7.41105 1.80455 -4.63137, 
+            -6.92031 2.24642 -4.13899, -6.81653 2.33986 -3.49931, -6.6679 2.47368 -6.0109, -8.15419 1.13542 6.40006, 
+            -7.39217 1.82154 6.23952, -6.6679 2.47368 6.0109, -7.41105 1.80455 1.09994, -8.15419 1.13542 6.40006, 
+            -6.6679 2.47368 6.0109, -7.20095 1.99372 0.982922, -7.41105 1.80455 1.09994, -6.6679 2.47368 6.0109, 
+            -7.11379 2.0722 0.7, -7.20095 1.99372 0.982922, -6.6679 2.47368 6.0109, -6.81653 2.33986 -3.49931, 
+            -7.11379 2.0722 0.7, -6.6679 2.47368 6.0109, -8.00556 1.26925 -3.50069, -8.15419 1.13542 -4.5, 
+            -8.15419 1.13542 6.40006, -8.41177 1.42149 6.34266, -8.15419 1.13542 6.40006, -8.15419 1.13542 -4.5, 
+            -7.62114 1.61538 0.982922, -7.7083 1.5369 0.7, -8.15419 1.13542 6.40006, -7.90179 1.36269 -2.86101, 
+            -8.15419 1.13542 6.40006, -7.7083 1.5369 0.7, -7.41105 1.80455 1.09994, -7.62114 1.61538 0.982922, 
+            -8.15419 1.13542 6.40006, -7.90179 1.36269 -2.86101, -8.00556 1.26925 -3.50069, -8.15419 1.13542 6.40006, 
+            -7.90196 1.36253 -4.13845, -7.41105 1.80455 -4.63137, -8.15419 1.13542 -4.5, -8.00556 1.26925 -3.50069, 
+            -7.90196 1.36253 -4.13845, -8.15419 1.13542 -4.5, -8.66543 1.70321 6.27288, -8.15419 1.13542 -4.5, 
+            -8.66543 1.70321 -4.5, -8.66543 1.70321 6.27288, -8.41177 1.42149 6.34266, -8.15419 1.13542 -4.5, 
+            -7.41105 1.80455 -2.36863, -7.7083 1.5369 0.7, -7.62114 1.61538 0.417078, -7.41105 1.80455 -2.36863, 
+            -7.90179 1.36269 -2.86101, -7.7083 1.5369 0.7, -6.81653 2.33986 -3.49931, -7.20095 1.99372 0.417078, 
+            -7.11379 2.0722 0.7, -6.81653 2.33986 -3.49931, -7.41105 1.80455 0.300062, -7.20095 1.99372 0.417078, 
+            -7.41105 1.80455 -2.36863, -7.62114 1.61538 0.417078, -7.41105 1.80455 0.300062, -6.92013 2.24658 -2.86155, 
+            -7.41105 1.80455 -2.36863, -7.41105 1.80455 0.300062, -6.81653 2.33986 -3.49931, -6.92013 2.24658 -2.86155, 
+            -7.41105 1.80455 0.300062, -8.83181 1.63935 6.28988, -8.41177 1.42149 6.34266, -8.66543 1.70321 6.27288, 
+            -11.9249 3.2 -0.736147, -12.2 3.2 -1.8, -9.5 3.2 -1.8, -9.5 5.1 -1.8, 
+            -9.5 3.2 -1.8, -12.2 3.2 -1.8, -11.0751 3.2 0.736147, -9.5 3.2 -1.8, 
+            -9.5 3.2 1.8, -9.5 5.1 1.8, -9.5 3.2 1.8, -9.5 3.2 -1.8, 
+            -11.0751 3.2 -0.736147, -11.9249 3.2 -0.736147, -9.5 3.2 -1.8, -10.65 3.2 3.55271e-015, 
+            -11.0751 3.2 -0.736147, -9.5 3.2 -1.8, -11.0751 3.2 0.736147, -10.65 3.2 3.55271e-015, 
+            -9.5 3.2 -1.8, -9.5 6.5 -0.899848, -9.5 3.2 -1.8, -9.5 5.1 -1.8, 
+            -9.5 5.1 -1.8, -9.5 6.5 -1.79944, -9.5 6.5 -0.899848, -9.5 6.5 3.64557e-015, 
+            -9.5 3.2 -1.8, -9.5 6.5 -0.899848, -9.5 6.5 0.906991, -9.5 3.2 -1.8, 
+            -9.5 6.5 3.64557e-015, -9.5 5.1 1.8, -9.5 3.2 -1.8, -9.5 6.5 0.906991, 
+            -12.35 3.2 3.55271e-015, -12.2 3.2 -2.3, -12.2 3.2 -1.8, -12.2 5.1 -2.3, 
+            -12.2 3.2 -1.8, -12.2 3.2 -2.3, -11.9249 3.2 -0.736147, -12.35 3.2 3.55271e-015, 
+            -12.2 3.2 -1.8, -12.2 5.1 -1.8, -9.5 5.1 -1.8, -12.2 3.2 -1.8, 
+            -12.2 5.1 -1.8, -12.2 3.2 -1.8, -12.2 5.1 -2.3, -12.7343 3.2 -1.84437, 
+            -13 3.2 -3.1, -12.2 3.2 -2.3, -13 5.1 -3.1, -12.2 3.2 -2.3, 
+            -13 3.2 -3.1, -12.5 3.2 -1.27868, -12.2 3.2 -2.3, -12.35 3.2 3.55271e-015, 
+            -12.5609 3.2 -1.58483, -12.7343 3.2 -1.84437, -12.2 3.2 -2.3, -12.5 3.2 -1.27868, 
+            -12.5609 3.2 -1.58483, -12.2 3.2 -2.3, -12.2 5.1 -2.3, -12.2 3.2 -2.3, 
+            -13 5.1 -3.1, -16.1436 3.2 -5.25367, -13 3.2 -6.94995, -13 3.2 -3.1, 
+            -13 5.1 -3.1, -13 3.2 -3.1, -13 3.2 -6.94995, -12.7343 3.2 -1.84437, 
+            -16.1436 3.2 -5.25367, -13 3.2 -3.1, -16.1436 3.2 -5.25367, -15.3648 3.2 -6.82789, 
+            -13 3.2 -6.94995, -13.9985 4.90476 -6.24619, -13 3.2 -6.94995, -15.3648 3.2 -6.82789, 
+            -13 4.21513 -6.69929, -13 3.2 -6.94995, -13.9985 4.90476 -6.24619, -13 5.1 -6.1919, 
+            -13 3.2 -6.94995, -13 4.21513 -6.69929, -13 5.1 -3.1, -13 3.2 -6.94995, 
+            -13 5.1 -6.1919, -16.8072 3.2 -5.48197, -17.4347 3.2 -6.60909, -15.3648 3.2 -6.82789, 
+            -18.3999 4.61572 -5.70225, -15.3648 3.2 -6.82789, -17.4347 3.2 -6.60909, -16.4491 3.2 -5.44447, 
+            -15.3648 3.2 -6.82789, -16.1436 3.2 -5.25367, -16.4491 3.2 -5.44447, -16.8072 3.2 -5.48197, 
+            -15.3648 3.2 -6.82789, -18.3999 4.61572 -5.70225, -13.9985 4.90476 -6.24619, -15.3648 3.2 -6.82789, 
+            -19.5934 3.2 -4.90563, -19.9702 3.2 -6.04495, -17.4347 3.2 -6.60909, -18.3999 4.61572 -5.70225, 
+            -17.4347 3.2 -6.60909, -19.9702 3.2 -6.04495, -18.3152 3.2 -5.24008, -19.5934 3.2 -4.90563, 
+            -17.4347 3.2 -6.60909, -16.8072 3.2 -5.48197, -18.3152 3.2 -5.24008, -17.4347 3.2 -6.60909, 
+            -21.2863 3.2 -4.08191, -21.2002 3.2 -5.5343, -19.9702 3.2 -6.04495, -18.3999 4.61572 -5.70225, 
+            -19.9702 3.2 -6.04495, -21.2002 3.2 -5.5343, -19.5934 3.2 -4.90563, -21.2863 3.2 -4.08191, 
+            -19.9702 3.2 -6.04495, -21.2863 3.2 -4.08191, -22.3181 3.2 -4.80239, -21.2002 3.2 -5.5343, 
+            -18.9042 5.52318 -4.75325, -21.2002 3.2 -5.5343, -22.3181 3.2 -4.80239, -18.3999 4.61572 -5.70225, 
+            -21.2002 3.2 -5.5343, -17.1977 5.5516 -5.15399, -18.9042 5.52318 -4.75325, -17.1977 5.5516 -5.15399, 
+            -21.2002 3.2 -5.5343, -23.1636 3.2 3.55271e-015, -23.2412 3.2 -3.8302, -22.3181 3.2 -4.80239, 
+            -20.714 5.4979 -4.11667, -22.3181 3.2 -4.80239, -23.2412 3.2 -3.8302, -22.3283 3.2 -3.04471, 
+            -23.1636 3.2 3.55271e-015, -22.3181 3.2 -4.80239, -21.2863 3.2 -4.08191, -22.3283 3.2 -3.04471, 
+            -22.3181 3.2 -4.80239, -20.714 5.4979 -4.11667, -18.9042 5.52318 -4.75325, -22.3181 3.2 -4.80239, 
+            -23.247 3.2 3.82226, -23.8949 3.2 -2.65475, -23.2412 3.2 -3.8302, -22.2711 5.47262 -3.15307, 
+            -23.2412 3.2 -3.8302, -23.8949 3.2 -2.65475, -23.1636 3.2 3.55271e-015, -23.247 3.2 3.82226, 
+            -23.2412 3.2 -3.8302, -22.2711 5.47262 -3.15307, -20.714 5.4979 -4.11667, -23.2412 3.2 -3.8302, 
+            -23.8987 3.2 2.64532, -24.2576 3.2 -1.35534, -23.8949 3.2 -2.65475, -23.1959 5.44734 -1.84673, 
+            -23.8949 3.2 -2.65475, -24.2576 3.2 -1.35534, -23.247 3.2 3.82226, -23.8987 3.2 2.64532, 
+            -23.8949 3.2 -2.65475, -23.1959 5.44734 -1.84673, -22.2711 5.47262 -3.15307, -23.8949 3.2 -2.65475, 
+            -24.2588 3.2 1.34829, -24.3636 3.2 1.73891e-006, -24.2576 3.2 -1.35534, -23.1959 5.44734 -1.84673, 
+            -24.2576 3.2 -1.35534, -24.3636 3.2 1.73891e-006, -23.8987 3.2 2.64532, -24.2588 3.2 1.34829, 
+            -24.2576 3.2 -1.35534, -23.5028 5.42275 1.37374e-013, -24.3636 3.2 1.73891e-006, -24.2588 3.2 1.34829, 
+            -23.5028 5.42275 1.37374e-013, -23.1959 5.44734 -1.84673, -24.3636 3.2 1.73891e-006, -23.1959 5.44734 1.84673, 
+            -24.2588 3.2 1.34829, -23.8987 3.2 2.64532, -23.1959 5.44734 1.84673, -23.5028 5.42275 1.37374e-013, 
+            -24.2588 3.2 1.34829, -22.2711 5.47262 3.15307, -23.8987 3.2 2.64532, -23.247 3.2 3.82226, 
+            -22.2711 5.47262 3.15307, -23.1959 5.44734 1.84673, -23.8987 3.2 2.64532, -22.9098 3.2 1.84837, 
+            -22.3236 3.2 4.79781, -23.247 3.2 3.82226, -20.714 5.4979 4.11667, -23.247 3.2 3.82226, 
+            -22.3236 3.2 4.79781, -23.1636 3.2 3.55271e-015, -22.9098 3.2 1.84837, -23.247 3.2 3.82226, 
+            -20.714 5.4979 4.11667, -22.2711 5.47262 3.15307, -23.247 3.2 3.82226, -22.2522 3.2 3.14971, 
+            -21.2037 3.2 5.53248, -22.3236 3.2 4.79781, -18.9042 5.52318 4.75325, -22.3236 3.2 4.79781, 
+            -21.2037 3.2 5.53248, -22.9098 3.2 1.84837, -22.2522 3.2 3.14971, -22.3236 3.2 4.79781, 
+            -18.9042 5.52318 4.75325, -20.714 5.4979 4.11667, -22.3236 3.2 4.79781, -19.5934 3.2 4.90563, 
+            -19.9702 3.2 6.04495, -21.2037 3.2 5.53248, -18.9042 5.52318 4.75325, -21.2037 3.2 5.53248, 
+            -19.9702 3.2 6.04495, -22.2522 3.2 3.14971, -19.5934 3.2 4.90563, -21.2037 3.2 5.53248, 
+            -16.8693 3.2 5.47436, -16.5819 3.2 6.71645, -19.9702 3.2 6.04495, -13.9985 4.90476 6.24619, 
+            -19.9702 3.2 6.04495, -16.5819 3.2 6.71645, -19.5934 3.2 4.90563, -16.8693 3.2 5.47436, 
+            -19.9702 3.2 6.04495, -18.399 4.61645 5.70195, -19.9702 3.2 6.04495, -13.9985 4.90476 6.24619, 
+            -18.9042 5.52318 4.75325, -19.9702 3.2 6.04495, -18.399 4.61645 5.70195, -13.3301 3.2 5.73769, 
+            -15.5183 3.2 6.81607, -16.5819 3.2 6.71645, -13.9985 4.90476 6.24619, -16.5819 3.2 6.71645, 
+            -15.5183 3.2 6.81607, -16.8693 3.2 5.47436, -13.3301 3.2 5.73769, -16.5819 3.2 6.71645, 
+            -12.7451 3.2 5.51443, -9.5 3.2 7, -15.5183 3.2 6.81607, -9.5 5.65311 5.90731, 
+            -15.5183 3.2 6.81607, -9.5 3.2 7, -13.3301 3.2 5.73769, -12.7451 3.2 5.51443, 
+            -15.5183 3.2 6.81607, -9.5 5.65311 5.90731, -13.9985 4.90476 6.24619, -15.5183 3.2 6.81607, 
+            -12.7451 3.2 5.51443, -9.5 3.2 3.8, -9.5 3.2 7, -9.5 5.65311 5.90731, 
+            -9.5 3.2 7, -9.5 3.2 3.8, -12.5 3.2 4.93825, -12.2 3.2 3.8, 
+            -9.5 3.2 3.8, -9.5 5.1 3.8, -9.5 3.2 3.8, -12.2 3.2 3.8, 
+            -12.7451 3.2 5.51443, -12.5 3.2 4.93825, -9.5 3.2 3.8, -9.5 5.1 3.8, 
+            -9.5 5.65311 5.90731, -9.5 3.2 3.8, -12.5 3.2 4.93825, -12.2 3.2 1.8, 
+            -12.2 3.2 3.8, -12.2 5.1 3.8, -12.2 3.2 3.8, -12.2 3.2 1.8, 
+            -12.2 5.1 3.8, -9.5 5.1 3.8, -12.2 3.2 3.8, -11.0751 3.2 0.736147, 
+            -9.5 3.2 1.8, -12.2 3.2 1.8, -12.2 5.1 1.8, -12.2 3.2 1.8, 
+            -9.5 3.2 1.8, -11.9249 3.2 0.736147, -12.2 3.2 1.8, -12.35 3.2 3.55271e-015, 
+            -12.5 3.2 4.93825, -12.35 3.2 3.55271e-015, -12.2 3.2 1.8, -11.9249 3.2 0.736147, 
+            -11.0751 3.2 0.736147, -12.2 3.2 1.8, -12.2 5.1 3.8, -12.2 3.2 1.8, 
+            -12.2 5.1 1.8, -12.2 5.1 1.8, -9.5 3.2 1.8, -9.5 5.1 1.8, 
+            -12.35 5.2 3.71308e-015, -12.35 3.2 3.55271e-015, -11.9249 3.2 -0.736147, -11.9249 5.2 0.736147, 
+            -11.9249 3.2 0.736147, -12.35 3.2 3.55271e-015, -12.5 3.2 4.93825, -12.5 3.2 -1.27868, 
+            -12.35 3.2 3.55271e-015, -11.9249 5.2 0.736147, -12.35 3.2 3.55271e-015, -12.35 5.2 3.71308e-015, 
+            -11.9249 5.2 -0.736147, -11.9249 3.2 -0.736147, -11.0751 3.2 -0.736147, -11.9249 5.2 -0.736147, 
+            -12.35 5.2 3.71308e-015, -11.9249 3.2 -0.736147, -11.0751 5.2 -0.736147, -11.0751 3.2 -0.736147, 
+            -10.65 3.2 3.55271e-015, -11.0751 5.2 -0.736147, -11.9249 5.2 -0.736147, -11.0751 3.2 -0.736147, 
+            -10.65 5.2 3.5049e-015, -10.65 3.2 3.55271e-015, -11.0751 3.2 0.736147, -10.65 5.2 3.5049e-015, 
+            -11.0751 5.2 -0.736147, -10.65 3.2 3.55271e-015, -11.0751 5.2 0.736147, -11.0751 3.2 0.736147, 
+            -11.9249 3.2 0.736147, -11.0751 5.2 0.736147, -10.65 5.2 3.5049e-015, -11.0751 3.2 0.736147, 
+            -11.9249 5.2 0.736147, -11.0751 5.2 0.736147, -11.9249 3.2 0.736147, -16.1436 4.2 -5.25367, 
+            -16.1436 3.2 -5.25367, -12.7343 3.2 -1.84437, -16.4491 4.2 -5.44447, -16.4491 3.2 -5.44447, 
+            -16.1436 3.2 -5.25367, -16.4491 4.2 -5.44447, -16.1436 3.2 -5.25367, -16.1436 4.2 -5.25367, 
+            -12.7343 4.2 -1.84437, -12.7343 3.2 -1.84437, -12.5609 3.2 -1.58483, -16.1436 4.2 -5.25367, 
+            -12.7343 3.2 -1.84437, -12.7343 4.2 -1.84437, -12.5609 4.2 -1.58483, -12.5609 3.2 -1.58483, 
+            -12.5 3.2 -1.27868, -12.5609 4.2 -1.58483, -12.7343 4.2 -1.84437, -12.5609 3.2 -1.58483, 
+            -12.5 4.2 -1.27868, -12.5 3.2 -1.27868, -12.5 3.2 4.93825, -12.5609 4.2 -1.58483, 
+            -12.5 3.2 -1.27868, -12.5 4.2 -1.27868, -12.5 4.2 4.93825, -12.5 3.2 4.93825, 
+            -12.7451 3.2 5.51443, -12.5 4.2 -1.27868, -12.5 3.2 4.93825, -12.5 4.2 4.93825, 
+            -12.745 4.2 5.51447, -12.7451 3.2 5.51443, -13.3301 3.2 5.73769, -12.745 4.2 5.51447, 
+            -12.5 4.2 4.93825, -12.7451 3.2 5.51443, -13.3301 4.2 5.73769, -13.3301 3.2 5.73769, 
+            -16.8693 3.2 5.47436, -12.745 4.2 5.51447, -13.3301 3.2 5.73769, -13.3301 4.2 5.73769, 
+            -17.5693 4.2 5.37518, -16.8693 3.2 5.47436, -19.5934 3.2 4.90563, -15.7723 4.2 5.5906, 
+            -13.3301 4.2 5.73769, -16.8693 3.2 5.47436, -17.5693 4.2 5.37518, -15.7723 4.2 5.5906, 
+            -16.8693 3.2 5.47436, -21.198 4.2 4.14288, -19.5934 3.2 4.90563, -22.2522 3.2 3.14971, 
+            -17.5693 4.2 5.37518, -19.5934 3.2 4.90563, -19.5933 4.2 4.90567, -21.198 4.2 4.14288, 
+            -19.5933 4.2 4.90567, -19.5934 3.2 4.90563, -22.2929 4.2 3.09411, -22.2522 3.2 3.14971, 
+            -22.9098 3.2 1.84837, -22.2929 4.2 3.09411, -21.198 4.2 4.14288, -22.2522 3.2 3.14971, 
+            -22.2929 4.2 3.09411, -22.9098 3.2 1.84837, -23.1636 3.2 3.55271e-015, -23.1636 4.2 3.58085e-015, 
+            -23.1636 3.2 3.55271e-015, -22.3283 3.2 -3.04471, -22.2929 4.2 3.09411, -23.1636 3.2 3.55271e-015, 
+            -23.1636 4.2 3.58085e-015, -22.3118 4.2 -3.06768, -22.3283 3.2 -3.04471, -21.2863 3.2 -4.08191, 
+            -22.3118 4.2 -3.06768, -23.1636 4.2 3.58085e-015, -22.3283 3.2 -3.04471, -21.2222 4.2 -4.12638, 
+            -21.2863 3.2 -4.08191, -19.5934 3.2 -4.90563, -21.2222 4.2 -4.12638, -22.3118 4.2 -3.06768, 
+            -21.2863 3.2 -4.08191, -19.5933 4.2 -4.90566, -19.5934 3.2 -4.90563, -18.3152 3.2 -5.24008, 
+            -21.2222 4.2 -4.12638, -19.5934 3.2 -4.90563, -19.5933 4.2 -4.90566, -18.3474 4.2 -5.23345, 
+            -18.3152 3.2 -5.24008, -16.8072 3.2 -5.48197, -18.3474 4.2 -5.23345, -19.5933 4.2 -4.90566, 
+            -18.3152 3.2 -5.24008, -16.8072 4.2 -5.48197, -16.8072 3.2 -5.48197, -16.4491 3.2 -5.44447, 
+            -18.3474 4.2 -5.23345, -16.8072 3.2 -5.48197, -16.8072 4.2 -5.48197, -16.4491 4.2 -5.44447, 
+            -16.8072 4.2 -5.48197, -16.4491 3.2 -5.44447, -9.5 6.5 -3.7, -9.5 5.1 -6.39814, 
+            -9.5 6.20437 -5.06434, -12.9093 6.11593 -5.00207, -9.5 6.20437 -5.06434, -9.5 5.1 -6.39814, 
+            -9.5 5.1 -1.8, -9.5 5.1 -6.39814, -9.5 6.5 -3.7, -13 5.1 -6.1919, 
+            -12.9093 6.11593 -5.00207, -9.5 5.1 -6.39814, -11.2527 5.1 -6.31145, -13 5.1 -6.1919, 
+            -9.5 5.1 -6.39814, -9.5 5.1 -1.8, -11.2527 5.1 -6.31145, -9.5 5.1 -6.39814, 
+            -11.9372 6.5 -3.67687, -9.5 6.5 -3.7, -9.5 6.20437 -5.06434, -12.9093 6.11593 -5.00207, 
+            -11.9372 6.5 -3.67687, -9.5 6.20437 -5.06434, -12.7403 6.5 -2.52605, -9.5 6.5 -3.7, 
+            -11.9372 6.5 -3.67687, -9.5 6.5 -1.79944, -9.5 6.5 -3.7, -12.7403 6.5 -2.52605, 
+            -9.5 5.1 -1.8, -9.5 6.5 -3.7, -9.5 6.5 -1.79944, -12.1966 6.5 -3.67114, 
+            -11.9372 6.5 -3.67687, -12.9093 6.11593 -5.00207, -12.7403 6.5 -2.52605, -11.9372 6.5 -3.67687, 
+            -12.1966 6.5 -3.67114, -13 5.1 -6.1919, -13.9985 4.90476 -6.24619, -12.9093 6.11593 -5.00207, 
+            -16.9739 5.699 -5.02901, -12.9093 6.11593 -5.00207, -13.9985 4.90476 -6.24619, -16.9739 5.699 -5.02901, 
+            -14.6021 6.5 -3.5725, -12.9093 6.11593 -5.00207, -12.1966 6.5 -3.67114, -12.9093 6.11593 -5.00207, 
+            -14.6021 6.5 -3.5725, -13 5.1 -6.1919, -13 4.21513 -6.69929, -13.9985 4.90476 -6.24619, 
+            -17.1977 5.5516 -5.15399, -16.9739 5.699 -5.02901, -13.9985 4.90476 -6.24619, -18.3999 4.61572 -5.70225, 
+            -17.1977 5.5516 -5.15399, -13.9985 4.90476 -6.24619, -9.5 5.1 -1.8, -13 5.1 -6.1919, 
+            -11.2527 5.1 -6.31145, -13 5.1 -3.1, -13 5.1 -6.1919, -9.5 5.1 -1.8, 
+            -18.9042 5.52318 -4.75325, -14.6021 6.5 -3.5725, -16.9739 5.699 -5.02901, -12.7403 6.5 -2.52605, 
+            -12.1966 6.5 -3.67114, -14.6021 6.5 -3.5725, -16.8078 6.5 -3.36472, -12.7403 6.5 -2.52605, 
+            -14.6021 6.5 -3.5725, -16.8078 6.5 -3.36472, -14.6021 6.5 -3.5725, -18.9042 5.52318 -4.75325, 
+            -18.9042 5.52318 -4.75325, -16.9739 5.699 -5.02901, -17.1977 5.5516 -5.15399, -9.5 6.5 -1.79944, 
+            -11.536 6.5 -1.81731, -11.245 6.5 -1.63018, -12.8292 6.5 -1.83121, -11.245 6.5 -1.63018, 
+            -11.536 6.5 -1.81731, -10.5559 6.5 -1.35321, -9.5 6.5 -1.79944, -11.245 6.5 -1.63018, 
+            -10.675 5.2 -1.42894, -10.5559 6.5 -1.35321, -11.245 6.5 -1.63018, -12.0916 6.5 -1.54028, 
+            -11.245 6.5 -1.63018, -12.8292 6.5 -1.83121, -10.675 5.2 -1.42894, -11.245 6.5 -1.63018, 
+            -12.0916 6.5 -1.54028, -9.5 6.5 -1.79944, -12.7403 6.5 -2.52605, -11.536 6.5 -1.81731, 
+            -16.8078 6.5 -3.36472, -11.536 6.5 -1.81731, -12.7403 6.5 -2.52605, -12.8292 6.5 -1.83121, 
+            -11.536 6.5 -1.81731, -16.8078 6.5 -3.36472, -10.5559 6.5 -1.35321, -9.5 6.5 -0.899848, 
+            -9.5 6.5 -1.79944, -9.69824 6.5 -0.297746, -9.5 6.5 3.64557e-015, -9.5 6.5 -0.899848, 
+            -9.96695 6.5 -0.610119, -9.69824 6.5 -0.297746, -9.5 6.5 -0.899848, -10.5559 6.5 -1.35321, 
+            -9.96695 6.5 -0.610119, -9.5 6.5 -0.899848, -9.86886 6.5 -0.248738, -9.5 6.5 3.64557e-015, 
+            -9.69824 6.5 -0.297746, -9.67452 6.5 3.65183e-015, -9.5 6.5 3.64557e-015, -9.85247 6.5 -0.0901996, 
+            -9.85231 6.5 0.0873223, -9.5 6.5 3.64557e-015, -9.67452 6.5 3.65183e-015, -9.85247 6.5 -0.0901996, 
+            -9.85 6.5 3.79558e-015, -9.67452 6.5 3.65183e-015, -9.85822 6.5 -0.164524, -9.85247 6.5 -0.0901996, 
+            -9.5 6.5 3.64557e-015, -9.86886 6.5 -0.248738, -9.85822 6.5 -0.164524, -9.5 6.5 3.64557e-015, 
+            -9.5 6.5 0.906991, -9.5 6.5 3.64557e-015, -9.96695 6.5 0.610119, -9.86863 6.5 0.247279, 
+            -9.96695 6.5 0.610119, -9.5 6.5 3.64557e-015, -9.85797 6.5 0.162019, -9.86863 6.5 0.247279, 
+            -9.5 6.5 3.64557e-015, -9.85231 6.5 0.0873223, -9.85797 6.5 0.162019, -9.5 6.5 3.64557e-015, 
+            -9.86886 6.5 -0.248738, -9.69824 6.5 -0.297746, -9.96695 6.5 -0.610119, -9.85 5.2 3.759e-015, 
+            -9.96695 6.5 -0.610119, -10.5559 6.5 -1.35321, -9.85 5.2 3.759e-015, -9.86886 6.5 -0.248738, 
+            -9.96695 6.5 -0.610119, -10.675 5.2 -1.42894, -9.85 5.2 3.759e-015, -10.5559 6.5 -1.35321, 
+            -16.8078 6.5 -3.36472, -18.9042 5.52318 -4.75325, -20.714 5.4979 -4.11667, -18.5095 6.5 -3.03818, 
+            -20.714 5.4979 -4.11667, -22.2711 5.47262 -3.15307, -18.5095 6.5 -3.03818, -16.8078 6.5 -3.36472, 
+            -20.714 5.4979 -4.11667, -19.7551 6.5 -2.56504, -22.2711 5.47262 -3.15307, -23.1959 5.44734 -1.84673, 
+            -19.7551 6.5 -2.56504, -18.5095 6.5 -3.03818, -22.2711 5.47262 -3.15307, -20.5394 6.5 -1.93267, 
+            -23.1959 5.44734 -1.84673, -23.5028 5.42275 1.37374e-013, -20.5394 6.5 -1.93267, -19.7551 6.5 -2.56504, 
+            -23.1959 5.44734 -1.84673, -23.3974 5.53313 2.16697e-013, -20.5394 6.5 -1.93267, -23.5028 5.42275 1.37374e-013, 
+            -23.1959 5.44734 1.84673, -23.3974 5.53313 2.16697e-013, -23.5028 5.42275 1.37374e-013, -12.8292 6.5 -1.83121, 
+            -16.8078 6.5 -3.36472, -18.5095 6.5 -3.03818, -14.365 6.5 -1.68397, -18.5095 6.5 -3.03818, 
+            -19.7551 6.5 -2.56504, -14.365 6.5 -1.68397, -12.8292 6.5 -1.83121, -18.5095 6.5 -3.03818, 
+            -14.365 6.5 -1.68397, -19.7551 6.5 -2.56504, -20.5394 6.5 -1.93267, -23.3974 5.53313 2.16697e-013, 
+            -21.0636 6.5 -2.99563e-011, -20.5394 6.5 -1.93267, -15.4358 6.5 -1.20209, -20.5394 6.5 -1.93267, 
+            -21.0636 6.5 -2.99563e-011, -15.4358 6.5 -1.20209, -14.365 6.5 -1.68397, -20.5394 6.5 -1.93267, 
+            -23.1959 5.44734 1.84673, -21.0636 6.5 -2.99563e-011, -23.3974 5.53313 2.16697e-013, -17.4238 6.5 3.74316e-015, 
+            -15.4358 6.5 -1.20209, -21.0636 6.5 -2.99563e-011, -20.5392 6.5 1.93287, -17.4238 6.5 3.74316e-015, 
+            -21.0636 6.5 -2.99563e-011, -20.5392 6.5 1.93287, -21.0636 6.5 -2.99563e-011, -23.1959 5.44734 1.84673, 
+            -9.85231 6.5 0.0873223, -9.67452 6.5 3.65183e-015, -9.85 6.5 3.79558e-015, -9.85 5.2 3.759e-015, 
+            -9.85 6.5 3.79558e-015, -9.85247 6.5 -0.0901996, -10.675 5.2 1.42894, -9.85231 6.5 0.0873223, 
+            -9.85 6.5 3.79558e-015, -10.675 5.2 1.42894, -9.85 6.5 3.79558e-015, -9.85 5.2 3.759e-015, 
+            -9.85 5.2 3.759e-015, -9.85247 6.5 -0.0901996, -9.85822 6.5 -0.164524, -9.85 5.2 3.759e-015, 
+            -9.85822 6.5 -0.164524, -9.86886 6.5 -0.248738, -12.0916 6.5 -1.54028, -12.8292 6.5 -1.83121, 
+            -14.365 6.5 -1.68397, -12.7607 6.5 -1.06454, -14.365 6.5 -1.68397, -15.4358 6.5 -1.20209, 
+            -12.7607 6.5 -1.06454, -12.0916 6.5 -1.54028, -14.365 6.5 -1.68397, -17.4238 6.5 3.74316e-015, 
+            -15.7027 6.5 3.75136e-015, -15.4358 6.5 -1.20209, -13.0654 6.5 -0.521645, -15.4358 6.5 -1.20209, 
+            -15.7027 6.5 3.75136e-015, -13.0654 6.5 -0.521645, -12.7607 6.5 -1.06454, -15.4358 6.5 -1.20209, 
+            -20.5392 6.5 1.93287, -15.7027 6.5 3.75136e-015, -17.4238 6.5 3.74316e-015, -13.0654 6.5 -0.521645, 
+            -15.7027 6.5 3.75136e-015, -13.15 6.5 3.39145e-015, -15.4358 6.5 1.20209, -13.15 6.5 3.39145e-015, 
+            -15.7027 6.5 3.75136e-015, -15.4358 6.5 1.20209, -15.7027 6.5 3.75136e-015, -20.5392 6.5 1.93287, 
+            -12.325 5.2 -1.42894, -13.0654 6.5 -0.521645, -13.15 6.5 3.39145e-015, -13.0647 6.5 0.52379, 
+            -13.15 6.5 3.39145e-015, -15.4358 6.5 1.20209, -13.15 5.2 3.35488e-015, -13.15 6.5 3.39145e-015, 
+            -13.0647 6.5 0.52379, -12.325 5.2 -1.42894, -13.15 6.5 3.39145e-015, -13.15 5.2 3.35488e-015, 
+            -12.325 5.2 -1.42894, -12.0916 6.5 -1.54028, -12.7607 6.5 -1.06454, -10.675 5.2 -1.42894, 
+            -12.0916 6.5 -1.54028, -12.325 5.2 -1.42894, -12.325 5.2 -1.42894, -12.7607 6.5 -1.06454, 
+            -13.0654 6.5 -0.521645, -9.5 5.65311 5.90731, -12.9093 6.11593 5.00207, -13.9985 4.90476 6.24619, 
+            -17.1976 5.55167 5.15393, -13.9985 4.90476 6.24619, -12.9093 6.11593 5.00207, -17.1976 5.55167 5.15393, 
+            -18.399 4.61645 5.70195, -13.9985 4.90476 6.24619, -9.5 6.5 3.7, -11.9372 6.5 3.67687, 
+            -12.9093 6.11593 5.00207, -16.9728 5.69967 5.02841, -12.9093 6.11593 5.00207, -11.9372 6.5 3.67687, 
+            -9.5 5.65311 5.90731, -9.5 6.5 3.7, -12.9093 6.11593 5.00207, -16.9728 5.69967 5.02841, 
+            -17.1976 5.55167 5.15393, -12.9093 6.11593 5.00207, -9.5 6.5 1.81317, -11.9372 6.5 3.67687, 
+            -9.5 6.5 3.7, -12.1963 6.5 3.67115, -16.9728 5.69967 5.02841, -11.9372 6.5 3.67687, 
+            -9.5 6.5 1.81317, -12.1963 6.5 3.67115, -11.9372 6.5 3.67687, -9.5 5.1 3.8, 
+            -9.5 6.5 3.7, -9.5 5.65311 5.90731, -9.5 5.1 1.8, -9.5 6.5 1.81317, 
+            -9.5 6.5 3.7, -9.5 5.1 1.8, -9.5 6.5 3.7, -9.5 5.1 3.8, 
+            -18.9042 5.52318 4.75325, -18.399 4.61645 5.70195, -17.1976 5.55167 5.15393, -16.8071 6.5 3.36482, 
+            -17.1976 5.55167 5.15393, -16.9728 5.69967 5.02841, -16.8071 6.5 3.36482, -18.9042 5.52318 4.75325, 
+            -17.1976 5.55167 5.15393, -12.1963 6.5 3.67115, -14.6021 6.5 3.5725, -16.9728 5.69967 5.02841, 
+            -16.8071 6.5 3.36482, -16.9728 5.69967 5.02841, -14.6021 6.5 3.5725, -9.5 6.5 1.81317, 
+            -14.6021 6.5 3.5725, -12.1963 6.5 3.67115, -12.7404 6.5 2.52612, -14.6021 6.5 3.5725, 
+            -9.5 6.5 1.81317, -12.8292 6.5 1.83121, -14.6021 6.5 3.5725, -12.7404 6.5 2.52612, 
+            -12.8292 6.5 1.83121, -16.8071 6.5 3.36482, -14.6021 6.5 3.5725, -10.5482 6.5 1.3478, 
+            -9.5 6.5 0.906991, -9.96695 6.5 0.610119, -10.675 5.2 1.42894, -10.5482 6.5 1.3478, 
+            -9.96695 6.5 0.610119, -10.675 5.2 1.42894, -9.96695 6.5 0.610119, -9.86863 6.5 0.247279, 
+            -11.536 6.5 1.81732, -9.5 6.5 1.81317, -9.5 6.5 0.906991, -9.5 5.1 1.8, 
+            -9.5 6.5 0.906991, -9.5 6.5 1.81317, -11.245 6.5 1.63018, -11.536 6.5 1.81732, 
+            -9.5 6.5 0.906991, -10.5482 6.5 1.3478, -11.245 6.5 1.63018, -9.5 6.5 0.906991, 
+            -11.536 6.5 1.81732, -12.7404 6.5 2.52612, -9.5 6.5 1.81317, -12.8292 6.5 1.83121, 
+            -12.7404 6.5 2.52612, -11.536 6.5 1.81732, -12.0823 6.5 1.54383, -11.536 6.5 1.81732, 
+            -11.245 6.5 1.63018, -12.0823 6.5 1.54383, -12.8292 6.5 1.83121, -11.536 6.5 1.81732, 
+            -10.675 5.2 1.42894, -11.245 6.5 1.63018, -10.5482 6.5 1.3478, -12.325 5.2 1.42894, 
+            -12.0823 6.5 1.54383, -11.245 6.5 1.63018, -12.325 5.2 1.42894, -11.245 6.5 1.63018, 
+            -10.675 5.2 1.42894, -20.5392 6.5 1.93287, -23.1959 5.44734 1.84673, -22.2711 5.47262 3.15307, 
+            -18.5087 6.5 3.0384, -22.2711 5.47262 3.15307, -20.714 5.4979 4.11667, -19.7545 6.5 2.56535, 
+            -20.5392 6.5 1.93287, -22.2711 5.47262 3.15307, -18.5087 6.5 3.0384, -19.7545 6.5 2.56535, 
+            -22.2711 5.47262 3.15307, -16.8071 6.5 3.36482, -20.714 5.4979 4.11667, -18.9042 5.52318 4.75325, 
+            -16.8071 6.5 3.36482, -18.5087 6.5 3.0384, -20.714 5.4979 4.11667, -15.4358 6.5 1.20209, 
+            -20.5392 6.5 1.93287, -19.7545 6.5 2.56535, -14.365 6.5 1.68397, -19.7545 6.5 2.56535, 
+            -18.5087 6.5 3.0384, -15.4358 6.5 1.20209, -19.7545 6.5 2.56535, -14.365 6.5 1.68397, 
+            -14.365 6.5 1.68397, -18.5087 6.5 3.0384, -16.8071 6.5 3.36482, -14.365 6.5 1.68397, 
+            -16.8071 6.5 3.36482, -12.8292 6.5 1.83121, -12.7571 6.5 1.06878, -14.365 6.5 1.68397, 
+            -12.8292 6.5 1.83121, -12.0823 6.5 1.54383, -12.7571 6.5 1.06878, -12.8292 6.5 1.83121, 
+            -12.7571 6.5 1.06878, -15.4358 6.5 1.20209, -14.365 6.5 1.68397, -12.7571 6.5 1.06878, 
+            -13.0647 6.5 0.52379, -15.4358 6.5 1.20209, -13.15 5.2 3.35488e-015, -13.0647 6.5 0.52379, 
+            -12.7571 6.5 1.06878, -12.325 5.2 1.42894, -12.7571 6.5 1.06878, -12.0823 6.5 1.54383, 
+            -13.15 5.2 3.35488e-015, -12.7571 6.5 1.06878, -12.325 5.2 1.42894, -10.675 5.2 1.42894, 
+            -9.86863 6.5 0.247279, -9.85797 6.5 0.162019, -10.675 5.2 1.42894, -9.85797 6.5 0.162019, 
+            -9.85231 6.5 0.0873223, -13.15 5.2 3.35488e-015, -12.35 5.2 3.71308e-015, -11.9249 5.2 -0.736147, 
+            -12.325 5.2 1.42894, -11.9249 5.2 0.736147, -12.35 5.2 3.71308e-015, -13.15 5.2 3.35488e-015, 
+            -12.325 5.2 1.42894, -12.35 5.2 3.71308e-015, -10.675 5.2 -1.42894, -11.9249 5.2 -0.736147, 
+            -11.0751 5.2 -0.736147, -12.325 5.2 -1.42894, -13.15 5.2 3.35488e-015, -11.9249 5.2 -0.736147, 
+            -10.675 5.2 -1.42894, -12.325 5.2 -1.42894, -11.9249 5.2 -0.736147, -10.675 5.2 -1.42894, 
+            -11.0751 5.2 -0.736147, -10.65 5.2 3.5049e-015, -9.85 5.2 3.759e-015, -10.65 5.2 3.5049e-015, 
+            -11.0751 5.2 0.736147, -10.675 5.2 -1.42894, -10.65 5.2 3.5049e-015, -9.85 5.2 3.759e-015, 
+            -12.325 5.2 1.42894, -11.0751 5.2 0.736147, -11.9249 5.2 0.736147, -10.675 5.2 1.42894, 
+            -9.85 5.2 3.759e-015, -11.0751 5.2 0.736147, -12.325 5.2 1.42894, -10.675 5.2 1.42894, 
+            -11.0751 5.2 0.736147, -12.2 5.1 -2.3, -13 5.1 -3.1, -9.5 5.1 -1.8, 
+            -12.2 5.1 -1.8, -12.2 5.1 -2.3, -9.5 5.1 -1.8, -12.2 5.1 1.8, 
+            -9.5 5.1 1.8, -9.5 5.1 3.8, -12.2 5.1 3.8, -12.2 5.1 1.8, 
+            -9.5 5.1 3.8, -22.3636 5 3.60336e-015, -13.3 5 -1.27868, -13.3 5 4.93825, 
+            -12.7343 4.76566 -1.27868, -13.3 5 4.93825, -13.3 5 -1.27868, -21.6448 5 2.62501, 
+            -22.3636 5 3.60336e-015, -13.3 5 4.93825, -20.7492 5 3.48066, -21.6448 5 2.62501, 
+            -13.3 5 4.93825, -19.3422 5 4.14608, -20.7492 5 3.48066, -13.3 5 4.93825, 
+            -17.4438 5 4.58508, -19.3422 5 4.14608, -13.3 5 4.93825, -15.7018 5 4.79372, 
+            -17.4438 5 4.58508, -13.3 5 4.93825, -16.4288 4.76569 5.2902, -15.7018 5 4.79372, 
+            -13.3 5 4.93825, -13.324 4.67755 5.57964, -13.3 5 4.93825, -12.9075 4.76569 5.34563, 
+            -12.7338 4.76521 4.93825, -12.9075 4.76569 5.34563, -13.3 5 4.93825, -13.3213 4.76564 5.50358, 
+            -13.3 5 4.93825, -13.324 4.67755 5.57964, -16.4288 4.76569 5.2902, -13.3 5 4.93825, 
+            -13.3213 4.76564 5.50358, -12.7343 4.76566 -1.27868, -12.7338 4.76521 4.93825, -13.3 5 4.93825, 
+            -18.1846 5 -4.4502, -16.7093 5 -4.68799, -13.3 5 -1.27868, -16.3093 4.76564 -5.08802, 
+            -13.3 5 -1.27868, -16.7093 5 -4.68799, -19.3422 5 -4.14608, -18.1846 5 -4.4502, 
+            -13.3 5 -1.27868, -20.7695 5 -3.46679, -19.3422 5 -4.14608, -13.3 5 -1.27868, 
+            -21.6601 5 -2.60376, -20.7695 5 -3.46679, -13.3 5 -1.27868, -22.3636 5 3.60336e-015, 
+            -21.6601 5 -2.60376, -13.3 5 -1.27868, -12.9 4.76566 -1.6787, -12.7343 4.76566 -1.27868, 
+            -13.3 5 -1.27868, -16.3093 4.76564 -5.08802, -12.9 4.76566 -1.6787, -13.3 5 -1.27868, 
+            -19.5198 4.76569 -4.68316, -16.7093 5 -4.68799, -18.1846 5 -4.4502, -16.7785 4.76566 -5.24944, 
+            -16.3093 4.76564 -5.08802, -16.7093 5 -4.68799, -19.5198 4.76569 -4.68316, -16.7785 4.76566 -5.24944, 
+            -16.7093 5 -4.68799, -19.5198 4.76569 -4.68316, -18.1846 5 -4.4502, -19.3422 5 -4.14608, 
+            -19.5198 4.76569 -4.68316, -19.3422 5 -4.14608, -20.7695 5 -3.46679, -22.0911 4.76569 -2.9732, 
+            -20.7695 5 -3.46679, -21.6601 5 -2.60376, -22.0911 4.76569 -2.9732, -19.5198 4.76569 -4.68316, 
+            -20.7695 5 -3.46679, -22.0911 4.76569 -2.9732, -21.6601 5 -2.60376, -22.3636 5 3.60336e-015, 
+            -22.9293 4.76569 5.21311e-009, -22.3636 5 3.60336e-015, -21.6448 5 2.62501, -22.9293 4.76569 5.21311e-009, 
+            -22.0911 4.76569 -2.9732, -22.3636 5 3.60336e-015, -22.0911 4.76569 2.9732, -21.6448 5 2.62501, 
+            -20.7492 5 3.48066, -22.0911 4.76569 2.9732, -22.9293 4.76569 5.21311e-009, -21.6448 5 2.62501, 
+            -22.0911 4.76569 2.9732, -20.7492 5 3.48066, -19.3422 5 4.14608, -19.5198 4.76569 4.68316, 
+            -19.3422 5 4.14608, -17.4438 5 4.58508, -19.5198 4.76569 4.68316, -22.0911 4.76569 2.9732, 
+            -19.3422 5 4.14608, -16.4288 4.76569 5.2902, -17.4438 5 4.58508, -15.7018 5 4.79372, 
+            -16.4288 4.76569 5.2902, -19.5198 4.76569 4.68316, -17.4438 5 4.58508, -16.4288 4.76569 5.2902, 
+            -17.5693 4.2 5.37518, -19.5933 4.2 4.90567, -19.5198 4.76569 4.68316, -19.5933 4.2 4.90567, 
+            -21.198 4.2 4.14288, -16.4288 4.76569 5.2902, -19.5933 4.2 4.90567, -19.5198 4.76569 4.68316, 
+            -13.324 4.67755 5.57964, -13.3301 4.2 5.73769, -15.7723 4.2 5.5906, -13.324 4.67755 5.57964, 
+            -12.745 4.2 5.51447, -13.3301 4.2 5.73769, -16.4288 4.76569 5.2902, -15.7723 4.2 5.5906, 
+            -17.5693 4.2 5.37518, -13.3213 4.76564 5.50358, -13.324 4.67755 5.57964, -15.7723 4.2 5.5906, 
+            -16.4288 4.76569 5.2902, -13.3213 4.76564 5.50358, -15.7723 4.2 5.5906, -22.0911 4.76569 2.9732, 
+            -22.2929 4.2 3.09411, -23.1636 4.2 3.58085e-015, -22.9293 4.76569 5.21311e-009, -23.1636 4.2 3.58085e-015, 
+            -22.3118 4.2 -3.06768, -22.0911 4.76569 2.9732, -23.1636 4.2 3.58085e-015, -22.9293 4.76569 5.21311e-009, 
+            -22.0911 4.76569 2.9732, -21.198 4.2 4.14288, -22.2929 4.2 3.09411, -19.5198 4.76569 4.68316, 
+            -21.198 4.2 4.14288, -22.0911 4.76569 2.9732, -22.0911 4.76569 -2.9732, -21.2222 4.2 -4.12638, 
+            -19.5933 4.2 -4.90566, -16.7997 4.50617 -5.42153, -19.5933 4.2 -4.90566, -18.3474 4.2 -5.23345, 
+            -16.7785 4.76566 -5.24944, -19.5933 4.2 -4.90566, -16.7997 4.50617 -5.42153, -19.5198 4.76569 -4.68316, 
+            -19.5933 4.2 -4.90566, -16.7785 4.76566 -5.24944, -22.0911 4.76569 -2.9732, -19.5933 4.2 -4.90566, 
+            -19.5198 4.76569 -4.68316, -22.0911 4.76569 -2.9732, -22.3118 4.2 -3.06768, -21.2222 4.2 -4.12638, 
+            -22.9293 4.76569 5.21311e-009, -22.3118 4.2 -3.06768, -22.0911 4.76569 -2.9732, -16.7997 4.50617 -5.42153, 
+            -18.3474 4.2 -5.23345, -16.8072 4.2 -5.48197, -16.1867 4.50605 -5.21064, -16.8072 4.2 -5.48197, 
+            -16.4491 4.2 -5.44447, -16.7997 4.50617 -5.42153, -16.8072 4.2 -5.48197, -16.1867 4.50605 -5.21064, 
+            -12.7774 4.50609 -1.80132, -16.1436 4.2 -5.25367, -12.7343 4.2 -1.84437, -12.5609 4.50609 -1.27868, 
+            -12.7343 4.2 -1.84437, -12.5609 4.2 -1.58483, -12.7774 4.50609 -1.80132, -12.7343 4.2 -1.84437, 
+            -12.5609 4.50609 -1.27868, -16.1867 4.50605 -5.21064, -16.4491 4.2 -5.44447, -16.1436 4.2 -5.25367, 
+            -16.1867 4.50605 -5.21064, -16.1436 4.2 -5.25367, -12.7774 4.50609 -1.80132, -12.658 4.67728 4.93825, 
+            -12.5 4.2 -1.27868, -12.5 4.2 4.93825, -12.658 4.67728 4.93825, -12.5 4.2 4.93825, 
+            -12.745 4.2 5.51447, -12.5609 4.50609 -1.27868, -12.5609 4.2 -1.58483, -12.5 4.2 -1.27868, 
+            -12.5609 4.50609 -1.27868, -12.5 4.2 -1.27868, -12.658 4.67728 4.93825, -12.9075 4.76569 5.34563, 
+            -12.658 4.67728 4.93825, -12.745 4.2 5.51447, -13.324 4.67755 5.57964, -12.9075 4.76569 5.34563, 
+            -12.745 4.2 5.51447, -12.7338 4.76521 4.93825, -12.658 4.67728 4.93825, -12.9075 4.76569 5.34563, 
+            -12.5609 4.50609 -1.27868, -12.658 4.67728 4.93825, -12.7338 4.76521 4.93825, -12.7343 4.76566 -1.27868, 
+            -12.5609 4.50609 -1.27868, -12.7338 4.76521 4.93825, -12.7774 4.50609 -1.80132, -12.5609 4.50609 -1.27868, 
+            -12.7343 4.76566 -1.27868, -12.9 4.76566 -1.6787, -12.7774 4.50609 -1.80132, -12.7343 4.76566 -1.27868, 
+            -16.3093 4.76564 -5.08802, -12.7774 4.50609 -1.80132, -12.9 4.76566 -1.6787, -16.3093 4.76564 -5.08802, 
+            -16.1867 4.50605 -5.21064, -12.7774 4.50609 -1.80132, -16.7997 4.50617 -5.42153, -16.1867 4.50605 -5.21064, 
+            -16.3093 4.76564 -5.08802, -16.7785 4.76566 -5.24944, -16.7997 4.50617 -5.42153, -16.3093 4.76564 -5.08802, 
+            -12.14 1.72268e-015 6.47315, -9.5 -3.8206 5.25861, -9.5 1.71683e-015 6.5, -9 2.51176e-015 6.5, 
+            -9.5 1.71683e-015 6.5, -9.5 -3.8206 5.25861, -12.1985 3.2 6.47182, -12.14 1.72268e-015 6.47315, 
+            -9.5 1.71683e-015 6.5, -9.5 3.2 6.5, -9.5 1.71683e-015 6.5, -9 3.2 6.5, 
+            -9 2.51176e-015 6.5, -9 3.2 6.5, -9.5 1.71683e-015 6.5, -12.1985 3.2 6.47182, 
+            -9.5 1.71683e-015 6.5, -9.5 3.2 6.5, -12.14 1.72268e-015 6.47315, -12.3288 -3.80223 5.23332, 
+            -9.5 -3.8206 5.25861, -9.5 -6.18313 2.00473, -9.5 -3.8206 5.25861, -12.3288 -3.80223 5.23332, 
+            -9 -3.8203 5.25879, -9.5 -3.8206 5.25861, -9.5 -6.18313 2.00473, -9 -3.8203 5.25879, 
+            -9 2.51176e-015 6.5, -9.5 -3.8206 5.25861, -14.4541 1.72839e-015 6.38615, -15.1103 -3.72951 5.13323, 
+            -12.3288 -3.80223 5.23332, -12.3288 -6.15339 1.99509, -12.3288 -3.80223 5.23332, -15.1103 -3.72951 5.13323, 
+            -12.14 1.72268e-015 6.47315, -14.4541 1.72839e-015 6.38615, -12.3288 -3.80223 5.23332, -12.3288 -6.15339 1.99509, 
+            -9.5 -6.18313 2.00473, -12.3288 -3.80223 5.23332, -16.4633 1.73411e-015 6.22663, -17.8306 -3.5513 4.88794, 
+            -15.1103 -3.72951 5.13323, -15.1103 -6.0357 1.95693, -15.1103 -3.72951 5.13323, -17.8306 -3.5513 4.88794, 
+            -14.4541 1.72839e-015 6.38615, -16.4633 1.73411e-015 6.22663, -15.1103 -3.72951 5.13323, -15.1103 -6.0357 1.95693, 
+            -12.3288 -6.15339 1.99509, -15.1103 -3.72951 5.13323, -18.9571 1.74319e-015 5.81358, -20.5029 -3.12148 4.29635, 
+            -17.8306 -3.5513 4.88794, -17.8306 -5.74729 1.86342, -17.8306 -3.5513 4.88794, -20.5029 -3.12148 4.29635, 
+            -16.4633 1.73411e-015 6.22663, -18.9571 1.74319e-015 5.81358, -17.8306 -3.5513 4.88794, -17.8306 -5.74729 1.86342, 
+            -15.1103 -6.0357 1.95693, -17.8306 -3.5513 4.88794, -20.8689 1.7534e-015 5.14173, -22.9619 -1.97379 2.71669, 
+            -20.5029 -3.12148 4.29635, -20.5029 -5.05169 1.63789, -20.5029 -3.12148 4.29635, -22.9619 -1.97379 2.71669, 
+            -18.9571 1.74319e-015 5.81358, -20.8689 1.7534e-015 5.14173, -20.5029 -3.12148 4.29635, -20.5029 -5.05169 1.63789, 
+            -17.8306 -5.74729 1.86342, -20.5029 -3.12148 4.29635, -23.1394 1.77718e-015 3.07149, -23.8636 1.80685e-015 1.06581e-014, 
+            -22.9619 -1.97379 2.71669, -22.9619 -3.19431 1.03568, -22.9619 -1.97379 2.71669, -23.8636 1.80685e-015 1.06581e-014, 
+            -20.8689 1.7534e-015 5.14173, -23.1394 1.77718e-015 3.07149, -22.9619 -1.97379 2.71669, -22.9619 -3.19431 1.03568, 
+            -20.5029 -5.05169 1.63789, -22.9619 -1.97379 2.71669, -23.8636 3.2 1.07482e-014, -23.8636 1.80685e-015 1.06581e-014, 
+            -23.1394 1.77718e-015 3.07149, -22.9619 -3.19236 -1.0417, -22.9619 -3.19431 1.03568, -23.8636 1.80685e-015 1.06581e-014, 
+            -22.9619 -1.96867 -2.72041, -22.9619 -3.19236 -1.0417, -23.8636 1.80685e-015 1.06581e-014, -23.0968 1.44894e-015 -3.14441, 
+            -22.9619 -1.96867 -2.72041, -23.8636 1.80685e-015 1.06581e-014, -23.0253 3.2 -3.26076, -23.0968 1.44894e-015 -3.14441, 
+            -23.8636 1.80685e-015 1.06581e-014, -23.0253 3.2 -3.26076, -23.8636 1.80685e-015 1.06581e-014, -23.8636 3.2 1.07482e-014, 
+            -23.0253 3.2 3.26076, -23.1394 1.77718e-015 3.07149, -20.8689 1.7534e-015 5.14173, -23.8636 3.2 1.07482e-014, 
+            -23.1394 1.77718e-015 3.07149, -23.0253 3.2 3.26076, -20.6701 3.2 5.23657, -20.8689 1.7534e-015 5.14173, 
+            -18.9571 1.74319e-015 5.81358, -23.0253 3.2 3.26076, -20.8689 1.7534e-015 5.14173, -20.6701 3.2 5.23657, 
+            -18.8247 3.2 5.84512, -18.9571 1.74319e-015 5.81358, -16.4633 1.73411e-015 6.22663, -20.6701 3.2 5.23657, 
+            -18.9571 1.74319e-015 5.81358, -18.8247 3.2 5.84512, -16.4506 3.2 6.22799, -16.4633 1.73411e-015 6.22663, 
+            -14.4541 1.72839e-015 6.38615, -18.8247 3.2 5.84512, -16.4633 1.73411e-015 6.22663, -16.4506 3.2 6.22799, 
+            -12.1985 3.2 6.47182, -14.4541 1.72839e-015 6.38615, -12.14 1.72268e-015 6.47315, -14.4986 3.2 6.38368, 
+            -14.4541 1.72839e-015 6.38615, -12.1985 3.2 6.47182, -16.4506 3.2 6.22799, -14.4541 1.72839e-015 6.38615, 
+            -14.4986 3.2 6.38368, -9.5 -6.17934 -2.01638, -9.5 -6.18313 2.00473, -12.3288 -6.15339 1.99509, 
+            -9 -6.18175 -2.00875, -9.5 -6.18313 2.00473, -9.5 -6.17934 -2.01638, -9 -6.18175 2.00875, 
+            -9.5 -6.18313 2.00473, -9 -6.18175 -2.00875, -9 -3.8203 5.25879, -9.5 -6.18313 2.00473, 
+            -9 -6.18175 2.00875, -12.3288 -6.14962 -2.00668, -12.3288 -6.15339 1.99509, -15.1103 -6.0357 1.95693, 
+            -12.3288 -6.14962 -2.00668, -9.5 -6.17934 -2.01638, -12.3288 -6.15339 1.99509, -15.1103 -6.032 -1.9683, 
+            -15.1103 -6.0357 1.95693, -17.8306 -5.74729 1.86342, -15.1103 -6.032 -1.9683, -12.3288 -6.14962 -2.00668, 
+            -15.1103 -6.0357 1.95693, -17.8306 -5.74377 -1.87425, -17.8306 -5.74729 1.86342, -20.5029 -5.05169 1.63789, 
+            -17.8306 -5.74377 -1.87425, -15.1103 -6.032 -1.9683, -17.8306 -5.74729 1.86342, -20.5029 -5.0486 -1.64741, 
+            -20.5029 -5.05169 1.63789, -22.9619 -3.19431 1.03568, -20.5029 -5.0486 -1.64741, -17.8306 -5.74377 -1.87425, 
+            -20.5029 -5.05169 1.63789, -22.9619 -3.19236 -1.0417, -20.5029 -5.0486 -1.64741, -22.9619 -3.19431 1.03568, 
+            -9.5 -3.81069 -5.2658, -9.5 -6.17934 -2.01638, -12.3288 -6.14962 -2.00668, -9 -3.8203 -5.25879, 
+            -9.5 -6.17934 -2.01638, -9.5 -3.81069 -5.2658, -9 -6.18175 -2.00875, -9.5 -6.17934 -2.01638, 
+            -9 -3.8203 -5.25879, -12.3288 -3.79236 -5.24048, -12.3288 -6.14962 -2.00668, -15.1103 -6.032 -1.9683, 
+            -12.3288 -3.79236 -5.24048, -9.5 -3.81069 -5.2658, -12.3288 -6.14962 -2.00668, -15.1103 -3.71982 -5.14025, 
+            -15.1103 -6.032 -1.9683, -17.8306 -5.74377 -1.87425, -15.1103 -3.71982 -5.14025, -12.3288 -3.79236 -5.24048, 
+            -15.1103 -6.032 -1.9683, -17.8306 -3.54208 -4.89462, -17.8306 -5.74377 -1.87425, -20.5029 -5.0486 -1.64741, 
+            -17.8306 -3.54208 -4.89462, -15.1103 -3.71982 -5.14025, -17.8306 -5.74377 -1.87425, -20.5029 -3.11338 -4.30223, 
+            -20.5029 -5.0486 -1.64741, -22.9619 -3.19236 -1.0417, -20.5029 -3.11338 -4.30223, -17.8306 -3.54208 -4.89462, 
+            -20.5029 -5.0486 -1.64741, -22.9619 -1.96867 -2.72041, -20.5029 -3.11338 -4.30223, -22.9619 -3.19236 -1.0417, 
+            -9.5 1.83588e-015 -6.5, -9.5 -3.81069 -5.2658, -12.3288 -3.79236 -5.24048, -9 -3.8203 -5.25879, 
+            -9.5 -3.81069 -5.2658, -9.5 1.83588e-015 -6.5, -14.4948 -1.77137e-015 -6.38385, -12.3288 -3.79236 -5.24048, 
+            -15.1103 -3.71982 -5.14025, -12.1736 1.04867e-015 -6.47239, -9.5 1.83588e-015 -6.5, -12.3288 -3.79236 -5.24048, 
+            -14.4948 -1.77137e-015 -6.38385, -12.1736 1.04867e-015 -6.47239, -12.3288 -3.79236 -5.24048, -16.4952 1.08608e-015 -6.22317, 
+            -15.1103 -3.71982 -5.14025, -17.8306 -3.54208 -4.89462, -16.4952 1.08608e-015 -6.22317, -14.4948 -1.77137e-015 -6.38385, 
+            -15.1103 -3.71982 -5.14025, -18.9622 1.13787e-015 -5.81234, -17.8306 -3.54208 -4.89462, -20.5029 -3.11338 -4.30223, 
+            -18.9622 1.13787e-015 -5.81234, -16.4952 1.08608e-015 -6.22317, -17.8306 -3.54208 -4.89462, -20.8078 1.21437e-015 -5.1717, 
+            -20.5029 -3.11338 -4.30223, -22.9619 -1.96867 -2.72041, -20.8078 1.21437e-015 -5.1717, -18.9622 1.13787e-015 -5.81234, 
+            -20.5029 -3.11338 -4.30223, -23.0968 1.44894e-015 -3.14441, -20.8078 1.21437e-015 -5.1717, -22.9619 -1.96867 -2.72041, 
+            -9.5 3.2 -6.5, -9.5 1.83588e-015 -6.5, -12.1736 1.04867e-015 -6.47239, -9 2.42835e-016 -6.5, 
+            -9.5 1.83588e-015 -6.5, -9.5 3.2 -6.5, -9 -3.8203 -5.25879, -9.5 1.83588e-015 -6.5, 
+            -9 2.42835e-016 -6.5, -12.1985 3.2 -6.47182, -12.1736 1.04867e-015 -6.47239, -14.4948 -1.77137e-015 -6.38385, 
+            -9.5 3.2 -6.5, -12.1736 1.04867e-015 -6.47239, -12.1985 3.2 -6.47182, -14.4986 3.2 -6.38368, 
+            -14.4948 -1.77137e-015 -6.38385, -16.4952 1.08608e-015 -6.22317, -12.1985 3.2 -6.47182, -14.4948 -1.77137e-015 -6.38385, 
+            -14.4986 3.2 -6.38368, -18.8247 3.2 -5.84512, -16.4952 1.08608e-015 -6.22317, -18.9622 1.13787e-015 -5.81234, 
+            -16.4506 3.2 -6.22799, -16.4952 1.08608e-015 -6.22317, -18.8247 3.2 -5.84512, -14.4986 3.2 -6.38368, 
+            -16.4952 1.08608e-015 -6.22317, -16.4506 3.2 -6.22799, -20.6701 3.2 -5.23657, -18.9622 1.13787e-015 -5.81234, 
+            -20.8078 1.21437e-015 -5.1717, -18.8247 3.2 -5.84512, -18.9622 1.13787e-015 -5.81234, -20.6701 3.2 -5.23657, 
+            -23.0253 3.2 -3.26076, -20.8078 1.21437e-015 -5.1717, -23.0968 1.44894e-015 -3.14441, -20.6701 3.2 -5.23657, 
+            -20.8078 1.21437e-015 -5.1717, -23.0253 3.2 -3.26076, -12.6365 1.27768e-015 -4.45986, -9.5 -3.17676 -3.18711, 
+            -9.5 1.32226e-008 -4.5, -9.5 3.2 -4.5, -9.5 1.32226e-008 -4.5, -9.5 -3.17676 -3.18711, 
+            -12.9582 3.2 -4.44994, -12.6365 1.27768e-015 -4.45986, -9.5 1.32226e-008 -4.5, -12.9582 3.2 -4.44994, 
+            -9.5 1.32226e-008 -4.5, -9.5 3.2 -4.5, -12.6365 1.27768e-015 -4.45986, -12.2799 -3.15533 -3.16526, 
+            -9.5 -3.17676 -3.18711, -9.5 -4.50001 -0.00353186, -9.5 -3.17676 -3.18711, -12.2799 -3.15533 -3.16526, 
+            -9.5 3.2 -4.5, -9.5 -3.17676 -3.18711, -9.5 -4.50001 -0.00353186, -12.6365 1.27768e-015 -4.45986, 
+            -14.9711 -3.07098 -3.08065, -12.2799 -3.15533 -3.16526, -12.2799 -4.46934 -0.00351021, -12.2799 -3.15533 -3.16526, 
+            -14.9711 -3.07098 -3.08065, -12.2799 -4.46934 -0.00351021, -9.5 -4.50001 -0.00353186, -12.2799 -3.15533 -3.16526, 
+            -17.3562 1.3293e-015 -4.09276, -17.501 -2.87282 -2.88186, -14.9711 -3.07098 -3.08065, -14.9711 -4.34986 -0.00341638, 
+            -14.9711 -3.07098 -3.08065, -17.501 -2.87282 -2.88186, -15.233 1.29783e-015 -4.33074, -17.3562 1.3293e-015 -4.09276, 
+            -14.9711 -3.07098 -3.08065, -12.6365 1.27768e-015 -4.45986, -15.233 1.29783e-015 -4.33074, -14.9711 -3.07098 -3.08065, 
+            -14.9711 -4.34986 -0.00341638, -12.2799 -4.46934 -0.00351021, -14.9711 -3.07098 -3.08065, -19.0801 1.37687e-015 -3.70523, 
+            -19.7146 -2.45133 -2.45904, -17.501 -2.87282 -2.88186, -17.501 -4.06917 -0.00319592, -17.501 -2.87282 -2.88186, 
+            -19.7146 -2.45133 -2.45904, -17.3562 1.3293e-015 -4.09276, -19.0801 1.37687e-015 -3.70523, -17.501 -2.87282 -2.88186, 
+            -17.501 -4.06917 -0.00319592, -14.9711 -4.34986 -0.00341638, -17.501 -2.87282 -2.88186, -21.2104 1.53249e-015 -2.37169, 
+            -21.2994 -1.58589 -1.59088, -19.7146 -2.45133 -2.45904, -19.7146 -3.47216 -0.00272703, -19.7146 -2.45133 -2.45904, 
+            -21.2994 -1.58589 -1.59088, -20.3536 1.44343e-015 -3.14166, -21.2104 1.53249e-015 -2.37169, -19.7146 -2.45133 -2.45904, 
+            -19.0801 1.37687e-015 -3.70523, -20.3536 1.44343e-015 -3.14166, -19.7146 -2.45133 -2.45904, -19.7146 -3.47216 -0.00272703, 
+            -17.501 -4.06917 -0.00319592, -19.7146 -2.45133 -2.45904, -21.2104 1.53249e-015 -2.37169, -21.8636 1.8026e-015 1.06581e-014, 
+            -21.2994 -1.58589 -1.59088, -21.2994 -2.24632 -0.00176426, -21.2994 -1.58589 -1.59088, -21.8636 1.8026e-015 1.06581e-014, 
+            -21.2994 -2.24632 -0.00176426, -19.7146 -3.47216 -0.00272703, -21.2994 -1.58589 -1.59088, -21.8636 3.2 1.07482e-014, 
+            -21.8636 1.8026e-015 1.06581e-014, -21.2104 1.53249e-015 -2.37169, -21.2994 -1.58839 1.58839, -21.2994 -2.24632 -0.00176426, 
+            -21.8636 1.8026e-015 1.06581e-014, -21.5673 1.786e-015 1.74352, -21.2994 -1.58839 1.58839, -21.8636 1.8026e-015 1.06581e-014, 
+            -21.6227 3.2 1.60054, -21.5673 1.786e-015 1.74352, -21.8636 1.8026e-015 1.06581e-014, -21.6227 3.2 1.60054, 
+            -21.8636 1.8026e-015 1.06581e-014, -21.8636 3.2 1.07482e-014, -20.9886 3.2 -2.63222, -21.2104 1.53249e-015 -2.37169, 
+            -20.3536 1.44343e-015 -3.14166, -21.6227 3.2 -1.60054, -21.2104 1.53249e-015 -2.37169, -20.9886 3.2 -2.63222, 
+            -21.8636 3.2 1.07482e-014, -21.2104 1.53249e-015 -2.37169, -21.6227 3.2 -1.60054, -19.8137 3.2 -3.42839, 
+            -20.3536 1.44343e-015 -3.14166, -19.0801 1.37687e-015 -3.70523, -20.9886 3.2 -2.63222, -20.3536 1.44343e-015 -3.14166, 
+            -19.8137 3.2 -3.42839, -17.7247 3.2 -4.03023, -19.0801 1.37687e-015 -3.70523, -17.3562 1.3293e-015 -4.09276, 
+            -19.8137 3.2 -3.42839, -19.0801 1.37687e-015 -3.70523, -17.7247 3.2 -4.03023, -15.6664 3.2 -4.2951, 
+            -17.3562 1.3293e-015 -4.09276, -15.233 1.29783e-015 -4.33074, -17.7247 3.2 -4.03023, -17.3562 1.3293e-015 -4.09276, 
+            -15.6664 3.2 -4.2951, -12.9582 3.2 -4.44994, -15.233 1.29783e-015 -4.33074, -12.6365 1.27768e-015 -4.45986, 
+            -15.6664 3.2 -4.2951, -15.233 1.29783e-015 -4.33074, -12.9582 3.2 -4.44994, -9.5 -3.18177 3.1821, 
+            -9.5 -4.50001 -0.00353186, -12.2799 -4.46934 -0.00351021, -9.5 3.2 -4.5, -9.5 -4.50001 -0.00353186, 
+            -9.5 -3.18177 3.1821, -12.2799 -3.1603 3.1603, -12.2799 -4.46934 -0.00351021, -14.9711 -4.34986 -0.00341638, 
+            -12.2799 -3.1603 3.1603, -9.5 -3.18177 3.1821, -12.2799 -4.46934 -0.00351021, -14.9711 -3.07582 3.07582, 
+            -14.9711 -4.34986 -0.00341638, -17.501 -4.06917 -0.00319592, -14.9711 -3.07582 3.07582, -12.2799 -3.1603 3.1603, 
+            -14.9711 -4.34986 -0.00341638, -17.501 -2.87734 2.87734, -17.501 -4.06917 -0.00319592, -19.7146 -3.47216 -0.00272703, 
+            -17.501 -2.87734 2.87734, -14.9711 -3.07582 3.07582, -17.501 -4.06917 -0.00319592, -19.7146 -2.45519 2.45519, 
+            -19.7146 -3.47216 -0.00272703, -21.2994 -2.24632 -0.00176426, -19.7146 -2.45519 2.45519, -17.501 -2.87734 2.87734, 
+            -19.7146 -3.47216 -0.00272703, -21.2994 -1.58839 1.58839, -19.7146 -2.45519 2.45519, -21.2994 -2.24632 -0.00176426, 
+            -9.5 1.38234e-008 4.5, -9.5 -3.18177 3.1821, -12.2799 -3.1603 3.1603, -9.5 3.2 -4.5, 
+            -9.5 -3.18177 3.1821, -9.5 1.38234e-008 4.5, -12.4058 1.74162e-015 4.46617, -12.2799 -3.1603 3.1603, 
+            -14.9711 -3.07582 3.07582, -12.4058 1.74162e-015 4.46617, -9.5 1.38234e-008 4.5, -12.2799 -3.1603 3.1603, 
+            -16.8515 1.75381e-015 4.16602, -14.9711 -3.07582 3.07582, -17.501 -2.87734 2.87734, -14.8294 1.74774e-015 4.35951, 
+            -12.4058 1.74162e-015 4.46617, -14.9711 -3.07582 3.07582, -16.8515 1.75381e-015 4.16602, -14.8294 1.74774e-015 4.35951, 
+            -14.9711 -3.07582 3.07582, -19.2195 1.76347e-015 3.65992, -17.501 -2.87734 2.87734, -19.7146 -2.45519 2.45519, 
+            -19.2195 1.76347e-015 3.65992, -16.8515 1.75381e-015 4.16602, -17.501 -2.87734 2.87734, -20.7638 1.77423e-015 2.84335, 
+            -19.7146 -2.45519 2.45519, -21.2994 -1.58839 1.58839, -20.7638 1.77423e-015 2.84335, -19.2195 1.76347e-015 3.65992, 
+            -19.7146 -2.45519 2.45519, -21.5673 1.786e-015 1.74352, -20.7638 1.77423e-015 2.84335, -21.2994 -1.58839 1.58839, 
+            -9.5 3.2 4.5, -9.5 1.38234e-008 4.5, -12.4058 1.74162e-015 4.46617, -9.5 3.2 -4.5, 
+            -9.5 1.38234e-008 4.5, -9.5 3.2 4.5, -12.9582 3.2 4.44994, -12.4058 1.74162e-015 4.46617, 
+            -14.8294 1.74774e-015 4.35951, -12.9582 3.2 4.44994, -9.5 3.2 4.5, -12.4058 1.74162e-015 4.46617, 
+            -15.6664 3.2 4.2951, -14.8294 1.74774e-015 4.35951, -16.8515 1.75381e-015 4.16602, -12.9582 3.2 4.44994, 
+            -14.8294 1.74774e-015 4.35951, -15.6664 3.2 4.2951, -17.7247 3.2 4.03023, -16.8515 1.75381e-015 4.16602, 
+            -19.2195 1.76347e-015 3.65992, -15.6664 3.2 4.2951, -16.8515 1.75381e-015 4.16602, -17.7247 3.2 4.03023, 
+            -19.8137 3.2 3.42839, -19.2195 1.76347e-015 3.65992, -20.7638 1.77423e-015 2.84335, -17.7247 3.2 4.03023, 
+            -19.2195 1.76347e-015 3.65992, -19.8137 3.2 3.42839, -20.9886 3.2 2.63222, -20.7638 1.77423e-015 2.84335, 
+            -21.5673 1.786e-015 1.74352, -19.8137 3.2 3.42839, -20.7638 1.77423e-015 2.84335, -20.9886 3.2 2.63222, 
+            -20.9886 3.2 2.63222, -21.5673 1.786e-015 1.74352, -21.6227 3.2 1.60054, -9 3.2 6.5, 
+            -9.5 3.2 -4.5, -9.5 3.2 4.5, -9.5 3.2 6.5, -9.5 3.2 4.5, 
+            -12.9582 3.2 4.44994, -9.5 3.2 6.5, -9 3.2 6.5, -9.5 3.2 4.5, 
+            -12.1985 3.2 -6.47182, -12.9582 3.2 -4.44994, -9.5 3.2 -4.5, -9.5 3.2 -6.5, 
+            -9.5 3.2 -4.5, -9 3.2 6.5, -9.5 3.2 -6.5, -12.1985 3.2 -6.47182, 
+            -9.5 3.2 -4.5, -14.4986 3.2 -6.38368, -15.6664 3.2 -4.2951, -12.9582 3.2 -4.44994, 
+            -12.1985 3.2 -6.47182, -14.4986 3.2 -6.38368, -12.9582 3.2 -4.44994, -16.4506 3.2 -6.22799, 
+            -17.7247 3.2 -4.03023, -15.6664 3.2 -4.2951, -14.4986 3.2 -6.38368, -16.4506 3.2 -6.22799, 
+            -15.6664 3.2 -4.2951, -18.8247 3.2 -5.84512, -19.8137 3.2 -3.42839, -17.7247 3.2 -4.03023, 
+            -16.4506 3.2 -6.22799, -18.8247 3.2 -5.84512, -17.7247 3.2 -4.03023, -20.6701 3.2 -5.23657, 
+            -20.9886 3.2 -2.63222, -19.8137 3.2 -3.42839, -18.8247 3.2 -5.84512, -20.6701 3.2 -5.23657, 
+            -19.8137 3.2 -3.42839, -23.0253 3.2 -3.26076, -21.6227 3.2 -1.60054, -20.9886 3.2 -2.63222, 
+            -20.6701 3.2 -5.23657, -23.0253 3.2 -3.26076, -20.9886 3.2 -2.63222, -23.0253 3.2 -3.26076, 
+            -21.8636 3.2 1.07482e-014, -21.6227 3.2 -1.60054, -23.0253 3.2 -3.26076, -21.6227 3.2 1.60054, 
+            -21.8636 3.2 1.07482e-014, -20.6701 3.2 5.23657, -20.9886 3.2 2.63222, -21.6227 3.2 1.60054, 
+            -23.0253 3.2 -3.26076, -20.6701 3.2 5.23657, -21.6227 3.2 1.60054, -20.6701 3.2 5.23657, 
+            -19.8137 3.2 3.42839, -20.9886 3.2 2.63222, -18.8247 3.2 5.84512, -17.7247 3.2 4.03023, 
+            -19.8137 3.2 3.42839, -20.6701 3.2 5.23657, -18.8247 3.2 5.84512, -19.8137 3.2 3.42839, 
+            -16.4506 3.2 6.22799, -15.6664 3.2 4.2951, -17.7247 3.2 4.03023, -18.8247 3.2 5.84512, 
+            -16.4506 3.2 6.22799, -17.7247 3.2 4.03023, -14.4986 3.2 6.38368, -12.9582 3.2 4.44994, 
+            -15.6664 3.2 4.2951, -16.4506 3.2 6.22799, -14.4986 3.2 6.38368, -15.6664 3.2 4.2951, 
+            -12.1985 3.2 6.47182, -9.5 3.2 6.5, -12.9582 3.2 4.44994, -14.4986 3.2 6.38368, 
+            -12.1985 3.2 6.47182, -12.9582 3.2 4.44994, -9.5 3.2 -6.5, -9 3.2 6.5, 
+            -9 3.2 -6.5, -9 2.42835e-016 -6.5, -9 3.2 -6.5, -9 3.2 6.5, 
+            -9 2.42835e-016 -6.5, -9.5 3.2 -6.5, -9 3.2 -6.5, -9 -3.8203 5.25879, 
+            -9 3.2 6.5, -9 2.51176e-015 6.5, -9 -3.8203 -5.25879, -9 2.42835e-016 -6.5, 
+            -9 3.2 6.5, -9 -6.18175 -2.00875, -9 -3.8203 -5.25879, -9 3.2 6.5, 
+            -9 -6.18175 2.00875, -9 -6.18175 -2.00875, -9 3.2 6.5, -9 -3.8203 5.25879, 
+            -9 -6.18175 2.00875, -9 3.2 6.5, -23.0253 3.2 -3.26076, -23.0253 3.2 3.26076, 
+            -20.6701 3.2 5.23657, -23.0253 3.2 -3.26076, -23.8636 3.2 1.07482e-014, -23.0253 3.2 3.26076
+          ]
+        }
+        coordIndex
+        [
+          0,1,2,-1, 3,4,5,-1, 6,7,8,-1, 9,10,11,-1, 12,13,14,-1, 15,16,17,-1, 
+          18,19,20,-1, 21,22,23,-1, 24,25,26,-1, 27,28,29,-1, 30,31,32,-1, 33,34,35,-1, 
+          36,37,38,-1, 39,40,41,-1, 42,43,44,-1, 45,46,47,-1, 48,49,50,-1, 51,52,53,-1, 
+          54,55,56,-1, 57,58,59,-1, 60,61,62,-1, 63,64,65,-1, 66,67,68,-1, 69,70,71,-1, 
+          72,73,74,-1, 75,76,77,-1, 78,79,80,-1, 81,82,83,-1, 84,85,86,-1, 87,88,89,-1, 
+          90,91,92,-1, 93,94,95,-1, 96,97,98,-1, 99,100,101,-1, 102,103,104,-1, 105,106,107,-1, 
+          108,109,110,-1, 111,112,113,-1, 114,115,116,-1, 117,118,119,-1, 120,121,122,-1, 123,124,125,-1, 
+          126,127,128,-1, 129,130,131,-1, 132,133,134,-1, 135,136,137,-1, 138,139,140,-1, 141,142,143,-1, 
+          144,145,146,-1, 147,148,149,-1, 150,151,152,-1, 153,154,155,-1, 156,157,158,-1, 159,160,161,-1, 
+          162,163,164,-1, 165,166,167,-1, 168,169,170,-1, 171,172,173,-1, 174,175,176,-1, 177,178,179,-1, 
+          180,181,182,-1, 183,184,185,-1, 186,187,188,-1, 189,190,191,-1, 192,193,194,-1, 195,196,197,-1, 
+          198,199,200,-1, 201,202,203,-1, 204,205,206,-1, 207,208,209,-1, 210,211,212,-1, 213,214,215,-1, 
+          216,217,218,-1, 219,220,221,-1, 222,223,224,-1, 225,226,227,-1, 228,229,230,-1, 231,232,233,-1, 
+          234,235,236,-1, 237,238,239,-1, 240,241,242,-1, 243,244,245,-1, 246,247,248,-1, 249,250,251,-1, 
+          252,253,254,-1, 255,256,257,-1, 258,259,260,-1, 261,262,263,-1, 264,265,266,-1, 267,268,269,-1, 
+          270,271,272,-1, 273,274,275,-1, 276,277,278,-1, 279,280,281,-1, 282,283,284,-1, 285,286,287,-1, 
+          288,289,290,-1, 291,292,293,-1, 294,295,296,-1, 297,298,299,-1, 300,301,302,-1, 303,304,305,-1, 
+          306,307,308,-1, 309,310,311,-1, 312,313,314,-1, 315,316,317,-1, 318,319,320,-1, 321,322,323,-1, 
+          324,325,326,-1, 327,328,329,-1, 330,331,332,-1, 333,334,335,-1, 336,337,338,-1, 339,340,341,-1, 
+          342,343,344,-1, 345,346,347,-1, 348,349,350,-1, 351,352,353,-1, 354,355,356,-1, 357,358,359,-1, 
+          360,361,362,-1, 363,364,365,-1, 366,367,368,-1, 369,370,371,-1, 372,373,374,-1, 375,376,377,-1, 
+          378,379,380,-1, 381,382,383,-1, 384,385,386,-1, 387,388,389,-1, 390,391,392,-1, 393,394,395,-1, 
+          396,397,398,-1, 399,400,401,-1, 402,403,404,-1, 405,406,407,-1, 408,409,410,-1, 411,412,413,-1, 
+          414,415,416,-1, 417,418,419,-1, 420,421,422,-1, 423,424,425,-1, 426,427,428,-1, 429,430,431,-1, 
+          432,433,434,-1, 435,436,437,-1, 438,439,440,-1, 441,442,443,-1, 444,445,446,-1, 447,448,449,-1, 
+          450,451,452,-1, 453,454,455,-1, 456,457,458,-1, 459,460,461,-1, 462,463,464,-1, 465,466,467,-1, 
+          468,469,470,-1, 471,472,473,-1, 474,475,476,-1, 477,478,479,-1, 480,481,482,-1, 483,484,485,-1, 
+          486,487,488,-1, 489,490,491,-1, 492,493,494,-1, 495,496,497,-1, 498,499,500,-1, 501,502,503,-1, 
+          504,505,506,-1, 507,508,509,-1, 510,511,512,-1, 513,514,515,-1, 516,517,518,-1, 519,520,521,-1, 
+          522,523,524,-1, 525,526,527,-1, 528,529,530,-1, 531,532,533,-1, 534,535,536,-1, 537,538,539,-1, 
+          540,541,542,-1, 543,544,545,-1, 546,547,548,-1, 549,550,551,-1, 552,553,554,-1, 555,556,557,-1, 
+          558,559,560,-1, 561,562,563,-1, 564,565,566,-1, 567,568,569,-1, 570,571,572,-1, 573,574,575,-1, 
+          576,577,578,-1, 579,580,581,-1, 582,583,584,-1, 585,586,587,-1, 588,589,590,-1, 591,592,593,-1, 
+          594,595,596,-1, 597,598,599,-1, 600,601,602,-1, 603,604,605,-1, 606,607,608,-1, 609,610,611,-1, 
+          612,613,614,-1, 615,616,617,-1, 618,619,620,-1, 621,622,623,-1, 624,625,626,-1, 627,628,629,-1, 
+          630,631,632,-1, 633,634,635,-1, 636,637,638,-1, 639,640,641,-1, 642,643,644,-1, 645,646,647,-1, 
+          648,649,650,-1, 651,652,653,-1, 654,655,656,-1, 657,658,659,-1, 660,661,662,-1, 663,664,665,-1, 
+          666,667,668,-1, 669,670,671,-1, 672,673,674,-1, 675,676,677,-1, 678,679,680,-1, 681,682,683,-1, 
+          684,685,686,-1, 687,688,689,-1, 690,691,692,-1, 693,694,695,-1, 696,697,698,-1, 699,700,701,-1, 
+          702,703,704,-1, 705,706,707,-1, 708,709,710,-1, 711,712,713,-1, 714,715,716,-1, 717,718,719,-1, 
+          720,721,722,-1, 723,724,725,-1, 726,727,728,-1, 729,730,731,-1, 732,733,734,-1, 735,736,737,-1, 
+          738,739,740,-1, 741,742,743,-1, 744,745,746,-1, 747,748,749,-1, 750,751,752,-1, 753,754,755,-1, 
+          756,757,758,-1, 759,760,761,-1, 762,763,764,-1, 765,766,767,-1, 768,769,770,-1, 771,772,773,-1, 
+          774,775,776,-1, 777,778,779,-1, 780,781,782,-1, 783,784,785,-1, 786,787,788,-1, 789,790,791,-1, 
+          792,793,794,-1, 795,796,797,-1, 798,799,800,-1, 801,802,803,-1, 804,805,806,-1, 807,808,809,-1, 
+          810,811,812,-1, 813,814,815,-1, 816,817,818,-1, 819,820,821,-1, 822,823,824,-1, 825,826,827,-1, 
+          828,829,830,-1, 831,832,833,-1, 834,835,836,-1, 837,838,839,-1, 840,841,842,-1, 843,844,845,-1, 
+          846,847,848,-1, 849,850,851,-1, 852,853,854,-1, 855,856,857,-1, 858,859,860,-1, 861,862,863,-1, 
+          864,865,866,-1, 867,868,869,-1, 870,871,872,-1, 873,874,875,-1, 876,877,878,-1, 879,880,881,-1, 
+          882,883,884,-1, 885,886,887,-1, 888,889,890,-1, 891,892,893,-1, 894,895,896,-1, 897,898,899,-1, 
+          900,901,902,-1, 903,904,905,-1, 906,907,908,-1, 909,910,911,-1, 912,913,914,-1, 915,916,917,-1, 
+          918,919,920,-1, 921,922,923,-1, 924,925,926,-1, 927,928,929,-1, 930,931,932,-1, 933,934,935,-1, 
+          936,937,938,-1, 939,940,941,-1, 942,943,944,-1, 945,946,947,-1, 948,949,950,-1, 951,952,953,-1, 
+          954,955,956,-1, 957,958,959,-1, 960,961,962,-1, 963,964,965,-1, 966,967,968,-1, 969,970,971,-1, 
+          972,973,974,-1, 975,976,977,-1, 978,979,980,-1, 981,982,983,-1, 984,985,986,-1, 987,988,989,-1, 
+          990,991,992,-1, 993,994,995,-1, 996,997,998,-1, 999,1000,1001,-1, 1002,1003,1004,-1, 1005,1006,1007,-1, 
+          1008,1009,1010,-1, 1011,1012,1013,-1, 1014,1015,1016,-1, 1017,1018,1019,-1, 1020,1021,1022,-1, 1023,1024,1025,-1, 
+          1026,1027,1028,-1, 1029,1030,1031,-1, 1032,1033,1034,-1, 1035,1036,1037,-1, 1038,1039,1040,-1, 1041,1042,1043,-1, 
+          1044,1045,1046,-1, 1047,1048,1049,-1, 1050,1051,1052,-1, 1053,1054,1055,-1, 1056,1057,1058,-1, 1059,1060,1061,-1, 
+          1062,1063,1064,-1, 1065,1066,1067,-1, 1068,1069,1070,-1, 1071,1072,1073,-1, 1074,1075,1076,-1, 1077,1078,1079,-1, 
+          1080,1081,1082,-1, 1083,1084,1085,-1, 1086,1087,1088,-1, 1089,1090,1091,-1, 1092,1093,1094,-1, 1095,1096,1097,-1, 
+          1098,1099,1100,-1, 1101,1102,1103,-1, 1104,1105,1106,-1, 1107,1108,1109,-1, 1110,1111,1112,-1, 1113,1114,1115,-1, 
+          1116,1117,1118,-1, 1119,1120,1121,-1, 1122,1123,1124,-1, 1125,1126,1127,-1, 1128,1129,1130,-1, 1131,1132,1133,-1, 
+          1134,1135,1136,-1, 1137,1138,1139,-1, 1140,1141,1142,-1, 1143,1144,1145,-1, 1146,1147,1148,-1, 1149,1150,1151,-1, 
+          1152,1153,1154,-1, 1155,1156,1157,-1, 1158,1159,1160,-1, 1161,1162,1163,-1, 1164,1165,1166,-1, 1167,1168,1169,-1, 
+          1170,1171,1172,-1, 1173,1174,1175,-1, 1176,1177,1178,-1, 1179,1180,1181,-1, 1182,1183,1184,-1, 1185,1186,1187,-1, 
+          1188,1189,1190,-1, 1191,1192,1193,-1, 1194,1195,1196,-1, 1197,1198,1199,-1, 1200,1201,1202,-1, 1203,1204,1205,-1, 
+          1206,1207,1208,-1, 1209,1210,1211,-1, 1212,1213,1214,-1, 1215,1216,1217,-1, 1218,1219,1220,-1, 1221,1222,1223,-1, 
+          1224,1225,1226,-1, 1227,1228,1229,-1, 1230,1231,1232,-1, 1233,1234,1235,-1, 1236,1237,1238,-1, 1239,1240,1241,-1, 
+          1242,1243,1244,-1, 1245,1246,1247,-1, 1248,1249,1250,-1, 1251,1252,1253,-1, 1254,1255,1256,-1, 1257,1258,1259,-1, 
+          1260,1261,1262,-1, 1263,1264,1265,-1, 1266,1267,1268,-1, 1269,1270,1271,-1, 1272,1273,1274,-1, 1275,1276,1277,-1, 
+          1278,1279,1280,-1, 1281,1282,1283,-1, 1284,1285,1286,-1, 1287,1288,1289,-1, 1290,1291,1292,-1, 1293,1294,1295,-1, 
+          1296,1297,1298,-1, 1299,1300,1301,-1, 1302,1303,1304,-1, 1305,1306,1307,-1, 1308,1309,1310,-1, 1311,1312,1313,-1, 
+          1314,1315,1316,-1, 1317,1318,1319,-1, 1320,1321,1322,-1, 1323,1324,1325,-1, 1326,1327,1328,-1, 1329,1330,1331,-1, 
+          1332,1333,1334,-1, 1335,1336,1337,-1, 1338,1339,1340,-1, 1341,1342,1343,-1, 1344,1345,1346,-1, 1347,1348,1349,-1, 
+          1350,1351,1352,-1, 1353,1354,1355,-1, 1356,1357,1358,-1, 1359,1360,1361,-1, 1362,1363,1364,-1, 1365,1366,1367,-1, 
+          1368,1369,1370,-1, 1371,1372,1373,-1, 1374,1375,1376,-1, 1377,1378,1379,-1, 1380,1381,1382,-1, 1383,1384,1385,-1, 
+          1386,1387,1388,-1, 1389,1390,1391,-1, 1392,1393,1394,-1, 1395,1396,1397,-1, 1398,1399,1400,-1, 1401,1402,1403,-1, 
+          1404,1405,1406,-1, 1407,1408,1409,-1, 1410,1411,1412,-1, 1413,1414,1415,-1, 1416,1417,1418,-1, 1419,1420,1421,-1, 
+          1422,1423,1424,-1, 1425,1426,1427,-1, 1428,1429,1430,-1, 1431,1432,1433,-1, 1434,1435,1436,-1, 1437,1438,1439,-1, 
+          1440,1441,1442,-1, 1443,1444,1445,-1, 1446,1447,1448,-1, 1449,1450,1451,-1, 1452,1453,1454,-1, 1455,1456,1457,-1, 
+          1458,1459,1460,-1, 1461,1462,1463,-1, 1464,1465,1466,-1, 1467,1468,1469,-1, 1470,1471,1472,-1, 1473,1474,1475,-1, 
+          1476,1477,1478,-1, 1479,1480,1481,-1, 1482,1483,1484,-1, 1485,1486,1487,-1, 1488,1489,1490,-1, 1491,1492,1493,-1, 
+          1494,1495,1496,-1, 1497,1498,1499,-1, 1500,1501,1502,-1, 1503,1504,1505,-1, 1506,1507,1508,-1, 1509,1510,1511,-1, 
+          1512,1513,1514,-1, 1515,1516,1517,-1, 1518,1519,1520,-1, 1521,1522,1523,-1, 1524,1525,1526,-1, 1527,1528,1529,-1, 
+          1530,1531,1532,-1, 1533,1534,1535,-1, 1536,1537,1538,-1, 1539,1540,1541,-1, 1542,1543,1544,-1, 1545,1546,1547,-1, 
+          1548,1549,1550,-1, 1551,1552,1553,-1, 1554,1555,1556,-1, 1557,1558,1559,-1, 1560,1561,1562,-1, 1563,1564,1565,-1, 
+          1566,1567,1568,-1, 1569,1570,1571,-1, 1572,1573,1574,-1, 1575,1576,1577,-1, 1578,1579,1580,-1, 1581,1582,1583,-1, 
+          1584,1585,1586,-1, 1587,1588,1589,-1, 1590,1591,1592,-1, 1593,1594,1595,-1, 1596,1597,1598,-1, 1599,1600,1601,-1, 
+          1602,1603,1604,-1, 1605,1606,1607,-1, 1608,1609,1610,-1, 1611,1612,1613,-1, 1614,1615,1616,-1, 1617,1618,1619,-1, 
+          1620,1621,1622,-1, 1623,1624,1625,-1, 1626,1627,1628,-1, 1629,1630,1631,-1, 1632,1633,1634,-1, 1635,1636,1637,-1, 
+          1638,1639,1640,-1, 1641,1642,1643,-1, 1644,1645,1646,-1, 1647,1648,1649,-1, 1650,1651,1652,-1, 1653,1654,1655,-1, 
+          1656,1657,1658,-1, 1659,1660,1661,-1, 1662,1663,1664,-1, 1665,1666,1667,-1, 1668,1669,1670,-1, 1671,1672,1673,-1, 
+          1674,1675,1676,-1, 1677,1678,1679,-1, 1680,1681,1682,-1, 1683,1684,1685,-1, 1686,1687,1688,-1, 1689,1690,1691,-1, 
+          1692,1693,1694,-1, 1695,1696,1697,-1, 1698,1699,1700,-1, 1701,1702,1703,-1, 1704,1705,1706,-1, 1707,1708,1709,-1, 
+          1710,1711,1712,-1, 1713,1714,1715,-1, 1716,1717,1718,-1, 1719,1720,1721,-1, 1722,1723,1724,-1, 1725,1726,1727,-1, 
+          1728,1729,1730,-1, 1731,1732,1733,-1, 1734,1735,1736,-1, 1737,1738,1739,-1, 1740,1741,1742,-1, 1743,1744,1745,-1, 
+          1746,1747,1748,-1, 1749,1750,1751,-1, 1752,1753,1754,-1, 1755,1756,1757,-1, 1758,1759,1760,-1, 1761,1762,1763,-1, 
+          1764,1765,1766,-1, 1767,1768,1769,-1, 1770,1771,1772,-1, 1773,1774,1775,-1, 1776,1777,1778,-1, 1779,1780,1781,-1, 
+          1782,1783,1784,-1, 1785,1786,1787,-1, 1788,1789,1790,-1, 1791,1792,1793,-1, 1794,1795,1796,-1, 1797,1798,1799,-1, 
+          1800,1801,1802,-1, 1803,1804,1805,-1, 1806,1807,1808,-1, 1809,1810,1811,-1, 1812,1813,1814,-1, 1815,1816,1817,-1, 
+          1818,1819,1820,-1, 1821,1822,1823,-1, 1824,1825,1826,-1, 1827,1828,1829,-1, 1830,1831,1832,-1, 1833,1834,1835,-1, 
+          1836,1837,1838,-1, 1839,1840,1841,-1, 1842,1843,1844,-1, 1845,1846,1847,-1, 1848,1849,1850,-1, 1851,1852,1853,-1, 
+          1854,1855,1856,-1, 1857,1858,1859,-1, 1860,1861,1862,-1, 1863,1864,1865,-1, 1866,1867,1868,-1, 1869,1870,1871,-1, 
+          1872,1873,1874,-1, 1875,1876,1877,-1, 1878,1879,1880,-1, 1881,1882,1883,-1, 1884,1885,1886,-1, 1887,1888,1889,-1, 
+          1890,1891,1892,-1, 1893,1894,1895,-1, 1896,1897,1898,-1, 1899,1900,1901,-1, 1902,1903,1904,-1, 1905,1906,1907,-1, 
+          1908,1909,1910,-1, 1911,1912,1913,-1, 1914,1915,1916,-1, 1917,1918,1919,-1, 1920,1921,1922,-1, 1923,1924,1925,-1, 
+          1926,1927,1928,-1, 1929,1930,1931,-1, 1932,1933,1934,-1, 1935,1936,1937,-1, 1938,1939,1940,-1, 1941,1942,1943,-1, 
+          1944,1945,1946,-1, 1947,1948,1949,-1, 1950,1951,1952,-1, 1953,1954,1955,-1, 1956,1957,1958,-1, 1959,1960,1961,-1, 
+          1962,1963,1964,-1, 1965,1966,1967,-1, 1968,1969,1970,-1, 1971,1972,1973,-1, 1974,1975,1976,-1, 1977,1978,1979,-1, 
+          1980,1981,1982,-1, 1983,1984,1985,-1, 1986,1987,1988,-1, 1989,1990,1991,-1, 1992,1993,1994,-1, 1995,1996,1997,-1, 
+          1998,1999,2000,-1, 2001,2002,2003,-1, 2004,2005,2006,-1, 2007,2008,2009,-1, 2010,2011,2012,-1, 2013,2014,2015,-1, 
+          2016,2017,2018,-1, 2019,2020,2021,-1, 2022,2023,2024,-1, 2025,2026,2027,-1, 2028,2029,2030,-1, 2031,2032,2033,-1, 
+          2034,2035,2036,-1, 2037,2038,2039,-1, 2040,2041,2042,-1, 2043,2044,2045,-1, 2046,2047,2048,-1, 2049,2050,2051,-1, 
+          2052,2053,2054,-1, 2055,2056,2057,-1, 2058,2059,2060,-1, 2061,2062,2063,-1, 2064,2065,2066,-1, 2067,2068,2069,-1, 
+          2070,2071,2072,-1, 2073,2074,2075,-1, 2076,2077,2078,-1, 2079,2080,2081,-1, 2082,2083,2084,-1, 2085,2086,2087,-1, 
+          2088,2089,2090,-1, 2091,2092,2093,-1, 2094,2095,2096,-1, 2097,2098,2099,-1, 2100,2101,2102,-1, 2103,2104,2105,-1, 
+          2106,2107,2108,-1, 2109,2110,2111,-1, 2112,2113,2114,-1, 2115,2116,2117,-1, 2118,2119,2120,-1, 2121,2122,2123,-1, 
+          2124,2125,2126,-1, 2127,2128,2129,-1, 2130,2131,2132,-1, 2133,2134,2135,-1, 2136,2137,2138,-1, 2139,2140,2141,-1, 
+          2142,2143,2144,-1, 2145,2146,2147,-1, 2148,2149,2150,-1, 2151,2152,2153,-1, 2154,2155,2156,-1, 2157,2158,2159,-1, 
+          2160,2161,2162,-1, 2163,2164,2165,-1, 2166,2167,2168,-1, 2169,2170,2171,-1, 2172,2173,2174,-1, 2175,2176,2177,-1, 
+          2178,2179,2180,-1, 2181,2182,2183,-1, 2184,2185,2186,-1, 2187,2188,2189,-1, 2190,2191,2192,-1, 2193,2194,2195,-1, 
+          2196,2197,2198,-1, 2199,2200,2201,-1, 2202,2203,2204,-1, 2205,2206,2207,-1, 2208,2209,2210,-1, 2211,2212,2213,-1, 
+          2214,2215,2216,-1, 2217,2218,2219,-1, 2220,2221,2222,-1, 2223,2224,2225,-1, 2226,2227,2228,-1, 2229,2230,2231,-1, 
+          2232,2233,2234,-1, 2235,2236,2237,-1, 2238,2239,2240,-1, 2241,2242,2243,-1, 2244,2245,2246,-1, 2247,2248,2249,-1, 
+          2250,2251,2252,-1, 2253,2254,2255,-1, 2256,2257,2258,-1, 2259,2260,2261,-1, 2262,2263,2264,-1, 2265,2266,2267,-1, 
+          2268,2269,2270,-1, 2271,2272,2273,-1, 2274,2275,2276,-1, 2277,2278,2279,-1, 2280,2281,2282,-1, 2283,2284,2285,-1, 
+          2286,2287,2288,-1, 2289,2290,2291,-1, 2292,2293,2294,-1, 2295,2296,2297,-1, 2298,2299,2300,-1, 2301,2302,2303,-1, 
+          2304,2305,2306,-1, 2307,2308,2309,-1, 2310,2311,2312,-1, 2313,2314,2315,-1, 2316,2317,2318,-1, 2319,2320,2321,-1, 
+          2322,2323,2324,-1, 2325,2326,2327,-1, 2328,2329,2330,-1, 2331,2332,2333,-1, 2334,2335,2336,-1, 2337,2338,2339,-1, 
+          2340,2341,2342,-1, 2343,2344,2345,-1, 2346,2347,2348,-1, 2349,2350,2351,-1, 2352,2353,2354,-1, 2355,2356,2357,-1, 
+          2358,2359,2360,-1, 2361,2362,2363,-1, 2364,2365,2366,-1, 2367,2368,2369,-1, 2370,2371,2372,-1, 2373,2374,2375,-1, 
+          2376,2377,2378,-1, 2379,2380,2381,-1, 2382,2383,2384,-1, 2385,2386,2387,-1, 2388,2389,2390,-1, 2391,2392,2393,-1, 
+          2394,2395,2396,-1, 2397,2398,2399,-1, 2400,2401,2402,-1, 2403,2404,2405,-1, 2406,2407,2408,-1, 2409,2410,2411,-1, 
+          2412,2413,2414,-1, 2415,2416,2417,-1, 2418,2419,2420,-1, 2421,2422,2423,-1, 2424,2425,2426,-1, 2427,2428,2429,-1, 
+          2430,2431,2432,-1, 2433,2434,2435,-1, 2436,2437,2438,-1, 2439,2440,2441,-1, 2442,2443,2444,-1, 2445,2446,2447,-1, 
+          2448,2449,2450,-1, 2451,2452,2453,-1, 2454,2455,2456,-1, 2457,2458,2459,-1, 2460,2461,2462,-1, 2463,2464,2465,-1, 
+          2466,2467,2468,-1, 2469,2470,2471,-1, 2472,2473,2474,-1, 2475,2476,2477,-1, 2478,2479,2480,-1, 2481,2482,2483,-1, 
+          2484,2485,2486,-1, 2487,2488,2489,-1, 2490,2491,2492,-1, 2493,2494,2495,-1, 2496,2497,2498,-1, 2499,2500,2501,-1, 
+          2502,2503,2504,-1, 2505,2506,2507,-1, 2508,2509,2510,-1, 2511,2512,2513,-1, 2514,2515,2516,-1, 2517,2518,2519,-1, 
+          2520,2521,2522,-1, 2523,2524,2525,-1, 2526,2527,2528,-1, 2529,2530,2531,-1, 2532,2533,2534,-1, 2535,2536,2537,-1, 
+          2538,2539,2540,-1, 2541,2542,2543,-1, 2544,2545,2546,-1, 2547,2548,2549,-1, 2550,2551,2552,-1, 2553,2554,2555,-1, 
+          2556,2557,2558,-1, 2559,2560,2561,-1, 2562,2563,2564,-1, 2565,2566,2567,-1, 2568,2569,2570,-1, 2571,2572,2573,-1, 
+          2574,2575,2576,-1, 2577,2578,2579,-1, 2580,2581,2582,-1, 2583,2584,2585,-1, 2586,2587,2588,-1, 2589,2590,2591,-1, 
+          2592,2593,2594,-1, 2595,2596,2597,-1, 2598,2599,2600,-1, 2601,2602,2603,-1, 2604,2605,2606,-1, 2607,2608,2609,-1, 
+          2610,2611,2612,-1, 2613,2614,2615,-1, 2616,2617,2618,-1, 2619,2620,2621,-1, 2622,2623,2624,-1, 2625,2626,2627,-1, 
+          2628,2629,2630,-1, 2631,2632,2633,-1, 2634,2635,2636,-1, 2637,2638,2639,-1, 2640,2641,2642,-1, 2643,2644,2645,-1, 
+          2646,2647,2648,-1, 2649,2650,2651,-1, 2652,2653,2654,-1, 2655,2656,2657,-1, 2658,2659,2660,-1, 2661,2662,2663,-1, 
+          2664,2665,2666,-1, 2667,2668,2669,-1, 2670,2671,2672,-1, 2673,2674,2675,-1, 2676,2677,2678,-1, 2679,2680,2681,-1, 
+          2682,2683,2684,-1, 2685,2686,2687,-1, 2688,2689,2690,-1, 2691,2692,2693,-1, 2694,2695,2696,-1, 2697,2698,2699,-1, 
+          2700,2701,2702,-1, 2703,2704,2705,-1, 2706,2707,2708,-1, 2709,2710,2711,-1, 2712,2713,2714,-1, 2715,2716,2717,-1, 
+          2718,2719,2720,-1, 2721,2722,2723,-1, 2724,2725,2726,-1, 2727,2728,2729,-1, 2730,2731,2732,-1, 2733,2734,2735,-1, 
+          2736,2737,2738,-1, 2739,2740,2741,-1, 2742,2743,2744,-1, 2745,2746,2747,-1, 2748,2749,2750,-1, 2751,2752,2753,-1, 
+          2754,2755,2756,-1, 2757,2758,2759,-1, 2760,2761,2762,-1, 2763,2764,2765,-1, 2766,2767,2768,-1, 2769,2770,2771,-1, 
+          2772,2773,2774,-1, 2775,2776,2777,-1, 2778,2779,2780,-1, 2781,2782,2783,-1, 2784,2785,2786,-1, 2787,2788,2789,-1, 
+          2790,2791,2792,-1, 2793,2794,2795,-1, 2796,2797,2798,-1, 2799,2800,2801,-1, 2802,2803,2804,-1, 2805,2806,2807,-1, 
+          2808,2809,2810,-1, 2811,2812,2813,-1, 2814,2815,2816,-1, 2817,2818,2819,-1, 2820,2821,2822,-1, 2823,2824,2825,-1, 
+          2826,2827,2828,-1, 2829,2830,2831,-1, 2832,2833,2834,-1, 2835,2836,2837,-1, 2838,2839,2840,-1, 2841,2842,2843,-1, 
+          2844,2845,2846,-1, 2847,2848,2849,-1, 2850,2851,2852,-1, 2853,2854,2855,-1, 2856,2857,2858,-1, 2859,2860,2861,-1, 
+          2862,2863,2864,-1, 2865,2866,2867,-1, 2868,2869,2870,-1, 2871,2872,2873,-1, 2874,2875,2876,-1, 2877,2878,2879,-1, 
+          2880,2881,2882,-1, 2883,2884,2885,-1, 2886,2887,2888,-1, 2889,2890,2891,-1, 2892,2893,2894,-1, 2895,2896,2897,-1, 
+          2898,2899,2900,-1, 2901,2902,2903,-1, 2904,2905,2906,-1, 2907,2908,2909,-1, 2910,2911,2912,-1, 2913,2914,2915,-1, 
+          2916,2917,2918,-1, 2919,2920,2921,-1, 2922,2923,2924,-1, 2925,2926,2927,-1, 2928,2929,2930,-1, 2931,2932,2933,-1, 
+          2934,2935,2936,-1, 2937,2938,2939,-1, 2940,2941,2942,-1, 2943,2944,2945,-1, 2946,2947,2948,-1, 2949,2950,2951,-1, 
+          2952,2953,2954,-1, 2955,2956,2957,-1, 2958,2959,2960,-1, 2961,2962,2963,-1, 2964,2965,2966,-1, 2967,2968,2969,-1, 
+          2970,2971,2972,-1, 2973,2974,2975,-1, 2976,2977,2978,-1, 2979,2980,2981,-1, 2982,2983,2984,-1, 2985,2986,2987,-1, 
+          2988,2989,2990,-1, 2991,2992,2993,-1, 2994,2995,2996,-1, 2997,2998,2999,-1, 3000,3001,3002,-1, 3003,3004,3005,-1, 
+          3006,3007,3008,-1, 3009,3010,3011,-1, 3012,3013,3014,-1, 3015,3016,3017,-1, 3018,3019,3020,-1, 3021,3022,3023,-1, 
+          3024,3025,3026,-1, 3027,3028,3029,-1, 3030,3031,3032,-1, 3033,3034,3035,-1, 3036,3037,3038,-1, 3039,3040,3041,-1, 
+          3042,3043,3044,-1, 3045,3046,3047,-1, 3048,3049,3050,-1, 3051,3052,3053,-1, 3054,3055,3056,-1, 3057,3058,3059,-1, 
+          3060,3061,3062,-1, 3063,3064,3065,-1, 3066,3067,3068,-1, 3069,3070,3071,-1, 3072,3073,3074,-1, 3075,3076,3077,-1, 
+          3078,3079,3080,-1, 3081,3082,3083,-1, 3084,3085,3086,-1, 3087,3088,3089,-1, 3090,3091,3092,-1, 3093,3094,3095,-1, 
+          3096,3097,3098,-1, 3099,3100,3101,-1, 3102,3103,3104,-1, 3105,3106,3107,-1, 3108,3109,3110,-1, 3111,3112,3113,-1, 
+          3114,3115,3116,-1, 3117,3118,3119,-1, 3120,3121,3122,-1, 3123,3124,3125,-1, 3126,3127,3128,-1, 3129,3130,3131,-1, 
+          3132,3133,3134,-1, 3135,3136,3137,-1, 3138,3139,3140,-1, 3141,3142,3143,-1, 3144,3145,3146,-1, 3147,3148,3149,-1, 
+          3150,3151,3152,-1, 3153,3154,3155,-1, 3156,3157,3158,-1, 3159,3160,3161,-1, 3162,3163,3164,-1, 3165,3166,3167,-1, 
+          3168,3169,3170,-1, 3171,3172,3173,-1, 3174,3175,3176,-1, 3177,3178,3179,-1, 3180,3181,3182,-1, 3183,3184,3185,-1, 
+          3186,3187,3188,-1, 3189,3190,3191,-1, 3192,3193,3194,-1, 3195,3196,3197,-1, 3198,3199,3200,-1, 3201,3202,3203,-1, 
+          3204,3205,3206,-1, 3207,3208,3209,-1, 3210,3211,3212,-1, 3213,3214,3215,-1, 3216,3217,3218,-1, 3219,3220,3221,-1, 
+          3222,3223,3224,-1, 3225,3226,3227,-1, 3228,3229,3230,-1, 3231,3232,3233,-1, 3234,3235,3236,-1, 3237,3238,3239,-1, 
+          3240,3241,3242,-1, 3243,3244,3245,-1, 3246,3247,3248,-1, 3249,3250,3251,-1, 3252,3253,3254,-1, 3255,3256,3257,-1, 
+          3258,3259,3260,-1, 3261,3262,3263,-1, 3264,3265,3266,-1, 3267,3268,3269,-1, 3270,3271,3272,-1, 3273,3274,3275,-1, 
+          3276,3277,3278,-1, 3279,3280,3281,-1, 3282,3283,3284,-1, 3285,3286,3287,-1, 3288,3289,3290,-1, 3291,3292,3293,-1, 
+          3294,3295,3296,-1, 3297,3298,3299,-1, 3300,3301,3302,-1, 3303,3304,3305,-1, 3306,3307,3308,-1, 3309,3310,3311,-1, 
+          3312,3313,3314,-1, 3315,3316,3317,-1, 3318,3319,3320,-1, 3321,3322,3323,-1, 3324,3325,3326,-1, 3327,3328,3329,-1, 
+          3330,3331,3332,-1, 3333,3334,3335,-1, 3336,3337,3338,-1, 3339,3340,3341,-1, 3342,3343,3344,-1, 3345,3346,3347,-1, 
+          3348,3349,3350,-1, 3351,3352,3353,-1, 3354,3355,3356,-1, 3357,3358,3359,-1, 3360,3361,3362,-1, 3363,3364,3365,-1, 
+          3366,3367,3368,-1, 3369,3370,3371,-1, 3372,3373,3374,-1, 3375,3376,3377,-1, 3378,3379,3380,-1, 3381,3382,3383,-1, 
+          3384,3385,3386,-1, 3387,3388,3389,-1, 3390,3391,3392,-1, 3393,3394,3395,-1, 3396,3397,3398,-1, 3399,3400,3401,-1, 
+          3402,3403,3404,-1, 3405,3406,3407,-1, 3408,3409,3410,-1, 3411,3412,3413,-1, 3414,3415,3416,-1, 3417,3418,3419,-1, 
+          3420,3421,3422,-1, 3423,3424,3425,-1, 3426,3427,3428,-1, 3429,3430,3431,-1, 3432,3433,3434,-1, 3435,3436,3437,-1, 
+          3438,3439,3440,-1, 3441,3442,3443,-1, 3444,3445,3446,-1, 3447,3448,3449,-1, 3450,3451,3452,-1, 3453,3454,3455,-1, 
+          3456,3457,3458,-1, 3459,3460,3461,-1, 3462,3463,3464,-1, 3465,3466,3467,-1, 3468,3469,3470,-1, 3471,3472,3473,-1, 
+          3474,3475,3476,-1, 3477,3478,3479,-1, 3480,3481,3482,-1, 3483,3484,3485,-1, 3486,3487,3488,-1, 3489,3490,3491,-1, 
+          3492,3493,3494,-1, 3495,3496,3497,-1, 3498,3499,3500,-1, 3501,3502,3503,-1, 3504,3505,3506,-1, 3507,3508,3509,-1, 
+          3510,3511,3512,-1, 3513,3514,3515,-1, 3516,3517,3518,-1, 3519,3520,3521,-1, 3522,3523,3524,-1, 3525,3526,3527,-1, 
+          3528,3529,3530,-1, 3531,3532,3533,-1, 3534,3535,3536,-1, 3537,3538,3539,-1, 3540,3541,3542,-1, 3543,3544,3545,-1, 
+          3546,3547,3548,-1, 3549,3550,3551,-1, 3552,3553,3554,-1, 3555,3556,3557,-1, 3558,3559,3560,-1, 3561,3562,3563,-1, 
+          3564,3565,3566,-1, 3567,3568,3569,-1, 3570,3571,3572,-1, 3573,3574,3575,-1, 3576,3577,3578,-1, 3579,3580,3581,-1, 
+          3582,3583,3584,-1, 3585,3586,3587,-1, 3588,3589,3590,-1, 3591,3592,3593,-1, 3594,3595,3596,-1, 3597,3598,3599,-1, 
+          3600,3601,3602,-1, 3603,3604,3605,-1, 3606,3607,3608,-1, 3609,3610,3611,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFingerTip_b.wrl b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFingerTip_b.wrl
new file mode 100644
index 0000000000000000000000000000000000000000..918d839b180fba58a05e9d613f1c432505371a7a
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/full_LeftIndexFingerTip_b.wrl
@@ -0,0 +1,4042 @@
+#VRML V2.0 utf8
+
+# Generated by VCGLIB, (C)Copyright 1999-2001 VCG, IEI-CNR
+
+NavigationInfo {
+	type [ "EXAMINE", "ANY" ]
+}
+Transform {
+  scale 1 1 1
+  translation 0 0 0
+  children
+  [
+    Shape
+    {
+      geometry IndexedFaceSet
+      {
+        creaseAngle .5
+        solid FALSE
+        coord Coordinate
+        {
+          point
+          [
+            -19 -0.55 1.45, -19 2.05 1.45, -19 2.05 -1.45, -18.8 2.25 -1.45, 
+            -19 2.05 -1.45, -19 2.05 1.45, -19 -0.55 -1.45, -19 -0.55 1.45, 
+            -19 2.05 -1.45, -18.8 -0.55 -1.65, -19 -0.55 -1.45, -19 2.05 -1.45, 
+            -18.9 2.15 -1.55, -19 2.05 -1.45, -18.8 2.25 -1.45, -18.8 -0.55 -1.65, 
+            -19 2.05 -1.45, -18.8 2.05 -1.65, -18.9 2.15 -1.55, -18.8 2.05 -1.65, 
+            -19 2.05 -1.45, -18.8 2.05 1.65, -19 2.05 1.45, -19 -0.55 1.45, 
+            -18.8 2.25 1.45, -18.8 2.25 -1.45, -19 2.05 1.45, -18.9 2.15 1.55, 
+            -18.8 2.25 1.45, -19 2.05 1.45, -18.9 2.15 1.55, -19 2.05 1.45, 
+            -18.8 2.05 1.65, -18.8 -0.75 1.45, -19 -0.55 1.45, -19 -0.55 -1.45, 
+            -18.9 -0.65 1.55, -19 -0.55 1.45, -18.8 -0.75 1.45, -18.8 2.05 1.65, 
+            -19 -0.55 1.45, -18.8 -0.55 1.65, -18.9 -0.65 1.55, -18.8 -0.55 1.65, 
+            -19 -0.55 1.45, -18.9 -0.65 -1.55, -19 -0.55 -1.45, -18.8 -0.55 -1.65, 
+            -18.8 -0.75 1.45, -19 -0.55 -1.45, -18.8 -0.75 -1.45, -18.9 -0.65 -1.55, 
+            -18.8 -0.75 -1.45, -19 -0.55 -1.45, -5.12586 -0.381946 -4.4, -5.5 -4.78435 -4.4, 
+            -3.5 -4.78435 -4.4, -8.36255 -4.35578 -4.8244, -3.5 -4.78435 -4.4, -5.5 -4.78435 -4.4, 
+            -3.95 1.74516e-015 -4.4, -3.5 -4.78435 -4.4, -3.5 -3.5 -4.4, -3.5 -3.5 -5.3, 
+            -3.5 -3.5 -4.4, -3.5 -4.78435 -4.4, -4.07414 -0.381946 -4.4, -3.5 -4.78435 -4.4, 
+            -3.95 1.74516e-015 -4.4, -4.80067 -0.618217 -4.4, -5.12586 -0.381946 -4.4, -3.5 -4.78435 -4.4, 
+            -4.39933 -0.618217 -4.4, -4.80067 -0.618217 -4.4, -3.5 -4.78435 -4.4, -4.07414 -0.381946 -4.4, 
+            -4.39933 -0.618217 -4.4, -3.5 -4.78435 -4.4, -3.5 -3.5 -5.3, -3.5 -4.78435 -4.4, 
+            -3.5 -3.76298 -5.3, -3.5 -4.2975 -4.87663, -3.5 -3.76298 -5.3, -3.5 -4.78435 -4.4, 
+            -8.36255 -4.35578 -4.8244, -3.5 -4.2975 -4.87663, -3.5 -4.78435 -4.4, -5.25 1.7343e-015 -4.4, 
+            -5.5 3 -4.4, -5.5 -4.78435 -4.4, -5.5 -0.181125 -0.920211, -5.5 -4.78435 -4.4, 
+            -5.5 3 -4.4, -5.12586 -0.381946 -4.4, -5.25 1.7343e-015 -4.4, -5.5 -4.78435 -4.4, 
+            -5.5 -5.76628 3, -5.5 -5.57601 -3.34026, -5.5 -4.78435 -4.4, -9 -5.06374 -4.07536, 
+            -5.5 -4.78435 -4.4, -5.5 -5.57601 -3.34026, -5.5 -0.27991 -0.7, -5.5 -5.76628 3, 
+            -5.5 -4.78435 -4.4, -5.5 -0.181125 -0.920211, -5.5 -0.27991 -0.7, -5.5 -4.78435 -4.4, 
+            -8.36255 -4.35578 -4.8244, -5.5 -4.78435 -4.4, -9 -5.06374 -4.07536, -4.07414 0.381946 -4.4, 
+            -3 3 -4.4, -5.5 3 -4.4, -3 3 -5.3, -5.5 3 -4.4, 
+            -3 3 -4.4, -4.39933 0.618217 -4.4, -4.07414 0.381946 -4.4, -5.5 3 -4.4, 
+            -4.80067 0.618217 -4.4, -4.39933 0.618217 -4.4, -5.5 3 -4.4, -5.12586 0.381946 -4.4, 
+            -4.80067 0.618217 -4.4, -5.5 3 -4.4, -5.25 1.7343e-015 -4.4, -5.12586 0.381946 -4.4, 
+            -5.5 3 -4.4, -5.5 0.816885 -0.479789, -5.5 3 -4.4, -5.5 3 3, 
+            -9 3 5.76628, -5.5 3 3, -5.5 3 -4.4, -5.5 0.816885 -0.479789, 
+            -5.5 0.915671 -0.7, -5.5 3 -4.4, -5.5 0.816818 -0.920286, -5.5 3 -4.4, 
+            -5.5 0.915671 -0.7, -5.5 0.111668 -1.07531, -5.5 -0.181125 -0.920211, -5.5 3 -4.4, 
+            -5.5 0.524778 -1.07516, -5.5 0.111668 -1.07531, -5.5 3 -4.4, -5.5 0.816818 -0.920286, 
+            -5.5 0.524778 -1.07516, -5.5 3 -4.4, -3 3 -5.3, -5.19615 3 -5.3, 
+            -5.5 3 -4.4, -9 3 5.76628, -5.5 3 -4.4, -5.19615 3 -5.3, 
+            -2.99986 -2.63394 -4.4, -2.63395 2.63401 -4.4, -3 3 -4.4, -3 3 -5.3, 
+            -3 3 -4.4, -2.63395 2.63401 -4.4, -3.36606 -3.00014 -4.4, -2.99986 -2.63394 -4.4, 
+            -3 3 -4.4, -3.95 1.74516e-015 -4.4, -3.36606 -3.00014 -4.4, -3 3 -4.4, 
+            -4.07414 0.381946 -4.4, -3.95 1.74516e-015 -4.4, -3 3 -4.4, -2.5 -2.5 -4.4, 
+            -2.13397 2.5 -4.4, -2.63395 2.63401 -4.4, -2.63395 2.63401 -5.3, -2.63395 2.63401 -4.4, 
+            -2.13397 2.5 -4.4, -2.99986 -2.63394 -4.4, -2.5 -2.5 -4.4, -2.63395 2.63401 -4.4, 
+            -2.63395 2.63401 -5.3, -3 3 -5.3, -2.63395 2.63401 -4.4, -0.263687 1.15529 -4.4, 
+            -4.44089e-016 2.5 -4.4, -2.13397 2.5 -4.4, -2.13397 2.5 -5.3, -2.13397 2.5 -4.4, 
+            -4.44089e-016 2.5 -4.4, -1.06765 -0.514152 -4.4, -2.13397 2.5 -4.4, -2.5 -2.5 -4.4, 
+            -0.738835 0.92647 -4.4, -0.263687 1.15529 -4.4, -2.13397 2.5 -4.4, -1.06765 0.514152 -4.4, 
+            -0.738835 0.92647 -4.4, -2.13397 2.5 -4.4, -1.185 1.76826e-015 -4.4, -1.06765 0.514152 -4.4, 
+            -2.13397 2.5 -4.4, -1.06765 -0.514152 -4.4, -1.185 1.76826e-015 -4.4, -2.13397 2.5 -4.4, 
+            -2.63395 2.63401 -5.3, -2.13397 2.5 -4.4, -2.13397 2.5 -5.3, 0.738835 0.92647 -4.4, 
+            0.772738 2.37753 -4.4, -4.44089e-016 2.5 -4.4, 0 2.5 -5.3, -4.44089e-016 2.5 -4.4, 
+            0.772738 2.37753 -4.4, 0.263687 1.15529 -4.4, 0.738835 0.92647 -4.4, -4.44089e-016 2.5 -4.4, 
+            -0.263687 1.15529 -4.4, 0.263687 1.15529 -4.4, -4.44089e-016 2.5 -4.4, -2.13397 2.5 -5.3, 
+            -4.44089e-016 2.5 -4.4, 0 2.5 -5.3, 1.185 1.78806e-015 -4.4, 1.46932 2.02257 -4.4, 
+            0.772738 2.37753 -4.4, 0.772738 2.37753 -5.3, 0.772738 2.37753 -4.4, 1.46932 2.02257 -4.4, 
+            1.06765 0.514152 -4.4, 1.185 1.78806e-015 -4.4, 0.772738 2.37753 -4.4, 0.738835 0.92647 -4.4, 
+            1.06765 0.514152 -4.4, 0.772738 2.37753 -4.4, 0 2.5 -5.3, 0.772738 2.37753 -4.4, 
+            0.772738 2.37753 -5.3, 2.02242 -1.46961 -4.4, 2.02242 1.46961 -4.4, 1.46932 2.02257 -4.4, 
+            1.46932 2.02257 -5.3, 1.46932 2.02257 -4.4, 2.02242 1.46961 -4.4, 1.46932 -2.02257 -4.4, 
+            2.02242 -1.46961 -4.4, 1.46932 2.02257 -4.4, 1.185 1.78806e-015 -4.4, 1.46932 -2.02257 -4.4, 
+            1.46932 2.02257 -4.4, 0.772738 2.37753 -5.3, 1.46932 2.02257 -4.4, 1.46932 2.02257 -5.3, 
+            2.37769 -0.772293 -4.4, 2.37769 0.772293 -4.4, 2.02242 1.46961 -4.4, 2.02242 1.46961 -5.3, 
+            2.02242 1.46961 -4.4, 2.37769 0.772293 -4.4, 2.02242 -1.46961 -4.4, 2.37769 -0.772293 -4.4, 
+            2.02242 1.46961 -4.4, 1.46932 2.02257 -5.3, 2.02242 1.46961 -4.4, 2.02242 1.46961 -5.3, 
+            2.37769 -0.772293 -4.4, 2.49993 2.26861e-017 -4.4, 2.37769 0.772293 -4.4, 2.37769 0.772293 -5.3, 
+            2.37769 0.772293 -4.4, 2.49993 2.26861e-017 -4.4, 2.02242 1.46961 -5.3, 2.37769 0.772293 -4.4, 
+            2.37769 0.772293 -5.3, 2.49993 -5.50858e-017 -5.3, 2.49993 2.26861e-017 -4.4, 2.37769 -0.772293 -4.4, 
+            2.37769 0.772293 -5.3, 2.49993 2.26861e-017 -4.4, 2.49993 -5.50858e-017 -5.3, 2.37769 -0.772293 -5.3, 
+            2.37769 -0.772293 -4.4, 2.02242 -1.46961 -4.4, 2.49993 -5.50858e-017 -5.3, 2.37769 -0.772293 -4.4, 
+            2.37769 -0.772293 -5.3, 2.02242 -1.46961 -5.3, 2.02242 -1.46961 -4.4, 1.46932 -2.02257 -4.4, 
+            2.37769 -0.772293 -5.3, 2.02242 -1.46961 -4.4, 2.02242 -1.46961 -5.3, 1.06765 -0.514152 -4.4, 
+            0.772738 -2.37753 -4.4, 1.46932 -2.02257 -4.4, 1.46932 -2.02257 -5.3, 1.46932 -2.02257 -4.4, 
+            0.772738 -2.37753 -4.4, 1.06765 -0.514152 -4.4, 1.46932 -2.02257 -4.4, 1.185 1.78806e-015 -4.4, 
+            2.02242 -1.46961 -5.3, 1.46932 -2.02257 -4.4, 1.46932 -2.02257 -5.3, 0.263687 -1.15529 -4.4, 
+            -1.33227e-015 -2.5 -4.4, 0.772738 -2.37753 -4.4, 0.772738 -2.37753 -5.3, 0.772738 -2.37753 -4.4, 
+            -1.33227e-015 -2.5 -4.4, 0.738835 -0.92647 -4.4, 0.263687 -1.15529 -4.4, 0.772738 -2.37753 -4.4, 
+            1.06765 -0.514152 -4.4, 0.738835 -0.92647 -4.4, 0.772738 -2.37753 -4.4, 1.46932 -2.02257 -5.3, 
+            0.772738 -2.37753 -4.4, 0.772738 -2.37753 -5.3, -1.06765 -0.514152 -4.4, -2.5 -2.5 -4.4, 
+            -1.33227e-015 -2.5 -4.4, -1.77636e-015 -2.5 -5.3, -1.33227e-015 -2.5 -4.4, -2.5 -2.5 -4.4, 
+            -0.738835 -0.92647 -4.4, -1.06765 -0.514152 -4.4, -1.33227e-015 -2.5 -4.4, -0.263687 -1.15529 -4.4, 
+            -0.738835 -0.92647 -4.4, -1.33227e-015 -2.5 -4.4, 0.263687 -1.15529 -4.4, -0.263687 -1.15529 -4.4, 
+            -1.33227e-015 -2.5 -4.4, 0.772738 -2.37753 -5.3, -1.33227e-015 -2.5 -4.4, -1.77636e-015 -2.5 -5.3, 
+            -2.5 -2.5 -5.3, -2.5 -2.5 -4.4, -2.99986 -2.63394 -4.4, -2.5 -2.5 -5.3, 
+            -1.77636e-015 -2.5 -5.3, -2.5 -2.5 -4.4, -2.99986 -2.63394 -5.3, -2.99986 -2.63394 -4.4, 
+            -3.36606 -3.00014 -4.4, -2.5 -2.5 -5.3, -2.99986 -2.63394 -4.4, -2.99986 -2.63394 -5.3, 
+            -3.95 1.74516e-015 -4.4, -3.5 -3.5 -4.4, -3.36606 -3.00014 -4.4, -3.36606 -3.00014 -5.3, 
+            -3.36606 -3.00014 -4.4, -3.5 -3.5 -4.4, -2.99986 -2.63394 -5.3, -3.36606 -3.00014 -4.4, 
+            -3.36606 -3.00014 -5.3, -3.36606 -3.00014 -5.3, -3.5 -3.5 -4.4, -3.5 -3.5 -5.3, 
+            1.185 1.93867e-015 -5.3, 1.185 1.78806e-015 -4.4, 1.06765 0.514152 -4.4, 1.06765 -0.514152 -5.3, 
+            1.06765 -0.514152 -4.4, 1.185 1.78806e-015 -4.4, 1.06765 -0.514152 -5.3, 1.185 1.78806e-015 -4.4, 
+            1.185 1.93867e-015 -5.3, 1.06765 0.514152 -5.3, 1.06765 0.514152 -4.4, 0.738835 0.92647 -4.4, 
+            1.06765 0.514152 -5.3, 1.185 1.93867e-015 -5.3, 1.06765 0.514152 -4.4, 0.738835 0.92647 -5.3, 
+            0.738835 0.92647 -4.4, 0.263687 1.15529 -4.4, 1.06765 0.514152 -5.3, 0.738835 0.92647 -4.4, 
+            0.738835 0.92647 -5.3, 0.263687 1.15529 -5.3, 0.263687 1.15529 -4.4, -0.263687 1.15529 -4.4, 
+            0.738835 0.92647 -5.3, 0.263687 1.15529 -4.4, 0.263687 1.15529 -5.3, -0.263687 1.15529 -5.3, 
+            -0.263687 1.15529 -4.4, -0.738835 0.92647 -4.4, 0.263687 1.15529 -5.3, -0.263687 1.15529 -4.4, 
+            -0.263687 1.15529 -5.3, -0.738835 0.92647 -5.3, -0.738835 0.92647 -4.4, -1.06765 0.514152 -4.4, 
+            -0.263687 1.15529 -5.3, -0.738835 0.92647 -4.4, -0.738835 0.92647 -5.3, -1.06765 0.514152 -5.3, 
+            -1.06765 0.514152 -4.4, -1.185 1.76826e-015 -4.4, -0.738835 0.92647 -5.3, -1.06765 0.514152 -4.4, 
+            -1.06765 0.514152 -5.3, -1.185 1.62864e-015 -5.3, -1.185 1.76826e-015 -4.4, -1.06765 -0.514152 -4.4, 
+            -1.06765 0.514152 -5.3, -1.185 1.76826e-015 -4.4, -1.185 1.62864e-015 -5.3, -1.06765 -0.514152 -5.3, 
+            -1.06765 -0.514152 -4.4, -0.738835 -0.92647 -4.4, -1.185 1.62864e-015 -5.3, -1.06765 -0.514152 -4.4, 
+            -1.06765 -0.514152 -5.3, -0.738835 -0.92647 -5.3, -0.738835 -0.92647 -4.4, -0.263687 -1.15529 -4.4, 
+            -1.06765 -0.514152 -5.3, -0.738835 -0.92647 -4.4, -0.738835 -0.92647 -5.3, -0.263687 -1.15529 -5.3, 
+            -0.263687 -1.15529 -4.4, 0.263687 -1.15529 -4.4, -0.738835 -0.92647 -5.3, -0.263687 -1.15529 -4.4, 
+            -0.263687 -1.15529 -5.3, 0.263687 -1.15529 -5.3, 0.263687 -1.15529 -4.4, 0.738835 -0.92647 -4.4, 
+            -0.263687 -1.15529 -5.3, 0.263687 -1.15529 -4.4, 0.263687 -1.15529 -5.3, 0.738835 -0.92647 -5.3, 
+            0.738835 -0.92647 -4.4, 1.06765 -0.514152 -4.4, 0.263687 -1.15529 -5.3, 0.738835 -0.92647 -4.4, 
+            0.738835 -0.92647 -5.3, 0.738835 -0.92647 -5.3, 1.06765 -0.514152 -4.4, 1.06765 -0.514152 -5.3, 
+            -3.95 9.42076e-016 -5.3, -3.95 1.74516e-015 -4.4, -4.07414 0.381946 -4.4, -4.07414 -0.381946 -5.3, 
+            -4.07414 -0.381946 -4.4, -3.95 1.74516e-015 -4.4, -4.07414 -0.381946 -5.3, -3.95 1.74516e-015 -4.4, 
+            -3.95 9.42076e-016 -5.3, -4.07414 0.381946 -5.3, -4.07414 0.381946 -4.4, -4.39933 0.618217 -4.4, 
+            -4.07414 0.381946 -5.3, -3.95 9.42076e-016 -5.3, -4.07414 0.381946 -4.4, -4.39933 0.618217 -5.3, 
+            -4.39933 0.618217 -4.4, -4.80067 0.618217 -4.4, -4.07414 0.381946 -5.3, -4.39933 0.618217 -4.4, 
+            -4.39933 0.618217 -5.3, -4.80067 0.618217 -5.3, -4.80067 0.618217 -4.4, -5.12586 0.381946 -4.4, 
+            -4.39933 0.618217 -5.3, -4.80067 0.618217 -4.4, -4.80067 0.618217 -5.3, -5.12586 0.381946 -5.3, 
+            -5.12586 0.381946 -4.4, -5.25 1.7343e-015 -4.4, -4.80067 0.618217 -5.3, -5.12586 0.381946 -4.4, 
+            -5.12586 0.381946 -5.3, -5.25 7.72017e-016 -5.3, -5.25 1.7343e-015 -4.4, -5.12586 -0.381946 -4.4, 
+            -5.12586 0.381946 -5.3, -5.25 1.7343e-015 -4.4, -5.25 7.72017e-016 -5.3, -5.12586 -0.381946 -5.3, 
+            -5.12586 -0.381946 -4.4, -4.80067 -0.618217 -4.4, -5.25 7.72017e-016 -5.3, -5.12586 -0.381946 -4.4, 
+            -5.12586 -0.381946 -5.3, -4.80067 -0.618217 -5.3, -4.80067 -0.618217 -4.4, -4.39933 -0.618217 -4.4, 
+            -5.12586 -0.381946 -5.3, -4.80067 -0.618217 -4.4, -4.80067 -0.618217 -5.3, -4.39933 -0.618217 -5.3, 
+            -4.39933 -0.618217 -4.4, -4.07414 -0.381946 -4.4, -4.80067 -0.618217 -5.3, -4.39933 -0.618217 -4.4, 
+            -4.39933 -0.618217 -5.3, -4.39933 -0.618217 -5.3, -4.07414 -0.381946 -4.4, -4.07414 -0.381946 -5.3, 
+            -5.5 -5.76628 3, -5.5 -6.13707 -2.14139, -5.5 -5.57601 -3.34026, -9 -5.75313 -3.02503, 
+            -5.5 -5.57601 -3.34026, -5.5 -6.13707 -2.14139, -9 -5.06374 -4.07536, -5.5 -5.57601 -3.34026, 
+            -9 -5.75313 -3.02503, -5.5 -6.25405 1.77088, -5.5 -6.44358 -0.854584, -5.5 -6.13707 -2.14139, 
+            -9 -6.22783 -1.86117, -5.5 -6.13707 -2.14139, -5.5 -6.44358 -0.854584, -5.5 -5.76628 3, 
+            -5.5 -6.25405 1.77088, -5.5 -6.13707 -2.14139, -9 -5.75313 -3.02503, -5.5 -6.13707 -2.14139, 
+            -9 -6.22783 -1.86117, -5.5 -6.25405 1.77088, -5.5 -6.4831 0.467556, -5.5 -6.44358 -0.854584, 
+            -9 -6.46953 -0.628297, -5.5 -6.44358 -0.854584, -5.5 -6.4831 0.467556, -9 -6.22783 -1.86117, 
+            -5.5 -6.44358 -0.854584, -9 -6.46953 -0.628297, -9 -6.46947 0.628915, -5.5 -6.4831 0.467556, 
+            -5.5 -6.25405 1.77088, -9 -6.46953 -0.628297, -5.5 -6.4831 0.467556, -9 -6.46947 0.628915, 
+            -9 -6.22773 1.8615, -5.5 -6.25405 1.77088, -5.5 -5.76628 3, -9 -6.46947 0.628915, 
+            -5.5 -6.25405 1.77088, -9 -6.22773 1.8615, -5.5 0.524092 -0.324692, -5.5 3 3, 
+            -5.5 -5.76628 3, -4.5 -3.6 3, -5.5 -5.76628 3, -5.5 3 3, 
+            -5.5 0.110983 -0.32484, -5.5 0.524092 -0.324692, -5.5 -5.76628 3, -5.5 -0.181057 -0.479714, 
+            -5.5 0.110983 -0.32484, -5.5 -5.76628 3, -5.5 -0.27991 -0.7, -5.5 -0.181057 -0.479714, 
+            -5.5 -5.76628 3, -4.5 -3.6 3, 0.5 -5.76628 3, -5.5 -5.76628 3, 
+            0.93799 -5.32829 3.72282, -5.5 -5.76628 3, 0.5 -5.76628 3, -9 -5.75307 3.02515, 
+            -5.5 -5.76628 3, 0.93799 -5.32829 3.72282, -9 -6.22773 1.8615, -5.5 -5.76628 3, 
+            -9 -5.75307 3.02515, -5.5 0.524092 -0.324692, -5.5 0.816885 -0.479789, -5.5 3 3, 
+            -4.5 3 3, -4.5 -3.6 3, -5.5 3 3, -5.5 5.2 3, 
+            -4.5 3 3, -5.5 3 3, -5.5 3 5.76628, -5.5 5.2 3, 
+            -5.5 3 3, -9 3 5.76628, -5.5 3 5.76628, -5.5 3 3, 
+            -7.7083 -1.5369 -0.7, -5.5 0.915671 -0.7, -5.5 0.816885 -0.479789, -7.62114 -1.61538 -0.982922, 
+            -5.5 0.816818 -0.920286, -5.5 0.915671 -0.7, -7.62114 -1.61538 -0.982922, -5.5 0.915671 -0.7, 
+            -7.7083 -1.5369 -0.7, -7.62114 -1.61538 -0.417078, -5.5 0.816885 -0.479789, -5.5 0.524092 -0.324692, 
+            -7.62114 -1.61538 -0.417078, -7.7083 -1.5369 -0.7, -5.5 0.816885 -0.479789, -7.41105 -1.80455 -0.300062, 
+            -5.5 0.524092 -0.324692, -5.5 0.110983 -0.32484, -7.62114 -1.61538 -0.417078, -5.5 0.524092 -0.324692, 
+            -7.41105 -1.80455 -0.300062, -7.20095 -1.99372 -0.417078, -5.5 0.110983 -0.32484, -5.5 -0.181057 -0.479714, 
+            -7.41105 -1.80455 -0.300062, -5.5 0.110983 -0.32484, -7.20095 -1.99372 -0.417078, -7.20095 -1.99372 -0.417078, 
+            -5.5 -0.181057 -0.479714, -5.5 -0.27991 -0.7, -7.11379 -2.0722 -0.7, -5.5 -0.27991 -0.7, 
+            -5.5 -0.181125 -0.920211, -7.20095 -1.99372 -0.417078, -5.5 -0.27991 -0.7, -7.11379 -2.0722 -0.7, 
+            -7.20095 -1.99372 -0.982922, -5.5 -0.181125 -0.920211, -5.5 0.111668 -1.07531, -7.11379 -2.0722 -0.7, 
+            -5.5 -0.181125 -0.920211, -7.20095 -1.99372 -0.982922, -7.41105 -1.80455 -1.09994, -5.5 0.111668 -1.07531, 
+            -5.5 0.524778 -1.07516, -7.20095 -1.99372 -0.982922, -5.5 0.111668 -1.07531, -7.41105 -1.80455 -1.09994, 
+            -7.62114 -1.61538 -0.982922, -5.5 0.524778 -1.07516, -5.5 0.816818 -0.920286, -7.41105 -1.80455 -1.09994, 
+            -5.5 0.524778 -1.07516, -7.62114 -1.61538 -0.982922, -4.5 -3.6 3, 1.5 -4.76628 3, 
+            0.5 -5.76628 3, 1.5 -4.76628 4.41957, 0.5 -5.76628 3, 1.5 -4.76628 3, 
+            1.5 -4.76628 4.41957, 0.93799 -5.32829 3.72282, 0.5 -5.76628 3, -4.5 -3.6 3, 
+            1.5 -3.6 3, 1.5 -4.76628 3, 1.5 -3.6 4.25, 1.5 -4.76628 3, 
+            1.5 -3.6 3, 1.5 -4.76628 4.41957, 1.5 -4.76628 3, 1.5 -3.6 4.25, 
+            1.5 -3.6 4.25, 1.5 -3.6 3, -4.5 -3.6 3, -4.5 -3.6 4.25, 
+            -4.5 -3.6 3, -4.5 3 3, -2.93301 -3.6 4.25, -4.5 -3.6 3, 
+            -4.5 -3.6 4.25, -2.75008 -3.6 4.06706, -2.5 -3.6 4, -4.5 -3.6 3, 
+            -2.24992 -3.6 4.06706, -4.5 -3.6 3, -2.5 -3.6 4, -2.93301 -3.6 4.25, 
+            -2.75008 -3.6 4.06706, -4.5 -3.6 3, -2.24992 -3.6 4.06706, 1.5 -3.6 4.25, 
+            -4.5 -3.6 3, -5.5 5.2 3, 2.7 3 3, -4.5 3 3, 
+            -4.5 3 4.25, -4.5 3 3, 2.7 3 3, -4.5 -3.49952 4.625, 
+            -4.5 -3.6 4.25, -4.5 3 3, -4.5 -3.225 4.89952, -4.5 -3.49952 4.625, 
+            -4.5 3 3, -4.5 -2.85 5, -4.5 -3.225 4.89952, -4.5 3 3, 
+            -4.5 2.25 5, -4.5 -2.85 5, -4.5 3 3, -4.5 2.625 4.89952, 
+            -4.5 2.25 5, -4.5 3 3, -4.5 2.89952 4.625, -4.5 2.625 4.89952, 
+            -4.5 3 3, -4.5 3 4.25, -4.5 2.89952 4.625, -4.5 3 3, 
+            -5.5 5.2 3, 0.5 5.2 3, 2.7 3 3, 2.7 3 4.25, 
+            2.7 3 3, 0.5 5.2 3, -2.5 3 4, -4.5 3 4.25, 
+            2.7 3 3, -2.24992 3 4.06706, -2.5 3 4, 2.7 3 3, 
+            -2.06699 3 4.25, -2.24992 3 4.06706, 2.7 3 3, 2.7 3 4.25, 
+            -2.06699 3 4.25, 2.7 3 3, 0.5 5.2 3.9, 0.5 5.2 3, 
+            -5.5 5.2 3, 1.16874 4.53126 4.65996, 0.5 5.2 3, 0.5 5.2 3.9, 
+            2.00355 3.69645 5.34677, 2.7 3 4.25, 0.5 5.2 3, 1.16874 4.53126 4.65996, 
+            2.00355 3.69645 5.34677, 0.5 5.2 3, -5.5 5.2 3.9, -5.5 5.2 3, 
+            -5.5 3 5.76628, -5.5 5.2 3.9, 0.5 5.2 3.9, -5.5 5.2 3, 
+            -9 3 5.76628, -5.19615 3 -5.76628, -9 3 -5.76628, -5.6453 2.03238 -6.17415, 
+            -9 3 -5.76628, -5.19615 3 -5.76628, -9 2.25 1.45, -9 3 5.76628, 
+            -9 3 -5.76628, -9 1.91168 -6.2125, -9 3 -5.76628, -5.6453 2.03238 -6.17415, 
+            -9 -0.55 -1.65, -9 3 -5.76628, -9 -0.75 -1.45, -9 1.91168 -6.2125, 
+            -9 -0.75 -1.45, -9 3 -5.76628, -9 2.25 -1.45, -9 2.25 1.45, 
+            -9 3 -5.76628, -9 2.05 -1.65, -9 2.25 -1.45, -9 3 -5.76628, 
+            -9 -0.55 -1.65, -9 2.05 -1.65, -9 3 -5.76628, -9 3 5.76628, 
+            -5.19615 3 -5.3, -5.19615 3 -5.76628, -5.6889 1.90676 -5.3, -5.19615 3 -5.76628, 
+            -5.19615 3 -5.3, -5.6453 2.03238 -6.17415, -5.19615 3 -5.76628, -5.6889 1.90676 -5.3, 
+            -5.12586 0.381946 -5.3, -5.19615 3 -5.3, -3 3 -5.3, -5.32827 -2.75841 -5.3, 
+            -5.6889 1.90676 -5.3, -5.19615 3 -5.3, -5.25 7.72017e-016 -5.3, -5.32827 -2.75841 -5.3, 
+            -5.19615 3 -5.3, -5.12586 0.381946 -5.3, -5.25 7.72017e-016 -5.3, -5.19615 3 -5.3, 
+            -2.99986 -2.63394 -5.3, -3 3 -5.3, -2.63395 2.63401 -5.3, -3.36606 -3.00014 -5.3, 
+            -3.5 -3.5 -5.3, -3 3 -5.3, -3.95 9.42076e-016 -5.3, -3 3 -5.3, 
+            -3.5 -3.5 -5.3, -2.99986 -2.63394 -5.3, -3.36606 -3.00014 -5.3, -3 3 -5.3, 
+            -4.07414 0.381946 -5.3, -3 3 -5.3, -3.95 9.42076e-016 -5.3, -4.80067 0.618217 -5.3, 
+            -5.12586 0.381946 -5.3, -3 3 -5.3, -4.39933 0.618217 -5.3, -4.80067 0.618217 -5.3, 
+            -3 3 -5.3, -4.07414 0.381946 -5.3, -4.39933 0.618217 -5.3, -3 3 -5.3, 
+            -9 2.26705 6.09184, -5.5 3 5.76628, -9 3 5.76628, -5.5 4.56224 4.62987, 
+            -5.5 5.2 3.9, -5.5 3 5.76628, -5.5 3.823 5.25683, -5.5 4.56224 4.62987, 
+            -5.5 3 5.76628, 2.00355 3.69645 5.34677, -5.5 3.823 5.25683, -5.5 3 5.76628, 
+            2.00355 3.69645 5.34677, -5.5 3 5.76628, 3 2.7 5.9127, -9 2.26705 6.09184, 
+            3 2.7 5.9127, -5.5 3 5.76628, -9 1.5 6, -9 3 5.76628, 
+            -9 -0.37385 6, -9 -0.37385 4.5, -9 -0.37385 6, -9 3 5.76628, 
+            -9 2.26705 6.09184, -9 3 5.76628, -9 1.5 6, -9 -0.37385 4.5, 
+            -9 3 5.76628, -9 2.25 1.45, -2.5 5.12348 4, 0.5 5.2 3.9, 
+            -5.5 5.2 3.9, -2.00875 4.5986 4.59379, 1.16874 4.53126 4.65996, 0.5 5.2 3.9, 
+            -2.21001 5.04957 4.0929, 0.5 5.2 3.9, -2.5 5.12348 4, -2.02693 4.8402 4.33849, 
+            -2.00875 4.5986 4.59379, 0.5 5.2 3.9, -2.21001 5.04957 4.0929, -2.02693 4.8402 4.33849, 
+            0.5 5.2 3.9, -2.5 5.12348 4, -5.5 5.2 3.9, -5.5 4.56224 4.62987, 
+            -2.93301 -3.6 4.25, -4.5 -3.6 4.25, -4.5 -3.49952 4.625, -2.93222 -3.40784 4.75131, 
+            -4.5 -3.49952 4.625, -4.5 -3.225 4.89952, -3.00004 -3.55618 4.5026, -2.93301 -3.6 4.25, 
+            -4.5 -3.49952 4.625, -2.93222 -3.40784 4.75131, -3.00004 -3.55618 4.5026, -4.5 -3.49952 4.625, 
+            -2.73846 -3.14534 4.9394, -4.5 -3.225 4.89952, -4.5 -2.85 5, -2.73846 -3.14534 4.9394, 
+            -2.93222 -3.40784 4.75131, -4.5 -3.225 4.89952, -2.5 2.25 5, -4.5 -2.85 5, 
+            -4.5 2.25 5, -2.5 -2.85 5, -4.5 -2.85 5, -2.5 2.25 5, 
+            -2.73846 -3.14534 4.9394, -4.5 -2.85 5, -2.5 -2.85 5, -2.5 2.25 5, 
+            -4.5 2.25 5, -4.5 2.625 4.89952, -2.93357 2.80993 4.74897, -4.5 2.625 4.89952, 
+            -4.5 2.89952 4.625, -2.73954 2.54672 4.93881, -2.5 2.25 5, -4.5 2.625 4.89952, 
+            -2.93357 2.80993 4.74897, -2.73954 2.54672 4.93881, -4.5 2.625 4.89952, -3.00005 2.95676 4.50098, 
+            -4.5 2.89952 4.625, -4.5 3 4.25, -3.00005 2.95676 4.50098, -2.93357 2.80993 4.74897, 
+            -4.5 2.89952 4.625, -2.75008 3 4.06706, -4.5 3 4.25, -2.5 3 4, 
+            -2.75008 3 4.06706, -2.93301 3 4.25, -4.5 3 4.25, -3.00005 2.95676 4.50098, 
+            -4.5 3 4.25, -2.93301 3 4.25, -2.5 -5.12348 4, -2.5 -3.6 4, 
+            -2.75008 -3.6 4.06706, -2.21061 -5.04991 4.09248, -2.24992 -3.6 4.06706, -2.5 -3.6 4, 
+            -2.21061 -5.04991 4.09248, -2.5 -3.6 4, -2.5 -5.12348 4, -2.78355 -5.05354 4.088, 
+            -2.75008 -3.6 4.06706, -2.93301 -3.6 4.25, -2.5 -5.12348 4, -2.75008 -3.6 4.06706, 
+            -2.78355 -5.05354 4.088, -2.977 -4.82925 4.35068, -2.93301 -3.6 4.25, -3.00004 -3.55618 4.5026, 
+            -2.89861 -4.96251 4.19804, -2.93301 -3.6 4.25, -2.977 -4.82925 4.35068, -2.78355 -5.05354 4.088, 
+            -2.93301 -3.6 4.25, -2.89861 -4.96251 4.19804, -2.24992 -3.6 4.06706, -2.06699 -3.6 4.25, 
+            1.5 -3.6 4.25, -1.99995 -3.55613 4.50276, 1.5 -3.6 4.25, -2.06699 -3.6 4.25, 
+            1.5 -3.52081 4.58542, 1.5 -3.6 4.25, -1.99995 -3.55613 4.50276, 1.5 -4.76628 4.41957, 
+            1.5 -3.6 4.25, 1.5 -3.52081 4.58542, -2.21061 -5.04991 4.09248, -2.06699 -3.6 4.25, 
+            -2.24992 -3.6 4.06706, -2.02717 -4.84083 4.33779, -1.99995 -3.55613 4.50276, -2.06699 -3.6 4.25, 
+            -2.02717 -4.84083 4.33779, -2.06699 -3.6 4.25, -2.21061 -5.04991 4.09248, -2.5 -2.85 5, 
+            -0.866113 0.499799 5, -1 1.71241e-015 5, -1 1.89e-015 6, -1 1.71241e-015 5, 
+            -0.866113 0.499799 5, -2.5 -2.85 5, -1 1.71241e-015 5, -0.866113 -0.499799 5, 
+            -0.866113 -0.499799 6, -0.866113 -0.499799 5, -1 1.71241e-015 5, -0.866113 -0.499799 6, 
+            -1 1.71241e-015 5, -1 1.89e-015 6, -2.5 2.25 5, -0.50012 0.865883 5, 
+            -0.866113 0.499799 5, -0.866113 0.499799 6, -0.866113 0.499799 5, -0.50012 0.865883 5, 
+            -2.5 -2.85 5, -2.5 2.25 5, -0.866113 0.499799 5, -0.866113 0.499799 6, 
+            -1 1.89e-015 6, -0.866113 0.499799 5, 3 2.25 5, 8.88178e-016 0.99992 5, 
+            -0.50012 0.865883 5, -0.50012 0.865883 6, -0.50012 0.865883 5, 8.88178e-016 0.99992 5, 
+            -2.5 2.25 5, 3 2.25 5, -0.50012 0.865883 5, -0.866113 0.499799 6, 
+            -0.50012 0.865883 5, -0.50012 0.865883 6, 3 2.25 5, 0.50012 0.865883 5, 
+            8.88178e-016 0.99992 5, 8.88178e-016 0.99992 6, 8.88178e-016 0.99992 5, 0.50012 0.865883 5, 
+            -0.50012 0.865883 6, 8.88178e-016 0.99992 5, 8.88178e-016 0.99992 6, 3 2.25 5, 
+            0.866113 0.499799 5, 0.50012 0.865883 5, 0.50012 0.865883 6, 0.50012 0.865883 5, 
+            0.866113 0.499799 5, 8.88178e-016 0.99992 6, 0.50012 0.865883 5, 0.50012 0.865883 6, 
+            3 2.25 5, 1 1.72912e-015 5, 0.866113 0.499799 5, 0.866113 0.499799 6, 
+            0.866113 0.499799 5, 1 1.72912e-015 5, 0.50012 0.865883 6, 0.866113 0.499799 5, 
+            0.866113 0.499799 6, 1.60697 -2.85 5, 0.866113 -0.499799 5, 1 1.72912e-015 5, 
+            1 1.60056e-015 6, 1 1.72912e-015 5, 0.866113 -0.499799 5, 3 2.25 5, 
+            1.60697 -2.85 5, 1 1.72912e-015 5, 0.866113 0.499799 6, 1 1.72912e-015 5, 
+            1 1.60056e-015 6, 1.60697 -2.85 5, 0.50012 -0.865883 5, 0.866113 -0.499799 5, 
+            0.866113 -0.499799 6, 0.866113 -0.499799 5, 0.50012 -0.865883 5, 1 1.60056e-015 6, 
+            0.866113 -0.499799 5, 0.866113 -0.499799 6, -2.5 -2.85 5, -8.88178e-016 -0.99992 5, 
+            0.50012 -0.865883 5, 0.50012 -0.865883 6, 0.50012 -0.865883 5, -8.88178e-016 -0.99992 5, 
+            -2.5 -2.85 5, 0.50012 -0.865883 5, 1.60697 -2.85 5, 0.866113 -0.499799 6, 
+            0.50012 -0.865883 5, 0.50012 -0.865883 6, -2.5 -2.85 5, -0.50012 -0.865883 5, 
+            -8.88178e-016 -0.99992 5, -4.44089e-016 -0.99992 6, -8.88178e-016 -0.99992 5, -0.50012 -0.865883 5, 
+            0.50012 -0.865883 6, -8.88178e-016 -0.99992 5, -4.44089e-016 -0.99992 6, -2.5 -2.85 5, 
+            -0.866113 -0.499799 5, -0.50012 -0.865883 5, -0.50012 -0.865883 6, -0.50012 -0.865883 5, 
+            -0.866113 -0.499799 5, -4.44089e-016 -0.99992 6, -0.50012 -0.865883 5, -0.50012 -0.865883 6, 
+            -0.50012 -0.865883 6, -0.866113 -0.499799 5, -0.866113 -0.499799 6, 3 2.25 5, 
+            1.82865 -2.55891 5, 1.60697 -2.85 5, 1.78855 -2.59726 5.95854, 1.60697 -2.85 5, 
+            1.82865 -2.55891 5, 1.52409 -3.08181 4.96328, -2.5 -2.85 5, 1.60697 -2.85 5, 
+            1.57095 -2.93004 5.80214, 1.52409 -3.08181 4.96328, 1.60697 -2.85 5, 1.78855 -2.59726 5.95854, 
+            1.57095 -2.93004 5.80214, 1.60697 -2.85 5, 3 2.25 5, 2.13991 -2.36712 5, 
+            1.82865 -2.55891 5, 2.11088 -2.37881 6.04907, 1.82865 -2.55891 5, 2.13991 -2.36712 5, 
+            2.11088 -2.37881 6.04907, 1.78855 -2.59726 5.95854, 1.82865 -2.55891 5, 3 2.25 5, 
+            2.5 -2.3 5, 2.13991 -2.36712 5, 2.11088 -2.37881 6.04907, 2.13991 -2.36712 5, 
+            2.5 -2.3 5, 3 2.25 5, 3 -2.3 5, 2.5 -2.3 5, 
+            3 -2.3 6.07947, 2.5 -2.3 5, 3 -2.3 5, 2.5 -2.3 6.07947, 
+            2.11088 -2.37881 6.04907, 2.5 -2.3 5, 3 -2.3 6.07947, 2.5 -2.3 6.07947, 
+            2.5 -2.3 5, 3 -2.3 6.07947, 3 -2.3 5, 3 2.25 5, 
+            -2.26102 2.546 4.93912, 3 2.25 5, -2.5 2.25 5, 3 2.48747 4.96139, 
+            3 2.25 5, -2.26102 2.546 4.93912, 3 -1.5 6, 3 2.25 5, 
+            3 2.48747 4.96139, 3 -1.5 6, 3 -2.3 6.07947, 3 2.25 5, 
+            -2.5 4.15331 5, -2.5 2.25 5, -2.73954 2.54672 4.93881, -2.32541 4.19091 4.96853, 
+            -2.26102 2.546 4.93912, -2.5 2.25 5, -2.32541 4.19091 4.96853, -2.5 2.25 5, 
+            -2.5 4.15331 5, -2.76276 -4.24149 4.92542, -2.73846 -3.14534 4.9394, -2.5 -2.85 5, 
+            1.52409 -3.08181 4.96328, -2.26131 -3.14563 4.93928, -2.5 -2.85 5, -2.5 -4.15331 5, 
+            -2.5 -2.85 5, -2.26131 -3.14563 4.93928, -2.76276 -4.24149 4.92542, -2.5 -2.85 5, 
+            -2.5 -4.15331 5, -2.5 5.12348 4, -2.5 3 4, -2.24992 3 4.06706, 
+            -2.78366 5.05347 4.08808, -2.75008 3 4.06706, -2.5 3 4, -2.78366 5.05347 4.08808, 
+            -2.5 3 4, -2.5 5.12348 4, -2.21001 5.04957 4.0929, -2.24992 3 4.06706, 
+            -2.06699 3 4.25, -2.21001 5.04957 4.0929, -2.5 5.12348 4, -2.24992 3 4.06706, 
+            2.77036 2.92964 4.56712, -2.06699 3 4.25, 2.7 3 4.25, 2.77036 2.92964 4.56712, 
+            -1.99995 2.95661 4.50139, -2.06699 3 4.25, -2.02693 4.8402 4.33849, -2.06699 3 4.25, 
+            -1.99995 2.95661 4.50139, -2.21001 5.04957 4.0929, -2.06699 3 4.25, -2.02693 4.8402 4.33849, 
+            3 2.7 5.9127, 2.77036 2.92964 4.56712, 2.7 3 4.25, 2.00355 3.69645 5.34677, 
+            3 2.7 5.9127, 2.7 3 4.25, -2.89873 4.96237 4.19819, -2.93301 3 4.25, 
+            -2.75008 3 4.06706, -2.97704 4.82914 4.3508, -3.00005 2.95676 4.50098, -2.93301 3 4.25, 
+            -2.97704 4.82914 4.3508, -2.93301 3 4.25, -2.89873 4.96237 4.19819, -2.89873 4.96237 4.19819, 
+            -2.75008 3 4.06706, -2.78366 5.05347 4.08808, -2.99909 -4.66342 4.52797, -3.00004 -3.55618 4.5026, 
+            -2.93222 -3.40784 4.75131, -2.977 -4.82925 4.35068, -3.00004 -3.55618 4.5026, -2.99909 -4.66342 4.52797, 
+            -2.76276 -4.24149 4.92542, -2.93222 -3.40784 4.75131, -2.73846 -3.14534 4.9394, -2.95969 -4.49385 4.69631, 
+            -2.93222 -3.40784 4.75131, -2.76276 -4.24149 4.92542, -2.99909 -4.66342 4.52797, -2.93222 -3.40784 4.75131, 
+            -2.95969 -4.49385 4.69631, 1.5 -3.3 4.85, -2.06763 -3.40806 4.75107, -2.26131 -3.14563 4.93928, 
+            -2.18777 -4.28166 4.89054, -2.26131 -3.14563 4.93928, -2.06763 -3.40806 4.75107, 1.52409 -3.08181 4.96328, 
+            1.5 -3.3 4.85, -2.26131 -3.14563 4.93928, -2.32533 -4.19095 4.9685, -2.5 -4.15331 5, 
+            -2.26131 -3.14563 4.93928, -2.32533 -4.19095 4.9685, -2.26131 -3.14563 4.93928, -2.18777 -4.28166 4.89054, 
+            1.5 -3.52081 4.58542, -1.99995 -3.55613 4.50276, -2.06763 -3.40806 4.75107, -2.00873 -4.59872 4.59367, 
+            -2.06763 -3.40806 4.75107, -1.99995 -3.55613 4.50276, 1.5 -3.3 4.85, 1.5 -3.52081 4.58542, 
+            -2.06763 -3.40806 4.75107, -2.08076 -4.41291 4.77245, -2.06763 -3.40806 4.75107, -2.00873 -4.59872 4.59367, 
+            -2.18777 -4.28166 4.89054, -2.06763 -3.40806 4.75107, -2.08076 -4.41291 4.77245, -2.00873 -4.59872 4.59367, 
+            -1.99995 -3.55613 4.50276, -2.02717 -4.84083 4.33779, 1.5 -4.76628 4.41957, 1.5 -3.52081 4.58542, 
+            1.5 -3.3 4.85, 1.5 -3.3 5.6, 1.5 -3.3 4.85, 1.52409 -3.08181 4.96328, 
+            1.5 -4.07606 5.06311, 1.5 -4.76628 4.41957, 1.5 -3.3 4.85, 1.5 -3.3 5.6, 
+            1.5 -4.07606 5.06311, 1.5 -3.3 4.85, 1.57095 -2.93004 5.80214, 1.5 -3.3 5.6, 
+            1.52409 -3.08181 4.96328, -2.76288 4.24158 4.92534, -2.73954 2.54672 4.93881, -2.93357 2.80993 4.74897, 
+            -2.5 4.15331 5, -2.73954 2.54672 4.93881, -2.76288 4.24158 4.92534, -2.95975 4.49401 4.69616, 
+            -2.93357 2.80993 4.74897, -3.00005 2.95676 4.50098, -2.76288 4.24158 4.92534, -2.93357 2.80993 4.74897, 
+            -2.95975 4.49401 4.69616, -2.99909 4.66345 4.52794, -3.00005 2.95676 4.50098, -2.97704 4.82914 4.3508, 
+            -2.95975 4.49401 4.69616, -3.00005 2.95676 4.50098, -2.99909 4.66345 4.52794, 2.77036 2.92964 4.56712, 
+            -2.06703 2.809 4.75002, -1.99995 2.95661 4.50139, -2.00875 4.5986 4.59379, -1.99995 2.95661 4.50139, 
+            -2.06703 2.809 4.75002, -2.02693 4.8402 4.33849, -1.99995 2.95661 4.50139, -2.00875 4.5986 4.59379, 
+            3 2.7 4.85, -2.26102 2.546 4.93912, -2.06703 2.809 4.75002, -2.08073 4.41295 4.77241, 
+            -2.06703 2.809 4.75002, -2.26102 2.546 4.93912, 2.77036 2.92964 4.56712, 3 2.7 4.85, 
+            -2.06703 2.809 4.75002, -2.00875 4.5986 4.59379, -2.06703 2.809 4.75002, -2.08073 4.41295 4.77241, 
+            3 2.7 4.85, 3 2.48747 4.96139, -2.26102 2.546 4.93912, -2.1878 4.28163 4.89056, 
+            -2.26102 2.546 4.93912, -2.32541 4.19091 4.96853, -2.08073 4.41295 4.77241, -2.26102 2.546 4.93912, 
+            -2.1878 4.28163 4.89056, 3 2.5 6, 3 2.48747 4.96139, 3 2.7 4.85, 
+            3 -1.5 6, 3 2.48747 4.96139, 3 2.5 6, 3 2.7 5.9127, 
+            3 2.7 4.85, 2.77036 2.92964 4.56712, 3 2.60027 5.95723, 3 2.5 6, 
+            3 2.7 4.85, 3 2.7 5.9127, 3 2.60027 5.95723, 3 2.7 4.85, 
+            -2.95975 4.49401 4.69616, -5.5 4.56224 4.62987, -5.5 3.823 5.25683, -2.78366 5.05347 4.08808, 
+            -2.5 5.12348 4, -5.5 4.56224 4.62987, -2.89873 4.96237 4.19819, -2.78366 5.05347 4.08808, 
+            -5.5 4.56224 4.62987, -2.97704 4.82914 4.3508, -2.89873 4.96237 4.19819, -5.5 4.56224 4.62987, 
+            -2.99909 4.66345 4.52794, -2.97704 4.82914 4.3508, -5.5 4.56224 4.62987, -2.95975 4.49401 4.69616, 
+            -2.99909 4.66345 4.52794, -5.5 4.56224 4.62987, 1.16874 4.53126 4.65996, -5.5 3.823 5.25683, 
+            2.00355 3.69645 5.34677, -2.5 4.15331 5, -5.5 3.823 5.25683, 1.16874 4.53126 4.65996, 
+            -2.76288 4.24158 4.92534, -2.95975 4.49401 4.69616, -5.5 3.823 5.25683, -2.5 4.15331 5, 
+            -2.76288 4.24158 4.92534, -5.5 3.823 5.25683, -2.5 -5.12348 4, 0.93799 -5.32829 3.72282, 
+            1.5 -4.76628 4.41957, -2.5 -5.12348 4, -9 -5.75307 3.02515, 0.93799 -5.32829 3.72282, 
+            -2.00873 -4.59872 4.59367, 1.5 -4.76628 4.41957, 1.5 -4.07606 5.06311, -2.21061 -5.04991 4.09248, 
+            -2.5 -5.12348 4, 1.5 -4.76628 4.41957, -2.02717 -4.84083 4.33779, -2.21061 -5.04991 4.09248, 
+            1.5 -4.76628 4.41957, -2.00873 -4.59872 4.59367, -2.02717 -4.84083 4.33779, 1.5 -4.76628 4.41957, 
+            -7.58132 -3.48814 5.48487, 1.5 -4.07606 5.06311, 1.5 -3.3 5.6, -2.5 -4.15331 5, 
+            1.5 -4.07606 5.06311, -7.58132 -3.48814 5.48487, -2.32533 -4.19095 4.9685, 1.5 -4.07606 5.06311, 
+            -2.5 -4.15331 5, -2.08076 -4.41291 4.77245, -2.00873 -4.59872 4.59367, 1.5 -4.07606 5.06311, 
+            -2.18777 -4.28166 4.89054, -2.08076 -4.41291 4.77245, 1.5 -4.07606 5.06311, -2.32533 -4.19095 4.9685, 
+            -2.18777 -4.28166 4.89054, 1.5 -4.07606 5.06311, -7.58132 -3.48814 5.48487, 1.5 -3.3 5.6, 
+            1.57095 -2.93004 5.80214, -7.58132 -3.48814 5.48487, 1.57095 -2.93004 5.80214, 1.78855 -2.59726 5.95854, 
+            -6.6679 -2.47368 6.0109, 1.78855 -2.59726 5.95854, 2.11088 -2.37881 6.04907, -7.58132 -3.48814 5.48487, 
+            1.78855 -2.59726 5.95854, -6.6679 -2.47368 6.0109, -6.6679 -2.47368 6.0109, 2.11088 -2.37881 6.04907, 
+            2.5 -2.3 6.07947, 3 -1.90308 6.21516, 2.5 -2.3 6.07947, 3 -2.3 6.07947, 
+            -7.19688 -1.99739 6.1855, 2.5 -2.3 6.07947, 3 -1.90308 6.21516, -6.6679 -2.47368 6.0109, 
+            2.5 -2.3 6.07947, -7.19688 -1.99739 6.1855, 3 -1.90308 6.21516, 3 -2.3 6.07947, 
+            3 -1.5 6, -2.5 2.5 6, -0.866113 -0.499799 6, -1 1.89e-015 6, 
+            -2.5 2.5 6, -1 1.89e-015 6, -0.866113 0.499799 6, -4.78671 0.237985 6, 
+            -0.50012 -0.865883 6, -0.866113 -0.499799 6, -2.5 2.5 6, -2.5 1.5 6, 
+            -0.866113 -0.499799 6, -4.78671 0.237985 6, -0.866113 -0.499799 6, -2.5 1.5 6, 
+            -4.78671 0.237985 6, -4.44089e-016 -0.99992 6, -0.50012 -0.865883 6, 3 -1.5 6, 
+            0.50012 -0.865883 6, -4.44089e-016 -0.99992 6, -4.96245 -0.236891 6, 3 -1.5 6, 
+            -4.44089e-016 -0.99992 6, -4.78671 0.237985 6, -4.96245 -0.236891 6, -4.44089e-016 -0.99992 6, 
+            3 -1.5 6, 0.866113 -0.499799 6, 0.50012 -0.865883 6, 3 -1.5 6, 
+            1 1.60056e-015 6, 0.866113 -0.499799 6, 3 -1.5 6, 0.866113 0.499799 6, 
+            1 1.60056e-015 6, 3 -1.5 6, 0.50012 0.865883 6, 0.866113 0.499799 6, 
+            -2.5 2.5 6, 8.88178e-016 0.99992 6, 0.50012 0.865883 6, 3 2.5 6, 
+            -2.5 2.5 6, 0.50012 0.865883 6, 3 -1.5 6, 3 2.5 6, 
+            0.50012 0.865883 6, -2.5 2.5 6, -0.50012 0.865883 6, 8.88178e-016 0.99992 6, 
+            -2.5 2.5 6, -0.866113 0.499799 6, -0.50012 0.865883 6, -9 1.5 6, 
+            -9 -0.37385 6, -7.74928 -1.5 6, -9 -0.37385 4.5, -7.74928 -1.5 6, 
+            -9 -0.37385 6, -6.68973 -0.131363 6, -9 1.5 6, -7.74928 -1.5 6, 
+            -6.21484 -0.927324 6, -7.74928 -1.5 6, 3 -1.5 6, 3 -1.5 6.32456, 
+            3 -1.5 6, -7.74928 -1.5 6, -6.21484 -0.927324 6, -6.49525 -0.787461 6, 
+            -7.74928 -1.5 6, -6.66376 -0.52289 6, -7.74928 -1.5 6, -6.49525 -0.787461 6, 
+            -6.66376 -0.52289 6, -6.68973 -0.131363 6, -7.74928 -1.5 6, -7.74928 -1.5 6.32456, 
+            3 -1.5 6.32456, -7.74928 -1.5 6, -7.41105 -1.80455 4.63137, -7.74928 -1.5 6, 
+            -9 -0.37385 4.5, -7.19688 -1.99739 6.1855, -7.74928 -1.5 6.32456, -7.74928 -1.5 6, 
+            -6.6679 -2.47368 6.0109, -7.19688 -1.99739 6.1855, -7.74928 -1.5 6, -7.41105 -1.80455 4.63137, 
+            -6.6679 -2.47368 6.0109, -7.74928 -1.5 6, -5.2616 1.03395 6, -2.5 1.5 6, 
+            -9 1.5 6, -9 1.5 6.32456, -9 1.5 6, -2.5 1.5 6, 
+            -5.65353 1.01904 6, -5.2616 1.03395 6, -9 1.5 6, -6.10831 0.794203 6, 
+            -5.65353 1.01904 6, -9 1.5 6, -6.3332 0.588102 6, -6.10831 0.794203 6, 
+            -9 1.5 6, -6.51399 0.343514 6, -6.3332 0.588102 6, -9 1.5 6, 
+            -6.68973 -0.131363 6, -6.51399 0.343514 6, -9 1.5 6, -9 2.26705 6.09184, 
+            -9 1.5 6, -9 1.5 6.32456, -2.5 1.5 6.32456, -2.5 1.5 6, 
+            -2.5 2.5 6, -4.81267 0.629512 6, -4.78671 0.237985 6, -2.5 1.5 6, 
+            -4.98118 0.894084 6, -4.81267 0.629512 6, -2.5 1.5 6, -5.2616 1.03395 6, 
+            -4.98118 0.894084 6, -2.5 1.5 6, -9 1.5 6.32456, -2.5 1.5 6, 
+            -2.5 1.5 6.32456, 3 2.60027 5.95723, -2.5 2.5 6, 3 2.5 6, 
+            -2.5 2.00611 6.18268, -2.5 1.5 6.32456, -2.5 2.5 6, -9 2.26705 6.09184, 
+            -2.5 2.00611 6.18268, -2.5 2.5 6, 3 2.7 5.9127, -2.5 2.5 6, 
+            3 2.60027 5.95723, -9 2.26705 6.09184, -2.5 2.5 6, 3 2.7 5.9127, 
+            -5.82291 -0.912418 6, -6.21484 -0.927324 6, 3 -1.5 6, -5.36813 -0.687581 6, 
+            -5.82291 -0.912418 6, 3 -1.5 6, -5.14324 -0.48148 6, -5.36813 -0.687581 6, 
+            3 -1.5 6, -4.96245 -0.236891 6, -5.14324 -0.48148 6, 3 -1.5 6, 
+            3 -1.5 6.32456, 3 -1.90308 6.21516, 3 -1.5 6, -7.41105 -1.80455 4.63137, 
+            -6.49525 -0.787461 6, -6.21484 -0.927324 6, -7.63567 -1.6023 4.54751, -6.66376 -0.52289 6, 
+            -6.49525 -0.787461 6, -7.63567 -1.6023 4.54751, -6.49525 -0.787461 6, -7.41105 -1.80455 4.63137, 
+            -7.18663 -2.00661 4.54767, -6.21484 -0.927324 6, -5.82291 -0.912418 6, -7.18663 -2.00661 4.54767, 
+            -7.41105 -1.80455 4.63137, -6.21484 -0.927324 6, -6.9776 -2.19483 4.27435, -5.82291 -0.912418 6, 
+            -5.36813 -0.687581 6, -7.18663 -2.00661 4.54767, -5.82291 -0.912418 6, -6.9776 -2.19483 4.27435, 
+            -6.83824 -2.32031 3.80295, -5.36813 -0.687581 6, -5.14324 -0.48148 6, -6.9776 -2.19483 4.27435, 
+            -5.36813 -0.687581 6, -6.83824 -2.32031 3.80295, -6.81653 -2.33986 3.49931, -5.14324 -0.48148 6, 
+            -4.96245 -0.236891 6, -6.83824 -2.32031 3.80295, -5.14324 -0.48148 6, -6.81653 -2.33986 3.49931, 
+            -6.83831 -2.32024 3.19657, -4.96245 -0.236891 6, -4.78671 0.237985 6, -6.81653 -2.33986 3.49931, 
+            -4.96245 -0.236891 6, -6.83831 -2.32024 3.19657, -6.97739 -2.19502 2.72607, -4.78671 0.237985 6, 
+            -4.81267 0.629512 6, -6.83831 -2.32024 3.19657, -4.78671 0.237985 6, -6.97739 -2.19502 2.72607, 
+            -7.18642 -2.0068 2.45249, -4.81267 0.629512 6, -4.98118 0.894084 6, -6.97739 -2.19502 2.72607, 
+            -4.81267 0.629512 6, -7.18642 -2.0068 2.45249, -7.41105 -1.80455 2.36863, -4.98118 0.894084 6, 
+            -5.2616 1.03395 6, -7.18642 -2.0068 2.45249, -4.98118 0.894084 6, -7.41105 -1.80455 2.36863, 
+            -7.63546 -1.60249 2.45233, -5.2616 1.03395 6, -5.65353 1.01904 6, -7.41105 -1.80455 2.36863, 
+            -5.2616 1.03395 6, -7.63546 -1.60249 2.45233, -7.84449 -1.41427 2.72565, -5.65353 1.01904 6, 
+            -6.10831 0.794203 6, -7.63546 -1.60249 2.45233, -5.65353 1.01904 6, -7.84449 -1.41427 2.72565, 
+            -7.98385 -1.28879 3.19705, -6.10831 0.794203 6, -6.3332 0.588102 6, -7.84449 -1.41427 2.72565, 
+            -6.10831 0.794203 6, -7.98385 -1.28879 3.19705, -8.00556 -1.26925 3.50069, -6.3332 0.588102 6, 
+            -6.51399 0.343514 6, -7.98385 -1.28879 3.19705, -6.3332 0.588102 6, -8.00556 -1.26925 3.50069, 
+            -7.98378 -1.28886 3.80343, -6.51399 0.343514 6, -6.68973 -0.131363 6, -8.00556 -1.26925 3.50069, 
+            -6.51399 0.343514 6, -7.98378 -1.28886 3.80343, -7.8447 -1.41409 4.27393, -6.68973 -0.131363 6, 
+            -6.66376 -0.52289 6, -7.98378 -1.28886 3.80343, -6.68973 -0.131363 6, -7.8447 -1.41409 4.27393, 
+            -7.8447 -1.41409 4.27393, -6.66376 -0.52289 6, -7.63567 -1.6023 4.54751, -9 1.5 6.32456, 
+            -2.5 1.5 6.32456, -2.5 2.00611 6.18268, -9 2.26705 6.09184, -9 1.5 6.32456, 
+            -2.5 2.00611 6.18268, 0.738835 -0.92647 -5.3, 0.772738 -2.37753 -5.3, -1.77636e-015 -2.5 -5.3, 
+            -0.263687 -1.15529 -5.3, -1.77636e-015 -2.5 -5.3, -2.5 -2.5 -5.3, 0.263687 -1.15529 -5.3, 
+            0.738835 -0.92647 -5.3, -1.77636e-015 -2.5 -5.3, -0.263687 -1.15529 -5.3, 0.263687 -1.15529 -5.3, 
+            -1.77636e-015 -2.5 -5.3, 1.185 1.93867e-015 -5.3, 1.46932 -2.02257 -5.3, 0.772738 -2.37753 -5.3, 
+            1.06765 -0.514152 -5.3, 1.185 1.93867e-015 -5.3, 0.772738 -2.37753 -5.3, 0.738835 -0.92647 -5.3, 
+            1.06765 -0.514152 -5.3, 0.772738 -2.37753 -5.3, 2.02242 1.46961 -5.3, 2.02242 -1.46961 -5.3, 
+            1.46932 -2.02257 -5.3, 1.46932 2.02257 -5.3, 2.02242 1.46961 -5.3, 1.46932 -2.02257 -5.3, 
+            1.185 1.93867e-015 -5.3, 1.46932 2.02257 -5.3, 1.46932 -2.02257 -5.3, 2.37769 0.772293 -5.3, 
+            2.37769 -0.772293 -5.3, 2.02242 -1.46961 -5.3, 2.02242 1.46961 -5.3, 2.37769 0.772293 -5.3, 
+            2.02242 -1.46961 -5.3, 2.37769 0.772293 -5.3, 2.49993 -5.50858e-017 -5.3, 2.37769 -0.772293 -5.3, 
+            1.06765 0.514152 -5.3, 0.772738 2.37753 -5.3, 1.46932 2.02257 -5.3, 1.06765 0.514152 -5.3, 
+            1.46932 2.02257 -5.3, 1.185 1.93867e-015 -5.3, 0.263687 1.15529 -5.3, 0 2.5 -5.3, 
+            0.772738 2.37753 -5.3, 0.738835 0.92647 -5.3, 0.263687 1.15529 -5.3, 0.772738 2.37753 -5.3, 
+            1.06765 0.514152 -5.3, 0.738835 0.92647 -5.3, 0.772738 2.37753 -5.3, -1.06765 0.514152 -5.3, 
+            -2.13397 2.5 -5.3, 0 2.5 -5.3, -0.738835 0.92647 -5.3, -1.06765 0.514152 -5.3, 
+            0 2.5 -5.3, -0.263687 1.15529 -5.3, -0.738835 0.92647 -5.3, 0 2.5 -5.3, 
+            0.263687 1.15529 -5.3, -0.263687 1.15529 -5.3, 0 2.5 -5.3, -2.5 -2.5 -5.3, 
+            -2.63395 2.63401 -5.3, -2.13397 2.5 -5.3, -1.185 1.62864e-015 -5.3, -2.5 -2.5 -5.3, 
+            -2.13397 2.5 -5.3, -1.06765 0.514152 -5.3, -1.185 1.62864e-015 -5.3, -2.13397 2.5 -5.3, 
+            -2.5 -2.5 -5.3, -2.99986 -2.63394 -5.3, -2.63395 2.63401 -5.3, -5.77063 -1.6429 -5.3, 
+            -5.95456 0.736564 -5.3, -5.6889 1.90676 -5.3, -5.90518 1.06249 -6.41255, -5.6889 1.90676 -5.3, 
+            -5.95456 0.736564 -5.3, -5.32827 -2.75841 -5.3, -5.77063 -1.6429 -5.3, -5.6889 1.90676 -5.3, 
+            -5.90518 1.06249 -6.41255, -5.6453 2.03238 -6.17415, -5.6889 1.90676 -5.3, -5.77063 -1.6429 -5.3, 
+            -5.98216 -0.462401 -5.3, -5.95456 0.736564 -5.3, -5.99924 0.0952665 -6.49935, -5.95456 0.736564 -5.3, 
+            -5.98216 -0.462401 -5.3, -5.99924 0.0952665 -6.49935, -5.90518 1.06249 -6.41255, -5.95456 0.736564 -5.3, 
+            -5.93623 -0.872437 -6.44126, -5.98216 -0.462401 -5.3, -5.77063 -1.6429 -5.3, -5.93623 -0.872437 -6.44126, 
+            -5.99924 0.0952665 -6.49935, -5.98216 -0.462401 -5.3, -5.70965 -1.84388 -6.23293, -5.77063 -1.6429 -5.3, 
+            -5.32827 -2.75841 -5.3, -5.70965 -1.84388 -6.23293, -5.93623 -0.872437 -6.44126, -5.77063 -1.6429 -5.3, 
+            -4.80067 -0.618217 -5.3, -4.67333 -3.76298 -5.3, -5.32827 -2.75841 -5.3, -5.29935 -2.8137 -5.85943, 
+            -5.32827 -2.75841 -5.3, -4.67333 -3.76298 -5.3, -5.12586 -0.381946 -5.3, -4.80067 -0.618217 -5.3, 
+            -5.32827 -2.75841 -5.3, -5.25 7.72017e-016 -5.3, -5.12586 -0.381946 -5.3, -5.32827 -2.75841 -5.3, 
+            -5.29935 -2.8137 -5.85943, -5.70965 -1.84388 -6.23293, -5.32827 -2.75841 -5.3, -3.5 -3.5 -5.3, 
+            -3.5 -3.76298 -5.3, -4.67333 -3.76298 -5.3, -3.5 -4.2975 -4.87663, -4.67333 -3.76298 -5.3, 
+            -3.5 -3.76298 -5.3, -3.95 9.42076e-016 -5.3, -3.5 -3.5 -5.3, -4.67333 -3.76298 -5.3, 
+            -4.07414 -0.381946 -5.3, -3.95 9.42076e-016 -5.3, -4.67333 -3.76298 -5.3, -4.39933 -0.618217 -5.3, 
+            -4.07414 -0.381946 -5.3, -4.67333 -3.76298 -5.3, -4.80067 -0.618217 -5.3, -4.39933 -0.618217 -5.3, 
+            -4.67333 -3.76298 -5.3, -7.58132 -3.48814 -5.48487, -5.29935 -2.8137 -5.85943, -4.67333 -3.76298 -5.3, 
+            -7.58132 -3.48814 -5.48487, -4.67333 -3.76298 -5.3, -3.5 -4.2975 -4.87663, -0.738835 -0.92647 -5.3, 
+            -0.263687 -1.15529 -5.3, -2.5 -2.5 -5.3, -1.06765 -0.514152 -5.3, -0.738835 -0.92647 -5.3, 
+            -2.5 -2.5 -5.3, -1.185 1.62864e-015 -5.3, -1.06765 -0.514152 -5.3, -2.5 -2.5 -5.3, 
+            -9 1.91168 -6.2125, -5.6453 2.03238 -6.17415, -5.90518 1.06249 -6.41255, -9 0.761359 -6.45526, 
+            -5.90518 1.06249 -6.41255, -5.99924 0.0952665 -6.49935, -9 1.91168 -6.2125, -5.90518 1.06249 -6.41255, 
+            -9 0.761359 -6.45526, -9 -0.413891 -6.48677, -5.99924 0.0952665 -6.49935, -5.93623 -0.872437 -6.44126, 
+            -9 0.761359 -6.45526, -5.99924 0.0952665 -6.49935, -9 -0.413891 -6.48677, -8.15419 -1.13542 -6.40006, 
+            -5.93623 -0.872437 -6.44126, -5.70965 -1.84388 -6.23293, -8.15419 -1.13542 -6.40006, -9 -0.413891 -6.48677, 
+            -5.93623 -0.872437 -6.44126, -6.6679 -2.47368 -6.0109, -5.70965 -1.84388 -6.23293, -5.29935 -2.8137 -5.85943, 
+            -7.39217 -1.82154 -6.23952, -5.70965 -1.84388 -6.23293, -6.6679 -2.47368 -6.0109, -8.15419 -1.13542 -6.40006, 
+            -5.70965 -1.84388 -6.23293, -7.39217 -1.82154 -6.23952, -7.58132 -3.48814 -5.48487, -6.6679 -2.47368 -6.0109, 
+            -5.29935 -2.8137 -5.85943, -7.58132 -3.48814 -5.48487, -3.5 -4.2975 -4.87663, -8.36255 -4.35578 -4.8244, 
+            -7.19688 -1.99739 6.1855, 3 -1.90308 6.21516, 3 -1.5 6.32456, -7.19688 -1.99739 6.1855, 
+            3 -1.5 6.32456, -7.74928 -1.5 6.32456, -2.32541 4.19091 4.96853, -2.5 4.15331 5, 
+            1.16874 4.53126 4.65996, -2.1878 4.28163 4.89056, -2.32541 4.19091 4.96853, 1.16874 4.53126 4.65996, 
+            -2.08073 4.41295 4.77241, -2.1878 4.28163 4.89056, 1.16874 4.53126 4.65996, -2.00875 4.5986 4.59379, 
+            -2.08073 4.41295 4.77241, 1.16874 4.53126 4.65996, -9 -5.06374 -4.07536, -9 -5.75307 3.02515, 
+            -9 -5.06374 4.07536, -2.5 -5.12348 4, -9 -5.06374 4.07536, -9 -5.75307 3.02515, 
+            -6.6679 -2.47368 -6.0109, -9 -5.06374 -4.07536, -9 -5.06374 4.07536, -8.36255 -4.35578 4.8244, 
+            -6.6679 -2.47368 -6.0109, -9 -5.06374 4.07536, -2.95969 -4.49385 4.69631, -8.36255 -4.35578 4.8244, 
+            -9 -5.06374 4.07536, -2.99909 -4.66342 4.52797, -2.95969 -4.49385 4.69631, -9 -5.06374 4.07536, 
+            -2.977 -4.82925 4.35068, -2.99909 -4.66342 4.52797, -9 -5.06374 4.07536, -2.89861 -4.96251 4.19804, 
+            -2.977 -4.82925 4.35068, -9 -5.06374 4.07536, -2.78355 -5.05354 4.088, -2.89861 -4.96251 4.19804, 
+            -9 -5.06374 4.07536, -2.5 -5.12348 4, -2.78355 -5.05354 4.088, -9 -5.06374 4.07536, 
+            -9 -5.06374 -4.07536, -9 -6.22773 1.8615, -9 -5.75307 3.02515, -9 -5.06374 -4.07536, 
+            -9 -6.46947 0.628915, -9 -6.22773 1.8615, -9 -5.06374 -4.07536, -9 -6.46953 -0.628297, 
+            -9 -6.46947 0.628915, -9 -5.06374 -4.07536, -9 -6.22783 -1.86117, -9 -6.46953 -0.628297, 
+            -9 -5.06374 -4.07536, -9 -5.75313 -3.02503, -9 -6.22783 -1.86117, -8.36255 -4.35578 -4.8244, 
+            -9 -5.06374 -4.07536, -6.6679 -2.47368 -6.0109, -9 -1.57479 4.5, -9 -0.75 1.45, 
+            -9 -0.75 -1.45, -11.1327 -0.75 0.505638, -9 -0.75 -1.45, -9 -0.75 1.45, 
+            -18.8 -0.75 -1.45, -9 -0.55 -1.65, -9 -0.75 -1.45, -9 -1.57479 -6.30635, 
+            -9 -1.57479 4.5, -9 -0.75 -1.45, -9 1.91168 -6.2125, -9 -1.57479 -6.30635, 
+            -9 -0.75 -1.45, -14.9002 -0.75 -0.692891, -15.3 -0.75 -0.8, -9 -0.75 -1.45, 
+            -18.8 -0.75 -1.45, -9 -0.75 -1.45, -15.3 -0.75 -0.8, -14.6073 -0.75 -0.400096, 
+            -14.9002 -0.75 -0.692891, -9 -0.75 -1.45, -14.5001 -0.75 -8.89248e-015, -14.6073 -0.75 -0.400096, 
+            -9 -0.75 -1.45, -11.8673 -0.75 -0.505638, -14.5001 -0.75 -8.89248e-015, -9 -0.75 -1.45, 
+            -11.1327 -0.75 -0.505638, -11.5 -0.75 -0.625, -9 -0.75 -1.45, -11.8673 -0.75 -0.505638, 
+            -9 -0.75 -1.45, -11.5 -0.75 -0.625, -10.9056 -0.75 -0.192956, -11.1327 -0.75 -0.505638, 
+            -9 -0.75 -1.45, -10.9056 -0.75 0.192956, -10.9056 -0.75 -0.192956, -9 -0.75 -1.45, 
+            -11.1327 -0.75 0.505638, -10.9056 -0.75 0.192956, -9 -0.75 -1.45, -9 -1.57479 4.5, 
+            -9 -0.55 1.65, -9 -0.75 1.45, -18.8 -0.55 1.65, -9 -0.75 1.45, 
+            -9 -0.55 1.65, -11.5 -0.75 0.625, -11.1327 -0.75 0.505638, -9 -0.75 1.45, 
+            -18.8 -0.75 1.45, -11.5 -0.75 0.625, -9 -0.75 1.45, -18.8 -0.55 1.65, 
+            -18.8 -0.75 1.45, -9 -0.75 1.45, -9 -1.57479 4.5, -9 2.05 1.65, 
+            -9 -0.55 1.65, -18.8 2.05 1.65, -9 -0.55 1.65, -9 2.05 1.65, 
+            -18.8 2.05 1.65, -18.8 -0.55 1.65, -9 -0.55 1.65, -9 -0.37385 4.5, 
+            -9 2.25 1.45, -9 2.05 1.65, -18.8 2.25 1.45, -9 2.05 1.65, 
+            -9 2.25 1.45, -9 -0.37385 4.5, -9 2.05 1.65, -9 -1.57479 4.5, 
+            -18.8 2.05 1.65, -9 2.05 1.65, -18.8 2.25 1.45, -11.1327 2.25 -0.505638, 
+            -9 2.25 1.45, -9 2.25 -1.45, -14.9002 2.25 0.692891, -15.3 2.25 0.8, 
+            -9 2.25 1.45, -18.8 2.25 1.45, -9 2.25 1.45, -15.3 2.25 0.8, 
+            -14.6073 2.25 0.400096, -14.9002 2.25 0.692891, -9 2.25 1.45, -14.5001 2.25 -8.8497e-015, 
+            -14.6073 2.25 0.400096, -9 2.25 1.45, -11.8673 2.25 0.505638, -14.5001 2.25 -8.8497e-015, 
+            -9 2.25 1.45, -11.5 2.25 0.625, -11.8673 2.25 0.505638, -9 2.25 1.45, 
+            -11.1327 2.25 0.505638, -11.5 2.25 0.625, -9 2.25 1.45, -10.9056 2.25 0.192956, 
+            -11.1327 2.25 0.505638, -9 2.25 1.45, -10.9056 2.25 -0.192956, -10.9056 2.25 0.192956, 
+            -9 2.25 1.45, -11.1327 2.25 -0.505638, -10.9056 2.25 -0.192956, -9 2.25 1.45, 
+            -18.8 2.05 -1.65, -9 2.25 -1.45, -9 2.05 -1.65, -11.1327 2.25 -0.505638, 
+            -9 2.25 -1.45, -11.5 2.25 -0.625, -18.8 2.25 -1.45, -11.5 2.25 -0.625, 
+            -9 2.25 -1.45, -18.8 2.05 -1.65, -18.8 2.25 -1.45, -9 2.25 -1.45, 
+            -18.8 -0.55 -1.65, -9 2.05 -1.65, -9 -0.55 -1.65, -18.8 -0.55 -1.65, 
+            -18.8 2.05 -1.65, -9 2.05 -1.65, -18.8 -0.75 -1.45, -18.8 -0.55 -1.65, 
+            -9 -0.55 -1.65, -8.66543 -1.70321 4.5, -9 -1.57479 4.5, -9 -1.57479 -6.30635, 
+            -8.66543 -1.70321 4.5, -9 -0.37385 4.5, -9 -1.57479 4.5, -9 0.761359 -6.45526, 
+            -9 -0.413891 -6.48677, -9 -1.57479 -6.30635, -8.41177 -1.42149 -6.34266, -9 -1.57479 -6.30635, 
+            -9 -0.413891 -6.48677, -9 1.91168 -6.2125, -9 0.761359 -6.45526, -9 -1.57479 -6.30635, 
+            -8.66543 -1.70321 -6.27288, -8.66543 -1.70321 4.5, -9 -1.57479 -6.30635, -8.83181 -1.63935 -6.28988, 
+            -9 -1.57479 -6.30635, -8.41177 -1.42149 -6.34266, -8.83181 -1.63935 -6.28988, -8.66543 -1.70321 -6.27288, 
+            -9 -1.57479 -6.30635, -8.41177 -1.42149 -6.34266, -9 -0.413891 -6.48677, -8.15419 -1.13542 -6.40006, 
+            -7.63567 -1.6023 4.54751, -9 -0.37385 4.5, -8.15419 -1.13542 4.5, -8.66543 -1.70321 4.5, 
+            -8.15419 -1.13542 4.5, -9 -0.37385 4.5, -7.63567 -1.6023 4.54751, -7.41105 -1.80455 4.63137, 
+            -9 -0.37385 4.5, -18.8 2.25 -1.45, -15.6998 2.25 -0.692891, -15.3 2.25 -0.8, 
+            -15.3 -0.75 -0.8, -15.3 2.25 -0.8, -15.6998 2.25 -0.692891, -12.0944 2.25 -0.192956, 
+            -15.3 2.25 -0.8, -14.9002 2.25 -0.692891, -14.9002 -0.75 -0.692891, -14.9002 2.25 -0.692891, 
+            -15.3 2.25 -0.8, -12.0944 2.25 -0.192956, -11.8673 2.25 -0.505638, -15.3 2.25 -0.8, 
+            -18.8 2.25 -1.45, -15.3 2.25 -0.8, -11.8673 2.25 -0.505638, -14.9002 -0.75 -0.692891, 
+            -15.3 2.25 -0.8, -15.3 -0.75 -0.8, -18.8 2.25 -1.45, -15.9927 2.25 -0.400096, 
+            -15.6998 2.25 -0.692891, -15.6998 -0.75 -0.692891, -15.6998 2.25 -0.692891, -15.9927 2.25 -0.400096, 
+            -15.6998 -0.75 -0.692891, -15.3 -0.75 -0.8, -15.6998 2.25 -0.692891, -18.8 2.25 -1.45, 
+            -16.0999 2.25 -1.17363e-014, -15.9927 2.25 -0.400096, -15.9927 -0.75 -0.400096, -15.9927 2.25 -0.400096, 
+            -16.0999 2.25 -1.17363e-014, -15.6998 -0.75 -0.692891, -15.9927 2.25 -0.400096, -15.9927 -0.75 -0.400096, 
+            -18.8 2.25 -1.45, -15.9927 2.25 0.400096, -16.0999 2.25 -1.17363e-014, -16.0999 -0.75 -1.08909e-014, 
+            -16.0999 2.25 -1.17363e-014, -15.9927 2.25 0.400096, -15.9927 -0.75 -0.400096, -16.0999 2.25 -1.17363e-014, 
+            -16.0999 -0.75 -1.08909e-014, -18.8 2.25 -1.45, -15.6998 2.25 0.692891, -15.9927 2.25 0.400096, 
+            -15.9927 -0.75 0.400096, -15.9927 2.25 0.400096, -15.6998 2.25 0.692891, -16.0999 -0.75 -1.08909e-014, 
+            -15.9927 2.25 0.400096, -15.9927 -0.75 0.400096, -18.8 2.25 1.45, -15.3 2.25 0.8, 
+            -15.6998 2.25 0.692891, -15.6998 -0.75 0.692891, -15.6998 2.25 0.692891, -15.3 2.25 0.8, 
+            -18.8 2.25 1.45, -15.6998 2.25 0.692891, -18.8 2.25 -1.45, -15.9927 -0.75 0.400096, 
+            -15.6998 2.25 0.692891, -15.6998 -0.75 0.692891, -15.3 -0.75 0.8, -15.3 2.25 0.8, 
+            -14.9002 2.25 0.692891, -15.6998 -0.75 0.692891, -15.3 2.25 0.8, -15.3 -0.75 0.8, 
+            -14.9002 -0.75 0.692891, -14.9002 2.25 0.692891, -14.6073 2.25 0.400096, -15.3 -0.75 0.8, 
+            -14.9002 2.25 0.692891, -14.9002 -0.75 0.692891, -14.6073 -0.75 0.400096, -14.6073 2.25 0.400096, 
+            -14.5001 2.25 -8.8497e-015, -14.9002 -0.75 0.692891, -14.6073 2.25 0.400096, -14.6073 -0.75 0.400096, 
+            -12.0944 2.25 0.192956, -14.6073 2.25 -0.400096, -14.5001 2.25 -8.8497e-015, -14.5001 -0.75 -8.89248e-015, 
+            -14.5001 2.25 -8.8497e-015, -14.6073 2.25 -0.400096, -11.8673 2.25 0.505638, -12.0944 2.25 0.192956, 
+            -14.5001 2.25 -8.8497e-015, -14.6073 -0.75 0.400096, -14.5001 2.25 -8.8497e-015, -14.5001 -0.75 -8.89248e-015, 
+            -12.0944 2.25 0.192956, -14.9002 2.25 -0.692891, -14.6073 2.25 -0.400096, -14.6073 -0.75 -0.400096, 
+            -14.6073 2.25 -0.400096, -14.9002 2.25 -0.692891, -14.5001 -0.75 -8.89248e-015, -14.6073 2.25 -0.400096, 
+            -14.6073 -0.75 -0.400096, -12.0944 2.25 0.192956, -12.0944 2.25 -0.192956, -14.9002 2.25 -0.692891, 
+            -14.6073 -0.75 -0.400096, -14.9002 2.25 -0.692891, -14.9002 -0.75 -0.692891, -18.8 2.25 -1.45, 
+            -11.8673 2.25 -0.505638, -11.5 2.25 -0.625, -11.5 -0.75 -0.625, -11.5 2.25 -0.625, 
+            -11.8673 2.25 -0.505638, -11.1327 -0.75 -0.505638, -11.1327 2.25 -0.505638, -11.5 2.25 -0.625, 
+            -11.1327 -0.75 -0.505638, -11.5 2.25 -0.625, -11.5 -0.75 -0.625, -11.8673 -0.75 -0.505638, 
+            -11.8673 2.25 -0.505638, -12.0944 2.25 -0.192956, -11.8673 -0.75 -0.505638, -11.5 -0.75 -0.625, 
+            -11.8673 2.25 -0.505638, -12.0944 -0.75 -0.192956, -12.0944 2.25 -0.192956, -12.0944 2.25 0.192956, 
+            -11.8673 -0.75 -0.505638, -12.0944 2.25 -0.192956, -12.0944 -0.75 -0.192956, -12.0944 -0.75 0.192956, 
+            -12.0944 2.25 0.192956, -11.8673 2.25 0.505638, -12.0944 -0.75 -0.192956, -12.0944 2.25 0.192956, 
+            -12.0944 -0.75 0.192956, -11.8673 -0.75 0.505638, -11.8673 2.25 0.505638, -11.5 2.25 0.625, 
+            -12.0944 -0.75 0.192956, -11.8673 2.25 0.505638, -11.8673 -0.75 0.505638, -11.5 -0.75 0.625, 
+            -11.5 2.25 0.625, -11.1327 2.25 0.505638, -11.8673 -0.75 0.505638, -11.5 2.25 0.625, 
+            -11.5 -0.75 0.625, -11.1327 -0.75 0.505638, -11.1327 2.25 0.505638, -10.9056 2.25 0.192956, 
+            -11.5 -0.75 0.625, -11.1327 2.25 0.505638, -11.1327 -0.75 0.505638, -10.9056 -0.75 0.192956, 
+            -10.9056 2.25 0.192956, -10.9056 2.25 -0.192956, -11.1327 -0.75 0.505638, -10.9056 2.25 0.192956, 
+            -10.9056 -0.75 0.192956, -10.9056 -0.75 -0.192956, -10.9056 2.25 -0.192956, -11.1327 2.25 -0.505638, 
+            -10.9056 -0.75 0.192956, -10.9056 2.25 -0.192956, -10.9056 -0.75 -0.192956, -10.9056 -0.75 -0.192956, 
+            -11.1327 2.25 -0.505638, -11.1327 -0.75 -0.505638, -18.9 2.15 -1.55, -18.8 2.25 -1.45, 
+            -18.8 2.05 -1.65, -18.9 2.15 1.55, -18.8 2.05 1.65, -18.8 2.25 1.45, 
+            -18.9 -0.65 -1.55, -18.8 -0.55 -1.65, -18.8 -0.75 -1.45, -18.8 -0.75 -1.45, 
+            -15.3 -0.75 -0.8, -15.6998 -0.75 -0.692891, -12.0944 -0.75 -0.192956, -14.6073 -0.75 0.400096, 
+            -14.5001 -0.75 -8.89248e-015, -11.8673 -0.75 -0.505638, -12.0944 -0.75 -0.192956, -14.5001 -0.75 -8.89248e-015, 
+            -12.0944 -0.75 -0.192956, -14.9002 -0.75 0.692891, -14.6073 -0.75 0.400096, -12.0944 -0.75 0.192956, 
+            -15.3 -0.75 0.8, -14.9002 -0.75 0.692891, -12.0944 -0.75 -0.192956, -12.0944 -0.75 0.192956, 
+            -14.9002 -0.75 0.692891, -18.8 -0.75 1.45, -15.6998 -0.75 0.692891, -15.3 -0.75 0.8, 
+            -12.0944 -0.75 0.192956, -11.8673 -0.75 0.505638, -15.3 -0.75 0.8, -18.8 -0.75 1.45, 
+            -15.3 -0.75 0.8, -11.8673 -0.75 0.505638, -18.8 -0.75 1.45, -15.9927 -0.75 0.400096, 
+            -15.6998 -0.75 0.692891, -18.8 -0.75 1.45, -16.0999 -0.75 -1.08909e-014, -15.9927 -0.75 0.400096, 
+            -18.8 -0.75 1.45, -15.9927 -0.75 -0.400096, -16.0999 -0.75 -1.08909e-014, -18.8 -0.75 1.45, 
+            -15.6998 -0.75 -0.692891, -15.9927 -0.75 -0.400096, -18.8 -0.75 1.45, -18.8 -0.75 -1.45, 
+            -15.6998 -0.75 -0.692891, -18.8 -0.75 1.45, -11.8673 -0.75 0.505638, -11.5 -0.75 0.625, 
+            -18.9 -0.65 1.55, -18.8 -0.75 1.45, -18.8 -0.55 1.65, -6.81653 -2.33986 3.49931, 
+            -6.6679 -2.47368 -6.0109, -6.6679 -2.47368 6.0109, -7.58132 -3.48814 5.48487, -6.6679 -2.47368 6.0109, 
+            -6.6679 -2.47368 -6.0109, -7.18663 -2.00661 4.54767, -6.6679 -2.47368 6.0109, -7.41105 -1.80455 4.63137, 
+            -6.83824 -2.32031 3.80295, -6.81653 -2.33986 3.49931, -6.6679 -2.47368 6.0109, -6.9776 -2.19483 4.27435, 
+            -6.83824 -2.32031 3.80295, -6.6679 -2.47368 6.0109, -7.18663 -2.00661 4.54767, -6.9776 -2.19483 4.27435, 
+            -6.6679 -2.47368 6.0109, -8.15419 -1.13542 -6.40006, -7.39217 -1.82154 -6.23952, -6.6679 -2.47368 -6.0109, 
+            -7.41105 -1.80455 -1.09994, -8.15419 -1.13542 -6.40006, -6.6679 -2.47368 -6.0109, -7.20095 -1.99372 -0.982922, 
+            -7.41105 -1.80455 -1.09994, -6.6679 -2.47368 -6.0109, -7.11379 -2.0722 -0.7, -7.20095 -1.99372 -0.982922, 
+            -6.6679 -2.47368 -6.0109, -6.81653 -2.33986 3.49931, -7.11379 -2.0722 -0.7, -6.6679 -2.47368 -6.0109, 
+            -8.36255 -4.35578 4.8244, -7.58132 -3.48814 5.48487, -6.6679 -2.47368 -6.0109, -7.58132 -3.48814 -5.48487, 
+            -8.36255 -4.35578 -4.8244, -6.6679 -2.47368 -6.0109, -8.00556 -1.26925 3.50069, -8.15419 -1.13542 4.5, 
+            -8.15419 -1.13542 -6.40006, -8.41177 -1.42149 -6.34266, -8.15419 -1.13542 -6.40006, -8.15419 -1.13542 4.5, 
+            -7.62114 -1.61538 -0.982922, -7.7083 -1.5369 -0.7, -8.15419 -1.13542 -6.40006, -7.63546 -1.60249 2.45233, 
+            -8.15419 -1.13542 -6.40006, -7.7083 -1.5369 -0.7, -7.41105 -1.80455 -1.09994, -7.62114 -1.61538 -0.982922, 
+            -8.15419 -1.13542 -6.40006, -7.98385 -1.28879 3.19705, -8.00556 -1.26925 3.50069, -8.15419 -1.13542 -6.40006, 
+            -7.84449 -1.41427 2.72565, -7.98385 -1.28879 3.19705, -8.15419 -1.13542 -6.40006, -7.63546 -1.60249 2.45233, 
+            -7.84449 -1.41427 2.72565, -8.15419 -1.13542 -6.40006, -7.8447 -1.41409 4.27393, -7.63567 -1.6023 4.54751, 
+            -8.15419 -1.13542 4.5, -7.98378 -1.28886 3.80343, -7.8447 -1.41409 4.27393, -8.15419 -1.13542 4.5, 
+            -8.00556 -1.26925 3.50069, -7.98378 -1.28886 3.80343, -8.15419 -1.13542 4.5, -8.66543 -1.70321 -6.27288, 
+            -8.15419 -1.13542 4.5, -8.66543 -1.70321 4.5, -8.66543 -1.70321 -6.27288, -8.41177 -1.42149 -6.34266, 
+            -8.15419 -1.13542 4.5, -7.41105 -1.80455 2.36863, -7.7083 -1.5369 -0.7, -7.62114 -1.61538 -0.417078, 
+            -7.41105 -1.80455 2.36863, -7.63546 -1.60249 2.45233, -7.7083 -1.5369 -0.7, -6.83831 -2.32024 3.19657, 
+            -7.20095 -1.99372 -0.417078, -7.11379 -2.0722 -0.7, -6.81653 -2.33986 3.49931, -6.83831 -2.32024 3.19657, 
+            -7.11379 -2.0722 -0.7, -6.83831 -2.32024 3.19657, -7.41105 -1.80455 -0.300062, -7.20095 -1.99372 -0.417078, 
+            -7.41105 -1.80455 2.36863, -7.62114 -1.61538 -0.417078, -7.41105 -1.80455 -0.300062, -7.18642 -2.0068 2.45249, 
+            -7.41105 -1.80455 2.36863, -7.41105 -1.80455 -0.300062, -6.97739 -2.19502 2.72607, -7.18642 -2.0068 2.45249, 
+            -7.41105 -1.80455 -0.300062, -6.83831 -2.32024 3.19657, -6.97739 -2.19502 2.72607, -7.41105 -1.80455 -0.300062, 
+            -8.83181 -1.63935 -6.28988, -8.41177 -1.42149 -6.34266, -8.66543 -1.70321 -6.27288, -2.5 -4.15331 5, 
+            -7.58132 -3.48814 5.48487, -8.36255 -4.35578 4.8244, -2.76276 -4.24149 4.92542, -2.5 -4.15331 5, 
+            -8.36255 -4.35578 4.8244, -2.95969 -4.49385 4.69631, -2.76276 -4.24149 4.92542, -8.36255 -4.35578 4.8244, 
+            -11.9249 -3.2 0.736147, -12.2 -3.2 1.8, -9.5 -3.2 1.8, -9.5 -5.1 1.8, 
+            -9.5 -3.2 1.8, -12.2 -3.2 1.8, -10.7639 -3.2 -0.424877, -9.5 -3.2 1.8, 
+            -9.5 -3.2 -1.8, -9.5 -5.1 -1.8, -9.5 -3.2 -1.8, -9.5 -3.2 1.8, 
+            -11.5 -3.2 0.85, -11.9249 -3.2 0.736147, -9.5 -3.2 1.8, -11.0751 -3.2 0.736147, 
+            -11.5 -3.2 0.85, -9.5 -3.2 1.8, -10.7639 -3.2 0.424877, -11.0751 -3.2 0.736147, 
+            -9.5 -3.2 1.8, -10.65 -3.2 -3.55271e-015, -10.7639 -3.2 0.424877, -9.5 -3.2 1.8, 
+            -10.7639 -3.2 -0.424877, -10.65 -3.2 -3.55271e-015, -9.5 -3.2 1.8, -9.5 -6.5 0.300824, 
+            -9.5 -6.5 -3.59977e-015, -9.5 -3.2 1.8, -9.5 -6.5 -0.303052, -9.5 -3.2 1.8, 
+            -9.5 -6.5 -3.59977e-015, -9.5 -6.5 1.4998, -9.5 -3.2 1.8, -9.5 -5.1 1.8, 
+            -9.5 -5.1 1.8, -9.5 -6.5 1.79944, -9.5 -6.5 1.4998, -9.5 -6.5 1.19966, 
+            -9.5 -3.2 1.8, -9.5 -6.5 1.4998, -9.5 -6.5 0.899848, -9.5 -3.2 1.8, 
+            -9.5 -6.5 1.19966, -9.5 -6.5 0.600322, -9.5 -3.2 1.8, -9.5 -6.5 0.899848, 
+            -9.5 -6.5 0.300824, -9.5 -3.2 1.8, -9.5 -6.5 0.600322, -9.5 -6.5 -0.60501, 
+            -9.5 -3.2 1.8, -9.5 -6.5 -0.303052, -9.5 -6.5 -0.906991, -9.5 -3.2 1.8, 
+            -9.5 -6.5 -0.60501, -9.5 -6.5 -1.20901, -9.5 -3.2 1.8, -9.5 -6.5 -0.906991, 
+            -9.5 -6.5 -1.51109, -9.5 -3.2 1.8, -9.5 -6.5 -1.20901, -9.5 -5.1 -1.8, 
+            -9.5 -3.2 1.8, -9.5 -6.5 -1.51109, -12.2361 -3.2 0.424877, -12.2 -3.2 2.3, 
+            -12.2 -3.2 1.8, -12.2 -5.1 2.3, -12.2 -3.2 1.8, -12.2 -3.2 2.3, 
+            -11.9249 -3.2 0.736147, -12.2361 -3.2 0.424877, -12.2 -3.2 1.8, -12.2 -5.1 1.8, 
+            -9.5 -5.1 1.8, -12.2 -3.2 1.8, -12.2 -5.1 1.8, -12.2 -3.2 1.8, 
+            -12.2 -5.1 2.3, -12.7343 -3.2 1.84437, -13 -3.2 3.1, -12.2 -3.2 2.3, 
+            -13 -5.1 3.1, -12.2 -3.2 2.3, -13 -3.2 3.1, -12.2361 -3.2 0.424877, 
+            -12.35 -3.2 -3.55271e-015, -12.2 -3.2 2.3, -12.5 -3.2 1.27868, -12.2 -3.2 2.3, 
+            -12.35 -3.2 -3.55271e-015, -12.5609 -3.2 1.58483, -12.7343 -3.2 1.84437, -12.2 -3.2 2.3, 
+            -12.5 -3.2 1.27868, -12.5609 -3.2 1.58483, -12.2 -3.2 2.3, -12.2 -5.1 2.3, 
+            -12.2 -3.2 2.3, -13 -5.1 3.1, -16.1436 -3.2 5.25367, -13 -3.2 6.94995, 
+            -13 -3.2 3.1, -13 -5.1 3.1, -13 -3.2 3.1, -13 -3.2 6.94995, 
+            -12.7343 -3.2 1.84437, -16.1436 -3.2 5.25367, -13 -3.2 3.1, -16.1436 -3.2 5.25367, 
+            -14.4842 -3.2 6.88535, -13 -3.2 6.94995, -14.0712 -3.72479 6.79881, -13 -3.2 6.94995, 
+            -14.4842 -3.2 6.88535, -13 -4.68827 6.46816, -13 -5.1 6.1919, -13 -3.2 6.94995, 
+            -13 -5.1 3.1, -13 -3.2 6.94995, -13 -5.1 6.1919, -13 -3.70811 6.86249, 
+            -13 -3.2 6.94995, -14.0712 -3.72479 6.79881, -13 -4.21513 6.69929, -13 -3.2 6.94995, 
+            -13 -3.70811 6.86249, -13 -4.68827 6.46816, -13 -3.2 6.94995, -13 -4.21513 6.69929, 
+            -16.1436 -3.2 5.25367, -16.0059 -3.2 6.77449, -14.4842 -3.2 6.88535, -15.5714 -3.72311 6.67717, 
+            -14.4842 -3.2 6.88535, -16.0059 -3.2 6.77449, -15.5714 -3.72311 6.67717, -14.0712 -3.72479 6.79881, 
+            -14.4842 -3.2 6.88535, -16.1436 -3.2 5.25367, -16.1789 -3.2 6.75813, -16.0059 -3.2 6.77449, 
+            -16.9866 -3.72143 6.50299, -16.0059 -3.2 6.77449, -16.1789 -3.2 6.75813, -15.5714 -3.72311 6.67717, 
+            -16.0059 -3.2 6.77449, -16.9866 -3.72143 6.50299, -16.8072 -3.2 5.48197, -17.5948 -3.2 6.58555, 
+            -16.1789 -3.2 6.75813, -16.9866 -3.72143 6.50299, -16.1789 -3.2 6.75813, -17.5948 -3.2 6.58555, 
+            -16.4491 -3.2 5.44447, -16.1789 -3.2 6.75813, -16.1436 -3.2 5.25367, -16.4491 -3.2 5.44447, 
+            -16.8072 -3.2 5.48197, -16.1789 -3.2 6.75813, -18.3152 -3.2 5.24008, -18.3829 -3.2 6.45026, 
+            -17.5948 -3.2 6.58555, -18.2793 -3.71974 6.26643, -17.5948 -3.2 6.58555, -18.3829 -3.2 6.45026, 
+            -16.8072 -3.2 5.48197, -18.3152 -3.2 5.24008, -17.5948 -3.2 6.58555, -16.9866 -3.72143 6.50299, 
+            -17.5948 -3.2 6.58555, -18.2793 -3.71974 6.26643, -18.9829 -3.2 5.08503, -18.8011 -3.2 6.36324, 
+            -18.3829 -3.2 6.45026, -18.2793 -3.71974 6.26643, -18.3829 -3.2 6.45026, -18.8011 -3.2 6.36324, 
+            -18.3152 -3.2 5.24008, -18.9829 -3.2 5.08503, -18.3829 -3.2 6.45026, -19.5934 -3.2 4.90563, 
+            -19.9702 -3.2 6.04495, -18.8011 -3.2 6.36324, -19.5303 -3.60453 5.99118, -18.8011 -3.2 6.36324, 
+            -19.9702 -3.2 6.04495, -18.9829 -3.2 5.08503, -19.5934 -3.2 4.90563, -18.8011 -3.2 6.36324, 
+            -18.2793 -3.71974 6.26643, -18.8011 -3.2 6.36324, -19.5303 -3.60453 5.99118, -20.2559 -3.2 4.65371, 
+            -20.5082 -3.2 5.8493, -19.9702 -3.2 6.04495, -19.5303 -3.60453 5.99118, -19.9702 -3.2 6.04495, 
+            -20.5082 -3.2 5.8493, -19.5934 -3.2 4.90563, -20.2559 -3.2 4.65371, -19.9702 -3.2 6.04495, 
+            -20.8138 -3.2 4.38009, -21.0301 -3.2 5.61946, -20.5082 -3.2 5.8493, -20.3141 -3.84399 5.57383, 
+            -20.5082 -3.2 5.8493, -21.0301 -3.2 5.61946, -20.2559 -3.2 4.65371, -20.8138 -3.2 4.38009, 
+            -20.5082 -3.2 5.8493, -19.5303 -3.60453 5.99118, -20.5082 -3.2 5.8493, -19.2641 -3.84805 5.94334, 
+            -19.7927 -3.84527 5.77131, -19.2641 -3.84805 5.94334, -20.5082 -3.2 5.8493, -20.3141 -3.84399 5.57383, 
+            -19.7927 -3.84527 5.77131, -20.5082 -3.2 5.8493, -21.6936 -3.2 3.75724, -21.368 -3.2 5.44459, 
+            -21.0301 -3.2 5.61946, -20.3141 -3.84399 5.57383, -21.0301 -3.2 5.61946, -21.368 -3.2 5.44459, 
+            -20.8138 -3.2 4.38009, -21.6936 -3.2 3.75724, -21.0301 -3.2 5.61946, -21.6936 -3.2 3.75724, 
+            -21.6963 -3.2 5.25065, -21.368 -3.2 5.44459, -20.8277 -3.8427 5.34725, -21.368 -3.2 5.44459, 
+            -21.6963 -3.2 5.25065, -20.8277 -3.8427 5.34725, -20.3141 -3.84399 5.57383, -21.368 -3.2 5.44459, 
+            -22.3283 -3.2 3.04471, -22.0135 -3.2 5.03674, -21.6963 -3.2 5.25065, -21.3304 -3.84142 5.08742, 
+            -21.6963 -3.2 5.25065, -22.0135 -3.2 5.03674, -21.6936 -3.2 3.75724, -22.3283 -3.2 3.04471, 
+            -21.6963 -3.2 5.25065, -21.3304 -3.84142 5.08742, -20.8277 -3.8427 5.34725, -21.6963 -3.2 5.25065, 
+            -22.3283 -3.2 3.04471, -22.3181 -3.2 4.80239, -22.0135 -3.2 5.03674, -21.8173 -3.84013 4.79092, 
+            -22.0135 -3.2 5.03674, -22.3181 -3.2 4.80239, -21.8173 -3.84013 4.79092, -21.3304 -3.84142 5.08742, 
+            -22.0135 -3.2 5.03674, -22.3283 -3.2 3.04471, -22.606 -3.2 4.54827, -22.3181 -3.2 4.80239, 
+            -21.8173 -3.84013 4.79092, -22.3181 -3.2 4.80239, -22.606 -3.2 4.54827, -22.7751 -3.2 2.22302, 
+            -22.8753 -3.2 4.2748, -22.606 -3.2 4.54827, -22.2799 -3.83885 4.45572, -22.606 -3.2 4.54827, 
+            -22.8753 -3.2 4.2748, -22.3283 -3.2 3.04471, -22.7751 -3.2 2.22302, -22.606 -3.2 4.54827, 
+            -22.2799 -3.83885 4.45572, -21.8173 -3.84013 4.79092, -22.606 -3.2 4.54827, -23.1359 -3.2 0.660185, 
+            -23.2412 -3.2 3.8302, -22.8753 -3.2 4.2748, -22.7094 -3.83756 4.08139, -22.8753 -3.2 4.2748, 
+            -23.2412 -3.2 3.8302, -23.0614 -3.2 1.23296, -23.1359 -3.2 0.660185, -22.8753 -3.2 4.2748, 
+            -22.7751 -3.2 2.22302, -23.0614 -3.2 1.23296, -22.8753 -3.2 4.2748, -22.7094 -3.83756 4.08139, 
+            -22.2799 -3.83885 4.45572, -22.8753 -3.2 4.2748, -23.247 -3.2 -3.82226, -23.5572 -3.2 3.34751, 
+            -23.2412 -3.2 3.8302, -23.0962 -3.83627 3.66959, -23.2412 -3.2 3.8302, -23.5572 -3.2 3.34751, 
+            -23.1636 -3.2 -3.55271e-015, -23.247 -3.2 -3.82226, -23.2412 -3.2 3.8302, -23.1359 -3.2 0.660185, 
+            -23.1636 -3.2 -3.55271e-015, -23.2412 -3.2 3.8302, -23.0962 -3.83627 3.66959, -22.7094 -3.83756 4.08139, 
+            -23.2412 -3.2 3.8302, -23.5622 -3.2 -3.33889, -23.7383 -3.2 3.00733, -23.5572 -3.2 3.34751, 
+            -23.432 -3.83499 3.22433, -23.5572 -3.2 3.34751, -23.7383 -3.2 3.00733, -23.247 -3.2 -3.82226, 
+            -23.5622 -3.2 -3.33889, -23.5572 -3.2 3.34751, -23.432 -3.83499 3.22433, -23.0962 -3.83627 3.66959, 
+            -23.5572 -3.2 3.34751, -23.7427 -3.2 -2.99837, -23.8949 -3.2 2.65475, -23.7383 -3.2 3.00733, 
+            -23.7097 -3.8337 2.75163, -23.7383 -3.2 3.00733, -23.8949 -3.2 2.65475, -23.5622 -3.2 -3.33889, 
+            -23.7427 -3.2 -2.99837, -23.7383 -3.2 3.00733, -23.7097 -3.8337 2.75163, -23.432 -3.83499 3.22433, 
+            -23.7383 -3.2 3.00733, -23.8987 -3.2 -2.64532, -24.0274 -3.2 2.29174, -23.8949 -3.2 2.65475, 
+            -23.7097 -3.8337 2.75163, -23.8949 -3.2 2.65475, -24.0274 -3.2 2.29174, -23.7427 -3.2 -2.99837, 
+            -23.8987 -3.2 -2.64532, -23.8949 -3.2 2.65475, -24.0306 -3.2 -2.28195, -24.1365 -3.2 1.92147, 
+            -24.0274 -3.2 2.29174, -23.9294 -3.83241 2.2556, -24.0274 -3.2 2.29174, -24.1365 -3.2 1.92147, 
+            -23.8987 -3.2 -2.64532, -24.0306 -3.2 -2.28195, -24.0274 -3.2 2.29174, -23.9294 -3.83241 2.2556, 
+            -23.7097 -3.8337 2.75163, -24.0274 -3.2 2.29174, -24.1389 -3.2 -1.91211, -24.2228 -3.2 1.54532, 
+            -24.1365 -3.2 1.92147, -24.0953 -3.83113 1.73637, -24.1365 -3.2 1.92147, -24.2228 -3.2 1.54532, 
+            -24.0306 -3.2 -2.28195, -24.1389 -3.2 -1.91211, -24.1365 -3.2 1.92147, -24.0953 -3.83113 1.73637, 
+            -23.9294 -3.83241 2.2556, -24.1365 -3.2 1.92147, -24.2244 -3.2 -1.53727, -24.2871 -3.2 1.16427, 
+            -24.2228 -3.2 1.54532, -24.0953 -3.83113 1.73637, -24.2228 -3.2 1.54532, -24.2871 -3.2 1.16427, 
+            -24.1389 -3.2 -1.91211, -24.2244 -3.2 -1.53727, -24.2228 -3.2 1.54532, -24.2879 -3.2 -1.15833, 
+            -24.3455 -3.2 0.585846, -24.2871 -3.2 1.16427, -24.2113 -3.82984 1.1906, -24.2871 -3.2 1.16427, 
+            -24.3455 -3.2 0.585846, -24.2244 -3.2 -1.53727, -24.2879 -3.2 -1.15833, -24.2871 -3.2 1.16427, 
+            -24.2113 -3.82984 1.1906, -24.0953 -3.83113 1.73637, -24.2871 -3.2 1.16427, -24.3457 -3.2 -0.583355, 
+            -24.3636 -3.2 -1.73891e-006, -24.3455 -3.2 0.585846, -24.2799 -3.82856 0.612125, -24.3455 -3.2 0.585846, 
+            -24.3636 -3.2 -1.73891e-006, -24.2879 -3.2 -1.15833, -24.3457 -3.2 -0.583355, -24.3455 -3.2 0.585846, 
+            -24.2799 -3.82856 0.612125, -24.2113 -3.82984 1.1906, -24.3455 -3.2 0.585846, -24.3044 -3.82243 3.10718e-014, 
+            -24.3636 -3.2 -1.73891e-006, -24.3457 -3.2 -0.583355, -24.3044 -3.82243 3.10718e-014, -24.2799 -3.82856 0.612125, 
+            -24.3636 -3.2 -1.73891e-006, -24.2113 -3.82984 -1.1906, -24.3457 -3.2 -0.583355, -24.2879 -3.2 -1.15833, 
+            -24.2799 -3.82856 -0.612125, -24.3044 -3.82243 3.10718e-014, -24.3457 -3.2 -0.583355, -24.2113 -3.82984 -1.1906, 
+            -24.2799 -3.82856 -0.612125, -24.3457 -3.2 -0.583355, -24.2113 -3.82984 -1.1906, -24.2879 -3.2 -1.15833, 
+            -24.2244 -3.2 -1.53727, -24.0953 -3.83113 -1.73637, -24.2244 -3.2 -1.53727, -24.1389 -3.2 -1.91211, 
+            -24.0953 -3.83113 -1.73637, -24.2113 -3.82984 -1.1906, -24.2244 -3.2 -1.53727, -23.9294 -3.83241 -2.2556, 
+            -24.1389 -3.2 -1.91211, -24.0306 -3.2 -2.28195, -23.9294 -3.83241 -2.2556, -24.0953 -3.83113 -1.73637, 
+            -24.1389 -3.2 -1.91211, -23.9294 -3.83241 -2.2556, -24.0306 -3.2 -2.28195, -23.8987 -3.2 -2.64532, 
+            -23.7097 -3.8337 -2.75163, -23.8987 -3.2 -2.64532, -23.7427 -3.2 -2.99837, -23.7097 -3.8337 -2.75163, 
+            -23.9294 -3.83241 -2.2556, -23.8987 -3.2 -2.64532, -23.432 -3.83499 -3.22433, -23.7427 -3.2 -2.99837, 
+            -23.5622 -3.2 -3.33889, -23.432 -3.83499 -3.22433, -23.7097 -3.8337 -2.75163, -23.7427 -3.2 -2.99837, 
+            -23.0962 -3.83627 -3.66959, -23.5622 -3.2 -3.33889, -23.247 -3.2 -3.82226, -23.0962 -3.83627 -3.66959, 
+            -23.432 -3.83499 -3.22433, -23.5622 -3.2 -3.33889, -23.0458 -3.2 -1.31408, -22.8813 -3.2 -4.26824, 
+            -23.247 -3.2 -3.82226, -22.7094 -3.83756 -4.08139, -23.247 -3.2 -3.82226, -22.8813 -3.2 -4.26824, 
+            -23.1316 -3.2 -0.705926, -23.0458 -3.2 -1.31408, -23.247 -3.2 -3.82226, -23.1636 -3.2 -3.55271e-015, 
+            -23.1316 -3.2 -0.705926, -23.247 -3.2 -3.82226, -22.7094 -3.83756 -4.08139, -23.0962 -3.83627 -3.66959, 
+            -23.247 -3.2 -3.82226, -22.7287 -3.2 -2.33275, -22.6118 -3.2 -4.54276, -22.8813 -3.2 -4.26824, 
+            -22.2799 -3.83885 -4.45572, -22.8813 -3.2 -4.26824, -22.6118 -3.2 -4.54276, -23.0458 -3.2 -1.31408, 
+            -22.7287 -3.2 -2.33275, -22.8813 -3.2 -4.26824, -22.2799 -3.83885 -4.45572, -22.7094 -3.83756 -4.08139, 
+            -22.8813 -3.2 -4.26824, -22.2522 -3.2 -3.14971, -22.3236 -3.2 -4.79781, -22.6118 -3.2 -4.54276, 
+            -22.2799 -3.83885 -4.45572, -22.6118 -3.2 -4.54276, -22.3236 -3.2 -4.79781, -22.7287 -3.2 -2.33275, 
+            -22.2522 -3.2 -3.14971, -22.6118 -3.2 -4.54276, -22.2522 -3.2 -3.14971, -22.0188 -3.2 -5.03296, 
+            -22.3236 -3.2 -4.79781, -21.8173 -3.84013 -4.79092, -22.3236 -3.2 -4.79781, -22.0188 -3.2 -5.03296, 
+            -21.8173 -3.84013 -4.79092, -22.2799 -3.83885 -4.45572, -22.3236 -3.2 -4.79781, -21.6064 -3.2 -3.83325, 
+            -21.701 -3.2 -5.24767, -22.0188 -3.2 -5.03296, -21.3304 -3.84142 -5.08742, -22.0188 -3.2 -5.03296, 
+            -21.701 -3.2 -5.24767, -22.2522 -3.2 -3.14971, -21.6064 -3.2 -3.83325, -22.0188 -3.2 -5.03296, 
+            -21.3304 -3.84142 -5.08742, -21.8173 -3.84013 -4.79092, -22.0188 -3.2 -5.03296, -21.6064 -3.2 -3.83325, 
+            -21.372 -3.2 -5.44239, -21.701 -3.2 -5.24767, -20.8277 -3.8427 -5.34725, -21.701 -3.2 -5.24767, 
+            -21.372 -3.2 -5.44239, -20.8277 -3.8427 -5.34725, -21.3304 -3.84142 -5.08742, -21.701 -3.2 -5.24767, 
+            -20.7457 -3.2 -4.41768, -21.0331 -3.2 -5.61799, -21.372 -3.2 -5.44239, -20.8277 -3.8427 -5.34725, 
+            -21.372 -3.2 -5.44239, -21.0331 -3.2 -5.61799, -21.6064 -3.2 -3.83325, -20.7457 -3.2 -4.41768, 
+            -21.372 -3.2 -5.44239, -20.7457 -3.2 -4.41768, -20.5097 -3.2 -5.84871, -21.0331 -3.2 -5.61799, 
+            -20.3141 -3.84399 -5.57383, -21.0331 -3.2 -5.61799, -20.5097 -3.2 -5.84871, -20.3141 -3.84399 -5.57383, 
+            -20.8277 -3.8427 -5.34725, -21.0331 -3.2 -5.61799, -20.2161 -3.2 -4.671, -19.9702 -3.2 -6.04495, 
+            -20.5097 -3.2 -5.84871, -19.7927 -3.84527 -5.77131, -20.5097 -3.2 -5.84871, -19.9702 -3.2 -6.04495, 
+            -20.7457 -3.2 -4.41768, -20.2161 -3.2 -4.671, -20.5097 -3.2 -5.84871, -19.7927 -3.84527 -5.77131, 
+            -20.3141 -3.84399 -5.57383, -20.5097 -3.2 -5.84871, -19.5934 -3.2 -4.90563, -18.8068 -3.2 -6.36198, 
+            -19.9702 -3.2 -6.04495, -18.2793 -3.71974 -6.26643, -19.9702 -3.2 -6.04495, -18.8068 -3.2 -6.36198, 
+            -20.2161 -3.2 -4.671, -19.5934 -3.2 -4.90563, -19.9702 -3.2 -6.04495, -19.5301 -3.60474 -5.99115, 
+            -19.9702 -3.2 -6.04495, -18.2793 -3.71974 -6.26643, -19.7927 -3.84527 -5.77131, -19.9702 -3.2 -6.04495, 
+            -19.5301 -3.60474 -5.99115, -18.7664 -3.2 -5.1392, -18.5145 -3.2 -6.42416, -18.8068 -3.2 -6.36198, 
+            -16.9866 -3.72143 -6.50299, -18.8068 -3.2 -6.36198, -18.5145 -3.2 -6.42416, -19.5934 -3.2 -4.90563, 
+            -18.7664 -3.2 -5.1392, -18.8068 -3.2 -6.36198, -18.2793 -3.71974 -6.26643, -18.8068 -3.2 -6.36198, 
+            -16.9866 -3.72143 -6.50299, -17.8606 -3.2 -5.32645, -17.5913 -3.2 -6.58603, -18.5145 -3.2 -6.42416, 
+            -16.9866 -3.72143 -6.50299, -18.5145 -3.2 -6.42416, -17.5913 -3.2 -6.58603, -18.7664 -3.2 -5.1392, 
+            -17.8606 -3.2 -5.32645, -18.5145 -3.2 -6.42416, -16.8693 -3.2 -5.47436, -16.5819 -3.2 -6.71645, 
+            -17.5913 -3.2 -6.58603, -15.5714 -3.72311 -6.67717, -17.5913 -3.2 -6.58603, -16.5819 -3.2 -6.71645, 
+            -17.8606 -3.2 -5.32645, -16.8693 -3.2 -5.47436, -17.5913 -3.2 -6.58603, -16.9866 -3.72143 -6.50299, 
+            -17.5913 -3.2 -6.58603, -15.5714 -3.72311 -6.67717, -15.7866 -3.2 -5.58942, -16.0217 -3.2 -6.77302, 
+            -16.5819 -3.2 -6.71645, -15.5714 -3.72311 -6.67717, -16.5819 -3.2 -6.71645, -16.0217 -3.2 -6.77302, 
+            -16.8693 -3.2 -5.47436, -15.7866 -3.2 -5.58942, -16.5819 -3.2 -6.71645, -14.6079 -3.2 -5.6763, 
+            -14.4309 -3.2 -6.8883, -16.0217 -3.2 -6.77302, -14.0712 -3.72479 -6.79881, -16.0217 -3.2 -6.77302, 
+            -14.4309 -3.2 -6.8883, -15.7866 -3.2 -5.58942, -14.6079 -3.2 -5.6763, -16.0217 -3.2 -6.77302, 
+            -15.5714 -3.72311 -6.67717, -16.0217 -3.2 -6.77302, -14.0712 -3.72479 -6.79881, -13.3301 -3.2 -5.73769, 
+            -13.7618 -3.2 -6.92117, -14.4309 -3.2 -6.8883, -12.5278 -3.72647 -6.87896, -14.4309 -3.2 -6.8883, 
+            -13.7618 -3.2 -6.92117, -14.6079 -3.2 -5.6763, -13.3301 -3.2 -5.73769, -14.4309 -3.2 -6.8883, 
+            -14.0712 -3.72479 -6.79881, -14.4309 -3.2 -6.8883, -12.5278 -3.72647 -6.87896, -12.9176 -3.2 -5.6409, 
+            -12.9488 -3.2 -6.95159, -13.7618 -3.2 -6.92117, -12.5278 -3.72647 -6.87896, -13.7618 -3.2 -6.92117, 
+            -12.9488 -3.2 -6.95159, -13.3301 -3.2 -5.73769, -12.9176 -3.2 -5.6409, -13.7618 -3.2 -6.92117, 
+            -12.2 -3.2 -3.8, -11.4115 -3.2 -6.98669, -12.9488 -3.2 -6.95159, -10.9875 -3.72816 -6.92872, 
+            -12.9488 -3.2 -6.95159, -11.4115 -3.2 -6.98669, -12.5 -3.2 -4.93825, -12.2 -3.2 -3.8, 
+            -12.9488 -3.2 -6.95159, -12.6122 -3.2 -5.34678, -12.5 -3.2 -4.93825, -12.9488 -3.2 -6.95159, 
+            -12.9176 -3.2 -5.6409, -12.6122 -3.2 -5.34678, -12.9488 -3.2 -6.95159, -12.5278 -3.72647 -6.87896, 
+            -12.9488 -3.2 -6.95159, -10.9875 -3.72816 -6.92872, -9.5 -3.2 -3.8, -9.5 -3.2 -7, 
+            -11.4115 -3.2 -6.98669, -9.5 -3.65813 -6.96808, -11.4115 -3.2 -6.98669, -9.5 -3.2 -7, 
+            -12.2 -3.2 -3.8, -9.5 -3.2 -3.8, -11.4115 -3.2 -6.98669, -9.5 -3.65813 -6.96808, 
+            -10.9875 -3.72816 -6.92872, -11.4115 -3.2 -6.98669, -9.5 -3.65813 -6.96808, -9.5 -3.2 -7, 
+            -9.5 -3.2 -3.8, -9.5 -5.1 -3.8, -9.5 -3.2 -3.8, -12.2 -3.2 -3.8, 
+            -9.5 -6.43257 -4.36576, -9.5 -3.2 -3.8, -9.5 -6.48504 -4.01884, -9.5 -5.1 -3.8, 
+            -9.5 -6.48504 -4.01884, -9.5 -3.2 -3.8, -9.5 -6.33063 -4.74315, -9.5 -3.2 -3.8, 
+            -9.5 -6.43257 -4.36576, -9.5 -6.16743 -5.14202, -9.5 -3.2 -3.8, -9.5 -6.33063 -4.74315, 
+            -9.5 -5.93892 -5.54038, -9.5 -3.2 -3.8, -9.5 -6.16743 -5.14202, -9.5 -5.65311 -5.90731, 
+            -9.5 -3.2 -3.8, -9.5 -5.93892 -5.54038, -9.5 -5.32192 -6.22729, -9.5 -3.2 -3.8, 
+            -9.5 -5.65311 -5.90731, -9.5 -4.95082 -6.49723, -9.5 -3.2 -3.8, -9.5 -5.32192 -6.22729, 
+            -9.5 -4.54408 -6.71368, -9.5 -3.2 -3.8, -9.5 -4.95082 -6.49723, -9.5 -4.10962 -6.87202, 
+            -9.5 -3.2 -3.8, -9.5 -4.54408 -6.71368, -9.5 -3.65813 -6.96808, -9.5 -3.2 -3.8, 
+            -9.5 -4.10962 -6.87202, -12.5 -3.2 -4.93825, -12.2 -3.2 -1.8, -12.2 -3.2 -3.8, 
+            -12.2 -5.1 -3.8, -12.2 -3.2 -3.8, -12.2 -3.2 -1.8, -12.2 -5.1 -3.8, 
+            -9.5 -5.1 -3.8, -12.2 -3.2 -3.8, -11.0751 -3.2 -0.736147, -9.5 -3.2 -1.8, 
+            -12.2 -3.2 -1.8, -12.2 -5.1 -1.8, -12.2 -3.2 -1.8, -9.5 -3.2 -1.8, 
+            -11.5 -3.2 -0.85, -11.0751 -3.2 -0.736147, -12.2 -3.2 -1.8, -11.9249 -3.2 -0.736147, 
+            -11.5 -3.2 -0.85, -12.2 -3.2 -1.8, -12.2361 -3.2 -0.424877, -11.9249 -3.2 -0.736147, 
+            -12.2 -3.2 -1.8, -12.5 -3.2 -4.93825, -12.2361 -3.2 -0.424877, -12.2 -3.2 -1.8, 
+            -12.2 -5.1 -3.8, -12.2 -3.2 -1.8, -12.2 -5.1 -1.8, -11.0751 -3.2 -0.736147, 
+            -10.7639 -3.2 -0.424877, -9.5 -3.2 -1.8, -12.2 -5.1 -1.8, -9.5 -3.2 -1.8, 
+            -9.5 -5.1 -1.8, -12.35 -5.2 -3.68532e-015, -12.35 -3.2 -3.55271e-015, -12.2361 -3.2 0.424877, 
+            -12.5 -3.2 -4.93825, -12.35 -3.2 -3.55271e-015, -12.2361 -3.2 -0.424877, -12.2361 -5.2 -0.424877, 
+            -12.2361 -3.2 -0.424877, -12.35 -3.2 -3.55271e-015, -12.5 -3.2 -4.93825, -12.5 -3.2 1.27868, 
+            -12.35 -3.2 -3.55271e-015, -12.2361 -5.2 -0.424877, -12.35 -3.2 -3.55271e-015, -12.35 -5.2 -3.68532e-015, 
+            -12.2361 -5.2 0.424877, -12.2361 -3.2 0.424877, -11.9249 -3.2 0.736147, -12.2361 -5.2 0.424877, 
+            -12.35 -5.2 -3.68532e-015, -12.2361 -3.2 0.424877, -11.9249 -5.2 0.736147, -11.9249 -3.2 0.736147, 
+            -11.5 -3.2 0.85, -11.9249 -5.2 0.736147, -12.2361 -5.2 0.424877, -11.9249 -3.2 0.736147, 
+            -11.5 -5.2 0.85, -11.5 -3.2 0.85, -11.0751 -3.2 0.736147, -11.5 -5.2 0.85, 
+            -11.9249 -5.2 0.736147, -11.5 -3.2 0.85, -11.0751 -5.2 0.736147, -11.0751 -3.2 0.736147, 
+            -10.7639 -3.2 0.424877, -11.0751 -5.2 0.736147, -11.5 -5.2 0.85, -11.0751 -3.2 0.736147, 
+            -10.7639 -5.2 0.424877, -10.7639 -3.2 0.424877, -10.65 -3.2 -3.55271e-015, -10.7639 -5.2 0.424877, 
+            -11.0751 -5.2 0.736147, -10.7639 -3.2 0.424877, -10.65 -5.2 -3.47714e-015, -10.65 -3.2 -3.55271e-015, 
+            -10.7639 -3.2 -0.424877, -10.65 -5.2 -3.47714e-015, -10.7639 -5.2 0.424877, -10.65 -3.2 -3.55271e-015, 
+            -10.7639 -5.2 -0.424877, -10.7639 -3.2 -0.424877, -11.0751 -3.2 -0.736147, -10.7639 -5.2 -0.424877, 
+            -10.65 -5.2 -3.47714e-015, -10.7639 -3.2 -0.424877, -11.0751 -5.2 -0.736147, -11.0751 -3.2 -0.736147, 
+            -11.5 -3.2 -0.85, -11.0751 -5.2 -0.736147, -10.7639 -5.2 -0.424877, -11.0751 -3.2 -0.736147, 
+            -11.5 -5.2 -0.85, -11.5 -3.2 -0.85, -11.9249 -3.2 -0.736147, -11.5 -5.2 -0.85, 
+            -11.0751 -5.2 -0.736147, -11.5 -3.2 -0.85, -11.9249 -5.2 -0.736147, -11.9249 -3.2 -0.736147, 
+            -12.2361 -3.2 -0.424877, -11.9249 -5.2 -0.736147, -11.5 -5.2 -0.85, -11.9249 -3.2 -0.736147, 
+            -12.2361 -5.2 -0.424877, -11.9249 -5.2 -0.736147, -12.2361 -3.2 -0.424877, -16.1436 -4.2 5.25367, 
+            -16.1436 -3.2 5.25367, -12.7343 -3.2 1.84437, -16.4491 -4.2 5.44447, -16.4491 -3.2 5.44447, 
+            -16.1436 -3.2 5.25367, -16.4491 -4.2 5.44447, -16.1436 -3.2 5.25367, -16.1436 -4.2 5.25367, 
+            -12.7343 -4.2 1.84437, -12.7343 -3.2 1.84437, -12.5609 -3.2 1.58483, -16.1436 -4.2 5.25367, 
+            -12.7343 -3.2 1.84437, -12.7343 -4.2 1.84437, -12.5609 -4.2 1.58483, -12.5609 -3.2 1.58483, 
+            -12.5 -3.2 1.27868, -12.5609 -4.2 1.58483, -12.7343 -4.2 1.84437, -12.5609 -3.2 1.58483, 
+            -12.5 -4.2 1.27868, -12.5 -3.2 1.27868, -12.5 -3.2 -4.93825, -12.5609 -4.2 1.58483, 
+            -12.5 -3.2 1.27868, -12.5 -4.2 1.27868, -12.5 -4.2 -4.93825, -12.5 -3.2 -4.93825, 
+            -12.6122 -3.2 -5.34678, -12.5 -4.2 1.27868, -12.5 -3.2 -4.93825, -12.5 -4.2 -4.93825, 
+            -12.6122 -4.2 -5.3469, -12.6122 -3.2 -5.34678, -12.9176 -3.2 -5.6409, -12.6122 -4.2 -5.3469, 
+            -12.5 -4.2 -4.93825, -12.6122 -3.2 -5.34678, -12.9175 -4.2 -5.64088, -12.9176 -3.2 -5.6409, 
+            -13.3301 -3.2 -5.73769, -12.9175 -4.2 -5.64088, -12.6122 -4.2 -5.3469, -12.9176 -3.2 -5.6409, 
+            -13.3301 -4.2 -5.73769, -13.3301 -3.2 -5.73769, -14.6079 -3.2 -5.6763, -12.9175 -4.2 -5.64088, 
+            -13.3301 -3.2 -5.73769, -13.3301 -4.2 -5.73769, -15.0711 -4.2 -5.64606, -14.6079 -3.2 -5.6763, 
+            -15.7866 -3.2 -5.58942, -14.2714 -4.2 -5.69521, -13.3301 -4.2 -5.73769, -14.6079 -3.2 -5.6763, 
+            -15.0711 -4.2 -5.64606, -14.2714 -4.2 -5.69521, -14.6079 -3.2 -5.6763, -16.3965 -4.2 -5.52943, 
+            -15.7866 -3.2 -5.58942, -16.8693 -3.2 -5.47436, -15.7723 -4.2 -5.5906, -15.0711 -4.2 -5.64606, 
+            -15.7866 -3.2 -5.58942, -16.3965 -4.2 -5.52943, -15.7723 -4.2 -5.5906, -15.7866 -3.2 -5.58942, 
+            -17.5693 -4.2 -5.37518, -16.8693 -3.2 -5.47436, -17.8606 -3.2 -5.32645, -17.5693 -4.2 -5.37518, 
+            -16.3965 -4.2 -5.52943, -16.8693 -3.2 -5.47436, -18.4019 -4.2 -5.222, -17.8606 -3.2 -5.32645, 
+            -18.7664 -3.2 -5.1392, -18.4019 -4.2 -5.222, -17.5693 -4.2 -5.37518, -17.8606 -3.2 -5.32645, 
+            -19.5933 -4.2 -4.90567, -18.7664 -3.2 -5.1392, -19.5934 -3.2 -4.90563, -18.4019 -4.2 -5.222, 
+            -18.7664 -3.2 -5.1392, -19.5933 -4.2 -4.90567, -19.5933 -4.2 -4.90567, -19.5934 -3.2 -4.90563, 
+            -20.2161 -3.2 -4.671, -20.2657 -4.2 -4.65044, -20.2161 -3.2 -4.671, -20.7457 -3.2 -4.41768, 
+            -20.2657 -4.2 -4.65044, -19.5933 -4.2 -4.90567, -20.2161 -3.2 -4.671, -20.7566 -4.2 -4.41124, 
+            -20.7457 -3.2 -4.41768, -21.6064 -3.2 -3.83325, -20.7566 -4.2 -4.41124, -20.2657 -4.2 -4.65044, 
+            -20.7457 -3.2 -4.41768, -21.6156 -4.2 -3.82544, -21.6064 -3.2 -3.83325, -22.2522 -3.2 -3.14971, 
+            -21.198 -4.2 -4.14288, -20.7566 -4.2 -4.41124, -21.6064 -3.2 -3.83325, -21.6156 -4.2 -3.82544, 
+            -21.198 -4.2 -4.14288, -21.6064 -3.2 -3.83325, -22.2929 -4.2 -3.09411, -22.2522 -3.2 -3.14971, 
+            -22.7287 -3.2 -2.33275, -21.9884 -4.2 -3.4666, -21.6156 -4.2 -3.82544, -22.2522 -3.2 -3.14971, 
+            -22.2929 -4.2 -3.09411, -21.9884 -4.2 -3.4666, -22.2522 -3.2 -3.14971, -22.7907 -4.2 -2.1842, 
+            -22.7287 -3.2 -2.33275, -23.0458 -3.2 -1.31408, -22.5685 -4.2 -2.65806, -22.2929 -4.2 -3.09411, 
+            -22.7287 -3.2 -2.33275, -22.7907 -4.2 -2.1842, -22.5685 -4.2 -2.65806, -22.7287 -3.2 -2.33275, 
+            -23.0715 -4.2 -1.17272, -23.0458 -3.2 -1.31408, -23.1316 -3.2 -0.705926, -22.9572 -4.2 -1.68604, 
+            -22.7907 -4.2 -2.1842, -23.0458 -3.2 -1.31408, -23.0715 -4.2 -1.17272, -22.9572 -4.2 -1.68604, 
+            -23.0458 -3.2 -1.31408, -23.1407 -4.2 -0.611805, -23.1316 -3.2 -0.705926, -23.1636 -3.2 -3.55271e-015, 
+            -23.1407 -4.2 -0.611805, -23.0715 -4.2 -1.17272, -23.1316 -3.2 -0.705926, -23.1636 -4.2 -3.56697e-015, 
+            -23.1636 -3.2 -3.55271e-015, -23.1359 -3.2 0.660185, -23.1407 -4.2 -0.611805, -23.1636 -3.2 -3.55271e-015, 
+            -23.1636 -4.2 -3.56697e-015, -23.0981 -4.2 1.00226, -23.1359 -3.2 0.660185, -23.0614 -3.2 1.23296, 
+            -23.147 -4.2 0.525843, -23.1636 -4.2 -3.56697e-015, -23.1359 -3.2 0.660185, -23.0981 -4.2 1.00226, 
+            -23.147 -4.2 0.525843, -23.1359 -3.2 0.660185, -23.018 -4.2 1.44285, -23.0614 -3.2 1.23296, 
+            -22.7751 -3.2 2.22302, -23.018 -4.2 1.44285, -23.0981 -4.2 1.00226, -23.0614 -3.2 1.23296, 
+            -22.7448 -4.2 2.29556, -22.7751 -3.2 2.22302, -22.3283 -3.2 3.04471, -22.9007 -4.2 1.87614, 
+            -23.018 -4.2 1.44285, -22.7751 -3.2 2.22302, -22.7448 -4.2 2.29556, -22.9007 -4.2 1.87614, 
+            -22.7751 -3.2 2.22302, -22.3118 -4.2 3.06768, -22.3283 -3.2 3.04471, -21.6936 -3.2 3.75724, 
+            -22.5496 -4.2 2.69213, -22.7448 -4.2 2.29556, -22.3283 -3.2 3.04471, -22.3118 -4.2 3.06768, 
+            -22.5496 -4.2 2.69213, -22.3283 -3.2 3.04471, -21.4041 -4.2 3.99531, -21.6936 -3.2 3.75724, 
+            -20.8138 -3.2 4.38009, -22.0539 -4.2 3.3936, -22.3118 -4.2 3.06768, -21.6936 -3.2 3.75724, 
+            -21.7536 -4.2 3.70254, -22.0539 -4.2 3.3936, -21.6936 -3.2 3.75724, -21.4041 -4.2 3.99531, 
+            -21.7536 -4.2 3.70254, -21.6936 -3.2 3.75724, -20.6495 -4.2 4.4681, -20.8138 -3.2 4.38009, 
+            -20.2559 -3.2 4.65371, -21.0353 -4.2 4.24869, -21.4041 -4.2 3.99531, -20.8138 -3.2 4.38009, 
+            -20.6495 -4.2 4.4681, -21.0353 -4.2 4.24869, -20.8138 -3.2 4.38009, -20.2023 -4.2 4.67767, 
+            -20.2559 -3.2 4.65371, -19.5934 -3.2 4.90563, -20.2023 -4.2 4.67767, -20.6495 -4.2 4.4681, 
+            -20.2559 -3.2 4.65371, -19.5933 -4.2 4.90566, -19.5934 -3.2 4.90563, -18.9829 -3.2 5.08503, 
+            -20.2023 -4.2 4.67767, -19.5934 -3.2 4.90563, -19.5933 -4.2 4.90566, -18.3474 -4.2 5.23345, 
+            -18.9829 -3.2 5.08503, -18.3152 -3.2 5.24008, -18.3474 -4.2 5.23345, -19.5933 -4.2 4.90566, 
+            -18.9829 -3.2 5.08503, -18.2277 -4.2 5.2578, -18.3152 -3.2 5.24008, -16.8072 -3.2 5.48197, 
+            -18.2277 -4.2 5.2578, -18.3474 -4.2 5.23345, -18.3152 -3.2 5.24008, -16.8072 -4.2 5.48197, 
+            -16.8072 -3.2 5.48197, -16.4491 -3.2 5.44447, -18.2277 -4.2 5.2578, -16.8072 -3.2 5.48197, 
+            -16.8072 -4.2 5.48197, -16.4491 -4.2 5.44447, -16.8072 -4.2 5.48197, -16.4491 -3.2 5.44447, 
+            -9.5 -5.74257 5.80347, -9.5 -5.1 6.39814, -9.5 -5.43999 6.12329, -10.7471 -5.1 6.33914, 
+            -9.5 -5.43999 6.12329, -9.5 -5.1 6.39814, -9.5 -6.00052 5.4449, -9.5 -5.1 6.39814, 
+            -9.5 -5.74257 5.80347, -9.5 -6.20437 5.06434, -9.5 -5.1 6.39814, -9.5 -6.00052 5.4449, 
+            -9.5 -6.3494 4.68605, -9.5 -5.1 6.39814, -9.5 -6.20437 5.06434, -9.5 -6.43964 4.32996, 
+            -9.5 -5.1 6.39814, -9.5 -6.3494 4.68605, -9.5 -6.48637 4.00242, -9.5 -5.1 6.39814, 
+            -9.5 -6.43964 4.32996, -9.5 -6.5 3.7, -9.5 -5.1 6.39814, -9.5 -6.48637 4.00242, 
+            -9.5 -6.5 3.35459, -9.5 -5.1 6.39814, -9.5 -6.5 3.7, -9.5 -5.1 1.8, 
+            -10.7471 -5.1 6.33914, -9.5 -5.1 6.39814, -9.5 -6.5 3.02506, -9.5 -5.1 6.39814, 
+            -9.5 -6.5 3.35459, -9.5 -6.5 2.708, -9.5 -5.1 6.39814, -9.5 -6.5 3.02506, 
+            -9.5 -6.5 2.40029, -9.5 -5.1 6.39814, -9.5 -6.5 2.708, -9.5 -6.5 2.09858, 
+            -9.5 -5.1 6.39814, -9.5 -6.5 2.40029, -9.5 -5.1 1.8, -9.5 -5.1 6.39814, 
+            -9.5 -6.5 2.09858, -10.6524 -5.54838 5.95578, -9.5 -5.74257 5.80347, -9.5 -5.43999 6.12329, 
+            -10.7471 -5.1 6.33914, -10.6524 -5.54838 5.95578, -9.5 -5.43999 6.12329, -10.5628 -5.91493 5.51398, 
+            -9.5 -6.00052 5.4449, -9.5 -5.74257 5.80347, -10.6524 -5.54838 5.95578, -10.5628 -5.91493 5.51398, 
+            -9.5 -5.74257 5.80347, -10.4752 -6.18988 5.04024, -9.5 -6.20437 5.06434, -9.5 -6.00052 5.4449, 
+            -10.5628 -5.91493 5.51398, -10.4752 -6.18988 5.04024, -9.5 -6.00052 5.4449, -10.3895 -6.37264 4.56265, 
+            -9.5 -6.3494 4.68605, -9.5 -6.20437 5.06434, -10.4752 -6.18988 5.04024, -10.3895 -6.37264 4.56265, 
+            -9.5 -6.20437 5.06434, -10.3895 -6.37264 4.56265, -9.5 -6.43964 4.32996, -9.5 -6.3494 4.68605, 
+            -10.3055 -6.47116 4.10775, -9.5 -6.48637 4.00242, -9.5 -6.43964 4.32996, -10.3895 -6.37264 4.56265, 
+            -10.3055 -6.47116 4.10775, -9.5 -6.43964 4.32996, -10.2552 -6.5 3.69804, -9.5 -6.5 3.7, 
+            -9.5 -6.48637 4.00242, -10.3055 -6.47116 4.10775, -10.2552 -6.5 3.69804, -9.5 -6.48637 4.00242, 
+            -10.1448 -6.5 3.33504, -9.5 -6.5 3.7, -10.2552 -6.5 3.69804, -9.5 -6.5 3.35459, 
+            -9.5 -6.5 3.7, -10.1448 -6.5 3.33504, -10.949 -6.5 3.6924, -10.2552 -6.5 3.69804, 
+            -10.3055 -6.47116 4.10775, -10.7493 -6.5 3.33415, -10.2552 -6.5 3.69804, -10.949 -6.5 3.6924, 
+            -10.1448 -6.5 3.33504, -10.2552 -6.5 3.69804, -10.7493 -6.5 3.33415, -11.2531 -6.36609 4.53458, 
+            -10.3055 -6.47116 4.10775, -10.3895 -6.37264 4.56265, -11.0794 -6.46891 4.09284, -10.949 -6.5 3.6924, 
+            -10.3055 -6.47116 4.10775, -11.2531 -6.36609 4.53458, -11.0794 -6.46891 4.09284, -10.3055 -6.47116 4.10775, 
+            -11.4317 -6.18004 4.99736, -10.3895 -6.37264 4.56265, -10.4752 -6.18988 5.04024, -11.4317 -6.18004 4.99736, 
+            -11.2531 -6.36609 4.53458, -10.3895 -6.37264 4.56265, -11.6153 -5.90477 5.45696, -10.4752 -6.18988 5.04024, 
+            -10.5628 -5.91493 5.51398, -11.6153 -5.90477 5.45696, -11.4317 -6.18004 4.99736, -10.4752 -6.18988 5.04024, 
+            -11.8042 -5.54165 5.88773, -10.5628 -5.91493 5.51398, -10.6524 -5.54838 5.95578, -11.8042 -5.54165 5.88773, 
+            -11.6153 -5.90477 5.45696, -10.5628 -5.91493 5.51398, -11.9963 -5.1 6.2657, -10.6524 -5.54838 5.95578, 
+            -10.7471 -5.1 6.33914, -11.9963 -5.1 6.2657, -11.8042 -5.54165 5.88773, -10.6524 -5.54838 5.95578, 
+            -11.9963 -5.1 6.2657, -10.7471 -5.1 6.33914, -11.2527 -5.1 6.31145, -9.5 -5.1 1.8, 
+            -11.2527 -5.1 6.31145, -10.7471 -5.1 6.33914, -9.5 -5.1 1.8, -11.9963 -5.1 6.2657, 
+            -11.2527 -5.1 6.31145, -11.6101 -6.5 3.68308, -10.949 -6.5 3.6924, -11.0794 -6.46891 4.09284, 
+            -11.3406 -6.5 3.33112, -10.949 -6.5 3.6924, -11.6101 -6.5 3.68308, -10.7493 -6.5 3.33415, 
+            -10.949 -6.5 3.6924, -11.3406 -6.5 3.33112, -12.0821 -6.37137 4.46264, -11.0794 -6.46891 4.09284, 
+            -11.2531 -6.36609 4.53458, -11.8297 -6.46943 4.05534, -11.6101 -6.5 3.68308, -11.0794 -6.46891 4.09284, 
+            -12.0821 -6.37137 4.46264, -11.8297 -6.46943 4.05534, -11.0794 -6.46891 4.09284, -12.3421 -6.19811 4.88908, 
+            -11.2531 -6.36609 4.53458, -11.4317 -6.18004 4.99736, -12.3421 -6.19811 4.88908, -12.0821 -6.37137 4.46264, 
+            -11.2531 -6.36609 4.53458, -12.6097 -5.94559 5.31551, -11.4317 -6.18004 4.99736, -11.6153 -5.90477 5.45696, 
+            -12.6097 -5.94559 5.31551, -12.3421 -6.19811 4.88908, -11.4317 -6.18004 4.99736, -12.8853 -5.6148 5.7214, 
+            -11.6153 -5.90477 5.45696, -11.8042 -5.54165 5.88773, -12.8853 -5.6148 5.7214, -12.6097 -5.94559 5.31551, 
+            -11.6153 -5.90477 5.45696, -13.1692 -5.21258 6.08687, -11.8042 -5.54165 5.88773, -11.9963 -5.1 6.2657, 
+            -13.1692 -5.21258 6.08687, -12.8853 -5.6148 5.7214, -11.8042 -5.54165 5.88773, -13.1692 -5.21258 6.08687, 
+            -11.9963 -5.1 6.2657, -13 -5.1 6.1919, -9.5 -5.1 1.8, -13 -5.1 6.1919, 
+            -11.9963 -5.1 6.2657, -13.4617 -4.75155 6.39504, -13.1692 -5.21258 6.08687, -13 -5.1 6.1919, 
+            -13 -4.68827 6.46816, -13.4617 -4.75155 6.39504, -13 -5.1 6.1919, -13 -5.1 3.1, 
+            -13 -5.1 6.1919, -9.5 -5.1 1.8, -12.1966 -6.5 3.67114, -11.6101 -6.5 3.68308, 
+            -11.8297 -6.46943 4.05534, -11.9454 -6.5 3.32567, -11.6101 -6.5 3.68308, -12.1966 -6.5 3.67114, 
+            -11.3406 -6.5 3.33112, -11.6101 -6.5 3.68308, -11.9454 -6.5 3.32567, -12.5952 -6.46709 4.02949, 
+            -11.8297 -6.46943 4.05534, -12.0821 -6.37137 4.46264, -12.5952 -6.46709 4.02949, -12.2847 -6.5 3.66902, 
+            -11.8297 -6.46943 4.05534, -12.1966 -6.5 3.67114, -11.8297 -6.46943 4.05534, -12.2847 -6.5 3.66902, 
+            -12.9304 -6.36404 4.42142, -12.0821 -6.37137 4.46264, -12.3421 -6.19811 4.88908, -12.5952 -6.46709 4.02949, 
+            -12.0821 -6.37137 4.46264, -12.9304 -6.36404 4.42142, -13.2757 -6.18567 4.83023, -12.3421 -6.19811 4.88908, 
+            -12.6097 -5.94559 5.31551, -12.9304 -6.36404 4.42142, -12.3421 -6.19811 4.88908, -13.2757 -6.18567 4.83023, 
+            -13.631 -5.92974 5.23841, -12.6097 -5.94559 5.31551, -12.8853 -5.6148 5.7214, -13.2757 -6.18567 4.83023, 
+            -12.6097 -5.94559 5.31551, -13.631 -5.92974 5.23841, -13.9969 -5.59819 5.62722, -12.8853 -5.6148 5.7214, 
+            -13.1692 -5.21258 6.08687, -13.631 -5.92974 5.23841, -12.8853 -5.6148 5.7214, -13.9969 -5.59819 5.62722, 
+            -14.3739 -5.19795 5.97846, -13.1692 -5.21258 6.08687, -13.4617 -4.75155 6.39504, -13.9969 -5.59819 5.62722, 
+            -13.1692 -5.21258 6.08687, -14.3739 -5.19795 5.97846, -13 -4.68827 6.46816, -13.7626 -4.24893 6.63412, 
+            -13.4617 -4.75155 6.39504, -14.7623 -4.74095 6.27672, -13.4617 -4.75155 6.39504, -13.7626 -4.24893 6.63412, 
+            -14.3739 -5.19795 5.97846, -13.4617 -4.75155 6.39504, -14.7623 -4.74095 6.27672, -13 -4.21513 6.69929, 
+            -14.0712 -3.72479 6.79881, -13.7626 -4.24893 6.63412, -15.1618 -4.24318 6.51125, -13.7626 -4.24893 6.63412, 
+            -14.0712 -3.72479 6.79881, -13 -4.68827 6.46816, -13 -4.21513 6.69929, -13.7626 -4.24893 6.63412, 
+            -14.7623 -4.74095 6.27672, -13.7626 -4.24893 6.63412, -15.1618 -4.24318 6.51125, -13 -4.21513 6.69929, 
+            -13 -3.70811 6.86249, -14.0712 -3.72479 6.79881, -15.1618 -4.24318 6.51125, -14.0712 -3.72479 6.79881, 
+            -15.5714 -3.72311 6.67717, -14.2212 -6.46241 3.94375, -15.0106 -6.47391 3.81588, -14.6021 -6.5 3.5725, 
+            -15.7362 -6.43681 3.90361, -14.6021 -6.5 3.5725, -15.0106 -6.47391 3.81588, -13.8609 -6.5 3.61313, 
+            -14.2212 -6.46241 3.94375, -14.6021 -6.5 3.5725, -14.1003 -6.5 3.28545, -13.8609 -6.5 3.61313, 
+            -14.6021 -6.5 3.5725, -14.8935 -6.5 3.55334, -14.1003 -6.5 3.28545, -14.6021 -6.5 3.5725, 
+            -15.7362 -6.43681 3.90361, -14.8935 -6.5 3.55334, -14.6021 -6.5 3.5725, -14.2212 -6.46241 3.94375, 
+            -15.2293 -6.43925 3.95034, -15.0106 -6.47391 3.81588, -15.7362 -6.43681 3.90361, -15.0106 -6.47391 3.81588, 
+            -15.2293 -6.43925 3.95034, -14.6918 -6.34936 4.2929, -15.4541 -6.38919 4.09079, -15.2293 -6.43925 3.95034, 
+            -16.4007 -6.25068 4.29067, -15.2293 -6.43925 3.95034, -15.4541 -6.38919 4.09079, -14.2212 -6.46241 3.94375, 
+            -14.6918 -6.34936 4.2929, -15.2293 -6.43925 3.95034, -16.4007 -6.25068 4.29067, -15.7362 -6.43681 3.90361, 
+            -15.2293 -6.43925 3.95034, -14.6918 -6.34936 4.2929, -15.8783 -6.25627 4.35902, -15.4541 -6.38919 4.09079, 
+            -16.4007 -6.25068 4.29067, -15.4541 -6.38919 4.09079, -15.8783 -6.25627 4.35902, -15.1722 -6.16079 4.65306, 
+            -15.9312 -6.23629 4.39248, -15.8783 -6.25627 4.35902, -17.0682 -5.9491 4.67769, -15.8783 -6.25627 4.35902, 
+            -15.9312 -6.23629 4.39248, -14.6918 -6.34936 4.2929, -15.1722 -6.16079 4.65306, -15.8783 -6.25627 4.35902, 
+            -17.0682 -5.9491 4.67769, -16.4007 -6.25068 4.29067, -15.8783 -6.25627 4.35902, -15.1722 -6.16079 4.65306, 
+            -16.4391 -6.00737 4.71059, -15.9312 -6.23629 4.39248, -17.0682 -5.9491 4.67769, -15.9312 -6.23629 4.39248, 
+            -16.4391 -6.00737 4.71059, -15.6624 -5.89804 5.01006, -16.5338 -5.95754 4.76864, -16.4391 -6.00737 4.71059, 
+            -17.0682 -5.9491 4.67769, -16.4391 -6.00737 4.71059, -16.5338 -5.95754 4.76864, -15.1722 -6.16079 4.65306, 
+            -15.6624 -5.89804 5.01006, -16.4391 -6.00737 4.71059, -15.6624 -5.89804 5.01006, -16.9739 -5.699 5.02901, 
+            -16.5338 -5.95754 4.76864, -17.7399 -5.5414 5.04054, -16.5338 -5.95754 4.76864, -16.9739 -5.699 5.02901, 
+            -17.7399 -5.5414 5.04054, -17.0682 -5.9491 4.67769, -16.5338 -5.95754 4.76864, -16.1631 -5.56497 5.34866, 
+            -17.1986 -5.55099 5.15447, -16.9739 -5.699 5.02901, -17.7399 -5.5414 5.04054, -16.9739 -5.699 5.02901, 
+            -17.1986 -5.55099 5.15447, -15.6624 -5.89804 5.01006, -16.1631 -5.56497 5.34866, -16.9739 -5.699 5.02901, 
+            -16.1631 -5.56497 5.34866, -17.5306 -5.3146 5.32814, -17.1986 -5.55099 5.15447, -18.4178 -5.04132 5.35537, 
+            -17.1986 -5.55099 5.15447, -17.5306 -5.3146 5.32814, -18.4178 -5.04132 5.35537, -17.7399 -5.5414 5.04054, 
+            -17.1986 -5.55099 5.15447, -16.6751 -5.16869 5.65411, -17.8759 -5.04914 5.49172, -17.5306 -5.3146 5.32814, 
+            -18.4178 -5.04132 5.35537, -17.5306 -5.3146 5.32814, -17.8759 -5.04914 5.49172, -16.1631 -5.56497 5.34866, 
+            -16.6751 -5.16869 5.65411, -17.5306 -5.3146 5.32814, -17.1989 -4.71977 5.91392, -18.1054 -4.86335 5.58971, 
+            -17.8759 -5.04914 5.49172, -19.1027 -4.46802 5.60274, -17.8759 -5.04914 5.49172, -18.1054 -4.86335 5.58971, 
+            -16.6751 -5.16869 5.65411, -17.1989 -4.71977 5.91392, -17.8759 -5.04914 5.49172, -19.1027 -4.46802 5.60274, 
+            -18.4178 -5.04132 5.35537, -17.8759 -5.04914 5.49172, -17.1989 -4.71977 5.91392, -18.5656 -4.47256 5.75885, 
+            -18.1054 -4.86335 5.58971, -19.1027 -4.46802 5.60274, -18.1054 -4.86335 5.58971, -18.5656 -4.47256 5.75885, 
+            -17.7341 -4.23167 6.11934, -18.6979 -4.35658 5.80048, -18.5656 -4.47256 5.75885, -19.7927 -3.84527 5.77131, 
+            -18.5656 -4.47256 5.75885, -18.6979 -4.35658 5.80048, -17.1989 -4.71977 5.91392, -17.7341 -4.23167 6.11934, 
+            -18.5656 -4.47256 5.75885, -19.1027 -4.46802 5.60274, -18.5656 -4.47256 5.75885, -19.7927 -3.84527 5.77131, 
+            -17.7341 -4.23167 6.11934, -19.1051 -3.99248 5.90893, -18.6979 -4.35658 5.80048, -19.7927 -3.84527 5.77131, 
+            -18.6979 -4.35658 5.80048, -19.1051 -3.99248 5.90893, -18.2793 -3.71974 6.26643, -19.2641 -3.84805 5.94334, 
+            -19.1051 -3.99248 5.90893, -19.7927 -3.84527 5.77131, -19.1051 -3.99248 5.90893, -19.2641 -3.84805 5.94334, 
+            -17.7341 -4.23167 6.11934, -18.2793 -3.71974 6.26643, -19.1051 -3.99248 5.90893, -18.2793 -3.71974 6.26643, 
+            -19.5303 -3.60453 5.99118, -19.2641 -3.84805 5.94334, -16.9866 -3.72143 6.50299, -18.2793 -3.71974 6.26643, 
+            -17.7341 -4.23167 6.11934, -16.4949 -4.23742 6.34262, -17.7341 -4.23167 6.11934, -17.1989 -4.71977 5.91392, 
+            -16.4949 -4.23742 6.34262, -16.9866 -3.72143 6.50299, -17.7341 -4.23167 6.11934, -16.0144 -4.73036 6.11902, 
+            -17.1989 -4.71977 5.91392, -16.6751 -5.16869 5.65411, -16.0144 -4.73036 6.11902, -16.4949 -4.23742 6.34262, 
+            -17.1989 -4.71977 5.91392, -15.5462 -5.18332 5.83659, -16.6751 -5.16869 5.65411, -16.1631 -5.56497 5.34866, 
+            -15.5462 -5.18332 5.83659, -16.0144 -4.73036 6.11902, -16.6751 -5.16869 5.65411, -15.0908 -5.58158 5.50508, 
+            -16.1631 -5.56497 5.34866, -15.6624 -5.89804 5.01006, -15.0908 -5.58158 5.50508, -15.5462 -5.18332 5.83659, 
+            -16.1631 -5.56497 5.34866, -14.6477 -5.91389 5.13846, -15.6624 -5.89804 5.01006, -15.1722 -6.16079 4.65306, 
+            -14.6477 -5.91389 5.13846, -15.0908 -5.58158 5.50508, -15.6624 -5.89804 5.01006, -14.2163 -6.17323 4.75318, 
+            -15.1722 -6.16079 4.65306, -14.6918 -6.34936 4.2929, -14.2163 -6.17323 4.75318, -14.6477 -5.91389 5.13846, 
+            -15.1722 -6.16079 4.65306, -13.7958 -6.3567 4.36625, -14.6918 -6.34936 4.2929, -14.2212 -6.46241 3.94375, 
+            -13.7958 -6.3567 4.36625, -14.2163 -6.17323 4.75318, -14.6918 -6.34936 4.2929, -13.3865 -6.46475 3.99349, 
+            -14.2212 -6.46241 3.94375, -13.8609 -6.5 3.61313, -13.3865 -6.46475 3.99349, -13.7958 -6.3567 4.36625, 
+            -14.2212 -6.46241 3.94375, -13.3865 -6.46475 3.99349, -13.8609 -6.5 3.61313, -13.0889 -6.5 3.645, 
+            -13.2928 -6.5 3.29909, -13.0889 -6.5 3.645, -13.8609 -6.5 3.61313, -13.2928 -6.5 3.29909, 
+            -13.8609 -6.5 3.61313, -14.1003 -6.5 3.28545, -12.5952 -6.46709 4.02949, -13.3865 -6.46475 3.99349, 
+            -13.0889 -6.5 3.645, -12.5952 -6.46709 4.02949, -13.0889 -6.5 3.645, -12.2847 -6.5 3.66902, 
+            -12.5893 -6.5 3.31652, -12.2847 -6.5 3.66902, -13.0889 -6.5 3.645, -12.5893 -6.5 3.31652, 
+            -13.0889 -6.5 3.645, -13.2928 -6.5 3.29909, -15.5714 -3.72311 6.67717, -16.9866 -3.72143 6.50299, 
+            -16.4949 -4.23742 6.34262, -15.1618 -4.24318 6.51125, -16.4949 -4.23742 6.34262, -16.0144 -4.73036 6.11902, 
+            -15.1618 -4.24318 6.51125, -15.5714 -3.72311 6.67717, -16.4949 -4.23742 6.34262, -14.7623 -4.74095 6.27672, 
+            -16.0144 -4.73036 6.11902, -15.5462 -5.18332 5.83659, -14.7623 -4.74095 6.27672, -15.1618 -4.24318 6.51125, 
+            -16.0144 -4.73036 6.11902, -14.3739 -5.19795 5.97846, -15.5462 -5.18332 5.83659, -15.0908 -5.58158 5.50508, 
+            -14.3739 -5.19795 5.97846, -14.7623 -4.74095 6.27672, -15.5462 -5.18332 5.83659, -13.9969 -5.59819 5.62722, 
+            -15.0908 -5.58158 5.50508, -14.6477 -5.91389 5.13846, -13.9969 -5.59819 5.62722, -14.3739 -5.19795 5.97846, 
+            -15.0908 -5.58158 5.50508, -13.631 -5.92974 5.23841, -14.6477 -5.91389 5.13846, -14.2163 -6.17323 4.75318, 
+            -13.631 -5.92974 5.23841, -13.9969 -5.59819 5.62722, -14.6477 -5.91389 5.13846, -13.2757 -6.18567 4.83023, 
+            -14.2163 -6.17323 4.75318, -13.7958 -6.3567 4.36625, -13.2757 -6.18567 4.83023, -13.631 -5.92974 5.23841, 
+            -14.2163 -6.17323 4.75318, -12.9304 -6.36404 4.42142, -13.7958 -6.3567 4.36625, -13.3865 -6.46475 3.99349, 
+            -12.9304 -6.36404 4.42142, -13.2757 -6.18567 4.83023, -13.7958 -6.3567 4.36625, -12.5952 -6.46709 4.02949, 
+            -12.9304 -6.36404 4.42142, -13.3865 -6.46475 3.99349, -11.9454 -6.5 3.32567, -12.1966 -6.5 3.67114, 
+            -12.2847 -6.5 3.66902, -11.9454 -6.5 3.32567, -12.2847 -6.5 3.66902, -12.5893 -6.5 3.31652, 
+            -11.0967 -6.5 1.79876, -11.2535 -6.5 1.63577, -11.245 -6.5 1.63018, -11.3242 -6.5 1.6406, 
+            -11.245 -6.5 1.63018, -11.2535 -6.5 1.63577, -10.7248 -6.5 1.50516, -11.0967 -6.5 1.79876, 
+            -11.245 -6.5 1.63018, -10.7746 -6.5 1.48201, -10.7248 -6.5 1.50516, -11.245 -6.5 1.63018, 
+            -10.8687 -5.2 1.5244, -10.7746 -6.5 1.48201, -11.245 -6.5 1.63018, -10.8687 -5.2 1.5244, 
+            -11.245 -6.5 1.63018, -11.3242 -6.5 1.6406, -11.0967 -6.5 1.79876, -11.6911 -6.5 1.91359, 
+            -11.2535 -6.5 1.63577, -12.1564 -6.5 2.02654, -11.2535 -6.5 1.63577, -11.6911 -6.5 1.91359, 
+            -11.3242 -6.5 1.6406, -11.2535 -6.5 1.63577, -12.1564 -6.5 2.02654, -11.4981 -6.5 2.09221, 
+            -11.8645 -6.5 2.01901, -11.6911 -6.5 1.91359, -12.1564 -6.5 2.02654, -11.6911 -6.5 1.91359, 
+            -11.8645 -6.5 2.01901, -11.0967 -6.5 1.79876, -11.4981 -6.5 2.09221, -11.6911 -6.5 1.91359, 
+            -11.4981 -6.5 2.09221, -12.1957 -6.5 2.21484, -11.8645 -6.5 2.01901, -12.8619 -6.5 2.40451, 
+            -11.8645 -6.5 2.01901, -12.1957 -6.5 2.21484, -12.1564 -6.5 2.02654, -11.8645 -6.5 2.01901, 
+            -12.8619 -6.5 2.40451, -11.9237 -6.5 2.38724, -12.5241 -6.5 2.40373, -12.1957 -6.5 2.21484, 
+            -12.8619 -6.5 2.40451, -12.1957 -6.5 2.21484, -12.5241 -6.5 2.40373, -11.4981 -6.5 2.09221, 
+            -11.9237 -6.5 2.38724, -12.1957 -6.5 2.21484, -12.3681 -6.5 2.68557, -12.7403 -6.5 2.52605, 
+            -12.5241 -6.5 2.40373, -13.5897 -6.5 2.78093, -12.5241 -6.5 2.40373, -12.7403 -6.5 2.52605, 
+            -11.9237 -6.5 2.38724, -12.3681 -6.5 2.68557, -12.5241 -6.5 2.40373, -12.8619 -6.5 2.40451, 
+            -12.5241 -6.5 2.40373, -13.5897 -6.5 2.78093, -12.3681 -6.5 2.68557, -13.1711 -6.5 2.76695, 
+            -12.7403 -6.5 2.52605, -13.5897 -6.5 2.78093, -12.7403 -6.5 2.52605, -13.1711 -6.5 2.76695, 
+            -12.8262 -6.5 2.98894, -13.2086 -6.5 2.78779, -13.1711 -6.5 2.76695, -13.5897 -6.5 2.78093, 
+            -13.1711 -6.5 2.76695, -13.2086 -6.5 2.78779, -12.3681 -6.5 2.68557, -12.8262 -6.5 2.98894, 
+            -13.1711 -6.5 2.76695, -12.8262 -6.5 2.98894, -13.622 -6.5 3.01763, -13.2086 -6.5 2.78779, 
+            -14.3246 -6.5 3.15917, -13.2086 -6.5 2.78779, -13.622 -6.5 3.01763, -13.5897 -6.5 2.78093, 
+            -13.2086 -6.5 2.78779, -14.3246 -6.5 3.15917, -13.2928 -6.5 3.29909, -13.9032 -6.5 3.1746, 
+            -13.622 -6.5 3.01763, -14.3246 -6.5 3.15917, -13.622 -6.5 3.01763, -13.9032 -6.5 3.1746, 
+            -12.8262 -6.5 2.98894, -13.2928 -6.5 3.29909, -13.622 -6.5 3.01763, -13.2928 -6.5 3.29909, 
+            -14.1003 -6.5 3.28545, -13.9032 -6.5 3.1746, -14.8935 -6.5 3.55334, -13.9032 -6.5 3.1746, 
+            -14.1003 -6.5 3.28545, -14.3246 -6.5 3.15917, -13.9032 -6.5 3.1746, -14.8935 -6.5 3.55334, 
+            -12.1944 -6.5 2.996, -13.2928 -6.5 3.29909, -12.8262 -6.5 2.98894, -12.1944 -6.5 2.996, 
+            -12.5893 -6.5 3.31652, -13.2928 -6.5 3.29909, -11.8094 -6.5 2.68496, -12.8262 -6.5 2.98894, 
+            -12.3681 -6.5 2.68557, -11.8094 -6.5 2.68496, -12.1944 -6.5 2.996, -12.8262 -6.5 2.98894, 
+            -11.4386 -6.5 2.38152, -12.3681 -6.5 2.68557, -11.9237 -6.5 2.38724, -11.4386 -6.5 2.38152, 
+            -11.8094 -6.5 2.68496, -12.3681 -6.5 2.68557, -11.0864 -6.5 2.08378, -11.9237 -6.5 2.38724, 
+            -11.4981 -6.5 2.09221, -11.0864 -6.5 2.08378, -11.4386 -6.5 2.38152, -11.9237 -6.5 2.38724, 
+            -10.757 -6.5 1.78985, -11.4981 -6.5 2.09221, -11.0967 -6.5 1.79876, -10.757 -6.5 1.78985, 
+            -11.0864 -6.5 2.08378, -11.4981 -6.5 2.09221, -10.4547 -6.5 1.49783, -11.0967 -6.5 1.79876, 
+            -10.7248 -6.5 1.50516, -10.4547 -6.5 1.49783, -10.757 -6.5 1.78985, -11.0967 -6.5 1.79876, 
+            -10.7746 -6.5 1.48201, -10.3939 -6.5 1.22433, -10.7248 -6.5 1.50516, -10.1838 -6.5 1.20581, 
+            -10.7248 -6.5 1.50516, -10.3939 -6.5 1.22433, -10.1838 -6.5 1.20581, -10.4547 -6.5 1.49783, 
+            -10.7248 -6.5 1.50516, -10.3335 -5.2 1.16686, -10.3939 -6.5 1.22433, -10.7746 -6.5 1.48201, 
+            -10.1838 -6.5 1.20581, -10.3939 -6.5 1.22433, -10.3338 -6.5 1.16721, -10.3335 -5.2 1.16686, 
+            -10.3338 -6.5 1.16721, -10.3939 -6.5 1.22433, -10.3335 -5.2 1.16686, -10.7746 -6.5 1.48201, 
+            -10.8687 -5.2 1.5244, -10.2965 -6.5 1.1287, -10.1838 -6.5 1.20581, -10.3338 -6.5 1.16721, 
+            -10.3335 -5.2 1.16686, -10.2965 -6.5 1.1287, -10.3338 -6.5 1.16721, -11.9454 -6.5 3.32567, 
+            -12.5893 -6.5 3.31652, -12.1944 -6.5 2.996, -11.6253 -6.5 2.99587, -12.1944 -6.5 2.996, 
+            -11.8094 -6.5 2.68496, -11.6253 -6.5 2.99587, -11.9454 -6.5 3.32567, -12.1944 -6.5 2.996, 
+            -11.3145 -6.5 2.67784, -11.8094 -6.5 2.68496, -11.4386 -6.5 2.38152, -11.3145 -6.5 2.67784, 
+            -11.6253 -6.5 2.99587, -11.8094 -6.5 2.68496, -11.0164 -6.5 2.36948, -11.4386 -6.5 2.38152, 
+            -11.0864 -6.5 2.08378, -11.0164 -6.5 2.36948, -11.3145 -6.5 2.67784, -11.4386 -6.5 2.38152, 
+            -10.7343 -6.5 2.06872, -11.0864 -6.5 2.08378, -10.757 -6.5 1.78985, -10.7343 -6.5 2.06872, 
+            -11.0164 -6.5 2.36948, -11.0864 -6.5 2.08378, -10.4719 -6.5 1.77345, -10.757 -6.5 1.78985, 
+            -10.4547 -6.5 1.49783, -10.4719 -6.5 1.77345, -10.7343 -6.5 2.06872, -10.757 -6.5 1.78985, 
+            -10.2324 -6.5 1.48158, -10.4547 -6.5 1.49783, -10.1838 -6.5 1.20581, -10.2324 -6.5 1.48158, 
+            -10.4719 -6.5 1.77345, -10.4547 -6.5 1.49783, -10.2965 -6.5 1.1287, -9.94856 -6.5 0.911922, 
+            -10.1838 -6.5 1.20581, -10.0193 -6.5 1.19102, -10.1838 -6.5 1.20581, -9.94856 -6.5 0.911922, 
+            -10.0193 -6.5 1.19102, -10.2324 -6.5 1.48158, -10.1838 -6.5 1.20581, -10.0373 -6.5 0.85158, 
+            -9.75333 -6.5 0.614253, -9.94856 -6.5 0.911922, -9.83611 -6.5 0.899672, -9.94856 -6.5 0.911922, 
+            -9.75333 -6.5 0.614253, -10.2965 -6.5 1.1287, -10.0373 -6.5 0.85158, -9.94856 -6.5 0.911922, 
+            -9.83611 -6.5 0.899672, -10.0193 -6.5 1.19102, -9.94856 -6.5 0.911922, -9.81482 -6.5 0.574149, 
+            -9.60238 -6.5 0.310911, -9.75333 -6.5 0.614253, -9.6862 -6.5 0.605449, -9.75333 -6.5 0.614253, 
+            -9.60238 -6.5 0.310911, -10.0373 -6.5 0.85158, -9.81482 -6.5 0.574149, -9.75333 -6.5 0.614253, 
+            -9.6862 -6.5 0.605449, -9.83611 -6.5 0.899672, -9.75333 -6.5 0.614253, -9.6344 -6.5 0.290722, 
+            -9.5 -6.5 -3.59977e-015, -9.60238 -6.5 0.310911, -9.57302 -6.5 0.306256, -9.60238 -6.5 0.310911, 
+            -9.5 -6.5 -3.59977e-015, -9.81482 -6.5 0.574149, -9.6344 -6.5 0.290722, -9.60238 -6.5 0.310911, 
+            -9.57302 -6.5 0.306256, -9.6862 -6.5 0.605449, -9.60238 -6.5 0.310911, -9.69824 -6.5 0.297746, 
+            -9.5 -6.5 -3.59977e-015, -9.6344 -6.5 0.290722, -9.85159 -6.5 0.431641, -9.5 -6.5 -3.59977e-015, 
+            -9.69824 -6.5 0.297746, -9.55509 -6.5 0.30353, -9.57302 -6.5 0.306256, -9.5 -6.5 -3.59977e-015, 
+            -9.54182 -6.5 0.302421, -9.55509 -6.5 0.30353, -9.5 -6.5 -3.59977e-015, -9.52596 -6.5 0.302426, 
+            -9.54182 -6.5 0.302421, -9.5 -6.5 -3.59977e-015, -9.5 -6.5 0.300824, -9.52596 -6.5 0.302426, 
+            -9.5 -6.5 -3.59977e-015, -9.90817 -6.5 0.434264, -9.5 -6.5 -3.59977e-015, -9.85159 -6.5 0.431641, 
+            -9.89267 -6.5 0.37282, -9.5 -6.5 -3.59977e-015, -9.90817 -6.5 0.434264, -9.87899 -6.5 0.307936, 
+            -9.5 -6.5 -3.59977e-015, -9.89267 -6.5 0.37282, -9.67452 -6.5 -3.60603e-015, -9.5 -6.5 -3.59977e-015, 
+            -9.67452 -6.5 -3.67457e-015, -9.8502 -6.5 -0.0256688, -9.5 -6.5 -3.59977e-015, -9.67452 -6.5 -3.60603e-015, 
+            -9.85022 -6.5 0.0270103, -9.85 -6.5 -3.74978e-015, -9.67452 -6.5 -3.67457e-015, -9.85083 -6.5 0.0522034, 
+            -9.85022 -6.5 0.0270103, -9.5 -6.5 -3.59977e-015, -9.85173 -6.5 0.0755593, -9.85083 -6.5 0.0522034, 
+            -9.5 -6.5 -3.59977e-015, -9.85286 -6.5 0.0971676, -9.85173 -6.5 0.0755593, -9.5 -6.5 -3.59977e-015, 
+            -9.85418 -6.5 0.117413, -9.85286 -6.5 0.0971676, -9.5 -6.5 -3.59977e-015, -9.85573 -6.5 0.137397, 
+            -9.85418 -6.5 0.117413, -9.5 -6.5 -3.59977e-015, -9.85755 -6.5 0.15763, -9.85573 -6.5 0.137397, 
+            -9.5 -6.5 -3.59977e-015, -9.85969 -6.5 0.17856, -9.85755 -6.5 0.15763, -9.5 -6.5 -3.59977e-015, 
+            -9.86225 -6.5 0.200658, -9.85969 -6.5 0.17856, -9.5 -6.5 -3.59977e-015, -9.86528 -6.5 0.224, 
+            -9.86225 -6.5 0.200658, -9.5 -6.5 -3.59977e-015, -9.86886 -6.5 0.248738, -9.86528 -6.5 0.224, 
+            -9.5 -6.5 -3.59977e-015, -9.87899 -6.5 0.307936, -9.86886 -6.5 0.248738, -9.5 -6.5 -3.59977e-015, 
+            -9.69825 -6.5 -0.297757, -9.5 -6.5 -3.59977e-015, -9.80049 -6.5 -0.425282, -9.85163 -6.5 -0.431643, 
+            -9.80049 -6.5 -0.425282, -9.5 -6.5 -3.59977e-015, -9.63368 -6.5 -0.289406, -9.5 -6.5 -3.59977e-015, 
+            -9.69825 -6.5 -0.297757, -9.60238 -6.5 -0.310911, -9.5 -6.5 -3.59977e-015, -9.63368 -6.5 -0.289406, 
+            -9.57302 -6.5 -0.306256, -9.5 -6.5 -3.59977e-015, -9.60238 -6.5 -0.310911, -9.55509 -6.5 -0.30353, 
+            -9.5 -6.5 -3.59977e-015, -9.57302 -6.5 -0.306256, -9.54182 -6.5 -0.302421, -9.5 -6.5 -3.59977e-015, 
+            -9.55509 -6.5 -0.30353, -9.52596 -6.5 -0.302426, -9.5 -6.5 -3.59977e-015, -9.54182 -6.5 -0.302421, 
+            -9.5 -6.5 -0.303052, -9.5 -6.5 -3.59977e-015, -9.52596 -6.5 -0.302426, -9.90817 -6.5 -0.434258, 
+            -9.85163 -6.5 -0.431643, -9.5 -6.5 -3.59977e-015, -9.89275 -6.5 -0.373157, -9.90817 -6.5 -0.434258, 
+            -9.5 -6.5 -3.59977e-015, -9.87887 -6.5 -0.307329, -9.89275 -6.5 -0.373157, -9.5 -6.5 -3.59977e-015, 
+            -9.86863 -6.5 -0.247279, -9.87887 -6.5 -0.307329, -9.5 -6.5 -3.59977e-015, -9.86503 -6.5 -0.222231, 
+            -9.86863 -6.5 -0.247279, -9.5 -6.5 -3.59977e-015, -9.86199 -6.5 -0.198554, -9.86503 -6.5 -0.222231, 
+            -9.5 -6.5 -3.59977e-015, -9.85945 -6.5 -0.176294, -9.86199 -6.5 -0.198554, -9.5 -6.5 -3.59977e-015, 
+            -9.8573 -6.5 -0.15504, -9.85945 -6.5 -0.176294, -9.5 -6.5 -3.59977e-015, -9.85551 -6.5 -0.134759, 
+            -9.8573 -6.5 -0.15504, -9.5 -6.5 -3.59977e-015, -9.85398 -6.5 -0.114576, -9.85551 -6.5 -0.134759, 
+            -9.5 -6.5 -3.59977e-015, -9.8527 -6.5 -0.094352, -9.85398 -6.5 -0.114576, -9.5 -6.5 -3.59977e-015, 
+            -9.85161 -6.5 -0.0727866, -9.8527 -6.5 -0.094352, -9.5 -6.5 -3.59977e-015, -9.85076 -6.5 -0.0499468, 
+            -9.85161 -6.5 -0.0727866, -9.5 -6.5 -3.59977e-015, -9.8502 -6.5 -0.0256688, -9.85076 -6.5 -0.0499468, 
+            -9.5 -6.5 -3.59977e-015, -9.69824 -6.5 0.297746, -9.6344 -6.5 0.290722, -9.81482 -6.5 0.574149, 
+            -9.96695 -6.5 0.610119, -9.81482 -6.5 0.574149, -10.0373 -6.5 0.85158, -9.80049 -6.5 0.42528, 
+            -9.69824 -6.5 0.297746, -9.81482 -6.5 0.574149, -9.96695 -6.5 0.610119, -9.80049 -6.5 0.42528, 
+            -9.81482 -6.5 0.574149, -10.1229 -6.5 0.908897, -10.0373 -6.5 0.85158, -10.2965 -6.5 1.1287, 
+            -9.96695 -6.5 0.610119, -10.0373 -6.5 0.85158, -10.1229 -6.5 0.908897, -9.97569 -5.2 0.631614, 
+            -10.1229 -6.5 0.908897, -10.2965 -6.5 1.1287, -9.97569 -5.2 0.631614, -10.2965 -6.5 1.1287, 
+            -10.3335 -5.2 1.16686, -9.97569 -5.2 0.631614, -9.96695 -6.5 0.610119, -10.1229 -6.5 0.908897, 
+            -9.85159 -6.5 0.431641, -9.69824 -6.5 0.297746, -9.80049 -6.5 0.42528, -9.93507 -6.5 0.522969, 
+            -9.80049 -6.5 0.42528, -9.96695 -6.5 0.610119, -9.93507 -6.5 0.522969, -9.85159 -6.5 0.431641, 
+            -9.80049 -6.5 0.42528, -9.85 -5.2 -3.73125e-015, -9.93507 -6.5 0.522969, -9.96695 -6.5 0.610119, 
+            -9.97569 -5.2 0.631614, -9.85 -5.2 -3.73125e-015, -9.96695 -6.5 0.610119, -11.3406 -6.5 3.33112, 
+            -11.9454 -6.5 3.32567, -11.6253 -6.5 2.99587, -11.0996 -6.5 2.99464, -11.6253 -6.5 2.99587, 
+            -11.3145 -6.5 2.67784, -11.0996 -6.5 2.99464, -11.3406 -6.5 3.33112, -11.6253 -6.5 2.99587, 
+            -10.8657 -6.5 2.67176, -11.3145 -6.5 2.67784, -11.0164 -6.5 2.36948, -10.8657 -6.5 2.67176, 
+            -11.0996 -6.5 2.99464, -11.3145 -6.5 2.67784, -10.6413 -6.5 2.36019, -11.0164 -6.5 2.36948, 
+            -10.7343 -6.5 2.06872, -10.6413 -6.5 2.36019, -10.8657 -6.5 2.67176, -11.0164 -6.5 2.36948, 
+            -10.4291 -6.5 2.05764, -10.7343 -6.5 2.06872, -10.4719 -6.5 1.77345, -10.4291 -6.5 2.05764, 
+            -10.6413 -6.5 2.36019, -10.7343 -6.5 2.06872, -10.2316 -6.5 1.76182, -10.4719 -6.5 1.77345, 
+            -10.2324 -6.5 1.48158, -10.2316 -6.5 1.76182, -10.4291 -6.5 2.05764, -10.4719 -6.5 1.77345, 
+            -10.0514 -6.5 1.47044, -10.2324 -6.5 1.48158, -10.0193 -6.5 1.19102, -10.0514 -6.5 1.47044, 
+            -10.2316 -6.5 1.76182, -10.2324 -6.5 1.48158, -9.89109 -6.5 1.18122, -10.0193 -6.5 1.19102, 
+            -9.83611 -6.5 0.899672, -9.89109 -6.5 1.18122, -10.0514 -6.5 1.47044, -10.0193 -6.5 1.19102, 
+            -9.75321 -6.5 0.891848, -9.83611 -6.5 0.899672, -9.6862 -6.5 0.605449, -9.75321 -6.5 0.891848, 
+            -9.89109 -6.5 1.18122, -9.83611 -6.5 0.899672, -9.64035 -6.5 0.60005, -9.6862 -6.5 0.605449, 
+            -9.57302 -6.5 0.306256, -9.64035 -6.5 0.60005, -9.75321 -6.5 0.891848, -9.6862 -6.5 0.605449, 
+            -9.55509 -6.5 0.30353, -9.64035 -6.5 0.60005, -9.57302 -6.5 0.306256, -10.7493 -6.5 3.33415, 
+            -11.3406 -6.5 3.33112, -11.0996 -6.5 2.99464, -10.5897 -6.5 2.99305, -11.0996 -6.5 2.99464, 
+            -10.8657 -6.5 2.67176, -10.5897 -6.5 2.99305, -10.7493 -6.5 3.33415, -11.0996 -6.5 2.99464, 
+            -10.4342 -6.5 2.66701, -10.8657 -6.5 2.67176, -10.6413 -6.5 2.36019, -10.4342 -6.5 2.66701, 
+            -10.5897 -6.5 2.99305, -10.8657 -6.5 2.67176, -10.2845 -6.5 2.35354, -10.6413 -6.5 2.36019, 
+            -10.4291 -6.5 2.05764, -10.2845 -6.5 2.35354, -10.4342 -6.5 2.66701, -10.6413 -6.5 2.36019, 
+            -10.1422 -6.5 2.05016, -10.4291 -6.5 2.05764, -10.2316 -6.5 1.76182, -10.1422 -6.5 2.05016, 
+            -10.2845 -6.5 2.35354, -10.4291 -6.5 2.05764, -10.0091 -6.5 1.75438, -10.2316 -6.5 1.76182, 
+            -10.0514 -6.5 1.47044, -10.0091 -6.5 1.75438, -10.1422 -6.5 2.05016, -10.2316 -6.5 1.76182, 
+            -9.88694 -6.5 1.46372, -10.0514 -6.5 1.47044, -9.89109 -6.5 1.18122, -9.88694 -6.5 1.46372, 
+            -10.0091 -6.5 1.75438, -10.0514 -6.5 1.47044, -9.77742 -6.5 1.17568, -9.89109 -6.5 1.18122, 
+            -9.75321 -6.5 0.891848, -9.77742 -6.5 1.17568, -9.88694 -6.5 1.46372, -9.89109 -6.5 1.18122, 
+            -9.68225 -6.5 0.887771, -9.75321 -6.5 0.891848, -9.64035 -6.5 0.60005, -9.68225 -6.5 0.887771, 
+            -9.77742 -6.5 1.17568, -9.75321 -6.5 0.891848, -9.60314 -6.5 0.597515, -9.64035 -6.5 0.60005, 
+            -9.55509 -6.5 0.30353, -9.60314 -6.5 0.597515, -9.68225 -6.5 0.887771, -9.64035 -6.5 0.60005, 
+            -9.54182 -6.5 0.302421, -9.60314 -6.5 0.597515, -9.55509 -6.5 0.30353, -10.1448 -6.5 3.33504, 
+            -10.7493 -6.5 3.33415, -10.5897 -6.5 2.99305, -10.0664 -6.5 2.99082, -10.5897 -6.5 2.99305, 
+            -10.4342 -6.5 2.66701, -10.0664 -6.5 2.99082, -10.1448 -6.5 3.33504, -10.5897 -6.5 2.99305, 
+            -9.98939 -6.5 2.66286, -10.4342 -6.5 2.66701, -10.2845 -6.5 2.35354, -9.98939 -6.5 2.66286, 
+            -10.0664 -6.5 2.99082, -10.4342 -6.5 2.66701, -9.9146 -6.5 2.34848, -10.2845 -6.5 2.35354, 
+            -10.1422 -6.5 2.05016, -9.9146 -6.5 2.34848, -9.98939 -6.5 2.66286, -10.2845 -6.5 2.35354, 
+            -9.84291 -6.5 2.04499, -10.1422 -6.5 2.05016, -10.0091 -6.5 1.75438, -9.84291 -6.5 2.04499, 
+            -9.9146 -6.5 2.34848, -10.1422 -6.5 2.05016, -9.77518 -6.5 1.74971, -10.0091 -6.5 1.75438, 
+            -9.88694 -6.5 1.46372, -9.77518 -6.5 1.74971, -9.84291 -6.5 2.04499, -10.0091 -6.5 1.75438, 
+            -9.71227 -6.5 1.45995, -9.88694 -6.5 1.46372, -9.77742 -6.5 1.17568, -9.71227 -6.5 1.45995, 
+            -9.77518 -6.5 1.74971, -9.88694 -6.5 1.46372, -9.65503 -6.5 1.17302, -9.77742 -6.5 1.17568, 
+            -9.68225 -6.5 0.887771, -9.65503 -6.5 1.17302, -9.71227 -6.5 1.45995, -9.77742 -6.5 1.17568, 
+            -9.60433 -6.5 0.886253, -9.68225 -6.5 0.887771, -9.60314 -6.5 0.597515, -9.60433 -6.5 0.886253, 
+            -9.65503 -6.5 1.17302, -9.68225 -6.5 0.887771, -9.56102 -6.5 0.596949, -9.60314 -6.5 0.597515, 
+            -9.54182 -6.5 0.302421, -9.56102 -6.5 0.596949, -9.60433 -6.5 0.886253, -9.60314 -6.5 0.597515, 
+            -9.52596 -6.5 0.302426, -9.56102 -6.5 0.596949, -9.54182 -6.5 0.302421, -9.5 -6.5 3.02506, 
+            -10.1448 -6.5 3.33504, -10.0664 -6.5 2.99082, -9.5 -6.5 3.02506, -9.5 -6.5 3.35459, 
+            -10.1448 -6.5 3.33504, -9.5 -6.5 2.708, -10.0664 -6.5 2.99082, -9.98939 -6.5 2.66286, 
+            -9.5 -6.5 2.708, -9.5 -6.5 3.02506, -10.0664 -6.5 2.99082, -9.5 -6.5 2.40029, 
+            -9.98939 -6.5 2.66286, -9.9146 -6.5 2.34848, -9.5 -6.5 2.40029, -9.5 -6.5 2.708, 
+            -9.98939 -6.5 2.66286, -9.5 -6.5 2.09858, -9.9146 -6.5 2.34848, -9.84291 -6.5 2.04499, 
+            -9.5 -6.5 2.09858, -9.5 -6.5 2.40029, -9.9146 -6.5 2.34848, -9.5 -6.5 1.79944, 
+            -9.84291 -6.5 2.04499, -9.77518 -6.5 1.74971, -9.5 -6.5 1.79944, -9.5 -6.5 2.09858, 
+            -9.84291 -6.5 2.04499, -9.5 -6.5 1.4998, -9.77518 -6.5 1.74971, -9.71227 -6.5 1.45995, 
+            -9.5 -6.5 1.4998, -9.5 -6.5 1.79944, -9.77518 -6.5 1.74971, -9.5 -6.5 1.19966, 
+            -9.71227 -6.5 1.45995, -9.65503 -6.5 1.17302, -9.5 -6.5 1.19966, -9.5 -6.5 1.4998, 
+            -9.71227 -6.5 1.45995, -9.5 -6.5 0.899848, -9.65503 -6.5 1.17302, -9.60433 -6.5 0.886253, 
+            -9.5 -6.5 0.899848, -9.5 -6.5 1.19966, -9.65503 -6.5 1.17302, -9.5 -6.5 0.600322, 
+            -9.60433 -6.5 0.886253, -9.56102 -6.5 0.596949, -9.5 -6.5 0.600322, -9.5 -6.5 0.899848, 
+            -9.60433 -6.5 0.886253, -9.5 -6.5 0.600322, -9.56102 -6.5 0.596949, -9.52596 -6.5 0.302426, 
+            -9.5 -6.5 0.300824, -9.5 -6.5 0.600322, -9.52596 -6.5 0.302426, -9.5 -5.1 1.8, 
+            -9.5 -6.5 2.09858, -9.5 -6.5 1.79944, -19.1027 -4.46802 5.60274, -19.7927 -3.84527 5.77131, 
+            -20.3141 -3.84399 5.57383, -19.6474 -4.46386 5.42375, -20.3141 -3.84399 5.57383, -20.8277 -3.8427 5.34725, 
+            -19.1027 -4.46802 5.60274, -20.3141 -3.84399 5.57383, -19.6474 -4.46386 5.42375, -20.1958 -4.45971 5.21818, 
+            -20.8277 -3.8427 5.34725, -21.3304 -3.84142 5.08742, -19.6474 -4.46386 5.42375, -20.8277 -3.8427 5.34725, 
+            -20.1958 -4.45971 5.21818, -20.7423 -4.45556 4.9819, -21.3304 -3.84142 5.08742, -21.8173 -3.84013 4.79092, 
+            -20.1958 -4.45971 5.21818, -21.3304 -3.84142 5.08742, -20.7423 -4.45556 4.9819, -21.2798 -4.4514 4.71121, 
+            -21.8173 -3.84013 4.79092, -22.2799 -3.83885 4.45572, -20.7423 -4.45556 4.9819, -21.8173 -3.84013 4.79092, 
+            -21.2798 -4.4514 4.71121, -21.7978 -4.44725 4.40332, -22.2799 -3.83885 4.45572, -22.7094 -3.83756 4.08139, 
+            -21.2798 -4.4514 4.71121, -22.2799 -3.83885 4.45572, -21.7978 -4.44725 4.40332, -22.2846 -4.4431 4.05674, 
+            -22.7094 -3.83756 4.08139, -23.0962 -3.83627 3.66959, -21.7978 -4.44725 4.40332, -22.7094 -3.83756 4.08139, 
+            -22.2846 -4.4431 4.05674, -22.7277 -4.43894 3.67165, -23.0962 -3.83627 3.66959, -23.432 -3.83499 3.22433, 
+            -22.2846 -4.4431 4.05674, -23.0962 -3.83627 3.66959, -22.7277 -4.43894 3.67165, -23.1152 -4.43479 3.25061, 
+            -23.432 -3.83499 3.22433, -23.7097 -3.8337 2.75163, -22.7277 -4.43894 3.67165, -23.432 -3.83499 3.22433, 
+            -23.1152 -4.43479 3.25061, -23.4371 -4.43064 2.79838, -23.7097 -3.8337 2.75163, -23.9294 -3.83241 2.2556, 
+            -23.1152 -4.43479 3.25061, -23.7097 -3.8337 2.75163, -23.4371 -4.43064 2.79838, -23.6919 -4.42649 2.31805, 
+            -23.9294 -3.83241 2.2556, -24.0953 -3.83113 1.73637, -23.4371 -4.43064 2.79838, -23.9294 -3.83241 2.2556, 
+            -23.6919 -4.42649 2.31805, -23.885 -4.42233 1.80628, -24.0953 -3.83113 1.73637, -24.2113 -3.82984 1.1906, 
+            -23.6919 -4.42649 2.31805, -24.0953 -3.83113 1.73637, -23.885 -4.42233 1.80628, -24.0222 -4.41818 1.25413, 
+            -24.2113 -3.82984 1.1906, -24.2799 -3.82856 0.612125, -23.885 -4.42233 1.80628, -24.2113 -3.82984 1.1906, 
+            -24.0222 -4.41818 1.25413, -24.1047 -4.41403 0.651628, -24.2799 -3.82856 0.612125, -24.3044 -3.82243 3.10718e-014, 
+            -24.0222 -4.41818 1.25413, -24.2799 -3.82856 0.612125, -24.1047 -4.41403 0.651628, -24.2512 -4.05435 -2.55472e-013, 
+            -24.1047 -4.41403 0.651628, -24.3044 -3.82243 3.10718e-014, -24.2799 -3.82856 -0.612125, -24.2512 -4.05435 -2.55472e-013, 
+            -24.3044 -3.82243 3.10718e-014, -15.7362 -6.43681 3.90361, -15.1889 -6.5 3.5318, -14.8935 -6.5 3.55334, 
+            -14.3246 -6.5 3.15917, -14.8935 -6.5 3.55334, -15.1889 -6.5 3.5318, -16.2906 -6.43508 3.84207, 
+            -15.7689 -6.5 3.48247, -15.1889 -6.5 3.5318, -14.7931 -6.5 3.134, -15.1889 -6.5 3.5318, 
+            -15.7689 -6.5 3.48247, -15.7362 -6.43681 3.90361, -16.2906 -6.43508 3.84207, -15.1889 -6.5 3.5318, 
+            -14.7931 -6.5 3.134, -14.3246 -6.5 3.15917, -15.1889 -6.5 3.5318, -16.8851 -6.43334 3.76508, 
+            -16.3025 -6.5 3.4274, -15.7689 -6.5 3.48247, -15.3027 -6.5 3.09902, -15.7689 -6.5 3.48247, 
+            -16.3025 -6.5 3.4274, -16.2906 -6.43508 3.84207, -16.8851 -6.43334 3.76508, -15.7689 -6.5 3.48247, 
+            -15.3027 -6.5 3.09902, -14.7931 -6.5 3.134, -15.7689 -6.5 3.48247, -17.5073 -6.43161 3.66897, 
+            -16.8078 -6.5 3.36472, -16.3025 -6.5 3.4274, -15.8428 -6.5 3.0516, -16.3025 -6.5 3.4274, 
+            -16.8078 -6.5 3.36472, -16.8851 -6.43334 3.76508, -17.5073 -6.43161 3.66897, -16.3025 -6.5 3.4274, 
+            -15.8428 -6.5 3.0516, -15.3027 -6.5 3.09902, -16.3025 -6.5 3.4274, -18.1435 -6.42987 3.54957, 
+            -17.2776 -6.5 3.2952, -16.8078 -6.5 3.36472, -16.4021 -6.5 2.98871, -16.8078 -6.5 3.36472, 
+            -17.2776 -6.5 3.2952, -17.5073 -6.43161 3.66897, -18.1435 -6.42987 3.54957, -16.8078 -6.5 3.36472, 
+            -16.4021 -6.5 2.98871, -15.8428 -6.5 3.0516, -16.8078 -6.5 3.36472, -18.1435 -6.42987 3.54957, 
+            -17.7168 -6.5 3.21793, -17.2776 -6.5 3.2952, -16.4021 -6.5 2.98871, -17.2776 -6.5 3.2952, 
+            -17.7168 -6.5 3.21793, -18.7773 -6.42814 3.40203, -18.3215 -6.5 3.08651, -17.7168 -6.5 3.21793, 
+            -16.9676 -6.5 2.90643, -17.7168 -6.5 3.21793, -18.3215 -6.5 3.08651, -18.1435 -6.42987 3.54957, 
+            -18.7773 -6.42814 3.40203, -17.7168 -6.5 3.21793, -16.9676 -6.5 2.90643, -16.4021 -6.5 2.98871, 
+            -17.7168 -6.5 3.21793, -19.3902 -6.42641 3.22149, -18.8668 -6.5 2.93363, -18.3215 -6.5 3.08651, 
+            -17.5251 -6.5 2.80056, -18.3215 -6.5 3.08651, -18.8668 -6.5 2.93363, -18.7773 -6.42814 3.40203, 
+            -19.3902 -6.42641 3.22149, -18.3215 -6.5 3.08651, -17.5251 -6.5 2.80056, -16.9676 -6.5 2.90643, 
+            -18.3215 -6.5 3.08651, -19.9605 -6.42467 3.00336, -19.3482 -6.5 2.75823, -18.8668 -6.5 2.93363, 
+            -18.057 -6.5 2.66667, -18.8668 -6.5 2.93363, -19.3482 -6.5 2.75823, -19.3902 -6.42641 3.22149, 
+            -19.9605 -6.42467 3.00336, -18.8668 -6.5 2.93363, -18.057 -6.5 2.66667, -17.5251 -6.5 2.80056, 
+            -18.8668 -6.5 2.93363, -20.467 -6.42294 2.74533, -19.7551 -6.5 2.56504, -19.3482 -6.5 2.75823, 
+            -18.5453 -6.5 2.5009, -19.3482 -6.5 2.75823, -19.7551 -6.5 2.56504, -19.9605 -6.42467 3.00336, 
+            -20.467 -6.42294 2.74533, -19.3482 -6.5 2.75823, -18.5453 -6.5 2.5009, -18.057 -6.5 2.66667, 
+            -19.3482 -6.5 2.75823, -20.8906 -6.42121 2.44742, -20.114 -6.5 2.33782, -19.7551 -6.5 2.56504, 
+            -18.9728 -6.5 2.30176, -19.7551 -6.5 2.56504, -20.114 -6.5 2.33782, -20.467 -6.42294 2.74533, 
+            -20.8906 -6.42121 2.44742, -19.7551 -6.5 2.56504, -18.9728 -6.5 2.30176, -18.5453 -6.5 2.5009, 
+            -19.7551 -6.5 2.56504, -20.8906 -6.42121 2.44742, -20.3897 -6.5 2.10085, -20.114 -6.5 2.33782, 
+            -19.3257 -6.5 2.06866, -20.114 -6.5 2.33782, -20.3897 -6.5 2.10085, -19.3257 -6.5 2.06866, 
+            -18.9728 -6.5 2.30176, -20.114 -6.5 2.33782, -21.2255 -6.41947 2.10918, -20.6057 -6.5 1.84406, 
+            -20.3897 -6.5 2.10085, -19.6043 -6.5 1.79867, -20.3897 -6.5 2.10085, -20.6057 -6.5 1.84406, 
+            -20.8906 -6.42121 2.44742, -21.2255 -6.41947 2.10918, -20.3897 -6.5 2.10085, -19.6043 -6.5 1.79867, 
+            -19.3257 -6.5 2.06866, -20.3897 -6.5 2.10085, -21.4801 -6.41774 1.71648, -20.768 -6.5 1.57, 
+            -20.6057 -6.5 1.84406, -19.6043 -6.5 1.79867, -20.6057 -6.5 1.84406, -20.768 -6.5 1.57, 
+            -21.2255 -6.41947 2.10918, -21.4801 -6.41774 1.71648, -20.6057 -6.5 1.84406, -21.6654 -6.41601 1.24328, 
+            -20.8946 -6.5 1.25837, -20.768 -6.5 1.57, -19.8173 -6.5 1.47458, -20.768 -6.5 1.57, 
+            -20.8946 -6.5 1.25837, -21.4801 -6.41774 1.71648, -21.6654 -6.41601 1.24328, -20.768 -6.5 1.57, 
+            -19.8173 -6.5 1.47458, -19.6043 -6.5 1.79867, -20.768 -6.5 1.57, -21.6654 -6.41601 1.24328, 
+            -20.9875 -6.5 0.892714, -20.8946 -6.5 1.25837, -19.9727 -6.5 1.07291, -20.8946 -6.5 1.25837, 
+            -20.9875 -6.5 0.892714, -19.9727 -6.5 1.07291, -19.8173 -6.5 1.47458, -20.8946 -6.5 1.25837, 
+            -21.7791 -6.41427 0.668409, -21.0422 -6.5 0.496014, -20.9875 -6.5 0.892714, -20.0663 -6.5 0.578026, 
+            -20.9875 -6.5 0.892714, -21.0422 -6.5 0.496014, -21.6654 -6.41601 1.24328, -21.7791 -6.41427 0.668409, 
+            -20.9875 -6.5 0.892714, -20.0663 -6.5 0.578026, -19.9727 -6.5 1.07291, -20.9875 -6.5 0.892714, 
+            -21.814 -6.41356 -2.11951e-012, -21.0636 -6.5 2.99563e-011, -21.0422 -6.5 0.496014, -20.0663 -6.5 0.578026, 
+            -21.0422 -6.5 0.496014, -21.0636 -6.5 2.99563e-011, -21.7791 -6.41427 0.668409, -21.814 -6.41356 -2.11951e-012, 
+            -21.0422 -6.5 0.496014, -21.7791 -6.41427 -0.668409, -21.0636 -6.5 2.99563e-011, -21.814 -6.41356 -2.11951e-012, 
+            -20.1029 -6.5 -3.64132e-015, -20.0663 -6.5 0.578026, -21.0636 -6.5 2.99563e-011, -21.0422 -6.5 -0.496006, 
+            -20.1029 -6.5 -3.64132e-015, -21.0636 -6.5 2.99563e-011, -21.7791 -6.41427 -0.668409, -21.0422 -6.5 -0.496006, 
+            -21.0636 -6.5 2.99563e-011, -21.9179 -6.38753 -1.20417e-012, -21.814 -6.41356 -2.11951e-012, -21.7791 -6.41427 0.668409, 
+            -22.4419 -6.18486 -0.68437, -21.814 -6.41356 -2.11951e-012, -21.9179 -6.38753 -1.20417e-012, -22.4419 -6.18486 -0.68437, 
+            -21.7791 -6.41427 -0.668409, -21.814 -6.41356 -2.11951e-012, -22.4419 -6.18486 0.68437, -21.7791 -6.41427 0.668409, 
+            -21.6654 -6.41601 1.24328, -22.4738 -6.18352 2.2998e-013, -21.9179 -6.38753 -1.20417e-012, -21.7791 -6.41427 0.668409, 
+            -22.4419 -6.18486 0.68437, -22.4738 -6.18352 2.2998e-013, -21.7791 -6.41427 0.668409, -22.3291 -6.18992 1.27969, 
+            -21.6654 -6.41601 1.24328, -21.4801 -6.41774 1.71648, -22.3291 -6.18992 1.27969, -22.4419 -6.18486 0.68437, 
+            -21.6654 -6.41601 1.24328, -22.1456 -6.19498 1.77867, -21.4801 -6.41774 1.71648, -21.2255 -6.41947 2.10918, 
+            -22.1456 -6.19498 1.77867, -22.3291 -6.18992 1.27969, -21.4801 -6.41774 1.71648, -21.8932 -6.20005 2.20131, 
+            -21.2255 -6.41947 2.10918, -20.8906 -6.42121 2.44742, -21.8932 -6.20005 2.20131, -22.1456 -6.19498 1.77867, 
+            -21.2255 -6.41947 2.10918, -21.5615 -6.20511 2.57166, -20.8906 -6.42121 2.44742, -20.467 -6.42294 2.74533, 
+            -21.5615 -6.20511 2.57166, -21.8932 -6.20005 2.20131, -20.8906 -6.42121 2.44742, -21.1422 -6.21017 2.9026, 
+            -20.467 -6.42294 2.74533, -19.9605 -6.42467 3.00336, -21.1422 -6.21017 2.9026, -21.5615 -6.20511 2.57166, 
+            -20.467 -6.42294 2.74533, -20.6407 -6.21524 3.19403, -19.9605 -6.42467 3.00336, -19.3902 -6.42641 3.22149, 
+            -20.6407 -6.21524 3.19403, -21.1422 -6.21017 2.9026, -19.9605 -6.42467 3.00336, -20.0751 -6.2203 3.44523, 
+            -19.3902 -6.42641 3.22149, -18.7773 -6.42814 3.40203, -20.0751 -6.2203 3.44523, -20.6407 -6.21524 3.19403, 
+            -19.3902 -6.42641 3.22149, -19.4658 -6.22536 3.65783, -18.7773 -6.42814 3.40203, -18.1435 -6.42987 3.54957, 
+            -19.4658 -6.22536 3.65783, -20.0751 -6.2203 3.44523, -18.7773 -6.42814 3.40203, -18.8336 -6.23043 3.83583, 
+            -18.1435 -6.42987 3.54957, -17.5073 -6.43161 3.66897, -18.8336 -6.23043 3.83583, -19.4658 -6.22536 3.65783, 
+            -18.1435 -6.42987 3.54957, -18.1964 -6.23549 3.98367, -17.5073 -6.43161 3.66897, -16.8851 -6.43334 3.76508, 
+            -18.1964 -6.23549 3.98367, -18.8336 -6.23043 3.83583, -17.5073 -6.43161 3.66897, -17.57 -6.24055 4.10603, 
+            -16.8851 -6.43334 3.76508, -16.2906 -6.43508 3.84207, -17.57 -6.24055 4.10603, -18.1964 -6.23549 3.98367, 
+            -16.8851 -6.43334 3.76508, -16.9675 -6.24562 4.20708, -16.2906 -6.43508 3.84207, -15.7362 -6.43681 3.90361, 
+            -16.9675 -6.24562 4.20708, -17.57 -6.24055 4.10603, -16.2906 -6.43508 3.84207, -16.4007 -6.25068 4.29067, 
+            -16.9675 -6.24562 4.20708, -15.7362 -6.43681 3.90361, -22.4419 -6.18486 -0.68437, -21.9179 -6.38753 -1.20417e-012, 
+            -22.4738 -6.18352 2.2998e-013, -22.7142 -6.05757 2.07807e-013, -22.4738 -6.18352 2.2998e-013, -22.4419 -6.18486 0.68437, 
+            -23.0033 -5.84879 -0.692355, -22.4738 -6.18352 2.2998e-013, -22.7142 -6.05757 2.07807e-013, -23.0033 -5.84879 -0.692355, 
+            -22.4419 -6.18486 -0.68437, -22.4738 -6.18352 2.2998e-013, -23.0033 -5.84879 0.692355, -22.4419 -6.18486 0.68437, 
+            -22.3291 -6.18992 1.27969, -23.0365 -5.84532 -3.5881e-014, -22.7142 -6.05757 2.07807e-013, -22.4419 -6.18486 0.68437, 
+            -23.0033 -5.84879 0.692355, -23.0365 -5.84532 -3.5881e-014, -22.4419 -6.18486 0.68437, -22.8942 -5.8565 1.30235, 
+            -22.3291 -6.18992 1.27969, -22.1456 -6.19498 1.77867, -22.8942 -5.8565 1.30235, -23.0033 -5.84879 0.692355, 
+            -22.3291 -6.18992 1.27969, -22.7165 -5.86422 1.8238, -22.1456 -6.19498 1.77867, -21.8932 -6.20005 2.20131, 
+            -22.7165 -5.86422 1.8238, -22.8942 -5.8565 1.30235, -22.1456 -6.19498 1.77867, -22.4714 -5.87194 2.27499, 
+            -21.8932 -6.20005 2.20131, -21.5615 -6.20511 2.57166, -22.4714 -5.87194 2.27499, -22.7165 -5.86422 1.8238, 
+            -21.8932 -6.20005 2.20131, -22.1493 -5.87965 2.6773, -21.5615 -6.20511 2.57166, -21.1422 -6.21017 2.9026, 
+            -22.1493 -5.87965 2.6773, -22.4714 -5.87194 2.27499, -21.5615 -6.20511 2.57166, -21.7425 -5.88737 3.04186, 
+            -21.1422 -6.21017 2.9026, -20.6407 -6.21524 3.19403, -21.7425 -5.88737 3.04186, -22.1493 -5.87965 2.6773, 
+            -21.1422 -6.21017 2.9026, -21.2554 -5.89509 3.36798, -20.6407 -6.21524 3.19403, -20.0751 -6.2203 3.44523, 
+            -21.2554 -5.89509 3.36798, -21.7425 -5.88737 3.04186, -20.6407 -6.21524 3.19403, -20.7051 -5.9028 3.6541, 
+            -20.0751 -6.2203 3.44523, -19.4658 -6.22536 3.65783, -20.7051 -5.9028 3.6541, -21.2554 -5.89509 3.36798, 
+            -20.0751 -6.2203 3.44523, -20.1103 -5.91052 3.90102, -19.4658 -6.22536 3.65783, -18.8336 -6.23043 3.83583, 
+            -20.1103 -5.91052 3.90102, -20.7051 -5.9028 3.6541, -19.4658 -6.22536 3.65783, -19.4905 -5.91824 4.11196, 
+            -18.8336 -6.23043 3.83583, -18.1964 -6.23549 3.98367, -19.4905 -5.91824 4.11196, -20.1103 -5.91052 3.90102, 
+            -18.8336 -6.23043 3.83583, -18.8628 -5.92595 4.29084, -18.1964 -6.23549 3.98367, -17.57 -6.24055 4.10603, 
+            -18.8628 -5.92595 4.29084, -19.4905 -5.91824 4.11196, -18.1964 -6.23549 3.98367, -18.2419 -5.93367 4.44202, 
+            -17.57 -6.24055 4.10603, -16.9675 -6.24562 4.20708, -18.2419 -5.93367 4.44202, -18.8628 -5.92595 4.29084, 
+            -17.57 -6.24055 4.10603, -17.6402 -5.94139 4.56965, -16.9675 -6.24562 4.20708, -16.4007 -6.25068 4.29067, 
+            -17.6402 -5.94139 4.56965, -18.2419 -5.93367 4.44202, -16.9675 -6.24562 4.20708, -17.0682 -5.9491 4.67769, 
+            -17.6402 -5.94139 4.56965, -16.4007 -6.25068 4.29067, -23.0033 -5.84879 -0.692355, -22.7142 -6.05757 2.07807e-013, 
+            -23.0365 -5.84532 -3.5881e-014, -23.3974 -5.53313 -2.16664e-013, -23.0365 -5.84532 -3.5881e-014, -23.0033 -5.84879 0.692355, 
+            -23.4654 -5.43184 -0.690644, -23.0365 -5.84532 -3.5881e-014, -23.3974 -5.53313 -2.16664e-013, -23.4654 -5.43184 -0.690644, 
+            -23.0033 -5.84879 -0.692355, -23.0365 -5.84532 -3.5881e-014, -23.4654 -5.43184 0.690644, -23.0033 -5.84879 0.692355, 
+            -22.8942 -5.8565 1.30235, -23.5006 -5.42515 -1.37354e-013, -23.3974 -5.53313 -2.16664e-013, -23.0033 -5.84879 0.692355, 
+            -23.4654 -5.43184 0.690644, -23.5006 -5.42515 -1.37354e-013, -23.0033 -5.84879 0.692355, -23.3626 -5.44027 1.30781, 
+            -22.8942 -5.8565 1.30235, -22.7165 -5.86422 1.8238, -23.3626 -5.44027 1.30781, -23.4654 -5.43184 0.690644, 
+            -22.8942 -5.8565 1.30235, -23.1946 -5.4487 1.8467, -22.7165 -5.86422 1.8238, -22.4714 -5.87194 2.27499, 
+            -23.1946 -5.4487 1.8467, -23.3626 -5.44027 1.30781, -22.7165 -5.86422 1.8238, -22.962 -5.45713 2.32335, 
+            -22.4714 -5.87194 2.27499, -22.1493 -5.87965 2.6773, -22.962 -5.45713 2.32335, -23.1946 -5.4487 1.8467, 
+            -22.4714 -5.87194 2.27499, -22.656 -5.46555 2.75572, -22.1493 -5.87965 2.6773, -21.7425 -5.88737 3.04186, 
+            -22.656 -5.46555 2.75572, -22.962 -5.45713 2.32335, -22.1493 -5.87965 2.6773, -22.2696 -5.47398 3.15279, 
+            -21.7425 -5.88737 3.04186, -21.2554 -5.89509 3.36798, -22.2696 -5.47398 3.15279, -22.656 -5.46555 2.75572, 
+            -21.7425 -5.88737 3.04186, -21.8065 -5.48241 3.51315, -21.2554 -5.89509 3.36798, -20.7051 -5.9028 3.6541, 
+            -21.8065 -5.48241 3.51315, -22.2696 -5.47398 3.15279, -21.2554 -5.89509 3.36798, -21.2817 -5.49084 3.83431, 
+            -20.7051 -5.9028 3.6541, -20.1103 -5.91052 3.90102, -21.2817 -5.49084 3.83431, -21.8065 -5.48241 3.51315, 
+            -20.7051 -5.9028 3.6541, -20.7122 -5.49926 4.11608, -20.1103 -5.91052 3.90102, -19.4905 -5.91824 4.11196, 
+            -20.7122 -5.49926 4.11608, -21.2817 -5.49084 3.83431, -20.1103 -5.91052 3.90102, -20.1157 -5.50769 4.36073, 
+            -19.4905 -5.91824 4.11196, -18.8628 -5.92595 4.29084, -20.1157 -5.50769 4.36073, -20.7122 -5.49926 4.11608, 
+            -19.4905 -5.91824 4.11196, -19.5078 -5.51612 4.57152, -18.8628 -5.92595 4.29084, -18.2419 -5.93367 4.44202, 
+            -19.5078 -5.51612 4.57152, -20.1157 -5.50769 4.36073, -18.8628 -5.92595 4.29084, -18.9022 -5.52455 4.75238, 
+            -18.2419 -5.93367 4.44202, -17.6402 -5.94139 4.56965, -18.9022 -5.52455 4.75238, -19.5078 -5.51612 4.57152, 
+            -18.2419 -5.93367 4.44202, -18.3099 -5.53297 4.90737, -17.6402 -5.94139 4.56965, -17.0682 -5.9491 4.67769, 
+            -18.3099 -5.53297 4.90737, -18.9022 -5.52455 4.75238, -17.6402 -5.94139 4.56965, -17.7399 -5.5414 5.04054, 
+            -18.3099 -5.53297 4.90737, -17.0682 -5.9491 4.67769, -23.4654 -5.43184 -0.690644, -23.3974 -5.53313 -2.16664e-013, 
+            -23.5006 -5.42515 -1.37354e-013, -23.8648 -4.94458 -9.78647e-014, -23.5006 -5.42515 -1.37354e-013, -23.4654 -5.43184 0.690644, 
+            -23.832 -4.95039 -0.677531, -23.5006 -5.42515 -1.37354e-013, -23.8648 -4.94458 -9.78647e-014, -23.832 -4.95039 -0.677531, 
+            -23.4654 -5.43184 -0.690644, -23.5006 -5.42515 -1.37354e-013, -23.832 -4.95039 0.677531, -23.4654 -5.43184 0.690644, 
+            -23.3626 -5.44027 1.30781, -23.832 -4.95039 0.677531, -23.8648 -4.94458 -9.78647e-014, -23.4654 -5.43184 0.690644, 
+            -23.7381 -4.95739 1.29266, -23.3626 -5.44027 1.30781, -23.1946 -5.4487 1.8467, -23.7381 -4.95739 1.29266, 
+            -23.832 -4.95039 0.677531, -23.3626 -5.44027 1.30781, -23.5837 -4.96438 1.84225, -23.1946 -5.4487 1.8467, 
+            -22.962 -5.45713 2.32335, -23.5837 -4.96438 1.84225, -23.7381 -4.95739 1.29266, -23.1946 -5.4487 1.8467, 
+            -23.3683 -4.97138 2.33955, -22.962 -5.45713 2.32335, -22.656 -5.46555 2.75572, -23.3683 -4.97138 2.33955, 
+            -23.5837 -4.96438 1.84225, -22.962 -5.45713 2.32335, -23.0848 -4.97837 2.79839, -22.656 -5.46555 2.75572, 
+            -22.2696 -5.47398 3.15279, -23.0848 -4.97837 2.79839, -23.3683 -4.97138 2.33955, -22.656 -5.46555 2.75572, 
+            -22.7268 -4.98536 3.22515, -22.2696 -5.47398 3.15279, -21.8065 -5.48241 3.51315, -22.7268 -4.98536 3.22515, 
+            -23.0848 -4.97837 2.79839, -22.2696 -5.47398 3.15279, -22.2969 -4.99236 3.61762, -21.8065 -5.48241 3.51315, 
+            -21.2817 -5.49084 3.83431, -22.2969 -4.99236 3.61762, -22.7268 -4.98536 3.22515, -21.8065 -5.48241 3.51315, 
+            -21.8079 -4.99935 3.97223, -21.2817 -5.49084 3.83431, -20.7122 -5.49926 4.11608, -21.8079 -4.99935 3.97223, 
+            -22.2969 -4.99236 3.61762, -21.2817 -5.49084 3.83431, -21.2744 -5.00635 4.28768, -20.7122 -5.49926 4.11608, 
+            -20.1157 -5.50769 4.36073, -21.2744 -5.00635 4.28768, -21.8079 -4.99935 3.97223, -20.7122 -5.49926 4.11608, 
+            -20.7118 -5.01334 4.56511, -20.1157 -5.50769 4.36073, -19.5078 -5.51612 4.57152, -20.7118 -5.01334 4.56511, 
+            -21.2744 -5.00635 4.28768, -20.1157 -5.50769 4.36073, -20.134 -5.02033 4.80696, -19.5078 -5.51612 4.57152, 
+            -18.9022 -5.52455 4.75238, -20.134 -5.02033 4.80696, -20.7118 -5.01334 4.56511, -19.5078 -5.51612 4.57152, 
+            -19.5532 -5.02733 5.01665, -18.9022 -5.52455 4.75238, -18.3099 -5.53297 4.90737, -19.5532 -5.02733 5.01665, 
+            -20.134 -5.02033 4.80696, -18.9022 -5.52455 4.75238, -18.9786 -5.03432 5.19809, -18.3099 -5.53297 4.90737, 
+            -17.7399 -5.5414 5.04054, -18.9786 -5.03432 5.19809, -19.5532 -5.02733 5.01665, -18.3099 -5.53297 4.90737, 
+            -18.4178 -5.04132 5.35537, -18.9786 -5.03432 5.19809, -17.7399 -5.5414 5.04054, -23.9213 -4.85042 -2.22719e-013, 
+            -23.8648 -4.94458 -9.78647e-014, -23.832 -4.95039 0.677531, -24.1047 -4.41403 -0.651628, -23.8648 -4.94458 -9.78647e-014, 
+            -23.9213 -4.85042 -2.22719e-013, -24.1047 -4.41403 -0.651628, -23.832 -4.95039 -0.677531, -23.8648 -4.94458 -9.78647e-014, 
+            -24.1047 -4.41403 0.651628, -23.832 -4.95039 0.677531, -23.7381 -4.95739 1.29266, -24.1348 -4.40758 -4.59824e-013, 
+            -23.9213 -4.85042 -2.22719e-013, -23.832 -4.95039 0.677531, -24.1047 -4.41403 0.651628, -24.1348 -4.40758 -4.59824e-013, 
+            -23.832 -4.95039 0.677531, -24.0222 -4.41818 1.25413, -23.7381 -4.95739 1.29266, -23.5837 -4.96438 1.84225, 
+            -24.0222 -4.41818 1.25413, -24.1047 -4.41403 0.651628, -23.7381 -4.95739 1.29266, -23.885 -4.42233 1.80628, 
+            -23.5837 -4.96438 1.84225, -23.3683 -4.97138 2.33955, -23.885 -4.42233 1.80628, -24.0222 -4.41818 1.25413, 
+            -23.5837 -4.96438 1.84225, -23.6919 -4.42649 2.31805, -23.3683 -4.97138 2.33955, -23.0848 -4.97837 2.79839, 
+            -23.6919 -4.42649 2.31805, -23.885 -4.42233 1.80628, -23.3683 -4.97138 2.33955, -23.4371 -4.43064 2.79838, 
+            -23.0848 -4.97837 2.79839, -22.7268 -4.98536 3.22515, -23.4371 -4.43064 2.79838, -23.6919 -4.42649 2.31805, 
+            -23.0848 -4.97837 2.79839, -23.1152 -4.43479 3.25061, -22.7268 -4.98536 3.22515, -22.2969 -4.99236 3.61762, 
+            -23.1152 -4.43479 3.25061, -23.4371 -4.43064 2.79838, -22.7268 -4.98536 3.22515, -22.7277 -4.43894 3.67165, 
+            -22.2969 -4.99236 3.61762, -21.8079 -4.99935 3.97223, -22.7277 -4.43894 3.67165, -23.1152 -4.43479 3.25061, 
+            -22.2969 -4.99236 3.61762, -22.2846 -4.4431 4.05674, -21.8079 -4.99935 3.97223, -21.2744 -5.00635 4.28768, 
+            -22.2846 -4.4431 4.05674, -22.7277 -4.43894 3.67165, -21.8079 -4.99935 3.97223, -21.7978 -4.44725 4.40332, 
+            -21.2744 -5.00635 4.28768, -20.7118 -5.01334 4.56511, -21.7978 -4.44725 4.40332, -22.2846 -4.4431 4.05674, 
+            -21.2744 -5.00635 4.28768, -21.2798 -4.4514 4.71121, -20.7118 -5.01334 4.56511, -20.134 -5.02033 4.80696, 
+            -21.2798 -4.4514 4.71121, -21.7978 -4.44725 4.40332, -20.7118 -5.01334 4.56511, -20.7423 -4.45556 4.9819, 
+            -20.134 -5.02033 4.80696, -19.5532 -5.02733 5.01665, -20.7423 -4.45556 4.9819, -21.2798 -4.4514 4.71121, 
+            -20.134 -5.02033 4.80696, -20.1958 -4.45971 5.21818, -19.5532 -5.02733 5.01665, -18.9786 -5.03432 5.19809, 
+            -20.1958 -4.45971 5.21818, -20.7423 -4.45556 4.9819, -19.5532 -5.02733 5.01665, -19.6474 -4.46386 5.42375, 
+            -18.9786 -5.03432 5.19809, -18.4178 -5.04132 5.35537, -19.6474 -4.46386 5.42375, -20.1958 -4.45971 5.21818, 
+            -18.9786 -5.03432 5.19809, -19.1027 -4.46802 5.60274, -19.6474 -4.46386 5.42375, -18.4178 -5.04132 5.35537, 
+            -24.1047 -4.41403 -0.651628, -23.9213 -4.85042 -2.22719e-013, -24.1348 -4.40758 -4.59824e-013, -24.2512 -4.05435 -2.55472e-013, 
+            -24.1348 -4.40758 -4.59824e-013, -24.1047 -4.41403 0.651628, -24.2799 -3.82856 -0.612125, -24.1348 -4.40758 -4.59824e-013, 
+            -24.2512 -4.05435 -2.55472e-013, -24.1047 -4.41403 -0.651628, -24.1348 -4.40758 -4.59824e-013, -24.2799 -3.82856 -0.612125, 
+            -9.91089 -6.5 0.444107, -9.90817 -6.5 0.434264, -9.85159 -6.5 0.431641, -9.93507 -6.5 0.522969, 
+            -9.91089 -6.5 0.444107, -9.85159 -6.5 0.431641, -9.85 -5.2 -3.73125e-015, -9.90817 -6.5 0.434264, 
+            -9.91089 -6.5 0.444107, -9.85 -5.2 -3.73125e-015, -9.89267 -6.5 0.37282, -9.90817 -6.5 0.434264, 
+            -9.85 -5.2 -3.73125e-015, -9.91089 -6.5 0.444107, -9.93507 -6.5 0.522969, -9.85 -5.2 -3.73125e-015, 
+            -9.87899 -6.5 0.307936, -9.89267 -6.5 0.37282, -9.8502 -6.5 -0.0256688, -9.67452 -6.5 -3.60603e-015, 
+            -9.85 -6.5 -3.74978e-015, -9.85 -5.2 -3.73125e-015, -9.85 -6.5 -3.74978e-015, -9.85022 -6.5 0.0270103, 
+            -9.97569 -5.2 -0.631614, -9.8502 -6.5 -0.0256688, -9.85 -6.5 -3.74978e-015, -9.97569 -5.2 -0.631614, 
+            -9.85 -6.5 -3.74978e-015, -9.85 -5.2 -3.73125e-015, -9.85 -5.2 -3.73125e-015, -9.85022 -6.5 0.0270103, 
+            -9.85083 -6.5 0.0522034, -9.85 -5.2 -3.73125e-015, -9.85083 -6.5 0.0522034, -9.85173 -6.5 0.0755593, 
+            -9.85 -5.2 -3.73125e-015, -9.85173 -6.5 0.0755593, -9.85286 -6.5 0.0971676, -9.85 -5.2 -3.73125e-015, 
+            -9.85286 -6.5 0.0971676, -9.85418 -6.5 0.117413, -9.85 -5.2 -3.73125e-015, -9.85418 -6.5 0.117413, 
+            -9.85573 -6.5 0.137397, -9.85 -5.2 -3.73125e-015, -9.85573 -6.5 0.137397, -9.85755 -6.5 0.15763, 
+            -9.85 -5.2 -3.73125e-015, -9.85755 -6.5 0.15763, -9.85969 -6.5 0.17856, -9.85 -5.2 -3.73125e-015, 
+            -9.85969 -6.5 0.17856, -9.86225 -6.5 0.200658, -9.85 -5.2 -3.73125e-015, -9.86225 -6.5 0.200658, 
+            -9.86528 -6.5 0.224, -9.85 -5.2 -3.73125e-015, -9.86528 -6.5 0.224, -9.86886 -6.5 0.248738, 
+            -9.85 -5.2 -3.73125e-015, -9.86886 -6.5 0.248738, -9.87899 -6.5 0.307936, -13.5897 -6.5 2.78093, 
+            -14.3246 -6.5 3.15917, -14.7931 -6.5 3.134, -14.0206 -6.5 2.76728, -14.7931 -6.5 3.134, 
+            -15.3027 -6.5 3.09902, -14.0206 -6.5 2.76728, -13.5897 -6.5 2.78093, -14.7931 -6.5 3.134, 
+            -14.4928 -6.5 2.74544, -15.3027 -6.5 3.09902, -15.8428 -6.5 3.0516, -14.4928 -6.5 2.74544, 
+            -14.0206 -6.5 2.76728, -15.3027 -6.5 3.09902, -14.9958 -6.5 2.71299, -15.8428 -6.5 3.0516, 
+            -16.4021 -6.5 2.98871, -14.9958 -6.5 2.71299, -14.4928 -6.5 2.74544, -15.8428 -6.5 3.0516, 
+            -15.5188 -6.5 2.66714, -16.4021 -6.5 2.98871, -16.9676 -6.5 2.90643, -15.5188 -6.5 2.66714, 
+            -14.9958 -6.5 2.71299, -16.4021 -6.5 2.98871, -16.049 -6.5 2.6041, -16.9676 -6.5 2.90643, 
+            -17.5251 -6.5 2.80056, -16.049 -6.5 2.6041, -15.5188 -6.5 2.66714, -16.9676 -6.5 2.90643, 
+            -16.5728 -6.5 2.51975, -17.5251 -6.5 2.80056, -18.057 -6.5 2.66667, -16.5728 -6.5 2.51975, 
+            -16.049 -6.5 2.6041, -17.5251 -6.5 2.80056, -17.0734 -6.5 2.40964, -18.057 -6.5 2.66667, 
+            -18.5453 -6.5 2.5009, -17.0734 -6.5 2.40964, -16.5728 -6.5 2.51975, -18.057 -6.5 2.66667, 
+            -17.5332 -6.5 2.2698, -18.5453 -6.5 2.5009, -18.9728 -6.5 2.30176, -17.5332 -6.5 2.2698, 
+            -17.0734 -6.5 2.40964, -18.5453 -6.5 2.5009, -17.9355 -6.5 2.09848, -18.9728 -6.5 2.30176, 
+            -19.3257 -6.5 2.06866, -17.9355 -6.5 2.09848, -17.5332 -6.5 2.2698, -18.9728 -6.5 2.30176, 
+            -18.2669 -6.5 1.89479, -19.3257 -6.5 2.06866, -19.6043 -6.5 1.79867, -18.2669 -6.5 1.89479, 
+            -17.9355 -6.5 2.09848, -19.3257 -6.5 2.06866, -18.5276 -6.5 1.65568, -19.6043 -6.5 1.79867, 
+            -19.8173 -6.5 1.47458, -18.5276 -6.5 1.65568, -18.2669 -6.5 1.89479, -19.6043 -6.5 1.79867, 
+            -18.7259 -6.5 1.36408, -19.8173 -6.5 1.47458, -19.9727 -6.5 1.07291, -18.7259 -6.5 1.36408, 
+            -18.5276 -6.5 1.65568, -19.8173 -6.5 1.47458, -18.8696 -6.5 0.996881, -19.9727 -6.5 1.07291, 
+            -20.0663 -6.5 0.578026, -18.8696 -6.5 0.996881, -18.7259 -6.5 1.36408, -19.9727 -6.5 1.07291, 
+            -18.9546 -6.5 0.538848, -20.0663 -6.5 0.578026, -20.1029 -6.5 -3.64132e-015, -18.9546 -6.5 0.538848, 
+            -18.8696 -6.5 0.996881, -20.0663 -6.5 0.578026, -18.9546 -6.5 0.538848, -20.1029 -6.5 -3.64132e-015, 
+            -18.9744 -6.5 -3.67302e-015, -20.0663 -6.5 -0.578026, -18.9744 -6.5 -3.67302e-015, -20.1029 -6.5 -3.64132e-015, 
+            -20.0663 -6.5 -0.578026, -20.1029 -6.5 -3.64132e-015, -21.0422 -6.5 -0.496006, -17.7251 -6.5 0.490634, 
+            -18.9546 -6.5 0.538848, -18.9744 -6.5 -3.67302e-015, -17.7251 -6.5 0.490634, -18.9744 -6.5 -3.67302e-015, 
+            -17.7372 -6.5 -3.69389e-015, -18.9546 -6.5 -0.538848, -17.7372 -6.5 -3.69389e-015, -18.9744 -6.5 -3.67302e-015, 
+            -20.0663 -6.5 -0.578026, -18.9546 -6.5 -0.538848, -18.9744 -6.5 -3.67302e-015, -12.8619 -6.5 2.40451, 
+            -13.5897 -6.5 2.78093, -14.0206 -6.5 2.76728, -13.2473 -6.5 2.39953, -14.0206 -6.5 2.76728, 
+            -14.4928 -6.5 2.74544, -13.2473 -6.5 2.39953, -12.8619 -6.5 2.40451, -14.0206 -6.5 2.76728, 
+            -13.6725 -6.5 2.38787, -14.4928 -6.5 2.74544, -14.9958 -6.5 2.71299, -13.6725 -6.5 2.38787, 
+            -13.2473 -6.5 2.39953, -14.4928 -6.5 2.74544, -14.1279 -6.5 2.36737, -14.9958 -6.5 2.71299, 
+            -15.5188 -6.5 2.66714, -14.1279 -6.5 2.36737, -13.6725 -6.5 2.38787, -14.9958 -6.5 2.71299, 
+            -14.6028 -6.5 2.33549, -15.5188 -6.5 2.66714, -16.049 -6.5 2.6041, -14.6028 -6.5 2.33549, 
+            -14.1279 -6.5 2.36737, -15.5188 -6.5 2.66714, -15.0857 -6.5 2.28868, -16.049 -6.5 2.6041, 
+            -16.5728 -6.5 2.51975, -15.0857 -6.5 2.28868, -14.6028 -6.5 2.33549, -16.049 -6.5 2.6041, 
+            -15.5637 -6.5 2.22304, -16.5728 -6.5 2.51975, -17.0734 -6.5 2.40964, -15.5637 -6.5 2.22304, 
+            -15.0857 -6.5 2.28868, -16.5728 -6.5 2.51975, -16.0209 -6.5 2.13426, -17.0734 -6.5 2.40964, 
+            -17.5332 -6.5 2.2698, -16.0209 -6.5 2.13426, -15.5637 -6.5 2.22304, -17.0734 -6.5 2.40964, 
+            -16.4409 -6.5 2.01842, -17.5332 -6.5 2.2698, -17.9355 -6.5 2.09848, -16.4409 -6.5 2.01842, 
+            -16.0209 -6.5 2.13426, -17.5332 -6.5 2.2698, -16.808 -6.5 1.87364, -17.9355 -6.5 2.09848, 
+            -18.2669 -6.5 1.89479, -16.808 -6.5 1.87364, -16.4409 -6.5 2.01842, -17.9355 -6.5 2.09848, 
+            -17.1095 -6.5 1.69885, -18.2669 -6.5 1.89479, -18.5276 -6.5 1.65568, -17.1095 -6.5 1.69885, 
+            -16.808 -6.5 1.87364, -18.2669 -6.5 1.89479, -17.3454 -6.5 1.491, -18.5276 -6.5 1.65568, 
+            -18.7259 -6.5 1.36408, -17.3454 -6.5 1.491, -17.1095 -6.5 1.69885, -18.5276 -6.5 1.65568, 
+            -17.5237 -6.5 1.23376, -18.7259 -6.5 1.36408, -18.8696 -6.5 0.996881, -17.5237 -6.5 1.23376, 
+            -17.3454 -6.5 1.491, -18.7259 -6.5 1.36408, -17.6516 -6.5 0.905095, -18.8696 -6.5 0.996881, 
+            -18.9546 -6.5 0.538848, -17.6516 -6.5 0.905095, -17.5237 -6.5 1.23376, -18.8696 -6.5 0.996881, 
+            -17.7251 -6.5 0.490634, -17.6516 -6.5 0.905095, -18.9546 -6.5 0.538848, -16.4066 -6.5 0.433162, 
+            -17.7251 -6.5 0.490634, -17.7372 -6.5 -3.69389e-015, -16.4066 -6.5 0.433162, -17.7372 -6.5 -3.69389e-015, 
+            -17.4238 -6.5 -3.69736e-015, -17.7251 -6.5 -0.490634, -17.4238 -6.5 -3.69736e-015, -17.7372 -6.5 -3.69389e-015, 
+            -18.9546 -6.5 -0.538848, -17.7251 -6.5 -0.490634, -17.7372 -6.5 -3.69389e-015, -12.1564 -6.5 2.02654, 
+            -12.8619 -6.5 2.40451, -13.2473 -6.5 2.39953, -12.4892 -6.5 2.02763, -13.2473 -6.5 2.39953, 
+            -13.6725 -6.5 2.38787, -12.4892 -6.5 2.02763, -12.1564 -6.5 2.02654, -13.2473 -6.5 2.39953, 
+            -12.8591 -6.5 2.02342, -13.6725 -6.5 2.38787, -14.1279 -6.5 2.36737, -12.8591 -6.5 2.02342, 
+            -12.4892 -6.5 2.02763, -13.6725 -6.5 2.38787, -13.257 -6.5 2.01206, -14.1279 -6.5 2.36737, 
+            -14.6028 -6.5 2.33549, -13.257 -6.5 2.01206, -12.8591 -6.5 2.02342, -14.1279 -6.5 2.36737, 
+            -13.6735 -6.5 1.9913, -14.6028 -6.5 2.33549, -15.0857 -6.5 2.28868, -13.6735 -6.5 1.9913, 
+            -13.257 -6.5 2.01206, -14.6028 -6.5 2.33549, -14.0979 -6.5 1.95794, -15.0857 -6.5 2.28868, 
+            -15.5637 -6.5 2.22304, -14.0979 -6.5 1.95794, -13.6735 -6.5 1.9913, -15.0857 -6.5 2.28868, 
+            -14.5186 -6.5 1.90842, -15.5637 -6.5 2.22304, -16.0209 -6.5 2.13426, -14.5186 -6.5 1.90842, 
+            -14.0979 -6.5 1.95794, -15.5637 -6.5 2.22304, -14.9215 -6.5 1.83873, -16.0209 -6.5 2.13426, 
+            -16.4409 -6.5 2.01842, -14.9215 -6.5 1.83873, -14.5186 -6.5 1.90842, -16.0209 -6.5 2.13426, 
+            -15.2914 -6.5 1.74519, -16.4409 -6.5 2.01842, -16.808 -6.5 1.87364, -15.2914 -6.5 1.74519, 
+            -14.9215 -6.5 1.83873, -16.4409 -6.5 2.01842, -15.6142 -6.5 1.6259, -16.808 -6.5 1.87364, 
+            -17.1095 -6.5 1.69885, -15.6142 -6.5 1.6259, -15.2914 -6.5 1.74519, -16.808 -6.5 1.87364, 
+            -15.8784 -6.5 1.47971, -17.1095 -6.5 1.69885, -17.3454 -6.5 1.491, -15.8784 -6.5 1.47971, 
+            -15.6142 -6.5 1.6259, -17.1095 -6.5 1.69885, -16.0837 -6.5 1.30373, -17.3454 -6.5 1.491, 
+            -17.5237 -6.5 1.23376, -16.0837 -6.5 1.30373, -15.8784 -6.5 1.47971, -17.3454 -6.5 1.491, 
+            -16.2376 -6.5 1.08293, -17.5237 -6.5 1.23376, -17.6516 -6.5 0.905095, -16.2376 -6.5 1.08293, 
+            -16.0837 -6.5 1.30373, -17.5237 -6.5 1.23376, -16.3465 -6.5 0.797099, -17.6516 -6.5 0.905095, 
+            -17.7251 -6.5 0.490634, -16.3465 -6.5 0.797099, -16.2376 -6.5 1.08293, -17.6516 -6.5 0.905095, 
+            -16.4066 -6.5 0.433162, -16.3465 -6.5 0.797099, -17.7251 -6.5 0.490634, -16.3904 -6.5 -3.70437e-015, 
+            -16.4066 -6.5 0.433162, -17.4238 -6.5 -3.69736e-015, -17.7251 -6.5 -0.490634, -16.3904 -6.5 -3.70437e-015, 
+            -17.4238 -6.5 -3.69736e-015, -11.5973 -6.5 1.64713, -12.1564 -6.5 2.02654, -12.4892 -6.5 2.02763, 
+            -11.4156 -6.5 1.64784, -11.3242 -6.5 1.6406, -12.1564 -6.5 2.02654, -11.5973 -6.5 1.64713, 
+            -11.4156 -6.5 1.64784, -12.1564 -6.5 2.02654, -11.9071 -6.5 1.64939, -12.4892 -6.5 2.02763, 
+            -12.8591 -6.5 2.02342, -11.6054 -6.5 1.64663, -11.5973 -6.5 1.64713, -12.4892 -6.5 2.02763, 
+            -11.9071 -6.5 1.64939, -11.6054 -6.5 1.64663, -12.4892 -6.5 2.02763, -12.2402 -6.5 1.64747, 
+            -12.8591 -6.5 2.02342, -13.257 -6.5 2.01206, -12.2402 -6.5 1.64747, -11.9071 -6.5 1.64939, 
+            -12.8591 -6.5 2.02342, -12.5956 -6.5 1.63857, -13.257 -6.5 2.01206, -13.6735 -6.5 1.9913, 
+            -12.5956 -6.5 1.63857, -12.2402 -6.5 1.64747, -13.257 -6.5 2.01206, -12.9635 -6.5 1.62002, 
+            -13.6735 -6.5 1.9913, -14.0979 -6.5 1.95794, -12.9635 -6.5 1.62002, -12.5956 -6.5 1.63857, 
+            -13.6735 -6.5 1.9913, -13.3331 -6.5 1.58846, -14.0979 -6.5 1.95794, -14.5186 -6.5 1.90842, 
+            -13.3331 -6.5 1.58846, -12.9635 -6.5 1.62002, -14.0979 -6.5 1.95794, -13.6917 -6.5 1.5401, 
+            -14.5186 -6.5 1.90842, -14.9215 -6.5 1.83873, -13.6917 -6.5 1.5401, -13.3331 -6.5 1.58846, 
+            -14.5186 -6.5 1.90842, -14.0246 -6.5 1.47098, -14.9215 -6.5 1.83873, -15.2914 -6.5 1.74519, 
+            -14.0246 -6.5 1.47098, -13.6917 -6.5 1.5401, -14.9215 -6.5 1.83873, -14.3178 -6.5 1.37862, 
+            -15.2914 -6.5 1.74519, -15.6142 -6.5 1.6259, -14.3178 -6.5 1.37862, -14.0246 -6.5 1.47098, 
+            -15.2914 -6.5 1.74519, -14.5587 -6.5 1.26156, -15.6142 -6.5 1.6259, -15.8784 -6.5 1.47971, 
+            -14.5587 -6.5 1.26156, -14.3178 -6.5 1.37862, -15.6142 -6.5 1.6259, -14.7445 -6.5 1.118, 
+            -15.8784 -6.5 1.47971, -16.0837 -6.5 1.30373, -14.7445 -6.5 1.118, -14.5587 -6.5 1.26156, 
+            -15.8784 -6.5 1.47971, -14.8814 -6.5 0.935326, -16.0837 -6.5 1.30373, -16.2376 -6.5 1.08293, 
+            -14.8814 -6.5 0.935326, -14.7445 -6.5 1.118, -16.0837 -6.5 1.30373, -14.9766 -6.5 0.693908, 
+            -16.2376 -6.5 1.08293, -16.3465 -6.5 0.797099, -14.9766 -6.5 0.693908, -14.8814 -6.5 0.935326, 
+            -16.2376 -6.5 1.08293, -15.0271 -6.5 0.379641, -16.3465 -6.5 0.797099, -16.4066 -6.5 0.433162, 
+            -15.0271 -6.5 0.379641, -14.9766 -6.5 0.693908, -16.3465 -6.5 0.797099, -15.0271 -6.5 0.379641, 
+            -16.4066 -6.5 0.433162, -16.3904 -6.5 -3.70437e-015, -15.0271 -6.5 0.379641, -16.3904 -6.5 -3.70437e-015, 
+            -15.0021 -6.5 -3.70413e-015, -16.4066 -6.5 -0.433162, -15.0021 -6.5 -3.70413e-015, -16.3904 -6.5 -3.70437e-015, 
+            -17.7251 -6.5 -0.490634, -16.4066 -6.5 -0.433162, -16.3904 -6.5 -3.70437e-015, -13.6181 -6.5 0.291648, 
+            -15.0271 -6.5 0.379641, -15.0021 -6.5 -3.70413e-015, -13.6181 -6.5 0.291648, -15.0021 -6.5 -3.70413e-015, 
+            -13.606 -6.5 -3.69363e-015, -15.0271 -6.5 -0.379696, -13.606 -6.5 -3.69363e-015, -15.0021 -6.5 -3.70413e-015, 
+            -15.0271 -6.5 -0.379696, -15.0021 -6.5 -3.70413e-015, -16.4066 -6.5 -0.433162, -10.8687 -5.2 1.5244, 
+            -11.3242 -6.5 1.6406, -11.4156 -6.5 1.64784, -11.5 -5.2 1.64993, -11.4156 -6.5 1.64784, 
+            -11.5973 -6.5 1.64713, -10.8687 -5.2 1.5244, -11.4156 -6.5 1.64784, -11.5 -5.2 1.64993, 
+            -11.5 -5.2 1.64993, -11.5973 -6.5 1.64713, -11.6054 -6.5 1.64663, -11.7897 -6.5 1.62437, 
+            -11.6054 -6.5 1.64663, -11.9071 -6.5 1.64939, -11.5 -5.2 1.64993, -11.6054 -6.5 1.64663, 
+            -11.7897 -6.5 1.62437, -11.9395 -6.5 1.59039, -11.9071 -6.5 1.64939, -12.2402 -6.5 1.64747, 
+            -11.9395 -6.5 1.59039, -11.7897 -6.5 1.62437, -11.9071 -6.5 1.64939, -12.0916 -6.5 1.54028, 
+            -12.2402 -6.5 1.64747, -12.5956 -6.5 1.63857, -12.0916 -6.5 1.54028, -11.9395 -6.5 1.59039, 
+            -12.2402 -6.5 1.64747, -12.2413 -6.5 1.47411, -12.5956 -6.5 1.63857, -12.9635 -6.5 1.62002, 
+            -12.2413 -6.5 1.47411, -12.0916 -6.5 1.54028, -12.5956 -6.5 1.63857, -12.5022 -6.5 1.31074, 
+            -12.9635 -6.5 1.62002, -13.3331 -6.5 1.58846, -12.3804 -6.5 1.39549, -12.2413 -6.5 1.47411, 
+            -12.9635 -6.5 1.62002, -12.5022 -6.5 1.31074, -12.3804 -6.5 1.39549, -12.9635 -6.5 1.62002, 
+            -12.6045 -6.5 1.22579, -13.3331 -6.5 1.58846, -13.6917 -6.5 1.5401, -12.6045 -6.5 1.22579, 
+            -12.5022 -6.5 1.31074, -13.3331 -6.5 1.58846, -12.6518 -6.5 1.18142, -13.6917 -6.5 1.5401, 
+            -14.0246 -6.5 1.47098, -12.6518 -6.5 1.18142, -12.6045 -6.5 1.22579, -13.6917 -6.5 1.5401, 
+            -12.9003 -6.5 1.13031, -14.0246 -6.5 1.47098, -14.3178 -6.5 1.37862, -12.9003 -6.5 1.13031, 
+            -12.6518 -6.5 1.18142, -14.0246 -6.5 1.47098, -13.1148 -6.5 1.06011, -14.3178 -6.5 1.37862, 
+            -14.5587 -6.5 1.26156, -13.1148 -6.5 1.06011, -12.9003 -6.5 1.13031, -14.3178 -6.5 1.37862, 
+            -13.2888 -6.5 0.971251, -14.5587 -6.5 1.26156, -14.7445 -6.5 1.118, -13.2888 -6.5 0.971251, 
+            -13.1148 -6.5 1.06011, -14.5587 -6.5 1.26156, -13.422 -6.5 0.861732, -14.7445 -6.5 1.118, 
+            -14.8814 -6.5 0.935326, -13.422 -6.5 0.861732, -13.2888 -6.5 0.971251, -14.7445 -6.5 1.118, 
+            -13.5193 -6.5 0.720881, -14.8814 -6.5 0.935326, -14.9766 -6.5 0.693908, -13.5193 -6.5 0.720881, 
+            -13.422 -6.5 0.861732, -14.8814 -6.5 0.935326, -13.5856 -6.5 0.534051, -14.9766 -6.5 0.693908, 
+            -15.0271 -6.5 0.379641, -13.5856 -6.5 0.534051, -13.5193 -6.5 0.720881, -14.9766 -6.5 0.693908, 
+            -13.6181 -6.5 0.291648, -13.5856 -6.5 0.534051, -15.0271 -6.5 0.379641, -13.1402 -6.5 0.179918, 
+            -13.6181 -6.5 0.291648, -13.606 -6.5 -3.69363e-015, -13.1402 -6.5 0.179918, -13.606 -6.5 -3.69363e-015, 
+            -13.15 -6.5 -3.34566e-015, -13.6181 -6.5 -0.291657, -13.15 -6.5 -3.34566e-015, -13.606 -6.5 -3.69363e-015, 
+            -13.6181 -6.5 -0.291657, -13.606 -6.5 -3.69363e-015, -15.0271 -6.5 -0.379696, -11.5 -5.2 1.64993, 
+            -11.7897 -6.5 1.62437, -11.9395 -6.5 1.59039, -11.5 -5.2 1.64993, -11.9395 -6.5 1.59039, 
+            -12.0916 -6.5 1.54028, -12.1313 -5.2 1.5244, -12.0916 -6.5 1.54028, -12.2413 -6.5 1.47411, 
+            -11.5 -5.2 1.64993, -12.0916 -6.5 1.54028, -12.1313 -5.2 1.5244, -12.1313 -5.2 1.5244, 
+            -12.2413 -6.5 1.47411, -12.3804 -6.5 1.39549, -12.1313 -5.2 1.5244, -12.3804 -6.5 1.39549, 
+            -12.5022 -6.5 1.31074, -12.1313 -5.2 1.5244, -12.5022 -6.5 1.31074, -12.6045 -6.5 1.22579, 
+            -12.1313 -5.2 1.5244, -12.6045 -6.5 1.22579, -12.6518 -6.5 1.18142, -12.6894 -6.5 1.14363, 
+            -12.6518 -6.5 1.18142, -12.9003 -6.5 1.13031, -12.6665 -5.2 1.16686, -12.6518 -6.5 1.18142, 
+            -12.6894 -6.5 1.14363, -12.1313 -5.2 1.5244, -12.6518 -6.5 1.18142, -12.6665 -5.2 1.16686, 
+            -12.7607 -6.5 1.06454, -12.9003 -6.5 1.13031, -13.1148 -6.5 1.06011, -12.7607 -6.5 1.06454, 
+            -12.6894 -6.5 1.14363, -12.9003 -6.5 1.13031, -12.8257 -6.5 0.98231, -13.1148 -6.5 1.06011, 
+            -13.2888 -6.5 0.971251, -12.8257 -6.5 0.98231, -12.7607 -6.5 1.06454, -13.1148 -6.5 1.06011, 
+            -12.9442 -6.5 0.797949, -13.2888 -6.5 0.971251, -13.422 -6.5 0.861732, -12.8874 -6.5 0.893032, 
+            -12.8257 -6.5 0.98231, -13.2888 -6.5 0.971251, -12.9442 -6.5 0.797949, -12.8874 -6.5 0.893032, 
+            -13.2888 -6.5 0.971251, -12.9937 -6.5 0.700881, -13.422 -6.5 0.861732, -13.5193 -6.5 0.720881, 
+            -12.9937 -6.5 0.700881, -12.9442 -6.5 0.797949, -13.422 -6.5 0.861732, -13.0654 -6.5 0.521645, 
+            -13.5193 -6.5 0.720881, -13.5856 -6.5 0.534051, -13.0654 -6.5 0.521645, -12.9937 -6.5 0.700881, 
+            -13.5193 -6.5 0.720881, -13.1113 -6.5 0.355143, -13.5856 -6.5 0.534051, -13.6181 -6.5 0.291648, 
+            -13.1113 -6.5 0.355143, -13.0654 -6.5 0.521645, -13.5856 -6.5 0.534051, -13.1402 -6.5 0.179918, 
+            -13.1113 -6.5 0.355143, -13.6181 -6.5 0.291648, -13.0243 -5.2 0.631614, -13.1402 -6.5 0.179918, 
+            -13.15 -6.5 -3.34566e-015, -13.1401 -6.5 -0.180695, -13.15 -6.5 -3.34566e-015, -13.6181 -6.5 -0.291657, 
+            -13.15 -5.2 -3.32713e-015, -13.15 -6.5 -3.34566e-015, -13.1401 -6.5 -0.180695, -13.0243 -5.2 0.631614, 
+            -13.15 -6.5 -3.34566e-015, -13.15 -5.2 -3.32713e-015, -12.6665 -5.2 1.16686, -12.6894 -6.5 1.14363, 
+            -12.7607 -6.5 1.06454, -12.6665 -5.2 1.16686, -12.7607 -6.5 1.06454, -12.8257 -6.5 0.98231, 
+            -12.6665 -5.2 1.16686, -12.8257 -6.5 0.98231, -12.8874 -6.5 0.893032, -12.6665 -5.2 1.16686, 
+            -12.8874 -6.5 0.893032, -12.9442 -6.5 0.797949, -12.6665 -5.2 1.16686, -12.9442 -6.5 0.797949, 
+            -12.9937 -6.5 0.700881, -13.0243 -5.2 0.631614, -12.9937 -6.5 0.700881, -13.0654 -6.5 0.521645, 
+            -12.6665 -5.2 1.16686, -12.9937 -6.5 0.700881, -13.0243 -5.2 0.631614, -13.0243 -5.2 0.631614, 
+            -13.0654 -6.5 0.521645, -13.1113 -6.5 0.355143, -13.0243 -5.2 0.631614, -13.1113 -6.5 0.355143, 
+            -13.1402 -6.5 0.179918, -9.5 -4.10962 -6.87202, -10.8954 -4.26043 -6.78133, -10.9875 -3.72816 -6.92872, 
+            -12.5278 -3.72647 -6.87896, -10.9875 -3.72816 -6.92872, -10.8954 -4.26043 -6.78133, -9.5 -3.65813 -6.96808, 
+            -9.5 -4.10962 -6.87202, -10.9875 -3.72816 -6.92872, -9.5 -4.54408 -6.71368, -10.8049 -4.77274 -6.54701, 
+            -10.8954 -4.26043 -6.78133, -12.3289 -4.25468 -6.72096, -10.8954 -4.26043 -6.78133, -10.8049 -4.77274 -6.54701, 
+            -9.5 -4.10962 -6.87202, -9.5 -4.54408 -6.71368, -10.8954 -4.26043 -6.78133, -12.3289 -4.25468 -6.72096, 
+            -12.5278 -3.72647 -6.87896, -10.8954 -4.26043 -6.78133, -9.5 -4.95082 -6.49723, -10.7164 -5.24185 -6.232, 
+            -10.8049 -4.77274 -6.54701, -12.1345 -4.76214 -6.48242, -10.8049 -4.77274 -6.54701, -10.7164 -5.24185 -6.232, 
+            -9.5 -4.54408 -6.71368, -9.5 -4.95082 -6.49723, -10.8049 -4.77274 -6.54701, -12.1345 -4.76214 -6.48242, 
+            -12.3289 -4.25468 -6.72096, -10.8049 -4.77274 -6.54701, -9.5 -5.65311 -5.90731, -10.6298 -5.64802 -5.8501, 
+            -10.7164 -5.24185 -6.232, -11.9451 -5.22722 -6.16911, -10.7164 -5.24185 -6.232, -10.6298 -5.64802 -5.8501, 
+            -9.5 -5.32192 -6.22729, -9.5 -5.65311 -5.90731, -10.7164 -5.24185 -6.232, -9.5 -4.95082 -6.49723, 
+            -9.5 -5.32192 -6.22729, -10.7164 -5.24185 -6.232, -11.9451 -5.22722 -6.16911, -12.1345 -4.76214 -6.48242, 
+            -10.7164 -5.24185 -6.232, -9.5 -5.93892 -5.54038, -10.5452 -5.97729 -5.42111, -10.6298 -5.64802 -5.8501, 
+            -11.7608 -5.63141 -5.79384, -10.6298 -5.64802 -5.8501, -10.5452 -5.97729 -5.42111, -9.5 -5.65311 -5.90731, 
+            -9.5 -5.93892 -5.54038, -10.6298 -5.64802 -5.8501, -11.7608 -5.63141 -5.79384, -11.9451 -5.22722 -6.16911, 
+            -10.6298 -5.64802 -5.8501, -9.5 -6.16743 -5.14202, -10.4623 -6.22299 -4.96833, -10.5452 -5.97729 -5.42111, 
+            -11.5816 -5.96144 -5.37492, -10.5452 -5.97729 -5.42111, -10.4623 -6.22299 -4.96833, -9.5 -5.93892 -5.54038, 
+            -9.5 -6.16743 -5.14202, -10.5452 -5.97729 -5.42111, -11.5816 -5.96144 -5.37492, -11.7608 -5.63141 -5.79384, 
+            -10.5452 -5.97729 -5.42111, -9.5 -6.33063 -4.74315, -10.381 -6.38605 -4.51584, -10.4623 -6.22299 -4.96833, 
+            -11.4071 -6.21055 -4.93397, -10.4623 -6.22299 -4.96833, -10.381 -6.38605 -4.51584, -9.5 -6.16743 -5.14202, 
+            -9.5 -6.33063 -4.74315, -10.4623 -6.22299 -4.96833, -11.4071 -6.21055 -4.93397, -11.5816 -5.96144 -5.37492, 
+            -10.4623 -6.22299 -4.96833, -9.5 -6.43257 -4.36576, -10.3014 -6.47411 -4.08609, -10.381 -6.38605 -4.51584, 
+            -11.2371 -6.37871 -4.49328, -10.381 -6.38605 -4.51584, -10.3014 -6.47411 -4.08609, -9.5 -6.33063 -4.74315, 
+            -9.5 -6.43257 -4.36576, -10.381 -6.38605 -4.51584, -11.2371 -6.37871 -4.49328, -11.4071 -6.21055 -4.93397, 
+            -10.381 -6.38605 -4.51584, -9.5 -6.5 -3.7, -10.2551 -6.5 -3.69804, -10.3014 -6.47411 -4.08609, 
+            -11.0716 -6.47177 -4.07365, -10.3014 -6.47411 -4.08609, -10.2551 -6.5 -3.69804, -9.5 -6.48504 -4.01884, 
+            -9.5 -6.5 -3.7, -10.3014 -6.47411 -4.08609, -9.5 -6.43257 -4.36576, -9.5 -6.48504 -4.01884, 
+            -10.3014 -6.47411 -4.08609, -11.0716 -6.47177 -4.07365, -11.2371 -6.37871 -4.49328, -10.3014 -6.47411 -4.08609, 
+            -9.5 -6.5 -3.35879, -10.2551 -6.5 -3.69804, -9.5 -6.5 -3.7, -10.949 -6.5 -3.6924, 
+            -11.0716 -6.47177 -4.07365, -10.2551 -6.5 -3.69804, -10.1448 -6.5 -3.33504, -10.949 -6.5 -3.6924, 
+            -10.2551 -6.5 -3.69804, -9.5 -6.5 -3.35879, -10.1448 -6.5 -3.33504, -10.2551 -6.5 -3.69804, 
+            -9.5 -5.1 -3.8, -9.5 -6.5 -3.7, -9.5 -6.48504 -4.01884, -9.5 -5.1 -1.8, 
+            -9.5 -6.5 -3.35879, -9.5 -6.5 -3.7, -9.5 -5.1 -1.8, -9.5 -6.5 -3.7, 
+            -9.5 -5.1 -3.8, -14.0712 -3.72479 -6.79881, -12.5278 -3.72647 -6.87896, -12.3289 -4.25468 -6.72096, 
+            -13.7626 -4.24893 -6.63412, -12.3289 -4.25468 -6.72096, -12.1345 -4.76214 -6.48242, -13.7626 -4.24893 -6.63412, 
+            -14.0712 -3.72479 -6.79881, -12.3289 -4.25468 -6.72096, -13.4617 -4.75155 -6.39504, -12.1345 -4.76214 -6.48242, 
+            -11.9451 -5.22722 -6.16911, -13.4617 -4.75155 -6.39504, -13.7626 -4.24893 -6.63412, -12.1345 -4.76214 -6.48242, 
+            -13.1692 -5.21258 -6.08687, -11.9451 -5.22722 -6.16911, -11.7608 -5.63141 -5.79384, -13.1692 -5.21258 -6.08687, 
+            -13.4617 -4.75155 -6.39504, -11.9451 -5.22722 -6.16911, -12.8853 -5.6148 -5.7214, -11.7608 -5.63141 -5.79384, 
+            -11.5816 -5.96144 -5.37492, -12.8853 -5.6148 -5.7214, -13.1692 -5.21258 -6.08687, -11.7608 -5.63141 -5.79384, 
+            -12.6097 -5.94559 -5.31551, -11.5816 -5.96144 -5.37492, -11.4071 -6.21055 -4.93397, -12.6097 -5.94559 -5.31551, 
+            -12.8853 -5.6148 -5.7214, -11.5816 -5.96144 -5.37492, -12.3421 -6.19811 -4.88908, -11.4071 -6.21055 -4.93397, 
+            -11.2371 -6.37871 -4.49328, -12.3421 -6.19811 -4.88908, -12.6097 -5.94559 -5.31551, -11.4071 -6.21055 -4.93397, 
+            -12.0821 -6.37137 -4.46264, -11.2371 -6.37871 -4.49328, -11.0716 -6.47177 -4.07365, -12.0821 -6.37137 -4.46264, 
+            -12.3421 -6.19811 -4.88908, -11.2371 -6.37871 -4.49328, -11.8297 -6.46943 -4.05534, -11.0716 -6.47177 -4.07365, 
+            -10.949 -6.5 -3.6924, -11.8297 -6.46943 -4.05534, -12.0821 -6.37137 -4.46264, -11.0716 -6.47177 -4.07365, 
+            -11.61 -6.5 -3.68308, -11.8297 -6.46943 -4.05534, -10.949 -6.5 -3.6924, -10.7493 -6.5 -3.33415, 
+            -11.61 -6.5 -3.68308, -10.949 -6.5 -3.6924, -10.1448 -6.5 -3.33504, -10.7493 -6.5 -3.33415, 
+            -10.949 -6.5 -3.6924, -15.5714 -3.72311 -6.67717, -14.0712 -3.72479 -6.79881, -13.7626 -4.24893 -6.63412, 
+            -15.1618 -4.24318 -6.51125, -13.7626 -4.24893 -6.63412, -13.4617 -4.75155 -6.39504, -15.1618 -4.24318 -6.51125, 
+            -15.5714 -3.72311 -6.67717, -13.7626 -4.24893 -6.63412, -14.7623 -4.74095 -6.27672, -13.4617 -4.75155 -6.39504, 
+            -13.1692 -5.21258 -6.08687, -14.7623 -4.74095 -6.27672, -15.1618 -4.24318 -6.51125, -13.4617 -4.75155 -6.39504, 
+            -14.3739 -5.19795 -5.97846, -13.1692 -5.21258 -6.08687, -12.8853 -5.6148 -5.7214, -14.3739 -5.19795 -5.97846, 
+            -14.7623 -4.74095 -6.27672, -13.1692 -5.21258 -6.08687, -13.9969 -5.59819 -5.62722, -12.8853 -5.6148 -5.7214, 
+            -12.6097 -5.94559 -5.31551, -13.9969 -5.59819 -5.62722, -14.3739 -5.19795 -5.97846, -12.8853 -5.6148 -5.7214, 
+            -13.631 -5.92974 -5.23841, -12.6097 -5.94559 -5.31551, -12.3421 -6.19811 -4.88908, -13.631 -5.92974 -5.23841, 
+            -13.9969 -5.59819 -5.62722, -12.6097 -5.94559 -5.31551, -13.2757 -6.18567 -4.83023, -12.3421 -6.19811 -4.88908, 
+            -12.0821 -6.37137 -4.46264, -13.2757 -6.18567 -4.83023, -13.631 -5.92974 -5.23841, -12.3421 -6.19811 -4.88908, 
+            -12.9304 -6.36404 -4.42142, -12.0821 -6.37137 -4.46264, -11.8297 -6.46943 -4.05534, -12.9304 -6.36404 -4.42142, 
+            -13.2757 -6.18567 -4.83023, -12.0821 -6.37137 -4.46264, -12.5952 -6.46709 -4.02949, -11.8297 -6.46943 -4.05534, 
+            -11.61 -6.5 -3.68308, -12.5952 -6.46709 -4.02949, -12.9304 -6.36404 -4.42142, -11.8297 -6.46943 -4.05534, 
+            -12.1963 -6.5 -3.67115, -12.5952 -6.46709 -4.02949, -11.61 -6.5 -3.68308, -11.3406 -6.5 -3.33112, 
+            -12.1963 -6.5 -3.67115, -11.61 -6.5 -3.68308, -10.7493 -6.5 -3.33415, -11.3406 -6.5 -3.33112, 
+            -11.61 -6.5 -3.68308, -16.9866 -3.72143 -6.50299, -15.5714 -3.72311 -6.67717, -15.1618 -4.24318 -6.51125, 
+            -16.4949 -4.23742 -6.34262, -15.1618 -4.24318 -6.51125, -14.7623 -4.74095 -6.27672, -16.4949 -4.23742 -6.34262, 
+            -16.9866 -3.72143 -6.50299, -15.1618 -4.24318 -6.51125, -16.0144 -4.73036 -6.11902, -14.7623 -4.74095 -6.27672, 
+            -14.3739 -5.19795 -5.97846, -16.0144 -4.73036 -6.11902, -16.4949 -4.23742 -6.34262, -14.7623 -4.74095 -6.27672, 
+            -15.5462 -5.18332 -5.83659, -14.3739 -5.19795 -5.97846, -13.9969 -5.59819 -5.62722, -15.5462 -5.18332 -5.83659, 
+            -16.0144 -4.73036 -6.11902, -14.3739 -5.19795 -5.97846, -15.0908 -5.58158 -5.50508, -13.9969 -5.59819 -5.62722, 
+            -13.631 -5.92974 -5.23841, -15.0908 -5.58158 -5.50508, -15.5462 -5.18332 -5.83659, -13.9969 -5.59819 -5.62722, 
+            -14.6477 -5.91389 -5.13846, -13.631 -5.92974 -5.23841, -13.2757 -6.18567 -4.83023, -14.6477 -5.91389 -5.13846, 
+            -15.0908 -5.58158 -5.50508, -13.631 -5.92974 -5.23841, -14.2163 -6.17323 -4.75318, -13.2757 -6.18567 -4.83023, 
+            -12.9304 -6.36404 -4.42142, -14.2163 -6.17323 -4.75318, -14.6477 -5.91389 -5.13846, -13.2757 -6.18567 -4.83023, 
+            -13.7958 -6.3567 -4.36625, -12.9304 -6.36404 -4.42142, -12.5952 -6.46709 -4.02949, -13.7958 -6.3567 -4.36625, 
+            -14.2163 -6.17323 -4.75318, -12.9304 -6.36404 -4.42142, -12.1963 -6.5 -3.67115, -12.2847 -6.5 -3.66902, 
+            -12.5952 -6.46709 -4.02949, -13.3865 -6.46475 -3.99349, -12.5952 -6.46709 -4.02949, -12.2847 -6.5 -3.66902, 
+            -13.3865 -6.46475 -3.99349, -13.7958 -6.3567 -4.36625, -12.5952 -6.46709 -4.02949, -11.3406 -6.5 -3.33112, 
+            -12.2847 -6.5 -3.66902, -12.1963 -6.5 -3.67115, -13.0889 -6.5 -3.64501, -13.3865 -6.46475 -3.99349, 
+            -12.2847 -6.5 -3.66902, -11.9454 -6.5 -3.32567, -13.0889 -6.5 -3.64501, -12.2847 -6.5 -3.66902, 
+            -11.3406 -6.5 -3.33112, -11.9454 -6.5 -3.32567, -12.2847 -6.5 -3.66902, -18.2793 -3.71974 -6.26643, 
+            -16.9866 -3.72143 -6.50299, -16.4949 -4.23742 -6.34262, -17.7341 -4.23167 -6.11934, -16.4949 -4.23742 -6.34262, 
+            -16.0144 -4.73036 -6.11902, -17.7341 -4.23167 -6.11934, -18.2793 -3.71974 -6.26643, -16.4949 -4.23742 -6.34262, 
+            -17.1989 -4.71977 -5.91392, -16.0144 -4.73036 -6.11902, -15.5462 -5.18332 -5.83659, -17.1989 -4.71977 -5.91392, 
+            -17.7341 -4.23167 -6.11934, -16.0144 -4.73036 -6.11902, -16.6751 -5.16869 -5.65411, -15.5462 -5.18332 -5.83659, 
+            -15.0908 -5.58158 -5.50508, -16.6751 -5.16869 -5.65411, -17.1989 -4.71977 -5.91392, -15.5462 -5.18332 -5.83659, 
+            -16.1631 -5.56497 -5.34866, -15.0908 -5.58158 -5.50508, -14.6477 -5.91389 -5.13846, -16.1631 -5.56497 -5.34866, 
+            -16.6751 -5.16869 -5.65411, -15.0908 -5.58158 -5.50508, -15.6624 -5.89804 -5.01006, -14.6477 -5.91389 -5.13846, 
+            -14.2163 -6.17323 -4.75318, -15.6624 -5.89804 -5.01006, -16.1631 -5.56497 -5.34866, -14.6477 -5.91389 -5.13846, 
+            -15.1722 -6.16079 -4.65306, -14.2163 -6.17323 -4.75318, -13.7958 -6.3567 -4.36625, -15.1722 -6.16079 -4.65306, 
+            -15.6624 -5.89804 -5.01006, -14.2163 -6.17323 -4.75318, -14.6918 -6.34936 -4.2929, -13.7958 -6.3567 -4.36625, 
+            -13.3865 -6.46475 -3.99349, -14.6918 -6.34936 -4.2929, -15.1722 -6.16079 -4.65306, -13.7958 -6.3567 -4.36625, 
+            -14.2212 -6.46241 -3.94375, -13.3865 -6.46475 -3.99349, -13.0889 -6.5 -3.64501, -14.2212 -6.46241 -3.94375, 
+            -14.6918 -6.34936 -4.2929, -13.3865 -6.46475 -3.99349, -13.8609 -6.5 -3.61313, -14.2212 -6.46241 -3.94375, 
+            -13.0889 -6.5 -3.64501, -12.5893 -6.5 -3.31652, -13.8609 -6.5 -3.61313, -13.0889 -6.5 -3.64501, 
+            -11.9454 -6.5 -3.32567, -12.5893 -6.5 -3.31652, -13.0889 -6.5 -3.64501, -19.2641 -3.84805 -5.94334, 
+            -18.2793 -3.71974 -6.26643, -17.7341 -4.23167 -6.11934, -19.2641 -3.84805 -5.94334, -19.5301 -3.60474 -5.99115, 
+            -18.2793 -3.71974 -6.26643, -18.6973 -4.35719 -5.80027, -17.7341 -4.23167 -6.11934, -17.1989 -4.71977 -5.91392, 
+            -19.1046 -3.9929 -5.90882, -19.2641 -3.84805 -5.94334, -17.7341 -4.23167 -6.11934, -18.6973 -4.35719 -5.80027, 
+            -19.1046 -3.9929 -5.90882, -17.7341 -4.23167 -6.11934, -18.1044 -4.86417 -5.5893, -17.1989 -4.71977 -5.91392, 
+            -16.6751 -5.16869 -5.65411, -18.5656 -4.47256 -5.75885, -18.6973 -4.35719 -5.80027, -17.1989 -4.71977 -5.91392, 
+            -18.1044 -4.86417 -5.5893, -18.5656 -4.47256 -5.75885, -17.1989 -4.71977 -5.91392, -17.5294 -5.31546 -5.32755, 
+            -16.6751 -5.16869 -5.65411, -16.1631 -5.56497 -5.34866, -17.8759 -5.04917 -5.49171, -18.1044 -4.86417 -5.5893, 
+            -16.6751 -5.16869 -5.65411, -17.5294 -5.31546 -5.32755, -17.8759 -5.04917 -5.49171, -16.6751 -5.16869 -5.65411, 
+            -17.1985 -5.551 -5.15446, -16.1631 -5.56497 -5.34866, -15.6624 -5.89804 -5.01006, -17.1985 -5.551 -5.15446, 
+            -17.5294 -5.31546 -5.32755, -16.1631 -5.56497 -5.34866, -16.5338 -5.95754 -4.76863, -15.6624 -5.89804 -5.01006, 
+            -15.1722 -6.16079 -4.65306, -16.9728 -5.69967 -5.02841, -17.1985 -5.551 -5.15446, -15.6624 -5.89804 -5.01006, 
+            -16.5338 -5.95754 -4.76863, -16.9728 -5.69967 -5.02841, -15.6624 -5.89804 -5.01006, -15.9306 -6.23652 -4.3921, 
+            -15.1722 -6.16079 -4.65306, -14.6918 -6.34936 -4.2929, -16.4382 -6.00778 -4.71009, -16.5338 -5.95754 -4.76863, 
+            -15.1722 -6.16079 -4.65306, -15.9306 -6.23652 -4.3921, -16.4382 -6.00778 -4.71009, -15.1722 -6.16079 -4.65306, 
+            -15.4538 -6.38929 -4.09055, -14.6918 -6.34936 -4.2929, -14.2212 -6.46241 -3.94375, -15.8784 -6.25626 -4.35903, 
+            -15.9306 -6.23652 -4.3921, -14.6918 -6.34936 -4.2929, -15.4538 -6.38929 -4.09055, -15.8784 -6.25626 -4.35903, 
+            -14.6918 -6.34936 -4.2929, -15.0104 -6.47393 -3.81578, -14.2212 -6.46241 -3.94375, -13.8609 -6.5 -3.61313, 
+            -15.2293 -6.43924 -3.95035, -15.4538 -6.38929 -4.09055, -14.2212 -6.46241 -3.94375, -15.0104 -6.47393 -3.81578, 
+            -15.2293 -6.43924 -3.95035, -14.2212 -6.46241 -3.94375, -14.6021 -6.5 -3.5725, -15.0104 -6.47393 -3.81578, 
+            -13.8609 -6.5 -3.61313, -13.2911 -6.5 -3.29794, -14.6021 -6.5 -3.5725, -13.8609 -6.5 -3.61313, 
+            -13.2911 -6.5 -3.29794, -13.8609 -6.5 -3.61313, -12.5893 -6.5 -3.31652, -19.7927 -3.84527 -5.77131, 
+            -19.5301 -3.60474 -5.99115, -19.2641 -3.84805 -5.94334, -19.1027 -4.46802 -5.60274, -19.2641 -3.84805 -5.94334, 
+            -19.1046 -3.9929 -5.90882, -19.1027 -4.46802 -5.60274, -19.7927 -3.84527 -5.77131, -19.2641 -3.84805 -5.94334, 
+            -19.1027 -4.46802 -5.60274, -19.1046 -3.9929 -5.90882, -18.6973 -4.35719 -5.80027, -19.1027 -4.46802 -5.60274, 
+            -18.6973 -4.35719 -5.80027, -18.5656 -4.47256 -5.75885, -18.4178 -5.04132 -5.35537, -18.5656 -4.47256 -5.75885, 
+            -18.1044 -4.86417 -5.5893, -19.1027 -4.46802 -5.60274, -18.5656 -4.47256 -5.75885, -18.4178 -5.04132 -5.35537, 
+            -18.4178 -5.04132 -5.35537, -18.1044 -4.86417 -5.5893, -17.8759 -5.04917 -5.49171, -17.7399 -5.5414 -5.04054, 
+            -17.8759 -5.04917 -5.49171, -17.5294 -5.31546 -5.32755, -18.4178 -5.04132 -5.35537, -17.8759 -5.04917 -5.49171, 
+            -17.7399 -5.5414 -5.04054, -17.7399 -5.5414 -5.04054, -17.5294 -5.31546 -5.32755, -17.1985 -5.551 -5.15446, 
+            -17.0682 -5.9491 -4.67769, -17.1985 -5.551 -5.15446, -16.9728 -5.69967 -5.02841, -17.7399 -5.5414 -5.04054, 
+            -17.1985 -5.551 -5.15446, -17.0682 -5.9491 -4.67769, -17.0682 -5.9491 -4.67769, -16.9728 -5.69967 -5.02841, 
+            -16.5338 -5.95754 -4.76863, -16.4007 -6.25068 -4.29067, -16.5338 -5.95754 -4.76863, -16.4382 -6.00778 -4.71009, 
+            -17.0682 -5.9491 -4.67769, -16.5338 -5.95754 -4.76863, -16.4007 -6.25068 -4.29067, -16.4007 -6.25068 -4.29067, 
+            -16.4382 -6.00778 -4.71009, -15.9306 -6.23652 -4.3921, -16.4007 -6.25068 -4.29067, -15.9306 -6.23652 -4.3921, 
+            -15.8784 -6.25626 -4.35903, -15.7362 -6.43681 -3.90361, -15.8784 -6.25626 -4.35903, -15.4538 -6.38929 -4.09055, 
+            -16.4007 -6.25068 -4.29067, -15.8784 -6.25626 -4.35903, -15.7362 -6.43681 -3.90361, -15.7362 -6.43681 -3.90361, 
+            -15.4538 -6.38929 -4.09055, -15.2293 -6.43924 -3.95035, -14.8933 -6.5 -3.55335, -15.2293 -6.43924 -3.95035, 
+            -15.0104 -6.47393 -3.81578, -15.7362 -6.43681 -3.90361, -15.2293 -6.43924 -3.95035, -14.8933 -6.5 -3.55335, 
+            -14.8933 -6.5 -3.55335, -15.0104 -6.47393 -3.81578, -14.6021 -6.5 -3.5725, -14.1004 -6.5 -3.28548, 
+            -14.6021 -6.5 -3.5725, -13.2911 -6.5 -3.29794, -14.3246 -6.5 -3.15917, -14.6021 -6.5 -3.5725, 
+            -14.1004 -6.5 -3.28548, -14.3246 -6.5 -3.15917, -14.8933 -6.5 -3.55335, -14.6021 -6.5 -3.5725, 
+            -9.81297 -6.5 -0.571578, -9.80049 -6.5 -0.425282, -9.96695 -6.5 -0.610119, -9.85163 -6.5 -0.431643, 
+            -9.96695 -6.5 -0.610119, -9.80049 -6.5 -0.425282, -10.034 -6.5 -0.847798, -9.81297 -6.5 -0.571578, 
+            -9.96695 -6.5 -0.610119, -10.1193 -6.5 -0.90349, -10.034 -6.5 -0.847798, -9.96695 -6.5 -0.610119, 
+            -9.97569 -5.2 -0.631614, -10.1193 -6.5 -0.90349, -9.96695 -6.5 -0.610119, -9.9354 -6.5 -0.523939, 
+            -9.96695 -6.5 -0.610119, -9.85163 -6.5 -0.431643, -9.97569 -5.2 -0.631614, -9.96695 -6.5 -0.610119, 
+            -9.9354 -6.5 -0.523939, -9.63368 -6.5 -0.289406, -9.69825 -6.5 -0.297757, -9.80049 -6.5 -0.425282, 
+            -9.81297 -6.5 -0.571578, -9.63368 -6.5 -0.289406, -9.80049 -6.5 -0.425282, -9.60238 -6.5 -0.310911, 
+            -9.63368 -6.5 -0.289406, -9.81297 -6.5 -0.571578, -9.75333 -6.5 -0.614253, -9.81297 -6.5 -0.571578, 
+            -10.034 -6.5 -0.847798, -9.75333 -6.5 -0.614253, -9.60238 -6.5 -0.310911, -9.81297 -6.5 -0.571578, 
+            -10.1193 -6.5 -0.90349, -10.2911 -6.5 -1.12298, -10.034 -6.5 -0.847798, -9.94856 -6.5 -0.911922, 
+            -10.034 -6.5 -0.847798, -10.2911 -6.5 -1.12298, -9.94856 -6.5 -0.911922, -9.75333 -6.5 -0.614253, 
+            -10.034 -6.5 -0.847798, -10.3335 -5.2 -1.16686, -10.2911 -6.5 -1.12298, -10.1193 -6.5 -0.90349, 
+            -9.94856 -6.5 -0.911922, -10.2911 -6.5 -1.12298, -10.3252 -6.5 -1.15858, -10.3335 -5.2 -1.16686, 
+            -10.3252 -6.5 -1.15858, -10.2911 -6.5 -1.12298, -10.3335 -5.2 -1.16686, -10.1193 -6.5 -0.90349, 
+            -9.97569 -5.2 -0.631614, -10.3837 -6.5 -1.21504, -9.94856 -6.5 -0.911922, -10.3252 -6.5 -1.15858, 
+            -10.3335 -5.2 -1.16686, -10.3837 -6.5 -1.21504, -10.3252 -6.5 -1.15858, -9.57302 -6.5 -0.306256, 
+            -9.60238 -6.5 -0.310911, -9.75333 -6.5 -0.614253, -9.6862 -6.5 -0.605449, -9.75333 -6.5 -0.614253, 
+            -9.94856 -6.5 -0.911922, -9.6862 -6.5 -0.605449, -9.57302 -6.5 -0.306256, -9.75333 -6.5 -0.614253, 
+            -10.3837 -6.5 -1.21504, -10.1838 -6.5 -1.20581, -9.94856 -6.5 -0.911922, -9.83611 -6.5 -0.899672, 
+            -9.94856 -6.5 -0.911922, -10.1838 -6.5 -1.20581, -9.83611 -6.5 -0.899672, -9.6862 -6.5 -0.605449, 
+            -9.94856 -6.5 -0.911922, -10.7157 -6.5 -1.49761, -10.4547 -6.5 -1.49783, -10.1838 -6.5 -1.20581, 
+            -10.0193 -6.5 -1.19102, -10.1838 -6.5 -1.20581, -10.4547 -6.5 -1.49783, -10.3837 -6.5 -1.21504, 
+            -10.7157 -6.5 -1.49761, -10.1838 -6.5 -1.20581, -10.0193 -6.5 -1.19102, -9.83611 -6.5 -0.899672, 
+            -10.1838 -6.5 -1.20581, -11.0882 -6.5 -1.79232, -10.757 -6.5 -1.78985, -10.4547 -6.5 -1.49783, 
+            -10.2324 -6.5 -1.48158, -10.4547 -6.5 -1.49783, -10.757 -6.5 -1.78985, -10.7157 -6.5 -1.49761, 
+            -11.0882 -6.5 -1.79232, -10.4547 -6.5 -1.49783, -10.2324 -6.5 -1.48158, -10.0193 -6.5 -1.19102, 
+            -10.4547 -6.5 -1.49783, -11.4905 -6.5 -2.08683, -11.0864 -6.5 -2.08378, -10.757 -6.5 -1.78985, 
+            -10.4719 -6.5 -1.77345, -10.757 -6.5 -1.78985, -11.0864 -6.5 -2.08378, -11.0882 -6.5 -1.79232, 
+            -11.4905 -6.5 -2.08683, -10.757 -6.5 -1.78985, -10.4719 -6.5 -1.77345, -10.2324 -6.5 -1.48158, 
+            -10.757 -6.5 -1.78985, -11.9173 -6.5 -2.38289, -11.4386 -6.5 -2.38152, -11.0864 -6.5 -2.08378, 
+            -10.7343 -6.5 -2.06872, -11.0864 -6.5 -2.08378, -11.4386 -6.5 -2.38152, -11.4905 -6.5 -2.08683, 
+            -11.9173 -6.5 -2.38289, -11.0864 -6.5 -2.08378, -10.7343 -6.5 -2.06872, -10.4719 -6.5 -1.77345, 
+            -11.0864 -6.5 -2.08378, -12.3631 -6.5 -2.68227, -11.8094 -6.5 -2.68496, -11.4386 -6.5 -2.38152, 
+            -11.0164 -6.5 -2.36948, -11.4386 -6.5 -2.38152, -11.8094 -6.5 -2.68496, -11.9173 -6.5 -2.38289, 
+            -12.3631 -6.5 -2.68227, -11.4386 -6.5 -2.38152, -11.0164 -6.5 -2.36948, -10.7343 -6.5 -2.06872, 
+            -11.4386 -6.5 -2.38152, -12.8229 -6.5 -2.9867, -12.1944 -6.5 -2.996, -11.8094 -6.5 -2.68496, 
+            -11.3145 -6.5 -2.67784, -11.8094 -6.5 -2.68496, -12.1944 -6.5 -2.996, -12.3631 -6.5 -2.68227, 
+            -12.8229 -6.5 -2.9867, -11.8094 -6.5 -2.68496, -11.3145 -6.5 -2.67784, -11.0164 -6.5 -2.36948, 
+            -11.8094 -6.5 -2.68496, -13.2911 -6.5 -3.29794, -12.5893 -6.5 -3.31652, -12.1944 -6.5 -2.996, 
+            -11.6253 -6.5 -2.99587, -12.1944 -6.5 -2.996, -12.5893 -6.5 -3.31652, -12.8229 -6.5 -2.9867, 
+            -13.2911 -6.5 -3.29794, -12.1944 -6.5 -2.996, -11.6253 -6.5 -2.99587, -11.3145 -6.5 -2.67784, 
+            -12.1944 -6.5 -2.996, -11.9454 -6.5 -3.32567, -11.6253 -6.5 -2.99587, -12.5893 -6.5 -3.31652, 
+            -13.9032 -6.5 -3.1746, -13.2911 -6.5 -3.29794, -12.8229 -6.5 -2.9867, -13.9032 -6.5 -3.1746, 
+            -14.1004 -6.5 -3.28548, -13.2911 -6.5 -3.29794, -13.2086 -6.5 -2.78779, -12.8229 -6.5 -2.9867, 
+            -12.3631 -6.5 -2.68227, -13.6221 -6.5 -3.01768, -13.9032 -6.5 -3.1746, -12.8229 -6.5 -2.9867, 
+            -13.2086 -6.5 -2.78779, -13.6221 -6.5 -3.01768, -12.8229 -6.5 -2.9867, -12.7404 -6.5 -2.52612, 
+            -12.3631 -6.5 -2.68227, -11.9173 -6.5 -2.38289, -13.1713 -6.5 -2.76701, -13.2086 -6.5 -2.78779, 
+            -12.3631 -6.5 -2.68227, -12.7404 -6.5 -2.52612, -13.1713 -6.5 -2.76701, -12.3631 -6.5 -2.68227, 
+            -12.1958 -6.5 -2.2149, -11.9173 -6.5 -2.38289, -11.4905 -6.5 -2.08683, -12.5241 -6.5 -2.40374, 
+            -12.7404 -6.5 -2.52612, -11.9173 -6.5 -2.38289, -12.1958 -6.5 -2.2149, -12.5241 -6.5 -2.40374, 
+            -11.9173 -6.5 -2.38289, -11.8645 -6.5 -2.01901, -11.4905 -6.5 -2.08683, -11.0882 -6.5 -1.79232, 
+            -11.8645 -6.5 -2.01901, -12.1958 -6.5 -2.2149, -11.4905 -6.5 -2.08683, -11.2535 -6.5 -1.63577, 
+            -11.0882 -6.5 -1.79232, -10.7157 -6.5 -1.49761, -11.6911 -6.5 -1.91362, -11.8645 -6.5 -2.01901, 
+            -11.0882 -6.5 -1.79232, -11.2535 -6.5 -1.63577, -11.6911 -6.5 -1.91362, -11.0882 -6.5 -1.79232, 
+            -10.7704 -6.5 -1.47993, -10.7157 -6.5 -1.49761, -10.3837 -6.5 -1.21504, -11.245 -6.5 -1.63018, 
+            -10.7157 -6.5 -1.49761, -10.7704 -6.5 -1.47993, -11.245 -6.5 -1.63018, -11.2535 -6.5 -1.63577, 
+            -10.7157 -6.5 -1.49761, -10.8687 -5.2 -1.5244, -10.7704 -6.5 -1.47993, -10.3837 -6.5 -1.21504, 
+            -10.8687 -5.2 -1.5244, -10.3837 -6.5 -1.21504, -10.3335 -5.2 -1.16686, -10.8687 -5.2 -1.5244, 
+            -11.245 -6.5 -1.63018, -10.7704 -6.5 -1.47993, -14.3246 -6.5 -3.15917, -14.1004 -6.5 -3.28548, 
+            -13.9032 -6.5 -3.1746, -13.5897 -6.5 -2.78093, -13.9032 -6.5 -3.1746, -13.6221 -6.5 -3.01768, 
+            -14.3246 -6.5 -3.15917, -13.9032 -6.5 -3.1746, -13.5897 -6.5 -2.78093, -13.5897 -6.5 -2.78093, 
+            -13.6221 -6.5 -3.01768, -13.2086 -6.5 -2.78779, -12.8619 -6.5 -2.40451, -13.2086 -6.5 -2.78779, 
+            -13.1713 -6.5 -2.76701, -13.5897 -6.5 -2.78093, -13.2086 -6.5 -2.78779, -12.8619 -6.5 -2.40451, 
+            -12.8619 -6.5 -2.40451, -13.1713 -6.5 -2.76701, -12.7404 -6.5 -2.52612, -12.8619 -6.5 -2.40451, 
+            -12.7404 -6.5 -2.52612, -12.5241 -6.5 -2.40374, -12.1564 -6.5 -2.02654, -12.5241 -6.5 -2.40374, 
+            -12.1958 -6.5 -2.2149, -12.8619 -6.5 -2.40451, -12.5241 -6.5 -2.40374, -12.1564 -6.5 -2.02654, 
+            -12.1564 -6.5 -2.02654, -12.1958 -6.5 -2.2149, -11.8645 -6.5 -2.01901, -11.3246 -6.5 -1.64065, 
+            -11.8645 -6.5 -2.01901, -11.6911 -6.5 -1.91362, -11.4159 -6.5 -1.64786, -11.8645 -6.5 -2.01901, 
+            -11.3246 -6.5 -1.64065, -12.1564 -6.5 -2.02654, -11.8645 -6.5 -2.01901, -11.4159 -6.5 -1.64786, 
+            -11.3246 -6.5 -1.64065, -11.6911 -6.5 -1.91362, -11.2535 -6.5 -1.63577, -11.3246 -6.5 -1.64065, 
+            -11.2535 -6.5 -1.63577, -11.245 -6.5 -1.63018, -11.5 -5.2 -1.64993, -11.3246 -6.5 -1.64065, 
+            -11.245 -6.5 -1.63018, -11.5 -5.2 -1.64993, -11.245 -6.5 -1.63018, -10.8687 -5.2 -1.5244, 
+            -9.55509 -6.5 -0.30353, -9.57302 -6.5 -0.306256, -9.6862 -6.5 -0.605449, -9.64035 -6.5 -0.60005, 
+            -9.6862 -6.5 -0.605449, -9.83611 -6.5 -0.899672, -9.64035 -6.5 -0.60005, -9.55509 -6.5 -0.30353, 
+            -9.6862 -6.5 -0.605449, -9.75321 -6.5 -0.891848, -9.83611 -6.5 -0.899672, -10.0193 -6.5 -1.19102, 
+            -9.75321 -6.5 -0.891848, -9.64035 -6.5 -0.60005, -9.83611 -6.5 -0.899672, -9.89109 -6.5 -1.18122, 
+            -10.0193 -6.5 -1.19102, -10.2324 -6.5 -1.48158, -9.89109 -6.5 -1.18122, -9.75321 -6.5 -0.891848, 
+            -10.0193 -6.5 -1.19102, -10.0514 -6.5 -1.47044, -10.2324 -6.5 -1.48158, -10.4719 -6.5 -1.77345, 
+            -10.0514 -6.5 -1.47044, -9.89109 -6.5 -1.18122, -10.2324 -6.5 -1.48158, -10.2316 -6.5 -1.76182, 
+            -10.4719 -6.5 -1.77345, -10.7343 -6.5 -2.06872, -10.2316 -6.5 -1.76182, -10.0514 -6.5 -1.47044, 
+            -10.4719 -6.5 -1.77345, -10.4291 -6.5 -2.05764, -10.7343 -6.5 -2.06872, -11.0164 -6.5 -2.36948, 
+            -10.4291 -6.5 -2.05764, -10.2316 -6.5 -1.76182, -10.7343 -6.5 -2.06872, -10.6413 -6.5 -2.36019, 
+            -11.0164 -6.5 -2.36948, -11.3145 -6.5 -2.67784, -10.6413 -6.5 -2.36019, -10.4291 -6.5 -2.05764, 
+            -11.0164 -6.5 -2.36948, -10.8657 -6.5 -2.67176, -11.3145 -6.5 -2.67784, -11.6253 -6.5 -2.99587, 
+            -10.8657 -6.5 -2.67176, -10.6413 -6.5 -2.36019, -11.3145 -6.5 -2.67784, -11.0996 -6.5 -2.99464, 
+            -11.6253 -6.5 -2.99587, -11.9454 -6.5 -3.32567, -11.0996 -6.5 -2.99464, -10.8657 -6.5 -2.67176, 
+            -11.6253 -6.5 -2.99587, -11.3406 -6.5 -3.33112, -11.0996 -6.5 -2.99464, -11.9454 -6.5 -3.32567, 
+            -9.54182 -6.5 -0.302421, -9.55509 -6.5 -0.30353, -9.64035 -6.5 -0.60005, -9.60314 -6.5 -0.597515, 
+            -9.64035 -6.5 -0.60005, -9.75321 -6.5 -0.891848, -9.60314 -6.5 -0.597515, -9.54182 -6.5 -0.302421, 
+            -9.64035 -6.5 -0.60005, -9.68225 -6.5 -0.887771, -9.75321 -6.5 -0.891848, -9.89109 -6.5 -1.18122, 
+            -9.68225 -6.5 -0.887771, -9.60314 -6.5 -0.597515, -9.75321 -6.5 -0.891848, -9.77742 -6.5 -1.17568, 
+            -9.89109 -6.5 -1.18122, -10.0514 -6.5 -1.47044, -9.77742 -6.5 -1.17568, -9.68225 -6.5 -0.887771, 
+            -9.89109 -6.5 -1.18122, -9.88694 -6.5 -1.46372, -10.0514 -6.5 -1.47044, -10.2316 -6.5 -1.76182, 
+            -9.88694 -6.5 -1.46372, -9.77742 -6.5 -1.17568, -10.0514 -6.5 -1.47044, -10.0091 -6.5 -1.75438, 
+            -10.2316 -6.5 -1.76182, -10.4291 -6.5 -2.05764, -10.0091 -6.5 -1.75438, -9.88694 -6.5 -1.46372, 
+            -10.2316 -6.5 -1.76182, -10.1422 -6.5 -2.05016, -10.4291 -6.5 -2.05764, -10.6413 -6.5 -2.36019, 
+            -10.1422 -6.5 -2.05016, -10.0091 -6.5 -1.75438, -10.4291 -6.5 -2.05764, -10.2845 -6.5 -2.35354, 
+            -10.6413 -6.5 -2.36019, -10.8657 -6.5 -2.67176, -10.2845 -6.5 -2.35354, -10.1422 -6.5 -2.05016, 
+            -10.6413 -6.5 -2.36019, -10.4342 -6.5 -2.66701, -10.8657 -6.5 -2.67176, -11.0996 -6.5 -2.99464, 
+            -10.4342 -6.5 -2.66701, -10.2845 -6.5 -2.35354, -10.8657 -6.5 -2.67176, -10.5897 -6.5 -2.99305, 
+            -11.0996 -6.5 -2.99464, -11.3406 -6.5 -3.33112, -10.5897 -6.5 -2.99305, -10.4342 -6.5 -2.66701, 
+            -11.0996 -6.5 -2.99464, -10.7493 -6.5 -3.33415, -10.5897 -6.5 -2.99305, -11.3406 -6.5 -3.33112, 
+            -9.52596 -6.5 -0.302426, -9.54182 -6.5 -0.302421, -9.60314 -6.5 -0.597515, -9.56102 -6.5 -0.596949, 
+            -9.60314 -6.5 -0.597515, -9.68225 -6.5 -0.887771, -9.56102 -6.5 -0.596949, -9.52596 -6.5 -0.302426, 
+            -9.60314 -6.5 -0.597515, -9.60433 -6.5 -0.886253, -9.68225 -6.5 -0.887771, -9.77742 -6.5 -1.17568, 
+            -9.60433 -6.5 -0.886253, -9.56102 -6.5 -0.596949, -9.68225 -6.5 -0.887771, -9.65503 -6.5 -1.17302, 
+            -9.77742 -6.5 -1.17568, -9.88694 -6.5 -1.46372, -9.65503 -6.5 -1.17302, -9.60433 -6.5 -0.886253, 
+            -9.77742 -6.5 -1.17568, -9.71227 -6.5 -1.45995, -9.88694 -6.5 -1.46372, -10.0091 -6.5 -1.75438, 
+            -9.71227 -6.5 -1.45995, -9.65503 -6.5 -1.17302, -9.88694 -6.5 -1.46372, -9.77518 -6.5 -1.74971, 
+            -10.0091 -6.5 -1.75438, -10.1422 -6.5 -2.05016, -9.77518 -6.5 -1.74971, -9.71227 -6.5 -1.45995, 
+            -10.0091 -6.5 -1.75438, -9.84291 -6.5 -2.04499, -10.1422 -6.5 -2.05016, -10.2845 -6.5 -2.35354, 
+            -9.84291 -6.5 -2.04499, -9.77518 -6.5 -1.74971, -10.1422 -6.5 -2.05016, -9.9146 -6.5 -2.34848, 
+            -10.2845 -6.5 -2.35354, -10.4342 -6.5 -2.66701, -9.9146 -6.5 -2.34848, -9.84291 -6.5 -2.04499, 
+            -10.2845 -6.5 -2.35354, -9.98939 -6.5 -2.66286, -10.4342 -6.5 -2.66701, -10.5897 -6.5 -2.99305, 
+            -9.98939 -6.5 -2.66286, -9.9146 -6.5 -2.34848, -10.4342 -6.5 -2.66701, -10.0664 -6.5 -2.99082, 
+            -10.5897 -6.5 -2.99305, -10.7493 -6.5 -3.33415, -10.0664 -6.5 -2.99082, -9.98939 -6.5 -2.66286, 
+            -10.5897 -6.5 -2.99305, -10.1448 -6.5 -3.33504, -10.0664 -6.5 -2.99082, -10.7493 -6.5 -3.33415, 
+            -9.5 -6.5 -0.303052, -9.52596 -6.5 -0.302426, -9.56102 -6.5 -0.596949, -9.5 -6.5 -0.60501, 
+            -9.56102 -6.5 -0.596949, -9.60433 -6.5 -0.886253, -9.5 -6.5 -0.60501, -9.5 -6.5 -0.303052, 
+            -9.56102 -6.5 -0.596949, -9.5 -6.5 -0.906991, -9.60433 -6.5 -0.886253, -9.65503 -6.5 -1.17302, 
+            -9.5 -6.5 -0.906991, -9.5 -6.5 -0.60501, -9.60433 -6.5 -0.886253, -9.5 -6.5 -1.20901, 
+            -9.65503 -6.5 -1.17302, -9.71227 -6.5 -1.45995, -9.5 -6.5 -1.20901, -9.5 -6.5 -0.906991, 
+            -9.65503 -6.5 -1.17302, -9.5 -6.5 -1.51109, -9.71227 -6.5 -1.45995, -9.77518 -6.5 -1.74971, 
+            -9.5 -6.5 -1.51109, -9.5 -6.5 -1.20901, -9.71227 -6.5 -1.45995, -9.5 -6.5 -1.81317, 
+            -9.77518 -6.5 -1.74971, -9.84291 -6.5 -2.04499, -9.5 -6.5 -1.81317, -9.5 -6.5 -1.51109, 
+            -9.77518 -6.5 -1.74971, -9.5 -6.5 -2.11528, -9.84291 -6.5 -2.04499, -9.9146 -6.5 -2.34848, 
+            -9.5 -6.5 -2.11528, -9.5 -6.5 -1.81317, -9.84291 -6.5 -2.04499, -9.5 -6.5 -2.41793, 
+            -9.9146 -6.5 -2.34848, -9.98939 -6.5 -2.66286, -9.5 -6.5 -2.41793, -9.5 -6.5 -2.11528, 
+            -9.9146 -6.5 -2.34848, -9.5 -6.5 -2.7229, -9.98939 -6.5 -2.66286, -10.0664 -6.5 -2.99082, 
+            -9.5 -6.5 -2.7229, -9.5 -6.5 -2.41793, -9.98939 -6.5 -2.66286, -9.5 -6.5 -3.03486, 
+            -10.0664 -6.5 -2.99082, -10.1448 -6.5 -3.33504, -9.5 -6.5 -3.03486, -9.5 -6.5 -2.7229, 
+            -10.0664 -6.5 -2.99082, -9.5 -6.5 -3.35879, -9.5 -6.5 -3.03486, -10.1448 -6.5 -3.33504, 
+            -9.5 -5.1 -1.8, -9.5 -6.5 -1.51109, -9.5 -6.5 -1.81317, -9.5 -5.1 -1.8, 
+            -9.5 -6.5 -1.81317, -9.5 -6.5 -2.11528, -9.5 -5.1 -1.8, -9.5 -6.5 -2.11528, 
+            -9.5 -6.5 -2.41793, -9.5 -5.1 -1.8, -9.5 -6.5 -2.41793, -9.5 -6.5 -2.7229, 
+            -9.5 -5.1 -1.8, -9.5 -6.5 -2.7229, -9.5 -6.5 -3.03486, -9.5 -5.1 -1.8, 
+            -9.5 -6.5 -3.03486, -9.5 -6.5 -3.35879, -24.1047 -4.41403 -0.651628, -24.2799 -3.82856 -0.612125, 
+            -24.2113 -3.82984 -1.1906, -24.0222 -4.41818 -1.25413, -24.2113 -3.82984 -1.1906, -24.0953 -3.83113 -1.73637, 
+            -24.1047 -4.41403 -0.651628, -24.2113 -3.82984 -1.1906, -24.0222 -4.41818 -1.25413, -23.885 -4.42233 -1.80628, 
+            -24.0953 -3.83113 -1.73637, -23.9294 -3.83241 -2.2556, -24.0222 -4.41818 -1.25413, -24.0953 -3.83113 -1.73637, 
+            -23.885 -4.42233 -1.80628, -23.6919 -4.42649 -2.31805, -23.9294 -3.83241 -2.2556, -23.7097 -3.8337 -2.75163, 
+            -23.885 -4.42233 -1.80628, -23.9294 -3.83241 -2.2556, -23.6919 -4.42649 -2.31805, -23.4371 -4.43064 -2.79838, 
+            -23.7097 -3.8337 -2.75163, -23.432 -3.83499 -3.22433, -23.6919 -4.42649 -2.31805, -23.7097 -3.8337 -2.75163, 
+            -23.4371 -4.43064 -2.79838, -23.1152 -4.43479 -3.25061, -23.432 -3.83499 -3.22433, -23.0962 -3.83627 -3.66959, 
+            -23.4371 -4.43064 -2.79838, -23.432 -3.83499 -3.22433, -23.1152 -4.43479 -3.25061, -22.7277 -4.43894 -3.67165, 
+            -23.0962 -3.83627 -3.66959, -22.7094 -3.83756 -4.08139, -23.1152 -4.43479 -3.25061, -23.0962 -3.83627 -3.66959, 
+            -22.7277 -4.43894 -3.67165, -22.2846 -4.4431 -4.05674, -22.7094 -3.83756 -4.08139, -22.2799 -3.83885 -4.45572, 
+            -22.7277 -4.43894 -3.67165, -22.7094 -3.83756 -4.08139, -22.2846 -4.4431 -4.05674, -21.7978 -4.44725 -4.40332, 
+            -22.2799 -3.83885 -4.45572, -21.8173 -3.84013 -4.79092, -22.2846 -4.4431 -4.05674, -22.2799 -3.83885 -4.45572, 
+            -21.7978 -4.44725 -4.40332, -21.2798 -4.4514 -4.71121, -21.8173 -3.84013 -4.79092, -21.3304 -3.84142 -5.08742, 
+            -21.7978 -4.44725 -4.40332, -21.8173 -3.84013 -4.79092, -21.2798 -4.4514 -4.71121, -20.7423 -4.45556 -4.9819, 
+            -21.3304 -3.84142 -5.08742, -20.8277 -3.8427 -5.34725, -21.2798 -4.4514 -4.71121, -21.3304 -3.84142 -5.08742, 
+            -20.7423 -4.45556 -4.9819, -20.1958 -4.45971 -5.21818, -20.8277 -3.8427 -5.34725, -20.3141 -3.84399 -5.57383, 
+            -20.7423 -4.45556 -4.9819, -20.8277 -3.8427 -5.34725, -20.1958 -4.45971 -5.21818, -19.6474 -4.46386 -5.42375, 
+            -20.3141 -3.84399 -5.57383, -19.7927 -3.84527 -5.77131, -20.1958 -4.45971 -5.21818, -20.3141 -3.84399 -5.57383, 
+            -19.6474 -4.46386 -5.42375, -19.6474 -4.46386 -5.42375, -19.7927 -3.84527 -5.77131, -19.1027 -4.46802 -5.60274, 
+            -21.7791 -6.41427 -0.668409, -20.9875 -6.5 -0.892731, -21.0422 -6.5 -0.496006, -20.0663 -6.5 -0.578026, 
+            -21.0422 -6.5 -0.496006, -20.9875 -6.5 -0.892731, -21.6654 -6.41601 -1.24328, -20.8945 -6.5 -1.25843, 
+            -20.9875 -6.5 -0.892731, -19.9727 -6.5 -1.07291, -20.9875 -6.5 -0.892731, -20.8945 -6.5 -1.25843, 
+            -21.7791 -6.41427 -0.668409, -21.6654 -6.41601 -1.24328, -20.9875 -6.5 -0.892731, -20.0663 -6.5 -0.578026, 
+            -20.9875 -6.5 -0.892731, -19.9727 -6.5 -1.07291, -21.4801 -6.41774 -1.71648, -20.768 -6.5 -1.57012, 
+            -20.8945 -6.5 -1.25843, -19.8173 -6.5 -1.47458, -20.8945 -6.5 -1.25843, -20.768 -6.5 -1.57012, 
+            -21.6654 -6.41601 -1.24328, -21.4801 -6.41774 -1.71648, -20.8945 -6.5 -1.25843, -19.9727 -6.5 -1.07291, 
+            -20.8945 -6.5 -1.25843, -19.8173 -6.5 -1.47458, -21.4801 -6.41774 -1.71648, -20.6056 -6.5 -1.84425, 
+            -20.768 -6.5 -1.57012, -19.8173 -6.5 -1.47458, -20.768 -6.5 -1.57012, -20.6056 -6.5 -1.84425, 
+            -21.2255 -6.41947 -2.10918, -20.3894 -6.5 -2.10109, -20.6056 -6.5 -1.84425, -19.6043 -6.5 -1.79867, 
+            -20.6056 -6.5 -1.84425, -20.3894 -6.5 -2.10109, -21.4801 -6.41774 -1.71648, -21.2255 -6.41947 -2.10918, 
+            -20.6056 -6.5 -1.84425, -19.8173 -6.5 -1.47458, -20.6056 -6.5 -1.84425, -19.6043 -6.5 -1.79867, 
+            -20.8906 -6.42121 -2.44742, -20.1136 -6.5 -2.3381, -20.3894 -6.5 -2.10109, -19.3257 -6.5 -2.06866, 
+            -20.3894 -6.5 -2.10109, -20.1136 -6.5 -2.3381, -21.2255 -6.41947 -2.10918, -20.8906 -6.42121 -2.44742, 
+            -20.3894 -6.5 -2.10109, -19.6043 -6.5 -1.79867, -20.3894 -6.5 -2.10109, -19.3257 -6.5 -2.06866, 
+            -20.467 -6.42294 -2.74533, -19.7545 -6.5 -2.56535, -20.1136 -6.5 -2.3381, -18.9728 -6.5 -2.30176, 
+            -20.1136 -6.5 -2.3381, -19.7545 -6.5 -2.56535, -20.8906 -6.42121 -2.44742, -20.467 -6.42294 -2.74533, 
+            -20.1136 -6.5 -2.3381, -19.3257 -6.5 -2.06866, -20.1136 -6.5 -2.3381, -18.9728 -6.5 -2.30176, 
+            -20.467 -6.42294 -2.74533, -19.3475 -6.5 -2.75851, -19.7545 -6.5 -2.56535, -18.5453 -6.5 -2.5009, 
+            -19.7545 -6.5 -2.56535, -19.3475 -6.5 -2.75851, -18.9728 -6.5 -2.30176, -19.7545 -6.5 -2.56535, 
+            -18.5453 -6.5 -2.5009, -19.9605 -6.42467 -3.00336, -18.866 -6.5 -2.93388, -19.3475 -6.5 -2.75851, 
+            -18.057 -6.5 -2.66667, -19.3475 -6.5 -2.75851, -18.866 -6.5 -2.93388, -20.467 -6.42294 -2.74533, 
+            -19.9605 -6.42467 -3.00336, -19.3475 -6.5 -2.75851, -18.5453 -6.5 -2.5009, -19.3475 -6.5 -2.75851, 
+            -18.057 -6.5 -2.66667, -19.3902 -6.42641 -3.22149, -18.3207 -6.5 -3.08672, -18.866 -6.5 -2.93388, 
+            -17.5251 -6.5 -2.80056, -18.866 -6.5 -2.93388, -18.3207 -6.5 -3.08672, -19.9605 -6.42467 -3.00336, 
+            -19.3902 -6.42641 -3.22149, -18.866 -6.5 -2.93388, -18.057 -6.5 -2.66667, -18.866 -6.5 -2.93388, 
+            -17.5251 -6.5 -2.80056, -18.7773 -6.42814 -3.40203, -17.716 -6.5 -3.2181, -18.3207 -6.5 -3.08672, 
+            -16.9676 -6.5 -2.90643, -18.3207 -6.5 -3.08672, -17.716 -6.5 -3.2181, -19.3902 -6.42641 -3.22149, 
+            -18.7773 -6.42814 -3.40203, -18.3207 -6.5 -3.08672, -17.5251 -6.5 -2.80056, -18.3207 -6.5 -3.08672, 
+            -16.9676 -6.5 -2.90643, -18.1435 -6.42987 -3.54957, -17.2768 -6.5 -3.29533, -17.716 -6.5 -3.2181, 
+            -16.9676 -6.5 -2.90643, -17.716 -6.5 -3.2181, -17.2768 -6.5 -3.29533, -18.7773 -6.42814 -3.40203, 
+            -18.1435 -6.42987 -3.54957, -17.716 -6.5 -3.2181, -17.5073 -6.43161 -3.66897, -16.8071 -6.5 -3.36482, 
+            -17.2768 -6.5 -3.29533, -16.4021 -6.5 -2.98871, -17.2768 -6.5 -3.29533, -16.8071 -6.5 -3.36482, 
+            -18.1435 -6.42987 -3.54957, -17.5073 -6.43161 -3.66897, -17.2768 -6.5 -3.29533, -16.9676 -6.5 -2.90643, 
+            -17.2768 -6.5 -3.29533, -16.4021 -6.5 -2.98871, -17.5073 -6.43161 -3.66897, -16.3018 -6.5 -3.42747, 
+            -16.8071 -6.5 -3.36482, -15.8428 -6.5 -3.0516, -16.8071 -6.5 -3.36482, -16.3018 -6.5 -3.42747, 
+            -16.4021 -6.5 -2.98871, -16.8071 -6.5 -3.36482, -15.8428 -6.5 -3.0516, -16.8851 -6.43334 -3.76508, 
+            -15.7684 -6.5 -3.48251, -16.3018 -6.5 -3.42747, -15.3027 -6.5 -3.09902, -16.3018 -6.5 -3.42747, 
+            -15.7684 -6.5 -3.48251, -17.5073 -6.43161 -3.66897, -16.8851 -6.43334 -3.76508, -16.3018 -6.5 -3.42747, 
+            -15.8428 -6.5 -3.0516, -16.3018 -6.5 -3.42747, -15.3027 -6.5 -3.09902, -16.2906 -6.43508 -3.84207, 
+            -15.1887 -6.5 -3.53181, -15.7684 -6.5 -3.48251, -14.7931 -6.5 -3.134, -15.7684 -6.5 -3.48251, 
+            -15.1887 -6.5 -3.53181, -16.8851 -6.43334 -3.76508, -16.2906 -6.43508 -3.84207, -15.7684 -6.5 -3.48251, 
+            -15.3027 -6.5 -3.09902, -15.7684 -6.5 -3.48251, -14.7931 -6.5 -3.134, -15.7362 -6.43681 -3.90361, 
+            -14.8933 -6.5 -3.55335, -15.1887 -6.5 -3.53181, -14.3246 -6.5 -3.15917, -15.1887 -6.5 -3.53181, 
+            -14.8933 -6.5 -3.55335, -16.2906 -6.43508 -3.84207, -15.7362 -6.43681 -3.90361, -15.1887 -6.5 -3.53181, 
+            -14.7931 -6.5 -3.134, -15.1887 -6.5 -3.53181, -14.3246 -6.5 -3.15917, -16.4007 -6.25068 -4.29067, 
+            -15.7362 -6.43681 -3.90361, -16.2906 -6.43508 -3.84207, -16.9675 -6.24562 -4.20708, -16.2906 -6.43508 -3.84207, 
+            -16.8851 -6.43334 -3.76508, -16.9675 -6.24562 -4.20708, -16.4007 -6.25068 -4.29067, -16.2906 -6.43508 -3.84207, 
+            -17.57 -6.24055 -4.10603, -16.8851 -6.43334 -3.76508, -17.5073 -6.43161 -3.66897, -17.57 -6.24055 -4.10603, 
+            -16.9675 -6.24562 -4.20708, -16.8851 -6.43334 -3.76508, -18.1964 -6.23549 -3.98367, -17.5073 -6.43161 -3.66897, 
+            -18.1435 -6.42987 -3.54957, -18.1964 -6.23549 -3.98367, -17.57 -6.24055 -4.10603, -17.5073 -6.43161 -3.66897, 
+            -18.8336 -6.23043 -3.83583, -18.1435 -6.42987 -3.54957, -18.7773 -6.42814 -3.40203, -18.8336 -6.23043 -3.83583, 
+            -18.1964 -6.23549 -3.98367, -18.1435 -6.42987 -3.54957, -19.4658 -6.22536 -3.65783, -18.7773 -6.42814 -3.40203, 
+            -19.3902 -6.42641 -3.22149, -19.4658 -6.22536 -3.65783, -18.8336 -6.23043 -3.83583, -18.7773 -6.42814 -3.40203, 
+            -20.0751 -6.2203 -3.44523, -19.3902 -6.42641 -3.22149, -19.9605 -6.42467 -3.00336, -20.0751 -6.2203 -3.44523, 
+            -19.4658 -6.22536 -3.65783, -19.3902 -6.42641 -3.22149, -20.6407 -6.21524 -3.19403, -19.9605 -6.42467 -3.00336, 
+            -20.467 -6.42294 -2.74533, -20.6407 -6.21524 -3.19403, -20.0751 -6.2203 -3.44523, -19.9605 -6.42467 -3.00336, 
+            -21.1422 -6.21017 -2.9026, -20.467 -6.42294 -2.74533, -20.8906 -6.42121 -2.44742, -21.1422 -6.21017 -2.9026, 
+            -20.6407 -6.21524 -3.19403, -20.467 -6.42294 -2.74533, -21.5615 -6.20511 -2.57166, -20.8906 -6.42121 -2.44742, 
+            -21.2255 -6.41947 -2.10918, -21.5615 -6.20511 -2.57166, -21.1422 -6.21017 -2.9026, -20.8906 -6.42121 -2.44742, 
+            -21.8932 -6.20005 -2.20131, -21.2255 -6.41947 -2.10918, -21.4801 -6.41774 -1.71648, -21.8932 -6.20005 -2.20131, 
+            -21.5615 -6.20511 -2.57166, -21.2255 -6.41947 -2.10918, -22.1456 -6.19498 -1.77867, -21.4801 -6.41774 -1.71648, 
+            -21.6654 -6.41601 -1.24328, -22.1456 -6.19498 -1.77867, -21.8932 -6.20005 -2.20131, -21.4801 -6.41774 -1.71648, 
+            -22.3291 -6.18992 -1.27969, -21.6654 -6.41601 -1.24328, -21.7791 -6.41427 -0.668409, -22.3291 -6.18992 -1.27969, 
+            -22.1456 -6.19498 -1.77867, -21.6654 -6.41601 -1.24328, -22.4419 -6.18486 -0.68437, -22.3291 -6.18992 -1.27969, 
+            -21.7791 -6.41427 -0.668409, -17.0682 -5.9491 -4.67769, -16.4007 -6.25068 -4.29067, -16.9675 -6.24562 -4.20708, 
+            -17.6402 -5.94139 -4.56965, -16.9675 -6.24562 -4.20708, -17.57 -6.24055 -4.10603, -17.6402 -5.94139 -4.56965, 
+            -17.0682 -5.9491 -4.67769, -16.9675 -6.24562 -4.20708, -18.2419 -5.93367 -4.44202, -17.57 -6.24055 -4.10603, 
+            -18.1964 -6.23549 -3.98367, -18.2419 -5.93367 -4.44202, -17.6402 -5.94139 -4.56965, -17.57 -6.24055 -4.10603, 
+            -18.8628 -5.92595 -4.29084, -18.1964 -6.23549 -3.98367, -18.8336 -6.23043 -3.83583, -18.8628 -5.92595 -4.29084, 
+            -18.2419 -5.93367 -4.44202, -18.1964 -6.23549 -3.98367, -19.4905 -5.91824 -4.11196, -18.8336 -6.23043 -3.83583, 
+            -19.4658 -6.22536 -3.65783, -19.4905 -5.91824 -4.11196, -18.8628 -5.92595 -4.29084, -18.8336 -6.23043 -3.83583, 
+            -20.1103 -5.91052 -3.90102, -19.4658 -6.22536 -3.65783, -20.0751 -6.2203 -3.44523, -20.1103 -5.91052 -3.90102, 
+            -19.4905 -5.91824 -4.11196, -19.4658 -6.22536 -3.65783, -20.7051 -5.9028 -3.6541, -20.0751 -6.2203 -3.44523, 
+            -20.6407 -6.21524 -3.19403, -20.7051 -5.9028 -3.6541, -20.1103 -5.91052 -3.90102, -20.0751 -6.2203 -3.44523, 
+            -21.2554 -5.89509 -3.36798, -20.6407 -6.21524 -3.19403, -21.1422 -6.21017 -2.9026, -21.2554 -5.89509 -3.36798, 
+            -20.7051 -5.9028 -3.6541, -20.6407 -6.21524 -3.19403, -21.7425 -5.88737 -3.04186, -21.1422 -6.21017 -2.9026, 
+            -21.5615 -6.20511 -2.57166, -21.7425 -5.88737 -3.04186, -21.2554 -5.89509 -3.36798, -21.1422 -6.21017 -2.9026, 
+            -22.1493 -5.87965 -2.6773, -21.5615 -6.20511 -2.57166, -21.8932 -6.20005 -2.20131, -22.1493 -5.87965 -2.6773, 
+            -21.7425 -5.88737 -3.04186, -21.5615 -6.20511 -2.57166, -22.4714 -5.87194 -2.27499, -21.8932 -6.20005 -2.20131, 
+            -22.1456 -6.19498 -1.77867, -22.4714 -5.87194 -2.27499, -22.1493 -5.87965 -2.6773, -21.8932 -6.20005 -2.20131, 
+            -22.7165 -5.86422 -1.8238, -22.1456 -6.19498 -1.77867, -22.3291 -6.18992 -1.27969, -22.7165 -5.86422 -1.8238, 
+            -22.4714 -5.87194 -2.27499, -22.1456 -6.19498 -1.77867, -22.8942 -5.8565 -1.30235, -22.3291 -6.18992 -1.27969, 
+            -22.4419 -6.18486 -0.68437, -22.8942 -5.8565 -1.30235, -22.7165 -5.86422 -1.8238, -22.3291 -6.18992 -1.27969, 
+            -23.0033 -5.84879 -0.692355, -22.8942 -5.8565 -1.30235, -22.4419 -6.18486 -0.68437, -17.7399 -5.5414 -5.04054, 
+            -17.0682 -5.9491 -4.67769, -17.6402 -5.94139 -4.56965, -18.3099 -5.53297 -4.90737, -17.6402 -5.94139 -4.56965, 
+            -18.2419 -5.93367 -4.44202, -18.3099 -5.53297 -4.90737, -17.7399 -5.5414 -5.04054, -17.6402 -5.94139 -4.56965, 
+            -18.9022 -5.52455 -4.75238, -18.2419 -5.93367 -4.44202, -18.8628 -5.92595 -4.29084, -18.9022 -5.52455 -4.75238, 
+            -18.3099 -5.53297 -4.90737, -18.2419 -5.93367 -4.44202, -19.5078 -5.51612 -4.57152, -18.8628 -5.92595 -4.29084, 
+            -19.4905 -5.91824 -4.11196, -19.5078 -5.51612 -4.57152, -18.9022 -5.52455 -4.75238, -18.8628 -5.92595 -4.29084, 
+            -20.1157 -5.50769 -4.36073, -19.4905 -5.91824 -4.11196, -20.1103 -5.91052 -3.90102, -20.1157 -5.50769 -4.36073, 
+            -19.5078 -5.51612 -4.57152, -19.4905 -5.91824 -4.11196, -20.7122 -5.49926 -4.11608, -20.1103 -5.91052 -3.90102, 
+            -20.7051 -5.9028 -3.6541, -20.7122 -5.49926 -4.11608, -20.1157 -5.50769 -4.36073, -20.1103 -5.91052 -3.90102, 
+            -21.2817 -5.49084 -3.83431, -20.7051 -5.9028 -3.6541, -21.2554 -5.89509 -3.36798, -21.2817 -5.49084 -3.83431, 
+            -20.7122 -5.49926 -4.11608, -20.7051 -5.9028 -3.6541, -21.8065 -5.48241 -3.51315, -21.2554 -5.89509 -3.36798, 
+            -21.7425 -5.88737 -3.04186, -21.8065 -5.48241 -3.51315, -21.2817 -5.49084 -3.83431, -21.2554 -5.89509 -3.36798, 
+            -22.2696 -5.47398 -3.15279, -21.7425 -5.88737 -3.04186, -22.1493 -5.87965 -2.6773, -22.2696 -5.47398 -3.15279, 
+            -21.8065 -5.48241 -3.51315, -21.7425 -5.88737 -3.04186, -22.656 -5.46555 -2.75572, -22.1493 -5.87965 -2.6773, 
+            -22.4714 -5.87194 -2.27499, -22.656 -5.46555 -2.75572, -22.2696 -5.47398 -3.15279, -22.1493 -5.87965 -2.6773, 
+            -22.962 -5.45713 -2.32335, -22.4714 -5.87194 -2.27499, -22.7165 -5.86422 -1.8238, -22.962 -5.45713 -2.32335, 
+            -22.656 -5.46555 -2.75572, -22.4714 -5.87194 -2.27499, -23.1946 -5.4487 -1.8467, -22.7165 -5.86422 -1.8238, 
+            -22.8942 -5.8565 -1.30235, -23.1946 -5.4487 -1.8467, -22.962 -5.45713 -2.32335, -22.7165 -5.86422 -1.8238, 
+            -23.3626 -5.44027 -1.30781, -22.8942 -5.8565 -1.30235, -23.0033 -5.84879 -0.692355, -23.3626 -5.44027 -1.30781, 
+            -23.1946 -5.4487 -1.8467, -22.8942 -5.8565 -1.30235, -23.4654 -5.43184 -0.690644, -23.3626 -5.44027 -1.30781, 
+            -23.0033 -5.84879 -0.692355, -18.4178 -5.04132 -5.35537, -17.7399 -5.5414 -5.04054, -18.3099 -5.53297 -4.90737, 
+            -18.9786 -5.03432 -5.19809, -18.3099 -5.53297 -4.90737, -18.9022 -5.52455 -4.75238, -18.9786 -5.03432 -5.19809, 
+            -18.4178 -5.04132 -5.35537, -18.3099 -5.53297 -4.90737, -19.5532 -5.02733 -5.01665, -18.9022 -5.52455 -4.75238, 
+            -19.5078 -5.51612 -4.57152, -19.5532 -5.02733 -5.01665, -18.9786 -5.03432 -5.19809, -18.9022 -5.52455 -4.75238, 
+            -20.134 -5.02033 -4.80696, -19.5078 -5.51612 -4.57152, -20.1157 -5.50769 -4.36073, -20.134 -5.02033 -4.80696, 
+            -19.5532 -5.02733 -5.01665, -19.5078 -5.51612 -4.57152, -20.7118 -5.01334 -4.56511, -20.1157 -5.50769 -4.36073, 
+            -20.7122 -5.49926 -4.11608, -20.7118 -5.01334 -4.56511, -20.134 -5.02033 -4.80696, -20.1157 -5.50769 -4.36073, 
+            -21.2744 -5.00635 -4.28768, -20.7122 -5.49926 -4.11608, -21.2817 -5.49084 -3.83431, -21.2744 -5.00635 -4.28768, 
+            -20.7118 -5.01334 -4.56511, -20.7122 -5.49926 -4.11608, -21.8079 -4.99935 -3.97223, -21.2817 -5.49084 -3.83431, 
+            -21.8065 -5.48241 -3.51315, -21.8079 -4.99935 -3.97223, -21.2744 -5.00635 -4.28768, -21.2817 -5.49084 -3.83431, 
+            -22.2969 -4.99236 -3.61762, -21.8065 -5.48241 -3.51315, -22.2696 -5.47398 -3.15279, -22.2969 -4.99236 -3.61762, 
+            -21.8079 -4.99935 -3.97223, -21.8065 -5.48241 -3.51315, -22.7268 -4.98536 -3.22515, -22.2696 -5.47398 -3.15279, 
+            -22.656 -5.46555 -2.75572, -22.7268 -4.98536 -3.22515, -22.2969 -4.99236 -3.61762, -22.2696 -5.47398 -3.15279, 
+            -23.0848 -4.97837 -2.79839, -22.656 -5.46555 -2.75572, -22.962 -5.45713 -2.32335, -23.0848 -4.97837 -2.79839, 
+            -22.7268 -4.98536 -3.22515, -22.656 -5.46555 -2.75572, -23.3683 -4.97138 -2.33955, -22.962 -5.45713 -2.32335, 
+            -23.1946 -5.4487 -1.8467, -23.3683 -4.97138 -2.33955, -23.0848 -4.97837 -2.79839, -22.962 -5.45713 -2.32335, 
+            -23.5837 -4.96438 -1.84225, -23.1946 -5.4487 -1.8467, -23.3626 -5.44027 -1.30781, -23.5837 -4.96438 -1.84225, 
+            -23.3683 -4.97138 -2.33955, -23.1946 -5.4487 -1.8467, -23.7381 -4.95739 -1.29266, -23.3626 -5.44027 -1.30781, 
+            -23.4654 -5.43184 -0.690644, -23.7381 -4.95739 -1.29266, -23.5837 -4.96438 -1.84225, -23.3626 -5.44027 -1.30781, 
+            -23.832 -4.95039 -0.677531, -23.7381 -4.95739 -1.29266, -23.4654 -5.43184 -0.690644, -19.1027 -4.46802 -5.60274, 
+            -18.4178 -5.04132 -5.35537, -18.9786 -5.03432 -5.19809, -19.6474 -4.46386 -5.42375, -18.9786 -5.03432 -5.19809, 
+            -19.5532 -5.02733 -5.01665, -19.6474 -4.46386 -5.42375, -19.1027 -4.46802 -5.60274, -18.9786 -5.03432 -5.19809, 
+            -20.1958 -4.45971 -5.21818, -19.5532 -5.02733 -5.01665, -20.134 -5.02033 -4.80696, -20.1958 -4.45971 -5.21818, 
+            -19.6474 -4.46386 -5.42375, -19.5532 -5.02733 -5.01665, -20.7423 -4.45556 -4.9819, -20.134 -5.02033 -4.80696, 
+            -20.7118 -5.01334 -4.56511, -20.7423 -4.45556 -4.9819, -20.1958 -4.45971 -5.21818, -20.134 -5.02033 -4.80696, 
+            -21.2798 -4.4514 -4.71121, -20.7118 -5.01334 -4.56511, -21.2744 -5.00635 -4.28768, -21.2798 -4.4514 -4.71121, 
+            -20.7423 -4.45556 -4.9819, -20.7118 -5.01334 -4.56511, -21.7978 -4.44725 -4.40332, -21.2744 -5.00635 -4.28768, 
+            -21.8079 -4.99935 -3.97223, -21.7978 -4.44725 -4.40332, -21.2798 -4.4514 -4.71121, -21.2744 -5.00635 -4.28768, 
+            -22.2846 -4.4431 -4.05674, -21.8079 -4.99935 -3.97223, -22.2969 -4.99236 -3.61762, -22.2846 -4.4431 -4.05674, 
+            -21.7978 -4.44725 -4.40332, -21.8079 -4.99935 -3.97223, -22.7277 -4.43894 -3.67165, -22.2969 -4.99236 -3.61762, 
+            -22.7268 -4.98536 -3.22515, -22.7277 -4.43894 -3.67165, -22.2846 -4.4431 -4.05674, -22.2969 -4.99236 -3.61762, 
+            -23.1152 -4.43479 -3.25061, -22.7268 -4.98536 -3.22515, -23.0848 -4.97837 -2.79839, -23.1152 -4.43479 -3.25061, 
+            -22.7277 -4.43894 -3.67165, -22.7268 -4.98536 -3.22515, -23.4371 -4.43064 -2.79838, -23.0848 -4.97837 -2.79839, 
+            -23.3683 -4.97138 -2.33955, -23.4371 -4.43064 -2.79838, -23.1152 -4.43479 -3.25061, -23.0848 -4.97837 -2.79839, 
+            -23.6919 -4.42649 -2.31805, -23.3683 -4.97138 -2.33955, -23.5837 -4.96438 -1.84225, -23.6919 -4.42649 -2.31805, 
+            -23.4371 -4.43064 -2.79838, -23.3683 -4.97138 -2.33955, -23.885 -4.42233 -1.80628, -23.5837 -4.96438 -1.84225, 
+            -23.7381 -4.95739 -1.29266, -23.885 -4.42233 -1.80628, -23.6919 -4.42649 -2.31805, -23.5837 -4.96438 -1.84225, 
+            -24.0222 -4.41818 -1.25413, -23.7381 -4.95739 -1.29266, -23.832 -4.95039 -0.677531, -24.0222 -4.41818 -1.25413, 
+            -23.885 -4.42233 -1.80628, -23.7381 -4.95739 -1.29266, -24.1047 -4.41403 -0.651628, -24.0222 -4.41818 -1.25413, 
+            -23.832 -4.95039 -0.677531, -11.5 -5.2 -1.64993, -11.4159 -6.5 -1.64786, -11.3246 -6.5 -1.64065, 
+            -11.5956 -6.5 -1.64723, -12.1564 -6.5 -2.02654, -11.4159 -6.5 -1.64786, -11.5 -5.2 -1.64993, 
+            -11.5956 -6.5 -1.64723, -11.4159 -6.5 -1.64786, -11.6048 -6.5 -1.64667, -12.4892 -6.5 -2.02763, 
+            -12.1564 -6.5 -2.02654, -12.8619 -6.5 -2.40451, -12.1564 -6.5 -2.02654, -12.4892 -6.5 -2.02763, 
+            -11.5956 -6.5 -1.64723, -11.6048 -6.5 -1.64667, -12.1564 -6.5 -2.02654, -11.9065 -6.5 -1.64939, 
+            -12.8591 -6.5 -2.02342, -12.4892 -6.5 -2.02763, -13.2473 -6.5 -2.39953, -12.4892 -6.5 -2.02763, 
+            -12.8591 -6.5 -2.02342, -11.6048 -6.5 -1.64667, -11.9065 -6.5 -1.64939, -12.4892 -6.5 -2.02763, 
+            -13.2473 -6.5 -2.39953, -12.8619 -6.5 -2.40451, -12.4892 -6.5 -2.02763, -12.2396 -6.5 -1.64748, 
+            -13.257 -6.5 -2.01206, -12.8591 -6.5 -2.02342, -13.6725 -6.5 -2.38787, -12.8591 -6.5 -2.02342, 
+            -13.257 -6.5 -2.01206, -11.9065 -6.5 -1.64939, -12.2396 -6.5 -1.64748, -12.8591 -6.5 -2.02342, 
+            -13.6725 -6.5 -2.38787, -13.2473 -6.5 -2.39953, -12.8591 -6.5 -2.02342, -12.595 -6.5 -1.63859, 
+            -13.6735 -6.5 -1.9913, -13.257 -6.5 -2.01206, -14.1279 -6.5 -2.36737, -13.257 -6.5 -2.01206, 
+            -13.6735 -6.5 -1.9913, -12.2396 -6.5 -1.64748, -12.595 -6.5 -1.63859, -13.257 -6.5 -2.01206, 
+            -14.1279 -6.5 -2.36737, -13.6725 -6.5 -2.38787, -13.257 -6.5 -2.01206, -12.9629 -6.5 -1.62005, 
+            -14.0979 -6.5 -1.95794, -13.6735 -6.5 -1.9913, -14.6028 -6.5 -2.33549, -13.6735 -6.5 -1.9913, 
+            -14.0979 -6.5 -1.95794, -12.595 -6.5 -1.63859, -12.9629 -6.5 -1.62005, -13.6735 -6.5 -1.9913, 
+            -14.6028 -6.5 -2.33549, -14.1279 -6.5 -2.36737, -13.6735 -6.5 -1.9913, -13.3326 -6.5 -1.58851, 
+            -14.5186 -6.5 -1.90842, -14.0979 -6.5 -1.95794, -15.0857 -6.5 -2.28868, -14.0979 -6.5 -1.95794, 
+            -14.5186 -6.5 -1.90842, -12.9629 -6.5 -1.62005, -13.3326 -6.5 -1.58851, -14.0979 -6.5 -1.95794, 
+            -15.0857 -6.5 -2.28868, -14.6028 -6.5 -2.33549, -14.0979 -6.5 -1.95794, -13.6913 -6.5 -1.54017, 
+            -14.9215 -6.5 -1.83873, -14.5186 -6.5 -1.90842, -15.5637 -6.5 -2.22304, -14.5186 -6.5 -1.90842, 
+            -14.9215 -6.5 -1.83873, -13.3326 -6.5 -1.58851, -13.6913 -6.5 -1.54017, -14.5186 -6.5 -1.90842, 
+            -15.5637 -6.5 -2.22304, -15.0857 -6.5 -2.28868, -14.5186 -6.5 -1.90842, -14.0243 -6.5 -1.47107, 
+            -15.2914 -6.5 -1.74519, -14.9215 -6.5 -1.83873, -16.0209 -6.5 -2.13426, -14.9215 -6.5 -1.83873, 
+            -15.2914 -6.5 -1.74519, -13.6913 -6.5 -1.54017, -14.0243 -6.5 -1.47107, -14.9215 -6.5 -1.83873, 
+            -16.0209 -6.5 -2.13426, -15.5637 -6.5 -2.22304, -14.9215 -6.5 -1.83873, -14.3176 -6.5 -1.37872, 
+            -15.6142 -6.5 -1.6259, -15.2914 -6.5 -1.74519, -16.4409 -6.5 -2.01842, -15.2914 -6.5 -1.74519, 
+            -15.6142 -6.5 -1.6259, -14.0243 -6.5 -1.47107, -14.3176 -6.5 -1.37872, -15.2914 -6.5 -1.74519, 
+            -16.4409 -6.5 -2.01842, -16.0209 -6.5 -2.13426, -15.2914 -6.5 -1.74519, -14.5585 -6.5 -1.26166, 
+            -15.8784 -6.5 -1.47971, -15.6142 -6.5 -1.6259, -16.808 -6.5 -1.87364, -15.6142 -6.5 -1.6259, 
+            -15.8784 -6.5 -1.47971, -14.3176 -6.5 -1.37872, -14.5585 -6.5 -1.26166, -15.6142 -6.5 -1.6259, 
+            -16.808 -6.5 -1.87364, -16.4409 -6.5 -2.01842, -15.6142 -6.5 -1.6259, -14.7444 -6.5 -1.1181, 
+            -16.0837 -6.5 -1.30373, -15.8784 -6.5 -1.47971, -17.1095 -6.5 -1.69885, -15.8784 -6.5 -1.47971, 
+            -16.0837 -6.5 -1.30373, -14.5585 -6.5 -1.26166, -14.7444 -6.5 -1.1181, -15.8784 -6.5 -1.47971, 
+            -17.1095 -6.5 -1.69885, -16.808 -6.5 -1.87364, -15.8784 -6.5 -1.47971, -14.8814 -6.5 -0.935423, 
+            -16.2376 -6.5 -1.08293, -16.0837 -6.5 -1.30373, -17.3454 -6.5 -1.491, -16.0837 -6.5 -1.30373, 
+            -16.2376 -6.5 -1.08293, -14.7444 -6.5 -1.1181, -14.8814 -6.5 -0.935423, -16.0837 -6.5 -1.30373, 
+            -17.3454 -6.5 -1.491, -17.1095 -6.5 -1.69885, -16.0837 -6.5 -1.30373, -14.9766 -6.5 -0.693994, 
+            -16.3465 -6.5 -0.797099, -16.2376 -6.5 -1.08293, -17.5237 -6.5 -1.23376, -16.2376 -6.5 -1.08293, 
+            -16.3465 -6.5 -0.797099, -14.8814 -6.5 -0.935423, -14.9766 -6.5 -0.693994, -16.2376 -6.5 -1.08293, 
+            -17.5237 -6.5 -1.23376, -17.3454 -6.5 -1.491, -16.2376 -6.5 -1.08293, -15.0271 -6.5 -0.379696, 
+            -16.4066 -6.5 -0.433162, -16.3465 -6.5 -0.797099, -17.6516 -6.5 -0.905095, -16.3465 -6.5 -0.797099, 
+            -16.4066 -6.5 -0.433162, -14.9766 -6.5 -0.693994, -15.0271 -6.5 -0.379696, -16.3465 -6.5 -0.797099, 
+            -17.6516 -6.5 -0.905095, -17.5237 -6.5 -1.23376, -16.3465 -6.5 -0.797099, -17.7251 -6.5 -0.490634, 
+            -17.6516 -6.5 -0.905095, -16.4066 -6.5 -0.433162, -13.5856 -6.5 -0.534066, -15.0271 -6.5 -0.379696, 
+            -14.9766 -6.5 -0.693994, -13.5856 -6.5 -0.534066, -13.6181 -6.5 -0.291657, -15.0271 -6.5 -0.379696, 
+            -13.5193 -6.5 -0.720898, -14.9766 -6.5 -0.693994, -14.8814 -6.5 -0.935423, -13.5193 -6.5 -0.720898, 
+            -13.5856 -6.5 -0.534066, -14.9766 -6.5 -0.693994, -13.422 -6.5 -0.861749, -14.8814 -6.5 -0.935423, 
+            -14.7444 -6.5 -1.1181, -13.422 -6.5 -0.861749, -13.5193 -6.5 -0.720898, -14.8814 -6.5 -0.935423, 
+            -13.2888 -6.5 -0.971268, -14.7444 -6.5 -1.1181, -14.5585 -6.5 -1.26166, -13.2888 -6.5 -0.971268, 
+            -13.422 -6.5 -0.861749, -14.7444 -6.5 -1.1181, -13.1147 -6.5 -1.06013, -14.5585 -6.5 -1.26166, 
+            -14.3176 -6.5 -1.37872, -13.1147 -6.5 -1.06013, -13.2888 -6.5 -0.971268, -14.5585 -6.5 -1.26166, 
+            -12.9002 -6.5 -1.13032, -14.3176 -6.5 -1.37872, -14.0243 -6.5 -1.47107, -12.9002 -6.5 -1.13032, 
+            -13.1147 -6.5 -1.06013, -14.3176 -6.5 -1.37872, -12.6518 -6.5 -1.18145, -14.0243 -6.5 -1.47107, 
+            -13.6913 -6.5 -1.54017, -12.6518 -6.5 -1.18145, -12.9002 -6.5 -1.13032, -14.0243 -6.5 -1.47107, 
+            -12.5984 -6.5 -1.23129, -13.6913 -6.5 -1.54017, -13.3326 -6.5 -1.58851, -12.5984 -6.5 -1.23129, 
+            -12.6518 -6.5 -1.18145, -13.6913 -6.5 -1.54017, -12.494 -6.5 -1.31699, -13.3326 -6.5 -1.58851, 
+            -12.9629 -6.5 -1.62005, -12.494 -6.5 -1.31699, -12.5984 -6.5 -1.23129, -13.3326 -6.5 -1.58851, 
+            -12.3706 -6.5 -1.40164, -12.9629 -6.5 -1.62005, -12.595 -6.5 -1.63859, -12.3706 -6.5 -1.40164, 
+            -12.494 -6.5 -1.31699, -12.9629 -6.5 -1.62005, -12.0823 -6.5 -1.54383, -12.595 -6.5 -1.63859, 
+            -12.2396 -6.5 -1.64748, -12.2311 -6.5 -1.4792, -12.3706 -6.5 -1.40164, -12.595 -6.5 -1.63859, 
+            -12.0823 -6.5 -1.54383, -12.2311 -6.5 -1.4792, -12.595 -6.5 -1.63859, -11.9321 -6.5 -1.59241, 
+            -12.2396 -6.5 -1.64748, -11.9065 -6.5 -1.64939, -11.9321 -6.5 -1.59241, -12.0823 -6.5 -1.54383, 
+            -12.2396 -6.5 -1.64748, -11.7848 -6.5 -1.62524, -11.9065 -6.5 -1.64939, -11.6048 -6.5 -1.64667, 
+            -11.9321 -6.5 -1.59241, -11.9065 -6.5 -1.64939, -11.7848 -6.5 -1.62524, -12.1313 -5.2 -1.5244, 
+            -11.6048 -6.5 -1.64667, -11.5956 -6.5 -1.64723, -12.1313 -5.2 -1.5244, -11.7848 -6.5 -1.62524, 
+            -11.6048 -6.5 -1.64667, -12.1313 -5.2 -1.5244, -11.5956 -6.5 -1.64723, -11.5 -5.2 -1.64993, 
+            -12.1313 -5.2 -1.5244, -11.9321 -6.5 -1.59241, -11.7848 -6.5 -1.62524, -13.111 -6.5 -0.356585, 
+            -13.6181 -6.5 -0.291657, -13.5856 -6.5 -0.534066, -13.111 -6.5 -0.356585, -13.1401 -6.5 -0.180695, 
+            -13.6181 -6.5 -0.291657, -13.0647 -6.5 -0.52379, -13.5856 -6.5 -0.534066, -13.5193 -6.5 -0.720898, 
+            -13.0647 -6.5 -0.52379, -13.111 -6.5 -0.356585, -13.5856 -6.5 -0.534066, -12.9922 -6.5 -0.704169, 
+            -13.5193 -6.5 -0.720898, -13.422 -6.5 -0.861749, -12.9922 -6.5 -0.704169, -13.0647 -6.5 -0.52379, 
+            -13.5193 -6.5 -0.720898, -12.9421 -6.5 -0.80173, -13.422 -6.5 -0.861749, -13.2888 -6.5 -0.971268, 
+            -12.9421 -6.5 -0.80173, -12.9922 -6.5 -0.704169, -13.422 -6.5 -0.861749, -12.8848 -6.5 -0.897056, 
+            -13.2888 -6.5 -0.971268, -13.1147 -6.5 -1.06013, -12.8848 -6.5 -0.897056, -12.9421 -6.5 -0.80173, 
+            -13.2888 -6.5 -0.971268, -12.7571 -6.5 -1.06878, -13.1147 -6.5 -1.06013, -12.9002 -6.5 -1.13032, 
+            -12.8227 -6.5 -0.986446, -12.8848 -6.5 -0.897056, -13.1147 -6.5 -1.06013, -12.7571 -6.5 -1.06878, 
+            -12.8227 -6.5 -0.986446, -13.1147 -6.5 -1.06013, -12.6849 -6.5 -1.14831, -12.9002 -6.5 -1.13032, 
+            -12.6518 -6.5 -1.18145, -12.7571 -6.5 -1.06878, -12.9002 -6.5 -1.13032, -12.6849 -6.5 -1.14831, 
+            -12.6665 -5.2 -1.16686, -12.6518 -6.5 -1.18145, -12.5984 -6.5 -1.23129, -12.6665 -5.2 -1.16686, 
+            -12.6849 -6.5 -1.14831, -12.6518 -6.5 -1.18145, -12.6665 -5.2 -1.16686, -12.5984 -6.5 -1.23129, 
+            -12.494 -6.5 -1.31699, -12.6665 -5.2 -1.16686, -12.494 -6.5 -1.31699, -12.3706 -6.5 -1.40164, 
+            -12.6665 -5.2 -1.16686, -12.3706 -6.5 -1.40164, -12.2311 -6.5 -1.4792, -12.1313 -5.2 -1.5244, 
+            -12.2311 -6.5 -1.4792, -12.0823 -6.5 -1.54383, -12.6665 -5.2 -1.16686, -12.2311 -6.5 -1.4792, 
+            -12.1313 -5.2 -1.5244, -12.1313 -5.2 -1.5244, -12.0823 -6.5 -1.54383, -11.9321 -6.5 -1.59241, 
+            -13.0243 -5.2 -0.631614, -12.7571 -6.5 -1.06878, -12.6849 -6.5 -1.14831, -13.0243 -5.2 -0.631614, 
+            -12.6849 -6.5 -1.14831, -12.6665 -5.2 -1.16686, -13.15 -5.2 -3.32713e-015, -13.1401 -6.5 -0.180695, 
+            -13.111 -6.5 -0.356585, -13.15 -5.2 -3.32713e-015, -13.111 -6.5 -0.356585, -13.0647 -6.5 -0.52379, 
+            -13.0243 -5.2 -0.631614, -13.0647 -6.5 -0.52379, -12.9922 -6.5 -0.704169, -13.15 -5.2 -3.32713e-015, 
+            -13.0647 -6.5 -0.52379, -13.0243 -5.2 -0.631614, -13.0243 -5.2 -0.631614, -12.9922 -6.5 -0.704169, 
+            -12.9421 -6.5 -0.80173, -13.0243 -5.2 -0.631614, -12.9421 -6.5 -0.80173, -12.8848 -6.5 -0.897056, 
+            -13.0243 -5.2 -0.631614, -12.8848 -6.5 -0.897056, -12.8227 -6.5 -0.986446, -13.0243 -5.2 -0.631614, 
+            -12.8227 -6.5 -0.986446, -12.7571 -6.5 -1.06878, -13.5897 -6.5 -2.78093, -12.8619 -6.5 -2.40451, 
+            -13.2473 -6.5 -2.39953, -14.0206 -6.5 -2.76728, -13.2473 -6.5 -2.39953, -13.6725 -6.5 -2.38787, 
+            -14.0206 -6.5 -2.76728, -13.5897 -6.5 -2.78093, -13.2473 -6.5 -2.39953, -14.4928 -6.5 -2.74544, 
+            -13.6725 -6.5 -2.38787, -14.1279 -6.5 -2.36737, -14.4928 -6.5 -2.74544, -14.0206 -6.5 -2.76728, 
+            -13.6725 -6.5 -2.38787, -14.9958 -6.5 -2.71299, -14.1279 -6.5 -2.36737, -14.6028 -6.5 -2.33549, 
+            -14.9958 -6.5 -2.71299, -14.4928 -6.5 -2.74544, -14.1279 -6.5 -2.36737, -15.5188 -6.5 -2.66714, 
+            -14.6028 -6.5 -2.33549, -15.0857 -6.5 -2.28868, -15.5188 -6.5 -2.66714, -14.9958 -6.5 -2.71299, 
+            -14.6028 -6.5 -2.33549, -16.049 -6.5 -2.6041, -15.0857 -6.5 -2.28868, -15.5637 -6.5 -2.22304, 
+            -16.049 -6.5 -2.6041, -15.5188 -6.5 -2.66714, -15.0857 -6.5 -2.28868, -16.5728 -6.5 -2.51975, 
+            -15.5637 -6.5 -2.22304, -16.0209 -6.5 -2.13426, -16.5728 -6.5 -2.51975, -16.049 -6.5 -2.6041, 
+            -15.5637 -6.5 -2.22304, -17.0734 -6.5 -2.40964, -16.0209 -6.5 -2.13426, -16.4409 -6.5 -2.01842, 
+            -17.0734 -6.5 -2.40964, -16.5728 -6.5 -2.51975, -16.0209 -6.5 -2.13426, -17.5332 -6.5 -2.2698, 
+            -16.4409 -6.5 -2.01842, -16.808 -6.5 -1.87364, -17.5332 -6.5 -2.2698, -17.0734 -6.5 -2.40964, 
+            -16.4409 -6.5 -2.01842, -17.9355 -6.5 -2.09848, -16.808 -6.5 -1.87364, -17.1095 -6.5 -1.69885, 
+            -17.9355 -6.5 -2.09848, -17.5332 -6.5 -2.2698, -16.808 -6.5 -1.87364, -18.2669 -6.5 -1.89479, 
+            -17.1095 -6.5 -1.69885, -17.3454 -6.5 -1.491, -18.2669 -6.5 -1.89479, -17.9355 -6.5 -2.09848, 
+            -17.1095 -6.5 -1.69885, -18.5276 -6.5 -1.65568, -17.3454 -6.5 -1.491, -17.5237 -6.5 -1.23376, 
+            -18.5276 -6.5 -1.65568, -18.2669 -6.5 -1.89479, -17.3454 -6.5 -1.491, -18.7259 -6.5 -1.36408, 
+            -17.5237 -6.5 -1.23376, -17.6516 -6.5 -0.905095, -18.7259 -6.5 -1.36408, -18.5276 -6.5 -1.65568, 
+            -17.5237 -6.5 -1.23376, -18.8696 -6.5 -0.996881, -17.6516 -6.5 -0.905095, -17.7251 -6.5 -0.490634, 
+            -18.8696 -6.5 -0.996881, -18.7259 -6.5 -1.36408, -17.6516 -6.5 -0.905095, -18.9546 -6.5 -0.538848, 
+            -18.8696 -6.5 -0.996881, -17.7251 -6.5 -0.490634, -14.3246 -6.5 -3.15917, -13.5897 -6.5 -2.78093, 
+            -14.0206 -6.5 -2.76728, -14.7931 -6.5 -3.134, -14.0206 -6.5 -2.76728, -14.4928 -6.5 -2.74544, 
+            -14.7931 -6.5 -3.134, -14.3246 -6.5 -3.15917, -14.0206 -6.5 -2.76728, -15.3027 -6.5 -3.09902, 
+            -14.4928 -6.5 -2.74544, -14.9958 -6.5 -2.71299, -15.3027 -6.5 -3.09902, -14.7931 -6.5 -3.134, 
+            -14.4928 -6.5 -2.74544, -15.8428 -6.5 -3.0516, -14.9958 -6.5 -2.71299, -15.5188 -6.5 -2.66714, 
+            -15.8428 -6.5 -3.0516, -15.3027 -6.5 -3.09902, -14.9958 -6.5 -2.71299, -16.4021 -6.5 -2.98871, 
+            -15.5188 -6.5 -2.66714, -16.049 -6.5 -2.6041, -16.4021 -6.5 -2.98871, -15.8428 -6.5 -3.0516, 
+            -15.5188 -6.5 -2.66714, -16.9676 -6.5 -2.90643, -16.049 -6.5 -2.6041, -16.5728 -6.5 -2.51975, 
+            -16.9676 -6.5 -2.90643, -16.4021 -6.5 -2.98871, -16.049 -6.5 -2.6041, -17.5251 -6.5 -2.80056, 
+            -16.5728 -6.5 -2.51975, -17.0734 -6.5 -2.40964, -17.5251 -6.5 -2.80056, -16.9676 -6.5 -2.90643, 
+            -16.5728 -6.5 -2.51975, -18.057 -6.5 -2.66667, -17.0734 -6.5 -2.40964, -17.5332 -6.5 -2.2698, 
+            -18.057 -6.5 -2.66667, -17.5251 -6.5 -2.80056, -17.0734 -6.5 -2.40964, -18.5453 -6.5 -2.5009, 
+            -17.5332 -6.5 -2.2698, -17.9355 -6.5 -2.09848, -18.5453 -6.5 -2.5009, -18.057 -6.5 -2.66667, 
+            -17.5332 -6.5 -2.2698, -18.9728 -6.5 -2.30176, -17.9355 -6.5 -2.09848, -18.2669 -6.5 -1.89479, 
+            -18.9728 -6.5 -2.30176, -18.5453 -6.5 -2.5009, -17.9355 -6.5 -2.09848, -19.3257 -6.5 -2.06866, 
+            -18.2669 -6.5 -1.89479, -18.5276 -6.5 -1.65568, -19.3257 -6.5 -2.06866, -18.9728 -6.5 -2.30176, 
+            -18.2669 -6.5 -1.89479, -19.6043 -6.5 -1.79867, -18.5276 -6.5 -1.65568, -18.7259 -6.5 -1.36408, 
+            -19.6043 -6.5 -1.79867, -19.3257 -6.5 -2.06866, -18.5276 -6.5 -1.65568, -19.8173 -6.5 -1.47458, 
+            -18.7259 -6.5 -1.36408, -18.8696 -6.5 -0.996881, -19.8173 -6.5 -1.47458, -19.6043 -6.5 -1.79867, 
+            -18.7259 -6.5 -1.36408, -19.9727 -6.5 -1.07291, -18.8696 -6.5 -0.996881, -18.9546 -6.5 -0.538848, 
+            -19.9727 -6.5 -1.07291, -19.8173 -6.5 -1.47458, -18.8696 -6.5 -0.996881, -20.0663 -6.5 -0.578026, 
+            -19.9727 -6.5 -1.07291, -18.9546 -6.5 -0.538848, -9.91116 -6.5 -0.44508, -9.85163 -6.5 -0.431643, 
+            -9.90817 -6.5 -0.434258, -9.91116 -6.5 -0.44508, -9.9354 -6.5 -0.523939, -9.85163 -6.5 -0.431643, 
+            -9.97569 -5.2 -0.631614, -9.90817 -6.5 -0.434258, -9.89275 -6.5 -0.373157, -9.97569 -5.2 -0.631614, 
+            -9.91116 -6.5 -0.44508, -9.90817 -6.5 -0.434258, -9.97569 -5.2 -0.631614, -9.89275 -6.5 -0.373157, 
+            -9.87887 -6.5 -0.307329, -9.97569 -5.2 -0.631614, -9.87887 -6.5 -0.307329, -9.86863 -6.5 -0.247279, 
+            -9.97569 -5.2 -0.631614, -9.86863 -6.5 -0.247279, -9.86503 -6.5 -0.222231, -9.97569 -5.2 -0.631614, 
+            -9.86503 -6.5 -0.222231, -9.86199 -6.5 -0.198554, -9.97569 -5.2 -0.631614, -9.86199 -6.5 -0.198554, 
+            -9.85945 -6.5 -0.176294, -9.97569 -5.2 -0.631614, -9.85945 -6.5 -0.176294, -9.8573 -6.5 -0.15504, 
+            -9.97569 -5.2 -0.631614, -9.8573 -6.5 -0.15504, -9.85551 -6.5 -0.134759, -9.97569 -5.2 -0.631614, 
+            -9.85551 -6.5 -0.134759, -9.85398 -6.5 -0.114576, -9.97569 -5.2 -0.631614, -9.85398 -6.5 -0.114576, 
+            -9.8527 -6.5 -0.094352, -9.97569 -5.2 -0.631614, -9.8527 -6.5 -0.094352, -9.85161 -6.5 -0.0727866, 
+            -9.97569 -5.2 -0.631614, -9.85161 -6.5 -0.0727866, -9.85076 -6.5 -0.0499468, -9.97569 -5.2 -0.631614, 
+            -9.85076 -6.5 -0.0499468, -9.8502 -6.5 -0.0256688, -9.97569 -5.2 -0.631614, -9.9354 -6.5 -0.523939, 
+            -9.91116 -6.5 -0.44508, -13.15 -5.2 -3.32713e-015, -12.35 -5.2 -3.68532e-015, -12.2361 -5.2 0.424877, 
+            -13.0243 -5.2 -0.631614, -12.2361 -5.2 -0.424877, -12.35 -5.2 -3.68532e-015, -13.15 -5.2 -3.32713e-015, 
+            -13.0243 -5.2 -0.631614, -12.35 -5.2 -3.68532e-015, -13.0243 -5.2 0.631614, -12.2361 -5.2 0.424877, 
+            -11.9249 -5.2 0.736147, -13.0243 -5.2 0.631614, -13.15 -5.2 -3.32713e-015, -12.2361 -5.2 0.424877, 
+            -13.0243 -5.2 0.631614, -11.9249 -5.2 0.736147, -11.5 -5.2 0.85, -10.3335 -5.2 1.16686, 
+            -11.5 -5.2 0.85, -11.0751 -5.2 0.736147, -10.3335 -5.2 1.16686, -13.0243 -5.2 0.631614, 
+            -11.5 -5.2 0.85, -9.97569 -5.2 0.631614, -11.0751 -5.2 0.736147, -10.7639 -5.2 0.424877, 
+            -9.97569 -5.2 0.631614, -10.3335 -5.2 1.16686, -11.0751 -5.2 0.736147, -9.97569 -5.2 0.631614, 
+            -10.7639 -5.2 0.424877, -10.65 -5.2 -3.47714e-015, -9.85 -5.2 -3.73125e-015, -10.65 -5.2 -3.47714e-015, 
+            -10.7639 -5.2 -0.424877, -9.97569 -5.2 0.631614, -10.65 -5.2 -3.47714e-015, -9.85 -5.2 -3.73125e-015, 
+            -9.97569 -5.2 -0.631614, -10.7639 -5.2 -0.424877, -11.0751 -5.2 -0.736147, -9.97569 -5.2 -0.631614, 
+            -9.85 -5.2 -3.73125e-015, -10.7639 -5.2 -0.424877, -9.97569 -5.2 -0.631614, -11.0751 -5.2 -0.736147, 
+            -11.5 -5.2 -0.85, -12.6665 -5.2 -1.16686, -11.5 -5.2 -0.85, -11.9249 -5.2 -0.736147, 
+            -12.6665 -5.2 -1.16686, -9.97569 -5.2 -0.631614, -11.5 -5.2 -0.85, -13.0243 -5.2 -0.631614, 
+            -11.9249 -5.2 -0.736147, -12.2361 -5.2 -0.424877, -13.0243 -5.2 -0.631614, -12.6665 -5.2 -1.16686, 
+            -11.9249 -5.2 -0.736147, -12.6665 -5.2 -1.16686, -10.3335 -5.2 -1.16686, -9.97569 -5.2 -0.631614, 
+            -12.1313 -5.2 -1.5244, -10.8687 -5.2 -1.5244, -10.3335 -5.2 -1.16686, -12.6665 -5.2 -1.16686, 
+            -12.1313 -5.2 -1.5244, -10.3335 -5.2 -1.16686, -12.1313 -5.2 -1.5244, -11.5 -5.2 -1.64993, 
+            -10.8687 -5.2 -1.5244, -10.3335 -5.2 1.16686, -12.6665 -5.2 1.16686, -13.0243 -5.2 0.631614, 
+            -10.8687 -5.2 1.5244, -12.1313 -5.2 1.5244, -12.6665 -5.2 1.16686, -10.3335 -5.2 1.16686, 
+            -10.8687 -5.2 1.5244, -12.6665 -5.2 1.16686, -10.8687 -5.2 1.5244, -11.5 -5.2 1.64993, 
+            -12.1313 -5.2 1.5244, -12.2 -5.1 2.3, -13 -5.1 3.1, -9.5 -5.1 1.8, 
+            -12.2 -5.1 1.8, -12.2 -5.1 2.3, -9.5 -5.1 1.8, -12.2 -5.1 -1.8, 
+            -9.5 -5.1 -1.8, -9.5 -5.1 -3.8, -12.2 -5.1 -3.8, -12.2 -5.1 -1.8, 
+            -9.5 -5.1 -3.8, -22.2861 -5 1.01889, -13.3 -5 1.27868, -13.3 -5 -4.93825, 
+            -12.9 -4.89281 1.27868, -13.3 -5 -4.93825, -13.3 -5 1.27868, -22.3434 -5 0.546207, 
+            -22.2861 -5 1.01889, -13.3 -5 -4.93825, -22.3636 -5 -3.57838e-015, -22.3434 -5 0.546207, 
+            -13.3 -5 -4.93825, -22.3432 -5 -0.549081, -22.3636 -5 -3.57838e-015, -13.3 -5 -4.93825, 
+            -22.283 -5 -1.03716, -22.3432 -5 -0.549081, -13.3 -5 -4.93825, -22.1861 -5 -1.47311, 
+            -22.283 -5 -1.03716, -13.3 -5 -4.93825, -22.0471 -5 -1.8892, -22.1861 -5 -1.47311, 
+            -13.3 -5 -4.93825, -21.8669 -5 -2.27373, -22.0471 -5 -1.8892, -13.3 -5 -4.93825, 
+            -21.6448 -5 -2.62501, -21.8669 -5 -2.27373, -13.3 -5 -4.93825, -21.3995 -5 -2.92514, 
+            -21.6448 -5 -2.62501, -13.3 -5 -4.93825, -21.0962 -5 -3.21694, -21.3995 -5 -2.92514, 
+            -13.3 -5 -4.93825, -20.7492 -5 -3.48066, -21.0962 -5 -3.21694, -13.3 -5 -4.93825, 
+            -20.3739 -5 -3.7087, -20.7492 -5 -3.48066, -13.3 -5 -4.93825, -19.9463 -5 -3.917, 
+            -20.3739 -5 -3.7087, -13.3 -5 -4.93825, -19.3422 -5 -4.14608, -19.9463 -5 -3.917, 
+            -13.3 -5 -4.93825, -18.2361 -5 -4.43937, -19.3422 -5 -4.14608, -13.3 -5 -4.93825, 
+            -17.4438 -5 -4.58508, -18.2361 -5 -4.43937, -13.3 -5 -4.93825, -16.3105 -5 -4.73406, 
+            -17.4438 -5 -4.58508, -13.3 -5 -4.93825, -15.4834 -5 -4.81235, -16.3105 -5 -4.73406, 
+            -13.3 -5 -4.93825, -14.5045 -5 -4.8809, -15.4834 -5 -4.81235, -13.3 -5 -4.93825, 
+            -14.5485 -4.9391 -5.18497, -14.5045 -5 -4.8809, -13.3 -5 -4.93825, -13.3187 -4.82527 -5.43693, 
+            -13.3116 -4.93912 -5.24415, -13.3 -5 -4.93825, -14.5485 -4.9391 -5.18497, -13.3 -5 -4.93825, 
+            -13.3116 -4.93912 -5.24415, -13.0228 -4.89303 -5.2261, -13.3187 -4.82527 -5.43693, -13.3 -5 -4.93825, 
+            -12.8996 -4.89259 -4.93825, -13.0228 -4.89303 -5.2261, -13.3 -5 -4.93825, -12.9 -4.89281 1.27868, 
+            -12.8996 -4.89259 -4.93825, -13.3 -5 -4.93825, -18.0714 -5 4.47323, -16.7093 -5 4.68799, 
+            -13.3 -5 1.27868, -16.4264 -4.8928 4.97085, -13.3 -5 1.27868, -16.7093 -5 4.68799, 
+            -18.1846 -5 4.4502, -18.0714 -5 4.47323, -13.3 -5 1.27868, -19.3422 -5 4.14608, 
+            -18.1846 -5 4.4502, -13.3 -5 1.27868, -19.9636 -5 3.9094, -19.3422 -5 4.14608, 
+            -13.3 -5 1.27868, -20.3945 -5 3.69742, -19.9636 -5 3.9094, -13.3 -5 1.27868, 
+            -20.7695 -5 3.46679, -20.3945 -5 3.69742, -13.3 -5 1.27868, -21.1157 -5 3.20022, 
+            -20.7695 -5 3.46679, -13.3 -5 1.27868, -21.4159 -5 2.90722, -21.1157 -5 3.20022, 
+            -13.3 -5 1.27868, -21.6601 -5 2.60376, -21.4159 -5 2.90722, -13.3 -5 1.27868, 
+            -21.8802 -5 2.24921, -21.6601 -5 2.60376, -13.3 -5 1.27868, -22.0556 -5 1.86758, 
+            -21.8802 -5 2.24921, -13.3 -5 1.27868, -22.192 -5 1.45152, -22.0556 -5 1.86758, 
+            -13.3 -5 1.27868, -22.2861 -5 1.01889, -22.192 -5 1.45152, -13.3 -5 1.27868, 
+            -13.0172 -4.9391 1.39584, -12.9 -4.89281 1.27868, -13.3 -5 1.27868, -13.0171 -4.89281 1.56154, 
+            -13.0172 -4.9391 1.39584, -13.3 -5 1.27868, -16.4264 -4.8928 4.97085, -13.0171 -4.89281 1.56154, 
+            -13.3 -5 1.27868, -18.1235 -4.89282 4.87068, -16.7093 -5 4.68799, -18.0714 -5 4.47323, 
+            -16.6097 -4.9391 4.97748, -16.4264 -4.8928 4.97085, -16.7093 -5 4.68799, -16.7582 -4.89281 5.08501, 
+            -16.6097 -4.9391 4.97748, -16.7093 -5 4.68799, -18.1235 -4.89282 4.87068, -16.7582 -4.89281 5.08501, 
+            -16.7093 -5 4.68799, -19.4384 -4.9391 4.43675, -18.0714 -5 4.47323, -18.1846 -5 4.4502, 
+            -19.4678 -4.89282 4.52585, -18.1235 -4.89282 4.87068, -18.0714 -5 4.47323, -19.4384 -4.9391 4.43675, 
+            -19.4678 -4.89282 4.52585, -18.0714 -5 4.47323, -19.4384 -4.9391 4.43675, -18.1846 -5 4.4502, 
+            -19.3422 -5 4.14608, -19.4384 -4.9391 4.43675, -19.3422 -5 4.14608, -19.9636 -5 3.9094, 
+            -20.0567 -4.9391 4.20279, -19.9636 -5 3.9094, -20.3945 -5 3.69742, -20.0567 -4.9391 4.20279, 
+            -19.4384 -4.9391 4.43675, -19.9636 -5 3.9094, -20.6477 -4.9391 3.9058, -20.3945 -5 3.69742, 
+            -20.7695 -5 3.46679, -20.6477 -4.9391 3.9058, -20.0567 -4.9391 4.20279, -20.3945 -5 3.69742, 
+            -21.1942 -4.9391 3.53301, -20.7695 -5 3.46679, -21.1157 -5 3.20022, -21.1942 -4.9391 3.53301, 
+            -20.6477 -4.9391 3.9058, -20.7695 -5 3.46679, -21.1942 -4.9391 3.53301, -21.1157 -5 3.20022, 
+            -21.4159 -5 2.90722, -21.6741 -4.9391 3.07775, -21.4159 -5 2.90722, -21.6601 -5 2.60376, 
+            -21.6741 -4.9391 3.07775, -21.1942 -4.9391 3.53301, -21.4159 -5 2.90722, -22.0647 -4.9391 2.54408, 
+            -21.6601 -5 2.60376, -21.8802 -5 2.24921, -22.0647 -4.9391 2.54408, -21.6741 -4.9391 3.07775, 
+            -21.6601 -5 2.60376, -22.0647 -4.9391 2.54408, -21.8802 -5 2.24921, -22.0556 -5 1.86758, 
+            -22.3525 -4.9391 1.94856, -22.0556 -5 1.86758, -22.192 -5 1.45152, -22.3525 -4.9391 1.94856, 
+            -22.0647 -4.9391 2.54408, -22.0556 -5 1.86758, -22.5407 -4.9391 1.31435, -22.192 -5 1.45152, 
+            -22.2861 -5 1.01889, -22.5407 -4.9391 1.31435, -22.3525 -4.9391 1.94856, -22.192 -5 1.45152, 
+            -22.6409 -4.9391 0.660518, -22.2861 -5 1.01889, -22.3434 -5 0.546207, -22.6409 -4.9391 0.660518, 
+            -22.5407 -4.9391 1.31435, -22.2861 -5 1.01889, -22.6409 -4.9391 0.660518, -22.3434 -5 0.546207, 
+            -22.3636 -5 -3.57838e-015, -22.6698 -4.9391 -3.46688e-009, -22.3636 -5 -3.57838e-015, -22.3432 -5 -0.549081, 
+            -22.6698 -4.9391 -3.46688e-009, -22.6409 -4.9391 0.660518, -22.3636 -5 -3.57838e-015, -22.6409 -4.9391 -0.660518, 
+            -22.3432 -5 -0.549081, -22.283 -5 -1.03716, -22.6409 -4.9391 -0.660518, -22.6698 -4.9391 -3.46688e-009, 
+            -22.3432 -5 -0.549081, -22.5407 -4.9391 -1.31435, -22.283 -5 -1.03716, -22.1861 -5 -1.47311, 
+            -22.5407 -4.9391 -1.31435, -22.6409 -4.9391 -0.660518, -22.283 -5 -1.03716, -22.3525 -4.9391 -1.94856, 
+            -22.1861 -5 -1.47311, -22.0471 -5 -1.8892, -22.3525 -4.9391 -1.94856, -22.5407 -4.9391 -1.31435, 
+            -22.1861 -5 -1.47311, -22.3525 -4.9391 -1.94856, -22.0471 -5 -1.8892, -21.8669 -5 -2.27373, 
+            -22.0647 -4.9391 -2.54408, -21.8669 -5 -2.27373, -21.6448 -5 -2.62501, -22.0647 -4.9391 -2.54408, 
+            -22.3525 -4.9391 -1.94856, -21.8669 -5 -2.27373, -21.674 -4.9391 -3.07775, -21.6448 -5 -2.62501, 
+            -21.3995 -5 -2.92514, -21.674 -4.9391 -3.07775, -22.0647 -4.9391 -2.54408, -21.6448 -5 -2.62501, 
+            -21.674 -4.9391 -3.07775, -21.3995 -5 -2.92514, -21.0962 -5 -3.21694, -21.1942 -4.9391 -3.53301, 
+            -21.0962 -5 -3.21694, -20.7492 -5 -3.48066, -21.1942 -4.9391 -3.53301, -21.674 -4.9391 -3.07775, 
+            -21.0962 -5 -3.21694, -20.6477 -4.9391 -3.9058, -20.7492 -5 -3.48066, -20.3739 -5 -3.7087, 
+            -20.6477 -4.9391 -3.9058, -21.1942 -4.9391 -3.53301, -20.7492 -5 -3.48066, -20.6477 -4.9391 -3.9058, 
+            -20.3739 -5 -3.7087, -19.9463 -5 -3.917, -20.0567 -4.9391 -4.20279, -19.9463 -5 -3.917, 
+            -19.3422 -5 -4.14608, -20.0567 -4.9391 -4.20279, -20.6477 -4.9391 -3.9058, -19.9463 -5 -3.917, 
+            -19.4384 -4.9391 -4.43675, -19.3422 -5 -4.14608, -18.2361 -5 -4.43937, -19.4384 -4.9391 -4.43675, 
+            -20.0567 -4.9391 -4.20279, -19.3422 -5 -4.14608, -18.2383 -4.9391 -4.75171, -18.2361 -5 -4.43937, 
+            -17.4438 -5 -4.58508, -18.2383 -4.9391 -4.75171, -19.4384 -4.9391 -4.43675, -18.2361 -5 -4.43937, 
+            -17.0155 -4.9391 -4.95717, -17.4438 -5 -4.58508, -16.3105 -5 -4.73406, -17.0155 -4.9391 -4.95717, 
+            -18.2383 -4.9391 -4.75171, -17.4438 -5 -4.58508, -15.7839 -4.9391 -5.09374, -16.3105 -5 -4.73406, 
+            -15.4834 -5 -4.81235, -15.7839 -4.9391 -5.09374, -17.0155 -4.9391 -4.95717, -16.3105 -5 -4.73406, 
+            -14.5485 -4.9391 -5.18497, -15.4834 -5 -4.81235, -14.5045 -5 -4.8809, -14.5485 -4.9391 -5.18497, 
+            -15.7839 -4.9391 -5.09374, -15.4834 -5 -4.81235, -18.3262 -4.50557 -5.1759, -18.4019 -4.2 -5.222, 
+            -19.5933 -4.2 -4.90567, -19.5744 -4.50557 -4.84804, -19.5933 -4.2 -4.90567, -20.2657 -4.2 -4.65044, 
+            -18.3262 -4.50557 -5.1759, -19.5933 -4.2 -4.90567, -19.5744 -4.50557 -4.84804, -13.3276 -4.50555 -5.67709, 
+            -13.3301 -4.2 -5.73769, -14.2714 -4.2 -5.69521, -13.3276 -4.50555 -5.67709, -12.9175 -4.2 -5.64088, 
+            -13.3301 -4.2 -5.73769, -9.67452 -6.5 -3.67457e-015, -9.85 -6.5 -3.74978e-015, -9.67452 -6.5 -3.60603e-015, 
+            -14.5742 -4.50557 -5.61741, -14.2714 -4.2 -5.69521, -15.0711 -4.2 -5.64606, -14.5742 -4.50557 -5.61741, 
+            -13.3276 -4.50555 -5.67709, -14.2714 -4.2 -5.69521, -14.5742 -4.50557 -5.61741, -15.0711 -4.2 -5.64606, 
+            -15.7723 -4.2 -5.5906, -15.8228 -4.50557 -5.52519, -15.7723 -4.2 -5.5906, -16.3965 -4.2 -5.52943, 
+            -14.5742 -4.50557 -5.61741, -15.7723 -4.2 -5.5906, -15.8228 -4.50557 -5.52519, -17.0734 -4.50557 -5.38648, 
+            -16.3965 -4.2 -5.52943, -17.5693 -4.2 -5.37518, -15.8228 -4.50557 -5.52519, -16.3965 -4.2 -5.52943, 
+            -17.0734 -4.50557 -5.38648, -18.3262 -4.50557 -5.1759, -17.5693 -4.2 -5.37518, -18.4019 -4.2 -5.222, 
+            -17.0734 -4.50557 -5.38648, -17.5693 -4.2 -5.37518, -18.3262 -4.50557 -5.1759, -23.0722 -4.50557 -0.700567, 
+            -23.1407 -4.2 -0.611805, -23.1636 -4.2 -3.56697e-015, -23.103 -4.50557 -4.23329e-009, -23.1636 -4.2 -3.56697e-015, 
+            -23.147 -4.2 0.525843, -23.0722 -4.50557 -0.700567, -23.1636 -4.2 -3.56697e-015, -23.103 -4.50557 -4.23329e-009, 
+            -20.2289 -4.50557 -4.6003, -20.2657 -4.2 -4.65044, -20.7566 -4.2 -4.41124, -19.5744 -4.50557 -4.84804, 
+            -20.2657 -4.2 -4.65044, -20.2289 -4.50557 -4.6003, -20.8658 -4.50557 -4.2801, -20.7566 -4.2 -4.41124, 
+            -21.198 -4.2 -4.14288, -20.2289 -4.50557 -4.6003, -20.7566 -4.2 -4.41124, -20.8658 -4.50557 -4.2801, 
+            -21.4647 -4.50557 -3.87143, -21.198 -4.2 -4.14288, -21.6156 -4.2 -3.82544, -20.8658 -4.50557 -4.2801, 
+            -21.198 -4.2 -4.14288, -21.4647 -4.50557 -3.87143, -21.4647 -4.50557 -3.87143, -21.6156 -4.2 -3.82544, 
+            -21.9884 -4.2 -3.4666, -21.9987 -4.50557 -3.36452, -21.9884 -4.2 -3.4666, -22.2929 -4.2 -3.09411, 
+            -21.4647 -4.50557 -3.87143, -21.9884 -4.2 -3.4666, -21.9987 -4.50557 -3.36452, -22.4362 -4.50557 -2.76685, 
+            -22.2929 -4.2 -3.09411, -22.5685 -4.2 -2.65806, -21.9987 -4.50557 -3.36452, -22.2929 -4.2 -3.09411, 
+            -22.4362 -4.50557 -2.76685, -22.4362 -4.50557 -2.76685, -22.5685 -4.2 -2.65806, -22.7907 -4.2 -2.1842, 
+            -22.7573 -4.50557 -2.1026, -22.7907 -4.2 -2.1842, -22.9572 -4.2 -1.68604, -22.4362 -4.50557 -2.76685, 
+            -22.7907 -4.2 -2.1842, -22.7573 -4.50557 -2.1026, -22.9637 -4.50557 -1.40745, -22.9572 -4.2 -1.68604, 
+            -23.0715 -4.2 -1.17272, -22.7573 -4.50557 -2.1026, -22.9572 -4.2 -1.68604, -22.9637 -4.50557 -1.40745, 
+            -23.0722 -4.50557 -0.700567, -23.0715 -4.2 -1.17272, -23.1407 -4.2 -0.611805, -22.9637 -4.50557 -1.40745, 
+            -23.0715 -4.2 -1.17272, -23.0722 -4.50557 -0.700567, -20.2289 -4.50557 4.6003, -20.2023 -4.2 4.67767, 
+            -19.5933 -4.2 4.90566, -18.1803 -4.6 5.15795, -19.5933 -4.2 4.90566, -18.3474 -4.2 5.23345, 
+            -19.5744 -4.50557 4.84804, -19.5933 -4.2 4.90566, -18.1803 -4.6 5.15795, -20.2289 -4.50557 4.6003, 
+            -19.5933 -4.2 4.90566, -19.5744 -4.50557 4.84804, -23.0722 -4.50557 0.700567, -23.147 -4.2 0.525843, 
+            -23.0981 -4.2 1.00226, -23.103 -4.50557 -4.23329e-009, -23.147 -4.2 0.525843, -23.0722 -4.50557 0.700567, 
+            -22.9637 -4.50557 1.40745, -23.0981 -4.2 1.00226, -23.018 -4.2 1.44285, -23.0722 -4.50557 0.700567, 
+            -23.0981 -4.2 1.00226, -22.9637 -4.50557 1.40745, -22.9637 -4.50557 1.40745, -23.018 -4.2 1.44285, 
+            -22.9007 -4.2 1.87614, -22.7573 -4.50557 2.10261, -22.9007 -4.2 1.87614, -22.7448 -4.2 2.29556, 
+            -22.9637 -4.50557 1.40745, -22.9007 -4.2 1.87614, -22.7573 -4.50557 2.10261, -22.7573 -4.50557 2.10261, 
+            -22.7448 -4.2 2.29556, -22.5496 -4.2 2.69213, -22.4362 -4.50557 2.76684, -22.5496 -4.2 2.69213, 
+            -22.3118 -4.2 3.06768, -22.7573 -4.50557 2.10261, -22.5496 -4.2 2.69213, -22.4362 -4.50557 2.76684, 
+            -22.4362 -4.50557 2.76684, -22.3118 -4.2 3.06768, -22.0539 -4.2 3.3936, -21.9987 -4.50557 3.36452, 
+            -22.0539 -4.2 3.3936, -21.7536 -4.2 3.70254, -22.4362 -4.50557 2.76684, -22.0539 -4.2 3.3936, 
+            -21.9987 -4.50557 3.36452, -21.4647 -4.50557 3.87142, -21.7536 -4.2 3.70254, -21.4041 -4.2 3.99531, 
+            -21.9987 -4.50557 3.36452, -21.7536 -4.2 3.70254, -21.4647 -4.50557 3.87142, -21.4647 -4.50557 3.87142, 
+            -21.4041 -4.2 3.99531, -21.0353 -4.2 4.24869, -20.8658 -4.50557 4.2801, -21.0353 -4.2 4.24869, 
+            -20.6495 -4.2 4.4681, -21.4647 -4.50557 3.87142, -21.0353 -4.2 4.24869, -20.8658 -4.50557 4.2801, 
+            -20.2289 -4.50557 4.6003, -20.6495 -4.2 4.4681, -20.2023 -4.2 4.67767, -20.8658 -4.50557 4.2801, 
+            -20.6495 -4.2 4.4681, -20.2289 -4.50557 4.6003, -16.8039 -4.40699 5.45493, -18.2277 -4.2 5.2578, 
+            -16.8072 -4.2 5.48197, -16.4689 -4.50615 5.38689, -16.8072 -4.2 5.48197, -16.4491 -4.2 5.44447, 
+            -16.8039 -4.40699 5.45493, -16.8072 -4.2 5.48197, -16.4689 -4.50615 5.38689, -18.1803 -4.6 5.15795, 
+            -18.3474 -4.2 5.23345, -18.2277 -4.2 5.2578, -16.7941 -4.59995 5.37562, -18.2277 -4.2 5.2578, 
+            -16.8039 -4.40699 5.45493, -18.1803 -4.6 5.15795, -18.2277 -4.2 5.2578, -16.7941 -4.59995 5.37562, 
+            -12.7536 -4.40698 1.8251, -16.1436 -4.2 5.25367, -12.7343 -4.2 1.84437, -12.6172 -4.50615 1.56152, 
+            -12.7343 -4.2 1.84437, -12.5609 -4.2 1.58483, -12.7536 -4.40698 1.8251, -12.7343 -4.2 1.84437, 
+            -12.6172 -4.50615 1.56152, -16.1629 -4.40694 5.23442, -16.4491 -4.2 5.44447, -16.1436 -4.2 5.25367, 
+            -16.1629 -4.40694 5.23442, -16.1436 -4.2 5.25367, -12.7536 -4.40698 1.8251, -12.5615 -4.50756 -4.93825, 
+            -12.5 -4.2 1.27868, -12.5 -4.2 -4.93825, -12.5615 -4.50756 -4.93825, -12.5 -4.2 -4.93825, 
+            -12.6122 -4.2 -5.3469, -12.5272 -4.40698 1.27868, -12.5609 -4.2 1.58483, -12.5 -4.2 1.27868, 
+            -12.5272 -4.40698 1.27868, -12.5 -4.2 1.27868, -12.5615 -4.50756 -4.93825, -12.6983 -4.58897 -5.29408, 
+            -12.6122 -4.2 -5.3469, -12.9175 -4.2 -5.64088, -12.6983 -4.58897 -5.29408, -12.5615 -4.50756 -4.93825, 
+            -12.6122 -4.2 -5.3469, -12.9669 -4.58899 -5.55285, -12.6983 -4.58897 -5.29408, -12.9175 -4.2 -5.64088, 
+            -13.3276 -4.50555 -5.67709, -12.9669 -4.58899 -5.55285, -12.9175 -4.2 -5.64088, -12.6172 -4.50615 1.56152, 
+            -12.5609 -4.2 1.58483, -12.5272 -4.40698 1.27868, -16.4689 -4.50615 5.38689, -16.4491 -4.2 5.44447, 
+            -16.1629 -4.40694 5.23442, -12.6068 -4.59927 -4.93825, -12.5615 -4.50756 -4.93825, -12.6983 -4.58897 -5.29408, 
+            -12.5272 -4.40698 1.27868, -12.5615 -4.50756 -4.93825, -12.6068 -4.59927 -4.93825, -13.0228 -4.89303 -5.2261, 
+            -12.6983 -4.58897 -5.29408, -12.9669 -4.58899 -5.55285, -12.801 -4.82526 -4.93825, -12.6983 -4.58897 -5.29408, 
+            -13.0228 -4.89303 -5.2261, -12.6068 -4.59927 -4.93825, -12.6983 -4.58897 -5.29408, -12.801 -4.82526 -4.93825, 
+            -13.3187 -4.82527 -5.43693, -12.9669 -4.58899 -5.55285, -13.3276 -4.50555 -5.67709, -13.0228 -4.89303 -5.2261, 
+            -12.9669 -4.58899 -5.55285, -13.3187 -4.82527 -5.43693, -9.67452 -6.5 -3.67457e-015, -9.5 -6.5 -3.59977e-015, 
+            -9.85022 -6.5 0.0270103, -13.3213 -4.76542 -5.5038, -13.3187 -4.82527 -5.43693, -13.3276 -4.50555 -5.67709, 
+            -13.3261 -4.59986 -5.63066, -13.3213 -4.76542 -5.5038, -13.3276 -4.50555 -5.67709, -14.5742 -4.50557 -5.61741, 
+            -13.3261 -4.59986 -5.63066, -13.3276 -4.50555 -5.67709, -13.3187 -4.82527 -5.43693, -13.315 -4.8928 -5.33801, 
+            -13.3116 -4.93912 -5.24415, -14.5639 -4.76546 -5.44428, -13.3116 -4.93912 -5.24415, -13.315 -4.8928 -5.33801, 
+            -14.5639 -4.76546 -5.44428, -14.5485 -4.9391 -5.18497, -13.3116 -4.93912 -5.24415, -14.5639 -4.76546 -5.44428, 
+            -13.315 -4.8928 -5.33801, -13.3187 -4.82527 -5.43693, -14.5639 -4.76546 -5.44428, -13.3187 -4.82527 -5.43693, 
+            -13.3213 -4.76542 -5.5038, -12.8996 -4.89259 -4.93825, -12.801 -4.82526 -4.93825, -13.0228 -4.89303 -5.2261, 
+            -12.6072 -4.59995 1.27868, -12.801 -4.82526 -4.93825, -12.8996 -4.89259 -4.93825, -12.6072 -4.59995 1.27868, 
+            -12.6068 -4.59927 -4.93825, -12.801 -4.82526 -4.93825, -12.9 -4.89281 1.27868, -12.6072 -4.59995 1.27868, 
+            -12.8996 -4.89259 -4.93825, -12.6072 -4.59995 1.27868, -12.5272 -4.40698 1.27868, -12.6068 -4.59927 -4.93825, 
+            -14.5742 -4.50557 -5.61741, -13.3213 -4.76542 -5.5038, -13.3261 -4.59986 -5.63066, -14.5742 -4.50557 -5.61741, 
+            -14.5639 -4.76546 -5.44428, -13.3213 -4.76542 -5.5038, -12.6172 -4.50615 1.56152, -12.5272 -4.40698 1.27868, 
+            -12.6072 -4.59995 1.27868, -12.7774 -4.76569 1.49516, -12.6072 -4.59995 1.27868, -12.9 -4.89281 1.27868, 
+            -12.7774 -4.76569 1.49516, -12.6172 -4.50615 1.56152, -12.6072 -4.59995 1.27868, -13.0172 -4.9391 1.39584, 
+            -12.7774 -4.76569 1.49516, -12.9 -4.89281 1.27868, -12.8101 -4.59995 1.7686, -12.6172 -4.50615 1.56152, 
+            -12.7774 -4.76569 1.49516, -12.8101 -4.59995 1.7686, -12.7536 -4.40698 1.8251, -12.6172 -4.50615 1.56152, 
+            -13.0171 -4.89281 1.56154, -12.7774 -4.76569 1.49516, -13.0172 -4.9391 1.39584, -13.0171 -4.89281 1.56154, 
+            -12.8101 -4.59995 1.7686, -12.7774 -4.76569 1.49516, -16.2194 -4.59992 5.17792, -12.7536 -4.40698 1.8251, 
+            -12.8101 -4.59995 1.7686, -16.2194 -4.59992 5.17792, -16.1629 -4.40694 5.23442, -12.7536 -4.40698 1.8251, 
+            -16.4264 -4.8928 4.97085, -12.8101 -4.59995 1.7686, -13.0171 -4.89281 1.56154, -16.4264 -4.8928 4.97085, 
+            -16.2194 -4.59992 5.17792, -12.8101 -4.59995 1.7686, -16.4689 -4.50615 5.38689, -16.1629 -4.40694 5.23442, 
+            -16.2194 -4.59992 5.17792, -16.5253 -4.76569 5.2229, -16.2194 -4.59992 5.17792, -16.4264 -4.8928 4.97085, 
+            -16.5253 -4.76569 5.2229, -16.4689 -4.50615 5.38689, -16.2194 -4.59992 5.17792, -16.6097 -4.9391 4.97748, 
+            -16.5253 -4.76569 5.2229, -16.4264 -4.8928 4.97085, -16.7941 -4.59995 5.37562, -16.4689 -4.50615 5.38689, 
+            -16.5253 -4.76569 5.2229, -16.7941 -4.59995 5.37562, -16.8039 -4.40699 5.45493, -16.4689 -4.50615 5.38689, 
+            -16.7582 -4.89281 5.08501, -16.5253 -4.76569 5.2229, -16.6097 -4.9391 4.97748, -16.7582 -4.89281 5.08501, 
+            -16.7941 -4.59995 5.37562, -16.5253 -4.76569 5.2229, -18.1803 -4.6 5.15795, -16.7941 -4.59995 5.37562, 
+            -16.7582 -4.89281 5.08501, -18.1235 -4.89282 4.87068, -18.1803 -4.6 5.15795, -16.7582 -4.89281 5.08501, 
+            -19.5598 -4.6 4.80387, -18.1803 -4.6 5.15795, -18.1235 -4.89282 4.87068, -19.5598 -4.6 4.80387, 
+            -19.5744 -4.50557 4.84804, -18.1803 -4.6 5.15795, -19.5199 -4.76546 4.68337, -19.5598 -4.6 4.80387, 
+            -18.1235 -4.89282 4.87068, -19.4678 -4.89282 4.52585, -19.5199 -4.76546 4.68337, -18.1235 -4.89282 4.87068, 
+            -20.1599 -4.76546 4.44115, -19.5744 -4.50557 4.84804, -19.5598 -4.6 4.80387, -20.2289 -4.50557 4.6003, 
+            -19.5744 -4.50557 4.84804, -20.1599 -4.76546 4.44115, -20.1599 -4.76546 4.44115, -19.5598 -4.6 4.80387, 
+            -19.5199 -4.76546 4.68337, -20.0567 -4.9391 4.20279, -19.5199 -4.76546 4.68337, -19.4678 -4.89282 4.52585, 
+            -20.1599 -4.76546 4.44115, -19.5199 -4.76546 4.68337, -20.0567 -4.9391 4.20279, -20.0567 -4.9391 4.20279, 
+            -19.4678 -4.89282 4.52585, -19.4384 -4.9391 4.43675, -20.1599 -4.76546 4.44115, -20.0567 -4.9391 4.20279, 
+            -20.6477 -4.9391 3.9058, -20.7785 -4.76546 4.13025, -20.6477 -4.9391 3.9058, -21.1942 -4.9391 3.53301, 
+            -20.7785 -4.76546 4.13025, -20.1599 -4.76546 4.44115, -20.6477 -4.9391 3.9058, -21.3564 -4.76546 3.73594, 
+            -21.1942 -4.9391 3.53301, -21.6741 -4.9391 3.07775, -21.3564 -4.76546 3.73594, -20.7785 -4.76546 4.13025, 
+            -21.1942 -4.9391 3.53301, -21.8687 -4.76546 3.24971, -21.6741 -4.9391 3.07775, -22.0647 -4.9391 2.54408, 
+            -21.8687 -4.76546 3.24971, -21.3564 -4.76546 3.73594, -21.6741 -4.9391 3.07775, -22.2875 -4.76546 2.67766, 
+            -22.0647 -4.9391 2.54408, -22.3525 -4.9391 1.94856, -22.2875 -4.76546 2.67766, -21.8687 -4.76546 3.24971, 
+            -22.0647 -4.9391 2.54408, -22.5952 -4.76546 2.04093, -22.3525 -4.9391 1.94856, -22.5407 -4.9391 1.31435, 
+            -22.5952 -4.76546 2.04093, -22.2875 -4.76546 2.67766, -22.3525 -4.9391 1.94856, -22.7944 -4.76546 1.37017, 
+            -22.5407 -4.9391 1.31435, -22.6409 -4.9391 0.660518, -22.7944 -4.76546 1.37017, -22.5952 -4.76546 2.04093, 
+            -22.5407 -4.9391 1.31435, -22.8996 -4.76546 0.684533, -22.6409 -4.9391 0.660518, -22.6698 -4.9391 -3.46688e-009, 
+            -22.8996 -4.76546 0.684533, -22.7944 -4.76546 1.37017, -22.6409 -4.9391 0.660518, -22.7636 -4.89282 -4.29772e-009, 
+            -22.8996 -4.76546 0.684533, -22.6698 -4.9391 -3.46688e-009, -22.6409 -4.9391 -0.660518, -22.7636 -4.89282 -4.29772e-009, 
+            -22.6698 -4.9391 -3.46688e-009, -20.2289 -4.50557 4.6003, -20.1599 -4.76546 4.44115, -20.7785 -4.76546 4.13025, 
+            -20.8658 -4.50557 4.2801, -20.7785 -4.76546 4.13025, -21.3564 -4.76546 3.73594, -20.8658 -4.50557 4.2801, 
+            -20.2289 -4.50557 4.6003, -20.7785 -4.76546 4.13025, -21.4647 -4.50557 3.87142, -21.3564 -4.76546 3.73594, 
+            -21.8687 -4.76546 3.24971, -21.4647 -4.50557 3.87142, -20.8658 -4.50557 4.2801, -21.3564 -4.76546 3.73594, 
+            -21.9987 -4.50557 3.36452, -21.8687 -4.76546 3.24971, -22.2875 -4.76546 2.67766, -21.9987 -4.50557 3.36452, 
+            -21.4647 -4.50557 3.87142, -21.8687 -4.76546 3.24971, -22.4362 -4.50557 2.76684, -22.2875 -4.76546 2.67766, 
+            -22.5952 -4.76546 2.04093, -22.4362 -4.50557 2.76684, -21.9987 -4.50557 3.36452, -22.2875 -4.76546 2.67766, 
+            -22.7573 -4.50557 2.10261, -22.5952 -4.76546 2.04093, -22.7944 -4.76546 1.37017, -22.7573 -4.50557 2.10261, 
+            -22.4362 -4.50557 2.76684, -22.5952 -4.76546 2.04093, -22.9637 -4.50557 1.40745, -22.7944 -4.76546 1.37017, 
+            -22.8996 -4.76546 0.684533, -22.9637 -4.50557 1.40745, -22.7573 -4.50557 2.10261, -22.7944 -4.76546 1.37017, 
+            -22.7636 -4.89282 -4.29772e-009, -22.9296 -4.76546 -5.21363e-009, -22.8996 -4.76546 0.684533, -23.0722 -4.50557 0.700567, 
+            -22.8996 -4.76546 0.684533, -22.9296 -4.76546 -5.21363e-009, -23.0722 -4.50557 0.700567, -22.9637 -4.50557 1.40745, 
+            -22.8996 -4.76546 0.684533, -22.6409 -4.9391 -0.660518, -22.9296 -4.76546 -5.21363e-009, -22.7636 -4.89282 -4.29772e-009, 
+            -23.0565 -4.6 -4.9096e-009, -23.0722 -4.50557 0.700567, -22.9296 -4.76546 -5.21363e-009, -22.8996 -4.76546 -0.684533, 
+            -23.0565 -4.6 -4.9096e-009, -22.9296 -4.76546 -5.21363e-009, -22.8996 -4.76546 -0.684533, -22.9296 -4.76546 -5.21363e-009, 
+            -22.6409 -4.9391 -0.660518, -23.0565 -4.6 -4.9096e-009, -23.103 -4.50557 -4.23329e-009, -23.0722 -4.50557 0.700567, 
+            -22.8996 -4.76546 -0.684533, -23.103 -4.50557 -4.23329e-009, -23.0565 -4.6 -4.9096e-009, -23.0722 -4.50557 -0.700567, 
+            -23.103 -4.50557 -4.23329e-009, -22.8996 -4.76546 -0.684533, -22.8996 -4.76546 -0.684533, -22.6409 -4.9391 -0.660518, 
+            -22.5407 -4.9391 -1.31435, -22.7944 -4.76546 -1.37018, -22.5407 -4.9391 -1.31435, -22.3525 -4.9391 -1.94856, 
+            -22.7944 -4.76546 -1.37018, -22.8996 -4.76546 -0.684533, -22.5407 -4.9391 -1.31435, -22.5952 -4.76546 -2.04093, 
+            -22.3525 -4.9391 -1.94856, -22.0647 -4.9391 -2.54408, -22.5952 -4.76546 -2.04093, -22.7944 -4.76546 -1.37018, 
+            -22.3525 -4.9391 -1.94856, -22.2875 -4.76546 -2.67766, -22.0647 -4.9391 -2.54408, -21.674 -4.9391 -3.07775, 
+            -22.2875 -4.76546 -2.67766, -22.5952 -4.76546 -2.04093, -22.0647 -4.9391 -2.54408, -21.8687 -4.76546 -3.24971, 
+            -21.674 -4.9391 -3.07775, -21.1942 -4.9391 -3.53301, -21.8687 -4.76546 -3.24971, -22.2875 -4.76546 -2.67766, 
+            -21.674 -4.9391 -3.07775, -21.3564 -4.76546 -3.73594, -21.1942 -4.9391 -3.53301, -20.6477 -4.9391 -3.9058, 
+            -21.3564 -4.76546 -3.73594, -21.8687 -4.76546 -3.24971, -21.1942 -4.9391 -3.53301, -20.7785 -4.76546 -4.13025, 
+            -20.6477 -4.9391 -3.9058, -20.0567 -4.9391 -4.20279, -20.7785 -4.76546 -4.13025, -21.3564 -4.76546 -3.73594, 
+            -20.6477 -4.9391 -3.9058, -20.1599 -4.76546 -4.44115, -20.0567 -4.9391 -4.20279, -19.4384 -4.9391 -4.43675, 
+            -20.1599 -4.76546 -4.44115, -20.7785 -4.76546 -4.13025, -20.0567 -4.9391 -4.20279, -19.4678 -4.89282 -4.52585, 
+            -20.1599 -4.76546 -4.44115, -19.4384 -4.9391 -4.43675, -18.2383 -4.9391 -4.75171, -19.4678 -4.89282 -4.52585, 
+            -19.4384 -4.9391 -4.43675, -23.0722 -4.50557 -0.700567, -22.8996 -4.76546 -0.684533, -22.7944 -4.76546 -1.37018, 
+            -22.9637 -4.50557 -1.40745, -22.7944 -4.76546 -1.37018, -22.5952 -4.76546 -2.04093, -22.9637 -4.50557 -1.40745, 
+            -23.0722 -4.50557 -0.700567, -22.7944 -4.76546 -1.37018, -22.7573 -4.50557 -2.1026, -22.5952 -4.76546 -2.04093, 
+            -22.2875 -4.76546 -2.67766, -22.7573 -4.50557 -2.1026, -22.9637 -4.50557 -1.40745, -22.5952 -4.76546 -2.04093, 
+            -22.4362 -4.50557 -2.76685, -22.2875 -4.76546 -2.67766, -21.8687 -4.76546 -3.24971, -22.4362 -4.50557 -2.76685, 
+            -22.7573 -4.50557 -2.1026, -22.2875 -4.76546 -2.67766, -21.9987 -4.50557 -3.36452, -21.8687 -4.76546 -3.24971, 
+            -21.3564 -4.76546 -3.73594, -21.9987 -4.50557 -3.36452, -22.4362 -4.50557 -2.76685, -21.8687 -4.76546 -3.24971, 
+            -21.4647 -4.50557 -3.87143, -21.3564 -4.76546 -3.73594, -20.7785 -4.76546 -4.13025, -21.4647 -4.50557 -3.87143, 
+            -21.9987 -4.50557 -3.36452, -21.3564 -4.76546 -3.73594, -20.8658 -4.50557 -4.2801, -20.7785 -4.76546 -4.13025, 
+            -20.1599 -4.76546 -4.44115, -20.8658 -4.50557 -4.2801, -21.4647 -4.50557 -3.87143, -20.7785 -4.76546 -4.13025, 
+            -19.4678 -4.89282 -4.52585, -19.5199 -4.76546 -4.68337, -20.1599 -4.76546 -4.44115, -20.2289 -4.50557 -4.6003, 
+            -20.1599 -4.76546 -4.44115, -19.5199 -4.76546 -4.68337, -20.2289 -4.50557 -4.6003, -20.8658 -4.50557 -4.2801, 
+            -20.1599 -4.76546 -4.44115, -18.2383 -4.9391 -4.75171, -19.5199 -4.76546 -4.68337, -19.4678 -4.89282 -4.52585, 
+            -19.5598 -4.6 -4.80387, -20.2289 -4.50557 -4.6003, -19.5199 -4.76546 -4.68337, -18.291 -4.76546 -5.00607, 
+            -19.5598 -4.6 -4.80387, -19.5199 -4.76546 -4.68337, -18.291 -4.76546 -5.00607, -19.5199 -4.76546 -4.68337, 
+            -18.2383 -4.9391 -4.75171, -19.5598 -4.6 -4.80387, -19.5744 -4.50557 -4.84804, -20.2289 -4.50557 -4.6003, 
+            -18.291 -4.76546 -5.00607, -19.5744 -4.50557 -4.84804, -19.5598 -4.6 -4.80387, -18.3262 -4.50557 -5.1759, 
+            -19.5744 -4.50557 -4.84804, -18.291 -4.76546 -5.00607, -18.291 -4.76546 -5.00607, -18.2383 -4.9391 -4.75171, 
+            -17.0155 -4.9391 -4.95717, -17.0503 -4.76546 -5.2146, -17.0155 -4.9391 -4.95717, -15.7839 -4.9391 -5.09374, 
+            -17.0503 -4.76546 -5.2146, -18.291 -4.76546 -5.00607, -17.0155 -4.9391 -4.95717, -15.8072 -4.76546 -5.35245, 
+            -15.7839 -4.9391 -5.09374, -14.5485 -4.9391 -5.18497, -15.8072 -4.76546 -5.35245, -17.0503 -4.76546 -5.2146, 
+            -15.7839 -4.9391 -5.09374, -14.5639 -4.76546 -5.44428, -15.8072 -4.76546 -5.35245, -14.5485 -4.9391 -5.18497, 
+            -18.3262 -4.50557 -5.1759, -18.291 -4.76546 -5.00607, -17.0503 -4.76546 -5.2146, -17.0734 -4.50557 -5.38648, 
+            -17.0503 -4.76546 -5.2146, -15.8072 -4.76546 -5.35245, -17.0734 -4.50557 -5.38648, -18.3262 -4.50557 -5.1759, 
+            -17.0503 -4.76546 -5.2146, -15.8228 -4.50557 -5.52519, -15.8072 -4.76546 -5.35245, -14.5639 -4.76546 -5.44428, 
+            -15.8228 -4.50557 -5.52519, -17.0734 -4.50557 -5.38648, -15.8072 -4.76546 -5.35245, -14.5742 -4.50557 -5.61741, 
+            -15.8228 -4.50557 -5.52519, -14.5639 -4.76546 -5.44428, -10.4983 3.58404e-015 -6.49657, -9.5 1.35143 -6.35796, 
+            -9.5 3.5924e-015 -6.5, -9 2.80058e-015 -6.5, -9.5 3.5924e-015 -6.5, -9.5 1.35143 -6.35796, 
+            -10.5291 -3.2 -6.49648, -10.4983 3.58404e-015 -6.49657, -9.5 3.5924e-015 -6.5, -9.5 -3.2 -6.5, 
+            -9.5 3.5924e-015 -6.5, -9 -3.2 -6.5, -9 2.80058e-015 -6.5, -9 -3.2 -6.5, 
+            -9.5 3.5924e-015 -6.5, -10.5291 -3.2 -6.49648, -9.5 3.5924e-015 -6.5, -9.5 -3.2 -6.5, 
+            -10.4983 3.58404e-015 -6.49657, -10.5653 1.35061 -6.35412, -9.5 1.35143 -6.35796, -9.5 2.64503 -5.93749, 
+            -9.5 1.35143 -6.35796, -10.5653 1.35061 -6.35412, -9 1.35124 -6.35793, -9.5 1.35143 -6.35796, 
+            -9.5 2.64503 -5.93749, -9 1.35124 -6.35793, -9 2.80058e-015 -6.5, -9.5 1.35143 -6.35796, 
+            -11.453 3.576e-015 -6.48601, -11.6254 1.34794 -6.34156, -10.5653 1.35061 -6.35412, -10.5653 2.64344 -5.93391, 
+            -10.5653 1.35061 -6.35412, -11.6254 1.34794 -6.34156, -10.4983 3.58404e-015 -6.49657, -11.453 3.576e-015 -6.48601, 
+            -10.5653 1.35061 -6.35412, -10.5653 2.64344 -5.93391, -9.5 2.64503 -5.93749, -10.5653 1.35061 -6.35412, 
+            -12.3634 3.56828e-015 -6.46789, -12.6794 1.343 -6.3183, -11.6254 1.34794 -6.34156, -11.6254 2.63821 -5.92217, 
+            -11.6254 1.34794 -6.34156, -12.6794 1.343 -6.3183, -11.453 3.576e-015 -6.48601, -12.3634 3.56828e-015 -6.46789, 
+            -11.6254 1.34794 -6.34156, -11.6254 2.63821 -5.92217, -10.5653 2.64344 -5.93391, -11.6254 1.34794 -6.34156, 
+            -13.2305 3.56088e-015 -6.44173, -13.7264 1.33524 -6.2818, -12.6794 1.343 -6.3183, -12.6794 2.62853 -5.90046, 
+            -12.6794 1.343 -6.3183, -13.7264 1.33524 -6.2818, -12.3634 3.56828e-015 -6.46789, -13.2305 3.56088e-015 -6.44173, 
+            -12.6794 1.343 -6.3183, -12.6794 2.62853 -5.90046, -11.6254 2.63821 -5.92217, -12.6794 1.343 -6.3183, 
+            -14.0566 3.55376e-015 -6.40695, -14.7657 1.32393 -6.22859, -13.7264 1.33524 -6.2818, -13.7264 2.61335 -5.86637, 
+            -13.7264 1.33524 -6.2818, -14.7657 1.32393 -6.22859, -13.2305 3.56088e-015 -6.44173, -14.0566 3.55376e-015 -6.40695, 
+            -13.7264 1.33524 -6.2818, -13.7264 2.61335 -5.86637, -12.6794 2.62853 -5.90046, -13.7264 1.33524 -6.2818, 
+            -14.8415 3.54694e-015 -6.36296, -15.7964 1.30805 -6.15391, -14.7657 1.32393 -6.22859, -14.7657 2.59121 -5.81668, 
+            -14.7657 1.32393 -6.22859, -15.7964 1.30805 -6.15391, -14.0566 3.55376e-015 -6.40695, -14.8415 3.54694e-015 -6.36296, 
+            -14.7657 1.32393 -6.22859, -14.7657 2.59121 -5.81668, -13.7264 2.61335 -5.86637, -14.7657 1.32393 -6.22859, 
+            -15.9445 3.53721e-015 -6.27818, -16.818 1.28618 -6.05098, -15.7964 1.30805 -6.15391, -15.7964 2.56014 -5.74694, 
+            -15.7964 1.30805 -6.15391, -16.818 1.28618 -6.05098, -14.8415 3.54694e-015 -6.36296, -15.9445 3.53721e-015 -6.27818, 
+            -15.7964 1.30805 -6.15391, -15.7964 2.56014 -5.74694, -14.7657 2.59121 -5.81668, -15.7964 1.30805 -6.15391, 
+            -16.9621 3.52803e-015 -6.16838, -17.8306 1.25617 -5.9098, -16.818 1.28618 -6.05098, -16.818 2.51732 -5.65082, 
+            -16.818 1.28618 -6.05098, -17.8306 1.25617 -5.9098, -15.9445 3.53721e-015 -6.27818, -16.9621 3.52803e-015 -6.16838, 
+            -16.818 1.28618 -6.05098, -16.818 2.51732 -5.65082, -15.7964 2.56014 -5.74694, -16.818 1.28618 -6.05098, 
+            -18.7563 3.51117e-015 -5.86088, -18.8359 1.21473 -5.71483, -17.8306 1.25617 -5.9098, -17.8306 2.45859 -5.51897, 
+            -17.8306 1.25617 -5.9098, -18.8359 1.21473 -5.71483, -17.9015 3.51934e-015 -6.02985, -18.7563 3.51117e-015 -5.86088, 
+            -17.8306 1.25617 -5.9098, -16.9621 3.52803e-015 -6.16838, -17.9015 3.51934e-015 -6.02985, -17.8306 1.25617 -5.9098, 
+            -17.8306 2.45859 -5.51897, -16.818 2.51732 -5.65082, -17.8306 1.25617 -5.9098, -19.5301 3.50347e-015 -5.65908, 
+            -19.8368 1.15647 -5.44078, -18.8359 1.21473 -5.71483, -18.8359 2.37748 -5.3369, -18.8359 1.21473 -5.71483, 
+            -19.8368 1.15647 -5.44078, -18.7563 3.51117e-015 -5.86088, -19.5301 3.50347e-015 -5.65908, -18.8359 1.21473 -5.71483, 
+            -18.8359 2.37748 -5.3369, -17.8306 2.45859 -5.51897, -18.8359 1.21473 -5.71483, -20.2253 3.49622e-015 -5.42317, 
+            -20.8349 1.07252 -5.0458, -19.8368 1.15647 -5.44078, -19.8368 2.26347 -5.08097, -19.8368 1.15647 -5.44078, 
+            -20.8349 1.07252 -5.0458, -19.5301 3.50347e-015 -5.65908, -20.2253 3.49622e-015 -5.42317, -19.8368 1.15647 -5.44078, 
+            -19.8368 2.26347 -5.08097, -18.8359 2.37748 -5.3369, -19.8368 1.15647 -5.44078, -21.4336 3.48248e-015 -4.82499, 
+            -21.8152 0.948494 -4.46231, -20.8349 1.07252 -5.0458, -20.8349 2.09915 -4.71211, -20.8349 1.07252 -5.0458, 
+            -21.8152 0.948494 -4.46231, -20.8689 3.48913e-015 -5.14173, -21.4336 3.48248e-015 -4.82499, -20.8349 1.07252 -5.0458, 
+            -20.2253 3.49622e-015 -5.42317, -20.8689 3.48913e-015 -5.14173, -20.8349 1.07252 -5.0458, -20.8349 2.09915 -4.71211, 
+            -19.8368 2.26347 -5.08097, -20.8349 1.07252 -5.0458, -22.3069 3.47102e-015 -4.1424, -22.7062 0.770414 -3.62451, 
+            -21.8152 0.948494 -4.46231, -21.8152 1.85641 -4.16721, -21.8152 0.948494 -4.46231, -22.7062 0.770414 -3.62451, 
+            -21.4336 3.48248e-015 -4.82499, -22.3069 3.47102e-015 -4.1424, -21.8152 0.948494 -4.46231, -21.8152 1.85641 -4.16721, 
+            -20.8349 2.09915 -4.71211, -21.8152 0.948494 -4.46231, -22.9992 3.4601e-015 -3.30137, -23.3806 0.538291 -2.53246, 
+            -22.7062 0.770414 -3.62451, -22.7062 1.50787 -3.38482, -22.7062 0.770414 -3.62451, -23.3806 0.538291 -2.53246, 
+            -22.3069 3.47102e-015 -4.1424, -22.9992 3.4601e-015 -3.30137, -22.7062 0.770414 -3.62451, -22.7062 1.50787 -3.38482, 
+            -21.8152 1.85641 -4.16721, -22.7062 0.770414 -3.62451, -23.4775 3.45029e-015 -2.34908, -23.7558 0.274997 -1.29376, 
+            -23.3806 0.538291 -2.53246, -23.3806 1.05355 -2.36498, -23.3806 0.538291 -2.53246, -23.7558 0.274997 -1.29376, 
+            -22.9992 3.4601e-015 -3.30137, -23.4775 3.45029e-015 -2.34908, -23.3806 0.538291 -2.53246, -23.3806 1.05355 -2.36498, 
+            -22.7062 1.50787 -3.38482, -23.3806 0.538291 -2.53246, -23.7641 3.44133e-015 -1.27485, -23.8636 3.43272e-015 -1.06581e-014, 
+            -23.7558 0.274997 -1.29376, -23.7558 0.538228 -1.2082, -23.7558 0.274997 -1.29376, -23.8636 3.43272e-015 -1.06581e-014, 
+            -23.4775 3.45029e-015 -2.34908, -23.7641 3.44133e-015 -1.27485, -23.7558 0.274997 -1.29376, -23.7558 0.538228 -1.2082, 
+            -23.3806 1.05355 -2.36498, -23.7558 0.274997 -1.29376, -23.8636 -3.2 -1.07038e-014, -23.8636 3.43272e-015 -1.06581e-014, 
+            -23.7641 3.44133e-015 -1.27485, -23.7558 0.77789 -1.06973, -23.7558 0.538228 -1.2082, -23.8636 3.43272e-015 -1.06581e-014, 
+            -23.7558 0.983486 -0.884416, -23.7558 0.77789 -1.06973, -23.8636 3.43272e-015 -1.06581e-014, -23.7558 1.14601 -0.660371, 
+            -23.7558 0.983486 -0.884416, -23.8636 3.43272e-015 -1.06581e-014, -23.7558 1.25835 -0.407408, -23.7558 1.14601 -0.660371, 
+            -23.8636 3.43272e-015 -1.06581e-014, -23.7558 1.31559 -0.136603, -23.7558 1.25835 -0.407408, -23.8636 3.43272e-015 -1.06581e-014, 
+            -23.7558 1.31521 0.140184, -23.7558 1.31559 -0.136603, -23.8636 3.43272e-015 -1.06581e-014, -23.7558 1.25724 0.410832, 
+            -23.7558 1.31521 0.140184, -23.8636 3.43272e-015 -1.06581e-014, -23.7558 1.14421 0.663489, -23.7558 1.25724 0.410832, 
+            -23.8636 3.43272e-015 -1.06581e-014, -23.7558 0.981074 0.887091, -23.7558 1.14421 0.663489, -23.8636 3.43272e-015 -1.06581e-014, 
+            -23.7558 0.774974 1.07184, -23.7558 0.981074 0.887091, -23.8636 3.43272e-015 -1.06581e-014, -23.7558 0.534937 1.20966, 
+            -23.7558 0.774974 1.07184, -23.8636 3.43272e-015 -1.06581e-014, -23.7558 0.271473 1.2945, -23.7558 0.534937 1.20966, 
+            -23.8636 3.43272e-015 -1.06581e-014, -23.7582 3.58593e-015 1.30916, -23.7558 0.271473 1.2945, -23.8636 3.43272e-015 -1.06581e-014, 
+            -23.7419 -3.2 1.39888, -23.7582 3.58593e-015 1.30916, -23.8636 3.43272e-015 -1.06581e-014, -23.7419 -3.2 1.39888, 
+            -23.8636 3.43272e-015 -1.06581e-014, -23.8636 -3.2 -1.07038e-014, -23.7419 -3.2 -1.39888, -23.7641 3.44133e-015 -1.27485, 
+            -23.4775 3.45029e-015 -2.34908, -23.8636 -3.2 -1.07038e-014, -23.7641 3.44133e-015 -1.27485, -23.7419 -3.2 -1.39888, 
+            -23.4026 -3.2 -2.53736, -23.4775 3.45029e-015 -2.34908, -22.9992 3.4601e-015 -3.30137, -23.7419 -3.2 -1.39888, 
+            -23.4775 3.45029e-015 -2.34908, -23.4026 -3.2 -2.53736, -22.8769 -3.2 -3.48145, -22.9992 3.4601e-015 -3.30137, 
+            -22.3069 3.47102e-015 -4.1424, -23.4026 -3.2 -2.53736, -22.9992 3.4601e-015 -3.30137, -22.8769 -3.2 -3.48145, 
+            -22.1637 -3.2 -4.2761, -22.3069 3.47102e-015 -4.1424, -21.4336 3.48248e-015 -4.82499, -22.8769 -3.2 -3.48145, 
+            -22.3069 3.47102e-015 -4.1424, -22.1637 -3.2 -4.2761, -21.229 -3.2 -4.94834, -21.4336 3.48248e-015 -4.82499, 
+            -20.8689 3.48913e-015 -5.14173, -22.1637 -3.2 -4.2761, -21.4336 3.48248e-015 -4.82499, -21.229 -3.2 -4.94834, 
+            -20.6701 -3.2 -5.23657, -20.8689 3.48913e-015 -5.14173, -20.2253 3.49622e-015 -5.42317, -21.229 -3.2 -4.94834, 
+            -20.8689 3.48913e-015 -5.14173, -20.6701 -3.2 -5.23657, -20.0527 -3.2 -5.4875, -20.2253 3.49622e-015 -5.42317, 
+            -19.5301 3.50347e-015 -5.65908, -20.6701 -3.2 -5.23657, -20.2253 3.49622e-015 -5.42317, -20.0527 -3.2 -5.4875, 
+            -19.3749 -3.2 -5.70402, -19.5301 3.50347e-015 -5.65908, -18.7563 3.51117e-015 -5.86088, -20.0527 -3.2 -5.4875, 
+            -19.5301 3.50347e-015 -5.65908, -19.3749 -3.2 -5.70402, -18.6326 -3.2 -5.88849, -18.7563 3.51117e-015 -5.86088, 
+            -17.9015 3.51934e-015 -6.02985, -19.3749 -3.2 -5.70402, -18.7563 3.51117e-015 -5.86088, -18.6326 -3.2 -5.88849, 
+            -17.82 -3.2 -6.04356, -17.9015 3.51934e-015 -6.02985, -16.9621 3.52803e-015 -6.16838, -18.6326 -3.2 -5.88849, 
+            -17.9015 3.51934e-015 -6.02985, -17.82 -3.2 -6.04356, -16.9285 -3.2 -6.17259, -16.9621 3.52803e-015 -6.16838, 
+            -15.9445 3.53721e-015 -6.27818, -17.82 -3.2 -6.04356, -16.9621 3.52803e-015 -6.16838, -16.9285 -3.2 -6.17259, 
+            -14.8781 -3.2 -6.36064, -15.9445 3.53721e-015 -6.27818, -14.8415 3.54694e-015 -6.36296, -15.9501 -3.2 -6.27771, 
+            -15.9445 3.53721e-015 -6.27818, -14.8781 -3.2 -6.36064, -16.9285 -3.2 -6.17259, -15.9445 3.53721e-015 -6.27818, 
+            -15.9501 -3.2 -6.27771, -14.1079 -3.2 -6.40443, -14.8415 3.54694e-015 -6.36296, -14.0566 3.55376e-015 -6.40695, 
+            -14.8781 -3.2 -6.36064, -14.8415 3.54694e-015 -6.36296, -14.1079 -3.2 -6.40443, -13.2898 -3.2 -6.4396, 
+            -14.0566 3.55376e-015 -6.40695, -13.2305 3.56088e-015 -6.44173, -14.1079 -3.2 -6.40443, -14.0566 3.55376e-015 -6.40695, 
+            -13.2898 -3.2 -6.4396, -12.4231 -3.2 -6.4664, -13.2305 3.56088e-015 -6.44173, -12.3634 3.56828e-015 -6.46789, 
+            -13.2898 -3.2 -6.4396, -13.2305 3.56088e-015 -6.44173, -12.4231 -3.2 -6.4664, -11.5039 -3.2 -6.48523, 
+            -12.3634 3.56828e-015 -6.46789, -11.453 3.576e-015 -6.48601, -12.4231 -3.2 -6.4664, -12.3634 3.56828e-015 -6.46789, 
+            -11.5039 -3.2 -6.48523, -10.5291 -3.2 -6.49648, -11.453 3.576e-015 -6.48601, -10.4983 3.58404e-015 -6.49657, 
+            -11.5039 -3.2 -6.48523, -11.453 3.576e-015 -6.48601, -10.5291 -3.2 -6.49648, -9.5 3.82281 -5.25701, 
+            -9.5 2.64503 -5.93749, -10.5653 2.64344 -5.93391, -9 3.8203 -5.25879, -9.5 2.64503 -5.93749, 
+            -9.5 3.82281 -5.25701, -9 2.64409 -5.93788, -9.5 2.64503 -5.93749, -9 3.8203 -5.25879, 
+            -9 1.35124 -6.35793, -9.5 2.64503 -5.93749, -9 2.64409 -5.93788, -10.5653 3.8205 -5.25384, 
+            -10.5653 2.64344 -5.93391, -11.6254 2.63821 -5.92217, -10.5653 3.8205 -5.25384, -9.5 3.82281 -5.25701, 
+            -10.5653 2.64344 -5.93391, -11.6254 3.81294 -5.24345, -11.6254 2.63821 -5.92217, -12.6794 2.62853 -5.90046, 
+            -11.6254 3.81294 -5.24345, -10.5653 3.8205 -5.25384, -11.6254 2.63821 -5.92217, -12.6794 3.79896 -5.22422, 
+            -12.6794 2.62853 -5.90046, -13.7264 2.61335 -5.86637, -12.6794 3.79896 -5.22422, -11.6254 3.81294 -5.24345, 
+            -12.6794 2.62853 -5.90046, -13.7264 3.77701 -5.19404, -13.7264 2.61335 -5.86637, -14.7657 2.59121 -5.81668, 
+            -13.7264 3.77701 -5.19404, -12.6794 3.79896 -5.22422, -13.7264 2.61335 -5.86637, -14.7657 3.74502 -5.15004, 
+            -14.7657 2.59121 -5.81668, -15.7964 2.56014 -5.74694, -14.7657 3.74502 -5.15004, -13.7264 3.77701 -5.19404, 
+            -14.7657 2.59121 -5.81668, -15.7964 3.70012 -5.08829, -15.7964 2.56014 -5.74694, -16.818 2.51732 -5.65082, 
+            -15.7964 3.70012 -5.08829, -14.7657 3.74502 -5.15004, -15.7964 2.56014 -5.74694, -16.818 3.63823 -5.00319, 
+            -16.818 2.51732 -5.65082, -17.8306 2.45859 -5.51897, -16.818 3.63823 -5.00319, -15.7964 3.70012 -5.08829, 
+            -16.818 2.51732 -5.65082, -17.8306 3.55334 -4.88645, -17.8306 2.45859 -5.51897, -18.8359 2.37748 -5.3369, 
+            -17.8306 3.55334 -4.88645, -16.818 3.63823 -5.00319, -17.8306 2.45859 -5.51897, -18.8359 3.43612 -4.72525, 
+            -18.8359 2.37748 -5.3369, -19.8368 2.26347 -5.08097, -18.8359 3.43612 -4.72525, -17.8306 3.55334 -4.88645, 
+            -18.8359 2.37748 -5.3369, -19.8368 3.27134 -4.49865, -19.8368 2.26347 -5.08097, -20.8349 2.09915 -4.71211, 
+            -19.8368 3.27134 -4.49865, -18.8359 3.43612 -4.72525, -19.8368 2.26347 -5.08097, -20.8349 3.03386 -4.17207, 
+            -20.8349 2.09915 -4.71211, -21.8152 1.85641 -4.16721, -20.8349 3.03386 -4.17207, -19.8368 3.27134 -4.49865, 
+            -20.8349 2.09915 -4.71211, -21.8152 2.68302 -3.68962, -21.8152 1.85641 -4.16721, -22.7062 1.50787 -3.38482, 
+            -21.8152 2.68302 -3.68962, -20.8349 3.03386 -4.17207, -21.8152 1.85641 -4.16721, -22.7062 2.17929 -2.99689, 
+            -22.7062 1.50787 -3.38482, -23.3806 1.05355 -2.36498, -22.7062 2.17929 -2.99689, -21.8152 2.68302 -3.68962, 
+            -22.7062 1.50787 -3.38482, -23.3806 1.52268 -2.09394, -23.3806 1.05355 -2.36498, -23.7558 0.538228 -1.2082, 
+            -23.3806 1.52268 -2.09394, -22.7062 2.17929 -2.99689, -23.3806 1.05355 -2.36498, -23.7558 0.77789 -1.06973, 
+            -23.3806 1.52268 -2.09394, -23.7558 0.538228 -1.2082, -9.5 4.83317 -4.34631, -9.5 3.82281 -5.25701, 
+            -10.5653 3.8205 -5.25384, -9 4.83051 -4.34917, -9.5 3.82281 -5.25701, -9.5 4.83317 -4.34631, 
+            -9 3.8203 -5.25879, -9.5 3.82281 -5.25701, -9 4.83051 -4.34917, -10.5653 4.83026 -4.34369, 
+            -10.5653 3.8205 -5.25384, -11.6254 3.81294 -5.24345, -10.5653 4.83026 -4.34369, -9.5 4.83317 -4.34631, 
+            -10.5653 3.8205 -5.25384, -11.6254 4.8207 -4.3351, -11.6254 3.81294 -5.24345, -12.6794 3.79896 -5.22422, 
+            -11.6254 4.8207 -4.3351, -10.5653 4.83026 -4.34369, -11.6254 3.81294 -5.24345, -12.6794 4.80303 -4.3192, 
+            -12.6794 3.79896 -5.22422, -13.7264 3.77701 -5.19404, -12.6794 4.80303 -4.3192, -11.6254 4.8207 -4.3351, 
+            -12.6794 3.79896 -5.22422, -13.7264 4.77528 -4.29425, -13.7264 3.77701 -5.19404, -14.7657 3.74502 -5.15004, 
+            -13.7264 4.77528 -4.29425, -12.6794 4.80303 -4.3192, -13.7264 3.77701 -5.19404, -14.7657 4.73483 -4.25787, 
+            -14.7657 3.74502 -5.15004, -15.7964 3.70012 -5.08829, -14.7657 4.73483 -4.25787, -13.7264 4.77528 -4.29425, 
+            -14.7657 3.74502 -5.15004, -15.7964 4.67806 -4.20682, -15.7964 3.70012 -5.08829, -16.818 3.63823 -5.00319, 
+            -15.7964 4.67806 -4.20682, -14.7657 4.73483 -4.25787, -15.7964 3.70012 -5.08829, -16.818 4.59982 -4.13646, 
+            -16.818 3.63823 -5.00319, -17.8306 3.55334 -4.88645, -16.818 4.59982 -4.13646, -15.7964 4.67806 -4.20682, 
+            -16.818 3.63823 -5.00319, -17.8306 4.49249 -4.03995, -17.8306 3.55334 -4.88645, -18.8359 3.43612 -4.72525, 
+            -17.8306 4.49249 -4.03995, -16.818 4.59982 -4.13646, -17.8306 3.55334 -4.88645, -18.8359 4.34428 -3.90667, 
+            -18.8359 3.43612 -4.72525, -19.8368 3.27134 -4.49865, -18.8359 4.34428 -3.90667, -17.8306 4.49249 -4.03995, 
+            -18.8359 3.43612 -4.72525, -19.8368 4.13596 -3.71933, -19.8368 3.27134 -4.49865, -20.8349 3.03386 -4.17207, 
+            -19.8368 4.13596 -3.71933, -18.8359 4.34428 -3.90667, -19.8368 3.27134 -4.49865, -20.8349 3.8357 -3.44932, 
+            -20.8349 3.03386 -4.17207, -21.8152 2.68302 -3.68962, -20.8349 3.8357 -3.44932, -19.8368 4.13596 -3.71933, 
+            -20.8349 3.03386 -4.17207, -21.8152 3.39215 -3.05045, -21.8152 2.68302 -3.68962, -22.7062 2.17929 -2.99689, 
+            -21.8152 3.39215 -3.05045, -20.8349 3.8357 -3.44932, -21.8152 2.68302 -3.68962, -22.7062 2.75527 -2.47772, 
+            -22.7062 2.17929 -2.99689, -23.3806 1.52268 -2.09394, -22.7062 2.75527 -2.47772, -21.8152 3.39215 -3.05045, 
+            -22.7062 2.17929 -2.99689, -23.3806 1.92512 -1.7312, -23.3806 1.52268 -2.09394, -23.7558 0.77789 -1.06973, 
+            -23.3806 1.92512 -1.7312, -22.7062 2.75527 -2.47772, -23.3806 1.52268 -2.09394, -23.7558 0.983486 -0.884416, 
+            -23.3806 1.92512 -1.7312, -23.7558 0.77789 -1.06973, -9.5 5.63189 -3.24528, -9.5 4.83317 -4.34631, 
+            -10.5653 4.83026 -4.34369, -9 5.62917 -3.25, -9.5 4.83317 -4.34631, -9.5 5.63189 -3.24528, 
+            -9 4.83051 -4.34917, -9.5 4.83317 -4.34631, -9 5.62917 -3.25, -10.5653 5.62849 -3.24333, 
+            -10.5653 4.83026 -4.34369, -11.6254 4.8207 -4.3351, -10.5653 5.62849 -3.24333, -9.5 5.63189 -3.24528, 
+            -10.5653 4.83026 -4.34369, -11.6254 5.61736 -3.23691, -11.6254 4.8207 -4.3351, -12.6794 4.80303 -4.3192, 
+            -11.6254 5.61736 -3.23691, -10.5653 5.62849 -3.24333, -11.6254 4.8207 -4.3351, -12.6794 5.59676 -3.22504, 
+            -12.6794 4.80303 -4.3192, -13.7264 4.77528 -4.29425, -12.6794 5.59676 -3.22504, -11.6254 5.61736 -3.23691, 
+            -12.6794 4.80303 -4.3192, -13.7264 5.56442 -3.20641, -13.7264 4.77528 -4.29425, -14.7657 4.73483 -4.25787, 
+            -13.7264 5.56442 -3.20641, -12.6794 5.59676 -3.22504, -13.7264 4.77528 -4.29425, -14.7657 5.51729 -3.17925, 
+            -14.7657 4.73483 -4.25787, -15.7964 4.67806 -4.20682, -14.7657 5.51729 -3.17925, -13.7264 5.56442 -3.20641, 
+            -14.7657 4.73483 -4.25787, -15.7964 5.45114 -3.14113, -15.7964 4.67806 -4.20682, -16.818 4.59982 -4.13646, 
+            -15.7964 5.45114 -3.14113, -14.7657 5.51729 -3.17925, -15.7964 4.67806 -4.20682, -16.818 5.35997 -3.08859, 
+            -16.818 4.59982 -4.13646, -17.8306 4.49249 -4.03995, -16.818 5.35997 -3.08859, -15.7964 5.45114 -3.14113, 
+            -16.818 4.59982 -4.13646, -17.8306 5.2349 -3.01653, -17.8306 4.49249 -4.03995, -18.8359 4.34428 -3.90667, 
+            -17.8306 5.2349 -3.01653, -16.818 5.35997 -3.08859, -17.8306 4.49249 -4.03995, -18.8359 5.0622 -2.91701, 
+            -18.8359 4.34428 -3.90667, -19.8368 4.13596 -3.71933, -18.8359 5.0622 -2.91701, -17.8306 5.2349 -3.01653, 
+            -18.8359 4.34428 -3.90667, -19.8368 4.81945 -2.77713, -19.8368 4.13596 -3.71933, -20.8349 3.8357 -3.44932, 
+            -19.8368 4.81945 -2.77713, -18.8359 5.0622 -2.91701, -19.8368 4.13596 -3.71933, -20.8349 4.46958 -2.57552, 
+            -20.8349 3.8357 -3.44932, -21.8152 3.39215 -3.05045, -20.8349 4.46958 -2.57552, -19.8368 4.81945 -2.77713, 
+            -20.8349 3.8357 -3.44932, -21.8152 3.95272 -2.27769, -21.8152 3.39215 -3.05045, -22.7062 2.75527 -2.47772, 
+            -21.8152 3.95272 -2.27769, -20.8349 4.46958 -2.57552, -21.8152 3.39215 -3.05045, -22.7062 3.2106 -1.85005, 
+            -22.7062 2.75527 -2.47772, -23.3806 1.92512 -1.7312, -22.7062 3.2106 -1.85005, -21.8152 3.95272 -2.27769, 
+            -22.7062 2.75527 -2.47772, -23.3806 2.24326 -1.29264, -23.3806 1.92512 -1.7312, -23.7558 0.983486 -0.884416, 
+            -23.3806 2.24326 -1.29264, -22.7062 3.2106 -1.85005, -23.3806 1.92512 -1.7312, -23.7558 1.14601 -0.660371, 
+            -23.3806 2.24326 -1.29264, -23.7558 0.983486 -0.884416, -9.5 6.18397 -2.00214, -9.5 5.63189 -3.24528, 
+            -10.5653 5.62849 -3.24333, -9 6.18175 -2.00875, -9.5 5.63189 -3.24528, -9.5 6.18397 -2.00214, 
+            -9 5.62917 -3.25, -9.5 5.63189 -3.24528, -9 6.18175 -2.00875, -10.5653 6.18024 -2.00093, 
+            -10.5653 5.62849 -3.24333, -11.6254 5.61736 -3.23691, -10.5653 6.18024 -2.00093, -9.5 6.18397 -2.00214, 
+            -10.5653 5.62849 -3.24333, -11.6254 6.16801 -1.99697, -11.6254 5.61736 -3.23691, -12.6794 5.59676 -3.22504, 
+            -11.6254 6.16801 -1.99697, -10.5653 6.18024 -2.00093, -11.6254 5.61736 -3.23691, -12.6794 6.1454 -1.98965, 
+            -12.6794 5.59676 -3.22504, -13.7264 5.56442 -3.20641, -12.6794 6.1454 -1.98965, -11.6254 6.16801 -1.99697, 
+            -12.6794 5.59676 -3.22504, -13.7264 6.10989 -1.97815, -13.7264 5.56442 -3.20641, -14.7657 5.51729 -3.17925, 
+            -13.7264 6.10989 -1.97815, -12.6794 6.1454 -1.98965, -13.7264 5.56442 -3.20641, -14.7657 6.05814 -1.9614, 
+            -14.7657 5.51729 -3.17925, -15.7964 5.45114 -3.14113, -14.7657 6.05814 -1.9614, -13.7264 6.10989 -1.97815, 
+            -14.7657 5.51729 -3.17925, -15.7964 5.9855 -1.93788, -15.7964 5.45114 -3.14113, -16.818 5.35997 -3.08859, 
+            -15.7964 5.9855 -1.93788, -14.7657 6.05814 -1.9614, -15.7964 5.45114 -3.14113, -16.818 5.88539 -1.90547, 
+            -16.818 5.35997 -3.08859, -17.8306 5.2349 -3.01653, -16.818 5.88539 -1.90547, -15.7964 5.9855 -1.93788, 
+            -16.818 5.35997 -3.08859, -17.8306 5.74807 -1.86101, -17.8306 5.2349 -3.01653, -18.8359 5.0622 -2.91701, 
+            -17.8306 5.74807 -1.86101, -16.818 5.88539 -1.90547, -17.8306 5.2349 -3.01653, -18.8359 5.55844 -1.79961, 
+            -18.8359 5.0622 -2.91701, -19.8368 4.81945 -2.77713, -18.8359 5.55844 -1.79961, -17.8306 5.74807 -1.86101, 
+            -18.8359 5.0622 -2.91701, -19.8368 5.29189 -1.71331, -19.8368 4.81945 -2.77713, -20.8349 4.46958 -2.57552, 
+            -19.8368 5.29189 -1.71331, -18.8359 5.55844 -1.79961, -19.8368 4.81945 -2.77713, -20.8349 4.90772 -1.58893, 
+            -20.8349 4.46958 -2.57552, -21.8152 3.95272 -2.27769, -20.8349 4.90772 -1.58893, -19.8368 5.29189 -1.71331, 
+            -20.8349 4.46958 -2.57552, -21.8152 4.3402 -1.40519, -21.8152 3.95272 -2.27769, -22.7062 3.2106 -1.85005, 
+            -21.8152 4.3402 -1.40519, -20.8349 4.90772 -1.58893, -21.8152 3.95272 -2.27769, -22.7062 3.52533 -1.14137, 
+            -22.7062 3.2106 -1.85005, -23.3806 2.24326 -1.29264, -22.7062 3.52533 -1.14137, -21.8152 4.3402 -1.40519, 
+            -22.7062 3.2106 -1.85005, -23.3806 2.46316 -0.797478, -23.3806 2.24326 -1.29264, -23.7558 1.14601 -0.660371, 
+            -23.3806 2.46316 -0.797478, -22.7062 3.52533 -1.14137, -23.3806 2.24326 -1.29264, -23.7558 1.25835 -0.407408, 
+            -23.3806 2.46316 -0.797478, -23.7558 1.14601 -0.660371, -9.5 6.46524 -0.671311, -9.5 6.18397 -2.00214, 
+            -10.5653 6.18024 -2.00093, -9 6.4644 -0.679085, -9.5 6.18397 -2.00214, -9.5 6.46524 -0.671311, 
+            -9 6.18175 -2.00875, -9.5 6.18397 -2.00214, -9 6.4644 -0.679085, -10.5653 6.46134 -0.670906, 
+            -10.5653 6.18024 -2.00093, -11.6254 6.16801 -1.99697, -10.5653 6.46134 -0.670906, -9.5 6.46524 -0.671311, 
+            -10.5653 6.18024 -2.00093, -11.6254 6.44856 -0.669579, -11.6254 6.16801 -1.99697, -12.6794 6.1454 -1.98965, 
+            -11.6254 6.44856 -0.669579, -10.5653 6.46134 -0.670906, -11.6254 6.16801 -1.99697, -12.6794 6.42492 -0.667124, 
+            -12.6794 6.1454 -1.98965, -13.7264 6.10989 -1.97815, -12.6794 6.42492 -0.667124, -11.6254 6.44856 -0.669579, 
+            -12.6794 6.1454 -1.98965, -13.7264 6.38779 -0.66327, -13.7264 6.10989 -1.97815, -14.7657 6.05814 -1.9614, 
+            -13.7264 6.38779 -0.66327, -12.6794 6.42492 -0.667124, -13.7264 6.10989 -1.97815, -14.7657 6.33369 -0.657651, 
+            -14.7657 6.05814 -1.9614, -15.7964 5.9855 -1.93788, -14.7657 6.33369 -0.657651, -13.7264 6.38779 -0.66327, 
+            -14.7657 6.05814 -1.9614, -15.7964 6.25775 -0.649766, -15.7964 5.9855 -1.93788, -16.818 5.88539 -1.90547, 
+            -15.7964 6.25775 -0.649766, -14.7657 6.33369 -0.657651, -15.7964 5.9855 -1.93788, -16.818 6.15309 -0.638899, 
+            -16.818 5.88539 -1.90547, -17.8306 5.74807 -1.86101, -16.818 6.15309 -0.638899, -15.7964 6.25775 -0.649766, 
+            -16.818 5.88539 -1.90547, -17.8306 6.00951 -0.623991, -17.8306 5.74807 -1.86101, -18.8359 5.55844 -1.79961, 
+            -17.8306 6.00951 -0.623991, -16.818 6.15309 -0.638899, -17.8306 5.74807 -1.86101, -18.8359 5.81126 -0.603406, 
+            -18.8359 5.55844 -1.79961, -19.8368 5.29189 -1.71331, -18.8359 5.81126 -0.603406, -17.8306 6.00951 -0.623991, 
+            -18.8359 5.55844 -1.79961, -19.8368 5.53259 -0.57447, -19.8368 5.29189 -1.71331, -20.8349 4.90772 -1.58893, 
+            -19.8368 5.53259 -0.57447, -18.8359 5.81126 -0.603406, -19.8368 5.29189 -1.71331, -20.8349 5.13094 -0.532766, 
+            -20.8349 4.90772 -1.58893, -21.8152 4.3402 -1.40519, -20.8349 5.13094 -0.532766, -19.8368 5.53259 -0.57447, 
+            -20.8349 4.90772 -1.58893, -21.8152 4.53761 -0.471158, -21.8152 4.3402 -1.40519, -22.7062 3.52533 -1.14137, 
+            -21.8152 4.53761 -0.471158, -20.8349 5.13094 -0.532766, -21.8152 4.3402 -1.40519, -22.7062 3.68567 -0.382698, 
+            -22.7062 3.52533 -1.14137, -23.3806 2.46316 -0.797478, -22.7062 3.68567 -0.382698, -21.8152 4.53761 -0.471158, 
+            -22.7062 3.52533 -1.14137, -23.3806 2.57519 -0.267392, -23.3806 2.46316 -0.797478, -23.7558 1.25835 -0.407408, 
+            -23.3806 2.57519 -0.267392, -22.7062 3.68567 -0.382698, -23.3806 2.46316 -0.797478, -23.7558 1.31559 -0.136603, 
+            -23.3806 2.57519 -0.267392, -23.7558 1.25835 -0.407408, -9.5 6.46339 0.688912, -9.5 6.46524 -0.671311, 
+            -10.5653 6.46134 -0.670906, -9 6.4644 0.679085, -9.5 6.46524 -0.671311, -9.5 6.46339 0.688912, 
+            -9 6.4644 -0.679085, -9.5 6.46524 -0.671311, -9 6.4644 0.679085, -10.5653 6.45949 0.688496, 
+            -10.5653 6.46134 -0.670906, -11.6254 6.44856 -0.669579, -10.5653 6.45949 0.688496, -9.5 6.46339 0.688912, 
+            -10.5653 6.46134 -0.670906, -11.6254 6.44671 0.687134, -11.6254 6.44856 -0.669579, -12.6794 6.42492 -0.667124, 
+            -11.6254 6.44671 0.687134, -10.5653 6.45949 0.688496, -11.6254 6.44856 -0.669579, -12.6794 6.42308 0.684615, 
+            -12.6794 6.42492 -0.667124, -13.7264 6.38779 -0.66327, -12.6794 6.42308 0.684615, -11.6254 6.44671 0.687134, 
+            -12.6794 6.42492 -0.667124, -13.7264 6.38597 0.680659, -13.7264 6.38779 -0.66327, -14.7657 6.33369 -0.657651, 
+            -13.7264 6.38597 0.680659, -12.6794 6.42308 0.684615, -13.7264 6.38779 -0.66327, -14.7657 6.33187 0.674894, 
+            -14.7657 6.33369 -0.657651, -15.7964 6.25775 -0.649766, -14.7657 6.33187 0.674894, -13.7264 6.38597 0.680659, 
+            -14.7657 6.33369 -0.657651, -15.7964 6.25596 0.666802, -15.7964 6.25775 -0.649766, -16.818 6.15309 -0.638899, 
+            -15.7964 6.25596 0.666802, -14.7657 6.33187 0.674894, -15.7964 6.25775 -0.649766, -16.818 6.15132 0.65565, 
+            -16.818 6.15309 -0.638899, -17.8306 6.00951 -0.623991, -16.818 6.15132 0.65565, -15.7964 6.25596 0.666802, 
+            -16.818 6.15309 -0.638899, -17.8306 6.00779 0.640351, -17.8306 6.00951 -0.623991, -18.8359 5.81126 -0.603406, 
+            -17.8306 6.00779 0.640351, -16.818 6.15132 0.65565, -17.8306 6.00951 -0.623991, -18.8359 5.8096 0.619226, 
+            -18.8359 5.81126 -0.603406, -19.8368 5.53259 -0.57447, -18.8359 5.8096 0.619226, -17.8306 6.00779 0.640351, 
+            -18.8359 5.81126 -0.603406, -19.8368 5.531 0.589532, -19.8368 5.53259 -0.57447, -20.8349 5.13094 -0.532766, 
+            -19.8368 5.531 0.589532, -18.8359 5.8096 0.619226, -19.8368 5.53259 -0.57447, -20.8349 5.12947 0.546734, 
+            -20.8349 5.13094 -0.532766, -21.8152 4.53761 -0.471158, -20.8349 5.12947 0.546734, -19.8368 5.531 0.589532, 
+            -20.8349 5.13094 -0.532766, -21.8152 4.53631 0.48351, -21.8152 4.53761 -0.471158, -22.7062 3.68567 -0.382698, 
+            -21.8152 4.53631 0.48351, -20.8349 5.12947 0.546734, -21.8152 4.53761 -0.471158, -22.7062 3.68462 0.392731, 
+            -22.7062 3.68567 -0.382698, -23.3806 2.57519 -0.267392, -22.7062 3.68462 0.392731, -21.8152 4.53631 0.48351, 
+            -22.7062 3.68567 -0.382698, -23.3806 2.57446 0.274403, -23.3806 2.57519 -0.267392, -23.7558 1.31559 -0.136603, 
+            -23.3806 2.57446 0.274403, -22.7062 3.68462 0.392731, -23.3806 2.57519 -0.267392, -23.7558 1.31521 0.140184, 
+            -23.3806 2.57446 0.274403, -23.7558 1.31559 -0.136603, -9.5 6.17849 2.01897, -9.5 6.46339 0.688912, 
+            -10.5653 6.45949 0.688496, -9 6.18175 2.00875, -9.5 6.46339 0.688912, -9.5 6.17849 2.01897, 
+            -9 6.4644 0.679085, -9.5 6.46339 0.688912, -9 6.18175 2.00875, -10.5653 6.17477 2.01775, 
+            -10.5653 6.45949 0.688496, -11.6254 6.44671 0.687134, -10.5653 6.17477 2.01775, -9.5 6.17849 2.01897, 
+            -10.5653 6.45949 0.688496, -11.6254 6.16255 2.01376, -11.6254 6.44671 0.687134, -12.6794 6.42308 0.684615, 
+            -11.6254 6.16255 2.01376, -10.5653 6.17477 2.01775, -11.6254 6.44671 0.687134, -12.6794 6.13996 2.00637, 
+            -12.6794 6.42308 0.684615, -13.7264 6.38597 0.680659, -12.6794 6.13996 2.00637, -11.6254 6.16255 2.01376, 
+            -12.6794 6.42308 0.684615, -13.7264 6.10448 1.99478, -13.7264 6.38597 0.680659, -14.7657 6.33187 0.674894, 
+            -13.7264 6.10448 1.99478, -12.6794 6.13996 2.00637, -13.7264 6.38597 0.680659, -14.7657 6.05277 1.97788, 
+            -14.7657 6.33187 0.674894, -15.7964 6.25596 0.666802, -14.7657 6.05277 1.97788, -13.7264 6.10448 1.99478, 
+            -14.7657 6.33187 0.674894, -15.7964 5.9802 1.95417, -15.7964 6.25596 0.666802, -16.818 6.15132 0.65565, 
+            -15.7964 5.9802 1.95417, -14.7657 6.05277 1.97788, -15.7964 6.25596 0.666802, -16.818 5.88018 1.92149, 
+            -16.818 6.15132 0.65565, -17.8306 6.00779 0.640351, -16.818 5.88018 1.92149, -15.7964 5.9802 1.95417, 
+            -16.818 6.15132 0.65565, -17.8306 5.74298 1.87665, -17.8306 6.00779 0.640351, -18.8359 5.8096 0.619226, 
+            -17.8306 5.74298 1.87665, -16.818 5.88018 1.92149, -17.8306 6.00779 0.640351, -18.8359 5.55352 1.81474, 
+            -18.8359 5.8096 0.619226, -19.8368 5.531 0.589532, -18.8359 5.55352 1.81474, -17.8306 5.74298 1.87665, 
+            -18.8359 5.8096 0.619226, -19.8368 5.28721 1.72772, -19.8368 5.531 0.589532, -20.8349 5.12947 0.546734, 
+            -19.8368 5.28721 1.72772, -18.8359 5.55352 1.81474, -19.8368 5.531 0.589532, -20.8349 4.90338 1.60229, 
+            -20.8349 5.12947 0.546734, -21.8152 4.53631 0.48351, -20.8349 4.90338 1.60229, -19.8368 5.28721 1.72772, 
+            -20.8349 5.12947 0.546734, -21.8152 4.33636 1.417, -21.8152 4.53631 0.48351, -22.7062 3.68462 0.392731, 
+            -21.8152 4.33636 1.417, -20.8349 4.90338 1.60229, -21.8152 4.53631 0.48351, -22.7062 3.5222 1.15096, 
+            -22.7062 3.68462 0.392731, -23.3806 2.57446 0.274403, -22.7062 3.5222 1.15096, -21.8152 4.33636 1.417, 
+            -22.7062 3.68462 0.392731, -23.3806 2.46098 0.804181, -23.3806 2.57446 0.274403, -23.7558 1.31521 0.140184, 
+            -23.3806 2.46098 0.804181, -22.7062 3.5222 1.15096, -23.3806 2.57446 0.274403, -23.7558 1.25724 0.410832, 
+            -23.3806 2.46098 0.804181, -23.7558 1.31521 0.140184, -9.5 5.62303 3.2606, -9.5 6.17849 2.01897, 
+            -10.5653 6.17477 2.01775, -9 5.62917 3.25, -9.5 6.17849 2.01897, -9.5 5.62303 3.2606, 
+            -9 6.18175 2.00875, -9.5 6.17849 2.01897, -9 5.62917 3.25, -10.5653 5.61964 3.25864, 
+            -10.5653 6.17477 2.01775, -11.6254 6.16255 2.01376, -10.5653 5.61964 3.25864, -9.5 5.62303 3.2606, 
+            -10.5653 6.17477 2.01775, -11.6254 5.60852 3.25219, -11.6254 6.16255 2.01376, -12.6794 6.13996 2.00637, 
+            -11.6254 5.60852 3.25219, -10.5653 5.61964 3.25864, -11.6254 6.16255 2.01376, -12.6794 5.58796 3.24027, 
+            -12.6794 6.13996 2.00637, -13.7264 6.10448 1.99478, -12.6794 5.58796 3.24027, -11.6254 5.60852 3.25219, 
+            -12.6794 6.13996 2.00637, -13.7264 5.55567 3.22155, -13.7264 6.10448 1.99478, -14.7657 6.05277 1.97788, 
+            -13.7264 5.55567 3.22155, -12.6794 5.58796 3.24027, -13.7264 6.10448 1.99478, -14.7657 5.50861 3.19426, 
+            -14.7657 6.05277 1.97788, -15.7964 5.9802 1.95417, -14.7657 5.50861 3.19426, -13.7264 5.55567 3.22155, 
+            -14.7657 6.05277 1.97788, -15.7964 5.44257 3.15596, -15.7964 5.9802 1.95417, -16.818 5.88018 1.92149, 
+            -15.7964 5.44257 3.15596, -14.7657 5.50861 3.19426, -15.7964 5.9802 1.95417, -16.818 5.35154 3.10318, 
+            -16.818 5.88018 1.92149, -17.8306 5.74298 1.87665, -16.818 5.35154 3.10318, -15.7964 5.44257 3.15596, 
+            -16.818 5.88018 1.92149, -17.8306 5.22667 3.03077, -17.8306 5.74298 1.87665, -18.8359 5.55352 1.81474, 
+            -17.8306 5.22667 3.03077, -16.818 5.35154 3.10318, -17.8306 5.74298 1.87665, -18.8359 5.05424 2.93079, 
+            -18.8359 5.55352 1.81474, -19.8368 5.28721 1.72772, -18.8359 5.05424 2.93079, -17.8306 5.22667 3.03077, 
+            -18.8359 5.55352 1.81474, -19.8368 4.81187 2.79024, -19.8368 5.28721 1.72772, -20.8349 4.90338 1.60229, 
+            -19.8368 4.81187 2.79024, -18.8359 5.05424 2.93079, -19.8368 5.28721 1.72772, -20.8349 4.46255 2.58768, 
+            -20.8349 4.90338 1.60229, -21.8152 4.33636 1.417, -20.8349 4.46255 2.58768, -19.8368 4.81187 2.79024, 
+            -20.8349 4.90338 1.60229, -21.8152 3.94651 2.28845, -21.8152 4.33636 1.417, -22.7062 3.5222 1.15096, 
+            -21.8152 3.94651 2.28845, -20.8349 4.46255 2.58768, -21.8152 4.33636 1.417, -22.7062 3.20555 1.85879, 
+            -22.7062 3.5222 1.15096, -23.3806 2.46098 0.804181, -22.7062 3.20555 1.85879, -21.8152 3.94651 2.28845, 
+            -22.7062 3.5222 1.15096, -23.3806 2.23973 1.29874, -23.3806 2.46098 0.804181, -23.7558 1.25724 0.410832, 
+            -23.3806 2.23973 1.29874, -22.7062 3.20555 1.85879, -23.3806 2.46098 0.804181, -23.7558 1.14421 0.663489, 
+            -23.3806 2.23973 1.29874, -23.7558 1.25724 0.410832, -9.5 4.83044 4.34935, -9.5 5.62303 3.2606, 
+            -10.5653 5.61964 3.25864, -9 5.62917 3.25, -9.5 5.62303 3.2606, -9.5 4.83044 4.34935, 
+            -10.5653 4.81841 4.35683, -10.5653 5.61964 3.25864, -11.6254 5.60852 3.25219, -9.5 4.82132 4.35946, 
+            -9.5 4.83044 4.34935, -10.5653 5.61964 3.25864, -10.5653 4.81841 4.35683, -9.5 4.82132 4.35946, 
+            -10.5653 5.61964 3.25864, -11.6254 4.80888 4.34821, -11.6254 5.60852 3.25219, -12.6794 5.58796 3.24027, 
+            -11.6254 4.80888 4.34821, -10.5653 4.81841 4.35683, -11.6254 5.60852 3.25219, -12.6794 4.79125 4.33226, 
+            -12.6794 5.58796 3.24027, -13.7264 5.55567 3.22155, -12.6794 4.79125 4.33226, -11.6254 4.80888 4.34821, 
+            -12.6794 5.58796 3.24027, -13.7264 4.76357 4.30724, -13.7264 5.55567 3.22155, -14.7657 5.50861 3.19426, 
+            -13.7264 4.76357 4.30724, -12.6794 4.79125 4.33226, -13.7264 5.55567 3.22155, -14.7657 4.72322 4.27075, 
+            -14.7657 5.50861 3.19426, -15.7964 5.44257 3.15596, -14.7657 4.72322 4.27075, -13.7264 4.76357 4.30724, 
+            -14.7657 5.50861 3.19426, -15.7964 4.66659 4.21955, -15.7964 5.44257 3.15596, -16.818 5.35154 3.10318, 
+            -15.7964 4.66659 4.21955, -14.7657 4.72322 4.27075, -15.7964 5.44257 3.15596, -16.818 4.58854 4.14897, 
+            -16.818 5.35154 3.10318, -17.8306 5.22667 3.03077, -16.818 4.58854 4.14897, -15.7964 4.66659 4.21955, 
+            -16.818 5.35154 3.10318, -17.8306 4.48147 4.05216, -17.8306 5.22667 3.03077, -18.8359 5.05424 2.93079, 
+            -17.8306 4.48147 4.05216, -16.818 4.58854 4.14897, -17.8306 5.22667 3.03077, -18.8359 4.33363 3.91848, 
+            -18.8359 5.05424 2.93079, -19.8368 4.81187 2.79024, -18.8359 4.33363 3.91848, -17.8306 4.48147 4.05216, 
+            -18.8359 5.05424 2.93079, -19.8368 4.12581 3.73058, -19.8368 4.81187 2.79024, -20.8349 4.46255 2.58768, 
+            -19.8368 4.12581 3.73058, -18.8359 4.33363 3.91848, -19.8368 4.81187 2.79024, -20.8349 3.8263 3.45975, 
+            -20.8349 4.46255 2.58768, -21.8152 3.94651 2.28845, -20.8349 3.8263 3.45975, -19.8368 4.12581 3.73058, 
+            -20.8349 4.46255 2.58768, -21.8152 3.38383 3.05967, -21.8152 3.94651 2.28845, -22.7062 3.20555 1.85879, 
+            -21.8152 3.38383 3.05967, -20.8349 3.8263 3.45975, -21.8152 3.94651 2.28845, -22.7062 2.74851 2.48522, 
+            -22.7062 3.20555 1.85879, -23.3806 2.23973 1.29874, -22.7062 2.74851 2.48522, -21.8152 3.38383 3.05967, 
+            -22.7062 3.20555 1.85879, -23.3806 1.9204 1.73643, -23.3806 2.23973 1.29874, -23.7558 1.14421 0.663489, 
+            -23.3806 1.9204 1.73643, -22.7062 2.74851 2.48522, -23.3806 2.23973 1.29874, -23.7558 0.981074 0.887091, 
+            -23.3806 1.9204 1.73643, -23.7558 1.14421 0.663489, -9 4.83051 4.34917, -9.5 4.83044 4.34935, 
+            -9.5 4.82132 4.35946, -9 5.62917 3.25, -9.5 4.83044 4.34935, -9 4.83051 4.34917, 
+            -9.5 3.8206 5.25861, -9.5 4.82132 4.35946, -10.5653 4.81841 4.35683, -9 4.83051 4.34917, 
+            -9.5 4.82132 4.35946, -9.5 3.8206 5.25861, -10.5653 3.80618 5.26422, -10.5653 4.81841 4.35683, 
+            -11.6254 4.80888 4.34821, -9.5 3.80848 5.2674, -9.5 3.8206 5.25861, -10.5653 4.81841 4.35683, 
+            -10.5653 3.80618 5.26422, -9.5 3.80848 5.2674, -10.5653 4.81841 4.35683, -11.6254 3.79865 5.25381, 
+            -11.6254 4.80888 4.34821, -12.6794 4.79125 4.33226, -11.6254 3.79865 5.25381, -10.5653 3.80618 5.26422, 
+            -11.6254 4.80888 4.34821, -12.6794 3.78472 5.23454, -12.6794 4.79125 4.33226, -13.7264 4.76357 4.30724, 
+            -12.6794 3.78472 5.23454, -11.6254 3.79865 5.25381, -12.6794 4.79125 4.33226, -13.7264 3.76286 5.2043, 
+            -13.7264 4.76357 4.30724, -14.7657 4.72322 4.27075, -13.7264 3.76286 5.2043, -12.6794 3.78472 5.23454, 
+            -13.7264 4.76357 4.30724, -14.7657 3.73098 5.16022, -14.7657 4.72322 4.27075, -15.7964 4.66659 4.21955, 
+            -14.7657 3.73098 5.16022, -13.7264 3.76286 5.2043, -14.7657 4.72322 4.27075, -15.7964 3.68625 5.09835, 
+            -15.7964 4.66659 4.21955, -16.818 4.58854 4.14897, -15.7964 3.68625 5.09835, -14.7657 3.73098 5.16022, 
+            -15.7964 4.66659 4.21955, -16.818 3.6246 5.01308, -16.818 4.58854 4.14897, -17.8306 4.48147 4.05216, 
+            -16.818 3.6246 5.01308, -15.7964 3.68625 5.09835, -16.818 4.58854 4.14897, -17.8306 3.54002 4.89611, 
+            -17.8306 4.48147 4.05216, -18.8359 4.33363 3.91848, -17.8306 3.54002 4.89611, -16.818 3.6246 5.01308, 
+            -17.8306 4.48147 4.05216, -18.8359 3.42324 4.73459, -18.8359 4.33363 3.91848, -19.8368 4.12581 3.73058, 
+            -18.8359 3.42324 4.73459, -17.8306 3.54002 4.89611, -18.8359 4.33363 3.91848, -19.8368 3.25908 4.50754, 
+            -19.8368 4.12581 3.73058, -20.8349 3.8263 3.45975, -19.8368 3.25908 4.50754, -18.8359 3.42324 4.73459, 
+            -19.8368 4.12581 3.73058, -20.8349 3.02248 4.18031, -20.8349 3.8263 3.45975, -21.8152 3.38383 3.05967, 
+            -20.8349 3.02248 4.18031, -19.8368 3.25908 4.50754, -20.8349 3.8263 3.45975, -21.8152 2.67297 3.69691, 
+            -21.8152 3.38383 3.05967, -22.7062 2.74851 2.48522, -21.8152 2.67297 3.69691, -20.8349 3.02248 4.18031, 
+            -21.8152 3.38383 3.05967, -22.7062 2.17112 3.00281, -22.7062 2.74851 2.48522, -23.3806 1.9204 1.73643, 
+            -22.7062 2.17112 3.00281, -21.8152 2.67297 3.69691, -22.7062 2.74851 2.48522, -23.3806 1.51697 2.09808, 
+            -23.3806 1.9204 1.73643, -23.7558 0.981074 0.887091, -23.3806 1.51697 2.09808, -22.7062 2.17112 3.00281, 
+            -23.3806 1.9204 1.73643, -23.7558 0.774974 1.07184, -23.3806 1.51697 2.09808, -23.7558 0.981074 0.887091, 
+            -9 3.8203 5.25879, -9.5 3.8206 5.25861, -9.5 3.80848 5.2674, -9 4.83051 4.34917, 
+            -9.5 3.8206 5.25861, -9 3.8203 5.25879, -9.5 2.64379 5.93805, -9.5 3.80848 5.2674, 
+            -10.5653 3.80618 5.26422, -9 3.8203 5.25879, -9.5 3.80848 5.2674, -9.5 2.64379 5.93805, 
+            -10.5653 2.62727 5.94109, -10.5653 3.80618 5.26422, -11.6254 3.79865 5.25381, -9.5 2.62886 5.94467, 
+            -9.5 2.64379 5.93805, -10.5653 3.80618 5.26422, -10.5653 2.62727 5.94109, -9.5 2.62886 5.94467, 
+            -10.5653 3.80618 5.26422, -11.6254 2.62207 5.92933, -11.6254 3.79865 5.25381, -12.6794 3.78472 5.23454, 
+            -11.6254 2.62207 5.92933, -10.5653 2.62727 5.94109, -11.6254 3.79865 5.25381, -12.6794 2.61246 5.90759, 
+            -12.6794 3.78472 5.23454, -13.7264 3.76286 5.2043, -12.6794 2.61246 5.90759, -11.6254 2.62207 5.92933, 
+            -12.6794 3.78472 5.23454, -13.7264 2.59737 5.87346, -13.7264 3.76286 5.2043, -14.7657 3.73098 5.16022, 
+            -13.7264 2.59737 5.87346, -12.6794 2.61246 5.90759, -13.7264 3.76286 5.2043, -14.7657 2.57536 5.82371, 
+            -14.7657 3.73098 5.16022, -15.7964 3.68625 5.09835, -14.7657 2.57536 5.82371, -13.7264 2.59737 5.87346, 
+            -14.7657 3.73098 5.16022, -15.7964 2.54449 5.75389, -15.7964 3.68625 5.09835, -16.818 3.6246 5.01308, 
+            -15.7964 2.54449 5.75389, -14.7657 2.57536 5.82371, -15.7964 3.68625 5.09835, -16.818 2.50193 5.65765, 
+            -16.818 3.6246 5.01308, -17.8306 3.54002 4.89611, -16.818 2.50193 5.65765, -15.7964 2.54449 5.75389, 
+            -16.818 3.6246 5.01308, -17.8306 2.44355 5.52564, -17.8306 3.54002 4.89611, -18.8359 3.42324 4.73459, 
+            -17.8306 2.44355 5.52564, -16.818 2.50193 5.65765, -17.8306 3.54002 4.89611, -18.8359 2.36294 5.34335, 
+            -18.8359 3.42324 4.73459, -19.8368 3.25908 4.50754, -18.8359 2.36294 5.34335, -17.8306 2.44355 5.52564, 
+            -18.8359 3.42324 4.73459, -19.8368 2.24963 5.08711, -19.8368 3.25908 4.50754, -20.8349 3.02248 4.18031, 
+            -19.8368 2.24963 5.08711, -18.8359 2.36294 5.34335, -19.8368 3.25908 4.50754, -20.8349 2.08631 4.71781, 
+            -20.8349 3.02248 4.18031, -21.8152 2.67297 3.69691, -20.8349 2.08631 4.71781, -19.8368 2.24963 5.08711, 
+            -20.8349 3.02248 4.18031, -21.8152 1.84505 4.17225, -21.8152 2.67297 3.69691, -22.7062 2.17112 3.00281, 
+            -21.8152 1.84505 4.17225, -20.8349 2.08631 4.71781, -21.8152 2.67297 3.69691, -22.7062 1.49865 3.38891, 
+            -22.7062 2.17112 3.00281, -23.3806 1.51697 2.09808, -22.7062 1.49865 3.38891, -21.8152 1.84505 4.17225, 
+            -22.7062 2.17112 3.00281, -23.3806 1.04711 2.36784, -23.3806 1.51697 2.09808, -23.7558 0.774974 1.07184, 
+            -23.3806 1.04711 2.36784, -22.7062 1.49865 3.38891, -23.3806 1.51697 2.09808, -23.7558 0.534937 1.20966, 
+            -23.3806 1.04711 2.36784, -23.7558 0.774974 1.07184, -9 2.64409 5.93788, -9.5 2.64379 5.93805, 
+            -9.5 2.62886 5.94467, -9 3.8203 5.25879, -9.5 2.64379 5.93805, -9 2.64409 5.93788, 
+            -9.5 1.35143 6.35796, -9.5 2.62886 5.94467, -10.5653 2.62727 5.94109, -9 2.64409 5.93788, 
+            -9.5 2.62886 5.94467, -9.5 1.35143 6.35796, -10.5653 1.33331 6.35778, -10.5653 2.62727 5.94109, 
+            -11.6254 2.62207 5.92933, -9.5 1.33411 6.36162, -9.5 1.35143 6.35796, -10.5653 2.62727 5.94109, 
+            -10.5653 1.33331 6.35778, -9.5 1.33411 6.36162, -10.5653 2.62727 5.94109, -11.6254 1.33067 6.3452, 
+            -11.6254 2.62207 5.92933, -12.6794 2.61246 5.90759, -11.6254 1.33067 6.3452, -10.5653 1.33331 6.35778, 
+            -11.6254 2.62207 5.92933, -12.6794 1.32579 6.32194, -12.6794 2.61246 5.90759, -13.7264 2.59737 5.87346, 
+            -12.6794 1.32579 6.32194, -11.6254 1.33067 6.3452, -12.6794 2.61246 5.90759, -13.7264 1.31813 6.28541, 
+            -13.7264 2.59737 5.87346, -14.7657 2.57536 5.82371, -13.7264 1.31813 6.28541, -12.6794 1.32579 6.32194, 
+            -13.7264 2.59737 5.87346, -14.7657 1.30696 6.23217, -14.7657 2.57536 5.82371, -15.7964 2.54449 5.75389, 
+            -14.7657 1.30696 6.23217, -13.7264 1.31813 6.28541, -14.7657 2.57536 5.82371, -15.7964 1.29129 6.15745, 
+            -15.7964 2.54449 5.75389, -16.818 2.50193 5.65765, -15.7964 1.29129 6.15745, -14.7657 1.30696 6.23217, 
+            -15.7964 2.54449 5.75389, -16.818 1.2697 6.05446, -16.818 2.50193 5.65765, -17.8306 2.44355 5.52564, 
+            -16.818 1.2697 6.05446, -15.7964 1.29129 6.15745, -16.818 2.50193 5.65765, -17.8306 1.24007 5.91319, 
+            -17.8306 2.44355 5.52564, -18.8359 2.36294 5.34335, -17.8306 1.24007 5.91319, -16.818 1.2697 6.05446, 
+            -17.8306 2.44355 5.52564, -18.8359 1.19916 5.71812, -18.8359 2.36294 5.34335, -19.8368 2.24963 5.08711, 
+            -18.8359 1.19916 5.71812, -17.8306 1.24007 5.91319, -18.8359 2.36294 5.34335, -19.8368 1.14166 5.44391, 
+            -19.8368 2.24963 5.08711, -20.8349 2.08631 4.71781, -19.8368 1.14166 5.44391, -18.8359 1.19916 5.71812, 
+            -19.8368 2.24963 5.08711, -20.8349 1.05878 5.0487, -20.8349 2.08631 4.71781, -21.8152 1.84505 4.17225, 
+            -20.8349 1.05878 5.0487, -19.8368 1.14166 5.44391, -20.8349 2.08631 4.71781, -21.8152 0.936341 4.46488, 
+            -21.8152 1.84505 4.17225, -22.7062 1.49865 3.38891, -21.8152 0.936341 4.46488, -20.8349 1.05878 5.0487, 
+            -21.8152 1.84505 4.17225, -22.7062 0.760543 3.6266, -22.7062 1.49865 3.38891, -23.3806 1.04711 2.36784, 
+            -22.7062 0.760543 3.6266, -21.8152 0.936341 4.46488, -22.7062 1.49865 3.38891, -23.3806 0.531394 2.53392, 
+            -23.3806 1.04711 2.36784, -23.7558 0.534937 1.20966, -23.3806 0.531394 2.53392, -22.7062 0.760543 3.6266, 
+            -23.3806 1.04711 2.36784, -23.7558 0.271473 1.2945, -23.3806 0.531394 2.53392, -23.7558 0.534937 1.20966, 
+            -9 1.35124 6.35793, -9.5 1.35143 6.35796, -9.5 1.33411 6.36162, -9 2.64409 5.93788, 
+            -9.5 1.35143 6.35796, -9 1.35124 6.35793, -9.5 3.51303e-015 6.5, -9.5 1.33411 6.36162, 
+            -10.5653 1.33331 6.35778, -9 1.35124 6.35793, -9.5 1.33411 6.36162, -9.5 3.51303e-015 6.5, 
+            -11.4803 4.29083e-015 6.48559, -10.5653 1.33331 6.35778, -11.6254 1.33067 6.3452, -10.5139 4.30017e-015 6.49646, 
+            -9.5 3.51303e-015 6.5, -10.5653 1.33331 6.35778, -11.4803 4.29083e-015 6.48559, -10.5139 4.30017e-015 6.49646, 
+            -10.5653 1.33331 6.35778, -12.3987 4.28099e-015 6.46701, -11.6254 1.33067 6.3452, -12.6794 1.32579 6.32194, 
+            -12.3987 4.28099e-015 6.46701, -11.4803 4.29083e-015 6.48559, -11.6254 1.33067 6.3452, -13.2707 4.2706e-015 6.44028, 
+            -12.6794 1.32579 6.32194, -13.7264 1.31813 6.28541, -13.2707 4.2706e-015 6.44028, -12.3987 4.28099e-015 6.46701, 
+            -12.6794 1.32579 6.32194, -14.0979 4.25957e-015 6.40492, -13.7264 1.31813 6.28541, -14.7657 1.30696 6.23217, 
+            -14.0979 4.25957e-015 6.40492, -13.2707 4.2706e-015 6.44028, -13.7264 1.31813 6.28541, -14.8813 1.42326e-015 6.3604, 
+            -14.7657 1.30696 6.23217, -15.7964 1.29129 6.15745, -14.8813 1.42326e-015 6.3604, -14.0979 4.25957e-015 6.40492, 
+            -14.7657 1.30696 6.23217, -15.9795 4.22873e-015 6.27497, -15.7964 1.29129 6.15745, -16.818 1.2697 6.05446, 
+            -15.9795 4.22873e-015 6.27497, -14.8813 1.42326e-015 6.3604, -15.7964 1.29129 6.15745, -16.9899 4.20748e-015 6.16485, 
+            -16.818 1.2697 6.05446, -17.8306 1.24007 5.91319, -16.9899 4.20748e-015 6.16485, -15.9795 4.22873e-015 6.27497, 
+            -16.818 1.2697 6.05446, -17.9168 4.18372e-015 6.02723, -17.8306 1.24007 5.91319, -18.8359 1.19916 5.71812, 
+            -17.9168 4.18372e-015 6.02723, -16.9899 4.20748e-015 6.16485, -17.8306 1.24007 5.91319, -19.5129 4.12815e-015 5.66419, 
+            -18.8359 1.19916 5.71812, -19.8368 1.14166 5.44391, -18.7649 4.15705e-015 5.85891, -17.9168 4.18372e-015 6.02723, 
+            -18.8359 1.19916 5.71812, -19.5129 4.12815e-015 5.66419, -18.7649 4.15705e-015 5.85891, -18.8359 1.19916 5.71812, 
+            -20.1882 4.09611e-015 5.43734, -19.8368 1.14166 5.44391, -20.8349 1.05878 5.0487, -20.1882 4.09611e-015 5.43734, 
+            -19.5129 4.12815e-015 5.66419, -19.8368 1.14166 5.44391, -21.3535 4.0209e-015 4.87466, -20.8349 1.05878 5.0487, 
+            -21.8152 0.936341 4.46488, -20.8078 4.06002e-015 5.1717, -20.1882 4.09611e-015 5.43734, -20.8349 1.05878 5.0487, 
+            -21.3535 4.0209e-015 4.87466, -20.8078 4.06002e-015 5.1717, -20.8349 1.05878 5.0487, -22.2393 3.93578e-015 4.20672, 
+            -21.8152 0.936341 4.46488, -22.7062 0.760543 3.6266, -22.2393 3.93578e-015 4.20672, -21.3535 4.0209e-015 4.87466, 
+            -21.8152 0.936341 4.46488, -22.9491 3.83332e-015 3.37713, -22.7062 0.760543 3.6266, -23.3806 0.531394 2.53392, 
+            -22.9491 3.83332e-015 3.37713, -22.2393 3.93578e-015 4.20672, -22.7062 0.760543 3.6266, -23.4534 3.71681e-015 2.41206, 
+            -23.3806 0.531394 2.53392, -23.7558 0.271473 1.2945, -23.4534 3.71681e-015 2.41206, -22.9491 3.83332e-015 3.37713, 
+            -23.3806 0.531394 2.53392, -23.7582 3.58593e-015 1.30916, -23.4534 3.71681e-015 2.41206, -23.7558 0.271473 1.2945, 
+            -9.5 -3.2 6.5, -9.5 3.51303e-015 6.5, -10.5139 4.30017e-015 6.49646, -9 5.10919e-015 6.5, 
+            -9.5 3.51303e-015 6.5, -9.5 -3.2 6.5, -9 1.35124 6.35793, -9.5 3.51303e-015 6.5, 
+            -9 5.10919e-015 6.5, -10.5291 -3.2 6.49648, -10.5139 4.30017e-015 6.49646, -11.4803 4.29083e-015 6.48559, 
+            -9.5 -3.2 6.5, -10.5139 4.30017e-015 6.49646, -10.5291 -3.2 6.49648, -11.5039 -3.2 6.48523, 
+            -11.4803 4.29083e-015 6.48559, -12.3987 4.28099e-015 6.46701, -10.5291 -3.2 6.49648, -11.4803 4.29083e-015 6.48559, 
+            -11.5039 -3.2 6.48523, -12.4231 -3.2 6.4664, -12.3987 4.28099e-015 6.46701, -13.2707 4.2706e-015 6.44028, 
+            -11.5039 -3.2 6.48523, -12.3987 4.28099e-015 6.46701, -12.4231 -3.2 6.4664, -13.2898 -3.2 6.4396, 
+            -13.2707 4.2706e-015 6.44028, -14.0979 4.25957e-015 6.40492, -12.4231 -3.2 6.4664, -13.2707 4.2706e-015 6.44028, 
+            -13.2898 -3.2 6.4396, -14.1079 -3.2 6.40443, -14.0979 4.25957e-015 6.40492, -14.8813 1.42326e-015 6.3604, 
+            -13.2898 -3.2 6.4396, -14.0979 4.25957e-015 6.40492, -14.1079 -3.2 6.40443, -15.9501 -3.2 6.27771, 
+            -14.8813 1.42326e-015 6.3604, -15.9795 4.22873e-015 6.27497, -14.8781 -3.2 6.36064, -14.8813 1.42326e-015 6.3604, 
+            -15.9501 -3.2 6.27771, -14.1079 -3.2 6.40443, -14.8813 1.42326e-015 6.3604, -14.8781 -3.2 6.36064, 
+            -16.9285 -3.2 6.17259, -15.9795 4.22873e-015 6.27497, -16.9899 4.20748e-015 6.16485, -15.9501 -3.2 6.27771, 
+            -15.9795 4.22873e-015 6.27497, -16.9285 -3.2 6.17259, -17.82 -3.2 6.04356, -16.9899 4.20748e-015 6.16485, 
+            -17.9168 4.18372e-015 6.02723, -16.9285 -3.2 6.17259, -16.9899 4.20748e-015 6.16485, -17.82 -3.2 6.04356, 
+            -18.6326 -3.2 5.88849, -17.9168 4.18372e-015 6.02723, -18.7649 4.15705e-015 5.85891, -17.82 -3.2 6.04356, 
+            -17.9168 4.18372e-015 6.02723, -18.6326 -3.2 5.88849, -19.3749 -3.2 5.70402, -18.7649 4.15705e-015 5.85891, 
+            -19.5129 4.12815e-015 5.66419, -18.6326 -3.2 5.88849, -18.7649 4.15705e-015 5.85891, -19.3749 -3.2 5.70402, 
+            -20.0527 -3.2 5.4875, -19.5129 4.12815e-015 5.66419, -20.1882 4.09611e-015 5.43734, -19.3749 -3.2 5.70402, 
+            -19.5129 4.12815e-015 5.66419, -20.0527 -3.2 5.4875, -20.6701 -3.2 5.23657, -20.1882 4.09611e-015 5.43734, 
+            -20.8078 4.06002e-015 5.1717, -20.0527 -3.2 5.4875, -20.1882 4.09611e-015 5.43734, -20.6701 -3.2 5.23657, 
+            -21.229 -3.2 4.94834, -20.8078 4.06002e-015 5.1717, -21.3535 4.0209e-015 4.87466, -20.6701 -3.2 5.23657, 
+            -20.8078 4.06002e-015 5.1717, -21.229 -3.2 4.94834, -22.1637 -3.2 4.2761, -21.3535 4.0209e-015 4.87466, 
+            -22.2393 3.93578e-015 4.20672, -21.229 -3.2 4.94834, -21.3535 4.0209e-015 4.87466, -22.1637 -3.2 4.2761, 
+            -22.8769 -3.2 3.48145, -22.2393 3.93578e-015 4.20672, -22.9491 3.83332e-015 3.37713, -22.1637 -3.2 4.2761, 
+            -22.2393 3.93578e-015 4.20672, -22.8769 -3.2 3.48145, -23.4026 -3.2 2.53736, -22.9491 3.83332e-015 3.37713, 
+            -23.4534 3.71681e-015 2.41206, -22.8769 -3.2 3.48145, -22.9491 3.83332e-015 3.37713, -23.4026 -3.2 2.53736, 
+            -23.7419 -3.2 1.39888, -23.4534 3.71681e-015 2.41206, -23.7582 3.58593e-015 1.30916, -23.4026 -3.2 2.53736, 
+            -23.4534 3.71681e-015 2.41206, -23.7419 -3.2 1.39888, -10.3951 4.06853e-015 4.49722, -9.5 1.07689 4.36918, 
+            -9.5 -1.32226e-008 4.5, -9.5 -3.2 4.5, -9.5 -1.32226e-008 4.5, -9.5 1.07689 4.36918, 
+            -10.7413 -3.2 4.49461, -10.3951 4.06853e-015 4.49722, -9.5 -1.32226e-008 4.5, -10.7413 -3.2 4.49461, 
+            -9.5 -1.32226e-008 4.5, -9.5 -3.2 4.5, -10.3951 4.06853e-015 4.49722, -9.5 1.15358 4.34958, 
+            -9.5 1.07689 4.36918, -9.5 -3.2 4.5, -9.5 1.07689 4.36918, -9.5 1.15358 4.34958, 
+            -10.3951 4.06853e-015 4.49722, -10.6198 1.15217 4.34543, -9.5 1.15358 4.34958, -9.5 2.09071 3.98478, 
+            -9.5 1.15358 4.34958, -10.6198 1.15217 4.34543, -9.5 -3.2 4.5, -9.5 1.15358 4.34958, 
+            -9.5 2.09071 3.98478, -11.2479 4.06042e-015 4.48877, -11.7296 1.14845 4.33141, -10.6198 1.15217 4.34543, 
+            -10.6198 2.23861 3.89858, -10.6198 1.15217 4.34543, -11.7296 1.14845 4.33141, -10.3951 4.06853e-015 4.49722, 
+            -11.2479 4.06042e-015 4.48877, -10.6198 1.15217 4.34543, -9.5 2.24096 3.90222, -9.5 2.09071 3.98478, 
+            -10.6198 1.15217 4.34543, -10.6198 2.23861 3.89858, -9.5 2.24096 3.90222, -10.6198 1.15217 4.34543, 
+            -12.0566 4.05201e-015 4.4745, -12.8269 1.14155 4.30538, -11.7296 1.14845 4.33141, -11.7296 2.23139 3.886, 
+            -11.7296 1.14845 4.33141, -12.8269 1.14155 4.30538, -11.2479 4.06042e-015 4.48877, -12.0566 4.05201e-015 4.4745, 
+            -11.7296 1.14845 4.33141, -11.7296 2.23139 3.886, -10.6198 2.23861 3.89858, -11.7296 1.14845 4.33141, 
+            -13.1964 4.03866e-015 4.44166, -13.9087 1.13069 4.26441, -12.8269 1.14155 4.30538, -12.8269 2.21798 3.86264, 
+            -12.8269 1.14155 4.30538, -13.9087 1.13069 4.26441, -12.0566 4.05201e-015 4.4745, -13.1964 4.03866e-015 4.44166, 
+            -12.8269 1.14155 4.30538, -12.8269 2.21798 3.86264, -11.7296 2.23139 3.886, -12.8269 1.14155 4.30538, 
+            -14.254 4.0243e-015 4.39414, -14.9711 1.11482 4.20458, -13.9087 1.13069 4.26441, -13.9087 2.19687 3.82588, 
+            -13.9087 1.13069 4.26441, -14.9711 1.11482 4.20458, -13.1964 4.03866e-015 4.44166, -14.254 4.0243e-015 4.39414, 
+            -13.9087 1.13069 4.26441, -13.9087 2.19687 3.82588, -12.8269 2.21798 3.86264, -13.9087 1.13069 4.26441, 
+            -15.233 4.00874e-015 4.33074, -16.0085 1.09257 4.12065, -14.9711 1.11482 4.20458, -14.9711 2.16605 3.77221, 
+            -14.9711 1.11482 4.20458, -16.0085 1.09257 4.12065, -14.254 4.0243e-015 4.39414, -15.233 4.00874e-015 4.33074, 
+            -14.9711 1.11482 4.20458, -14.9711 2.16605 3.77221, -13.9087 2.19687 3.82588, -14.9711 1.11482 4.20458, 
+            -16.9715 3.97316e-015 4.14976, -17.0136 1.06204 4.00549, -16.0085 1.09257 4.12065, -16.0085 2.12281 3.69691, 
+            -16.0085 1.09257 4.12065, -17.0136 1.06204 4.00549, -16.14 3.99173e-015 4.24968, -16.9715 3.97316e-015 4.14976, 
+            -16.0085 1.09257 4.12065, -15.233 4.00874e-015 4.33074, -16.14 3.99173e-015 4.24968, -16.0085 1.09257 4.12065, 
+            -16.0085 2.12281 3.69691, -14.9711 2.16605 3.77221, -16.0085 1.09257 4.12065, -17.7291 3.95283e-015 4.02942, 
+            -17.9763 1.02064 3.84935, -17.0136 1.06204 4.00549, -17.0136 2.06349 3.59359, -17.0136 1.06204 4.00549, 
+            -17.9763 1.02064 3.84935, -16.9715 3.97316e-015 4.14976, -17.7291 3.95283e-015 4.02942, -17.0136 1.06204 4.00549, 
+            -17.0136 2.06349 3.59359, -16.0085 2.12281 3.69691, -17.0136 1.06204 4.00549, -18.4513 3.92921e-015 3.87826, 
+            -18.8828 0.964835 3.63889, -17.9763 1.02064 3.84935, -17.9763 1.98305 3.45351, -17.9763 1.02064 3.84935, 
+            -18.8828 0.964835 3.63889, -17.7291 3.95283e-015 4.02942, -18.4513 3.92921e-015 3.87826, -17.9763 1.02064 3.84935, 
+            -17.9763 1.98305 3.45351, -17.0136 2.06349 3.59359, -17.9763 1.02064 3.84935, -19.6332 3.87605e-015 3.50631, 
+            -19.7146 0.889879 3.35619, -18.8828 0.964835 3.63889, -18.8828 1.87463 3.26469, -18.8828 0.964835 3.63889, 
+            -19.7146 0.889879 3.35619, -19.0801 3.90382e-015 3.70523, -19.6332 3.87605e-015 3.50631, -18.8828 0.964835 3.63889, 
+            -18.4513 3.92921e-015 3.87826, -19.0801 3.90382e-015 3.70523, -18.8828 0.964835 3.63889, -18.8828 1.87463 3.26469, 
+            -17.9763 1.98305 3.45351, -18.8828 0.964835 3.63889, -20.1304 3.8446e-015 3.27171, -20.4476 0.789617 2.97806, 
+            -19.7146 0.889879 3.35619, -19.7146 1.72899 3.01106, -19.7146 0.889879 3.35619, -20.4476 0.789617 2.97806, 
+            -19.6332 3.87605e-015 3.50631, -20.1304 3.8446e-015 3.27171, -19.7146 0.889879 3.35619, -19.7146 1.72899 3.01106, 
+            -18.8828 1.87463 3.26469, -19.7146 0.889879 3.35619, -20.9201 3.77163e-015 2.70132, -21.0534 0.656741 2.47691, 
+            -20.4476 0.789617 2.97806, -20.4476 1.53419 2.67181, -20.4476 0.789617 2.97806, -21.0534 0.656741 2.47691, 
+            -20.5599 3.80975e-015 3.00301, -20.9201 3.77163e-015 2.70132, -20.4476 0.789617 2.97806, -20.1304 3.8446e-015 3.27171, 
+            -20.5599 3.80975e-015 3.00301, -20.4476 0.789617 2.97806, -20.4476 1.53419 2.67181, -19.7146 1.72899 3.01106, 
+            -20.4476 0.789617 2.97806, -21.4359 3.68802e-015 2.01981, -21.503 0.483835 1.82479, -21.0534 0.656741 2.47691, 
+            -21.0534 1.27602 2.2222, -21.0534 0.656741 2.47691, -21.503 0.483835 1.82479, -20.9201 3.77163e-015 2.70132, 
+            -21.4359 3.68802e-015 2.01981, -21.0534 0.656741 2.47691, -21.0534 1.27602 2.2222, -20.4476 1.53419 2.67181, 
+            -21.0534 0.656741 2.47691, -21.7421 3.5891e-015 1.19164, -21.775 0.2654 1.00096, -21.503 0.483835 1.82479, 
+            -21.503 0.940067 1.63714, -21.503 0.483835 1.82479, -21.775 0.2654 1.00096, -21.4359 3.68802e-015 2.01981, 
+            -21.7421 3.5891e-015 1.19164, -21.503 0.483835 1.82479, -21.503 0.940067 1.63714, -21.0534 1.27602 2.2222, 
+            -21.503 0.483835 1.82479, -21.831 3.52568e-015 0.652967, -21.8636 3.44943e-015 -1.06581e-014, -21.775 0.2654 1.00096, 
+            -21.775 0.51566 0.898028, -21.775 0.2654 1.00096, -21.8636 3.44943e-015 -1.06581e-014, -21.7421 3.5891e-015 1.19164, 
+            -21.831 3.52568e-015 0.652967, -21.775 0.2654 1.00096, -21.775 0.51566 0.898028, -21.503 0.940067 1.63714, 
+            -21.775 0.2654 1.00096, -21.8636 -3.2 -1.07038e-014, -21.8636 3.44943e-015 -1.06581e-014, -21.831 3.52568e-015 0.652967, 
+            -21.775 0.730708 0.733775, -21.775 0.51566 0.898028, -21.8636 3.44943e-015 -1.06581e-014, -21.775 0.895861 0.519417, 
+            -21.775 0.730708 0.733775, -21.8636 3.44943e-015 -1.06581e-014, -21.775 0.99984 0.26959, -21.775 0.895861 0.519417, 
+            -21.8636 3.44943e-015 -1.06581e-014, -21.775 1.03555 0.00135553, -21.775 0.99984 0.26959, -21.8636 3.44943e-015 -1.06581e-014, 
+            -21.775 1.00054 -0.266972, -21.775 1.03555 0.00135553, -21.8636 3.44943e-015 -1.06581e-014, -21.775 0.897217 -0.51707, 
+            -21.775 1.00054 -0.266972, -21.8636 3.44943e-015 -1.06581e-014, -21.775 0.732626 -0.73186, -21.775 0.897217 -0.51707, 
+            -21.8636 3.44943e-015 -1.06581e-014, -21.775 0.518009 -0.896675, -21.775 0.732626 -0.73186, -21.8636 3.44943e-015 -1.06581e-014, 
+            -21.775 0.26802 -1.00026, -21.775 0.518009 -0.896675, -21.8636 3.44943e-015 -1.06581e-014, -21.8314 3.45366e-015 -0.649055, 
+            -21.775 0.26802 -1.00026, -21.8636 3.44943e-015 -1.06581e-014, -21.8359 -3.2 -0.603689, -21.8314 3.45366e-015 -0.649055, 
+            -21.8636 3.44943e-015 -1.06581e-014, -21.8359 -3.2 -0.603689, -21.8636 3.44943e-015 -1.06581e-014, -21.8636 -3.2 -1.07038e-014, 
+            -21.7534 -3.2 1.13918, -21.831 3.52568e-015 0.652967, -21.7421 3.5891e-015 1.19164, -21.8359 -3.2 0.603689, 
+            -21.831 3.52568e-015 0.652967, -21.7534 -3.2 1.13918, -21.8636 -3.2 -1.07038e-014, -21.831 3.52568e-015 0.652967, 
+            -21.8359 -3.2 0.603689, -21.4514 -3.2 1.99187, -21.7421 3.5891e-015 1.19164, -21.4359 3.68802e-015 2.01981, 
+            -21.7534 -3.2 1.13918, -21.7421 3.5891e-015 1.19164, -21.4514 -3.2 1.99187, -20.9886 -3.2 2.63222, 
+            -21.4359 3.68802e-015 2.01981, -20.9201 3.77163e-015 2.70132, -21.4514 -3.2 1.99187, -21.4359 3.68802e-015 2.01981, 
+            -20.9886 -3.2 2.63222, -20.6769 -3.2 2.91493, -20.9201 3.77163e-015 2.70132, -20.5599 3.80975e-015 3.00301, 
+            -20.9886 -3.2 2.63222, -20.9201 3.77163e-015 2.70132, -20.6769 -3.2 2.91493, -20.2908 -3.2 3.18052, 
+            -20.5599 3.80975e-015 3.00301, -20.1304 3.8446e-015 3.27171, -20.6769 -3.2 2.91493, -20.5599 3.80975e-015 3.00301, 
+            -20.2908 -3.2 3.18052, -19.8137 -3.2 3.42839, -20.1304 3.8446e-015 3.27171, -19.6332 3.87605e-015 3.50631, 
+            -20.2908 -3.2 3.18052, -20.1304 3.8446e-015 3.27171, -19.8137 -3.2 3.42839, -19.2339 -3.2 3.65488, 
+            -19.6332 3.87605e-015 3.50631, -19.0801 3.90382e-015 3.70523, -19.8137 -3.2 3.42839, -19.6332 3.87605e-015 3.50631, 
+            -19.2339 -3.2 3.65488, -18.5414 -3.2 3.85609, -19.0801 3.90382e-015 3.70523, -18.4513 3.92921e-015 3.87826, 
+            -19.2339 -3.2 3.65488, -19.0801 3.90382e-015 3.70523, -18.5414 -3.2 3.85609, -18.5414 -3.2 3.85609, 
+            -18.4513 3.92921e-015 3.87826, -17.7291 3.95283e-015 4.02942, -17.7247 -3.2 4.03023, -17.7291 3.95283e-015 4.02942, 
+            -16.9715 3.97316e-015 4.14976, -18.5414 -3.2 3.85609, -17.7291 3.95283e-015 4.02942, -17.7247 -3.2 4.03023, 
+            -16.7707 -3.2 4.17661, -16.9715 3.97316e-015 4.14976, -16.14 3.99173e-015 4.24968, -17.7247 -3.2 4.03023, 
+            -16.9715 3.97316e-015 4.14976, -16.7707 -3.2 4.17661, -15.6664 -3.2 4.2951, -16.14 3.99173e-015 4.24968, 
+            -15.233 4.00874e-015 4.33074, -16.7707 -3.2 4.17661, -16.14 3.99173e-015 4.24968, -15.6664 -3.2 4.2951, 
+            -14.8403 -3.2 4.35877, -15.233 4.00874e-015 4.33074, -14.254 4.0243e-015 4.39414, -15.6664 -3.2 4.2951, 
+            -15.233 4.00874e-015 4.33074, -14.8403 -3.2 4.35877, -13.9397 -3.2 4.41026, -14.254 4.0243e-015 4.39414, 
+            -13.1964 4.03866e-015 4.44166, -14.8403 -3.2 4.35877, -14.254 4.0243e-015 4.39414, -13.9397 -3.2 4.41026, 
+            -12.9582 -3.2 4.44994, -13.1964 4.03866e-015 4.44166, -12.0566 4.05201e-015 4.4745, -13.9397 -3.2 4.41026, 
+            -13.1964 4.03866e-015 4.44166, -12.9582 -3.2 4.44994, -11.8945 -3.2 4.47789, -12.0566 4.05201e-015 4.4745, 
+            -11.2479 4.06042e-015 4.48877, -12.9582 -3.2 4.44994, -12.0566 4.05201e-015 4.4745, -11.8945 -3.2 4.47789, 
+            -10.7413 -3.2 4.49461, -11.2479 4.06042e-015 4.48877, -10.3951 4.06853e-015 4.49722, -11.8945 -3.2 4.47789, 
+            -11.2479 4.06042e-015 4.48877, -10.7413 -3.2 4.49461, -9.5 -3.2 4.5, -9.5 2.09071 3.98478, 
+            -9.5 2.24096 3.90222, -9.5 2.98387 3.36847, -9.5 2.24096 3.90222, -10.6198 2.23861 3.89858, 
+            -9.5 -3.2 4.5, -9.5 2.24096 3.90222, -9.5 2.98387 3.36847, -10.6198 3.1722 3.18551, 
+            -10.6198 2.23861 3.89858, -11.7296 2.23139 3.886, -9.5 3.1751 3.18877, -9.5 2.98387 3.36847, 
+            -10.6198 2.23861 3.89858, -10.6198 3.1722 3.18551, -9.5 3.1751 3.18877, -10.6198 2.23861 3.89858, 
+            -11.7296 3.16196 3.17523, -11.7296 2.23139 3.886, -12.8269 2.21798 3.86264, -11.7296 3.16196 3.17523, 
+            -10.6198 3.1722 3.18551, -11.7296 2.23139 3.886, -12.8269 3.14296 3.15615, -12.8269 2.21798 3.86264, 
+            -13.9087 2.19687 3.82588, -12.8269 3.14296 3.15615, -11.7296 3.16196 3.17523, -12.8269 2.21798 3.86264, 
+            -13.9087 3.11304 3.12611, -13.9087 2.19687 3.82588, -14.9711 2.16605 3.77221, -13.9087 3.11304 3.12611, 
+            -12.8269 3.14296 3.15615, -13.9087 2.19687 3.82588, -14.9711 3.06937 3.08225, -14.9711 2.16605 3.77221, 
+            -16.0085 2.12281 3.69691, -14.9711 3.06937 3.08225, -13.9087 3.11304 3.12611, -14.9711 2.16605 3.77221, 
+            -16.0085 3.0081 3.02073, -16.0085 2.12281 3.69691, -17.0136 2.06349 3.59359, -16.0085 3.0081 3.02073, 
+            -14.9711 3.06937 3.08225, -16.0085 2.12281 3.69691, -17.0136 2.92403 2.93631, -17.0136 2.06349 3.59359, 
+            -17.9763 1.98305 3.45351, -17.0136 2.92403 2.93631, -16.0085 3.0081 3.02073, -17.0136 2.06349 3.59359, 
+            -17.9763 2.81005 2.82184, -17.9763 1.98305 3.45351, -18.8828 1.87463 3.26469, -17.9763 2.81005 2.82184, 
+            -17.0136 2.92403 2.93631, -17.9763 1.98305 3.45351, -18.8828 2.65642 2.66757, -18.8828 1.87463 3.26469, 
+            -19.7146 1.72899 3.01106, -18.8828 2.65642 2.66757, -17.9763 2.81005 2.82184, -18.8828 1.87463 3.26469, 
+            -19.7146 2.45004 2.46033, -19.7146 1.72899 3.01106, -20.4476 1.53419 2.67181, -19.7146 2.45004 2.46033, 
+            -18.8828 2.65642 2.66757, -19.7146 1.72899 3.01106, -20.4476 2.174 2.18313, -20.4476 1.53419 2.67181, 
+            -21.0534 1.27602 2.2222, -20.4476 2.174 2.18313, -19.7146 2.45004 2.46033, -20.4476 1.53419 2.67181, 
+            -21.0534 1.80816 1.81575, -21.0534 1.27602 2.2222, -21.503 0.940067 1.63714, -21.0534 1.80816 1.81575, 
+            -20.4476 2.174 2.18313, -21.0534 1.27602 2.2222, -21.503 1.33211 1.3377, -21.503 0.940067 1.63714, 
+            -21.775 0.51566 0.898028, -21.503 1.33211 1.3377, -21.0534 1.80816 1.81575, -21.503 0.940067 1.63714, 
+            -21.775 0.730708 0.733775, -21.503 1.33211 1.3377, -21.775 0.51566 0.898028, -9.5 -3.2 4.5, 
+            -9.5 2.98387 3.36847, -9.5 3.1751 3.18877, -9.5 3.70337 2.55637, -9.5 3.1751 3.18877, 
+            -10.6198 3.1722 3.18551, -9.5 -3.2 4.5, -9.5 3.1751 3.18877, -9.5 3.70337 2.55637, 
+            -10.6198 3.88917 2.25492, -10.6198 3.1722 3.18551, -11.7296 3.16196 3.17523, -9.5 3.89266 2.2577, 
+            -9.5 3.70337 2.55637, -10.6198 3.1722 3.18551, -10.6198 3.88917 2.25492, -9.5 3.89266 2.2577, 
+            -10.6198 3.1722 3.18551, -11.7296 3.87661 2.24765, -11.7296 3.16196 3.17523, -12.8269 3.14296 3.15615, 
+            -11.7296 3.87661 2.24765, -10.6198 3.88917 2.25492, -11.7296 3.16196 3.17523, -12.8269 3.85332 2.23414, 
+            -12.8269 3.14296 3.15615, -13.9087 3.11304 3.12611, -12.8269 3.85332 2.23414, -11.7296 3.87661 2.24765, 
+            -12.8269 3.14296 3.15615, -13.9087 3.81665 2.21288, -13.9087 3.11304 3.12611, -14.9711 3.06937 3.08225, 
+            -13.9087 3.81665 2.21288, -12.8269 3.85332 2.23414, -13.9087 3.11304 3.12611, -14.9711 3.7631 2.18183, 
+            -14.9711 3.06937 3.08225, -16.0085 3.0081 3.02073, -14.9711 3.7631 2.18183, -13.9087 3.81665 2.21288, 
+            -14.9711 3.06937 3.08225, -16.0085 3.68799 2.13828, -16.0085 3.0081 3.02073, -17.0136 2.92403 2.93631, 
+            -16.0085 3.68799 2.13828, -14.9711 3.7631 2.18183, -16.0085 3.0081 3.02073, -17.0136 3.58492 2.07852, 
+            -17.0136 2.92403 2.93631, -17.9763 2.81005 2.82184, -17.0136 3.58492 2.07852, -16.0085 3.68799 2.13828, 
+            -17.0136 2.92403 2.93631, -17.9763 3.44517 1.9975, -17.9763 2.81005 2.82184, -18.8828 2.65642 2.66757, 
+            -17.9763 3.44517 1.9975, -17.0136 3.58492 2.07852, -17.9763 2.81005 2.82184, -18.8828 3.25681 1.88829, 
+            -18.8828 2.65642 2.66757, -19.7146 2.45004 2.46033, -18.8828 3.25681 1.88829, -17.9763 3.44517 1.9975, 
+            -18.8828 2.65642 2.66757, -19.7146 3.00379 1.74159, -19.7146 2.45004 2.46033, -20.4476 2.174 2.18313, 
+            -19.7146 3.00379 1.74159, -18.8828 3.25681 1.88829, -19.7146 2.45004 2.46033, -20.4476 2.66536 1.54537, 
+            -20.4476 2.174 2.18313, -21.0534 1.80816 1.81575, -20.4476 2.66536 1.54537, -19.7146 3.00379 1.74159, 
+            -20.4476 2.174 2.18313, -21.0534 2.21684 1.28531, -21.0534 1.80816 1.81575, -21.503 1.33211 1.3377, 
+            -21.0534 2.21684 1.28531, -20.4476 2.66536 1.54537, -21.0534 1.80816 1.81575, -21.503 1.63319 0.946917, 
+            -21.503 1.33211 1.3377, -21.775 0.730708 0.733775, -21.503 1.63319 0.946917, -21.0534 2.21684 1.28531, 
+            -21.503 1.33211 1.3377, -21.775 0.895861 0.519417, -21.503 1.63319 0.946917, -21.775 0.730708 0.733775, 
+            -9.5 -3.2 4.5, -9.5 3.70337 2.55637, -9.5 3.89266 2.2577, -9.5 4.2077 1.59542, 
+            -9.5 3.89266 2.2577, -10.6198 3.88917 2.25492, -9.5 -3.2 4.5, -9.5 3.89266 2.2577, 
+            -9.5 4.2077 1.59542, -10.6198 4.34057 1.17036, -10.6198 3.88917 2.25492, -11.7296 3.87661 2.24765, 
+            -9.5 4.3447 1.17206, -9.5 4.2077 1.59542, -10.6198 3.88917 2.25492, -10.6198 4.34057 1.17036, 
+            -9.5 4.3447 1.17206, -10.6198 3.88917 2.25492, -11.7296 4.32656 1.16659, -11.7296 3.87661 2.24765, 
+            -12.8269 3.85332 2.23414, -11.7296 4.32656 1.16659, -10.6198 4.34057 1.17036, -11.7296 3.87661 2.24765, 
+            -12.8269 4.30056 1.15958, -12.8269 3.85332 2.23414, -13.9087 3.81665 2.21288, -12.8269 4.30056 1.15958, 
+            -11.7296 4.32656 1.16659, -12.8269 3.85332 2.23414, -13.9087 4.25963 1.14854, -13.9087 3.81665 2.21288, 
+            -14.9711 3.7631 2.18183, -13.9087 4.25963 1.14854, -12.8269 4.30056 1.15958, -13.9087 3.81665 2.21288, 
+            -14.9711 4.19987 1.13243, -14.9711 3.7631 2.18183, -16.0085 3.68799 2.13828, -14.9711 4.19987 1.13243, 
+            -13.9087 4.25963 1.14854, -14.9711 3.7631 2.18183, -16.0085 4.11604 1.10982, -16.0085 3.68799 2.13828, 
+            -17.0136 3.58492 2.07852, -16.0085 4.11604 1.10982, -14.9711 4.19987 1.13243, -16.0085 3.68799 2.13828, 
+            -17.0136 4.00101 1.07881, -17.0136 3.58492 2.07852, -17.9763 3.44517 1.9975, -17.0136 4.00101 1.07881, 
+            -16.0085 4.11604 1.10982, -17.0136 3.58492 2.07852, -17.9763 3.84504 1.03675, -17.9763 3.44517 1.9975, 
+            -18.8828 3.25681 1.88829, -17.9763 3.84504 1.03675, -17.0136 4.00101 1.07881, -17.9763 3.44517 1.9975, 
+            -18.8828 3.63482 0.980069, -18.8828 3.25681 1.88829, -19.7146 3.00379 1.74159, -18.8828 3.63482 0.980069, 
+            -17.9763 3.84504 1.03675, -18.8828 3.25681 1.88829, -19.7146 3.35244 0.903929, -19.7146 3.00379 1.74159, 
+            -20.4476 2.66536 1.54537, -19.7146 3.35244 0.903929, -18.8828 3.63482 0.980069, -19.7146 3.00379 1.74159, 
+            -20.4476 2.97472 0.802085, -20.4476 2.66536 1.54537, -21.0534 2.21684 1.28531, -20.4476 2.97472 0.802085, 
+            -19.7146 3.35244 0.903929, -20.4476 2.66536 1.54537, -21.0534 2.47414 0.667111, -21.0534 2.21684 1.28531, 
+            -21.503 1.63319 0.946917, -21.0534 2.47414 0.667111, -20.4476 2.97472 0.802085, -21.0534 2.21684 1.28531, 
+            -21.503 1.82275 0.491474, -21.503 1.63319 0.946917, -21.775 0.895861 0.519417, -21.503 1.82275 0.491474, 
+            -21.0534 2.47414 0.667111, -21.503 1.63319 0.946917, -21.775 0.99984 0.26959, -21.503 1.82275 0.491474, 
+            -21.775 0.895861 0.519417, -9.5 -3.2 4.5, -9.5 4.2077 1.59542, -9.5 4.3447 1.17206, 
+            -9.5 4.46716 0.541892, -9.5 4.3447 1.17206, -10.6198 4.34057 1.17036, -9.5 -3.2 4.5, 
+            -9.5 4.3447 1.17206, -9.5 4.46716 0.541892, -10.6198 4.49558 0.00588471, -10.6198 4.34057 1.17036, 
+            -11.7296 4.32656 1.16659, -9.5 4.50001 0.0058901, -9.5 4.46716 0.541892, -10.6198 4.34057 1.17036, 
+            -10.6198 4.49558 0.00588471, -9.5 4.50001 0.0058901, -10.6198 4.34057 1.17036, -11.7296 4.48107 0.00586571, 
+            -11.7296 4.32656 1.16659, -12.8269 4.30056 1.15958, -11.7296 4.48107 0.00586571, -10.6198 4.49558 0.00588471, 
+            -11.7296 4.32656 1.16659, -12.8269 4.45415 0.00583047, -12.8269 4.30056 1.15958, -13.9087 4.25963 1.14854, 
+            -12.8269 4.45415 0.00583047, -11.7296 4.48107 0.00586571, -12.8269 4.30056 1.15958, -13.9087 4.41175 0.00577498, 
+            -13.9087 4.25963 1.14854, -14.9711 4.19987 1.13243, -13.9087 4.41175 0.00577498, -12.8269 4.45415 0.00583047, 
+            -13.9087 4.25963 1.14854, -14.9711 4.34986 0.00569396, -14.9711 4.19987 1.13243, -16.0085 4.11604 1.10982, 
+            -14.9711 4.34986 0.00569396, -13.9087 4.41175 0.00577498, -14.9711 4.19987 1.13243, -16.0085 4.26303 0.0055803, 
+            -16.0085 4.11604 1.10982, -17.0136 4.00101 1.07881, -16.0085 4.26303 0.0055803, -14.9711 4.34986 0.00569396, 
+            -16.0085 4.11604 1.10982, -17.0136 4.14389 0.00542435, -17.0136 4.00101 1.07881, -17.9763 3.84504 1.03675, 
+            -17.0136 4.14389 0.00542435, -16.0085 4.26303 0.0055803, -17.0136 4.00101 1.07881, -17.9763 3.98235 0.00521289, 
+            -17.9763 3.84504 1.03675, -18.8828 3.63482 0.980069, -17.9763 3.98235 0.00521289, -17.0136 4.14389 0.00542435, 
+            -17.9763 3.84504 1.03675, -18.8828 3.76463 0.00492789, -18.8828 3.63482 0.980069, -19.7146 3.35244 0.903929, 
+            -18.8828 3.76463 0.00492789, -17.9763 3.98235 0.00521289, -18.8828 3.63482 0.980069, -19.7146 3.47216 0.00454505, 
+            -19.7146 3.35244 0.903929, -20.4476 2.97472 0.802085, -19.7146 3.47216 0.00454505, -18.8828 3.76463 0.00492789, 
+            -19.7146 3.35244 0.903929, -20.4476 3.08096 0.00403297, -20.4476 2.97472 0.802085, -21.0534 2.47414 0.667111, 
+            -20.4476 3.08096 0.00403297, -19.7146 3.47216 0.00454505, -20.4476 2.97472 0.802085, -21.0534 2.5625 0.0033543, 
+            -21.0534 2.47414 0.667111, -21.503 1.82275 0.491474, -21.0534 2.5625 0.0033543, -20.4476 3.08096 0.00403297, 
+            -21.0534 2.47414 0.667111, -21.503 1.88784 0.00247118, -21.503 1.82275 0.491474, -21.775 0.99984 0.26959, 
+            -21.503 1.88784 0.00247118, -21.0534 2.5625 0.0033543, -21.503 1.82275 0.491474, -21.775 1.03555 0.00135553, 
+            -21.503 1.88784 0.00247118, -21.775 0.99984 0.26959, -9.5 -3.2 4.5, -9.5 4.46716 0.541892, 
+            -9.5 4.50001 0.0058901, -9.5 4.46716 -0.541923, -9.5 4.50001 0.0058901, -10.6198 4.49558 0.00588471, 
+            -9.5 -3.2 4.5, -9.5 4.50001 0.0058901, -9.5 4.46716 -0.541923, -10.6198 4.34362 -1.159, 
+            -10.6198 4.49558 0.00588471, -11.7296 4.48107 0.00586571, -9.5 4.34775 -1.16069, -9.5 4.46716 -0.541923, 
+            -10.6198 4.49558 0.00588471, -10.6198 4.34362 -1.159, -9.5 4.34775 -1.16069, -10.6198 4.49558 0.00588471, 
+            -11.7296 4.3296 -1.15525, -11.7296 4.48107 0.00586571, -12.8269 4.45415 0.00583047, -11.7296 4.3296 -1.15525, 
+            -10.6198 4.34362 -1.159, -11.7296 4.48107 0.00586571, -12.8269 4.30358 -1.14831, -12.8269 4.45415 0.00583047, 
+            -13.9087 4.41175 0.00577498, -12.8269 4.30358 -1.14831, -11.7296 4.3296 -1.15525, -12.8269 4.45415 0.00583047, 
+            -13.9087 4.26262 -1.13738, -13.9087 4.41175 0.00577498, -14.9711 4.34986 0.00569396, -13.9087 4.26262 -1.13738, 
+            -12.8269 4.30358 -1.14831, -13.9087 4.41175 0.00577498, -14.9711 4.20282 -1.12143, -14.9711 4.34986 0.00569396, 
+            -16.0085 4.26303 0.0055803, -14.9711 4.20282 -1.12143, -13.9087 4.26262 -1.13738, -14.9711 4.34986 0.00569396, 
+            -16.0085 4.11893 -1.09904, -16.0085 4.26303 0.0055803, -17.0136 4.14389 0.00542435, -16.0085 4.11893 -1.09904, 
+            -14.9711 4.20282 -1.12143, -16.0085 4.26303 0.0055803, -17.0136 4.00382 -1.06833, -17.0136 4.14389 0.00542435, 
+            -17.9763 3.98235 0.00521289, -17.0136 4.00382 -1.06833, -16.0085 4.11893 -1.09904, -17.0136 4.14389 0.00542435, 
+            -17.9763 3.84774 -1.02668, -17.9763 3.98235 0.00521289, -18.8828 3.76463 0.00492789, -17.9763 3.84774 -1.02668, 
+            -17.0136 4.00382 -1.06833, -17.9763 3.98235 0.00521289, -18.8828 3.63737 -0.97055, -18.8828 3.76463 0.00492789, 
+            -19.7146 3.47216 0.00454505, -18.8828 3.63737 -0.97055, -17.9763 3.84774 -1.02668, -18.8828 3.76463 0.00492789, 
+            -19.7146 3.35479 -0.895149, -19.7146 3.47216 0.00454505, -20.4476 3.08096 0.00403297, -19.7146 3.35479 -0.895149, 
+            -18.8828 3.63737 -0.97055, -19.7146 3.47216 0.00454505, -20.4476 2.97681 -0.794294, -20.4476 3.08096 0.00403297, 
+            -21.0534 2.5625 0.0033543, -20.4476 2.97681 -0.794294, -19.7146 3.35479 -0.895149, -20.4476 3.08096 0.00403297, 
+            -21.0534 2.47588 -0.660631, -21.0534 2.5625 0.0033543, -21.503 1.88784 0.00247118, -21.0534 2.47588 -0.660631, 
+            -20.4476 2.97681 -0.794294, -21.0534 2.5625 0.0033543, -21.503 1.82403 -0.4867, -21.503 1.88784 0.00247118, 
+            -21.775 1.03555 0.00135553, -21.503 1.82403 -0.4867, -21.0534 2.47588 -0.660631, -21.503 1.88784 0.00247118, 
+            -21.775 1.00054 -0.266972, -21.503 1.82403 -0.4867, -21.775 1.03555 0.00135553, -9.5 -3.2 4.5, 
+            -9.5 4.46716 -0.541923, -9.5 4.34775 -1.16069, -9.5 4.20768 -1.59545, -9.5 4.34775 -1.16069, 
+            -10.6198 4.34362 -1.159, -9.5 -3.2 4.5, -9.5 4.34775 -1.16069, -9.5 4.20768 -1.59545, 
+            -10.6198 3.89506 -2.24474, -10.6198 4.34362 -1.159, -11.7296 4.3296 -1.15525, -9.5 3.89853 -2.24754, 
+            -9.5 4.20768 -1.59545, -10.6198 4.34362 -1.159, -10.6198 3.89506 -2.24474, -9.5 3.89853 -2.24754, 
+            -10.6198 4.34362 -1.159, -11.7296 3.88249 -2.23749, -11.7296 4.3296 -1.15525, -12.8269 4.30358 -1.14831, 
+            -11.7296 3.88249 -2.23749, -10.6198 3.89506 -2.24474, -11.7296 4.3296 -1.15525, -12.8269 3.85915 -2.22404, 
+            -12.8269 4.30358 -1.14831, -13.9087 4.26262 -1.13738, -12.8269 3.85915 -2.22404, -11.7296 3.88249 -2.23749, 
+            -12.8269 4.30358 -1.14831, -13.9087 3.82243 -2.20288, -13.9087 4.26262 -1.13738, -14.9711 4.20282 -1.12143, 
+            -13.9087 3.82243 -2.20288, -12.8269 3.85915 -2.22404, -13.9087 4.26262 -1.13738, -14.9711 3.7688 -2.17197, 
+            -14.9711 4.20282 -1.12143, -16.0085 4.11893 -1.09904, -14.9711 3.7688 -2.17197, -13.9087 3.82243 -2.20288, 
+            -14.9711 4.20282 -1.12143, -16.0085 3.69357 -2.12862, -16.0085 4.11893 -1.09904, -17.0136 4.00382 -1.06833, 
+            -16.0085 3.69357 -2.12862, -14.9711 3.7688 -2.17197, -16.0085 4.11893 -1.09904, -17.0136 3.59035 -2.06913, 
+            -17.0136 4.00382 -1.06833, -17.9763 3.84774 -1.02668, -17.0136 3.59035 -2.06913, -16.0085 3.69357 -2.12862, 
+            -17.0136 4.00382 -1.06833, -17.9763 3.45039 -1.98847, -17.9763 3.84774 -1.02668, -18.8828 3.63737 -0.97055, 
+            -17.9763 3.45039 -1.98847, -17.0136 3.59035 -2.06913, -17.9763 3.84774 -1.02668, -18.8828 3.26174 -1.87976, 
+            -18.8828 3.63737 -0.97055, -19.7146 3.35479 -0.895149, -18.8828 3.26174 -1.87976, -17.9763 3.45039 -1.98847, 
+            -18.8828 3.63737 -0.97055, -19.7146 3.00834 -1.73372, -19.7146 3.35479 -0.895149, -20.4476 2.97681 -0.794294, 
+            -19.7146 3.00834 -1.73372, -18.8828 3.26174 -1.87976, -19.7146 3.35479 -0.895149, -20.4476 2.6694 -1.53838, 
+            -20.4476 2.97681 -0.794294, -21.0534 2.47588 -0.660631, -20.4476 2.6694 -1.53838, -19.7146 3.00834 -1.73372, 
+            -20.4476 2.97681 -0.794294, -21.0534 2.22019 -1.27951, -21.0534 2.47588 -0.660631, -21.503 1.82403 -0.4867, 
+            -21.0534 2.22019 -1.27951, -20.4476 2.6694 -1.53838, -21.0534 2.47588 -0.660631, -21.503 1.63566 -0.942638, 
+            -21.503 1.82403 -0.4867, -21.775 1.00054 -0.266972, -21.503 1.63566 -0.942638, -21.0534 2.22019 -1.27951, 
+            -21.503 1.82403 -0.4867, -21.775 0.897217 -0.51707, -21.503 1.63566 -0.942638, -21.775 1.00054 -0.266972, 
+            -9.5 -3.2 4.5, -9.5 4.20768 -1.59545, -9.5 3.89853 -2.24754, -9.5 3.70336 -2.55639, 
+            -9.5 3.89853 -2.24754, -10.6198 3.89506 -2.24474, -9.5 -3.2 4.5, -9.5 3.89853 -2.24754, 
+            -9.5 3.70336 -2.55639, -10.6198 3.18052 -3.1772, -10.6198 3.89506 -2.24474, -11.7296 3.88249 -2.23749, 
+            -9.5 3.18344 -3.18043, -9.5 3.70336 -2.55639, -10.6198 3.89506 -2.24474, -10.6198 3.18052 -3.1772, 
+            -9.5 3.18344 -3.18043, -10.6198 3.89506 -2.24474, -11.7296 3.17026 -3.16694, -11.7296 3.88249 -2.23749, 
+            -12.8269 3.85915 -2.22404, -11.7296 3.17026 -3.16694, -10.6198 3.18052 -3.1772, -11.7296 3.88249 -2.23749, 
+            -12.8269 3.15121 -3.14791, -12.8269 3.85915 -2.22404, -13.9087 3.82243 -2.20288, -12.8269 3.15121 -3.14791, 
+            -11.7296 3.17026 -3.16694, -12.8269 3.85915 -2.22404, -13.9087 3.12122 -3.11795, -13.9087 3.82243 -2.20288, 
+            -14.9711 3.7688 -2.17197, -13.9087 3.12122 -3.11795, -12.8269 3.15121 -3.14791, -13.9087 3.82243 -2.20288, 
+            -14.9711 3.07743 -3.07421, -14.9711 3.7688 -2.17197, -16.0085 3.69357 -2.12862, -14.9711 3.07743 -3.07421, 
+            -13.9087 3.12122 -3.11795, -14.9711 3.7688 -2.17197, -16.0085 3.016 -3.01284, -16.0085 3.69357 -2.12862, 
+            -17.0136 3.59035 -2.06913, -16.0085 3.016 -3.01284, -14.9711 3.07743 -3.07421, -16.0085 3.69357 -2.12862, 
+            -17.0136 2.93171 -2.92864, -17.0136 3.59035 -2.06913, -17.9763 3.45039 -1.98847, -17.0136 2.93171 -2.92864, 
+            -16.0085 3.016 -3.01284, -17.0136 3.59035 -2.06913, -17.9763 2.81743 -2.81448, -17.9763 3.45039 -1.98847, 
+            -18.8828 3.26174 -1.87976, -17.9763 2.81743 -2.81448, -17.0136 2.93171 -2.92864, -17.9763 3.45039 -1.98847, 
+            -18.8828 2.66339 -2.6606, -18.8828 3.26174 -1.87976, -19.7146 3.00834 -1.73372, -18.8828 2.66339 -2.6606, 
+            -17.9763 2.81743 -2.81448, -18.8828 3.26174 -1.87976, -19.7146 2.45648 -2.4539, -19.7146 3.00834 -1.73372, 
+            -20.4476 2.6694 -1.53838, -19.7146 2.45648 -2.4539, -18.8828 2.66339 -2.6606, -19.7146 3.00834 -1.73372, 
+            -20.4476 2.17971 -2.17743, -20.4476 2.6694 -1.53838, -21.0534 2.22019 -1.27951, -20.4476 2.17971 -2.17743, 
+            -19.7146 2.45648 -2.4539, -20.4476 2.6694 -1.53838, -21.0534 1.81291 -1.81101, -21.0534 2.22019 -1.27951, 
+            -21.503 1.63566 -0.942638, -21.0534 1.81291 -1.81101, -20.4476 2.17971 -2.17743, -21.0534 2.22019 -1.27951, 
+            -21.503 1.33561 -1.33421, -21.503 1.63566 -0.942638, -21.775 0.897217 -0.51707, -21.503 1.33561 -1.33421, 
+            -21.0534 1.81291 -1.81101, -21.503 1.63566 -0.942638, -21.775 0.732626 -0.73186, -21.503 1.33561 -1.33421, 
+            -21.775 0.897217 -0.51707, -9.5 -3.2 4.5, -9.5 3.70336 -2.55639, -9.5 3.18344 -3.18043, 
+            -9.5 2.98385 -3.36849, -9.5 3.18344 -3.18043, -10.6198 3.18052 -3.1772, -9.5 -3.2 4.5, 
+            -9.5 3.18344 -3.18043, -9.5 2.98385 -3.36849, -10.6198 2.24881 -3.8927, -10.6198 3.18052 -3.1772, 
+            -11.7296 3.17026 -3.16694, -9.5 2.2512 -3.89632, -9.5 2.98385 -3.36849, -10.6198 3.18052 -3.1772, 
+            -10.6198 2.24881 -3.8927, -9.5 2.2512 -3.89632, -10.6198 3.18052 -3.1772, -11.7296 2.24155 -3.88014, 
+            -11.7296 3.17026 -3.16694, -12.8269 3.15121 -3.14791, -11.7296 2.24155 -3.88014, -10.6198 2.24881 -3.8927, 
+            -11.7296 3.17026 -3.16694, -12.8269 2.22808 -3.85682, -12.8269 3.15121 -3.14791, -13.9087 3.12122 -3.11795, 
+            -12.8269 2.22808 -3.85682, -11.7296 2.24155 -3.88014, -12.8269 3.15121 -3.14791, -13.9087 2.20688 -3.82012, 
+            -13.9087 3.12122 -3.11795, -14.9711 3.07743 -3.07421, -13.9087 2.20688 -3.82012, -12.8269 2.22808 -3.85682, 
+            -13.9087 3.12122 -3.11795, -14.9711 2.17592 -3.76652, -14.9711 3.07743 -3.07421, -16.0085 3.016 -3.01284, 
+            -14.9711 2.17592 -3.76652, -13.9087 2.20688 -3.82012, -14.9711 3.07743 -3.07421, -16.0085 2.13248 -3.69134, 
+            -16.0085 3.016 -3.01284, -17.0136 2.93171 -2.92864, -16.0085 2.13248 -3.69134, -14.9711 2.17592 -3.76652, 
+            -16.0085 3.016 -3.01284, -17.0136 2.07289 -3.58818, -17.0136 2.93171 -2.92864, -17.9763 2.81743 -2.81448, 
+            -17.0136 2.07289 -3.58818, -16.0085 2.13248 -3.69134, -17.0136 2.93171 -2.92864, -17.9763 1.99208 -3.4483, 
+            -17.9763 2.81743 -2.81448, -18.8828 2.66339 -2.6606, -17.9763 1.99208 -3.4483, -17.0136 2.07289 -3.58818, 
+            -17.9763 2.81743 -2.81448, -18.8828 1.88317 -3.25977, -18.8828 2.66339 -2.6606, -19.7146 2.45648 -2.4539, 
+            -18.8828 1.88317 -3.25977, -17.9763 1.99208 -3.4483, -18.8828 2.66339 -2.6606, -19.7146 1.73687 -3.00653, 
+            -19.7146 2.45648 -2.4539, -20.4476 2.17971 -2.17743, -19.7146 1.73687 -3.00653, -18.8828 1.88317 -3.25977, 
+            -19.7146 2.45648 -2.4539, -20.4476 1.54118 -2.66779, -20.4476 2.17971 -2.17743, -21.0534 1.81291 -1.81101, 
+            -20.4476 1.54118 -2.66779, -19.7146 1.73687 -3.00653, -20.4476 2.17971 -2.17743, -21.0534 1.28183 -2.21885, 
+            -21.0534 1.81291 -1.81101, -21.503 1.33561 -1.33421, -21.0534 1.28183 -2.21885, -20.4476 1.54118 -2.66779, 
+            -21.0534 1.81291 -1.81101, -21.503 0.94435 -1.63467, -21.503 1.33561 -1.33421, -21.775 0.732626 -0.73186, 
+            -21.503 0.94435 -1.63467, -21.0534 1.28183 -2.21885, -21.503 1.33561 -1.33421, -21.775 0.518009 -0.896675, 
+            -21.503 0.94435 -1.63467, -21.775 0.732626 -0.73186, -9.5 -3.2 4.5, -9.5 2.98385 -3.36849, 
+            -9.5 2.2512 -3.89632, -9.5 2.09069 -3.9848, -9.5 2.2512 -3.89632, -10.6198 2.24881 -3.8927, 
+            -9.5 -3.2 4.5, -9.5 2.2512 -3.89632, -9.5 2.09069 -3.9848, -10.6198 1.16354 -4.3424, 
+            -10.6198 2.24881 -3.8927, -11.7296 2.24155 -3.88014, -9.5 1.16497 -4.34654, -9.5 2.09069 -3.9848, 
+            -10.6198 2.24881 -3.8927, -10.6198 1.16354 -4.3424, -9.5 1.16497 -4.34654, -10.6198 2.24881 -3.8927, 
+            -11.7296 1.15979 -4.32839, -11.7296 2.24155 -3.88014, -12.8269 2.22808 -3.85682, -11.7296 1.15979 -4.32839, 
+            -10.6198 1.16354 -4.3424, -11.7296 2.24155 -3.88014, -12.8269 1.15282 -4.30238, -12.8269 2.22808 -3.85682, 
+            -13.9087 2.20688 -3.82012, -12.8269 1.15282 -4.30238, -11.7296 1.15979 -4.32839, -12.8269 2.22808 -3.85682, 
+            -13.9087 1.14185 -4.26143, -13.9087 2.20688 -3.82012, -14.9711 2.17592 -3.76652, -13.9087 1.14185 -4.26143, 
+            -12.8269 1.15282 -4.30238, -13.9087 2.20688 -3.82012, -14.9711 1.12583 -4.20165, -14.9711 2.17592 -3.76652, 
+            -16.0085 2.13248 -3.69134, -14.9711 1.12583 -4.20165, -13.9087 1.14185 -4.26143, -14.9711 2.17592 -3.76652, 
+            -16.0085 1.10335 -4.11778, -16.0085 2.13248 -3.69134, -17.0136 2.07289 -3.58818, -16.0085 1.10335 -4.11778, 
+            -14.9711 1.12583 -4.20165, -16.0085 2.13248 -3.69134, -17.0136 1.07252 -4.0027, -17.0136 2.07289 -3.58818, 
+            -17.9763 1.99208 -3.4483, -17.0136 1.07252 -4.0027, -16.0085 1.10335 -4.11778, -17.0136 2.07289 -3.58818, 
+            -17.9763 1.03071 -3.84666, -17.9763 1.99208 -3.4483, -18.8828 1.88317 -3.25977, -17.9763 1.03071 -3.84666, 
+            -17.0136 1.07252 -4.0027, -17.9763 1.99208 -3.4483, -18.8828 0.974359 -3.63636, -18.8828 1.88317 -3.25977, 
+            -19.7146 1.73687 -3.00653, -18.8828 0.974359 -3.63636, -17.9763 1.03071 -3.84666, -18.8828 1.88317 -3.25977, 
+            -19.7146 0.898662 -3.35385, -19.7146 1.73687 -3.00653, -20.4476 1.54118 -2.66779, -19.7146 0.898662 -3.35385, 
+            -18.8828 0.974359 -3.63636, -19.7146 1.73687 -3.00653, -20.4476 0.797411 -2.97598, -20.4476 1.54118 -2.66779, 
+            -21.0534 1.28183 -2.21885, -20.4476 0.797411 -2.97598, -19.7146 0.898662 -3.35385, -20.4476 1.54118 -2.66779, 
+            -21.0534 0.663223 -2.47518, -21.0534 1.28183 -2.21885, -21.503 0.94435 -1.63467, -21.0534 0.663223 -2.47518, 
+            -20.4476 0.797411 -2.97598, -21.0534 1.28183 -2.21885, -21.503 0.48861 -1.82352, -21.503 0.94435 -1.63467, 
+            -21.775 0.518009 -0.896675, -21.503 0.48861 -1.82352, -21.0534 0.663223 -2.47518, -21.503 0.94435 -1.63467, 
+            -21.775 0.26802 -1.00026, -21.503 0.48861 -1.82352, -21.775 0.518009 -0.896675, -9.5 -3.2 4.5, 
+            -9.5 2.09069 -3.9848, -9.5 1.16497 -4.34654, -9.5 1.07687 -4.36918, -9.5 1.16497 -4.34654, 
+            -10.6198 1.16354 -4.3424, -9.5 -3.2 4.5, -9.5 1.16497 -4.34654, -9.5 1.07687 -4.36918, 
+            -11.31 3.56499e-015 -4.48791, -10.6198 1.16354 -4.3424, -11.7296 1.15979 -4.32839, -9.5 -1.38234e-008 -4.5, 
+            -9.5 1.07687 -4.36918, -10.6198 1.16354 -4.3424, -10.4298 3.5724e-015 -4.497, -9.5 -1.38234e-008 -4.5, 
+            -10.6198 1.16354 -4.3424, -11.31 3.56499e-015 -4.48791, -10.4298 3.5724e-015 -4.497, -10.6198 1.16354 -4.3424, 
+            -12.1388 3.55798e-015 -4.47267, -11.7296 1.15979 -4.32839, -12.8269 1.15282 -4.30238, -12.1388 3.55798e-015 -4.47267, 
+            -11.31 3.56499e-015 -4.48791, -11.7296 1.15979 -4.32839, -13.3109 3.54797e-015 -4.43739, -12.8269 1.15282 -4.30238, 
+            -13.9087 1.14185 -4.26143, -13.3109 3.54797e-015 -4.43739, -12.1388 3.55798e-015 -4.47267, -12.8269 1.15282 -4.30238, 
+            -14.3851 3.53869e-015 -4.38685, -13.9087 1.14185 -4.26143, -14.9711 1.12583 -4.20165, -14.3851 3.53869e-015 -4.38685, 
+            -13.3109 3.54797e-015 -4.43739, -13.9087 1.14185 -4.26143, -15.372 3.53003e-015 -4.31988, -14.9711 1.12583 -4.20165, 
+            -16.0085 1.10335 -4.11778, -15.372 3.53003e-015 -4.31988, -14.3851 3.53869e-015 -4.38685, -14.9711 1.12583 -4.20165, 
+            -16.2965 3.52178e-015 -4.23298, -16.0085 1.10335 -4.11778, -17.0136 1.07252 -4.0027, -16.2965 3.52178e-015 -4.23298, 
+            -15.372 3.53003e-015 -4.31988, -16.0085 1.10335 -4.11778, -17.1186 3.51428e-015 -4.12887, -17.0136 1.07252 -4.0027, 
+            -17.9763 1.03071 -3.84666, -17.1186 3.51428e-015 -4.12887, -16.2965 3.52178e-015 -4.23298, -17.0136 1.07252 -4.0027, 
+            -18.6052 3.50009e-015 -3.84006, -17.9763 1.03071 -3.84666, -18.8828 0.974359 -3.63636, -17.8957 3.50699e-015 -3.9982, 
+            -17.1186 3.51428e-015 -4.12887, -17.9763 1.03071 -3.84666, -18.6052 3.50009e-015 -3.84006, -17.8957 3.50699e-015 -3.9982, 
+            -17.9763 1.03071 -3.84666, -19.2195 3.49386e-015 -3.65992, -18.8828 0.974359 -3.63636, -19.7146 0.898662 -3.35385, 
+            -19.2195 3.49386e-015 -3.65992, -18.6052 3.50009e-015 -3.84006, -18.8828 0.974359 -3.63636, -19.7588 3.48809e-015 -3.45299, 
+            -19.7146 0.898662 -3.35385, -20.4476 0.797411 -2.97598, -19.7588 3.48809e-015 -3.45299, -19.2195 3.49386e-015 -3.65992, 
+            -19.7146 0.898662 -3.35385, -20.6456 3.47755e-015 -2.93904, -20.4476 0.797411 -2.97598, -21.0534 0.663223 -2.47518, 
+            -20.2404 3.48259e-015 -3.20992, -19.7588 3.48809e-015 -3.45299, -20.4476 0.797411 -2.97598, -20.6456 3.47755e-015 -2.93904, 
+            -20.2404 3.48259e-015 -3.20992, -20.4476 0.797411 -2.97598, -21.4564 3.46493e-015 -1.98124, -21.0534 0.663223 -2.47518, 
+            -21.503 0.48861 -1.82352, -20.9779 3.47297e-015 -2.6434, -20.6456 3.47755e-015 -2.93904, -21.0534 0.663223 -2.47518, 
+            -21.4564 3.46493e-015 -1.98124, -20.9779 3.47297e-015 -2.6434, -21.0534 0.663223 -2.47518, -21.7454 3.4576e-015 -1.17749, 
+            -21.503 0.48861 -1.82352, -21.775 0.26802 -1.00026, -21.7454 3.4576e-015 -1.17749, -21.4564 3.46493e-015 -1.98124, 
+            -21.503 0.48861 -1.82352, -21.8314 3.45366e-015 -0.649055, -21.7454 3.4576e-015 -1.17749, -21.775 0.26802 -1.00026, 
+            -9.5 -3.2 4.5, -9.5 1.07687 -4.36918, -9.5 -1.38234e-008 -4.5, -9.5 -3.2 -4.5, 
+            -9.5 -1.38234e-008 -4.5, -10.4298 3.5724e-015 -4.497, -9.5 -3.2 4.5, -9.5 -1.38234e-008 -4.5, 
+            -9.5 -3.2 -4.5, -10.7413 -3.2 -4.49461, -10.4298 3.5724e-015 -4.497, -11.31 3.56499e-015 -4.48791, 
+            -10.7413 -3.2 -4.49461, -9.5 -3.2 -4.5, -10.4298 3.5724e-015 -4.497, -11.8945 -3.2 -4.47789, 
+            -11.31 3.56499e-015 -4.48791, -12.1388 3.55798e-015 -4.47267, -10.7413 -3.2 -4.49461, -11.31 3.56499e-015 -4.48791, 
+            -11.8945 -3.2 -4.47789, -12.9582 -3.2 -4.44994, -12.1388 3.55798e-015 -4.47267, -13.3109 3.54797e-015 -4.43739, 
+            -11.8945 -3.2 -4.47789, -12.1388 3.55798e-015 -4.47267, -12.9582 -3.2 -4.44994, -13.9397 -3.2 -4.41026, 
+            -13.3109 3.54797e-015 -4.43739, -14.3851 3.53869e-015 -4.38685, -12.9582 -3.2 -4.44994, -13.3109 3.54797e-015 -4.43739, 
+            -13.9397 -3.2 -4.41026, -14.8403 -3.2 -4.35877, -14.3851 3.53869e-015 -4.38685, -15.372 3.53003e-015 -4.31988, 
+            -13.9397 -3.2 -4.41026, -14.3851 3.53869e-015 -4.38685, -14.8403 -3.2 -4.35877, -15.6664 -3.2 -4.2951, 
+            -15.372 3.53003e-015 -4.31988, -16.2965 3.52178e-015 -4.23298, -14.8403 -3.2 -4.35877, -15.372 3.53003e-015 -4.31988, 
+            -15.6664 -3.2 -4.2951, -16.7707 -3.2 -4.17661, -16.2965 3.52178e-015 -4.23298, -17.1186 3.51428e-015 -4.12887, 
+            -15.6664 -3.2 -4.2951, -16.2965 3.52178e-015 -4.23298, -16.7707 -3.2 -4.17661, -17.7247 -3.2 -4.03023, 
+            -17.1186 3.51428e-015 -4.12887, -17.8957 3.50699e-015 -3.9982, -16.7707 -3.2 -4.17661, -17.1186 3.51428e-015 -4.12887, 
+            -17.7247 -3.2 -4.03023, -18.5414 -3.2 -3.85609, -17.8957 3.50699e-015 -3.9982, -18.6052 3.50009e-015 -3.84006, 
+            -17.7247 -3.2 -4.03023, -17.8957 3.50699e-015 -3.9982, -18.5414 -3.2 -3.85609, -18.5414 -3.2 -3.85609, 
+            -18.6052 3.50009e-015 -3.84006, -19.2195 3.49386e-015 -3.65992, -19.2339 -3.2 -3.65488, -19.2195 3.49386e-015 -3.65992, 
+            -19.7588 3.48809e-015 -3.45299, -18.5414 -3.2 -3.85609, -19.2195 3.49386e-015 -3.65992, -19.2339 -3.2 -3.65488, 
+            -19.8137 -3.2 -3.42839, -19.7588 3.48809e-015 -3.45299, -20.2404 3.48259e-015 -3.20992, -19.2339 -3.2 -3.65488, 
+            -19.7588 3.48809e-015 -3.45299, -19.8137 -3.2 -3.42839, -20.2908 -3.2 -3.18052, -20.2404 3.48259e-015 -3.20992, 
+            -20.6456 3.47755e-015 -2.93904, -19.8137 -3.2 -3.42839, -20.2404 3.48259e-015 -3.20992, -20.2908 -3.2 -3.18052, 
+            -20.6769 -3.2 -2.91493, -20.6456 3.47755e-015 -2.93904, -20.9779 3.47297e-015 -2.6434, -20.2908 -3.2 -3.18052, 
+            -20.6456 3.47755e-015 -2.93904, -20.6769 -3.2 -2.91493, -20.9886 -3.2 -2.63222, -20.9779 3.47297e-015 -2.6434, 
+            -21.4564 3.46493e-015 -1.98124, -20.6769 -3.2 -2.91493, -20.9779 3.47297e-015 -2.6434, -20.9886 -3.2 -2.63222, 
+            -21.4514 -3.2 -1.99187, -21.4564 3.46493e-015 -1.98124, -21.7454 3.4576e-015 -1.17749, -20.9886 -3.2 -2.63222, 
+            -21.4564 3.46493e-015 -1.98124, -21.4514 -3.2 -1.99187, -21.7534 -3.2 -1.13918, -21.7454 3.4576e-015 -1.17749, 
+            -21.8314 3.45366e-015 -0.649055, -21.4514 -3.2 -1.99187, -21.7454 3.4576e-015 -1.17749, -21.7534 -3.2 -1.13918, 
+            -21.7534 -3.2 -1.13918, -21.8314 3.45366e-015 -0.649055, -21.8359 -3.2 -0.603689, -9 -3.2 -6.5, 
+            -9.5 -3.2 4.5, -9.5 -3.2 -4.5, -9.5 -3.2 -6.5, -9.5 -3.2 -4.5, 
+            -10.7413 -3.2 -4.49461, -9.5 -3.2 -6.5, -9 -3.2 -6.5, -9.5 -3.2 -4.5, 
+            -10.5291 -3.2 6.49648, -10.7413 -3.2 4.49461, -9.5 -3.2 4.5, -9.5 -3.2 6.5, 
+            -9.5 -3.2 4.5, -9 -3.2 -6.5, -9.5 -3.2 6.5, -10.5291 -3.2 6.49648, 
+            -9.5 -3.2 4.5, -11.5039 -3.2 6.48523, -11.8945 -3.2 4.47789, -10.7413 -3.2 4.49461, 
+            -10.5291 -3.2 6.49648, -11.5039 -3.2 6.48523, -10.7413 -3.2 4.49461, -12.4231 -3.2 6.4664, 
+            -12.9582 -3.2 4.44994, -11.8945 -3.2 4.47789, -11.5039 -3.2 6.48523, -12.4231 -3.2 6.4664, 
+            -11.8945 -3.2 4.47789, -13.2898 -3.2 6.4396, -13.9397 -3.2 4.41026, -12.9582 -3.2 4.44994, 
+            -12.4231 -3.2 6.4664, -13.2898 -3.2 6.4396, -12.9582 -3.2 4.44994, -14.1079 -3.2 6.40443, 
+            -14.8403 -3.2 4.35877, -13.9397 -3.2 4.41026, -13.2898 -3.2 6.4396, -14.1079 -3.2 6.40443, 
+            -13.9397 -3.2 4.41026, -14.8781 -3.2 6.36064, -15.6664 -3.2 4.2951, -14.8403 -3.2 4.35877, 
+            -14.1079 -3.2 6.40443, -14.8781 -3.2 6.36064, -14.8403 -3.2 4.35877, -15.9501 -3.2 6.27771, 
+            -16.7707 -3.2 4.17661, -15.6664 -3.2 4.2951, -14.8781 -3.2 6.36064, -15.9501 -3.2 6.27771, 
+            -15.6664 -3.2 4.2951, -16.9285 -3.2 6.17259, -17.7247 -3.2 4.03023, -16.7707 -3.2 4.17661, 
+            -15.9501 -3.2 6.27771, -16.9285 -3.2 6.17259, -16.7707 -3.2 4.17661, -17.82 -3.2 6.04356, 
+            -18.5414 -3.2 3.85609, -17.7247 -3.2 4.03023, -16.9285 -3.2 6.17259, -17.82 -3.2 6.04356, 
+            -17.7247 -3.2 4.03023, -18.6326 -3.2 5.88849, -19.2339 -3.2 3.65488, -18.5414 -3.2 3.85609, 
+            -17.82 -3.2 6.04356, -18.6326 -3.2 5.88849, -18.5414 -3.2 3.85609, -19.3749 -3.2 5.70402, 
+            -19.8137 -3.2 3.42839, -19.2339 -3.2 3.65488, -18.6326 -3.2 5.88849, -19.3749 -3.2 5.70402, 
+            -19.2339 -3.2 3.65488, -20.0527 -3.2 5.4875, -20.2908 -3.2 3.18052, -19.8137 -3.2 3.42839, 
+            -19.3749 -3.2 5.70402, -20.0527 -3.2 5.4875, -19.8137 -3.2 3.42839, -20.6701 -3.2 5.23657, 
+            -20.6769 -3.2 2.91493, -20.2908 -3.2 3.18052, -20.0527 -3.2 5.4875, -20.6701 -3.2 5.23657, 
+            -20.2908 -3.2 3.18052, -21.229 -3.2 4.94834, -20.9886 -3.2 2.63222, -20.6769 -3.2 2.91493, 
+            -20.6701 -3.2 5.23657, -21.229 -3.2 4.94834, -20.6769 -3.2 2.91493, -21.229 -3.2 4.94834, 
+            -21.4514 -3.2 1.99187, -20.9886 -3.2 2.63222, -22.1637 -3.2 4.2761, -21.7534 -3.2 1.13918, 
+            -21.4514 -3.2 1.99187, -21.229 -3.2 4.94834, -22.1637 -3.2 4.2761, -21.4514 -3.2 1.99187, 
+            -22.1637 -3.2 4.2761, -21.8359 -3.2 0.603689, -21.7534 -3.2 1.13918, -22.1637 -3.2 4.2761, 
+            -21.8636 -3.2 -1.07038e-014, -21.8359 -3.2 0.603689, -22.1637 -3.2 4.2761, -21.8359 -3.2 -0.603689, 
+            -21.8636 -3.2 -1.07038e-014, -21.229 -3.2 -4.94834, -21.7534 -3.2 -1.13918, -21.8359 -3.2 -0.603689, 
+            -22.1637 -3.2 -4.2761, -21.229 -3.2 -4.94834, -21.8359 -3.2 -0.603689, -22.1637 -3.2 4.2761, 
+            -22.1637 -3.2 -4.2761, -21.8359 -3.2 -0.603689, -21.229 -3.2 -4.94834, -21.4514 -3.2 -1.99187, 
+            -21.7534 -3.2 -1.13918, -21.229 -3.2 -4.94834, -20.9886 -3.2 -2.63222, -21.4514 -3.2 -1.99187, 
+            -20.6701 -3.2 -5.23657, -20.6769 -3.2 -2.91493, -20.9886 -3.2 -2.63222, -21.229 -3.2 -4.94834, 
+            -20.6701 -3.2 -5.23657, -20.9886 -3.2 -2.63222, -20.6701 -3.2 -5.23657, -20.2908 -3.2 -3.18052, 
+            -20.6769 -3.2 -2.91493, -20.0527 -3.2 -5.4875, -19.8137 -3.2 -3.42839, -20.2908 -3.2 -3.18052, 
+            -20.6701 -3.2 -5.23657, -20.0527 -3.2 -5.4875, -20.2908 -3.2 -3.18052, -19.3749 -3.2 -5.70402, 
+            -19.2339 -3.2 -3.65488, -19.8137 -3.2 -3.42839, -20.0527 -3.2 -5.4875, -19.3749 -3.2 -5.70402, 
+            -19.8137 -3.2 -3.42839, -18.6326 -3.2 -5.88849, -18.5414 -3.2 -3.85609, -19.2339 -3.2 -3.65488, 
+            -19.3749 -3.2 -5.70402, -18.6326 -3.2 -5.88849, -19.2339 -3.2 -3.65488, -17.82 -3.2 -6.04356, 
+            -17.7247 -3.2 -4.03023, -18.5414 -3.2 -3.85609, -18.6326 -3.2 -5.88849, -17.82 -3.2 -6.04356, 
+            -18.5414 -3.2 -3.85609, -16.9285 -3.2 -6.17259, -16.7707 -3.2 -4.17661, -17.7247 -3.2 -4.03023, 
+            -17.82 -3.2 -6.04356, -16.9285 -3.2 -6.17259, -17.7247 -3.2 -4.03023, -15.9501 -3.2 -6.27771, 
+            -15.6664 -3.2 -4.2951, -16.7707 -3.2 -4.17661, -16.9285 -3.2 -6.17259, -15.9501 -3.2 -6.27771, 
+            -16.7707 -3.2 -4.17661, -14.8781 -3.2 -6.36064, -14.8403 -3.2 -4.35877, -15.6664 -3.2 -4.2951, 
+            -15.9501 -3.2 -6.27771, -14.8781 -3.2 -6.36064, -15.6664 -3.2 -4.2951, -14.1079 -3.2 -6.40443, 
+            -13.9397 -3.2 -4.41026, -14.8403 -3.2 -4.35877, -14.8781 -3.2 -6.36064, -14.1079 -3.2 -6.40443, 
+            -14.8403 -3.2 -4.35877, -13.2898 -3.2 -6.4396, -12.9582 -3.2 -4.44994, -13.9397 -3.2 -4.41026, 
+            -14.1079 -3.2 -6.40443, -13.2898 -3.2 -6.4396, -13.9397 -3.2 -4.41026, -12.4231 -3.2 -6.4664, 
+            -11.8945 -3.2 -4.47789, -12.9582 -3.2 -4.44994, -13.2898 -3.2 -6.4396, -12.4231 -3.2 -6.4664, 
+            -12.9582 -3.2 -4.44994, -11.5039 -3.2 -6.48523, -10.7413 -3.2 -4.49461, -11.8945 -3.2 -4.47789, 
+            -12.4231 -3.2 -6.4664, -11.5039 -3.2 -6.48523, -11.8945 -3.2 -4.47789, -10.5291 -3.2 -6.49648, 
+            -9.5 -3.2 -6.5, -10.7413 -3.2 -4.49461, -11.5039 -3.2 -6.48523, -10.5291 -3.2 -6.49648, 
+            -10.7413 -3.2 -4.49461, -9.5 -3.2 6.5, -9 -3.2 -6.5, -9 -3.2 6.5, 
+            -9 5.10919e-015 6.5, -9 -3.2 6.5, -9 -3.2 -6.5, -9 5.10919e-015 6.5, 
+            -9.5 -3.2 6.5, -9 -3.2 6.5, -9 1.35124 -6.35793, -9 -3.2 -6.5, 
+            -9 2.80058e-015 -6.5, -9 1.35124 6.35793, -9 5.10919e-015 6.5, -9 -3.2 -6.5, 
+            -9 2.64409 5.93788, -9 1.35124 6.35793, -9 -3.2 -6.5, -9 3.8203 5.25879, 
+            -9 2.64409 5.93788, -9 -3.2 -6.5, -9 4.83051 4.34917, -9 3.8203 5.25879, 
+            -9 -3.2 -6.5, -9 5.62917 3.25, -9 4.83051 4.34917, -9 -3.2 -6.5, 
+            -9 6.18175 2.00875, -9 5.62917 3.25, -9 -3.2 -6.5, -9 6.4644 0.679085, 
+            -9 6.18175 2.00875, -9 -3.2 -6.5, -9 6.4644 -0.679085, -9 6.4644 0.679085, 
+            -9 -3.2 -6.5, -9 6.18175 -2.00875, -9 6.4644 -0.679085, -9 -3.2 -6.5, 
+            -9 5.62917 -3.25, -9 6.18175 -2.00875, -9 -3.2 -6.5, -9 4.83051 -4.34917, 
+            -9 5.62917 -3.25, -9 -3.2 -6.5, -9 3.8203 -5.25879, -9 4.83051 -4.34917, 
+            -9 -3.2 -6.5, -9 2.64409 -5.93788, -9 3.8203 -5.25879, -9 -3.2 -6.5, 
+            -9 1.35124 -6.35793, -9 2.64409 -5.93788, -9 -3.2 -6.5, -22.8769 -3.2 3.48145, 
+            -22.8769 -3.2 -3.48145, -22.1637 -3.2 -4.2761, -22.1637 -3.2 4.2761, -22.8769 -3.2 3.48145, 
+            -22.1637 -3.2 -4.2761, -23.4026 -3.2 2.53736, -23.4026 -3.2 -2.53736, -22.8769 -3.2 -3.48145, 
+            -22.8769 -3.2 3.48145, -23.4026 -3.2 2.53736, -22.8769 -3.2 -3.48145, -23.7419 -3.2 1.39888, 
+            -23.7419 -3.2 -1.39888, -23.4026 -3.2 -2.53736, -23.4026 -3.2 2.53736, -23.7419 -3.2 1.39888, 
+            -23.4026 -3.2 -2.53736, -23.7419 -3.2 1.39888, -23.8636 -3.2 -1.07038e-014, -23.7419 -3.2 -1.39888
+          ]
+        }
+        coordIndex
+        [
+          0,1,2,-1, 3,4,5,-1, 6,7,8,-1, 9,10,11,-1, 12,13,14,-1, 15,16,17,-1, 
+          18,19,20,-1, 21,22,23,-1, 24,25,26,-1, 27,28,29,-1, 30,31,32,-1, 33,34,35,-1, 
+          36,37,38,-1, 39,40,41,-1, 42,43,44,-1, 45,46,47,-1, 48,49,50,-1, 51,52,53,-1, 
+          54,55,56,-1, 57,58,59,-1, 60,61,62,-1, 63,64,65,-1, 66,67,68,-1, 69,70,71,-1, 
+          72,73,74,-1, 75,76,77,-1, 78,79,80,-1, 81,82,83,-1, 84,85,86,-1, 87,88,89,-1, 
+          90,91,92,-1, 93,94,95,-1, 96,97,98,-1, 99,100,101,-1, 102,103,104,-1, 105,106,107,-1, 
+          108,109,110,-1, 111,112,113,-1, 114,115,116,-1, 117,118,119,-1, 120,121,122,-1, 123,124,125,-1, 
+          126,127,128,-1, 129,130,131,-1, 132,133,134,-1, 135,136,137,-1, 138,139,140,-1, 141,142,143,-1, 
+          144,145,146,-1, 147,148,149,-1, 150,151,152,-1, 153,154,155,-1, 156,157,158,-1, 159,160,161,-1, 
+          162,163,164,-1, 165,166,167,-1, 168,169,170,-1, 171,172,173,-1, 174,175,176,-1, 177,178,179,-1, 
+          180,181,182,-1, 183,184,185,-1, 186,187,188,-1, 189,190,191,-1, 192,193,194,-1, 195,196,197,-1, 
+          198,199,200,-1, 201,202,203,-1, 204,205,206,-1, 207,208,209,-1, 210,211,212,-1, 213,214,215,-1, 
+          216,217,218,-1, 219,220,221,-1, 222,223,224,-1, 225,226,227,-1, 228,229,230,-1, 231,232,233,-1, 
+          234,235,236,-1, 237,238,239,-1, 240,241,242,-1, 243,244,245,-1, 246,247,248,-1, 249,250,251,-1, 
+          252,253,254,-1, 255,256,257,-1, 258,259,260,-1, 261,262,263,-1, 264,265,266,-1, 267,268,269,-1, 
+          270,271,272,-1, 273,274,275,-1, 276,277,278,-1, 279,280,281,-1, 282,283,284,-1, 285,286,287,-1, 
+          288,289,290,-1, 291,292,293,-1, 294,295,296,-1, 297,298,299,-1, 300,301,302,-1, 303,304,305,-1, 
+          306,307,308,-1, 309,310,311,-1, 312,313,314,-1, 315,316,317,-1, 318,319,320,-1, 321,322,323,-1, 
+          324,325,326,-1, 327,328,329,-1, 330,331,332,-1, 333,334,335,-1, 336,337,338,-1, 339,340,341,-1, 
+          342,343,344,-1, 345,346,347,-1, 348,349,350,-1, 351,352,353,-1, 354,355,356,-1, 357,358,359,-1, 
+          360,361,362,-1, 363,364,365,-1, 366,367,368,-1, 369,370,371,-1, 372,373,374,-1, 375,376,377,-1, 
+          378,379,380,-1, 381,382,383,-1, 384,385,386,-1, 387,388,389,-1, 390,391,392,-1, 393,394,395,-1, 
+          396,397,398,-1, 399,400,401,-1, 402,403,404,-1, 405,406,407,-1, 408,409,410,-1, 411,412,413,-1, 
+          414,415,416,-1, 417,418,419,-1, 420,421,422,-1, 423,424,425,-1, 426,427,428,-1, 429,430,431,-1, 
+          432,433,434,-1, 435,436,437,-1, 438,439,440,-1, 441,442,443,-1, 444,445,446,-1, 447,448,449,-1, 
+          450,451,452,-1, 453,454,455,-1, 456,457,458,-1, 459,460,461,-1, 462,463,464,-1, 465,466,467,-1, 
+          468,469,470,-1, 471,472,473,-1, 474,475,476,-1, 477,478,479,-1, 480,481,482,-1, 483,484,485,-1, 
+          486,487,488,-1, 489,490,491,-1, 492,493,494,-1, 495,496,497,-1, 498,499,500,-1, 501,502,503,-1, 
+          504,505,506,-1, 507,508,509,-1, 510,511,512,-1, 513,514,515,-1, 516,517,518,-1, 519,520,521,-1, 
+          522,523,524,-1, 525,526,527,-1, 528,529,530,-1, 531,532,533,-1, 534,535,536,-1, 537,538,539,-1, 
+          540,541,542,-1, 543,544,545,-1, 546,547,548,-1, 549,550,551,-1, 552,553,554,-1, 555,556,557,-1, 
+          558,559,560,-1, 561,562,563,-1, 564,565,566,-1, 567,568,569,-1, 570,571,572,-1, 573,574,575,-1, 
+          576,577,578,-1, 579,580,581,-1, 582,583,584,-1, 585,586,587,-1, 588,589,590,-1, 591,592,593,-1, 
+          594,595,596,-1, 597,598,599,-1, 600,601,602,-1, 603,604,605,-1, 606,607,608,-1, 609,610,611,-1, 
+          612,613,614,-1, 615,616,617,-1, 618,619,620,-1, 621,622,623,-1, 624,625,626,-1, 627,628,629,-1, 
+          630,631,632,-1, 633,634,635,-1, 636,637,638,-1, 639,640,641,-1, 642,643,644,-1, 645,646,647,-1, 
+          648,649,650,-1, 651,652,653,-1, 654,655,656,-1, 657,658,659,-1, 660,661,662,-1, 663,664,665,-1, 
+          666,667,668,-1, 669,670,671,-1, 672,673,674,-1, 675,676,677,-1, 678,679,680,-1, 681,682,683,-1, 
+          684,685,686,-1, 687,688,689,-1, 690,691,692,-1, 693,694,695,-1, 696,697,698,-1, 699,700,701,-1, 
+          702,703,704,-1, 705,706,707,-1, 708,709,710,-1, 711,712,713,-1, 714,715,716,-1, 717,718,719,-1, 
+          720,721,722,-1, 723,724,725,-1, 726,727,728,-1, 729,730,731,-1, 732,733,734,-1, 735,736,737,-1, 
+          738,739,740,-1, 741,742,743,-1, 744,745,746,-1, 747,748,749,-1, 750,751,752,-1, 753,754,755,-1, 
+          756,757,758,-1, 759,760,761,-1, 762,763,764,-1, 765,766,767,-1, 768,769,770,-1, 771,772,773,-1, 
+          774,775,776,-1, 777,778,779,-1, 780,781,782,-1, 783,784,785,-1, 786,787,788,-1, 789,790,791,-1, 
+          792,793,794,-1, 795,796,797,-1, 798,799,800,-1, 801,802,803,-1, 804,805,806,-1, 807,808,809,-1, 
+          810,811,812,-1, 813,814,815,-1, 816,817,818,-1, 819,820,821,-1, 822,823,824,-1, 825,826,827,-1, 
+          828,829,830,-1, 831,832,833,-1, 834,835,836,-1, 837,838,839,-1, 840,841,842,-1, 843,844,845,-1, 
+          846,847,848,-1, 849,850,851,-1, 852,853,854,-1, 855,856,857,-1, 858,859,860,-1, 861,862,863,-1, 
+          864,865,866,-1, 867,868,869,-1, 870,871,872,-1, 873,874,875,-1, 876,877,878,-1, 879,880,881,-1, 
+          882,883,884,-1, 885,886,887,-1, 888,889,890,-1, 891,892,893,-1, 894,895,896,-1, 897,898,899,-1, 
+          900,901,902,-1, 903,904,905,-1, 906,907,908,-1, 909,910,911,-1, 912,913,914,-1, 915,916,917,-1, 
+          918,919,920,-1, 921,922,923,-1, 924,925,926,-1, 927,928,929,-1, 930,931,932,-1, 933,934,935,-1, 
+          936,937,938,-1, 939,940,941,-1, 942,943,944,-1, 945,946,947,-1, 948,949,950,-1, 951,952,953,-1, 
+          954,955,956,-1, 957,958,959,-1, 960,961,962,-1, 963,964,965,-1, 966,967,968,-1, 969,970,971,-1, 
+          972,973,974,-1, 975,976,977,-1, 978,979,980,-1, 981,982,983,-1, 984,985,986,-1, 987,988,989,-1, 
+          990,991,992,-1, 993,994,995,-1, 996,997,998,-1, 999,1000,1001,-1, 1002,1003,1004,-1, 1005,1006,1007,-1, 
+          1008,1009,1010,-1, 1011,1012,1013,-1, 1014,1015,1016,-1, 1017,1018,1019,-1, 1020,1021,1022,-1, 1023,1024,1025,-1, 
+          1026,1027,1028,-1, 1029,1030,1031,-1, 1032,1033,1034,-1, 1035,1036,1037,-1, 1038,1039,1040,-1, 1041,1042,1043,-1, 
+          1044,1045,1046,-1, 1047,1048,1049,-1, 1050,1051,1052,-1, 1053,1054,1055,-1, 1056,1057,1058,-1, 1059,1060,1061,-1, 
+          1062,1063,1064,-1, 1065,1066,1067,-1, 1068,1069,1070,-1, 1071,1072,1073,-1, 1074,1075,1076,-1, 1077,1078,1079,-1, 
+          1080,1081,1082,-1, 1083,1084,1085,-1, 1086,1087,1088,-1, 1089,1090,1091,-1, 1092,1093,1094,-1, 1095,1096,1097,-1, 
+          1098,1099,1100,-1, 1101,1102,1103,-1, 1104,1105,1106,-1, 1107,1108,1109,-1, 1110,1111,1112,-1, 1113,1114,1115,-1, 
+          1116,1117,1118,-1, 1119,1120,1121,-1, 1122,1123,1124,-1, 1125,1126,1127,-1, 1128,1129,1130,-1, 1131,1132,1133,-1, 
+          1134,1135,1136,-1, 1137,1138,1139,-1, 1140,1141,1142,-1, 1143,1144,1145,-1, 1146,1147,1148,-1, 1149,1150,1151,-1, 
+          1152,1153,1154,-1, 1155,1156,1157,-1, 1158,1159,1160,-1, 1161,1162,1163,-1, 1164,1165,1166,-1, 1167,1168,1169,-1, 
+          1170,1171,1172,-1, 1173,1174,1175,-1, 1176,1177,1178,-1, 1179,1180,1181,-1, 1182,1183,1184,-1, 1185,1186,1187,-1, 
+          1188,1189,1190,-1, 1191,1192,1193,-1, 1194,1195,1196,-1, 1197,1198,1199,-1, 1200,1201,1202,-1, 1203,1204,1205,-1, 
+          1206,1207,1208,-1, 1209,1210,1211,-1, 1212,1213,1214,-1, 1215,1216,1217,-1, 1218,1219,1220,-1, 1221,1222,1223,-1, 
+          1224,1225,1226,-1, 1227,1228,1229,-1, 1230,1231,1232,-1, 1233,1234,1235,-1, 1236,1237,1238,-1, 1239,1240,1241,-1, 
+          1242,1243,1244,-1, 1245,1246,1247,-1, 1248,1249,1250,-1, 1251,1252,1253,-1, 1254,1255,1256,-1, 1257,1258,1259,-1, 
+          1260,1261,1262,-1, 1263,1264,1265,-1, 1266,1267,1268,-1, 1269,1270,1271,-1, 1272,1273,1274,-1, 1275,1276,1277,-1, 
+          1278,1279,1280,-1, 1281,1282,1283,-1, 1284,1285,1286,-1, 1287,1288,1289,-1, 1290,1291,1292,-1, 1293,1294,1295,-1, 
+          1296,1297,1298,-1, 1299,1300,1301,-1, 1302,1303,1304,-1, 1305,1306,1307,-1, 1308,1309,1310,-1, 1311,1312,1313,-1, 
+          1314,1315,1316,-1, 1317,1318,1319,-1, 1320,1321,1322,-1, 1323,1324,1325,-1, 1326,1327,1328,-1, 1329,1330,1331,-1, 
+          1332,1333,1334,-1, 1335,1336,1337,-1, 1338,1339,1340,-1, 1341,1342,1343,-1, 1344,1345,1346,-1, 1347,1348,1349,-1, 
+          1350,1351,1352,-1, 1353,1354,1355,-1, 1356,1357,1358,-1, 1359,1360,1361,-1, 1362,1363,1364,-1, 1365,1366,1367,-1, 
+          1368,1369,1370,-1, 1371,1372,1373,-1, 1374,1375,1376,-1, 1377,1378,1379,-1, 1380,1381,1382,-1, 1383,1384,1385,-1, 
+          1386,1387,1388,-1, 1389,1390,1391,-1, 1392,1393,1394,-1, 1395,1396,1397,-1, 1398,1399,1400,-1, 1401,1402,1403,-1, 
+          1404,1405,1406,-1, 1407,1408,1409,-1, 1410,1411,1412,-1, 1413,1414,1415,-1, 1416,1417,1418,-1, 1419,1420,1421,-1, 
+          1422,1423,1424,-1, 1425,1426,1427,-1, 1428,1429,1430,-1, 1431,1432,1433,-1, 1434,1435,1436,-1, 1437,1438,1439,-1, 
+          1440,1441,1442,-1, 1443,1444,1445,-1, 1446,1447,1448,-1, 1449,1450,1451,-1, 1452,1453,1454,-1, 1455,1456,1457,-1, 
+          1458,1459,1460,-1, 1461,1462,1463,-1, 1464,1465,1466,-1, 1467,1468,1469,-1, 1470,1471,1472,-1, 1473,1474,1475,-1, 
+          1476,1477,1478,-1, 1479,1480,1481,-1, 1482,1483,1484,-1, 1485,1486,1487,-1, 1488,1489,1490,-1, 1491,1492,1493,-1, 
+          1494,1495,1496,-1, 1497,1498,1499,-1, 1500,1501,1502,-1, 1503,1504,1505,-1, 1506,1507,1508,-1, 1509,1510,1511,-1, 
+          1512,1513,1514,-1, 1515,1516,1517,-1, 1518,1519,1520,-1, 1521,1522,1523,-1, 1524,1525,1526,-1, 1527,1528,1529,-1, 
+          1530,1531,1532,-1, 1533,1534,1535,-1, 1536,1537,1538,-1, 1539,1540,1541,-1, 1542,1543,1544,-1, 1545,1546,1547,-1, 
+          1548,1549,1550,-1, 1551,1552,1553,-1, 1554,1555,1556,-1, 1557,1558,1559,-1, 1560,1561,1562,-1, 1563,1564,1565,-1, 
+          1566,1567,1568,-1, 1569,1570,1571,-1, 1572,1573,1574,-1, 1575,1576,1577,-1, 1578,1579,1580,-1, 1581,1582,1583,-1, 
+          1584,1585,1586,-1, 1587,1588,1589,-1, 1590,1591,1592,-1, 1593,1594,1595,-1, 1596,1597,1598,-1, 1599,1600,1601,-1, 
+          1602,1603,1604,-1, 1605,1606,1607,-1, 1608,1609,1610,-1, 1611,1612,1613,-1, 1614,1615,1616,-1, 1617,1618,1619,-1, 
+          1620,1621,1622,-1, 1623,1624,1625,-1, 1626,1627,1628,-1, 1629,1630,1631,-1, 1632,1633,1634,-1, 1635,1636,1637,-1, 
+          1638,1639,1640,-1, 1641,1642,1643,-1, 1644,1645,1646,-1, 1647,1648,1649,-1, 1650,1651,1652,-1, 1653,1654,1655,-1, 
+          1656,1657,1658,-1, 1659,1660,1661,-1, 1662,1663,1664,-1, 1665,1666,1667,-1, 1668,1669,1670,-1, 1671,1672,1673,-1, 
+          1674,1675,1676,-1, 1677,1678,1679,-1, 1680,1681,1682,-1, 1683,1684,1685,-1, 1686,1687,1688,-1, 1689,1690,1691,-1, 
+          1692,1693,1694,-1, 1695,1696,1697,-1, 1698,1699,1700,-1, 1701,1702,1703,-1, 1704,1705,1706,-1, 1707,1708,1709,-1, 
+          1710,1711,1712,-1, 1713,1714,1715,-1, 1716,1717,1718,-1, 1719,1720,1721,-1, 1722,1723,1724,-1, 1725,1726,1727,-1, 
+          1728,1729,1730,-1, 1731,1732,1733,-1, 1734,1735,1736,-1, 1737,1738,1739,-1, 1740,1741,1742,-1, 1743,1744,1745,-1, 
+          1746,1747,1748,-1, 1749,1750,1751,-1, 1752,1753,1754,-1, 1755,1756,1757,-1, 1758,1759,1760,-1, 1761,1762,1763,-1, 
+          1764,1765,1766,-1, 1767,1768,1769,-1, 1770,1771,1772,-1, 1773,1774,1775,-1, 1776,1777,1778,-1, 1779,1780,1781,-1, 
+          1782,1783,1784,-1, 1785,1786,1787,-1, 1788,1789,1790,-1, 1791,1792,1793,-1, 1794,1795,1796,-1, 1797,1798,1799,-1, 
+          1800,1801,1802,-1, 1803,1804,1805,-1, 1806,1807,1808,-1, 1809,1810,1811,-1, 1812,1813,1814,-1, 1815,1816,1817,-1, 
+          1818,1819,1820,-1, 1821,1822,1823,-1, 1824,1825,1826,-1, 1827,1828,1829,-1, 1830,1831,1832,-1, 1833,1834,1835,-1, 
+          1836,1837,1838,-1, 1839,1840,1841,-1, 1842,1843,1844,-1, 1845,1846,1847,-1, 1848,1849,1850,-1, 1851,1852,1853,-1, 
+          1854,1855,1856,-1, 1857,1858,1859,-1, 1860,1861,1862,-1, 1863,1864,1865,-1, 1866,1867,1868,-1, 1869,1870,1871,-1, 
+          1872,1873,1874,-1, 1875,1876,1877,-1, 1878,1879,1880,-1, 1881,1882,1883,-1, 1884,1885,1886,-1, 1887,1888,1889,-1, 
+          1890,1891,1892,-1, 1893,1894,1895,-1, 1896,1897,1898,-1, 1899,1900,1901,-1, 1902,1903,1904,-1, 1905,1906,1907,-1, 
+          1908,1909,1910,-1, 1911,1912,1913,-1, 1914,1915,1916,-1, 1917,1918,1919,-1, 1920,1921,1922,-1, 1923,1924,1925,-1, 
+          1926,1927,1928,-1, 1929,1930,1931,-1, 1932,1933,1934,-1, 1935,1936,1937,-1, 1938,1939,1940,-1, 1941,1942,1943,-1, 
+          1944,1945,1946,-1, 1947,1948,1949,-1, 1950,1951,1952,-1, 1953,1954,1955,-1, 1956,1957,1958,-1, 1959,1960,1961,-1, 
+          1962,1963,1964,-1, 1965,1966,1967,-1, 1968,1969,1970,-1, 1971,1972,1973,-1, 1974,1975,1976,-1, 1977,1978,1979,-1, 
+          1980,1981,1982,-1, 1983,1984,1985,-1, 1986,1987,1988,-1, 1989,1990,1991,-1, 1992,1993,1994,-1, 1995,1996,1997,-1, 
+          1998,1999,2000,-1, 2001,2002,2003,-1, 2004,2005,2006,-1, 2007,2008,2009,-1, 2010,2011,2012,-1, 2013,2014,2015,-1, 
+          2016,2017,2018,-1, 2019,2020,2021,-1, 2022,2023,2024,-1, 2025,2026,2027,-1, 2028,2029,2030,-1, 2031,2032,2033,-1, 
+          2034,2035,2036,-1, 2037,2038,2039,-1, 2040,2041,2042,-1, 2043,2044,2045,-1, 2046,2047,2048,-1, 2049,2050,2051,-1, 
+          2052,2053,2054,-1, 2055,2056,2057,-1, 2058,2059,2060,-1, 2061,2062,2063,-1, 2064,2065,2066,-1, 2067,2068,2069,-1, 
+          2070,2071,2072,-1, 2073,2074,2075,-1, 2076,2077,2078,-1, 2079,2080,2081,-1, 2082,2083,2084,-1, 2085,2086,2087,-1, 
+          2088,2089,2090,-1, 2091,2092,2093,-1, 2094,2095,2096,-1, 2097,2098,2099,-1, 2100,2101,2102,-1, 2103,2104,2105,-1, 
+          2106,2107,2108,-1, 2109,2110,2111,-1, 2112,2113,2114,-1, 2115,2116,2117,-1, 2118,2119,2120,-1, 2121,2122,2123,-1, 
+          2124,2125,2126,-1, 2127,2128,2129,-1, 2130,2131,2132,-1, 2133,2134,2135,-1, 2136,2137,2138,-1, 2139,2140,2141,-1, 
+          2142,2143,2144,-1, 2145,2146,2147,-1, 2148,2149,2150,-1, 2151,2152,2153,-1, 2154,2155,2156,-1, 2157,2158,2159,-1, 
+          2160,2161,2162,-1, 2163,2164,2165,-1, 2166,2167,2168,-1, 2169,2170,2171,-1, 2172,2173,2174,-1, 2175,2176,2177,-1, 
+          2178,2179,2180,-1, 2181,2182,2183,-1, 2184,2185,2186,-1, 2187,2188,2189,-1, 2190,2191,2192,-1, 2193,2194,2195,-1, 
+          2196,2197,2198,-1, 2199,2200,2201,-1, 2202,2203,2204,-1, 2205,2206,2207,-1, 2208,2209,2210,-1, 2211,2212,2213,-1, 
+          2214,2215,2216,-1, 2217,2218,2219,-1, 2220,2221,2222,-1, 2223,2224,2225,-1, 2226,2227,2228,-1, 2229,2230,2231,-1, 
+          2232,2233,2234,-1, 2235,2236,2237,-1, 2238,2239,2240,-1, 2241,2242,2243,-1, 2244,2245,2246,-1, 2247,2248,2249,-1, 
+          2250,2251,2252,-1, 2253,2254,2255,-1, 2256,2257,2258,-1, 2259,2260,2261,-1, 2262,2263,2264,-1, 2265,2266,2267,-1, 
+          2268,2269,2270,-1, 2271,2272,2273,-1, 2274,2275,2276,-1, 2277,2278,2279,-1, 2280,2281,2282,-1, 2283,2284,2285,-1, 
+          2286,2287,2288,-1, 2289,2290,2291,-1, 2292,2293,2294,-1, 2295,2296,2297,-1, 2298,2299,2300,-1, 2301,2302,2303,-1, 
+          2304,2305,2306,-1, 2307,2308,2309,-1, 2310,2311,2312,-1, 2313,2314,2315,-1, 2316,2317,2318,-1, 2319,2320,2321,-1, 
+          2322,2323,2324,-1, 2325,2326,2327,-1, 2328,2329,2330,-1, 2331,2332,2333,-1, 2334,2335,2336,-1, 2337,2338,2339,-1, 
+          2340,2341,2342,-1, 2343,2344,2345,-1, 2346,2347,2348,-1, 2349,2350,2351,-1, 2352,2353,2354,-1, 2355,2356,2357,-1, 
+          2358,2359,2360,-1, 2361,2362,2363,-1, 2364,2365,2366,-1, 2367,2368,2369,-1, 2370,2371,2372,-1, 2373,2374,2375,-1, 
+          2376,2377,2378,-1, 2379,2380,2381,-1, 2382,2383,2384,-1, 2385,2386,2387,-1, 2388,2389,2390,-1, 2391,2392,2393,-1, 
+          2394,2395,2396,-1, 2397,2398,2399,-1, 2400,2401,2402,-1, 2403,2404,2405,-1, 2406,2407,2408,-1, 2409,2410,2411,-1, 
+          2412,2413,2414,-1, 2415,2416,2417,-1, 2418,2419,2420,-1, 2421,2422,2423,-1, 2424,2425,2426,-1, 2427,2428,2429,-1, 
+          2430,2431,2432,-1, 2433,2434,2435,-1, 2436,2437,2438,-1, 2439,2440,2441,-1, 2442,2443,2444,-1, 2445,2446,2447,-1, 
+          2448,2449,2450,-1, 2451,2452,2453,-1, 2454,2455,2456,-1, 2457,2458,2459,-1, 2460,2461,2462,-1, 2463,2464,2465,-1, 
+          2466,2467,2468,-1, 2469,2470,2471,-1, 2472,2473,2474,-1, 2475,2476,2477,-1, 2478,2479,2480,-1, 2481,2482,2483,-1, 
+          2484,2485,2486,-1, 2487,2488,2489,-1, 2490,2491,2492,-1, 2493,2494,2495,-1, 2496,2497,2498,-1, 2499,2500,2501,-1, 
+          2502,2503,2504,-1, 2505,2506,2507,-1, 2508,2509,2510,-1, 2511,2512,2513,-1, 2514,2515,2516,-1, 2517,2518,2519,-1, 
+          2520,2521,2522,-1, 2523,2524,2525,-1, 2526,2527,2528,-1, 2529,2530,2531,-1, 2532,2533,2534,-1, 2535,2536,2537,-1, 
+          2538,2539,2540,-1, 2541,2542,2543,-1, 2544,2545,2546,-1, 2547,2548,2549,-1, 2550,2551,2552,-1, 2553,2554,2555,-1, 
+          2556,2557,2558,-1, 2559,2560,2561,-1, 2562,2563,2564,-1, 2565,2566,2567,-1, 2568,2569,2570,-1, 2571,2572,2573,-1, 
+          2574,2575,2576,-1, 2577,2578,2579,-1, 2580,2581,2582,-1, 2583,2584,2585,-1, 2586,2587,2588,-1, 2589,2590,2591,-1, 
+          2592,2593,2594,-1, 2595,2596,2597,-1, 2598,2599,2600,-1, 2601,2602,2603,-1, 2604,2605,2606,-1, 2607,2608,2609,-1, 
+          2610,2611,2612,-1, 2613,2614,2615,-1, 2616,2617,2618,-1, 2619,2620,2621,-1, 2622,2623,2624,-1, 2625,2626,2627,-1, 
+          2628,2629,2630,-1, 2631,2632,2633,-1, 2634,2635,2636,-1, 2637,2638,2639,-1, 2640,2641,2642,-1, 2643,2644,2645,-1, 
+          2646,2647,2648,-1, 2649,2650,2651,-1, 2652,2653,2654,-1, 2655,2656,2657,-1, 2658,2659,2660,-1, 2661,2662,2663,-1, 
+          2664,2665,2666,-1, 2667,2668,2669,-1, 2670,2671,2672,-1, 2673,2674,2675,-1, 2676,2677,2678,-1, 2679,2680,2681,-1, 
+          2682,2683,2684,-1, 2685,2686,2687,-1, 2688,2689,2690,-1, 2691,2692,2693,-1, 2694,2695,2696,-1, 2697,2698,2699,-1, 
+          2700,2701,2702,-1, 2703,2704,2705,-1, 2706,2707,2708,-1, 2709,2710,2711,-1, 2712,2713,2714,-1, 2715,2716,2717,-1, 
+          2718,2719,2720,-1, 2721,2722,2723,-1, 2724,2725,2726,-1, 2727,2728,2729,-1, 2730,2731,2732,-1, 2733,2734,2735,-1, 
+          2736,2737,2738,-1, 2739,2740,2741,-1, 2742,2743,2744,-1, 2745,2746,2747,-1, 2748,2749,2750,-1, 2751,2752,2753,-1, 
+          2754,2755,2756,-1, 2757,2758,2759,-1, 2760,2761,2762,-1, 2763,2764,2765,-1, 2766,2767,2768,-1, 2769,2770,2771,-1, 
+          2772,2773,2774,-1, 2775,2776,2777,-1, 2778,2779,2780,-1, 2781,2782,2783,-1, 2784,2785,2786,-1, 2787,2788,2789,-1, 
+          2790,2791,2792,-1, 2793,2794,2795,-1, 2796,2797,2798,-1, 2799,2800,2801,-1, 2802,2803,2804,-1, 2805,2806,2807,-1, 
+          2808,2809,2810,-1, 2811,2812,2813,-1, 2814,2815,2816,-1, 2817,2818,2819,-1, 2820,2821,2822,-1, 2823,2824,2825,-1, 
+          2826,2827,2828,-1, 2829,2830,2831,-1, 2832,2833,2834,-1, 2835,2836,2837,-1, 2838,2839,2840,-1, 2841,2842,2843,-1, 
+          2844,2845,2846,-1, 2847,2848,2849,-1, 2850,2851,2852,-1, 2853,2854,2855,-1, 2856,2857,2858,-1, 2859,2860,2861,-1, 
+          2862,2863,2864,-1, 2865,2866,2867,-1, 2868,2869,2870,-1, 2871,2872,2873,-1, 2874,2875,2876,-1, 2877,2878,2879,-1, 
+          2880,2881,2882,-1, 2883,2884,2885,-1, 2886,2887,2888,-1, 2889,2890,2891,-1, 2892,2893,2894,-1, 2895,2896,2897,-1, 
+          2898,2899,2900,-1, 2901,2902,2903,-1, 2904,2905,2906,-1, 2907,2908,2909,-1, 2910,2911,2912,-1, 2913,2914,2915,-1, 
+          2916,2917,2918,-1, 2919,2920,2921,-1, 2922,2923,2924,-1, 2925,2926,2927,-1, 2928,2929,2930,-1, 2931,2932,2933,-1, 
+          2934,2935,2936,-1, 2937,2938,2939,-1, 2940,2941,2942,-1, 2943,2944,2945,-1, 2946,2947,2948,-1, 2949,2950,2951,-1, 
+          2952,2953,2954,-1, 2955,2956,2957,-1, 2958,2959,2960,-1, 2961,2962,2963,-1, 2964,2965,2966,-1, 2967,2968,2969,-1, 
+          2970,2971,2972,-1, 2973,2974,2975,-1, 2976,2977,2978,-1, 2979,2980,2981,-1, 2982,2983,2984,-1, 2985,2986,2987,-1, 
+          2988,2989,2990,-1, 2991,2992,2993,-1, 2994,2995,2996,-1, 2997,2998,2999,-1, 3000,3001,3002,-1, 3003,3004,3005,-1, 
+          3006,3007,3008,-1, 3009,3010,3011,-1, 3012,3013,3014,-1, 3015,3016,3017,-1, 3018,3019,3020,-1, 3021,3022,3023,-1, 
+          3024,3025,3026,-1, 3027,3028,3029,-1, 3030,3031,3032,-1, 3033,3034,3035,-1, 3036,3037,3038,-1, 3039,3040,3041,-1, 
+          3042,3043,3044,-1, 3045,3046,3047,-1, 3048,3049,3050,-1, 3051,3052,3053,-1, 3054,3055,3056,-1, 3057,3058,3059,-1, 
+          3060,3061,3062,-1, 3063,3064,3065,-1, 3066,3067,3068,-1, 3069,3070,3071,-1, 3072,3073,3074,-1, 3075,3076,3077,-1, 
+          3078,3079,3080,-1, 3081,3082,3083,-1, 3084,3085,3086,-1, 3087,3088,3089,-1, 3090,3091,3092,-1, 3093,3094,3095,-1, 
+          3096,3097,3098,-1, 3099,3100,3101,-1, 3102,3103,3104,-1, 3105,3106,3107,-1, 3108,3109,3110,-1, 3111,3112,3113,-1, 
+          3114,3115,3116,-1, 3117,3118,3119,-1, 3120,3121,3122,-1, 3123,3124,3125,-1, 3126,3127,3128,-1, 3129,3130,3131,-1, 
+          3132,3133,3134,-1, 3135,3136,3137,-1, 3138,3139,3140,-1, 3141,3142,3143,-1, 3144,3145,3146,-1, 3147,3148,3149,-1, 
+          3150,3151,3152,-1, 3153,3154,3155,-1, 3156,3157,3158,-1, 3159,3160,3161,-1, 3162,3163,3164,-1, 3165,3166,3167,-1, 
+          3168,3169,3170,-1, 3171,3172,3173,-1, 3174,3175,3176,-1, 3177,3178,3179,-1, 3180,3181,3182,-1, 3183,3184,3185,-1, 
+          3186,3187,3188,-1, 3189,3190,3191,-1, 3192,3193,3194,-1, 3195,3196,3197,-1, 3198,3199,3200,-1, 3201,3202,3203,-1, 
+          3204,3205,3206,-1, 3207,3208,3209,-1, 3210,3211,3212,-1, 3213,3214,3215,-1, 3216,3217,3218,-1, 3219,3220,3221,-1, 
+          3222,3223,3224,-1, 3225,3226,3227,-1, 3228,3229,3230,-1, 3231,3232,3233,-1, 3234,3235,3236,-1, 3237,3238,3239,-1, 
+          3240,3241,3242,-1, 3243,3244,3245,-1, 3246,3247,3248,-1, 3249,3250,3251,-1, 3252,3253,3254,-1, 3255,3256,3257,-1, 
+          3258,3259,3260,-1, 3261,3262,3263,-1, 3264,3265,3266,-1, 3267,3268,3269,-1, 3270,3271,3272,-1, 3273,3274,3275,-1, 
+          3276,3277,3278,-1, 3279,3280,3281,-1, 3282,3283,3284,-1, 3285,3286,3287,-1, 3288,3289,3290,-1, 3291,3292,3293,-1, 
+          3294,3295,3296,-1, 3297,3298,3299,-1, 3300,3301,3302,-1, 3303,3304,3305,-1, 3306,3307,3308,-1, 3309,3310,3311,-1, 
+          3312,3313,3314,-1, 3315,3316,3317,-1, 3318,3319,3320,-1, 3321,3322,3323,-1, 3324,3325,3326,-1, 3327,3328,3329,-1, 
+          3330,3331,3332,-1, 3333,3334,3335,-1, 3336,3337,3338,-1, 3339,3340,3341,-1, 3342,3343,3344,-1, 3345,3346,3347,-1, 
+          3348,3349,3350,-1, 3351,3352,3353,-1, 3354,3355,3356,-1, 3357,3358,3359,-1, 3360,3361,3362,-1, 3363,3364,3365,-1, 
+          3366,3367,3368,-1, 3369,3370,3371,-1, 3372,3373,3374,-1, 3375,3376,3377,-1, 3378,3379,3380,-1, 3381,3382,3383,-1, 
+          3384,3385,3386,-1, 3387,3388,3389,-1, 3390,3391,3392,-1, 3393,3394,3395,-1, 3396,3397,3398,-1, 3399,3400,3401,-1, 
+          3402,3403,3404,-1, 3405,3406,3407,-1, 3408,3409,3410,-1, 3411,3412,3413,-1, 3414,3415,3416,-1, 3417,3418,3419,-1, 
+          3420,3421,3422,-1, 3423,3424,3425,-1, 3426,3427,3428,-1, 3429,3430,3431,-1, 3432,3433,3434,-1, 3435,3436,3437,-1, 
+          3438,3439,3440,-1, 3441,3442,3443,-1, 3444,3445,3446,-1, 3447,3448,3449,-1, 3450,3451,3452,-1, 3453,3454,3455,-1, 
+          3456,3457,3458,-1, 3459,3460,3461,-1, 3462,3463,3464,-1, 3465,3466,3467,-1, 3468,3469,3470,-1, 3471,3472,3473,-1, 
+          3474,3475,3476,-1, 3477,3478,3479,-1, 3480,3481,3482,-1, 3483,3484,3485,-1, 3486,3487,3488,-1, 3489,3490,3491,-1, 
+          3492,3493,3494,-1, 3495,3496,3497,-1, 3498,3499,3500,-1, 3501,3502,3503,-1, 3504,3505,3506,-1, 3507,3508,3509,-1, 
+          3510,3511,3512,-1, 3513,3514,3515,-1, 3516,3517,3518,-1, 3519,3520,3521,-1, 3522,3523,3524,-1, 3525,3526,3527,-1, 
+          3528,3529,3530,-1, 3531,3532,3533,-1, 3534,3535,3536,-1, 3537,3538,3539,-1, 3540,3541,3542,-1, 3543,3544,3545,-1, 
+          3546,3547,3548,-1, 3549,3550,3551,-1, 3552,3553,3554,-1, 3555,3556,3557,-1, 3558,3559,3560,-1, 3561,3562,3563,-1, 
+          3564,3565,3566,-1, 3567,3568,3569,-1, 3570,3571,3572,-1, 3573,3574,3575,-1, 3576,3577,3578,-1, 3579,3580,3581,-1, 
+          3582,3583,3584,-1, 3585,3586,3587,-1, 3588,3589,3590,-1, 3591,3592,3593,-1, 3594,3595,3596,-1, 3597,3598,3599,-1, 
+          3600,3601,3602,-1, 3603,3604,3605,-1, 3606,3607,3608,-1, 3609,3610,3611,-1, 3612,3613,3614,-1, 3615,3616,3617,-1, 
+          3618,3619,3620,-1, 3621,3622,3623,-1, 3624,3625,3626,-1, 3627,3628,3629,-1, 3630,3631,3632,-1, 3633,3634,3635,-1, 
+          3636,3637,3638,-1, 3639,3640,3641,-1, 3642,3643,3644,-1, 3645,3646,3647,-1, 3648,3649,3650,-1, 3651,3652,3653,-1, 
+          3654,3655,3656,-1, 3657,3658,3659,-1, 3660,3661,3662,-1, 3663,3664,3665,-1, 3666,3667,3668,-1, 3669,3670,3671,-1, 
+          3672,3673,3674,-1, 3675,3676,3677,-1, 3678,3679,3680,-1, 3681,3682,3683,-1, 3684,3685,3686,-1, 3687,3688,3689,-1, 
+          3690,3691,3692,-1, 3693,3694,3695,-1, 3696,3697,3698,-1, 3699,3700,3701,-1, 3702,3703,3704,-1, 3705,3706,3707,-1, 
+          3708,3709,3710,-1, 3711,3712,3713,-1, 3714,3715,3716,-1, 3717,3718,3719,-1, 3720,3721,3722,-1, 3723,3724,3725,-1, 
+          3726,3727,3728,-1, 3729,3730,3731,-1, 3732,3733,3734,-1, 3735,3736,3737,-1, 3738,3739,3740,-1, 3741,3742,3743,-1, 
+          3744,3745,3746,-1, 3747,3748,3749,-1, 3750,3751,3752,-1, 3753,3754,3755,-1, 3756,3757,3758,-1, 3759,3760,3761,-1, 
+          3762,3763,3764,-1, 3765,3766,3767,-1, 3768,3769,3770,-1, 3771,3772,3773,-1, 3774,3775,3776,-1, 3777,3778,3779,-1, 
+          3780,3781,3782,-1, 3783,3784,3785,-1, 3786,3787,3788,-1, 3789,3790,3791,-1, 3792,3793,3794,-1, 3795,3796,3797,-1, 
+          3798,3799,3800,-1, 3801,3802,3803,-1, 3804,3805,3806,-1, 3807,3808,3809,-1, 3810,3811,3812,-1, 3813,3814,3815,-1, 
+          3816,3817,3818,-1, 3819,3820,3821,-1, 3822,3823,3824,-1, 3825,3826,3827,-1, 3828,3829,3830,-1, 3831,3832,3833,-1, 
+          3834,3835,3836,-1, 3837,3838,3839,-1, 3840,3841,3842,-1, 3843,3844,3845,-1, 3846,3847,3848,-1, 3849,3850,3851,-1, 
+          3852,3853,3854,-1, 3855,3856,3857,-1, 3858,3859,3860,-1, 3861,3862,3863,-1, 3864,3865,3866,-1, 3867,3868,3869,-1, 
+          3870,3871,3872,-1, 3873,3874,3875,-1, 3876,3877,3878,-1, 3879,3880,3881,-1, 3882,3883,3884,-1, 3885,3886,3887,-1, 
+          3888,3889,3890,-1, 3891,3892,3893,-1, 3894,3895,3896,-1, 3897,3898,3899,-1, 3900,3901,3902,-1, 3903,3904,3905,-1, 
+          3906,3907,3908,-1, 3909,3910,3911,-1, 3912,3913,3914,-1, 3915,3916,3917,-1, 3918,3919,3920,-1, 3921,3922,3923,-1, 
+          3924,3925,3926,-1, 3927,3928,3929,-1, 3930,3931,3932,-1, 3933,3934,3935,-1, 3936,3937,3938,-1, 3939,3940,3941,-1, 
+          3942,3943,3944,-1, 3945,3946,3947,-1, 3948,3949,3950,-1, 3951,3952,3953,-1, 3954,3955,3956,-1, 3957,3958,3959,-1, 
+          3960,3961,3962,-1, 3963,3964,3965,-1, 3966,3967,3968,-1, 3969,3970,3971,-1, 3972,3973,3974,-1, 3975,3976,3977,-1, 
+          3978,3979,3980,-1, 3981,3982,3983,-1, 3984,3985,3986,-1, 3987,3988,3989,-1, 3990,3991,3992,-1, 3993,3994,3995,-1, 
+          3996,3997,3998,-1, 3999,4000,4001,-1, 4002,4003,4004,-1, 4005,4006,4007,-1, 4008,4009,4010,-1, 4011,4012,4013,-1, 
+          4014,4015,4016,-1, 4017,4018,4019,-1, 4020,4021,4022,-1, 4023,4024,4025,-1, 4026,4027,4028,-1, 4029,4030,4031,-1, 
+          4032,4033,4034,-1, 4035,4036,4037,-1, 4038,4039,4040,-1, 4041,4042,4043,-1, 4044,4045,4046,-1, 4047,4048,4049,-1, 
+          4050,4051,4052,-1, 4053,4054,4055,-1, 4056,4057,4058,-1, 4059,4060,4061,-1, 4062,4063,4064,-1, 4065,4066,4067,-1, 
+          4068,4069,4070,-1, 4071,4072,4073,-1, 4074,4075,4076,-1, 4077,4078,4079,-1, 4080,4081,4082,-1, 4083,4084,4085,-1, 
+          4086,4087,4088,-1, 4089,4090,4091,-1, 4092,4093,4094,-1, 4095,4096,4097,-1, 4098,4099,4100,-1, 4101,4102,4103,-1, 
+          4104,4105,4106,-1, 4107,4108,4109,-1, 4110,4111,4112,-1, 4113,4114,4115,-1, 4116,4117,4118,-1, 4119,4120,4121,-1, 
+          4122,4123,4124,-1, 4125,4126,4127,-1, 4128,4129,4130,-1, 4131,4132,4133,-1, 4134,4135,4136,-1, 4137,4138,4139,-1, 
+          4140,4141,4142,-1, 4143,4144,4145,-1, 4146,4147,4148,-1, 4149,4150,4151,-1, 4152,4153,4154,-1, 4155,4156,4157,-1, 
+          4158,4159,4160,-1, 4161,4162,4163,-1, 4164,4165,4166,-1, 4167,4168,4169,-1, 4170,4171,4172,-1, 4173,4174,4175,-1, 
+          4176,4177,4178,-1, 4179,4180,4181,-1, 4182,4183,4184,-1, 4185,4186,4187,-1, 4188,4189,4190,-1, 4191,4192,4193,-1, 
+          4194,4195,4196,-1, 4197,4198,4199,-1, 4200,4201,4202,-1, 4203,4204,4205,-1, 4206,4207,4208,-1, 4209,4210,4211,-1, 
+          4212,4213,4214,-1, 4215,4216,4217,-1, 4218,4219,4220,-1, 4221,4222,4223,-1, 4224,4225,4226,-1, 4227,4228,4229,-1, 
+          4230,4231,4232,-1, 4233,4234,4235,-1, 4236,4237,4238,-1, 4239,4240,4241,-1, 4242,4243,4244,-1, 4245,4246,4247,-1, 
+          4248,4249,4250,-1, 4251,4252,4253,-1, 4254,4255,4256,-1, 4257,4258,4259,-1, 4260,4261,4262,-1, 4263,4264,4265,-1, 
+          4266,4267,4268,-1, 4269,4270,4271,-1, 4272,4273,4274,-1, 4275,4276,4277,-1, 4278,4279,4280,-1, 4281,4282,4283,-1, 
+          4284,4285,4286,-1, 4287,4288,4289,-1, 4290,4291,4292,-1, 4293,4294,4295,-1, 4296,4297,4298,-1, 4299,4300,4301,-1, 
+          4302,4303,4304,-1, 4305,4306,4307,-1, 4308,4309,4310,-1, 4311,4312,4313,-1, 4314,4315,4316,-1, 4317,4318,4319,-1, 
+          4320,4321,4322,-1, 4323,4324,4325,-1, 4326,4327,4328,-1, 4329,4330,4331,-1, 4332,4333,4334,-1, 4335,4336,4337,-1, 
+          4338,4339,4340,-1, 4341,4342,4343,-1, 4344,4345,4346,-1, 4347,4348,4349,-1, 4350,4351,4352,-1, 4353,4354,4355,-1, 
+          4356,4357,4358,-1, 4359,4360,4361,-1, 4362,4363,4364,-1, 4365,4366,4367,-1, 4368,4369,4370,-1, 4371,4372,4373,-1, 
+          4374,4375,4376,-1, 4377,4378,4379,-1, 4380,4381,4382,-1, 4383,4384,4385,-1, 4386,4387,4388,-1, 4389,4390,4391,-1, 
+          4392,4393,4394,-1, 4395,4396,4397,-1, 4398,4399,4400,-1, 4401,4402,4403,-1, 4404,4405,4406,-1, 4407,4408,4409,-1, 
+          4410,4411,4412,-1, 4413,4414,4415,-1, 4416,4417,4418,-1, 4419,4420,4421,-1, 4422,4423,4424,-1, 4425,4426,4427,-1, 
+          4428,4429,4430,-1, 4431,4432,4433,-1, 4434,4435,4436,-1, 4437,4438,4439,-1, 4440,4441,4442,-1, 4443,4444,4445,-1, 
+          4446,4447,4448,-1, 4449,4450,4451,-1, 4452,4453,4454,-1, 4455,4456,4457,-1, 4458,4459,4460,-1, 4461,4462,4463,-1, 
+          4464,4465,4466,-1, 4467,4468,4469,-1, 4470,4471,4472,-1, 4473,4474,4475,-1, 4476,4477,4478,-1, 4479,4480,4481,-1, 
+          4482,4483,4484,-1, 4485,4486,4487,-1, 4488,4489,4490,-1, 4491,4492,4493,-1, 4494,4495,4496,-1, 4497,4498,4499,-1, 
+          4500,4501,4502,-1, 4503,4504,4505,-1, 4506,4507,4508,-1, 4509,4510,4511,-1, 4512,4513,4514,-1, 4515,4516,4517,-1, 
+          4518,4519,4520,-1, 4521,4522,4523,-1, 4524,4525,4526,-1, 4527,4528,4529,-1, 4530,4531,4532,-1, 4533,4534,4535,-1, 
+          4536,4537,4538,-1, 4539,4540,4541,-1, 4542,4543,4544,-1, 4545,4546,4547,-1, 4548,4549,4550,-1, 4551,4552,4553,-1, 
+          4554,4555,4556,-1, 4557,4558,4559,-1, 4560,4561,4562,-1, 4563,4564,4565,-1, 4566,4567,4568,-1, 4569,4570,4571,-1, 
+          4572,4573,4574,-1, 4575,4576,4577,-1, 4578,4579,4580,-1, 4581,4582,4583,-1, 4584,4585,4586,-1, 4587,4588,4589,-1, 
+          4590,4591,4592,-1, 4593,4594,4595,-1, 4596,4597,4598,-1, 4599,4600,4601,-1, 4602,4603,4604,-1, 4605,4606,4607,-1, 
+          4608,4609,4610,-1, 4611,4612,4613,-1, 4614,4615,4616,-1, 4617,4618,4619,-1, 4620,4621,4622,-1, 4623,4624,4625,-1, 
+          4626,4627,4628,-1, 4629,4630,4631,-1, 4632,4633,4634,-1, 4635,4636,4637,-1, 4638,4639,4640,-1, 4641,4642,4643,-1, 
+          4644,4645,4646,-1, 4647,4648,4649,-1, 4650,4651,4652,-1, 4653,4654,4655,-1, 4656,4657,4658,-1, 4659,4660,4661,-1, 
+          4662,4663,4664,-1, 4665,4666,4667,-1, 4668,4669,4670,-1, 4671,4672,4673,-1, 4674,4675,4676,-1, 4677,4678,4679,-1, 
+          4680,4681,4682,-1, 4683,4684,4685,-1, 4686,4687,4688,-1, 4689,4690,4691,-1, 4692,4693,4694,-1, 4695,4696,4697,-1, 
+          4698,4699,4700,-1, 4701,4702,4703,-1, 4704,4705,4706,-1, 4707,4708,4709,-1, 4710,4711,4712,-1, 4713,4714,4715,-1, 
+          4716,4717,4718,-1, 4719,4720,4721,-1, 4722,4723,4724,-1, 4725,4726,4727,-1, 4728,4729,4730,-1, 4731,4732,4733,-1, 
+          4734,4735,4736,-1, 4737,4738,4739,-1, 4740,4741,4742,-1, 4743,4744,4745,-1, 4746,4747,4748,-1, 4749,4750,4751,-1, 
+          4752,4753,4754,-1, 4755,4756,4757,-1, 4758,4759,4760,-1, 4761,4762,4763,-1, 4764,4765,4766,-1, 4767,4768,4769,-1, 
+          4770,4771,4772,-1, 4773,4774,4775,-1, 4776,4777,4778,-1, 4779,4780,4781,-1, 4782,4783,4784,-1, 4785,4786,4787,-1, 
+          4788,4789,4790,-1, 4791,4792,4793,-1, 4794,4795,4796,-1, 4797,4798,4799,-1, 4800,4801,4802,-1, 4803,4804,4805,-1, 
+          4806,4807,4808,-1, 4809,4810,4811,-1, 4812,4813,4814,-1, 4815,4816,4817,-1, 4818,4819,4820,-1, 4821,4822,4823,-1, 
+          4824,4825,4826,-1, 4827,4828,4829,-1, 4830,4831,4832,-1, 4833,4834,4835,-1, 4836,4837,4838,-1, 4839,4840,4841,-1, 
+          4842,4843,4844,-1, 4845,4846,4847,-1, 4848,4849,4850,-1, 4851,4852,4853,-1, 4854,4855,4856,-1, 4857,4858,4859,-1, 
+          4860,4861,4862,-1, 4863,4864,4865,-1, 4866,4867,4868,-1, 4869,4870,4871,-1, 4872,4873,4874,-1, 4875,4876,4877,-1, 
+          4878,4879,4880,-1, 4881,4882,4883,-1, 4884,4885,4886,-1, 4887,4888,4889,-1, 4890,4891,4892,-1, 4893,4894,4895,-1, 
+          4896,4897,4898,-1, 4899,4900,4901,-1, 4902,4903,4904,-1, 4905,4906,4907,-1, 4908,4909,4910,-1, 4911,4912,4913,-1, 
+          4914,4915,4916,-1, 4917,4918,4919,-1, 4920,4921,4922,-1, 4923,4924,4925,-1, 4926,4927,4928,-1, 4929,4930,4931,-1, 
+          4932,4933,4934,-1, 4935,4936,4937,-1, 4938,4939,4940,-1, 4941,4942,4943,-1, 4944,4945,4946,-1, 4947,4948,4949,-1, 
+          4950,4951,4952,-1, 4953,4954,4955,-1, 4956,4957,4958,-1, 4959,4960,4961,-1, 4962,4963,4964,-1, 4965,4966,4967,-1, 
+          4968,4969,4970,-1, 4971,4972,4973,-1, 4974,4975,4976,-1, 4977,4978,4979,-1, 4980,4981,4982,-1, 4983,4984,4985,-1, 
+          4986,4987,4988,-1, 4989,4990,4991,-1, 4992,4993,4994,-1, 4995,4996,4997,-1, 4998,4999,5000,-1, 5001,5002,5003,-1, 
+          5004,5005,5006,-1, 5007,5008,5009,-1, 5010,5011,5012,-1, 5013,5014,5015,-1, 5016,5017,5018,-1, 5019,5020,5021,-1, 
+          5022,5023,5024,-1, 5025,5026,5027,-1, 5028,5029,5030,-1, 5031,5032,5033,-1, 5034,5035,5036,-1, 5037,5038,5039,-1, 
+          5040,5041,5042,-1, 5043,5044,5045,-1, 5046,5047,5048,-1, 5049,5050,5051,-1, 5052,5053,5054,-1, 5055,5056,5057,-1, 
+          5058,5059,5060,-1, 5061,5062,5063,-1, 5064,5065,5066,-1, 5067,5068,5069,-1, 5070,5071,5072,-1, 5073,5074,5075,-1, 
+          5076,5077,5078,-1, 5079,5080,5081,-1, 5082,5083,5084,-1, 5085,5086,5087,-1, 5088,5089,5090,-1, 5091,5092,5093,-1, 
+          5094,5095,5096,-1, 5097,5098,5099,-1, 5100,5101,5102,-1, 5103,5104,5105,-1, 5106,5107,5108,-1, 5109,5110,5111,-1, 
+          5112,5113,5114,-1, 5115,5116,5117,-1, 5118,5119,5120,-1, 5121,5122,5123,-1, 5124,5125,5126,-1, 5127,5128,5129,-1, 
+          5130,5131,5132,-1, 5133,5134,5135,-1, 5136,5137,5138,-1, 5139,5140,5141,-1, 5142,5143,5144,-1, 5145,5146,5147,-1, 
+          5148,5149,5150,-1, 5151,5152,5153,-1, 5154,5155,5156,-1, 5157,5158,5159,-1, 5160,5161,5162,-1, 5163,5164,5165,-1, 
+          5166,5167,5168,-1, 5169,5170,5171,-1, 5172,5173,5174,-1, 5175,5176,5177,-1, 5178,5179,5180,-1, 5181,5182,5183,-1, 
+          5184,5185,5186,-1, 5187,5188,5189,-1, 5190,5191,5192,-1, 5193,5194,5195,-1, 5196,5197,5198,-1, 5199,5200,5201,-1, 
+          5202,5203,5204,-1, 5205,5206,5207,-1, 5208,5209,5210,-1, 5211,5212,5213,-1, 5214,5215,5216,-1, 5217,5218,5219,-1, 
+          5220,5221,5222,-1, 5223,5224,5225,-1, 5226,5227,5228,-1, 5229,5230,5231,-1, 5232,5233,5234,-1, 5235,5236,5237,-1, 
+          5238,5239,5240,-1, 5241,5242,5243,-1, 5244,5245,5246,-1, 5247,5248,5249,-1, 5250,5251,5252,-1, 5253,5254,5255,-1, 
+          5256,5257,5258,-1, 5259,5260,5261,-1, 5262,5263,5264,-1, 5265,5266,5267,-1, 5268,5269,5270,-1, 5271,5272,5273,-1, 
+          5274,5275,5276,-1, 5277,5278,5279,-1, 5280,5281,5282,-1, 5283,5284,5285,-1, 5286,5287,5288,-1, 5289,5290,5291,-1, 
+          5292,5293,5294,-1, 5295,5296,5297,-1, 5298,5299,5300,-1, 5301,5302,5303,-1, 5304,5305,5306,-1, 5307,5308,5309,-1, 
+          5310,5311,5312,-1, 5313,5314,5315,-1, 5316,5317,5318,-1, 5319,5320,5321,-1, 5322,5323,5324,-1, 5325,5326,5327,-1, 
+          5328,5329,5330,-1, 5331,5332,5333,-1, 5334,5335,5336,-1, 5337,5338,5339,-1, 5340,5341,5342,-1, 5343,5344,5345,-1, 
+          5346,5347,5348,-1, 5349,5350,5351,-1, 5352,5353,5354,-1, 5355,5356,5357,-1, 5358,5359,5360,-1, 5361,5362,5363,-1, 
+          5364,5365,5366,-1, 5367,5368,5369,-1, 5370,5371,5372,-1, 5373,5374,5375,-1, 5376,5377,5378,-1, 5379,5380,5381,-1, 
+          5382,5383,5384,-1, 5385,5386,5387,-1, 5388,5389,5390,-1, 5391,5392,5393,-1, 5394,5395,5396,-1, 5397,5398,5399,-1, 
+          5400,5401,5402,-1, 5403,5404,5405,-1, 5406,5407,5408,-1, 5409,5410,5411,-1, 5412,5413,5414,-1, 5415,5416,5417,-1, 
+          5418,5419,5420,-1, 5421,5422,5423,-1, 5424,5425,5426,-1, 5427,5428,5429,-1, 5430,5431,5432,-1, 5433,5434,5435,-1, 
+          5436,5437,5438,-1, 5439,5440,5441,-1, 5442,5443,5444,-1, 5445,5446,5447,-1, 5448,5449,5450,-1, 5451,5452,5453,-1, 
+          5454,5455,5456,-1, 5457,5458,5459,-1, 5460,5461,5462,-1, 5463,5464,5465,-1, 5466,5467,5468,-1, 5469,5470,5471,-1, 
+          5472,5473,5474,-1, 5475,5476,5477,-1, 5478,5479,5480,-1, 5481,5482,5483,-1, 5484,5485,5486,-1, 5487,5488,5489,-1, 
+          5490,5491,5492,-1, 5493,5494,5495,-1, 5496,5497,5498,-1, 5499,5500,5501,-1, 5502,5503,5504,-1, 5505,5506,5507,-1, 
+          5508,5509,5510,-1, 5511,5512,5513,-1, 5514,5515,5516,-1, 5517,5518,5519,-1, 5520,5521,5522,-1, 5523,5524,5525,-1, 
+          5526,5527,5528,-1, 5529,5530,5531,-1, 5532,5533,5534,-1, 5535,5536,5537,-1, 5538,5539,5540,-1, 5541,5542,5543,-1, 
+          5544,5545,5546,-1, 5547,5548,5549,-1, 5550,5551,5552,-1, 5553,5554,5555,-1, 5556,5557,5558,-1, 5559,5560,5561,-1, 
+          5562,5563,5564,-1, 5565,5566,5567,-1, 5568,5569,5570,-1, 5571,5572,5573,-1, 5574,5575,5576,-1, 5577,5578,5579,-1, 
+          5580,5581,5582,-1, 5583,5584,5585,-1, 5586,5587,5588,-1, 5589,5590,5591,-1, 5592,5593,5594,-1, 5595,5596,5597,-1, 
+          5598,5599,5600,-1, 5601,5602,5603,-1, 5604,5605,5606,-1, 5607,5608,5609,-1, 5610,5611,5612,-1, 5613,5614,5615,-1, 
+          5616,5617,5618,-1, 5619,5620,5621,-1, 5622,5623,5624,-1, 5625,5626,5627,-1, 5628,5629,5630,-1, 5631,5632,5633,-1, 
+          5634,5635,5636,-1, 5637,5638,5639,-1, 5640,5641,5642,-1, 5643,5644,5645,-1, 5646,5647,5648,-1, 5649,5650,5651,-1, 
+          5652,5653,5654,-1, 5655,5656,5657,-1, 5658,5659,5660,-1, 5661,5662,5663,-1, 5664,5665,5666,-1, 5667,5668,5669,-1, 
+          5670,5671,5672,-1, 5673,5674,5675,-1, 5676,5677,5678,-1, 5679,5680,5681,-1, 5682,5683,5684,-1, 5685,5686,5687,-1, 
+          5688,5689,5690,-1, 5691,5692,5693,-1, 5694,5695,5696,-1, 5697,5698,5699,-1, 5700,5701,5702,-1, 5703,5704,5705,-1, 
+          5706,5707,5708,-1, 5709,5710,5711,-1, 5712,5713,5714,-1, 5715,5716,5717,-1, 5718,5719,5720,-1, 5721,5722,5723,-1, 
+          5724,5725,5726,-1, 5727,5728,5729,-1, 5730,5731,5732,-1, 5733,5734,5735,-1, 5736,5737,5738,-1, 5739,5740,5741,-1, 
+          5742,5743,5744,-1, 5745,5746,5747,-1, 5748,5749,5750,-1, 5751,5752,5753,-1, 5754,5755,5756,-1, 5757,5758,5759,-1, 
+          5760,5761,5762,-1, 5763,5764,5765,-1, 5766,5767,5768,-1, 5769,5770,5771,-1, 5772,5773,5774,-1, 5775,5776,5777,-1, 
+          5778,5779,5780,-1, 5781,5782,5783,-1, 5784,5785,5786,-1, 5787,5788,5789,-1, 5790,5791,5792,-1, 5793,5794,5795,-1, 
+          5796,5797,5798,-1, 5799,5800,5801,-1, 5802,5803,5804,-1, 5805,5806,5807,-1, 5808,5809,5810,-1, 5811,5812,5813,-1, 
+          5814,5815,5816,-1, 5817,5818,5819,-1, 5820,5821,5822,-1, 5823,5824,5825,-1, 5826,5827,5828,-1, 5829,5830,5831,-1, 
+          5832,5833,5834,-1, 5835,5836,5837,-1, 5838,5839,5840,-1, 5841,5842,5843,-1, 5844,5845,5846,-1, 5847,5848,5849,-1, 
+          5850,5851,5852,-1, 5853,5854,5855,-1, 5856,5857,5858,-1, 5859,5860,5861,-1, 5862,5863,5864,-1, 5865,5866,5867,-1, 
+          5868,5869,5870,-1, 5871,5872,5873,-1, 5874,5875,5876,-1, 5877,5878,5879,-1, 5880,5881,5882,-1, 5883,5884,5885,-1, 
+          5886,5887,5888,-1, 5889,5890,5891,-1, 5892,5893,5894,-1, 5895,5896,5897,-1, 5898,5899,5900,-1, 5901,5902,5903,-1, 
+          5904,5905,5906,-1, 5907,5908,5909,-1, 5910,5911,5912,-1, 5913,5914,5915,-1, 5916,5917,5918,-1, 5919,5920,5921,-1, 
+          5922,5923,5924,-1, 5925,5926,5927,-1, 5928,5929,5930,-1, 5931,5932,5933,-1, 5934,5935,5936,-1, 5937,5938,5939,-1, 
+          5940,5941,5942,-1, 5943,5944,5945,-1, 5946,5947,5948,-1, 5949,5950,5951,-1, 5952,5953,5954,-1, 5955,5956,5957,-1, 
+          5958,5959,5960,-1, 5961,5962,5963,-1, 5964,5965,5966,-1, 5967,5968,5969,-1, 5970,5971,5972,-1, 5973,5974,5975,-1, 
+          5976,5977,5978,-1, 5979,5980,5981,-1, 5982,5983,5984,-1, 5985,5986,5987,-1, 5988,5989,5990,-1, 5991,5992,5993,-1, 
+          5994,5995,5996,-1, 5997,5998,5999,-1, 6000,6001,6002,-1, 6003,6004,6005,-1, 6006,6007,6008,-1, 6009,6010,6011,-1, 
+          6012,6013,6014,-1, 6015,6016,6017,-1, 6018,6019,6020,-1, 6021,6022,6023,-1, 6024,6025,6026,-1, 6027,6028,6029,-1, 
+          6030,6031,6032,-1, 6033,6034,6035,-1, 6036,6037,6038,-1, 6039,6040,6041,-1, 6042,6043,6044,-1, 6045,6046,6047,-1, 
+          6048,6049,6050,-1, 6051,6052,6053,-1, 6054,6055,6056,-1, 6057,6058,6059,-1, 6060,6061,6062,-1, 6063,6064,6065,-1, 
+          6066,6067,6068,-1, 6069,6070,6071,-1, 6072,6073,6074,-1, 6075,6076,6077,-1, 6078,6079,6080,-1, 6081,6082,6083,-1, 
+          6084,6085,6086,-1, 6087,6088,6089,-1, 6090,6091,6092,-1, 6093,6094,6095,-1, 6096,6097,6098,-1, 6099,6100,6101,-1, 
+          6102,6103,6104,-1, 6105,6106,6107,-1, 6108,6109,6110,-1, 6111,6112,6113,-1, 6114,6115,6116,-1, 6117,6118,6119,-1, 
+          6120,6121,6122,-1, 6123,6124,6125,-1, 6126,6127,6128,-1, 6129,6130,6131,-1, 6132,6133,6134,-1, 6135,6136,6137,-1, 
+          6138,6139,6140,-1, 6141,6142,6143,-1, 6144,6145,6146,-1, 6147,6148,6149,-1, 6150,6151,6152,-1, 6153,6154,6155,-1, 
+          6156,6157,6158,-1, 6159,6160,6161,-1, 6162,6163,6164,-1, 6165,6166,6167,-1, 6168,6169,6170,-1, 6171,6172,6173,-1, 
+          6174,6175,6176,-1, 6177,6178,6179,-1, 6180,6181,6182,-1, 6183,6184,6185,-1, 6186,6187,6188,-1, 6189,6190,6191,-1, 
+          6192,6193,6194,-1, 6195,6196,6197,-1, 6198,6199,6200,-1, 6201,6202,6203,-1, 6204,6205,6206,-1, 6207,6208,6209,-1, 
+          6210,6211,6212,-1, 6213,6214,6215,-1, 6216,6217,6218,-1, 6219,6220,6221,-1, 6222,6223,6224,-1, 6225,6226,6227,-1, 
+          6228,6229,6230,-1, 6231,6232,6233,-1, 6234,6235,6236,-1, 6237,6238,6239,-1, 6240,6241,6242,-1, 6243,6244,6245,-1, 
+          6246,6247,6248,-1, 6249,6250,6251,-1, 6252,6253,6254,-1, 6255,6256,6257,-1, 6258,6259,6260,-1, 6261,6262,6263,-1, 
+          6264,6265,6266,-1, 6267,6268,6269,-1, 6270,6271,6272,-1, 6273,6274,6275,-1, 6276,6277,6278,-1, 6279,6280,6281,-1, 
+          6282,6283,6284,-1, 6285,6286,6287,-1, 6288,6289,6290,-1, 6291,6292,6293,-1, 6294,6295,6296,-1, 6297,6298,6299,-1, 
+          6300,6301,6302,-1, 6303,6304,6305,-1, 6306,6307,6308,-1, 6309,6310,6311,-1, 6312,6313,6314,-1, 6315,6316,6317,-1, 
+          6318,6319,6320,-1, 6321,6322,6323,-1, 6324,6325,6326,-1, 6327,6328,6329,-1, 6330,6331,6332,-1, 6333,6334,6335,-1, 
+          6336,6337,6338,-1, 6339,6340,6341,-1, 6342,6343,6344,-1, 6345,6346,6347,-1, 6348,6349,6350,-1, 6351,6352,6353,-1, 
+          6354,6355,6356,-1, 6357,6358,6359,-1, 6360,6361,6362,-1, 6363,6364,6365,-1, 6366,6367,6368,-1, 6369,6370,6371,-1, 
+          6372,6373,6374,-1, 6375,6376,6377,-1, 6378,6379,6380,-1, 6381,6382,6383,-1, 6384,6385,6386,-1, 6387,6388,6389,-1, 
+          6390,6391,6392,-1, 6393,6394,6395,-1, 6396,6397,6398,-1, 6399,6400,6401,-1, 6402,6403,6404,-1, 6405,6406,6407,-1, 
+          6408,6409,6410,-1, 6411,6412,6413,-1, 6414,6415,6416,-1, 6417,6418,6419,-1, 6420,6421,6422,-1, 6423,6424,6425,-1, 
+          6426,6427,6428,-1, 6429,6430,6431,-1, 6432,6433,6434,-1, 6435,6436,6437,-1, 6438,6439,6440,-1, 6441,6442,6443,-1, 
+          6444,6445,6446,-1, 6447,6448,6449,-1, 6450,6451,6452,-1, 6453,6454,6455,-1, 6456,6457,6458,-1, 6459,6460,6461,-1, 
+          6462,6463,6464,-1, 6465,6466,6467,-1, 6468,6469,6470,-1, 6471,6472,6473,-1, 6474,6475,6476,-1, 6477,6478,6479,-1, 
+          6480,6481,6482,-1, 6483,6484,6485,-1, 6486,6487,6488,-1, 6489,6490,6491,-1, 6492,6493,6494,-1, 6495,6496,6497,-1, 
+          6498,6499,6500,-1, 6501,6502,6503,-1, 6504,6505,6506,-1, 6507,6508,6509,-1, 6510,6511,6512,-1, 6513,6514,6515,-1, 
+          6516,6517,6518,-1, 6519,6520,6521,-1, 6522,6523,6524,-1, 6525,6526,6527,-1, 6528,6529,6530,-1, 6531,6532,6533,-1, 
+          6534,6535,6536,-1, 6537,6538,6539,-1, 6540,6541,6542,-1, 6543,6544,6545,-1, 6546,6547,6548,-1, 6549,6550,6551,-1, 
+          6552,6553,6554,-1, 6555,6556,6557,-1, 6558,6559,6560,-1, 6561,6562,6563,-1, 6564,6565,6566,-1, 6567,6568,6569,-1, 
+          6570,6571,6572,-1, 6573,6574,6575,-1, 6576,6577,6578,-1, 6579,6580,6581,-1, 6582,6583,6584,-1, 6585,6586,6587,-1, 
+          6588,6589,6590,-1, 6591,6592,6593,-1, 6594,6595,6596,-1, 6597,6598,6599,-1, 6600,6601,6602,-1, 6603,6604,6605,-1, 
+          6606,6607,6608,-1, 6609,6610,6611,-1, 6612,6613,6614,-1, 6615,6616,6617,-1, 6618,6619,6620,-1, 6621,6622,6623,-1, 
+          6624,6625,6626,-1, 6627,6628,6629,-1, 6630,6631,6632,-1, 6633,6634,6635,-1, 6636,6637,6638,-1, 6639,6640,6641,-1, 
+          6642,6643,6644,-1, 6645,6646,6647,-1, 6648,6649,6650,-1, 6651,6652,6653,-1, 6654,6655,6656,-1, 6657,6658,6659,-1, 
+          6660,6661,6662,-1, 6663,6664,6665,-1, 6666,6667,6668,-1, 6669,6670,6671,-1, 6672,6673,6674,-1, 6675,6676,6677,-1, 
+          6678,6679,6680,-1, 6681,6682,6683,-1, 6684,6685,6686,-1, 6687,6688,6689,-1, 6690,6691,6692,-1, 6693,6694,6695,-1, 
+          6696,6697,6698,-1, 6699,6700,6701,-1, 6702,6703,6704,-1, 6705,6706,6707,-1, 6708,6709,6710,-1, 6711,6712,6713,-1, 
+          6714,6715,6716,-1, 6717,6718,6719,-1, 6720,6721,6722,-1, 6723,6724,6725,-1, 6726,6727,6728,-1, 6729,6730,6731,-1, 
+          6732,6733,6734,-1, 6735,6736,6737,-1, 6738,6739,6740,-1, 6741,6742,6743,-1, 6744,6745,6746,-1, 6747,6748,6749,-1, 
+          6750,6751,6752,-1, 6753,6754,6755,-1, 6756,6757,6758,-1, 6759,6760,6761,-1, 6762,6763,6764,-1, 6765,6766,6767,-1, 
+          6768,6769,6770,-1, 6771,6772,6773,-1, 6774,6775,6776,-1, 6777,6778,6779,-1, 6780,6781,6782,-1, 6783,6784,6785,-1, 
+          6786,6787,6788,-1, 6789,6790,6791,-1, 6792,6793,6794,-1, 6795,6796,6797,-1, 6798,6799,6800,-1, 6801,6802,6803,-1, 
+          6804,6805,6806,-1, 6807,6808,6809,-1, 6810,6811,6812,-1, 6813,6814,6815,-1, 6816,6817,6818,-1, 6819,6820,6821,-1, 
+          6822,6823,6824,-1, 6825,6826,6827,-1, 6828,6829,6830,-1, 6831,6832,6833,-1, 6834,6835,6836,-1, 6837,6838,6839,-1, 
+          6840,6841,6842,-1, 6843,6844,6845,-1, 6846,6847,6848,-1, 6849,6850,6851,-1, 6852,6853,6854,-1, 6855,6856,6857,-1, 
+          6858,6859,6860,-1, 6861,6862,6863,-1, 6864,6865,6866,-1, 6867,6868,6869,-1, 6870,6871,6872,-1, 6873,6874,6875,-1, 
+          6876,6877,6878,-1, 6879,6880,6881,-1, 6882,6883,6884,-1, 6885,6886,6887,-1, 6888,6889,6890,-1, 6891,6892,6893,-1, 
+          6894,6895,6896,-1, 6897,6898,6899,-1, 6900,6901,6902,-1, 6903,6904,6905,-1, 6906,6907,6908,-1, 6909,6910,6911,-1, 
+          6912,6913,6914,-1, 6915,6916,6917,-1, 6918,6919,6920,-1, 6921,6922,6923,-1, 6924,6925,6926,-1, 6927,6928,6929,-1, 
+          6930,6931,6932,-1, 6933,6934,6935,-1, 6936,6937,6938,-1, 6939,6940,6941,-1, 6942,6943,6944,-1, 6945,6946,6947,-1, 
+          6948,6949,6950,-1, 6951,6952,6953,-1, 6954,6955,6956,-1, 6957,6958,6959,-1, 6960,6961,6962,-1, 6963,6964,6965,-1, 
+          6966,6967,6968,-1, 6969,6970,6971,-1, 6972,6973,6974,-1, 6975,6976,6977,-1, 6978,6979,6980,-1, 6981,6982,6983,-1, 
+          6984,6985,6986,-1, 6987,6988,6989,-1, 6990,6991,6992,-1, 6993,6994,6995,-1, 6996,6997,6998,-1, 6999,7000,7001,-1, 
+          7002,7003,7004,-1, 7005,7006,7007,-1, 7008,7009,7010,-1, 7011,7012,7013,-1, 7014,7015,7016,-1, 7017,7018,7019,-1, 
+          7020,7021,7022,-1, 7023,7024,7025,-1, 7026,7027,7028,-1, 7029,7030,7031,-1, 7032,7033,7034,-1, 7035,7036,7037,-1, 
+          7038,7039,7040,-1, 7041,7042,7043,-1, 7044,7045,7046,-1, 7047,7048,7049,-1, 7050,7051,7052,-1, 7053,7054,7055,-1, 
+          7056,7057,7058,-1, 7059,7060,7061,-1, 7062,7063,7064,-1, 7065,7066,7067,-1, 7068,7069,7070,-1, 7071,7072,7073,-1, 
+          7074,7075,7076,-1, 7077,7078,7079,-1, 7080,7081,7082,-1, 7083,7084,7085,-1, 7086,7087,7088,-1, 7089,7090,7091,-1, 
+          7092,7093,7094,-1, 7095,7096,7097,-1, 7098,7099,7100,-1, 7101,7102,7103,-1, 7104,7105,7106,-1, 7107,7108,7109,-1, 
+          7110,7111,7112,-1, 7113,7114,7115,-1, 7116,7117,7118,-1, 7119,7120,7121,-1, 7122,7123,7124,-1, 7125,7126,7127,-1, 
+          7128,7129,7130,-1, 7131,7132,7133,-1, 7134,7135,7136,-1, 7137,7138,7139,-1, 7140,7141,7142,-1, 7143,7144,7145,-1, 
+          7146,7147,7148,-1, 7149,7150,7151,-1, 7152,7153,7154,-1, 7155,7156,7157,-1, 7158,7159,7160,-1, 7161,7162,7163,-1, 
+          7164,7165,7166,-1, 7167,7168,7169,-1, 7170,7171,7172,-1, 7173,7174,7175,-1, 7176,7177,7178,-1, 7179,7180,7181,-1, 
+          7182,7183,7184,-1, 7185,7186,7187,-1, 7188,7189,7190,-1, 7191,7192,7193,-1, 7194,7195,7196,-1, 7197,7198,7199,-1, 
+          7200,7201,7202,-1, 7203,7204,7205,-1, 7206,7207,7208,-1, 7209,7210,7211,-1, 7212,7213,7214,-1, 7215,7216,7217,-1, 
+          7218,7219,7220,-1, 7221,7222,7223,-1, 7224,7225,7226,-1, 7227,7228,7229,-1, 7230,7231,7232,-1, 7233,7234,7235,-1, 
+          7236,7237,7238,-1, 7239,7240,7241,-1, 7242,7243,7244,-1, 7245,7246,7247,-1, 7248,7249,7250,-1, 7251,7252,7253,-1, 
+          7254,7255,7256,-1, 7257,7258,7259,-1, 7260,7261,7262,-1, 7263,7264,7265,-1, 7266,7267,7268,-1, 7269,7270,7271,-1, 
+          7272,7273,7274,-1, 7275,7276,7277,-1, 7278,7279,7280,-1, 7281,7282,7283,-1, 7284,7285,7286,-1, 7287,7288,7289,-1, 
+          7290,7291,7292,-1, 7293,7294,7295,-1, 7296,7297,7298,-1, 7299,7300,7301,-1, 7302,7303,7304,-1, 7305,7306,7307,-1, 
+          7308,7309,7310,-1, 7311,7312,7313,-1, 7314,7315,7316,-1, 7317,7318,7319,-1, 7320,7321,7322,-1, 7323,7324,7325,-1, 
+          7326,7327,7328,-1, 7329,7330,7331,-1, 7332,7333,7334,-1, 7335,7336,7337,-1, 7338,7339,7340,-1, 7341,7342,7343,-1, 
+          7344,7345,7346,-1, 7347,7348,7349,-1, 7350,7351,7352,-1, 7353,7354,7355,-1, 7356,7357,7358,-1, 7359,7360,7361,-1, 
+          7362,7363,7364,-1, 7365,7366,7367,-1, 7368,7369,7370,-1, 7371,7372,7373,-1, 7374,7375,7376,-1, 7377,7378,7379,-1, 
+          7380,7381,7382,-1, 7383,7384,7385,-1, 7386,7387,7388,-1, 7389,7390,7391,-1, 7392,7393,7394,-1, 7395,7396,7397,-1, 
+          7398,7399,7400,-1, 7401,7402,7403,-1, 7404,7405,7406,-1, 7407,7408,7409,-1, 7410,7411,7412,-1, 7413,7414,7415,-1, 
+          7416,7417,7418,-1, 7419,7420,7421,-1, 7422,7423,7424,-1, 7425,7426,7427,-1, 7428,7429,7430,-1, 7431,7432,7433,-1, 
+          7434,7435,7436,-1, 7437,7438,7439,-1, 7440,7441,7442,-1, 7443,7444,7445,-1, 7446,7447,7448,-1, 7449,7450,7451,-1, 
+          7452,7453,7454,-1, 7455,7456,7457,-1, 7458,7459,7460,-1, 7461,7462,7463,-1, 7464,7465,7466,-1, 7467,7468,7469,-1, 
+          7470,7471,7472,-1, 7473,7474,7475,-1, 7476,7477,7478,-1, 7479,7480,7481,-1, 7482,7483,7484,-1, 7485,7486,7487,-1, 
+          7488,7489,7490,-1, 7491,7492,7493,-1, 7494,7495,7496,-1, 7497,7498,7499,-1, 7500,7501,7502,-1, 7503,7504,7505,-1, 
+          7506,7507,7508,-1, 7509,7510,7511,-1, 7512,7513,7514,-1, 7515,7516,7517,-1, 7518,7519,7520,-1, 7521,7522,7523,-1, 
+          7524,7525,7526,-1, 7527,7528,7529,-1, 7530,7531,7532,-1, 7533,7534,7535,-1, 7536,7537,7538,-1, 7539,7540,7541,-1, 
+          7542,7543,7544,-1, 7545,7546,7547,-1, 7548,7549,7550,-1, 7551,7552,7553,-1, 7554,7555,7556,-1, 7557,7558,7559,-1, 
+          7560,7561,7562,-1, 7563,7564,7565,-1, 7566,7567,7568,-1, 7569,7570,7571,-1, 7572,7573,7574,-1, 7575,7576,7577,-1, 
+          7578,7579,7580,-1, 7581,7582,7583,-1, 7584,7585,7586,-1, 7587,7588,7589,-1, 7590,7591,7592,-1, 7593,7594,7595,-1, 
+          7596,7597,7598,-1, 7599,7600,7601,-1, 7602,7603,7604,-1, 7605,7606,7607,-1, 7608,7609,7610,-1, 7611,7612,7613,-1, 
+          7614,7615,7616,-1, 7617,7618,7619,-1, 7620,7621,7622,-1, 7623,7624,7625,-1, 7626,7627,7628,-1, 7629,7630,7631,-1, 
+          7632,7633,7634,-1, 7635,7636,7637,-1, 7638,7639,7640,-1, 7641,7642,7643,-1, 7644,7645,7646,-1, 7647,7648,7649,-1, 
+          7650,7651,7652,-1, 7653,7654,7655,-1, 7656,7657,7658,-1, 7659,7660,7661,-1, 7662,7663,7664,-1, 7665,7666,7667,-1, 
+          7668,7669,7670,-1, 7671,7672,7673,-1, 7674,7675,7676,-1, 7677,7678,7679,-1, 7680,7681,7682,-1, 7683,7684,7685,-1, 
+          7686,7687,7688,-1, 7689,7690,7691,-1, 7692,7693,7694,-1, 7695,7696,7697,-1, 7698,7699,7700,-1, 7701,7702,7703,-1, 
+          7704,7705,7706,-1, 7707,7708,7709,-1, 7710,7711,7712,-1, 7713,7714,7715,-1, 7716,7717,7718,-1, 7719,7720,7721,-1, 
+          7722,7723,7724,-1, 7725,7726,7727,-1, 7728,7729,7730,-1, 7731,7732,7733,-1, 7734,7735,7736,-1, 7737,7738,7739,-1, 
+          7740,7741,7742,-1, 7743,7744,7745,-1, 7746,7747,7748,-1, 7749,7750,7751,-1, 7752,7753,7754,-1, 7755,7756,7757,-1, 
+          7758,7759,7760,-1, 7761,7762,7763,-1, 7764,7765,7766,-1, 7767,7768,7769,-1, 7770,7771,7772,-1, 7773,7774,7775,-1, 
+          7776,7777,7778,-1, 7779,7780,7781,-1, 7782,7783,7784,-1, 7785,7786,7787,-1, 7788,7789,7790,-1, 7791,7792,7793,-1, 
+          7794,7795,7796,-1, 7797,7798,7799,-1, 7800,7801,7802,-1, 7803,7804,7805,-1, 7806,7807,7808,-1, 7809,7810,7811,-1, 
+          7812,7813,7814,-1, 7815,7816,7817,-1, 7818,7819,7820,-1, 7821,7822,7823,-1, 7824,7825,7826,-1, 7827,7828,7829,-1, 
+          7830,7831,7832,-1, 7833,7834,7835,-1, 7836,7837,7838,-1, 7839,7840,7841,-1, 7842,7843,7844,-1, 7845,7846,7847,-1, 
+          7848,7849,7850,-1, 7851,7852,7853,-1, 7854,7855,7856,-1, 7857,7858,7859,-1, 7860,7861,7862,-1, 7863,7864,7865,-1, 
+          7866,7867,7868,-1, 7869,7870,7871,-1, 7872,7873,7874,-1, 7875,7876,7877,-1, 7878,7879,7880,-1, 7881,7882,7883,-1, 
+          7884,7885,7886,-1, 7887,7888,7889,-1, 7890,7891,7892,-1, 7893,7894,7895,-1, 7896,7897,7898,-1, 7899,7900,7901,-1, 
+          7902,7903,7904,-1, 7905,7906,7907,-1, 7908,7909,7910,-1, 7911,7912,7913,-1, 7914,7915,7916,-1, 7917,7918,7919,-1, 
+          7920,7921,7922,-1, 7923,7924,7925,-1, 7926,7927,7928,-1, 7929,7930,7931,-1, 7932,7933,7934,-1, 7935,7936,7937,-1, 
+          7938,7939,7940,-1, 7941,7942,7943,-1, 7944,7945,7946,-1, 7947,7948,7949,-1, 7950,7951,7952,-1, 7953,7954,7955,-1, 
+          7956,7957,7958,-1, 7959,7960,7961,-1, 7962,7963,7964,-1, 7965,7966,7967,-1, 7968,7969,7970,-1, 7971,7972,7973,-1, 
+          7974,7975,7976,-1, 7977,7978,7979,-1, 7980,7981,7982,-1, 7983,7984,7985,-1, 7986,7987,7988,-1, 7989,7990,7991,-1, 
+          7992,7993,7994,-1, 7995,7996,7997,-1, 7998,7999,8000,-1, 8001,8002,8003,-1, 8004,8005,8006,-1, 8007,8008,8009,-1, 
+          8010,8011,8012,-1, 8013,8014,8015,-1, 8016,8017,8018,-1, 8019,8020,8021,-1, 8022,8023,8024,-1, 8025,8026,8027,-1, 
+          8028,8029,8030,-1, 8031,8032,8033,-1, 8034,8035,8036,-1, 8037,8038,8039,-1, 8040,8041,8042,-1, 8043,8044,8045,-1, 
+          8046,8047,8048,-1, 8049,8050,8051,-1, 8052,8053,8054,-1, 8055,8056,8057,-1, 8058,8059,8060,-1, 8061,8062,8063,-1, 
+          8064,8065,8066,-1, 8067,8068,8069,-1, 8070,8071,8072,-1, 8073,8074,8075,-1, 8076,8077,8078,-1, 8079,8080,8081,-1, 
+          8082,8083,8084,-1, 8085,8086,8087,-1, 8088,8089,8090,-1, 8091,8092,8093,-1, 8094,8095,8096,-1, 8097,8098,8099,-1, 
+          8100,8101,8102,-1, 8103,8104,8105,-1, 8106,8107,8108,-1, 8109,8110,8111,-1, 8112,8113,8114,-1, 8115,8116,8117,-1, 
+          8118,8119,8120,-1, 8121,8122,8123,-1, 8124,8125,8126,-1, 8127,8128,8129,-1, 8130,8131,8132,-1, 8133,8134,8135,-1, 
+          8136,8137,8138,-1, 8139,8140,8141,-1, 8142,8143,8144,-1, 8145,8146,8147,-1, 8148,8149,8150,-1, 8151,8152,8153,-1, 
+          8154,8155,8156,-1, 8157,8158,8159,-1, 8160,8161,8162,-1, 8163,8164,8165,-1, 8166,8167,8168,-1, 8169,8170,8171,-1, 
+          8172,8173,8174,-1, 8175,8176,8177,-1, 8178,8179,8180,-1, 8181,8182,8183,-1, 8184,8185,8186,-1, 8187,8188,8189,-1, 
+          8190,8191,8192,-1, 8193,8194,8195,-1, 8196,8197,8198,-1, 8199,8200,8201,-1, 8202,8203,8204,-1, 8205,8206,8207,-1, 
+          8208,8209,8210,-1, 8211,8212,8213,-1, 8214,8215,8216,-1, 8217,8218,8219,-1, 8220,8221,8222,-1, 8223,8224,8225,-1, 
+          8226,8227,8228,-1, 8229,8230,8231,-1, 8232,8233,8234,-1, 8235,8236,8237,-1, 8238,8239,8240,-1, 8241,8242,8243,-1, 
+          8244,8245,8246,-1, 8247,8248,8249,-1, 8250,8251,8252,-1, 8253,8254,8255,-1, 8256,8257,8258,-1, 8259,8260,8261,-1, 
+          8262,8263,8264,-1, 8265,8266,8267,-1, 8268,8269,8270,-1, 8271,8272,8273,-1, 8274,8275,8276,-1, 8277,8278,8279,-1, 
+          8280,8281,8282,-1, 8283,8284,8285,-1, 8286,8287,8288,-1, 8289,8290,8291,-1, 8292,8293,8294,-1, 8295,8296,8297,-1, 
+          8298,8299,8300,-1, 8301,8302,8303,-1, 8304,8305,8306,-1, 8307,8308,8309,-1, 8310,8311,8312,-1, 8313,8314,8315,-1, 
+          8316,8317,8318,-1, 8319,8320,8321,-1, 8322,8323,8324,-1, 8325,8326,8327,-1, 8328,8329,8330,-1, 8331,8332,8333,-1, 
+          8334,8335,8336,-1, 8337,8338,8339,-1, 8340,8341,8342,-1, 8343,8344,8345,-1, 8346,8347,8348,-1, 8349,8350,8351,-1, 
+          8352,8353,8354,-1, 8355,8356,8357,-1, 8358,8359,8360,-1, 8361,8362,8363,-1, 8364,8365,8366,-1, 8367,8368,8369,-1, 
+          8370,8371,8372,-1, 8373,8374,8375,-1, 8376,8377,8378,-1, 8379,8380,8381,-1, 8382,8383,8384,-1, 8385,8386,8387,-1, 
+          8388,8389,8390,-1, 8391,8392,8393,-1, 8394,8395,8396,-1, 8397,8398,8399,-1, 8400,8401,8402,-1, 8403,8404,8405,-1, 
+          8406,8407,8408,-1, 8409,8410,8411,-1, 8412,8413,8414,-1, 8415,8416,8417,-1, 8418,8419,8420,-1, 8421,8422,8423,-1, 
+          8424,8425,8426,-1, 8427,8428,8429,-1, 8430,8431,8432,-1, 8433,8434,8435,-1, 8436,8437,8438,-1, 8439,8440,8441,-1, 
+          8442,8443,8444,-1, 8445,8446,8447,-1, 8448,8449,8450,-1, 8451,8452,8453,-1, 8454,8455,8456,-1, 8457,8458,8459,-1, 
+          8460,8461,8462,-1, 8463,8464,8465,-1, 8466,8467,8468,-1, 8469,8470,8471,-1, 8472,8473,8474,-1, 8475,8476,8477,-1, 
+          8478,8479,8480,-1, 8481,8482,8483,-1, 8484,8485,8486,-1, 8487,8488,8489,-1, 8490,8491,8492,-1, 8493,8494,8495,-1, 
+          8496,8497,8498,-1, 8499,8500,8501,-1, 8502,8503,8504,-1, 8505,8506,8507,-1, 8508,8509,8510,-1, 8511,8512,8513,-1, 
+          8514,8515,8516,-1, 8517,8518,8519,-1, 8520,8521,8522,-1, 8523,8524,8525,-1, 8526,8527,8528,-1, 8529,8530,8531,-1, 
+          8532,8533,8534,-1, 8535,8536,8537,-1, 8538,8539,8540,-1, 8541,8542,8543,-1, 8544,8545,8546,-1, 8547,8548,8549,-1, 
+          8550,8551,8552,-1, 8553,8554,8555,-1, 8556,8557,8558,-1, 8559,8560,8561,-1, 8562,8563,8564,-1, 8565,8566,8567,-1, 
+          8568,8569,8570,-1, 8571,8572,8573,-1, 8574,8575,8576,-1, 8577,8578,8579,-1, 8580,8581,8582,-1, 8583,8584,8585,-1, 
+          8586,8587,8588,-1, 8589,8590,8591,-1, 8592,8593,8594,-1, 8595,8596,8597,-1, 8598,8599,8600,-1, 8601,8602,8603,-1, 
+          8604,8605,8606,-1, 8607,8608,8609,-1, 8610,8611,8612,-1, 8613,8614,8615,-1, 8616,8617,8618,-1, 8619,8620,8621,-1, 
+          8622,8623,8624,-1, 8625,8626,8627,-1, 8628,8629,8630,-1, 8631,8632,8633,-1, 8634,8635,8636,-1, 8637,8638,8639,-1, 
+          8640,8641,8642,-1, 8643,8644,8645,-1, 8646,8647,8648,-1, 8649,8650,8651,-1, 8652,8653,8654,-1, 8655,8656,8657,-1, 
+          8658,8659,8660,-1, 8661,8662,8663,-1, 8664,8665,8666,-1, 8667,8668,8669,-1, 8670,8671,8672,-1, 8673,8674,8675,-1, 
+          8676,8677,8678,-1, 8679,8680,8681,-1, 8682,8683,8684,-1, 8685,8686,8687,-1, 8688,8689,8690,-1, 8691,8692,8693,-1, 
+          8694,8695,8696,-1, 8697,8698,8699,-1, 8700,8701,8702,-1, 8703,8704,8705,-1, 8706,8707,8708,-1, 8709,8710,8711,-1, 
+          8712,8713,8714,-1, 8715,8716,8717,-1, 8718,8719,8720,-1, 8721,8722,8723,-1, 8724,8725,8726,-1, 8727,8728,8729,-1, 
+          8730,8731,8732,-1, 8733,8734,8735,-1, 8736,8737,8738,-1, 8739,8740,8741,-1, 8742,8743,8744,-1, 8745,8746,8747,-1, 
+          8748,8749,8750,-1, 8751,8752,8753,-1, 8754,8755,8756,-1, 8757,8758,8759,-1, 8760,8761,8762,-1, 8763,8764,8765,-1, 
+          8766,8767,8768,-1, 8769,8770,8771,-1, 8772,8773,8774,-1, 8775,8776,8777,-1, 8778,8779,8780,-1, 8781,8782,8783,-1, 
+          8784,8785,8786,-1, 8787,8788,8789,-1, 8790,8791,8792,-1, 8793,8794,8795,-1, 8796,8797,8798,-1, 8799,8800,8801,-1, 
+          8802,8803,8804,-1, 8805,8806,8807,-1, 8808,8809,8810,-1, 8811,8812,8813,-1, 8814,8815,8816,-1, 8817,8818,8819,-1, 
+          8820,8821,8822,-1, 8823,8824,8825,-1, 8826,8827,8828,-1, 8829,8830,8831,-1, 8832,8833,8834,-1, 8835,8836,8837,-1, 
+          8838,8839,8840,-1, 8841,8842,8843,-1, 8844,8845,8846,-1, 8847,8848,8849,-1, 8850,8851,8852,-1, 8853,8854,8855,-1, 
+          8856,8857,8858,-1, 8859,8860,8861,-1, 8862,8863,8864,-1, 8865,8866,8867,-1, 8868,8869,8870,-1, 8871,8872,8873,-1, 
+          8874,8875,8876,-1, 8877,8878,8879,-1, 8880,8881,8882,-1, 8883,8884,8885,-1, 8886,8887,8888,-1, 8889,8890,8891,-1, 
+          8892,8893,8894,-1, 8895,8896,8897,-1, 8898,8899,8900,-1, 8901,8902,8903,-1, 8904,8905,8906,-1, 8907,8908,8909,-1, 
+          8910,8911,8912,-1, 8913,8914,8915,-1, 8916,8917,8918,-1, 8919,8920,8921,-1, 8922,8923,8924,-1, 8925,8926,8927,-1, 
+          8928,8929,8930,-1, 8931,8932,8933,-1, 8934,8935,8936,-1, 8937,8938,8939,-1, 8940,8941,8942,-1, 8943,8944,8945,-1, 
+          8946,8947,8948,-1, 8949,8950,8951,-1, 8952,8953,8954,-1, 8955,8956,8957,-1, 8958,8959,8960,-1, 8961,8962,8963,-1, 
+          8964,8965,8966,-1, 8967,8968,8969,-1, 8970,8971,8972,-1, 8973,8974,8975,-1, 8976,8977,8978,-1, 8979,8980,8981,-1, 
+          8982,8983,8984,-1, 8985,8986,8987,-1, 8988,8989,8990,-1, 8991,8992,8993,-1, 8994,8995,8996,-1, 8997,8998,8999,-1, 
+          9000,9001,9002,-1, 9003,9004,9005,-1, 9006,9007,9008,-1, 9009,9010,9011,-1, 9012,9013,9014,-1, 9015,9016,9017,-1, 
+          9018,9019,9020,-1, 9021,9022,9023,-1, 9024,9025,9026,-1, 9027,9028,9029,-1, 9030,9031,9032,-1, 9033,9034,9035,-1, 
+          9036,9037,9038,-1, 9039,9040,9041,-1, 9042,9043,9044,-1, 9045,9046,9047,-1, 9048,9049,9050,-1, 9051,9052,9053,-1, 
+          9054,9055,9056,-1, 9057,9058,9059,-1, 9060,9061,9062,-1, 9063,9064,9065,-1, 9066,9067,9068,-1, 9069,9070,9071,-1, 
+          9072,9073,9074,-1, 9075,9076,9077,-1, 9078,9079,9080,-1, 9081,9082,9083,-1, 9084,9085,9086,-1, 9087,9088,9089,-1, 
+          9090,9091,9092,-1, 9093,9094,9095,-1, 9096,9097,9098,-1, 9099,9100,9101,-1, 9102,9103,9104,-1, 9105,9106,9107,-1, 
+          9108,9109,9110,-1, 9111,9112,9113,-1, 9114,9115,9116,-1, 9117,9118,9119,-1, 9120,9121,9122,-1, 9123,9124,9125,-1, 
+          9126,9127,9128,-1, 9129,9130,9131,-1, 9132,9133,9134,-1, 9135,9136,9137,-1, 9138,9139,9140,-1, 9141,9142,9143,-1, 
+          9144,9145,9146,-1, 9147,9148,9149,-1, 9150,9151,9152,-1, 9153,9154,9155,-1, 9156,9157,9158,-1, 9159,9160,9161,-1, 
+          9162,9163,9164,-1, 9165,9166,9167,-1, 9168,9169,9170,-1, 9171,9172,9173,-1, 9174,9175,9176,-1, 9177,9178,9179,-1, 
+          9180,9181,9182,-1, 9183,9184,9185,-1, 9186,9187,9188,-1, 9189,9190,9191,-1, 9192,9193,9194,-1, 9195,9196,9197,-1, 
+          9198,9199,9200,-1, 9201,9202,9203,-1, 9204,9205,9206,-1, 9207,9208,9209,-1, 9210,9211,9212,-1, 9213,9214,9215,-1, 
+          9216,9217,9218,-1, 9219,9220,9221,-1, 9222,9223,9224,-1, 9225,9226,9227,-1, 9228,9229,9230,-1, 9231,9232,9233,-1, 
+          9234,9235,9236,-1, 9237,9238,9239,-1, 9240,9241,9242,-1, 9243,9244,9245,-1, 9246,9247,9248,-1, 9249,9250,9251,-1, 
+          9252,9253,9254,-1, 9255,9256,9257,-1, 9258,9259,9260,-1, 9261,9262,9263,-1, 9264,9265,9266,-1, 9267,9268,9269,-1, 
+          9270,9271,9272,-1, 9273,9274,9275,-1, 9276,9277,9278,-1, 9279,9280,9281,-1, 9282,9283,9284,-1, 9285,9286,9287,-1, 
+          9288,9289,9290,-1, 9291,9292,9293,-1, 9294,9295,9296,-1, 9297,9298,9299,-1, 9300,9301,9302,-1, 9303,9304,9305,-1, 
+          9306,9307,9308,-1, 9309,9310,9311,-1, 9312,9313,9314,-1, 9315,9316,9317,-1, 9318,9319,9320,-1, 9321,9322,9323,-1, 
+          9324,9325,9326,-1, 9327,9328,9329,-1, 9330,9331,9332,-1, 9333,9334,9335,-1, 9336,9337,9338,-1, 9339,9340,9341,-1, 
+          9342,9343,9344,-1, 9345,9346,9347,-1, 9348,9349,9350,-1, 9351,9352,9353,-1, 9354,9355,9356,-1, 9357,9358,9359,-1, 
+          9360,9361,9362,-1, 9363,9364,9365,-1, 9366,9367,9368,-1, 9369,9370,9371,-1, 9372,9373,9374,-1, 9375,9376,9377,-1, 
+          9378,9379,9380,-1, 9381,9382,9383,-1, 9384,9385,9386,-1, 9387,9388,9389,-1, 9390,9391,9392,-1, 9393,9394,9395,-1, 
+          9396,9397,9398,-1, 9399,9400,9401,-1, 9402,9403,9404,-1, 9405,9406,9407,-1, 9408,9409,9410,-1, 9411,9412,9413,-1, 
+          9414,9415,9416,-1, 9417,9418,9419,-1, 9420,9421,9422,-1, 9423,9424,9425,-1, 9426,9427,9428,-1, 9429,9430,9431,-1, 
+          9432,9433,9434,-1, 9435,9436,9437,-1, 9438,9439,9440,-1, 9441,9442,9443,-1, 9444,9445,9446,-1, 9447,9448,9449,-1, 
+          9450,9451,9452,-1, 9453,9454,9455,-1, 9456,9457,9458,-1, 9459,9460,9461,-1, 9462,9463,9464,-1, 9465,9466,9467,-1, 
+          9468,9469,9470,-1, 9471,9472,9473,-1, 9474,9475,9476,-1, 9477,9478,9479,-1, 9480,9481,9482,-1, 9483,9484,9485,-1, 
+          9486,9487,9488,-1, 9489,9490,9491,-1, 9492,9493,9494,-1, 9495,9496,9497,-1, 9498,9499,9500,-1, 9501,9502,9503,-1, 
+          9504,9505,9506,-1, 9507,9508,9509,-1, 9510,9511,9512,-1, 9513,9514,9515,-1, 9516,9517,9518,-1, 9519,9520,9521,-1, 
+          9522,9523,9524,-1, 9525,9526,9527,-1, 9528,9529,9530,-1, 9531,9532,9533,-1, 9534,9535,9536,-1, 9537,9538,9539,-1, 
+          9540,9541,9542,-1, 9543,9544,9545,-1, 9546,9547,9548,-1, 9549,9550,9551,-1, 9552,9553,9554,-1, 9555,9556,9557,-1, 
+          9558,9559,9560,-1, 9561,9562,9563,-1, 9564,9565,9566,-1, 9567,9568,9569,-1, 9570,9571,9572,-1, 9573,9574,9575,-1, 
+          9576,9577,9578,-1, 9579,9580,9581,-1, 9582,9583,9584,-1, 9585,9586,9587,-1, 9588,9589,9590,-1, 9591,9592,9593,-1, 
+          9594,9595,9596,-1, 9597,9598,9599,-1, 9600,9601,9602,-1, 9603,9604,9605,-1, 9606,9607,9608,-1, 9609,9610,9611,-1, 
+          9612,9613,9614,-1, 9615,9616,9617,-1, 9618,9619,9620,-1, 9621,9622,9623,-1, 9624,9625,9626,-1, 9627,9628,9629,-1, 
+          9630,9631,9632,-1, 9633,9634,9635,-1, 9636,9637,9638,-1, 9639,9640,9641,-1, 9642,9643,9644,-1, 9645,9646,9647,-1, 
+          9648,9649,9650,-1, 9651,9652,9653,-1, 9654,9655,9656,-1, 9657,9658,9659,-1, 9660,9661,9662,-1, 9663,9664,9665,-1, 
+          9666,9667,9668,-1, 9669,9670,9671,-1, 9672,9673,9674,-1, 9675,9676,9677,-1, 9678,9679,9680,-1, 9681,9682,9683,-1, 
+          9684,9685,9686,-1, 9687,9688,9689,-1, 9690,9691,9692,-1, 9693,9694,9695,-1, 9696,9697,9698,-1, 9699,9700,9701,-1, 
+          9702,9703,9704,-1, 9705,9706,9707,-1, 9708,9709,9710,-1, 9711,9712,9713,-1, 9714,9715,9716,-1, 9717,9718,9719,-1, 
+          9720,9721,9722,-1, 9723,9724,9725,-1, 9726,9727,9728,-1, 9729,9730,9731,-1, 9732,9733,9734,-1, 9735,9736,9737,-1, 
+          9738,9739,9740,-1, 9741,9742,9743,-1, 9744,9745,9746,-1, 9747,9748,9749,-1, 9750,9751,9752,-1, 9753,9754,9755,-1, 
+          9756,9757,9758,-1, 9759,9760,9761,-1, 9762,9763,9764,-1, 9765,9766,9767,-1, 9768,9769,9770,-1, 9771,9772,9773,-1, 
+          9774,9775,9776,-1, 9777,9778,9779,-1, 9780,9781,9782,-1, 9783,9784,9785,-1, 9786,9787,9788,-1, 9789,9790,9791,-1, 
+          9792,9793,9794,-1, 9795,9796,9797,-1, 9798,9799,9800,-1, 9801,9802,9803,-1, 9804,9805,9806,-1, 9807,9808,9809,-1, 
+          9810,9811,9812,-1, 9813,9814,9815,-1, 9816,9817,9818,-1, 9819,9820,9821,-1, 9822,9823,9824,-1, 9825,9826,9827,-1, 
+          9828,9829,9830,-1, 9831,9832,9833,-1, 9834,9835,9836,-1, 9837,9838,9839,-1, 9840,9841,9842,-1, 9843,9844,9845,-1, 
+          9846,9847,9848,-1, 9849,9850,9851,-1, 9852,9853,9854,-1, 9855,9856,9857,-1, 9858,9859,9860,-1, 9861,9862,9863,-1, 
+          9864,9865,9866,-1, 9867,9868,9869,-1, 9870,9871,9872,-1, 9873,9874,9875,-1, 9876,9877,9878,-1, 9879,9880,9881,-1, 
+          9882,9883,9884,-1, 9885,9886,9887,-1, 9888,9889,9890,-1, 9891,9892,9893,-1, 9894,9895,9896,-1, 9897,9898,9899,-1, 
+          9900,9901,9902,-1, 9903,9904,9905,-1, 9906,9907,9908,-1, 9909,9910,9911,-1, 9912,9913,9914,-1, 9915,9916,9917,-1, 
+          9918,9919,9920,-1, 9921,9922,9923,-1, 9924,9925,9926,-1, 9927,9928,9929,-1, 9930,9931,9932,-1, 9933,9934,9935,-1, 
+          9936,9937,9938,-1, 9939,9940,9941,-1, 9942,9943,9944,-1, 9945,9946,9947,-1, 9948,9949,9950,-1, 9951,9952,9953,-1, 
+          9954,9955,9956,-1, 9957,9958,9959,-1, 9960,9961,9962,-1, 9963,9964,9965,-1, 9966,9967,9968,-1, 9969,9970,9971,-1, 
+          9972,9973,9974,-1, 9975,9976,9977,-1, 9978,9979,9980,-1, 9981,9982,9983,-1, 9984,9985,9986,-1, 9987,9988,9989,-1, 
+          9990,9991,9992,-1, 9993,9994,9995,-1, 9996,9997,9998,-1, 9999,10000,10001,-1, 10002,10003,10004,-1, 10005,10006,10007,-1, 
+          10008,10009,10010,-1, 10011,10012,10013,-1, 10014,10015,10016,-1, 10017,10018,10019,-1, 10020,10021,10022,-1, 10023,10024,10025,-1, 
+          10026,10027,10028,-1, 10029,10030,10031,-1, 10032,10033,10034,-1, 10035,10036,10037,-1, 10038,10039,10040,-1, 10041,10042,10043,-1, 
+          10044,10045,10046,-1, 10047,10048,10049,-1, 10050,10051,10052,-1, 10053,10054,10055,-1, 10056,10057,10058,-1, 10059,10060,10061,-1, 
+          10062,10063,10064,-1, 10065,10066,10067,-1, 10068,10069,10070,-1, 10071,10072,10073,-1, 10074,10075,10076,-1, 10077,10078,10079,-1, 
+          10080,10081,10082,-1, 10083,10084,10085,-1, 10086,10087,10088,-1, 10089,10090,10091,-1, 10092,10093,10094,-1, 10095,10096,10097,-1, 
+          10098,10099,10100,-1, 10101,10102,10103,-1, 10104,10105,10106,-1, 10107,10108,10109,-1, 10110,10111,10112,-1, 10113,10114,10115,-1, 
+          10116,10117,10118,-1, 10119,10120,10121,-1, 10122,10123,10124,-1, 10125,10126,10127,-1, 10128,10129,10130,-1, 10131,10132,10133,-1, 
+          10134,10135,10136,-1, 10137,10138,10139,-1, 10140,10141,10142,-1, 10143,10144,10145,-1, 10146,10147,10148,-1, 10149,10150,10151,-1, 
+          10152,10153,10154,-1, 10155,10156,10157,-1, 10158,10159,10160,-1, 10161,10162,10163,-1, 10164,10165,10166,-1, 10167,10168,10169,-1, 
+          10170,10171,10172,-1, 10173,10174,10175,-1, 10176,10177,10178,-1, 10179,10180,10181,-1, 10182,10183,10184,-1, 10185,10186,10187,-1, 
+          10188,10189,10190,-1, 10191,10192,10193,-1, 10194,10195,10196,-1, 10197,10198,10199,-1, 10200,10201,10202,-1, 10203,10204,10205,-1, 
+          10206,10207,10208,-1, 10209,10210,10211,-1, 10212,10213,10214,-1, 10215,10216,10217,-1, 10218,10219,10220,-1, 10221,10222,10223,-1, 
+          10224,10225,10226,-1, 10227,10228,10229,-1, 10230,10231,10232,-1, 10233,10234,10235,-1, 10236,10237,10238,-1, 10239,10240,10241,-1, 
+          10242,10243,10244,-1, 10245,10246,10247,-1, 10248,10249,10250,-1, 10251,10252,10253,-1, 10254,10255,10256,-1, 10257,10258,10259,-1, 
+          10260,10261,10262,-1, 10263,10264,10265,-1, 10266,10267,10268,-1, 10269,10270,10271,-1, 10272,10273,10274,-1, 10275,10276,10277,-1, 
+          10278,10279,10280,-1, 10281,10282,10283,-1, 10284,10285,10286,-1, 10287,10288,10289,-1, 10290,10291,10292,-1, 10293,10294,10295,-1, 
+          10296,10297,10298,-1, 10299,10300,10301,-1, 10302,10303,10304,-1, 10305,10306,10307,-1, 10308,10309,10310,-1, 10311,10312,10313,-1, 
+          10314,10315,10316,-1, 10317,10318,10319,-1, 10320,10321,10322,-1, 10323,10324,10325,-1, 10326,10327,10328,-1, 10329,10330,10331,-1, 
+          10332,10333,10334,-1, 10335,10336,10337,-1, 10338,10339,10340,-1, 10341,10342,10343,-1, 10344,10345,10346,-1, 10347,10348,10349,-1, 
+          10350,10351,10352,-1, 10353,10354,10355,-1, 10356,10357,10358,-1, 10359,10360,10361,-1, 10362,10363,10364,-1, 10365,10366,10367,-1, 
+          10368,10369,10370,-1, 10371,10372,10373,-1, 10374,10375,10376,-1, 10377,10378,10379,-1, 10380,10381,10382,-1, 10383,10384,10385,-1, 
+          10386,10387,10388,-1, 10389,10390,10391,-1, 10392,10393,10394,-1, 10395,10396,10397,-1, 10398,10399,10400,-1, 10401,10402,10403,-1, 
+          10404,10405,10406,-1, 10407,10408,10409,-1, 10410,10411,10412,-1, 10413,10414,10415,-1, 10416,10417,10418,-1, 10419,10420,10421,-1, 
+          10422,10423,10424,-1, 10425,10426,10427,-1, 10428,10429,10430,-1, 10431,10432,10433,-1, 10434,10435,10436,-1, 10437,10438,10439,-1, 
+          10440,10441,10442,-1, 10443,10444,10445,-1, 10446,10447,10448,-1, 10449,10450,10451,-1, 10452,10453,10454,-1, 10455,10456,10457,-1, 
+          10458,10459,10460,-1, 10461,10462,10463,-1, 10464,10465,10466,-1, 10467,10468,10469,-1, 10470,10471,10472,-1, 10473,10474,10475,-1, 
+          10476,10477,10478,-1, 10479,10480,10481,-1, 10482,10483,10484,-1, 10485,10486,10487,-1, 10488,10489,10490,-1, 10491,10492,10493,-1, 
+          10494,10495,10496,-1, 10497,10498,10499,-1, 10500,10501,10502,-1, 10503,10504,10505,-1, 10506,10507,10508,-1, 10509,10510,10511,-1, 
+          10512,10513,10514,-1, 10515,10516,10517,-1, 10518,10519,10520,-1, 10521,10522,10523,-1, 10524,10525,10526,-1, 10527,10528,10529,-1, 
+          10530,10531,10532,-1, 10533,10534,10535,-1, 10536,10537,10538,-1, 10539,10540,10541,-1, 10542,10543,10544,-1, 10545,10546,10547,-1, 
+          10548,10549,10550,-1, 10551,10552,10553,-1, 10554,10555,10556,-1, 10557,10558,10559,-1, 10560,10561,10562,-1, 10563,10564,10565,-1, 
+          10566,10567,10568,-1, 10569,10570,10571,-1, 10572,10573,10574,-1, 10575,10576,10577,-1, 10578,10579,10580,-1, 10581,10582,10583,-1, 
+          10584,10585,10586,-1, 10587,10588,10589,-1, 10590,10591,10592,-1, 10593,10594,10595,-1, 10596,10597,10598,-1, 10599,10600,10601,-1, 
+          10602,10603,10604,-1, 10605,10606,10607,-1, 10608,10609,10610,-1, 10611,10612,10613,-1, 10614,10615,10616,-1, 10617,10618,10619,-1, 
+          10620,10621,10622,-1, 10623,10624,10625,-1, 10626,10627,10628,-1, 10629,10630,10631,-1, 10632,10633,10634,-1, 10635,10636,10637,-1, 
+          10638,10639,10640,-1, 10641,10642,10643,-1, 10644,10645,10646,-1, 10647,10648,10649,-1, 10650,10651,10652,-1, 10653,10654,10655,-1, 
+          10656,10657,10658,-1, 10659,10660,10661,-1, 10662,10663,10664,-1, 10665,10666,10667,-1, 10668,10669,10670,-1, 10671,10672,10673,-1, 
+          10674,10675,10676,-1, 10677,10678,10679,-1, 10680,10681,10682,-1, 10683,10684,10685,-1, 10686,10687,10688,-1, 10689,10690,10691,-1, 
+          10692,10693,10694,-1, 10695,10696,10697,-1, 10698,10699,10700,-1, 10701,10702,10703,-1, 10704,10705,10706,-1, 10707,10708,10709,-1, 
+          10710,10711,10712,-1, 10713,10714,10715,-1, 10716,10717,10718,-1, 10719,10720,10721,-1, 10722,10723,10724,-1, 10725,10726,10727,-1, 
+          10728,10729,10730,-1, 10731,10732,10733,-1, 10734,10735,10736,-1, 10737,10738,10739,-1, 10740,10741,10742,-1, 10743,10744,10745,-1, 
+          10746,10747,10748,-1, 10749,10750,10751,-1, 10752,10753,10754,-1, 10755,10756,10757,-1, 10758,10759,10760,-1, 10761,10762,10763,-1, 
+          10764,10765,10766,-1, 10767,10768,10769,-1, 10770,10771,10772,-1, 10773,10774,10775,-1, 10776,10777,10778,-1, 10779,10780,10781,-1, 
+          10782,10783,10784,-1, 10785,10786,10787,-1, 10788,10789,10790,-1, 10791,10792,10793,-1, 10794,10795,10796,-1, 10797,10798,10799,-1, 
+          10800,10801,10802,-1, 10803,10804,10805,-1, 10806,10807,10808,-1, 10809,10810,10811,-1, 10812,10813,10814,-1, 10815,10816,10817,-1, 
+          10818,10819,10820,-1, 10821,10822,10823,-1, 10824,10825,10826,-1, 10827,10828,10829,-1, 10830,10831,10832,-1, 10833,10834,10835,-1, 
+          10836,10837,10838,-1, 10839,10840,10841,-1, 10842,10843,10844,-1, 10845,10846,10847,-1, 10848,10849,10850,-1, 10851,10852,10853,-1, 
+          10854,10855,10856,-1, 10857,10858,10859,-1, 10860,10861,10862,-1, 10863,10864,10865,-1, 10866,10867,10868,-1, 10869,10870,10871,-1, 
+          10872,10873,10874,-1, 10875,10876,10877,-1, 10878,10879,10880,-1, 10881,10882,10883,-1, 10884,10885,10886,-1, 10887,10888,10889,-1, 
+          10890,10891,10892,-1, 10893,10894,10895,-1, 10896,10897,10898,-1, 10899,10900,10901,-1, 10902,10903,10904,-1, 10905,10906,10907,-1, 
+          10908,10909,10910,-1, 10911,10912,10913,-1, 10914,10915,10916,-1, 10917,10918,10919,-1, 10920,10921,10922,-1, 10923,10924,10925,-1, 
+          10926,10927,10928,-1, 10929,10930,10931,-1, 10932,10933,10934,-1, 10935,10936,10937,-1, 10938,10939,10940,-1, 10941,10942,10943,-1, 
+          10944,10945,10946,-1, 10947,10948,10949,-1, 10950,10951,10952,-1, 10953,10954,10955,-1, 10956,10957,10958,-1, 10959,10960,10961,-1, 
+          10962,10963,10964,-1, 10965,10966,10967,-1, 10968,10969,10970,-1, 10971,10972,10973,-1, 10974,10975,10976,-1, 10977,10978,10979,-1, 
+          10980,10981,10982,-1, 10983,10984,10985,-1, 10986,10987,10988,-1, 10989,10990,10991,-1, 10992,10993,10994,-1, 10995,10996,10997,-1, 
+          10998,10999,11000,-1, 11001,11002,11003,-1, 11004,11005,11006,-1, 11007,11008,11009,-1, 11010,11011,11012,-1, 11013,11014,11015,-1, 
+          11016,11017,11018,-1, 11019,11020,11021,-1, 11022,11023,11024,-1, 11025,11026,11027,-1, 11028,11029,11030,-1, 11031,11032,11033,-1, 
+          11034,11035,11036,-1, 11037,11038,11039,-1, 11040,11041,11042,-1, 11043,11044,11045,-1, 11046,11047,11048,-1, 11049,11050,11051,-1, 
+          11052,11053,11054,-1, 11055,11056,11057,-1, 11058,11059,11060,-1, 11061,11062,11063,-1, 11064,11065,11066,-1, 11067,11068,11069,-1, 
+          11070,11071,11072,-1, 11073,11074,11075,-1, 11076,11077,11078,-1, 11079,11080,11081,-1, 11082,11083,11084,-1, 11085,11086,11087,-1, 
+          11088,11089,11090,-1, 11091,11092,11093,-1, 11094,11095,11096,-1, 11097,11098,11099,-1, 11100,11101,11102,-1, 11103,11104,11105,-1, 
+          11106,11107,11108,-1, 11109,11110,11111,-1, 11112,11113,11114,-1, 11115,11116,11117,-1, 11118,11119,11120,-1, 11121,11122,11123,-1, 
+          11124,11125,11126,-1, 11127,11128,11129,-1, 11130,11131,11132,-1, 11133,11134,11135,-1, 11136,11137,11138,-1, 11139,11140,11141,-1, 
+          11142,11143,11144,-1, 11145,11146,11147,-1, 11148,11149,11150,-1, 11151,11152,11153,-1, 11154,11155,11156,-1, 11157,11158,11159,-1, 
+          11160,11161,11162,-1, 11163,11164,11165,-1, 11166,11167,11168,-1, 11169,11170,11171,-1, 11172,11173,11174,-1, 11175,11176,11177,-1, 
+          11178,11179,11180,-1, 11181,11182,11183,-1, 11184,11185,11186,-1, 11187,11188,11189,-1, 11190,11191,11192,-1, 11193,11194,11195,-1, 
+          11196,11197,11198,-1, 11199,11200,11201,-1, 11202,11203,11204,-1, 11205,11206,11207,-1, 11208,11209,11210,-1, 11211,11212,11213,-1, 
+          11214,11215,11216,-1, 11217,11218,11219,-1, 11220,11221,11222,-1, 11223,11224,11225,-1, 11226,11227,11228,-1, 11229,11230,11231,-1, 
+          11232,11233,11234,-1, 11235,11236,11237,-1, 11238,11239,11240,-1, 11241,11242,11243,-1, 11244,11245,11246,-1, 11247,11248,11249,-1, 
+          11250,11251,11252,-1, 11253,11254,11255,-1, 11256,11257,11258,-1, 11259,11260,11261,-1, 11262,11263,11264,-1, 11265,11266,11267,-1, 
+          11268,11269,11270,-1, 11271,11272,11273,-1, 11274,11275,11276,-1, 11277,11278,11279,-1, 11280,11281,11282,-1, 11283,11284,11285,-1, 
+          11286,11287,11288,-1, 11289,11290,11291,-1, 11292,11293,11294,-1, 11295,11296,11297,-1, 11298,11299,11300,-1, 11301,11302,11303,-1, 
+          11304,11305,11306,-1, 11307,11308,11309,-1, 11310,11311,11312,-1, 11313,11314,11315,-1, 11316,11317,11318,-1, 11319,11320,11321,-1, 
+          11322,11323,11324,-1, 11325,11326,11327,-1, 11328,11329,11330,-1, 11331,11332,11333,-1, 11334,11335,11336,-1, 11337,11338,11339,-1, 
+          11340,11341,11342,-1, 11343,11344,11345,-1, 11346,11347,11348,-1, 11349,11350,11351,-1, 11352,11353,11354,-1, 11355,11356,11357,-1, 
+          11358,11359,11360,-1, 11361,11362,11363,-1, 11364,11365,11366,-1, 11367,11368,11369,-1, 11370,11371,11372,-1, 11373,11374,11375,-1, 
+          11376,11377,11378,-1, 11379,11380,11381,-1, 11382,11383,11384,-1, 11385,11386,11387,-1, 11388,11389,11390,-1, 11391,11392,11393,-1, 
+          11394,11395,11396,-1, 11397,11398,11399,-1, 11400,11401,11402,-1, 11403,11404,11405,-1, 11406,11407,11408,-1, 11409,11410,11411,-1, 
+          11412,11413,11414,-1, 11415,11416,11417,-1, 11418,11419,11420,-1, 11421,11422,11423,-1, 11424,11425,11426,-1, 11427,11428,11429,-1, 
+          11430,11431,11432,-1, 11433,11434,11435,-1, 11436,11437,11438,-1, 11439,11440,11441,-1, 11442,11443,11444,-1, 11445,11446,11447,-1, 
+          11448,11449,11450,-1, 11451,11452,11453,-1, 11454,11455,11456,-1, 11457,11458,11459,-1, 11460,11461,11462,-1, 11463,11464,11465,-1, 
+          11466,11467,11468,-1, 11469,11470,11471,-1, 11472,11473,11474,-1, 11475,11476,11477,-1, 11478,11479,11480,-1, 11481,11482,11483,-1, 
+          11484,11485,11486,-1, 11487,11488,11489,-1, 11490,11491,11492,-1, 11493,11494,11495,-1, 11496,11497,11498,-1, 11499,11500,11501,-1, 
+          11502,11503,11504,-1, 11505,11506,11507,-1, 11508,11509,11510,-1, 11511,11512,11513,-1, 11514,11515,11516,-1, 11517,11518,11519,-1, 
+          11520,11521,11522,-1, 11523,11524,11525,-1, 11526,11527,11528,-1, 11529,11530,11531,-1, 11532,11533,11534,-1, 11535,11536,11537,-1, 
+          11538,11539,11540,-1, 11541,11542,11543,-1, 11544,11545,11546,-1, 11547,11548,11549,-1, 11550,11551,11552,-1, 11553,11554,11555,-1, 
+          11556,11557,11558,-1, 11559,11560,11561,-1, 11562,11563,11564,-1, 11565,11566,11567,-1, 11568,11569,11570,-1, 11571,11572,11573,-1, 
+          11574,11575,11576,-1, 11577,11578,11579,-1, 11580,11581,11582,-1, 11583,11584,11585,-1, 11586,11587,11588,-1, 11589,11590,11591,-1, 
+          11592,11593,11594,-1, 11595,11596,11597,-1, 11598,11599,11600,-1, 11601,11602,11603,-1, 11604,11605,11606,-1, 11607,11608,11609,-1, 
+          11610,11611,11612,-1, 11613,11614,11615,-1, 11616,11617,11618,-1, 11619,11620,11621,-1, 11622,11623,11624,-1, 11625,11626,11627,-1, 
+          11628,11629,11630,-1, 11631,11632,11633,-1, 11634,11635,11636,-1, 11637,11638,11639,-1, 11640,11641,11642,-1, 11643,11644,11645,-1, 
+          11646,11647,11648,-1, 11649,11650,11651,-1, 11652,11653,11654,-1, 11655,11656,11657,-1, 11658,11659,11660,-1, 11661,11662,11663,-1, 
+          11664,11665,11666,-1, 11667,11668,11669,-1, 11670,11671,11672,-1, 11673,11674,11675,-1, 11676,11677,11678,-1, 11679,11680,11681,-1, 
+          11682,11683,11684,-1, 11685,11686,11687,-1, 11688,11689,11690,-1, 11691,11692,11693,-1, 11694,11695,11696,-1, 11697,11698,11699,-1, 
+          11700,11701,11702,-1, 11703,11704,11705,-1, 11706,11707,11708,-1, 11709,11710,11711,-1, 11712,11713,11714,-1, 11715,11716,11717,-1, 
+          11718,11719,11720,-1, 11721,11722,11723,-1, 11724,11725,11726,-1, 11727,11728,11729,-1, 11730,11731,11732,-1, 11733,11734,11735,-1, 
+          11736,11737,11738,-1, 11739,11740,11741,-1, 11742,11743,11744,-1, 11745,11746,11747,-1, 11748,11749,11750,-1, 11751,11752,11753,-1, 
+          11754,11755,11756,-1, 11757,11758,11759,-1, 11760,11761,11762,-1, 11763,11764,11765,-1, 11766,11767,11768,-1, 11769,11770,11771,-1, 
+          11772,11773,11774,-1, 11775,11776,11777,-1, 11778,11779,11780,-1, 11781,11782,11783,-1, 11784,11785,11786,-1, 11787,11788,11789,-1, 
+          11790,11791,11792,-1, 11793,11794,11795,-1, 11796,11797,11798,-1, 11799,11800,11801,-1, 11802,11803,11804,-1, 11805,11806,11807,-1, 
+          11808,11809,11810,-1, 11811,11812,11813,-1, 11814,11815,11816,-1, 11817,11818,11819,-1, 11820,11821,11822,-1, 11823,11824,11825,-1, 
+          11826,11827,11828,-1, 11829,11830,11831,-1, 11832,11833,11834,-1, 11835,11836,11837,-1, 11838,11839,11840,-1, 11841,11842,11843,-1, 
+          11844,11845,11846,-1, 11847,11848,11849,-1, 11850,11851,11852,-1, 11853,11854,11855,-1, 11856,11857,11858,-1, 11859,11860,11861,-1, 
+          11862,11863,11864,-1, 11865,11866,11867,-1, 11868,11869,11870,-1, 11871,11872,11873,-1, 11874,11875,11876,-1, 11877,11878,11879,-1, 
+          11880,11881,11882,-1, 11883,11884,11885,-1, 11886,11887,11888,-1, 11889,11890,11891,-1, 11892,11893,11894,-1, 11895,11896,11897,-1, 
+          11898,11899,11900,-1, 11901,11902,11903,-1, 11904,11905,11906,-1, 11907,11908,11909,-1, 11910,11911,11912,-1, 11913,11914,11915,-1, 
+          11916,11917,11918,-1, 11919,11920,11921,-1, 11922,11923,11924,-1, 11925,11926,11927,-1, 11928,11929,11930,-1, 11931,11932,11933,-1, 
+          11934,11935,11936,-1, 11937,11938,11939,-1, 11940,11941,11942,-1, 11943,11944,11945,-1, 11946,11947,11948,-1, 11949,11950,11951,-1, 
+          11952,11953,11954,-1, 11955,11956,11957,-1, 11958,11959,11960,-1, 11961,11962,11963,-1, 11964,11965,11966,-1, 11967,11968,11969,-1, 
+          11970,11971,11972,-1, 11973,11974,11975,-1, 11976,11977,11978,-1, 11979,11980,11981,-1, 11982,11983,11984,-1, 11985,11986,11987,-1, 
+          11988,11989,11990,-1, 11991,11992,11993,-1, 11994,11995,11996,-1, 11997,11998,11999,-1, 12000,12001,12002,-1, 12003,12004,12005,-1, 
+          12006,12007,12008,-1, 12009,12010,12011,-1, 12012,12013,12014,-1, 12015,12016,12017,-1, 12018,12019,12020,-1, 12021,12022,12023,-1, 
+          12024,12025,12026,-1, 12027,12028,12029,-1, 12030,12031,12032,-1, 12033,12034,12035,-1, 12036,12037,12038,-1, 12039,12040,12041,-1, 
+          12042,12043,12044,-1, 12045,12046,12047,-1, 12048,12049,12050,-1, 12051,12052,12053,-1, 12054,12055,12056,-1, 12057,12058,12059,-1, 
+          12060,12061,12062,-1, 12063,12064,12065,-1, 12066,12067,12068,-1, 12069,12070,12071,-1, 12072,12073,12074,-1, 12075,12076,12077,-1, 
+          12078,12079,12080,-1, 12081,12082,12083,-1, 12084,12085,12086,-1, 12087,12088,12089,-1, 12090,12091,12092,-1, 12093,12094,12095,-1, 
+          12096,12097,12098,-1, 12099,12100,12101,-1, 12102,12103,12104,-1, 12105,12106,12107,-1, 12108,12109,12110,-1, 12111,12112,12113,-1, 
+          12114,12115,12116,-1, 12117,12118,12119,-1, 12120,12121,12122,-1, 12123,12124,12125,-1, 12126,12127,12128,-1, 12129,12130,12131,-1, 
+          12132,12133,12134,-1, 12135,12136,12137,-1, 12138,12139,12140,-1, 12141,12142,12143,-1, 12144,12145,12146,-1, 12147,12148,12149,-1, 
+          12150,12151,12152,-1, 12153,12154,12155,-1, 12156,12157,12158,-1, 12159,12160,12161,-1, 12162,12163,12164,-1, 12165,12166,12167,-1, 
+          12168,12169,12170,-1, 12171,12172,12173,-1, 12174,12175,12176,-1, 12177,12178,12179,-1, 12180,12181,12182,-1, 12183,12184,12185,-1, 
+          12186,12187,12188,-1, 12189,12190,12191,-1, 12192,12193,12194,-1, 12195,12196,12197,-1, 12198,12199,12200,-1, 12201,12202,12203,-1, 
+          12204,12205,12206,-1, 12207,12208,12209,-1, 12210,12211,12212,-1, 12213,12214,12215,-1, 12216,12217,12218,-1, 12219,12220,12221,-1, 
+          12222,12223,12224,-1, 12225,12226,12227,-1, 12228,12229,12230,-1, 12231,12232,12233,-1, 12234,12235,12236,-1, 12237,12238,12239,-1, 
+          12240,12241,12242,-1, 12243,12244,12245,-1, 12246,12247,12248,-1, 12249,12250,12251,-1, 12252,12253,12254,-1, 12255,12256,12257,-1, 
+          12258,12259,12260,-1, 12261,12262,12263,-1, 12264,12265,12266,-1, 12267,12268,12269,-1, 12270,12271,12272,-1, 12273,12274,12275,-1, 
+          12276,12277,12278,-1, 12279,12280,12281,-1, 12282,12283,12284,-1, 12285,12286,12287,-1, 12288,12289,12290,-1, 12291,12292,12293,-1, 
+          12294,12295,12296,-1, 12297,12298,12299,-1, 12300,12301,12302,-1, 12303,12304,12305,-1, 12306,12307,12308,-1, 12309,12310,12311,-1, 
+          12312,12313,12314,-1, 12315,12316,12317,-1, 12318,12319,12320,-1, 12321,12322,12323,-1, 12324,12325,12326,-1, 12327,12328,12329,-1, 
+          12330,12331,12332,-1, 12333,12334,12335,-1, 12336,12337,12338,-1, 12339,12340,12341,-1, 12342,12343,12344,-1, 12345,12346,12347,-1, 
+          12348,12349,12350,-1, 12351,12352,12353,-1, 12354,12355,12356,-1, 12357,12358,12359,-1, 12360,12361,12362,-1, 12363,12364,12365,-1, 
+          12366,12367,12368,-1, 12369,12370,12371,-1, 12372,12373,12374,-1, 12375,12376,12377,-1, 12378,12379,12380,-1, 12381,12382,12383,-1, 
+          12384,12385,12386,-1, 12387,12388,12389,-1, 12390,12391,12392,-1, 12393,12394,12395,-1, 12396,12397,12398,-1, 12399,12400,12401,-1, 
+          12402,12403,12404,-1, 12405,12406,12407,-1, 12408,12409,12410,-1, 12411,12412,12413,-1, 12414,12415,12416,-1, 12417,12418,12419,-1, 
+          12420,12421,12422,-1, 12423,12424,12425,-1, 12426,12427,12428,-1, 12429,12430,12431,-1, 12432,12433,12434,-1, 12435,12436,12437,-1, 
+          12438,12439,12440,-1, 12441,12442,12443,-1, 12444,12445,12446,-1, 12447,12448,12449,-1, 12450,12451,12452,-1, 12453,12454,12455,-1, 
+          12456,12457,12458,-1, 12459,12460,12461,-1, 12462,12463,12464,-1, 12465,12466,12467,-1, 12468,12469,12470,-1, 12471,12472,12473,-1, 
+          12474,12475,12476,-1, 12477,12478,12479,-1, 12480,12481,12482,-1, 12483,12484,12485,-1, 12486,12487,12488,-1, 12489,12490,12491,-1, 
+          12492,12493,12494,-1, 12495,12496,12497,-1, 12498,12499,12500,-1, 12501,12502,12503,-1, 12504,12505,12506,-1, 12507,12508,12509,-1, 
+          12510,12511,12512,-1, 12513,12514,12515,-1, 12516,12517,12518,-1, 12519,12520,12521,-1, 12522,12523,12524,-1, 12525,12526,12527,-1, 
+          12528,12529,12530,-1, 12531,12532,12533,-1, 12534,12535,12536,-1, 12537,12538,12539,-1, 12540,12541,12542,-1, 12543,12544,12545,-1, 
+          12546,12547,12548,-1, 12549,12550,12551,-1, 12552,12553,12554,-1, 12555,12556,12557,-1, 12558,12559,12560,-1, 12561,12562,12563,-1, 
+          12564,12565,12566,-1, 12567,12568,12569,-1, 12570,12571,12572,-1, 12573,12574,12575,-1, 12576,12577,12578,-1, 12579,12580,12581,-1, 
+          12582,12583,12584,-1, 12585,12586,12587,-1, 12588,12589,12590,-1, 12591,12592,12593,-1, 12594,12595,12596,-1, 12597,12598,12599,-1, 
+          12600,12601,12602,-1, 12603,12604,12605,-1, 12606,12607,12608,-1, 12609,12610,12611,-1, 12612,12613,12614,-1, 12615,12616,12617,-1, 
+          12618,12619,12620,-1, 12621,12622,12623,-1, 12624,12625,12626,-1, 12627,12628,12629,-1, 12630,12631,12632,-1, 12633,12634,12635,-1, 
+          12636,12637,12638,-1, 12639,12640,12641,-1, 12642,12643,12644,-1, 12645,12646,12647,-1, 12648,12649,12650,-1, 12651,12652,12653,-1, 
+          12654,12655,12656,-1, 12657,12658,12659,-1, 12660,12661,12662,-1, 12663,12664,12665,-1, 12666,12667,12668,-1, 12669,12670,12671,-1, 
+          12672,12673,12674,-1, 12675,12676,12677,-1, 12678,12679,12680,-1, 12681,12682,12683,-1, 12684,12685,12686,-1, 12687,12688,12689,-1, 
+          12690,12691,12692,-1, 12693,12694,12695,-1, 12696,12697,12698,-1, 12699,12700,12701,-1, 12702,12703,12704,-1, 12705,12706,12707,-1, 
+          12708,12709,12710,-1, 12711,12712,12713,-1, 12714,12715,12716,-1, 12717,12718,12719,-1, 12720,12721,12722,-1, 12723,12724,12725,-1, 
+          12726,12727,12728,-1, 12729,12730,12731,-1, 12732,12733,12734,-1, 12735,12736,12737,-1, 12738,12739,12740,-1, 12741,12742,12743,-1, 
+          12744,12745,12746,-1, 12747,12748,12749,-1, 12750,12751,12752,-1, 12753,12754,12755,-1, 12756,12757,12758,-1, 12759,12760,12761,-1, 
+          12762,12763,12764,-1, 12765,12766,12767,-1, 12768,12769,12770,-1, 12771,12772,12773,-1, 12774,12775,12776,-1, 12777,12778,12779,-1, 
+          12780,12781,12782,-1, 12783,12784,12785,-1, 12786,12787,12788,-1, 12789,12790,12791,-1, 12792,12793,12794,-1, 12795,12796,12797,-1, 
+          12798,12799,12800,-1, 12801,12802,12803,-1, 12804,12805,12806,-1, 12807,12808,12809,-1, 12810,12811,12812,-1, 12813,12814,12815,-1, 
+          12816,12817,12818,-1, 12819,12820,12821,-1, 12822,12823,12824,-1, 12825,12826,12827,-1, 12828,12829,12830,-1, 12831,12832,12833,-1, 
+          12834,12835,12836,-1, 12837,12838,12839,-1, 12840,12841,12842,-1, 12843,12844,12845,-1, 12846,12847,12848,-1, 12849,12850,12851,-1, 
+          12852,12853,12854,-1, 12855,12856,12857,-1, 12858,12859,12860,-1, 12861,12862,12863,-1, 12864,12865,12866,-1, 12867,12868,12869,-1, 
+          12870,12871,12872,-1, 12873,12874,12875,-1, 12876,12877,12878,-1, 12879,12880,12881,-1, 12882,12883,12884,-1, 12885,12886,12887,-1, 
+          12888,12889,12890,-1, 12891,12892,12893,-1, 12894,12895,12896,-1, 12897,12898,12899,-1, 12900,12901,12902,-1, 12903,12904,12905,-1, 
+          12906,12907,12908,-1, 12909,12910,12911,-1, 12912,12913,12914,-1, 12915,12916,12917,-1, 12918,12919,12920,-1, 12921,12922,12923,-1, 
+          12924,12925,12926,-1, 12927,12928,12929,-1, 12930,12931,12932,-1, 12933,12934,12935,-1, 12936,12937,12938,-1, 12939,12940,12941,-1, 
+          12942,12943,12944,-1, 12945,12946,12947,-1, 12948,12949,12950,-1, 12951,12952,12953,-1, 12954,12955,12956,-1, 12957,12958,12959,-1, 
+          12960,12961,12962,-1, 12963,12964,12965,-1, 12966,12967,12968,-1, 12969,12970,12971,-1, 12972,12973,12974,-1, 12975,12976,12977,-1, 
+          12978,12979,12980,-1, 12981,12982,12983,-1, 12984,12985,12986,-1, 12987,12988,12989,-1, 12990,12991,12992,-1, 12993,12994,12995,-1, 
+          12996,12997,12998,-1, 12999,13000,13001,-1, 13002,13003,13004,-1, 13005,13006,13007,-1, 13008,13009,13010,-1, 13011,13012,13013,-1, 
+          13014,13015,13016,-1, 13017,13018,13019,-1, 13020,13021,13022,-1, 13023,13024,13025,-1, 13026,13027,13028,-1, 13029,13030,13031,-1, 
+          13032,13033,13034,-1, 13035,13036,13037,-1, 13038,13039,13040,-1, 13041,13042,13043,-1, 13044,13045,13046,-1, 13047,13048,13049,-1, 
+          13050,13051,13052,-1, 13053,13054,13055,-1, 13056,13057,13058,-1, 13059,13060,13061,-1, 13062,13063,13064,-1, 13065,13066,13067,-1, 
+          13068,13069,13070,-1, 13071,13072,13073,-1, 13074,13075,13076,-1, 13077,13078,13079,-1, 13080,13081,13082,-1, 13083,13084,13085,-1, 
+          13086,13087,13088,-1, 13089,13090,13091,-1
+        ]
+      }
+      appearance Appearance
+      {
+        material Material
+        {
+	       ambientIntensity 0.2
+	       diffuseColor 0.9 0.9 0.9
+	       specularColor .1 .1 .1
+	       shininess .5
+        }
+      }
+    }
+  ]
+}
diff --git a/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger0.iv b/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger0.iv
new file mode 100644
index 0000000000000000000000000000000000000000..2721084c65c44dc2baff0446cb3a5f4c2c06bd40
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger0.iv
@@ -0,0 +1,20 @@
+#Inventor V2.1 ascii
+
+Separator {
+
+
+	Transform {
+		translation 0 0 0
+		rotation 0 1 0 0
+	}
+
+	Transform {
+		translation 0 0 0
+		rotation 1 0 0 0
+	}
+
+	Separator 
+	{
+		File {name full_LeftIndexFinger0.wrl }
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger1.iv b/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger1.iv
new file mode 100644
index 0000000000000000000000000000000000000000..a84163b0f4fa52638f50b06b6fc5a07cac703846
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger1.iv
@@ -0,0 +1,20 @@
+#Inventor V2.1 ascii
+
+Separator {
+
+
+	Transform {
+		translation 0 0 0
+		rotation 0 1 0 3.14
+	}
+
+	Transform {
+		translation 0 0 0
+		rotation 1 0 0 3.14
+	}
+
+	Separator 
+	{
+		File {name full_LeftIndexFinger1.wrl }
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger2.iv b/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger2.iv
new file mode 100644
index 0000000000000000000000000000000000000000..aea6213b165bd37ccd09bdf0cc35a30417b9f7c6
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/leftIndexFinger2.iv
@@ -0,0 +1,20 @@
+#Inventor V2.1 ascii
+
+Separator {
+
+
+	Transform {
+		translation 0 0 0
+		rotation 0 1 0 3.14
+	}
+
+	Transform {
+		translation 0 0 0
+		rotation 1 0 0 3.14
+	}
+
+	Separator 
+	{
+		File {name full_LeftIndexFinger2.wrl }
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/LeftIndexFinger/leftIndexFingerTip.iv b/doc/tutorial/iv/LeftIndexFinger/leftIndexFingerTip.iv
new file mode 100644
index 0000000000000000000000000000000000000000..b287bae2e1c3dceabe67433d8e5f35c266d363b0
--- /dev/null
+++ b/doc/tutorial/iv/LeftIndexFinger/leftIndexFingerTip.iv
@@ -0,0 +1,20 @@
+#Inventor V2.1 ascii
+
+Separator {
+
+
+	Transform {
+		translation 0 0 0
+		rotation 0 1 0 3.14
+	}
+
+	Transform {
+		translation 0 0 0
+		rotation 1 0 0 0
+	}
+
+	Separator 
+	{
+		File {name full_LeftIndexFingerTip_b.wrl }
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/ball.iv b/doc/tutorial/iv/ball.iv
new file mode 100644
index 0000000000000000000000000000000000000000..5abe52bb0d427ebd04a3a4b885549d8a613ff7d5
--- /dev/null
+++ b/doc/tutorial/iv/ball.iv
@@ -0,0 +1,8 @@
+#Inventor V2.0 ascii
+
+Separator {
+    Sphere {
+        radius 70
+
+    }
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/box.iv b/doc/tutorial/iv/box.iv
new file mode 100644
index 0000000000000000000000000000000000000000..4417a3f5e485e78b8acb785cfa3a97819562e0ed
--- /dev/null
+++ b/doc/tutorial/iv/box.iv
@@ -0,0 +1,13 @@
+#Inventor V2.1 ascii
+
+Separator {
+	Material {
+		diffuseColor    1 0.8 0.4
+	}
+	Cube
+	{
+		width 60
+		height 60
+		depth 60
+	}
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/joint.iv b/doc/tutorial/iv/joint.iv
new file mode 100644
index 0000000000000000000000000000000000000000..24267108504d064a6d2ce21efad0d8d374fe56bd
--- /dev/null
+++ b/doc/tutorial/iv/joint.iv
@@ -0,0 +1,12 @@
+#Inventor V2.0 ascii
+
+Separator {
+    Translation {
+        translation 0 250 0
+    }
+    Cylinder {
+        radius 40
+        height 500
+        parts (SIDES | TOP | BOTTOM)
+    }
+}
\ No newline at end of file
diff --git a/doc/tutorial/iv/joint2.iv b/doc/tutorial/iv/joint2.iv
new file mode 100644
index 0000000000000000000000000000000000000000..3ce1da1972771e2e2db7f42f6a38842b998db97e
--- /dev/null
+++ b/doc/tutorial/iv/joint2.iv
@@ -0,0 +1,16 @@
+#Inventor V2.0 ascii
+
+Separator {
+    
+    Rotation {
+        rotation 1 0 0  1.57
+    }
+    Translation {
+        translation 0 250 0
+    }
+    Cylinder {
+        radius 40
+        height 500
+        parts (SIDES | TOP | BOTTOM)
+    }
+}
\ No newline at end of file
diff --git a/doc/tutorial/robot_howto1.xml b/doc/tutorial/robot_howto1.xml
new file mode 100644
index 0000000000000000000000000000000000000000..29a1f91bf8faed4ed0d55ebbaa3d81b0245538c9
--- /dev/null
+++ b/doc/tutorial/robot_howto1.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="DemoRobot" RootNode="root">
+    
+    <RobotNode name="root">
+    </RobotNode>
+    
+</Robot>
diff --git a/doc/tutorial/robot_howto10.xml b/doc/tutorial/robot_howto10.xml
new file mode 100644
index 0000000000000000000000000000000000000000..028fe791e1cc933a01d9511f8ae2bf798593bc64
--- /dev/null
+++ b/doc/tutorial/robot_howto10.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Scene name="Armar3Scene">
+
+	<Robot name="Armar3" initConfig="start">
+		<File>robots/ArmarIII/ArmarIII.xml</File>
+		<Configuration name="start">
+			<Node name="Shoulder 1 L" unit="radian" value="-0.85"/>
+			<Node name="Shoulder 2 L" unit="radian" value="-0.8"/>
+			<Node name="Upperarm L" unit="radian" value="-0.85"/>
+			<Node name="Shoulder 1 R" unit="radian" value="-0.85"/>
+			<Node name="Shoulder 2 R" unit="radian" value="0.8"/>
+			<Node name="Upperarm R" unit="radian" value="0.85"/>
+		</Configuration>
+		<GlobalPose>
+			<Transform>
+				<Translation x="1000" y="0" z="0"/>
+			</Transform>
+		</GlobalPose>
+	</Robot>
+	
+	<Robot name="Armar3b">
+		<File>robots/ArmarIII/ArmarIII.xml</File>			
+	</Robot>
+	
+	<Obstacle name="Box">
+	    <Visualization>
+		    <File type="Inventor">objects/iv/box1000x500x300.iv</File>
+		    <UseAsCollisionModel/>
+		</Visualization>
+		<GlobalPose>
+			<Transform>
+				<Translation x="0" y="1000" z="150"/>
+				<rollpitchyaw units="degree" roll="0" pitch="0" yaw="90"/>
+			</Transform>
+		</GlobalPose>
+ 	</Obstacle>
+	
+	<ManipulationObject name="Plate">
+	    <File>objects/plate.xml</File>
+		    
+		<GlobalPose>
+			<Transform>
+				<Translation x="500" y="800" z="800"/>
+				<rollpitchyaw units="degree" roll="0" pitch="0" yaw="90"/>
+			</Transform>
+		</GlobalPose>
+ 	</ManipulationObject>
+
+</Scene>
\ No newline at end of file
diff --git a/doc/tutorial/robot_howto2.xml b/doc/tutorial/robot_howto2.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f83932cab913aa7ac5236e33cd27f2d329a834f9
--- /dev/null
+++ b/doc/tutorial/robot_howto2.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="DemoRobot" RootNode="root">
+    
+    <RobotNode name="root">
+        <Visualization>
+		    <File type="Inventor">iv/joint.iv</File>
+		</Visualization>
+    </RobotNode>
+    
+</Robot>
diff --git a/doc/tutorial/robot_howto3.xml b/doc/tutorial/robot_howto3.xml
new file mode 100644
index 0000000000000000000000000000000000000000..49bec834bec07596e4e4f8493790cb5f6d5bad9b
--- /dev/null
+++ b/doc/tutorial/robot_howto3.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="DemoRobot" RootNode="root">
+    
+    <RobotNode name="root">
+		<Child name="joint 1"/>
+    </RobotNode>
+    
+    <RobotNode name="joint 1">
+        <Joint type="revolute">
+			<Axis x="0" y="0" z="1"/>
+    		<PostJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="500" z="0"/>
+    		    </Transform>
+		    </PostJointTransform>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint.iv</File>
+		</Visualization>
+    </RobotNode>
+        
+</Robot>
diff --git a/doc/tutorial/robot_howto4.xml b/doc/tutorial/robot_howto4.xml
new file mode 100644
index 0000000000000000000000000000000000000000..fdff9f4b3db98173b4bb98fc7ce8fee40de9edc6
--- /dev/null
+++ b/doc/tutorial/robot_howto4.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="DemoRobot" RootNode="root">
+    
+    <RobotNode name="root">
+		<Child name="joint 1"/>
+    </RobotNode>
+    
+    <RobotNode name="joint 1">
+        <Joint type="revolute">
+			<Axis x="0" y="0" z="1"/>
+    		<PostJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="500" z="0"/>
+    		    </Transform>
+		    </PostJointTransform>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint.iv</File>
+		</Visualization>
+		<Child name="node 1"/>
+    </RobotNode>
+        
+   <RobotNode name="node 1">
+        <Visualization>
+		    <File type="Inventor">iv/ball.iv</File>
+		</Visualization>
+		<Child name="joint 2"/>
+    </RobotNode>
+        
+    <RobotNode name="joint 2">
+        <Joint type="revolute">
+			<Axis x="0" y="1" z="0"/>
+    		<PostJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="0" z="500"/>
+    		    </Transform>
+		    </PostJointTransform>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint2.iv</File>
+		</Visualization>
+		<Child name="node 2"/>
+    </RobotNode>
+    
+    <RobotNode name="node 2">
+        <Visualization>
+		    <File type="Inventor">iv/ball.iv</File>
+		</Visualization>
+		<Child name="joint 3"/>
+    </RobotNode>
+    
+    <RobotNode name="joint 3">
+        <Joint type="revolute">
+			<Axis x="1" y="0" z="0"/>
+    		<PostJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="500" z="0"/>
+    		    </Transform>
+		    </PostJointTransform>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint.iv</File>
+		</Visualization>
+    </RobotNode>
+</Robot>
diff --git a/doc/tutorial/robot_howto5.xml b/doc/tutorial/robot_howto5.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8deb70f9b0ec46e2ce2715a8aa7804f4fafe5513
--- /dev/null
+++ b/doc/tutorial/robot_howto5.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="DemoRobot" RootNode="root">
+    
+    <RobotNode name="root">
+		<Child name="joint 1"/>
+    </RobotNode>
+    
+    <RobotNode name="joint 1">
+        <Joint type="revolute">
+            <DH a="0" d="500" alpha="-90" theta="0" units="degree"/>
+            <Limits lo="0" hi="120" units="degree"/>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint2.iv</File>
+		</Visualization>
+		<Child name="node 1"/>
+    </RobotNode>
+        
+   <RobotNode name="node 1">
+        <Visualization>
+		    <File type="Inventor">iv/ball.iv</File>
+		</Visualization>
+		<Child name="joint 2"/>
+    </RobotNode>
+        
+    <RobotNode name="joint 2">
+        <Joint type="revolute">
+			 <DH a="0" d="500" alpha="90" theta="0" units="degree"/>
+			 <Limits lo="-45" hi="45" units="degree"/>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint2.iv</File>
+		</Visualization>
+    </RobotNode>
+    
+</Robot>
diff --git a/doc/tutorial/robot_howto6.xml b/doc/tutorial/robot_howto6.xml
new file mode 100644
index 0000000000000000000000000000000000000000..fe33801e3ccd3dc197b59523ff5f4b8b4071a656
--- /dev/null
+++ b/doc/tutorial/robot_howto6.xml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="DemoRobot" RootNode="root">
+    
+    <RobotNode name="root">
+		<Child name="Finger Joint1"/>
+    </RobotNode>
+	
+	<RobotNode name="Finger Joint1">
+		<Joint type="revolute">
+			<DH a="14.8" d="0" theta="0" alpha="90" units="degree"/>
+			<Limits unit="degree" lo="-25" hi="25"/>
+		</Joint>
+		<Visualization enable="true">
+			<File type="Inventor">iv/LeftIndexFinger/leftIndexFinger0.iv</File>
+		</Visualization>
+		<CollisionModel>
+			<File type="Inventor">iv/LeftIndexFinger/col_leftIndexFinger0.iv</File>
+		</CollisionModel>
+		<Child name="BaseToFinger"/>
+	</RobotNode>
+	
+	<RobotNode name="BaseToFinger">
+		<Joint type="fixed">
+			<DH a="0" d="1.75" theta="0" alpha="0" units="degree"/>
+		</Joint>
+		<Child name="Finger Joint2"/>
+	</RobotNode>
+	
+	<RobotNode name="Finger Joint2">
+		<Joint type="revolute">
+			<DH a="25.9" d="0" theta="0" alpha="0" units="degree"/>
+			<Limits unit="degree" lo="0" hi="90"/>
+		</Joint>
+		<Visualization enable="true">
+			<File type="Inventor">iv/LeftIndexFinger/leftIndexFinger1.iv</File>
+		</Visualization>
+		<CollisionModel>
+			<File type="Inventor">iv/LeftIndexFinger/col_leftIndexFinger1.iv</File>
+		</CollisionModel>
+		<Child name="Finger Joint3"/>
+	</RobotNode>
+	
+	<RobotNode name="Finger Joint3">
+		<Joint type="revolute">
+			<DH a="22" d="0" theta="0" alpha="0" units="degree"/>
+			<Limits unit="degree" lo="0" hi="90"/>
+		</Joint>
+		<Visualization enable="true">
+			<File type="Inventor">iv/LeftIndexFinger/leftIndexFinger2.iv</File>
+		</Visualization>
+		<CollisionModel>
+			<File type="Inventor">iv/LeftIndexFinger/col_leftIndexFinger2.iv</File>
+		</CollisionModel>
+		<Child name="Finger Joint4"/>
+	</RobotNode>
+
+	<RobotNode name="Finger Joint4">
+		<Joint type="revolute">
+			<DH a="0" d="0" theta="0" alpha="0" units="degree"/>
+			<Limits unit="degree" lo="0" hi="90"/>
+		</Joint>
+		<Visualization enable="true">
+			<File type="Inventor">iv/LeftIndexFinger/leftIndexFingerTip.iv</File>
+		</Visualization>
+		<CollisionModel>
+			<File type="Inventor">iv/LeftIndexFinger/col_leftIndexFingerTip.iv</File>
+		</CollisionModel>
+	</RobotNode>
+	
+</Robot>
diff --git a/doc/tutorial/robot_howto7.xml b/doc/tutorial/robot_howto7.xml
new file mode 100644
index 0000000000000000000000000000000000000000..506a992d26425d6d9232a72fb8a908ca0f64bc6b
--- /dev/null
+++ b/doc/tutorial/robot_howto7.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="robot1" RootNode="Joint1">
+	
+	<RobotNode name="Joint1">
+		<Joint type="revolute">
+			<Limits unit="degree" lo="-90" hi="45"/>
+			<DH a="0" d="500" theta="-30" alpha="0" units="degree"/>
+		</Joint>
+		<!-- Imports the kinematic structure form otherRobot.xml and adds otherRobot's rootnode as a child to this node -->
+		<ChildFromRobot>
+			<File importEEF="true">robot_howto7b.xml</File>
+		</ChildFromRobot>
+	</RobotNode>
+
+</Robot>
diff --git a/doc/tutorial/robot_howto7b.xml b/doc/tutorial/robot_howto7b.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b354c4b3d95f1cd825c2deb704a93b50b8cb97d5
--- /dev/null
+++ b/doc/tutorial/robot_howto7b.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="robot2" RootNode="node1">
+	
+	<RobotNode name="node1">
+		<Child name="node2"/>
+		<Child name="node3"/>
+	</RobotNode>
+	
+	<RobotNode name="node2">
+		<Joint>
+			<PreJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="500" z="0"/>
+    		    </Transform>
+		    </PreJointTransform>
+		</Joint>
+		<Visualization enable="true">
+			<CoordinateAxis type="Inventor" enable="true" scaling="1" text="TCP1"/>
+		</Visualization>
+	</RobotNode>
+	
+	<RobotNode name="node3">
+		<Joint>
+			<PreJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="-500" z="0"/>
+    		    </Transform>
+		    </PreJointTransform>
+		</Joint>
+		<Visualization enable="true">
+			<CoordinateAxis type="Inventor" enable="true" scaling="1" text="TCP2"/>
+		</Visualization>
+	</RobotNode>
+</Robot>
diff --git a/doc/tutorial/robot_howto8.xml b/doc/tutorial/robot_howto8.xml
new file mode 100644
index 0000000000000000000000000000000000000000..be96e9b755d431366b431286c563336e4385d3e0
--- /dev/null
+++ b/doc/tutorial/robot_howto8.xml
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<Robot Type="DemoRobot" RootNode="root">
+    
+    <RobotNode name="root">
+		<Child name="joint 1"/>
+    </RobotNode>
+    
+    <RobotNode name="joint 1">
+        <Joint type="revolute">
+			<Axis x="0" y="0" z="1"/>
+    		<PostJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="500" z="0"/>
+    		    </Transform>
+		    </PostJointTransform>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint.iv</File>
+		</Visualization>
+		<Child name="node 1"/>
+    </RobotNode>
+        
+   <RobotNode name="node 1">
+        <Visualization>
+		    <File type="Inventor">iv/ball.iv</File>
+		</Visualization>
+		<Child name="joint 2"/>
+    </RobotNode>
+        
+    <RobotNode name="joint 2">
+        <Joint type="revolute">
+			<Axis x="0" y="1" z="0"/>
+    		<PostJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="0" z="500"/>
+    		    </Transform>
+		    </PostJointTransform>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint2.iv</File>
+		</Visualization>
+		<Child name="node 2"/>
+    </RobotNode>
+    
+    <RobotNode name="node 2">
+        <Visualization>
+		    <File type="Inventor">iv/ball.iv</File>
+		</Visualization>
+		<Child name="joint 3"/>
+    </RobotNode>
+    
+    <RobotNode name="joint 3">
+        <Joint type="revolute">
+			<Axis x="1" y="0" z="0"/>
+    		<PostJointTransform>
+    		    <Transform>
+	    	        <Translation x="0" y="500" z="0"/>
+    		    </Transform>
+		    </PostJointTransform>
+	    </Joint>
+        <Visualization>
+		    <File type="Inventor">iv/joint.iv</File>
+		</Visualization>
+		<Child name="tcp"/>
+    </RobotNode>
+	
+	<RobotNode name="tcp">
+        <Visualization>
+		    <File type="Inventor">iv/ball.iv</File>
+		</Visualization>
+    </RobotNode>
+    
+	<RobotNodeSet name="my kinematic chain" kinematicRoot="joint1" tcp="tcp">
+		<Node name="joint1"/>
+		<Node name="joint2"/>
+		<Node name="joint3"/>
+	</RobotNodeSet>
+
+</Robot>
diff --git a/license.txt b/license.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4362b49151d7b34ef83b3067a8f9c9f877d72a0e
--- /dev/null
+++ b/license.txt
@@ -0,0 +1,502 @@
+                  GNU LESSER GENERAL PUBLIC LICENSE
+                       Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL.  It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+                            Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+  This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it.  You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+  When we speak of free software, we are referring to freedom of use,
+not price.  Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+  To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights.  These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+  For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you.  You must make sure that they, too, receive or can get the source
+code.  If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it.  And you must show them these terms so they know their rights.
+
+  We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+  To protect each distributor, we want to make it very clear that
+there is no warranty for the free library.  Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+  Finally, software patents pose a constant threat to the existence of
+any free program.  We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder.  Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+  Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License.  This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License.  We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+  When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library.  The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom.  The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+  We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License.  It also provides other free software developers Less
+of an advantage over competing non-free programs.  These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries.  However, the Lesser license provides advantages in certain
+special circumstances.
+
+  For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard.  To achieve this, non-free programs must be
+allowed to use the library.  A more frequent case is that a free
+library does the same job as widely used non-free libraries.  In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+  In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software.  For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+  Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.  Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library".  The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+                  GNU LESSER GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+  A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+  The "Library", below, refers to any such software library or work
+which has been distributed under these terms.  A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language.  (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+  "Source code" for a work means the preferred form of the work for
+making modifications to it.  For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+  Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it).  Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+  1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+  You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+  2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) The modified work must itself be a software library.
+
+    b) You must cause the files modified to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    c) You must cause the whole of the work to be licensed at no
+    charge to all third parties under the terms of this License.
+
+    d) If a facility in the modified Library refers to a function or a
+    table of data to be supplied by an application program that uses
+    the facility, other than as an argument passed when the facility
+    is invoked, then you must make a good faith effort to ensure that,
+    in the event an application does not supply such function or
+    table, the facility still operates, and performs whatever part of
+    its purpose remains meaningful.
+
+    (For example, a function in a library to compute square roots has
+    a purpose that is entirely well-defined independent of the
+    application.  Therefore, Subsection 2d requires that any
+    application-supplied function or table used by this function must
+    be optional: if the application does not supply it, the square
+    root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library.  To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License.  (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.)  Do not make any other change in
+these notices.
+
+  Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+  This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+  4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+  If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library".  Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+  However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library".  The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+  When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library.  The
+threshold for this to be true is not precisely defined by law.
+
+  If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work.  (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+  Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+  6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+  You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License.  You must supply a copy of this License.  If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License.  Also, you must do one
+of these things:
+
+    a) Accompany the work with the complete corresponding
+    machine-readable source code for the Library including whatever
+    changes were used in the work (which must be distributed under
+    Sections 1 and 2 above); and, if the work is an executable linked
+    with the Library, with the complete machine-readable "work that
+    uses the Library", as object code and/or source code, so that the
+    user can modify the Library and then relink to produce a modified
+    executable containing the modified Library.  (It is understood
+    that the user who changes the contents of definitions files in the
+    Library will not necessarily be able to recompile the application
+    to use the modified definitions.)
+
+    b) Use a suitable shared library mechanism for linking with the
+    Library.  A suitable mechanism is one that (1) uses at run time a
+    copy of the library already present on the user's computer system,
+    rather than copying library functions into the executable, and (2)
+    will operate properly with a modified version of the library, if
+    the user installs one, as long as the modified version is
+    interface-compatible with the version that the work was made with.
+
+    c) Accompany the work with a written offer, valid for at
+    least three years, to give the same user the materials
+    specified in Subsection 6a, above, for a charge no more
+    than the cost of performing this distribution.
+
+    d) If distribution of the work is made by offering access to copy
+    from a designated place, offer equivalent access to copy the above
+    specified materials from the same place.
+
+    e) Verify that the user has already received a copy of these
+    materials or that you have already sent this user a copy.
+
+  For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it.  However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+  It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system.  Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+  7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+    a) Accompany the combined library with a copy of the same work
+    based on the Library, uncombined with any other library
+    facilities.  This must be distributed under the terms of the
+    Sections above.
+
+    b) Give prominent notice with the combined library of the fact
+    that part of it is a work based on the Library, and explaining
+    where to find the accompanying uncombined form of the same work.
+
+  8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License.  Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License.  However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+  9. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Library or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+  10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+  11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded.  In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+  13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation.  If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+  14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission.  For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this.  Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+                            NO WARRANTY
+
+  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+                     END OF TERMS AND CONDITIONS
+
+           How to Apply These Terms to Your New Libraries
+
+  If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change.  You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+  To apply these terms, attach the following notices to the library.  It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the library's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2.1 of the License, or (at your option) any later version.
+
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the
+  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+  <signature of Ty Coon>, 1 April 1990
+  Ty Coon, President of Vice
+
+That's all there is to it!
diff --git a/readme.txt b/readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..228dbbadadf00a3dde74337efdaffc6dbddccc43
--- /dev/null
+++ b/readme.txt
@@ -0,0 +1,48 @@
+Simox
+-----
+
+The aim of the lightweight platform independent C++ toolbox Simox is to provide a set of
+algorithms for 3D simulation of robot systems, sampling based motion planning and grasp
+planning. Simox consists of three libraries (Virtual Robot, Saba and Grasp Studio) and nu-
+merous examples showing how these libraries can be used to build complex tools in the
+context of mobile manipulation. The library Virtual Robot can be used to define complex
+robot systems, which may cover multiple robots with many degrees of freedom. The robot
+structure and its visualization can be easily defined via XML files and environments with
+obstacles and objects to manipulate are supported. Further, basic robot simulation compo-
+nents, as Jacobian computations and generic Inverse Kinematics (IK) solvers, are offered by
+the library. Beyond that, extended features like tools for analyzing the reachable workspace
+for robotic manipulators or contact determination for grasping are included.
+With Saba, a library for planning collision-free motions is offered, which directly incorporates
+with the data provided by Virtual Robot. The algorithms cover state-of-the-art implementa-
+tions of sampling-based motion planning approaches (e.g. Rapidly-exploring Random Trees)
+and interfaces that allow to conveniently implement own planners. Since Saba was designed
+for planning in high-dimensional configuration spaces, complex planning problems for robots
+with a high number of degrees of freedom (DoF) can be solved efficiently.
+Grasp Studio offers possibilities to compute the grasp quality for generic end-effector defini-
+tions, e.g. a humanoid hand. The implemented 6D wrench-space computations can be used
+to easily (and quickly) determine the quality of an applied grasp to an object. Furthermore,
+the implemented planners are able to generate grasp maps for given objects automatically.
+Since complex frameworks have to incorporate with several libraries in order to provide full
+functionality, several issues may arise when setting up the environment, such as dependency
+problems, incompatible library versions or even non-existing ports of needed libraries for the
+used operating systems. Hence, only a limited set of libraries are used by the Simox core in
+order to make it compile. Extended functionality (e.g. visualization) can be turned off in
+order to allow Simox compiling on most platforms. Further dependencies are encapsulated
+with interfaces, making it easy to exchange e.g. the collision engine or the visualization
+functionality. As a reference implementation Simox offers Coin3D/SoQt-based visualization
+support.
+
+License
+-------
+GNU GPL 2 (see license.txt)
+
+Copyright
+---------
+ 2011 Nikolaus Vahrenkamp
+
+Contact
+-------
+Nikolaus Vahrenkamp
+vahrenkamp at users dot sf dot net
+http://wwwiaim.ira.uka.de/users/vahrenka
+http://simox.sourceforge.net
\ No newline at end of file