diff --git a/.gitignore b/.gitignore index 6259391948..1f5220ba76 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,8 @@ # Ignore all Linux Editor revision save files *~ +# Ignore all hidden files +.project +.cproject +.settings + diff --git a/README.md b/README.md index 63bc061a88..610271fd88 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,9 @@ -# ros -ROS Development +# Intel® RealSense™ ROS +These are packages for using Intel RealSense cameras with ROS. +www.intel.com/realsense -## Usage -* Setup for ROS +www.ros.org - `source /opt/ros/`*``*`/setup.bash` -* Create your Catkin Workspace - - `mkdir catkin_ws` -* Clone the repository as the `src` directory - - `git clone https://github.com/otcshare/ros-realsense.git src` -* Build the Nodes - - `catkin_make` -* Setup to use newly build Nodes - - `source devel/setup.bash` +Refer to the README.md file within each package for more details. diff --git a/camera/.cproject b/camera/.cproject deleted file mode 100644 index 7775a24d88..0000000000 --- a/camera/.cproject +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/camera/.project b/camera/.project deleted file mode 100644 index da529c3a53..0000000000 --- a/camera/.project +++ /dev/null @@ -1,71 +0,0 @@ - - - realsense_ros - - - - - - org.eclipse.cdt.managedbuilder.core.genmakebuilder - clean,full,incremental, - - - ?name? - - - - org.eclipse.cdt.make.core.append_environment - true - - - org.eclipse.cdt.make.core.buildArguments - - - - org.eclipse.cdt.make.core.buildCommand - make - - - org.eclipse.cdt.make.core.buildLocation - ${workspace_loc:/ds4_camera/Default} - - - org.eclipse.cdt.make.core.contents - org.eclipse.cdt.make.core.activeConfigSettings - - - org.eclipse.cdt.make.core.enableAutoBuild - false - - - org.eclipse.cdt.make.core.enableCleanBuild - true - - - org.eclipse.cdt.make.core.enableFullBuild - true - - - org.eclipse.cdt.make.core.stopOnError - true - - - org.eclipse.cdt.make.core.useDefaultBuildCmd - true - - - - - org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder - full,incremental, - - - - - - org.eclipse.cdt.core.cnature - org.eclipse.cdt.core.ccnature - org.eclipse.cdt.managedbuilder.core.managedBuildNature - org.eclipse.cdt.managedbuilder.core.ScannerConfigNature - - diff --git a/camera/.settings/org.eclipse.cdt.managedbuilder.core.prefs b/camera/.settings/org.eclipse.cdt.managedbuilder.core.prefs deleted file mode 100644 index 820b971dc1..0000000000 --- a/camera/.settings/org.eclipse.cdt.managedbuilder.core.prefs +++ /dev/null @@ -1,14 +0,0 @@ -eclipse.preferences.version=1 -environment/buildEnvironmentInclude/0.451674452/CPATH/delimiter=\: -environment/buildEnvironmentInclude/0.451674452/CPATH/operation=replace -environment/buildEnvironmentInclude/0.451674452/CPATH/value=/home/turtlebot/workspace/3AM/ROS_Nodes/catkin_tb/devel/include\:/opt/ros/indigo/include -environment/buildEnvironmentInclude/0.451674452/CPLUS_INCLUDE_PATH/delimiter=\: -environment/buildEnvironmentInclude/0.451674452/CPLUS_INCLUDE_PATH/operation=remove -environment/buildEnvironmentInclude/0.451674452/C_INCLUDE_PATH/delimiter=\: -environment/buildEnvironmentInclude/0.451674452/C_INCLUDE_PATH/operation=remove -environment/buildEnvironmentInclude/0.451674452/append=true -environment/buildEnvironmentInclude/0.451674452/appendContributed=true -environment/buildEnvironmentLibrary/0.451674452/LIBRARY_PATH/delimiter=\: -environment/buildEnvironmentLibrary/0.451674452/LIBRARY_PATH/operation=remove -environment/buildEnvironmentLibrary/0.451674452/append=true -environment/buildEnvironmentLibrary/0.451674452/appendContributed=true diff --git a/camera/.settings/org.eclipse.cdt.ui.prefs b/camera/.settings/org.eclipse.cdt.ui.prefs deleted file mode 100644 index 4ee12a4ba7..0000000000 --- a/camera/.settings/org.eclipse.cdt.ui.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -formatter_settings_version=1 diff --git a/camera/CMakeLists.txt b/camera/CMakeLists.txt index 42e6acc0e2..29dc548ee9 100644 --- a/camera/CMakeLists.txt +++ b/camera/CMakeLists.txt @@ -2,11 +2,20 @@ cmake_minimum_required(VERSION 2.8.3) project(realsense_camera) -set(CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}") +# Save the command line compile commands in the build output +set(CMAKE_EXPORT_COMPILE_COMMANDS 1) +# View the makefile commands during build +#set(CMAKE_VERBOSE_MAKEFILE on) + +set(CMAKE_CXX_FLAGS "-fPIE -fPIC -std=c++11 -O2 -D_FORTIFY_SOURCE=2 -fstack-protector -Wformat -Wformat-security -Wall ${CMAKE_CXX_FLAGS}") +# Flags executables +set(CMAKE_EXE_LINKER_FLAGS "-pie -z noexecstack -z relro -z now") +# Flags shared libraries +set(CMAKE_SHARED_LINKER_FLAGS "-z noexecstack -z relro -z now") find_package(catkin REQUIRED COMPONENTS + dynamic_reconfigure roscpp - rospy nodelet cv_bridge image_transport @@ -29,6 +38,13 @@ generate_messages( std_msgs ) +#add dynamic reconfigure api +generate_dynamic_reconfigure_options( + cfg/camera_params.cfg +) + + + include_directories( ${catkin_INCLUDE_DIRS} ) @@ -38,9 +54,18 @@ target_link_libraries(realsense_camera_nodelet ${catkin_LIBRARIES} /usr/local/lib/librealsense.so ) +add_dependencies(realsense_camera_nodelet realsense_camera_generate_messages_cpp ${PROJECT_NAME}_gencfg) add_executable(realsense_camera_test test/realsense_camera_test_node.cpp) target_link_libraries(realsense_camera_test ${catkin_LIBRARIES} ${GTEST_LIBRARIES} ) +add_dependencies(realsense_camera_test realsense_camera_generate_messages_cpp ${PROJECT_NAME}_gencfg) + +add_executable(realsense_camera_test_rgbd test/realsense_camera_test_rgbd_node.cpp) +target_link_libraries(realsense_camera_test_rgbd + ${catkin_LIBRARIES} + ${GTEST_LIBRARIES} +) +add_dependencies(realsense_camera_test_rgbd realsense_camera_generate_messages_cpp) diff --git a/camera/README.md b/camera/README.md index 3f82ce9f53..46959655a1 100644 --- a/camera/README.md +++ b/camera/README.md @@ -4,27 +4,29 @@ ###Installation #####Getting the camera to work on Linux -* Clone the source from the librealsense git repository https://github.intel.com/PerCSystemsEngineering/librealsense. -* Follow the instructions at https://github.intel.com/PerCSystemsEngineering/librealsense/blob/master/doc/installation.md. +* Clone the source from the librealsense git repository https://github.com/IntelRealSense/librealsense.git and follow the "Installation Guide" for installing the library. * Make sure that the software stack is installed properly and that the camera is working. This can be checked by connecting the camera to a USB3 port and running the "cpp-capture" sample program in the "librealsense/bin" folder. If this does not work, you should first fix this issue before continuing with the ROS integration. -* Make sure /usr/local/lib is in your LD__LIBRARY_PATH. +* Make sure "/usr/local/lib" is set in your "LD_LIBRARY_PATH". +* Copy the librealsense header files folder "librealsense/include/librealsense" to "/usr/local/include". + + E.g. sudo cp -r \/include/librealsense /usr/local/include + #####Building package: -* Follow the steps in the README.md file of the ros repository. Setup ROS and create a local catkin workspace. -* To compile just realsense package, instead of catkin_make, execute following command - catkin_make --pkg realsense +* Setup ROS and create a local catkin workspace. +* Compile the realsense_camera package by executing the catkin_make command. -Successful execution of command will build target “r200_camera_nodelet” +Successful execution of command will build target “realsense_camera_nodelet” -Sample launch files are available in realsense/launch directory +Sample launch files are available in camera/launch directory -realsense_r200_launch_preset.launch +realsense_r200_rgbd.launch -realsense_r200_launch_manual.launch +realsense_r200_nodelet_standalone_preset.launch -realsense_r200_launch_settings.launch +realsense_r200_nodelet_standalone_manual.launch ### Intel® RealSense™ R200 Nodelet Publishing stream data from the Intel® RealSense™ R200 (DS4) camera @@ -32,7 +34,7 @@ Publishing stream data from the Intel® RealSense™ R200 (DS4) camera #### Subscribed Topics None -#### Published Topics +#### Published Topics (default) Color camera @@ -62,7 +64,13 @@ Infrared2 camera camera/infrared2/camera_info Calibration data -####Parameters +#### Transform Frames + The following command creates a pdf file that describes the transforms generated by the camera nodelet. You may refer to the [ROS tf wiki](http://wiki.ros.org/tf) for more commands. + + rosrun tf tf_monitor + + +#### Static Parameters mode (string, default: preset) Specify the mode to start camera streams. Mode comprises of height, width and fps. @@ -79,36 +87,21 @@ Infrared2 camera Specify the color camera FPS depth_fps (int, default: 60) Specify the depth camera FPS - enable_depth (bool, default: 1) - Specify if to enable or not the depth camera. 1 is true. 0 is false. - enable_color (bool, default: 1) - Specify if to enable or not the color camera. 1 is true. 0 is false. - enable_pointcloud (bool, default: 1) - Specify if to enable or not the point cloud camera. 1 is true. 0 is false. + enable_depth (bool, default: true) + Specify if to enable or not the depth camera. + enable_color (bool, default: true) + Specify if to enable or not the color camera. + enable_pointcloud (bool, default: true) + Specify if to enable or not the point cloud camera. + enable_tf (bool, default: true) + Specify if to enable or not the transform frames. camera (string, default: "R200") Specify the camera name. - Supported options: Here are r200 camera supported options that can be set - COLOR_BACKLIGHT_COMPENSATION : [0, 4] - COLOR_BRIGHTNESS : [0, 255] - COLOR_CONTRAST : [16, 64] - COLOR_EXPOSURE : [0, 0] - COLOR_GAIN : [0, 256] - COLOR_GAMMA : [100, 280] - COLOR_HUE : [-2200, 2200] - COLOR_SATURATION : [0, 255] - COLOR_SHARPNESS : [0, 7] - COLOR_WHITE_BALANCE : [2000, 8000] - COLOR_ENABLE_AUTO_EXPOSURE : [0, 0] - COLOR_ENABLE_AUTO_WHITE_BALANCE : [0, 1] - R200_LR_AUTO_EXPOSURE_ENABLED : [0, 1] - R200_LR_GAIN : [100, 1600] - R200_LR_EXPOSURE : [0, 333] - R200_EMITTER_ENABLED : [0, 1] + Supported options: Following are the options supported by the R200 camera: R200_DEPTH_CONTROL_PRESET : [0, 5] R200_DEPTH_UNITS : [1, 2147483647] R200_DEPTH_CLAMP_MIN : [0, 65535] R200_DEPTH_CLAMP_MAX : [0, 65535] - R200_DISPARITY_MULTIPLIER : [1, 1000] R200_DEPTH_CONTROL_ESTIMATE_MEDIAN_DECREMENT : [0 - 255] R200_DEPTH_CONTROL_ESTIMATE_MEDIAN_INCREMENT : [0 - 255] R200_DEPTH_CONTROL_MEDIAN_THRESHOLD : [0 - 1023] @@ -122,43 +115,89 @@ Infrared2 camera ####Services get_settings (camera/get_settings) - To get supported camera options with current value set. It returns string in options:value format where different options are seperated by semicolon. - + +To get supported camera options with current value set. It returns string in options:value format where different options are seperated by semicolon. + +####Dynamic Parameters + List of dynamically configurable camera options: + + COLOR_BACKLIGHT_COMPENSATION + COLOR_BRIGHTNESS + COLOR_CONTRAST + COLOR_GAIN + COLOR_GAMMA + COLOR_HUE + COLOR_SATURATION + COLOR_SHARPNESS + COLOR_WHITE_BALANCE + COLOR_ENABLE_AUTO_WHITE_BALANCE + R200_LR_AUTO_EXPOSURE_ENABLED + R200_LR_GAIN + R200_LR_EXPOSURE + R200_EMITTER_ENABLED + R200_DISPARITY_MULTIPLIER + R200_AUTO_EXPOSURE_TOP_EDGE + R200_AUTO_EXPOSURE_BOTTOM_EDGE + R200_AUTO_EXPOSURE_LEFT_EDGE + R200_AUTO_EXPOSURE_RIGHT_EDGE + +Use rqt_reconfigure GUI to view and edit the parameters that are accessible via dynamic_reconfigure. + +Command to launch GUI: + + $ rosrun rqt_reconfigure rqt_reconfigure + +Change options commandline using following command: + + $ rosrun dynamic_reconfigure dynparam set / + E.g. $ rosrun dynamic_reconfigure dynparam set /RealsenseNodelet COLOR_BACKLIGHT_COMPENSATION 2 + +Note: For Autoexposure EDGE parameters, max value will go only upto the bounds of the infrared image. +E.g. For 320x240 infrared image, valid values are within 0-319 and 0-239) + +To change EDGE parameters, R200_LR_AUTO_EXPOSURE_ENABLED should be enabled. +To set R200_LR_EXPOSURE, R200_LR_AUTO_EXPOSURE_ENABLED should be disabled. +To set COLOR_WHITE_BALANCE, COLOR_ENABLE_AUTO_WHITE_BALANCE should be disabled. + ###Running the R200 nodelet -Type the following to launch the camera nodelet. You will notice the camera light up. +Use the following command to launch the camera nodelet. You will notice the camera light up. - $ roslaunch realsense realsense_r200_launch_preset.launch + $ roslaunch realsense_camera realsense_r200_nodelet_standalone_preset.launch View using RVIZ: For color, infrared1 and infrared2 streams, you can open RVIZ and load the published topics. -For the point cloud steam, before loading its corresponding topic, set the camera_depth_optical_frame using following command: + +You can also open RVIZ and load the provided RVIZ configuration file: realsenseRvizConfiguration1.rviz. +``` + $ roscd realsense_camera + $ rosrun rviz rviz -d rviz/realsenseRvizConfiguration1.rviz +``` +For the point cloud stream, before loading its corresponding topic, set the camera_depth_optical_frame using following command: $ rosrun tf static_transform_publisher 0.0 0.0 0.0 0.0 0.0 0.0 map camera_depth_optical_frame 100 -You can also open RVIZ and load the provided RVIZ configuration file: realsenseRvizConfiguration.rviz. -![](docs/realsenseRvizScreenshot.png) View using other commands: -* For color stream +For color stream $ rosrun image_view image_view image:=/camera/color/image_raw -* For depth stream +For depth stream $ rostopic echo /camera/depth/image_raw $ rostopic echo /camera/depth/camera_info -* For pointcloud +For pointcloud $ rosrun pcl_ros convert_pointcloud_to_image input:=/camera/depth/points output:=/my_image $ rosrun image_view image_view image:=/my_image -* For viewing supported camera settings with current values: +For viewing supported camera settings with current values: $ rosservice call /camera/get_settings @@ -172,9 +211,50 @@ View using other commands: ** The ROS integration has been tested on a 64bit machine with Linux 14.04 (Trusty) and ROS Indigo. +###Unit Tests +The Unit Tests can be executed using either of the methods: + +Using rostest command with test files + + $ rostest realsense_camera + E.g. rostest realsense_camera realsense_r200_depth_only.test + +Using rosrun command + + $ roslaunch realsense_camera realsense_r200_nodelet_standalone_manual.launch + + $ rosrun realsense_camera realsense_camera_test + E.g. rosrun realsense_camera realsense_camera_test enable_depth 1 depth_encoding 16UC1 depth_height 360 depth_width 480 depth_step 960 enable_color 1 color_encoding rgb8 color_height 480 color_width 640 color_step 1920 + +Sample test files are available in test directory + +realsense_r200_rgbd.test + +realsense_r200_color_only.test + +realsense_r200_depth_only.test + +realsense_r200_resolution.test + + +Both of these methods first starts "RealsenseNodelet" for Intel® RealSense™ R200 (DS4) camera and then executes all the unit tests. + +###Developer API: +Refer to the function definitions in [realsense_camera_nodelet.h](src/realsense_camera_nodelet.h) + + ###Limitations: -Currently camera ROS node supports following formats +Currently, the ROS camera nodelet only supports the following formats: * Color stream: RGB8 * Depth stream: Y16 * Infrared stream: Y8 +Note: The camera does not provide hardware based depth registration/projector data. Hence the launch file "realsense_r200_rgbd.launch" will not generate data for the following topics: +/camera/depth_registered/hw_registered/image_rect_raw +/camera/depth_registered/points +/camera/depth_registered/hw_registered/image_rect +/camera/depth_registered/image +/camera/depth/disparity +/camera/depth_registered/disparity + + diff --git a/camera/cfg/camera_params.cfg b/camera/cfg/camera_params.cfg new file mode 100755 index 0000000000..ce1d2376f7 --- /dev/null +++ b/camera/cfg/camera_params.cfg @@ -0,0 +1,30 @@ +#!/usr/bin/env python + +PACKAGE="realsense_camera" + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +# Name Type Level Description Default Min Max +gen.add("COLOR_BACKLIGHT_COMPENSATION", int_t, 0, "Backlight Compensation", 1, 0, 4) +gen.add("COLOR_BRIGHTNESS", int_t, 0, "Brightness", 56, 0, 255) +gen.add("COLOR_CONTRAST", int_t, 0, "Contrast", 32, 16, 64) +gen.add("COLOR_GAIN", int_t, 0, "Gain", 32, 0, 256) +gen.add("COLOR_GAMMA", int_t, 0, "Gamma", 220, 100, 280) +gen.add("COLOR_HUE", int_t, 0, "Hue", 0, -2200, 2200) +gen.add("COLOR_SATURATION", int_t, 0, "Saturation", 128, 0, 255) +gen.add("COLOR_SHARPNESS", int_t, 0, "Sharpness", 0, 0, 7) +gen.add("COLOR_WHITE_BALANCE", int_t, 0, "White Balance", 6500, 2000, 8000) +gen.add("COLOR_ENABLE_AUTO_WHITE_BALANCE", int_t, 0, "Enable Auto White Balance", 1, 0, 1) +gen.add("R200_LR_AUTO_EXPOSURE_ENABLED", int_t, 0, "LR Auto Exposure Enabled", 0, 0, 1) +gen.add("R200_LR_GAIN", int_t, 0, "LR Gain", 400, 100, 6399) +gen.add("R200_LR_EXPOSURE", int_t, 0, "LR Exposure", 164, 1, 164) +gen.add("R200_EMITTER_ENABLED", int_t, 0, "Emitter Enabled", 1, 0, 1) +gen.add("R200_DISPARITY_MULTIPLIER", int_t, 0, "Disparity Multiplier", 32, 1, 1000) +gen.add("R200_AUTO_EXPOSURE_TOP_EDGE", int_t, 0, "Auto Exposure Top Edge", 0, 0, 479) +gen.add("R200_AUTO_EXPOSURE_BOTTOM_EDGE", int_t, 0, "Auto Exposure Bottom Edge", 479, 0, 479) +gen.add("R200_AUTO_EXPOSURE_LEFT_EDGE", int_t, 0, "Auto Exposure Left Edge", 0, 0, 639) +gen.add("R200_AUTO_EXPOSURE_RIGHT_EDGE", int_t, 0, "Auto Exposure Right Edge", 639, 0, 639) + +exit(gen.generate(PACKAGE, "realsense_camera", "camera_params")) diff --git a/camera/docs/RealSense-ROS-R200-nodelet.html b/camera/docs/RealSense-ROS-R200-nodelet.html deleted file mode 100644 index 2d9668a531..0000000000 --- a/camera/docs/RealSense-ROS-R200-nodelet.html +++ /dev/null @@ -1,113 +0,0 @@ -

Intel RealSense Technology - ROS Integration

-

(ROS Indigo + Ubuntu 14.04 [64-bit])

-

Installation

-
Getting the camera to work on Linux
-

Please make sure that you have a working camera and that the software stack is installed properly. This can be checked by connecting the camera (to a USB3 port) and running one of the provided librealsense samples. If this does not work, you should first fix this issue before continuing with the ROS integration.

-
Building package:
-
    -
  • Follow the steps in the README.md file of the ros repository. Setup ROS and create a local catkin workspace.
  • -
  • To compile just realsense package, instead of catkin_make, execute following command catkin_make --pkg realsense
  • -
-

Successful execution of command will build target “r200_camera_nodelet”

-

Sample launch files are available in realsense/launch directory

-

realsense_r200_launch_preset.launch

-

realsense_r200_launch_manual.launch

-

Intel RealSense R200 Nodelet

-

Publishing stream data from the Intel RealSense R200 (DS4) camera

-

Subscribed Topics

-
None
-

Publisehd Topics

-

Color camera

-
camera/color/image_raw (sensor_msgs/Image)
-    Color rectified image. RGB format.
-camera/color/camera_info
-    Calibration data
-

Depth camera

-
camera/depth/image_raw (sensor_msgs/Image)
-    uint16 depths in mm
-camera/depth/camera_info
-    Calibration data
-camera/depth/points (sensor_msgs/PointCloud2)
-    Registered XYZRGB point cloud.
-

Infrared camera

-
camera/infrared1/image_raw (sensor_msgs/Image)
-camera/infrared1/camera_info
-    Calibration data
-

Infrared2 camera

-
camera/infrared2/image_raw (sensor_msgs/Image)
-camera/infrared2/camera_info
-    Calibration data
-

Parameters

-
Mode (string, default: preset)
-Specify mode to start camera streams with. Preset mode starts all streams with defaults values for each stream’s width/height and FPS. In Manual mode, camera streams will be set with resolution and FPS values passed.
-cHeight (int, default: 480)
-    Specify the color camera height resolution.
-cWidth (int, default: 640)
-    Specify the color camera width resolution.
-dHeight (int, default: 360)
-    Specify the depth camera height resolution.
-dWidth (int, default: 480)
-    Specify the depth camera width resolution.
-cFPS (int, default: 60)
-    Specify the color camera FPS
-dFPS (int, default: 60)
-    Specify the depth camera FPS
-enableDepth (bool, default: 1) 
-    Specify if to enable or not the depth camera. 1 is true. 0 is false.
-enableColor (bool, default: 1) 
-    Specify if to enable or not the color camera. 1 is true. 0 is false.
-enablePointCloud (bool, default: 1) 
-    Specify if to enable or not the point cloud camera. 1 is true. 0 is false.
-Supported options: Here are r200 camera supported options that can be set
-    COLOR_BACKLIGHT_COMPENSATION : [0, 4]
-    COLOR_BRIGHTNESS : [0, 255]
-    COLOR_CONTRAST : [16, 64]
-    COLOR_EXPOSURE : [0, 0]
-    COLOR_GAIN : [0, 256]
-    COLOR_GAMMA : [100, 280]
-    COLOR_HUE : [-2200, 2200]
-    COLOR_SATURATION : [0, 255]
-    COLOR_SHARPNESS : [0, 7]
-    COLOR_WHITE_BALANCE : [2000, 8000]
-    COLOR_ENABLE_AUTO_EXPOSURE : [0, 0]
-    COLOR_ENABLE_AUTO_WHITE_BALANCE : [0, 1]
-    R200_LR_AUTO_EXPOSURE_ENABLED : [0, 1]
-    R200_LR_GAIN : [100, 1600]
-    R200_LR_EXPOSURE : [0, 333]
-    R200_EMITTER_ENABLED : [0, 1]
-    R200_DEPTH_CONTROL_PRESET : [0, 5]
-    R200_DEPTH_UNITS : [1, 2147483647]
-    R200_DEPTH_CLAMP_MIN : [0, 65535]
-    R200_DEPTH_CLAMP_MAX : [0, 65535]
-    R200_DISPARITY_MULTIPLIER : [1, 1000]
-    R200_DISPARITY_SHIFT : [0, 0] 
-

Services

-
None
-

Running the R200 nodelet

-

Simply type:

-
$ roslaunch realsense realsense_r200_launch.launch
-

This will launch the camera nodelet. You will see the camera lights up.

-

For color, infrared1 and infrared2 streams, you can open RVIZ and load the published topics.

-

You can also open RVIZ and load the provided RVIZ configuration file: realsenseRvizConfiguration.rviz.

-

Other commands to view streams:

-
    -
  • For Color stream

    -

    $ rosrun image_view image_view image:=/camera/color/image_raw

  • -
  • For depth stream

  • -
-

Verified data and other info by rostopic echo command for image_raw and camera_info.

-
$ rostopic echo /camera/depth/image_raw
-$ rostopic echo /camera/depth/camera_info
-
    -
  • For pointcloud
  • -
-

To view it in rviz, set camera_depth_optical_frame using following command:

-
$ rosrun tf static_transform_publisher 0.0 0.0 0.0 0.0 0.0 0.0 map camera_depth_optical_frame 100
-

To view it using image_view:

-
$ rosrun pcl_ros convert_pointcloud_to_image input:=/camera/depth/points output:=/my_image
-$ rosrun image_view image_view image:=/my_image
-

Tech and dependencies * librealsense.so

-

System: * Linux 14.04+ * ROS Indigo * R200 (DS4) camera

-

** The ROS integration has been tested on a 64bit machine with Linux 14.04 (Trusty) and ROS Indigo.

-

Limitations:

-

Currently camera ROS node supports following formats * Color stream: RGB8 * Depth stream: Y16 * Infrared stream: Y8

diff --git a/camera/docs/RealSense-ROS-R200-nodelet.md b/camera/docs/RealSense-ROS-R200-nodelet.md deleted file mode 100644 index 3f82ce9f53..0000000000 --- a/camera/docs/RealSense-ROS-R200-nodelet.md +++ /dev/null @@ -1,180 +0,0 @@ -#Intel® RealSense™ Technology - ROS Integration - -###(ROS Indigo + Ubuntu 14.04 [64-bit]) -###Installation -#####Getting the camera to work on Linux - -* Clone the source from the librealsense git repository https://github.intel.com/PerCSystemsEngineering/librealsense. -* Follow the instructions at https://github.intel.com/PerCSystemsEngineering/librealsense/blob/master/doc/installation.md. -* Make sure that the software stack is installed properly and that the camera is working. This can be checked by connecting the camera to a USB3 port and running the "cpp-capture" sample program in the "librealsense/bin" folder. -If this does not work, you should first fix this issue before continuing with the ROS integration. -* Make sure /usr/local/lib is in your LD__LIBRARY_PATH. - -#####Building package: - -* Follow the steps in the README.md file of the ros repository. Setup ROS and create a local catkin workspace. -* To compile just realsense package, instead of catkin_make, execute following command - catkin_make --pkg realsense - -Successful execution of command will build target “r200_camera_nodelet” - -Sample launch files are available in realsense/launch directory - -realsense_r200_launch_preset.launch - -realsense_r200_launch_manual.launch - -realsense_r200_launch_settings.launch - -### Intel® RealSense™ R200 Nodelet -Publishing stream data from the Intel® RealSense™ R200 (DS4) camera - -#### Subscribed Topics - None - -#### Published Topics - -Color camera - - camera/color/image_raw (sensor_msgs/Image) - Color rectified image. RGB format. - camera/color/camera_info - Calibration data - -Depth camera - - camera/depth/image_raw (sensor_msgs/Image) - uint16 depths in mm - camera/depth/camera_info - Calibration data - camera/depth/points (sensor_msgs/PointCloud2) - Registered XYZRGB point cloud. - -Infrared1 camera - - camera/infrared1/image_raw (sensor_msgs/Image) - camera/infrared1/camera_info - Calibration data - -Infrared2 camera - - camera/infrared2/image_raw (sensor_msgs/Image) - camera/infrared2/camera_info - Calibration data - -####Parameters - - mode (string, default: preset) - Specify the mode to start camera streams. Mode comprises of height, width and fps. - Preset mode enables default values whereas Manual mode enables the specified parameter values. - color_height (int, default: 480) - Specify the color camera height resolution. - color_width (int, default: 640) - Specify the color camera width resolution. - depth_height (int, default: 360) - Specify the depth camera height resolution. - depth_width (int, default: 480) - Specify the depth camera width resolution. - depth_fps (int, default: 60) - Specify the color camera FPS - depth_fps (int, default: 60) - Specify the depth camera FPS - enable_depth (bool, default: 1) - Specify if to enable or not the depth camera. 1 is true. 0 is false. - enable_color (bool, default: 1) - Specify if to enable or not the color camera. 1 is true. 0 is false. - enable_pointcloud (bool, default: 1) - Specify if to enable or not the point cloud camera. 1 is true. 0 is false. - camera (string, default: "R200") - Specify the camera name. - Supported options: Here are r200 camera supported options that can be set - COLOR_BACKLIGHT_COMPENSATION : [0, 4] - COLOR_BRIGHTNESS : [0, 255] - COLOR_CONTRAST : [16, 64] - COLOR_EXPOSURE : [0, 0] - COLOR_GAIN : [0, 256] - COLOR_GAMMA : [100, 280] - COLOR_HUE : [-2200, 2200] - COLOR_SATURATION : [0, 255] - COLOR_SHARPNESS : [0, 7] - COLOR_WHITE_BALANCE : [2000, 8000] - COLOR_ENABLE_AUTO_EXPOSURE : [0, 0] - COLOR_ENABLE_AUTO_WHITE_BALANCE : [0, 1] - R200_LR_AUTO_EXPOSURE_ENABLED : [0, 1] - R200_LR_GAIN : [100, 1600] - R200_LR_EXPOSURE : [0, 333] - R200_EMITTER_ENABLED : [0, 1] - R200_DEPTH_CONTROL_PRESET : [0, 5] - R200_DEPTH_UNITS : [1, 2147483647] - R200_DEPTH_CLAMP_MIN : [0, 65535] - R200_DEPTH_CLAMP_MAX : [0, 65535] - R200_DISPARITY_MULTIPLIER : [1, 1000] - R200_DEPTH_CONTROL_ESTIMATE_MEDIAN_DECREMENT : [0 - 255] - R200_DEPTH_CONTROL_ESTIMATE_MEDIAN_INCREMENT : [0 - 255] - R200_DEPTH_CONTROL_MEDIAN_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_SCORE_MINIMUM_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_SCORE_MAXIMUM_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_TEXTURE_COUNT_THRESHOLD : [0 - 31] - R200_DEPTH_CONTROL_TEXTURE_DIFFERENCE_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_SECOND_PEAK_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_NEIGHBOR_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_LR_THRESHOLD : [0 - 2047] - -####Services - get_settings (camera/get_settings) - To get supported camera options with current value set. It returns string in options:value format where different options are seperated by semicolon. - - -###Running the R200 nodelet - -Type the following to launch the camera nodelet. You will notice the camera light up. - - $ roslaunch realsense realsense_r200_launch_preset.launch - -View using RVIZ: - -For color, infrared1 and infrared2 streams, you can open RVIZ and load the published topics. -For the point cloud steam, before loading its corresponding topic, set the camera_depth_optical_frame using following command: - - $ rosrun tf static_transform_publisher 0.0 0.0 0.0 0.0 0.0 0.0 map camera_depth_optical_frame 100 - -You can also open RVIZ and load the provided RVIZ configuration file: realsenseRvizConfiguration.rviz. -![](docs/realsenseRvizScreenshot.png) - -View using other commands: -* For color stream - - $ rosrun image_view image_view image:=/camera/color/image_raw - -* For depth stream - - $ rostopic echo /camera/depth/image_raw - - $ rostopic echo /camera/depth/camera_info - -* For pointcloud - - $ rosrun pcl_ros convert_pointcloud_to_image input:=/camera/depth/points output:=/my_image - - $ rosrun image_view image_view image:=/my_image - -* For viewing supported camera settings with current values: - - $ rosservice call /camera/get_settings - -Tech and dependencies -* librealsense.so - -System: -* Linux 14.04+ -* ROS Indigo -* R200 (DS4) camera - -** The ROS integration has been tested on a 64bit machine with Linux 14.04 (Trusty) and ROS Indigo. - -###Limitations: -Currently camera ROS node supports following formats -* Color stream: RGB8 -* Depth stream: Y16 -* Infrared stream: Y8 - diff --git a/camera/docs/realsenseRvizScreenshot.png b/camera/docs/realsenseRvizScreenshot.png deleted file mode 100644 index 40e3d8663f..0000000000 Binary files a/camera/docs/realsenseRvizScreenshot.png and /dev/null differ diff --git a/camera/launch/includes/realsense_r200_nodelet.launch.xml b/camera/launch/includes/realsense_r200_nodelet.launch.xml new file mode 100644 index 0000000000..2fac0ac011 --- /dev/null +++ b/camera/launch/includes/realsense_r200_nodelet.launch.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/launch/realsense_r200_launch_settings.launch b/camera/launch/realsense_r200_launch_settings.launch deleted file mode 100644 index 675c9c7ba3..0000000000 --- a/camera/launch/realsense_r200_launch_settings.launch +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/camera/launch/realsense_r200_navigation.launch b/camera/launch/realsense_r200_navigation.launch new file mode 100644 index 0000000000..f32469053d --- /dev/null +++ b/camera/launch/realsense_r200_navigation.launch @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/camera/launch/realsense_r200_launch_manual.launch b/camera/launch/realsense_r200_nodelet_standalone_manual.launch similarity index 84% rename from camera/launch/realsense_r200_launch_manual.launch rename to camera/launch/realsense_r200_nodelet_standalone_manual.launch index f931bdab64..f07e0fe0a4 100644 --- a/camera/launch/realsense_r200_launch_manual.launch +++ b/camera/launch/realsense_r200_nodelet_standalone_manual.launch @@ -5,9 +5,10 @@ - - - + + + + diff --git a/camera/launch/realsense_r200_launch_preset.launch b/camera/launch/realsense_r200_nodelet_standalone_preset.launch similarity index 59% rename from camera/launch/realsense_r200_launch_preset.launch rename to camera/launch/realsense_r200_nodelet_standalone_preset.launch index a1a00ed2ce..f39e99e09c 100644 --- a/camera/launch/realsense_r200_launch_preset.launch +++ b/camera/launch/realsense_r200_nodelet_standalone_preset.launch @@ -1,18 +1,20 @@ - - - + + + + + enable_color $(arg enable_color) + enable_pointcloud $(arg enable_pointcloud) + enable_tf $(arg enable_tf)"> - + diff --git a/camera/launch/realsense_r200_rgbd.launch b/camera/launch/realsense_r200_rgbd.launch new file mode 100644 index 0000000000..d0e207d34c --- /dev/null +++ b/camera/launch/realsense_r200_rgbd.launch @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/licenses/Intel OBL RealSense 3D Camera Alpha, Beta, Prototype Site License.htm b/camera/licenses/Intel OBL RealSense 3D Camera Alpha, Beta, Prototype Site License.htm deleted file mode 100644 index 0479020e0f..0000000000 --- a/camera/licenses/Intel OBL RealSense 3D Camera Alpha, Beta, Prototype Site License.htm +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - - - - -
- -
- - - - - - - - -
-

INTEL SOFTWARE LICENSE - AGREEMENT (Alpha, Beta, Prototype Site License) for Intel RealSense 3D - Camera

-

By clicking the Accept - button, I signify that I have read and accept the terms below.

-
-

Top of - Form

-
-
-

Bottom - of Form

-
-
- - - - - - - -
-

IMPORTANT - - READ BEFORE COPYING, INSTALLING OR USING.

-
-

Do not use or load software from this site or any associated - materials (collectively, the "Software") until you have carefully - read the following terms and conditions. By loading or using the Software, - you agree to the terms of this Agreement. If you do not wish to so agree, - do not download, install or use the Software.

-

Please Also Note:

-
    -
  • The - Software has to be installed to use the Intel RealSense 3D Camera.
  • -
  • In the - event of a conflict between the terms of the software license - agreement posted on this site and the terms of the software license - agreement delivered with the Software, the terms of the software - license agreement delivered with the Software will control.
  • -
  • If the - Software contains pre-release alpha, beta or prototype code, the - Software may not be fully functional and Intel may substantially - modify the Software in producing any final version.  Intel can - provide no assurance that it will ever produce or make generally - available a final or production version of the Software.
  • -
  • If the - Software contains final or production code, the Software may be - subject to the terms of a license agreement delivered with such - Software.  In such case, the terms of the license agreement - delivered with the Software will control.
  • -
-
-
-

 

-

LICENSE.  Intel hereby grants you a - limited, nontransferable, non-sublicenseable, nonexclusive, royalty-free, - fully-paid license under Intels copyrights to use the Software with Intel 3D - Camera hardware only and solely for your organizations internal evaluation - and testing, subject to these conditions:

-

1. - You may not copy, modify, rent, sell, distribute, externally display, - externally perform or transfer any part of the Software except as provided in - this Agreement, and you agree to prevent unauthorized copying of the - Software.

-

2. - You may not reverse engineer, decompile, or disassemble the Software.

-

3. - You may not sublicense the Software.

-

4. - The Software may include portions offered on terms in addition to those set - out here, as set out in a license accompanying those portions.

-

5. - You may not subject the Software, in whole or in part, to any license - obligations of Open Source Software including without limitation combining or - distributing the Software with Open Source Software in a manner that subjects - the Software or any portion of the Software provided by Intel hereunder to - any license obligations of such Open Source Software. "Open Source - Software" means any software that requires as a condition of use, - modification and/or distribution of such software that such software or other - software incorporated into, derived from or distributed with such software - (a) be disclosed or distributed in source code form; or (b) be licensed by - the user to third parties for the purpose of making and/or distributing - derivative works; or (c) be redistributable at no charge. Open Source - Software includes, without limitation, software licensed or distributed under - any of the following licenses or distribution models, or licenses or - distribution models substantially similar to any of the following: (a) GNUs - General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic - License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public - License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry - Source License (SISL), (g) the Apache Software license and (h) the Common Public - License (CPL).

-

 

-

FEEDBACK.  This Agreement does NOT - obligate you to provide Intel with comments or suggestions regarding the - Software.  However, should you provide Intel with comments or - suggestions for the modification, correction, improvement or enhancement of - (a) the Software or (b) the 3D camera, other products or processes which work - or interact with the Software, you grant to Intel and/or Intels licensors - (where your comments or suggestions relate to their respective applications - that may be included in the Software or the 3D camera) a non-exclusive, - irrevocable, worldwide, royalty-free license, with the right to sublicense to - Intels licensees and customers and/or Intels licensors licensees and - customers, under your intellectual property rights, the rights to use and - disclose such comments and suggestions in any manner Intel or Intels - licensors choose, and to display, perform, copy, make, have made, use, sell, - and otherwise dispose of Intels and Intels licensors and their licensees - products embodying such comments and suggestions in any manner and via any - media Intel and/or Intels licensors choose, without reference to the source.

-

 

-

OWNERSHIP OF SOFTWARE AND COPYRIGHTS. - Title to all copies of the Software remains with Intel or its suppliers. The - Software is copyrighted and protected by the laws of the United States and - other countries, and international treaty provisions. You may not remove any - copyright notices from the Software. Intel may make changes to the Software, - or to items referenced therein, at any time without notice, but is not - obligated to support, update or provide training for the Software. Except as - otherwise expressly provided, Intel grants no express or implied right under - Intel patents, copyrights, trademarks, or other intellectual property rights. -

-

 

-

LIMITED MEDIA WARRANTY.  If the - Software has been delivered by Intel on physical media, Intel warrants the - media to be free from material physical defects for a period of ninety days - after delivery by Intel. If such a defect is found, return the media to Intel - for replacement or alternate delivery of the Software as Intel may select.

-

 

-

EXCLUSION OF OTHER WARRANTIES. - EXCEPT AS PROVIDED ABOVE, THE SOFTWARE IS PROVIDED "AS IS" WITHOUT - ANY EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF - MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE.  - Intel does not warrant or assume responsibility for the accuracy or - completeness of any information, text, graphics, links or other items - contained within the Software.

-

 

-

LIMITATION OF LIABILITY. IN NO EVENT SHALL - INTEL OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, - WITHOUT LIMITATION, LOST PROFITS, BUSINESS INTERRUPTION OR LOST INFORMATION) - ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS - BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT - EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL - OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. YOU MAY - ALSO HAVE OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO - JURISDICTION.  THE SOFTWARE LICENSED HEREUNDER IS NOT DESIGNED OR - INTENDED FOR USE IN ANY MEDICAL, LIFE SAVING OR LIFE SUSTAINING SYSTEMS, - TRANSPORTATION SYSTEMS, NUCLEAR SYSTEMS, OR FOR ANY OTHER MISSION CRITICAL - APPLICATION IN WHICH THE FAILURE OF THE SOFTWARE COULD LEAD TO PERSONAL - INJURY OR DEATH. YOU SHALL INDEMNIFY AND HOLD INTEL AND THE INTEL PARTIES - HARMLESS AGAINST ALL CLAIMS, COSTS, DAMAGES, AND EXPENSES, AND REASONABLE - ATTORNEY FEES ARISING OUT OF, DIRECTLY OR INDIRECTLY, THE DISTRIBUTION OF THE - SOFTWARE AND ANY CLAIM OF PRODUCT LIABILITY, PERSONAL INJURY OR DEATH - ASSOCIATED WITH ANY UNINTENDED USE, EVEN IF SUCH CLAIM ALLEGES THAT AN INTEL - PARTY WAS NEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF THE SOFTWARE. THE - LIMITED REMEDIES, WARRANTY DISCLAIMER AND LIMITED LIABILITY ARE FUNDAMENTAL - ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN INTEL AND YOU. INTEL WOULD NOT - BE ABLE TO PROVIDE THE SOFTWARE WITHOUT SUCH LIMITATIONS.

-

 

-

TERMINATION OF THIS AGREEMENT. - Intel may terminate this Agreement at any time if you violate its terms. Upon - termination, you will immediately destroy the Software or return all copies - of the Software to Intel (including providing certification of such destruction - back to Intel).  In the event of termination of this Agreement, all - licenses granted to you hereunder shall immediately terminate.

-

 

-

APPLICABLE LAWS. Claims arising under - this Agreement shall be governed by the laws of Delaware, excluding its principles - of conflict of laws and the United Nations Convention on Contracts for the - Sale of Goods. You may not export the Software in violation of applicable - export laws and regulations.

-

 

-

GOVERNMENT RESTRICTED RIGHTS. - The Software is provided with "RESTRICTED RIGHTS." Use, duplication - or disclosure by the government is subject to restrictions as set forth in - FAR52.227-14 and DFAR252.227-7013 et seq. or its successor. Use of the - Software by the government constitutes acknowledgment of Intel's proprietary - rights therein.  Contractor or Manufacturer is Intel Corporation, 2200 - Mission College Blvd., Santa Clara, CA 95052.

-

 

-

CONFIDENTIALITY.  You shall not - disclose the terms or existence of this Agreement or use Intel's name in any - publications, advertisements, or other announcements without Intel's prior - written consent. You do not have any rights to use any Intel trademarks or - logos.

-

 

-

ASSIGNMENT.  You may not - delegate, assign or transfer this Agreement, the license(s) granted or any of - your rights or duties hereunder, expressly, by implication, by operation of - law, by way of merger (regardless of whether you are the surviving entity) or - acquisition, or otherwise and any attempt to do so, without Intels express - prior written consent, shall be null and void. Intel may assign this - Agreement, and its rights and obligations hereunder, in its sole discretion.

-

 

-

ENTIRE AGREEMENT. The terms and conditions - of this Agreement constitutes the entire agreement between the parties with - respect to the subject matter hereof, and merges and supersedes all prior, - contemporaneous agreements, understandings, negotiations and discussions. - Neither of the parties hereto shall be bound by any conditions, definitions, - warranties, understandings or representations with respect to the subject - matter hereof other than as expressly provided for herein. Intel is not - obligated under any other agreements unless they are in writing and signed by - an authorized representative of Intel.

-

 

-

NO AGENCY. Nothing contained herein - shall be construed as creating any agency, employment relationship, - partnership, principal-agent or other form of joint enterprise between the - parties.

-

 

-

SEVERABILITY. In the event that any - provision of this Agreement shall be unenforceable or invalid under any - applicable law or be so held by an applicable court decision, such - unenforceability or invalidity shall not render this Agreement unenforceable - or invalid as a whole, and, in such event, such provision shall be changed - and interpreted so as to best accomplish the objectives of such unenforceable - or invalid provision within the limits of applicable law or applicable court - decisions.

-

 

-

WAIVER. The failure of either party to - require performance by the other party of any provision hereof shall not - affect the full right to require such performance at any time thereafter; nor - shall the waiver by either party of a breach of any provision hereof be taken - or held to be a waiver of the provision itself.

-
-

 

-
- -
- -

 

- -

 

- -
- - - - diff --git a/camera/licenses/License.txt b/camera/licenses/License.txt new file mode 100644 index 0000000000..ec997c2e5f --- /dev/null +++ b/camera/licenses/License.txt @@ -0,0 +1,12 @@ +Copyright (c) 2016, Intel Corporation +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/camera/licenses/Licenses.txt b/camera/licenses/Licenses.txt deleted file mode 100644 index 14a0500a5e..0000000000 --- a/camera/licenses/Licenses.txt +++ /dev/null @@ -1,3 +0,0 @@ -OpenCV - http://opencv.org/license.html -ROS - http://www.ros.org/is-ros-for-me/ -libconfig++ - http://www.hyperrealm.com/libconfig/ \ No newline at end of file diff --git a/camera/licenses/ReadMe.txt b/camera/licenses/ReadMe.txt deleted file mode 100644 index eb71cd0e5d..0000000000 --- a/camera/licenses/ReadMe.txt +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (c) 2016, Intel Corporation. - -This RealSense-ROS ("Software") is furnished under license and may only be used or copied in accordance with the terms of that license. -No license, express or implied, by estoppel or otherwise, to any intellectual property rights is granted by this document. -The Software is subject to change without notice, and should not be construed as a commitment by Intel Corporation to market, license, sell or support any product or technology. -Unless otherwise provided for in the license under which this Software is provided, the Software is provided AS IS, with no warranties of any kind, express or implied. -Except as expressly permitted by the Software license, neither Intel Corporation nor its suppliers assumes any responsibility or liability for any errors or inaccuracies that may appear herein. -Except as expressly permitted by the Software license, no part of the Software may be reproduced, stored in a retrieval system, transmitted in any form, or distributed by any means without the express written consent of Intel Corporation. \ No newline at end of file diff --git a/camera/navigation/turtlebot/README.md b/camera/navigation/turtlebot/README.md new file mode 100644 index 0000000000..d44d6c12c7 --- /dev/null +++ b/camera/navigation/turtlebot/README.md @@ -0,0 +1,122 @@ + + +# Navigation with Intel® RealSense™ **R200** camera +This document presents the transition from a **Kinect** to the **R200** for the ROS Navigation stack. +It assumes the **R200** drivers were already installed, and that the navigation using the Kinect is working. + +#### Document outline +Click on the following links to navigate this document + +- [Initial setup](#a-initial-setup) +- [Mapping](#b-mapping) +- [Navigation](#c-navigation) +- [Simulating a mapping](#d-simulating-a-mapping) + +## A - Initial setup + +First, make sure you have the latest versions of the ROS navigation stack. Specifically, check that the following packages are up-to-date: + +- **turtlebot_description** +- **turtlebot_bringup** + +Before being able to use the navigation stack with the **R200**, you need to set a few things up. + +The `install_realsense_navigation.sh` script (located in the `install_resources` folder) will do everything needed. It will place the required files in their respective locations. + +From now on, if you want to use the **R200** as your turtlebot 3d sensor, you need to change environment variables: + +```bash +export TURTLEBOT_3D_SENSOR=r200 +export TURTLEBOT_STACKS=minimal +``` + +To have quick shortcuts, consider pasting this code snippet in your `~/.bash_aliases` file: + +```bash +alias setr200='export TURTLEBOT_3D_SENSOR=r200 && export TURTLEBOT_STACKS=minimal' +alias setkinect='export TURTLEBOT_3D_SENSOR=kinect && export TURTLEBOT_STACKS=hexagons' +``` + +## B - Mapping + +The only difference from the kinect version of the navigation stack is that you need to start the camera driver before the navigation: `roslaunch realsense_camera realsense_r200_navigation.launch`. + +So, the normal flow would be : + +```bash +roslaunch turtlebot_bringup minimal.launch +roslaunch realsense_camera realsense_r200_navigation.launch +roslaunch realsense_navigation gmapping.launch +roslaunch turtlebot_rviz_launchers view_navigation.launch +``` + +You may also want to teleoperate the robot, for instance with the keyboard. + +![](doc/img/mapping_screen.png) + +Once you're done mapping, you can save the map with the following command: + +```bash +rosrun map_server map_saver -f +``` + +> Don't put an extension to your map name, the .*yaml* and .*pgm* files will be created accordingly in you `~/.ros` folder. If you want, you can also provide an absolute path. + + +## C - Navigation + +Once you have a map, you can start the navigation with the following commands + +```bash +roslaunch turtlebot_bringup minimal.launch +roslaunch realsense_camera realsense_r200_navigation.launch +roslaunch realsense_navigation navigation_demo.launch map:= +``` + +## D - Simulating a mapping +Now that you know how to map a room using the **R200**, you might need to repeat the process several times, to adjust all the parameters of the algorithm, or to test with depth enhancement. To avoid using the robot, we can simulate the scanning process (= robot moves + camera) thanks to **rosbag**. + +### 1. Recording a scan +The first thing to do is to record the scanning process. We will store in a *bag file* the required contents so we can later launch gmapping **on the same input data**. + +So we first need to start the turtlebot (+ the teleop of your choice) and the camera: + +```bash +roslaunch turtlebot_bringup minimal.launch +roslaunch realsense_camera realsense_r200_navigation.launch +``` + +Then, we will store the relevent topics in a bag file: + +* _/camera/depth/image_raw_ +* _/camera/depth/camera_info_ +* _/scan_ +* _/tf_ + +![](doc/img/bag_screen.png) +*You can visualize the bagfile with __rqt_bag__* + +> Note that we don't need to actually build the map, so calling gmapping is not necessary. But you can do it, to have an idea if you're not moving the robot too fast, for instance. + +```bash +rosbag record -O /camera/depth/image_raw /camera/depth/camera_info /mobile_base/commands/velocity /tf +``` + +You can now begin to move/teleop your robot around the room. Once you're done, kill first the rosbag record process, then the other nodes. + +### 2. Playing it back +From now on, you'll be able to simulate this mapping again. To do so, you should simply type this line in a terminal (without any other running node): + +```bash +roslaunch realsense_navigation simulate_mapping.launch bag_file:= +``` + +> The path to the bagfile is relative to the user `~` folder. To change this, use the *home* argument as follows: +> +> ```bash +> roslaunch realsense simulate_mapping.launch home:=/tmp bag_file:= +> ``` + +When the RVIZ window is up, you can press `SPACE` in your terminal to start the playback. + +Consider taking a look at the launchfile to see the different arguments. diff --git a/camera/navigation/turtlebot/doc/img/bag_screen.png b/camera/navigation/turtlebot/doc/img/bag_screen.png new file mode 100644 index 0000000000..ba66d73e7e Binary files /dev/null and b/camera/navigation/turtlebot/doc/img/bag_screen.png differ diff --git a/camera/navigation/turtlebot/doc/img/mapping_screen.png b/camera/navigation/turtlebot/doc/img/mapping_screen.png new file mode 100644 index 0000000000..1ef34ba4f2 Binary files /dev/null and b/camera/navigation/turtlebot/doc/img/mapping_screen.png differ diff --git a/camera/navigation/turtlebot/doc/img/screen-ds4-nav.png b/camera/navigation/turtlebot/doc/img/screen-ds4-nav.png new file mode 100644 index 0000000000..5770927d36 Binary files /dev/null and b/camera/navigation/turtlebot/doc/img/screen-ds4-nav.png differ diff --git a/camera/navigation/turtlebot/doc/style-doc.css b/camera/navigation/turtlebot/doc/style-doc.css new file mode 100644 index 0000000000..99c01e165a --- /dev/null +++ b/camera/navigation/turtlebot/doc/style-doc.css @@ -0,0 +1,46 @@ +/* Custom CSS for a better looking doc */ +body { + width: 60em; + outline-color: #eee; +} + +/* For smaller screens, adapt so it's still legible */ +@media screen and (max-width: 70em) { + body { + width: 40em; + } +} +@media screen and (max-width: 45em) { + body { + width: 90%; + } + + .markdown-body ul, .markdown-body ol { + padding-left: 1em; + } +} + +.markdown-body h1 { + text-align: center; + border-width: 4px; +} + +.markdown-body h1 small { + font-weight: normal; + +} + +.markdown-body h1 small:after { + content: ">"; + padding-left: 1em; + padding-right: 1em; +} + +.markdown-body hr { + background-color: #eee; +} + +.markdown-body .codehilite pre, .markdown-body pre { + background-color: #f0f0ed; +} + diff --git a/camera/navigation/turtlebot/install_realsense_navigation.sh b/camera/navigation/turtlebot/install_realsense_navigation.sh new file mode 100755 index 0000000000..c6707d6b42 --- /dev/null +++ b/camera/navigation/turtlebot/install_realsense_navigation.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Installation script for realsense_navigation +# Requires root privileges + +sudo cp ./robot_description/kobuki_minimal_r200.urdf.xacro /opt/ros/$ROS_DISTRO/share/turtlebot_description/robots/ +sudo cp ./robot_description/r200.launch.xml /opt/ros/$ROS_DISTRO/share/turtlebot_bringup/launch/includes/3dsensor/ + +sudo mkdir -p /opt/ros/$ROS_DISTRO/share/realsense_navigation +sudo cp -r ./* /opt/ros/$ROS_DISTRO/share/realsense_navigation diff --git a/camera/navigation/turtlebot/launch/amcl.launch b/camera/navigation/turtlebot/launch/amcl.launch new file mode 100644 index 0000000000..8ca1b72d90 --- /dev/null +++ b/camera/navigation/turtlebot/launch/amcl.launch @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/launch/gmapping.launch b/camera/navigation/turtlebot/launch/gmapping.launch new file mode 100644 index 0000000000..7a306641ce --- /dev/null +++ b/camera/navigation/turtlebot/launch/gmapping.launch @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/launch/navigation_demo.launch b/camera/navigation/turtlebot/launch/navigation_demo.launch new file mode 100644 index 0000000000..bcef81f963 --- /dev/null +++ b/camera/navigation/turtlebot/launch/navigation_demo.launch @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/launch/realsense_robot_description.launch b/camera/navigation/turtlebot/launch/realsense_robot_description.launch new file mode 100644 index 0000000000..575a5a50f7 --- /dev/null +++ b/camera/navigation/turtlebot/launch/realsense_robot_description.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/launch/simulate_mapping.launch b/camera/navigation/turtlebot/launch/simulate_mapping.launch new file mode 100644 index 0000000000..c6bcc076a9 --- /dev/null +++ b/camera/navigation/turtlebot/launch/simulate_mapping.launch @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/package.xml b/camera/navigation/turtlebot/package.xml new file mode 100644 index 0000000000..ba069d974e --- /dev/null +++ b/camera/navigation/turtlebot/package.xml @@ -0,0 +1,21 @@ + + + realsense_navigation + 1.0.0 + RealSense Camera package allowing access to Intel 3D cameras and advanced modules + + Amit Moran + + BSD 3-clause. See license attached + + http://www.ros.org/wiki/RealSense + + Amit Moran + + catkin + roscpp + rospy + + roscpp + rospy + diff --git a/camera/navigation/turtlebot/robot_description/custom_costmap_params.yaml b/camera/navigation/turtlebot/robot_description/custom_costmap_params.yaml new file mode 100644 index 0000000000..b89cdd26cc --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/custom_costmap_params.yaml @@ -0,0 +1,24 @@ +global_costmap: + robot_radius: 0.20 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) + obstacle_layer: + scan: + data_type: LaserScan + topic: scan + marking: true + clearing: true + min_obstacle_height: 0.05 # previous: 0.25, too high for the DS4 configuration! + max_obstacle_height: 0.35 + +local_costmap: + robot_radius: 0.18 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) + obstacle_layer: + scan: + data_type: LaserScan + topic: scan + marking: true + clearing: true + min_obstacle_height: 0.05 # previous: 0.25, too high for the DS4 configuration! + max_obstacle_height: 0.35 + + + diff --git a/camera/navigation/turtlebot/robot_description/kobuki_minimal_r200.urdf.xacro b/camera/navigation/turtlebot/robot_description/kobuki_minimal_r200.urdf.xacro new file mode 100644 index 0000000000..662294778b --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/kobuki_minimal_r200.urdf.xacro @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/camera/navigation/turtlebot/robot_description/meshes/sensors/r200.dae b/camera/navigation/turtlebot/robot_description/meshes/sensors/r200.dae new file mode 100644 index 0000000000..c1ebc6ab21 --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/meshes/sensors/r200.dae @@ -0,0 +1,890 @@ + + + + + Google SketchUp 8.0.4811 + + 2015-05-31T08:41:34Z + 2015-05-31T08:41:34Z + + Z_UP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1184986753859656 7.755517072645532 2.24409448818898 51.06260368681876 7.755517072645532 2.165354330708662 0.1184986753859656 7.755517072645532 2.165354330708662 51.06260368681876 7.755517072645532 2.24409448818898 0.1184986753859656 7.755517072645532 2.24409448818898 0.1184986753859656 2.804370064010866 2.165354330708662 0.1184986753859656 2.804370064010866 2.24409448818898 0.1184986753859656 7.755517072645532 2.165354330708662 51.06260368681876 7.755517072645532 2.165354330708662 51.06260368681876 0.1184986753859656 2.24409448818898 51.06260368681876 0.1184986753859656 2.165354330708662 51.06260368681876 7.755517072645532 2.24409448818898 25.61991398185795 2.804370064010866 2.24409448818898 0.1184986753859656 2.804370064010866 2.165354330708662 25.61991398185795 2.804370064010866 2.165354330708662 0.1184986753859656 2.804370064010866 2.24409448818898 51.06260368681876 0.1184986753859656 2.24409448818898 30.70679771243117 0.1184986753859656 2.165354330708662 51.06260368681876 0.1184986753859656 2.165354330708662 30.70679771243117 0.1184986753859656 2.24409448818898 30.70679771243117 0.1184986753859656 2.24409448818898 25.61991398185795 2.804370064010866 2.165354330708662 30.70679771243117 0.1184986753859656 2.165354330708662 25.61991398185795 2.804370064010866 2.24409448818898 + + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23

+
+
+
+ + + + 0.1184986753859656 2.43930318405221 1.968503937007876 0.1184986753859656 0.2465682045726894 2.165354330708662 0.1184986753859656 0.2465682045726894 1.968503937007876 0.1184986753859656 2.43930318405221 2.165354330708662 0.1184986753859656 0.2465682045726894 1.968503937007876 0.119594327961949 0.2298517765885317 2.165354330708662 0.119594327961949 0.2298517765885317 1.968503937007876 0.1184986753859656 0.2465682045726894 2.165354330708662 0.2465682045726913 0.1184986753859656 1.968503937007876 0.3477764914940549 0.5226027736765067 1.968503937007876 0.3460392041832313 0.5491086559751139 1.968503937007876 0.352958627958972 0.4965504143728474 1.968503937007876 0.361496945786306 0.4713973411548998 1.968503937007876 0.3732453519907644 0.4475739300791728 1.968503937007876 0.3880028280849136 0.4254878063142707 1.968503937007876 0.4055168695612388 0.4055168695612393 1.968503937007876 0.4254878063142707 0.3880028280849154 1.968503937007876 0.4475739300791731 0.3732453519907652 1.968503937007876 0.4713973411549005 0.3614969457863064 1.968503937007876 0.4965504143728469 0.3529586279589738 1.968503937007876 0.5226027736765072 0.3477764914940557 1.968503937007876 0.5491086559751147 0.346039204183232 1.968503937007876 30.0860261920037 0.1184986753859688 1.968503937007876 28.98669970978262 0.3460392041831966 1.968503937007876 29.00270410638306 0.3478174866438403 1.968503937007876 29.01792778668387 0.3530655869813785 1.968503937007876 29.03162811879157 0.3615274957018001 1.968503937007876 29.04313678181573 0.3727904293538459 1.968503937007876 29.05189236747371 0.386304966668887 1.968503937007876 29.05746776635262 0.4014118500799385 1.968503937007876 29.05959100288907 0.4173741452051467 1.968503937007876 0.119594327961949 0.2298517765885317 1.968503937007876 0.1184986753859656 2.43930318405221 1.968503937007876 0.1184986753859656 0.2465682045726894 1.968503937007876 0.1195943279619488 2.456019612036368 1.968503937007876 0.1228625387705512 2.472450017303047 1.968503937007876 0.1228625387705518 0.2134213713218521 1.968503937007876 0.1282473878187184 2.488313271062767 1.968503937007876 0.1282473878187189 0.1975581175621329 1.968503937007876 0.1356567388462739 2.503337948645572 1.968503937007876 0.1356567388462747 0.1825334399793274 1.968503937007876 0.1449638158028762 2.517266973652394 1.968503937007876 0.1449638158028776 0.1686044149725052 1.968503937007876 0.1560093720213884 2.529862016603511 1.968503937007876 0.1560093720213896 0.1560093720213882 1.968503937007876 0.1686044149725052 2.540907572822023 1.968503937007876 0.1686044149725068 0.1449638158028763 1.968503937007876 0.1825334399793273 2.550214649778626 1.968503937007876 0.1825334399793289 0.1356567388462739 1.968503937007876 0.1975581175621327 2.557624000806182 1.968503937007876 0.197558117562134 0.1282473878187185 1.968503937007876 0.213421371321852 2.563008849854349 1.968503937007876 0.2134213713218537 0.1228625387705514 1.968503937007876 0.2298517765885315 2.566277060662952 1.968503937007876 0.2298517765885331 0.1195943279619491 1.968503937007876 0.2465682045726894 2.567372713238935 1.968503937007876 0.3460392041832319 2.136762732649793 1.968503937007876 0.3477764914940558 2.163268614948401 1.968503937007876 0.3529586279589722 2.189320974252061 1.968503937007876 0.3614969457863068 2.214474047470008 1.968503937007876 0.3732453519907648 2.238297458545735 1.968503937007876 0.3880028280849145 2.260383582310638 1.968503937007876 0.4055168695612396 2.280354519063669 1.968503937007876 0.4254878063142705 2.297868560539994 1.968503937007876 0.4475739300791732 2.312626036634144 1.968503937007876 0.4713973411548998 2.324374442838602 1.968503937007876 0.4965504143728471 2.332912760665936 1.968503937007876 0.5226027736765068 2.338094897130853 1.968503937007876 0.5491086559751146 2.339832184441677 1.968503937007876 25.56118838034679 2.567372713238936 1.968503937007876 25.50480608586854 2.339832184441669 1.968503937007876 29.0207414471994 0.4834205400204281 1.968503937007876 30.09912146437194 0.1713469183847506 1.968503937007876 29.03406389556177 0.4743753551861666 1.968503937007876 29.04507585432682 0.4626263227489491 1.968503937007876 29.05324014512329 0.4487465765392888 1.968503937007876 29.05815850270828 0.4334131895122746 1.968503937007876 30.09803909744245 0.1212016043046447 1.968503937007876 30.10330938016302 0.1244567554178949 1.968503937007876 30.10848249331568 0.1633477397435226 1.968503937007876 30.10773656538716 0.1287894127682915 1.968503937007876 30.11110468898 0.1339882234195986 1.968503937007876 30.11162315591949 0.1580084394959358 1.968503937007876 30.11324944927784 0.1397995822959414 1.968503937007876 30.11351516370367 0.1521099485644012 1.968503937007876 30.11406622194742 0.145940003383379 1.968503937007876 0.1195943279619488 2.456019612036368 1.968503937007876 0.1184986753859656 2.43930318405221 2.165354330708662 0.1184986753859656 2.43930318405221 1.968503937007876 0.1195943279619488 2.456019612036368 2.165354330708662 0.1228625387705518 0.2134213713218521 2.165354330708662 0.1228625387705518 0.2134213713218521 1.968503937007876 30.09912146437194 0.1713469183847506 2.165354330708662 25.56118838034679 2.567372713238936 1.968503937007876 30.09912146437194 0.1713469183847506 1.968503937007876 25.56118838034679 2.567372713238936 2.165354330708662 25.56118838034679 2.567372713238936 2.165354330708662 0.2465682045726894 2.567372713238935 1.968503937007876 25.56118838034679 2.567372713238936 1.968503937007876 0.2465682045726894 2.567372713238935 2.165354330708662 0.2465682045726894 2.567372713238935 2.165354330708662 0.2298517765885315 2.566277060662952 1.968503937007876 0.2465682045726894 2.567372713238935 1.968503937007876 0.2298517765885315 2.566277060662952 2.165354330708662 0.213421371321852 2.563008849854349 1.968503937007876 0.213421371321852 2.563008849854349 2.165354330708662 0.1975581175621327 2.557624000806182 1.968503937007876 0.1975581175621327 2.557624000806182 2.165354330708662 0.1825334399793273 2.550214649778626 1.968503937007876 0.1825334399793273 2.550214649778626 2.165354330708662 0.1686044149725052 2.540907572822023 1.968503937007876 0.1686044149725052 2.540907572822023 2.165354330708662 0.1560093720213884 2.529862016603511 1.968503937007876 0.1560093720213884 2.529862016603511 2.165354330708662 0.1449638158028762 2.517266973652394 2.165354330708662 0.1449638158028762 2.517266973652394 1.968503937007876 0.1356567388462739 2.503337948645572 2.165354330708662 0.1356567388462739 2.503337948645572 1.968503937007876 0.1282473878187184 2.488313271062767 2.165354330708662 0.1282473878187184 2.488313271062767 1.968503937007876 0.1228625387705512 2.472450017303047 2.165354330708662 0.1228625387705512 2.472450017303047 1.968503937007876 0.1282473878187189 0.1975581175621329 2.165354330708662 0.1282473878187189 0.1975581175621329 1.968503937007876 0.1356567388462747 0.1825334399793274 2.165354330708662 0.1356567388462747 0.1825334399793274 1.968503937007876 0.1449638158028776 0.1686044149725052 2.165354330708662 0.1449638158028776 0.1686044149725052 1.968503937007876 0.1560093720213896 0.1560093720213882 2.165354330708662 0.1560093720213896 0.1560093720213882 1.968503937007876 0.1686044149725068 0.1449638158028763 1.968503937007876 0.1686044149725068 0.1449638158028763 2.165354330708662 0.1825334399793289 0.1356567388462739 1.968503937007876 0.1825334399793289 0.1356567388462739 2.165354330708662 0.197558117562134 0.1282473878187185 1.968503937007876 0.197558117562134 0.1282473878187185 2.165354330708662 0.2134213713218537 0.1228625387705514 1.968503937007876 0.2134213713218537 0.1228625387705514 2.165354330708662 0.2298517765885331 0.1195943279619491 1.968503937007876 0.2298517765885331 0.1195943279619491 2.165354330708662 0.2465682045726913 0.1184986753859656 1.968503937007876 0.2465682045726913 0.1184986753859656 2.165354330708662 0.2465682045726913 0.1184986753859656 2.165354330708662 30.0860261920037 0.1184986753859688 1.968503937007876 0.2465682045726913 0.1184986753859656 1.968503937007876 30.0860261920037 0.1184986753859688 2.165354330708662 30.0860261920037 0.1184986753859688 2.165354330708662 30.09803909744245 0.1212016043046447 1.968503937007876 30.0860261920037 0.1184986753859688 1.968503937007876 30.09803909744245 0.1212016043046447 2.165354330708662 30.09803909744245 0.1212016043046447 2.165354330708662 30.10330938016302 0.1244567554178949 1.968503937007876 30.09803909744245 0.1212016043046447 1.968503937007876 30.10330938016302 0.1244567554178949 2.165354330708662 30.10330938016302 0.1244567554178949 2.165354330708662 30.10773656538716 0.1287894127682915 1.968503937007876 30.10330938016302 0.1244567554178949 1.968503937007876 30.10773656538716 0.1287894127682915 2.165354330708662 30.11110468898 0.1339882234195986 2.165354330708662 30.10773656538716 0.1287894127682915 1.968503937007876 30.10773656538716 0.1287894127682915 2.165354330708662 30.11110468898 0.1339882234195986 1.968503937007876 30.11324944927784 0.1397995822959414 2.165354330708662 30.11110468898 0.1339882234195986 1.968503937007876 30.11110468898 0.1339882234195986 2.165354330708662 30.11324944927784 0.1397995822959414 1.968503937007876 30.11406622194742 0.145940003383379 2.165354330708662 30.11324944927784 0.1397995822959414 1.968503937007876 30.11324944927784 0.1397995822959414 2.165354330708662 30.11406622194742 0.145940003383379 1.968503937007876 30.11351516370367 0.1521099485644012 2.165354330708662 30.11406622194742 0.145940003383379 1.968503937007876 30.11406622194742 0.145940003383379 2.165354330708662 30.11351516370367 0.1521099485644012 1.968503937007876 30.11162315591949 0.1580084394959358 2.165354330708662 30.11351516370367 0.1521099485644012 1.968503937007876 30.11351516370367 0.1521099485644012 2.165354330708662 30.11162315591949 0.1580084394959358 1.968503937007876 30.10848249331568 0.1633477397435226 2.165354330708662 30.11162315591949 0.1580084394959358 1.968503937007876 30.11162315591949 0.1580084394959358 2.165354330708662 30.10848249331568 0.1633477397435226 1.968503937007876 30.10848249331568 0.1633477397435226 2.165354330708662 30.09912146437194 0.1713469183847506 1.968503937007876 30.10848249331568 0.1633477397435226 1.968503937007876 30.09912146437194 0.1713469183847506 2.165354330708662 + + + + + + + + + + 1 0 0 1 0 0 1 0 0 1 0 0 0.9978589232386028 0.06540312923015378 0 0.9914448613738085 0.1305261922200654 0 0.9914448613738085 0.1305261922200654 0 0.9978589232386028 0.06540312923015378 0 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 0.9914448613738105 -0.1305261922200504 0 0.9978589232386037 -0.06540312923014092 -0 0.9978589232386037 -0.06540312923014092 -0 0.9914448613738105 -0.1305261922200504 0 0.9659258262890664 0.2588190451025282 0 0.9659258262890664 0.2588190451025282 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 3.508559139078474e-017 -1 -0 3.508559139078474e-017 -1 -0 3.508559139078474e-017 -1 -0 3.508559139078474e-017 -1 -0 0.06540312923014653 -0.9978589232386035 -0 0.1305261922200657 -0.9914448613738085 0 0.06540312923014653 -0.9978589232386035 -0 0.1305261922200657 -0.9914448613738085 0 0.2588190451025326 -0.9659258262890651 0 0.2588190451025326 -0.9659258262890651 0 0.3826834323650984 -0.9238795325112833 0 0.3826834323650984 -0.9238795325112833 0 0.5000000000000157 -0.8660254037844295 0 0.5000000000000157 -0.8660254037844295 0 0.6087614290087283 -0.7933533402912294 0 0.6087614290087283 -0.7933533402912294 0 0.7071067811865515 -0.7071067811865435 0 0.7071067811865515 -0.7071067811865435 0 0.7933533402912371 -0.6087614290087183 0 0.7933533402912371 -0.6087614290087183 0 0.8660254037844378 -0.5000000000000014 0 0.8660254037844378 -0.5000000000000014 0 0.9238795325112877 -0.3826834323650871 0 0.9238795325112877 -0.3826834323650871 0 0.965925826289069 -0.258819045102518 0 0.965925826289069 -0.258819045102518 0 0.9238795325112841 0.3826834323650963 0 0.9238795325112841 0.3826834323650963 0 0.8660254037844283 0.500000000000018 0 0.8660254037844283 0.500000000000018 0 0.7933533402912328 0.6087614290087237 0 0.7933533402912328 0.6087614290087237 0 0.7071067811865434 0.7071067811865516 0 0.7071067811865434 0.7071067811865516 0 0.6087614290087107 0.7933533402912428 0 0.6087614290087107 0.7933533402912428 0 0.5000000000000019 0.8660254037844377 0 0.5000000000000019 0.8660254037844377 0 0.3826834323650855 0.9238795325112886 0 0.3826834323650855 0.9238795325112886 0 0.2588190451025133 0.9659258262890702 0 0.2588190451025133 0.9659258262890702 0 0.1305261922200561 0.9914448613738098 0 0.1305261922200561 0.9914448613738098 0 0.06540312923015844 0.9978589232386027 0 0.06540312923015844 0.9978589232386027 0 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -0.2195141426946766 0.9756093178916556 -0 -0.2195141426946766 0.9756093178916556 -0 -0.2195141426946766 0.9756093178916556 -0 -0.2195141426946766 0.9756093178916556 -0 -0.5254901336654482 0.8507996940645135 -0 -0.5254901336654482 0.8507996940645135 -0 -0.5254901336654482 0.8507996940645135 -0 -0.5254901336654482 0.8507996940645135 -0 -0.6994356363115606 0.7146955930026729 -0 -0.6994356363115606 0.7146955930026729 -0 -0.6994356363115606 0.7146955930026729 -0 -0.6994356363115606 0.7146955930026729 -0 -0.8392617144369261 0.5437276659140966 -0 -0.8392617144369261 0.5437276659140966 -0 -0.8392617144369261 0.5437276659140966 -0 -0.8392617144369261 0.5437276659140966 -0 -0.9381474611967006 0.3462359615207312 -0 -0.9381474611967006 0.3462359615207312 -0 -0.9381474611967006 0.3462359615207312 -0 -0.9381474611967006 0.3462359615207312 -0 -0.9912690949632644 0.1318543945824739 -0 -0.9912690949632644 0.1318543945824739 -0 -0.9912690949632644 0.1318543945824739 -0 -0.9912690949632644 0.1318543945824739 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 11 8 12 12 8 13 13 8 14 14 8 15 15 8 16 16 8 17 17 8 18 18 8 19 19 8 20 20 8 21 21 8 22 21 22 23 23 22 24 24 22 25 25 22 26 26 22 27 27 22 28 28 22 29 29 22 30 31 32 33 32 31 34 34 31 35 35 31 36 35 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 8 55 8 56 55 56 57 55 57 58 55 58 59 55 59 60 55 60 61 55 61 62 55 62 63 55 63 64 55 64 65 55 65 66 55 66 67 55 67 68 55 68 69 56 8 10 69 68 70 69 70 71 69 71 72 72 71 73 72 73 74 72 74 75 72 75 76 72 76 30 72 30 22 72 22 77 72 77 78 72 78 79 79 78 80 79 80 81 79 81 82 82 81 83 82 83 84 84 83 85 86 87 88 87 86 89 6 90 91 90 6 5 92 93 94 93 92 95 96 97 98 97 96 99 100 101 102 101 100 103 103 104 101 104 103 105 105 106 104 106 105 107 107 108 106 108 107 109 109 110 108 110 109 111 111 112 110 112 111 113 112 114 115 114 112 113 115 116 117 116 115 114 117 118 119 118 117 116 119 120 121 120 119 118 121 89 86 89 121 120 91 122 123 122 91 90 123 124 125 124 123 122 125 126 127 126 125 124 127 128 129 128 127 126 128 130 129 130 128 131 131 132 130 132 131 133 133 134 132 134 133 135 135 136 134 136 135 137 137 138 136 138 137 139 139 140 138 140 139 141 142 143 144 143 142 145 146 147 148 147 146 149 150 151 152 151 150 153 154 155 156 155 154 157 158 159 160 159 158 161 162 163 164 163 162 165 166 167 168 167 166 169 170 171 172 171 170 173 174 175 176 175 174 177 178 179 180 179 178 181 182 183 184 183 182 185

+
+
+
+ + + + 29.00270410638306 0.3478174866438403 1.968503937007876 29.01792778668387 0.3530655869813785 1.062992125984253 29.00270410638306 0.3478174866438403 1.062992125984253 29.01792778668387 0.3530655869813785 1.968503937007876 28.98669970978262 0.3460392041831966 1.968503937007876 29.00270410638306 0.3478174866438403 1.110223024625157e-015 28.98669970978262 0.3460392041831966 1.110223024625157e-015 29.03162811879157 0.3615274957018001 1.062992125984253 29.03162811879157 0.3615274957018001 1.968503937007876 43.19998259988454 2.339832184441669 1.062992125984254 29.0207414471994 0.4834205400204281 1.062992125984253 25.50480608586854 2.339832184441669 1.062992125984253 29.03406389556177 0.4743753551861666 1.062992125984253 29.04507585432682 0.4626263227489491 1.062992125984253 29.05324014512329 0.4487465765392888 1.062992125984253 29.05815850270828 0.4334131895122746 1.062992125984253 29.05959100288907 0.4173741452051467 1.062992125984253 43.1999825998845 0.3478174866438403 1.062992125984253 43.22648848218315 0.3495547739546886 1.062992125984253 43.22648848218314 2.338094897130838 1.062992125984254 43.25254084148678 2.332912760665932 1.062992125984254 43.25254084148678 0.3547369104195798 1.062992125984253 43.27769391470476 2.324374442838592 1.062992125984254 43.27769391470472 0.3632752282469342 1.062992125984253 43.30151732578045 0.3750236344513948 1.062992125984253 43.30151732578047 2.312626036634134 1.062992125984254 43.32360344954538 0.3897811105455223 1.062992125984253 43.32360344954538 2.297868560539985 1.062992125984254 43.34357438629841 2.280354519063661 1.062992125984254 43.34357438629839 0.4072951520218343 1.062992125984253 43.36108842777473 0.4272660887748755 1.062992125984253 43.36108842777473 2.260383582310626 1.062992125984254 43.37584590386888 2.238297458545732 1.062992125984254 43.37584590386889 0.4493522125397943 1.062992125984253 43.38759431007334 2.214474047469995 1.062992125984254 43.38759431007329 0.4731756236155132 1.062992125984253 43.39613262790066 0.4983286968334623 1.062992125984253 43.39613262790067 2.189320974252053 1.062992125984254 43.40131476436558 0.5243810561371171 1.062992125984253 43.40131476436559 2.163268614948387 1.062992125984254 43.4030520516764 0.5508869384357514 1.062992125984253 43.4030520516764 2.136762732649783 1.062992125984254 29.01792778668387 0.3530655869813785 1.062992125984253 29.00270410638306 0.3478174866438403 1.062992125984253 29.03162811879157 0.3615274957018001 1.062992125984253 29.04313678181573 0.3727904293538459 1.062992125984253 29.05189236747371 0.386304966668887 1.062992125984253 29.05746776635262 0.4014118500799385 1.062992125984253 0.5491086559751147 0.346039204183232 1.968503937007876 28.98669970978262 0.3460392041831966 1.110223024625157e-015 0.5491086559751147 0.346039204183232 1.110223024625157e-015 28.98669970978262 0.3460392041831966 1.968503937007876 29.00270410638306 0.3478174866438403 1.110223024625157e-015 43.1999825998845 0.3478174866438403 0.157480314960631 50.14425631911605 0.3478174866438403 1.110223024625157e-015 29.00270410638306 0.3478174866438403 1.062992125984253 43.1999825998845 0.3478174866438403 1.062992125984253 50.14425631911605 0.3478174866438403 0.157480314960631 29.04313678181573 0.3727904293538459 1.062992125984253 29.04313678181573 0.3727904293538459 1.968503937007876 43.4030520516764 2.136762732649783 1.062992125984254 43.4030520516764 0.5508869384357514 0.157480314960631 43.4030520516764 0.5508869384357514 1.062992125984253 43.4030520516764 2.136762732649783 0.1574803149606311 43.4030520516764 0.5508869384357514 1.062992125984253 43.40131476436558 0.5243810561371171 0.157480314960631 43.40131476436558 0.5243810561371171 1.062992125984253 43.4030520516764 0.5508869384357514 0.157480314960631 43.39613262790066 0.4983286968334623 0.157480314960631 43.39613262790066 0.4983286968334623 1.062992125984253 43.38759431007329 0.4731756236155132 0.157480314960631 43.38759431007329 0.4731756236155132 1.062992125984253 43.37584590386889 0.4493522125397943 0.157480314960631 43.37584590386889 0.4493522125397943 1.062992125984253 43.36108842777473 0.4272660887748755 0.157480314960631 43.36108842777473 0.4272660887748755 1.062992125984253 43.34357438629839 0.4072951520218343 0.157480314960631 43.34357438629839 0.4072951520218343 1.062992125984253 43.32360344954538 0.3897811105455223 1.062992125984253 43.32360344954538 0.3897811105455223 0.157480314960631 43.30151732578045 0.3750236344513948 1.062992125984253 43.30151732578045 0.3750236344513948 0.157480314960631 43.27769391470472 0.3632752282469342 1.062992125984253 43.27769391470472 0.3632752282469342 0.157480314960631 43.25254084148678 0.3547369104195798 1.062992125984253 43.25254084148678 0.3547369104195798 0.157480314960631 43.22648848218315 0.3495547739546886 1.062992125984253 43.22648848218315 0.3495547739546886 0.157480314960631 43.1999825998845 0.3478174866438403 1.062992125984253 43.1999825998845 0.3478174866438403 0.157480314960631 29.05189236747371 0.386304966668887 1.968503937007876 29.05189236747371 0.386304966668887 1.062992125984253 29.05746776635262 0.4014118500799385 1.968503937007876 29.05746776635262 0.4014118500799385 1.062992125984253 29.05959100288907 0.4173741452051467 1.968503937007876 29.05959100288907 0.4173741452051467 1.062992125984253 29.05815850270828 0.4334131895122746 1.968503937007876 29.05815850270828 0.4334131895122746 1.062992125984253 29.05324014512329 0.4487465765392888 1.968503937007876 29.05324014512329 0.4487465765392888 1.062992125984253 29.04507585432682 0.4626263227489491 1.968503937007876 29.04507585432682 0.4626263227489491 1.062992125984253 29.03406389556177 0.4743753551861666 1.968503937007876 29.03406389556177 0.4743753551861666 1.062992125984253 29.0207414471994 0.4834205400204281 1.062992125984253 29.0207414471994 0.4834205400204281 1.968503937007876 29.0207414471994 0.4834205400204281 1.968503937007876 25.50480608586854 2.339832184441669 1.062992125984253 29.0207414471994 0.4834205400204281 1.062992125984253 25.50480608586854 2.339832184441669 1.968503937007876 50.14425631911605 2.339832184441669 0.157480314960631 25.50480608586854 2.339832184441669 1.110223024625157e-015 50.14425631911605 2.339832184441669 1.110223024625157e-015 43.19998259988454 2.339832184441669 0.1574803149606311 25.50480608586854 2.339832184441669 1.062992125984253 43.19998259988454 2.339832184441669 1.062992125984254 43.22648848218314 2.338094897130838 1.062992125984254 43.19998259988454 2.339832184441669 0.1574803149606311 43.22648848218314 2.338094897130838 0.1574803149606311 43.19998259988454 2.339832184441669 1.062992125984254 43.25254084148678 2.332912760665932 1.062992125984254 43.25254084148678 2.332912760665932 0.1574803149606311 43.27769391470476 2.324374442838592 1.062992125984254 43.27769391470476 2.324374442838592 0.1574803149606311 43.30151732578047 2.312626036634134 1.062992125984254 43.30151732578047 2.312626036634134 0.1574803149606311 43.32360344954538 2.297868560539985 1.062992125984254 43.32360344954538 2.297868560539985 0.1574803149606311 43.34357438629841 2.280354519063661 1.062992125984254 43.34357438629841 2.280354519063661 0.1574803149606311 43.36108842777473 2.260383582310626 0.1574803149606311 43.36108842777473 2.260383582310626 1.062992125984254 43.37584590386888 2.238297458545732 0.1574803149606311 43.37584590386888 2.238297458545732 1.062992125984254 43.38759431007334 2.214474047469995 0.1574803149606311 43.38759431007334 2.214474047469995 1.062992125984254 43.39613262790067 2.189320974252053 0.1574803149606311 43.39613262790067 2.189320974252053 1.062992125984254 43.40131476436559 2.163268614948387 0.1574803149606311 43.40131476436559 2.163268614948387 1.062992125984254 43.4030520516764 2.136762732649783 0.1574803149606311 43.4030520516764 2.136762732649783 1.062992125984254 0.5226027736765072 0.3477764914940557 1.968503937007876 0.5491086559751147 0.346039204183232 1.110223024625157e-015 0.5226027736765072 0.3477764914940557 1.110223024625157e-015 0.5491086559751147 0.346039204183232 1.968503937007876 50.14425631911605 2.339832184441669 0.157480314960631 43.22648848218314 2.338094897130838 0.1574803149606311 43.19998259988454 2.339832184441669 0.1574803149606311 43.25254084148678 2.332912760665932 0.1574803149606311 43.27769391470476 2.324374442838592 0.1574803149606311 43.30151732578047 2.312626036634134 0.1574803149606311 43.32360344954538 2.297868560539985 0.1574803149606311 43.34357438629841 2.280354519063661 0.1574803149606311 43.36108842777473 2.260383582310626 0.1574803149606311 43.37584590386888 2.238297458545732 0.1574803149606311 43.38759431007334 2.214474047469995 0.1574803149606311 43.39613262790067 2.189320974252053 0.1574803149606311 43.40131476436559 2.163268614948387 0.1574803149606311 43.4030520516764 2.136762732649783 0.1574803149606311 43.4030520516764 0.5508869384357514 0.157480314960631 43.22648848218315 0.3495547739546886 0.157480314960631 50.14425631911605 0.3478174866438403 0.157480314960631 43.1999825998845 0.3478174866438403 0.157480314960631 43.25254084148678 0.3547369104195798 0.157480314960631 43.27769391470472 0.3632752282469342 0.157480314960631 43.30151732578045 0.3750236344513948 0.157480314960631 43.32360344954538 0.3897811105455223 0.157480314960631 43.34357438629839 0.4072951520218343 0.157480314960631 43.36108842777473 0.4272660887748755 0.157480314960631 43.37584590386889 0.4493522125397943 0.157480314960631 43.38759431007329 0.4731756236155132 0.157480314960631 43.39613262790066 0.4983286968334623 0.157480314960631 43.40131476436558 0.5243810561371171 0.157480314960631 50.17076220141468 2.338094897130827 0.157480314960631 50.17076220141466 0.3495547739546495 0.157480314960631 50.19681456071831 0.35473691041958 0.157480314960631 50.19681456071832 2.332912760665919 0.157480314960631 50.22196763393623 0.3632752282469015 0.157480314960631 50.22196763393626 2.324374442838587 0.157480314960631 50.24579104501201 0.3750236344513794 0.157480314960631 50.24579104501199 2.312626036634129 0.157480314960631 50.26787716877689 2.297868560539985 0.157480314960631 50.26787716877686 0.3897811105455421 0.157480314960631 50.28784810552991 0.407295152021843 0.157480314960631 50.28784810552993 2.280354519063654 0.157480314960631 50.30536214700624 0.4272660887748815 0.157480314960631 50.30536214700626 2.260383582310614 0.157480314960631 50.32011962310041 0.4493522125397739 0.157480314960631 50.32011962310039 2.238297458545719 0.157480314960631 50.33186802930484 2.214474047469999 0.157480314960631 50.33186802930485 0.4731756236154915 0.157480314960631 50.34040634713219 2.189320974252057 0.157480314960631 50.3404063471322 0.498328696833425 0.157480314960631 50.34558848359709 2.163268614948385 0.157480314960631 50.34558848359711 0.5243810561371139 0.157480314960631 50.3473257709079 2.136762732649773 0.157480314960631 50.3473257709079 0.5508869384357039 0.157480314960631 50.14425631911605 0.3478174866438403 0.157480314960631 50.17076220141466 0.3495547739546495 1.110223024625157e-015 50.14425631911605 0.3478174866438403 1.110223024625157e-015 50.17076220141466 0.3495547739546495 0.157480314960631 25.50480608586854 2.339832184441669 1.062992125984253 0.5491086559751146 2.339832184441677 1.110223024625157e-015 25.50480608586854 2.339832184441669 1.110223024625157e-015 0.5491086559751146 2.339832184441677 1.968503937007876 25.50480608586854 2.339832184441669 1.968503937007876 50.17076220141468 2.338094897130827 0.157480314960631 50.14425631911605 2.339832184441669 1.110223024625157e-015 50.17076220141468 2.338094897130827 1.110223024625157e-015 50.14425631911605 2.339832184441669 0.157480314960631 0.4965504143728469 0.3529586279589738 1.968503937007876 0.4965504143728469 0.3529586279589738 1.110223024625157e-015 50.19681456071832 2.332912760665919 0.157480314960631 50.19681456071832 2.332912760665919 1.110223024625157e-015 50.22196763393626 2.324374442838587 0.157480314960631 50.22196763393626 2.324374442838587 1.110223024625157e-015 50.24579104501199 2.312626036634129 0.157480314960631 50.24579104501199 2.312626036634129 1.110223024625157e-015 50.26787716877689 2.297868560539985 0.157480314960631 50.26787716877689 2.297868560539985 1.110223024625157e-015 50.28784810552993 2.280354519063654 0.157480314960631 50.28784810552993 2.280354519063654 1.110223024625157e-015 50.30536214700626 2.260383582310614 1.110223024625157e-015 50.30536214700626 2.260383582310614 0.157480314960631 50.32011962310039 2.238297458545719 1.110223024625157e-015 50.32011962310039 2.238297458545719 0.157480314960631 50.33186802930484 2.214474047469999 1.110223024625157e-015 50.33186802930484 2.214474047469999 0.157480314960631 50.34040634713219 2.189320974252057 1.110223024625157e-015 50.34040634713219 2.189320974252057 0.157480314960631 50.34558848359709 2.163268614948385 1.110223024625157e-015 50.34558848359709 2.163268614948385 0.157480314960631 50.3473257709079 2.136762732649773 1.110223024625157e-015 50.3473257709079 2.136762732649773 0.157480314960631 50.3473257709079 2.136762732649773 0.157480314960631 50.3473257709079 0.5508869384357039 1.110223024625157e-015 50.3473257709079 0.5508869384357039 0.157480314960631 50.3473257709079 2.136762732649773 1.110223024625157e-015 50.3473257709079 0.5508869384357039 0.157480314960631 50.34558848359711 0.5243810561371139 1.110223024625157e-015 50.34558848359711 0.5243810561371139 0.157480314960631 50.3473257709079 0.5508869384357039 1.110223024625157e-015 50.3404063471322 0.498328696833425 1.110223024625157e-015 50.3404063471322 0.498328696833425 0.157480314960631 50.33186802930485 0.4731756236154915 1.110223024625157e-015 50.33186802930485 0.4731756236154915 0.157480314960631 50.32011962310041 0.4493522125397739 1.110223024625157e-015 50.32011962310041 0.4493522125397739 0.157480314960631 50.30536214700624 0.4272660887748815 1.110223024625157e-015 50.30536214700624 0.4272660887748815 0.157480314960631 50.28784810552991 0.407295152021843 1.110223024625157e-015 50.28784810552991 0.407295152021843 0.157480314960631 50.26787716877686 0.3897811105455421 0.157480314960631 50.26787716877686 0.3897811105455421 1.110223024625157e-015 50.24579104501201 0.3750236344513794 0.157480314960631 50.24579104501201 0.3750236344513794 1.110223024625157e-015 50.22196763393623 0.3632752282469015 0.157480314960631 50.22196763393623 0.3632752282469015 1.110223024625157e-015 50.19681456071831 0.35473691041958 0.157480314960631 50.19681456071831 0.35473691041958 1.110223024625157e-015 0.5491086559751146 2.339832184441677 1.968503937007876 0.5226027736765068 2.338094897130853 1.110223024625157e-015 0.5491086559751146 2.339832184441677 1.110223024625157e-015 0.5226027736765068 2.338094897130853 1.968503937007876 0.4713973411549005 0.3614969457863064 1.968503937007876 0.4713973411549005 0.3614969457863064 1.110223024625157e-015 0.4965504143728471 2.332912760665936 1.110223024625157e-015 0.4965504143728471 2.332912760665936 1.968503937007876 0.4475739300791731 0.3732453519907652 1.968503937007876 0.4475739300791731 0.3732453519907652 1.110223024625157e-015 0.4713973411548998 2.324374442838602 1.110223024625157e-015 0.4713973411548998 2.324374442838602 1.968503937007876 0.4254878063142707 0.3880028280849154 1.968503937007876 0.4254878063142707 0.3880028280849154 1.110223024625157e-015 0.4475739300791732 2.312626036634144 1.110223024625157e-015 0.4475739300791732 2.312626036634144 1.968503937007876 0.4055168695612388 0.4055168695612393 1.968503937007876 0.4055168695612388 0.4055168695612393 1.110223024625157e-015 0.4254878063142705 2.297868560539994 1.110223024625157e-015 0.4254878063142705 2.297868560539994 1.968503937007876 0.3880028280849136 0.4254878063142707 1.110223024625157e-015 0.3880028280849136 0.4254878063142707 1.968503937007876 0.4055168695612396 2.280354519063669 1.110223024625157e-015 0.4055168695612396 2.280354519063669 1.968503937007876 0.3732453519907644 0.4475739300791728 1.110223024625157e-015 0.3732453519907644 0.4475739300791728 1.968503937007876 0.3880028280849145 2.260383582310638 1.968503937007876 0.3880028280849145 2.260383582310638 1.110223024625157e-015 0.361496945786306 0.4713973411548998 1.110223024625157e-015 0.361496945786306 0.4713973411548998 1.968503937007876 0.3732453519907648 2.238297458545735 1.968503937007876 0.3732453519907648 2.238297458545735 1.110223024625157e-015 0.352958627958972 0.4965504143728474 1.110223024625157e-015 0.352958627958972 0.4965504143728474 1.968503937007876 0.3614969457863068 2.214474047470008 1.968503937007876 0.3614969457863068 2.214474047470008 1.110223024625157e-015 0.3477764914940549 0.5226027736765067 1.110223024625157e-015 0.3477764914940549 0.5226027736765067 1.968503937007876 0.3529586279589722 2.189320974252061 1.968503937007876 0.3529586279589722 2.189320974252061 1.110223024625157e-015 0.3460392041832313 0.5491086559751139 1.110223024625157e-015 0.3460392041832313 0.5491086559751139 1.968503937007876 0.3477764914940558 2.163268614948401 1.968503937007876 0.3477764914940558 2.163268614948401 1.110223024625157e-015 0.3460392041832319 2.136762732649793 1.110223024625157e-015 0.3460392041832313 0.5491086559751139 1.968503937007876 0.3460392041832313 0.5491086559751139 1.110223024625157e-015 0.3460392041832319 2.136762732649793 1.968503937007876 0.3460392041832319 2.136762732649793 1.968503937007876 0.3460392041832319 2.136762732649793 1.110223024625157e-015 + + + + + + + + + + -0.2195141426946883 0.9756093178916528 -2.251662460960872e-031 -0.4283200860438445 0.9036270823140448 -2.039446246926806e-031 -0.1832544872618059 0.983065507938516 -2.276641252136103e-031 -0.4283200860438445 0.9036270823140448 -2.039446246926806e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 -0.6162319912743373 0.7875646849180484 -1.727743062721139e-031 -0.6162319912743373 0.7875646849180484 -1.727743062721139e-031 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0.7740832592965722 0.6330838077828211 -1.331758214899901e-031 -0.7740832592965722 0.6330838077828211 -1.331758214899901e-031 -1 -5.063450264559819e-035 9.643711856883543e-019 -1 -5.063450264559819e-035 9.643711856883543e-019 -1 -5.063450264559819e-035 9.643711856883543e-019 -1 -5.063450264559819e-035 9.643711856883543e-019 -0.9978589232386242 0.06540312922982872 3.458633610382481e-018 -0.9914448613738267 0.1305261922199271 5.938085634997029e-018 -0.9914448613738267 0.1305261922199271 5.938085634997029e-018 -0.9978589232386242 0.06540312922982872 3.458633610382481e-018 -0.9659258262888851 0.2588190451032043 1.081019779277784e-017 -0.9659258262888851 0.2588190451032043 1.081019779277784e-017 -0.9238795325113519 0.3826834323649326 1.549734446910911e-017 -0.9238795325113519 0.3826834323649326 1.549734446910911e-017 -0.8660254037849143 0.4999999999991764 1.9919327284905e-017 -0.8660254037849143 0.4999999999991764 1.9919327284905e-017 -0.7933533402911954 0.6087614290087726 2.400048488823272e-017 -0.7933533402911954 0.6087614290087726 2.400048488823272e-017 -0.7071067811865249 0.7071067811865701 2.767098754089725e-017 -0.7071067811865249 0.7071067811865701 2.767098754089725e-017 -0.60876142900828 0.7933533402915732 3.086803192490265e-017 -0.60876142900828 0.7933533402915732 3.086803192490265e-017 -0.4999999999994493 0.8660254037847566 3.353691572442538e-017 -0.4999999999994493 0.8660254037847566 3.353691572442538e-017 -0.3826834323655326 0.9238795325111033 3.563197359769641e-017 -0.3826834323655326 0.9238795325111033 3.563197359769641e-017 -0.2588190451025693 0.9659258262890552 3.711735852368559e-017 -0.2588190451025693 0.9659258262890552 3.711735852368559e-017 -0.1305261922200869 0.9914448613738056 3.796765515445271e-017 -0.1305261922200869 0.9914448613738056 3.796765515445271e-017 -0.06540312923095472 0.9978589232385504 3.814966628060576e-017 -0.06540312923095472 0.9978589232385504 3.814966628060576e-017 -0.8941736899130333 0.4477202388404067 -8.708083845489539e-032 -0.8941736899130333 0.4477202388404067 -8.708083845489539e-032 -0.9706451080888319 0.2405162658599619 -3.673793332284476e-032 -0.9706451080888319 0.2405162658599619 -3.673793332284476e-032 -0.9997671337217909 0.02157958131462663 1.539709831518109e-032 -0.9997671337217909 0.02157958131462663 1.539709831518109e-032 -0.9801191546728204 -0.1984097846464127 6.67810384924031e-032 -0.9801191546728204 -0.1984097846464127 6.67810384924031e-032 -0.9126596261640011 -0.4087204506385578 1.149073085081814e-031 -0.9126596261640011 -0.4087204506385578 1.149073085081814e-031 -0.8006793160253677 -0.5990931754653439 1.574282432564735e-031 -0.8006793160253677 -0.5990931754653439 1.574282432564735e-031 -0.6496407765509797 -0.7602413178999415 1.9226961353246e-031 -0.6496407765509797 -0.7602413178999415 1.9226961353246e-031 -0.5617119664874528 -0.8273328633052111 2.062622892710896e-031 -0.5617119664874528 -0.8273328633052111 2.062622892710896e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.1305261922200457 -0.9914448613738112 -3.771590375694363e-017 -0.06540312923042768 -0.9978589232385848 -3.802352049403922e-017 -0.1305261922200457 -0.9914448613738112 -3.771590375694363e-017 -0.06540312923042768 -0.9978589232385848 -3.802352049403922e-017 -0.2588190451023318 -0.9659258262891188 -3.661816326487966e-017 -0.2588190451023318 -0.9659258262891188 -3.661816326487966e-017 -0.3826834323651677 -0.9238795325112544 -3.489387584687525e-017 -0.3826834323651677 -0.9238795325112544 -3.489387584687525e-017 -0.5000000000000009 -0.8660254037844382 -3.25725445387254e-017 -0.5000000000000009 -0.8660254037844382 -3.25725445387254e-017 -0.6087614290086468 -0.7933533402912919 -2.969388796270346e-017 -0.6087614290086468 -0.7933533402912919 -2.969388796270346e-017 -0.707106781186616 -0.707106781186479 -2.630716073093143e-017 -0.707106781186616 -0.707106781186479 -2.630716073093143e-017 -0.7933533402912433 -0.6087614290087099 -2.247031068533741e-017 -0.7933533402912433 -0.6087614290087099 -2.247031068533741e-017 -0.8660254037844346 -0.5000000000000071 -1.824898739396858e-017 -0.8660254037844346 -0.5000000000000071 -1.824898739396858e-017 -0.9238795325113181 -0.3826834323650143 -1.371541886870991e-017 -0.9238795325113181 -0.3826834323650143 -1.371541886870991e-017 -0.9659258262890479 -0.2588190451025965 -8.947175723984055e-018 -0.9659258262890479 -0.2588190451025965 -8.947175723984055e-018 -0.991444861373845 -0.130526192219789 -4.025843921976333e-018 -0.991444861373845 -0.130526192219789 -4.025843921976333e-018 -0.9978589232386543 -0.06540312922937021 -1.534020824458279e-018 -0.9978589232386543 -0.06540312922937021 -1.534020824458279e-018 0.1305261922200759 0.9914448613738072 -2.360634470126157e-031 0.0654031292301361 0.997858923238604 -2.362395058420794e-031 0.1305261922200759 0.9914448613738072 -2.360634470126157e-031 0.0654031292301361 0.997858923238604 -2.362395058420794e-031 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -0.06540312922959453 0.9978589232386395 -0 -0.1305261922200789 0.9914448613738068 0 -0.06540312922959453 0.9978589232386395 -0 -0.1305261922200789 0.9914448613738068 0 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -0.1305261922203011 -0.9914448613737775 0 -0.06540312923079149 -0.9978589232385611 -0 -0.1305261922203011 -0.9914448613737775 0 -0.06540312923079149 -0.9978589232385611 -0 0.2588190451025202 0.9659258262890684 -2.326838321583154e-031 0.2588190451025202 0.9659258262890684 -2.326838321583154e-031 -0.2588190451024253 -0.9659258262890939 0 -0.2588190451024253 -0.9659258262890939 0 -0.3826834323650169 -0.9238795325113171 0 -0.3826834323650169 -0.9238795325113171 0 -0.4999999999999031 -0.8660254037844946 0 -0.4999999999999031 -0.8660254037844946 0 -0.6087614290086439 -0.7933533402912941 0 -0.6087614290086439 -0.7933533402912941 0 -0.7071067811866093 -0.7071067811864858 0 -0.7071067811866093 -0.7071067811864858 0 -0.7933533402914218 -0.6087614290084773 0 -0.7933533402914218 -0.6087614290084773 0 -0.8660254037845377 -0.4999999999998284 0 -0.8660254037845377 -0.4999999999998284 0 -0.9238795325112122 -0.3826834323652698 0 -0.9238795325112122 -0.3826834323652698 0 -0.9659258262890901 -0.2588190451024401 0 -0.9659258262890901 -0.2588190451024401 0 -0.9914448613738833 -0.1305261922194982 0 -0.9914448613738833 -0.1305261922194982 0 -0.997858923238638 -0.06540312922961909 -0 -0.997858923238638 -0.06540312922961909 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.9978589232386694 0.06540312922913877 -0 -0.9914448613739054 0.1305261922193298 0 -0.9914448613739054 0.1305261922193298 0 -0.9978589232386694 0.06540312922913877 -0 -0.9659258262890584 0.2588190451025578 0 -0.9659258262890584 0.2588190451025578 0 -0.923879532511276 0.3826834323651157 0 -0.923879532511276 0.3826834323651157 0 -0.8660254037843593 0.5000000000001372 0 -0.8660254037843593 0.5000000000001372 0 -0.793353340290994 0.608761429009035 0 -0.793353340290994 0.608761429009035 0 -0.7071067811861586 0.7071067811869366 0 -0.7071067811861586 0.7071067811869366 0 -0.6087614290088786 0.793353340291114 0 -0.6087614290088786 0.793353340291114 0 -0.5000000000005405 0.8660254037841265 0 -0.5000000000005405 0.8660254037841265 0 -0.3826834323649039 0.9238795325113639 0 -0.3826834323649039 0.9238795325113639 0 -0.2588190451027368 0.9659258262890103 0 -0.2588190451027368 0.9659258262890103 0 0.0654031292301436 -0.9978589232386035 2.33560359979311e-031 0.1305261922200579 -0.9914448613738096 2.307166278009732e-031 0.0654031292301436 -0.9978589232386035 2.33560359979311e-031 0.1305261922200579 -0.9914448613738096 2.307166278009732e-031 0.382683432365069 0.9238795325112953 -2.253229324236416e-031 0.382683432365069 0.9238795325112953 -2.253229324236416e-031 0.2588190451025239 -0.9659258262890675 2.220816792941599e-031 0.2588190451025239 -0.9659258262890675 2.220816792941599e-031 0.5000000000000147 0.8660254037844301 -2.141066948438753e-031 0.5000000000000147 0.8660254037844301 -2.141066948438753e-031 0.3826834323650852 -0.9238795325112886 2.096468516819501e-031 0.3826834323650852 -0.9238795325112886 2.096468516819501e-031 0.6087614290087049 0.7933533402912473 -1.992270323537472e-031 0.6087614290087049 0.7933533402912473 -1.992270323537472e-031 0.4999999999999988 -0.8660254037844394 1.936249083123728e-031 0.4999999999999988 -0.8660254037844394 1.936249083123728e-031 0.7071067811865293 0.7071067811865658 -1.809385401038751e-031 0.7071067811865293 0.7071067811865658 -1.809385401038751e-031 0.6087614290087232 -0.7933533402912332 1.742899890786038e-031 0.6087614290087232 -0.7933533402912332 1.742899890786038e-031 0.7933533402912396 0.6087614290087149 -1.595541392671784e-031 0.7933533402912396 0.6087614290087149 -1.595541392671784e-031 0.7071067811865497 -0.7071067811865455 1.519729198093864e-031 0.7071067811865497 -0.7071067811865455 1.519729198093864e-031 0.8660254037844386 0.4999999999999999 -1.35439722870862e-031 0.8660254037844386 0.4999999999999999 -1.35439722870862e-031 0.7933533402912354 -0.6087614290087204 1.270555517473774e-031 0.7933533402912354 -0.6087614290087204 1.270555517473774e-031 0.9238795325112905 0.3826834323650806 -1.090078952652364e-031 0.9238795325112905 0.3826834323650806 -1.090078952652364e-031 0.8660254037844404 -0.4999999999999971 9.996422796851562e-032 0.8660254037844404 -0.4999999999999971 9.996422796851562e-032 0.9659258262890674 0.258819045102524 -8.071091234892916e-032 0.9659258262890674 0.258819045102524 -8.071091234892916e-032 0.9238795325112879 -0.3826834323650874 7.116248853379323e-032 0.9238795325112879 -0.3826834323650874 7.116248853379323e-032 0.9914448613738091 0.1305261922200617 -5.103294334503805e-032 0.9914448613738091 0.1305261922200617 -5.103294334503805e-032 0.965925826289068 -0.2588190451025222 4.114313919028921e-032 0.965925826289068 -0.2588190451025222 4.114313919028921e-032 0.9978589232386044 0.06540312923013249 -3.583408847236163e-032 0.9978589232386044 0.06540312923013249 -3.583408847236163e-032 0.9914448613738105 -0.1305261922200517 1.041981932820484e-032 0.9914448613738105 -0.1305261922200517 1.041981932820484e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 0.9978589232386037 -0.0654031292301418 -5.041778436296195e-033 0.9978589232386037 -0.0654031292301418 -5.041778436296195e-033 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 2 2 4 0 3 7 1 7 3 8 9 10 11 10 9 12 12 9 13 13 9 14 14 9 15 15 9 16 16 9 17 17 9 18 18 9 19 18 19 20 18 20 21 21 20 22 21 22 23 23 22 24 24 22 25 24 25 26 26 25 27 26 27 28 26 28 29 29 28 30 30 28 31 30 31 32 30 32 33 33 32 34 33 34 35 35 34 36 36 34 37 36 37 38 38 37 39 38 39 40 40 39 41 42 17 43 17 42 44 17 44 45 17 45 46 17 46 47 17 47 16 48 49 50 49 48 51 52 53 54 53 52 55 53 55 56 57 54 53 8 58 7 58 8 59 60 61 62 61 60 63 64 65 66 65 64 67 66 68 69 68 66 65 69 70 71 70 69 68 71 72 73 72 71 70 73 74 75 74 73 72 75 76 77 76 75 74 78 76 79 76 78 77 80 79 81 79 80 78 82 81 83 81 82 80 84 83 85 83 84 82 86 85 87 85 86 84 88 87 89 87 88 86 90 58 59 58 90 91 92 91 90 91 92 93 94 93 92 93 94 95 96 95 94 95 96 97 98 97 96 97 98 99 100 99 98 99 100 101 102 101 100 101 102 103 102 104 103 104 102 105 106 107 108 107 106 109 110 111 112 111 110 113 111 113 114 114 113 115 116 117 118 117 116 119 120 118 121 118 120 116 122 121 123 121 122 120 124 123 125 123 124 122 126 125 127 125 126 124 128 127 129 127 128 126 128 130 131 130 128 129 131 132 133 132 131 130 133 134 135 134 133 132 135 136 137 136 135 134 137 138 139 138 137 136 139 140 141 140 139 138 142 143 144 143 142 145 146 147 148 147 146 149 149 146 150 150 146 151 151 146 152 152 146 153 153 146 154 154 146 155 155 146 156 156 146 157 157 146 158 158 146 159 159 146 160 161 162 163 162 161 164 162 164 165 162 165 166 162 166 167 162 167 168 162 168 169 162 169 170 162 170 171 162 171 172 162 172 173 162 173 160 162 160 146 162 146 174 162 174 175 175 174 176 176 174 177 176 177 178 178 177 179 178 179 180 180 179 181 180 181 182 180 182 183 183 182 184 184 182 185 184 185 186 186 185 187 186 187 188 188 187 189 188 189 190 188 190 191 191 190 192 191 192 193 193 192 194 193 194 195 195 194 196 195 196 197 198 199 200 199 198 201 202 203 204 203 202 205 205 202 206 207 208 209 208 207 210 211 144 212 144 211 142 213 209 214 209 213 207 215 214 216 214 215 213 217 216 218 216 217 215 219 218 220 218 219 217 221 220 222 220 221 219 221 223 224 223 221 222 224 225 226 225 224 223 226 227 228 227 226 225 228 229 230 229 228 227 230 231 232 231 230 229 232 233 234 233 232 231 235 236 237 236 235 238 239 240 241 240 239 242 241 243 244 243 241 240 244 245 246 245 244 243 246 247 248 247 246 245 248 249 250 249 248 247 250 251 252 251 250 249 253 251 254 251 253 252 255 254 256 254 255 253 257 256 258 256 257 255 259 258 260 258 259 257 201 260 199 260 201 259 261 262 263 262 261 264 265 212 266 212 265 211 264 267 262 267 264 268 269 266 270 266 269 265 268 271 267 271 268 272 273 270 274 270 273 269 272 275 271 275 272 276 277 274 278 274 277 273 276 279 275 279 276 280 281 277 278 277 281 282 280 283 279 283 280 284 285 282 281 282 285 286 283 287 288 287 283 284 289 286 285 286 289 290 288 291 292 291 288 287 293 290 289 290 293 294 292 295 296 295 292 291 297 294 293 294 297 298 296 299 300 299 296 295 301 298 297 298 301 302 300 303 304 303 300 299 305 306 307 306 305 308 304 309 310 309 304 303

+
+
+
+ + + + 43.38400397036494 7.421059675912715 0.07874015748031579 43.37882183390003 3.127233759244795 0.07874015748031607 43.37882183390003 7.395007316609055 0.07874015748031579 43.38055912121086 3.10072787694619 0.07874015748031607 43.38574125767577 3.074675517642528 0.07874015748031607 43.39254228819227 7.446212749130662 0.07874015748031579 43.39427957550313 3.04952244442458 0.07874015748031607 43.40429069439674 7.470036160206389 0.07874015748031579 43.4060279817076 3.025699033348864 0.07874015748031607 43.4132129304469 7.39162008924713 0.07874015748031579 43.41904817049088 7.492122283971291 0.07874015748031579 43.41729449628541 7.412139506376729 0.07874015748031579 43.42438369328506 7.43302360729623 0.07874015748031579 43.43656221196721 7.512093220724323 0.07874015748031579 43.4341381633926 7.452803715947015 0.07874015748031579 43.44639100492 7.47114138918596 0.07874015748031579 43.45653314872024 7.529607262200647 0.07874015748031579 43.46093256835167 7.487722864339863 0.07874015748031579 43.47861927248514 7.544364738294798 0.07874015748031579 43.47751404350557 7.502264427771523 0.07874015748031579 43.49585171674453 7.514517269298941 0.07874015748031579 43.50244268356087 7.556113144499255 0.07874015748031579 43.51563182539531 7.524271739406478 0.07874015748031579 43.52759575677882 7.56465146232659 0.07874015748031579 43.53651592631481 7.531360936406135 0.07874015748031579 43.55364811608248 7.569833598791506 0.07874015748031579 43.55703534344437 7.535442502244626 0.07874015748031579 50.144256319116 7.569833598791506 0.07874015748031607 50.14313047118674 7.535442502244621 0.07874015748031607 50.16626363075097 7.53392627486092 0.07874015748031607 50.1707622014146 7.568096311480678 0.07874015748031607 50.18789439118228 7.529623649095314 0.07874015748031607 50.19681456071828 7.562914175015767 0.07874015748031607 50.20877849210176 7.522534452095655 0.07874015748031607 50.22196763393622 7.554375857188427 0.07874015748031607 50.22855860075256 7.512779981988107 0.07874015748031607 50.24579104501194 7.542627450983966 0.07874015748031607 50.24689627399151 7.500527140460703 0.07874015748031607 50.26787716877683 7.527869974889834 0.07874015748031607 50.26347774914542 7.485985577029031 0.07874015748031607 50.27801931257708 7.469404101875151 0.07874015748031607 50.28784810552988 7.510355933413502 0.07874015748031607 50.29027215410449 7.451066428636207 0.07874015748031607 50.3053621470062 7.490384996660477 0.07874015748031607 50.30002662421204 7.431286319985366 0.07874015748031607 50.30711582121172 7.410402219065904 0.07874015748031607 50.32011962310036 7.468298872895575 0.07874015748031607 50.31141844697731 7.388771458634578 0.07874015748031607 50.31293467436102 7.365638299070358 0.07874015748031607 50.31293467436102 3.128359607174147 0.07874015748031607 50.32011962310035 3.025699033348873 0.07874015748031607 50.33186802930481 3.049522444424608 0.07874015748031607 50.3318680293048 7.44447546181984 0.07874015748031607 50.34040634713218 7.419322388601879 0.07874015748031607 50.34040634713214 3.074675517642548 0.07874015748031607 50.34558848359704 3.100727876946217 0.07874015748031607 50.34558848359706 7.393270029298235 0.07874015748031607 50.3473257709079 3.127233759244805 0.07874015748031607 50.3473257709079 7.366764146999632 0.07874015748031607 43.4132129304469 3.128359607174164 0.07874015748031607 43.42078545780171 3.003612909583954 0.07874015748031607 43.41472915783061 3.105226447609857 0.07874015748031607 43.41903178359623 3.083595687178518 0.07874015748031607 43.4261209805959 3.062711586259032 0.07874015748031607 43.43829949927805 2.98364197283092 0.07874015748031607 43.43587545070344 3.042931477608274 0.07874015748031607 43.44812829223088 3.024593804369232 0.07874015748031607 43.45827043603106 2.96612793135459 0.07874015748031607 43.46266985566252 3.008012329215369 0.07874015748031607 43.480356559796 2.951370455260453 0.07874015748031607 43.47925133081637 2.993470765783733 0.07874015748031607 43.49758900405537 2.981217924256313 0.07874015748031607 43.5041799708717 2.939622049055988 0.07874015748031607 43.51736911270614 2.971463454148768 0.07874015748031607 43.52933304408965 2.931083731228659 0.07874015748031607 43.53825321362565 2.964374257149114 0.07874015748031607 43.55538540339332 2.925901594763743 0.07874015748031607 43.55988397405696 2.960071631383501 0.07874015748031607 43.58189128569192 2.924164307452924 0.07874015748031607 43.58301713362136 2.958555403999797 0.07874015748031607 50.14425631911599 2.924164307452924 0.07874015748031607 50.14313047118665 2.958555403999804 0.07874015748031607 50.166263630751 2.960071631383512 0.07874015748031607 50.17076220141464 2.925901594763754 0.07874015748031607 50.1878943911823 2.96437425714911 0.07874015748031607 50.19681456071832 2.931083731228657 0.07874015748031607 50.20877849210176 2.971463454148789 0.07874015748031607 50.22196763393622 2.939622049056019 0.07874015748031607 50.22855860075259 2.981217924256331 0.07874015748031607 50.24579104501196 2.951370455260466 0.07874015748031607 50.24689627399157 2.993470765783735 0.07874015748031607 50.26787716877688 2.966127931354595 0.07874015748031607 50.26347774914544 3.008012329215407 0.07874015748031607 50.27801931257705 3.024593804369262 0.07874015748031607 50.28784810552991 2.98364197283095 0.07874015748031607 50.2902721541045 3.042931477608267 0.07874015748031607 50.3053621470062 3.003612909583975 0.07874015748031607 50.30002662421204 3.062711586259064 0.07874015748031607 50.30711582121167 3.083595687178512 0.07874015748031607 50.31141844697729 3.105226447609863 0.07874015748031607 50.144256319116 7.569833598791506 1.090510587941475e-015 43.55364811608248 7.569833598791506 0.07874015748031579 43.55364811608248 7.569833598791506 8.326672684688674e-016 50.144256319116 7.569833598791506 0.07874015748031607 50.1707622014146 7.568096311480678 0.07874015748031607 50.144256319116 7.569833598791506 1.090510587941475e-015 50.1707622014146 7.568096311480678 1.090510587941475e-015 50.144256319116 7.569833598791506 0.07874015748031607 50.19681456071828 7.562914175015767 0.07874015748031607 50.19681456071828 7.562914175015767 1.090510587941475e-015 50.22196763393622 7.554375857188427 0.07874015748031607 50.22196763393622 7.554375857188427 1.090510587941475e-015 50.24579104501194 7.542627450983966 0.07874015748031607 50.24579104501194 7.542627450983966 1.090510587941475e-015 50.26787716877683 7.527869974889834 0.07874015748031607 50.26787716877683 7.527869974889834 1.090510587941475e-015 50.28784810552988 7.510355933413502 0.07874015748031607 50.28784810552988 7.510355933413502 1.090510587941475e-015 50.3053621470062 7.490384996660477 1.090510587941475e-015 50.3053621470062 7.490384996660477 0.07874015748031607 50.32011962310036 7.468298872895575 1.118266163557104e-015 50.32011962310036 7.468298872895575 0.07874015748031607 50.3318680293048 7.44447546181984 1.118266163557104e-015 50.3318680293048 7.44447546181984 0.07874015748031607 50.34040634713218 7.419322388601879 1.118266163557104e-015 50.34040634713218 7.419322388601879 0.07874015748031607 50.34558848359706 7.393270029298235 1.118266163557104e-015 50.34558848359706 7.393270029298235 0.07874015748031607 50.3473257709079 7.366764146999632 1.118266163557104e-015 50.3473257709079 7.366764146999632 0.07874015748031607 50.3473257709079 7.366764146999632 0.07874015748031607 50.3473257709079 3.127233759244805 1.103017739216966e-015 50.3473257709079 3.127233759244805 0.07874015748031607 50.3473257709079 7.366764146999632 1.118266163557104e-015 50.3473257709079 3.127233759244805 0.07874015748031607 50.34558848359704 3.100727876946217 1.105899590885709e-015 50.34558848359704 3.100727876946217 0.07874015748031607 50.3473257709079 3.127233759244805 1.103017739216966e-015 50.34040634713214 3.074675517642548 1.108591182719098e-015 50.34040634713214 3.074675517642548 0.07874015748031607 50.33186802930481 3.049522444424608 1.111046460834616e-015 50.33186802930481 3.049522444424608 0.07874015748031607 50.32011962310035 3.025699033348873 1.113223414742969e-015 50.32011962310035 3.025699033348873 0.07874015748031607 50.3053621470062 3.003612909583975 1.115084796159225e-015 50.3053621470062 3.003612909583975 0.07874015748031607 50.28784810552991 2.98364197283095 1.116598756331273e-015 50.28784810552991 2.98364197283095 0.07874015748031607 50.26787716877688 2.966127931354595 1.11773939098083e-015 50.26787716877688 2.966127931354595 0.07874015748031607 50.24579104501196 2.951370455260466 1.11848718353279e-015 50.24579104501196 2.951370455260466 0.07874015748031607 50.22196763393622 2.939622049056019 1.118829339049262e-015 50.22196763393622 2.939622049056019 0.07874015748031607 50.19681456071832 2.931083731228657 0.07874015748031607 50.19681456071832 2.931083731228657 1.118760003154504e-015 50.17076220141464 2.925901594763754 0.07874015748031607 50.17076220141464 2.925901594763754 1.118280362204888e-015 50.14425631911599 2.924164307452924 0.07874015748031607 50.14425631911599 2.924164307452924 1.117398622990049e-015 43.58189128569192 2.924164307452924 0.07874015748031607 50.14425631911599 2.924164307452924 1.117398622990049e-015 43.58189128569192 2.924164307452924 1.109233975091996e-015 50.14425631911599 2.924164307452924 0.07874015748031607 43.55538540339332 2.925901594763743 1.109463768595622e-015 43.58189128569192 2.924164307452924 0.07874015748031607 43.58189128569192 2.924164307452924 1.109233975091996e-015 43.55538540339332 2.925901594763743 0.07874015748031607 43.52933304408965 2.931083731228659 0.07874015748031607 43.52933304408965 2.931083731228659 1.109462778393509e-015 43.5041799708717 2.939622049055988 0.07874015748031607 43.5041799708717 2.939622049055988 1.109231021428294e-015 43.480356559796 2.951370455260453 0.07874015748031607 43.480356559796 2.951370455260453 1.108772463125903e-015 43.45827043603106 2.96612793135459 0.07874015748031607 43.45827043603106 2.96612793135459 1.108094949546031e-015 43.43829949927805 2.98364197283092 0.07874015748031607 43.43829949927805 2.98364197283092 1.107210073133866e-015 43.42078545780171 3.003612909583954 1.106132974370159e-015 43.42078545780171 3.003612909583954 0.07874015748031607 43.4060279817076 3.025699033348864 1.104882082713383e-015 43.4060279817076 3.025699033348864 0.07874015748031607 43.39427957550313 3.04952244442458 1.1034788012666e-015 43.39427957550313 3.04952244442458 0.07874015748031607 43.38574125767577 3.074675517642528 1.101947140564425e-015 43.38574125767577 3.074675517642528 0.07874015748031607 43.38055912121086 3.10072787694619 1.100313307746131e-015 43.38055912121086 3.10072787694619 0.07874015748031607 43.37882183390003 3.127233759244795 1.098605258144222e-015 43.37882183390003 3.127233759244795 0.07874015748031607 43.37882183390003 7.395007316609055 8.326672684688674e-016 43.37882183390003 3.127233759244795 0.07874015748031607 43.37882183390003 3.127233759244795 1.098605258144222e-015 43.37882183390003 7.395007316609055 0.07874015748031579 43.38400397036494 7.421059675912715 8.326672684688674e-016 43.37882183390003 7.395007316609055 0.07874015748031579 43.37882183390003 7.395007316609055 8.326672684688674e-016 43.38400397036494 7.421059675912715 0.07874015748031579 43.39254228819227 7.446212749130662 8.326672684688674e-016 43.39254228819227 7.446212749130662 0.07874015748031579 43.40429069439674 7.470036160206389 8.326672684688674e-016 43.40429069439674 7.470036160206389 0.07874015748031579 43.41904817049088 7.492122283971291 8.326672684688674e-016 43.41904817049088 7.492122283971291 0.07874015748031579 43.43656221196721 7.512093220724323 8.326672684688674e-016 43.43656221196721 7.512093220724323 0.07874015748031579 43.45653314872024 7.529607262200647 0.07874015748031579 43.45653314872024 7.529607262200647 8.326672684688674e-016 43.47861927248514 7.544364738294798 0.07874015748031579 43.47861927248514 7.544364738294798 8.326672684688674e-016 43.50244268356087 7.556113144499255 0.07874015748031579 43.50244268356087 7.556113144499255 8.326672684688674e-016 43.52759575677882 7.56465146232659 0.07874015748031579 43.52759575677882 7.56465146232659 8.326672684688674e-016 43.55364811608248 7.569833598791506 0.07874015748031579 43.55364811608248 7.569833598791506 8.326672684688674e-016 + + + + + + + + + + 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.1305261922199813 -0.9914448613738196 2.780848713701879e-017 -0.06540312923029371 -0.9978589232385937 2.927210314289912e-017 -0.1305261922199813 -0.9914448613738196 2.780848713701879e-017 -0.06540312923029371 -0.9978589232385937 2.927210314289912e-017 -0.2588190451024848 -0.965925826289078 2.453079183995709e-017 -0.2588190451024848 -0.965925826289078 2.453079183995709e-017 -0.382683432365306 -0.9238795325111974 2.083336789328604e-017 -0.382683432365306 -0.9238795325111974 2.083336789328604e-017 -0.5000000000000238 -0.8660254037844249 1.677947924587394e-017 -0.5000000000000238 -0.8660254037844249 1.677947924587394e-017 -0.6087614290084881 -0.7933533402914136 1.24384890564192e-017 -0.6087614290084881 -0.7933533402914136 1.24384890564192e-017 -0.7071067811864248 -0.7071067811866704 7.884672870593892e-018 -0.7071067811864248 -0.7071067811866704 7.884672870593892e-018 -0.7933533402911389 -0.6087614290088461 3.195947745911922e-018 -0.7933533402911389 -0.6087614290088461 3.195947745911922e-018 -0.8660254037845401 -0.4999999999998245 -1.547460930799239e-018 -0.8660254037845401 -0.4999999999998245 -1.54746093079924e-018 -0.923879532511154 -0.3826834323654104 -6.264392121914531e-018 -0.923879532511154 -0.3826834323654104 -6.264392121914531e-018 -0.9659258262890302 -0.2588190451026624 -1.087413782703309e-017 -0.9659258262890302 -0.2588190451026624 -1.087413782703309e-017 -0.9914448613738499 -0.1305261922197522 -1.529782401905813e-017 -0.9914448613738499 -0.1305261922197522 -1.529782401905813e-017 -0.9978589232385668 -0.06540312923070414 -1.741608127676964e-017 -0.9978589232385668 -0.06540312923070414 -1.741608127676964e-017 -1 6.99914032825858e-035 -1.945976020073421e-017 -1 6.99914032825858e-035 -1.945976020073421e-017 -1 6.99914032825858e-035 -1.945976020073421e-017 -1 6.99914032825858e-035 -1.945976020073421e-017 -0.997858923238512 0.06540312923154029 -2.142010944402561e-017 -0.9914448613737562 0.1305261922204639 -2.328873449013242e-017 -0.9914448613737562 0.1305261922204639 -2.328873449013242e-017 -0.997858923238512 0.06540312923154029 -2.142010944402561e-017 -0.9659258262891491 0.2588190451022194 -2.671923207551683e-017 -0.9659258262891491 0.2588190451022194 -2.671923207551682e-017 -0.9238795325113062 0.3826834323650429 -2.969255619214416e-017 -0.9238795325113063 0.3826834323650429 -2.969255619214416e-017 -0.8660254037844481 0.4999999999999837 -3.215783243998618e-017 -0.8660254037844481 0.4999999999999837 -3.215783243998619e-017 -0.7933533402914976 0.6087614290083786 -3.40728792589387e-017 -0.7933533402914977 0.6087614290083787 -3.407287925893871e-017 -0.7071067811871351 0.7071067811859598 -3.540492966698771e-017 -0.707106781187135 0.70710678118596 -3.54049296669877e-017 -0.6087614290086183 0.7933533402913137 -3.61311919123416e-017 -0.6087614290086183 0.7933533402913137 -3.61311919123416e-017 -0.4999999999992923 0.8660254037848472 -3.623923944660778e-017 -0.4999999999992923 0.8660254037848472 -3.623923944660778e-017 -0.3826834323655242 0.9238795325111068 -3.5727223546533e-017 -0.3826834323655242 0.9238795325111068 -3.5727223546533e-017 -0.2588190451029578 0.9659258262889511 -3.460390494611714e-017 -0.2588190451029578 0.9659258262889511 -3.460390494611714e-017 -0.1305261922198164 0.9914448613738415 -3.28885039380478e-017 -0.1305261922198164 0.9914448613738415 -3.28885039380478e-017 -0.06540312923028883 0.997858923238594 -3.181756156529731e-017 -0.06540312923028883 0.997858923238594 -3.181756156529731e-017 6.767212850674795e-017 1 -3.061037150919461e-017 6.767212850674795e-017 1 -3.061037150919461e-017 6.767212850674795e-017 1 -3.061037150919461e-017 6.767212850674795e-017 1 -3.061037150919461e-017 0.1305261922199325 0.991444861373826 -2.780848713701993e-017 0.06540312922994411 0.9978589232386167 -2.927210314290662e-017 0.06540312922994411 0.9978589232386167 -2.927210314290662e-017 0.1305261922199325 0.991444861373826 -2.780848713701993e-017 0.2588190451023891 0.9659258262891036 -2.453079183995972e-017 0.2588190451023891 0.9659258262891036 -2.453079183995972e-017 0.3826834323652765 0.9238795325112095 -2.083336789328698e-017 0.3826834323652765 0.9238795325112095 -2.083336789328698e-017 0.4999999999998008 0.8660254037845535 -1.677947924588222e-017 0.4999999999998008 0.8660254037845535 -1.677947924588222e-017 0.6087614290084553 0.7933533402914387 -1.24384890564206e-017 0.6087614290084553 0.7933533402914387 -1.24384890564206e-017 0.7071067811866578 0.7071067811864372 -7.884672870582221e-018 0.7071067811866578 0.7071067811864372 -7.884672870582221e-018 0.7933533402916122 0.6087614290082292 -3.195947745883828e-018 0.7933533402916122 0.6087614290082292 -3.195947745883828e-018 0.8660254037845893 0.499999999999739 1.547460930802815e-018 0.8660254037845894 0.4999999999997391 1.547460930802815e-018 0.9238795325109803 0.3826834323658298 6.26439212189831e-018 0.9238795325109803 0.3826834323658298 6.26439212189831e-018 0.9659258262889898 0.2588190451028135 1.087413782702768e-017 0.9659258262889898 0.2588190451028135 1.087413782702768e-017 0.9914448613738075 0.1305261922200738 1.529782401904747e-017 0.9914448613738075 0.1305261922200738 1.529782401904747e-017 0.9978589232385846 0.06540312923043123 1.741608127677834e-017 0.9978589232385846 0.06540312923043123 1.741608127677834e-017 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 0.9659258262890843 -0.2588190451024608 1.416353255915568e-017 0.9807852804032251 -0.1950903220161558 -0 0.9807852804032251 -0.1950903220161558 -0 0.9659258262890843 -0.2588190451024608 1.416353255915568e-017 0.9238795325112965 -0.3826834323650666 2.96925561921447e-017 0.9238795325112965 -0.3826834323650666 2.96925561921447e-017 0.8660254037844343 -0.5000000000000074 3.215783243998664e-017 0.8660254037844343 -0.5000000000000074 3.215783243998664e-017 0.7933533402912668 -0.6087614290086795 3.407287925894342e-017 0.7933533402912668 -0.6087614290086795 3.407287925894342e-017 0.7071067811865319 -0.707106781186563 3.540492966699442e-017 0.7071067811865319 -0.707106781186563 3.540492966699442e-017 0.6087614290087207 -0.7933533402912351 3.613119191234118e-017 0.6087614290087207 -0.7933533402912351 3.613119191234118e-017 0.4999999999999814 -0.8660254037844495 3.623923944660901e-017 0.4999999999999814 -0.8660254037844495 3.623923944660901e-017 0.382683432365068 -0.9238795325112956 3.572722354652991e-017 0.382683432365068 -0.9238795325112956 3.572722354652991e-017 0.2588190451025379 -0.9659258262890638 1.765831679721354e-017 0.2588190451025379 -0.9659258262890638 1.765831679721354e-017 0.1950903220161044 -0.9807852804032353 0 0.1950903220161044 -0.9807852804032353 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 12 10 13 12 13 14 14 13 15 15 13 16 15 16 17 17 16 18 17 18 19 19 18 20 20 18 21 20 21 22 22 21 23 22 23 24 24 23 25 24 25 26 26 25 27 26 27 28 28 27 29 29 27 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 40 38 41 40 41 42 42 41 43 42 43 44 44 43 45 45 43 46 45 46 47 47 46 48 48 46 49 49 46 50 50 46 51 51 46 52 51 52 53 51 53 54 54 53 55 55 53 56 55 56 57 57 56 58 8 59 60 59 8 9 60 59 61 60 61 62 60 62 63 60 63 64 64 63 65 64 65 66 64 66 67 67 66 68 67 68 69 69 68 70 69 70 71 69 71 72 72 71 73 72 73 74 74 73 75 74 75 76 76 75 77 76 77 78 78 77 79 78 79 80 80 79 81 80 81 82 80 82 83 83 82 84 83 84 85 85 84 86 85 86 87 87 86 88 87 88 89 89 88 90 89 90 91 91 90 92 91 92 93 91 93 94 94 93 95 94 95 96 96 95 97 96 97 98 96 98 50 50 98 99 50 99 49 100 101 102 101 100 103 104 105 106 105 104 107 108 106 109 106 108 104 110 109 111 109 110 108 112 111 113 111 112 110 114 113 115 113 114 112 116 115 117 115 116 114 116 118 119 118 116 117 119 120 121 120 119 118 121 122 123 122 121 120 123 124 125 124 123 122 125 126 127 126 125 124 127 128 129 128 127 126 130 131 132 131 130 133 134 135 136 135 134 137 136 138 139 138 136 135 139 140 141 140 139 138 141 142 143 142 141 140 143 144 145 144 143 142 145 146 147 146 145 144 148 147 146 147 148 149 150 149 148 149 150 151 152 151 150 151 152 153 154 152 155 152 154 153 156 155 157 155 156 154 158 157 159 157 158 156 160 161 162 161 160 163 164 165 166 165 164 167 168 164 169 164 168 167 170 169 171 169 170 168 172 171 173 171 172 170 174 173 175 173 174 172 176 175 177 175 176 174 178 176 177 176 178 179 180 179 178 179 180 181 182 181 180 181 182 183 184 183 182 183 184 185 186 185 184 185 186 187 188 187 186 187 188 189 190 191 192 191 190 193 194 195 196 195 194 197 198 197 194 197 198 199 200 199 198 199 200 201 202 201 200 201 202 203 204 203 202 203 204 205 206 204 207 204 206 205 208 207 209 207 208 206 210 209 211 209 210 208 212 211 213 211 212 210 214 213 215 213 214 212

+
+
+
+ + + + 43.41729449628541 7.412139506376729 -0.1968503937007866 43.4132129304469 3.128359607174164 -0.1968503937007863 43.4132129304469 7.39162008924713 -0.1968503937007866 43.41472915783061 3.105226447609857 -0.1968503937007863 43.41903178359623 3.083595687178518 -0.1968503937007863 43.42438369328506 7.43302360729623 -0.1968503937007866 43.4261209805959 3.062711586259032 -0.1968503937007863 43.4341381633926 7.452803715947015 -0.1968503937007866 43.43587545070344 3.042931477608274 -0.1968503937007863 43.44639100492 7.47114138918596 -0.1968503937007866 43.44812829223088 3.024593804369232 -0.1968503937007863 43.46093256835167 7.487722864339863 -0.1968503937007866 43.46266985566252 3.008012329215369 -0.1968503937007863 43.47751404350557 7.502264427771523 -0.1968503937007866 43.47925133081637 2.993470765783733 -0.1968503937007863 43.49585171674453 7.514517269298941 -0.1968503937007866 43.49758900405537 2.981217924256313 -0.1968503937007863 43.51563182539531 7.524271739406478 -0.1968503937007866 43.51736911270614 2.971463454148768 -0.1968503937007863 43.53651592631481 7.531360936406135 -0.1968503937007866 43.53825321362565 2.964374257149114 -0.1968503937007863 43.55703534344437 7.535442502244626 -0.1968503937007866 43.55988397405696 2.960071631383501 -0.1968503937007863 50.14313047118674 7.535442502244621 -0.1968503937007863 43.58301713362136 2.958555403999797 -0.1968503937007863 50.14313047118665 2.958555403999804 -0.1968503937007863 50.166263630751 2.960071631383512 -0.1968503937007863 50.16626363075097 7.53392627486092 -0.1968503937007863 50.18789439118228 7.529623649095314 -0.1968503937007863 50.1878943911823 2.96437425714911 -0.1968503937007863 50.20877849210176 7.522534452095655 -0.1968503937007863 50.20877849210176 2.971463454148789 -0.1968503937007863 50.22855860075256 7.512779981988107 -0.1968503937007863 50.22855860075259 2.981217924256331 -0.1968503937007863 50.24689627399151 7.500527140460703 -0.1968503937007863 50.24689627399157 2.993470765783735 -0.1968503937007863 50.26347774914542 7.485985577029031 -0.1968503937007863 50.26347774914544 3.008012329215407 -0.1968503937007863 50.27801931257708 7.469404101875151 -0.1968503937007863 50.27801931257705 3.024593804369262 -0.1968503937007863 50.2902721541045 3.042931477608267 -0.1968503937007863 50.29027215410449 7.451066428636207 -0.1968503937007863 50.30002662421204 7.431286319985366 -0.1968503937007863 50.30002662421204 3.062711586259064 -0.1968503937007863 50.30711582121172 7.410402219065904 -0.1968503937007863 50.30711582121167 3.083595687178512 -0.1968503937007863 50.31141844697729 3.105226447609863 -0.1968503937007863 50.31141844697731 7.388771458634578 -0.1968503937007863 50.31293467436102 3.128359607174147 -0.1968503937007863 50.31293467436102 7.365638299070358 -0.1968503937007863 + + + + + + + + + + 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 25 23 26 26 23 27 26 27 28 26 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 40 38 41 40 41 42 40 42 43 43 42 44 43 44 45 45 44 46 46 44 47 46 47 48 48 47 49

+
+
+
+ + + + 50.31141844697731 7.388771458634578 -0.1968503937007863 50.31293467436102 7.365638299070358 0.07874015748031607 50.31293467436102 7.365638299070358 -0.1968503937007863 50.31141844697731 7.388771458634578 0.07874015748031607 50.31293467436102 7.365638299070358 -0.1968503937007863 50.31293467436102 3.128359607174147 0.07874015748031607 50.31293467436102 3.128359607174147 -0.1968503937007863 50.31293467436102 7.365638299070358 0.07874015748031607 50.30711582121172 7.410402219065904 -0.1968503937007863 50.30711582121172 7.410402219065904 0.07874015748031607 50.31293467436102 3.128359607174147 -0.1968503937007863 50.31141844697729 3.105226447609863 0.07874015748031607 50.31141844697729 3.105226447609863 -0.1968503937007863 50.31293467436102 3.128359607174147 0.07874015748031607 50.30002662421204 7.431286319985366 -0.1968503937007863 50.30002662421204 7.431286319985366 0.07874015748031607 50.30711582121167 3.083595687178512 0.07874015748031607 50.30711582121167 3.083595687178512 -0.1968503937007863 50.29027215410449 7.451066428636207 -0.1968503937007863 50.29027215410449 7.451066428636207 0.07874015748031607 50.30002662421204 3.062711586259064 0.07874015748031607 50.30002662421204 3.062711586259064 -0.1968503937007863 50.27801931257708 7.469404101875151 -0.1968503937007863 50.27801931257708 7.469404101875151 0.07874015748031607 50.2902721541045 3.042931477608267 0.07874015748031607 50.2902721541045 3.042931477608267 -0.1968503937007863 50.26347774914542 7.485985577029031 -0.1968503937007863 50.26347774914542 7.485985577029031 0.07874015748031607 50.27801931257705 3.024593804369262 0.07874015748031607 50.27801931257705 3.024593804369262 -0.1968503937007863 50.24689627399151 7.500527140460703 0.07874015748031607 50.24689627399151 7.500527140460703 -0.1968503937007863 50.26347774914544 3.008012329215407 0.07874015748031607 50.26347774914544 3.008012329215407 -0.1968503937007863 50.22855860075256 7.512779981988107 0.07874015748031607 50.22855860075256 7.512779981988107 -0.1968503937007863 50.24689627399157 2.993470765783735 -0.1968503937007863 50.24689627399157 2.993470765783735 0.07874015748031607 50.20877849210176 7.522534452095655 0.07874015748031607 50.20877849210176 7.522534452095655 -0.1968503937007863 50.22855860075259 2.981217924256331 -0.1968503937007863 50.22855860075259 2.981217924256331 0.07874015748031607 50.18789439118228 7.529623649095314 0.07874015748031607 50.18789439118228 7.529623649095314 -0.1968503937007863 50.20877849210176 2.971463454148789 -0.1968503937007863 50.20877849210176 2.971463454148789 0.07874015748031607 50.16626363075097 7.53392627486092 0.07874015748031607 50.16626363075097 7.53392627486092 -0.1968503937007863 50.1878943911823 2.96437425714911 -0.1968503937007863 50.1878943911823 2.96437425714911 0.07874015748031607 50.14313047118674 7.535442502244621 0.07874015748031607 50.14313047118674 7.535442502244621 -0.1968503937007863 50.166263630751 2.960071631383512 -0.1968503937007863 50.166263630751 2.960071631383512 0.07874015748031607 43.55703534344437 7.535442502244626 0.07874015748031579 50.14313047118674 7.535442502244621 -0.1968503937007863 43.55703534344437 7.535442502244626 -0.1968503937007866 50.14313047118674 7.535442502244621 0.07874015748031607 50.14313047118665 2.958555403999804 -0.1968503937007863 50.14313047118665 2.958555403999804 0.07874015748031607 43.53651592631481 7.531360936406135 0.07874015748031579 43.55703534344437 7.535442502244626 -0.1968503937007866 43.53651592631481 7.531360936406135 -0.1968503937007866 43.55703534344437 7.535442502244626 0.07874015748031579 50.14313047118665 2.958555403999804 0.07874015748031607 43.58301713362136 2.958555403999797 -0.1968503937007863 50.14313047118665 2.958555403999804 -0.1968503937007863 43.58301713362136 2.958555403999797 0.07874015748031607 43.51563182539531 7.524271739406478 0.07874015748031579 43.51563182539531 7.524271739406478 -0.1968503937007866 43.58301713362136 2.958555403999797 0.07874015748031607 43.55988397405696 2.960071631383501 -0.1968503937007863 43.58301713362136 2.958555403999797 -0.1968503937007863 43.55988397405696 2.960071631383501 0.07874015748031607 43.49585171674453 7.514517269298941 0.07874015748031579 43.49585171674453 7.514517269298941 -0.1968503937007866 43.53825321362565 2.964374257149114 -0.1968503937007863 43.53825321362565 2.964374257149114 0.07874015748031607 43.47751404350557 7.502264427771523 0.07874015748031579 43.47751404350557 7.502264427771523 -0.1968503937007866 43.51736911270614 2.971463454148768 -0.1968503937007863 43.51736911270614 2.971463454148768 0.07874015748031607 43.46093256835167 7.487722864339863 0.07874015748031579 43.46093256835167 7.487722864339863 -0.1968503937007866 43.49758900405537 2.981217924256313 -0.1968503937007863 43.49758900405537 2.981217924256313 0.07874015748031607 43.44639100492 7.47114138918596 -0.1968503937007866 43.44639100492 7.47114138918596 0.07874015748031579 43.47925133081637 2.993470765783733 -0.1968503937007863 43.47925133081637 2.993470765783733 0.07874015748031607 43.4341381633926 7.452803715947015 -0.1968503937007866 43.4341381633926 7.452803715947015 0.07874015748031579 43.46266985566252 3.008012329215369 -0.1968503937007863 43.46266985566252 3.008012329215369 0.07874015748031607 43.42438369328506 7.43302360729623 -0.1968503937007866 43.42438369328506 7.43302360729623 0.07874015748031579 43.44812829223088 3.024593804369232 0.07874015748031607 43.44812829223088 3.024593804369232 -0.1968503937007863 43.41729449628541 7.412139506376729 -0.1968503937007866 43.41729449628541 7.412139506376729 0.07874015748031579 43.43587545070344 3.042931477608274 0.07874015748031607 43.43587545070344 3.042931477608274 -0.1968503937007863 43.4132129304469 7.39162008924713 -0.1968503937007866 43.4132129304469 7.39162008924713 0.07874015748031579 43.4261209805959 3.062711586259032 0.07874015748031607 43.4261209805959 3.062711586259032 -0.1968503937007863 43.4132129304469 7.39162008924713 0.07874015748031579 43.4132129304469 3.128359607174164 -0.1968503937007863 43.4132129304469 3.128359607174164 0.07874015748031607 43.4132129304469 7.39162008924713 -0.1968503937007866 43.41903178359623 3.083595687178518 0.07874015748031607 43.41903178359623 3.083595687178518 -0.1968503937007863 43.4132129304469 3.128359607174164 0.07874015748031607 43.41472915783061 3.105226447609857 -0.1968503937007863 43.41472915783061 3.105226447609857 0.07874015748031607 43.4132129304469 3.128359607174164 -0.1968503937007863 + + + + + + + + + + 0.9914448613738508 0.1305261922197449 1.55246491908785e-017 0.9978589232385636 0.06540312923075399 1.759089571435054e-017 0.9978589232385636 0.06540312923075399 1.759089571435054e-017 0.9914448613738508 0.1305261922197449 1.55246491908785e-017 1 0 1.95818153218181e-017 1 0 1.95818153218181e-017 1 0 1.95818153218181e-017 1 0 1.95818153218181e-017 0.9659258262890319 0.2588190451026562 1.12018520080126e-017 0.9659258262890319 0.2588190451026562 1.12018520080126e-017 0.9978589232385156 -0.06540312923148701 2.148888258984201e-017 0.9914448613737552 -0.1305261922204699 2.330393116351783e-017 0.9914448613737552 -0.1305261922204699 2.330393116351783e-017 0.9978589232385156 -0.06540312923148701 2.148888258984201e-017 0.9238795325111466 0.3826834323654281 6.687388031556006e-018 0.9238795325111466 0.3826834323654281 6.687388031556006e-018 0.9659258262891463 -0.2588190451022301 2.66273102819097e-017 0.9659258262891463 -0.2588190451022301 2.66273102819097e-017 0.8660254037845753 0.4999999999997635 2.058500991815655e-018 0.8660254037845753 0.4999999999997635 2.058500991815655e-018 0.9238795325113448 -0.3826834323649499 2.949508873891546e-017 0.9238795325113448 -0.3826834323649499 2.949508873891546e-017 0.7933533402911205 0.60876142900887 -2.605607570657765e-018 0.7933533402911205 0.60876142900887 -2.605607570657765e-018 0.866025403784477 -0.4999999999999336 3.18581980500125e-017 0.866025403784477 -0.4999999999999336 3.18581980500125e-017 0.7071067811863823 0.707106781186713 -7.225133465171492e-018 0.7071067811863823 0.707106781186713 -7.225133465171492e-018 0.7933533402914658 -0.6087614290084201 3.367620475970759e-017 0.7933533402914658 -0.6087614290084201 3.367620475970759e-017 0.608761429008534 0.7933533402913785 -1.172103532290912e-017 0.608761429008534 0.7933533402913785 -1.172103532290912e-017 0.7071067811870996 -0.7071067811859956 3.491800226915812e-017 0.7071067811870996 -0.7071067811859956 3.491800226915812e-017 0.5000000000000008 0.8660254037844382 -1.601638701657927e-017 0.5000000000000008 0.8660254037844382 -1.601638701657927e-017 0.6087614290086063 -0.793353340291323 3.556234307869128e-017 0.6087614290086063 -0.793353340291323 3.556234307869128e-017 0.3826834323652957 0.9238795325112014 -2.003769388781576e-017 0.3826834323652957 0.9238795325112014 -2.003769388781576e-017 0.4999999999993188 -0.8660254037848321 3.559820233839578e-017 0.4999999999993188 -0.8660254037848321 3.559820233839578e-017 0.2588190451024929 0.9659258262890758 -2.371615026114718e-017 0.2588190451024929 0.9659258262890758 -2.371615026114718e-017 0.3826834323655604 -0.9238795325110919 3.502496648641106e-017 0.3826834323655604 -0.9238795325110919 3.502496648641106e-017 0.1305261922199533 0.9914448613738235 -2.698881672814551e-017 0.1305261922199533 0.9914448613738235 -2.698881672814551e-017 0.2588190451029568 -0.9659258262889514 3.385244374708522e-017 0.2588190451029568 -0.9659258262889514 3.385244374708522e-017 0.06540312923029935 0.9978589232385934 -2.845518162128279e-017 0.06540312923029935 0.9978589232385934 -2.845518162128279e-017 0.1305261922198004 -0.9914448613738436 3.210069630956563e-017 0.1305261922198004 -0.9914448613738436 3.210069630956563e-017 8.091396214053001e-016 1 -2.979969705820778e-017 8.091396214053001e-016 1 -2.979969705820778e-017 8.091396214053001e-016 1 -2.979969705820778e-017 8.091396214053001e-016 1 -2.979969705820778e-017 0.06540312923028356 -0.9978589232385944 3.101660561739596e-017 0.06540312923028356 -0.9978589232385944 3.101660561739596e-017 -0.2588190451025151 0.9659258262890699 -3.385244374708009e-017 -0.1950903220161407 0.980785280403228 -3.304732689195967e-017 -0.2588190451025151 0.9659258262890699 -3.385244374708009e-017 -0.1950903220161407 0.980785280403228 -3.304732689195967e-017 1.015430344717675e-015 -1 2.979969705820782e-017 1.015430344717675e-015 -1 2.979969705820782e-017 1.015430344717675e-015 -1 2.979969705820782e-017 1.015430344717675e-015 -1 2.979969705820782e-017 -0.3826834323650787 0.9238795325112913 -3.502496648640756e-017 -0.3826834323650787 0.9238795325112913 -3.502496648640756e-017 -0.06540312922995281 -0.9978589232386161 2.845518162129025e-017 -0.1305261922199476 -0.9914448613738243 2.698881672814565e-017 -0.06540312922995281 -0.9978589232386161 2.845518162129025e-017 -0.1305261922199476 -0.9914448613738243 2.698881672814565e-017 -0.5000000000000135 0.8660254037844308 -3.559820233839744e-017 -0.5000000000000135 0.8660254037844308 -3.559820233839744e-017 -0.2588190451023761 -0.9659258262891071 2.371615026115041e-017 -0.2588190451023761 -0.9659258262891071 2.371615026115041e-017 -0.6087614290087011 0.7933533402912499 -3.556234307869096e-017 -0.6087614290087011 0.7933533402912499 -3.556234307869096e-017 -0.3826834323652421 -0.9238795325112237 2.003769388781746e-017 -0.3826834323652421 -0.9238795325112237 2.003769388781746e-017 -0.7071067811865318 0.7071067811865633 -3.491800226916392e-017 -0.7071067811865318 0.7071067811865633 -3.491800226916392e-017 -0.4999999999998345 -0.8660254037845342 1.60163870165854e-017 -0.4999999999998345 -0.8660254037845342 1.60163870165854e-017 -0.7933533402912634 0.6087614290086838 -3.367620475971148e-017 -0.7933533402912634 0.6087614290086838 -3.367620475971148e-017 -0.6087614290084824 -0.7933533402914178 1.172103532291131e-017 -0.6087614290084824 -0.7933533402914178 1.172103532291131e-017 -0.8660254037844439 0.4999999999999909 -3.185819805001356e-017 -0.8660254037844439 0.4999999999999909 -3.185819805001356e-017 -0.7071067811866187 -0.7071067811864763 7.225133465159809e-018 -0.7071067811866187 -0.7071067811864763 7.225133465159809e-018 -0.9238795325113307 0.382683432364984 -2.94950887389162e-017 -0.9238795325113307 0.382683432364984 -2.94950887389162e-017 -0.7933533402916141 -0.6087614290082266 2.605607570628924e-018 -0.7933533402916141 -0.6087614290082266 2.605607570628924e-018 -0.9659258262890716 0.2588190451025084 -2.662731028191653e-017 -0.9659258262890716 0.2588190451025084 -2.662731028191653e-017 -0.8660254037845783 -0.4999999999997583 -2.058500991815872e-018 -0.8660254037845783 -0.4999999999997583 -2.058500991815872e-018 -0.9807852804031837 0.1950903220163633 -2.501918872628857e-017 -0.9807852804031837 0.1950903220163633 -2.501918872628857e-017 -0.9238795325109536 -0.382683432365894 -6.687388031538348e-018 -0.9238795325109536 -0.382683432365894 -6.687388031538348e-018 -1 -1.274856552025012e-033 -1.95818153218181e-017 -1 -1.274856552025012e-033 -1.95818153218181e-017 -1 -1.274856552025012e-033 -1.95818153218181e-017 -1 -1.274856552025012e-033 -1.95818153218181e-017 -0.9659258262890079 -0.2588190451027462 -1.120185200800945e-017 -0.9659258262890079 -0.2588190451027462 -1.120185200800945e-017 -0.9978589232385796 -0.0654031292305077 -1.759089571435819e-017 -0.9914448613738123 -0.130526192220036 -1.552464919086907e-017 -0.9914448613738123 -0.130526192220036 -1.552464919086907e-017 -0.9978589232385796 -0.0654031292305077 -1.759089571435819e-017 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 3 0 3 8 9 10 11 12 11 10 13 14 9 8 9 14 15 12 16 17 16 12 11 18 15 14 15 18 19 17 20 21 20 17 16 22 19 18 19 22 23 21 24 25 24 21 20 26 23 22 23 26 27 25 28 29 28 25 24 30 26 31 26 30 27 29 32 33 32 29 28 34 31 35 31 34 30 32 36 33 36 32 37 38 35 39 35 38 34 37 40 36 40 37 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 42 45 48 44 48 45 49 50 47 51 47 50 46 49 52 48 52 49 53 54 55 56 55 54 57 53 58 52 58 53 59 60 61 62 61 60 63 64 65 66 65 64 67 68 62 69 62 68 60 70 71 72 71 70 73 74 69 75 69 74 68 73 76 71 76 73 77 78 75 79 75 78 74 77 80 76 80 77 81 82 79 83 79 82 78 81 84 80 84 81 85 82 86 87 86 82 83 85 88 84 88 85 89 87 90 91 90 87 86 89 92 88 92 89 93 91 94 95 94 91 90 96 92 93 92 96 97 95 98 99 98 95 94 100 97 96 97 100 101 99 102 103 102 99 98 104 101 100 101 104 105 106 107 108 107 106 109 110 105 104 105 110 111 112 113 114 113 112 115 114 111 110 111 114 113

+
+
+
+ + + + 0 0 2.165354330708662 0.1184986753859656 0.2465682045726894 2.165354330708662 0 7.874015748031497 2.165354330708662 0.119594327961949 0.2298517765885317 2.165354330708662 0.1228625387705518 0.2134213713218521 2.165354330708662 0.1282473878187189 0.1975581175621329 2.165354330708662 0.1356567388462747 0.1825334399793274 2.165354330708662 0.1449638158028776 0.1686044149725052 2.165354330708662 0.1560093720213896 0.1560093720213882 2.165354330708662 0.1686044149725068 0.1449638158028763 2.165354330708662 0.1825334399793289 0.1356567388462739 2.165354330708662 0.197558117562134 0.1282473878187185 2.165354330708662 0.2134213713218537 0.1228625387705514 2.165354330708662 0.2298517765885331 0.1195943279619491 2.165354330708662 0.2465682045726913 0.1184986753859656 2.165354330708662 51.18110236220473 0 2.165354330708662 30.0860261920037 0.1184986753859688 2.165354330708662 30.09803909744245 0.1212016043046447 2.165354330708662 30.70679771243117 0.1184986753859656 2.165354330708662 30.10330938016302 0.1244567554178949 2.165354330708662 30.10773656538716 0.1287894127682915 2.165354330708662 30.11110468898 0.1339882234195986 2.165354330708662 30.11324944927784 0.1397995822959414 2.165354330708662 30.11406622194742 0.145940003383379 2.165354330708662 51.06260368681876 0.1184986753859656 2.165354330708662 51.06260368681876 7.755517072645532 2.165354330708662 0.1184986753859656 7.755517072645532 2.165354330708662 51.18110236220473 7.874015748031497 2.165354330708662 0.1184986753859656 2.43930318405221 2.165354330708662 0.1184986753859656 2.804370064010866 2.165354330708662 0.1195943279619488 2.456019612036368 2.165354330708662 0.1228625387705512 2.472450017303047 2.165354330708662 0.1282473878187184 2.488313271062767 2.165354330708662 0.1356567388462739 2.503337948645572 2.165354330708662 0.1449638158028762 2.517266973652394 2.165354330708662 0.1560093720213884 2.529862016603511 2.165354330708662 0.1686044149725052 2.540907572822023 2.165354330708662 0.1825334399793273 2.550214649778626 2.165354330708662 0.1975581175621327 2.557624000806182 2.165354330708662 0.213421371321852 2.563008849854349 2.165354330708662 0.2298517765885315 2.566277060662952 2.165354330708662 0.2465682045726894 2.567372713238935 2.165354330708662 25.61991398185795 2.804370064010866 2.165354330708662 25.56118838034679 2.567372713238936 2.165354330708662 30.09912146437194 0.1713469183847506 2.165354330708662 30.10848249331568 0.1633477397435226 2.165354330708662 30.11162315591949 0.1580084394959358 2.165354330708662 30.11351516370367 0.1521099485644012 2.165354330708662 0 7.874015748031497 2.165354330708662 0 0 0 0 0 2.165354330708662 0 7.874015748031497 0 51.18110236220473 0 2.165354330708662 0 0 0 51.18110236220473 0 0 0 0 2.165354330708662 51.18110236220473 0 0 51.18110236220473 0.7153153851313135 0.604869657207319 51.18110236220473 0 2.165354330708662 51.18110236220473 7.874015748031497 0 51.18110236220473 7.182685229005588 0.604869657207319 51.18110236220473 0.7153153851313138 1.166727690057971 51.18110236220473 7.874015748031497 2.165354330708662 51.18110236220473 7.182685229005587 1.166727690057971 0 7.874015748031497 2.165354330708662 51.18110236220473 7.874015748031497 0 0 7.874015748031497 0 51.18110236220473 7.874015748031497 2.165354330708662 0 7.874015748031497 0 0.346039204183232 7.209720004747907 1.256040330056125e-015 0 0 0 0.3542852686363268 7.272355082731298 1.256040330056125e-015 0.3784615063303982 7.330721683659481 1.256040330056125e-015 0.4169203466197171 7.380842220134569 1.256040330056125e-015 0.4670408830948051 7.419301060423888 1.256040330056125e-015 0.525407484022988 7.443477298117959 1.256040330056125e-015 0.5880425620063782 7.451723362571054 1.256040330056125e-015 51.18110236220473 7.874015748031497 0 0.3460392041832313 0.5491086559751139 1.110223024625157e-015 0.3460392041832319 2.136762732649793 1.110223024625157e-015 0.6506776399897686 7.443477298117959 1.256040330056125e-015 0.7090442409179513 7.419301060423888 1.256040330056125e-015 0.7591647773930393 7.380842220134569 1.256040330056125e-015 0.7976236176823582 7.330721683659481 1.256040330056125e-015 0.8217998553764297 7.272355082731298 1.256040330056125e-015 0.8300459198295244 7.209720004747907 1.256040330056125e-015 43.55364811608248 7.569833598791506 8.326672684688674e-016 0.8300459198295258 3.173087089051805 5.549316253182147e-016 43.52759575677882 7.56465146232659 8.326672684688674e-016 25.50480608586854 2.339832184441669 1.110223024625157e-015 43.50244268356087 7.556113144499255 8.326672684688674e-016 43.47861927248514 7.544364738294798 8.326672684688674e-016 43.45653314872024 7.529607262200647 8.326672684688674e-016 43.43656221196721 7.512093220724323 8.326672684688674e-016 43.41904817049088 7.492122283971291 8.326672684688674e-016 43.40429069439674 7.470036160206389 8.326672684688674e-016 43.39254228819227 7.446212749130662 8.326672684688674e-016 43.38400397036494 7.421059675912715 8.326672684688674e-016 43.37882183390003 7.395007316609055 8.326672684688674e-016 50.144256319116 7.569833598791506 1.090510587941475e-015 50.1707622014146 7.568096311480678 1.090510587941475e-015 50.19681456071828 7.562914175015767 1.090510587941475e-015 50.22196763393622 7.554375857188427 1.090510587941475e-015 50.24579104501194 7.542627450983966 1.090510587941475e-015 50.26787716877683 7.527869974889834 1.090510587941475e-015 50.28784810552988 7.510355933413502 1.090510587941475e-015 50.3053621470062 7.490384996660477 1.090510587941475e-015 50.32011962310036 7.468298872895575 1.118266163557104e-015 50.3318680293048 7.44447546181984 1.118266163557104e-015 50.34040634713218 7.419322388601879 1.118266163557104e-015 50.34558848359706 7.393270029298235 1.118266163557104e-015 50.3473257709079 7.366764146999632 1.118266163557104e-015 50.3473257709079 3.127233759244805 1.103017739216966e-015 50.3473257709079 2.136762732649773 1.110223024625157e-015 50.3473257709079 0.5508869384357039 1.110223024625157e-015 0.5491086559751147 0.346039204183232 1.110223024625157e-015 51.18110236220473 0 0 0.5226027736765072 0.3477764914940557 1.110223024625157e-015 0.4965504143728469 0.3529586279589738 1.110223024625157e-015 0.4713973411549005 0.3614969457863064 1.110223024625157e-015 0.4475739300791731 0.3732453519907652 1.110223024625157e-015 0.4254878063142707 0.3880028280849154 1.110223024625157e-015 0.4055168695612388 0.4055168695612393 1.110223024625157e-015 0.3880028280849136 0.4254878063142707 1.110223024625157e-015 0.3732453519907644 0.4475739300791728 1.110223024625157e-015 0.361496945786306 0.4713973411548998 1.110223024625157e-015 0.352958627958972 0.4965504143728474 1.110223024625157e-015 0.3477764914940549 0.5226027736765067 1.110223024625157e-015 28.98669970978262 0.3460392041831966 1.110223024625157e-015 29.00270410638306 0.3478174866438403 1.110223024625157e-015 50.14425631911605 0.3478174866438403 1.110223024625157e-015 50.17076220141466 0.3495547739546495 1.110223024625157e-015 50.19681456071831 0.35473691041958 1.110223024625157e-015 50.22196763393623 0.3632752282469015 1.110223024625157e-015 50.24579104501201 0.3750236344513794 1.110223024625157e-015 50.26787716877686 0.3897811105455421 1.110223024625157e-015 50.28784810552991 0.407295152021843 1.110223024625157e-015 50.30536214700624 0.4272660887748815 1.110223024625157e-015 50.32011962310041 0.4493522125397739 1.110223024625157e-015 50.33186802930485 0.4731756236154915 1.110223024625157e-015 50.3404063471322 0.498328696833425 1.110223024625157e-015 50.34558848359711 0.5243810561371139 1.110223024625157e-015 43.55538540339332 2.925901594763743 1.109463768595622e-015 50.14425631911605 2.339832184441669 1.110223024625157e-015 43.52933304408965 2.931083731228659 1.109462778393509e-015 43.5041799708717 2.939622049055988 1.109231021428294e-015 43.480356559796 2.951370455260453 1.108772463125903e-015 43.45827043603106 2.96612793135459 1.108094949546031e-015 43.43829949927805 2.98364197283092 1.107210073133866e-015 43.42078545780171 3.003612909583954 1.106132974370159e-015 43.4060279817076 3.025699033348864 1.104882082713383e-015 43.39427957550313 3.04952244442458 1.1034788012666e-015 43.38574125767577 3.074675517642528 1.101947140564425e-015 43.38055912121086 3.10072787694619 1.100313307746131e-015 43.37882183390003 3.127233759244795 1.098605258144222e-015 43.58189128569192 2.924164307452924 1.109233975091996e-015 50.14425631911599 2.924164307452924 1.117398622990049e-015 50.17076220141464 2.925901594763754 1.118280362204888e-015 50.17076220141468 2.338094897130827 1.110223024625157e-015 50.19681456071832 2.931083731228657 1.118760003154504e-015 50.19681456071832 2.332912760665919 1.110223024625157e-015 50.22196763393622 2.939622049056019 1.118829339049262e-015 50.22196763393626 2.324374442838587 1.110223024625157e-015 50.24579104501196 2.951370455260466 1.11848718353279e-015 50.24579104501199 2.312626036634129 1.110223024625157e-015 50.26787716877688 2.966127931354595 1.11773939098083e-015 50.26787716877689 2.297868560539985 1.110223024625157e-015 50.28784810552991 2.98364197283095 1.116598756331273e-015 50.28784810552993 2.280354519063654 1.110223024625157e-015 50.3053621470062 3.003612909583975 1.115084796159225e-015 50.30536214700626 2.260383582310614 1.110223024625157e-015 50.32011962310035 3.025699033348873 1.113223414742969e-015 50.32011962310039 2.238297458545719 1.110223024625157e-015 50.33186802930481 3.049522444424608 1.111046460834616e-015 50.33186802930484 2.214474047469999 1.110223024625157e-015 50.34040634713214 3.074675517642548 1.108591182719098e-015 50.34040634713219 2.189320974252057 1.110223024625157e-015 50.34558848359704 3.100727876946217 1.105899590885709e-015 50.34558848359709 2.163268614948385 1.110223024625157e-015 0.3460392041832334 3.173087089051805 5.549316253182147e-016 0.3477764914940558 2.163268614948401 1.110223024625157e-015 0.354285268636328 3.110452011068415 5.549316253182147e-016 0.3529586279589722 2.189320974252061 1.110223024625157e-015 0.3614969457863068 2.214474047470008 1.110223024625157e-015 0.3784615063303993 3.052085410140232 5.549316253182147e-016 0.3732453519907648 2.238297458545735 1.110223024625157e-015 0.3880028280849145 2.260383582310638 1.110223024625157e-015 0.4169203466197183 3.001964873665144 5.549316253182147e-016 0.4055168695612396 2.280354519063669 1.110223024625157e-015 0.4254878063142705 2.297868560539994 1.110223024625157e-015 0.4670408830948064 2.963506033375825 5.549316253182147e-016 0.4475739300791732 2.312626036634144 1.110223024625157e-015 0.4713973411548998 2.324374442838602 1.110223024625157e-015 0.525407484022989 2.939329795681753 5.549316253182147e-016 0.4965504143728471 2.332912760665936 1.110223024625157e-015 0.5226027736765068 2.338094897130853 1.110223024625157e-015 0.5491086559751146 2.339832184441677 1.110223024625157e-015 0.5880425620063796 2.931083731228659 5.549316253182147e-016 0.6506776399897698 2.939329795681753 5.549316253182147e-016 0.7090442409179527 2.963506033375825 5.549316253182147e-016 0.7591647773930408 3.001964873665144 5.549316253182147e-016 0.7976236176823597 3.052085410140232 5.549316253182147e-016 0.8217998553764312 3.110452011068415 5.549316253182147e-016 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 7 0 8 8 0 9 9 0 10 10 0 11 11 0 12 12 0 13 13 0 14 14 0 15 14 15 16 16 15 17 17 15 18 17 18 19 19 18 20 20 18 21 21 18 22 22 18 23 18 15 24 24 15 25 2 26 27 26 2 1 26 1 28 26 28 29 27 26 25 27 25 15 30 29 28 29 30 31 29 31 32 29 32 33 29 33 34 29 34 35 29 35 36 29 36 37 29 37 38 29 38 39 29 39 40 29 40 41 29 41 42 42 41 43 42 43 44 42 44 18 18 44 45 18 45 46 18 46 47 18 47 23 48 49 50 49 48 51 52 53 54 53 52 55 56 57 58 57 56 59 57 59 60 58 61 62 61 58 57 62 61 63 62 63 60 62 60 59 64 65 66 65 64 67 68 69 70 69 68 71 71 68 72 72 68 73 73 68 74 74 68 75 75 68 76 76 68 77 70 69 78 78 69 79 76 77 80 80 77 81 81 77 82 82 77 83 83 77 84 84 77 85 85 77 86 85 86 87 87 86 88 87 88 89 89 88 90 89 90 91 89 91 92 89 92 93 89 93 94 89 94 95 89 95 96 89 96 97 89 97 98 86 77 99 99 77 100 100 77 101 101 77 102 102 77 103 103 77 104 104 77 105 105 77 106 106 77 107 107 77 108 108 77 109 109 77 110 110 77 111 111 77 112 112 77 113 113 77 114 70 115 116 115 70 117 117 70 118 118 70 119 119 70 120 120 70 121 121 70 122 122 70 123 123 70 124 124 70 125 125 70 126 126 70 127 127 70 78 116 115 128 116 128 129 116 129 130 116 130 131 116 131 132 116 132 133 116 133 134 116 134 135 116 135 136 116 136 137 116 137 138 116 138 139 116 139 140 116 140 141 116 141 114 116 114 77 89 142 143 142 89 144 144 89 145 145 89 146 146 89 147 147 89 148 148 89 149 149 89 150 150 89 151 151 89 152 152 89 153 153 89 154 154 89 98 143 142 155 143 155 156 143 156 157 143 157 158 158 157 159 158 159 160 160 159 161 160 161 162 162 161 163 162 163 164 164 163 165 164 165 166 166 165 167 166 167 168 168 167 169 168 169 170 170 169 171 170 171 172 172 171 173 172 173 174 174 173 175 174 175 176 176 175 177 176 177 178 178 177 112 178 112 113 179 180 79 180 179 181 180 181 182 182 181 183 183 181 184 183 184 185 185 184 186 186 184 187 186 187 188 188 187 189 189 187 190 189 190 191 191 190 192 192 190 193 192 193 194 194 193 195 195 193 196 196 193 197 196 197 89 89 197 198 89 198 199 89 199 200 89 200 201 89 201 202 89 202 87 179 79 69

+
+
+
+ + + + 0.6470483783510791 7.225530565586209 -0.2337572933700505 0.590059644476194 7.209179529129053 -0.2420033578231444 0.5880425620063792 7.209720004747907 -0.2417307881423126 0.6506776399897661 7.197963586567997 -0.2337572933700505 0.5880425620063748 7.193858266663263 -0.2420033578231444 0.7039126674564964 7.240767305930175 -0.209581055675979 0.7090442409179504 7.201789135705585 -0.209581055675979 0.5880425620063785 3.188948827136449 -0.2420033578231452 0.6506776399897699 3.184843507231715 -0.2337572933700513 0.7090442409179538 3.181017958094126 -0.2095810556759798 0.6919288565104798 7.269698784844964 -0.209581055675979 0.6409457296562897 7.240263662831568 -0.2337572933700505 0.752743139522957 7.253851391486414 -0.1711222153866596 0.7591647773930373 7.205074209224319 -0.1711222153866596 0.5900596444761919 3.173627564670658 -0.2420033578231452 0.6470483783510829 3.157276528213503 -0.2337572933700513 0.5880425620063792 3.173087089051805 -0.2417307881423139 0.5254074840229897 7.197963586567996 -0.2337572933700505 0.5880425620063785 3.188948827136449 -0.2420033578231452 0.5254074840229894 3.184843507231715 -0.2337572933700513 0.5880425620063748 7.193858266663263 -0.2420033578231444 0.7039126674564999 3.142039787869536 -0.2095810556759798 0.7591647773930392 3.177732884575392 -0.1711222153866604 0.6728653662742286 7.294542809015757 -0.209581055675979 0.631237817512777 7.252915260254307 -0.2337572933700505 0.7357090600596556 7.294975297149257 -0.1711222153866596 0.7976236176823564 7.20759493479274 -0.121001678911572 0.7902120785753058 7.263891163446743 -0.121001678911572 0.5290367456616765 3.157276528213502 -0.2337572933700513 0.5860254795365677 3.173627564670658 -0.2420033578231452 0.5880425620063792 3.173087089051805 -0.2417307881423139 0.4670408830948055 3.181017958094127 -0.2095810556759798 0.4670408830948049 7.201789135705584 -0.209581055675979 0.5880425620063792 7.209720004747907 -0.2417307881423126 0.5860254795365617 7.209179529129052 -0.2420033578231444 0.5290367456616767 7.225530565586209 -0.2337572933700505 0.6919288565104833 3.113108308954748 -0.2095810556759798 0.6409457296562934 3.142543430968143 -0.2337572933700513 0.7527431395229589 3.128955702313299 -0.1711222153866604 0.7976236176823581 3.175212159006971 -0.1210016789115728 0.6480213421034335 7.313606299252011 -0.209581055675979 0.6185862200900375 7.26262317239782 -0.2337572933700505 0.7086117527844502 7.33028919552598 -0.1711222153866596 0.7693027917821517 7.314370647202324 -0.121001678911572 0.8217998553764282 7.209179529129053 -0.06263507798338919 0.8137660383374742 7.270202427943571 -0.06263507798338919 0.4721724565562595 3.142039787869536 -0.2095810556759798 0.4169203466197199 3.177732884575392 -0.1711222153866604 0.4169203466197176 7.205074209224319 -0.1711222153866596 0.4721724565562592 7.240767305930176 -0.209581055675979 0.6728653662742311 3.088264284783953 -0.2095810556759798 0.6312378175127806 3.129891833545404 -0.2337572933700513 0.7357090600596575 3.087831796650455 -0.1711222153866604 0.7902120785753077 3.118915930352971 -0.1210016789115728 0.8217998553764306 3.173627564670658 -0.06263507798339002 0.6190898631886472 7.325590110198027 -0.209581055675979 0.6038531228446804 7.268725821092609 -0.2337572933700505 0.6732978544077269 7.357386502801186 -0.1711222153866596 0.7360409198764716 7.357718362618001 -0.121001678911572 0.790420694377345 7.326563073950379 -0.06263507798338919 0.8300459198295244 7.209720004747907 1.256040330056125e-015 0.8217998553764297 7.272355082731298 1.256040330056125e-015 0.4841562675022759 3.113108308954748 -0.2095810556759798 0.5351393943564656 3.142543430968144 -0.2337572933700513 0.4233419844898002 3.128955702313298 -0.1711222153866604 0.3784615063303992 7.207594934792739 -0.121001678911572 0.3784615063304005 3.175212159006972 -0.1210016789115728 0.4233419844897982 7.253851391486415 -0.1711222153866596 0.4841562675022756 7.269698784844964 -0.209581055675979 0.5351393943564662 7.240263662831568 -0.2337572933700505 0.6480213421034365 3.069200794547701 -0.2095810556759798 0.6185862200900409 3.120183921401891 -0.2337572933700513 0.7086117527844518 3.052517898273733 -0.1711222153866604 0.7693027917821532 3.068436446597388 -0.1210016789115728 0.8137660383374767 3.112604665856142 -0.06263507798339002 0.8300459198295258 3.173087089051805 5.549316253182147e-016 0.5880425620063783 7.329677564942021 -0.209581055675979 0.5880425620063781 7.270807320915229 -0.2337572933700505 0.6321739487448852 7.374420582264487 -0.1711222153866596 0.6926932044607942 7.390980234523682 -0.121001678911572 0.753283615141812 7.37496105788334 -0.06263507798338919 0.7976236176823582 7.330721683659481 1.256040330056125e-015 0.5032197577385278 3.088264284783953 -0.2095810556759798 0.5448473064999787 3.129891833545404 -0.2337572933700513 0.4403760639531013 3.087831796650455 -0.1711222153866604 0.3858730454374511 3.11891593035297 -0.1210016789115728 0.3542852686363288 7.209179529129052 -0.06263507798338919 0.3542852686363288 3.173627564670658 -0.06263507798339002 0.3858730454374499 7.263891163446743 -0.121001678911572 0.4403760639530996 7.294975297149258 -0.1711222153866596 0.5032197577385272 7.294542809015758 -0.209581055675979 0.5448473064999786 7.252915260254307 -0.2337572933700505 0.6190898631886485 3.057216983601685 -0.2095810556759798 0.6038531228446821 3.114081272707101 -0.2337572933700513 0.6732978544077288 3.025420590998527 -0.1711222153866604 0.7360409198764732 3.025088731181712 -0.1210016789115728 0.7904206943773474 3.056244019849333 -0.06263507798339002 0.8217998553764312 3.110452011068415 5.549316253182147e-016 0.5722320011680755 7.268725821092609 -0.2337572933700505 0.5569952608241093 7.325590110198028 -0.209581055675979 0.5880425620063781 7.380230589550607 -0.1711222153866596 0.6422137207052132 7.411889521316836 -0.121001678911572 0.7048856312088494 7.412098137118874 -0.06263507798338919 0.7591647773930393 7.380842220134569 1.256040330056125e-015 0.5280637819093225 3.069200794547701 -0.2095810556759798 0.5574989039227182 3.120183921401891 -0.2337572933700513 0.467473371228307 3.052517898273733 -0.1711222153866604 0.4067823322306052 3.068436446597388 -0.1210016789115728 0.3623190856752828 3.112604665856142 -0.06263507798339002 0.346039204183232 7.209720004747907 1.256040330056125e-015 0.3460392041832334 3.173087089051805 5.549316253182147e-016 0.3623190856752829 7.27020242794357 -0.06263507798338919 0.406782332230604 7.314370647202324 -0.121001678911572 0.4674733712283056 7.330289195525981 -0.1711222153866596 0.5280637819093215 7.313606299252011 -0.209581055675979 0.5574989039227177 7.26262317239782 -0.2337572933700505 0.5880425620063796 3.111999772884482 -0.2337572933700513 0.5880425620063795 3.05312952885769 -0.2095810556759798 0.6321739487448865 3.008386511535226 -0.1711222153866604 0.692693204460796 2.991826859276031 -0.1210016789115728 0.7532836151418134 3.007846035916371 -0.06263507798339002 0.7976236176823597 3.052085410140232 5.549316253182147e-016 0.5439111752678711 7.374420582264487 -0.1711222153866596 0.5880425620063783 7.41902128965674 -0.121001678911572 0.6485249852020408 7.435443481079003 -0.06263507798338919 0.7090442409179513 7.419301060423888 1.256040330056125e-015 0.5569952608241104 3.057216983601685 -0.2095810556759798 0.5722320011680768 3.114081272707101 -0.2337572933700513 0.5027872696050301 3.025420590998527 -0.1711222153866604 0.4400442041362855 3.025088731181712 -0.1210016789115728 0.3856644296354121 3.056244019849333 -0.06263507798339002 0.354285268636328 3.110452011068415 5.549316253182147e-016 0.3542852686363268 7.272355082731298 1.256040330056125e-015 0.385664429635412 7.326563073950378 -0.06263507798338919 0.4400442041362841 7.357718362618001 -0.121001678911572 0.5027872696050288 7.357386502801186 -0.1711222153866596 0.5880425620063796 3.002576504249106 -0.1711222153866604 0.6422137207052142 2.970917572482877 -0.1210016789115728 0.7048856312088514 2.970708956680837 -0.06263507798339002 0.7591647773930408 3.001964873665144 5.549316253182147e-016 0.5338714033075435 7.411889521316836 -0.121001678911572 0.5880425620063782 7.443406143152849 -0.06263507798338919 0.6506776399897686 7.443477298117959 1.256040330056125e-015 0.5439111752678723 3.008386511535226 -0.1711222153866604 0.4833919195519629 2.991826859276031 -0.1210016789115728 0.4228015088709456 3.007846035916372 -0.06263507798339002 0.3784615063303993 3.052085410140232 5.549316253182147e-016 0.3784615063303982 7.330721683659481 1.256040330056125e-015 0.4228015088709459 7.374961057883341 -0.06263507798338919 0.4833919195519614 7.390980234523682 -0.121001678911572 0.5880425620063796 2.963785804142972 -0.1210016789115728 0.6485249852020425 2.947363612720708 -0.06263507798339002 0.7090442409179527 2.963506033375825 5.549316253182147e-016 0.5275601388107158 7.435443481079003 -0.06263507798338919 0.5880425620063782 7.451723362571054 1.256040330056125e-015 0.5338714033075445 2.970917572482877 -0.1210016789115728 0.4711994928039077 2.970708956680837 -0.06263507798339002 0.4169203466197183 3.001964873665144 5.549316253182147e-016 0.4169203466197171 7.380842220134569 1.256040330056125e-015 0.4711994928039074 7.412098137118874 -0.06263507798338919 0.5880425620063796 2.939400950646861 -0.06263507798339002 0.6506776399897698 2.939329795681753 5.549316253182147e-016 0.525407484022988 7.443477298117959 1.256040330056125e-015 0.5275601388107163 2.947363612720708 -0.06263507798339002 0.4670408830948064 2.963506033375825 5.549316253182147e-016 0.4670408830948051 7.419301060423888 1.256040330056125e-015 0.5880425620063796 2.931083731228659 5.549316253182147e-016 0.525407484022989 2.939329795681753 5.549316253182147e-016 + + + + + + + + + + 0.2980469559637359 0.07455112482027697 -0.9516355089154578 0.129409522551249 0.01703708685546249 -0.9914448613738121 0.129409522551249 0.01703708685546249 -0.9914448613738121 0.2628076869683011 0.01722532585836539 -0.9646944634543336 0.1300206976615136 0.007784386697886409 -0.9914807217003017 0.487749567089461 0.1306921026102494 -0.8631453725296541 0.5022026247522211 0.03291609906116259 -0.8641232864091647 0.1300206976615145 -0.007784386697885729 -0.9914807217003016 0.2628076869683022 -0.01722532585836404 -0.9646944634543334 0.5022026247522249 -0.03291609906116251 -0.8641232864091626 0.4373042984129965 0.2524777544065234 -0.8631453725296547 0.3289889588963535 0.189941863979224 -0.925034244356603 0.6853829641193342 0.1836478117418226 -0.704644359757059 0.7075597098930087 0.04637591353493291 -0.7051301522271769 0.1294095225512511 -0.01703708685545926 -0.9914448613738118 0.2980469559637368 -0.07455112482027632 -0.9516355089154577 0.1294095225512511 -0.01703708685545926 -0.9914448613738118 -0.2628076869683021 0.01722532585836941 -0.9646944634543332 -0.1300206976615204 -0.007784386697888517 -0.9914807217003007 -0.2628076869683041 -0.01722532585836543 -0.9646944634543327 -0.1300206976615192 0.007784386697895602 -0.9914807217003009 0.4877495670894685 -0.1306921026102526 -0.8631453725296494 0.7075597098930115 -0.04637591353493292 -0.7051301522271741 0.3570574644792096 0.3570574644792076 -0.8631453725296554 0.2686183601018445 0.2686183601018439 -0.9250342443566033 0.6144975546712324 0.3547803286058008 -0.7046443597570592 0.8650724726254417 0.05669984544201129 -0.4984322869082181 0.8373882722621905 0.2243775113039457 -0.4984331589077831 -0.2980469559637379 -0.07455112482027781 -0.951635508915457 -0.1294095225512526 -0.01703708685546406 -0.9914448613738116 -0.1294095225512526 -0.01703708685546406 -0.9914448613738116 -0.5022026247522233 -0.03291609906116239 -0.8641232864091635 -0.5022026247522188 0.03291609906116216 -0.8641232864091661 -0.1294095225512497 0.0170370868554802 -0.9914448613738116 -0.1294095225512497 0.0170370868554802 -0.9914448613738116 -0.2980469559637334 0.07455112482028185 -0.9516355089154581 0.4373042984130039 -0.2524777544065295 -0.8631453725296491 0.328988958896355 -0.1899418639792258 -0.9250342443566021 0.6853829641193395 -0.1836478117418259 -0.7046443597570529 0.8650724726254407 -0.05669984544201203 -0.4984322869082199 0.2524777544065273 0.4373042984129941 -0.8631453725296547 0.1899418639792284 0.3289889588963501 -0.9250342443566034 0.5017351523775112 0.5017351523775082 -0.7046443597570581 0.7507817855914651 0.4334640660138978 -0.4984331589077823 0.9640854128455839 0.06318949640755746 -0.2579658975177134 0.9331937336188315 0.2500485073049494 -0.2581185764897834 -0.4877495670894679 -0.1306921026102518 -0.8631453725296499 -0.7075597098930101 -0.0463759135349334 -0.7051301522271755 -0.7075597098930094 0.04637591353493286 -0.7051301522271762 -0.4877495670894583 0.1306921026102496 -0.8631453725296557 0.3570574644792161 -0.3570574644792161 -0.8631453725296491 0.2686183601018471 -0.2686183601018466 -0.9250342443566016 0.6144975546712366 -0.3547803286058063 -0.7046443597570529 0.8373882722621882 -0.2243775113039466 -0.4984331589077866 0.9640854128455844 -0.06318949640755783 -0.2579658975177117 0.1306921026102529 0.4877495670894601 -0.8631453725296541 0.09832114372019474 0.3669395038220337 -0.9250342443566036 0.3547803286058044 0.6144975546712306 -0.704644359757059 0.6130107609582474 0.6130107609582429 -0.4984331589077781 0.8366786123435727 0.4830566220617641 -0.2581185764897827 0.9892858993695024 0.06484122355896389 -0.1308014718420683 0.9575208326510117 0.2565669338448132 -0.1316330638433379 -0.4373042984130037 -0.2524777544065278 -0.8631453725296495 -0.328988958896355 -0.1899418639792242 -0.9250342443566025 -0.6853829641193372 -0.1836478117418237 -0.7046443597570558 -0.865072472625448 0.05669984544201193 -0.4984322869082074 -0.8650724726254442 -0.05669984544201199 -0.4984322869082139 -0.6853829641193361 0.183647811741824 -0.7046443597570568 -0.437304298412995 0.2524777544065209 -0.8631453725296562 -0.3289889588963511 0.1899418639792211 -0.9250342443566044 0.2524777544065291 -0.4373042984130041 -0.8631453725296492 0.1899418639792263 -0.3289889588963555 -0.925034244356602 0.5017351523775135 -0.5017351523775139 -0.7046443597570524 0.750781785591461 -0.4334640660138997 -0.4984331589077866 0.9331937336188322 -0.2500485073049493 -0.2581185764897809 0.9892858993695034 -0.06484122355896398 -0.1308014718420602 1.481513538301518e-016 0.5049555088130492 -0.8631453725296537 2.833507410527474e-016 0.3798837279584447 -0.9250342443566046 0.1836478117418217 0.6853829641193345 -0.7046443597570591 0.4334640660139029 0.750781785591468 -0.4984331589077735 0.6831452263138832 0.6831452263138795 -0.2581185764897826 0.858489692644828 0.4956492551450112 -0.1316330638433374 -0.3570574644792166 -0.3570574644792146 -0.8631453725296495 -0.268618360101847 -0.2686183601018445 -0.9250342443566024 -0.6144975546712351 -0.3547803286058037 -0.7046443597570554 -0.8373882722621904 -0.2243775113039465 -0.4984331589077828 -0.9640854128455852 0.06318949640755761 -0.2579658975177083 -0.9640854128455854 -0.06318949640755829 -0.2579658975177077 -0.8373882722621981 0.224377511303948 -0.4984331589077693 -0.6144975546712339 0.3547803286058023 -0.7046443597570569 -0.3570574644792097 0.3570574644792061 -0.8631453725296557 -0.2686183601018436 0.2686183601018393 -0.925034244356605 0.130692102610254 -0.4877495670894688 -0.863145372529649 0.09832114372019156 -0.366939503822038 -0.9250342443566022 0.3547803286058064 -0.6144975546712369 -0.7046443597570525 0.6130107609582429 -0.6130107609582404 -0.4984331589077868 0.8366786123435729 -0.4830566220617641 -0.2581185764897814 0.9575208326510132 -0.2565669338448152 -0.1316330638433239 -0.09832114372019248 0.36693950382203 -0.9250342443566053 -0.130692102610252 0.4877495670894637 -0.8631453725296522 -5.095627254616813e-016 0.7095606572116078 -0.7046443597570559 0.2243775113039432 0.8373882722621986 -0.4984331589077709 0.483056622061765 0.8366786123435727 -0.2581185764897807 0.700953898806195 0.7009538988061976 -0.131633063843343 -0.2524777544065299 -0.4373042984130035 -0.8631453725296492 -0.1899418639792275 -0.328988958896354 -0.9250342443566021 -0.5017351523775135 -0.501735152377512 -0.7046443597570538 -0.7507817855914644 -0.4334640660138989 -0.4984331589077828 -0.9331937336188333 -0.2500485073049486 -0.2581185764897773 -0.9892858993695011 0.06484122355896468 -0.1308014718420768 -0.9892858993695026 -0.06484122355896477 -0.1308014718420667 -0.933193733618833 0.2500485073049489 -0.2581185764897785 -0.7507817855914721 0.4334640660139016 -0.4984331589077685 -0.5017351523775114 0.5017351523775091 -0.704644359757057 -0.2524777544065261 0.4373042984129952 -0.8631453725296545 -0.1899418639792249 0.3289889588963474 -0.925034244356605 3.120964684059297e-016 -0.3798837279584495 -0.9250342443566026 1.795773985820026e-016 -0.5049555088130583 -0.8631453725296484 0.1836478117418268 -0.6853829641193396 -0.7046443597570526 0.4334640660138992 -0.7507817855914616 -0.4984331589077862 0.6831452263138821 -0.683145226313881 -0.2581185764897815 0.8584896926448293 -0.4956492551450125 -0.131633063843325 -0.1836478117418218 0.6853829641193373 -0.7046443597570562 2.263559080302044e-017 0.8669281320278058 -0.4984331589077708 0.2500485073049453 0.9331937336188334 -0.2581185764897797 0.4956492551450089 0.8584896926448271 -0.1316330638433521 -0.1306921026102543 -0.4877495670894691 -0.8631453725296487 -0.09832114372019264 -0.3669395038220378 -0.9250342443566023 -0.3547803286058062 -0.6144975546712361 -0.7046443597570532 -0.6130107609582444 -0.613010760958241 -0.4984331589077842 -0.8366786123435742 -0.4830566220617643 -0.258118576489777 -0.9575208326510127 -0.2565669338448145 -0.1316330638433294 -0.9575208326510101 0.2565669338448134 -0.13163306384335 -0.8366786123435743 0.4830566220617635 -0.2581185764897779 -0.6130107609582521 0.6130107609582458 -0.498433158907769 -0.3547803286058033 0.6144975546712327 -0.7046443597570575 3.878087999088903e-016 -0.709560657211612 -0.7046443597570518 0.2243775113039441 -0.8373882722621896 -0.4984331589077854 0.4830566220617642 -0.836678612343573 -0.2581185764897814 0.7009538988061992 -0.7009538988061969 -0.1316330638433243 -0.2243775113039425 0.8373882722621988 -0.4984331589077705 -2.360456869878988e-016 0.966113244123529 -0.2581185764897802 0.2565669338448097 0.9575208326510102 -0.1316330638433568 -0.183647811741826 -0.6853829641193396 -0.7046443597570528 -0.4334640660139001 -0.7507817855914613 -0.4984331589077861 -0.6831452263138839 -0.6831452263138803 -0.2581185764897786 -0.8584896926448302 -0.4956492551450097 -0.1316330638433289 -0.8584896926448269 0.4956492551450096 -0.1316330638433514 -0.6831452263138826 0.6831452263138816 -0.2581185764897779 -0.433464066013904 0.7507817855914699 -0.4984331589077699 4.255491070967834e-016 -0.8669281320277973 -0.4984331589077857 0.2500485073049474 -0.9331937336188324 -0.2581185764897815 0.4956492551450117 -0.8584896926448298 -0.1316330638433249 -0.2500485073049449 0.9331937336188337 -0.2581185764897794 -1.801666719264949e-016 0.9912985102900188 -0.1316330638433572 -0.224377511303944 -0.8373882722621894 -0.4984331589077857 -0.4830566220617651 -0.8366786123435727 -0.2581185764897803 -0.7009538988061994 -0.7009538988061961 -0.1316330638433261 -0.7009538988061964 0.7009538988061944 -0.1316330638433522 -0.4830566220617643 0.8366786123435739 -0.2581185764897782 4.630126937070359e-016 -0.9661132441235285 -0.258118576489782 0.2565669338448128 -0.9575208326510133 -0.1316330638433277 -0.2565669338448093 0.9575208326510102 -0.1316330638433571 -0.2500485073049477 -0.9331937336188324 -0.2581185764897814 -0.4956492551450126 -0.8584896926448291 -0.1316330638433255 -0.4956492551450089 0.8584896926448268 -0.1316330638433547 4.684333470088864e-016 -0.9912985102900226 -0.1316330638433289 -0.2565669338448131 -0.9575208326510133 -0.1316330638433277 + + + + + + + + + + + + + + +

0 1 2 1 3 4 3 1 0 5 3 0 3 5 6 3 7 4 7 3 8 6 8 3 8 6 9 10 0 11 0 10 5 12 6 5 6 12 13 8 14 7 14 8 15 15 16 14 17 18 19 18 17 20 8 21 15 21 8 9 13 9 6 9 13 22 23 11 24 11 23 10 25 5 10 5 25 12 12 26 13 26 12 27 18 28 19 28 18 29 30 28 29 17 31 32 31 17 19 33 34 35 35 20 17 20 35 34 15 36 37 36 15 21 9 38 21 38 9 22 22 26 39 26 22 13 40 24 41 24 40 23 42 10 23 10 42 25 25 27 12 27 25 43 27 44 26 44 27 45 19 46 31 46 19 28 32 47 48 47 32 31 49 17 32 17 49 35 37 50 51 50 37 36 21 52 36 52 21 38 38 39 53 39 38 22 39 44 54 44 39 26 55 41 56 41 55 40 57 23 40 23 57 42 42 43 25 43 42 58 43 45 27 45 43 59 45 60 44 60 45 61 28 62 46 62 28 63 31 64 47 64 31 46 65 47 66 47 65 48 67 32 48 32 67 49 68 35 49 35 68 69 51 70 71 70 51 50 36 72 50 72 36 52 52 53 73 53 52 38 53 54 74 54 53 39 54 60 75 60 54 44 76 56 77 56 76 55 78 40 55 40 78 57 79 42 57 42 79 58 58 59 43 59 58 80 59 61 45 61 59 81 63 82 62 82 63 83 46 84 64 84 46 62 66 64 85 64 66 47 86 66 87 66 86 65 65 67 48 67 65 88 89 49 67 49 89 68 90 69 68 69 90 91 71 92 93 92 71 70 50 94 70 94 50 72 72 73 95 73 72 52 73 74 96 74 73 53 74 75 97 75 74 54 76 98 99 98 76 77 78 76 100 76 78 55 101 57 78 57 101 79 102 58 79 58 102 80 80 81 59 81 80 103 83 104 82 104 83 105 62 106 84 106 62 82 85 84 107 84 85 64 87 85 108 85 87 66 109 87 110 87 109 86 86 88 65 88 86 111 88 89 67 89 88 112 113 68 89 68 113 90 114 91 90 91 114 115 116 92 117 92 116 93 70 118 92 118 70 94 95 94 72 94 95 119 95 96 120 96 95 73 96 97 121 97 96 74 99 115 114 115 99 98 100 99 122 99 100 76 123 78 100 78 123 101 124 79 101 79 124 102 125 80 102 80 125 103 105 126 104 126 105 127 82 128 106 128 82 104 107 106 129 106 107 84 108 107 130 107 108 85 110 108 131 108 110 87 109 111 86 111 109 132 111 112 88 112 111 133 112 113 89 113 112 134 135 90 113 90 135 114 127 117 126 117 127 116 92 136 117 136 92 118 119 118 94 118 119 137 120 119 95 119 120 138 120 121 139 121 120 96 122 114 135 114 122 99 140 100 122 100 140 123 141 101 123 101 141 124 142 102 124 102 142 125 104 143 128 143 104 126 144 106 128 106 144 129 130 129 145 129 130 107 131 130 146 130 131 108 132 133 111 133 132 147 133 134 112 134 133 148 134 135 113 135 134 149 126 136 143 136 126 117 137 136 118 136 137 150 138 137 119 137 138 151 139 138 120 138 139 152 149 122 135 122 149 140 153 123 140 123 153 141 154 124 141 124 154 142 155 128 143 128 155 144 156 129 144 129 156 145 146 145 157 145 146 130 147 148 133 148 147 158 148 149 134 149 148 159 150 143 136 143 150 155 151 150 137 150 151 160 152 151 138 151 152 161 159 140 149 140 159 153 162 141 153 141 162 154 163 144 155 144 163 156 164 145 156 145 164 157 158 159 148 159 158 165 160 155 150 155 160 163 161 160 151 160 161 166 165 153 159 153 165 162 167 156 163 156 167 164 166 163 160 163 166 167

+
+
+
+ + + + 0.1184986753859656 2.804370064010866 2.24409448818898 3.802459269029596 5.211752591652259 2.24409448818898 0.1184986753859656 7.755517072645532 2.24409448818898 3.821449895399476 5.203886416651894 2.24409448818898 5.080260594255362 4.709514930755915 2.24409448818898 5.233106487032441 4.689392387225837 2.24409448818898 25.61991398185795 2.804370064010866 2.24409448818898 3.786151648463726 5.224265869022172 2.24409448818898 3.773638371093813 5.240573489588042 2.24409448818898 3.765772196093449 5.259564115957922 2.24409448818898 3.763089190289438 5.279943568328199 2.24409448818898 3.841829347769753 5.201203410847884 2.24409448818898 3.862208800140031 5.203886416651894 2.24409448818898 4.937830896481261 4.768511243258649 2.24409448818898 3.881199426509911 5.211752591652259 2.24409448818898 3.89750704707578 5.224265869022172 2.24409448818898 3.910020324445693 5.240573489588042 2.24409448818898 3.917886499446058 5.259564115957922 2.24409448818898 3.920569505250068 5.279943568328199 2.24409448818898 4.815523742237236 4.862360823532994 2.24409448818898 4.721674161962891 4.984667977777018 2.24409448818898 4.662677849460157 5.127097675551119 2.24409448818898 4.642555305930079 5.279943568328199 2.24409448818898 5.385952379809521 4.709514930755915 2.24409448818898 5.528382077583623 4.768511243258649 2.24409448818898 5.650689231827647 4.862360823532995 2.24409448818898 5.744538812101991 4.984667977777018 2.24409448818898 5.803535124604726 5.12709767555112 2.24409448818898 5.823657668134803 5.279943568328199 2.24409448818898 5.233106487032441 5.870494749430561 2.24409448818898 51.06260368681876 7.755517072645532 2.24409448818898 5.080260594255362 5.850372205900484 2.24409448818898 3.821449895399476 5.356000720004503 2.24409448818898 3.802459269029596 5.348134545004139 2.24409448818898 3.786151648463726 5.335621267634227 2.24409448818898 3.773638371093813 5.319313647068356 2.24409448818898 3.765772196093449 5.300323020698476 2.24409448818898 3.841829347769753 5.358683725808514 2.24409448818898 3.86220880014003 5.356000720004504 2.24409448818898 4.93783089648126 5.791375893397749 2.24409448818898 3.881199426509911 5.348134545004139 2.24409448818898 3.89750704707578 5.335621267634227 2.24409448818898 3.910020324445693 5.319313647068356 2.24409448818898 3.917886499446058 5.300323020698476 2.24409448818898 4.815523742237236 5.697526313123404 2.24409448818898 4.721674161962891 5.57521915887938 2.24409448818898 4.662677849460157 5.432789461105278 2.24409448818898 5.38595237980952 5.850372205900484 2.24409448818898 5.528382077583622 5.791375893397749 2.24409448818898 5.650689231827647 5.697526313123404 2.24409448818898 5.744538812101991 5.575219158879381 2.24409448818898 5.803535124604726 5.432789461105278 2.24409448818898 30.70679771243117 0.1184986753859656 2.24409448818898 51.06260368681876 0.1184986753859656 2.24409448818898 + + + + + + + + + + -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 2 1 7 2 7 8 2 8 9 2 9 10 3 4 11 11 4 12 12 4 13 12 13 14 14 13 15 15 13 16 16 13 17 17 13 18 18 13 19 18 19 20 18 20 21 18 21 22 5 6 23 23 6 24 24 6 25 25 6 26 26 6 27 27 6 28 2 29 30 29 2 31 31 2 32 32 2 33 33 2 34 34 2 35 35 2 36 36 2 10 31 32 37 31 37 38 31 38 39 39 38 40 39 40 41 39 41 42 39 42 43 39 43 18 39 18 44 44 18 45 45 18 46 46 18 22 30 29 47 30 47 48 30 48 49 30 49 50 30 50 51 30 51 28 30 28 6 30 6 52 30 52 53

+
+
+
+ + + + 3.765772196093449 5.259564115957922 2.204724409448823 3.765772196093449 5.300323020698476 2.204724409448823 3.763089190289438 5.279943568328199 2.204724409448823 3.773638371093813 5.240573489588042 2.204724409448823 3.773638371093813 5.319313647068356 2.204724409448823 3.786151648463726 5.224265869022172 2.204724409448823 3.786151648463726 5.335621267634227 2.204724409448823 3.802459269029596 5.348134545004139 2.204724409448823 3.802459269029596 5.211752591652259 2.204724409448823 3.821449895399476 5.203886416651894 2.204724409448823 3.821449895399476 5.356000720004503 2.204724409448823 3.841829347769753 5.201203410847884 2.204724409448823 3.841829347769753 5.358683725808514 2.204724409448823 3.862208800140031 5.203886416651894 2.204724409448823 3.86220880014003 5.356000720004504 2.204724409448823 3.881199426509911 5.348134545004139 2.204724409448823 3.881199426509911 5.211752591652259 2.204724409448823 3.89750704707578 5.224265869022172 2.204724409448823 3.89750704707578 5.335621267634227 2.204724409448823 3.910020324445693 5.240573489588042 2.204724409448823 3.910020324445693 5.319313647068356 2.204724409448823 3.917886499446058 5.259564115957922 2.204724409448823 3.917886499446058 5.300323020698476 2.204724409448823 3.920569505250068 5.279943568328199 2.204724409448823 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 7 8 9 7 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 15 13 16 15 16 17 15 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23

+
+
+
+ + + + 3.821449895399476 5.203886416651894 2.24409448818898 3.841829347769753 5.201203410847884 2.204724409448823 3.821449895399476 5.203886416651894 2.204724409448823 3.841829347769753 5.201203410847884 2.24409448818898 3.862208800140031 5.203886416651894 2.204724409448823 3.862208800140031 5.203886416651894 2.24409448818898 3.802459269029596 5.211752591652259 2.24409448818898 3.802459269029596 5.211752591652259 2.204724409448823 3.881199426509911 5.211752591652259 2.204724409448823 3.881199426509911 5.211752591652259 2.24409448818898 3.786151648463726 5.224265869022172 2.24409448818898 3.786151648463726 5.224265869022172 2.204724409448823 3.89750704707578 5.224265869022172 2.204724409448823 3.89750704707578 5.224265869022172 2.24409448818898 3.773638371093813 5.240573489588042 2.204724409448823 3.773638371093813 5.240573489588042 2.24409448818898 3.910020324445693 5.240573489588042 2.24409448818898 3.910020324445693 5.240573489588042 2.204724409448823 3.765772196093449 5.259564115957922 2.204724409448823 3.765772196093449 5.259564115957922 2.24409448818898 3.917886499446058 5.259564115957922 2.24409448818898 3.917886499446058 5.259564115957922 2.204724409448823 3.763089190289438 5.279943568328199 2.204724409448823 3.763089190289438 5.279943568328199 2.24409448818898 3.920569505250068 5.279943568328199 2.24409448818898 3.920569505250068 5.279943568328199 2.204724409448823 3.765772196093449 5.300323020698476 2.204724409448823 3.765772196093449 5.300323020698476 2.24409448818898 3.917886499446058 5.300323020698476 2.24409448818898 3.917886499446058 5.300323020698476 2.204724409448823 3.773638371093813 5.319313647068356 2.204724409448823 3.773638371093813 5.319313647068356 2.24409448818898 3.910020324445693 5.319313647068356 2.24409448818898 3.910020324445693 5.319313647068356 2.204724409448823 3.786151648463726 5.335621267634227 2.204724409448823 3.786151648463726 5.335621267634227 2.24409448818898 3.89750704707578 5.335621267634227 2.24409448818898 3.89750704707578 5.335621267634227 2.204724409448823 3.802459269029596 5.348134545004139 2.24409448818898 3.802459269029596 5.348134545004139 2.204724409448823 3.881199426509911 5.348134545004139 2.204724409448823 3.881199426509911 5.348134545004139 2.24409448818898 3.821449895399476 5.356000720004503 2.24409448818898 3.821449895399476 5.356000720004503 2.204724409448823 3.86220880014003 5.356000720004504 2.204724409448823 3.86220880014003 5.356000720004504 2.24409448818898 3.841829347769753 5.358683725808514 2.24409448818898 3.841829347769753 5.358683725808514 2.204724409448823 + + + + + + + + + + 0.2588190451025272 0.9659258262890665 0 0 0.9999999999999999 0 0.2588190451025272 0.9659258262890665 0 0 0.9999999999999999 0 -0.2588190451025272 0.9659258262890665 0 -0.2588190451025272 0.9659258262890665 0 0.5000000000000094 0.8660254037844333 0 0.5000000000000094 0.8660254037844333 0 -0.5000000000000094 0.8660254037844333 0 -0.5000000000000094 0.8660254037844333 0 0.70710678118654 0.707106781186555 0 0.70710678118654 0.707106781186555 0 -0.70710678118654 0.707106781186555 0 -0.70710678118654 0.707106781186555 0 0.8660254037844379 0.5000000000000012 0 0.8660254037844379 0.5000000000000012 0 -0.8660254037844379 0.5000000000000012 0 -0.8660254037844379 0.5000000000000012 0 0.965925826289069 0.2588190451025184 0 0.965925826289069 0.2588190451025184 0 -0.965925826289069 0.2588190451025184 0 -0.965925826289069 0.2588190451025184 0 1 0 0 1 0 0 -1 0 0 -1 0 0 0.965925826289069 -0.2588190451025184 0 0.965925826289069 -0.2588190451025184 0 -0.965925826289069 -0.2588190451025184 0 -0.965925826289069 -0.2588190451025184 0 0.8660254037844423 -0.499999999999994 0 0.8660254037844423 -0.499999999999994 0 -0.8660254037844379 -0.5000000000000012 0 -0.8660254037844379 -0.5000000000000012 0 0.7071067811865415 -0.7071067811865536 0 0.7071067811865415 -0.7071067811865536 0 -0.70710678118654 -0.707106781186555 0 -0.70710678118654 -0.707106781186555 0 0.4999999999999865 -0.8660254037844466 0 0.4999999999999865 -0.8660254037844466 0 -0.5000000000000059 -0.8660254037844354 0 -0.5000000000000059 -0.8660254037844354 0 0.2588190451025286 -0.9659258262890662 0 0.2588190451025286 -0.9659258262890662 0 -0.2588190451025246 -0.9659258262890673 0 -0.2588190451025246 -0.9659258262890673 0 1.998761949593601e-014 -1 0 1.998761949593601e-014 -1 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 5 8 4 8 5 9 10 7 11 7 10 6 9 12 8 12 9 13 14 10 11 10 14 15 16 12 13 12 16 17 18 15 14 15 18 19 20 17 16 17 20 21 22 19 18 19 22 23 24 21 20 21 24 25 26 23 22 23 26 27 28 25 24 25 28 29 30 27 26 27 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 34 39 34 38 35 36 40 37 40 36 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 42 45 47 44 47 45 46

+
+
+
+ + + + 4.662677849460157 5.127097675551119 1.968503937007879 4.662677849460157 5.432789461105278 1.968503937007879 4.642555305930079 5.279943568328199 1.968503937007879 4.681987464823896 5.279943568328199 1.968503937007879 4.700766390122029 5.137303469262347 1.968503937007879 4.721674161962891 4.984667977777018 1.968503937007879 4.755823413291001 5.004384057223927 1.968503937007879 4.815523742237236 4.862360823532994 1.968503937007879 4.843406489187879 4.890243570483637 1.968503937007879 4.937830896481261 4.768511243258649 1.968503937007879 4.95754697592817 4.802660494586758 1.968503937007879 5.080260594255362 4.709514930755915 1.968503937007879 5.090466387966592 4.747603471417786 1.968503937007879 5.233106487032441 4.689392387225837 1.968503937007879 5.233106487032441 4.728824546119654 1.968503937007879 5.385952379809521 4.709514930755915 1.968503937007879 5.375746586098293 4.747603471417786 1.968503937007879 5.508665998136713 4.802660494586758 1.968503937007879 5.528382077583623 4.768511243258649 1.968503937007879 5.622806484877003 4.890243570483638 1.968503937007879 5.650689231827647 4.862360823532995 1.968503937007879 5.710389560773883 5.004384057223929 1.968503937007879 5.744538812101991 4.984667977777018 1.968503937007879 5.765446583942854 5.137303469262349 1.968503937007879 5.803535124604726 5.12709767555112 1.968503937007879 5.784225509240986 5.279943568328199 1.968503937007879 4.700766390122029 5.422583667394049 1.968503937007879 4.721674161962891 5.57521915887938 1.968503937007879 4.755823413291 5.55550307943247 1.968503937007879 4.815523742237236 5.697526313123404 1.968503937007879 4.843406489187879 5.669643566172761 1.968503937007879 4.93783089648126 5.791375893397749 1.968503937007879 4.95754697592817 5.75722664206964 1.968503937007879 5.080260594255362 5.850372205900484 1.968503937007879 5.090466387966591 5.812283665238612 1.968503937007879 5.233106487032441 5.870494749430561 1.968503937007879 5.233106487032441 5.831062590536744 1.968503937007879 5.375746586098291 5.812283665238612 1.968503937007879 5.38595237980952 5.850372205900484 1.968503937007879 5.508665998136713 5.75722664206964 1.968503937007879 5.528382077583622 5.791375893397749 1.968503937007879 5.622806484877003 5.669643566172761 1.968503937007879 5.650689231827647 5.697526313123404 1.968503937007879 5.710389560773883 5.55550307943247 1.968503937007879 5.744538812101991 5.575219158879381 1.968503937007879 5.765446583942854 5.42258366739405 1.968503937007879 5.803535124604726 5.432789461105278 1.968503937007879 5.823657668134803 5.279943568328199 1.968503937007879 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 17 15 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 1 26 27 26 1 3 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 35 37 38 38 37 39 38 39 40 40 39 41 40 41 42 42 41 43 42 43 44 44 43 45 44 45 46 46 45 25 46 25 24 46 24 47

+
+
+
+ + + + 4.662677849460157 5.432789461105278 1.968503937007879 4.642555305930079 5.279943568328199 2.24409448818898 4.642555305930079 5.279943568328199 1.968503937007879 4.662677849460157 5.432789461105278 2.24409448818898 4.662677849460157 5.127097675551119 2.24409448818898 4.662677849460157 5.127097675551119 1.968503937007879 4.721674161962891 5.57521915887938 1.968503937007879 4.721674161962891 5.57521915887938 2.24409448818898 4.721674161962891 4.984667977777018 2.24409448818898 4.721674161962891 4.984667977777018 1.968503937007879 4.815523742237236 5.697526313123404 1.968503937007879 4.815523742237236 5.697526313123404 2.24409448818898 4.815523742237236 4.862360823532994 2.24409448818898 4.815523742237236 4.862360823532994 1.968503937007879 4.93783089648126 5.791375893397749 2.24409448818898 4.93783089648126 5.791375893397749 1.968503937007879 4.937830896481261 4.768511243258649 1.968503937007879 4.937830896481261 4.768511243258649 2.24409448818898 5.080260594255362 5.850372205900484 2.24409448818898 5.080260594255362 5.850372205900484 1.968503937007879 5.080260594255362 4.709514930755915 1.968503937007879 5.080260594255362 4.709514930755915 2.24409448818898 5.233106487032441 5.870494749430561 2.24409448818898 5.233106487032441 5.870494749430561 1.968503937007879 5.233106487032441 4.689392387225837 1.968503937007879 5.233106487032441 4.689392387225837 2.24409448818898 5.38595237980952 5.850372205900484 2.24409448818898 5.38595237980952 5.850372205900484 1.968503937007879 5.385952379809521 4.709514930755915 1.968503937007879 5.385952379809521 4.709514930755915 2.24409448818898 5.528382077583622 5.791375893397749 2.24409448818898 5.528382077583622 5.791375893397749 1.968503937007879 5.528382077583623 4.768511243258649 1.968503937007879 5.528382077583623 4.768511243258649 2.24409448818898 5.650689231827647 5.697526313123404 2.24409448818898 5.650689231827647 5.697526313123404 1.968503937007879 5.650689231827647 4.862360823532995 1.968503937007879 5.650689231827647 4.862360823532995 2.24409448818898 5.744538812101991 5.575219158879381 1.968503937007879 5.744538812101991 5.575219158879381 2.24409448818898 5.744538812101991 4.984667977777018 2.24409448818898 5.744538812101991 4.984667977777018 1.968503937007879 5.803535124604726 5.432789461105278 1.968503937007879 5.803535124604726 5.432789461105278 2.24409448818898 5.803535124604726 5.12709767555112 2.24409448818898 5.803535124604726 5.12709767555112 1.968503937007879 5.823657668134803 5.279943568328199 1.968503937007879 5.823657668134803 5.279943568328199 2.24409448818898 + + + + + + + + + + 0.9659258262890681 -0.2588190451025217 0 1 -3.65355505721523e-016 0 1 -3.65355505721523e-016 0 0.9659258262890681 -0.2588190451025217 0 0.9659258262890681 0.2588190451025213 0 0.9659258262890681 0.2588190451025213 0 0.8660254037844393 -0.4999999999999991 0 0.8660254037844393 -0.4999999999999991 0 0.8660254037844384 0.5000000000000006 0 0.8660254037844384 0.5000000000000006 0 0.7071067811865488 -0.7071067811865462 0 0.7071067811865488 -0.7071067811865462 0 0.7071067811865462 0.7071067811865488 0 0.7071067811865462 0.7071067811865488 0 0.4999999999999997 -0.8660254037844389 0 0.4999999999999997 -0.8660254037844389 0 0.4999999999999991 0.8660254037844393 0 0.4999999999999991 0.8660254037844393 0 0.2588190451025206 -0.9659258262890682 0 0.2588190451025206 -0.9659258262890682 0 0.2588190451025217 0.9659258262890681 0 0.2588190451025217 0.9659258262890681 0 0 -1 0 0 -1 0 3.65355505721523e-016 1 0 3.65355505721523e-016 1 0 -0.2588190451025217 -0.9659258262890681 0 -0.2588190451025217 -0.9659258262890681 0 -0.2588190451025213 0.9659258262890681 0 -0.2588190451025213 0.9659258262890681 0 -0.4999999999999991 -0.8660254037844393 0 -0.4999999999999991 -0.8660254037844393 0 -0.5000000000000027 0.8660254037844372 0 -0.5000000000000027 0.8660254037844372 0 -0.7071067811865462 -0.7071067811865488 0 -0.7071067811865462 -0.7071067811865488 0 -0.7071067811865491 0.707106781186546 0 -0.7071067811865491 0.707106781186546 0 -0.8660254037844389 -0.4999999999999997 0 -0.8660254037844389 -0.4999999999999997 0 -0.8660254037844384 0.5000000000000006 0 -0.8660254037844384 0.5000000000000006 0 -0.9659258262890682 -0.2588190451025206 0 -0.9659258262890682 -0.2588190451025206 0 -0.9659258262890681 0.2588190451025217 0 -0.9659258262890681 0.2588190451025217 0 -1 0 0 -1 0 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 10 15 10 14 11 12 16 13 16 12 17 18 15 19 15 18 14 17 20 16 20 17 21 22 19 23 19 22 18 21 24 20 24 21 25 26 23 27 23 26 22 25 28 24 28 25 29 30 27 31 27 30 26 29 32 28 32 29 33 34 31 35 31 34 30 33 36 32 36 33 37 34 38 39 38 34 35 40 36 37 36 40 41 39 42 43 42 39 38 44 41 40 41 44 45 43 46 47 46 43 42 47 45 44 45 47 46

+
+
+
+ + + + 4.700766390122029 5.137303469262347 2.125984251968508 4.700766390122029 5.422583667394049 2.125984251968508 4.681987464823896 5.279943568328199 2.125984251968508 4.755823413291001 5.004384057223927 2.125984251968508 4.755823413291 5.55550307943247 2.125984251968508 4.843406489187879 5.669643566172761 2.125984251968508 4.843406489187879 4.890243570483637 2.125984251968508 4.95754697592817 4.802660494586758 2.125984251968508 4.95754697592817 5.75722664206964 2.125984251968508 5.090466387966592 4.747603471417786 2.125984251968508 5.090466387966591 5.812283665238612 2.125984251968508 5.233106487032441 5.831062590536744 2.125984251968508 5.233106487032441 4.728824546119654 2.125984251968508 5.375746586098293 4.747603471417786 2.125984251968508 5.375746586098291 5.812283665238612 2.125984251968508 5.508665998136713 5.75722664206964 2.125984251968508 5.508665998136713 4.802660494586758 2.125984251968508 5.622806484877003 4.890243570483638 2.125984251968508 5.622806484877003 5.669643566172761 2.125984251968508 5.710389560773883 5.004384057223929 2.125984251968508 5.710389560773883 5.55550307943247 2.125984251968508 5.765446583942854 5.137303469262349 2.125984251968508 5.765446583942854 5.42258366739405 2.125984251968508 5.784225509240986 5.279943568328199 2.125984251968508 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 5 6 7 5 7 8 8 7 9 8 9 10 10 9 11 11 9 12 11 12 13 11 13 14 14 13 15 15 13 16 15 16 17 15 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23

+
+
+
+ + + + 4.700766390122029 5.137303469262347 2.125984251968508 4.755823413291001 5.004384057223927 1.968503937007879 4.755823413291001 5.004384057223927 2.125984251968508 4.700766390122029 5.137303469262347 1.968503937007879 4.843406489187879 4.890243570483637 1.968503937007879 4.843406489187879 4.890243570483637 2.125984251968508 4.681987464823896 5.279943568328199 2.125984251968508 4.681987464823896 5.279943568328199 1.968503937007879 4.95754697592817 4.802660494586758 2.125984251968508 4.95754697592817 4.802660494586758 1.968503937007879 4.700766390122029 5.422583667394049 2.125984251968508 4.700766390122029 5.422583667394049 1.968503937007879 5.090466387966592 4.747603471417786 2.125984251968508 5.090466387966592 4.747603471417786 1.968503937007879 4.755823413291 5.55550307943247 2.125984251968508 4.755823413291 5.55550307943247 1.968503937007879 5.233106487032441 4.728824546119654 2.125984251968508 5.233106487032441 4.728824546119654 1.968503937007879 4.843406489187879 5.669643566172761 2.125984251968508 4.843406489187879 5.669643566172761 1.968503937007879 5.375746586098293 4.747603471417786 2.125984251968508 5.375746586098293 4.747603471417786 1.968503937007879 4.95754697592817 5.75722664206964 1.968503937007879 4.95754697592817 5.75722664206964 2.125984251968508 5.508665998136713 4.802660494586758 2.125984251968508 5.508665998136713 4.802660494586758 1.968503937007879 5.090466387966591 5.812283665238612 1.968503937007879 5.090466387966591 5.812283665238612 2.125984251968508 5.622806484877003 4.890243570483638 2.125984251968508 5.622806484877003 4.890243570483638 1.968503937007879 5.233106487032441 5.831062590536744 1.968503937007879 5.233106487032441 5.831062590536744 2.125984251968508 5.710389560773883 5.004384057223929 1.968503937007879 5.710389560773883 5.004384057223929 2.125984251968508 5.375746586098291 5.812283665238612 1.968503937007879 5.375746586098291 5.812283665238612 2.125984251968508 5.765446583942854 5.137303469262349 1.968503937007879 5.765446583942854 5.137303469262349 2.125984251968508 5.508665998136713 5.75722664206964 1.968503937007879 5.508665998136713 5.75722664206964 2.125984251968508 5.784225509240986 5.279943568328199 1.968503937007879 5.784225509240986 5.279943568328199 2.125984251968508 5.622806484877003 5.669643566172761 1.968503937007879 5.622806484877003 5.669643566172761 2.125984251968508 5.765446583942854 5.42258366739405 1.968503937007879 5.765446583942854 5.42258366739405 2.125984251968508 5.710389560773883 5.55550307943247 2.125984251968508 5.710389560773883 5.55550307943247 1.968503937007879 + + + + + + + + + + -0.9659258262890681 -0.2588190451025219 0 -0.8660254037844379 -0.500000000000001 0 -0.8660254037844379 -0.500000000000001 0 -0.9659258262890681 -0.2588190451025219 0 -0.707106781186548 -0.7071067811865471 0 -0.707106781186548 -0.7071067811865471 0 -1 7.930887807125743e-016 0 -1 7.930887807125743e-016 0 -0.4999999999999981 -0.8660254037844398 0 -0.4999999999999981 -0.8660254037844398 0 -0.9659258262890688 0.2588190451025187 0 -0.9659258262890688 0.2588190451025187 0 -0.2588190451025187 -0.9659258262890688 0 -0.2588190451025187 -0.9659258262890688 0 -0.8660254037844398 0.4999999999999981 0 -0.8660254037844398 0.4999999999999981 0 -7.930887807125743e-016 -1 0 -7.930887807125743e-016 -1 0 -0.7071067811865475 0.7071067811865475 0 -0.7071067811865475 0.7071067811865475 0 0.2588190451025202 -0.9659258262890684 0 0.2588190451025202 -0.9659258262890684 0 -0.4999999999999992 0.8660254037844393 0 -0.4999999999999992 0.8660254037844393 0 0.5000000000000023 -0.8660254037844374 0 0.5000000000000023 -0.8660254037844374 0 -0.2588190451025195 0.9659258262890687 0 -0.2588190451025195 0.9659258262890687 0 0.7071067811865494 -0.7071067811865457 0 0.7071067811865494 -0.7071067811865457 0 3.920888354084637e-016 1 0 3.920888354084637e-016 1 0 0.8660254037844393 -0.4999999999999992 0 0.8660254037844393 -0.4999999999999992 0 0.2588190451025187 0.9659258262890688 0 0.2588190451025187 0.9659258262890688 0 0.9659258262890687 -0.2588190451025199 0 0.9659258262890687 -0.2588190451025199 0 0.4999999999999981 0.8660254037844398 0 0.4999999999999981 0.8660254037844398 0 1 -3.920888354084637e-016 0 1 -3.920888354084637e-016 0 0.7071067811865475 0.7071067811865475 0 0.7071067811865475 0.7071067811865475 0 0.9659258262890687 0.2588190451025195 0 0.9659258262890687 0.2588190451025195 0 0.8660254037844393 0.4999999999999992 0 0.8660254037844393 0.4999999999999992 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 8 4 9 4 8 5 10 7 6 7 10 11 12 9 13 9 12 8 14 11 10 11 14 15 16 13 17 13 16 12 18 15 14 15 18 19 20 17 21 17 20 16 18 22 19 22 18 23 24 21 25 21 24 20 23 26 22 26 23 27 28 25 29 25 28 24 27 30 26 30 27 31 32 28 29 28 32 33 31 34 30 34 31 35 36 33 32 33 36 37 35 38 34 38 35 39 40 37 36 37 40 41 39 42 38 42 39 43 44 41 40 41 44 45 42 46 47 46 42 43 47 45 44 45 47 46

+
+
+
+ + + + 49.88188976377955 7.182685229005588 0.604869657207319 49.88188976377955 0.7153153851313138 1.166727690057971 49.88188976377955 0.7153153851313135 0.604869657207319 49.88188976377955 7.182685229005587 1.166727690057971 51.18110236220473 0.7153153851313135 0.604869657207319 49.88188976377955 7.182685229005588 0.604869657207319 49.88188976377955 0.7153153851313135 0.604869657207319 51.18110236220473 7.182685229005588 0.604869657207319 51.18110236220473 7.182685229005587 1.166727690057971 49.88188976377955 7.182685229005588 0.604869657207319 51.18110236220473 7.182685229005588 0.604869657207319 49.88188976377955 7.182685229005587 1.166727690057971 51.18110236220473 7.182685229005587 1.166727690057971 49.88188976377955 0.7153153851313138 1.166727690057971 49.88188976377955 7.182685229005587 1.166727690057971 51.18110236220473 0.7153153851313138 1.166727690057971 49.88188976377955 0.7153153851313138 1.166727690057971 51.18110236220473 0.7153153851313135 0.604869657207319 49.88188976377955 0.7153153851313135 0.604869657207319 51.18110236220473 0.7153153851313138 1.166727690057971 + + + + + + + + + + 1 0 0 1 0 0 1 0 0 1 0 0 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 1 -3.95196992732243e-016 -0 1 -3.95196992732243e-016 -0 1 -3.95196992732243e-016 -0 1 -3.95196992732243e-016 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19

+
+
+
+ + + + 43.3770845465892 7.368501434310447 8.326672684688674e-016 43.37882183390003 7.395007316609055 8.326672684688674e-016 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 43.55364811608248 7.569833598791506 8.326672684688674e-016 43.58015399838109 7.571570886102331 8.326672684688674e-016 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 51.06260368681876 0.1184986753859656 0 0 0 0 51.06260368681876 0.1184986753859656 2.165354330708662 + + + + + + + + + + + + + +

1 0 0 2

+
+
+
+ + + + 0 0 2.834645669291339 0 0 2.165354330708662 + + + + + + + + + + + + + +

1 0

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1254901960784314 0.2117647058823529 0.2274509803921569 1 + + + + + + + + + + + 0.2431372549019608 0.3568627450980392 0.4352941176470588 1 + + + + + + + + + + + 0.6627450980392157 0.6627450980392157 0.6627450980392157 1 + + + + + + + + + + + 0 0 0 1 + + + + + + + + + + + 0.2156862745098039 0.3568627450980392 0.3843137254901961 1 + + + + + + + + + + + 0.2431372549019608 0.3568627450980392 0.4352941176470588 1 + + + 1 + + + + + + + + + +
diff --git a/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_entire.dae b/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_entire.dae new file mode 100644 index 0000000000..0b1ede11d3 --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_entire.dae @@ -0,0 +1,1256 @@ + + + + + Google SketchUp 8.0.4811 + + 2015-06-04T11:19:41Z + 2015-06-04T11:19:41Z + + Z_UP + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + 1 0 0 -46.84458131056598 0 1 0 14.0515400898282 0 0 1 0.9848344141093338 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -3.102368219972754 20.58757989953491 1.029987378231693 -3.106449785811256 17.18347771741038 1.029987378231693 -3.106449785811258 20.56706048240531 1.029987378231693 -3.104933558427559 17.16034455784605 1.029987378231692 -3.100630932661936 17.13871379741472 1.029987378231693 -3.095279022973103 20.60846400045442 1.029987378231693 -3.093541735662264 17.11782969649524 1.029987378231693 -3.085524552865565 20.6282441091052 1.029987378231693 -3.083787265554719 17.09804958784448 1.029987378231693 -3.073271711338159 20.64658178234414 1.029987378231693 -3.071534424027284 17.07971191460543 1.029987378231693 -3.058730147906489 20.66316325749805 1.029987378231693 -3.056992860595641 17.06313043945157 1.029987378231693 -3.042148672752597 20.6777048209297 1.029987378231693 -3.040411385441793 17.04858887601993 1.029987378231693 -3.023810999513636 20.68995766245712 1.029987378231693 -3.02207371220279 17.03633603449251 1.029987378231693 -3.004030890862851 20.69971213256466 1.029987378231693 -3.002293603552019 17.02658156438498 1.029987378231693 -2.98314678994335 20.70680132956432 1.029987378231693 -2.98140950263251 17.01949236738533 1.029987378231693 -2.962627372813793 20.71088289540281 1.029987378231693 -2.959778742201202 17.01518974161971 1.029987378231693 3.298549160620757 20.7108828954028 1.029987378231693 -2.9366455826368 17.01367351423601 1.029987378231693 3.298549160620672 17.01367351423602 1.029987378231692 3.321682320185027 17.01518974161972 1.029987378231692 3.321682320184983 20.7093666680191 1.029987378231693 3.343313080616291 20.70506404225349 1.029987378231693 3.34331308061632 17.01949236738532 1.029987378231692 3.364197181535779 20.69797484525384 1.029987378231693 3.36419718153578 17.026581564385 1.029987378231692 3.383977290186586 20.68822037514629 1.029987378231693 3.3839772901866 17.03633603449254 1.029987378231692 3.40231496342553 20.67596753361888 1.029987378231693 3.402314963425587 17.04858887601994 1.029987378231692 3.418896438579445 20.66142597018721 1.029987378231693 3.41889643857946 17.06313043945161 1.029987378231692 3.433438002011094 20.64484449503334 1.029987378231693 3.433438002011066 17.07971191460547 1.029987378231692 3.44569084353852 17.09804958784447 1.029987378231692 3.445690843538506 20.62650682179439 1.029987378231693 3.455445313646058 20.60672671314355 1.029987378231693 3.455445313646058 17.11782969649527 1.029987378231692 3.46253451064573 20.58584261222409 1.029987378231693 3.462534510645688 17.13871379741472 1.029987378231692 3.466837136411306 17.16034455784607 1.029987378231692 3.46683713641132 20.56421185179276 1.029987378231693 3.468353363795038 17.18347771741035 1.029987378231692 3.468353363795037 20.54107869222854 1.029987378231693 + + + + + + + + + + -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 -3.291247193289321e-017 1.883877647482283e-016 -1 + + + + + + + + + + 0.05745126333282877 0.3812514796210169 0.05752684788539363 0.3182125503224145 0.05752684788539367 0.3808714904149132 0.05749876960051036 0.3177841584786306 0.0574190913455914 0.3173835888410134 0.05731998190690931 0.3816382222306373 0.05728780991967155 0.3169968462313932 0.05713934357158454 0.3820045205389852 0.05710717158434664 0.3166305479230459 0.0569124390988548 0.382344107080447 0.05688026711161637 0.3162909613815821 0.05664315088715719 0.382651171435149 0.05661097889991928 0.3159838970268809 0.0563360865324555 0.3829204596468463 0.05630391454521838 0.3157146088151839 0.05599649999099327 0.3831473641195763 0.05596432800375537 0.3154877043424539 0.05563020168264539 0.3833280024549011 0.05559802969540775 0.3153070660071292 0.05524345907302499 0.3834592838808207 0.05521128708578722 0.3151757845812097 0.05486346986692208 0.3835348684333853 0.0548107174481704 0.315096106326291 -0.0610842437151992 0.3835348684333852 0.05438232560438518 0.3150680280414076 -0.06108424371519763 0.3150680280414077 -0.06151263555898197 0.3150961063262912 -0.06151263555898117 0.3835067901485019 -0.06191320519659797 0.3834271118935832 -0.06191320519659851 0.3151757845812096 -0.06229994780621813 0.3832958304676636 -0.06229994780621814 0.3153070660071295 -0.06266624611456639 0.3831151921323387 -0.06266624611456667 0.3154877043424543 -0.06300583265602833 0.382888287659609 -0.0630058326560294 0.3157146088151841 -0.06331289701073045 0.3826189994479113 -0.06331289701073073 0.3159838970268817 -0.06358218522242767 0.3823119350932099 -0.06358218522242715 0.3162909613815828 -0.06380908969515778 0.3166305479230457 -0.06380908969515751 0.3819723485517479 -0.06398972803048254 0.381606050243399 -0.06398972803048256 0.3169968462313939 -0.06412100945640241 0.3812193076337794 -0.06412100945640162 0.3173835888410133 -0.06420068771132047 0.3177841584786308 -0.06420068771132073 0.3808187379961622 -0.0642287659962044 0.3182125503224139 -0.06422876599620439 0.3803903461523804 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 16 16 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 20 20 19 19 21 21 20 20 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 24 24 23 23 25 25 25 25 23 23 26 26 26 26 23 23 27 27 26 26 27 27 28 28 26 26 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 40 40 38 38 41 41 40 40 41 41 42 42 40 40 42 42 43 43 43 43 42 42 44 44 43 43 44 44 45 45 45 45 44 44 46 46 46 46 44 44 47 47 46 46 47 47 48 48 48 48 47 47 49 49

+
+
+
+ + + + 4.336521051638743 20.92591304564571 -1.22683777193248 4.336521051638743 14.42566015890243 1.226837771932479 4.336521051638743 14.42566015890243 -1.22683777193248 4.336521051638743 20.92591304564571 1.226837771932479 -3.98367628281653 14.40293559688007 1.22683777193248 -3.984575438041523 20.9259130456457 1.226837771932479 -3.984575438041523 14.41218903264742 1.226837771932479 -3.981405399448354 20.97427848831552 1.226837771932479 -3.979887768403605 14.36394702872245 1.226837771932479 -3.971949523908057 21.02181638485182 1.226837771932479 -3.968943357351909 14.31672960549691 1.226837771932479 -3.956369604072812 21.06771334866487 1.226837771932479 -3.951929466793871 14.2713446661733 1.226837771932479 -3.934932216690577 21.11118406997879 1.226837771932479 -3.929137209114053 14.22856875964652 1.226837771932479 -3.908004161403004 21.15148475269955 1.226837771932479 -3.900956566160614 14.18913379353699 1.226837771932479 -3.876046184701952 21.18792584097232 1.226837771932479 -3.867869716547619 14.15371451104827 1.226837771932479 -3.83960509642917 21.21988381767338 1.226837771932479 -3.83044278544533 14.1229169459238 1.226837771932479 -3.799304413708416 21.24681187296095 1.226837771932479 -3.78931615802163 14.0972680530416 1.226837771932479 -3.755833692394508 21.2682492603432 1.226837771932479 -3.745193522274203 14.0772066920701 1.226837771932479 -3.709936728581442 21.28382918017844 1.226837771932479 -3.698829828733795 14.06307611845755 1.226837771932479 -3.662398832045144 21.29328505571872 1.226837771932479 -3.651018373051289 14.0551181102362 1.226837771932479 -3.614033389375331 21.29645509431189 1.226837771932479 3.965979002972562 14.0551181102362 1.226837771932479 3.965979002972548 21.29645509431189 1.226837771932479 4.014344445642366 21.29328505571872 1.226837771932479 4.01434444564238 14.05828814882938 1.226837771932479 4.061882342178663 21.28382918017844 1.226837771932479 4.061882342178663 14.06774402436966 1.226837771932479 4.107779305991727 14.0833239442049 1.226837771932479 4.107779305991713 21.2682492603432 1.226837771932479 4.151250027305636 21.24681187296096 1.226837771932479 4.15125002730565 14.10476133158717 1.226837771932479 4.191550710026391 21.21988381767339 1.226837771932479 4.191550710026419 14.13168938687472 1.226837771932479 4.227991798299174 21.18792584097233 1.226837771932479 4.22799179829916 14.16364736357579 1.226837771932479 4.259949775000239 14.20008845184858 1.226837771932479 4.259949775000225 21.15148475269956 1.226837771932479 4.286877830287796 21.11118406997881 1.226837771932479 4.28687783028781 14.24038913456934 1.226837771932479 4.308315217670045 21.06771334866488 1.226837771932479 4.308315217670045 14.28385985588327 1.226837771932479 4.323895137505292 14.32975681969632 1.226837771932479 4.323895137505292 21.02181638485183 1.226837771932479 4.333351013045589 14.37729471623261 1.226837771932479 4.333351013045575 20.97427848831552 1.226837771932479 4.336521051638743 20.92591304564571 1.226837771932479 4.336521051638743 14.42566015890243 1.226837771932479 4.336521051638743 14.42566015890243 -1.22683777193248 4.333351013045589 14.37729471623261 1.226837771932479 4.333351013045589 14.37729471623261 -1.22683777193248 4.336521051638743 14.42566015890243 1.226837771932479 -3.981405399448354 20.97427848831552 -1.22683777193248 -3.984575438041523 14.41218903264742 -1.22683777193248 -3.984575438041523 20.9259130456457 -1.22683777193248 -3.979887768403605 14.36394702872245 -1.22683777193248 -3.971949523908057 21.02181638485182 -1.22683777193248 -3.968943357351909 14.31672960549691 -1.22683777193248 -3.956369604072812 21.06771334866487 -1.22683777193248 -3.951929466793871 14.2713446661733 -1.22683777193248 -3.934932216690577 21.11118406997879 -1.22683777193248 -3.929137209114053 14.22856875964652 -1.22683777193248 -3.908004161403004 21.15148475269955 -1.22683777193248 -3.900956566160614 14.18913379353699 -1.22683777193248 -3.876046184701952 21.18792584097232 -1.22683777193248 -3.867869716547619 14.15371451104827 -1.22683777193248 -3.83960509642917 21.21988381767338 -1.22683777193248 -3.83044278544533 14.1229169459238 -1.22683777193248 -3.799304413708416 21.24681187296095 -1.22683777193248 -3.78931615802163 14.0972680530416 -1.22683777193248 -3.755833692394508 21.2682492603432 -1.22683777193248 -3.745193522274203 14.0772066920701 -1.22683777193248 -3.709936728581442 21.28382918017844 -1.22683777193248 -3.698829828733795 14.06307611845755 -1.22683777193248 -3.662398832045144 21.29328505571872 -1.22683777193248 -3.651018373051289 14.0551181102362 -1.22683777193248 -3.614033389375331 21.29645509431189 -1.22683777193248 3.965979002972562 14.0551181102362 -1.22683777193248 3.965979002972548 21.29645509431189 -1.22683777193248 4.014344445642366 21.29328505571872 -1.22683777193248 4.01434444564238 14.05828814882938 -1.22683777193248 4.061882342178663 21.28382918017844 -1.22683777193248 4.061882342178663 14.06774402436966 -1.22683777193248 4.107779305991713 21.2682492603432 -1.22683777193248 4.107779305991727 14.0833239442049 -1.22683777193248 4.151250027305636 21.24681187296096 -1.22683777193248 4.15125002730565 14.10476133158717 -1.22683777193248 4.191550710026391 21.21988381767339 -1.22683777193248 4.191550710026419 14.13168938687472 -1.22683777193248 4.227991798299174 21.18792584097233 -1.22683777193248 4.22799179829916 14.16364736357579 -1.22683777193248 4.259949775000239 14.20008845184858 -1.22683777193248 4.259949775000225 21.15148475269956 -1.22683777193248 4.286877830287796 21.11118406997881 -1.22683777193248 4.28687783028781 14.24038913456934 -1.22683777193248 4.308315217670045 21.06771334866488 -1.22683777193248 4.308315217670045 14.28385985588327 -1.22683777193248 4.323895137505292 21.02181638485183 -1.22683777193248 4.323895137505292 14.32975681969632 -1.22683777193248 4.333351013045575 20.97427848831552 -1.22683777193248 4.333351013045589 14.37729471623261 -1.22683777193248 4.336521051638743 20.92591304564571 -1.22683777193248 4.336521051638743 14.42566015890243 -1.22683777193248 4.333351013045575 20.97427848831552 -1.22683777193248 4.336521051638743 20.92591304564571 1.226837771932479 4.336521051638743 20.92591304564571 -1.22683777193248 4.333351013045575 20.97427848831552 1.226837771932479 4.323895137505292 14.32975681969632 1.226837771932479 4.323895137505292 14.32975681969632 -1.22683777193248 4.323895137505292 21.02181638485183 -1.22683777193248 4.323895137505292 21.02181638485183 1.226837771932479 4.308315217670045 21.06771334866488 -1.22683777193248 4.308315217670045 21.06771334866488 1.226837771932479 4.286877830287796 21.11118406997881 -1.22683777193248 4.286877830287796 21.11118406997881 1.226837771932479 4.259949775000225 21.15148475269956 -1.22683777193248 4.259949775000225 21.15148475269956 1.226837771932479 4.227991798299174 21.18792584097233 -1.22683777193248 4.227991798299174 21.18792584097233 1.226837771932479 4.191550710026391 21.21988381767339 1.226837771932479 4.191550710026391 21.21988381767339 -1.22683777193248 4.151250027305636 21.24681187296096 1.226837771932479 4.151250027305636 21.24681187296096 -1.22683777193248 4.107779305991713 21.2682492603432 1.226837771932479 4.107779305991713 21.2682492603432 -1.22683777193248 4.061882342178663 21.28382918017844 1.226837771932479 4.061882342178663 21.28382918017844 -1.22683777193248 4.014344445642366 21.29328505571872 1.226837771932479 4.014344445642366 21.29328505571872 -1.22683777193248 3.965979002972548 21.29645509431189 1.226837771932479 3.965979002972548 21.29645509431189 -1.22683777193248 -3.614033389375331 21.29645509431189 1.226837771932479 3.965979002972548 21.29645509431189 -1.22683777193248 -3.614033389375331 21.29645509431189 -1.22683777193248 3.965979002972548 21.29645509431189 1.226837771932479 -3.662398832045144 21.29328505571872 1.226837771932479 -3.614033389375331 21.29645509431189 -1.22683777193248 -3.662398832045144 21.29328505571872 -1.22683777193248 -3.614033389375331 21.29645509431189 1.226837771932479 -3.709936728581442 21.28382918017844 1.226837771932479 -3.709936728581442 21.28382918017844 -1.22683777193248 -3.755833692394508 21.2682492603432 1.226837771932479 -3.755833692394508 21.2682492603432 -1.22683777193248 -3.799304413708416 21.24681187296095 1.226837771932479 -3.799304413708416 21.24681187296095 -1.22683777193248 -3.83960509642917 21.21988381767338 1.226837771932479 -3.83960509642917 21.21988381767338 -1.22683777193248 -3.876046184701952 21.18792584097232 1.226837771932479 -3.876046184701952 21.18792584097232 -1.22683777193248 -3.908004161403004 21.15148475269955 -1.22683777193248 -3.908004161403004 21.15148475269955 1.226837771932479 -3.934932216690577 21.11118406997879 -1.22683777193248 -3.934932216690577 21.11118406997879 1.226837771932479 -3.956369604072812 21.06771334866487 -1.22683777193248 -3.956369604072812 21.06771334866487 1.226837771932479 -3.971949523908057 21.02181638485182 -1.22683777193248 -3.971949523908057 21.02181638485182 1.226837771932479 -3.981405399448354 20.97427848831552 -1.22683777193248 -3.981405399448354 20.97427848831552 1.226837771932479 -3.984575438041523 20.9259130456457 -1.22683777193248 -3.984575438041523 20.9259130456457 1.226837771932479 -3.984575438041523 20.9259130456457 1.226837771932479 -3.984575438041523 14.41218903264742 -1.22683777193248 -3.984575438041523 14.41218903264742 1.226837771932479 -3.984575438041523 20.9259130456457 -1.22683777193248 -3.98367628281653 14.40293559688007 1.22683777193248 -3.979887768403605 14.36394702872245 -1.22683777193248 -3.979887768403605 14.36394702872245 1.226837771932479 -3.984575438041523 14.41218903264742 -1.22683777193248 -3.984575438041523 14.41218903264742 1.226837771932479 -3.968943357351909 14.31672960549691 -1.22683777193248 -3.968943357351909 14.31672960549691 1.226837771932479 -3.951929466793871 14.2713446661733 -1.22683777193248 -3.951929466793871 14.2713446661733 1.226837771932479 -3.929137209114053 14.22856875964652 -1.22683777193248 -3.929137209114053 14.22856875964652 1.226837771932479 -3.900956566160614 14.18913379353699 -1.22683777193248 -3.900956566160614 14.18913379353699 1.226837771932479 -3.867869716547619 14.15371451104827 -1.22683777193248 -3.867869716547619 14.15371451104827 1.226837771932479 -3.83044278544533 14.1229169459238 1.226837771932479 -3.83044278544533 14.1229169459238 -1.22683777193248 -3.78931615802163 14.0972680530416 1.226837771932479 -3.78931615802163 14.0972680530416 -1.22683777193248 -3.745193522274203 14.0772066920701 1.226837771932479 -3.745193522274203 14.0772066920701 -1.22683777193248 -3.698829828733795 14.06307611845755 1.226837771932479 -3.698829828733795 14.06307611845755 -1.22683777193248 -3.651018373051289 14.0551181102362 1.226837771932479 -3.651018373051289 14.0551181102362 -1.22683777193248 3.965979002972562 14.0551181102362 -1.22683777193248 0 14.0551181102362 -0.9618994062348557 -3.651018373051289 14.0551181102362 -1.22683777193248 0.248957885806392 14.0551181102362 -0.9291234787743667 0.4809497031174237 14.0551181102362 -0.8330293216845524 3.965979002972562 14.0551181102362 1.226837771932479 0.6801655929679815 14.0551181102362 -0.6801655929679796 0.8330293216845495 14.0551181102362 -0.4809497031174269 0.9150031055983023 14.0551181102362 -0.2830474822338055 0.929123478774365 14.0551181102362 -0.2489578858063867 0.9618994062348565 14.0551181102362 -2.220446049250313e-016 0.929123478774365 14.0551181102362 0.2489578858063872 0.8330293216845495 14.0551181102362 0.4809497031174272 0.6801655929679815 14.0551181102362 0.6801655929679789 0.4809497031174237 14.0551181102362 0.8330293216845512 0.2489578858063849 14.0551181102362 0.9291234787743654 0 14.0551181102362 0.9618994062348538 -0.4809497031174248 14.0551181102362 -0.8330293216845524 -3.651018373051289 14.0551181102362 1.226837771932479 -0.2489578858063836 14.0551181102362 -0.9291234787743667 -0.6801655929679813 14.0551181102362 -0.6801655929679796 -0.8330293216845492 14.0551181102362 -0.4809497031174278 -0.9291234787743649 14.0551181102362 -0.2489578858063871 -0.9618994062348564 14.0551181102362 -4.440892098500626e-016 -0.9291234787743649 14.0551181102362 0.2489578858063863 -0.9150031055983023 14.0551181102362 0.2830474822338065 -0.8330293216845492 14.0551181102362 0.4809497031174264 -0.6801655929679813 14.0551181102362 0.6801655929679789 -0.4809497031174248 14.0551181102362 0.8330293216845508 -0.2489578858063836 14.0551181102362 0.929123478774365 4.01434444564238 14.05828814882938 1.226837771932479 3.965979002972562 14.0551181102362 -1.22683777193248 4.01434444564238 14.05828814882938 -1.22683777193248 3.965979002972562 14.0551181102362 1.226837771932479 4.061882342178663 14.06774402436966 1.226837771932479 4.061882342178663 14.06774402436966 -1.22683777193248 4.107779305991727 14.0833239442049 1.226837771932479 4.107779305991727 14.0833239442049 -1.22683777193248 4.15125002730565 14.10476133158717 1.226837771932479 4.15125002730565 14.10476133158717 -1.22683777193248 4.191550710026419 14.13168938687472 1.226837771932479 4.191550710026419 14.13168938687472 -1.22683777193248 4.22799179829916 14.16364736357579 1.226837771932479 4.22799179829916 14.16364736357579 -1.22683777193248 4.259949775000239 14.20008845184858 -1.22683777193248 4.259949775000239 14.20008845184858 1.226837771932479 4.28687783028781 14.24038913456934 -1.22683777193248 4.28687783028781 14.24038913456934 1.226837771932479 4.308315217670045 14.28385985588327 -1.22683777193248 4.308315217670045 14.28385985588327 1.226837771932479 + + + + + + + + + + 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 4.300417074680833e-018 -5.915144048212544e-017 1 0.9978589232386272 -0.0654031292297835 0 0.9914448613738149 -0.1305261922200165 0 0.9914448613738149 -0.1305261922200165 0 0.9978589232386272 -0.0654031292297835 0 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 3.707875111323739e-021 6.37041699851231e-017 -1 0.9914448613738179 0.1305261922199955 0 0.9978589232386074 0.06540312923008501 -0 0.9978589232386074 0.06540312923008501 -0 0.9914448613738179 0.1305261922199955 0 0.9659258262890084 -0.2588190451027445 0 0.9659258262890084 -0.2588190451027445 0 0.965925826289053 0.258819045102578 0 0.965925826289053 0.258819045102578 0 0.9238795325112421 0.3826834323651973 0 0.9238795325112421 0.3826834323651973 0 0.8660254037844077 0.5000000000000536 0 0.8660254037844077 0.5000000000000536 0 0.7933533402912777 0.6087614290086653 0 0.7933533402912777 0.6087614290086653 0 0.7071067811865438 0.7071067811865511 0 0.7071067811865438 0.7071067811865511 0 0.6087614290086229 0.7933533402913102 0 0.6087614290086229 0.7933533402913102 0 0.499999999999983 0.8660254037844486 0 0.499999999999983 0.8660254037844486 0 0.3826834323651025 0.9238795325112816 0 0.3826834323651025 0.9238795325112816 0 0.2588190451025265 0.9659258262890667 0 0.2588190451025265 0.9659258262890667 0 0.1305261922200078 0.9914448613738162 0 0.1305261922200078 0.9914448613738162 0 0.06540312923007782 0.9978589232386078 -0 0.06540312923007782 0.9978589232386078 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0.130526192220009 0.9914448613738159 0 -0.06540312923008382 0.9978589232386074 -0 -0.130526192220009 0.9914448613738159 0 -0.06540312923008382 0.9978589232386074 -0 -0.2588190451024735 0.965925826289081 0 -0.2588190451024735 0.965925826289081 0 -0.3826834323651778 0.9238795325112503 0 -0.3826834323651778 0.9238795325112503 0 -0.5000000000001039 0.8660254037843786 0 -0.5000000000001039 0.8660254037843786 0 -0.6087614290086315 0.7933533402913034 0 -0.6087614290086315 0.7933533402913034 0 -0.7071067811865384 0.7071067811865567 0 -0.7071067811865384 0.7071067811865567 0 -0.7933533402913119 0.6087614290086207 0 -0.7933533402913119 0.6087614290086207 0 -0.866025403784476 0.4999999999999354 0 -0.866025403784476 0.4999999999999354 0 -0.9238795325112743 0.3826834323651198 0 -0.9238795325112743 0.3826834323651198 0 -0.9659258262890202 0.2588190451027001 0 -0.9659258262890202 0.2588190451027001 0 -0.991444861373799 0.130526192220138 0 -0.991444861373799 0.130526192220138 0 -0.9978589232386074 0.06540312923008501 0 -0.9978589232386074 0.06540312923008501 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9953121781612281 -0.09671436296616837 5.858798327943037e-016 -0.9868557164067743 -0.1616038211035629 2.935684690240544e-016 -0.9868557164067743 -0.1616038211035624 2.935684690240566e-016 -0.9953121781612281 -0.09671436296616837 5.858798327943037e-016 -0.9953121781612281 -0.09671436296616837 5.858798327943037e-016 -0.9573194975320817 -0.2890317969444237 0 -0.9573194975320817 -0.2890317969444237 0 -0.9114032766354122 -0.4115143586051823 0 -0.9114032766354122 -0.4115143586051823 0 -0.8498926929868138 -0.5269557954967583 0 -0.8498926929868138 -0.5269557954967583 0 -0.7738402097265843 -0.6333808726274547 0 -0.7738402097265843 -0.6333808726274547 0 -0.6845471059288371 -0.7289686274212721 0 -0.6845471059288371 -0.7289686274212721 0 -0.5835412113562485 -0.8120835268917123 0 -0.5835412113562485 -0.8120835268917123 0 -0.4725507648689741 -0.8813034520650351 0 -0.4725507648689741 -0.8813034520650351 0 -0.3534748437792569 -0.9354440308298675 0 -0.3534748437792569 -0.9354440308298675 0 -0.2283508701109189 -0.9735789028730986 0 -0.2283508701109189 -0.9735789028730986 0 -0.1641868465691506 -0.9864292571764476 0 -0.1641868465691506 -0.9864292571764476 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.1305261922201096 -0.9914448613738028 0 0.06540312923036916 -0.9978589232385887 0 0.1305261922201096 -0.9914448613738028 0 0.06540312923036916 -0.9978589232385887 0 0.2588190451024391 -0.9659258262890902 0 0.2588190451024391 -0.9659258262890902 0 0.3826834323653019 -0.923879532511199 0 0.3826834323653019 -0.923879532511199 0 0.4999999999999819 -0.8660254037844491 0 0.4999999999999819 -0.8660254037844491 0 0.6087614290087305 -0.7933533402912275 0 0.6087614290087305 -0.7933533402912275 0 0.7071067811867735 -0.7071067811863218 0 0.7071067811867735 -0.7071067811863218 0 0.7933533402912565 -0.6087614290086927 0 0.7933533402912565 -0.6087614290086927 0 0.8660254037844938 -0.4999999999999046 0 0.8660254037844938 -0.4999999999999046 0 0.9238795325112926 -0.3826834323650759 0 0.9238795325112926 -0.3826834323650759 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 7 4 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 32 30 33 32 33 34 34 33 35 34 35 36 34 36 37 37 36 38 38 36 39 38 39 40 40 39 41 40 41 42 42 41 43 42 43 44 42 44 45 45 44 46 46 44 47 46 47 48 48 47 49 48 49 50 48 50 51 51 50 52 51 52 53 53 52 54 54 52 55 56 57 58 57 56 59 60 61 62 61 60 63 63 60 64 63 64 65 65 64 66 65 66 67 67 66 68 67 68 69 69 68 70 69 70 71 71 70 72 71 72 73 73 72 74 73 74 75 75 74 76 75 76 77 77 76 78 77 78 79 79 78 80 79 80 81 81 80 82 81 82 83 83 82 84 83 84 85 85 84 86 85 86 87 85 87 88 88 87 89 88 89 90 90 89 91 90 91 92 92 91 93 92 93 94 94 93 95 94 95 96 96 95 97 96 97 98 98 97 99 99 97 100 99 100 101 99 101 102 102 101 103 102 103 104 104 103 105 104 105 106 106 105 107 106 107 108 108 107 109 108 109 110 111 112 113 112 111 114 58 115 116 115 58 57 117 114 111 114 117 118 119 118 117 118 119 120 121 120 119 120 121 122 123 122 121 122 123 124 125 124 123 124 125 126 127 125 128 125 127 126 129 128 130 128 129 127 131 130 132 130 131 129 133 132 134 132 133 131 135 134 136 134 135 133 137 136 138 136 137 135 139 140 141 140 139 142 143 144 145 144 143 146 147 145 148 145 147 143 149 148 150 148 149 147 151 150 152 150 151 149 153 152 154 152 153 151 155 154 156 154 155 153 155 157 158 157 155 156 158 159 160 159 158 157 160 161 162 161 160 159 162 163 164 163 162 161 164 165 166 165 164 163 166 167 168 167 166 165 169 170 171 170 169 172 173 174 175 174 173 176 176 173 177 175 178 179 178 175 174 179 180 181 180 179 178 181 182 183 182 181 180 183 184 185 184 183 182 185 186 187 186 185 184 188 186 189 186 188 187 190 189 191 189 190 188 192 191 193 191 192 190 194 193 195 193 194 192 196 195 197 195 196 194 198 199 200 199 198 201 201 198 202 202 198 203 202 203 204 204 203 205 205 203 206 206 203 207 207 203 208 208 203 209 209 203 210 210 203 211 211 203 212 212 203 213 213 203 214 200 215 216 215 200 217 217 200 199 216 215 218 216 218 219 216 219 220 216 220 221 216 221 222 216 222 223 216 223 224 216 224 225 216 225 226 216 226 227 216 227 214 216 214 203 228 229 230 229 228 231 232 230 233 230 232 228 234 233 235 233 234 232 236 235 237 235 236 234 238 237 239 237 238 236 240 239 241 239 240 238 242 240 241 240 242 243 244 243 242 243 244 245 246 245 244 245 246 247 116 247 246 247 116 115

+
+
+
+ + + + -1.925361975877098 8.464566929133859 0.6336272275916833 -1.979999782201047 0 0.5033079051575167 -1.925361975877098 0 0.6336272275916833 -1.979999782201047 8.464566929133859 0.5033079051575167 -1.783362903228357 8.464566929133859 0.9723162083341679 -1.925361975877098 0 0.6336272275916833 -1.783362903228357 0 0.9723162083341679 -1.925361975877098 8.464566929133859 0.6336272275916833 -1.925361975877098 8.464566929133859 0.6336272275916833 -1.391790358907926 9.015748031496067 0.480539228921264 -1.979999782201047 8.464566929133859 0.5033079051575167 -2.047068959729108 0 -8.311407118100078e-016 -2.047068959729108 8.464566929133859 -8.311407118100078e-016 0.4307008235655168 0 -1.878370673898857 -0.5881811385261369 0 -1.878370673898857 -0.07874015748031514 0 -1.944632416668323 0.9054242436440817 0 -1.684101073857492 -1.062904558604711 0 -1.684101073857495 -1.470558801155224 0 -1.375062768741364 1.313078486194594 0 -1.375062768741363 -1.783362903228357 0 -0.9723162083341714 1.625882588267746 0 -0.9723162083341397 -1.979999782201047 0 -0.5033079051575021 1.76788166091646 0 -0.6336272275916925 1.822519467240419 0 -0.5033079051575071 1.889588644768482 0 8.532063944244329e-016 -2.047068959729108 0 -8.311407118100078e-016 -1.979999782201047 0 0.5033079051575167 1.822519467240419 0 0.5033079051575041 1.625882588267727 0 0.9723162083341703 -1.925361975877098 0 0.6336272275916833 -1.783362903228357 0 0.9723162083341679 -1.470558801155224 0 1.375062768741361 1.313078486194594 0 1.375062768741363 -1.062904558604711 0 1.684101073857492 0.9054242436440817 0 1.684101073857492 -0.5881811385261369 0 1.878370673898856 0.4307008235655077 0 1.878370673898856 -0.07874015748031514 0 1.944632416668323 -1.470558801155224 8.464566929133859 1.375062768741361 -1.470558801155224 0 1.375062768741361 -1.783362903228357 8.464566929133859 0.9723162083341679 -1.28381629328986 9.015748031496067 0.7412116825209396 -1.431911013788287 9.015748031496067 0.3836793997778125 -1.482423365041874 9.015748031496067 0 -2.047068959729108 8.464566929133859 -8.311407118100078e-016 -1.979999782201047 0 -0.5033079051575021 -1.979999782201047 8.464566929133859 -0.5033079051575021 0.9054242436440817 0 1.684101073857492 0.4307008235655077 8.464566929133859 1.878370673898856 0.4307008235655077 0 1.878370673898856 0.9054242436440817 8.464566929133859 1.684101073857492 -0.07874015748031514 8.464566929133859 1.944632416668323 -0.07874015748031514 0 1.944632416668323 -0.5881811385261369 8.464566929133859 1.878370673898856 -0.5881811385261369 0 1.878370673898856 -1.062904558604711 8.464566929133859 1.684101073857492 -1.062904558604711 0 1.684101073857492 -1.783362903228357 0 -0.9723162083341714 -1.783362903228357 8.464566929133859 -0.9723162083341714 -1.470558801155224 0 -1.375062768741364 -1.470558801155224 8.464566929133859 -1.375062768741364 -1.062904558604711 8.464566929133859 -1.684101073857495 -1.062904558604711 0 -1.684101073857495 -0.5881811385261369 8.464566929133859 -1.878370673898857 -0.5881811385261369 0 -1.878370673898857 -0.07874015748031514 8.464566929133859 -1.944632416668323 -0.07874015748031514 0 -1.944632416668323 0.4307008235655168 8.464566929133859 -1.878370673898857 0.4307008235655168 0 -1.878370673898857 0.9054242436440817 8.464566929133859 -1.684101073857492 0.9054242436440817 0 -1.684101073857492 1.313078486194594 8.464566929133859 -1.375062768741363 1.313078486194594 0 -1.375062768741363 1.625882588267746 0 -0.9723162083341397 1.625882588267746 8.464566929133859 -0.9723162083341397 1.76788166091646 0 -0.6336272275916925 1.76788166091646 8.464566929133859 -0.6336272275916925 1.76788166091646 8.464566929133859 -0.6336272275916925 1.822519467240419 0 -0.5033079051575071 1.76788166091646 0 -0.6336272275916925 1.822519467240419 8.464566929133859 -0.5033079051575071 1.889588644768482 0 8.532063944244329e-016 1.889588644768482 8.464566929133859 8.532063944244329e-016 1.822519467240419 0 0.5033079051575041 1.822519467240419 8.464566929133859 0.5033079051575041 1.625882588267727 0 0.9723162083341703 1.625882588267727 8.464566929133859 0.9723162083341703 1.313078486194594 0 1.375062768741363 1.313078486194594 8.464566929133859 1.375062768741363 -1.470558801155224 8.464566929133859 1.375062768741361 -1.048231614010476 9.015748031496067 1.048231614010499 -1.783362903228357 8.464566929133859 0.9723162083341679 -1.28381629328986 9.015748031496067 0.7412116825209396 -0.3836793997777976 9.015748031496067 -1.431911013788291 0.383679399777805 9.015748031496067 -1.431911013788291 0 9.015748031496067 -1.482423365041872 -0.7412116825209407 9.015748031496067 -1.283816293289871 0.7412116825209336 9.015748031496067 -1.283816293289871 1.048231614010483 9.015748031496067 -1.048231614010494 -1.048231614010483 9.015748031496067 -1.048231614010495 0 9.015748031496067 -0.9618994062348557 -0.2489578858063836 9.015748031496067 -0.9291234787743667 -1.283816293289867 9.015748031496067 -0.7412116825209403 -0.4809497031174248 9.015748031496067 -0.8330293216845524 -0.6801655929679813 9.015748031496067 -0.6801655929679796 -1.431911013788287 9.015748031496067 -0.3836793997778019 -0.8330293216845492 9.015748031496067 -0.4809497031174278 -0.9291234787743649 9.015748031496067 -0.2489578858063871 -1.482423365041874 9.015748031496067 0 -0.9618994062348564 9.015748031496067 -4.440892098500626e-016 -0.9291234787743649 9.015748031496067 0.2489578858063863 -1.431911013788287 9.015748031496067 0.3836793997778125 -0.9150031055983023 9.015748031496067 0.2830474822338065 -0.8330293216845492 9.015748031496067 0.4809497031174264 -1.391790358907926 9.015748031496067 0.480539228921264 -1.28381629328986 9.015748031496067 0.7412116825209396 -0.6801655929679813 9.015748031496067 0.6801655929679789 -0.4809497031174248 9.015748031496067 0.8330293216845508 -1.048231614010476 9.015748031496067 1.048231614010499 -0.2489578858063836 9.015748031496067 0.929123478774365 0 9.015748031496067 0.9618994062348538 1.048231614010483 9.015748031496067 1.048231614010493 0.7412116825209336 9.015748031496067 1.283816293289871 -0.7412116825209407 9.015748031496067 1.28381629328987 -0.3836793997778047 9.015748031496067 1.43191101378829 0.3836793997777979 9.015748031496067 1.431911013788291 0 9.015748031496067 1.482423365041872 0.248957885806392 9.015748031496067 -0.9291234787743667 1.283816293289873 9.015748031496067 -0.7412116825209199 0.4809497031174237 9.015748031496067 -0.8330293216845524 0.6801655929679815 9.015748031496067 -0.6801655929679796 1.391790358907921 9.015748031496067 -0.4805392289212703 0.8330293216845495 9.015748031496067 -0.4809497031174269 0.9150031055983023 9.015748031496067 -0.2830474822338055 1.431911013788288 9.015748031496067 -0.383679399777801 1.482423365041877 9.015748031496067 1.554312234475219e-015 0.929123478774365 9.015748031496067 -0.2489578858063867 0.9618994062348565 9.015748031496067 -2.220446049250313e-016 0.929123478774365 9.015748031496067 0.2489578858063872 1.431911013788288 9.015748031496067 0.3836793997778045 0.8330293216845495 9.015748031496067 0.4809497031174272 1.283816293289859 9.015748031496067 0.7412116825209434 0.6801655929679815 9.015748031496067 0.6801655929679789 0.4809497031174237 9.015748031496067 0.8330293216845512 0.2489578858063849 9.015748031496067 0.9291234787743654 -1.482423365041874 9.015748031496067 0 -1.431911013788287 9.015748031496067 -0.3836793997778019 -2.047068959729108 8.464566929133859 -8.311407118100078e-016 -1.979999782201047 8.464566929133859 -0.5033079051575021 0.9054242436440817 8.464566929133859 1.684101073857492 0.3836793997777979 9.015748031496067 1.431911013788291 0.4307008235655077 8.464566929133859 1.878370673898856 0 9.015748031496067 1.482423365041872 -0.07874015748031514 8.464566929133859 1.944632416668323 -0.5881811385261369 8.464566929133859 1.878370673898856 -0.3836793997778047 9.015748031496067 1.43191101378829 -1.062904558604711 8.464566929133859 1.684101073857492 -0.7412116825209407 9.015748031496067 1.28381629328987 -1.283816293289867 9.015748031496067 -0.7412116825209403 -1.783362903228357 8.464566929133859 -0.9723162083341714 -1.048231614010483 9.015748031496067 -1.048231614010495 -1.470558801155224 8.464566929133859 -1.375062768741364 -0.7412116825209407 9.015748031496067 -1.283816293289871 -1.062904558604711 8.464566929133859 -1.684101073857495 -0.3836793997777976 9.015748031496067 -1.431911013788291 -0.5881811385261369 8.464566929133859 -1.878370673898857 0 9.015748031496067 -1.482423365041872 -0.07874015748031514 8.464566929133859 -1.944632416668323 0.4307008235655168 8.464566929133859 -1.878370673898857 0.9054242436440817 8.464566929133859 -1.684101073857492 0.383679399777805 9.015748031496067 -1.431911013788291 1.313078486194594 8.464566929133859 -1.375062768741363 0.7412116825209336 9.015748031496067 -1.283816293289871 1.048231614010483 9.015748031496067 -1.048231614010494 1.625882588267746 8.464566929133859 -0.9723162083341397 1.283816293289873 9.015748031496067 -0.7412116825209199 1.76788166091646 8.464566929133859 -0.6336272275916925 1.391790358907921 9.015748031496067 -0.4805392289212703 1.822519467240419 8.464566929133859 -0.5033079051575071 1.431911013788288 9.015748031496067 -0.383679399777801 1.889588644768482 8.464566929133859 8.532063944244329e-016 1.482423365041877 9.015748031496067 1.554312234475219e-015 1.822519467240419 8.464566929133859 0.5033079051575041 1.283816293289859 9.015748031496067 0.7412116825209434 1.625882588267727 8.464566929133859 0.9723162083341703 1.048231614010483 9.015748031496067 1.048231614010493 1.313078486194594 8.464566929133859 1.375062768741363 0.7412116825209336 9.015748031496067 1.283816293289871 1.431911013788288 9.015748031496067 0.3836793997778045 + + + + + + + + + + -0.9222252502952645 0 0.3866530585910796 -0.9651611001167182 0 0.2616563601777837 -0.9222252502952645 0 0.3866530585910796 -0.9651611001167182 0 0.2616563601777837 -0.8634744487151208 0 0.5043925816426311 -0.9222252502952602 0 0.38665305859109 -0.8634744487151208 0 0.5043925816426311 -0.9222252502952602 0 0.38665305859109 -0.6524332885953611 0.7068943383828954 0.273187112241502 -0.6528620341633181 0.7074901913012489 0.270608191968863 -0.67735905786961 0.7129458654008288 0.1813639978878319 -0.9999999999999999 0 -2.103461149605589e-015 -0.9999999999999999 0 -2.103461149605589e-015 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.7029585082110135 0 0.7112308596607337 -0.7029585082110135 0 0.7112308596607337 -0.6527801367795563 0.7063812595962551 0.2736852373024022 -0.6529891505322774 0.7070717753090481 0.2713939458581302 -0.6768349913849168 0.712879415735472 0.1835683334827433 -0.6958862047238174 0.7122326580518353 0.0920164706968193 -0.695516757455536 0.7125071441044114 0.09268230520823582 -0.9651611001167185 0 -0.2616563601777831 -0.9651611001167185 0 -0.2616563601777831 0.495618406573377 0 0.8685403819429853 0.2560060840294308 0 0.9666751703338181 0.2560060840294308 0 0.9666751703338181 0.495618406573377 0 0.8685403819429853 -1.514579807304056e-016 0 1 -1.514579807304056e-016 0 1 -0.2560060840294315 0 0.9666751703338179 -0.2560060840294315 0 0.9666751703338179 -0.4956184065733781 0 0.8685403819429848 -0.4956184065733781 0 0.8685403819429848 -0.8634744487151249 0 -0.504392581642624 -0.8634744487151249 0 -0.504392581642624 -0.7029585082110134 0 -0.7112308596607339 -0.7029585082110134 0 -0.7112308596607339 -0.4956184065733762 0 -0.8685403819429858 -0.4956184065733762 0 -0.8685403819429858 -0.2560060840294291 0 -0.9666751703338185 -0.2560060840294291 0 -0.9666751703338185 -1.274028896732235e-015 0 -1 -1.274028896732235e-015 0 -1 0.2560060840294339 0 -0.9666751703338172 0.2560060840294339 0 -0.9666751703338172 0.4956184065733802 0 -0.8685403819429834 0.4956184065733802 0 -0.8685403819429834 0.7029585082110155 0 -0.7112308596607319 0.7029585082110155 0 -0.7112308596607319 0.8634744487151302 0 -0.5043925816426149 0.8634744487151302 0 -0.5043925816426149 0.9222252502952714 -0 -0.3866530585910631 0.9222252502952714 -0 -0.3866530585910631 0.9222252502952569 -0 -0.3866530585910977 0.965161100116715 0 -0.2616563601777958 0.9222252502952569 -0 -0.3866530585910977 0.965161100116715 0 -0.2616563601777958 1 0 6.149949971304479e-016 1 0 6.149949971304479e-016 0.9651611001167172 0 0.2616563601777878 0.9651611001167172 0 0.2616563601777878 0.8634744487151234 0 0.5043925816426268 0.8634744487151234 0 0.5043925816426268 0.7029585082110134 0 0.711230859660734 0.7029585082110134 0 0.711230859660734 -0.5111151250827924 0.6925225601586134 0.5090911829750749 -0.5050289461943278 0.6931090486308255 0.514339975319748 -0.5675281820828995 0.6964452976937111 0.4391761717830301 -0.5682456857918998 0.6978355545674408 0.4360302505107254 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0.6955882614958354 0.712580394876589 -0.09157593191841378 -0.6766289135106639 0.7130312722323986 -0.1837381784497329 -0.6958091149009213 0.7122594831487282 -0.0923910400715513 -0.6777560707386288 0.7125760385761778 -0.1813342158116234 0.3874392962523859 0.6139952358434436 0.6876777167256549 0.2075839823645708 0.6269507264292457 0.750893918536771 0.1939763816432534 0.627222802624507 0.7542975004813748 0.007500423028916298 0.6423091314933227 0.7664089791062477 -0.006364883797432481 0.643074287221015 0.765777349736481 -0.198696382320986 0.6601823891358526 0.7243472652860851 -0.1865816143881681 0.6597346211176554 0.7279680836898337 -0.3702919640699069 0.677179785642846 0.6358548570719262 -0.3610591590743343 0.6773625698055464 0.6409494774745985 -0.6114995403572023 0.7053794405208838 -0.3584803439986293 -0.6147585696804279 0.7047003541881854 -0.3542164759176519 -0.5050289461943274 0.6931090486308248 -0.5143399753197493 -0.5111151250827918 0.6925225601586135 -0.5090911829750756 -0.361059159074331 0.6773625698055477 -0.6409494774745993 -0.3702919640699046 0.6771797856428478 -0.6358548570719258 -0.1865816143881661 0.6597346211176565 -0.7279680836898332 -0.1986963823209847 0.6601823891358538 -0.7243472652860844 0.007500423028915253 0.6423091314933234 -0.766408979106247 -0.006364883797433302 0.6430742872210152 -0.7657773497364808 0.1939763816432558 0.627222802624508 -0.7542975004813735 0.3874392962523883 0.6139952358434432 -0.6876777167256538 0.2075839823645734 0.6269507264292462 -0.7508939185367698 0.5580019323324017 0.6042452467917472 -0.5687895263125776 0.3986033211660927 0.6145356605359472 -0.6807799308770842 0.5652966163044468 0.6052959759708505 -0.5604074562925074 0.6912189343326179 0.5979673386710613 -0.4057726539612152 0.6947115475231506 0.5989614211938515 -0.3982726222820631 0.7429643216057414 0.5926759069898121 -0.3110293974767079 0.7435748464559432 0.5933664504072079 -0.3082413068509326 0.7753992010303746 0.5950667903426626 -0.2113092380203431 0.7763601836023366 0.595416449130206 -0.2067465052234818 0.8044796808356202 0.5939801394328534 0.0001925667333421602 0.804504178497591 0.5939469242196831 0.0002792667074009 0.7756600181682932 0.5949088051285441 0.2107962281344021 0.6945505841277383 0.5990703724962089 0.3983894763733988 0.6912189343326122 0.5979673386710614 0.405772653961225 0.5652966163044447 0.6052959759708506 0.5604074562925094 0.5580019323323999 0.6042452467917476 0.5687895263125791 0.3986033211660913 0.6145356605359481 0.6807799308770844 0.7766012832166183 0.5951810497776406 0.2065186792808041 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 3 11 1 11 3 12 13 14 15 14 13 16 14 16 17 17 16 18 18 16 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 22 24 25 22 25 26 26 25 27 27 25 28 27 28 29 27 29 30 30 29 31 31 29 32 32 29 33 32 33 34 34 33 35 34 35 36 36 35 37 36 37 38 39 6 40 6 39 4 41 42 8 42 9 8 10 9 43 10 44 45 12 46 11 46 12 47 48 49 50 49 48 51 50 52 53 52 50 49 53 54 55 54 53 52 55 56 57 56 55 54 57 39 40 39 57 56 47 58 46 58 47 59 59 60 58 60 59 61 62 60 61 60 62 63 64 63 62 63 64 65 66 65 64 65 66 67 68 67 66 67 68 69 70 69 68 69 70 71 72 71 70 71 72 73 72 74 73 74 72 75 75 76 74 76 75 77 78 79 80 79 78 81 81 82 79 82 81 83 83 84 82 84 83 85 85 86 84 86 85 87 87 88 86 88 87 89 88 51 48 51 88 89 90 91 92 91 93 92 94 95 96 95 94 97 95 97 98 98 97 99 99 97 100 99 100 101 101 100 102 102 100 103 102 103 104 104 103 105 105 103 106 105 106 107 107 106 108 108 106 109 108 109 110 110 109 111 111 109 112 111 112 113 113 112 114 114 112 115 114 115 116 114 116 117 117 116 118 118 116 119 118 119 120 120 119 121 121 119 122 122 119 123 123 119 124 123 124 125 123 125 126 126 125 127 99 128 129 128 99 101 129 128 130 129 130 131 129 131 132 132 131 133 132 133 134 132 134 135 135 134 136 136 134 137 136 137 138 136 138 139 136 139 140 140 139 141 140 141 142 142 141 143 142 143 144 142 144 122 122 144 145 122 145 121 10 43 44 146 147 148 148 147 149 150 151 152 152 153 154 153 155 154 156 157 155 157 158 90 149 159 160 160 161 162 163 164 162 165 166 164 167 168 166 169 168 167 170 169 171 172 170 173 174 175 172 176 177 175 178 179 177 180 181 179 182 183 181 184 185 183 186 187 185 187 188 150 90 158 91 156 158 157 153 156 155 152 151 153 150 188 151 187 186 188 186 185 184 184 183 189 189 183 182 182 181 180 180 179 178 178 177 176 176 175 174 172 173 174 170 171 173 169 167 171 167 166 165 165 164 163 161 163 162 159 161 160 147 159 149

+
+
+
+ + + + -0.9291234787743649 14.0551181102362 0.2489578858063863 -0.9618994062348564 9.015748031496067 -4.440892098500626e-016 -0.9291234787743649 9.015748031496067 0.2489578858063863 -0.9618994062348564 14.0551181102362 -4.440892098500626e-016 -0.9150031055983023 14.0551181102362 0.2830474822338065 -0.9150031055983023 9.015748031496067 0.2830474822338065 -0.9291234787743649 9.015748031496067 -0.2489578858063871 -0.9291234787743649 14.0551181102362 -0.2489578858063871 -0.8330293216845492 14.0551181102362 0.4809497031174264 -0.9150031055983023 9.015748031496067 0.2830474822338065 -0.8330293216845492 9.015748031496067 0.4809497031174264 -0.9150031055983023 14.0551181102362 0.2830474822338065 -0.8330293216845492 9.015748031496067 -0.4809497031174278 -0.8330293216845492 14.0551181102362 -0.4809497031174278 -0.6801655929679813 14.0551181102362 0.6801655929679789 -0.6801655929679813 9.015748031496067 0.6801655929679789 -0.6801655929679813 9.015748031496067 -0.6801655929679796 -0.6801655929679813 14.0551181102362 -0.6801655929679796 -0.4809497031174248 9.015748031496067 0.8330293216845508 -0.4809497031174248 14.0551181102362 0.8330293216845508 -0.4809497031174248 14.0551181102362 -0.8330293216845524 -0.4809497031174248 9.015748031496067 -0.8330293216845524 -0.2489578858063836 9.015748031496067 0.929123478774365 -0.2489578858063836 14.0551181102362 0.929123478774365 -0.2489578858063836 14.0551181102362 -0.9291234787743667 -0.2489578858063836 9.015748031496067 -0.9291234787743667 0 9.015748031496067 0.9618994062348538 0 14.0551181102362 0.9618994062348538 0 14.0551181102362 -0.9618994062348557 0 9.015748031496067 -0.9618994062348557 0.2489578858063849 9.015748031496067 0.9291234787743654 0.2489578858063849 14.0551181102362 0.9291234787743654 0.248957885806392 14.0551181102362 -0.9291234787743667 0.248957885806392 9.015748031496067 -0.9291234787743667 0.4809497031174237 9.015748031496067 0.8330293216845512 0.4809497031174237 14.0551181102362 0.8330293216845512 0.4809497031174237 14.0551181102362 -0.8330293216845524 0.4809497031174237 9.015748031496067 -0.8330293216845524 0.6801655929679815 9.015748031496067 0.6801655929679789 0.6801655929679815 14.0551181102362 0.6801655929679789 0.6801655929679815 14.0551181102362 -0.6801655929679796 0.6801655929679815 9.015748031496067 -0.6801655929679796 0.8330293216845495 14.0551181102362 0.4809497031174272 0.8330293216845495 9.015748031496067 0.4809497031174272 0.8330293216845495 9.015748031496067 -0.4809497031174269 0.8330293216845495 14.0551181102362 -0.4809497031174269 0.929123478774365 14.0551181102362 0.2489578858063872 0.929123478774365 9.015748031496067 0.2489578858063872 0.9150031055983023 9.015748031496067 -0.2830474822338055 0.9150031055983023 14.0551181102362 -0.2830474822338055 0.9618994062348565 14.0551181102362 -2.220446049250313e-016 0.9618994062348565 9.015748031496067 -2.220446049250313e-016 0.9150031055983023 14.0551181102362 -0.2830474822338055 0.929123478774365 9.015748031496067 -0.2489578858063867 0.9150031055983023 9.015748031496067 -0.2830474822338055 0.929123478774365 14.0551181102362 -0.2489578858063867 + + + + + + + + + + -0.9659258262890678 0 0.2588190451025227 -1 0 -4.45555494782346e-017 -0.9659258262890678 0 0.2588190451025227 -1 0 -4.45555494782346e-017 -0.92387953251129 0 0.3826834323650825 -0.92387953251129 0 0.3826834323650825 -0.9659258262890661 0 -0.2588190451025286 -0.9659258262890661 0 -0.2588190451025286 -0.8660254037844406 0 0.4999999999999968 -0.9238795325112839 0 0.3826834323650969 -0.8660254037844406 0 0.4999999999999968 -0.9238795325112839 0 0.3826834323650969 -0.8660254037844409 0 -0.499999999999996 -0.8660254037844409 0 -0.499999999999996 -0.7071067811865484 0 0.7071067811865466 -0.7071067811865484 0 0.7071067811865466 -0.7071067811865488 0 -0.7071067811865462 -0.7071067811865488 0 -0.7071067811865462 -0.499999999999994 -7.493747219374589e-034 0.8660254037844423 -0.499999999999994 -7.493747219374589e-034 0.8660254037844423 -0.4999999999999954 0 -0.8660254037844414 -0.4999999999999954 0 -0.8660254037844414 -0.2588190451025214 -7.493747219374592e-034 0.9659258262890682 -0.2588190451025214 -7.493747219374592e-034 0.9659258262890682 -0.258819045102522 0 -0.965925826289068 -0.258819045102522 0 -0.965925826289068 -1.176266506225392e-015 0 1 -1.176266506225392e-015 0 1 -2.165399704642198e-015 0 -1 -2.165399704642198e-015 0 -1 0.258819045102522 -1.522257965794536e-032 0.9659258262890679 0.258819045102522 -1.522257965794536e-032 0.9659258262890679 0.2588190451025268 0 -0.9659258262890667 0.2588190451025268 0 -0.9659258262890667 0.4999999999999947 -1.522257965794535e-032 0.8660254037844417 0.4999999999999947 -1.522257965794535e-032 0.8660254037844417 0.5000000000000003 0 -0.8660254037844386 0.5000000000000003 0 -0.8660254037844386 0.7071067811865471 0 0.707106781186548 0.7071067811865471 0 0.707106781186548 0.7071067811865486 0 -0.7071067811865466 0.7071067811865486 0 -0.7071067811865466 0.8660254037844407 0 0.4999999999999965 0.8660254037844407 0 0.4999999999999965 0.8660254037844417 0 -0.4999999999999948 0.8660254037844417 0 -0.4999999999999948 0.9659258262890662 0 0.2588190451025288 0.9659258262890662 0 0.2588190451025288 0.9238795325112854 -0 -0.3826834323650936 0.9238795325112854 -0 -0.3826834323650936 1 0 -2.584221869737607e-016 1 0 -2.584221869737607e-016 0.9238795325112835 -0 -0.3826834323650978 0.9659258262890655 0 -0.2588190451025308 0.9238795325112835 -0 -0.3826834323650978 0.9659258262890655 0 -0.2588190451025308 + + + + + + + + + + -0.260279965004374 0.002325056792491714 -0.1669582968795568 -0.00232505679249215 -0.1669582968795568 0.002325056792491714 -0.260279965004374 -0.00232505679249215 -0.260279965004374 -0.001641754694637065 -0.1669582968795568 -0.002325056792491786 -0.1669582968795568 -0.001641754694637065 -0.260279965004374 -0.002325056792491786 -0.260279965004374 0.002325056792492135 -0.1669582968795568 -0.002325056792491726 -0.1669582968795568 0.002325056792492135 -0.260279965004374 -0.002325056792491726 -0.260279965004374 0.002325056792491793 -0.1669582968795568 -0.001641754694637343 -0.1669582968795568 0.002325056792491793 -0.260279965004374 -0.001641754694637343 -0.260279965004374 0.002325056792491992 -0.1669582968795568 -0.002325056792491877 -0.1669582968795568 0.002325056792491992 -0.260279965004374 -0.002325056792491877 -0.260279965004374 0.002325056792492168 -0.1669582968795568 -0.002325056792491643 -0.1669582968795568 0.002325056792492168 -0.260279965004374 -0.002325056792491643 -0.260279965004374 0.002325056792491651 -0.1669582968795568 -0.002325056792492153 -0.1669582968795568 0.002325056792491651 -0.260279965004374 -0.002325056792492153 -0.1669582968795568 0.002325056792491736 -0.260279965004374 -0.002325056792492181 -0.1669582968795568 -0.002325056792492181 -0.260279965004374 0.002325056792491736 -0.260279965004374 -0.002325056792491796 -0.1669582968795568 0.002325056792492131 -0.260279965004374 0.002325056792492131 -0.1669582968795568 -0.002325056792491796 -0.1669582968795568 0.002325056792491945 -0.260279965004374 -0.002325056792491921 -0.1669582968795568 -0.002325056792491921 -0.260279965004374 0.002325056792491945 -0.260279965004374 -0.002325056792491971 -0.1669582968795567 0.002325056792491898 -0.260279965004374 0.002325056792491898 -0.1669582968795567 -0.002325056792491971 -0.1669582968795568 0.002325056792491979 -0.260279965004374 -0.00232505679249182 -0.1669582968795568 -0.00232505679249182 -0.260279965004374 0.002325056792491979 -0.260279965004374 -0.002325056792491992 -0.1669582968795568 0.002325056792491809 -0.260279965004374 0.002325056792491809 -0.1669582968795568 -0.002325056792491992 0.1669582968795568 -0.002325056792491884 0.260279965004374 0.002325056792491937 0.1669582968795568 0.002325056792491937 0.260279965004374 -0.002325056792491884 0.260279965004374 0.002325056792492038 0.1669582968795568 -0.002325056792491915 0.260279965004374 -0.002325056792491915 0.1669582968795568 0.002325056792492038 0.1669582968795567 -0.002325056792491837 0.260279965004374 0.002325056792491989 0.1669582968795567 0.002325056792491989 0.260279965004374 -0.002325056792491837 0.260279965004374 0.002325056792491624 0.1669582968795568 -0.002325056792492082 0.260279965004374 -0.002325056792492082 0.1669582968795568 0.002325056792491624 0.1669582968795568 -0.002325056792492216 0.260279965004374 0.002325056792491724 0.1669582968795568 0.002325056792491724 0.260279965004374 -0.002325056792492216 0.260279965004374 0.002325056792492187 0.1669582968795568 -0.002325056792491759 0.260279965004374 -0.002325056792491759 0.1669582968795568 0.002325056792492187 0.260279965004374 -0.002325056792491672 0.1669582968795568 0.002325056792492129 0.1669582968795568 -0.002325056792491672 0.260279965004374 0.002325056792492129 0.260279965004374 -0.002325056792492185 0.1669582968795568 0.002325056792491629 0.1669582968795568 -0.002325056792492185 0.260279965004374 0.002325056792491629 0.260279965004374 -0.002325056792492001 0.1669582968795568 0.002325056792491855 0.1669582968795568 -0.002325056792492001 0.260279965004374 0.002325056792491855 0.260279965004374 -0.002325056792491867 0.1669582968795568 0.001641754694637294 0.1669582968795568 -0.002325056792491867 0.260279965004374 0.001641754694637294 0.260279965004374 -0.002325056792492141 0.1669582968795568 0.002325056792491735 0.1669582968795568 -0.002325056792492141 0.260279965004374 0.002325056792491735 0.260279965004374 0.001641754694637376 0.1669582968795568 0.002325056792492074 0.1669582968795568 0.001641754694637376 0.260279965004374 0.002325056792492074 0.260279965004374 -0.002325056792491717 0.1669582968795568 0.002325056792492141 0.1669582968795568 -0.002325056792491717 0.260279965004374 0.002325056792492141 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 0 0 3 3 4 4 2 5 5 6 2 5 4 4 0 7 3 8 6 9 1 10 6 9 3 8 7 11 8 12 9 13 10 14 9 13 8 12 11 15 7 16 12 17 6 18 12 17 7 16 13 19 14 20 10 21 15 22 10 21 14 20 8 23 13 24 16 25 12 26 16 25 13 24 17 27 18 28 14 29 15 30 14 29 18 28 19 31 20 32 16 33 17 34 16 33 20 32 21 35 22 36 19 37 18 38 19 37 22 36 23 39 24 40 21 41 20 42 21 41 24 40 25 43 26 44 23 45 22 46 23 45 26 44 27 47 28 48 25 49 24 50 25 49 28 48 29 51 30 52 27 53 26 54 27 53 30 52 31 55 32 56 29 57 28 58 29 57 32 56 33 59 34 60 31 61 30 62 31 61 34 60 35 63 36 64 33 65 32 66 33 65 36 64 37 67 38 68 35 69 34 70 35 69 38 68 39 71 40 72 37 73 36 74 37 73 40 72 41 75 42 76 38 77 43 78 38 77 42 76 39 79 40 80 44 81 41 82 44 81 40 80 45 83 46 84 43 85 47 86 43 85 46 84 42 87 45 88 48 89 44 90 48 89 45 88 49 91 50 92 47 93 51 94 47 93 50 92 46 95 52 96 53 97 54 98 53 97 52 96 55 99 55 100 51 101 53 102 51 101 55 100 50 103

+
+
+
+ + + + 0.248957885806392 9.015748031496067 -0.9291234787743667 -0.2489578858063836 9.015748031496067 -0.9291234787743667 0 9.015748031496067 -0.9618994062348557 0.4809497031174237 9.015748031496067 -0.8330293216845524 -0.4809497031174248 9.015748031496067 -0.8330293216845524 0.6801655929679815 9.015748031496067 -0.6801655929679796 -0.6801655929679813 9.015748031496067 -0.6801655929679796 0.8330293216845495 9.015748031496067 -0.4809497031174269 -0.8330293216845492 9.015748031496067 -0.4809497031174278 -0.9291234787743649 9.015748031496067 -0.2489578858063871 0.9150031055983023 9.015748031496067 -0.2830474822338055 0.929123478774365 9.015748031496067 -0.2489578858063867 -0.9618994062348564 9.015748031496067 -4.440892098500626e-016 0.9618994062348565 9.015748031496067 -2.220446049250313e-016 -0.9291234787743649 9.015748031496067 0.2489578858063863 0.929123478774365 9.015748031496067 0.2489578858063872 -0.9150031055983023 9.015748031496067 0.2830474822338065 0.8330293216845495 9.015748031496067 0.4809497031174272 -0.8330293216845492 9.015748031496067 0.4809497031174264 -0.6801655929679813 9.015748031496067 0.6801655929679789 0.6801655929679815 9.015748031496067 0.6801655929679789 0.4809497031174237 9.015748031496067 0.8330293216845512 -0.4809497031174248 9.015748031496067 0.8330293216845508 -0.2489578858063836 9.015748031496067 0.929123478774365 0.2489578858063849 9.015748031496067 0.9291234787743654 0 9.015748031496067 0.9618994062348538 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 9 7 10 9 10 11 9 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 19 17 20 19 20 21 19 21 22 22 21 23 23 21 24 23 24 25

+
+
+
+ + + + -3.602577222489289 14.05346883113313 -1.22683777193248 -3.651018373051289 14.0551181102362 -1.22683777193248 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + -0.9618994062348564 8.464566929133859 -4.440892098500626e-016 -2.047068959729108 8.464566929133859 -8.311407118100078e-016 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 0.4833919195519627 6.603578659720535 0.1210016789115732 0.5439111752678727 6.587019007461338 0.07088114243648558 0.5027872696050295 6.569984927998037 0.07088114243648558 0.5338714033075434 6.624487946513687 0.1210016789115732 0.5880425620063789 6.592829014747457 0.07088114243648558 0.5880425620063789 6.63161971485359 0.1210016789115732 0.5280637819093244 6.526204724448862 0.03242230214716624 0.5569952608241096 6.538188535394879 0.03242230214716624 0.4400442041362851 6.570316787814852 0.1210016789115732 0.4674733712283086 6.542887620722832 0.07088114243648558 0.4711994928039047 6.624696562315725 0.1793682798397561 0.5275601388107134 6.648041906275852 0.1793682798397561 0.6321739487448852 6.587019007461338 0.07088114243648558 0.6422137207052145 6.624487946513687 0.1210016789115732 0.5880425620063789 6.542275990138871 0.03242230214716624 0.5880425620063789 6.656004568349699 0.1793682798397561 0.5574989039227205 6.47522159759467 0.008246064453094726 0.572232001168075 6.481324246289459 0.008246064453094726 0.5032197577385276 6.507141234212609 0.03242230214716624 0.4067823322306055 6.526969072399174 0.1210016789115732 0.4403760639531029 6.507573722346111 0.07088114243648558 0.4228015088709469 6.587559483080193 0.1793682798397561 0.4670408830948034 6.631899485620737 0.2420033578231465 0.5254074840229848 6.656075723314809 0.2420033578231465 0.6732978544077284 6.569984927998037 0.07088114243648558 0.6926932044607952 6.603578659720535 0.1210016789115732 0.6190898631886483 6.538188535394879 0.03242230214716624 0.6485249852020374 6.648041906275852 0.1793682798397561 0.5880425620063789 6.483405746112078 0.008246064453094726 0.5880425620063789 6.664321787767905 0.2420033578231465 0.5448473064999817 6.465513685451159 0.008246064453094726 0.4841562675022786 6.482297210041816 0.03242230214716624 0.3858730454374495 6.476489588643593 0.1210016789115732 0.4233419844897952 6.466449816683268 0.07088114243648558 0.3856644296354119 6.539161499147228 0.1793682798397561 0.4169203466197189 6.593440645331421 0.2420033578231465 0.7086117527844493 6.542887620722832 0.07088114243648558 0.7360409198764728 6.570316787814852 0.1210016789115732 0.6480213421034335 6.526204724448862 0.03242230214716624 0.7048856312088461 6.624696562315725 0.1793682798397561 0.6038531228446828 6.481324246289459 0.008246064453094726 0.650677639989766 6.656075723314809 0.2420033578231465 0.5351393943564631 6.45286208802842 0.008246064453094726 0.4721724565562582 6.453365731127027 0.03242230214716624 0.378461506330396 6.420193359989591 0.1210016789115732 0.4169203466197189 6.417672634421168 0.07088114243648558 0.3623190856752814 6.48280085314042 0.1793682798397561 0.378461506330396 6.54332010885633 0.2420033578231465 0.7693027917821524 6.526969072399174 0.1210016789115732 0.735709060059655 6.507573722346107 0.07088114243648558 0.6728653662742303 6.507141234212609 0.03242230214716624 0.753283615141811 6.58755948308019 0.1793682798397561 0.6185862200900374 6.47522159759467 0.008246064453094726 0.7090442409179545 6.631899485620737 0.2420033578231465 0.5290367456616778 6.438128990783058 0.008246064453094726 0.4670408830948034 6.414387560902435 0.03242230214716624 0.4169203466197189 3.177732884575393 0.07088114243648469 0.3784615063304031 3.175212159006973 0.1210016789115725 0.3542852686363318 6.421777954325902 0.1793682798397561 0.3542852686363247 6.484953507928148 0.2420033578231465 0.7902120785753084 6.476489588643593 0.1210016789115732 0.7527431395229556 6.466449816683264 0.07088114243648558 0.6919288565104793 6.482297210041816 0.03242230214716624 0.790420694377346 6.539161499147228 0.1793682798397561 0.6312378175127762 6.465513685451159 0.008246064453094726 0.759164777393039 6.593440645331421 0.2420033578231465 0.5254074840229919 6.410562011764847 0.008246064453094726 0.4670408830948034 3.181017958094126 0.03242230214716535 0.4233419844898023 3.128955702313297 0.07088114243648469 0.3858730454374495 3.118915930352971 0.1210016789115725 0.3542852686363318 3.173627564670658 0.1793682798397552 0.346039204183235 6.422318429944758 0.2420033578231465 0.7976236176823548 6.420193359989591 0.1210016789115732 0.759164777393039 6.417672634421171 0.07088114243648558 0.7039126674564997 6.453365731127027 0.03242230214716624 0.8137660383374765 6.48280085314042 0.1793682798397561 0.6409457296562877 6.45286208802842 0.008246064453094726 0.7976236176823548 6.54332010885633 0.2420033578231465 0.5880425620063789 6.422318429944758 0.0002725696808326683 0.5860254795365592 6.421777954325902 7.771561172376096e-016 0.5880425620063718 6.406456691860113 7.771561172376096e-016 0.5254074840229919 3.184843507231713 0.008246064453093949 0.4721724565562582 3.142039787869537 0.03242230214716535 0.4403760639531029 3.087831796650457 0.07088114243648469 0.4067823322306055 3.068436446597387 0.1210016789115725 0.3623190856752814 3.112604665856141 0.1793682798397552 0.346039204183235 3.173087089051807 0.2420033578231459 0.759164777393039 3.177732884575393 0.07088114243648469 0.7976236176823548 3.17521215900697 0.1210016789115725 0.7090442409179474 6.414387560902435 0.03242230214716624 0.8217998553764261 6.421777954325906 0.1793682798397561 0.6470483783510801 6.438128990783058 0.008246064453094726 0.8217998553764332 6.484953507928148 0.2420033578231465 0.5880425620063789 3.188948827136448 0 0.5290367456616778 3.157276528213503 0.008246064453093949 0.4841562675022786 3.113108308954748 0.03242230214716535 0.4674733712283086 3.052517898273733 0.07088114243648469 0.4400442041362851 3.025088731181713 0.1210016789115725 0.3856644296354119 3.056244019849332 0.1793682798397552 0.3542852686363247 3.110452011068416 0.2420033578231459 0.7527431395229556 3.1289557023133 0.07088114243648469 0.7902120785753084 3.118915930352971 0.1210016789115725 0.7090442409179545 3.181017958094126 0.03242230214716535 0.8217998553764332 3.173627564670658 0.1793682798397552 0.650677639989766 6.410562011764847 0.008246064453094726 0.8300459198295229 6.422318429944758 0.2420033578231465 0.5860254795365663 3.173627564670658 0 0.5880425620063789 3.173087089051807 0.000272569680831336 0.5880425620063789 3.188948827136448 0 0.5880425620063718 6.406456691860113 7.771561172376096e-016 0.6506776399897731 3.184843507231713 0.008246064453093949 0.5351393943564631 3.142543430968145 0.008246064453093949 0.5032197577385276 3.088264284783955 0.03242230214716535 0.4833919195519627 2.99182685927603 0.1210016789115725 0.5027872696050295 3.025420590998527 0.07088114243648469 0.4228015088709469 3.007846035916371 0.1793682798397552 0.378461506330396 3.052085410140231 0.2420033578231459 0.735709060059655 3.087831796650457 0.07088114243648469 0.7693027917821524 3.068436446597387 0.1210016789115725 0.7039126674564997 3.142039787869537 0.03242230214716535 0.8137660383374765 3.112604665856141 0.1793682798397552 0.8300459198295229 3.173087089051807 0.2420033578231459 0.5900596444761916 6.421777954325906 7.771561172376096e-016 0.5880425620063789 6.422318429944758 0.0002725696808326683 0.5900596444761916 3.173627564670658 0 0.6470483783510801 3.157276528213503 0.008246064453093949 0.5880425620063789 3.173087089051807 0.000272569680831336 0.5448473064999817 3.129891833545402 0.008246064453093949 0.5280637819093244 3.069200794547699 0.03242230214716535 0.5338714033075434 2.970917572482877 0.1210016789115725 0.5439111752678727 3.008386511535226 0.07088114243648469 0.4711994928039047 2.970708956680836 0.1793682798397552 0.4169203466197189 3.001964873665143 0.2420033578231459 0.7086117527844493 3.052517898273733 0.07088114243648469 0.7360409198764728 3.025088731181713 0.1210016789115725 0.6919288565104864 3.113108308954748 0.03242230214716535 0.790420694377346 3.056244019849332 0.1793682798397552 0.8217998553764332 3.110452011068416 0.2420033578231459 0.5574989039227205 3.120183921401891 0.008246064453093949 0.5569952608241096 3.057216983601686 0.03242230214716535 0.5880425620063789 2.963785804142974 0.1210016789115725 0.5880425620063789 3.002576504249108 0.07088114243648469 0.5275601388107134 2.947363612720709 0.1793682798397552 0.4670408830948034 2.963506033375824 0.2420033578231459 0.6732978544077284 3.025420590998527 0.07088114243648469 0.6926932044607952 2.99182685927603 0.1210016789115725 0.6728653662742303 3.088264284783955 0.03242230214716535 0.753283615141811 3.007846035916371 0.1793682798397552 0.6409457296562948 3.142543430968145 0.008246064453093949 0.7976236176823619 3.052085410140231 0.2420033578231459 0.572232001168075 3.114081272707102 0.008246064453093949 0.5880425620063789 3.05312952885769 0.03242230214716535 0.6422137207052145 2.970917572482877 0.1210016789115725 0.6321739487448852 3.008386511535226 0.07088114243648469 0.5880425620063789 2.939400950646862 0.1793682798397552 0.5254074840229919 2.939329795681752 0.2420033578231459 0.6480213421034335 3.069200794547699 0.03242230214716535 0.7048856312088532 2.970708956680836 0.1793682798397552 0.6312378175127833 3.129891833545402 0.008246064453093949 0.759164777393039 3.001964873665143 0.2420033578231459 0.5880425620063789 3.111999772884483 0.008246064453093949 0.6190898631886483 3.057216983601686 0.03242230214716535 0.6485249852020445 2.947363612720709 0.1793682798397552 0.5880425620063789 2.931083731228659 0.2420033578231459 0.6185862200900445 3.120183921401891 0.008246064453093949 0.7090442409179545 2.963506033375824 0.2420033578231459 0.6038531228446828 3.114081272707102 0.008246064453093949 0.6506776399897731 2.939329795681752 0.2420033578231459 + + + + + + + + + + -0.4334640660138997 0.7507817855914727 -0.4984331589077694 -0.1836478117418187 0.6853829641193376 -0.7046443597570566 -0.3547803286058036 0.6144975546712339 -0.7046443597570562 -0.2243775113039415 0.8373882722621991 -0.4984331589077705 1.091275925325016e-015 0.7095606572116066 -0.7046443597570571 -2.17301671708996e-016 0.8669281320278055 -0.4984331589077714 -0.2524777544065239 0.4373042984129942 -0.8631453725296557 -0.130692102610249 0.4877495670894656 -0.8631453725296515 -0.6130107609582518 0.6130107609582455 -0.4984331589077695 -0.5017351523775082 0.5017351523775112 -0.7046443597570581 -0.483056622061766 0.8366786123435728 -0.2581185764897784 -0.2500485073049459 0.9331937336188333 -0.2581185764897801 0.1836478117418209 0.6853829641193353 -0.7046443597570582 0.2243775113039472 0.8373882722621968 -0.4984331589077717 3.46359907515036e-015 0.5049555088130463 -0.8631453725296554 -3.268324896755522e-016 0.9661132441235291 -0.2581185764897798 -0.1899418639792269 0.328988958896347 -0.9250342443566049 -0.09832114372018906 0.3669395038220317 -0.925034244356605 -0.3570574644792127 0.3570574644792083 -0.8631453725296538 -0.7507817855914717 0.4334640660139008 -0.4984331589077699 -0.61449755467123 0.3547803286058046 -0.7046443597570594 -0.6831452263138821 0.6831452263138821 -0.2581185764897785 -0.495649255145009 0.8584896926448269 -0.1316330638433547 -0.2565669338448101 0.95752083265101 -0.1316330638433571 0.3547803286058064 0.61449755467123 -0.7046443597570583 0.4334640660139043 0.7507817855914674 -0.4984331589077733 0.1306921026102521 0.4877495670894639 -0.863145372529652 0.2500485073049422 0.933193733618834 -0.2581185764897808 4.480226934616794e-015 0.3798837279584463 -0.925034244356604 -3.513250102566672e-016 0.9912985102900189 -0.1316330638433571 -0.268618360101841 0.2686183601018437 -0.9250342443566043 -0.4373042984129897 0.2524777544065203 -0.8631453725296591 -0.8373882722621975 0.2243775113039485 -0.4984331589077697 -0.6853829641193399 0.1836478117418273 -0.7046443597570522 -0.8366786123435739 0.4830566220617638 -0.2581185764897786 -0.7009538988061963 0.7009538988061946 -0.1316330638433516 0.5017351523775107 0.5017351523775072 -0.7046443597570591 0.6130107609582473 0.6130107609582423 -0.498433158907779 0.2524777544065255 0.437304298412992 -0.8631453725296564 0.4830566220617596 0.8366786123435758 -0.2581185764897805 0.09832114372019353 0.3669395038220332 -0.925034244356604 0.2565669338448102 0.9575208326510102 -0.1316330638433563 -0.3289889588963524 0.1899418639792209 -0.925034244356604 -0.4877495670894609 0.1306921026102515 -0.8631453725296541 -0.8650724726254477 0.0566998454420137 -0.4984322869082075 -0.7075597098930078 0.04637591353493175 -0.705130152227178 -0.9331937336188332 0.2500485073049485 -0.2581185764897777 -0.8584896926448288 0.4956492551450067 -0.1316330638433506 0.7507817855914638 0.4334640660138986 -0.4984331589077833 0.6144975546712321 0.3547803286058004 -0.7046443597570594 0.3570574644792157 0.3570574644792073 -0.8631453725296531 0.6831452263138831 0.6831452263138801 -0.2581185764897816 0.1899418639792281 0.3289889588963484 -0.9250342443566041 0.4956492551450166 0.8584896926448228 -0.131633063843352 -0.2989763710896034 0.07324939832375144 -0.9514450352885868 -0.50220262475222 0.0329160990611625 -0.8641232864091655 -0.7075597098930113 -0.04637591353493299 -0.7051301522271742 -0.865072472625443 -0.05669984544201184 -0.4984322869082165 -0.9640854128455849 0.06318949640755722 -0.2579658975177093 -0.9575208326510097 0.256566933844815 -0.1316330638433503 0.8373882722621913 0.2243775113039477 -0.4984331589077807 0.6853829641193321 0.1836478117418231 -0.7046443597570609 0.4373042984129922 0.2524777544065213 -0.8631453725296574 0.8366786123435733 0.4830566220617631 -0.2581185764897824 0.2686183601018456 0.2686183601018424 -0.9250342443566034 0.7009538988061935 0.7009538988061987 -0.1316330638433433 -0.2635487840530527 0.01618192014153148 -0.9645103337366016 -0.502202624752225 -0.03291609906116283 -0.8641232864091626 -0.6853829641193354 -0.1836478117418267 -0.7046443597570566 -0.8373882722621922 -0.2243775113039435 -0.4984331589077809 -0.9640854128455851 -0.06318949640755937 -0.2579658975177083 -0.9892858993695013 0.06484122355896589 -0.1308014718420756 0.8650724726254407 0.05669984544201114 -0.4984322869082197 0.7075597098930104 0.04637591353493329 -0.7051301522271751 0.4877495670894689 0.1306921026102531 -0.8631453725296491 0.9331937336188322 0.250048507304948 -0.2581185764897823 0.3289889588963529 0.1899418639792248 -0.925034244356603 0.8584896926448268 0.4956492551450136 -0.1316330638433373 -0.1325825262151339 0.0127343453502853 -0.9910901624932582 -0.1325825262151339 0.0127343453502853 -0.9910901624932582 -0.1314684721007972 0.005818595509794811 -0.9913032758897629 -0.262807686968303 -0.01722532585836541 -0.9646944634543331 -0.4877495670894708 -0.1306921026102511 -0.8631453725296483 -0.6144975546712354 -0.3547803286058019 -0.7046443597570561 -0.7507817855914635 -0.4334640660139003 -0.4984331589077827 -0.9331937336188327 -0.2500485073049525 -0.2581185764897762 -0.9892858993695027 -0.06484122355896375 -0.130801471842065 0.7075597098930132 -0.04637591353493192 -0.7051301522271724 0.8650724726254399 -0.05669984544201358 -0.4984322869082213 0.5022026247522167 0.03291609906116173 -0.8641232864091675 0.9640854128455838 0.06318949640755855 -0.2579658975177138 0.2989763710896098 0.0732493983237517 -0.9514450352885848 0.9575208326510114 0.2565669338448147 -0.1316330638433379 -0.1300206976615198 -0.007784386697888009 -0.9914807217003009 -0.2980469559637377 -0.0745511248202758 -0.9516355089154575 -0.4373042984129983 -0.2524777544065263 -0.8631453725296527 -0.5017351523775121 -0.5017351523775135 -0.7046443597570535 -0.6130107609582457 -0.613010760958239 -0.498433158907785 -0.8366786123435742 -0.4830566220617643 -0.2581185764897768 -0.9575208326510135 -0.2565669338448111 -0.1316330638433294 0.685382964119338 -0.1836478117418253 -0.7046443597570545 0.8373882722621893 -0.2243775113039459 -0.4984331589077851 0.5022026247522264 -0.03291609906116264 -0.8641232864091618 0.9640854128455846 -0.06318949640755721 -0.2579658975177111 0.2635487840530514 0.01618192014152711 -0.9645103337366019 0.9892858993695026 0.06484122355896299 -0.130801471842067 -0.1294095225512526 -0.01703708685546406 -0.9914448613738116 -0.1294095225512526 -0.01703708685546406 -0.9914448613738116 0.1300206976615144 -0.007784386697885726 -0.9914807217003016 0.1314684721007921 0.005818595509785335 -0.9913032758897636 0.2628076869683108 -0.01722532585836524 -0.9646944634543312 -0.328988958896356 -0.1899418639792227 -0.9250342443566025 -0.3570574644792187 -0.357057464479213 -0.8631453725296494 -0.4334640660138984 -0.750781785591463 -0.498433158907785 -0.3547803286058082 -0.6144975546712357 -0.7046443597570525 -0.6831452263138825 -0.6831452263138814 -0.2581185764897792 -0.8584896926448312 -0.4956492551450082 -0.1316330638433289 0.6144975546712364 -0.354780328605806 -0.7046443597570531 0.7507817855914608 -0.4334640660139006 -0.4984331589077865 0.4877495670894649 -0.130692102610251 -0.8631453725296516 0.9331937336188312 -0.2500485073049522 -0.2581185764897811 0.9892858993695036 -0.0648412235589635 -0.130801471842059 0.1325825262151333 0.01273434535026626 -0.9910901624932587 0.1325825262151333 0.01273434535026626 -0.9910901624932587 0.1294095225512511 -0.01703708685545926 -0.9914448613738118 0.2980469559637244 -0.07455112482027268 -0.9516355089154618 0.1294095225512511 -0.01703708685545926 -0.9914448613738118 -0.2686183601018432 -0.2686183601018484 -0.9250342443566023 -0.2524777544065303 -0.437304298413007 -0.8631453725296472 -0.2243775113039438 -0.8373882722621894 -0.4984331589077857 -0.1836478117418248 -0.6853829641193404 -0.7046443597570525 -0.4830566220617666 -0.8366786123435721 -0.2581185764897794 -0.7009538988061996 -0.700953898806196 -0.1316330638433261 0.5017351523775123 -0.5017351523775154 -0.7046443597570523 0.613010760958244 -0.6130107609582387 -0.4984331589077874 0.4373042984130102 -0.252477754406532 -0.8631453725296453 0.8366786123435722 -0.4830566220617651 -0.2581185764897813 0.9575208326510141 -0.2565669338448116 -0.1316330638433239 -0.1899418639792279 -0.3289889588963539 -0.9250342443566022 -0.1306921026102539 -0.487749567089466 -0.8631453725296506 4.300762252573864e-016 -0.8669281320277968 -0.4984331589077866 3.449694557329075e-016 -0.7095606572116108 -0.7046443597570529 -0.2500485073049528 -0.933193733618831 -0.2581185764897817 -0.4956492551450126 -0.8584896926448292 -0.1316330638433255 0.3547803286058083 -0.6144975546712362 -0.7046443597570519 0.4334640660138977 -0.7507817855914631 -0.4984331589077853 0.3570574644792131 -0.3570574644792118 -0.8631453725296523 0.683145226313881 -0.6831452263138815 -0.2581185764897823 0.3289889588963577 -0.1899418639792214 -0.9250342443566022 0.8584896926448308 -0.4956492551450099 -0.1316330638433251 -0.09832114372019339 -0.3669395038220376 -0.9250342443566023 2.536530754970793e-016 -0.5049555088130608 -0.863145372529647 0.224377511303944 -0.8373882722621897 -0.4984331589077852 0.1836478117418255 -0.6853829641193404 -0.7046443597570522 4.584733535726535e-016 -0.9661132441235285 -0.2581185764897819 -0.2565669338448056 -0.9575208326510151 -0.1316330638433277 0.2524777544065281 -0.4373042984130082 -0.8631453725296474 0.4830566220617655 -0.8366786123435726 -0.2581185764897805 0.2686183601018484 -0.2686183601018455 -0.9250342443566018 0.7009538988061991 -0.700953898806197 -0.1316330638433243 2.258592863464012e-016 -0.3798837279584494 -0.9250342443566026 0.1306921026102536 -0.4877495670894658 -0.8631453725296507 0.250048507304948 -0.9331937336188322 -0.2581185764897816 5.585166829721326e-016 -0.9912985102900226 -0.1316330638433289 0.1899418639792272 -0.328988958896355 -0.925034244356602 0.4956492551450115 -0.8584896926448298 -0.1316330638433249 0.09832114372019012 -0.3669395038220385 -0.9250342443566021 0.2565669338448139 -0.9575208326510131 -0.1316330638433276 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 4 1 4 3 5 1 6 2 6 1 7 8 2 9 2 8 0 10 3 0 3 10 11 5 12 4 12 5 13 4 7 1 7 4 14 11 5 3 5 11 15 7 16 6 16 7 17 2 18 9 18 2 6 19 9 20 9 19 8 21 0 8 0 21 10 22 11 10 11 22 23 13 24 12 24 13 25 12 14 4 14 12 26 15 13 5 13 15 27 14 17 7 17 14 28 23 15 11 15 23 29 6 30 18 30 6 16 9 31 20 31 9 18 32 20 33 20 32 19 34 8 19 8 34 21 35 10 21 10 35 22 25 36 24 36 25 37 12 38 26 38 12 24 27 25 13 25 27 39 26 28 14 28 26 40 29 27 15 27 29 41 18 42 31 42 18 30 20 43 33 43 20 31 44 33 45 33 44 32 46 19 32 19 46 34 47 21 34 21 47 35 36 48 49 48 36 37 24 50 38 50 24 36 39 37 25 37 39 51 26 52 40 52 26 38 41 39 27 39 41 53 31 54 43 54 31 42 33 55 45 55 33 43 44 56 57 56 44 45 58 32 44 32 58 46 59 34 46 34 59 47 49 60 61 60 49 48 36 62 50 62 36 49 37 63 48 63 37 51 38 64 52 64 38 50 53 51 39 51 53 65 43 66 55 66 43 54 55 56 45 56 55 67 57 68 69 68 57 56 58 57 70 57 58 44 71 46 58 46 71 59 61 72 73 72 61 60 49 74 62 74 49 61 48 75 60 75 48 63 50 76 64 76 50 62 51 77 63 77 51 65 78 79 54 54 80 66 80 54 79 66 67 55 67 66 81 67 68 56 68 67 82 69 83 84 83 69 68 70 69 85 69 70 57 71 70 86 70 71 58 87 72 88 72 87 73 61 89 74 89 61 73 60 90 72 90 60 75 62 91 76 91 62 74 63 92 75 92 63 77 80 81 66 81 80 93 81 82 67 82 81 94 82 83 68 83 82 95 84 96 97 96 84 83 85 84 98 84 85 69 86 85 99 85 86 70 100 88 101 88 100 87 73 102 89 102 73 87 88 90 103 90 88 72 74 104 91 104 74 89 75 105 90 105 75 92 93 94 81 94 93 106 107 94 106 104 108 109 108 104 110 94 95 82 95 94 111 95 96 83 96 95 112 113 96 114 96 113 97 98 97 115 97 98 84 99 98 116 98 99 85 117 101 118 101 117 100 102 100 119 100 102 87 101 103 120 103 101 88 89 110 104 110 89 102 103 105 121 105 103 90 91 122 123 122 104 109 104 122 91 110 124 108 124 110 125 125 126 124 111 112 95 112 111 127 112 114 96 114 112 128 129 114 130 114 129 113 131 97 113 97 131 115 116 115 132 115 116 98 133 118 134 118 133 117 119 117 135 117 119 100 118 120 136 120 118 101 110 119 125 119 110 102 120 121 137 121 120 103 127 128 112 128 127 138 128 130 114 130 128 139 140 130 141 130 140 129 142 113 129 113 142 131 143 115 131 115 143 132 134 144 133 144 134 145 135 133 146 133 135 117 134 136 147 136 134 118 125 135 148 135 125 119 136 137 149 137 136 120 138 139 128 139 138 150 139 141 130 141 139 151 152 141 153 141 152 140 154 129 140 129 154 142 155 131 142 131 155 143 145 153 144 153 145 152 146 144 156 144 146 133 147 145 134 145 147 157 148 146 158 146 148 135 147 149 159 149 147 136 150 151 139 151 150 160 161 141 151 141 161 153 162 140 152 140 162 154 163 142 154 142 163 155 156 153 161 153 156 144 157 152 145 152 157 162 158 156 164 156 158 146 159 157 147 157 159 165 166 151 160 151 166 161 167 154 162 154 167 163 164 161 166 161 164 156 165 162 157 162 165 167

+
+
+
+ + + + 5.054803886668701 4.674986000277832 2.210507294831024 5.054803886668701 5.255800392830723 2.210507294831024 5.016571053961556 4.965393196554279 2.210507294831024 5.091492155859804 4.965393196554279 2.210507294831024 5.127172113926278 4.694377008329157 2.210507294831024 5.166896880423835 4.404369574507031 2.210507294831024 5.231780457947352 4.441830125456148 2.210507294831024 5.345211082945141 4.171985981443397 2.210507294831024 5.398188302151425 4.224963200649617 2.210507294831024 5.577594676008829 3.993671778922126 2.210507294831024 5.615055226958035 4.058555356445543 2.210507294831024 5.848211101779548 3.881578785166932 2.210507294831024 5.867602109831005 3.953947012424505 2.210507294831024 6.138618298056045 3.843345952459808 2.210507294831024 6.138618298056045 3.918267054358042 2.210507294831024 6.429025494332535 3.881578785166932 2.210507294831024 6.409634486281163 3.953947012424505 2.210507294831024 6.662181369154183 4.058555356445543 2.210507294831024 6.699641920103375 3.993671778922126 2.210507294831024 6.879048293960743 4.224963200649617 2.210507294831024 6.93202551316692 4.171985981443397 2.210507294831024 7.045456138164809 4.441830125456148 2.210507294831024 7.110339715688212 4.404369574507031 2.210507294831024 7.150064482185833 4.694377008329182 2.210507294831024 7.22243270944341 4.674986000277832 2.210507294831024 7.185744440252307 4.965393196554279 2.210507294831024 5.127172113926278 5.236409384779384 2.210507294831024 5.166896880423835 5.52641681860152 2.210507294831024 5.231780457947352 5.488956267652393 2.210507294831024 5.345211082945141 5.758800411665172 2.210507294831024 5.398188302151425 5.705823192458942 2.210507294831024 5.577594676008829 5.937114614186443 2.210507294831024 5.615055226958035 5.872231036663022 2.210507294831024 5.848211101779548 6.04920760794162 2.210507294831024 5.867602109831005 5.976839380684064 2.210507294831024 6.138618298056045 6.087440440648775 2.210507294831024 6.138618298056045 6.012519338750517 2.210507294831024 6.409634486281163 5.976839380684064 2.210507294831024 6.429025494332535 6.04920760794162 2.210507294831024 6.662181369154183 5.872231036663022 2.210507294831024 6.699641920103375 5.937114614186443 2.210507294831024 6.879048293960743 5.705823192458942 2.210507294831024 6.93202551316692 5.758800411665172 2.210507294831024 7.045456138164809 5.488956267652393 2.210507294831024 7.110339715688212 5.52641681860152 2.210507294831024 7.150064482185833 5.236409384779384 2.210507294831024 7.22243270944341 5.255800392830723 2.210507294831024 7.260665542150491 4.965393196554279 2.210507294831024 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 17 15 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 1 26 27 26 1 3 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 35 37 38 38 37 39 38 39 40 40 39 41 40 41 42 42 41 43 42 43 44 44 43 45 44 45 46 46 45 25 46 25 24 46 24 47

+
+
+
+ + + + 3.68971504441712 4.924634291813741 2.446727767271968 3.68971504441712 5.006152101294854 2.446727767271968 3.684349032809131 4.965393196554297 2.446727767271968 3.705447394417853 4.886653039073993 2.446727767271968 3.705447394417853 5.04413335403463 2.446727767271968 3.730473949157663 4.854037797942242 2.446727767271968 3.730473949157663 5.076748595166359 2.446727767271968 3.763089190289442 4.829011243202418 2.446727767271968 3.763089190289442 5.101775149906183 2.446727767271968 3.801070443029168 4.8132788932017 2.446727767271968 3.801070443029168 5.11750749990693 2.446727767271968 3.841829347769725 4.807912881593675 2.446727767271968 3.841829347769725 5.122873511514927 2.446727767271968 3.882588252510281 4.8132788932017 2.446727767271968 3.882588252510281 5.11750749990693 2.446727767271968 3.920569505250036 4.829011243202418 2.446727767271968 3.920569505250036 5.101775149906183 2.446727767271968 3.953184746381801 4.854037797942242 2.446727767271968 3.953184746381801 5.076748595166359 2.446727767271968 3.978211301121611 4.886653039073993 2.446727767271968 3.978211301121611 5.04413335403463 2.446727767271968 3.993943651122343 4.924634291813741 2.446727767271968 3.993943651122343 5.006152101294854 2.446727767271968 3.999309662730347 4.965393196554297 2.446727767271968 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23

+
+
+
+ + + + 6.409634486281163 5.976839380684064 2.367987609791654 6.662181369154183 5.872231036663022 2.210507294831024 6.409634486281163 5.976839380684064 2.210507294831024 6.662181369154183 5.872231036663022 2.367987609791654 6.138618298056045 6.012519338750517 2.367987609791654 6.138618298056045 6.012519338750517 2.210507294831024 6.879048293960743 5.705823192458942 2.210507294831024 6.879048293960743 5.705823192458942 2.367987609791654 5.867602109831005 5.976839380684064 2.367987609791654 5.867602109831005 5.976839380684064 2.210507294831024 7.045456138164809 5.488956267652393 2.367987609791654 7.045456138164809 5.488956267652393 2.210507294831024 5.615055226958035 5.872231036663022 2.367987609791654 5.615055226958035 5.872231036663022 2.210507294831024 7.150064482185833 5.236409384779384 2.367987609791654 7.150064482185833 5.236409384779384 2.210507294831024 5.398188302151425 5.705823192458942 2.367987609791654 5.398188302151425 5.705823192458942 2.210507294831024 7.185744440252307 4.965393196554279 2.367987609791654 7.185744440252307 4.965393196554279 2.210507294831024 5.231780457947352 5.488956267652393 2.210507294831024 5.231780457947352 5.488956267652393 2.367987609791654 7.150064482185833 4.694377008329182 2.367987609791654 7.150064482185833 4.694377008329182 2.210507294831024 5.127172113926278 5.236409384779384 2.210507294831024 5.127172113926278 5.236409384779384 2.367987609791654 7.045456138164809 4.441830125456148 2.367987609791654 7.045456138164809 4.441830125456148 2.210507294831024 5.091492155859804 4.965393196554279 2.210507294831024 5.091492155859804 4.965393196554279 2.367987609791654 6.879048293960743 4.224963200649617 2.367987609791654 6.879048293960743 4.224963200649617 2.210507294831024 5.127172113926278 4.694377008329157 2.210507294831024 5.127172113926278 4.694377008329157 2.367987609791654 6.662181369154183 4.058555356445543 2.210507294831024 6.662181369154183 4.058555356445543 2.367987609791654 5.231780457947352 4.441830125456148 2.210507294831024 5.231780457947352 4.441830125456148 2.367987609791654 6.409634486281163 3.953947012424505 2.210507294831024 6.409634486281163 3.953947012424505 2.367987609791654 5.398188302151425 4.224963200649617 2.210507294831024 5.398188302151425 4.224963200649617 2.367987609791654 6.138618298056045 3.918267054358042 2.210507294831024 6.138618298056045 3.918267054358042 2.367987609791654 5.615055226958035 4.058555356445543 2.367987609791654 5.615055226958035 4.058555356445543 2.210507294831024 5.867602109831005 3.953947012424505 2.210507294831024 5.867602109831005 3.953947012424505 2.367987609791654 + + + + + + + + + + 0.2588190451025039 0.9659258262890729 0 0.4999999999999815 0.8660254037844493 0 0.2588190451025039 0.9659258262890729 0 0.4999999999999815 0.8660254037844493 0 -1.285873157941851e-014 0.9999999999999999 0 -1.285873157941851e-014 0.9999999999999999 0 0.7071067811865524 0.7071067811865428 0 0.7071067811865524 0.7071067811865428 0 -0.2588190451025529 0.9659258262890597 0 -0.2588190451025529 0.9659258262890597 0 0.8660254037844504 0.4999999999999796 0 0.8660254037844504 0.4999999999999796 0 -0.4999999999999621 0.8660254037844606 0 -0.4999999999999621 0.8660254037844606 0 0.9659258262890683 0.2588190451025202 0 0.9659258262890683 0.2588190451025202 0 -0.7071067811865098 0.7071067811865854 0 -0.7071067811865098 0.7071067811865854 0 0.9999999999999999 -1.648555330694684e-015 0 0.9999999999999999 -1.648555330694684e-015 0 -0.8660254037844276 0.5000000000000192 0 -0.8660254037844276 0.5000000000000192 0 0.9659258262890704 -0.2588190451025128 0 0.9659258262890704 -0.2588190451025128 0 -0.9659258262890439 0.2588190451026116 0 -0.9659258262890439 0.2588190451026116 0 0.8660254037844514 -0.4999999999999782 0 0.8660254037844514 -0.4999999999999782 0 -1 4.838732673336347e-015 0 -1 4.838732673336347e-015 0 0.7071067811865399 -0.7071067811865551 0 0.7071067811865399 -0.7071067811865551 0 -0.9659258262890427 -0.258819045102616 0 -0.9659258262890427 -0.258819045102616 0 0.4999999999999631 -0.8660254037844599 0 0.4999999999999631 -0.8660254037844599 0 -0.8660254037844191 -0.5000000000000339 0 -0.8660254037844191 -0.5000000000000339 0 0.2588190451025165 -0.9659258262890695 0 0.2588190451025165 -0.9659258262890695 0 -0.7071067811864975 -0.7071067811865976 0 -0.7071067811864975 -0.7071067811865976 0 -1.286764268931424e-014 -1 0 -1.286764268931424e-014 -1 0 -0.4999999999999436 -0.8660254037844711 0 -0.4999999999999436 -0.8660254037844711 0 -0.2588190451025653 -0.9659258262890564 0 -0.2588190451025653 -0.9659258262890564 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 5 9 5 8 4 6 10 11 10 6 7 12 9 13 9 12 8 11 14 15 14 11 10 16 13 17 13 16 12 15 18 19 18 15 14 16 20 21 20 16 17 19 22 23 22 19 18 21 24 25 24 21 20 23 26 27 26 23 22 25 28 29 28 25 24 27 30 31 30 27 26 29 32 33 32 29 28 30 34 31 34 30 35 33 36 37 36 33 32 35 38 34 38 35 39 37 40 41 40 37 36 39 42 38 42 39 43 44 40 45 40 44 41 43 46 42 46 43 47 47 45 46 45 47 44

+
+
+
+ + + + 51.06260368681876 7.126416329097724 2.407357688531808 51.06260368681876 0.1184986753859647 2.486097846012126 51.06260368681876 0.1184986753859647 2.407357688531807 51.06260368681876 7.126416329097724 2.486097846012127 0.1184986753859647 7.126416329097724 2.486097846012126 51.06260368681876 7.126416329097724 2.407357688531808 0.1184986753859647 7.126416329097724 2.407357688531807 51.06260368681876 7.126416329097724 2.486097846012127 51.06260368681876 0.1184986753859647 2.486097846012126 30.70679771243117 0.1184986753859665 2.407357688531807 51.06260368681876 0.1184986753859647 2.407357688531807 30.70679771243117 0.1184986753859665 2.486097846012126 0.1184986753859647 7.126416329097724 2.486097846012126 0.1184986753859647 2.804370064010866 2.407357688531807 0.1184986753859647 2.804370064010866 2.486097846012126 0.1184986753859647 7.126416329097724 2.407357688531807 30.70679771243117 0.1184986753859665 2.486097846012126 25.61991398185795 2.804370064010866 2.407357688531807 30.70679771243117 0.1184986753859665 2.407357688531807 25.61991398185795 2.804370064010866 2.486097846012126 25.61991398185795 2.804370064010866 2.486097846012126 0.1184986753859647 2.804370064010866 2.407357688531807 25.61991398185795 2.804370064010866 2.407357688531807 0.1184986753859647 2.804370064010866 2.486097846012126 + + + + + + + + + + 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23

+
+
+
+ + + + 50.14425631911605 2.33983218444167 0.3994836727837762 25.50480608586854 2.33983218444167 0.2420033578231463 50.14425631911605 2.33983218444167 0.2420033578231463 43.53506207296286 2.33983218444167 0.3994836727837764 25.50480608586854 2.33983218444167 1.304995483807398 43.53506207296286 2.33983218444167 1.304995483807399 50.17076220141468 2.338094897130828 0.3994836727837762 50.14425631911605 2.33983218444167 0.2420033578231463 50.17076220141468 2.338094897130828 0.2420033578231463 50.14425631911605 2.33983218444167 0.3994836727837762 50.14425631911605 2.33983218444167 0.3994836727837762 43.56156795526146 2.338094897130839 0.3994836727837764 43.53506207296286 2.33983218444167 0.3994836727837764 43.58762031456511 2.332912760665932 0.3994836727837764 43.61277338778308 2.324374442838591 0.3994836727837764 43.63659679885879 2.312626036634134 0.3994836727837764 43.6586829226237 2.297868560539984 0.3994836727837764 43.67865385937673 2.280354519063662 0.3994836727837764 43.69616790085306 2.260383582310626 0.3994836727837764 43.7109253769472 2.238297458545732 0.3994836727837764 43.72267378315166 2.214474047469993 0.3994836727837764 43.73121210097899 2.189320974252054 0.3994836727837764 43.73639423744392 2.163268614948388 0.3994836727837764 43.73813152475472 2.136762732649784 0.3994836727837764 43.73813152475472 0.5508869384357507 0.3994836727837762 43.56156795526147 0.3495547739546883 0.3994836727837762 50.14425631911605 0.3478174866438408 0.3994836727837762 43.53506207296282 0.3478174866438408 0.3994836727837762 43.58762031456511 0.3547369104195806 0.3994836727837762 43.61277338778304 0.363275228246934 0.3994836727837762 43.63659679885877 0.3750236344513951 0.3994836727837762 43.6586829226237 0.3897811105455222 0.3994836727837762 43.67865385937671 0.4072951520218346 0.3994836727837762 43.69616790085306 0.4272660887748749 0.3994836727837762 43.71092537694721 0.4493522125397949 0.3994836727837762 43.72267378315161 0.4731756236155125 0.3994836727837762 43.73121210097899 0.4983286968334628 0.3994836727837762 43.7363942374439 0.5243810561371163 0.3994836727837762 50.17076220141468 2.338094897130828 0.3994836727837762 50.17076220141466 0.3495547739546492 0.3994836727837762 50.19681456071831 0.3547369104195806 0.3994836727837762 50.19681456071832 2.332912760665918 0.3994836727837762 50.22196763393623 0.3632752282469021 0.3994836727837762 50.22196763393626 2.324374442838588 0.3994836727837762 50.24579104501201 0.3750236344513791 0.3994836727837762 50.24579104501199 2.31262603663413 0.3994836727837762 50.26787716877689 2.297868560539984 0.3994836727837762 50.26787716877686 0.3897811105455418 0.3994836727837762 50.28784810552991 0.4072951520218435 0.3994836727837762 50.28784810552993 2.280354519063655 0.3994836727837762 50.30536214700624 0.427266088774882 0.3994836727837762 50.30536214700626 2.260383582310615 0.3994836727837762 50.32011962310041 0.4493522125397735 0.3994836727837762 50.32011962310039 2.238297458545718 0.3994836727837762 50.33186802930484 2.21447404747 0.3994836727837762 50.33186802930485 0.4731756236154912 0.3994836727837762 50.34040634713219 2.189320974252057 0.3994836727837762 50.3404063471322 0.4983286968334255 0.3994836727837762 50.34558848359709 2.163268614948384 0.3994836727837762 50.34558848359711 0.5243810561371145 0.3994836727837762 50.3473257709079 2.136762732649773 0.3994836727837762 50.3473257709079 0.5508869384357045 0.3994836727837762 43.56156795526146 2.338094897130839 1.304995483807399 43.53506207296286 2.33983218444167 0.3994836727837764 43.56156795526146 2.338094897130839 0.3994836727837764 43.53506207296286 2.33983218444167 1.304995483807399 43.53506207296286 2.33983218444167 1.304995483807399 29.0207414471994 0.4834205400204272 1.304995483807398 25.50480608586854 2.33983218444167 1.304995483807398 29.03406389556177 0.4743753551861669 1.304995483807398 29.04507585432682 0.4626263227489496 1.304995483807398 29.05324014512329 0.4487465765392891 1.304995483807398 29.05815850270828 0.4334131895122741 1.304995483807398 29.05959100288907 0.4173741452051463 1.304995483807398 43.53506207296282 0.3478174866438408 1.304995483807398 43.56156795526147 0.3495547739546883 1.304995483807398 43.56156795526146 2.338094897130839 1.304995483807399 43.58762031456511 2.332912760665932 1.304995483807399 43.58762031456511 0.3547369104195806 1.304995483807398 43.61277338778308 2.324374442838591 1.304995483807399 43.61277338778304 0.363275228246934 1.304995483807398 43.63659679885877 0.3750236344513951 1.304995483807398 43.63659679885879 2.312626036634134 1.304995483807399 43.6586829226237 0.3897811105455222 1.304995483807398 43.6586829226237 2.297868560539984 1.304995483807399 43.67865385937673 2.280354519063662 1.304995483807399 43.67865385937671 0.4072951520218346 1.304995483807398 43.69616790085306 0.4272660887748749 1.304995483807398 43.69616790085306 2.260383582310626 1.304995483807399 43.7109253769472 2.238297458545732 1.304995483807399 43.71092537694721 0.4493522125397949 1.304995483807398 43.72267378315166 2.214474047469993 1.304995483807399 43.72267378315161 0.4731756236155125 1.304995483807398 43.73121210097899 0.4983286968334628 1.304995483807398 43.73121210097899 2.189320974252054 1.304995483807399 43.7363942374439 0.5243810561371163 1.304995483807398 43.73639423744392 2.163268614948388 1.304995483807399 43.73813152475472 0.5508869384357507 1.304995483807398 43.73813152475472 2.136762732649784 1.304995483807399 29.01792778668387 0.3530655869813781 1.304995483807398 29.00270410638306 0.3478174866438408 1.304995483807398 29.03162811879157 0.3615274957018002 1.304995483807398 29.04313678181573 0.3727904293538451 1.304995483807398 29.05189236747371 0.3863049666688863 1.304995483807398 29.05746776635262 0.4014118500799384 1.304995483807398 25.50480608586854 2.33983218444167 1.304995483807398 0.5491086559751111 2.339832184441677 0.2420033578231463 25.50480608586854 2.33983218444167 0.2420033578231463 0.5491086559751111 2.339832184441677 2.210507294831021 25.50480608586854 2.33983218444167 2.210507294831021 50.19681456071832 2.332912760665918 0.3994836727837762 50.19681456071832 2.332912760665918 0.2420033578231463 50.22196763393626 2.324374442838588 0.3994836727837762 50.22196763393626 2.324374442838588 0.2420033578231463 50.24579104501199 2.31262603663413 0.3994836727837762 50.24579104501199 2.31262603663413 0.2420033578231463 50.26787716877689 2.297868560539984 0.3994836727837762 50.26787716877689 2.297868560539984 0.2420033578231463 50.28784810552993 2.280354519063655 0.3994836727837762 50.28784810552993 2.280354519063655 0.2420033578231463 50.30536214700626 2.260383582310615 0.2420033578231463 50.30536214700626 2.260383582310615 0.3994836727837762 50.32011962310039 2.238297458545718 0.2420033578231463 50.32011962310039 2.238297458545718 0.3994836727837762 50.33186802930484 2.21447404747 0.2420033578231463 50.33186802930484 2.21447404747 0.3994836727837762 50.34040634713219 2.189320974252057 0.2420033578231463 50.34040634713219 2.189320974252057 0.3994836727837762 50.34558848359709 2.163268614948384 0.2420033578231463 50.34558848359709 2.163268614948384 0.3994836727837762 50.3473257709079 2.136762732649773 0.2420033578231463 50.3473257709079 2.136762732649773 0.3994836727837762 50.3473257709079 2.136762732649773 0.3994836727837762 50.3473257709079 0.5508869384357045 0.2420033578231463 50.3473257709079 0.5508869384357045 0.3994836727837762 50.3473257709079 2.136762732649773 0.2420033578231463 50.3473257709079 0.5508869384357045 0.3994836727837762 50.34558848359711 0.5243810561371145 0.2420033578231463 50.34558848359711 0.5243810561371145 0.3994836727837762 50.3473257709079 0.5508869384357045 0.2420033578231463 50.3404063471322 0.4983286968334255 0.2420033578231463 50.3404063471322 0.4983286968334255 0.3994836727837762 50.33186802930485 0.4731756236154912 0.2420033578231463 50.33186802930485 0.4731756236154912 0.3994836727837762 50.32011962310041 0.4493522125397735 0.2420033578231463 50.32011962310041 0.4493522125397735 0.3994836727837762 50.30536214700624 0.427266088774882 0.2420033578231463 50.30536214700624 0.427266088774882 0.3994836727837762 50.28784810552991 0.4072951520218435 0.2420033578231463 50.28784810552991 0.4072951520218435 0.3994836727837762 50.26787716877686 0.3897811105455418 0.3994836727837762 50.26787716877686 0.3897811105455418 0.2420033578231463 50.24579104501201 0.3750236344513791 0.3994836727837762 50.24579104501201 0.3750236344513791 0.2420033578231463 50.22196763393623 0.3632752282469021 0.3994836727837762 50.22196763393623 0.3632752282469021 0.2420033578231463 50.19681456071831 0.3547369104195806 0.3994836727837762 50.19681456071831 0.3547369104195806 0.2420033578231463 50.17076220141466 0.3495547739546492 0.3994836727837762 50.17076220141466 0.3495547739546492 0.2420033578231463 50.14425631911605 0.3478174866438408 0.3994836727837762 50.14425631911605 0.3478174866438408 0.2420033578231463 29.00270410638306 0.3478174866438408 0.2420033578231463 43.53506207296282 0.3478174866438408 0.3994836727837762 50.14425631911605 0.3478174866438408 0.2420033578231463 29.00270410638306 0.3478174866438408 1.304995483807398 43.53506207296282 0.3478174866438408 1.304995483807398 50.14425631911605 0.3478174866438408 0.3994836727837762 43.53506207296282 0.3478174866438408 1.304995483807398 43.56156795526147 0.3495547739546883 0.3994836727837762 43.53506207296282 0.3478174866438408 0.3994836727837762 43.56156795526147 0.3495547739546883 1.304995483807398 43.58762031456511 0.3547369104195806 0.3994836727837762 43.58762031456511 0.3547369104195806 1.304995483807398 43.61277338778304 0.363275228246934 0.3994836727837762 43.61277338778304 0.363275228246934 1.304995483807398 43.63659679885877 0.3750236344513951 0.3994836727837762 43.63659679885877 0.3750236344513951 1.304995483807398 43.6586829226237 0.3897811105455222 0.3994836727837762 43.6586829226237 0.3897811105455222 1.304995483807398 43.67865385937671 0.4072951520218346 0.3994836727837762 43.67865385937671 0.4072951520218346 1.304995483807398 43.69616790085306 0.4272660887748749 1.304995483807398 43.69616790085306 0.4272660887748749 0.3994836727837762 43.71092537694721 0.4493522125397949 1.304995483807398 43.71092537694721 0.4493522125397949 0.3994836727837762 43.72267378315161 0.4731756236155125 1.304995483807398 43.72267378315161 0.4731756236155125 0.3994836727837762 43.73121210097899 0.4983286968334628 1.304995483807398 43.73121210097899 0.4983286968334628 0.3994836727837762 43.7363942374439 0.5243810561371163 1.304995483807398 43.7363942374439 0.5243810561371163 0.3994836727837762 43.73813152475472 0.5508869384357507 1.304995483807398 43.73813152475472 0.5508869384357507 0.3994836727837762 43.73813152475472 2.136762732649784 1.304995483807399 43.73813152475472 0.5508869384357507 0.3994836727837762 43.73813152475472 0.5508869384357507 1.304995483807398 43.73813152475472 2.136762732649784 0.3994836727837764 43.73639423744392 2.163268614948388 1.304995483807399 43.73813152475472 2.136762732649784 0.3994836727837764 43.73813152475472 2.136762732649784 1.304995483807399 43.73639423744392 2.163268614948388 0.3994836727837764 43.73121210097899 2.189320974252054 1.304995483807399 43.73121210097899 2.189320974252054 0.3994836727837764 43.72267378315166 2.214474047469993 1.304995483807399 43.72267378315166 2.214474047469993 0.3994836727837764 43.7109253769472 2.238297458545732 1.304995483807399 43.7109253769472 2.238297458545732 0.3994836727837764 43.69616790085306 2.260383582310626 1.304995483807399 43.69616790085306 2.260383582310626 0.3994836727837764 43.67865385937673 2.280354519063662 1.304995483807399 43.67865385937673 2.280354519063662 0.3994836727837764 43.6586829226237 2.297868560539984 0.3994836727837764 43.6586829226237 2.297868560539984 1.304995483807399 43.63659679885879 2.312626036634134 0.3994836727837764 43.63659679885879 2.312626036634134 1.304995483807399 43.61277338778308 2.324374442838591 0.3994836727837764 43.61277338778308 2.324374442838591 1.304995483807399 43.58762031456511 2.332912760665932 0.3994836727837764 43.58762031456511 2.332912760665932 1.304995483807399 29.00270410638306 0.3478174866438408 2.210507294831021 29.01792778668387 0.3530655869813781 1.304995483807398 29.00270410638306 0.3478174866438408 1.304995483807398 29.01792778668387 0.3530655869813781 2.210507294831021 29.03162811879157 0.3615274957018002 1.304995483807398 29.03162811879157 0.3615274957018002 2.210507294831021 29.04313678181573 0.3727904293538451 1.304995483807398 29.04313678181573 0.3727904293538451 2.210507294831021 29.05189236747371 0.3863049666688863 2.210507294831021 29.05189236747371 0.3863049666688863 1.304995483807398 29.05746776635262 0.4014118500799384 2.210507294831021 29.05746776635262 0.4014118500799384 1.304995483807398 29.05959100288907 0.4173741452051463 2.210507294831021 29.05959100288907 0.4173741452051463 1.304995483807398 29.05815850270828 0.4334131895122741 2.210507294831021 29.05815850270828 0.4334131895122741 1.304995483807398 29.05324014512329 0.4487465765392891 2.210507294831021 29.05324014512329 0.4487465765392891 1.304995483807398 29.04507585432682 0.4626263227489496 2.210507294831021 29.04507585432682 0.4626263227489496 1.304995483807398 29.03406389556177 0.4743753551861669 2.210507294831021 29.03406389556177 0.4743753551861669 1.304995483807398 29.0207414471994 0.4834205400204272 1.304995483807398 29.0207414471994 0.4834205400204272 2.210507294831021 29.0207414471994 0.4834205400204272 2.210507294831021 25.50480608586854 2.33983218444167 1.304995483807398 29.0207414471994 0.4834205400204272 1.304995483807398 25.50480608586854 2.33983218444167 2.210507294831021 0.5491086559751111 2.339832184441677 2.210507294831021 0.5226027736765033 2.338094897130853 0.2420033578231463 0.5491086559751111 2.339832184441677 0.2420033578231463 0.5226027736765033 2.338094897130853 2.210507294831021 28.98669970978262 0.3460392041831959 2.210507294831021 29.00270410638306 0.3478174866438408 0.2420033578231463 28.98669970978262 0.3460392041831959 0.2420033578231463 0.4965504143728481 2.332912760665936 0.2420033578231463 0.4965504143728481 2.332912760665936 2.210507294831021 0.5491086559751182 0.3460392041832314 2.210507294831021 28.98669970978262 0.3460392041831959 0.2420033578231463 0.5491086559751182 0.3460392041832314 0.2420033578231463 28.98669970978262 0.3460392041831959 2.210507294831021 0.4713973411548977 2.324374442838602 0.2420033578231463 0.4713973411548977 2.324374442838602 2.210507294831021 0.5226027736765104 0.3477764914940558 2.210507294831021 0.5491086559751182 0.3460392041832314 0.2420033578231463 0.5226027736765104 0.3477764914940558 0.2420033578231463 0.5491086559751182 0.3460392041832314 2.210507294831021 0.447573930079173 2.312626036634145 0.2420033578231463 0.447573930079173 2.312626036634145 2.210507294831021 0.4965504143728481 0.3529586279589729 2.210507294831021 0.4965504143728481 0.3529586279589729 0.2420033578231463 0.4254878063142726 2.297868560539994 0.2420033578231463 0.4254878063142726 2.297868560539994 2.210507294831021 0.4713973411548977 0.3614969457863069 2.210507294831021 0.4713973411548977 0.3614969457863069 0.2420033578231463 0.4055168695612395 2.280354519063669 0.2420033578231463 0.4055168695612395 2.280354519063669 2.210507294831021 0.447573930079173 0.3732453519907644 2.210507294831021 0.447573930079173 0.3732453519907644 0.2420033578231463 0.3880028280849146 2.260383582310636 2.210507294831021 0.3880028280849146 2.260383582310636 0.2420033578231463 0.4254878063142726 0.3880028280849146 2.210507294831021 0.4254878063142726 0.3880028280849146 0.2420033578231463 0.3732453519907679 2.238297458545736 2.210507294831021 0.3732453519907679 2.238297458545736 0.2420033578231463 0.4055168695612395 0.4055168695612395 2.210507294831021 0.4055168695612395 0.4055168695612395 0.2420033578231463 0.3614969457863069 2.214474047470008 2.210507294831021 0.3614969457863069 2.214474047470008 0.2420033578231463 0.3880028280849146 0.4254878063142709 0.2420033578231463 0.3880028280849146 0.4254878063142709 2.210507294831021 0.3529586279589694 2.189320974252061 2.210507294831021 0.3529586279589694 2.189320974252061 0.2420033578231463 0.3732453519907679 0.447573930079173 0.2420033578231463 0.3732453519907679 0.447573930079173 2.210507294831021 0.3477764914940522 2.163268614948402 2.210507294831021 0.3477764914940522 2.163268614948402 0.2420033578231463 0.3614969457863069 0.4713973411548995 0.2420033578231463 0.3614969457863069 0.4713973411548995 2.210507294831021 0.346039204183235 2.136762732649794 2.210507294831021 0.346039204183235 2.136762732649794 0.2420033578231463 0.3529586279589694 0.4965504143728481 0.2420033578231463 0.3529586279589694 0.4965504143728481 2.210507294831021 0.346039204183235 2.136762732649794 0.2420033578231463 0.3460392041832279 0.5491086559751146 2.210507294831021 0.3460392041832279 0.5491086559751146 0.2420033578231463 0.346039204183235 2.136762732649794 2.210507294831021 0.3477764914940522 0.5226027736765069 0.2420033578231463 0.3477764914940522 0.5226027736765069 2.210507294831021 0.3460392041832279 0.5491086559751146 0.2420033578231463 0.3460392041832279 0.5491086559751146 2.210507294831021 + + + + + + + + + + 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.1305261922203011 -0.9914448613737775 0 -0.06540312923079149 -0.9978589232385611 -0 -0.1305261922203011 -0.9914448613737775 0 -0.06540312923079149 -0.9978589232385611 -0 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -1.259343480073271e-017 4.501881559435367e-017 -1 -0.1305261922200457 -0.9914448613738112 0 -0.06540312923042768 -0.9978589232385848 0 -0.1305261922200457 -0.9914448613738112 0 -0.06540312923042768 -0.9978589232385848 0 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 9.405698293996835e-018 4.12499437797971e-016 -1 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -0.2588190451024253 -0.9659258262890939 0 -0.2588190451024253 -0.9659258262890939 0 -0.3826834323650169 -0.9238795325113171 0 -0.3826834323650169 -0.9238795325113171 0 -0.4999999999999031 -0.8660254037844946 0 -0.4999999999999031 -0.8660254037844946 0 -0.6087614290086439 -0.7933533402912941 0 -0.6087614290086439 -0.7933533402912941 0 -0.7071067811866093 -0.7071067811864858 0 -0.7071067811866093 -0.7071067811864858 0 -0.7933533402914218 -0.6087614290084773 0 -0.7933533402914218 -0.6087614290084773 0 -0.8660254037845377 -0.4999999999998284 0 -0.8660254037845377 -0.4999999999998284 0 -0.9238795325112122 -0.3826834323652698 0 -0.9238795325112122 -0.3826834323652698 0 -0.9659258262890901 -0.2588190451024401 0 -0.9659258262890901 -0.2588190451024401 0 -0.9914448613738833 -0.1305261922194982 0 -0.9914448613738833 -0.1305261922194982 0 -0.997858923238638 -0.06540312922961909 -0 -0.997858923238638 -0.06540312922961909 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.9978589232386694 0.06540312922913877 0 -0.9914448613739054 0.1305261922193298 0 -0.9914448613739054 0.1305261922193298 0 -0.9978589232386694 0.06540312922913877 0 -0.9659258262890584 0.2588190451025578 0 -0.9659258262890584 0.2588190451025578 0 -0.923879532511276 0.3826834323651157 0 -0.923879532511276 0.3826834323651157 0 -0.8660254037843593 0.5000000000001372 0 -0.8660254037843593 0.5000000000001372 0 -0.793353340290994 0.608761429009035 0 -0.793353340290994 0.608761429009035 0 -0.7071067811861586 0.7071067811869366 0 -0.7071067811861586 0.7071067811869366 0 -0.6087614290088786 0.793353340291114 0 -0.6087614290088786 0.793353340291114 0 -0.5000000000005405 0.8660254037841265 0 -0.5000000000005405 0.8660254037841265 0 -0.3826834323649039 0.9238795325113639 0 -0.3826834323649039 0.9238795325113639 0 -0.2588190451027368 0.9659258262890103 0 -0.2588190451027368 0.9659258262890103 0 -0.1305261922200789 0.9914448613738068 0 -0.1305261922200789 0.9914448613738068 0 -0.06540312922959453 0.9978589232386395 0 -0.06540312922959453 0.9978589232386395 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0654031292309547 0.9978589232385503 0 -0.1305261922200869 0.9914448613738057 0 -0.0654031292309547 0.9978589232385503 0 -0.1305261922200869 0.9914448613738057 0 -0.2588190451025692 0.9659258262890552 0 -0.2588190451025692 0.9659258262890552 0 -0.3826834323655326 0.9238795325111032 0 -0.3826834323655326 0.9238795325111032 0 -0.4999999999994493 0.8660254037847566 0 -0.4999999999994493 0.8660254037847566 0 -0.6087614290082801 0.7933533402915733 1.589264974689687e-031 -0.6087614290082801 0.7933533402915733 1.589264974689687e-031 -0.7071067811865249 0.7071067811865701 1.589264974689568e-031 -0.7071067811865249 0.7071067811865701 1.589264974689568e-031 -0.7933533402911953 0.6087614290087727 2.004146385839144e-031 -0.7933533402911953 0.6087614290087727 2.004146385839144e-031 -0.8660254037849142 0.4999999999991765 2.004146385839205e-031 -0.8660254037849142 0.4999999999991765 2.004146385839205e-031 -0.9238795325113519 0.3826834323649326 0 -0.9238795325113519 0.3826834323649326 0 -0.9659258262888851 0.2588190451032043 -2.364051849785316e-031 -0.9659258262888851 0.2588190451032043 -2.364051849785316e-031 -0.9914448613738267 0.1305261922199271 -2.364051849785246e-031 -0.9914448613738267 0.1305261922199271 -2.364051849785246e-031 -0.9978589232386241 0.0654031292298287 0 -0.9978589232386241 0.0654031292298287 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.991444861373845 -0.130526192219789 0 -0.9978589232386542 -0.06540312922937019 0 -0.9978589232386542 -0.06540312922937019 0 -0.991444861373845 -0.130526192219789 0 -0.9659258262890479 -0.2588190451025965 0 -0.9659258262890479 -0.2588190451025965 0 -0.9238795325113181 -0.3826834323650143 0 -0.9238795325113181 -0.3826834323650143 0 -0.8660254037844345 -0.5000000000000071 0 -0.8660254037844345 -0.5000000000000071 0 -0.7933533402912433 -0.6087614290087101 0 -0.7933533402912433 -0.6087614290087101 0 -0.707106781186616 -0.7071067811864791 0 -0.707106781186616 -0.7071067811864791 0 -0.6087614290086468 -0.7933533402912919 0 -0.6087614290086468 -0.7933533402912919 0 -0.5000000000000009 -0.8660254037844382 0 -0.5000000000000009 -0.8660254037844382 0 -0.3826834323651677 -0.9238795325112544 0 -0.3826834323651677 -0.9238795325112544 0 -0.2588190451023318 -0.9659258262891188 0 -0.2588190451023318 -0.9659258262891188 0 -0.2195141426946883 0.9756093178916528 -2.251662460960872e-031 -0.4283200860438445 0.9036270823140448 -2.039446246926806e-031 -0.1832544872618059 0.983065507938516 -2.276641252136103e-031 -0.4283200860438445 0.9036270823140448 -2.039446246926806e-031 -0.6162319912743373 0.7875646849180484 -1.727743062721139e-031 -0.6162319912743373 0.7875646849180484 -1.727743062721139e-031 -0.7740832592965722 0.6330838077828211 -1.331758214899901e-031 -0.7740832592965722 0.6330838077828211 -1.331758214899901e-031 -0.8941736899130333 0.4477202388404067 -8.708083845489539e-032 -0.8941736899130333 0.4477202388404067 -8.708083845489539e-032 -0.9706451080888319 0.2405162658599619 -3.673793332284476e-032 -0.9706451080888319 0.2405162658599619 -3.673793332284476e-032 -0.9997671337217909 0.02157958131462663 1.539709831518109e-032 -0.9997671337217909 0.02157958131462663 1.539709831518109e-032 -0.9801191546728204 -0.1984097846464127 6.67810384924031e-032 -0.9801191546728204 -0.1984097846464127 6.67810384924031e-032 -0.9126596261640011 -0.4087204506385578 1.149073085081814e-031 -0.9126596261640011 -0.4087204506385578 1.149073085081814e-031 -0.8006793160253677 -0.5990931754653439 1.574282432564735e-031 -0.8006793160253677 -0.5990931754653439 1.574282432564735e-031 -0.6496407765509797 -0.7602413178999415 1.9226961353246e-031 -0.6496407765509797 -0.7602413178999415 1.9226961353246e-031 -0.5617119664874528 -0.8273328633052111 2.062622892710896e-031 -0.5617119664874528 -0.8273328633052111 2.062622892710896e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 0.0654031292301436 -0.9978589232386035 2.33560359979311e-031 0.1305261922200579 -0.9914448613738096 2.307166278009732e-031 0.0654031292301436 -0.9978589232386035 2.33560359979311e-031 0.1305261922200579 -0.9914448613738096 2.307166278009732e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 0.2588190451025239 -0.9659258262890675 2.220816792941599e-031 0.2588190451025239 -0.9659258262890675 2.220816792941599e-031 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 0.3826834323650852 -0.9238795325112886 2.096468516819501e-031 0.3826834323650852 -0.9238795325112886 2.096468516819501e-031 0.1305261922200759 0.9914448613738072 -2.360634470126157e-031 0.0654031292301361 0.997858923238604 -2.362395058420794e-031 0.1305261922200759 0.9914448613738072 -2.360634470126157e-031 0.0654031292301361 0.997858923238604 -2.362395058420794e-031 0.4999999999999988 -0.8660254037844394 1.936249083123728e-031 0.4999999999999988 -0.8660254037844394 1.936249083123728e-031 0.2588190451025202 0.9659258262890684 -2.326838321583154e-031 0.2588190451025202 0.9659258262890684 -2.326838321583154e-031 0.6087614290087232 -0.7933533402912332 1.742899890786038e-031 0.6087614290087232 -0.7933533402912332 1.742899890786038e-031 0.382683432365069 0.9238795325112953 -2.253229324236416e-031 0.382683432365069 0.9238795325112953 -2.253229324236416e-031 0.7071067811865497 -0.7071067811865455 1.519729198093864e-031 0.7071067811865497 -0.7071067811865455 1.519729198093864e-031 0.5000000000000147 0.8660254037844301 -2.141066948438753e-031 0.5000000000000147 0.8660254037844301 -2.141066948438753e-031 0.7933533402912354 -0.6087614290087204 1.270555517473774e-031 0.7933533402912354 -0.6087614290087204 1.270555517473774e-031 0.6087614290087049 0.7933533402912473 -1.992270323537472e-031 0.6087614290087049 0.7933533402912473 -1.992270323537472e-031 0.8660254037844404 -0.4999999999999971 9.996422796851562e-032 0.8660254037844404 -0.4999999999999971 9.996422796851562e-032 0.7071067811865293 0.7071067811865658 -1.809385401038751e-031 0.7071067811865293 0.7071067811865658 -1.809385401038751e-031 0.9238795325112879 -0.3826834323650874 7.116248853379323e-032 0.9238795325112879 -0.3826834323650874 7.116248853379323e-032 0.7933533402912396 0.6087614290087149 -1.595541392671784e-031 0.7933533402912396 0.6087614290087149 -1.595541392671784e-031 0.965925826289068 -0.2588190451025222 4.114313919028921e-032 0.965925826289068 -0.2588190451025222 4.114313919028921e-032 0.8660254037844386 0.4999999999999999 -1.35439722870862e-031 0.8660254037844386 0.4999999999999999 -1.35439722870862e-031 0.9914448613738105 -0.1305261922200517 1.041981932820484e-032 0.9914448613738105 -0.1305261922200517 1.041981932820484e-032 0.9238795325112905 0.3826834323650806 -1.090078952652364e-031 0.9238795325112905 0.3826834323650806 -1.090078952652364e-031 0.9978589232386037 -0.0654031292301418 -5.041778436296195e-033 0.9978589232386037 -0.0654031292301418 -5.041778436296195e-033 0.9659258262890674 0.258819045102524 -8.071091234892916e-032 0.9659258262890674 0.258819045102524 -8.071091234892916e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 0.9914448613738091 0.1305261922200617 -5.103294334503805e-032 0.9914448613738091 0.1305261922200617 -5.103294334503805e-032 0.9978589232386044 0.06540312923013249 -3.583408847236163e-032 0.9978589232386044 0.06540312923013249 -3.583408847236163e-032 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 4 3 5 6 7 8 7 6 9 10 11 12 11 10 13 13 10 14 14 10 15 15 10 16 16 10 17 17 10 18 18 10 19 19 10 20 20 10 21 21 10 22 22 10 23 23 10 24 25 26 27 26 25 28 26 28 29 26 29 30 26 30 31 26 31 32 26 32 33 26 33 34 26 34 35 26 35 36 26 36 37 26 37 24 26 24 10 26 10 38 26 38 39 39 38 40 40 38 41 40 41 42 42 41 43 42 43 44 44 43 45 44 45 46 44 46 47 47 46 48 48 46 49 48 49 50 50 49 51 50 51 52 52 51 53 52 53 54 52 54 55 55 54 56 55 56 57 57 56 58 57 58 59 59 58 60 59 60 61 62 63 64 63 62 65 66 67 68 67 66 69 69 66 70 70 66 71 71 66 72 72 66 73 73 66 74 74 66 75 75 66 76 75 76 77 75 77 78 78 77 79 78 79 80 80 79 81 81 79 82 81 82 83 83 82 84 83 84 85 83 85 86 86 85 87 87 85 88 87 88 89 87 89 90 90 89 91 90 91 92 92 91 93 93 91 94 93 94 95 95 94 96 95 96 97 97 96 98 99 74 100 74 99 101 74 101 102 74 102 103 74 103 104 74 104 73 105 106 107 106 105 108 108 105 109 110 8 111 8 110 6 112 111 113 111 112 110 114 113 115 113 114 112 116 115 117 115 116 114 118 117 119 117 118 116 118 120 121 120 118 119 121 122 123 122 121 120 123 124 125 124 123 122 125 126 127 126 125 124 127 128 129 128 127 126 129 130 131 130 129 128 132 133 134 133 132 135 136 137 138 137 136 139 138 140 141 140 138 137 141 142 143 142 141 140 143 144 145 144 143 142 145 146 147 146 145 144 147 148 149 148 147 146 150 148 151 148 150 149 152 151 153 151 152 150 154 153 155 153 154 152 156 155 157 155 156 154 158 157 159 157 158 156 160 159 161 159 160 158 162 163 164 163 162 165 163 165 166 167 164 163 168 169 170 169 168 171 171 172 169 172 171 173 173 174 172 174 173 175 175 176 174 176 175 177 177 178 176 178 177 179 179 180 178 180 179 181 182 180 181 180 182 183 184 183 182 183 184 185 186 185 184 185 186 187 188 187 186 187 188 189 190 189 188 189 190 191 192 191 190 191 192 193 194 195 196 195 194 197 198 199 200 199 198 201 202 201 198 201 202 203 204 203 202 203 204 205 206 205 204 205 206 207 208 207 206 207 208 209 210 209 208 209 210 211 210 212 211 212 210 213 213 214 212 214 213 215 215 216 214 216 215 217 217 218 216 218 217 219 219 64 218 64 219 62 220 221 222 221 220 223 223 224 221 224 223 225 225 226 224 226 225 227 228 226 227 226 228 229 230 229 228 229 230 231 232 231 230 231 232 233 234 233 232 233 234 235 236 235 234 235 236 237 238 237 236 237 238 239 240 239 238 239 240 241 240 242 241 242 240 243 244 245 246 245 244 247 248 249 250 249 248 251 252 253 254 253 252 222 222 252 220 251 255 249 255 251 256 257 258 259 258 257 260 256 261 255 261 256 262 263 264 265 264 263 266 262 267 261 267 262 268 269 265 270 265 269 263 268 271 267 271 268 272 273 270 274 270 273 269 272 275 271 275 272 276 277 274 278 274 277 273 275 279 280 279 275 276 281 278 282 278 281 277 280 283 284 283 280 279 285 282 286 282 285 281 284 287 288 287 284 283 289 285 286 285 289 290 288 291 292 291 288 287 293 290 289 290 293 294 292 295 296 295 292 291 297 294 293 294 297 298 296 299 300 299 296 295 301 298 297 298 301 302 303 304 305 304 303 306 307 302 301 302 307 308 309 308 307 308 309 310

+
+
+
+ + + + 51.18110236220473 0 0.2420033578231452 51.18110236220473 0.7153153851313139 0.8468730150304643 51.18110236220473 0 2.407357688531807 51.18110236220473 7.244915004483692 0.2420033578231461 51.18110236220473 6.474023811682754 0.8468730150304621 51.18110236220473 6.474023811682754 1.408731047881116 51.18110236220473 0.7153153851313139 1.408731047881116 51.18110236220473 7.244915004483692 2.407357688531808 51.18110236220473 0 2.407357688531807 0 0 0.2420033578231452 51.18110236220473 0 0.2420033578231452 0 0 2.407357688531807 0.346039204183235 6.422318429944758 0.2420033578231465 0.346039204183235 2.136762732649794 0.2420033578231463 0.3460392041832279 0.5491086559751146 0.2420033578231463 0.346039204183235 3.173087089051807 0.2420033578231459 0.3542852686363247 3.110452011068416 0.2420033578231459 0.3477764914940522 2.163268614948402 0.2420033578231463 0.3529586279589694 2.189320974252061 0.2420033578231463 0.3614969457863069 2.214474047470008 0.2420033578231463 0.378461506330396 3.052085410140231 0.2420033578231459 0.3732453519907679 2.238297458545736 0.2420033578231463 0.3880028280849146 2.260383582310636 0.2420033578231463 0.4169203466197189 3.001964873665143 0.2420033578231459 0.4055168695612395 2.280354519063669 0.2420033578231463 0.4254878063142726 2.297868560539994 0.2420033578231463 0.4670408830948034 2.963506033375824 0.2420033578231459 0.447573930079173 2.312626036634145 0.2420033578231463 0.4713973411548977 2.324374442838602 0.2420033578231463 0.5254074840229919 2.939329795681752 0.2420033578231459 0.4965504143728481 2.332912760665936 0.2420033578231463 0.5226027736765033 2.338094897130853 0.2420033578231463 0.5491086559751111 2.339832184441677 0.2420033578231463 0.5880425620063789 2.931083731228659 0.2420033578231459 25.50480608586854 2.33983218444167 0.2420033578231463 0.6506776399897731 2.939329795681752 0.2420033578231459 0.7090442409179545 2.963506033375824 0.2420033578231459 0.759164777393039 3.001964873665143 0.2420033578231459 0.7976236176823619 3.052085410140231 0.2420033578231459 0.8217998553764332 3.110452011068416 0.2420033578231459 0.8300459198295229 3.173087089051807 0.2420033578231459 0 7.244915004483692 0.2420033578231452 0 0 0.2420033578231452 0.3542852686363247 6.484953507928148 0.2420033578231465 0.378461506330396 6.54332010885633 0.2420033578231465 0.4169203466197189 6.593440645331421 0.2420033578231465 0.4670408830948034 6.631899485620737 0.2420033578231465 0.5254074840229848 6.656075723314809 0.2420033578231465 0.5880425620063789 6.664321787767905 0.2420033578231465 51.18110236220473 7.244915004483692 0.2420033578231461 0.650677639989766 6.656075723314809 0.2420033578231465 0.7090442409179545 6.631899485620737 0.2420033578231465 0.759164777393039 6.593440645331421 0.2420033578231465 0.7976236176823548 6.54332010885633 0.2420033578231465 0.8217998553764332 6.484953507928148 0.2420033578231465 0.8300459198295229 6.422318429944758 0.2420033578231465 43.8785667103903 6.693733902121489 0.2420033578231468 43.85251435108663 6.688551765656571 0.2420033578231468 43.82736127786869 6.680013447829234 0.2420033578231468 43.80353786679296 6.66826504162478 0.2420033578231468 43.78145174302806 6.653507565530626 0.2420033578231468 43.76148080627502 6.635993524054301 0.2420033578231468 43.7439667647987 6.616022587301272 0.2420033578231468 43.72920928870455 6.593936463536368 0.2420033578231468 43.71746088250009 6.570113052460643 0.2420033578231468 43.70892256467276 6.544959979242696 0.2420033578231468 43.70374042820784 6.518907619939037 0.2420033578231468 50.144256319116 6.693733902121489 0.242003357823147 50.1707622014146 6.691996614810657 0.242003357823147 50.19681456071828 6.686814478345747 0.242003357823147 50.22196763393622 6.67827616051841 0.242003357823147 50.24579104501194 6.666527754313949 0.242003357823147 50.26787716877683 6.651770278219816 0.242003357823147 50.28784810552988 6.634256236743484 0.242003357823147 50.3053621470062 6.614285299990458 0.242003357823147 50.32011962310036 6.592199176225558 0.242003357823147 50.3318680293048 6.568375765149819 0.242003357823147 50.34040634713218 6.543222691931861 0.242003357823147 50.34558848359706 6.517170332628217 0.242003357823147 50.3473257709079 6.490664450329613 0.242003357823147 50.3473257709079 3.127233759244804 0.2420033578231463 50.3473257709079 2.136762732649773 0.2420033578231463 50.3473257709079 0.5508869384357045 0.2420033578231463 0.5491086559751182 0.3460392041832314 0.2420033578231463 51.18110236220473 0 0.2420033578231452 0.5226027736765104 0.3477764914940558 0.2420033578231463 0.4965504143728481 0.3529586279589729 0.2420033578231463 0.4713973411548977 0.3614969457863069 0.2420033578231463 0.447573930079173 0.3732453519907644 0.2420033578231463 0.4254878063142726 0.3880028280849146 0.2420033578231463 0.4055168695612395 0.4055168695612395 0.2420033578231463 0.3880028280849146 0.4254878063142709 0.2420033578231463 0.3732453519907679 0.447573930079173 0.2420033578231463 0.3614969457863069 0.4713973411548995 0.2420033578231463 0.3529586279589694 0.4965504143728481 0.2420033578231463 0.3477764914940522 0.5226027736765069 0.2420033578231463 28.98669970978262 0.3460392041831959 0.2420033578231463 29.00270410638306 0.3478174866438408 0.2420033578231463 50.14425631911605 0.3478174866438408 0.2420033578231463 50.17076220141466 0.3495547739546492 0.2420033578231463 50.19681456071831 0.3547369104195806 0.2420033578231463 50.22196763393623 0.3632752282469021 0.2420033578231463 50.24579104501201 0.3750236344513791 0.2420033578231463 50.26787716877686 0.3897811105455418 0.2420033578231463 50.28784810552991 0.4072951520218435 0.2420033578231463 50.30536214700624 0.427266088774882 0.2420033578231463 50.32011962310041 0.4493522125397735 0.2420033578231463 50.33186802930485 0.4731756236154912 0.2420033578231463 50.3404063471322 0.4983286968334255 0.2420033578231463 50.34558848359711 0.5243810561371145 0.2420033578231463 43.88030399770113 2.925901594763742 0.2420033578231463 50.14425631911605 2.33983218444167 0.2420033578231463 43.85425163839747 2.931083731228659 0.2420033578231463 43.82909856517952 2.939622049055986 0.2420033578231463 43.80527515410382 2.951370455260454 0.2420033578231463 43.78318903033888 2.96612793135459 0.2420033578231463 43.76321809358586 2.983641972830919 0.2420033578231463 43.74570405210953 3.003612909583955 0.2420033578231463 43.73094657601542 3.025699033348863 0.2420033578231463 43.71919816981094 3.04952244442458 0.2420033578231463 43.71065985198359 3.074675517642527 0.2420033578231463 43.70547771551868 3.10072787694619 0.2420033578231463 43.70374042820784 3.127233759244797 0.2420033578231463 43.90680987999974 2.924164307452925 0.2420033578231463 50.14425631911599 2.924164307452925 0.2420033578231463 50.17076220141464 2.925901594763753 0.2420033578231463 50.17076220141468 2.338094897130828 0.2420033578231463 50.19681456071832 2.931083731228656 0.2420033578231463 50.19681456071832 2.332912760665918 0.2420033578231463 50.22196763393622 2.939622049056018 0.2420033578231463 50.22196763393626 2.324374442838588 0.2420033578231463 50.24579104501196 2.951370455260465 0.2420033578231463 50.24579104501199 2.31262603663413 0.2420033578231463 50.26787716877688 2.966127931354594 0.2420033578231463 50.26787716877689 2.297868560539984 0.2420033578231463 50.28784810552991 2.983641972830951 0.2420033578231463 50.28784810552993 2.280354519063655 0.2420033578231463 50.3053621470062 3.003612909583973 0.2420033578231463 50.30536214700626 2.260383582310615 0.2420033578231463 50.32011962310035 3.025699033348873 0.2420033578231463 50.32011962310039 2.238297458545718 0.2420033578231463 50.33186802930481 3.049522444424609 0.2420033578231463 50.33186802930484 2.21447404747 0.2420033578231463 50.34040634713214 3.074675517642548 0.2420033578231463 50.34040634713219 2.189320974252057 0.2420033578231463 50.34558848359704 3.100727876946218 0.2420033578231463 50.34558848359709 2.163268614948384 0.2420033578231463 0 7.244915004483692 2.407357688531807 51.18110236220473 7.244915004483692 0.2420033578231461 0 7.244915004483692 0.2420033578231452 51.18110236220473 7.244915004483692 2.407357688531808 0 0 2.407357688531807 0.1184986753859647 0.2465682045726894 2.407357688531807 0 7.244915004483692 2.407357688531807 0.1195943279619485 0.2298517765885322 2.407357688531807 0.1228625387705549 0.2134213713218518 2.407357688531807 0.1282473878187176 0.1975581175621333 2.407357688531807 0.1356567388462722 0.182533439979327 2.407357688531807 0.1449638158028748 0.1686044149725046 2.407357688531807 0.1560093720213871 0.1560093720213889 2.407357688531807 0.1686044149725063 0.1449638158028765 2.407357688531807 0.1825334399793306 0.1356567388462739 2.407357688531807 0.1975581175621315 0.1282473878187194 2.407357688531807 0.2134213713218571 0.1228625387705513 2.407357688531807 0.2298517765885322 0.1195943279619485 2.407357688531807 0.2465682045726894 0.1184986753859647 2.407357688531807 51.18110236220473 0 2.407357688531807 30.0860261920037 0.1184986753859683 2.407357688531807 30.09803909744245 0.1212016043046447 2.407357688531807 30.70679771243117 0.1184986753859665 2.407357688531807 30.10330938016302 0.1244567554178957 2.407357688531807 30.10773656538716 0.1287894127682918 2.407357688531807 30.11110468898 0.1339882234195979 2.407357688531807 30.11324944927784 0.1397995822959413 2.407357688531807 30.11406622194742 0.1459400033833784 2.407357688531807 51.06260368681876 0.1184986753859647 2.407357688531807 51.06260368681876 7.126416329097724 2.407357688531808 0.1184986753859647 7.126416329097724 2.407357688531807 51.18110236220473 7.244915004483692 2.407357688531808 0.1184986753859647 2.439303184052209 2.407357688531807 0.1184986753859647 2.804370064010866 2.407357688531807 0.1195943279619485 2.456019612036366 2.407357688531807 0.1228625387705478 2.472450017303048 2.407357688531807 0.1282473878187176 2.488313271062767 2.407357688531807 0.1356567388462722 2.503337948645571 2.407357688531807 0.1449638158028748 2.517266973652395 2.407357688531807 0.1560093720213871 2.529862016603511 2.407357688531807 0.1686044149725063 2.540907572822023 2.407357688531807 0.1825334399793306 2.550214649778626 2.407357688531807 0.1975581175621315 2.557624000806181 2.407357688531807 0.21342137132185 2.56300884985435 2.407357688531807 0.2298517765885322 2.566277060662953 2.407357688531807 0.2465682045726894 2.567372713238934 2.407357688531807 25.61991398185795 2.804370064010866 2.407357688531807 25.56118838034679 2.567372713238937 2.407357688531807 30.09912146437194 0.1713469183847511 2.407357688531807 30.10848249331568 0.1633477397435232 2.407357688531807 30.11162315591949 0.1580084394959354 2.407357688531807 30.11351516370367 0.1521099485644015 2.407357688531807 0 7.244915004483692 2.407357688531807 0 0 0.2420033578231452 0 0 2.407357688531807 0 7.244915004483692 0.2420033578231452 + + + + + + + + + + 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 8.073020723831364e-018 6.076588846250485e-017 -1 0 1 0 0 1 0 0 1 0 0 1 0 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -8.676819946301222e-018 -6.129667629989134e-017 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 4 3 5 2 6 7 6 2 1 7 6 5 7 5 3 8 9 10 9 8 11 12 13 14 13 12 15 16 13 15 13 16 17 17 16 18 18 16 19 19 16 20 19 20 21 21 20 22 22 20 23 22 23 24 24 23 25 25 23 26 25 26 27 27 26 28 28 26 29 28 29 30 30 29 31 31 29 32 32 29 33 32 33 34 34 33 35 34 35 36 34 36 37 34 37 38 34 38 39 34 39 40 41 12 42 12 41 43 43 41 44 44 41 45 45 41 46 46 41 47 47 41 48 48 41 49 42 12 14 48 49 50 50 49 51 51 49 52 52 49 53 53 49 54 54 49 55 55 49 56 55 56 40 40 56 57 40 57 34 34 57 58 34 58 59 34 59 60 34 60 61 34 61 62 34 62 63 34 63 64 34 64 65 34 65 66 56 49 67 67 49 68 68 49 69 69 49 70 70 49 71 71 49 72 72 49 73 73 49 74 74 49 75 75 49 76 76 49 77 77 49 78 78 49 79 79 49 80 80 49 81 81 49 82 42 83 84 83 42 85 85 42 86 86 42 87 87 42 88 88 42 89 89 42 90 90 42 91 91 42 92 92 42 93 93 42 94 94 42 95 95 42 14 84 83 96 84 96 97 84 97 98 84 98 99 84 99 100 84 100 101 84 101 102 84 102 103 84 103 104 84 104 105 84 105 106 84 106 107 84 107 108 84 108 109 84 109 82 84 82 49 34 110 111 110 34 112 112 34 113 113 34 114 114 34 115 115 34 116 116 34 117 117 34 118 118 34 119 119 34 120 120 34 121 121 34 122 122 34 66 111 110 123 111 123 124 111 124 125 111 125 126 126 125 127 126 127 128 128 127 129 128 129 130 130 129 131 130 131 132 132 131 133 132 133 134 134 133 135 134 135 136 136 135 137 136 137 138 138 137 139 138 139 140 140 139 141 140 141 142 142 141 143 142 143 144 144 143 145 144 145 146 146 145 80 146 80 81 147 148 149 148 147 150 151 152 153 152 151 154 154 151 155 155 151 156 156 151 157 157 151 158 158 151 159 159 151 160 160 151 161 161 151 162 162 151 163 163 151 164 164 151 165 165 151 166 165 166 167 167 166 168 168 166 169 168 169 170 170 169 171 171 169 172 172 169 173 173 169 174 169 166 175 175 166 176 153 177 178 177 153 152 177 152 179 177 179 180 178 177 176 178 176 166 181 180 179 180 181 182 180 182 183 180 183 184 180 184 185 180 185 186 180 186 187 180 187 188 180 188 189 180 189 190 180 190 191 180 191 192 180 192 193 193 192 194 193 194 195 193 195 169 169 195 196 169 196 197 169 197 198 169 198 174 199 200 201 200 199 202

+
+
+
+ + + + 7.185744440252307 4.965393196554279 2.367987609791654 6.138618298056045 6.012519338750517 2.367987609791654 6.138618298056045 4.965393196554279 2.367987609791654 6.409634486281163 5.976839380684064 2.367987609791654 6.662181369154183 5.872231036663022 2.367987609791654 6.879048293960743 5.705823192458942 2.367987609791654 7.045456138164809 5.488956267652393 2.367987609791654 7.150064482185833 5.236409384779384 2.367987609791654 5.127172113926278 5.236409384779384 2.367987609791654 5.091492155859804 4.965393196554279 2.367987609791654 5.231780457947352 5.488956267652393 2.367987609791654 5.398188302151425 5.705823192458942 2.367987609791654 5.615055226958035 5.872231036663022 2.367987609791654 5.867602109831005 5.976839380684064 2.367987609791654 6.409634486281163 3.953947012424505 2.367987609791654 6.138618298056045 3.918267054358042 2.367987609791654 6.662181369154183 4.058555356445543 2.367987609791654 6.879048293960743 4.224963200649617 2.367987609791654 7.045456138164809 4.441830125456148 2.367987609791654 7.150064482185833 4.694377008329182 2.367987609791654 5.127172113926278 4.694377008329157 2.367987609791654 5.231780457947352 4.441830125456148 2.367987609791654 5.398188302151425 4.224963200649617 2.367987609791654 5.615055226958035 4.058555356445543 2.367987609791654 5.867602109831005 3.953947012424505 2.367987609791654 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 2 8 9 8 2 10 10 2 11 11 2 12 12 2 13 13 2 1 14 2 15 2 14 0 0 14 16 0 16 17 0 17 18 0 18 19 20 2 9 2 20 21 2 21 22 2 22 23 2 23 24 2 24 15

+
+
+
+ + + + 43.74570405210953 3.003612909583955 0.2420033578231463 43.76321809358586 2.983641972830919 0.3207435153034614 43.76321809358586 2.983641972830919 0.2420033578231463 43.74570405210953 3.003612909583955 0.3207435153034614 43.73094657601542 3.025699033348863 0.2420033578231463 43.73094657601542 3.025699033348863 0.3207435153034614 43.70892256467276 6.544959979242696 0.3207435153034618 43.70374042820784 3.127233759244797 0.3207435153034614 43.70374042820784 6.518907619939037 0.3207435153034618 43.70547771551868 3.10072787694619 0.3207435153034614 43.71065985198359 3.074675517642527 0.3207435153034614 43.71746088250009 6.570113052460643 0.3207435153034618 43.71919816981094 3.04952244442458 0.3207435153034614 43.72920928870455 6.593936463536368 0.3207435153034618 43.73094657601542 3.025699033348863 0.3207435153034614 43.73813152475472 6.515520392577111 0.3207435153034618 43.7439667647987 6.616022587301272 0.3207435153034618 43.74221309059323 6.536039809706709 0.3207435153034618 43.74930228759288 6.556923910626212 0.3207435153034618 43.76148080627502 6.635993524054301 0.3207435153034618 43.75905675770041 6.576704019276997 0.3207435153034618 43.77130959922782 6.59504169251594 0.3207435153034618 43.78145174302806 6.653507565530626 0.3207435153034618 43.78585116265949 6.611623167669842 0.3207435153034618 43.80353786679296 6.66826504162478 0.3207435153034618 43.80243263781338 6.626164731101502 0.3207435153034618 43.82077031105234 6.638417572628923 0.3207435153034618 43.82736127786869 6.680013447829234 0.3207435153034618 43.84055041970313 6.648172042736457 0.3207435153034618 43.85251435108663 6.688551765656571 0.3207435153034618 43.86143452062263 6.655261239736115 0.3207435153034618 43.8785667103903 6.693733902121489 0.3207435153034618 43.88195393775219 6.659342805574605 0.3207435153034618 50.144256319116 6.693733902121489 0.3207435153034618 50.14313047118674 6.659342805574601 0.3207435153034618 50.16626363075097 6.657826578190901 0.3207435153034618 50.1707622014146 6.691996614810657 0.3207435153034618 50.18789439118228 6.653523952425294 0.3207435153034618 50.19681456071828 6.686814478345747 0.3207435153034618 50.20877849210176 6.646434755425636 0.3207435153034618 50.22196763393622 6.67827616051841 0.3207435153034618 50.22855860075256 6.636680285318088 0.3207435153034618 50.24579104501194 6.666527754313949 0.3207435153034618 50.24689627399151 6.624427443790681 0.3207435153034618 50.26787716877683 6.651770278219816 0.3207435153034618 50.26347774914542 6.609885880359011 0.3207435153034618 50.27801931257708 6.593304405205133 0.3207435153034618 50.28784810552988 6.634256236743484 0.3207435153034618 50.29027215410449 6.574966731966187 0.3207435153034618 50.3053621470062 6.614285299990458 0.3207435153034618 50.30002662421204 6.555186623315345 0.3207435153034618 50.30711582121172 6.534302522395885 0.3207435153034618 50.32011962310036 6.592199176225558 0.3207435153034618 50.31141844697731 6.512671761964556 0.3207435153034618 50.31293467436102 6.489538602400339 0.3207435153034618 50.31293467436102 3.128359607174145 0.3207435153034614 50.32011962310035 3.025699033348873 0.3207435153034614 50.33186802930481 3.049522444424609 0.3207435153034614 50.3318680293048 6.568375765149819 0.3207435153034618 50.34040634713218 6.543222691931861 0.3207435153034618 50.34040634713214 3.074675517642548 0.3207435153034614 50.34558848359704 3.100727876946218 0.3207435153034614 50.34558848359706 6.517170332628217 0.3207435153034618 50.3473257709079 3.127233759244804 0.3207435153034614 50.3473257709079 6.490664450329613 0.3207435153034618 43.73813152475472 3.128359607174163 0.3207435153034614 43.74570405210953 3.003612909583955 0.3207435153034614 43.73964775213843 3.105226447609857 0.3207435153034614 43.74395037790404 3.083595687178518 0.3207435153034614 43.75103957490371 3.062711586259033 0.3207435153034614 43.76321809358586 2.983641972830919 0.3207435153034614 43.76079404501126 3.042931477608272 0.3207435153034614 43.77304688653869 3.02459380436923 0.3207435153034614 43.78318903033888 2.96612793135459 0.3207435153034614 43.78758844997034 3.00801232921537 0.3207435153034614 43.80527515410382 2.951370455260454 0.3207435153034614 43.80416992512419 2.993470765783732 0.3207435153034614 43.82250759836319 2.981217924256312 0.3207435153034614 43.82909856517952 2.939622049055986 0.3207435153034614 43.84228770701396 2.971463454148767 0.3207435153034614 43.85425163839747 2.931083731228659 0.3207435153034614 43.86317180793347 2.964374257149116 0.3207435153034614 43.88030399770113 2.925901594763742 0.3207435153034614 43.88480256836478 2.960071631383501 0.3207435153034614 43.90680987999974 2.924164307452925 0.3207435153034614 43.90793572792918 2.958555403999798 0.3207435153034614 50.14425631911599 2.924164307452925 0.3207435153034614 50.14313047118665 2.958555403999805 0.3207435153034614 50.166263630751 2.960071631383512 0.3207435153034614 50.17076220141464 2.925901594763753 0.3207435153034614 50.1878943911823 2.964374257149109 0.3207435153034614 50.19681456071832 2.931083731228656 0.3207435153034614 50.20877849210176 2.971463454148788 0.3207435153034614 50.22196763393622 2.939622049056018 0.3207435153034614 50.22855860075259 2.981217924256329 0.3207435153034614 50.24579104501196 2.951370455260465 0.3207435153034614 50.24689627399157 2.993470765783735 0.3207435153034614 50.26787716877688 2.966127931354594 0.3207435153034614 50.26347774914544 3.008012329215406 0.3207435153034614 50.27801931257705 3.024593804369262 0.3207435153034614 50.28784810552991 2.983641972830951 0.3207435153034614 50.2902721541045 3.042931477608265 0.3207435153034614 50.3053621470062 3.003612909583973 0.3207435153034614 50.30002662421204 3.062711586259065 0.3207435153034614 50.30711582121167 3.08359568717851 0.3207435153034614 50.31141844697729 3.105226447609864 0.3207435153034614 43.78318903033888 2.96612793135459 0.2420033578231463 43.78318903033888 2.96612793135459 0.3207435153034614 43.71919816981094 3.04952244442458 0.2420033578231463 43.71919816981094 3.04952244442458 0.3207435153034614 43.8785667103903 6.693733902121489 0.3207435153034618 43.85251435108663 6.688551765656571 0.2420033578231468 43.8785667103903 6.693733902121489 0.2420033578231468 43.85251435108663 6.688551765656571 0.3207435153034618 50.144256319116 6.693733902121489 0.242003357823147 43.8785667103903 6.693733902121489 0.3207435153034618 43.8785667103903 6.693733902121489 0.2420033578231468 50.144256319116 6.693733902121489 0.3207435153034618 50.1707622014146 6.691996614810657 0.3207435153034618 50.144256319116 6.693733902121489 0.242003357823147 50.1707622014146 6.691996614810657 0.242003357823147 50.144256319116 6.693733902121489 0.3207435153034618 50.19681456071828 6.686814478345747 0.3207435153034618 50.19681456071828 6.686814478345747 0.242003357823147 50.22196763393622 6.67827616051841 0.3207435153034618 50.22196763393622 6.67827616051841 0.242003357823147 50.24579104501194 6.666527754313949 0.3207435153034618 50.24579104501194 6.666527754313949 0.242003357823147 50.26787716877683 6.651770278219816 0.3207435153034618 50.26787716877683 6.651770278219816 0.242003357823147 50.28784810552988 6.634256236743484 0.3207435153034618 50.28784810552988 6.634256236743484 0.242003357823147 50.3053621470062 6.614285299990458 0.242003357823147 50.3053621470062 6.614285299990458 0.3207435153034618 50.32011962310036 6.592199176225558 0.242003357823147 50.32011962310036 6.592199176225558 0.3207435153034618 50.3318680293048 6.568375765149819 0.242003357823147 50.3318680293048 6.568375765149819 0.3207435153034618 50.34040634713218 6.543222691931861 0.242003357823147 50.34040634713218 6.543222691931861 0.3207435153034618 50.34558848359706 6.517170332628217 0.242003357823147 50.34558848359706 6.517170332628217 0.3207435153034618 50.3473257709079 6.490664450329613 0.242003357823147 50.3473257709079 6.490664450329613 0.3207435153034618 50.3473257709079 6.490664450329613 0.3207435153034618 50.3473257709079 3.127233759244804 0.2420033578231463 50.3473257709079 3.127233759244804 0.3207435153034614 50.3473257709079 6.490664450329613 0.242003357823147 50.3473257709079 3.127233759244804 0.3207435153034614 50.34558848359704 3.100727876946218 0.2420033578231463 50.34558848359704 3.100727876946218 0.3207435153034614 50.3473257709079 3.127233759244804 0.2420033578231463 50.34040634713214 3.074675517642548 0.2420033578231463 50.34040634713214 3.074675517642548 0.3207435153034614 50.33186802930481 3.049522444424609 0.2420033578231463 50.33186802930481 3.049522444424609 0.3207435153034614 50.32011962310035 3.025699033348873 0.2420033578231463 50.32011962310035 3.025699033348873 0.3207435153034614 50.3053621470062 3.003612909583973 0.2420033578231463 50.3053621470062 3.003612909583973 0.3207435153034614 50.28784810552991 2.983641972830951 0.2420033578231463 50.28784810552991 2.983641972830951 0.3207435153034614 50.26787716877688 2.966127931354594 0.3207435153034614 50.26787716877688 2.966127931354594 0.2420033578231463 50.24579104501196 2.951370455260465 0.3207435153034614 50.24579104501196 2.951370455260465 0.2420033578231463 50.22196763393622 2.939622049056018 0.3207435153034614 50.22196763393622 2.939622049056018 0.2420033578231463 50.19681456071832 2.931083731228656 0.3207435153034614 50.19681456071832 2.931083731228656 0.2420033578231463 50.17076220141464 2.925901594763753 0.3207435153034614 50.17076220141464 2.925901594763753 0.2420033578231463 50.14425631911599 2.924164307452925 0.3207435153034614 50.14425631911599 2.924164307452925 0.2420033578231463 43.90680987999974 2.924164307452925 0.3207435153034614 50.14425631911599 2.924164307452925 0.2420033578231463 43.90680987999974 2.924164307452925 0.2420033578231463 50.14425631911599 2.924164307452925 0.3207435153034614 43.88030399770113 2.925901594763742 0.3207435153034614 43.90680987999974 2.924164307452925 0.2420033578231463 43.88030399770113 2.925901594763742 0.2420033578231463 43.90680987999974 2.924164307452925 0.3207435153034614 43.85425163839747 2.931083731228659 0.3207435153034614 43.85425163839747 2.931083731228659 0.2420033578231463 43.82909856517952 2.939622049055986 0.3207435153034614 43.82909856517952 2.939622049055986 0.2420033578231463 43.80527515410382 2.951370455260454 0.3207435153034614 43.80527515410382 2.951370455260454 0.2420033578231463 43.71065985198359 3.074675517642527 0.2420033578231463 43.71065985198359 3.074675517642527 0.3207435153034614 43.70547771551868 3.10072787694619 0.2420033578231463 43.70547771551868 3.10072787694619 0.3207435153034614 43.70374042820784 3.127233759244797 0.2420033578231463 43.70374042820784 3.127233759244797 0.3207435153034614 43.70374042820784 6.518907619939037 0.2420033578231468 43.70374042820784 3.127233759244797 0.3207435153034614 43.70374042820784 3.127233759244797 0.2420033578231463 43.70374042820784 6.518907619939037 0.3207435153034618 43.70892256467276 6.544959979242696 0.2420033578231468 43.70374042820784 6.518907619939037 0.3207435153034618 43.70374042820784 6.518907619939037 0.2420033578231468 43.70892256467276 6.544959979242696 0.3207435153034618 43.71746088250009 6.570113052460643 0.2420033578231468 43.71746088250009 6.570113052460643 0.3207435153034618 43.72920928870455 6.593936463536368 0.2420033578231468 43.72920928870455 6.593936463536368 0.3207435153034618 43.7439667647987 6.616022587301272 0.2420033578231468 43.7439667647987 6.616022587301272 0.3207435153034618 43.76148080627502 6.635993524054301 0.2420033578231468 43.76148080627502 6.635993524054301 0.3207435153034618 43.78145174302806 6.653507565530626 0.3207435153034618 43.78145174302806 6.653507565530626 0.2420033578231468 43.80353786679296 6.66826504162478 0.3207435153034618 43.80353786679296 6.66826504162478 0.2420033578231468 43.82736127786869 6.680013447829234 0.3207435153034618 43.82736127786869 6.680013447829234 0.2420033578231468 + + + + + + + + + + 0.7933533402916123 0.6087614290082293 -2.839269561091516e-018 0.7071067811866577 0.7071067811864372 -4.052304800255538e-019 0.7071067811866577 0.7071067811864372 -4.052304800255538e-019 0.7933533402916123 0.6087614290082293 -2.839269561091516e-018 0.8660254037845894 0.4999999999997392 -4.371774209999051e-018 0.8660254037845894 0.4999999999997392 -4.371774209999051e-018 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 1.253686526074775e-017 1.239000021359714e-016 -1 0.6087614290084553 0.7933533402914387 0 0.6087614290084553 0.7933533402914387 0 0.9238795325109803 0.3826834323658299 -1.937735128933529e-018 0.9238795325109803 0.3826834323658299 -1.937735128933529e-018 0.1950903220161044 -0.9807852804032353 0 0.2588190451025379 -0.9659258262890638 0 0.1950903220161044 -0.9807852804032353 0 0.2588190451025379 -0.9659258262890638 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.1305261922199814 -0.9914448613738197 -1.709441722766725e-018 -0.06540312923029369 -0.9978589232385936 0 -0.1305261922199814 -0.9914448613738197 -1.709441722766725e-018 -0.06540312923029369 -0.9978589232385936 0 -0.2588190451024848 -0.965925826289078 -1.709441722766441e-018 -0.2588190451024848 -0.965925826289078 -1.709441722766441e-018 -0.3826834323653059 -0.9238795325111974 2.09988620339952e-030 -0.3826834323653059 -0.9238795325111974 2.09988620339952e-030 -0.5000000000000238 -0.8660254037844251 2.434039081077433e-018 -0.5000000000000238 -0.8660254037844251 2.434039081077433e-018 -0.6087614290084881 -0.7933533402914138 2.43403908107569e-018 -0.6087614290084881 -0.7933533402914138 2.43403908107569e-018 -0.7071067811864248 -0.7071067811866704 0 -0.7071067811864248 -0.7071067811866704 0 -0.7933533402911389 -0.608761429008846 -3.304682530139375e-020 -0.7933533402911389 -0.608761429008846 -3.304682530139375e-020 -0.86602540378454 -0.4999999999998244 1.931622242525208e-018 -0.86602540378454 -0.4999999999998244 1.931622242525208e-018 -0.9238795325111538 -0.3826834323654103 1.964669067822613e-018 -0.9238795325111538 -0.3826834323654103 1.964669067822613e-018 -0.9659258262890302 -0.2588190451026625 -3.87034324265203e-030 -0.9659258262890302 -0.2588190451026625 -3.87034324265203e-030 -0.9914448613738499 -0.1305261922197522 5.464717762464277e-019 -0.9914448613738499 -0.1305261922197522 5.464717762464277e-019 -0.9978589232385668 -0.06540312923070416 1.090603476451351e-018 -0.9978589232385668 -0.06540312923070416 1.090603476451351e-018 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997858923238512 0.06540312923154031 0 -0.9914448613737562 0.1305261922204639 -1.25556995163587e-017 -0.9914448613737562 0.1305261922204639 -1.25556995163587e-017 -0.997858923238512 0.06540312923154031 0 -0.9659258262891491 0.2588190451022194 -2.671923207551682e-017 -0.9659258262891491 0.2588190451022194 -2.671923207551682e-017 -0.9238795325113063 0.3826834323650429 -2.969255619214416e-017 -0.9238795325113063 0.3826834323650429 -2.969255619214416e-017 -0.8660254037844481 0.4999999999999837 -3.215783243998619e-017 -0.8660254037844481 0.4999999999999837 -3.215783243998619e-017 -0.7933533402914977 0.6087614290083787 -3.407287925893871e-017 -0.7933533402914977 0.6087614290083787 -3.407287925893871e-017 -0.707106781187135 0.70710678118596 -3.54049296669877e-017 -0.707106781187135 0.70710678118596 -3.54049296669877e-017 -0.6087614290086183 0.7933533402913137 -3.61311919123416e-017 -0.6087614290086183 0.7933533402913137 -3.61311919123416e-017 -0.4999999999992923 0.8660254037848472 -3.623923944660778e-017 -0.4999999999992923 0.8660254037848472 -3.623923944660778e-017 -0.3826834323655242 0.9238795325111068 -3.5727223546533e-017 -0.3826834323655242 0.9238795325111068 -3.5727223546533e-017 -0.2588190451029578 0.9659258262889511 -3.460390494611714e-017 -0.2588190451029578 0.9659258262889511 -3.460390494611714e-017 -0.1305261922198164 0.9914448613738415 -3.28885039380478e-017 -0.1305261922198164 0.9914448613738415 -3.28885039380478e-017 -0.06540312923028883 0.997858923238594 -3.181756156529731e-017 -0.06540312923028883 0.997858923238594 -3.181756156529731e-017 7.119727827482288e-017 1 9.714463744566149e-032 7.119727827482288e-017 1 9.714463744566149e-032 7.119727827482288e-017 1 9.714463744566149e-032 7.119727827482288e-017 1 9.714463744566149e-032 0.1305261922199325 0.991444861373826 0 0.06540312922994411 0.9978589232386166 0 0.1305261922199325 0.991444861373826 0 0.06540312922994411 0.9978589232386166 0 0.2588190451023891 0.9659258262891036 0 0.2588190451023891 0.9659258262891036 0 0.3826834323652765 0.9238795325112095 0 0.3826834323652765 0.9238795325112095 0 0.4999999999998007 0.8660254037845535 0 0.4999999999998007 0.8660254037845535 0 0.9659258262889898 0.2588190451028135 1.709441722768831e-018 0.9659258262889898 0.2588190451028135 1.709441722768831e-018 0.9914448613738075 0.1305261922200738 1.162969946518176e-018 0.9914448613738075 0.1305261922200738 1.162969946518176e-018 0.9978589232385846 0.06540312923043123 -1.09060347645937e-018 0.9978589232385846 0.06540312923043123 -1.09060347645937e-018 1 0 0 1 0 0 1 0 0 1 0 0 0.9659258262890843 -0.2588190451024607 0 0.9807852804032251 -0.1950903220161558 0 0.9807852804032251 -0.1950903220161558 0 0.9659258262890843 -0.2588190451024607 0 0.9238795325112964 -0.3826834323650665 0 0.9238795325112964 -0.3826834323650665 0 0.8660254037844343 -0.5000000000000074 0 0.8660254037844343 -0.5000000000000074 0 0.7933533402912668 -0.6087614290086795 0 0.7933533402912668 -0.6087614290086795 0 0.7071067811865319 -0.707106781186563 0 0.7071067811865319 -0.707106781186563 0 0.6087614290087205 -0.7933533402912352 0 0.6087614290087205 -0.7933533402912352 0 0.4999999999999814 -0.8660254037844494 0 0.4999999999999814 -0.8660254037844494 0 0.382683432365068 -0.9238795325112958 0 0.382683432365068 -0.9238795325112958 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 3 0 3 4 5 6 7 8 7 6 9 9 6 10 10 6 11 10 11 12 12 11 13 12 13 14 14 13 15 15 13 16 15 16 17 17 16 18 18 16 19 18 19 20 20 19 21 21 19 22 21 22 23 23 22 24 23 24 25 25 24 26 26 24 27 26 27 28 28 27 29 28 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 35 33 36 35 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 46 44 47 46 47 48 48 47 49 48 49 50 50 49 51 51 49 52 51 52 53 53 52 54 54 52 55 55 52 56 56 52 57 57 52 58 57 58 59 57 59 60 60 59 61 61 59 62 61 62 63 63 62 64 14 65 66 65 14 15 66 65 67 66 67 68 66 68 69 66 69 70 70 69 71 70 71 72 70 72 73 73 72 74 73 74 75 75 74 76 75 76 77 75 77 78 78 77 79 78 79 80 80 79 81 80 81 82 82 81 83 82 83 84 84 83 85 84 85 86 86 85 87 86 87 88 86 88 89 89 88 90 89 90 91 91 90 92 91 92 93 93 92 94 93 94 95 95 94 96 95 96 97 97 96 98 97 98 99 97 99 100 100 99 101 100 101 102 102 101 103 102 103 104 102 104 56 56 104 105 56 105 55 1 106 2 106 1 107 108 5 4 5 108 109 110 111 112 111 110 113 114 115 116 115 114 117 118 119 120 119 118 121 122 120 123 120 122 118 124 123 125 123 124 122 126 125 127 125 126 124 128 127 129 127 128 126 130 129 131 129 130 128 130 132 133 132 130 131 133 134 135 134 133 132 135 136 137 136 135 134 137 138 139 138 137 136 139 140 141 140 139 138 141 142 143 142 141 140 144 145 146 145 144 147 148 149 150 149 148 151 150 152 153 152 150 149 153 154 155 154 153 152 155 156 157 156 155 154 157 158 159 158 157 156 159 160 161 160 159 158 162 160 163 160 162 161 164 163 165 163 164 162 166 165 167 165 166 164 168 167 169 167 168 166 170 169 171 169 170 168 172 171 173 171 172 170 174 175 176 175 174 177 178 179 180 179 178 181 182 180 183 180 182 178 184 183 185 183 184 182 186 185 187 185 186 184 107 187 106 187 107 186 188 109 108 109 188 189 190 189 188 189 190 191 192 191 190 191 192 193 194 195 196 195 194 197 198 199 200 199 198 201 202 201 198 201 202 203 204 203 202 203 204 205 206 205 204 205 206 207 208 207 206 207 208 209 210 208 211 208 210 209 212 211 213 211 212 210 214 213 215 213 214 212 113 215 111 215 113 214

+
+
+
+ + + + 6.93202551316692 5.758800411665172 2.486097846012126 6.699641920103375 5.937114614186443 2.210507294831024 6.93202551316692 5.758800411665172 2.210507294831024 6.699641920103375 5.937114614186443 2.486097846012126 6.429025494332535 6.04920760794162 2.210507294831024 6.429025494332535 6.04920760794162 2.486097846012126 7.110339715688212 5.52641681860152 2.210507294831024 7.110339715688212 5.52641681860152 2.486097846012126 6.138618298056045 6.087440440648775 2.210507294831024 6.138618298056045 6.087440440648775 2.486097846012126 7.22243270944341 5.255800392830723 2.210507294831024 7.22243270944341 5.255800392830723 2.486097846012126 5.848211101779548 6.04920760794162 2.210507294831024 5.848211101779548 6.04920760794162 2.486097846012126 7.260665542150491 4.965393196554279 2.210507294831024 7.260665542150491 4.965393196554279 2.486097846012126 5.577594676008829 5.937114614186443 2.210507294831024 5.577594676008829 5.937114614186443 2.486097846012126 7.22243270944341 4.674986000277832 2.210507294831024 7.22243270944341 4.674986000277832 2.486097846012126 5.345211082945141 5.758800411665172 2.210507294831024 5.345211082945141 5.758800411665172 2.486097846012126 7.110339715688212 4.404369574507031 2.210507294831024 7.110339715688212 4.404369574507031 2.486097846012126 5.166896880423835 5.52641681860152 2.486097846012126 5.166896880423835 5.52641681860152 2.210507294831024 6.93202551316692 4.171985981443397 2.210507294831024 6.93202551316692 4.171985981443397 2.486097846012126 5.054803886668701 5.255800392830723 2.486097846012126 5.054803886668701 5.255800392830723 2.210507294831024 6.699641920103375 3.993671778922126 2.486097846012126 6.699641920103375 3.993671778922126 2.210507294831024 5.016571053961556 4.965393196554279 2.486097846012126 5.016571053961556 4.965393196554279 2.210507294831024 6.429025494332535 3.881578785166932 2.486097846012126 6.429025494332535 3.881578785166932 2.210507294831024 5.054803886668701 4.674986000277832 2.486097846012126 5.054803886668701 4.674986000277832 2.210507294831024 6.138618298056045 3.843345952459808 2.486097846012126 6.138618298056045 3.843345952459808 2.210507294831024 5.166896880423835 4.404369574507031 2.486097846012126 5.166896880423835 4.404369574507031 2.210507294831024 5.848211101779548 3.881578785166932 2.486097846012126 5.848211101779548 3.881578785166932 2.210507294831024 5.345211082945141 4.171985981443397 2.486097846012126 5.345211082945141 4.171985981443397 2.210507294831024 5.577594676008829 3.993671778922126 2.486097846012126 5.577594676008829 3.993671778922126 2.210507294831024 + + + + + + + + + + -0.7071067811866061 -0.707106781186489 0 -0.5000000000000493 -0.8660254037844102 0 -0.7071067811866061 -0.707106781186489 0 -0.5000000000000493 -0.8660254037844102 0 -0.2588190451024628 -0.9659258262890837 0 -0.2588190451024628 -0.9659258262890837 0 -0.8660254037844264 -0.5000000000000211 0 -0.8660254037844264 -0.5000000000000211 0 -6.104110278518137e-015 -1 0 -6.104110278518137e-015 -1 0 -0.9659258262890954 -0.2588190451024193 0 -0.9659258262890954 -0.2588190451024193 0 0.2588190451025422 -0.9659258262890624 0 0.2588190451025422 -0.9659258262890624 0 -1 0 0 -1 0 0 0.500000000000004 -0.8660254037844363 0 0.500000000000004 -0.8660254037844363 0 -0.9659258262890966 0.2588190451024151 0 -0.9659258262890966 0.2588190451024151 0 0.7071067811864806 -0.7071067811866143 0 0.7071067811864806 -0.7071067811866143 0 -0.866025403784418 0.5000000000000358 0 -0.866025403784418 0.5000000000000358 0 0.8660254037844507 -0.4999999999999791 0 0.8660254037844507 -0.4999999999999791 0 -0.7071067811865911 0.7071067811865041 0 -0.7071067811865911 0.7071067811865041 0 0.9659258262890937 -0.2588190451024254 0 0.9659258262890937 -0.2588190451024254 0 -0.5000000000000769 0.8660254037843943 0 -0.5000000000000769 0.8660254037843943 0 1 0 0 1 0 0 -0.2588190451024495 0.9659258262890874 0 -0.2588190451024495 0.9659258262890874 0 0.965925826289095 0.2588190451024211 0 0.965925826289095 0.2588190451024211 0 -5.997176959770302e-015 1 0 -5.997176959770302e-015 1 0 0.8660254037844425 0.4999999999999936 0 0.8660254037844425 0.4999999999999936 0 0.2588190451025288 0.9659258262890662 0 0.2588190451025288 0.9659258262890662 0 0.707106781186466 0.7071067811866292 0 0.707106781186466 0.7071067811866292 0 0.5000000000000314 0.8660254037844204 0 0.5000000000000314 0.8660254037844204 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 4 1 4 3 5 0 6 7 6 0 2 5 8 4 8 5 9 7 10 11 10 7 6 9 12 8 12 9 13 11 14 15 14 11 10 13 16 12 16 13 17 15 18 19 18 15 14 17 20 16 20 17 21 19 22 23 22 19 18 20 24 25 24 20 21 23 26 27 26 23 22 25 28 29 28 25 24 30 26 31 26 30 27 29 32 33 32 29 28 34 31 35 31 34 30 33 36 37 36 33 32 38 35 39 35 38 34 37 40 41 40 37 36 42 39 43 39 42 38 41 44 45 44 41 40 46 43 47 43 46 42 44 47 45 47 44 46

+
+
+
+ + + + 3.882588252510281 4.8132788932017 2.486097846012126 3.920569505250036 4.829011243202418 2.446727767271968 3.882588252510281 4.8132788932017 2.446727767271968 3.920569505250036 4.829011243202418 2.486097846012126 3.953184746381801 4.854037797942242 2.446727767271968 3.953184746381801 4.854037797942242 2.486097846012126 3.841829347769725 4.807912881593675 2.486097846012126 3.841829347769725 4.807912881593675 2.446727767271968 3.978211301121611 4.886653039073993 2.486097846012126 3.978211301121611 4.886653039073993 2.446727767271968 3.801070443029168 4.8132788932017 2.486097846012126 3.801070443029168 4.8132788932017 2.446727767271968 3.993943651122343 4.924634291813741 2.486097846012126 3.993943651122343 4.924634291813741 2.446727767271968 3.763089190289442 4.829011243202418 2.486097846012126 3.763089190289442 4.829011243202418 2.446727767271968 3.999309662730347 4.965393196554297 2.486097846012126 3.999309662730347 4.965393196554297 2.446727767271968 3.730473949157663 4.854037797942242 2.486097846012126 3.730473949157663 4.854037797942242 2.446727767271968 3.993943651122343 5.006152101294854 2.486097846012126 3.993943651122343 5.006152101294854 2.446727767271968 3.705447394417853 4.886653039073993 2.446727767271968 3.705447394417853 4.886653039073993 2.486097846012126 3.978211301121611 5.04413335403463 2.486097846012126 3.978211301121611 5.04413335403463 2.446727767271968 3.68971504441712 4.924634291813741 2.446727767271968 3.68971504441712 4.924634291813741 2.486097846012126 3.953184746381801 5.076748595166359 2.486097846012126 3.953184746381801 5.076748595166359 2.446727767271968 3.684349032809131 4.965393196554297 2.446727767271968 3.684349032809131 4.965393196554297 2.486097846012126 3.920569505250036 5.101775149906183 2.446727767271968 3.920569505250036 5.101775149906183 2.486097846012126 3.68971504441712 5.006152101294854 2.446727767271968 3.68971504441712 5.006152101294854 2.486097846012126 3.882588252510281 5.11750749990693 2.446727767271968 3.882588252510281 5.11750749990693 2.486097846012126 3.705447394417853 5.04413335403463 2.446727767271968 3.705447394417853 5.04413335403463 2.486097846012126 3.841829347769725 5.122873511514927 2.446727767271968 3.841829347769725 5.122873511514927 2.486097846012126 3.730473949157663 5.076748595166359 2.446727767271968 3.730473949157663 5.076748595166359 2.486097846012126 3.801070443029168 5.11750749990693 2.446727767271968 3.801070443029168 5.11750749990693 2.486097846012126 3.763089190289442 5.101775149906183 2.486097846012126 3.763089190289442 5.101775149906183 2.446727767271968 + + + + + + + + + + -0.2588190451025471 0.9659258262890613 0 -0.5000000000000653 0.866025403784401 0 -0.2588190451025471 0.9659258262890613 0 -0.5000000000000653 0.866025403784401 0 -0.7071067811864877 0.7071067811866073 0 -0.7071067811864877 0.7071067811866073 0 0 1 0 0 1 0 -0.866025403784455 0.4999999999999716 0 -0.866025403784455 0.4999999999999716 0 0.2588190451025471 0.9659258262890613 0 0.2588190451025471 0.9659258262890613 0 -0.9659258262891083 0.2588190451023718 0 -0.9659258262891083 0.2588190451023718 0 0.5000000000000653 0.866025403784401 0 0.5000000000000653 0.866025403784401 0 -1 1.129037623778454e-014 0 -1 1.129037623778454e-014 0 0.7071067811864877 0.7071067811866073 0 0.7071067811864877 0.7071067811866073 0 -0.9659258262891111 -0.2588190451023609 0 -0.9659258262891111 -0.2588190451023609 0 0.866025403784455 0.4999999999999716 0 0.866025403784455 0.4999999999999716 0 -0.8660254037844287 -0.500000000000017 0 -0.8660254037844287 -0.500000000000017 0 0.9659258262891083 0.2588190451023718 0 0.9659258262891083 0.2588190451023718 0 -0.7071067811864505 -0.7071067811866446 0 -0.7071067811864505 -0.7071067811866446 0 1 1.129037623778454e-014 0 1 1.129037623778454e-014 0 -0.5000000000000653 -0.866025403784401 0 -0.5000000000000653 -0.866025403784401 0 0.9659258262891111 -0.2588190451023609 0 0.9659258262891111 -0.2588190451023609 0 -0.2588190451025471 -0.9659258262890613 0 -0.2588190451025471 -0.9659258262890613 0 0.8660254037844973 -0.4999999999998985 0 0.8660254037844973 -0.4999999999998985 0 0 -1 0 0 -1 0 0.7071067811864732 -0.7071067811866219 0 0.7071067811864732 -0.7071067811866219 0 0.2588190451025471 -0.9659258262890613 0 0.2588190451025471 -0.9659258262890613 0 0.4999999999999743 -0.8660254037844535 0 0.4999999999999743 -0.8660254037844535 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 8 4 5 4 8 9 10 7 11 7 10 6 12 9 8 9 12 13 14 11 15 11 14 10 16 13 12 13 16 17 18 15 19 15 18 14 20 17 16 17 20 21 22 18 19 18 22 23 24 21 20 21 24 25 26 23 22 23 26 27 28 25 24 25 28 29 30 27 26 27 30 31 28 32 29 32 28 33 34 31 30 31 34 35 33 36 32 36 33 37 38 35 34 35 38 39 37 40 36 40 37 41 42 39 38 39 42 43 41 44 40 44 41 45 46 42 47 42 46 43 45 47 44 47 45 46

+
+
+
+ + + + 43.88195393775219 6.659342805574605 0.3207435153034618 50.14313047118674 6.659342805574601 0.04515296412235947 43.88195393775219 6.659342805574605 0.04515296412235925 50.14313047118674 6.659342805574601 0.3207435153034618 43.86143452062263 6.655261239736115 0.3207435153034618 43.88195393775219 6.659342805574605 0.04515296412235925 43.86143452062263 6.655261239736115 0.04515296412235925 43.88195393775219 6.659342805574605 0.3207435153034618 50.14313047118674 6.659342805574601 0.3207435153034618 50.16626363075097 6.657826578190901 0.04515296412235947 50.14313047118674 6.659342805574601 0.04515296412235947 50.16626363075097 6.657826578190901 0.3207435153034618 43.74221309059323 6.536039809706709 0.04515296412235925 43.73813152475472 3.128359607174163 0.04515296412235903 43.73813152475472 6.515520392577111 0.04515296412235925 43.73964775213843 3.105226447609857 0.04515296412235903 43.74395037790404 3.083595687178518 0.04515296412235903 43.74930228759288 6.556923910626212 0.04515296412235925 43.75103957490371 3.062711586259033 0.04515296412235903 43.75905675770041 6.576704019276997 0.04515296412235925 43.76079404501126 3.042931477608272 0.04515296412235903 43.77130959922782 6.59504169251594 0.04515296412235925 43.77304688653869 3.02459380436923 0.04515296412235903 43.78585116265949 6.611623167669842 0.04515296412235925 43.78758844997034 3.00801232921537 0.04515296412235903 43.80243263781338 6.626164731101502 0.04515296412235925 43.80416992512419 2.993470765783732 0.04515296412235903 43.82077031105234 6.638417572628923 0.04515296412235925 43.82250759836319 2.981217924256312 0.04515296412235903 43.84055041970313 6.648172042736457 0.04515296412235925 43.84228770701396 2.971463454148767 0.04515296412235903 43.86143452062263 6.655261239736115 0.04515296412235925 43.86317180793347 2.964374257149116 0.04515296412235903 43.88195393775219 6.659342805574605 0.04515296412235925 43.88480256836478 2.960071631383501 0.04515296412235903 50.14313047118674 6.659342805574601 0.04515296412235947 43.90793572792918 2.958555403999798 0.04515296412235903 50.14313047118665 2.958555403999805 0.04515296412235903 50.166263630751 2.960071631383512 0.04515296412235903 50.16626363075097 6.657826578190901 0.04515296412235947 50.18789439118228 6.653523952425294 0.04515296412235947 50.1878943911823 2.964374257149109 0.04515296412235903 50.20877849210176 6.646434755425636 0.04515296412235947 50.20877849210176 2.971463454148788 0.04515296412235903 50.22855860075256 6.636680285318088 0.04515296412235947 50.22855860075259 2.981217924256329 0.04515296412235903 50.24689627399151 6.624427443790681 0.04515296412235947 50.24689627399157 2.993470765783735 0.04515296412235903 50.26347774914542 6.609885880359011 0.04515296412235947 50.26347774914544 3.008012329215406 0.04515296412235903 50.27801931257708 6.593304405205133 0.04515296412235947 50.27801931257705 3.024593804369262 0.04515296412235903 50.2902721541045 3.042931477608265 0.04515296412235903 50.29027215410449 6.574966731966187 0.04515296412235947 50.30002662421204 6.555186623315345 0.04515296412235947 50.30002662421204 3.062711586259065 0.04515296412235903 50.30711582121172 6.534302522395885 0.04515296412235947 50.30711582121167 3.08359568717851 0.04515296412235903 50.31141844697729 3.105226447609864 0.04515296412235903 50.31141844697731 6.512671761964556 0.04515296412235947 50.31293467436102 3.128359607174145 0.04515296412235903 50.31293467436102 6.489538602400339 0.04515296412235947 43.84055041970313 6.648172042736457 0.3207435153034618 43.84055041970313 6.648172042736457 0.04515296412235925 50.18789439118228 6.653523952425294 0.04515296412235947 50.18789439118228 6.653523952425294 0.3207435153034618 50.30002662421204 6.555186623315345 0.04515296412235947 50.30711582121172 6.534302522395885 0.3207435153034618 50.30711582121172 6.534302522395885 0.04515296412235947 50.30002662421204 6.555186623315345 0.3207435153034618 50.31141844697731 6.512671761964556 0.3207435153034618 50.31141844697731 6.512671761964556 0.04515296412235947 50.31293467436102 6.489538602400339 0.3207435153034618 50.31293467436102 6.489538602400339 0.04515296412235947 50.31293467436102 6.489538602400339 0.04515296412235947 50.31293467436102 3.128359607174145 0.3207435153034614 50.31293467436102 3.128359607174145 0.04515296412235903 50.31293467436102 6.489538602400339 0.3207435153034618 50.31293467436102 3.128359607174145 0.04515296412235903 50.31141844697729 3.105226447609864 0.3207435153034614 50.31141844697729 3.105226447609864 0.04515296412235903 50.31293467436102 3.128359607174145 0.3207435153034614 50.30711582121167 3.08359568717851 0.3207435153034614 50.30711582121167 3.08359568717851 0.04515296412235903 50.30002662421204 3.062711586259065 0.3207435153034614 50.30002662421204 3.062711586259065 0.04515296412235903 50.2902721541045 3.042931477608265 0.3207435153034614 50.2902721541045 3.042931477608265 0.04515296412235903 50.27801931257705 3.024593804369262 0.3207435153034614 50.27801931257705 3.024593804369262 0.04515296412235903 50.26347774914544 3.008012329215406 0.3207435153034614 50.26347774914544 3.008012329215406 0.04515296412235903 50.24689627399157 2.993470765783735 0.04515296412235903 50.24689627399157 2.993470765783735 0.3207435153034614 50.22855860075259 2.981217924256329 0.04515296412235903 50.22855860075259 2.981217924256329 0.3207435153034614 50.20877849210176 2.971463454148788 0.04515296412235903 50.20877849210176 2.971463454148788 0.3207435153034614 50.1878943911823 2.964374257149109 0.04515296412235903 50.1878943911823 2.964374257149109 0.3207435153034614 50.166263630751 2.960071631383512 0.04515296412235903 50.166263630751 2.960071631383512 0.3207435153034614 50.14313047118665 2.958555403999805 0.04515296412235903 50.14313047118665 2.958555403999805 0.3207435153034614 50.14313047118665 2.958555403999805 0.3207435153034614 43.90793572792918 2.958555403999798 0.04515296412235903 50.14313047118665 2.958555403999805 0.04515296412235903 43.90793572792918 2.958555403999798 0.3207435153034614 43.90793572792918 2.958555403999798 0.3207435153034614 43.88480256836478 2.960071631383501 0.04515296412235903 43.90793572792918 2.958555403999798 0.04515296412235903 43.88480256836478 2.960071631383501 0.3207435153034614 43.86317180793347 2.964374257149116 0.04515296412235903 43.86317180793347 2.964374257149116 0.3207435153034614 43.84228770701396 2.971463454148767 0.04515296412235903 43.84228770701396 2.971463454148767 0.3207435153034614 43.82250759836319 2.981217924256312 0.04515296412235903 43.82250759836319 2.981217924256312 0.3207435153034614 43.80416992512419 2.993470765783732 0.04515296412235903 43.80416992512419 2.993470765783732 0.3207435153034614 43.78758844997034 3.00801232921537 0.04515296412235903 43.78758844997034 3.00801232921537 0.3207435153034614 43.77304688653869 3.02459380436923 0.3207435153034614 43.77304688653869 3.02459380436923 0.04515296412235903 43.76079404501126 3.042931477608272 0.3207435153034614 43.76079404501126 3.042931477608272 0.04515296412235903 43.75103957490371 3.062711586259033 0.3207435153034614 43.75103957490371 3.062711586259033 0.04515296412235903 43.74395037790404 3.083595687178518 0.3207435153034614 43.74395037790404 3.083595687178518 0.04515296412235903 43.73964775213843 3.105226447609857 0.3207435153034614 43.73964775213843 3.105226447609857 0.04515296412235903 43.73813152475472 3.128359607174163 0.3207435153034614 43.73813152475472 3.128359607174163 0.04515296412235903 43.73813152475472 6.515520392577111 0.3207435153034618 43.73813152475472 3.128359607174163 0.04515296412235903 43.73813152475472 3.128359607174163 0.3207435153034614 43.73813152475472 6.515520392577111 0.04515296412235925 43.74221309059323 6.536039809706709 0.3207435153034618 43.73813152475472 6.515520392577111 0.04515296412235925 43.73813152475472 6.515520392577111 0.3207435153034618 43.74221309059323 6.536039809706709 0.04515296412235925 43.74930228759288 6.556923910626212 0.3207435153034618 43.74930228759288 6.556923910626212 0.04515296412235925 43.75905675770041 6.576704019276997 0.3207435153034618 43.75905675770041 6.576704019276997 0.04515296412235925 43.77130959922782 6.59504169251594 0.3207435153034618 43.77130959922782 6.59504169251594 0.04515296412235925 43.78585116265949 6.611623167669842 0.3207435153034618 43.78585116265949 6.611623167669842 0.04515296412235925 43.80243263781338 6.626164731101502 0.04515296412235925 43.80243263781338 6.626164731101502 0.3207435153034618 43.82077031105234 6.638417572628923 0.04515296412235925 43.82077031105234 6.638417572628923 0.3207435153034618 50.20877849210176 6.646434755425636 0.04515296412235947 50.20877849210176 6.646434755425636 0.3207435153034618 50.22855860075256 6.636680285318088 0.04515296412235947 50.22855860075256 6.636680285318088 0.3207435153034618 50.24689627399151 6.624427443790681 0.04515296412235947 50.24689627399151 6.624427443790681 0.3207435153034618 50.26347774914542 6.609885880359011 0.04515296412235947 50.26347774914542 6.609885880359011 0.3207435153034618 50.27801931257708 6.593304405205133 0.3207435153034618 50.27801931257708 6.593304405205133 0.04515296412235947 50.29027215410449 6.574966731966187 0.3207435153034618 50.29027215410449 6.574966731966187 0.04515296412235947 + + + + + + + + + + 8.511292549800548e-016 1 6.498920887375498e-031 8.511292549800548e-016 1 6.498920887375498e-031 8.511292549800548e-016 1 6.498920887375498e-031 8.511292549800548e-016 1 6.498920887375498e-031 -0.2588190451025151 0.9659258262890698 0 -0.1950903220161407 0.9807852804032281 0 -0.2588190451025151 0.9659258262890698 0 -0.1950903220161407 0.9807852804032281 0 0.06540312923029935 0.9978589232385934 0 0.1305261922199533 0.9914448613738235 0 0.06540312923029935 0.9978589232385934 0 0.1305261922199533 0.9914448613738235 0 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 1.203872908821407e-017 1.257059651016985e-016 -1 -0.3826834323650786 0.9238795325112914 0 -0.3826834323650786 0.9238795325112914 0 0.2588190451024928 0.9659258262890758 0 0.2588190451024928 0.9659258262890758 0 0.9238795325111466 0.382683432365428 0 0.9659258262890319 0.2588190451026563 0 0.9659258262890319 0.2588190451026563 0 0.9238795325111466 0.382683432365428 0 0.9914448613738508 0.1305261922197449 0 0.9914448613738508 0.1305261922197449 0 0.9978589232385635 0.06540312923075399 0 0.9978589232385635 0.06540312923075399 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9978589232385156 -0.06540312923148701 2.148888258984201e-017 0.9914448613737552 -0.1305261922204699 2.330393116351783e-017 0.9914448613737552 -0.1305261922204699 2.330393116351783e-017 0.9978589232385156 -0.06540312923148701 2.148888258984201e-017 0.9659258262891463 -0.2588190451022301 2.66273102819097e-017 0.9659258262891463 -0.2588190451022301 2.66273102819097e-017 0.9238795325113448 -0.3826834323649499 2.949508873891546e-017 0.9238795325113448 -0.3826834323649499 2.949508873891546e-017 0.866025403784477 -0.4999999999999336 3.18581980500125e-017 0.866025403784477 -0.4999999999999336 3.18581980500125e-017 0.7933533402914658 -0.6087614290084201 3.367620475970759e-017 0.7933533402914658 -0.6087614290084201 3.367620475970759e-017 0.7071067811870996 -0.7071067811859956 3.491800226915812e-017 0.7071067811870996 -0.7071067811859956 3.491800226915812e-017 0.6087614290086063 -0.793353340291323 3.556234307869128e-017 0.6087614290086063 -0.793353340291323 3.556234307869128e-017 0.4999999999993188 -0.8660254037848321 3.559820233839578e-017 0.4999999999993188 -0.8660254037848321 3.559820233839578e-017 0.3826834323655604 -0.9238795325110919 3.502496648641106e-017 0.3826834323655604 -0.9238795325110919 3.502496648641106e-017 0.2588190451029568 -0.9659258262889514 3.385244374708522e-017 0.2588190451029568 -0.9659258262889514 3.385244374708522e-017 0.1305261922198004 -0.9914448613738436 3.210069630956563e-017 0.1305261922198004 -0.9914448613738436 3.210069630956563e-017 0.06540312923028356 -0.9978589232385944 3.101660561739596e-017 0.06540312923028356 -0.9978589232385944 3.101660561739596e-017 1.06834484279008e-015 -1 -5.082299223001869e-031 1.06834484279008e-015 -1 -5.082299223001869e-031 1.06834484279008e-015 -1 -5.082299223001869e-031 1.06834484279008e-015 -1 -5.082299223001869e-031 -0.06540312922995278 -0.9978589232386159 0 -0.1305261922199475 -0.9914448613738243 0 -0.06540312922995278 -0.9978589232386159 0 -0.1305261922199475 -0.9914448613738243 0 -0.258819045102376 -0.965925826289107 0 -0.258819045102376 -0.965925826289107 0 -0.3826834323652421 -0.9238795325112236 0 -0.3826834323652421 -0.9238795325112236 0 -0.4999999999998344 -0.8660254037845342 0 -0.4999999999998344 -0.8660254037845342 0 -0.6087614290084823 -0.793353340291418 0 -0.6087614290084823 -0.793353340291418 0 -0.7071067811866187 -0.7071067811864763 0 -0.7071067811866187 -0.7071067811864763 0 -0.7933533402916141 -0.6087614290082266 0 -0.7933533402916141 -0.6087614290082266 0 -0.8660254037845783 -0.4999999999997583 0 -0.8660254037845783 -0.4999999999997583 0 -0.9238795325109536 -0.3826834323658939 0 -0.9238795325109536 -0.3826834323658939 0 -0.9659258262890079 -0.2588190451027462 0 -0.9659258262890079 -0.2588190451027462 0 -0.9914448613738124 -0.130526192220036 0 -0.9914448613738124 -0.130526192220036 0 -0.9978589232385797 -0.0654031292305077 0 -0.9978589232385797 -0.0654031292305077 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9659258262890716 0.2588190451025084 0 -0.9807852804031837 0.1950903220163633 0 -0.9807852804031837 0.1950903220163633 0 -0.9659258262890716 0.2588190451025084 0 -0.9238795325113307 0.382683432364984 0 -0.9238795325113307 0.382683432364984 0 -0.8660254037844439 0.499999999999991 0 -0.8660254037844439 0.499999999999991 0 -0.7933533402912634 0.6087614290086838 0 -0.7933533402912634 0.6087614290086838 0 -0.7071067811865318 0.7071067811865632 0 -0.7071067811865318 0.7071067811865632 0 -0.6087614290087011 0.7933533402912499 0 -0.6087614290087011 0.7933533402912499 0 -0.5000000000000135 0.8660254037844308 0 -0.5000000000000135 0.8660254037844308 0 0.3826834323652957 0.9238795325112014 0 0.3826834323652957 0.9238795325112014 0 0.5000000000000009 0.8660254037844382 0 0.5000000000000009 0.8660254037844382 0 0.608761429008534 0.7933533402913785 0 0.608761429008534 0.7933533402913785 0 0.7071067811863823 0.707106781186713 0 0.7071067811863823 0.707106781186713 0 0.7933533402911205 0.6087614290088703 0 0.7933533402911205 0.6087614290088703 0 0.8660254037845753 0.4999999999997636 0 0.8660254037845753 0.4999999999997636 0 + + + + + + + + + + -0.8126287766250403 0.001458151064450308 -0.9285764902071616 -0.003645377661125661 -0.8126287766250403 -0.003645377661125665 -0.9285764902071616 0.001458151064450308 -0.8206856743251546 0.001458151064450308 -0.8210731079599118 -0.003645377661125665 -0.8206856743251546 -0.003645377661125665 -0.8210731079599118 0.001458151064450308 -0.9185227466979405 0.001458151064450308 -0.9189520577295959 -0.003645377661125661 -0.9185227466979405 -0.003645377661125661 -0.9189520577295959 0.001458151064450308 -0.8100409831591338 0.121037774253828 -0.8099653986065689 0.05793258531804005 -0.8099653986065689 0.1206577850477243 -0.8099934768914524 0.0575041934742566 -0.8100731551463711 0.05710362383663921 -0.8101722645850532 0.1214245168634484 -0.8102044365722909 0.05671688122701912 -0.810352902920378 0.1217908151717962 -0.8103850749076159 0.0563505829186717 -0.8105798073931078 0.1221304017132581 -0.8106119793803461 0.05601099637720797 -0.8108490956048053 0.12243746606796 -0.8108812675920433 0.05570393202250686 -0.8111561599595071 0.1227067542796574 -0.8111883319467441 0.05543464381080985 -0.8114957465009692 0.1229336587523875 -0.8115279184882072 0.05520773933807984 -0.8118620448093171 0.1231142970877122 -0.8118942167965547 0.05502710100275493 -0.8122487874189376 0.1232455785136317 -0.8122809594061753 0.05489581957683547 -0.8126287766250404 0.1233211630661964 -0.8126815290437921 0.05481614132191669 -0.9285764902071617 0.1233211630661963 -0.8131099208875774 0.05478806303703328 -0.9285764902071602 0.05478806303703342 -0.9290048820509445 0.05481614132191688 -0.9290048820509438 0.123293084781313 -0.9294054516885606 0.1232134065263943 -0.9294054516885612 0.05489581957683534 -0.9297921942981807 0.1230821251004747 -0.9297921942981807 0.05502710100275533 -0.9301584926065289 0.1229014867651498 -0.9301584926065293 0.05520773933808017 -0.9304980791479909 0.12267458229242 -0.9304980791479919 0.05543464381080991 -0.9308051435026929 0.1224052940807224 -0.9308051435026934 0.05570393202250751 -0.9310744317143903 0.122098229726021 -0.9310744317143898 0.05601099637720856 -0.9313013361871203 0.05635058291867157 -0.9313013361871202 0.121758643184559 -0.9314819745224451 0.1213923448762101 -0.9314819745224451 0.05671688122701971 -0.9316132559483651 0.1210056022665905 -0.9316132559483643 0.05710362383663908 -0.931692934203283 0.05750419347425673 -0.9316929342032834 0.1206050326289733 -0.931721012488167 0.05793258531803972 -0.931721012488167 0.1201766407851915 -0.8083504250505004 0.001458151064450308 -0.8087588423112614 -0.003645377661125665 -0.8083504250505004 -0.003645377661125665 -0.8087588423112614 0.001458151064450308 -0.8871010261260641 0.001458151064450308 -0.887509443386825 -0.003645377661125661 -0.8871010261260641 -0.003645377661125661 -0.887509443386825 0.001458151064450308 -0.1844649989780748 -0.003645377661125661 -0.1848734162388352 0.001458151064450308 -0.1848734162388352 -0.003645377661125661 -0.1844649989780748 0.001458151064450308 -0.06306821654690635 -0.003645377661125661 -0.06347663380766744 0.001458151064450308 -0.06347663380766744 -0.003645377661125661 -0.06306821654690635 0.001458151064450308 0.05941117461722069 -0.003645377661125661 0.05898186358556559 0.001458151064450308 0.05898186358556559 -0.003645377661125661 0.05941117461722069 0.001458151064450308 0.1201766407851915 -0.003645377661125661 0.05793258531803972 0.0014581510644503 0.05793258531803972 -0.003645377661125669 0.1201766407851915 0.001458151064450308 0.1187460169933381 -0.003645377661125689 0.1183167059616818 0.00145815106445028 0.1183167059616818 -0.003645377661125689 0.1187460169933381 0.00145815106445028 0.2381635410744273 -0.003645377661125695 0.2377551238136656 0.001458151064450275 0.2377551238136656 -0.003645377661125695 0.2381635410744273 0.001458151064450275 0.3535304087755624 -0.003645377661125696 0.3531219915148026 0.001458151064450272 0.3531219915148026 -0.003645377661125696 0.3535304087755624 0.001458151064450272 0.4628517672312365 -0.003645377661125697 0.4624433499704754 0.001458151064450272 0.4624433499704754 -0.003645377661125697 0.4628517672312365 0.001458151064450272 0.5642570976893947 -0.003645377661125694 0.5638486804286331 0.001458151064450275 0.5638486804286331 -0.003645377661125694 0.5642570976893947 0.001458151064450275 0.6560113268299671 -0.003645377661125692 0.655602909569207 0.001458151064450277 0.655602909569207 -0.003645377661125692 0.6560113268299671 0.001458151064450277 0.7365445143547341 0.001458151064450276 0.736136097093973 -0.003645377661125692 0.7365445143547341 -0.003645377661125692 0.736136097093973 0.001458151064450276 0.8044787150972652 0.001458151064450283 0.8040702978365044 -0.003645377661125686 0.8044787150972652 -0.003645377661125686 0.8040702978365044 0.001458151064450283 0.8586515560459136 0.001458151064450287 0.8582431387851521 -0.003645377661125682 0.8586515560459136 -0.003645377661125682 0.8582431387851521 0.001458151064450287 0.898136124873441 0.001458151064450288 0.8977277076126807 -0.00364537766112568 0.898136124873441 -0.00364537766112568 0.8977277076126807 0.001458151064450288 0.9222568296613208 0.001458151064450293 0.9218484124005603 -0.003645377661125676 0.9222568296613208 -0.003645377661125676 0.9218484124005603 0.001458151064450293 0.9306009584615347 0.001458151064450297 0.9301716474298772 -0.003645377661125672 0.9306009584615347 -0.003645377661125672 0.9301716474298772 0.001458151064450297 0.9285764902071602 0.0014581510644503 0.8131099208875774 -0.003645377661125669 0.9285764902071602 -0.003645377661125669 0.8131099208875774 0.0014581510644503 0.8077856793644433 0.0014581510644503 0.8073563683327849 -0.003645377661125669 0.8077856793644433 -0.003645377661125669 0.8073563683327849 0.0014581510644503 0.7863719826795725 0.0014581510644503 0.7859635654188116 -0.003645377661125669 0.7863719826795725 -0.003645377661125669 0.7859635654188116 0.0014581510644503 0.7515276311848284 0.0014581510644503 0.7511192139240673 -0.003645377661125669 0.7515276311848284 -0.003645377661125669 0.7511192139240673 0.0014581510644503 0.7038279276235536 0.0014581510644503 0.7034195103627929 -0.003645377661125669 0.7038279276235536 -0.003645377661125669 0.7034195103627929 0.0014581510644503 0.6440890271500318 0.0014581510644503 0.6436806098892706 -0.003645377661125669 0.6440890271500318 -0.003645377661125669 0.6436806098892706 0.0014581510644503 0.5733330789115873 0.0014581510644503 0.5729246616508272 -0.003645377661125669 0.5733330789115873 -0.003645377661125669 0.5729246616508272 0.0014581510644503 0.4923623195415921 0.0014581510644503 0.4927707368023525 -0.003645377661125669 0.4927707368023525 0.0014581510644503 0.4923623195415921 -0.003645377661125669 0.403372027568609 0.0014581510644503 0.403780444829371 -0.003645377661125669 0.403780444829371 0.0014581510644503 0.403372027568609 -0.003645377661125669 0.3074764343045816 0.0014581510644503 0.3078848515653421 -0.003645377661125669 0.3078848515653421 0.0014581510644503 0.3074764343045816 -0.003645377661125669 0.2063163399331043 0.0014581510644503 0.206724757193865 -0.003645377661125669 0.206724757193865 0.0014581510644503 0.2063163399331043 -0.003645377661125669 0.1016226217163867 0.0014581510644503 0.1020310389771481 -0.003645377661125669 0.1020310389771481 0.0014581510644503 0.1016226217163867 -0.003645377661125669 -0.004834275568581958 0.0014581510644503 -0.004404964536925211 -0.003645377661125669 -0.004404964536925211 0.0014581510644503 -0.004834275568581958 -0.003645377661125669 -0.1206577850477243 0.001458151064450308 -0.05793258531804005 -0.003645377661125669 -0.05793258531804005 0.0014581510644503 -0.1206577850477243 -0.003645377661125665 -0.2767432236118851 0.001458151064450308 -0.2763557899771271 -0.003645377661125665 -0.2763557899771271 0.001458151064450308 -0.2767432236118851 -0.003645377661125665 -0.3754018730088635 0.001458151064450308 -0.3749934557481025 -0.003645377661125665 -0.3749934557481025 0.001458151064450308 -0.3754018730088635 -0.003645377661125665 -0.4676407863444735 0.001458151064450308 -0.4672323690837126 -0.003645377661125665 -0.4672323690837126 0.001458151064450308 -0.4676407863444735 -0.003645377661125665 -0.5518817302372155 0.001458151064450308 -0.5514733129764553 -0.003645377661125665 -0.5514733129764553 0.001458151064450308 -0.5518817302372155 -0.003645377661125665 -0.6266833187814351 0.001458151064450308 -0.6262749015206739 -0.003645377661125665 -0.6262749015206739 0.001458151064450308 -0.6266833187814351 -0.003645377661125665 -0.6903572587974214 0.001458151064450308 -0.6907656760581825 -0.003645377661125665 -0.6903572587974214 -0.003645377661125665 -0.6907656760581825 0.001458151064450308 -0.74262391790657 0.001458151064450308 -0.7430323351673307 -0.003645377661125665 -0.74262391790657 -0.003645377661125665 -0.7430323351673307 0.001458151064450308 -0.7821805818198622 0.001458151064450308 -0.782588999080623 -0.003645377661125665 -0.7821805818198622 -0.003645377661125665 -0.782588999080623 0.001458151064450308 -0.840476373208757 0.001458151064450308 -0.8408847904695179 -0.003645377661125661 -0.840476373208757 -0.003645377661125661 -0.8408847904695179 0.001458151064450308 -0.7794674424557676 0.001458151064450308 -0.7798758597165287 -0.003645377661125661 -0.7794674424557676 -0.003645377661125661 -0.7798758597165287 0.001458151064450308 -0.7051181135869915 0.001458151064450308 -0.7055265308477516 -0.003645377661125661 -0.7051181135869915 -0.003645377661125661 -0.7055265308477516 0.001458151064450308 -0.6187005242327561 0.001458151064450308 -0.6191089414935175 -0.003645377661125661 -0.6187005242327561 -0.003645377661125661 -0.6191089414935175 0.001458151064450308 -0.5216933033061741 -0.003645377661125661 -0.5221017205669348 0.001458151064450308 -0.5221017205669348 -0.003645377661125661 -0.5216933033061741 0.001458151064450308 -0.415756271253232 -0.003645377661125661 -0.4161646885139924 0.001458151064450308 -0.4161646885139924 -0.003645377661125661 -0.415756271253232 0.001458151064450308 -0.3027020400624785 -0.003645377661125661 -0.3031104573232404 0.001458151064450308 -0.3031104573232404 -0.003645377661125661 -0.3027020400624785 0.001458151064450308 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 15 15 12 12 16 16 16 16 12 12 17 17 16 16 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 20 20 19 19 21 21 20 20 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29 28 28 29 29 30 30 30 30 29 29 31 31 30 30 31 31 32 32 32 32 31 31 33 33 32 32 33 33 34 34 34 34 33 33 35 35 34 34 35 35 36 36 36 36 35 35 37 37 37 37 35 35 38 38 38 38 35 35 39 39 38 38 39 39 40 40 38 38 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 43 43 42 42 44 44 43 43 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 52 52 50 50 53 53 52 52 53 53 54 54 52 52 54 54 55 55 55 55 54 54 56 56 55 55 56 56 57 57 57 57 56 56 58 58 58 58 56 56 59 59 58 58 59 59 60 60 60 60 59 59 61 61 62 62 6 63 63 64 6 63 62 62 4 65 11 66 64 67 9 68 64 67 11 66 65 69 66 70 67 71 68 72 67 71 66 70 69 73 68 74 70 75 71 76 70 75 68 74 67 77 71 78 72 79 73 80 72 79 71 78 70 81 74 82 75 83 76 84 75 83 74 82 77 85 78 86 79 87 80 88 79 87 78 86 81 89 80 90 82 91 83 92 82 91 80 90 79 93 83 94 84 95 85 96 84 95 83 94 82 97 85 98 86 99 87 100 86 99 85 98 84 101 87 102 88 103 89 104 88 103 87 102 86 105 89 106 90 107 91 108 90 107 89 106 88 109 90 110 92 111 91 112 92 111 90 110 93 113 93 114 94 115 92 116 94 115 93 114 95 117 95 118 96 119 94 120 96 119 95 118 97 121 97 122 98 123 96 124 98 123 97 122 99 125 99 126 100 127 98 128 100 127 99 126 101 129 101 130 102 131 100 132 102 131 101 130 103 133 104 134 105 135 106 136 105 135 104 134 107 137 108 138 109 139 110 140 109 139 108 138 111 141 111 142 112 143 109 144 112 143 111 142 113 145 113 146 114 147 112 148 114 147 113 146 115 149 115 150 116 151 114 152 116 151 115 150 117 153 117 154 118 155 116 156 118 155 117 154 119 157 119 158 120 159 118 160 120 159 119 158 121 161 122 162 120 163 121 164 120 163 122 162 123 165 124 166 123 167 122 168 123 167 124 166 125 169 126 170 125 171 124 172 125 171 126 170 127 173 128 174 127 175 126 176 127 175 128 174 129 177 130 178 129 179 128 180 129 179 130 178 131 181 132 182 131 183 130 184 131 183 132 182 133 185 134 186 135 187 136 188 135 187 134 186 137 189 138 190 139 191 140 192 139 191 138 190 141 193 142 194 141 195 138 196 141 195 142 194 143 197 144 198 143 199 142 200 143 199 144 198 145 201 146 202 145 203 144 204 145 203 146 202 147 205 148 206 147 207 146 208 147 207 148 206 149 209 148 210 150 211 149 212 150 211 148 210 151 213 151 214 152 215 150 216 152 215 151 214 153 217 153 218 63 219 152 220 63 219 153 218 62 221 65 222 154 223 64 224 154 223 65 222 155 225 155 226 156 227 154 228 156 227 155 226 157 229 157 230 158 231 156 232 158 231 157 230 159 233 159 234 160 235 158 236 160 235 159 234 161 237 160 238 162 239 163 240 162 239 160 238 161 241 163 242 164 243 165 244 164 243 163 242 162 245 165 246 69 247 66 248 69 247 165 246 164 249

+
+
+
+ + + + 30.11110468898 0.1339882234195979 2.407357688531807 30.10773656538716 0.1287894127682918 2.210507294831021 30.10773656538716 0.1287894127682918 2.407357688531807 30.11110468898 0.1339882234195979 2.210507294831021 30.11324944927784 0.1397995822959413 2.407357688531807 30.11110468898 0.1339882234195979 2.210507294831021 30.11110468898 0.1339882234195979 2.407357688531807 30.11324944927784 0.1397995822959413 2.210507294831021 0.1195943279619485 0.2298517765885322 2.210507294831021 0.1184986753859647 2.439303184052209 2.210507294831021 0.1184986753859647 0.2465682045726894 2.210507294831021 0.1195943279619485 2.456019612036366 2.210507294831021 0.1228625387705549 0.2134213713218518 2.210507294831021 0.1228625387705478 2.472450017303048 2.210507294831021 0.1282473878187176 2.488313271062767 2.210507294831021 0.1282473878187176 0.1975581175621333 2.210507294831021 0.1356567388462722 0.182533439979327 2.210507294831021 0.1356567388462722 2.503337948645571 2.210507294831021 0.1449638158028748 0.1686044149725046 2.210507294831021 0.1449638158028748 2.517266973652395 2.210507294831021 0.1560093720213871 0.1560093720213889 2.210507294831021 0.1560093720213871 2.529862016603511 2.210507294831021 0.1686044149725063 0.1449638158028765 2.210507294831021 0.1686044149725063 2.540907572822023 2.210507294831021 0.1825334399793306 0.1356567388462739 2.210507294831021 0.1825334399793306 2.550214649778626 2.210507294831021 0.1975581175621315 0.1282473878187194 2.210507294831021 0.1975581175621315 2.557624000806181 2.210507294831021 0.2134213713218571 0.1228625387705513 2.210507294831021 0.21342137132185 2.56300884985435 2.210507294831021 0.2298517765885322 2.566277060662953 2.210507294831021 0.2298517765885322 0.1195943279619485 2.210507294831021 0.2465682045726894 0.1184986753859647 2.210507294831021 0.2465682045726894 2.567372713238934 2.210507294831021 0.3460392041832279 0.5491086559751146 2.210507294831021 0.3477764914940522 0.5226027736765069 2.210507294831021 0.3529586279589694 0.4965504143728481 2.210507294831021 0.3614969457863069 0.4713973411548995 2.210507294831021 0.3732453519907679 0.447573930079173 2.210507294831021 0.3880028280849146 0.4254878063142709 2.210507294831021 0.4055168695612395 0.4055168695612395 2.210507294831021 0.4254878063142726 0.3880028280849146 2.210507294831021 0.447573930079173 0.3732453519907644 2.210507294831021 0.4713973411548977 0.3614969457863069 2.210507294831021 0.4965504143728481 0.3529586279589729 2.210507294831021 0.5226027736765104 0.3477764914940558 2.210507294831021 0.5491086559751182 0.3460392041832314 2.210507294831021 30.0860261920037 0.1184986753859683 2.210507294831021 28.98669970978262 0.3460392041831959 2.210507294831021 29.00270410638306 0.3478174866438408 2.210507294831021 29.01792778668387 0.3530655869813781 2.210507294831021 29.03162811879157 0.3615274957018002 2.210507294831021 29.04313678181573 0.3727904293538451 2.210507294831021 29.05189236747371 0.3863049666688863 2.210507294831021 29.05746776635262 0.4014118500799384 2.210507294831021 29.05959100288907 0.4173741452051463 2.210507294831021 0.5491086559751111 2.339832184441677 2.210507294831021 25.56118838034679 2.567372713238937 2.210507294831021 0.5226027736765033 2.338094897130853 2.210507294831021 0.4965504143728481 2.332912760665936 2.210507294831021 0.4713973411548977 2.324374442838602 2.210507294831021 0.447573930079173 2.312626036634145 2.210507294831021 0.4254878063142726 2.297868560539994 2.210507294831021 0.4055168695612395 2.280354519063669 2.210507294831021 0.3880028280849146 2.260383582310636 2.210507294831021 0.3732453519907679 2.238297458545736 2.210507294831021 0.3614969457863069 2.214474047470008 2.210507294831021 0.3529586279589694 2.189320974252061 2.210507294831021 0.3477764914940522 2.163268614948402 2.210507294831021 0.346039204183235 2.136762732649794 2.210507294831021 25.50480608586854 2.33983218444167 2.210507294831021 29.0207414471994 0.4834205400204272 2.210507294831021 30.09912146437194 0.1713469183847511 2.210507294831021 29.03406389556177 0.4743753551861669 2.210507294831021 29.04507585432682 0.4626263227489496 2.210507294831021 29.05324014512329 0.4487465765392891 2.210507294831021 29.05815850270828 0.4334131895122741 2.210507294831021 30.09803909744245 0.1212016043046447 2.210507294831021 30.10330938016302 0.1244567554178957 2.210507294831021 30.10848249331568 0.1633477397435232 2.210507294831021 30.10773656538716 0.1287894127682918 2.210507294831021 30.11110468898 0.1339882234195979 2.210507294831021 30.11162315591949 0.1580084394959354 2.210507294831021 30.11324944927784 0.1397995822959413 2.210507294831021 30.11351516370367 0.1521099485644015 2.210507294831021 30.11406622194742 0.1459400033833784 2.210507294831021 30.10330938016302 0.1244567554178957 2.407357688531807 30.10773656538716 0.1287894127682918 2.210507294831021 30.10330938016302 0.1244567554178957 2.210507294831021 30.10773656538716 0.1287894127682918 2.407357688531807 30.11406622194742 0.1459400033833784 2.407357688531807 30.11324944927784 0.1397995822959413 2.210507294831021 30.11324944927784 0.1397995822959413 2.407357688531807 30.11406622194742 0.1459400033833784 2.210507294831021 30.09912146437194 0.1713469183847511 2.407357688531807 25.56118838034679 2.567372713238937 2.210507294831021 30.09912146437194 0.1713469183847511 2.210507294831021 25.56118838034679 2.567372713238937 2.407357688531807 25.56118838034679 2.567372713238937 2.407357688531807 0.2465682045726894 2.567372713238934 2.210507294831021 25.56118838034679 2.567372713238937 2.210507294831021 0.2465682045726894 2.567372713238934 2.407357688531807 0.2465682045726894 2.567372713238934 2.407357688531807 0.2298517765885322 2.566277060662953 2.210507294831021 0.2465682045726894 2.567372713238934 2.210507294831021 0.2298517765885322 2.566277060662953 2.407357688531807 0.21342137132185 2.56300884985435 2.210507294831021 0.21342137132185 2.56300884985435 2.407357688531807 0.1975581175621315 2.557624000806181 2.210507294831021 0.1975581175621315 2.557624000806181 2.407357688531807 0.1825334399793306 2.550214649778626 2.210507294831021 0.1825334399793306 2.550214649778626 2.407357688531807 0.1686044149725063 2.540907572822023 2.210507294831021 0.1686044149725063 2.540907572822023 2.407357688531807 0.1560093720213871 2.529862016603511 2.210507294831021 0.1560093720213871 2.529862016603511 2.407357688531807 0.1449638158028748 2.517266973652395 2.407357688531807 0.1449638158028748 2.517266973652395 2.210507294831021 0.1356567388462722 2.503337948645571 2.407357688531807 0.1356567388462722 2.503337948645571 2.210507294831021 0.1282473878187176 2.488313271062767 2.407357688531807 0.1282473878187176 2.488313271062767 2.210507294831021 0.1228625387705478 2.472450017303048 2.407357688531807 0.1228625387705478 2.472450017303048 2.210507294831021 0.1195943279619485 2.456019612036366 2.407357688531807 0.1195943279619485 2.456019612036366 2.210507294831021 0.1184986753859647 2.439303184052209 2.407357688531807 0.1184986753859647 2.439303184052209 2.210507294831021 0.1184986753859647 2.439303184052209 2.210507294831021 0.1184986753859647 0.2465682045726894 2.407357688531807 0.1184986753859647 0.2465682045726894 2.210507294831021 0.1184986753859647 2.439303184052209 2.407357688531807 0.1184986753859647 0.2465682045726894 2.210507294831021 0.1195943279619485 0.2298517765885322 2.407357688531807 0.1195943279619485 0.2298517765885322 2.210507294831021 0.1184986753859647 0.2465682045726894 2.407357688531807 0.1228625387705549 0.2134213713218518 2.407357688531807 0.1228625387705549 0.2134213713218518 2.210507294831021 0.1282473878187176 0.1975581175621333 2.407357688531807 0.1282473878187176 0.1975581175621333 2.210507294831021 0.1356567388462722 0.182533439979327 2.407357688531807 0.1356567388462722 0.182533439979327 2.210507294831021 0.1449638158028748 0.1686044149725046 2.407357688531807 0.1449638158028748 0.1686044149725046 2.210507294831021 0.1560093720213871 0.1560093720213889 2.407357688531807 0.1560093720213871 0.1560093720213889 2.210507294831021 0.1686044149725063 0.1449638158028765 2.210507294831021 0.1686044149725063 0.1449638158028765 2.407357688531807 0.1825334399793306 0.1356567388462739 2.210507294831021 0.1825334399793306 0.1356567388462739 2.407357688531807 0.1975581175621315 0.1282473878187194 2.210507294831021 0.1975581175621315 0.1282473878187194 2.407357688531807 0.2134213713218571 0.1228625387705513 2.210507294831021 0.2134213713218571 0.1228625387705513 2.407357688531807 0.2298517765885322 0.1195943279619485 2.210507294831021 0.2298517765885322 0.1195943279619485 2.407357688531807 0.2465682045726894 0.1184986753859647 2.210507294831021 0.2465682045726894 0.1184986753859647 2.407357688531807 0.2465682045726894 0.1184986753859647 2.407357688531807 30.0860261920037 0.1184986753859683 2.210507294831021 0.2465682045726894 0.1184986753859647 2.210507294831021 30.0860261920037 0.1184986753859683 2.407357688531807 30.0860261920037 0.1184986753859683 2.407357688531807 30.09803909744245 0.1212016043046447 2.210507294831021 30.0860261920037 0.1184986753859683 2.210507294831021 30.09803909744245 0.1212016043046447 2.407357688531807 30.09803909744245 0.1212016043046447 2.407357688531807 30.10330938016302 0.1244567554178957 2.210507294831021 30.09803909744245 0.1212016043046447 2.210507294831021 30.10330938016302 0.1244567554178957 2.407357688531807 30.11351516370367 0.1521099485644015 2.407357688531807 30.11406622194742 0.1459400033833784 2.210507294831021 30.11406622194742 0.1459400033833784 2.407357688531807 30.11351516370367 0.1521099485644015 2.210507294831021 30.11162315591949 0.1580084394959354 2.407357688531807 30.11351516370367 0.1521099485644015 2.210507294831021 30.11351516370367 0.1521099485644015 2.407357688531807 30.11162315591949 0.1580084394959354 2.210507294831021 30.10848249331568 0.1633477397435232 2.407357688531807 30.11162315591949 0.1580084394959354 2.210507294831021 30.11162315591949 0.1580084394959354 2.407357688531807 30.10848249331568 0.1633477397435232 2.210507294831021 30.10848249331568 0.1633477397435232 2.407357688531807 30.09912146437194 0.1713469183847511 2.210507294831021 30.10848249331568 0.1633477397435232 2.210507294831021 30.09912146437194 0.1713469183847511 2.407357688531807 + + + + + + + + + + -0.8392617144369261 0.5437276659140966 0 -0.8392617144369261 0.5437276659140966 0 -0.8392617144369261 0.5437276659140966 0 -0.8392617144369261 0.5437276659140966 0 -0.9381474611967006 0.3462359615207312 0 -0.9381474611967006 0.3462359615207312 0 -0.9381474611967006 0.3462359615207312 0 -0.9381474611967006 0.3462359615207312 0 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 -0.6994356363115606 0.7146955930026729 0 -0.6994356363115606 0.7146955930026729 0 -0.6994356363115606 0.7146955930026729 0 -0.6994356363115606 0.7146955930026729 0 -0.9912690949632644 0.1318543945824739 0 -0.9912690949632644 0.1318543945824739 0 -0.9912690949632644 0.1318543945824739 0 -0.9912690949632644 0.1318543945824739 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 3.508559139078474e-017 -1 0 3.508559139078474e-017 -1 0 3.508559139078474e-017 -1 0 3.508559139078474e-017 -1 0 0.06540312923014653 -0.9978589232386035 0 0.1305261922200657 -0.9914448613738085 0 0.06540312923014653 -0.9978589232386035 0 0.1305261922200657 -0.9914448613738085 0 0.2588190451025326 -0.9659258262890651 0 0.2588190451025326 -0.9659258262890651 0 0.3826834323650984 -0.9238795325112833 0 0.3826834323650984 -0.9238795325112833 0 0.5000000000000157 -0.8660254037844295 0 0.5000000000000157 -0.8660254037844295 0 0.6087614290087283 -0.7933533402912294 0 0.6087614290087283 -0.7933533402912294 0 0.7071067811865515 -0.7071067811865435 0 0.7071067811865515 -0.7071067811865435 0 0.7933533402912371 -0.6087614290087183 0 0.7933533402912371 -0.6087614290087183 0 0.8660254037844378 -0.5000000000000014 0 0.8660254037844378 -0.5000000000000014 0 0.9238795325112877 -0.3826834323650871 0 0.9238795325112877 -0.3826834323650871 0 0.965925826289069 -0.258819045102518 0 0.965925826289069 -0.258819045102518 0 0.9914448613738105 -0.1305261922200504 0 0.9914448613738105 -0.1305261922200504 0 0.9978589232386037 -0.06540312923014092 0 0.9978589232386037 -0.06540312923014092 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9978589232386028 0.06540312923015378 0 0.9914448613738085 0.1305261922200654 0 0.9914448613738085 0.1305261922200654 0 0.9978589232386028 0.06540312923015378 0 0.9659258262890664 0.2588190451025282 0 0.9659258262890664 0.2588190451025282 0 0.9238795325112841 0.3826834323650963 0 0.9238795325112841 0.3826834323650963 0 0.8660254037844283 0.500000000000018 0 0.8660254037844283 0.500000000000018 0 0.7933533402912328 0.6087614290087237 0 0.7933533402912328 0.6087614290087237 0 0.7071067811865434 0.7071067811865516 0 0.7071067811865434 0.7071067811865516 0 0.6087614290087107 0.7933533402912428 0 0.6087614290087107 0.7933533402912428 0 0.5000000000000019 0.8660254037844377 0 0.5000000000000019 0.8660254037844377 0 0.3826834323650855 0.9238795325112886 0 0.3826834323650855 0.9238795325112886 0 0.2588190451025133 0.9659258262890702 0 0.2588190451025133 0.9659258262890702 0 0.1305261922200561 0.9914448613738098 0 0.1305261922200561 0.9914448613738098 0 0.06540312923015844 0.9978589232386027 0 0.06540312923015844 0.9978589232386027 0 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -0.2195141426946766 0.9756093178916556 0 -0.2195141426946766 0.9756093178916556 0 -0.2195141426946766 0.9756093178916556 0 -0.2195141426946766 0.9756093178916556 0 -0.5254901336654482 0.8507996940645135 0 -0.5254901336654482 0.8507996940645135 0 -0.5254901336654482 0.8507996940645135 0 -0.5254901336654482 0.8507996940645135 0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 11 8 12 11 12 13 13 12 14 14 12 15 14 15 16 14 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 30 28 31 30 31 32 30 32 33 33 32 34 34 32 35 35 32 36 36 32 37 37 32 38 38 32 39 39 32 40 40 32 41 41 32 42 42 32 43 43 32 44 44 32 45 45 32 46 46 32 47 46 47 48 48 47 49 49 47 50 50 47 51 51 47 52 52 47 53 53 47 54 54 47 55 33 56 57 56 33 58 58 33 59 59 33 60 60 33 61 61 33 62 62 33 63 63 33 64 64 33 65 65 33 66 66 33 67 67 33 68 68 33 69 69 33 34 57 56 70 57 70 71 57 71 72 72 71 73 72 73 74 72 74 75 72 75 76 72 76 55 72 55 47 72 47 77 72 77 78 72 78 79 79 78 80 79 80 81 79 81 82 82 81 83 82 83 84 84 83 85 86 87 88 87 86 89 90 91 92 91 90 93 94 95 96 95 94 97 98 99 100 99 98 101 102 103 104 103 102 105 105 106 103 106 105 107 107 108 106 108 107 109 109 110 108 110 109 111 111 112 110 112 111 113 113 114 112 114 113 115 114 116 117 116 114 115 117 118 119 118 117 116 119 120 121 120 119 118 121 122 123 122 121 120 123 124 125 124 123 122 125 126 127 126 125 124 128 129 130 129 128 131 132 133 134 133 132 135 134 136 137 136 134 133 137 138 139 138 137 136 139 140 141 140 139 138 141 142 143 142 141 140 143 144 145 144 143 142 144 146 145 146 144 147 147 148 146 148 147 149 149 150 148 150 149 151 151 152 150 152 151 153 153 154 152 154 153 155 155 156 154 156 155 157 158 159 160 159 158 161 162 163 164 163 162 165 166 167 168 167 166 169 170 171 172 171 170 173 174 175 176 175 174 177 178 179 180 179 178 181 182 183 184 183 182 185

+
+
+
+ + + + 51.18110236220473 6.474023811682754 1.408731047881116 45.94449345059825 0.7153153851313139 1.408731047881116 45.94449345059825 6.474023811682754 1.408731047881116 51.18110236220473 0.7153153851313139 1.408731047881116 45.94449345059825 0.7153153851313139 1.408731047881116 51.18110236220473 0.7153153851313139 0.8468730150304643 45.94449345059825 0.7153153851313139 0.8468730150304643 51.18110236220473 0.7153153851313139 1.408731047881116 51.18110236220473 6.474023811682754 1.408731047881116 45.94449345059825 6.474023811682754 0.8468730150304621 51.18110236220473 6.474023811682754 0.8468730150304621 45.94449345059825 6.474023811682754 1.408731047881116 51.18110236220473 0.7153153851313139 0.8468730150304643 45.94449345059825 6.474023811682754 0.8468730150304621 45.94449345059825 0.7153153851313139 0.8468730150304643 51.18110236220473 6.474023811682754 0.8468730150304621 + + + + + + + + + + -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 0 1 -3.95196992732243e-016 0 1 -3.95196992732243e-016 0 1 -3.95196992732243e-016 0 1 -3.95196992732243e-016 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + -0.9477981918926801 0.1198893298459769 -0.8508239527888565 0.01324658120613544 -0.8508239527888565 0.1198893298459769 -0.9477981918926801 0.01324658120613544 -0.8508239527888565 0.02160606833440687 -0.9477981918926801 0.01120128994828369 -0.8508239527888565 0.01120128994828369 -0.9477981918926801 0.02160606833440687 0.9477981918926801 0.02160606833440667 0.8508239527888565 0.01120128994828346 0.9477981918926801 0.01120128994828346 0.8508239527888565 0.02160606833440667 0.9477981918926801 0.01324658120613544 0.8508239527888565 0.1198893298459769 0.8508239527888565 0.01324658120613544 0.9477981918926801 0.1198893298459769 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15

+
+
+
+ + + + 45.94449345059825 6.474023811682754 0.8468730150304621 45.94449345059825 0.7153153851313139 1.408731047881116 45.94449345059825 0.7153153851313139 0.8468730150304643 45.94449345059825 6.474023811682754 1.408731047881116 + + + + + + + + + + 1 0 0 1 0 0 1 0 0 1 0 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3

+
+
+
+ + + + 0.1184986753859647 2.804370064010866 2.486097846012126 3.763089190289442 4.829011243202418 2.486097846012126 0.1184986753859647 7.126416329097724 2.486097846012126 5.577594676008829 3.993671778922126 2.486097846012126 5.848211101779548 3.881578785166932 2.486097846012126 6.138618298056045 3.843345952459808 2.486097846012126 25.61991398185795 2.804370064010866 2.486097846012126 3.730473949157663 4.854037797942242 2.486097846012126 3.705447394417853 4.886653039073993 2.486097846012126 3.68971504441712 4.924634291813741 2.486097846012126 3.684349032809131 4.965393196554297 2.486097846012126 3.801070443029168 4.8132788932017 2.486097846012126 3.841829347769725 4.807912881593675 2.486097846012126 3.882588252510281 4.8132788932017 2.486097846012126 3.920569505250036 4.829011243202418 2.486097846012126 3.953184746381801 4.854037797942242 2.486097846012126 3.978211301121611 4.886653039073993 2.486097846012126 3.993943651122343 4.924634291813741 2.486097846012126 3.999309662730347 4.965393196554297 2.486097846012126 5.345211082945141 4.171985981443397 2.486097846012126 5.166896880423835 4.404369574507031 2.486097846012126 5.054803886668701 4.674986000277832 2.486097846012126 5.016571053961556 4.965393196554279 2.486097846012126 6.429025494332535 3.881578785166932 2.486097846012126 6.699641920103375 3.993671778922126 2.486097846012126 6.93202551316692 4.171985981443397 2.486097846012126 7.110339715688212 4.404369574507031 2.486097846012126 7.22243270944341 4.674986000277832 2.486097846012126 7.260665542150491 4.965393196554279 2.486097846012126 6.138618298056045 6.087440440648775 2.486097846012126 51.06260368681876 7.126416329097724 2.486097846012127 5.848211101779548 6.04920760794162 2.486097846012126 5.577594676008829 5.937114614186443 2.486097846012126 3.763089190289442 5.101775149906183 2.486097846012126 3.730473949157663 5.076748595166359 2.486097846012126 3.705447394417853 5.04413335403463 2.486097846012126 3.68971504441712 5.006152101294854 2.486097846012126 3.801070443029168 5.11750749990693 2.486097846012126 3.841829347769725 5.122873511514927 2.486097846012126 3.882588252510281 5.11750749990693 2.486097846012126 3.920569505250036 5.101775149906183 2.486097846012126 3.953184746381801 5.076748595166359 2.486097846012126 3.978211301121611 5.04413335403463 2.486097846012126 3.993943651122343 5.006152101294854 2.486097846012126 5.345211082945141 5.758800411665172 2.486097846012126 5.166896880423835 5.52641681860152 2.486097846012126 5.054803886668701 5.255800392830723 2.486097846012126 6.429025494332535 6.04920760794162 2.486097846012126 6.699641920103375 5.937114614186443 2.486097846012126 6.93202551316692 5.758800411665172 2.486097846012126 7.110339715688212 5.52641681860152 2.486097846012126 7.22243270944341 5.255800392830723 2.486097846012126 30.70679771243117 0.1184986753859665 2.486097846012126 51.06260368681876 0.1184986753859647 2.486097846012126 + + + + + + + + + + -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 -1.114631815844137e-017 -8.602164972986113e-017 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 2 1 7 2 7 8 2 8 9 2 9 10 1 3 11 11 3 12 12 3 13 13 3 14 14 3 15 15 3 16 16 3 17 17 3 18 18 3 19 18 19 20 18 20 21 18 21 22 5 6 23 23 6 24 24 6 25 25 6 26 26 6 27 27 6 28 2 29 30 29 2 31 31 2 32 32 2 33 33 2 34 34 2 35 35 2 36 36 2 10 32 33 37 32 37 38 32 38 39 32 39 40 32 40 41 32 41 42 32 42 43 32 43 18 32 18 44 44 18 45 45 18 46 46 18 22 30 29 47 30 47 48 30 48 49 30 49 50 30 50 51 30 51 28 30 28 6 30 6 52 30 52 53

+
+
+
+ + + + 43.8785667103903 6.693733902121489 0.2420033578231468 43.9050725926889 6.695471189432313 0.2420033578231468 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 43.70200314089702 6.49240173764043 0.2420033578231468 43.70374042820784 6.518907619939037 0.2420033578231468 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 0 0 3.076649027114485 0 0 2.407357688531807 + + + + + + + + + + + + + +

1 0

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ID7 + + + + + ID8 + + + + + + + + + + + + + + + + + 0.05882352941176471 0.05882352941176471 0.05882352941176471 1 + + + + + + + + + + + 1 1 1 1 + + + + + + + + + + + 0.05882352941176471 0.05882352941176471 0.05882352941176471 1 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + + + + + + + + + 0.2431372549019608 0.3568627450980392 0.4352941176470588 1 + + + + + + + + + + + 0.1254901960784314 0.2117647058823529 0.2274509803921569 1 + + + + + + + + + + + 0.2156862745098039 0.3568627450980392 0.3843137254901961 1 + + + + + + + + + + + 0.2431372549019608 0.3568627450980392 0.4352941176470588 1 + + + 1 + + + + + + + + + r200_entire/texture0.jpg + + + + + +
diff --git a/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_entire/texture0.jpg b/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_entire/texture0.jpg new file mode 100644 index 0000000000..8956fcfcb8 Binary files /dev/null and b/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_entire/texture0.jpg differ diff --git a/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_only.dae b/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_only.dae new file mode 100644 index 0000000000..c1ebc6ab21 --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/meshes/sensors/r200_only.dae @@ -0,0 +1,890 @@ + + + + + Google SketchUp 8.0.4811 + + 2015-05-31T08:41:34Z + 2015-05-31T08:41:34Z + + Z_UP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1184986753859656 7.755517072645532 2.24409448818898 51.06260368681876 7.755517072645532 2.165354330708662 0.1184986753859656 7.755517072645532 2.165354330708662 51.06260368681876 7.755517072645532 2.24409448818898 0.1184986753859656 7.755517072645532 2.24409448818898 0.1184986753859656 2.804370064010866 2.165354330708662 0.1184986753859656 2.804370064010866 2.24409448818898 0.1184986753859656 7.755517072645532 2.165354330708662 51.06260368681876 7.755517072645532 2.165354330708662 51.06260368681876 0.1184986753859656 2.24409448818898 51.06260368681876 0.1184986753859656 2.165354330708662 51.06260368681876 7.755517072645532 2.24409448818898 25.61991398185795 2.804370064010866 2.24409448818898 0.1184986753859656 2.804370064010866 2.165354330708662 25.61991398185795 2.804370064010866 2.165354330708662 0.1184986753859656 2.804370064010866 2.24409448818898 51.06260368681876 0.1184986753859656 2.24409448818898 30.70679771243117 0.1184986753859656 2.165354330708662 51.06260368681876 0.1184986753859656 2.165354330708662 30.70679771243117 0.1184986753859656 2.24409448818898 30.70679771243117 0.1184986753859656 2.24409448818898 25.61991398185795 2.804370064010866 2.165354330708662 30.70679771243117 0.1184986753859656 2.165354330708662 25.61991398185795 2.804370064010866 2.24409448818898 + + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 -1.741429659934826e-017 -1 -0 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -1.363521329027796e-018 -1 1.38790518535184e-045 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 -0.4669118737456303 -0.8843038517135072 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23

+
+
+
+ + + + 0.1184986753859656 2.43930318405221 1.968503937007876 0.1184986753859656 0.2465682045726894 2.165354330708662 0.1184986753859656 0.2465682045726894 1.968503937007876 0.1184986753859656 2.43930318405221 2.165354330708662 0.1184986753859656 0.2465682045726894 1.968503937007876 0.119594327961949 0.2298517765885317 2.165354330708662 0.119594327961949 0.2298517765885317 1.968503937007876 0.1184986753859656 0.2465682045726894 2.165354330708662 0.2465682045726913 0.1184986753859656 1.968503937007876 0.3477764914940549 0.5226027736765067 1.968503937007876 0.3460392041832313 0.5491086559751139 1.968503937007876 0.352958627958972 0.4965504143728474 1.968503937007876 0.361496945786306 0.4713973411548998 1.968503937007876 0.3732453519907644 0.4475739300791728 1.968503937007876 0.3880028280849136 0.4254878063142707 1.968503937007876 0.4055168695612388 0.4055168695612393 1.968503937007876 0.4254878063142707 0.3880028280849154 1.968503937007876 0.4475739300791731 0.3732453519907652 1.968503937007876 0.4713973411549005 0.3614969457863064 1.968503937007876 0.4965504143728469 0.3529586279589738 1.968503937007876 0.5226027736765072 0.3477764914940557 1.968503937007876 0.5491086559751147 0.346039204183232 1.968503937007876 30.0860261920037 0.1184986753859688 1.968503937007876 28.98669970978262 0.3460392041831966 1.968503937007876 29.00270410638306 0.3478174866438403 1.968503937007876 29.01792778668387 0.3530655869813785 1.968503937007876 29.03162811879157 0.3615274957018001 1.968503937007876 29.04313678181573 0.3727904293538459 1.968503937007876 29.05189236747371 0.386304966668887 1.968503937007876 29.05746776635262 0.4014118500799385 1.968503937007876 29.05959100288907 0.4173741452051467 1.968503937007876 0.119594327961949 0.2298517765885317 1.968503937007876 0.1184986753859656 2.43930318405221 1.968503937007876 0.1184986753859656 0.2465682045726894 1.968503937007876 0.1195943279619488 2.456019612036368 1.968503937007876 0.1228625387705512 2.472450017303047 1.968503937007876 0.1228625387705518 0.2134213713218521 1.968503937007876 0.1282473878187184 2.488313271062767 1.968503937007876 0.1282473878187189 0.1975581175621329 1.968503937007876 0.1356567388462739 2.503337948645572 1.968503937007876 0.1356567388462747 0.1825334399793274 1.968503937007876 0.1449638158028762 2.517266973652394 1.968503937007876 0.1449638158028776 0.1686044149725052 1.968503937007876 0.1560093720213884 2.529862016603511 1.968503937007876 0.1560093720213896 0.1560093720213882 1.968503937007876 0.1686044149725052 2.540907572822023 1.968503937007876 0.1686044149725068 0.1449638158028763 1.968503937007876 0.1825334399793273 2.550214649778626 1.968503937007876 0.1825334399793289 0.1356567388462739 1.968503937007876 0.1975581175621327 2.557624000806182 1.968503937007876 0.197558117562134 0.1282473878187185 1.968503937007876 0.213421371321852 2.563008849854349 1.968503937007876 0.2134213713218537 0.1228625387705514 1.968503937007876 0.2298517765885315 2.566277060662952 1.968503937007876 0.2298517765885331 0.1195943279619491 1.968503937007876 0.2465682045726894 2.567372713238935 1.968503937007876 0.3460392041832319 2.136762732649793 1.968503937007876 0.3477764914940558 2.163268614948401 1.968503937007876 0.3529586279589722 2.189320974252061 1.968503937007876 0.3614969457863068 2.214474047470008 1.968503937007876 0.3732453519907648 2.238297458545735 1.968503937007876 0.3880028280849145 2.260383582310638 1.968503937007876 0.4055168695612396 2.280354519063669 1.968503937007876 0.4254878063142705 2.297868560539994 1.968503937007876 0.4475739300791732 2.312626036634144 1.968503937007876 0.4713973411548998 2.324374442838602 1.968503937007876 0.4965504143728471 2.332912760665936 1.968503937007876 0.5226027736765068 2.338094897130853 1.968503937007876 0.5491086559751146 2.339832184441677 1.968503937007876 25.56118838034679 2.567372713238936 1.968503937007876 25.50480608586854 2.339832184441669 1.968503937007876 29.0207414471994 0.4834205400204281 1.968503937007876 30.09912146437194 0.1713469183847506 1.968503937007876 29.03406389556177 0.4743753551861666 1.968503937007876 29.04507585432682 0.4626263227489491 1.968503937007876 29.05324014512329 0.4487465765392888 1.968503937007876 29.05815850270828 0.4334131895122746 1.968503937007876 30.09803909744245 0.1212016043046447 1.968503937007876 30.10330938016302 0.1244567554178949 1.968503937007876 30.10848249331568 0.1633477397435226 1.968503937007876 30.10773656538716 0.1287894127682915 1.968503937007876 30.11110468898 0.1339882234195986 1.968503937007876 30.11162315591949 0.1580084394959358 1.968503937007876 30.11324944927784 0.1397995822959414 1.968503937007876 30.11351516370367 0.1521099485644012 1.968503937007876 30.11406622194742 0.145940003383379 1.968503937007876 0.1195943279619488 2.456019612036368 1.968503937007876 0.1184986753859656 2.43930318405221 2.165354330708662 0.1184986753859656 2.43930318405221 1.968503937007876 0.1195943279619488 2.456019612036368 2.165354330708662 0.1228625387705518 0.2134213713218521 2.165354330708662 0.1228625387705518 0.2134213713218521 1.968503937007876 30.09912146437194 0.1713469183847506 2.165354330708662 25.56118838034679 2.567372713238936 1.968503937007876 30.09912146437194 0.1713469183847506 1.968503937007876 25.56118838034679 2.567372713238936 2.165354330708662 25.56118838034679 2.567372713238936 2.165354330708662 0.2465682045726894 2.567372713238935 1.968503937007876 25.56118838034679 2.567372713238936 1.968503937007876 0.2465682045726894 2.567372713238935 2.165354330708662 0.2465682045726894 2.567372713238935 2.165354330708662 0.2298517765885315 2.566277060662952 1.968503937007876 0.2465682045726894 2.567372713238935 1.968503937007876 0.2298517765885315 2.566277060662952 2.165354330708662 0.213421371321852 2.563008849854349 1.968503937007876 0.213421371321852 2.563008849854349 2.165354330708662 0.1975581175621327 2.557624000806182 1.968503937007876 0.1975581175621327 2.557624000806182 2.165354330708662 0.1825334399793273 2.550214649778626 1.968503937007876 0.1825334399793273 2.550214649778626 2.165354330708662 0.1686044149725052 2.540907572822023 1.968503937007876 0.1686044149725052 2.540907572822023 2.165354330708662 0.1560093720213884 2.529862016603511 1.968503937007876 0.1560093720213884 2.529862016603511 2.165354330708662 0.1449638158028762 2.517266973652394 2.165354330708662 0.1449638158028762 2.517266973652394 1.968503937007876 0.1356567388462739 2.503337948645572 2.165354330708662 0.1356567388462739 2.503337948645572 1.968503937007876 0.1282473878187184 2.488313271062767 2.165354330708662 0.1282473878187184 2.488313271062767 1.968503937007876 0.1228625387705512 2.472450017303047 2.165354330708662 0.1228625387705512 2.472450017303047 1.968503937007876 0.1282473878187189 0.1975581175621329 2.165354330708662 0.1282473878187189 0.1975581175621329 1.968503937007876 0.1356567388462747 0.1825334399793274 2.165354330708662 0.1356567388462747 0.1825334399793274 1.968503937007876 0.1449638158028776 0.1686044149725052 2.165354330708662 0.1449638158028776 0.1686044149725052 1.968503937007876 0.1560093720213896 0.1560093720213882 2.165354330708662 0.1560093720213896 0.1560093720213882 1.968503937007876 0.1686044149725068 0.1449638158028763 1.968503937007876 0.1686044149725068 0.1449638158028763 2.165354330708662 0.1825334399793289 0.1356567388462739 1.968503937007876 0.1825334399793289 0.1356567388462739 2.165354330708662 0.197558117562134 0.1282473878187185 1.968503937007876 0.197558117562134 0.1282473878187185 2.165354330708662 0.2134213713218537 0.1228625387705514 1.968503937007876 0.2134213713218537 0.1228625387705514 2.165354330708662 0.2298517765885331 0.1195943279619491 1.968503937007876 0.2298517765885331 0.1195943279619491 2.165354330708662 0.2465682045726913 0.1184986753859656 1.968503937007876 0.2465682045726913 0.1184986753859656 2.165354330708662 0.2465682045726913 0.1184986753859656 2.165354330708662 30.0860261920037 0.1184986753859688 1.968503937007876 0.2465682045726913 0.1184986753859656 1.968503937007876 30.0860261920037 0.1184986753859688 2.165354330708662 30.0860261920037 0.1184986753859688 2.165354330708662 30.09803909744245 0.1212016043046447 1.968503937007876 30.0860261920037 0.1184986753859688 1.968503937007876 30.09803909744245 0.1212016043046447 2.165354330708662 30.09803909744245 0.1212016043046447 2.165354330708662 30.10330938016302 0.1244567554178949 1.968503937007876 30.09803909744245 0.1212016043046447 1.968503937007876 30.10330938016302 0.1244567554178949 2.165354330708662 30.10330938016302 0.1244567554178949 2.165354330708662 30.10773656538716 0.1287894127682915 1.968503937007876 30.10330938016302 0.1244567554178949 1.968503937007876 30.10773656538716 0.1287894127682915 2.165354330708662 30.11110468898 0.1339882234195986 2.165354330708662 30.10773656538716 0.1287894127682915 1.968503937007876 30.10773656538716 0.1287894127682915 2.165354330708662 30.11110468898 0.1339882234195986 1.968503937007876 30.11324944927784 0.1397995822959414 2.165354330708662 30.11110468898 0.1339882234195986 1.968503937007876 30.11110468898 0.1339882234195986 2.165354330708662 30.11324944927784 0.1397995822959414 1.968503937007876 30.11406622194742 0.145940003383379 2.165354330708662 30.11324944927784 0.1397995822959414 1.968503937007876 30.11324944927784 0.1397995822959414 2.165354330708662 30.11406622194742 0.145940003383379 1.968503937007876 30.11351516370367 0.1521099485644012 2.165354330708662 30.11406622194742 0.145940003383379 1.968503937007876 30.11406622194742 0.145940003383379 2.165354330708662 30.11351516370367 0.1521099485644012 1.968503937007876 30.11162315591949 0.1580084394959358 2.165354330708662 30.11351516370367 0.1521099485644012 1.968503937007876 30.11351516370367 0.1521099485644012 2.165354330708662 30.11162315591949 0.1580084394959358 1.968503937007876 30.10848249331568 0.1633477397435226 2.165354330708662 30.11162315591949 0.1580084394959358 1.968503937007876 30.11162315591949 0.1580084394959358 2.165354330708662 30.10848249331568 0.1633477397435226 1.968503937007876 30.10848249331568 0.1633477397435226 2.165354330708662 30.09912146437194 0.1713469183847506 1.968503937007876 30.10848249331568 0.1633477397435226 1.968503937007876 30.09912146437194 0.1713469183847506 2.165354330708662 + + + + + + + + + + 1 0 0 1 0 0 1 0 0 1 0 0 0.9978589232386028 0.06540312923015378 0 0.9914448613738085 0.1305261922200654 0 0.9914448613738085 0.1305261922200654 0 0.9978589232386028 0.06540312923015378 0 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 2.656193772464903e-032 5.126105274048653e-031 1 0.9914448613738105 -0.1305261922200504 0 0.9978589232386037 -0.06540312923014092 -0 0.9978589232386037 -0.06540312923014092 -0 0.9914448613738105 -0.1305261922200504 0 0.9659258262890664 0.2588190451025282 0 0.9659258262890664 0.2588190451025282 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 -0.4669118737456304 -0.8843038517135073 0 3.508559139078474e-017 -1 -0 3.508559139078474e-017 -1 -0 3.508559139078474e-017 -1 -0 3.508559139078474e-017 -1 -0 0.06540312923014653 -0.9978589232386035 -0 0.1305261922200657 -0.9914448613738085 0 0.06540312923014653 -0.9978589232386035 -0 0.1305261922200657 -0.9914448613738085 0 0.2588190451025326 -0.9659258262890651 0 0.2588190451025326 -0.9659258262890651 0 0.3826834323650984 -0.9238795325112833 0 0.3826834323650984 -0.9238795325112833 0 0.5000000000000157 -0.8660254037844295 0 0.5000000000000157 -0.8660254037844295 0 0.6087614290087283 -0.7933533402912294 0 0.6087614290087283 -0.7933533402912294 0 0.7071067811865515 -0.7071067811865435 0 0.7071067811865515 -0.7071067811865435 0 0.7933533402912371 -0.6087614290087183 0 0.7933533402912371 -0.6087614290087183 0 0.8660254037844378 -0.5000000000000014 0 0.8660254037844378 -0.5000000000000014 0 0.9238795325112877 -0.3826834323650871 0 0.9238795325112877 -0.3826834323650871 0 0.965925826289069 -0.258819045102518 0 0.965925826289069 -0.258819045102518 0 0.9238795325112841 0.3826834323650963 0 0.9238795325112841 0.3826834323650963 0 0.8660254037844283 0.500000000000018 0 0.8660254037844283 0.500000000000018 0 0.7933533402912328 0.6087614290087237 0 0.7933533402912328 0.6087614290087237 0 0.7071067811865434 0.7071067811865516 0 0.7071067811865434 0.7071067811865516 0 0.6087614290087107 0.7933533402912428 0 0.6087614290087107 0.7933533402912428 0 0.5000000000000019 0.8660254037844377 0 0.5000000000000019 0.8660254037844377 0 0.3826834323650855 0.9238795325112886 0 0.3826834323650855 0.9238795325112886 0 0.2588190451025133 0.9659258262890702 0 0.2588190451025133 0.9659258262890702 0 0.1305261922200561 0.9914448613738098 0 0.1305261922200561 0.9914448613738098 0 0.06540312923015844 0.9978589232386027 0 0.06540312923015844 0.9978589232386027 0 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -1.083146562226566e-016 1 -1.259049816913602e-017 -0.2195141426946766 0.9756093178916556 -0 -0.2195141426946766 0.9756093178916556 -0 -0.2195141426946766 0.9756093178916556 -0 -0.2195141426946766 0.9756093178916556 -0 -0.5254901336654482 0.8507996940645135 -0 -0.5254901336654482 0.8507996940645135 -0 -0.5254901336654482 0.8507996940645135 -0 -0.5254901336654482 0.8507996940645135 -0 -0.6994356363115606 0.7146955930026729 -0 -0.6994356363115606 0.7146955930026729 -0 -0.6994356363115606 0.7146955930026729 -0 -0.6994356363115606 0.7146955930026729 -0 -0.8392617144369261 0.5437276659140966 -0 -0.8392617144369261 0.5437276659140966 -0 -0.8392617144369261 0.5437276659140966 -0 -0.8392617144369261 0.5437276659140966 -0 -0.9381474611967006 0.3462359615207312 -0 -0.9381474611967006 0.3462359615207312 -0 -0.9381474611967006 0.3462359615207312 -0 -0.9381474611967006 0.3462359615207312 -0 -0.9912690949632644 0.1318543945824739 -0 -0.9912690949632644 0.1318543945824739 -0 -0.9912690949632644 0.1318543945824739 -0 -0.9912690949632644 0.1318543945824739 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9960352699715455 -0.08895920960030257 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.9522134857026214 -0.3054332621802407 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.8619414285757618 -0.5070078635531948 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 -0.6496407765509248 -0.7602413178999887 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 11 8 12 12 8 13 13 8 14 14 8 15 15 8 16 16 8 17 17 8 18 18 8 19 19 8 20 20 8 21 21 8 22 21 22 23 23 22 24 24 22 25 25 22 26 26 22 27 27 22 28 28 22 29 29 22 30 31 32 33 32 31 34 34 31 35 35 31 36 35 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 8 55 8 56 55 56 57 55 57 58 55 58 59 55 59 60 55 60 61 55 61 62 55 62 63 55 63 64 55 64 65 55 65 66 55 66 67 55 67 68 55 68 69 56 8 10 69 68 70 69 70 71 69 71 72 72 71 73 72 73 74 72 74 75 72 75 76 72 76 30 72 30 22 72 22 77 72 77 78 72 78 79 79 78 80 79 80 81 79 81 82 82 81 83 82 83 84 84 83 85 86 87 88 87 86 89 6 90 91 90 6 5 92 93 94 93 92 95 96 97 98 97 96 99 100 101 102 101 100 103 103 104 101 104 103 105 105 106 104 106 105 107 107 108 106 108 107 109 109 110 108 110 109 111 111 112 110 112 111 113 112 114 115 114 112 113 115 116 117 116 115 114 117 118 119 118 117 116 119 120 121 120 119 118 121 89 86 89 121 120 91 122 123 122 91 90 123 124 125 124 123 122 125 126 127 126 125 124 127 128 129 128 127 126 128 130 129 130 128 131 131 132 130 132 131 133 133 134 132 134 133 135 135 136 134 136 135 137 137 138 136 138 137 139 139 140 138 140 139 141 142 143 144 143 142 145 146 147 148 147 146 149 150 151 152 151 150 153 154 155 156 155 154 157 158 159 160 159 158 161 162 163 164 163 162 165 166 167 168 167 166 169 170 171 172 171 170 173 174 175 176 175 174 177 178 179 180 179 178 181 182 183 184 183 182 185

+
+
+
+ + + + 29.00270410638306 0.3478174866438403 1.968503937007876 29.01792778668387 0.3530655869813785 1.062992125984253 29.00270410638306 0.3478174866438403 1.062992125984253 29.01792778668387 0.3530655869813785 1.968503937007876 28.98669970978262 0.3460392041831966 1.968503937007876 29.00270410638306 0.3478174866438403 1.110223024625157e-015 28.98669970978262 0.3460392041831966 1.110223024625157e-015 29.03162811879157 0.3615274957018001 1.062992125984253 29.03162811879157 0.3615274957018001 1.968503937007876 43.19998259988454 2.339832184441669 1.062992125984254 29.0207414471994 0.4834205400204281 1.062992125984253 25.50480608586854 2.339832184441669 1.062992125984253 29.03406389556177 0.4743753551861666 1.062992125984253 29.04507585432682 0.4626263227489491 1.062992125984253 29.05324014512329 0.4487465765392888 1.062992125984253 29.05815850270828 0.4334131895122746 1.062992125984253 29.05959100288907 0.4173741452051467 1.062992125984253 43.1999825998845 0.3478174866438403 1.062992125984253 43.22648848218315 0.3495547739546886 1.062992125984253 43.22648848218314 2.338094897130838 1.062992125984254 43.25254084148678 2.332912760665932 1.062992125984254 43.25254084148678 0.3547369104195798 1.062992125984253 43.27769391470476 2.324374442838592 1.062992125984254 43.27769391470472 0.3632752282469342 1.062992125984253 43.30151732578045 0.3750236344513948 1.062992125984253 43.30151732578047 2.312626036634134 1.062992125984254 43.32360344954538 0.3897811105455223 1.062992125984253 43.32360344954538 2.297868560539985 1.062992125984254 43.34357438629841 2.280354519063661 1.062992125984254 43.34357438629839 0.4072951520218343 1.062992125984253 43.36108842777473 0.4272660887748755 1.062992125984253 43.36108842777473 2.260383582310626 1.062992125984254 43.37584590386888 2.238297458545732 1.062992125984254 43.37584590386889 0.4493522125397943 1.062992125984253 43.38759431007334 2.214474047469995 1.062992125984254 43.38759431007329 0.4731756236155132 1.062992125984253 43.39613262790066 0.4983286968334623 1.062992125984253 43.39613262790067 2.189320974252053 1.062992125984254 43.40131476436558 0.5243810561371171 1.062992125984253 43.40131476436559 2.163268614948387 1.062992125984254 43.4030520516764 0.5508869384357514 1.062992125984253 43.4030520516764 2.136762732649783 1.062992125984254 29.01792778668387 0.3530655869813785 1.062992125984253 29.00270410638306 0.3478174866438403 1.062992125984253 29.03162811879157 0.3615274957018001 1.062992125984253 29.04313678181573 0.3727904293538459 1.062992125984253 29.05189236747371 0.386304966668887 1.062992125984253 29.05746776635262 0.4014118500799385 1.062992125984253 0.5491086559751147 0.346039204183232 1.968503937007876 28.98669970978262 0.3460392041831966 1.110223024625157e-015 0.5491086559751147 0.346039204183232 1.110223024625157e-015 28.98669970978262 0.3460392041831966 1.968503937007876 29.00270410638306 0.3478174866438403 1.110223024625157e-015 43.1999825998845 0.3478174866438403 0.157480314960631 50.14425631911605 0.3478174866438403 1.110223024625157e-015 29.00270410638306 0.3478174866438403 1.062992125984253 43.1999825998845 0.3478174866438403 1.062992125984253 50.14425631911605 0.3478174866438403 0.157480314960631 29.04313678181573 0.3727904293538459 1.062992125984253 29.04313678181573 0.3727904293538459 1.968503937007876 43.4030520516764 2.136762732649783 1.062992125984254 43.4030520516764 0.5508869384357514 0.157480314960631 43.4030520516764 0.5508869384357514 1.062992125984253 43.4030520516764 2.136762732649783 0.1574803149606311 43.4030520516764 0.5508869384357514 1.062992125984253 43.40131476436558 0.5243810561371171 0.157480314960631 43.40131476436558 0.5243810561371171 1.062992125984253 43.4030520516764 0.5508869384357514 0.157480314960631 43.39613262790066 0.4983286968334623 0.157480314960631 43.39613262790066 0.4983286968334623 1.062992125984253 43.38759431007329 0.4731756236155132 0.157480314960631 43.38759431007329 0.4731756236155132 1.062992125984253 43.37584590386889 0.4493522125397943 0.157480314960631 43.37584590386889 0.4493522125397943 1.062992125984253 43.36108842777473 0.4272660887748755 0.157480314960631 43.36108842777473 0.4272660887748755 1.062992125984253 43.34357438629839 0.4072951520218343 0.157480314960631 43.34357438629839 0.4072951520218343 1.062992125984253 43.32360344954538 0.3897811105455223 1.062992125984253 43.32360344954538 0.3897811105455223 0.157480314960631 43.30151732578045 0.3750236344513948 1.062992125984253 43.30151732578045 0.3750236344513948 0.157480314960631 43.27769391470472 0.3632752282469342 1.062992125984253 43.27769391470472 0.3632752282469342 0.157480314960631 43.25254084148678 0.3547369104195798 1.062992125984253 43.25254084148678 0.3547369104195798 0.157480314960631 43.22648848218315 0.3495547739546886 1.062992125984253 43.22648848218315 0.3495547739546886 0.157480314960631 43.1999825998845 0.3478174866438403 1.062992125984253 43.1999825998845 0.3478174866438403 0.157480314960631 29.05189236747371 0.386304966668887 1.968503937007876 29.05189236747371 0.386304966668887 1.062992125984253 29.05746776635262 0.4014118500799385 1.968503937007876 29.05746776635262 0.4014118500799385 1.062992125984253 29.05959100288907 0.4173741452051467 1.968503937007876 29.05959100288907 0.4173741452051467 1.062992125984253 29.05815850270828 0.4334131895122746 1.968503937007876 29.05815850270828 0.4334131895122746 1.062992125984253 29.05324014512329 0.4487465765392888 1.968503937007876 29.05324014512329 0.4487465765392888 1.062992125984253 29.04507585432682 0.4626263227489491 1.968503937007876 29.04507585432682 0.4626263227489491 1.062992125984253 29.03406389556177 0.4743753551861666 1.968503937007876 29.03406389556177 0.4743753551861666 1.062992125984253 29.0207414471994 0.4834205400204281 1.062992125984253 29.0207414471994 0.4834205400204281 1.968503937007876 29.0207414471994 0.4834205400204281 1.968503937007876 25.50480608586854 2.339832184441669 1.062992125984253 29.0207414471994 0.4834205400204281 1.062992125984253 25.50480608586854 2.339832184441669 1.968503937007876 50.14425631911605 2.339832184441669 0.157480314960631 25.50480608586854 2.339832184441669 1.110223024625157e-015 50.14425631911605 2.339832184441669 1.110223024625157e-015 43.19998259988454 2.339832184441669 0.1574803149606311 25.50480608586854 2.339832184441669 1.062992125984253 43.19998259988454 2.339832184441669 1.062992125984254 43.22648848218314 2.338094897130838 1.062992125984254 43.19998259988454 2.339832184441669 0.1574803149606311 43.22648848218314 2.338094897130838 0.1574803149606311 43.19998259988454 2.339832184441669 1.062992125984254 43.25254084148678 2.332912760665932 1.062992125984254 43.25254084148678 2.332912760665932 0.1574803149606311 43.27769391470476 2.324374442838592 1.062992125984254 43.27769391470476 2.324374442838592 0.1574803149606311 43.30151732578047 2.312626036634134 1.062992125984254 43.30151732578047 2.312626036634134 0.1574803149606311 43.32360344954538 2.297868560539985 1.062992125984254 43.32360344954538 2.297868560539985 0.1574803149606311 43.34357438629841 2.280354519063661 1.062992125984254 43.34357438629841 2.280354519063661 0.1574803149606311 43.36108842777473 2.260383582310626 0.1574803149606311 43.36108842777473 2.260383582310626 1.062992125984254 43.37584590386888 2.238297458545732 0.1574803149606311 43.37584590386888 2.238297458545732 1.062992125984254 43.38759431007334 2.214474047469995 0.1574803149606311 43.38759431007334 2.214474047469995 1.062992125984254 43.39613262790067 2.189320974252053 0.1574803149606311 43.39613262790067 2.189320974252053 1.062992125984254 43.40131476436559 2.163268614948387 0.1574803149606311 43.40131476436559 2.163268614948387 1.062992125984254 43.4030520516764 2.136762732649783 0.1574803149606311 43.4030520516764 2.136762732649783 1.062992125984254 0.5226027736765072 0.3477764914940557 1.968503937007876 0.5491086559751147 0.346039204183232 1.110223024625157e-015 0.5226027736765072 0.3477764914940557 1.110223024625157e-015 0.5491086559751147 0.346039204183232 1.968503937007876 50.14425631911605 2.339832184441669 0.157480314960631 43.22648848218314 2.338094897130838 0.1574803149606311 43.19998259988454 2.339832184441669 0.1574803149606311 43.25254084148678 2.332912760665932 0.1574803149606311 43.27769391470476 2.324374442838592 0.1574803149606311 43.30151732578047 2.312626036634134 0.1574803149606311 43.32360344954538 2.297868560539985 0.1574803149606311 43.34357438629841 2.280354519063661 0.1574803149606311 43.36108842777473 2.260383582310626 0.1574803149606311 43.37584590386888 2.238297458545732 0.1574803149606311 43.38759431007334 2.214474047469995 0.1574803149606311 43.39613262790067 2.189320974252053 0.1574803149606311 43.40131476436559 2.163268614948387 0.1574803149606311 43.4030520516764 2.136762732649783 0.1574803149606311 43.4030520516764 0.5508869384357514 0.157480314960631 43.22648848218315 0.3495547739546886 0.157480314960631 50.14425631911605 0.3478174866438403 0.157480314960631 43.1999825998845 0.3478174866438403 0.157480314960631 43.25254084148678 0.3547369104195798 0.157480314960631 43.27769391470472 0.3632752282469342 0.157480314960631 43.30151732578045 0.3750236344513948 0.157480314960631 43.32360344954538 0.3897811105455223 0.157480314960631 43.34357438629839 0.4072951520218343 0.157480314960631 43.36108842777473 0.4272660887748755 0.157480314960631 43.37584590386889 0.4493522125397943 0.157480314960631 43.38759431007329 0.4731756236155132 0.157480314960631 43.39613262790066 0.4983286968334623 0.157480314960631 43.40131476436558 0.5243810561371171 0.157480314960631 50.17076220141468 2.338094897130827 0.157480314960631 50.17076220141466 0.3495547739546495 0.157480314960631 50.19681456071831 0.35473691041958 0.157480314960631 50.19681456071832 2.332912760665919 0.157480314960631 50.22196763393623 0.3632752282469015 0.157480314960631 50.22196763393626 2.324374442838587 0.157480314960631 50.24579104501201 0.3750236344513794 0.157480314960631 50.24579104501199 2.312626036634129 0.157480314960631 50.26787716877689 2.297868560539985 0.157480314960631 50.26787716877686 0.3897811105455421 0.157480314960631 50.28784810552991 0.407295152021843 0.157480314960631 50.28784810552993 2.280354519063654 0.157480314960631 50.30536214700624 0.4272660887748815 0.157480314960631 50.30536214700626 2.260383582310614 0.157480314960631 50.32011962310041 0.4493522125397739 0.157480314960631 50.32011962310039 2.238297458545719 0.157480314960631 50.33186802930484 2.214474047469999 0.157480314960631 50.33186802930485 0.4731756236154915 0.157480314960631 50.34040634713219 2.189320974252057 0.157480314960631 50.3404063471322 0.498328696833425 0.157480314960631 50.34558848359709 2.163268614948385 0.157480314960631 50.34558848359711 0.5243810561371139 0.157480314960631 50.3473257709079 2.136762732649773 0.157480314960631 50.3473257709079 0.5508869384357039 0.157480314960631 50.14425631911605 0.3478174866438403 0.157480314960631 50.17076220141466 0.3495547739546495 1.110223024625157e-015 50.14425631911605 0.3478174866438403 1.110223024625157e-015 50.17076220141466 0.3495547739546495 0.157480314960631 25.50480608586854 2.339832184441669 1.062992125984253 0.5491086559751146 2.339832184441677 1.110223024625157e-015 25.50480608586854 2.339832184441669 1.110223024625157e-015 0.5491086559751146 2.339832184441677 1.968503937007876 25.50480608586854 2.339832184441669 1.968503937007876 50.17076220141468 2.338094897130827 0.157480314960631 50.14425631911605 2.339832184441669 1.110223024625157e-015 50.17076220141468 2.338094897130827 1.110223024625157e-015 50.14425631911605 2.339832184441669 0.157480314960631 0.4965504143728469 0.3529586279589738 1.968503937007876 0.4965504143728469 0.3529586279589738 1.110223024625157e-015 50.19681456071832 2.332912760665919 0.157480314960631 50.19681456071832 2.332912760665919 1.110223024625157e-015 50.22196763393626 2.324374442838587 0.157480314960631 50.22196763393626 2.324374442838587 1.110223024625157e-015 50.24579104501199 2.312626036634129 0.157480314960631 50.24579104501199 2.312626036634129 1.110223024625157e-015 50.26787716877689 2.297868560539985 0.157480314960631 50.26787716877689 2.297868560539985 1.110223024625157e-015 50.28784810552993 2.280354519063654 0.157480314960631 50.28784810552993 2.280354519063654 1.110223024625157e-015 50.30536214700626 2.260383582310614 1.110223024625157e-015 50.30536214700626 2.260383582310614 0.157480314960631 50.32011962310039 2.238297458545719 1.110223024625157e-015 50.32011962310039 2.238297458545719 0.157480314960631 50.33186802930484 2.214474047469999 1.110223024625157e-015 50.33186802930484 2.214474047469999 0.157480314960631 50.34040634713219 2.189320974252057 1.110223024625157e-015 50.34040634713219 2.189320974252057 0.157480314960631 50.34558848359709 2.163268614948385 1.110223024625157e-015 50.34558848359709 2.163268614948385 0.157480314960631 50.3473257709079 2.136762732649773 1.110223024625157e-015 50.3473257709079 2.136762732649773 0.157480314960631 50.3473257709079 2.136762732649773 0.157480314960631 50.3473257709079 0.5508869384357039 1.110223024625157e-015 50.3473257709079 0.5508869384357039 0.157480314960631 50.3473257709079 2.136762732649773 1.110223024625157e-015 50.3473257709079 0.5508869384357039 0.157480314960631 50.34558848359711 0.5243810561371139 1.110223024625157e-015 50.34558848359711 0.5243810561371139 0.157480314960631 50.3473257709079 0.5508869384357039 1.110223024625157e-015 50.3404063471322 0.498328696833425 1.110223024625157e-015 50.3404063471322 0.498328696833425 0.157480314960631 50.33186802930485 0.4731756236154915 1.110223024625157e-015 50.33186802930485 0.4731756236154915 0.157480314960631 50.32011962310041 0.4493522125397739 1.110223024625157e-015 50.32011962310041 0.4493522125397739 0.157480314960631 50.30536214700624 0.4272660887748815 1.110223024625157e-015 50.30536214700624 0.4272660887748815 0.157480314960631 50.28784810552991 0.407295152021843 1.110223024625157e-015 50.28784810552991 0.407295152021843 0.157480314960631 50.26787716877686 0.3897811105455421 0.157480314960631 50.26787716877686 0.3897811105455421 1.110223024625157e-015 50.24579104501201 0.3750236344513794 0.157480314960631 50.24579104501201 0.3750236344513794 1.110223024625157e-015 50.22196763393623 0.3632752282469015 0.157480314960631 50.22196763393623 0.3632752282469015 1.110223024625157e-015 50.19681456071831 0.35473691041958 0.157480314960631 50.19681456071831 0.35473691041958 1.110223024625157e-015 0.5491086559751146 2.339832184441677 1.968503937007876 0.5226027736765068 2.338094897130853 1.110223024625157e-015 0.5491086559751146 2.339832184441677 1.110223024625157e-015 0.5226027736765068 2.338094897130853 1.968503937007876 0.4713973411549005 0.3614969457863064 1.968503937007876 0.4713973411549005 0.3614969457863064 1.110223024625157e-015 0.4965504143728471 2.332912760665936 1.110223024625157e-015 0.4965504143728471 2.332912760665936 1.968503937007876 0.4475739300791731 0.3732453519907652 1.968503937007876 0.4475739300791731 0.3732453519907652 1.110223024625157e-015 0.4713973411548998 2.324374442838602 1.110223024625157e-015 0.4713973411548998 2.324374442838602 1.968503937007876 0.4254878063142707 0.3880028280849154 1.968503937007876 0.4254878063142707 0.3880028280849154 1.110223024625157e-015 0.4475739300791732 2.312626036634144 1.110223024625157e-015 0.4475739300791732 2.312626036634144 1.968503937007876 0.4055168695612388 0.4055168695612393 1.968503937007876 0.4055168695612388 0.4055168695612393 1.110223024625157e-015 0.4254878063142705 2.297868560539994 1.110223024625157e-015 0.4254878063142705 2.297868560539994 1.968503937007876 0.3880028280849136 0.4254878063142707 1.110223024625157e-015 0.3880028280849136 0.4254878063142707 1.968503937007876 0.4055168695612396 2.280354519063669 1.110223024625157e-015 0.4055168695612396 2.280354519063669 1.968503937007876 0.3732453519907644 0.4475739300791728 1.110223024625157e-015 0.3732453519907644 0.4475739300791728 1.968503937007876 0.3880028280849145 2.260383582310638 1.968503937007876 0.3880028280849145 2.260383582310638 1.110223024625157e-015 0.361496945786306 0.4713973411548998 1.110223024625157e-015 0.361496945786306 0.4713973411548998 1.968503937007876 0.3732453519907648 2.238297458545735 1.968503937007876 0.3732453519907648 2.238297458545735 1.110223024625157e-015 0.352958627958972 0.4965504143728474 1.110223024625157e-015 0.352958627958972 0.4965504143728474 1.968503937007876 0.3614969457863068 2.214474047470008 1.968503937007876 0.3614969457863068 2.214474047470008 1.110223024625157e-015 0.3477764914940549 0.5226027736765067 1.110223024625157e-015 0.3477764914940549 0.5226027736765067 1.968503937007876 0.3529586279589722 2.189320974252061 1.968503937007876 0.3529586279589722 2.189320974252061 1.110223024625157e-015 0.3460392041832313 0.5491086559751139 1.110223024625157e-015 0.3460392041832313 0.5491086559751139 1.968503937007876 0.3477764914940558 2.163268614948401 1.968503937007876 0.3477764914940558 2.163268614948401 1.110223024625157e-015 0.3460392041832319 2.136762732649793 1.110223024625157e-015 0.3460392041832313 0.5491086559751139 1.968503937007876 0.3460392041832313 0.5491086559751139 1.110223024625157e-015 0.3460392041832319 2.136762732649793 1.968503937007876 0.3460392041832319 2.136762732649793 1.968503937007876 0.3460392041832319 2.136762732649793 1.110223024625157e-015 + + + + + + + + + + -0.2195141426946883 0.9756093178916528 -2.251662460960872e-031 -0.4283200860438445 0.9036270823140448 -2.039446246926806e-031 -0.1832544872618059 0.983065507938516 -2.276641252136103e-031 -0.4283200860438445 0.9036270823140448 -2.039446246926806e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 -0.1104325181011955 0.9938836244479679 -2.317022766077274e-031 -0.6162319912743373 0.7875646849180484 -1.727743062721139e-031 -0.6162319912743373 0.7875646849180484 -1.727743062721139e-031 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 -9.643711856883541e-019 3.816831467890428e-017 -1 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 1.247349874666141e-015 1 -2.354039508393784e-031 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0.7740832592965722 0.6330838077828211 -1.331758214899901e-031 -0.7740832592965722 0.6330838077828211 -1.331758214899901e-031 -1 -5.063450264559819e-035 9.643711856883543e-019 -1 -5.063450264559819e-035 9.643711856883543e-019 -1 -5.063450264559819e-035 9.643711856883543e-019 -1 -5.063450264559819e-035 9.643711856883543e-019 -0.9978589232386242 0.06540312922982872 3.458633610382481e-018 -0.9914448613738267 0.1305261922199271 5.938085634997029e-018 -0.9914448613738267 0.1305261922199271 5.938085634997029e-018 -0.9978589232386242 0.06540312922982872 3.458633610382481e-018 -0.9659258262888851 0.2588190451032043 1.081019779277784e-017 -0.9659258262888851 0.2588190451032043 1.081019779277784e-017 -0.9238795325113519 0.3826834323649326 1.549734446910911e-017 -0.9238795325113519 0.3826834323649326 1.549734446910911e-017 -0.8660254037849143 0.4999999999991764 1.9919327284905e-017 -0.8660254037849143 0.4999999999991764 1.9919327284905e-017 -0.7933533402911954 0.6087614290087726 2.400048488823272e-017 -0.7933533402911954 0.6087614290087726 2.400048488823272e-017 -0.7071067811865249 0.7071067811865701 2.767098754089725e-017 -0.7071067811865249 0.7071067811865701 2.767098754089725e-017 -0.60876142900828 0.7933533402915732 3.086803192490265e-017 -0.60876142900828 0.7933533402915732 3.086803192490265e-017 -0.4999999999994493 0.8660254037847566 3.353691572442538e-017 -0.4999999999994493 0.8660254037847566 3.353691572442538e-017 -0.3826834323655326 0.9238795325111033 3.563197359769641e-017 -0.3826834323655326 0.9238795325111033 3.563197359769641e-017 -0.2588190451025693 0.9659258262890552 3.711735852368559e-017 -0.2588190451025693 0.9659258262890552 3.711735852368559e-017 -0.1305261922200869 0.9914448613738056 3.796765515445271e-017 -0.1305261922200869 0.9914448613738056 3.796765515445271e-017 -0.06540312923095472 0.9978589232385504 3.814966628060576e-017 -0.06540312923095472 0.9978589232385504 3.814966628060576e-017 -0.8941736899130333 0.4477202388404067 -8.708083845489539e-032 -0.8941736899130333 0.4477202388404067 -8.708083845489539e-032 -0.9706451080888319 0.2405162658599619 -3.673793332284476e-032 -0.9706451080888319 0.2405162658599619 -3.673793332284476e-032 -0.9997671337217909 0.02157958131462663 1.539709831518109e-032 -0.9997671337217909 0.02157958131462663 1.539709831518109e-032 -0.9801191546728204 -0.1984097846464127 6.67810384924031e-032 -0.9801191546728204 -0.1984097846464127 6.67810384924031e-032 -0.9126596261640011 -0.4087204506385578 1.149073085081814e-031 -0.9126596261640011 -0.4087204506385578 1.149073085081814e-031 -0.8006793160253677 -0.5990931754653439 1.574282432564735e-031 -0.8006793160253677 -0.5990931754653439 1.574282432564735e-031 -0.6496407765509797 -0.7602413178999415 1.9226961353246e-031 -0.6496407765509797 -0.7602413178999415 1.9226961353246e-031 -0.5617119664874528 -0.8273328633052111 2.062622892710896e-031 -0.5617119664874528 -0.8273328633052111 2.062622892710896e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 -0.4669118737456301 -0.8843038517135073 2.177318097629222e-031 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.1305261922200457 -0.9914448613738112 -3.771590375694363e-017 -0.06540312923042768 -0.9978589232385848 -3.802352049403922e-017 -0.1305261922200457 -0.9914448613738112 -3.771590375694363e-017 -0.06540312923042768 -0.9978589232385848 -3.802352049403922e-017 -0.2588190451023318 -0.9659258262891188 -3.661816326487966e-017 -0.2588190451023318 -0.9659258262891188 -3.661816326487966e-017 -0.3826834323651677 -0.9238795325112544 -3.489387584687525e-017 -0.3826834323651677 -0.9238795325112544 -3.489387584687525e-017 -0.5000000000000009 -0.8660254037844382 -3.25725445387254e-017 -0.5000000000000009 -0.8660254037844382 -3.25725445387254e-017 -0.6087614290086468 -0.7933533402912919 -2.969388796270346e-017 -0.6087614290086468 -0.7933533402912919 -2.969388796270346e-017 -0.707106781186616 -0.707106781186479 -2.630716073093143e-017 -0.707106781186616 -0.707106781186479 -2.630716073093143e-017 -0.7933533402912433 -0.6087614290087099 -2.247031068533741e-017 -0.7933533402912433 -0.6087614290087099 -2.247031068533741e-017 -0.8660254037844346 -0.5000000000000071 -1.824898739396858e-017 -0.8660254037844346 -0.5000000000000071 -1.824898739396858e-017 -0.9238795325113181 -0.3826834323650143 -1.371541886870991e-017 -0.9238795325113181 -0.3826834323650143 -1.371541886870991e-017 -0.9659258262890479 -0.2588190451025965 -8.947175723984055e-018 -0.9659258262890479 -0.2588190451025965 -8.947175723984055e-018 -0.991444861373845 -0.130526192219789 -4.025843921976333e-018 -0.991444861373845 -0.130526192219789 -4.025843921976333e-018 -0.9978589232386543 -0.06540312922937021 -1.534020824458279e-018 -0.9978589232386543 -0.06540312922937021 -1.534020824458279e-018 0.1305261922200759 0.9914448613738072 -2.360634470126157e-031 0.0654031292301361 0.997858923238604 -2.362395058420794e-031 0.1305261922200759 0.9914448613738072 -2.360634470126157e-031 0.0654031292301361 0.997858923238604 -2.362395058420794e-031 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -1.671284122841572e-018 2.115224975658733e-017 -1 -0.06540312922959453 0.9978589232386395 -0 -0.1305261922200789 0.9914448613738068 0 -0.06540312922959453 0.9978589232386395 -0 -0.1305261922200789 0.9914448613738068 0 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -2.847216503390403e-016 -1 2.354039508393783e-031 -0.1305261922203011 -0.9914448613737775 0 -0.06540312923079149 -0.9978589232385611 -0 -0.1305261922203011 -0.9914448613737775 0 -0.06540312923079149 -0.9978589232385611 -0 0.2588190451025202 0.9659258262890684 -2.326838321583154e-031 0.2588190451025202 0.9659258262890684 -2.326838321583154e-031 -0.2588190451024253 -0.9659258262890939 0 -0.2588190451024253 -0.9659258262890939 0 -0.3826834323650169 -0.9238795325113171 0 -0.3826834323650169 -0.9238795325113171 0 -0.4999999999999031 -0.8660254037844946 0 -0.4999999999999031 -0.8660254037844946 0 -0.6087614290086439 -0.7933533402912941 0 -0.6087614290086439 -0.7933533402912941 0 -0.7071067811866093 -0.7071067811864858 0 -0.7071067811866093 -0.7071067811864858 0 -0.7933533402914218 -0.6087614290084773 0 -0.7933533402914218 -0.6087614290084773 0 -0.8660254037845377 -0.4999999999998284 0 -0.8660254037845377 -0.4999999999998284 0 -0.9238795325112122 -0.3826834323652698 0 -0.9238795325112122 -0.3826834323652698 0 -0.9659258262890901 -0.2588190451024401 0 -0.9659258262890901 -0.2588190451024401 0 -0.9914448613738833 -0.1305261922194982 0 -0.9914448613738833 -0.1305261922194982 0 -0.997858923238638 -0.06540312922961909 -0 -0.997858923238638 -0.06540312922961909 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.9978589232386694 0.06540312922913877 -0 -0.9914448613739054 0.1305261922193298 0 -0.9914448613739054 0.1305261922193298 0 -0.9978589232386694 0.06540312922913877 -0 -0.9659258262890584 0.2588190451025578 0 -0.9659258262890584 0.2588190451025578 0 -0.923879532511276 0.3826834323651157 0 -0.923879532511276 0.3826834323651157 0 -0.8660254037843593 0.5000000000001372 0 -0.8660254037843593 0.5000000000001372 0 -0.793353340290994 0.608761429009035 0 -0.793353340290994 0.608761429009035 0 -0.7071067811861586 0.7071067811869366 0 -0.7071067811861586 0.7071067811869366 0 -0.6087614290088786 0.793353340291114 0 -0.6087614290088786 0.793353340291114 0 -0.5000000000005405 0.8660254037841265 0 -0.5000000000005405 0.8660254037841265 0 -0.3826834323649039 0.9238795325113639 0 -0.3826834323649039 0.9238795325113639 0 -0.2588190451027368 0.9659258262890103 0 -0.2588190451027368 0.9659258262890103 0 0.0654031292301436 -0.9978589232386035 2.33560359979311e-031 0.1305261922200579 -0.9914448613738096 2.307166278009732e-031 0.0654031292301436 -0.9978589232386035 2.33560359979311e-031 0.1305261922200579 -0.9914448613738096 2.307166278009732e-031 0.382683432365069 0.9238795325112953 -2.253229324236416e-031 0.382683432365069 0.9238795325112953 -2.253229324236416e-031 0.2588190451025239 -0.9659258262890675 2.220816792941599e-031 0.2588190451025239 -0.9659258262890675 2.220816792941599e-031 0.5000000000000147 0.8660254037844301 -2.141066948438753e-031 0.5000000000000147 0.8660254037844301 -2.141066948438753e-031 0.3826834323650852 -0.9238795325112886 2.096468516819501e-031 0.3826834323650852 -0.9238795325112886 2.096468516819501e-031 0.6087614290087049 0.7933533402912473 -1.992270323537472e-031 0.6087614290087049 0.7933533402912473 -1.992270323537472e-031 0.4999999999999988 -0.8660254037844394 1.936249083123728e-031 0.4999999999999988 -0.8660254037844394 1.936249083123728e-031 0.7071067811865293 0.7071067811865658 -1.809385401038751e-031 0.7071067811865293 0.7071067811865658 -1.809385401038751e-031 0.6087614290087232 -0.7933533402912332 1.742899890786038e-031 0.6087614290087232 -0.7933533402912332 1.742899890786038e-031 0.7933533402912396 0.6087614290087149 -1.595541392671784e-031 0.7933533402912396 0.6087614290087149 -1.595541392671784e-031 0.7071067811865497 -0.7071067811865455 1.519729198093864e-031 0.7071067811865497 -0.7071067811865455 1.519729198093864e-031 0.8660254037844386 0.4999999999999999 -1.35439722870862e-031 0.8660254037844386 0.4999999999999999 -1.35439722870862e-031 0.7933533402912354 -0.6087614290087204 1.270555517473774e-031 0.7933533402912354 -0.6087614290087204 1.270555517473774e-031 0.9238795325112905 0.3826834323650806 -1.090078952652364e-031 0.9238795325112905 0.3826834323650806 -1.090078952652364e-031 0.8660254037844404 -0.4999999999999971 9.996422796851562e-032 0.8660254037844404 -0.4999999999999971 9.996422796851562e-032 0.9659258262890674 0.258819045102524 -8.071091234892916e-032 0.9659258262890674 0.258819045102524 -8.071091234892916e-032 0.9238795325112879 -0.3826834323650874 7.116248853379323e-032 0.9238795325112879 -0.3826834323650874 7.116248853379323e-032 0.9914448613738091 0.1305261922200617 -5.103294334503805e-032 0.9914448613738091 0.1305261922200617 -5.103294334503805e-032 0.965925826289068 -0.2588190451025222 4.114313919028921e-032 0.965925826289068 -0.2588190451025222 4.114313919028921e-032 0.9978589232386044 0.06540312923013249 -3.583408847236163e-032 0.9978589232386044 0.06540312923013249 -3.583408847236163e-032 0.9914448613738105 -0.1305261922200517 1.041981932820484e-032 0.9914448613738105 -0.1305261922200517 1.041981932820484e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 1 -3.846068690370998e-016 -2.04817865315044e-032 0.9978589232386037 -0.0654031292301418 -5.041778436296195e-033 0.9978589232386037 -0.0654031292301418 -5.041778436296195e-033 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 2 2 4 0 3 7 1 7 3 8 9 10 11 10 9 12 12 9 13 13 9 14 14 9 15 15 9 16 16 9 17 17 9 18 18 9 19 18 19 20 18 20 21 21 20 22 21 22 23 23 22 24 24 22 25 24 25 26 26 25 27 26 27 28 26 28 29 29 28 30 30 28 31 30 31 32 30 32 33 33 32 34 33 34 35 35 34 36 36 34 37 36 37 38 38 37 39 38 39 40 40 39 41 42 17 43 17 42 44 17 44 45 17 45 46 17 46 47 17 47 16 48 49 50 49 48 51 52 53 54 53 52 55 53 55 56 57 54 53 8 58 7 58 8 59 60 61 62 61 60 63 64 65 66 65 64 67 66 68 69 68 66 65 69 70 71 70 69 68 71 72 73 72 71 70 73 74 75 74 73 72 75 76 77 76 75 74 78 76 79 76 78 77 80 79 81 79 80 78 82 81 83 81 82 80 84 83 85 83 84 82 86 85 87 85 86 84 88 87 89 87 88 86 90 58 59 58 90 91 92 91 90 91 92 93 94 93 92 93 94 95 96 95 94 95 96 97 98 97 96 97 98 99 100 99 98 99 100 101 102 101 100 101 102 103 102 104 103 104 102 105 106 107 108 107 106 109 110 111 112 111 110 113 111 113 114 114 113 115 116 117 118 117 116 119 120 118 121 118 120 116 122 121 123 121 122 120 124 123 125 123 124 122 126 125 127 125 126 124 128 127 129 127 128 126 128 130 131 130 128 129 131 132 133 132 131 130 133 134 135 134 133 132 135 136 137 136 135 134 137 138 139 138 137 136 139 140 141 140 139 138 142 143 144 143 142 145 146 147 148 147 146 149 149 146 150 150 146 151 151 146 152 152 146 153 153 146 154 154 146 155 155 146 156 156 146 157 157 146 158 158 146 159 159 146 160 161 162 163 162 161 164 162 164 165 162 165 166 162 166 167 162 167 168 162 168 169 162 169 170 162 170 171 162 171 172 162 172 173 162 173 160 162 160 146 162 146 174 162 174 175 175 174 176 176 174 177 176 177 178 178 177 179 178 179 180 180 179 181 180 181 182 180 182 183 183 182 184 184 182 185 184 185 186 186 185 187 186 187 188 188 187 189 188 189 190 188 190 191 191 190 192 191 192 193 193 192 194 193 194 195 195 194 196 195 196 197 198 199 200 199 198 201 202 203 204 203 202 205 205 202 206 207 208 209 208 207 210 211 144 212 144 211 142 213 209 214 209 213 207 215 214 216 214 215 213 217 216 218 216 217 215 219 218 220 218 219 217 221 220 222 220 221 219 221 223 224 223 221 222 224 225 226 225 224 223 226 227 228 227 226 225 228 229 230 229 228 227 230 231 232 231 230 229 232 233 234 233 232 231 235 236 237 236 235 238 239 240 241 240 239 242 241 243 244 243 241 240 244 245 246 245 244 243 246 247 248 247 246 245 248 249 250 249 248 247 250 251 252 251 250 249 253 251 254 251 253 252 255 254 256 254 255 253 257 256 258 256 257 255 259 258 260 258 259 257 201 260 199 260 201 259 261 262 263 262 261 264 265 212 266 212 265 211 264 267 262 267 264 268 269 266 270 266 269 265 268 271 267 271 268 272 273 270 274 270 273 269 272 275 271 275 272 276 277 274 278 274 277 273 276 279 275 279 276 280 281 277 278 277 281 282 280 283 279 283 280 284 285 282 281 282 285 286 283 287 288 287 283 284 289 286 285 286 289 290 288 291 292 291 288 287 293 290 289 290 293 294 292 295 296 295 292 291 297 294 293 294 297 298 296 299 300 299 296 295 301 298 297 298 301 302 300 303 304 303 300 299 305 306 307 306 305 308 304 309 310 309 304 303

+
+
+
+ + + + 43.38400397036494 7.421059675912715 0.07874015748031579 43.37882183390003 3.127233759244795 0.07874015748031607 43.37882183390003 7.395007316609055 0.07874015748031579 43.38055912121086 3.10072787694619 0.07874015748031607 43.38574125767577 3.074675517642528 0.07874015748031607 43.39254228819227 7.446212749130662 0.07874015748031579 43.39427957550313 3.04952244442458 0.07874015748031607 43.40429069439674 7.470036160206389 0.07874015748031579 43.4060279817076 3.025699033348864 0.07874015748031607 43.4132129304469 7.39162008924713 0.07874015748031579 43.41904817049088 7.492122283971291 0.07874015748031579 43.41729449628541 7.412139506376729 0.07874015748031579 43.42438369328506 7.43302360729623 0.07874015748031579 43.43656221196721 7.512093220724323 0.07874015748031579 43.4341381633926 7.452803715947015 0.07874015748031579 43.44639100492 7.47114138918596 0.07874015748031579 43.45653314872024 7.529607262200647 0.07874015748031579 43.46093256835167 7.487722864339863 0.07874015748031579 43.47861927248514 7.544364738294798 0.07874015748031579 43.47751404350557 7.502264427771523 0.07874015748031579 43.49585171674453 7.514517269298941 0.07874015748031579 43.50244268356087 7.556113144499255 0.07874015748031579 43.51563182539531 7.524271739406478 0.07874015748031579 43.52759575677882 7.56465146232659 0.07874015748031579 43.53651592631481 7.531360936406135 0.07874015748031579 43.55364811608248 7.569833598791506 0.07874015748031579 43.55703534344437 7.535442502244626 0.07874015748031579 50.144256319116 7.569833598791506 0.07874015748031607 50.14313047118674 7.535442502244621 0.07874015748031607 50.16626363075097 7.53392627486092 0.07874015748031607 50.1707622014146 7.568096311480678 0.07874015748031607 50.18789439118228 7.529623649095314 0.07874015748031607 50.19681456071828 7.562914175015767 0.07874015748031607 50.20877849210176 7.522534452095655 0.07874015748031607 50.22196763393622 7.554375857188427 0.07874015748031607 50.22855860075256 7.512779981988107 0.07874015748031607 50.24579104501194 7.542627450983966 0.07874015748031607 50.24689627399151 7.500527140460703 0.07874015748031607 50.26787716877683 7.527869974889834 0.07874015748031607 50.26347774914542 7.485985577029031 0.07874015748031607 50.27801931257708 7.469404101875151 0.07874015748031607 50.28784810552988 7.510355933413502 0.07874015748031607 50.29027215410449 7.451066428636207 0.07874015748031607 50.3053621470062 7.490384996660477 0.07874015748031607 50.30002662421204 7.431286319985366 0.07874015748031607 50.30711582121172 7.410402219065904 0.07874015748031607 50.32011962310036 7.468298872895575 0.07874015748031607 50.31141844697731 7.388771458634578 0.07874015748031607 50.31293467436102 7.365638299070358 0.07874015748031607 50.31293467436102 3.128359607174147 0.07874015748031607 50.32011962310035 3.025699033348873 0.07874015748031607 50.33186802930481 3.049522444424608 0.07874015748031607 50.3318680293048 7.44447546181984 0.07874015748031607 50.34040634713218 7.419322388601879 0.07874015748031607 50.34040634713214 3.074675517642548 0.07874015748031607 50.34558848359704 3.100727876946217 0.07874015748031607 50.34558848359706 7.393270029298235 0.07874015748031607 50.3473257709079 3.127233759244805 0.07874015748031607 50.3473257709079 7.366764146999632 0.07874015748031607 43.4132129304469 3.128359607174164 0.07874015748031607 43.42078545780171 3.003612909583954 0.07874015748031607 43.41472915783061 3.105226447609857 0.07874015748031607 43.41903178359623 3.083595687178518 0.07874015748031607 43.4261209805959 3.062711586259032 0.07874015748031607 43.43829949927805 2.98364197283092 0.07874015748031607 43.43587545070344 3.042931477608274 0.07874015748031607 43.44812829223088 3.024593804369232 0.07874015748031607 43.45827043603106 2.96612793135459 0.07874015748031607 43.46266985566252 3.008012329215369 0.07874015748031607 43.480356559796 2.951370455260453 0.07874015748031607 43.47925133081637 2.993470765783733 0.07874015748031607 43.49758900405537 2.981217924256313 0.07874015748031607 43.5041799708717 2.939622049055988 0.07874015748031607 43.51736911270614 2.971463454148768 0.07874015748031607 43.52933304408965 2.931083731228659 0.07874015748031607 43.53825321362565 2.964374257149114 0.07874015748031607 43.55538540339332 2.925901594763743 0.07874015748031607 43.55988397405696 2.960071631383501 0.07874015748031607 43.58189128569192 2.924164307452924 0.07874015748031607 43.58301713362136 2.958555403999797 0.07874015748031607 50.14425631911599 2.924164307452924 0.07874015748031607 50.14313047118665 2.958555403999804 0.07874015748031607 50.166263630751 2.960071631383512 0.07874015748031607 50.17076220141464 2.925901594763754 0.07874015748031607 50.1878943911823 2.96437425714911 0.07874015748031607 50.19681456071832 2.931083731228657 0.07874015748031607 50.20877849210176 2.971463454148789 0.07874015748031607 50.22196763393622 2.939622049056019 0.07874015748031607 50.22855860075259 2.981217924256331 0.07874015748031607 50.24579104501196 2.951370455260466 0.07874015748031607 50.24689627399157 2.993470765783735 0.07874015748031607 50.26787716877688 2.966127931354595 0.07874015748031607 50.26347774914544 3.008012329215407 0.07874015748031607 50.27801931257705 3.024593804369262 0.07874015748031607 50.28784810552991 2.98364197283095 0.07874015748031607 50.2902721541045 3.042931477608267 0.07874015748031607 50.3053621470062 3.003612909583975 0.07874015748031607 50.30002662421204 3.062711586259064 0.07874015748031607 50.30711582121167 3.083595687178512 0.07874015748031607 50.31141844697729 3.105226447609863 0.07874015748031607 50.144256319116 7.569833598791506 1.090510587941475e-015 43.55364811608248 7.569833598791506 0.07874015748031579 43.55364811608248 7.569833598791506 8.326672684688674e-016 50.144256319116 7.569833598791506 0.07874015748031607 50.1707622014146 7.568096311480678 0.07874015748031607 50.144256319116 7.569833598791506 1.090510587941475e-015 50.1707622014146 7.568096311480678 1.090510587941475e-015 50.144256319116 7.569833598791506 0.07874015748031607 50.19681456071828 7.562914175015767 0.07874015748031607 50.19681456071828 7.562914175015767 1.090510587941475e-015 50.22196763393622 7.554375857188427 0.07874015748031607 50.22196763393622 7.554375857188427 1.090510587941475e-015 50.24579104501194 7.542627450983966 0.07874015748031607 50.24579104501194 7.542627450983966 1.090510587941475e-015 50.26787716877683 7.527869974889834 0.07874015748031607 50.26787716877683 7.527869974889834 1.090510587941475e-015 50.28784810552988 7.510355933413502 0.07874015748031607 50.28784810552988 7.510355933413502 1.090510587941475e-015 50.3053621470062 7.490384996660477 1.090510587941475e-015 50.3053621470062 7.490384996660477 0.07874015748031607 50.32011962310036 7.468298872895575 1.118266163557104e-015 50.32011962310036 7.468298872895575 0.07874015748031607 50.3318680293048 7.44447546181984 1.118266163557104e-015 50.3318680293048 7.44447546181984 0.07874015748031607 50.34040634713218 7.419322388601879 1.118266163557104e-015 50.34040634713218 7.419322388601879 0.07874015748031607 50.34558848359706 7.393270029298235 1.118266163557104e-015 50.34558848359706 7.393270029298235 0.07874015748031607 50.3473257709079 7.366764146999632 1.118266163557104e-015 50.3473257709079 7.366764146999632 0.07874015748031607 50.3473257709079 7.366764146999632 0.07874015748031607 50.3473257709079 3.127233759244805 1.103017739216966e-015 50.3473257709079 3.127233759244805 0.07874015748031607 50.3473257709079 7.366764146999632 1.118266163557104e-015 50.3473257709079 3.127233759244805 0.07874015748031607 50.34558848359704 3.100727876946217 1.105899590885709e-015 50.34558848359704 3.100727876946217 0.07874015748031607 50.3473257709079 3.127233759244805 1.103017739216966e-015 50.34040634713214 3.074675517642548 1.108591182719098e-015 50.34040634713214 3.074675517642548 0.07874015748031607 50.33186802930481 3.049522444424608 1.111046460834616e-015 50.33186802930481 3.049522444424608 0.07874015748031607 50.32011962310035 3.025699033348873 1.113223414742969e-015 50.32011962310035 3.025699033348873 0.07874015748031607 50.3053621470062 3.003612909583975 1.115084796159225e-015 50.3053621470062 3.003612909583975 0.07874015748031607 50.28784810552991 2.98364197283095 1.116598756331273e-015 50.28784810552991 2.98364197283095 0.07874015748031607 50.26787716877688 2.966127931354595 1.11773939098083e-015 50.26787716877688 2.966127931354595 0.07874015748031607 50.24579104501196 2.951370455260466 1.11848718353279e-015 50.24579104501196 2.951370455260466 0.07874015748031607 50.22196763393622 2.939622049056019 1.118829339049262e-015 50.22196763393622 2.939622049056019 0.07874015748031607 50.19681456071832 2.931083731228657 0.07874015748031607 50.19681456071832 2.931083731228657 1.118760003154504e-015 50.17076220141464 2.925901594763754 0.07874015748031607 50.17076220141464 2.925901594763754 1.118280362204888e-015 50.14425631911599 2.924164307452924 0.07874015748031607 50.14425631911599 2.924164307452924 1.117398622990049e-015 43.58189128569192 2.924164307452924 0.07874015748031607 50.14425631911599 2.924164307452924 1.117398622990049e-015 43.58189128569192 2.924164307452924 1.109233975091996e-015 50.14425631911599 2.924164307452924 0.07874015748031607 43.55538540339332 2.925901594763743 1.109463768595622e-015 43.58189128569192 2.924164307452924 0.07874015748031607 43.58189128569192 2.924164307452924 1.109233975091996e-015 43.55538540339332 2.925901594763743 0.07874015748031607 43.52933304408965 2.931083731228659 0.07874015748031607 43.52933304408965 2.931083731228659 1.109462778393509e-015 43.5041799708717 2.939622049055988 0.07874015748031607 43.5041799708717 2.939622049055988 1.109231021428294e-015 43.480356559796 2.951370455260453 0.07874015748031607 43.480356559796 2.951370455260453 1.108772463125903e-015 43.45827043603106 2.96612793135459 0.07874015748031607 43.45827043603106 2.96612793135459 1.108094949546031e-015 43.43829949927805 2.98364197283092 0.07874015748031607 43.43829949927805 2.98364197283092 1.107210073133866e-015 43.42078545780171 3.003612909583954 1.106132974370159e-015 43.42078545780171 3.003612909583954 0.07874015748031607 43.4060279817076 3.025699033348864 1.104882082713383e-015 43.4060279817076 3.025699033348864 0.07874015748031607 43.39427957550313 3.04952244442458 1.1034788012666e-015 43.39427957550313 3.04952244442458 0.07874015748031607 43.38574125767577 3.074675517642528 1.101947140564425e-015 43.38574125767577 3.074675517642528 0.07874015748031607 43.38055912121086 3.10072787694619 1.100313307746131e-015 43.38055912121086 3.10072787694619 0.07874015748031607 43.37882183390003 3.127233759244795 1.098605258144222e-015 43.37882183390003 3.127233759244795 0.07874015748031607 43.37882183390003 7.395007316609055 8.326672684688674e-016 43.37882183390003 3.127233759244795 0.07874015748031607 43.37882183390003 3.127233759244795 1.098605258144222e-015 43.37882183390003 7.395007316609055 0.07874015748031579 43.38400397036494 7.421059675912715 8.326672684688674e-016 43.37882183390003 7.395007316609055 0.07874015748031579 43.37882183390003 7.395007316609055 8.326672684688674e-016 43.38400397036494 7.421059675912715 0.07874015748031579 43.39254228819227 7.446212749130662 8.326672684688674e-016 43.39254228819227 7.446212749130662 0.07874015748031579 43.40429069439674 7.470036160206389 8.326672684688674e-016 43.40429069439674 7.470036160206389 0.07874015748031579 43.41904817049088 7.492122283971291 8.326672684688674e-016 43.41904817049088 7.492122283971291 0.07874015748031579 43.43656221196721 7.512093220724323 8.326672684688674e-016 43.43656221196721 7.512093220724323 0.07874015748031579 43.45653314872024 7.529607262200647 0.07874015748031579 43.45653314872024 7.529607262200647 8.326672684688674e-016 43.47861927248514 7.544364738294798 0.07874015748031579 43.47861927248514 7.544364738294798 8.326672684688674e-016 43.50244268356087 7.556113144499255 0.07874015748031579 43.50244268356087 7.556113144499255 8.326672684688674e-016 43.52759575677882 7.56465146232659 0.07874015748031579 43.52759575677882 7.56465146232659 8.326672684688674e-016 43.55364811608248 7.569833598791506 0.07874015748031579 43.55364811608248 7.569833598791506 8.326672684688674e-016 + + + + + + + + + + 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 1.945976020073421e-017 -3.061037150919461e-017 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.1305261922199813 -0.9914448613738196 2.780848713701879e-017 -0.06540312923029371 -0.9978589232385937 2.927210314289912e-017 -0.1305261922199813 -0.9914448613738196 2.780848713701879e-017 -0.06540312923029371 -0.9978589232385937 2.927210314289912e-017 -0.2588190451024848 -0.965925826289078 2.453079183995709e-017 -0.2588190451024848 -0.965925826289078 2.453079183995709e-017 -0.382683432365306 -0.9238795325111974 2.083336789328604e-017 -0.382683432365306 -0.9238795325111974 2.083336789328604e-017 -0.5000000000000238 -0.8660254037844249 1.677947924587394e-017 -0.5000000000000238 -0.8660254037844249 1.677947924587394e-017 -0.6087614290084881 -0.7933533402914136 1.24384890564192e-017 -0.6087614290084881 -0.7933533402914136 1.24384890564192e-017 -0.7071067811864248 -0.7071067811866704 7.884672870593892e-018 -0.7071067811864248 -0.7071067811866704 7.884672870593892e-018 -0.7933533402911389 -0.6087614290088461 3.195947745911922e-018 -0.7933533402911389 -0.6087614290088461 3.195947745911922e-018 -0.8660254037845401 -0.4999999999998245 -1.547460930799239e-018 -0.8660254037845401 -0.4999999999998245 -1.54746093079924e-018 -0.923879532511154 -0.3826834323654104 -6.264392121914531e-018 -0.923879532511154 -0.3826834323654104 -6.264392121914531e-018 -0.9659258262890302 -0.2588190451026624 -1.087413782703309e-017 -0.9659258262890302 -0.2588190451026624 -1.087413782703309e-017 -0.9914448613738499 -0.1305261922197522 -1.529782401905813e-017 -0.9914448613738499 -0.1305261922197522 -1.529782401905813e-017 -0.9978589232385668 -0.06540312923070414 -1.741608127676964e-017 -0.9978589232385668 -0.06540312923070414 -1.741608127676964e-017 -1 6.99914032825858e-035 -1.945976020073421e-017 -1 6.99914032825858e-035 -1.945976020073421e-017 -1 6.99914032825858e-035 -1.945976020073421e-017 -1 6.99914032825858e-035 -1.945976020073421e-017 -0.997858923238512 0.06540312923154029 -2.142010944402561e-017 -0.9914448613737562 0.1305261922204639 -2.328873449013242e-017 -0.9914448613737562 0.1305261922204639 -2.328873449013242e-017 -0.997858923238512 0.06540312923154029 -2.142010944402561e-017 -0.9659258262891491 0.2588190451022194 -2.671923207551683e-017 -0.9659258262891491 0.2588190451022194 -2.671923207551682e-017 -0.9238795325113062 0.3826834323650429 -2.969255619214416e-017 -0.9238795325113063 0.3826834323650429 -2.969255619214416e-017 -0.8660254037844481 0.4999999999999837 -3.215783243998618e-017 -0.8660254037844481 0.4999999999999837 -3.215783243998619e-017 -0.7933533402914976 0.6087614290083786 -3.40728792589387e-017 -0.7933533402914977 0.6087614290083787 -3.407287925893871e-017 -0.7071067811871351 0.7071067811859598 -3.540492966698771e-017 -0.707106781187135 0.70710678118596 -3.54049296669877e-017 -0.6087614290086183 0.7933533402913137 -3.61311919123416e-017 -0.6087614290086183 0.7933533402913137 -3.61311919123416e-017 -0.4999999999992923 0.8660254037848472 -3.623923944660778e-017 -0.4999999999992923 0.8660254037848472 -3.623923944660778e-017 -0.3826834323655242 0.9238795325111068 -3.5727223546533e-017 -0.3826834323655242 0.9238795325111068 -3.5727223546533e-017 -0.2588190451029578 0.9659258262889511 -3.460390494611714e-017 -0.2588190451029578 0.9659258262889511 -3.460390494611714e-017 -0.1305261922198164 0.9914448613738415 -3.28885039380478e-017 -0.1305261922198164 0.9914448613738415 -3.28885039380478e-017 -0.06540312923028883 0.997858923238594 -3.181756156529731e-017 -0.06540312923028883 0.997858923238594 -3.181756156529731e-017 6.767212850674795e-017 1 -3.061037150919461e-017 6.767212850674795e-017 1 -3.061037150919461e-017 6.767212850674795e-017 1 -3.061037150919461e-017 6.767212850674795e-017 1 -3.061037150919461e-017 0.1305261922199325 0.991444861373826 -2.780848713701993e-017 0.06540312922994411 0.9978589232386167 -2.927210314290662e-017 0.06540312922994411 0.9978589232386167 -2.927210314290662e-017 0.1305261922199325 0.991444861373826 -2.780848713701993e-017 0.2588190451023891 0.9659258262891036 -2.453079183995972e-017 0.2588190451023891 0.9659258262891036 -2.453079183995972e-017 0.3826834323652765 0.9238795325112095 -2.083336789328698e-017 0.3826834323652765 0.9238795325112095 -2.083336789328698e-017 0.4999999999998008 0.8660254037845535 -1.677947924588222e-017 0.4999999999998008 0.8660254037845535 -1.677947924588222e-017 0.6087614290084553 0.7933533402914387 -1.24384890564206e-017 0.6087614290084553 0.7933533402914387 -1.24384890564206e-017 0.7071067811866578 0.7071067811864372 -7.884672870582221e-018 0.7071067811866578 0.7071067811864372 -7.884672870582221e-018 0.7933533402916122 0.6087614290082292 -3.195947745883828e-018 0.7933533402916122 0.6087614290082292 -3.195947745883828e-018 0.8660254037845893 0.499999999999739 1.547460930802815e-018 0.8660254037845894 0.4999999999997391 1.547460930802815e-018 0.9238795325109803 0.3826834323658298 6.26439212189831e-018 0.9238795325109803 0.3826834323658298 6.26439212189831e-018 0.9659258262889898 0.2588190451028135 1.087413782702768e-017 0.9659258262889898 0.2588190451028135 1.087413782702768e-017 0.9914448613738075 0.1305261922200738 1.529782401904747e-017 0.9914448613738075 0.1305261922200738 1.529782401904747e-017 0.9978589232385846 0.06540312923043123 1.741608127677834e-017 0.9978589232385846 0.06540312923043123 1.741608127677834e-017 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 0.9659258262890843 -0.2588190451024608 1.416353255915568e-017 0.9807852804032251 -0.1950903220161558 -0 0.9807852804032251 -0.1950903220161558 -0 0.9659258262890843 -0.2588190451024608 1.416353255915568e-017 0.9238795325112965 -0.3826834323650666 2.96925561921447e-017 0.9238795325112965 -0.3826834323650666 2.96925561921447e-017 0.8660254037844343 -0.5000000000000074 3.215783243998664e-017 0.8660254037844343 -0.5000000000000074 3.215783243998664e-017 0.7933533402912668 -0.6087614290086795 3.407287925894342e-017 0.7933533402912668 -0.6087614290086795 3.407287925894342e-017 0.7071067811865319 -0.707106781186563 3.540492966699442e-017 0.7071067811865319 -0.707106781186563 3.540492966699442e-017 0.6087614290087207 -0.7933533402912351 3.613119191234118e-017 0.6087614290087207 -0.7933533402912351 3.613119191234118e-017 0.4999999999999814 -0.8660254037844495 3.623923944660901e-017 0.4999999999999814 -0.8660254037844495 3.623923944660901e-017 0.382683432365068 -0.9238795325112956 3.572722354652991e-017 0.382683432365068 -0.9238795325112956 3.572722354652991e-017 0.2588190451025379 -0.9659258262890638 1.765831679721354e-017 0.2588190451025379 -0.9659258262890638 1.765831679721354e-017 0.1950903220161044 -0.9807852804032353 0 0.1950903220161044 -0.9807852804032353 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 12 10 13 12 13 14 14 13 15 15 13 16 15 16 17 17 16 18 17 18 19 19 18 20 20 18 21 20 21 22 22 21 23 22 23 24 24 23 25 24 25 26 26 25 27 26 27 28 28 27 29 29 27 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 40 38 41 40 41 42 42 41 43 42 43 44 44 43 45 45 43 46 45 46 47 47 46 48 48 46 49 49 46 50 50 46 51 51 46 52 51 52 53 51 53 54 54 53 55 55 53 56 55 56 57 57 56 58 8 59 60 59 8 9 60 59 61 60 61 62 60 62 63 60 63 64 64 63 65 64 65 66 64 66 67 67 66 68 67 68 69 69 68 70 69 70 71 69 71 72 72 71 73 72 73 74 74 73 75 74 75 76 76 75 77 76 77 78 78 77 79 78 79 80 80 79 81 80 81 82 80 82 83 83 82 84 83 84 85 85 84 86 85 86 87 87 86 88 87 88 89 89 88 90 89 90 91 91 90 92 91 92 93 91 93 94 94 93 95 94 95 96 96 95 97 96 97 98 96 98 50 50 98 99 50 99 49 100 101 102 101 100 103 104 105 106 105 104 107 108 106 109 106 108 104 110 109 111 109 110 108 112 111 113 111 112 110 114 113 115 113 114 112 116 115 117 115 116 114 116 118 119 118 116 117 119 120 121 120 119 118 121 122 123 122 121 120 123 124 125 124 123 122 125 126 127 126 125 124 127 128 129 128 127 126 130 131 132 131 130 133 134 135 136 135 134 137 136 138 139 138 136 135 139 140 141 140 139 138 141 142 143 142 141 140 143 144 145 144 143 142 145 146 147 146 145 144 148 147 146 147 148 149 150 149 148 149 150 151 152 151 150 151 152 153 154 152 155 152 154 153 156 155 157 155 156 154 158 157 159 157 158 156 160 161 162 161 160 163 164 165 166 165 164 167 168 164 169 164 168 167 170 169 171 169 170 168 172 171 173 171 172 170 174 173 175 173 174 172 176 175 177 175 176 174 178 176 177 176 178 179 180 179 178 179 180 181 182 181 180 181 182 183 184 183 182 183 184 185 186 185 184 185 186 187 188 187 186 187 188 189 190 191 192 191 190 193 194 195 196 195 194 197 198 197 194 197 198 199 200 199 198 199 200 201 202 201 200 201 202 203 204 203 202 203 204 205 206 204 207 204 206 205 208 207 209 207 208 206 210 209 211 209 210 208 212 211 213 211 212 210 214 213 215 213 214 212

+
+
+
+ + + + 43.41729449628541 7.412139506376729 -0.1968503937007866 43.4132129304469 3.128359607174164 -0.1968503937007863 43.4132129304469 7.39162008924713 -0.1968503937007866 43.41472915783061 3.105226447609857 -0.1968503937007863 43.41903178359623 3.083595687178518 -0.1968503937007863 43.42438369328506 7.43302360729623 -0.1968503937007866 43.4261209805959 3.062711586259032 -0.1968503937007863 43.4341381633926 7.452803715947015 -0.1968503937007866 43.43587545070344 3.042931477608274 -0.1968503937007863 43.44639100492 7.47114138918596 -0.1968503937007866 43.44812829223088 3.024593804369232 -0.1968503937007863 43.46093256835167 7.487722864339863 -0.1968503937007866 43.46266985566252 3.008012329215369 -0.1968503937007863 43.47751404350557 7.502264427771523 -0.1968503937007866 43.47925133081637 2.993470765783733 -0.1968503937007863 43.49585171674453 7.514517269298941 -0.1968503937007866 43.49758900405537 2.981217924256313 -0.1968503937007863 43.51563182539531 7.524271739406478 -0.1968503937007866 43.51736911270614 2.971463454148768 -0.1968503937007863 43.53651592631481 7.531360936406135 -0.1968503937007866 43.53825321362565 2.964374257149114 -0.1968503937007863 43.55703534344437 7.535442502244626 -0.1968503937007866 43.55988397405696 2.960071631383501 -0.1968503937007863 50.14313047118674 7.535442502244621 -0.1968503937007863 43.58301713362136 2.958555403999797 -0.1968503937007863 50.14313047118665 2.958555403999804 -0.1968503937007863 50.166263630751 2.960071631383512 -0.1968503937007863 50.16626363075097 7.53392627486092 -0.1968503937007863 50.18789439118228 7.529623649095314 -0.1968503937007863 50.1878943911823 2.96437425714911 -0.1968503937007863 50.20877849210176 7.522534452095655 -0.1968503937007863 50.20877849210176 2.971463454148789 -0.1968503937007863 50.22855860075256 7.512779981988107 -0.1968503937007863 50.22855860075259 2.981217924256331 -0.1968503937007863 50.24689627399151 7.500527140460703 -0.1968503937007863 50.24689627399157 2.993470765783735 -0.1968503937007863 50.26347774914542 7.485985577029031 -0.1968503937007863 50.26347774914544 3.008012329215407 -0.1968503937007863 50.27801931257708 7.469404101875151 -0.1968503937007863 50.27801931257705 3.024593804369262 -0.1968503937007863 50.2902721541045 3.042931477608267 -0.1968503937007863 50.29027215410449 7.451066428636207 -0.1968503937007863 50.30002662421204 7.431286319985366 -0.1968503937007863 50.30002662421204 3.062711586259064 -0.1968503937007863 50.30711582121172 7.410402219065904 -0.1968503937007863 50.30711582121167 3.083595687178512 -0.1968503937007863 50.31141844697729 3.105226447609863 -0.1968503937007863 50.31141844697731 7.388771458634578 -0.1968503937007863 50.31293467436102 3.128359607174147 -0.1968503937007863 50.31293467436102 7.365638299070358 -0.1968503937007863 + + + + + + + + + + 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 1.95818153218181e-017 -2.97996970582078e-017 -1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 25 23 26 26 23 27 26 27 28 26 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 40 38 41 40 41 42 40 42 43 43 42 44 43 44 45 45 44 46 46 44 47 46 47 48 48 47 49

+
+
+
+ + + + 50.31141844697731 7.388771458634578 -0.1968503937007863 50.31293467436102 7.365638299070358 0.07874015748031607 50.31293467436102 7.365638299070358 -0.1968503937007863 50.31141844697731 7.388771458634578 0.07874015748031607 50.31293467436102 7.365638299070358 -0.1968503937007863 50.31293467436102 3.128359607174147 0.07874015748031607 50.31293467436102 3.128359607174147 -0.1968503937007863 50.31293467436102 7.365638299070358 0.07874015748031607 50.30711582121172 7.410402219065904 -0.1968503937007863 50.30711582121172 7.410402219065904 0.07874015748031607 50.31293467436102 3.128359607174147 -0.1968503937007863 50.31141844697729 3.105226447609863 0.07874015748031607 50.31141844697729 3.105226447609863 -0.1968503937007863 50.31293467436102 3.128359607174147 0.07874015748031607 50.30002662421204 7.431286319985366 -0.1968503937007863 50.30002662421204 7.431286319985366 0.07874015748031607 50.30711582121167 3.083595687178512 0.07874015748031607 50.30711582121167 3.083595687178512 -0.1968503937007863 50.29027215410449 7.451066428636207 -0.1968503937007863 50.29027215410449 7.451066428636207 0.07874015748031607 50.30002662421204 3.062711586259064 0.07874015748031607 50.30002662421204 3.062711586259064 -0.1968503937007863 50.27801931257708 7.469404101875151 -0.1968503937007863 50.27801931257708 7.469404101875151 0.07874015748031607 50.2902721541045 3.042931477608267 0.07874015748031607 50.2902721541045 3.042931477608267 -0.1968503937007863 50.26347774914542 7.485985577029031 -0.1968503937007863 50.26347774914542 7.485985577029031 0.07874015748031607 50.27801931257705 3.024593804369262 0.07874015748031607 50.27801931257705 3.024593804369262 -0.1968503937007863 50.24689627399151 7.500527140460703 0.07874015748031607 50.24689627399151 7.500527140460703 -0.1968503937007863 50.26347774914544 3.008012329215407 0.07874015748031607 50.26347774914544 3.008012329215407 -0.1968503937007863 50.22855860075256 7.512779981988107 0.07874015748031607 50.22855860075256 7.512779981988107 -0.1968503937007863 50.24689627399157 2.993470765783735 -0.1968503937007863 50.24689627399157 2.993470765783735 0.07874015748031607 50.20877849210176 7.522534452095655 0.07874015748031607 50.20877849210176 7.522534452095655 -0.1968503937007863 50.22855860075259 2.981217924256331 -0.1968503937007863 50.22855860075259 2.981217924256331 0.07874015748031607 50.18789439118228 7.529623649095314 0.07874015748031607 50.18789439118228 7.529623649095314 -0.1968503937007863 50.20877849210176 2.971463454148789 -0.1968503937007863 50.20877849210176 2.971463454148789 0.07874015748031607 50.16626363075097 7.53392627486092 0.07874015748031607 50.16626363075097 7.53392627486092 -0.1968503937007863 50.1878943911823 2.96437425714911 -0.1968503937007863 50.1878943911823 2.96437425714911 0.07874015748031607 50.14313047118674 7.535442502244621 0.07874015748031607 50.14313047118674 7.535442502244621 -0.1968503937007863 50.166263630751 2.960071631383512 -0.1968503937007863 50.166263630751 2.960071631383512 0.07874015748031607 43.55703534344437 7.535442502244626 0.07874015748031579 50.14313047118674 7.535442502244621 -0.1968503937007863 43.55703534344437 7.535442502244626 -0.1968503937007866 50.14313047118674 7.535442502244621 0.07874015748031607 50.14313047118665 2.958555403999804 -0.1968503937007863 50.14313047118665 2.958555403999804 0.07874015748031607 43.53651592631481 7.531360936406135 0.07874015748031579 43.55703534344437 7.535442502244626 -0.1968503937007866 43.53651592631481 7.531360936406135 -0.1968503937007866 43.55703534344437 7.535442502244626 0.07874015748031579 50.14313047118665 2.958555403999804 0.07874015748031607 43.58301713362136 2.958555403999797 -0.1968503937007863 50.14313047118665 2.958555403999804 -0.1968503937007863 43.58301713362136 2.958555403999797 0.07874015748031607 43.51563182539531 7.524271739406478 0.07874015748031579 43.51563182539531 7.524271739406478 -0.1968503937007866 43.58301713362136 2.958555403999797 0.07874015748031607 43.55988397405696 2.960071631383501 -0.1968503937007863 43.58301713362136 2.958555403999797 -0.1968503937007863 43.55988397405696 2.960071631383501 0.07874015748031607 43.49585171674453 7.514517269298941 0.07874015748031579 43.49585171674453 7.514517269298941 -0.1968503937007866 43.53825321362565 2.964374257149114 -0.1968503937007863 43.53825321362565 2.964374257149114 0.07874015748031607 43.47751404350557 7.502264427771523 0.07874015748031579 43.47751404350557 7.502264427771523 -0.1968503937007866 43.51736911270614 2.971463454148768 -0.1968503937007863 43.51736911270614 2.971463454148768 0.07874015748031607 43.46093256835167 7.487722864339863 0.07874015748031579 43.46093256835167 7.487722864339863 -0.1968503937007866 43.49758900405537 2.981217924256313 -0.1968503937007863 43.49758900405537 2.981217924256313 0.07874015748031607 43.44639100492 7.47114138918596 -0.1968503937007866 43.44639100492 7.47114138918596 0.07874015748031579 43.47925133081637 2.993470765783733 -0.1968503937007863 43.47925133081637 2.993470765783733 0.07874015748031607 43.4341381633926 7.452803715947015 -0.1968503937007866 43.4341381633926 7.452803715947015 0.07874015748031579 43.46266985566252 3.008012329215369 -0.1968503937007863 43.46266985566252 3.008012329215369 0.07874015748031607 43.42438369328506 7.43302360729623 -0.1968503937007866 43.42438369328506 7.43302360729623 0.07874015748031579 43.44812829223088 3.024593804369232 0.07874015748031607 43.44812829223088 3.024593804369232 -0.1968503937007863 43.41729449628541 7.412139506376729 -0.1968503937007866 43.41729449628541 7.412139506376729 0.07874015748031579 43.43587545070344 3.042931477608274 0.07874015748031607 43.43587545070344 3.042931477608274 -0.1968503937007863 43.4132129304469 7.39162008924713 -0.1968503937007866 43.4132129304469 7.39162008924713 0.07874015748031579 43.4261209805959 3.062711586259032 0.07874015748031607 43.4261209805959 3.062711586259032 -0.1968503937007863 43.4132129304469 7.39162008924713 0.07874015748031579 43.4132129304469 3.128359607174164 -0.1968503937007863 43.4132129304469 3.128359607174164 0.07874015748031607 43.4132129304469 7.39162008924713 -0.1968503937007866 43.41903178359623 3.083595687178518 0.07874015748031607 43.41903178359623 3.083595687178518 -0.1968503937007863 43.4132129304469 3.128359607174164 0.07874015748031607 43.41472915783061 3.105226447609857 -0.1968503937007863 43.41472915783061 3.105226447609857 0.07874015748031607 43.4132129304469 3.128359607174164 -0.1968503937007863 + + + + + + + + + + 0.9914448613738508 0.1305261922197449 1.55246491908785e-017 0.9978589232385636 0.06540312923075399 1.759089571435054e-017 0.9978589232385636 0.06540312923075399 1.759089571435054e-017 0.9914448613738508 0.1305261922197449 1.55246491908785e-017 1 0 1.95818153218181e-017 1 0 1.95818153218181e-017 1 0 1.95818153218181e-017 1 0 1.95818153218181e-017 0.9659258262890319 0.2588190451026562 1.12018520080126e-017 0.9659258262890319 0.2588190451026562 1.12018520080126e-017 0.9978589232385156 -0.06540312923148701 2.148888258984201e-017 0.9914448613737552 -0.1305261922204699 2.330393116351783e-017 0.9914448613737552 -0.1305261922204699 2.330393116351783e-017 0.9978589232385156 -0.06540312923148701 2.148888258984201e-017 0.9238795325111466 0.3826834323654281 6.687388031556006e-018 0.9238795325111466 0.3826834323654281 6.687388031556006e-018 0.9659258262891463 -0.2588190451022301 2.66273102819097e-017 0.9659258262891463 -0.2588190451022301 2.66273102819097e-017 0.8660254037845753 0.4999999999997635 2.058500991815655e-018 0.8660254037845753 0.4999999999997635 2.058500991815655e-018 0.9238795325113448 -0.3826834323649499 2.949508873891546e-017 0.9238795325113448 -0.3826834323649499 2.949508873891546e-017 0.7933533402911205 0.60876142900887 -2.605607570657765e-018 0.7933533402911205 0.60876142900887 -2.605607570657765e-018 0.866025403784477 -0.4999999999999336 3.18581980500125e-017 0.866025403784477 -0.4999999999999336 3.18581980500125e-017 0.7071067811863823 0.707106781186713 -7.225133465171492e-018 0.7071067811863823 0.707106781186713 -7.225133465171492e-018 0.7933533402914658 -0.6087614290084201 3.367620475970759e-017 0.7933533402914658 -0.6087614290084201 3.367620475970759e-017 0.608761429008534 0.7933533402913785 -1.172103532290912e-017 0.608761429008534 0.7933533402913785 -1.172103532290912e-017 0.7071067811870996 -0.7071067811859956 3.491800226915812e-017 0.7071067811870996 -0.7071067811859956 3.491800226915812e-017 0.5000000000000008 0.8660254037844382 -1.601638701657927e-017 0.5000000000000008 0.8660254037844382 -1.601638701657927e-017 0.6087614290086063 -0.793353340291323 3.556234307869128e-017 0.6087614290086063 -0.793353340291323 3.556234307869128e-017 0.3826834323652957 0.9238795325112014 -2.003769388781576e-017 0.3826834323652957 0.9238795325112014 -2.003769388781576e-017 0.4999999999993188 -0.8660254037848321 3.559820233839578e-017 0.4999999999993188 -0.8660254037848321 3.559820233839578e-017 0.2588190451024929 0.9659258262890758 -2.371615026114718e-017 0.2588190451024929 0.9659258262890758 -2.371615026114718e-017 0.3826834323655604 -0.9238795325110919 3.502496648641106e-017 0.3826834323655604 -0.9238795325110919 3.502496648641106e-017 0.1305261922199533 0.9914448613738235 -2.698881672814551e-017 0.1305261922199533 0.9914448613738235 -2.698881672814551e-017 0.2588190451029568 -0.9659258262889514 3.385244374708522e-017 0.2588190451029568 -0.9659258262889514 3.385244374708522e-017 0.06540312923029935 0.9978589232385934 -2.845518162128279e-017 0.06540312923029935 0.9978589232385934 -2.845518162128279e-017 0.1305261922198004 -0.9914448613738436 3.210069630956563e-017 0.1305261922198004 -0.9914448613738436 3.210069630956563e-017 8.091396214053001e-016 1 -2.979969705820778e-017 8.091396214053001e-016 1 -2.979969705820778e-017 8.091396214053001e-016 1 -2.979969705820778e-017 8.091396214053001e-016 1 -2.979969705820778e-017 0.06540312923028356 -0.9978589232385944 3.101660561739596e-017 0.06540312923028356 -0.9978589232385944 3.101660561739596e-017 -0.2588190451025151 0.9659258262890699 -3.385244374708009e-017 -0.1950903220161407 0.980785280403228 -3.304732689195967e-017 -0.2588190451025151 0.9659258262890699 -3.385244374708009e-017 -0.1950903220161407 0.980785280403228 -3.304732689195967e-017 1.015430344717675e-015 -1 2.979969705820782e-017 1.015430344717675e-015 -1 2.979969705820782e-017 1.015430344717675e-015 -1 2.979969705820782e-017 1.015430344717675e-015 -1 2.979969705820782e-017 -0.3826834323650787 0.9238795325112913 -3.502496648640756e-017 -0.3826834323650787 0.9238795325112913 -3.502496648640756e-017 -0.06540312922995281 -0.9978589232386161 2.845518162129025e-017 -0.1305261922199476 -0.9914448613738243 2.698881672814565e-017 -0.06540312922995281 -0.9978589232386161 2.845518162129025e-017 -0.1305261922199476 -0.9914448613738243 2.698881672814565e-017 -0.5000000000000135 0.8660254037844308 -3.559820233839744e-017 -0.5000000000000135 0.8660254037844308 -3.559820233839744e-017 -0.2588190451023761 -0.9659258262891071 2.371615026115041e-017 -0.2588190451023761 -0.9659258262891071 2.371615026115041e-017 -0.6087614290087011 0.7933533402912499 -3.556234307869096e-017 -0.6087614290087011 0.7933533402912499 -3.556234307869096e-017 -0.3826834323652421 -0.9238795325112237 2.003769388781746e-017 -0.3826834323652421 -0.9238795325112237 2.003769388781746e-017 -0.7071067811865318 0.7071067811865633 -3.491800226916392e-017 -0.7071067811865318 0.7071067811865633 -3.491800226916392e-017 -0.4999999999998345 -0.8660254037845342 1.60163870165854e-017 -0.4999999999998345 -0.8660254037845342 1.60163870165854e-017 -0.7933533402912634 0.6087614290086838 -3.367620475971148e-017 -0.7933533402912634 0.6087614290086838 -3.367620475971148e-017 -0.6087614290084824 -0.7933533402914178 1.172103532291131e-017 -0.6087614290084824 -0.7933533402914178 1.172103532291131e-017 -0.8660254037844439 0.4999999999999909 -3.185819805001356e-017 -0.8660254037844439 0.4999999999999909 -3.185819805001356e-017 -0.7071067811866187 -0.7071067811864763 7.225133465159809e-018 -0.7071067811866187 -0.7071067811864763 7.225133465159809e-018 -0.9238795325113307 0.382683432364984 -2.94950887389162e-017 -0.9238795325113307 0.382683432364984 -2.94950887389162e-017 -0.7933533402916141 -0.6087614290082266 2.605607570628924e-018 -0.7933533402916141 -0.6087614290082266 2.605607570628924e-018 -0.9659258262890716 0.2588190451025084 -2.662731028191653e-017 -0.9659258262890716 0.2588190451025084 -2.662731028191653e-017 -0.8660254037845783 -0.4999999999997583 -2.058500991815872e-018 -0.8660254037845783 -0.4999999999997583 -2.058500991815872e-018 -0.9807852804031837 0.1950903220163633 -2.501918872628857e-017 -0.9807852804031837 0.1950903220163633 -2.501918872628857e-017 -0.9238795325109536 -0.382683432365894 -6.687388031538348e-018 -0.9238795325109536 -0.382683432365894 -6.687388031538348e-018 -1 -1.274856552025012e-033 -1.95818153218181e-017 -1 -1.274856552025012e-033 -1.95818153218181e-017 -1 -1.274856552025012e-033 -1.95818153218181e-017 -1 -1.274856552025012e-033 -1.95818153218181e-017 -0.9659258262890079 -0.2588190451027462 -1.120185200800945e-017 -0.9659258262890079 -0.2588190451027462 -1.120185200800945e-017 -0.9978589232385796 -0.0654031292305077 -1.759089571435819e-017 -0.9914448613738123 -0.130526192220036 -1.552464919086907e-017 -0.9914448613738123 -0.130526192220036 -1.552464919086907e-017 -0.9978589232385796 -0.0654031292305077 -1.759089571435819e-017 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 3 0 3 8 9 10 11 12 11 10 13 14 9 8 9 14 15 12 16 17 16 12 11 18 15 14 15 18 19 17 20 21 20 17 16 22 19 18 19 22 23 21 24 25 24 21 20 26 23 22 23 26 27 25 28 29 28 25 24 30 26 31 26 30 27 29 32 33 32 29 28 34 31 35 31 34 30 32 36 33 36 32 37 38 35 39 35 38 34 37 40 36 40 37 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 42 45 48 44 48 45 49 50 47 51 47 50 46 49 52 48 52 49 53 54 55 56 55 54 57 53 58 52 58 53 59 60 61 62 61 60 63 64 65 66 65 64 67 68 62 69 62 68 60 70 71 72 71 70 73 74 69 75 69 74 68 73 76 71 76 73 77 78 75 79 75 78 74 77 80 76 80 77 81 82 79 83 79 82 78 81 84 80 84 81 85 82 86 87 86 82 83 85 88 84 88 85 89 87 90 91 90 87 86 89 92 88 92 89 93 91 94 95 94 91 90 96 92 93 92 96 97 95 98 99 98 95 94 100 97 96 97 100 101 99 102 103 102 99 98 104 101 100 101 104 105 106 107 108 107 106 109 110 105 104 105 110 111 112 113 114 113 112 115 114 111 110 111 114 113

+
+
+
+ + + + 0 0 2.165354330708662 0.1184986753859656 0.2465682045726894 2.165354330708662 0 7.874015748031497 2.165354330708662 0.119594327961949 0.2298517765885317 2.165354330708662 0.1228625387705518 0.2134213713218521 2.165354330708662 0.1282473878187189 0.1975581175621329 2.165354330708662 0.1356567388462747 0.1825334399793274 2.165354330708662 0.1449638158028776 0.1686044149725052 2.165354330708662 0.1560093720213896 0.1560093720213882 2.165354330708662 0.1686044149725068 0.1449638158028763 2.165354330708662 0.1825334399793289 0.1356567388462739 2.165354330708662 0.197558117562134 0.1282473878187185 2.165354330708662 0.2134213713218537 0.1228625387705514 2.165354330708662 0.2298517765885331 0.1195943279619491 2.165354330708662 0.2465682045726913 0.1184986753859656 2.165354330708662 51.18110236220473 0 2.165354330708662 30.0860261920037 0.1184986753859688 2.165354330708662 30.09803909744245 0.1212016043046447 2.165354330708662 30.70679771243117 0.1184986753859656 2.165354330708662 30.10330938016302 0.1244567554178949 2.165354330708662 30.10773656538716 0.1287894127682915 2.165354330708662 30.11110468898 0.1339882234195986 2.165354330708662 30.11324944927784 0.1397995822959414 2.165354330708662 30.11406622194742 0.145940003383379 2.165354330708662 51.06260368681876 0.1184986753859656 2.165354330708662 51.06260368681876 7.755517072645532 2.165354330708662 0.1184986753859656 7.755517072645532 2.165354330708662 51.18110236220473 7.874015748031497 2.165354330708662 0.1184986753859656 2.43930318405221 2.165354330708662 0.1184986753859656 2.804370064010866 2.165354330708662 0.1195943279619488 2.456019612036368 2.165354330708662 0.1228625387705512 2.472450017303047 2.165354330708662 0.1282473878187184 2.488313271062767 2.165354330708662 0.1356567388462739 2.503337948645572 2.165354330708662 0.1449638158028762 2.517266973652394 2.165354330708662 0.1560093720213884 2.529862016603511 2.165354330708662 0.1686044149725052 2.540907572822023 2.165354330708662 0.1825334399793273 2.550214649778626 2.165354330708662 0.1975581175621327 2.557624000806182 2.165354330708662 0.213421371321852 2.563008849854349 2.165354330708662 0.2298517765885315 2.566277060662952 2.165354330708662 0.2465682045726894 2.567372713238935 2.165354330708662 25.61991398185795 2.804370064010866 2.165354330708662 25.56118838034679 2.567372713238936 2.165354330708662 30.09912146437194 0.1713469183847506 2.165354330708662 30.10848249331568 0.1633477397435226 2.165354330708662 30.11162315591949 0.1580084394959358 2.165354330708662 30.11351516370367 0.1521099485644012 2.165354330708662 0 7.874015748031497 2.165354330708662 0 0 0 0 0 2.165354330708662 0 7.874015748031497 0 51.18110236220473 0 2.165354330708662 0 0 0 51.18110236220473 0 0 0 0 2.165354330708662 51.18110236220473 0 0 51.18110236220473 0.7153153851313135 0.604869657207319 51.18110236220473 0 2.165354330708662 51.18110236220473 7.874015748031497 0 51.18110236220473 7.182685229005588 0.604869657207319 51.18110236220473 0.7153153851313138 1.166727690057971 51.18110236220473 7.874015748031497 2.165354330708662 51.18110236220473 7.182685229005587 1.166727690057971 0 7.874015748031497 2.165354330708662 51.18110236220473 7.874015748031497 0 0 7.874015748031497 0 51.18110236220473 7.874015748031497 2.165354330708662 0 7.874015748031497 0 0.346039204183232 7.209720004747907 1.256040330056125e-015 0 0 0 0.3542852686363268 7.272355082731298 1.256040330056125e-015 0.3784615063303982 7.330721683659481 1.256040330056125e-015 0.4169203466197171 7.380842220134569 1.256040330056125e-015 0.4670408830948051 7.419301060423888 1.256040330056125e-015 0.525407484022988 7.443477298117959 1.256040330056125e-015 0.5880425620063782 7.451723362571054 1.256040330056125e-015 51.18110236220473 7.874015748031497 0 0.3460392041832313 0.5491086559751139 1.110223024625157e-015 0.3460392041832319 2.136762732649793 1.110223024625157e-015 0.6506776399897686 7.443477298117959 1.256040330056125e-015 0.7090442409179513 7.419301060423888 1.256040330056125e-015 0.7591647773930393 7.380842220134569 1.256040330056125e-015 0.7976236176823582 7.330721683659481 1.256040330056125e-015 0.8217998553764297 7.272355082731298 1.256040330056125e-015 0.8300459198295244 7.209720004747907 1.256040330056125e-015 43.55364811608248 7.569833598791506 8.326672684688674e-016 0.8300459198295258 3.173087089051805 5.549316253182147e-016 43.52759575677882 7.56465146232659 8.326672684688674e-016 25.50480608586854 2.339832184441669 1.110223024625157e-015 43.50244268356087 7.556113144499255 8.326672684688674e-016 43.47861927248514 7.544364738294798 8.326672684688674e-016 43.45653314872024 7.529607262200647 8.326672684688674e-016 43.43656221196721 7.512093220724323 8.326672684688674e-016 43.41904817049088 7.492122283971291 8.326672684688674e-016 43.40429069439674 7.470036160206389 8.326672684688674e-016 43.39254228819227 7.446212749130662 8.326672684688674e-016 43.38400397036494 7.421059675912715 8.326672684688674e-016 43.37882183390003 7.395007316609055 8.326672684688674e-016 50.144256319116 7.569833598791506 1.090510587941475e-015 50.1707622014146 7.568096311480678 1.090510587941475e-015 50.19681456071828 7.562914175015767 1.090510587941475e-015 50.22196763393622 7.554375857188427 1.090510587941475e-015 50.24579104501194 7.542627450983966 1.090510587941475e-015 50.26787716877683 7.527869974889834 1.090510587941475e-015 50.28784810552988 7.510355933413502 1.090510587941475e-015 50.3053621470062 7.490384996660477 1.090510587941475e-015 50.32011962310036 7.468298872895575 1.118266163557104e-015 50.3318680293048 7.44447546181984 1.118266163557104e-015 50.34040634713218 7.419322388601879 1.118266163557104e-015 50.34558848359706 7.393270029298235 1.118266163557104e-015 50.3473257709079 7.366764146999632 1.118266163557104e-015 50.3473257709079 3.127233759244805 1.103017739216966e-015 50.3473257709079 2.136762732649773 1.110223024625157e-015 50.3473257709079 0.5508869384357039 1.110223024625157e-015 0.5491086559751147 0.346039204183232 1.110223024625157e-015 51.18110236220473 0 0 0.5226027736765072 0.3477764914940557 1.110223024625157e-015 0.4965504143728469 0.3529586279589738 1.110223024625157e-015 0.4713973411549005 0.3614969457863064 1.110223024625157e-015 0.4475739300791731 0.3732453519907652 1.110223024625157e-015 0.4254878063142707 0.3880028280849154 1.110223024625157e-015 0.4055168695612388 0.4055168695612393 1.110223024625157e-015 0.3880028280849136 0.4254878063142707 1.110223024625157e-015 0.3732453519907644 0.4475739300791728 1.110223024625157e-015 0.361496945786306 0.4713973411548998 1.110223024625157e-015 0.352958627958972 0.4965504143728474 1.110223024625157e-015 0.3477764914940549 0.5226027736765067 1.110223024625157e-015 28.98669970978262 0.3460392041831966 1.110223024625157e-015 29.00270410638306 0.3478174866438403 1.110223024625157e-015 50.14425631911605 0.3478174866438403 1.110223024625157e-015 50.17076220141466 0.3495547739546495 1.110223024625157e-015 50.19681456071831 0.35473691041958 1.110223024625157e-015 50.22196763393623 0.3632752282469015 1.110223024625157e-015 50.24579104501201 0.3750236344513794 1.110223024625157e-015 50.26787716877686 0.3897811105455421 1.110223024625157e-015 50.28784810552991 0.407295152021843 1.110223024625157e-015 50.30536214700624 0.4272660887748815 1.110223024625157e-015 50.32011962310041 0.4493522125397739 1.110223024625157e-015 50.33186802930485 0.4731756236154915 1.110223024625157e-015 50.3404063471322 0.498328696833425 1.110223024625157e-015 50.34558848359711 0.5243810561371139 1.110223024625157e-015 43.55538540339332 2.925901594763743 1.109463768595622e-015 50.14425631911605 2.339832184441669 1.110223024625157e-015 43.52933304408965 2.931083731228659 1.109462778393509e-015 43.5041799708717 2.939622049055988 1.109231021428294e-015 43.480356559796 2.951370455260453 1.108772463125903e-015 43.45827043603106 2.96612793135459 1.108094949546031e-015 43.43829949927805 2.98364197283092 1.107210073133866e-015 43.42078545780171 3.003612909583954 1.106132974370159e-015 43.4060279817076 3.025699033348864 1.104882082713383e-015 43.39427957550313 3.04952244442458 1.1034788012666e-015 43.38574125767577 3.074675517642528 1.101947140564425e-015 43.38055912121086 3.10072787694619 1.100313307746131e-015 43.37882183390003 3.127233759244795 1.098605258144222e-015 43.58189128569192 2.924164307452924 1.109233975091996e-015 50.14425631911599 2.924164307452924 1.117398622990049e-015 50.17076220141464 2.925901594763754 1.118280362204888e-015 50.17076220141468 2.338094897130827 1.110223024625157e-015 50.19681456071832 2.931083731228657 1.118760003154504e-015 50.19681456071832 2.332912760665919 1.110223024625157e-015 50.22196763393622 2.939622049056019 1.118829339049262e-015 50.22196763393626 2.324374442838587 1.110223024625157e-015 50.24579104501196 2.951370455260466 1.11848718353279e-015 50.24579104501199 2.312626036634129 1.110223024625157e-015 50.26787716877688 2.966127931354595 1.11773939098083e-015 50.26787716877689 2.297868560539985 1.110223024625157e-015 50.28784810552991 2.98364197283095 1.116598756331273e-015 50.28784810552993 2.280354519063654 1.110223024625157e-015 50.3053621470062 3.003612909583975 1.115084796159225e-015 50.30536214700626 2.260383582310614 1.110223024625157e-015 50.32011962310035 3.025699033348873 1.113223414742969e-015 50.32011962310039 2.238297458545719 1.110223024625157e-015 50.33186802930481 3.049522444424608 1.111046460834616e-015 50.33186802930484 2.214474047469999 1.110223024625157e-015 50.34040634713214 3.074675517642548 1.108591182719098e-015 50.34040634713219 2.189320974252057 1.110223024625157e-015 50.34558848359704 3.100727876946217 1.105899590885709e-015 50.34558848359709 2.163268614948385 1.110223024625157e-015 0.3460392041832334 3.173087089051805 5.549316253182147e-016 0.3477764914940558 2.163268614948401 1.110223024625157e-015 0.354285268636328 3.110452011068415 5.549316253182147e-016 0.3529586279589722 2.189320974252061 1.110223024625157e-015 0.3614969457863068 2.214474047470008 1.110223024625157e-015 0.3784615063303993 3.052085410140232 5.549316253182147e-016 0.3732453519907648 2.238297458545735 1.110223024625157e-015 0.3880028280849145 2.260383582310638 1.110223024625157e-015 0.4169203466197183 3.001964873665144 5.549316253182147e-016 0.4055168695612396 2.280354519063669 1.110223024625157e-015 0.4254878063142705 2.297868560539994 1.110223024625157e-015 0.4670408830948064 2.963506033375825 5.549316253182147e-016 0.4475739300791732 2.312626036634144 1.110223024625157e-015 0.4713973411548998 2.324374442838602 1.110223024625157e-015 0.525407484022989 2.939329795681753 5.549316253182147e-016 0.4965504143728471 2.332912760665936 1.110223024625157e-015 0.5226027736765068 2.338094897130853 1.110223024625157e-015 0.5491086559751146 2.339832184441677 1.110223024625157e-015 0.5880425620063796 2.931083731228659 5.549316253182147e-016 0.6506776399897698 2.939329795681753 5.549316253182147e-016 0.7090442409179527 2.963506033375825 5.549316253182147e-016 0.7591647773930408 3.001964873665144 5.549316253182147e-016 0.7976236176823597 3.052085410140232 5.549316253182147e-016 0.8217998553764312 3.110452011068415 5.549316253182147e-016 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 7 0 8 8 0 9 9 0 10 10 0 11 11 0 12 12 0 13 13 0 14 14 0 15 14 15 16 16 15 17 17 15 18 17 18 19 19 18 20 20 18 21 21 18 22 22 18 23 18 15 24 24 15 25 2 26 27 26 2 1 26 1 28 26 28 29 27 26 25 27 25 15 30 29 28 29 30 31 29 31 32 29 32 33 29 33 34 29 34 35 29 35 36 29 36 37 29 37 38 29 38 39 29 39 40 29 40 41 29 41 42 42 41 43 42 43 44 42 44 18 18 44 45 18 45 46 18 46 47 18 47 23 48 49 50 49 48 51 52 53 54 53 52 55 56 57 58 57 56 59 57 59 60 58 61 62 61 58 57 62 61 63 62 63 60 62 60 59 64 65 66 65 64 67 68 69 70 69 68 71 71 68 72 72 68 73 73 68 74 74 68 75 75 68 76 76 68 77 70 69 78 78 69 79 76 77 80 80 77 81 81 77 82 82 77 83 83 77 84 84 77 85 85 77 86 85 86 87 87 86 88 87 88 89 89 88 90 89 90 91 89 91 92 89 92 93 89 93 94 89 94 95 89 95 96 89 96 97 89 97 98 86 77 99 99 77 100 100 77 101 101 77 102 102 77 103 103 77 104 104 77 105 105 77 106 106 77 107 107 77 108 108 77 109 109 77 110 110 77 111 111 77 112 112 77 113 113 77 114 70 115 116 115 70 117 117 70 118 118 70 119 119 70 120 120 70 121 121 70 122 122 70 123 123 70 124 124 70 125 125 70 126 126 70 127 127 70 78 116 115 128 116 128 129 116 129 130 116 130 131 116 131 132 116 132 133 116 133 134 116 134 135 116 135 136 116 136 137 116 137 138 116 138 139 116 139 140 116 140 141 116 141 114 116 114 77 89 142 143 142 89 144 144 89 145 145 89 146 146 89 147 147 89 148 148 89 149 149 89 150 150 89 151 151 89 152 152 89 153 153 89 154 154 89 98 143 142 155 143 155 156 143 156 157 143 157 158 158 157 159 158 159 160 160 159 161 160 161 162 162 161 163 162 163 164 164 163 165 164 165 166 166 165 167 166 167 168 168 167 169 168 169 170 170 169 171 170 171 172 172 171 173 172 173 174 174 173 175 174 175 176 176 175 177 176 177 178 178 177 112 178 112 113 179 180 79 180 179 181 180 181 182 182 181 183 183 181 184 183 184 185 185 184 186 186 184 187 186 187 188 188 187 189 189 187 190 189 190 191 191 190 192 192 190 193 192 193 194 194 193 195 195 193 196 196 193 197 196 197 89 89 197 198 89 198 199 89 199 200 89 200 201 89 201 202 89 202 87 179 79 69

+
+
+
+ + + + 0.6470483783510791 7.225530565586209 -0.2337572933700505 0.590059644476194 7.209179529129053 -0.2420033578231444 0.5880425620063792 7.209720004747907 -0.2417307881423126 0.6506776399897661 7.197963586567997 -0.2337572933700505 0.5880425620063748 7.193858266663263 -0.2420033578231444 0.7039126674564964 7.240767305930175 -0.209581055675979 0.7090442409179504 7.201789135705585 -0.209581055675979 0.5880425620063785 3.188948827136449 -0.2420033578231452 0.6506776399897699 3.184843507231715 -0.2337572933700513 0.7090442409179538 3.181017958094126 -0.2095810556759798 0.6919288565104798 7.269698784844964 -0.209581055675979 0.6409457296562897 7.240263662831568 -0.2337572933700505 0.752743139522957 7.253851391486414 -0.1711222153866596 0.7591647773930373 7.205074209224319 -0.1711222153866596 0.5900596444761919 3.173627564670658 -0.2420033578231452 0.6470483783510829 3.157276528213503 -0.2337572933700513 0.5880425620063792 3.173087089051805 -0.2417307881423139 0.5254074840229897 7.197963586567996 -0.2337572933700505 0.5880425620063785 3.188948827136449 -0.2420033578231452 0.5254074840229894 3.184843507231715 -0.2337572933700513 0.5880425620063748 7.193858266663263 -0.2420033578231444 0.7039126674564999 3.142039787869536 -0.2095810556759798 0.7591647773930392 3.177732884575392 -0.1711222153866604 0.6728653662742286 7.294542809015757 -0.209581055675979 0.631237817512777 7.252915260254307 -0.2337572933700505 0.7357090600596556 7.294975297149257 -0.1711222153866596 0.7976236176823564 7.20759493479274 -0.121001678911572 0.7902120785753058 7.263891163446743 -0.121001678911572 0.5290367456616765 3.157276528213502 -0.2337572933700513 0.5860254795365677 3.173627564670658 -0.2420033578231452 0.5880425620063792 3.173087089051805 -0.2417307881423139 0.4670408830948055 3.181017958094127 -0.2095810556759798 0.4670408830948049 7.201789135705584 -0.209581055675979 0.5880425620063792 7.209720004747907 -0.2417307881423126 0.5860254795365617 7.209179529129052 -0.2420033578231444 0.5290367456616767 7.225530565586209 -0.2337572933700505 0.6919288565104833 3.113108308954748 -0.2095810556759798 0.6409457296562934 3.142543430968143 -0.2337572933700513 0.7527431395229589 3.128955702313299 -0.1711222153866604 0.7976236176823581 3.175212159006971 -0.1210016789115728 0.6480213421034335 7.313606299252011 -0.209581055675979 0.6185862200900375 7.26262317239782 -0.2337572933700505 0.7086117527844502 7.33028919552598 -0.1711222153866596 0.7693027917821517 7.314370647202324 -0.121001678911572 0.8217998553764282 7.209179529129053 -0.06263507798338919 0.8137660383374742 7.270202427943571 -0.06263507798338919 0.4721724565562595 3.142039787869536 -0.2095810556759798 0.4169203466197199 3.177732884575392 -0.1711222153866604 0.4169203466197176 7.205074209224319 -0.1711222153866596 0.4721724565562592 7.240767305930176 -0.209581055675979 0.6728653662742311 3.088264284783953 -0.2095810556759798 0.6312378175127806 3.129891833545404 -0.2337572933700513 0.7357090600596575 3.087831796650455 -0.1711222153866604 0.7902120785753077 3.118915930352971 -0.1210016789115728 0.8217998553764306 3.173627564670658 -0.06263507798339002 0.6190898631886472 7.325590110198027 -0.209581055675979 0.6038531228446804 7.268725821092609 -0.2337572933700505 0.6732978544077269 7.357386502801186 -0.1711222153866596 0.7360409198764716 7.357718362618001 -0.121001678911572 0.790420694377345 7.326563073950379 -0.06263507798338919 0.8300459198295244 7.209720004747907 1.256040330056125e-015 0.8217998553764297 7.272355082731298 1.256040330056125e-015 0.4841562675022759 3.113108308954748 -0.2095810556759798 0.5351393943564656 3.142543430968144 -0.2337572933700513 0.4233419844898002 3.128955702313298 -0.1711222153866604 0.3784615063303992 7.207594934792739 -0.121001678911572 0.3784615063304005 3.175212159006972 -0.1210016789115728 0.4233419844897982 7.253851391486415 -0.1711222153866596 0.4841562675022756 7.269698784844964 -0.209581055675979 0.5351393943564662 7.240263662831568 -0.2337572933700505 0.6480213421034365 3.069200794547701 -0.2095810556759798 0.6185862200900409 3.120183921401891 -0.2337572933700513 0.7086117527844518 3.052517898273733 -0.1711222153866604 0.7693027917821532 3.068436446597388 -0.1210016789115728 0.8137660383374767 3.112604665856142 -0.06263507798339002 0.8300459198295258 3.173087089051805 5.549316253182147e-016 0.5880425620063783 7.329677564942021 -0.209581055675979 0.5880425620063781 7.270807320915229 -0.2337572933700505 0.6321739487448852 7.374420582264487 -0.1711222153866596 0.6926932044607942 7.390980234523682 -0.121001678911572 0.753283615141812 7.37496105788334 -0.06263507798338919 0.7976236176823582 7.330721683659481 1.256040330056125e-015 0.5032197577385278 3.088264284783953 -0.2095810556759798 0.5448473064999787 3.129891833545404 -0.2337572933700513 0.4403760639531013 3.087831796650455 -0.1711222153866604 0.3858730454374511 3.11891593035297 -0.1210016789115728 0.3542852686363288 7.209179529129052 -0.06263507798338919 0.3542852686363288 3.173627564670658 -0.06263507798339002 0.3858730454374499 7.263891163446743 -0.121001678911572 0.4403760639530996 7.294975297149258 -0.1711222153866596 0.5032197577385272 7.294542809015758 -0.209581055675979 0.5448473064999786 7.252915260254307 -0.2337572933700505 0.6190898631886485 3.057216983601685 -0.2095810556759798 0.6038531228446821 3.114081272707101 -0.2337572933700513 0.6732978544077288 3.025420590998527 -0.1711222153866604 0.7360409198764732 3.025088731181712 -0.1210016789115728 0.7904206943773474 3.056244019849333 -0.06263507798339002 0.8217998553764312 3.110452011068415 5.549316253182147e-016 0.5722320011680755 7.268725821092609 -0.2337572933700505 0.5569952608241093 7.325590110198028 -0.209581055675979 0.5880425620063781 7.380230589550607 -0.1711222153866596 0.6422137207052132 7.411889521316836 -0.121001678911572 0.7048856312088494 7.412098137118874 -0.06263507798338919 0.7591647773930393 7.380842220134569 1.256040330056125e-015 0.5280637819093225 3.069200794547701 -0.2095810556759798 0.5574989039227182 3.120183921401891 -0.2337572933700513 0.467473371228307 3.052517898273733 -0.1711222153866604 0.4067823322306052 3.068436446597388 -0.1210016789115728 0.3623190856752828 3.112604665856142 -0.06263507798339002 0.346039204183232 7.209720004747907 1.256040330056125e-015 0.3460392041832334 3.173087089051805 5.549316253182147e-016 0.3623190856752829 7.27020242794357 -0.06263507798338919 0.406782332230604 7.314370647202324 -0.121001678911572 0.4674733712283056 7.330289195525981 -0.1711222153866596 0.5280637819093215 7.313606299252011 -0.209581055675979 0.5574989039227177 7.26262317239782 -0.2337572933700505 0.5880425620063796 3.111999772884482 -0.2337572933700513 0.5880425620063795 3.05312952885769 -0.2095810556759798 0.6321739487448865 3.008386511535226 -0.1711222153866604 0.692693204460796 2.991826859276031 -0.1210016789115728 0.7532836151418134 3.007846035916371 -0.06263507798339002 0.7976236176823597 3.052085410140232 5.549316253182147e-016 0.5439111752678711 7.374420582264487 -0.1711222153866596 0.5880425620063783 7.41902128965674 -0.121001678911572 0.6485249852020408 7.435443481079003 -0.06263507798338919 0.7090442409179513 7.419301060423888 1.256040330056125e-015 0.5569952608241104 3.057216983601685 -0.2095810556759798 0.5722320011680768 3.114081272707101 -0.2337572933700513 0.5027872696050301 3.025420590998527 -0.1711222153866604 0.4400442041362855 3.025088731181712 -0.1210016789115728 0.3856644296354121 3.056244019849333 -0.06263507798339002 0.354285268636328 3.110452011068415 5.549316253182147e-016 0.3542852686363268 7.272355082731298 1.256040330056125e-015 0.385664429635412 7.326563073950378 -0.06263507798338919 0.4400442041362841 7.357718362618001 -0.121001678911572 0.5027872696050288 7.357386502801186 -0.1711222153866596 0.5880425620063796 3.002576504249106 -0.1711222153866604 0.6422137207052142 2.970917572482877 -0.1210016789115728 0.7048856312088514 2.970708956680837 -0.06263507798339002 0.7591647773930408 3.001964873665144 5.549316253182147e-016 0.5338714033075435 7.411889521316836 -0.121001678911572 0.5880425620063782 7.443406143152849 -0.06263507798338919 0.6506776399897686 7.443477298117959 1.256040330056125e-015 0.5439111752678723 3.008386511535226 -0.1711222153866604 0.4833919195519629 2.991826859276031 -0.1210016789115728 0.4228015088709456 3.007846035916372 -0.06263507798339002 0.3784615063303993 3.052085410140232 5.549316253182147e-016 0.3784615063303982 7.330721683659481 1.256040330056125e-015 0.4228015088709459 7.374961057883341 -0.06263507798338919 0.4833919195519614 7.390980234523682 -0.121001678911572 0.5880425620063796 2.963785804142972 -0.1210016789115728 0.6485249852020425 2.947363612720708 -0.06263507798339002 0.7090442409179527 2.963506033375825 5.549316253182147e-016 0.5275601388107158 7.435443481079003 -0.06263507798338919 0.5880425620063782 7.451723362571054 1.256040330056125e-015 0.5338714033075445 2.970917572482877 -0.1210016789115728 0.4711994928039077 2.970708956680837 -0.06263507798339002 0.4169203466197183 3.001964873665144 5.549316253182147e-016 0.4169203466197171 7.380842220134569 1.256040330056125e-015 0.4711994928039074 7.412098137118874 -0.06263507798338919 0.5880425620063796 2.939400950646861 -0.06263507798339002 0.6506776399897698 2.939329795681753 5.549316253182147e-016 0.525407484022988 7.443477298117959 1.256040330056125e-015 0.5275601388107163 2.947363612720708 -0.06263507798339002 0.4670408830948064 2.963506033375825 5.549316253182147e-016 0.4670408830948051 7.419301060423888 1.256040330056125e-015 0.5880425620063796 2.931083731228659 5.549316253182147e-016 0.525407484022989 2.939329795681753 5.549316253182147e-016 + + + + + + + + + + 0.2980469559637359 0.07455112482027697 -0.9516355089154578 0.129409522551249 0.01703708685546249 -0.9914448613738121 0.129409522551249 0.01703708685546249 -0.9914448613738121 0.2628076869683011 0.01722532585836539 -0.9646944634543336 0.1300206976615136 0.007784386697886409 -0.9914807217003017 0.487749567089461 0.1306921026102494 -0.8631453725296541 0.5022026247522211 0.03291609906116259 -0.8641232864091647 0.1300206976615145 -0.007784386697885729 -0.9914807217003016 0.2628076869683022 -0.01722532585836404 -0.9646944634543334 0.5022026247522249 -0.03291609906116251 -0.8641232864091626 0.4373042984129965 0.2524777544065234 -0.8631453725296547 0.3289889588963535 0.189941863979224 -0.925034244356603 0.6853829641193342 0.1836478117418226 -0.704644359757059 0.7075597098930087 0.04637591353493291 -0.7051301522271769 0.1294095225512511 -0.01703708685545926 -0.9914448613738118 0.2980469559637368 -0.07455112482027632 -0.9516355089154577 0.1294095225512511 -0.01703708685545926 -0.9914448613738118 -0.2628076869683021 0.01722532585836941 -0.9646944634543332 -0.1300206976615204 -0.007784386697888517 -0.9914807217003007 -0.2628076869683041 -0.01722532585836543 -0.9646944634543327 -0.1300206976615192 0.007784386697895602 -0.9914807217003009 0.4877495670894685 -0.1306921026102526 -0.8631453725296494 0.7075597098930115 -0.04637591353493292 -0.7051301522271741 0.3570574644792096 0.3570574644792076 -0.8631453725296554 0.2686183601018445 0.2686183601018439 -0.9250342443566033 0.6144975546712324 0.3547803286058008 -0.7046443597570592 0.8650724726254417 0.05669984544201129 -0.4984322869082181 0.8373882722621905 0.2243775113039457 -0.4984331589077831 -0.2980469559637379 -0.07455112482027781 -0.951635508915457 -0.1294095225512526 -0.01703708685546406 -0.9914448613738116 -0.1294095225512526 -0.01703708685546406 -0.9914448613738116 -0.5022026247522233 -0.03291609906116239 -0.8641232864091635 -0.5022026247522188 0.03291609906116216 -0.8641232864091661 -0.1294095225512497 0.0170370868554802 -0.9914448613738116 -0.1294095225512497 0.0170370868554802 -0.9914448613738116 -0.2980469559637334 0.07455112482028185 -0.9516355089154581 0.4373042984130039 -0.2524777544065295 -0.8631453725296491 0.328988958896355 -0.1899418639792258 -0.9250342443566021 0.6853829641193395 -0.1836478117418259 -0.7046443597570529 0.8650724726254407 -0.05669984544201203 -0.4984322869082199 0.2524777544065273 0.4373042984129941 -0.8631453725296547 0.1899418639792284 0.3289889588963501 -0.9250342443566034 0.5017351523775112 0.5017351523775082 -0.7046443597570581 0.7507817855914651 0.4334640660138978 -0.4984331589077823 0.9640854128455839 0.06318949640755746 -0.2579658975177134 0.9331937336188315 0.2500485073049494 -0.2581185764897834 -0.4877495670894679 -0.1306921026102518 -0.8631453725296499 -0.7075597098930101 -0.0463759135349334 -0.7051301522271755 -0.7075597098930094 0.04637591353493286 -0.7051301522271762 -0.4877495670894583 0.1306921026102496 -0.8631453725296557 0.3570574644792161 -0.3570574644792161 -0.8631453725296491 0.2686183601018471 -0.2686183601018466 -0.9250342443566016 0.6144975546712366 -0.3547803286058063 -0.7046443597570529 0.8373882722621882 -0.2243775113039466 -0.4984331589077866 0.9640854128455844 -0.06318949640755783 -0.2579658975177117 0.1306921026102529 0.4877495670894601 -0.8631453725296541 0.09832114372019474 0.3669395038220337 -0.9250342443566036 0.3547803286058044 0.6144975546712306 -0.704644359757059 0.6130107609582474 0.6130107609582429 -0.4984331589077781 0.8366786123435727 0.4830566220617641 -0.2581185764897827 0.9892858993695024 0.06484122355896389 -0.1308014718420683 0.9575208326510117 0.2565669338448132 -0.1316330638433379 -0.4373042984130037 -0.2524777544065278 -0.8631453725296495 -0.328988958896355 -0.1899418639792242 -0.9250342443566025 -0.6853829641193372 -0.1836478117418237 -0.7046443597570558 -0.865072472625448 0.05669984544201193 -0.4984322869082074 -0.8650724726254442 -0.05669984544201199 -0.4984322869082139 -0.6853829641193361 0.183647811741824 -0.7046443597570568 -0.437304298412995 0.2524777544065209 -0.8631453725296562 -0.3289889588963511 0.1899418639792211 -0.9250342443566044 0.2524777544065291 -0.4373042984130041 -0.8631453725296492 0.1899418639792263 -0.3289889588963555 -0.925034244356602 0.5017351523775135 -0.5017351523775139 -0.7046443597570524 0.750781785591461 -0.4334640660138997 -0.4984331589077866 0.9331937336188322 -0.2500485073049493 -0.2581185764897809 0.9892858993695034 -0.06484122355896398 -0.1308014718420602 1.481513538301518e-016 0.5049555088130492 -0.8631453725296537 2.833507410527474e-016 0.3798837279584447 -0.9250342443566046 0.1836478117418217 0.6853829641193345 -0.7046443597570591 0.4334640660139029 0.750781785591468 -0.4984331589077735 0.6831452263138832 0.6831452263138795 -0.2581185764897826 0.858489692644828 0.4956492551450112 -0.1316330638433374 -0.3570574644792166 -0.3570574644792146 -0.8631453725296495 -0.268618360101847 -0.2686183601018445 -0.9250342443566024 -0.6144975546712351 -0.3547803286058037 -0.7046443597570554 -0.8373882722621904 -0.2243775113039465 -0.4984331589077828 -0.9640854128455852 0.06318949640755761 -0.2579658975177083 -0.9640854128455854 -0.06318949640755829 -0.2579658975177077 -0.8373882722621981 0.224377511303948 -0.4984331589077693 -0.6144975546712339 0.3547803286058023 -0.7046443597570569 -0.3570574644792097 0.3570574644792061 -0.8631453725296557 -0.2686183601018436 0.2686183601018393 -0.925034244356605 0.130692102610254 -0.4877495670894688 -0.863145372529649 0.09832114372019156 -0.366939503822038 -0.9250342443566022 0.3547803286058064 -0.6144975546712369 -0.7046443597570525 0.6130107609582429 -0.6130107609582404 -0.4984331589077868 0.8366786123435729 -0.4830566220617641 -0.2581185764897814 0.9575208326510132 -0.2565669338448152 -0.1316330638433239 -0.09832114372019248 0.36693950382203 -0.9250342443566053 -0.130692102610252 0.4877495670894637 -0.8631453725296522 -5.095627254616813e-016 0.7095606572116078 -0.7046443597570559 0.2243775113039432 0.8373882722621986 -0.4984331589077709 0.483056622061765 0.8366786123435727 -0.2581185764897807 0.700953898806195 0.7009538988061976 -0.131633063843343 -0.2524777544065299 -0.4373042984130035 -0.8631453725296492 -0.1899418639792275 -0.328988958896354 -0.9250342443566021 -0.5017351523775135 -0.501735152377512 -0.7046443597570538 -0.7507817855914644 -0.4334640660138989 -0.4984331589077828 -0.9331937336188333 -0.2500485073049486 -0.2581185764897773 -0.9892858993695011 0.06484122355896468 -0.1308014718420768 -0.9892858993695026 -0.06484122355896477 -0.1308014718420667 -0.933193733618833 0.2500485073049489 -0.2581185764897785 -0.7507817855914721 0.4334640660139016 -0.4984331589077685 -0.5017351523775114 0.5017351523775091 -0.704644359757057 -0.2524777544065261 0.4373042984129952 -0.8631453725296545 -0.1899418639792249 0.3289889588963474 -0.925034244356605 3.120964684059297e-016 -0.3798837279584495 -0.9250342443566026 1.795773985820026e-016 -0.5049555088130583 -0.8631453725296484 0.1836478117418268 -0.6853829641193396 -0.7046443597570526 0.4334640660138992 -0.7507817855914616 -0.4984331589077862 0.6831452263138821 -0.683145226313881 -0.2581185764897815 0.8584896926448293 -0.4956492551450125 -0.131633063843325 -0.1836478117418218 0.6853829641193373 -0.7046443597570562 2.263559080302044e-017 0.8669281320278058 -0.4984331589077708 0.2500485073049453 0.9331937336188334 -0.2581185764897797 0.4956492551450089 0.8584896926448271 -0.1316330638433521 -0.1306921026102543 -0.4877495670894691 -0.8631453725296487 -0.09832114372019264 -0.3669395038220378 -0.9250342443566023 -0.3547803286058062 -0.6144975546712361 -0.7046443597570532 -0.6130107609582444 -0.613010760958241 -0.4984331589077842 -0.8366786123435742 -0.4830566220617643 -0.258118576489777 -0.9575208326510127 -0.2565669338448145 -0.1316330638433294 -0.9575208326510101 0.2565669338448134 -0.13163306384335 -0.8366786123435743 0.4830566220617635 -0.2581185764897779 -0.6130107609582521 0.6130107609582458 -0.498433158907769 -0.3547803286058033 0.6144975546712327 -0.7046443597570575 3.878087999088903e-016 -0.709560657211612 -0.7046443597570518 0.2243775113039441 -0.8373882722621896 -0.4984331589077854 0.4830566220617642 -0.836678612343573 -0.2581185764897814 0.7009538988061992 -0.7009538988061969 -0.1316330638433243 -0.2243775113039425 0.8373882722621988 -0.4984331589077705 -2.360456869878988e-016 0.966113244123529 -0.2581185764897802 0.2565669338448097 0.9575208326510102 -0.1316330638433568 -0.183647811741826 -0.6853829641193396 -0.7046443597570528 -0.4334640660139001 -0.7507817855914613 -0.4984331589077861 -0.6831452263138839 -0.6831452263138803 -0.2581185764897786 -0.8584896926448302 -0.4956492551450097 -0.1316330638433289 -0.8584896926448269 0.4956492551450096 -0.1316330638433514 -0.6831452263138826 0.6831452263138816 -0.2581185764897779 -0.433464066013904 0.7507817855914699 -0.4984331589077699 4.255491070967834e-016 -0.8669281320277973 -0.4984331589077857 0.2500485073049474 -0.9331937336188324 -0.2581185764897815 0.4956492551450117 -0.8584896926448298 -0.1316330638433249 -0.2500485073049449 0.9331937336188337 -0.2581185764897794 -1.801666719264949e-016 0.9912985102900188 -0.1316330638433572 -0.224377511303944 -0.8373882722621894 -0.4984331589077857 -0.4830566220617651 -0.8366786123435727 -0.2581185764897803 -0.7009538988061994 -0.7009538988061961 -0.1316330638433261 -0.7009538988061964 0.7009538988061944 -0.1316330638433522 -0.4830566220617643 0.8366786123435739 -0.2581185764897782 4.630126937070359e-016 -0.9661132441235285 -0.258118576489782 0.2565669338448128 -0.9575208326510133 -0.1316330638433277 -0.2565669338448093 0.9575208326510102 -0.1316330638433571 -0.2500485073049477 -0.9331937336188324 -0.2581185764897814 -0.4956492551450126 -0.8584896926448291 -0.1316330638433255 -0.4956492551450089 0.8584896926448268 -0.1316330638433547 4.684333470088864e-016 -0.9912985102900226 -0.1316330638433289 -0.2565669338448131 -0.9575208326510133 -0.1316330638433277 + + + + + + + + + + + + + + +

0 1 2 1 3 4 3 1 0 5 3 0 3 5 6 3 7 4 7 3 8 6 8 3 8 6 9 10 0 11 0 10 5 12 6 5 6 12 13 8 14 7 14 8 15 15 16 14 17 18 19 18 17 20 8 21 15 21 8 9 13 9 6 9 13 22 23 11 24 11 23 10 25 5 10 5 25 12 12 26 13 26 12 27 18 28 19 28 18 29 30 28 29 17 31 32 31 17 19 33 34 35 35 20 17 20 35 34 15 36 37 36 15 21 9 38 21 38 9 22 22 26 39 26 22 13 40 24 41 24 40 23 42 10 23 10 42 25 25 27 12 27 25 43 27 44 26 44 27 45 19 46 31 46 19 28 32 47 48 47 32 31 49 17 32 17 49 35 37 50 51 50 37 36 21 52 36 52 21 38 38 39 53 39 38 22 39 44 54 44 39 26 55 41 56 41 55 40 57 23 40 23 57 42 42 43 25 43 42 58 43 45 27 45 43 59 45 60 44 60 45 61 28 62 46 62 28 63 31 64 47 64 31 46 65 47 66 47 65 48 67 32 48 32 67 49 68 35 49 35 68 69 51 70 71 70 51 50 36 72 50 72 36 52 52 53 73 53 52 38 53 54 74 54 53 39 54 60 75 60 54 44 76 56 77 56 76 55 78 40 55 40 78 57 79 42 57 42 79 58 58 59 43 59 58 80 59 61 45 61 59 81 63 82 62 82 63 83 46 84 64 84 46 62 66 64 85 64 66 47 86 66 87 66 86 65 65 67 48 67 65 88 89 49 67 49 89 68 90 69 68 69 90 91 71 92 93 92 71 70 50 94 70 94 50 72 72 73 95 73 72 52 73 74 96 74 73 53 74 75 97 75 74 54 76 98 99 98 76 77 78 76 100 76 78 55 101 57 78 57 101 79 102 58 79 58 102 80 80 81 59 81 80 103 83 104 82 104 83 105 62 106 84 106 62 82 85 84 107 84 85 64 87 85 108 85 87 66 109 87 110 87 109 86 86 88 65 88 86 111 88 89 67 89 88 112 113 68 89 68 113 90 114 91 90 91 114 115 116 92 117 92 116 93 70 118 92 118 70 94 95 94 72 94 95 119 95 96 120 96 95 73 96 97 121 97 96 74 99 115 114 115 99 98 100 99 122 99 100 76 123 78 100 78 123 101 124 79 101 79 124 102 125 80 102 80 125 103 105 126 104 126 105 127 82 128 106 128 82 104 107 106 129 106 107 84 108 107 130 107 108 85 110 108 131 108 110 87 109 111 86 111 109 132 111 112 88 112 111 133 112 113 89 113 112 134 135 90 113 90 135 114 127 117 126 117 127 116 92 136 117 136 92 118 119 118 94 118 119 137 120 119 95 119 120 138 120 121 139 121 120 96 122 114 135 114 122 99 140 100 122 100 140 123 141 101 123 101 141 124 142 102 124 102 142 125 104 143 128 143 104 126 144 106 128 106 144 129 130 129 145 129 130 107 131 130 146 130 131 108 132 133 111 133 132 147 133 134 112 134 133 148 134 135 113 135 134 149 126 136 143 136 126 117 137 136 118 136 137 150 138 137 119 137 138 151 139 138 120 138 139 152 149 122 135 122 149 140 153 123 140 123 153 141 154 124 141 124 154 142 155 128 143 128 155 144 156 129 144 129 156 145 146 145 157 145 146 130 147 148 133 148 147 158 148 149 134 149 148 159 150 143 136 143 150 155 151 150 137 150 151 160 152 151 138 151 152 161 159 140 149 140 159 153 162 141 153 141 162 154 163 144 155 144 163 156 164 145 156 145 164 157 158 159 148 159 158 165 160 155 150 155 160 163 161 160 151 160 161 166 165 153 159 153 165 162 167 156 163 156 167 164 166 163 160 163 166 167

+
+
+
+ + + + 0.1184986753859656 2.804370064010866 2.24409448818898 3.802459269029596 5.211752591652259 2.24409448818898 0.1184986753859656 7.755517072645532 2.24409448818898 3.821449895399476 5.203886416651894 2.24409448818898 5.080260594255362 4.709514930755915 2.24409448818898 5.233106487032441 4.689392387225837 2.24409448818898 25.61991398185795 2.804370064010866 2.24409448818898 3.786151648463726 5.224265869022172 2.24409448818898 3.773638371093813 5.240573489588042 2.24409448818898 3.765772196093449 5.259564115957922 2.24409448818898 3.763089190289438 5.279943568328199 2.24409448818898 3.841829347769753 5.201203410847884 2.24409448818898 3.862208800140031 5.203886416651894 2.24409448818898 4.937830896481261 4.768511243258649 2.24409448818898 3.881199426509911 5.211752591652259 2.24409448818898 3.89750704707578 5.224265869022172 2.24409448818898 3.910020324445693 5.240573489588042 2.24409448818898 3.917886499446058 5.259564115957922 2.24409448818898 3.920569505250068 5.279943568328199 2.24409448818898 4.815523742237236 4.862360823532994 2.24409448818898 4.721674161962891 4.984667977777018 2.24409448818898 4.662677849460157 5.127097675551119 2.24409448818898 4.642555305930079 5.279943568328199 2.24409448818898 5.385952379809521 4.709514930755915 2.24409448818898 5.528382077583623 4.768511243258649 2.24409448818898 5.650689231827647 4.862360823532995 2.24409448818898 5.744538812101991 4.984667977777018 2.24409448818898 5.803535124604726 5.12709767555112 2.24409448818898 5.823657668134803 5.279943568328199 2.24409448818898 5.233106487032441 5.870494749430561 2.24409448818898 51.06260368681876 7.755517072645532 2.24409448818898 5.080260594255362 5.850372205900484 2.24409448818898 3.821449895399476 5.356000720004503 2.24409448818898 3.802459269029596 5.348134545004139 2.24409448818898 3.786151648463726 5.335621267634227 2.24409448818898 3.773638371093813 5.319313647068356 2.24409448818898 3.765772196093449 5.300323020698476 2.24409448818898 3.841829347769753 5.358683725808514 2.24409448818898 3.86220880014003 5.356000720004504 2.24409448818898 4.93783089648126 5.791375893397749 2.24409448818898 3.881199426509911 5.348134545004139 2.24409448818898 3.89750704707578 5.335621267634227 2.24409448818898 3.910020324445693 5.319313647068356 2.24409448818898 3.917886499446058 5.300323020698476 2.24409448818898 4.815523742237236 5.697526313123404 2.24409448818898 4.721674161962891 5.57521915887938 2.24409448818898 4.662677849460157 5.432789461105278 2.24409448818898 5.38595237980952 5.850372205900484 2.24409448818898 5.528382077583622 5.791375893397749 2.24409448818898 5.650689231827647 5.697526313123404 2.24409448818898 5.744538812101991 5.575219158879381 2.24409448818898 5.803535124604726 5.432789461105278 2.24409448818898 30.70679771243117 0.1184986753859656 2.24409448818898 51.06260368681876 0.1184986753859656 2.24409448818898 + + + + + + + + + + -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 2 1 7 2 7 8 2 8 9 2 9 10 3 4 11 11 4 12 12 4 13 12 13 14 14 13 15 15 13 16 16 13 17 17 13 18 18 13 19 18 19 20 18 20 21 18 21 22 5 6 23 23 6 24 24 6 25 25 6 26 26 6 27 27 6 28 2 29 30 29 2 31 31 2 32 32 2 33 33 2 34 34 2 35 35 2 36 36 2 10 31 32 37 31 37 38 31 38 39 39 38 40 39 40 41 39 41 42 39 42 43 39 43 18 39 18 44 44 18 45 45 18 46 46 18 22 30 29 47 30 47 48 30 48 49 30 49 50 30 50 51 30 51 28 30 28 6 30 6 52 30 52 53

+
+
+
+ + + + 3.765772196093449 5.259564115957922 2.204724409448823 3.765772196093449 5.300323020698476 2.204724409448823 3.763089190289438 5.279943568328199 2.204724409448823 3.773638371093813 5.240573489588042 2.204724409448823 3.773638371093813 5.319313647068356 2.204724409448823 3.786151648463726 5.224265869022172 2.204724409448823 3.786151648463726 5.335621267634227 2.204724409448823 3.802459269029596 5.348134545004139 2.204724409448823 3.802459269029596 5.211752591652259 2.204724409448823 3.821449895399476 5.203886416651894 2.204724409448823 3.821449895399476 5.356000720004503 2.204724409448823 3.841829347769753 5.201203410847884 2.204724409448823 3.841829347769753 5.358683725808514 2.204724409448823 3.862208800140031 5.203886416651894 2.204724409448823 3.86220880014003 5.356000720004504 2.204724409448823 3.881199426509911 5.348134545004139 2.204724409448823 3.881199426509911 5.211752591652259 2.204724409448823 3.89750704707578 5.224265869022172 2.204724409448823 3.89750704707578 5.335621267634227 2.204724409448823 3.910020324445693 5.240573489588042 2.204724409448823 3.910020324445693 5.319313647068356 2.204724409448823 3.917886499446058 5.259564115957922 2.204724409448823 3.917886499446058 5.300323020698476 2.204724409448823 3.920569505250068 5.279943568328199 2.204724409448823 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 7 8 9 7 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 15 13 16 15 16 17 15 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23

+
+
+
+ + + + 3.821449895399476 5.203886416651894 2.24409448818898 3.841829347769753 5.201203410847884 2.204724409448823 3.821449895399476 5.203886416651894 2.204724409448823 3.841829347769753 5.201203410847884 2.24409448818898 3.862208800140031 5.203886416651894 2.204724409448823 3.862208800140031 5.203886416651894 2.24409448818898 3.802459269029596 5.211752591652259 2.24409448818898 3.802459269029596 5.211752591652259 2.204724409448823 3.881199426509911 5.211752591652259 2.204724409448823 3.881199426509911 5.211752591652259 2.24409448818898 3.786151648463726 5.224265869022172 2.24409448818898 3.786151648463726 5.224265869022172 2.204724409448823 3.89750704707578 5.224265869022172 2.204724409448823 3.89750704707578 5.224265869022172 2.24409448818898 3.773638371093813 5.240573489588042 2.204724409448823 3.773638371093813 5.240573489588042 2.24409448818898 3.910020324445693 5.240573489588042 2.24409448818898 3.910020324445693 5.240573489588042 2.204724409448823 3.765772196093449 5.259564115957922 2.204724409448823 3.765772196093449 5.259564115957922 2.24409448818898 3.917886499446058 5.259564115957922 2.24409448818898 3.917886499446058 5.259564115957922 2.204724409448823 3.763089190289438 5.279943568328199 2.204724409448823 3.763089190289438 5.279943568328199 2.24409448818898 3.920569505250068 5.279943568328199 2.24409448818898 3.920569505250068 5.279943568328199 2.204724409448823 3.765772196093449 5.300323020698476 2.204724409448823 3.765772196093449 5.300323020698476 2.24409448818898 3.917886499446058 5.300323020698476 2.24409448818898 3.917886499446058 5.300323020698476 2.204724409448823 3.773638371093813 5.319313647068356 2.204724409448823 3.773638371093813 5.319313647068356 2.24409448818898 3.910020324445693 5.319313647068356 2.24409448818898 3.910020324445693 5.319313647068356 2.204724409448823 3.786151648463726 5.335621267634227 2.204724409448823 3.786151648463726 5.335621267634227 2.24409448818898 3.89750704707578 5.335621267634227 2.24409448818898 3.89750704707578 5.335621267634227 2.204724409448823 3.802459269029596 5.348134545004139 2.24409448818898 3.802459269029596 5.348134545004139 2.204724409448823 3.881199426509911 5.348134545004139 2.204724409448823 3.881199426509911 5.348134545004139 2.24409448818898 3.821449895399476 5.356000720004503 2.24409448818898 3.821449895399476 5.356000720004503 2.204724409448823 3.86220880014003 5.356000720004504 2.204724409448823 3.86220880014003 5.356000720004504 2.24409448818898 3.841829347769753 5.358683725808514 2.24409448818898 3.841829347769753 5.358683725808514 2.204724409448823 + + + + + + + + + + 0.2588190451025272 0.9659258262890665 0 0 0.9999999999999999 0 0.2588190451025272 0.9659258262890665 0 0 0.9999999999999999 0 -0.2588190451025272 0.9659258262890665 0 -0.2588190451025272 0.9659258262890665 0 0.5000000000000094 0.8660254037844333 0 0.5000000000000094 0.8660254037844333 0 -0.5000000000000094 0.8660254037844333 0 -0.5000000000000094 0.8660254037844333 0 0.70710678118654 0.707106781186555 0 0.70710678118654 0.707106781186555 0 -0.70710678118654 0.707106781186555 0 -0.70710678118654 0.707106781186555 0 0.8660254037844379 0.5000000000000012 0 0.8660254037844379 0.5000000000000012 0 -0.8660254037844379 0.5000000000000012 0 -0.8660254037844379 0.5000000000000012 0 0.965925826289069 0.2588190451025184 0 0.965925826289069 0.2588190451025184 0 -0.965925826289069 0.2588190451025184 0 -0.965925826289069 0.2588190451025184 0 1 0 0 1 0 0 -1 0 0 -1 0 0 0.965925826289069 -0.2588190451025184 0 0.965925826289069 -0.2588190451025184 0 -0.965925826289069 -0.2588190451025184 0 -0.965925826289069 -0.2588190451025184 0 0.8660254037844423 -0.499999999999994 0 0.8660254037844423 -0.499999999999994 0 -0.8660254037844379 -0.5000000000000012 0 -0.8660254037844379 -0.5000000000000012 0 0.7071067811865415 -0.7071067811865536 0 0.7071067811865415 -0.7071067811865536 0 -0.70710678118654 -0.707106781186555 0 -0.70710678118654 -0.707106781186555 0 0.4999999999999865 -0.8660254037844466 0 0.4999999999999865 -0.8660254037844466 0 -0.5000000000000059 -0.8660254037844354 0 -0.5000000000000059 -0.8660254037844354 0 0.2588190451025286 -0.9659258262890662 0 0.2588190451025286 -0.9659258262890662 0 -0.2588190451025246 -0.9659258262890673 0 -0.2588190451025246 -0.9659258262890673 0 1.998761949593601e-014 -1 0 1.998761949593601e-014 -1 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 5 8 4 8 5 9 10 7 11 7 10 6 9 12 8 12 9 13 14 10 11 10 14 15 16 12 13 12 16 17 18 15 14 15 18 19 20 17 16 17 20 21 22 19 18 19 22 23 24 21 20 21 24 25 26 23 22 23 26 27 28 25 24 25 28 29 30 27 26 27 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 34 39 34 38 35 36 40 37 40 36 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 42 45 47 44 47 45 46

+
+
+
+ + + + 4.662677849460157 5.127097675551119 1.968503937007879 4.662677849460157 5.432789461105278 1.968503937007879 4.642555305930079 5.279943568328199 1.968503937007879 4.681987464823896 5.279943568328199 1.968503937007879 4.700766390122029 5.137303469262347 1.968503937007879 4.721674161962891 4.984667977777018 1.968503937007879 4.755823413291001 5.004384057223927 1.968503937007879 4.815523742237236 4.862360823532994 1.968503937007879 4.843406489187879 4.890243570483637 1.968503937007879 4.937830896481261 4.768511243258649 1.968503937007879 4.95754697592817 4.802660494586758 1.968503937007879 5.080260594255362 4.709514930755915 1.968503937007879 5.090466387966592 4.747603471417786 1.968503937007879 5.233106487032441 4.689392387225837 1.968503937007879 5.233106487032441 4.728824546119654 1.968503937007879 5.385952379809521 4.709514930755915 1.968503937007879 5.375746586098293 4.747603471417786 1.968503937007879 5.508665998136713 4.802660494586758 1.968503937007879 5.528382077583623 4.768511243258649 1.968503937007879 5.622806484877003 4.890243570483638 1.968503937007879 5.650689231827647 4.862360823532995 1.968503937007879 5.710389560773883 5.004384057223929 1.968503937007879 5.744538812101991 4.984667977777018 1.968503937007879 5.765446583942854 5.137303469262349 1.968503937007879 5.803535124604726 5.12709767555112 1.968503937007879 5.784225509240986 5.279943568328199 1.968503937007879 4.700766390122029 5.422583667394049 1.968503937007879 4.721674161962891 5.57521915887938 1.968503937007879 4.755823413291 5.55550307943247 1.968503937007879 4.815523742237236 5.697526313123404 1.968503937007879 4.843406489187879 5.669643566172761 1.968503937007879 4.93783089648126 5.791375893397749 1.968503937007879 4.95754697592817 5.75722664206964 1.968503937007879 5.080260594255362 5.850372205900484 1.968503937007879 5.090466387966591 5.812283665238612 1.968503937007879 5.233106487032441 5.870494749430561 1.968503937007879 5.233106487032441 5.831062590536744 1.968503937007879 5.375746586098291 5.812283665238612 1.968503937007879 5.38595237980952 5.850372205900484 1.968503937007879 5.508665998136713 5.75722664206964 1.968503937007879 5.528382077583622 5.791375893397749 1.968503937007879 5.622806484877003 5.669643566172761 1.968503937007879 5.650689231827647 5.697526313123404 1.968503937007879 5.710389560773883 5.55550307943247 1.968503937007879 5.744538812101991 5.575219158879381 1.968503937007879 5.765446583942854 5.42258366739405 1.968503937007879 5.803535124604726 5.432789461105278 1.968503937007879 5.823657668134803 5.279943568328199 1.968503937007879 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 17 15 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 1 26 27 26 1 3 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 35 37 38 38 37 39 38 39 40 40 39 41 40 41 42 42 41 43 42 43 44 44 43 45 44 45 46 46 45 25 46 25 24 46 24 47

+
+
+
+ + + + 4.662677849460157 5.432789461105278 1.968503937007879 4.642555305930079 5.279943568328199 2.24409448818898 4.642555305930079 5.279943568328199 1.968503937007879 4.662677849460157 5.432789461105278 2.24409448818898 4.662677849460157 5.127097675551119 2.24409448818898 4.662677849460157 5.127097675551119 1.968503937007879 4.721674161962891 5.57521915887938 1.968503937007879 4.721674161962891 5.57521915887938 2.24409448818898 4.721674161962891 4.984667977777018 2.24409448818898 4.721674161962891 4.984667977777018 1.968503937007879 4.815523742237236 5.697526313123404 1.968503937007879 4.815523742237236 5.697526313123404 2.24409448818898 4.815523742237236 4.862360823532994 2.24409448818898 4.815523742237236 4.862360823532994 1.968503937007879 4.93783089648126 5.791375893397749 2.24409448818898 4.93783089648126 5.791375893397749 1.968503937007879 4.937830896481261 4.768511243258649 1.968503937007879 4.937830896481261 4.768511243258649 2.24409448818898 5.080260594255362 5.850372205900484 2.24409448818898 5.080260594255362 5.850372205900484 1.968503937007879 5.080260594255362 4.709514930755915 1.968503937007879 5.080260594255362 4.709514930755915 2.24409448818898 5.233106487032441 5.870494749430561 2.24409448818898 5.233106487032441 5.870494749430561 1.968503937007879 5.233106487032441 4.689392387225837 1.968503937007879 5.233106487032441 4.689392387225837 2.24409448818898 5.38595237980952 5.850372205900484 2.24409448818898 5.38595237980952 5.850372205900484 1.968503937007879 5.385952379809521 4.709514930755915 1.968503937007879 5.385952379809521 4.709514930755915 2.24409448818898 5.528382077583622 5.791375893397749 2.24409448818898 5.528382077583622 5.791375893397749 1.968503937007879 5.528382077583623 4.768511243258649 1.968503937007879 5.528382077583623 4.768511243258649 2.24409448818898 5.650689231827647 5.697526313123404 2.24409448818898 5.650689231827647 5.697526313123404 1.968503937007879 5.650689231827647 4.862360823532995 1.968503937007879 5.650689231827647 4.862360823532995 2.24409448818898 5.744538812101991 5.575219158879381 1.968503937007879 5.744538812101991 5.575219158879381 2.24409448818898 5.744538812101991 4.984667977777018 2.24409448818898 5.744538812101991 4.984667977777018 1.968503937007879 5.803535124604726 5.432789461105278 1.968503937007879 5.803535124604726 5.432789461105278 2.24409448818898 5.803535124604726 5.12709767555112 2.24409448818898 5.803535124604726 5.12709767555112 1.968503937007879 5.823657668134803 5.279943568328199 1.968503937007879 5.823657668134803 5.279943568328199 2.24409448818898 + + + + + + + + + + 0.9659258262890681 -0.2588190451025217 0 1 -3.65355505721523e-016 0 1 -3.65355505721523e-016 0 0.9659258262890681 -0.2588190451025217 0 0.9659258262890681 0.2588190451025213 0 0.9659258262890681 0.2588190451025213 0 0.8660254037844393 -0.4999999999999991 0 0.8660254037844393 -0.4999999999999991 0 0.8660254037844384 0.5000000000000006 0 0.8660254037844384 0.5000000000000006 0 0.7071067811865488 -0.7071067811865462 0 0.7071067811865488 -0.7071067811865462 0 0.7071067811865462 0.7071067811865488 0 0.7071067811865462 0.7071067811865488 0 0.4999999999999997 -0.8660254037844389 0 0.4999999999999997 -0.8660254037844389 0 0.4999999999999991 0.8660254037844393 0 0.4999999999999991 0.8660254037844393 0 0.2588190451025206 -0.9659258262890682 0 0.2588190451025206 -0.9659258262890682 0 0.2588190451025217 0.9659258262890681 0 0.2588190451025217 0.9659258262890681 0 0 -1 0 0 -1 0 3.65355505721523e-016 1 0 3.65355505721523e-016 1 0 -0.2588190451025217 -0.9659258262890681 0 -0.2588190451025217 -0.9659258262890681 0 -0.2588190451025213 0.9659258262890681 0 -0.2588190451025213 0.9659258262890681 0 -0.4999999999999991 -0.8660254037844393 0 -0.4999999999999991 -0.8660254037844393 0 -0.5000000000000027 0.8660254037844372 0 -0.5000000000000027 0.8660254037844372 0 -0.7071067811865462 -0.7071067811865488 0 -0.7071067811865462 -0.7071067811865488 0 -0.7071067811865491 0.707106781186546 0 -0.7071067811865491 0.707106781186546 0 -0.8660254037844389 -0.4999999999999997 0 -0.8660254037844389 -0.4999999999999997 0 -0.8660254037844384 0.5000000000000006 0 -0.8660254037844384 0.5000000000000006 0 -0.9659258262890682 -0.2588190451025206 0 -0.9659258262890682 -0.2588190451025206 0 -0.9659258262890681 0.2588190451025217 0 -0.9659258262890681 0.2588190451025217 0 -1 0 0 -1 0 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 10 15 10 14 11 12 16 13 16 12 17 18 15 19 15 18 14 17 20 16 20 17 21 22 19 23 19 22 18 21 24 20 24 21 25 26 23 27 23 26 22 25 28 24 28 25 29 30 27 31 27 30 26 29 32 28 32 29 33 34 31 35 31 34 30 33 36 32 36 33 37 34 38 39 38 34 35 40 36 37 36 40 41 39 42 43 42 39 38 44 41 40 41 44 45 43 46 47 46 43 42 47 45 44 45 47 46

+
+
+
+ + + + 4.700766390122029 5.137303469262347 2.125984251968508 4.700766390122029 5.422583667394049 2.125984251968508 4.681987464823896 5.279943568328199 2.125984251968508 4.755823413291001 5.004384057223927 2.125984251968508 4.755823413291 5.55550307943247 2.125984251968508 4.843406489187879 5.669643566172761 2.125984251968508 4.843406489187879 4.890243570483637 2.125984251968508 4.95754697592817 4.802660494586758 2.125984251968508 4.95754697592817 5.75722664206964 2.125984251968508 5.090466387966592 4.747603471417786 2.125984251968508 5.090466387966591 5.812283665238612 2.125984251968508 5.233106487032441 5.831062590536744 2.125984251968508 5.233106487032441 4.728824546119654 2.125984251968508 5.375746586098293 4.747603471417786 2.125984251968508 5.375746586098291 5.812283665238612 2.125984251968508 5.508665998136713 5.75722664206964 2.125984251968508 5.508665998136713 4.802660494586758 2.125984251968508 5.622806484877003 4.890243570483638 2.125984251968508 5.622806484877003 5.669643566172761 2.125984251968508 5.710389560773883 5.004384057223929 2.125984251968508 5.710389560773883 5.55550307943247 2.125984251968508 5.765446583942854 5.137303469262349 2.125984251968508 5.765446583942854 5.42258366739405 2.125984251968508 5.784225509240986 5.279943568328199 2.125984251968508 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 5 6 7 5 7 8 8 7 9 8 9 10 10 9 11 11 9 12 11 12 13 11 13 14 14 13 15 15 13 16 15 16 17 15 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23

+
+
+
+ + + + 4.700766390122029 5.137303469262347 2.125984251968508 4.755823413291001 5.004384057223927 1.968503937007879 4.755823413291001 5.004384057223927 2.125984251968508 4.700766390122029 5.137303469262347 1.968503937007879 4.843406489187879 4.890243570483637 1.968503937007879 4.843406489187879 4.890243570483637 2.125984251968508 4.681987464823896 5.279943568328199 2.125984251968508 4.681987464823896 5.279943568328199 1.968503937007879 4.95754697592817 4.802660494586758 2.125984251968508 4.95754697592817 4.802660494586758 1.968503937007879 4.700766390122029 5.422583667394049 2.125984251968508 4.700766390122029 5.422583667394049 1.968503937007879 5.090466387966592 4.747603471417786 2.125984251968508 5.090466387966592 4.747603471417786 1.968503937007879 4.755823413291 5.55550307943247 2.125984251968508 4.755823413291 5.55550307943247 1.968503937007879 5.233106487032441 4.728824546119654 2.125984251968508 5.233106487032441 4.728824546119654 1.968503937007879 4.843406489187879 5.669643566172761 2.125984251968508 4.843406489187879 5.669643566172761 1.968503937007879 5.375746586098293 4.747603471417786 2.125984251968508 5.375746586098293 4.747603471417786 1.968503937007879 4.95754697592817 5.75722664206964 1.968503937007879 4.95754697592817 5.75722664206964 2.125984251968508 5.508665998136713 4.802660494586758 2.125984251968508 5.508665998136713 4.802660494586758 1.968503937007879 5.090466387966591 5.812283665238612 1.968503937007879 5.090466387966591 5.812283665238612 2.125984251968508 5.622806484877003 4.890243570483638 2.125984251968508 5.622806484877003 4.890243570483638 1.968503937007879 5.233106487032441 5.831062590536744 1.968503937007879 5.233106487032441 5.831062590536744 2.125984251968508 5.710389560773883 5.004384057223929 1.968503937007879 5.710389560773883 5.004384057223929 2.125984251968508 5.375746586098291 5.812283665238612 1.968503937007879 5.375746586098291 5.812283665238612 2.125984251968508 5.765446583942854 5.137303469262349 1.968503937007879 5.765446583942854 5.137303469262349 2.125984251968508 5.508665998136713 5.75722664206964 1.968503937007879 5.508665998136713 5.75722664206964 2.125984251968508 5.784225509240986 5.279943568328199 1.968503937007879 5.784225509240986 5.279943568328199 2.125984251968508 5.622806484877003 5.669643566172761 1.968503937007879 5.622806484877003 5.669643566172761 2.125984251968508 5.765446583942854 5.42258366739405 1.968503937007879 5.765446583942854 5.42258366739405 2.125984251968508 5.710389560773883 5.55550307943247 2.125984251968508 5.710389560773883 5.55550307943247 1.968503937007879 + + + + + + + + + + -0.9659258262890681 -0.2588190451025219 0 -0.8660254037844379 -0.500000000000001 0 -0.8660254037844379 -0.500000000000001 0 -0.9659258262890681 -0.2588190451025219 0 -0.707106781186548 -0.7071067811865471 0 -0.707106781186548 -0.7071067811865471 0 -1 7.930887807125743e-016 0 -1 7.930887807125743e-016 0 -0.4999999999999981 -0.8660254037844398 0 -0.4999999999999981 -0.8660254037844398 0 -0.9659258262890688 0.2588190451025187 0 -0.9659258262890688 0.2588190451025187 0 -0.2588190451025187 -0.9659258262890688 0 -0.2588190451025187 -0.9659258262890688 0 -0.8660254037844398 0.4999999999999981 0 -0.8660254037844398 0.4999999999999981 0 -7.930887807125743e-016 -1 0 -7.930887807125743e-016 -1 0 -0.7071067811865475 0.7071067811865475 0 -0.7071067811865475 0.7071067811865475 0 0.2588190451025202 -0.9659258262890684 0 0.2588190451025202 -0.9659258262890684 0 -0.4999999999999992 0.8660254037844393 0 -0.4999999999999992 0.8660254037844393 0 0.5000000000000023 -0.8660254037844374 0 0.5000000000000023 -0.8660254037844374 0 -0.2588190451025195 0.9659258262890687 0 -0.2588190451025195 0.9659258262890687 0 0.7071067811865494 -0.7071067811865457 0 0.7071067811865494 -0.7071067811865457 0 3.920888354084637e-016 1 0 3.920888354084637e-016 1 0 0.8660254037844393 -0.4999999999999992 0 0.8660254037844393 -0.4999999999999992 0 0.2588190451025187 0.9659258262890688 0 0.2588190451025187 0.9659258262890688 0 0.9659258262890687 -0.2588190451025199 0 0.9659258262890687 -0.2588190451025199 0 0.4999999999999981 0.8660254037844398 0 0.4999999999999981 0.8660254037844398 0 1 -3.920888354084637e-016 0 1 -3.920888354084637e-016 0 0.7071067811865475 0.7071067811865475 0 0.7071067811865475 0.7071067811865475 0 0.9659258262890687 0.2588190451025195 0 0.9659258262890687 0.2588190451025195 0 0.8660254037844393 0.4999999999999992 0 0.8660254037844393 0.4999999999999992 0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 8 4 9 4 8 5 10 7 6 7 10 11 12 9 13 9 12 8 14 11 10 11 14 15 16 13 17 13 16 12 18 15 14 15 18 19 20 17 21 17 20 16 18 22 19 22 18 23 24 21 25 21 24 20 23 26 22 26 23 27 28 25 29 25 28 24 27 30 26 30 27 31 32 28 29 28 32 33 31 34 30 34 31 35 36 33 32 33 36 37 35 38 34 38 35 39 40 37 36 37 40 41 39 42 38 42 39 43 44 41 40 41 44 45 42 46 47 46 42 43 47 45 44 45 47 46

+
+
+
+ + + + 49.88188976377955 7.182685229005588 0.604869657207319 49.88188976377955 0.7153153851313138 1.166727690057971 49.88188976377955 0.7153153851313135 0.604869657207319 49.88188976377955 7.182685229005587 1.166727690057971 51.18110236220473 0.7153153851313135 0.604869657207319 49.88188976377955 7.182685229005588 0.604869657207319 49.88188976377955 0.7153153851313135 0.604869657207319 51.18110236220473 7.182685229005588 0.604869657207319 51.18110236220473 7.182685229005587 1.166727690057971 49.88188976377955 7.182685229005588 0.604869657207319 51.18110236220473 7.182685229005588 0.604869657207319 49.88188976377955 7.182685229005587 1.166727690057971 51.18110236220473 7.182685229005587 1.166727690057971 49.88188976377955 0.7153153851313138 1.166727690057971 49.88188976377955 7.182685229005587 1.166727690057971 51.18110236220473 0.7153153851313138 1.166727690057971 49.88188976377955 0.7153153851313138 1.166727690057971 51.18110236220473 0.7153153851313135 0.604869657207319 49.88188976377955 0.7153153851313135 0.604869657207319 51.18110236220473 0.7153153851313138 1.166727690057971 + + + + + + + + + + 1 0 0 1 0 0 1 0 0 1 0 0 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 -0 -1 -1.580787970928972e-015 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 1 -3.95196992732243e-016 -0 1 -3.95196992732243e-016 -0 1 -3.95196992732243e-016 -0 1 -3.95196992732243e-016 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19

+
+
+
+ + + + 43.3770845465892 7.368501434310447 8.326672684688674e-016 43.37882183390003 7.395007316609055 8.326672684688674e-016 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 43.55364811608248 7.569833598791506 8.326672684688674e-016 43.58015399838109 7.571570886102331 8.326672684688674e-016 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 51.06260368681876 0.1184986753859656 0 0 0 0 51.06260368681876 0.1184986753859656 2.165354330708662 + + + + + + + + + + + + + +

1 0 0 2

+
+
+
+ + + + 0 0 2.834645669291339 0 0 2.165354330708662 + + + + + + + + + + + + + +

1 0

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1254901960784314 0.2117647058823529 0.2274509803921569 1 + + + + + + + + + + + 0.2431372549019608 0.3568627450980392 0.4352941176470588 1 + + + + + + + + + + + 0.6627450980392157 0.6627450980392157 0.6627450980392157 1 + + + + + + + + + + + 0 0 0 1 + + + + + + + + + + + 0.2156862745098039 0.3568627450980392 0.3843137254901961 1 + + + + + + + + + + + 0.2431372549019608 0.3568627450980392 0.4352941176470588 1 + + + 1 + + + + + + + + + +
diff --git a/camera/navigation/turtlebot/robot_description/r200.launch.xml b/camera/navigation/turtlebot/robot_description/r200.launch.xml new file mode 100644 index 0000000000..1e764e3c03 --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/r200.launch.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/robot_description/turtlebot_library_extended.urdf.xacro b/camera/navigation/turtlebot/robot_description/turtlebot_library_extended.urdf.xacro new file mode 100644 index 0000000000..31c9de673a --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/turtlebot_library_extended.urdf.xacro @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/robot_description/urdf/sensors/r200.urdf.xacro b/camera/navigation/turtlebot/robot_description/urdf/sensors/r200.urdf.xacro new file mode 100644 index 0000000000..d18618589b --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/urdf/sensors/r200.urdf.xacro @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/robot_description/urdf/stacks/minimal.urdf.xacro b/camera/navigation/turtlebot/robot_description/urdf/stacks/minimal.urdf.xacro new file mode 100644 index 0000000000..17ff013e77 --- /dev/null +++ b/camera/navigation/turtlebot/robot_description/urdf/stacks/minimal.urdf.xacro @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera/navigation/turtlebot/rviz/navigation_r200.rviz b/camera/navigation/turtlebot/rviz/navigation_r200.rviz new file mode 100644 index 0000000000..e3a33f2bf2 --- /dev/null +++ b/camera/navigation/turtlebot/rviz/navigation_r200.rviz @@ -0,0 +1,379 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /TF1/Frames1 + - /TF1/Tree1 + - /Global Map1/Planner1 + - /Local Map1 + - /Image1 + Splitter Ratio: 0.5 + Tree Height: 409 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.588679 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: Image +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz/RobotModel + Collision Enabled: false + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + Name: RobotModel + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Class: rviz/TF + Enabled: false + Frame Timeout: 15 + Frames: + All Enabled: false + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + {} + Update Interval: 0 + Value: false + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/LaserScan + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: LaserScan + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.01 + Style: Squares + Topic: /scan + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 0; 0 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: Bumper Hit + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.08 + Style: Spheres + Topic: /mobile_base/sensors/bumper_pointcloud + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 0.7 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map + Topic: /map + Value: true + - Class: rviz/Group + Displays: + - Alpha: 0.7 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: true + Enabled: true + Name: Costmap + Topic: /move_base/global_costmap/costmap + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 255; 0; 0 + Enabled: true + Line Style: Lines + Line Width: 0.03 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Topic: /move_base/DWAPlannerROS/global_plan + Value: true + Enabled: true + Name: Global Map + - Class: rviz/Group + Displays: + - Alpha: 0.7 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: false + Enabled: true + Name: Costmap + Topic: /move_base/local_costmap/costmap + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 0; 12; 255 + Enabled: true + Line Style: Lines + Line Width: 0.03 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Topic: /move_base/DWAPlannerROS/local_plan + Value: true + - Alpha: 0.8 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: total_cost + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 785.05 + Min Color: 0; 0; 0 + Min Intensity: 29.39 + Name: Cost Cloud + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.04 + Style: Flat Squares + Topic: /move_base/DWAPlannerROS/cost_cloud + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: total_cost + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 9.621 + Min Color: 0; 0; 0 + Min Intensity: 3.621 + Name: Trajectory Cloud + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.04 + Style: Boxes + Topic: /move_base/DWAPlannerROS/trajectory_cloud + Use Fixed Frame: true + Use rainbow: false + Value: true + Enabled: true + Name: Local Map + - Arrow Length: 0.2 + Class: rviz/PoseArray + Color: 0; 192; 0 + Enabled: true + Name: Amcl Particle Swarm + Topic: /particlecloud + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 25; 255; 0 + Enabled: true + Line Style: Lines + Line Width: 0.03 + Name: Full Plan + Offset: + X: 0 + Y: 0 + Z: 0 + Topic: /move_base/NavfnROS/plan + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth/image_raw + Max Value: 2500 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: map + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/MoveCamera + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/Select + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/Measure + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Angle: 0 + Class: rviz/TopDownOrtho + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Name: Current View + Near Clip Distance: 0.01 + Scale: 80 + Target Frame: + Value: TopDownOrtho (rviz) + X: 0 + Y: 0 + Saved: + - Class: rviz/Orbit + Distance: 13 + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Name: Mapping3 + Near Clip Distance: 0.01 + Pitch: 1.5648 + Target Frame: + Value: Orbit (rviz) + Yaw: 3.13659 + - Angle: 0 + Class: rviz/TopDownOrtho + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Name: Mapping + Near Clip Distance: 0.01 + Scale: 80 + Target Frame: + Value: TopDownOrtho (rviz) + X: 0 + Y: 0 +Window Geometry: + Displays: + collapsed: false + Height: 985 + Hide Left Dock: false + Hide Right Dock: false + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd00000004000000000000018000000393fc0200000006fb0000001200530065006c0065006300740069006f006e00000000280000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000002800000228000000dd00fffffffb0000000a0049006d0061006700650100000256000001650000001600ffffff000000010000010f00000393fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000002800000393000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000073f0000003efc0100000002fb0000000800540069006d006500000000000000073f000002f600fffffffb0000000800540069006d00650100000000000004500000000000000000000004a40000039300000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1855 + X: 63 + Y: 22 diff --git a/camera/navigation/turtlebot/rviz/navigation_r200_without_depth.rviz b/camera/navigation/turtlebot/rviz/navigation_r200_without_depth.rviz new file mode 100644 index 0000000000..8d45ceee6d --- /dev/null +++ b/camera/navigation/turtlebot/rviz/navigation_r200_without_depth.rviz @@ -0,0 +1,540 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /TF1/Frames1 + - /TF1/Tree1 + - /Global Map1/Planner1 + - /Local Map1 + - /Image1 + Splitter Ratio: 0.5 + Tree Height: 772 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.588679 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: Image +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz/RobotModel + Collision Enabled: false + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_footprint: + Alpha: 1 + Show Axes: false + Show Trail: false + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_depth_frame: + Alpha: 1 + Show Axes: false + Show Trail: false + camera_depth_optical_frame: + Alpha: 1 + Show Axes: false + Show Trail: false + camera_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_rgb_frame: + Alpha: 1 + Show Axes: false + Show Trail: false + camera_rgb_optical_frame: + Alpha: 1 + Show Axes: false + Show Trail: false + caster_back_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + caster_front_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + cliff_sensor_front_link: + Alpha: 1 + Show Axes: false + Show Trail: false + cliff_sensor_left_link: + Alpha: 1 + Show Axes: false + Show Trail: false + cliff_sensor_right_link: + Alpha: 1 + Show Axes: false + Show Trail: false + gyro_link: + Alpha: 1 + Show Axes: false + Show Trail: false + plate_bottom_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + plate_middle_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + plate_top_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_bottom_0_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_bottom_1_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_bottom_2_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_bottom_3_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_bottom_4_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_bottom_5_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_kinect_0_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_kinect_1_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_middle_0_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_middle_1_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_middle_2_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_middle_3_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_top_0_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_top_1_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_top_2_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + pole_top_3_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_left_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_right_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Name: RobotModel + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Class: rviz/TF + Enabled: false + Frame Timeout: 15 + Frames: + All Enabled: false + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + {} + Update Interval: 0 + Value: false + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/LaserScan + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: LaserScan + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.01 + Style: Squares + Topic: /scan + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 0; 0 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: Bumper Hit + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.08 + Style: Spheres + Topic: /mobile_base/sensors/bumper_pointcloud + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 0.7 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map + Topic: /map + Value: true + - Class: rviz/Group + Displays: + - Alpha: 0.7 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: true + Enabled: true + Name: Costmap + Topic: /move_base/global_costmap/costmap + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 255; 0; 0 + Enabled: true + Line Style: Lines + Line Width: 0.03 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Topic: /move_base/DWAPlannerROS/global_plan + Value: true + Enabled: true + Name: Global Map + - Class: rviz/Group + Displays: + - Alpha: 0.7 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: false + Enabled: true + Name: Costmap + Topic: /move_base/local_costmap/costmap + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 0; 12; 255 + Enabled: true + Line Style: Lines + Line Width: 0.03 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Topic: /move_base/DWAPlannerROS/local_plan + Value: true + - Alpha: 0.8 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: total_cost + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 785.05 + Min Color: 0; 0; 0 + Min Intensity: 29.39 + Name: Cost Cloud + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.04 + Style: Flat Squares + Topic: /move_base/DWAPlannerROS/cost_cloud + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: total_cost + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 9.621 + Min Color: 0; 0; 0 + Min Intensity: 3.621 + Name: Trajectory Cloud + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.04 + Style: Boxes + Topic: /move_base/DWAPlannerROS/trajectory_cloud + Use Fixed Frame: true + Use rainbow: false + Value: true + Enabled: true + Name: Local Map + - Arrow Length: 0.2 + Class: rviz/PoseArray + Color: 0; 192; 0 + Enabled: true + Name: Amcl Particle Swarm + Topic: /particlecloud + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 25; 255; 0 + Enabled: true + Line Style: Lines + Line Width: 0.03 + Name: Full Plan + Offset: + X: 0 + Y: 0 + Z: 0 + Topic: /move_base/NavfnROS/plan + Value: true + - Class: rviz/Image + Enabled: false + Image Topic: /camera/depth/image_raw + Max Value: 2500 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: false + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: map + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/MoveCamera + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/Select + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/Measure + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Angle: 0 + Class: rviz/TopDownOrtho + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Name: Current View + Near Clip Distance: 0.01 + Scale: 80 + Target Frame: + Value: TopDownOrtho (rviz) + X: 0 + Y: 0 + Saved: + - Class: rviz/Orbit + Distance: 13 + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Name: Mapping3 + Near Clip Distance: 0.01 + Pitch: 1.5648 + Target Frame: + Value: Orbit (rviz) + Yaw: 3.13659 + - Angle: 0 + Class: rviz/TopDownOrtho + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Name: Mapping + Near Clip Distance: 0.01 + Scale: 80 + Target Frame: + Value: TopDownOrtho (rviz) + X: 0 + Y: 0 +Window Geometry: + Displays: + collapsed: false + Height: 985 + Hide Left Dock: false + Hide Right Dock: false + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd00000004000000000000018000000393fc0200000006fb0000001200530065006c0065006300740069006f006e00000000280000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000002800000393000000dd00fffffffb0000000a0049006d0061006700650000000256000001650000001600ffffff000000010000010f00000393fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000002800000393000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000073f0000003efc0100000002fb0000000800540069006d006500000000000000073f000002f600fffffffb0000000800540069006d00650100000000000004500000000000000000000004a40000039300000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1855 + X: 63 + Y: 14 diff --git a/camera/package.xml b/camera/package.xml index eb80033386..292d330119 100644 --- a/camera/package.xml +++ b/camera/package.xml @@ -9,14 +9,14 @@ BSD 3-clause. See license attached - http://www.intel.com/realsense + http://www.ros.org/wiki/RealSense Rajvi Jingar Reagan Lopez + Matt Hansen catkin roscpp - rospy nodelet cv_bridge image_transport @@ -27,9 +27,9 @@ sensor_msgs rostest pcl_ros + dynamic_reconfigure roscpp - rospy nodelet cv_bridge image_transport @@ -40,9 +40,10 @@ sensor_msgs rostest pcl_ros + dynamic_reconfigure - + diff --git a/camera/rviz/realsenseRvizConfiguration.rviz b/camera/rviz/realsenseRvizConfiguration1.rviz similarity index 100% rename from camera/rviz/realsenseRvizConfiguration.rviz rename to camera/rviz/realsenseRvizConfiguration1.rviz diff --git a/camera/rviz/realsenseRvizConfiguration2.rviz b/camera/rviz/realsenseRvizConfiguration2.rviz new file mode 100644 index 0000000000..370c7d924e --- /dev/null +++ b/camera/rviz/realsenseRvizConfiguration2.rviz @@ -0,0 +1,245 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /Image1 + - /Image2 + - /Image3 + - /Image4 + - /Image5 + - /PointCloud21 + Splitter Ratio: 0.5 + Tree Height: 775 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.588679 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: Image +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Class: rviz/Image + Enabled: false + Image Topic: /camera/depth/image_raw + Max Value: 6000 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: false + - Class: rviz/Image + Enabled: false + Image Topic: /camera/depth/image + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: false + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth/image_raw + Max Value: 3500 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth/image_rect + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth/image_rect_raw + Max Value: 3500 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: PointCloud2 + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.01 + Style: Flat Squares + Topic: /camera/depth/points + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/ir/image_rect_ir + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/ir/image_raw + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/rgb/image_rect_color + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/rgb/image_rect_mono + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: map + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/MoveCamera + - Class: rviz/Select + - Class: rviz/FocusCamera + - Class: rviz/Measure + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 10 + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Name: Current View + Near Clip Distance: 0.01 + Pitch: 0.785398 + Target Frame: + Value: Orbit (rviz) + Yaw: 0.785398 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1056 + Hide Left Dock: false + Hide Right Dock: false + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd00000004000000000000013c00000396fc0200000011fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000002800000396000000dd00fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb0000000a0049006d00610067006502000001bf00000057000002a0000001fefb0000000a0049006d006100670065020000019f000000cb0000013c00000127fb0000000a0049006d006100670065030000019d000002000000014000000122fb0000000a0049006d00610067006503000004cc000000d90000015700000126fb0000000a0049006d00610067006503000004ce00000210000001520000011efb0000000a0049006d00610067006503000003fd000002f80000013c000000cafb0000000a0049006d00610067006503000002fe0000022b0000013c000000cafb0000000a0049006d006100670065030000033f000000810000013c000000cafb0000000a0049006d0061006700650300000341000001560000013c000000ca000000010000010f00000396fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000002800000396000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000073f0000003efc0100000002fb0000000800540069006d006501000000000000073f000002f600fffffffb0000000800540069006d00650100000000000004500000000000000000000004e80000039600000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1855 + X: 55 + Y: -14 diff --git a/camera/rviz/realsenseRvizConfiguration3.rviz b/camera/rviz/realsenseRvizConfiguration3.rviz new file mode 100644 index 0000000000..be9c8f7197 --- /dev/null +++ b/camera/rviz/realsenseRvizConfiguration3.rviz @@ -0,0 +1,305 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /Image5 + - /Image6 + - /Image7 + - /Image9 + Splitter Ratio: 0.5 + Tree Height: 775 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.588679 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: Image +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/rgb/image_mono + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/rgb/image_color + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: false + Image Topic: /camera/rgb/image_rect_mono + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: false + - Class: rviz/Image + Enabled: false + Image Topic: /camera/rgb/image_rect_color + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: false + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth/image_rect_raw + Max Value: 3500 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth/image_rect + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth/image + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: false + Queue Size: 2 + Transport Hint: raw + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: PointCloud2 + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.01 + Style: Flat Squares + Topic: /camera/depth/points + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz/Image + Enabled: false + Image Topic: /camera/ir/image_rect_ir + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: false + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth_registered/sw_registered/image_rect_raw + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: "" + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: PointCloud2 + Position Transformer: "" + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.01 + Style: Flat Squares + Topic: /camera/depth_registered/points + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/depth_registered/sw_registered/image_rect + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: true + - Class: rviz/Image + Enabled: false + Image Topic: /camera/depth_registered/hw_registered/image_rect + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: false + - Class: rviz/Image + Enabled: false + Image Topic: /camera/depth_registered/image + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Value: false + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: map + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/MoveCamera + - Class: rviz/Select + - Class: rviz/FocusCamera + - Class: rviz/Measure + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 12.544 + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Name: Current View + Near Clip Distance: 0.01 + Pitch: 1.5598 + Target Frame: + Value: Orbit (rviz) + Yaw: 1.5954 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1056 + Hide Left Dock: false + Hide Right Dock: false + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd00000004000000000000013c00000396fc0200000015fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000002800000396000000dd00fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb0000000a0049006d00610067006503000001a30000008e0000013c000000befb0000000a0049006d00610067006503000003040000008c0000013c000000cafb0000000a0049006d00610067006502000004530000008d0000013c000000cafb0000000a0049006d00610067006502000005ae0000008f0000013c000000cafb0000000a0049006d006100670065030000019c000002d00000013c000000cafb0000000a0049006d0061006700650300000305000002cc0000013c000000cafb0000000a0049006d006100670065030000047b000002cf0000013c000000cafb0000000a0049006d00610067006502000004f0000001a20000013c000000cafb0000000a0049006d006100670065020000053c000001730000013c000000cafb0000000a0049006d00610067006503000001a9000001980000013c000000cafb0000000a0049006d00610067006503000003050000019e0000013c000000cafb0000000a0049006d0061006700650200000472000002070000013c000000cafb0000000a0049006d0061006700650200000422000001700000013c000000ca000000010000010f00000396fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000002800000396000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000073f0000003efc0100000002fb0000000800540069006d006501000000000000073f000002f600fffffffb0000000800540069006d00650100000000000004500000000000000000000004e80000039600000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1855 + X: 55 + Y: -14 diff --git a/camera/src/realsense_camera_nodelet.cpp b/camera/src/realsense_camera_nodelet.cpp index d98267cabf..ccab900bcc 100644 --- a/camera/src/realsense_camera_nodelet.cpp +++ b/camera/src/realsense_camera_nodelet.cpp @@ -1,9 +1,31 @@ /****************************************************************************** - INTEL CORPORATION PROPRIETARY INFORMATION - This software is supplied under the terms of a license agreement or nondisclosure - agreement with Intel Corporation and may not be copied or disclosed except in - accordance with the terms of that agreement - Copyright(c) 2011-2016 Intel Corporation. All Rights Reserved. + Copyright (c) 2016, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *******************************************************************************/ #include "realsense_camera_nodelet.h" @@ -13,6 +35,8 @@ using namespace std; // Nodelet dependencies. #include +#include + PLUGINLIB_EXPORT_CLASS (realsense_camera::RealsenseNodelet, nodelet::Nodelet) namespace realsense_camera { @@ -24,6 +48,11 @@ namespace realsense_camera { device_thread_->join (); + if (enable_tf_ == true) + { + transform_thread_->join(); + } + // Stop device. if (is_device_started_ == true) { @@ -53,12 +82,13 @@ namespace realsense_camera enable_depth_ = ENABLE_DEPTH; enable_color_ = ENABLE_COLOR; enable_pointcloud_ = ENABLE_PC; + enable_tf_ = ENABLE_TF; is_device_started_ = false; camera_configuration_ = getMyArgv (); - frame_id_[RS_STREAM_DEPTH] = DEPTH_DEF_FRAME; - frame_id_[RS_STREAM_COLOR] = COLOR_DEF_FRAME; + frame_id_[RS_STREAM_DEPTH] = DEPTH_OPTICAL_DEF_FRAME; + frame_id_[RS_STREAM_COLOR] = COLOR_OPTICAL_DEF_FRAME; frame_id_[RS_STREAM_INFRARED] = IR1_DEF_FRAME; frame_id_[RS_STREAM_INFRARED2] = IR2_DEF_FRAME; @@ -96,14 +126,86 @@ namespace realsense_camera get_options_service_ = nh.advertiseService (SETTINGS_SERVICE, &RealsenseNodelet::getCameraSettings, this); - // Start working thread. - device_thread_ = - boost::shared_ptr < boost::thread > (new boost::thread (boost::bind (&RealsenseNodelet::devicePoll, this))); - } + dynamic_reconf_server_.reset(new dynamic_reconfigure::Server(getPrivateNodeHandle())); + + bool connected = false; + + connected = connectToCamera (); + + if (connected == true) + { + // Start working thread. + device_thread_ = + boost::shared_ptr < boost::thread > (new boost::thread (boost::bind (&RealsenseNodelet::devicePoll, this))); + + if (enable_tf_ == true) + { + transform_thread_ = + boost::shared_ptr < boost::thread > (new boost::thread (boost::bind (&RealsenseNodelet::publishTransforms, this))); + } + + } + else + { + ros::shutdown (); + } + + dynamic_reconf_server_->setCallback(boost::bind(&RealsenseNodelet::configCallback, this, _1, _2)); +} /* *Private Methods. */ + void RealsenseNodelet::configCallback(realsense_camera::camera_paramsConfig &config, uint32_t level) + { + rs_set_device_option(rs_device_, RS_OPTION_COLOR_BACKLIGHT_COMPENSATION, config.COLOR_BACKLIGHT_COMPENSATION, 0); + rs_set_device_option(rs_device_, RS_OPTION_COLOR_BRIGHTNESS, config.COLOR_BRIGHTNESS, 0); + rs_set_device_option(rs_device_, RS_OPTION_COLOR_CONTRAST, config.COLOR_CONTRAST, 0); + rs_set_device_option(rs_device_, RS_OPTION_COLOR_GAIN, config.COLOR_GAIN, 0); + rs_set_device_option(rs_device_, RS_OPTION_COLOR_GAMMA, config.COLOR_GAMMA, 0); + rs_set_device_option(rs_device_, RS_OPTION_COLOR_HUE, config.COLOR_HUE, 0); + rs_set_device_option(rs_device_, RS_OPTION_COLOR_SATURATION, config.COLOR_SATURATION, 0); + rs_set_device_option(rs_device_, RS_OPTION_COLOR_SHARPNESS, config.COLOR_SHARPNESS, 0); + rs_set_device_option(rs_device_, RS_OPTION_COLOR_ENABLE_AUTO_WHITE_BALANCE, config.COLOR_ENABLE_AUTO_WHITE_BALANCE, 0); + + if(config.COLOR_ENABLE_AUTO_WHITE_BALANCE == 0) { + rs_set_device_option(rs_device_, RS_OPTION_COLOR_WHITE_BALANCE, config.COLOR_WHITE_BALANCE, 0); + } + + //R200 camera specific options + rs_set_device_option(rs_device_, RS_OPTION_R200_LR_AUTO_EXPOSURE_ENABLED, config.R200_LR_AUTO_EXPOSURE_ENABLED, 0); + + if(config.R200_LR_AUTO_EXPOSURE_ENABLED == 0) { + rs_set_device_option(rs_device_, RS_OPTION_R200_LR_EXPOSURE, config.R200_LR_EXPOSURE, 0); + } + + rs_set_device_option(rs_device_, RS_OPTION_R200_LR_GAIN, config.R200_LR_GAIN, 0); + rs_set_device_option(rs_device_, RS_OPTION_R200_EMITTER_ENABLED, config.R200_EMITTER_ENABLED, 0); + rs_set_device_option(rs_device_, RS_OPTION_R200_DISPARITY_MULTIPLIER, config.R200_DISPARITY_MULTIPLIER, 0); + + if(config.R200_LR_AUTO_EXPOSURE_ENABLED == 1) + { + if(config.R200_AUTO_EXPOSURE_TOP_EDGE >= depth_height_) { + config.R200_AUTO_EXPOSURE_TOP_EDGE = depth_height_ - 1; + } + if(config.R200_AUTO_EXPOSURE_BOTTOM_EDGE >= depth_height_) { + config.R200_AUTO_EXPOSURE_BOTTOM_EDGE = depth_height_ - 1; + } + if(config.R200_AUTO_EXPOSURE_LEFT_EDGE >= depth_width_) { + config.R200_AUTO_EXPOSURE_LEFT_EDGE = depth_width_ - 1; + } + if(config.R200_AUTO_EXPOSURE_RIGHT_EDGE >= depth_width_) { + config.R200_AUTO_EXPOSURE_RIGHT_EDGE = depth_width_ - 1; + } + edge_values_[0] = config.R200_AUTO_EXPOSURE_LEFT_EDGE; + edge_values_[1] = config.R200_AUTO_EXPOSURE_TOP_EDGE; + edge_values_[2] = config.R200_AUTO_EXPOSURE_RIGHT_EDGE; + edge_values_[3] = config.R200_AUTO_EXPOSURE_BOTTOM_EDGE; + + rs_set_device_options(rs_device_, edge_options_, 4, edge_values_, 0); + } + } + void RealsenseNodelet::check_error () { if (rs_error_) @@ -123,20 +225,9 @@ namespace realsense_camera */ void RealsenseNodelet::devicePoll () { - bool connected = false; - - connected = connectToCamera (); - - if (connected == true) - { - while (ros::ok ()) - { - publishStreams (); - } - } - else + while (ros::ok ()) { - ros::shutdown (); + publishStreams (); } } @@ -364,17 +455,50 @@ namespace realsense_camera if (config_.find ("enable_color") != config_.end ()) { - enable_color_ = atoi (config_.at ("enable_color").c_str ()); + if (strcmp((config_.at ("enable_color").c_str ()),"true") == 0) + { + enable_color_ = true; + } + else + { + enable_color_ = false; + } } if (config_.find ("enable_depth") != config_.end ()) { - enable_depth_ = atoi (config_.at ("enable_depth").c_str ()); + if (strcmp((config_.at ("enable_depth").c_str ()),"true") == 0) + { + enable_depth_ = true; + } + else + { + enable_depth_ = false; + } } - if (config_.find ("enable_pointCloud") != config_.end ()) + if (config_.find ("enable_pointcloud") != config_.end ()) { - enable_pointcloud_ = atoi (config_.at ("enable_pointCloud").c_str ()); + if (strcmp((config_.at ("enable_pointcloud").c_str ()),"true") == 0) + { + enable_pointcloud_ = true; + } + else + { + enable_pointcloud_ = false; + } + } + + if (config_.find ("enable_tf") != config_.end ()) + { + if (strcmp((config_.at ("enable_tf").c_str ()),"true") == 0) + { + enable_tf_ = true; + } + else + { + enable_tf_ = false; + } } if (config_.find ("camera") != config_.end ()) @@ -382,6 +506,16 @@ namespace realsense_camera camera_ = config_.at ("camera").c_str (); } + if (config_.find ("depth_frame_id") != config_.end ()) + { + frame_id_[RS_STREAM_DEPTH] = config_.at ("depth_frame_id").c_str (); + } + + if (config_.find ("rgb_frame_id") != config_.end ()) + { + frame_id_[RS_STREAM_COLOR] = config_.at ("rgb_frame_id").c_str (); + } + if (mode_.compare ("manual") == 0) { if (config_.find ("color_fps") != config_.end ()) @@ -465,6 +599,9 @@ namespace realsense_camera image_[(uint32_t) RS_STREAM_INFRARED2].data = (unsigned char *) (rs_get_frame_data (rs_device_, RS_STREAM_INFRARED2, 0)); break; + default: + // no other streams supported + break; } } @@ -576,8 +713,6 @@ namespace realsense_camera sensor_msgs::PointCloud2Iterator < uint8_t > iter_g (msg_pointcloud, "g"); sensor_msgs::PointCloud2Iterator < uint8_t > iter_b (msg_pointcloud, "b"); - rs::float2 thirdImagePixel; - float depth_point[3], color_point[3], color_pixel[2], scaled_depth; unsigned char *color_data = image_color.data; const float depth_scale = rs_get_device_depth_scale (rs_device_, &rs_error_); @@ -643,4 +778,51 @@ namespace realsense_camera pointcloud_publisher_.publish (msg_pointcloud); } } -} + /* + * Publish camera transforms + */ + void RealsenseNodelet::publishTransforms() + { + // publish transforms for the cameras + ROS_INFO_STREAM("RealSense Camera - Publishing camera transforms"); + tf::Transform tr; + tf::Quaternion q; + tf::TransformBroadcaster tf_broadcaster; + rs_extrinsics z_extrinsic; + + // extrinsics are offsets between the cameras + rs_get_device_extrinsics (rs_device_, RS_STREAM_DEPTH, RS_STREAM_COLOR, &z_extrinsic, &rs_error_); check_error (); + + ros::Duration sleeper(0.1); // 100ms + + while (ros::ok()) + { + // time stamp is future dated to be valid for given duration + ros::Time time_stamp = ros::Time::now() + sleeper; + + // transform base frame to depth frame + tr.setOrigin(tf::Vector3(z_extrinsic.translation[0], z_extrinsic.translation[1], z_extrinsic.translation[2])); + tr.setRotation(tf::Quaternion(0, 0, 0, 1)); + tf_broadcaster.sendTransform(tf::StampedTransform(tr, time_stamp, BASE_DEF_FRAME, DEPTH_DEF_FRAME)); + + // transform depth frame to depth optical frame + tr.setOrigin(tf::Vector3(0,0,0)); + q.setEuler( M_PI/2, 0.0, -M_PI/2 ); + tr.setRotation( q ); + tf_broadcaster.sendTransform(tf::StampedTransform(tr, time_stamp, DEPTH_DEF_FRAME, frame_id_[RS_STREAM_DEPTH])); + + // transform base frame to color frame (these are the same) + tr.setOrigin(tf::Vector3(0,0,0)); + tr.setRotation(tf::Quaternion(0, 0, 0, 1)); + tf_broadcaster.sendTransform(tf::StampedTransform(tr, time_stamp, BASE_DEF_FRAME, COLOR_DEF_FRAME)); + + // transform color frame to color optical frame + tr.setOrigin(tf::Vector3(0,0,0)); + q.setEuler( M_PI/2, 0.0, -M_PI/2 ); + tr.setRotation( q ); + tf_broadcaster.sendTransform(tf::StampedTransform(tr, time_stamp, COLOR_DEF_FRAME, frame_id_[RS_STREAM_COLOR])); + + sleeper.sleep(); // need sleep or transform won't publish correctly + } + } +} // end namespace diff --git a/camera/src/realsense_camera_nodelet.h b/camera/src/realsense_camera_nodelet.h index 3ccca2b7b6..dd27b3f8a1 100644 --- a/camera/src/realsense_camera_nodelet.h +++ b/camera/src/realsense_camera_nodelet.h @@ -1,9 +1,31 @@ /****************************************************************************** - INTEL CORPORATION PROPRIETARY INFORMATION - This software is supplied under the terms of a license agreement or nondisclosure - agreement with Intel Corporation and may not be copied or disclosed except in - accordance with the terms of that agreement - Copyright(c) 2011-2016 Intel Corporation. All Rights Reserved. + Copyright (c) 2016, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *******************************************************************************/ #pragma once @@ -38,6 +60,9 @@ #include #include +#include +#include + namespace realsense_camera { @@ -61,14 +86,17 @@ class RealsenseNodelet: public nodelet::Nodelet const bool ENABLE_DEPTH = true; const bool ENABLE_COLOR = true; const bool ENABLE_PC = true; + const bool ENABLE_TF = true; const uint32_t SERIAL_NUMBER = 0xFFFFFFFF; const rs_format DEPTH_FORMAT = RS_FORMAT_Z16; const rs_format COLOR_FORMAT = RS_FORMAT_RGB8; const rs_format IR1_FORMAT = RS_FORMAT_Y8; const rs_format IR2_FORMAT = RS_FORMAT_Y8; - const char *BASE_DEF_FRAME = "realsense_frame"; - const char *DEPTH_DEF_FRAME = "camera_depth_optical_frame"; - const char *COLOR_DEF_FRAME = "camera_color_optical_frame"; + const char *BASE_DEF_FRAME = "camera_link"; + const char *DEPTH_DEF_FRAME = "camera_depth_frame"; + const char *COLOR_DEF_FRAME = "camera_rgb_frame"; + const char *DEPTH_OPTICAL_DEF_FRAME = "camera_depth_optical_frame"; + const char *COLOR_OPTICAL_DEF_FRAME = "camera_rgb_optical_frame"; const char *IR1_DEF_FRAME = "camera_infrared_optical_frame"; const char *IR2_DEF_FRAME = "camera_infrared2_optical_frame"; const char *DEPTH_TOPIC = "camera/depth/image_raw"; @@ -83,6 +111,7 @@ class RealsenseNodelet: public nodelet::Nodelet private: // Member Variables. boost::shared_ptr device_thread_; + boost::shared_ptr transform_thread_; rs_error *rs_error_ = 0; rs_context *rs_context_; @@ -98,12 +127,21 @@ class RealsenseNodelet: public nodelet::Nodelet bool enable_color_; bool enable_depth_; bool enable_pointcloud_; + bool enable_tf_; std::vector camera_configuration_; std::string camera_ = "R200"; const uint16_t *image_depth16_; cv::Mat image_[STREAM_COUNT]; + rs_option edge_options_[4] = { + RS_OPTION_R200_AUTO_EXPOSURE_LEFT_EDGE, + RS_OPTION_R200_AUTO_EXPOSURE_TOP_EDGE, + RS_OPTION_R200_AUTO_EXPOSURE_RIGHT_EDGE, + RS_OPTION_R200_AUTO_EXPOSURE_BOTTOM_EDGE + }; + double edge_values_[4]; + sensor_msgs::CameraInfoPtr camera_info_ptr_[STREAM_COUNT]; sensor_msgs::CameraInfo * camera_info_[STREAM_COUNT]; image_transport::CameraPublisher camera_publisher_[STREAM_COUNT]; @@ -124,6 +162,7 @@ class RealsenseNodelet: public nodelet::Nodelet double min, max, step, value; }; std::vector options; + boost::shared_ptr> dynamic_reconf_server_; // Member Functions. void check_error(); @@ -132,6 +171,7 @@ class RealsenseNodelet: public nodelet::Nodelet void prepareStreamData(rs_stream rs_strm); void publishStreams(); void publishPointCloud(cv::Mat & image_rgb); + void publishTransforms(); void devicePoll(); void allocateResources(); bool connectToCamera(); @@ -139,6 +179,7 @@ class RealsenseNodelet: public nodelet::Nodelet void getConfigValues(std::vector args); void setConfigValues(std::vector args, std::vector cam_options); bool getCameraSettings(realsense_camera::cameraConfiguration::Request & req, realsense_camera::cameraConfiguration::Response & res); + void configCallback(realsense_camera::camera_paramsConfig &config, uint32_t level); }; } diff --git a/camera/src/RealsenseNodelet_plugins.xml b/camera/src/realsense_camera_nodelet_plugins.xml similarity index 100% rename from camera/src/RealsenseNodelet_plugins.xml rename to camera/src/realsense_camera_nodelet_plugins.xml diff --git a/camera/test/README.md b/camera/test/README.md deleted file mode 100644 index d38cd299ea..0000000000 --- a/camera/test/README.md +++ /dev/null @@ -1,132 +0,0 @@ -#Intel® ROS RealSense Package - Unit Testing -###(ROS Indigo + Ubuntu 14.04 [64-bit]) -ROS node unit test (rostest + gtest): node unit tests start up "RealsenseNodelet" and test its published topics, supported parameter values and services. - -#####Building package: - -* Follow the steps in the README.md file of the ros repository. Setup ROS and create a local catkin workspace. -* To compile just realsense package, instead of catkin_make, execute following command - catkin_make --pkg realsense - -Successful execution of command will build target "utest" along with target “r200_camera_nodelet” - -#### Subscribed Topics -Color camera - - camera/color/image_raw (sensor_msgs/Image) - Color rectified image. RGB format. - camera/color/camera_info - Calibration data - -Depth camera - - camera/depth/image_raw (sensor_msgs/Image) - uint16 depths in mm - camera/depth/camera_info - Calibration data - camera/depth/points (sensor_msgs/PointCloud2) - Registered XYZRGB point cloud. - -Infrared1 camera - - camera/infrared1/image_raw (sensor_msgs/Image) - camera/infrared1/camera_info - Calibration data - -Infrared2 camera - - camera/infrared2/image_raw (sensor_msgs/Image) - camera/infrared2/camera_info - Calibration data - -####Parameters - - mode (string, default: preset) - Specify the mode to start camera streams. Mode comprises of height, width and fps. - Preset mode enables default values whereas Manual mode enables the specified parameter values. - color_height (int, default: 480) - Specify the color camera height resolution. - color_width (int, default: 640) - Specify the color camera width resolution. - depth_height (int, default: 360) - Specify the depth camera height resolution. - depth_width (int, default: 480) - Specify the depth camera width resolution. - depth_fps (int, default: 60) - Specify the color camera FPS - depth_fps (int, default: 60) - Specify the depth camera FPS - enable_depth (bool, default: 1) - Specify if to enable or not the depth camera. 1 is true. 0 is false. - enable_color (bool, default: 1) - Specify if to enable or not the color camera. 1 is true. 0 is false. - enable_pointcloud (bool, default: 1) - Specify if to enable or not the point cloud camera. 1 is true. 0 is false. - camera (string, default: "R200") - Specify the camera name. - Supported options: Here are r200 camera supported options that can be set - COLOR_BACKLIGHT_COMPENSATION : [0, 4] - COLOR_BRIGHTNESS : [0, 255] - COLOR_CONTRAST : [16, 64] - COLOR_EXPOSURE : [0, 0] - COLOR_GAIN : [0, 256] - COLOR_GAMMA : [100, 280] - COLOR_HUE : [-2200, 2200] - COLOR_SATURATION : [0, 255] - COLOR_SHARPNESS : [0, 7] - COLOR_WHITE_BALANCE : [2000, 8000] - COLOR_ENABLE_AUTO_EXPOSURE : [0, 0] - COLOR_ENABLE_AUTO_WHITE_BALANCE : [0, 1] - R200_LR_AUTO_EXPOSURE_ENABLED : [0, 1] - R200_LR_GAIN : [100, 1600] - R200_LR_EXPOSURE : [0, 333] - R200_EMITTER_ENABLED : [0, 1] - R200_DEPTH_CONTROL_PRESET : [0, 5] - R200_DEPTH_UNITS : [1, 2147483647] - R200_DEPTH_CLAMP_MIN : [0, 65535] - R200_DEPTH_CLAMP_MAX : [0, 65535] - R200_DISPARITY_MULTIPLIER : [1, 1000] - R200_DEPTH_CONTROL_ESTIMATE_MEDIAN_DECREMENT : [0 - 255] - R200_DEPTH_CONTROL_ESTIMATE_MEDIAN_INCREMENT : [0 - 255] - R200_DEPTH_CONTROL_MEDIAN_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_SCORE_MINIMUM_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_SCORE_MAXIMUM_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_TEXTURE_COUNT_THRESHOLD : [0 - 31] - R200_DEPTH_CONTROL_TEXTURE_DIFFERENCE_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_SECOND_PEAK_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_NEIGHBOR_THRESHOLD : [0 - 1023] - R200_DEPTH_CONTROL_LR_THRESHOLD : [0 - 2047] - -####Services called - get_settings (camera/get_settings) - To get supported camera options with current value set. - - -###Running the utest node -The Unit Tests can be executed using either of the methods: - -1. Using rostest command with test files - - $ rostest - e.g rostest realsense_tests_r200_depth_only.test - -2. Using rosrun command - - $ roslaunch realsense realsense_r200_launch_manual.launch - - $ rosrun realsense_tests utest - e.g rosrun realsense_tests utest enable_depth 1 depth_encoding 16UC1 depth_height 360 depth_width 480 depth_step 960 enable_color 1 color_encoding rgb8 color_height 480 color_width 640 color_step 1920 - -Sample testfiles are available in test directory - -realsense_tests_r200_color_only.test - -realsense_tests_r200_depth_only.test - -realsense_tests_r200_resolution.test - -realsense_tests_r200_settings.test - -Both of these methods first starts "RealsenseNodelet" for Intel® RealSense™ R200 (DS4) camera and then executes all the unittests. - - diff --git a/camera/test/realsense_camera_test_node.cpp b/camera/test/realsense_camera_test_node.cpp index abf88eef1c..7f84367a89 100644 --- a/camera/test/realsense_camera_test_node.cpp +++ b/camera/test/realsense_camera_test_node.cpp @@ -1,9 +1,31 @@ /****************************************************************************** - INTEL CORPORATION PROPRIETARY INFORMATION - This software is supplied under the terms of a license agreement or nondisclosure - agreement with Intel Corporation and may not be copied or disclosed except in - accordance with the terms of that agreement - Copyright(c) 2011-2016 Intel Corporation. All Rights Reserved. + Copyright (c) 2016, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *******************************************************************************/ #include "gtest/gtest.h" @@ -18,7 +40,7 @@ void imageInfrared1Callback(const sensor_msgs::ImageConstPtr & msg, const sensor long infrared1_total = 0; int infrared1_count = 1; - for (int i = 0; i < msg->height * msg->width; i++) + for (unsigned int i = 0; i < msg->height * msg->width; i++) { if (*infrared1_data > 0 && *infrared1_data < 255) { @@ -48,7 +70,7 @@ void imageInfrared2Callback(const sensor_msgs::ImageConstPtr & msg, const sensor long infrared2_total = 0; int infrared2_count = 1; - for (int i = 0; i < msg->height * msg->width; i++) + for (unsigned int i = 0; i < msg->height * msg->width; i++) { if (*infrared2_data > 0 && *infrared2_data < 255) { @@ -77,9 +99,9 @@ void imageDepthCallback(const sensor_msgs::ImageConstPtr & msg, const sensor_msg long depth_total = 0; int depth_count = 0; - for (int i = 0; i < msg->height * msg->width; ++i) + for (unsigned int i = 0; i < msg->height * msg->width; ++i) { - if (0 < *image_data <= R200_DEPTH_MAX) + if ((0 < *image_data) && (*image_data <= R200_DEPTH_MAX)) { depth_total += *image_data; depth_count++; @@ -103,34 +125,33 @@ void imageDepthCallback(const sensor_msgs::ImageConstPtr & msg, const sensor_msg depth_recv = true; } -/* - void pcCallback (const sensor_msgs::PointCloud2ConstPtr pc) - { - pcl::PointCloud < pcl::PointXYZRGB > pointcloud; - pcl::fromROSMsg (*pc, pointcloud); - - long pc_depth_total = 0; - int pc_depth_count = 0; - for (int i = 0; i < pointcloud.width * pointcloud.height; ++i) - { - pcl::PointXYZRGB point = pointcloud.points[i]; - float pc_depth = (float) std::ceil (point.z); - if (0 < pc_depth <= 10) - { - pc_depth_total += pc_depth; - pc_depth_count++; - } - } - - - if (pc_depth_count != 0) - { - pc_depth_avg = pc_depth_total / pc_depth_count; - } - - pc_recv = true; - } - */ + + void pcCallback(const sensor_msgs::PointCloud2ConstPtr pc) +{ + pcl::PointCloud < pcl::PointXYZRGB > pointcloud; + pcl::fromROSMsg(*pc, pointcloud); + + long pc_depth_total = 0; + int pc_depth_count = 0; + for (unsigned int i = 0; i < pointcloud.width * pointcloud.height; ++i) + { + pcl::PointXYZRGB point = pointcloud.points[i]; + float pc_depth = (float) std::ceil(point.z); + if ((0 < pc_depth) && (pc_depth <= R200_DEPTH_MAX)) + { + pc_depth_total += pc_depth; + pc_depth_count++; + } + } + + if (pc_depth_count != 0) + { + pc_depth_avg = pc_depth_total / pc_depth_count; + } + + pc_recv = true; +} + void imageColorCallback(const sensor_msgs::ImageConstPtr & msg, const sensor_msgs::CameraInfoConstPtr & info_msg) { @@ -139,7 +160,7 @@ void imageColorCallback(const sensor_msgs::ImageConstPtr & msg, const sensor_msg uchar *color_data = image.data; long color_total = 0; int color_count = 1; - for (int i = 0; i < msg->height * msg->width * 3; i++) + for (unsigned int i = 0; i < msg->height * msg->width * 3; i++) { if (*color_data > 0 && *color_data < 255) { @@ -340,21 +361,21 @@ TEST (RealsenseTests, testInfrared2CameraInfo) } } -/* + TEST (RealsenseTests, testPointCloud) - { - if (enable_depth) - { - ROS_INFO_STREAM ("RealSense Camera - pc_depth_avg: " << pc_depth_avg); - EXPECT_TRUE (pc_depth_avg > 0); - EXPECT_TRUE (pc_recv); - } - else - { - EXPECT_FALSE (pc_recv); - } - } - */ +{ + if (enable_depth) + { + ROS_INFO_STREAM ("RealSense Camera - pc_depth_avg: " << pc_depth_avg); + EXPECT_TRUE (pc_depth_avg > 0); + EXPECT_TRUE (pc_recv); + } + else + { + EXPECT_FALSE (pc_recv); + } +} + TEST (RealsenseTests, testCameraSettings) { @@ -376,6 +397,39 @@ TEST (RealsenseTests, testCameraSettings) } } +TEST (RealsenseTests, testTransforms) +{ + // make sure all transforms are being broadcast as expected + tf::TransformListener tf_listener; + ros::Duration(1).sleep(); // must listen for ~1 sec or tf won't be found + + EXPECT_TRUE(tf_listener.canTransform (BASE_DEF_FRAME, DEPTH_DEF_FRAME, ros::Time::now())); + EXPECT_TRUE(tf_listener.canTransform (DEPTH_DEF_FRAME, DEPTH_OPTICAL_DEF_FRAME, ros::Time::now())); + EXPECT_TRUE(tf_listener.canTransform (BASE_DEF_FRAME, COLOR_DEF_FRAME, ros::Time::now())); + EXPECT_TRUE(tf_listener.canTransform (COLOR_DEF_FRAME,COLOR_OPTICAL_DEF_FRAME, ros::Time::now())); +} + +TEST (RealsenseTests, testDynamicReconfigure) +{ + stringstream settings_ss (srv.response.configuration_str); + string setting; + string setting_name; + string setting_value; + + while (getline (settings_ss, setting, ';')) + { + stringstream setting_ss (setting); + getline (setting_ss, setting_name, ':'); + setting_value = (setting.substr (setting.rfind (":") + 1)); + if (config_args.find (setting_name) != config_args.end ()) + { + int actual_value = atoi (setting_value.c_str ()); + int expected_value = atoi (config_args.at (setting_name).c_str ()); + EXPECT_EQ (expected_value, actual_value); + } + } +} + void fillConfigMap(int argc, char **argv) { std::vector < std::string > args; @@ -398,7 +452,14 @@ void fillConfigMap(int argc, char **argv) if (config_args.find("enable_depth") != config_args.end()) { ROS_INFO ("RealSense Camera - Setting %s to %s", "enable_depth", config_args.at("enable_depth").c_str()); - enable_depth = atoi(config_args.at("enable_depth").c_str()); + if (strcmp((config_args.at("enable_depth").c_str ()),"true") == 0) + { + enable_depth = true; + } + else + { + enable_depth = false; + } } if (config_args.find("depth_encoding") != config_args.end()) { @@ -425,7 +486,14 @@ void fillConfigMap(int argc, char **argv) if (config_args.find("enable_color") != config_args.end()) { ROS_INFO ("RealSense Camera - Setting %s to %s", "enable_color", config_args.at("enable_color").c_str()); - enable_color = atoi(config_args.at("enable_color").c_str()); + if (strcmp((config_args.at("enable_color").c_str ()),"true") == 0) + { + enable_color = true; + } + else + { + enable_color = false; + } } if (config_args.find("color_encoding") != config_args.end()) { @@ -452,8 +520,6 @@ void fillConfigMap(int argc, char **argv) int main(int argc, char **argv) { - int return_value = 1; - testing::InitGoogleTest(&argc, argv); ros::init(argc, argv, "utest"); fillConfigMap(argc, argv); @@ -470,7 +536,7 @@ int main(int argc, char **argv) camera_subscriber[3] = it.subscribeCamera(IR2_TOPIC, 1, imageInfrared2Callback, 0); } - //m_sub_pc = nh.subscribe (PC_TOPIC, 1, pcCallback); + m_sub_pc = nh.subscribe (PC_TOPIC, 1, pcCallback); ros::ServiceClient client = nh.serviceClient < realsense_camera::cameraConfiguration > (SETTINGS_SERVICE); client.call(srv); diff --git a/camera/test/realsense_camera_test_node.h b/camera/test/realsense_camera_test_node.h index 607013f7ec..e2e9a5be8b 100644 --- a/camera/test/realsense_camera_test_node.h +++ b/camera/test/realsense_camera_test_node.h @@ -1,9 +1,31 @@ /****************************************************************************** - INTEL CORPORATION PROPRIETARY INFORMATION - This software is supplied under the terms of a license agreement or nondisclosure - agreement with Intel Corporation and may not be copied or disclosed except in - accordance with the terms of that agreement - Copyright(c) 2011-2016 Intel Corporation. All Rights Reserved. + Copyright (c) 2016, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *******************************************************************************/ #include @@ -28,6 +50,7 @@ #include "std_msgs/Float32MultiArray.h" #include #include +#include const char *DEPTH_TOPIC = "camera/depth/image_raw"; const char *COLOR_TOPIC = "camera/color/image_raw"; @@ -38,6 +61,12 @@ const char *SETTINGS_SERVICE = "camera/get_settings"; const char *R200 = "R200"; const int R200_DEPTH_MAX = 10000; +const char *BASE_DEF_FRAME = "camera_link"; +const char *DEPTH_DEF_FRAME = "camera_depth_frame"; +const char *COLOR_DEF_FRAME = "camera_rgb_frame"; +const char *DEPTH_OPTICAL_DEF_FRAME = "camera_depth_optical_frame"; +const char *COLOR_OPTICAL_DEF_FRAME = "camera_rgb_optical_frame"; + //utest commandline args int color_height_exp = 0; int color_width_exp = 0; diff --git a/camera/test/realsense_camera_test_rgbd_node.cpp b/camera/test/realsense_camera_test_rgbd_node.cpp new file mode 100644 index 0000000000..d3cf52ecca --- /dev/null +++ b/camera/test/realsense_camera_test_rgbd_node.cpp @@ -0,0 +1,232 @@ +/****************************************************************************** + Copyright (c) 2016, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + *******************************************************************************/ + +#include "realsense_camera_test_rgbd_node.h" +using namespace std; + +void topic0Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_0_recv = true; + } +} + +void topic1Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_1_recv = true; + } +} + +void topic2Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_2_recv = true; + } +} + +void topic3Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_3_recv = true; + } +} + +void topic4Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_4_recv = true; + } +} + +void topic5Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_5_recv = true; + } +} + +void topic6Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_6_recv = true; + } +} + +void topic7Callback(const sensor_msgs::PointCloud2ConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_7_recv = true; + } +} + +void topic8Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_8_recv = true; + } +} + +void topic9Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_9_recv = true; + } +} + +void topic10Callback(const sensor_msgs::CameraInfoConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_10_recv = true; + } +} + +void topic11Callback(const sensor_msgs::PointCloud2ConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_11_recv = true; + } +} + +void topic12Callback(const sensor_msgs::ImageConstPtr msg) +{ + if ((msg->height != 0) && (msg->width != 0)) + { + topic_12_recv = true; + } +} + +TEST (RealsenseTests, RGB_IMAGE_MONO) +{ + EXPECT_TRUE (topic_0_recv); +} + +TEST (RealsenseTests, RGB_IMAGE_COLOR) +{ + EXPECT_TRUE (topic_1_recv); +} + +TEST (RealsenseTests, RGB_IMAGE_RECT_MONO) +{ + EXPECT_TRUE (topic_2_recv); +} + +TEST (RealsenseTests, RGB_IMAGE_RECT_COLOR) +{ + EXPECT_TRUE (topic_3_recv); +} + +TEST (RealsenseTests, DEPTH_IMAGE_RECT_RAW) +{ + EXPECT_TRUE (topic_4_recv); +} + +TEST (RealsenseTests, DEPTH_IMAGE_RECT) +{ + EXPECT_TRUE (topic_5_recv); +} + +TEST (RealsenseTests, DEPTH_IMAGE) +{ + EXPECT_TRUE (topic_6_recv); +} + +TEST (RealsenseTests, DEPTH_POINTS) +{ + EXPECT_TRUE (topic_7_recv); +} + +TEST (RealsenseTests, IR_IMAGE_RECT_IR) +{ + EXPECT_TRUE (topic_8_recv); +} + +TEST (RealsenseTests, DEPTH_REG_SW_REG_IMAGE_RECT_RAW) +{ + EXPECT_TRUE (topic_9_recv); +} + +TEST (RealsenseTests, DEPTH_REG_SW_REG_CAMERA_INFO) +{ + EXPECT_TRUE (topic_10_recv); +} + +TEST (RealsenseTests, DEPTH_REG_POINTS) +{ + EXPECT_TRUE (topic_11_recv); +} + +TEST (RealsenseTests, DEPTH_REG_SW_REG_IMAGE_RECT) +{ + EXPECT_TRUE (topic_12_recv); +} + +int main(int argc, char **argv) +{ + testing::InitGoogleTest(&argc, argv); + ros::init(argc, argv, "utest"); + + ROS_INFO_STREAM("RealSense Camera - Starting rgbd_launch Tests..."); + + ros::NodeHandle nh; + + subscriber[0] = nh.subscribe < sensor_msgs::Image > (RGB_IMAGE_MONO, 1, topic0Callback, 0); + subscriber[1] = nh.subscribe < sensor_msgs::Image > (RGB_IMAGE_COLOR, 1, topic1Callback, 0); + subscriber[2] = nh.subscribe < sensor_msgs::Image > (RGB_IMAGE_RECT_MONO, 1, topic2Callback, 0); + subscriber[3] = nh.subscribe < sensor_msgs::Image > (RGB_IMAGE_RECT_COLOR, 1, topic3Callback, 0); + subscriber[4] = nh.subscribe < sensor_msgs::Image > (DEPTH_IMAGE_RECT_RAW, 1, topic4Callback, 0); + subscriber[5] = nh.subscribe < sensor_msgs::Image > (DEPTH_IMAGE_RECT, 1, topic5Callback, 0); + subscriber[6] = nh.subscribe < sensor_msgs::Image > (DEPTH_IMAGE, 1, topic6Callback, 0); + subscriber[7] = nh.subscribe < sensor_msgs::PointCloud2 > (DEPTH_POINTS, 1, topic7Callback); + subscriber[8] = nh.subscribe < sensor_msgs::Image > (IR_IMAGE_RECT_IR, 1, topic8Callback, 0); + subscriber[9] = nh.subscribe < sensor_msgs::Image > (DEPTH_REG_SW_REG_IMAGE_RECT_RAW, 1, topic9Callback, 0); + subscriber[10] = nh.subscribe < sensor_msgs::CameraInfo > (DEPTH_REG_SW_REG_CAMERA_INFO, 1, topic10Callback); + subscriber[11] = nh.subscribe < sensor_msgs::PointCloud2 > (DEPTH_REG_POINTS, 1, topic11Callback, 0); + subscriber[12] = nh.subscribe < sensor_msgs::Image > (DEPTH_REG_SW_REG_IMAGE_RECT, 1, topic12Callback, 0); + + ros::Duration duration; + duration.sec = 10; + duration.sleep(); + ros::spinOnce(); + + return RUN_ALL_TESTS(); +} diff --git a/camera/test/realsense_camera_test_rgbd_node.h b/camera/test/realsense_camera_test_rgbd_node.h new file mode 100644 index 0000000000..1f4713e491 --- /dev/null +++ b/camera/test/realsense_camera_test_rgbd_node.h @@ -0,0 +1,68 @@ +/****************************************************************************** + Copyright (c) 2016, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + *******************************************************************************/ + +#include +#include +#include +#include +#include +#include + +const static int TOPIC_COUNT = 13; + +const char *RGB_IMAGE_MONO = "/camera/rgb/image_mono"; +const char *RGB_IMAGE_COLOR = "/camera/rgb/image_color"; +const char *RGB_IMAGE_RECT_MONO = "/camera/rgb/image_rect_mono"; +const char *RGB_IMAGE_RECT_COLOR = "/camera/rgb/image_rect_color"; +const char *DEPTH_IMAGE_RECT_RAW = "/camera/depth/image_rect_raw"; +const char *DEPTH_IMAGE_RECT = "/camera/depth/image_rect"; +const char *DEPTH_IMAGE = "/camera/depth/image"; +const char *DEPTH_POINTS = "/camera/depth/points"; +const char *IR_IMAGE_RECT_IR = "/camera/ir/image_rect_ir"; +const char *DEPTH_REG_SW_REG_IMAGE_RECT_RAW = "/camera/depth_registered/sw_registered/image_rect_raw"; +const char *DEPTH_REG_SW_REG_CAMERA_INFO = "/camera/depth_registered/sw_registered/camera_info"; +const char *DEPTH_REG_POINTS = "/camera/depth_registered/points"; +const char *DEPTH_REG_SW_REG_IMAGE_RECT = "/camera/depth_registered/sw_registered/image_rect"; + +bool topic_0_recv = false; +bool topic_1_recv = false; +bool topic_2_recv = false; +bool topic_3_recv = false; +bool topic_4_recv = false; +bool topic_5_recv = false; +bool topic_6_recv = false; +bool topic_7_recv = false; +bool topic_8_recv = false; +bool topic_9_recv = false; +bool topic_10_recv = false; +bool topic_11_recv = false; +bool topic_12_recv = false; + +ros::Subscriber subscriber[TOPIC_COUNT]; diff --git a/camera/test/realsense_r200_color_only.test b/camera/test/realsense_r200_color_only.test index 76f5a34472..99150176ac 100644 --- a/camera/test/realsense_r200_color_only.test +++ b/camera/test/realsense_r200_color_only.test @@ -1,10 +1,10 @@ - + + - + - + args="enable_depth false enable_color true" /> + diff --git a/camera/test/realsense_r200_depth_only.test b/camera/test/realsense_r200_depth_only.test index d3046af01d..66423cc13e 100644 --- a/camera/test/realsense_r200_depth_only.test +++ b/camera/test/realsense_r200_depth_only.test @@ -1,12 +1,10 @@ - - - - + + + args="enable_depth true enable_color false" /> diff --git a/camera/test/realsense_r200_resolution.test b/camera/test/realsense_r200_resolution.test index 57584445f8..65d893ed8d 100644 --- a/camera/test/realsense_r200_resolution.test +++ b/camera/test/realsense_r200_resolution.test @@ -1,15 +1,14 @@ - - + - + - + - - + args="color_height 1080 color_width 1920 depth_height 468 depth_width 628 color_fps 30 depth_fps 30" /> + diff --git a/camera/test/realsense_r200_rgbd.test b/camera/test/realsense_r200_rgbd.test new file mode 100644 index 0000000000..8832e12d12 --- /dev/null +++ b/camera/test/realsense_r200_rgbd.test @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/camera/test/realsense_r200_settings.test b/camera/test/realsense_r200_settings.test deleted file mode 100644 index 6ad0ed7888..0000000000 --- a/camera/test/realsense_r200_settings.test +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -