file_path
stringlengths 32
153
| content
stringlengths 0
3.14M
|
---|---|
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/PACKAGE-LICENSES/omni.kit.property.usd_clipboard_test-LICENSE.md | Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related documentation without an express
license agreement from NVIDIA CORPORATION is strictly prohibited. |
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/config/extension.toml | [package]
# Semantic Versioning is used: https://semver.org/
version = "1.0.1"
category = "Internal"
# Lists people or organizations that are considered the "authors" of the package.
authors = ["NVIDIA"]
# The title and description fields are primarly for displaying extension info in UI
title = "USD Property Clipboard Tests"
description="Clipboard tests that relate to usd properties and need to show a window."
# URL of the extension source repository.
repository = ""
# Preview image. Folder named "data" automatically goes in git lfs (see .gitattributes file).
preview_image = "data/preview.png"
# Icon is shown in Extensions window, it is recommended to be square, of size 256x256.
icon = "data/icon.png"
# Keywords for the extension
keywords = ["kit", "usd", "property"]
# Location of change log file in target (final) folder of extension, relative to the root.
# More info on writing changelog: https://keepachangelog.com/en/1.0.0/
changelog="docs/CHANGELOG.md"
# Path (relative to the root) or content of readme markdown file for UI.
readme = "docs/README.md"
[dependencies]
"omni.usd" = {}
"omni.ui" = {}
"omni.kit.window.property" = {}
"omni.kit.widget.stage" = {}
"omni.kit.context_menu" = {}
# Main python module this extension provides, it will be publicly available as "import omni.kit.property.usd".
[[python.module]]
name = "omni.kit.property.usd_clipboard_test"
[[test]]
timeout = 1200
args = [
"--/renderer/enabled=pxr",
"--/renderer/active=pxr",
"--/renderer/multiGpu/enabled=false",
"--/renderer/multiGpu/autoEnable=false", # Disable mGPU with PXR due to OM-51026, OM-53611
"--/renderer/multiGpu/maxGpuCount=1",
"--/app/asyncRendering=false",
"--/app/window/dpiScaleOverride=1.0",
"--/app/window/scaleToMonitor=false",
"--/app/file/ignoreUnsavedOnExit=true",
"--/persistent/app/stage/dragDropImport='reference'",
"--/persistent/app/material/dragDropMaterialPath='absolute'",
"--/persistent/app/omniverse/filepicker/options_menu/show_details=false",
# "--no-window" - NOTE: using no-window causes exception in MousePressed cast function
]
dependencies = [
"omni.hydra.pxr",
"omni.usd",
"omni.kit.window.content_browser",
"omni.kit.window.stage",
"omni.kit.property.material",
"omni.kit.ui_test",
"omni.kit.test_suite.helpers",
"omni.kit.window.viewport",
]
stdoutFailPatterns.exclude = [
"*HydraRenderer failed to render this frame*", # Can drop a frame or two rendering with OpenGL interop
"*Cannot use omni.hydra.pxr without OpenGL interop*" # Linux TC configs with multi-GPU might not have OpenGL available
]
|
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/omni/kit/property/usd_clipboard_test/__init__.py | |
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/omni/kit/property/usd_clipboard_test/tests/__init__.py | from .test_property_context_menu import *
|
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/omni/kit/property/usd_clipboard_test/tests/test_property_context_menu.py | ## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
##
## NVIDIA CORPORATION and its licensors retain all intellectual property
## and proprietary rights in and to this software, related documentation
## and any modifications thereto. Any use, reproduction, disclosure or
## distribution of this software and related documentation without an express
## license agreement from NVIDIA CORPORATION is strictly prohibited.
##
import omni.kit.test
import os
import sys
import unittest
import omni.kit.app
import omni.kit.window.property.managed_frame
from omni.kit.test.async_unittest import AsyncTestCase
import omni.usd
from omni.kit import ui_test
from pxr import Gf
from omni.kit.test_suite.helpers import (
open_stage,
get_test_data_path,
select_prims,
wait_stage_loading,
arrange_windows
)
class PropertyContextMenu(AsyncTestCase):
# Before running each test
async def setUp(self):
await arrange_windows("Stage", 64)
await open_stage(get_test_data_path(__name__, "usd/bound_shapes.usda"))
omni.kit.window.property.managed_frame.reset_collapsed_state()
omni.kit.window.property.managed_frame.set_collapsed_state("Property/Raw USD Properties", False)
# After running each test
async def tearDown(self):
await wait_stage_loading()
omni.kit.window.property.managed_frame.reset_collapsed_state()
# @unittest.skipIf(sys.platform.startswith("linux"), "Pyperclip fails on some TeamCity agents")
async def test_property_context_menu(self):
await ui_test.find("Content").focus()
stage_window = ui_test.find("Stage")
await stage_window.focus()
usd_context = omni.usd.get_context()
stage = usd_context.get_stage()
await wait_stage_loading()
# get prim attributes
cube_attr = stage.GetPrimAtPath("/World/Cube").GetAttribute('xformOp:translate')
cone_attr = stage.GetPrimAtPath("/World/Cone").GetAttribute('xformOp:translate')
# verify transforms different
self.assertEqual(cube_attr.Get(), Gf.Vec3d(119.899608, -1.138346, -118.761261))
self.assertEqual(cone_attr.Get(), Gf.Vec3d( 0.0, 0.0, 0.0))
# select cube
await select_prims(["/World/Cube"])
await ui_test.human_delay()
# scroll window to xformOp:translate
ui_test.find("Property//Frame/**/Label[*].text=='xformOp:translate'").widget.scroll_here_y(0.5)
await ui_test.human_delay()
# right click on xformOp:translate
await ui_test.find("Property//Frame/**/Label[*].text=='xformOp:translate'").click(right_click=True)
await ui_test.human_delay()
# context menu copy
await ui_test.select_context_menu("Copy", offset=ui_test.Vec2(10, 10))
# select cone
await select_prims(["/World/Cone"])
await ui_test.human_delay()
# scroll window to xformOp:translate
ui_test.find("Property//Frame/**/Label[*].text=='xformOp:translate'").widget.scroll_here_y(0.5)
await ui_test.human_delay()
# right click on xformOp:translate
await ui_test.find("Property//Frame/**/Label[*].text=='xformOp:translate'").click(right_click=True)
await ui_test.human_delay()
# context menu paste
await ui_test.select_context_menu("Paste", offset=ui_test.Vec2(10, 10))
# verify transforms same
self.assertEqual(cube_attr.Get(), Gf.Vec3d(119.899608, -1.138346, -118.761261))
self.assertEqual(cone_attr.Get(), Gf.Vec3d(119.899608, -1.138346, -118.761261))
async def test_property_context_menu_paste(self):
await ui_test.find("Content").focus()
stage_window = ui_test.find("Stage")
await stage_window.focus()
usd_context = omni.usd.get_context()
stage = usd_context.get_stage()
await wait_stage_loading()
# select cube
await select_prims(["/World/Cube"])
await ui_test.human_delay(10)
# scroll window to xformOp:translate
ui_test.find("Property//Frame/**/Label[*].text=='xformOp:translate'").widget.scroll_here_y(0.5)
await ui_test.human_delay()
# verify code on clipbaord is NOT getting executed
omni.kit.clipboard.copy("omni.kit.stage_templates.new_stage()")
# right click on xformOp:translate
await ui_test.find("Property//Frame/**/Label[*].text=='xformOp:translate'").click(right_click=True)
await ui_test.human_delay()
await ui_test.find("Property//Frame/**/Label[*].text=='xformOp:translate'").click()
# if code was executed a new stage will have been created, so verify prims
await ui_test.human_delay(250)
prims = [prim.GetPath().pathString for prim in stage.TraverseAll() if not omni.usd.is_hidden_type(prim)]
prims.sort()
self.assertEqual(prims, ['/World', '/World/Cone', '/World/Cube', '/World/Cylinder', '/World/Looks', '/World/Looks/OmniGlass', '/World/Looks/OmniGlass/Shader', '/World/Looks/OmniPBR', '/World/Looks/OmniPBR/Shader', '/World/Looks/OmniSurface_Plastic', '/World/Looks/OmniSurface_Plastic/Shader', '/World/Sphere', '/World/defaultLight'])
|
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/docs/CHANGELOG.md | # Changelog
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [1.0.1] - 2022-12-21
### Added
- Stabillity fix
## [1.0.0] - 2022-11-28
### Added
- Test added.
|
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/docs/README.md | # omni.kit.property.usd_clipboard_test
## Introduction
This extension is used purely for holding tests for omni.kit.property.usd, that need to show a real window during automated tests. Mostly this is because the clipboard copy and paste code needs to have an actual window.
|
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/docs/index.rst | omni.kit.property.usd_clipboard_test: USD Property Clipboard Test Extension
###########################################################################
.. toctree::
:maxdepth: 1
CHANGELOG
USD Property Widget
===================
.. automodule:: omni.kit.property.usd_clipboard_test
:platform: Windows-x86_64, Linux-x86_64
:members:
:undoc-members:
:show-inheritance:
|
omniverse-code/kit/exts/omni.kit.property.usd_clipboard_test/data/tests/usd/bound_shapes.usda | #usda 1.0
(
customLayerData = {
dictionary cameraSettings = {
dictionary Front = {
double3 position = (0, 0, 50000)
double radius = 500
}
dictionary Perspective = {
double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998)
double3 target = (0, 0, 0)
}
dictionary Right = {
double3 position = (-50000, 0, -1.1102230246251565e-11)
double radius = 500
}
dictionary Top = {
double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11)
double radius = 500
}
string boundCamera = "/OmniverseKit_Persp"
}
dictionary omni_layer = {
dictionary muteness = {
}
}
dictionary renderSettings = {
}
}
defaultPrim = "World"
endTimeCode = 100
metersPerUnit = 0.01
startTimeCode = 0
timeCodesPerSecond = 24
upAxis = "Y"
)
def Xform "World"
{
def DistantLight "defaultLight" (
prepend apiSchemas = ["ShapingAPI"]
)
{
float angle = 1
float intensity = 3000
float shaping:cone:angle = 180
float shaping:cone:softness
float shaping:focus
color3f shaping:focusTint
asset shaping:ies:file
double3 xformOp:rotateXYZ = (315, 0, 0)
double3 xformOp:scale = (1, 1, 1)
double3 xformOp:translate = (0, 0, 0)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
def Mesh "Cone"
{
int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161]
rel material:binding = </World/Looks/OmniPBR> (
bindMaterialAs = "weakerThanDescendants"
)
normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] (
interpolation = "faceVarying"
)
point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)]
float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] (
interpolation = "faceVarying"
)
uniform token subdivisionScheme = "none"
double3 xformOp:rotateXYZ = (0, 0, 0)
double3 xformOp:scale = (1, 1, 1)
double3 xformOp:translate = (0, 0, 0)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
def Mesh "Cube"
{
int[] faceVertexCounts = [4, 4, 4, 4, 4, 4]
int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5]
rel material:binding = </World/Looks/OmniGlass> (
bindMaterialAs = "weakerThanDescendants"
)
normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (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, 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)] (
interpolation = "faceVarying"
)
point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)]
float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] (
interpolation = "faceVarying"
)
uniform token subdivisionScheme = "none"
double3 xformOp:rotateXYZ = (0, 0, 0)
double3 xformOp:scale = (1, 1, 1)
double3 xformOp:translate = (119.899608, -1.138346, -118.761261)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
def Mesh "Sphere"
{
int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
int[] faceVertexIndices = [0, 1, 2, 0, 2, 3, 0, 3, 4, 0, 4, 5, 0, 5, 6, 0, 6, 7, 0, 7, 8, 0, 8, 9, 0, 9, 10, 0, 10, 11, 0, 11, 12, 0, 12, 13, 0, 13, 14, 0, 14, 15, 0, 15, 16, 0, 16, 17, 0, 17, 18, 0, 18, 19, 0, 19, 20, 0, 20, 21, 0, 21, 22, 0, 22, 23, 0, 23, 24, 0, 24, 25, 0, 25, 26, 0, 26, 27, 0, 27, 28, 0, 28, 29, 0, 29, 30, 0, 30, 31, 0, 31, 32, 0, 32, 33, 0, 33, 34, 0, 34, 35, 0, 35, 36, 0, 36, 37, 0, 37, 38, 0, 38, 39, 0, 39, 40, 0, 40, 41, 0, 41, 42, 0, 42, 43, 0, 43, 44, 0, 44, 45, 0, 45, 46, 0, 46, 47, 0, 47, 48, 0, 48, 49, 0, 49, 50, 0, 50, 51, 0, 51, 52, 0, 52, 53, 0, 53, 54, 0, 54, 55, 0, 55, 56, 0, 56, 57, 0, 57, 58, 0, 58, 59, 0, 59, 60, 0, 60, 61, 0, 61, 62, 0, 62, 63, 0, 63, 64, 0, 64, 65, 0, 65, 66, 0, 66, 67, 0, 67, 68, 0, 68, 69, 0, 69, 70, 0, 70, 71, 0, 71, 72, 0, 72, 73, 0, 73, 74, 0, 74, 75, 0, 75, 76, 0, 76, 77, 0, 77, 78, 0, 78, 79, 0, 79, 80, 0, 80, 81, 0, 81, 82, 0, 82, 83, 0, 83, 84, 0, 84, 85, 0, 85, 86, 0, 86, 87, 0, 87, 88, 0, 88, 89, 0, 89, 90, 0, 90, 91, 0, 91, 92, 0, 92, 93, 0, 93, 94, 0, 94, 95, 0, 95, 96, 0, 96, 97, 0, 97, 98, 0, 98, 99, 0, 99, 100, 0, 100, 101, 0, 101, 102, 0, 102, 103, 0, 103, 104, 0, 104, 105, 0, 105, 106, 0, 106, 107, 0, 107, 108, 0, 108, 109, 0, 109, 110, 0, 110, 111, 0, 111, 112, 0, 112, 113, 0, 113, 114, 0, 114, 115, 0, 115, 116, 0, 116, 117, 0, 117, 118, 0, 118, 119, 0, 119, 120, 0, 120, 1, 1, 121, 122, 2, 2, 122, 123, 3, 3, 123, 124, 4, 4, 124, 125, 5, 5, 125, 126, 6, 6, 126, 127, 7, 7, 127, 128, 8, 8, 128, 129, 9, 9, 129, 130, 10, 10, 130, 131, 11, 11, 131, 132, 12, 12, 132, 133, 13, 13, 133, 134, 14, 14, 134, 135, 15, 15, 135, 136, 16, 16, 136, 137, 17, 17, 137, 138, 18, 18, 138, 139, 19, 19, 139, 140, 20, 20, 140, 141, 21, 21, 141, 142, 22, 22, 142, 143, 23, 23, 143, 144, 24, 24, 144, 145, 25, 25, 145, 146, 26, 26, 146, 147, 27, 27, 147, 148, 28, 28, 148, 149, 29, 29, 149, 150, 30, 30, 150, 151, 31, 31, 151, 152, 32, 32, 152, 153, 33, 33, 153, 154, 34, 34, 154, 155, 35, 35, 155, 156, 36, 36, 156, 157, 37, 37, 157, 158, 38, 38, 158, 159, 39, 39, 159, 160, 40, 40, 160, 161, 41, 41, 161, 162, 42, 42, 162, 163, 43, 43, 163, 164, 44, 44, 164, 165, 45, 45, 165, 166, 46, 46, 166, 167, 47, 47, 167, 168, 48, 48, 168, 169, 49, 49, 169, 170, 50, 50, 170, 171, 51, 51, 171, 172, 52, 52, 172, 173, 53, 53, 173, 174, 54, 54, 174, 175, 55, 55, 175, 176, 56, 56, 176, 177, 57, 57, 177, 178, 58, 58, 178, 179, 59, 59, 179, 180, 60, 60, 180, 181, 61, 61, 181, 182, 62, 62, 182, 183, 63, 63, 183, 184, 64, 64, 184, 185, 65, 65, 185, 186, 66, 66, 186, 187, 67, 67, 187, 188, 68, 68, 188, 189, 69, 69, 189, 190, 70, 70, 190, 191, 71, 71, 191, 192, 72, 72, 192, 193, 73, 73, 193, 194, 74, 74, 194, 195, 75, 75, 195, 196, 76, 76, 196, 197, 77, 77, 197, 198, 78, 78, 198, 199, 79, 79, 199, 200, 80, 80, 200, 201, 81, 81, 201, 202, 82, 82, 202, 203, 83, 83, 203, 204, 84, 84, 204, 205, 85, 85, 205, 206, 86, 86, 206, 207, 87, 87, 207, 208, 88, 88, 208, 209, 89, 89, 209, 210, 90, 90, 210, 211, 91, 91, 211, 212, 92, 92, 212, 213, 93, 93, 213, 214, 94, 94, 214, 215, 95, 95, 215, 216, 96, 96, 216, 217, 97, 97, 217, 218, 98, 98, 218, 219, 99, 99, 219, 220, 100, 100, 220, 221, 101, 101, 221, 222, 102, 102, 222, 223, 103, 103, 223, 224, 104, 104, 224, 225, 105, 105, 225, 226, 106, 106, 226, 227, 107, 107, 227, 228, 108, 108, 228, 229, 109, 109, 229, 230, 110, 110, 230, 231, 111, 111, 231, 232, 112, 112, 232, 233, 113, 113, 233, 234, 114, 114, 234, 235, 115, 115, 235, 236, 116, 116, 236, 237, 117, 117, 237, 238, 118, 118, 238, 239, 119, 119, 239, 240, 120, 120, 240, 121, 1, 121, 241, 242, 122, 122, 242, 243, 123, 123, 243, 244, 124, 124, 244, 245, 125, 125, 245, 246, 126, 126, 246, 247, 127, 127, 247, 248, 128, 128, 248, 249, 129, 129, 249, 250, 130, 130, 250, 251, 131, 131, 251, 252, 132, 132, 252, 253, 133, 133, 253, 254, 134, 134, 254, 255, 135, 135, 255, 256, 136, 136, 256, 257, 137, 137, 257, 258, 138, 138, 258, 259, 139, 139, 259, 260, 140, 140, 260, 261, 141, 141, 261, 262, 142, 142, 262, 263, 143, 143, 263, 264, 144, 144, 264, 265, 145, 145, 265, 266, 146, 146, 266, 267, 147, 147, 267, 268, 148, 148, 268, 269, 149, 149, 269, 270, 150, 150, 270, 271, 151, 151, 271, 272, 152, 152, 272, 273, 153, 153, 273, 274, 154, 154, 274, 275, 155, 155, 275, 276, 156, 156, 276, 277, 157, 157, 277, 278, 158, 158, 278, 279, 159, 159, 279, 280, 160, 160, 280, 281, 161, 161, 281, 282, 162, 162, 282, 283, 163, 163, 283, 284, 164, 164, 284, 285, 165, 165, 285, 286, 166, 166, 286, 287, 167, 167, 287, 288, 168, 168, 288, 289, 169, 169, 289, 290, 170, 170, 290, 291, 171, 171, 291, 292, 172, 172, 292, 293, 173, 173, 293, 294, 174, 174, 294, 295, 175, 175, 295, 296, 176, 176, 296, 297, 177, 177, 297, 298, 178, 178, 298, 299, 179, 179, 299, 300, 180, 180, 300, 301, 181, 181, 301, 302, 182, 182, 302, 303, 183, 183, 303, 304, 184, 184, 304, 305, 185, 185, 305, 306, 186, 186, 306, 307, 187, 187, 307, 308, 188, 188, 308, 309, 189, 189, 309, 310, 190, 190, 310, 311, 191, 191, 311, 312, 192, 192, 312, 313, 193, 193, 313, 314, 194, 194, 314, 315, 195, 195, 315, 316, 196, 196, 316, 317, 197, 197, 317, 318, 198, 198, 318, 319, 199, 199, 319, 320, 200, 200, 320, 321, 201, 201, 321, 322, 202, 202, 322, 323, 203, 203, 323, 324, 204, 204, 324, 325, 205, 205, 325, 326, 206, 206, 326, 327, 207, 207, 327, 328, 208, 208, 328, 329, 209, 209, 329, 330, 210, 210, 330, 331, 211, 211, 331, 332, 212, 212, 332, 333, 213, 213, 333, 334, 214, 214, 334, 335, 215, 215, 335, 336, 216, 216, 336, 337, 217, 217, 337, 338, 218, 218, 338, 339, 219, 219, 339, 340, 220, 220, 340, 341, 221, 221, 341, 342, 222, 222, 342, 343, 223, 223, 343, 344, 224, 224, 344, 345, 225, 225, 345, 346, 226, 226, 346, 347, 227, 227, 347, 348, 228, 228, 348, 349, 229, 229, 349, 350, 230, 230, 350, 351, 231, 231, 351, 352, 232, 232, 352, 353, 233, 233, 353, 354, 234, 234, 354, 355, 235, 235, 355, 356, 236, 236, 356, 357, 237, 237, 357, 358, 238, 238, 358, 359, 239, 239, 359, 360, 240, 240, 360, 241, 121, 241, 361, 362, 242, 242, 362, 363, 243, 243, 363, 364, 244, 244, 364, 365, 245, 245, 365, 366, 246, 246, 366, 367, 247, 247, 367, 368, 248, 248, 368, 369, 249, 249, 369, 370, 250, 250, 370, 371, 251, 251, 371, 372, 252, 252, 372, 373, 253, 253, 373, 374, 254, 254, 374, 375, 255, 255, 375, 376, 256, 256, 376, 377, 257, 257, 377, 378, 258, 258, 378, 379, 259, 259, 379, 380, 260, 260, 380, 381, 261, 261, 381, 382, 262, 262, 382, 383, 263, 263, 383, 384, 264, 264, 384, 385, 265, 265, 385, 386, 266, 266, 386, 387, 267, 267, 387, 388, 268, 268, 388, 389, 269, 269, 389, 390, 270, 270, 390, 391, 271, 271, 391, 392, 272, 272, 392, 393, 273, 273, 393, 394, 274, 274, 394, 395, 275, 275, 395, 396, 276, 276, 396, 397, 277, 277, 397, 398, 278, 278, 398, 399, 279, 279, 399, 400, 280, 280, 400, 401, 281, 281, 401, 402, 282, 282, 402, 403, 283, 283, 403, 404, 284, 284, 404, 405, 285, 285, 405, 406, 286, 286, 406, 407, 287, 287, 407, 408, 288, 288, 408, 409, 289, 289, 409, 410, 290, 290, 410, 411, 291, 291, 411, 412, 292, 292, 412, 413, 293, 293, 413, 414, 294, 294, 414, 415, 295, 295, 415, 416, 296, 296, 416, 417, 297, 297, 417, 418, 298, 298, 418, 419, 299, 299, 419, 420, 300, 300, 420, 421, 301, 301, 421, 422, 302, 302, 422, 423, 303, 303, 423, 424, 304, 304, 424, 425, 305, 305, 425, 426, 306, 306, 426, 427, 307, 307, 427, 428, 308, 308, 428, 429, 309, 309, 429, 430, 310, 310, 430, 431, 311, 311, 431, 432, 312, 312, 432, 433, 313, 313, 433, 434, 314, 314, 434, 435, 315, 315, 435, 436, 316, 316, 436, 437, 317, 317, 437, 438, 318, 318, 438, 439, 319, 319, 439, 440, 320, 320, 440, 441, 321, 321, 441, 442, 322, 322, 442, 443, 323, 323, 443, 444, 324, 324, 444, 445, 325, 325, 445, 446, 326, 326, 446, 447, 327, 327, 447, 448, 328, 328, 448, 449, 329, 329, 449, 450, 330, 330, 450, 451, 331, 331, 451, 452, 332, 332, 452, 453, 333, 333, 453, 454, 334, 334, 454, 455, 335, 335, 455, 456, 336, 336, 456, 457, 337, 337, 457, 458, 338, 338, 458, 459, 339, 339, 459, 460, 340, 340, 460, 461, 341, 341, 461, 462, 342, 342, 462, 463, 343, 343, 463, 464, 344, 344, 464, 465, 345, 345, 465, 466, 346, 346, 466, 467, 347, 347, 467, 468, 348, 348, 468, 469, 349, 349, 469, 470, 350, 350, 470, 471, 351, 351, 471, 472, 352, 352, 472, 473, 353, 353, 473, 474, 354, 354, 474, 475, 355, 355, 475, 476, 356, 356, 476, 477, 357, 357, 477, 478, 358, 358, 478, 479, 359, 359, 479, 480, 360, 360, 480, 361, 241, 361, 481, 482, 362, 362, 482, 483, 363, 363, 483, 484, 364, 364, 484, 485, 365, 365, 485, 486, 366, 366, 486, 487, 367, 367, 487, 488, 368, 368, 488, 489, 369, 369, 489, 490, 370, 370, 490, 491, 371, 371, 491, 492, 372, 372, 492, 493, 373, 373, 493, 494, 374, 374, 494, 495, 375, 375, 495, 496, 376, 376, 496, 497, 377, 377, 497, 498, 378, 378, 498, 499, 379, 379, 499, 500, 380, 380, 500, 501, 381, 381, 501, 502, 382, 382, 502, 503, 383, 383, 503, 504, 384, 384, 504, 505, 385, 385, 505, 506, 386, 386, 506, 507, 387, 387, 507, 508, 388, 388, 508, 509, 389, 389, 509, 510, 390, 390, 510, 511, 391, 391, 511, 512, 392, 392, 512, 513, 393, 393, 513, 514, 394, 394, 514, 515, 395, 395, 515, 516, 396, 396, 516, 517, 397, 397, 517, 518, 398, 398, 518, 519, 399, 399, 519, 520, 400, 400, 520, 521, 401, 401, 521, 522, 402, 402, 522, 523, 403, 403, 523, 524, 404, 404, 524, 525, 405, 405, 525, 526, 406, 406, 526, 527, 407, 407, 527, 528, 408, 408, 528, 529, 409, 409, 529, 530, 410, 410, 530, 531, 411, 411, 531, 532, 412, 412, 532, 533, 413, 413, 533, 534, 414, 414, 534, 535, 415, 415, 535, 536, 416, 416, 536, 537, 417, 417, 537, 538, 418, 418, 538, 539, 419, 419, 539, 540, 420, 420, 540, 541, 421, 421, 541, 542, 422, 422, 542, 543, 423, 423, 543, 544, 424, 424, 544, 545, 425, 425, 545, 546, 426, 426, 546, 547, 427, 427, 547, 548, 428, 428, 548, 549, 429, 429, 549, 550, 430, 430, 550, 551, 431, 431, 551, 552, 432, 432, 552, 553, 433, 433, 553, 554, 434, 434, 554, 555, 435, 435, 555, 556, 436, 436, 556, 557, 437, 437, 557, 558, 438, 438, 558, 559, 439, 439, 559, 560, 440, 440, 560, 561, 441, 441, 561, 562, 442, 442, 562, 563, 443, 443, 563, 564, 444, 444, 564, 565, 445, 445, 565, 566, 446, 446, 566, 567, 447, 447, 567, 568, 448, 448, 568, 569, 449, 449, 569, 570, 450, 450, 570, 571, 451, 451, 571, 572, 452, 452, 572, 573, 453, 453, 573, 574, 454, 454, 574, 575, 455, 455, 575, 576, 456, 456, 576, 577, 457, 457, 577, 578, 458, 458, 578, 579, 459, 459, 579, 580, 460, 460, 580, 581, 461, 461, 581, 582, 462, 462, 582, 583, 463, 463, 583, 584, 464, 464, 584, 585, 465, 465, 585, 586, 466, 466, 586, 587, 467, 467, 587, 588, 468, 468, 588, 589, 469, 469, 589, 590, 470, 470, 590, 591, 471, 471, 591, 592, 472, 472, 592, 593, 473, 473, 593, 594, 474, 474, 594, 595, 475, 475, 595, 596, 476, 476, 596, 597, 477, 477, 597, 598, 478, 478, 598, 599, 479, 479, 599, 600, 480, 480, 600, 481, 361, 481, 601, 602, 482, 482, 602, 603, 483, 483, 603, 604, 484, 484, 604, 605, 485, 485, 605, 606, 486, 486, 606, 607, 487, 487, 607, 608, 488, 488, 608, 609, 489, 489, 609, 610, 490, 490, 610, 611, 491, 491, 611, 612, 492, 492, 612, 613, 493, 493, 613, 614, 494, 494, 614, 615, 495, 495, 615, 616, 496, 496, 616, 617, 497, 497, 617, 618, 498, 498, 618, 619, 499, 499, 619, 620, 500, 500, 620, 621, 501, 501, 621, 622, 502, 502, 622, 623, 503, 503, 623, 624, 504, 504, 624, 625, 505, 505, 625, 626, 506, 506, 626, 627, 507, 507, 627, 628, 508, 508, 628, 629, 509, 509, 629, 630, 510, 510, 630, 631, 511, 511, 631, 632, 512, 512, 632, 633, 513, 513, 633, 634, 514, 514, 634, 635, 515, 515, 635, 636, 516, 516, 636, 637, 517, 517, 637, 638, 518, 518, 638, 639, 519, 519, 639, 640, 520, 520, 640, 641, 521, 521, 641, 642, 522, 522, 642, 643, 523, 523, 643, 644, 524, 524, 644, 645, 525, 525, 645, 646, 526, 526, 646, 647, 527, 527, 647, 648, 528, 528, 648, 649, 529, 529, 649, 650, 530, 530, 650, 651, 531, 531, 651, 652, 532, 532, 652, 653, 533, 533, 653, 654, 534, 534, 654, 655, 535, 535, 655, 656, 536, 536, 656, 657, 537, 537, 657, 658, 538, 538, 658, 659, 539, 539, 659, 660, 540, 540, 660, 661, 541, 541, 661, 662, 542, 542, 662, 663, 543, 543, 663, 664, 544, 544, 664, 665, 545, 545, 665, 666, 546, 546, 666, 667, 547, 547, 667, 668, 548, 548, 668, 669, 549, 549, 669, 670, 550, 550, 670, 671, 551, 551, 671, 672, 552, 552, 672, 673, 553, 553, 673, 674, 554, 554, 674, 675, 555, 555, 675, 676, 556, 556, 676, 677, 557, 557, 677, 678, 558, 558, 678, 679, 559, 559, 679, 680, 560, 560, 680, 681, 561, 561, 681, 682, 562, 562, 682, 683, 563, 563, 683, 684, 564, 564, 684, 685, 565, 565, 685, 686, 566, 566, 686, 687, 567, 567, 687, 688, 568, 568, 688, 689, 569, 569, 689, 690, 570, 570, 690, 691, 571, 571, 691, 692, 572, 572, 692, 693, 573, 573, 693, 694, 574, 574, 694, 695, 575, 575, 695, 696, 576, 576, 696, 697, 577, 577, 697, 698, 578, 578, 698, 699, 579, 579, 699, 700, 580, 580, 700, 701, 581, 581, 701, 702, 582, 582, 702, 703, 583, 583, 703, 704, 584, 584, 704, 705, 585, 585, 705, 706, 586, 586, 706, 707, 587, 587, 707, 708, 588, 588, 708, 709, 589, 589, 709, 710, 590, 590, 710, 711, 591, 591, 711, 712, 592, 592, 712, 713, 593, 593, 713, 714, 594, 594, 714, 715, 595, 595, 715, 716, 596, 596, 716, 717, 597, 597, 717, 718, 598, 598, 718, 719, 599, 599, 719, 720, 600, 600, 720, 601, 481, 601, 721, 722, 602, 602, 722, 723, 603, 603, 723, 724, 604, 604, 724, 725, 605, 605, 725, 726, 606, 606, 726, 727, 607, 607, 727, 728, 608, 608, 728, 729, 609, 609, 729, 730, 610, 610, 730, 731, 611, 611, 731, 732, 612, 612, 732, 733, 613, 613, 733, 734, 614, 614, 734, 735, 615, 615, 735, 736, 616, 616, 736, 737, 617, 617, 737, 738, 618, 618, 738, 739, 619, 619, 739, 740, 620, 620, 740, 741, 621, 621, 741, 742, 622, 622, 742, 743, 623, 623, 743, 744, 624, 624, 744, 745, 625, 625, 745, 746, 626, 626, 746, 747, 627, 627, 747, 748, 628, 628, 748, 749, 629, 629, 749, 750, 630, 630, 750, 751, 631, 631, 751, 752, 632, 632, 752, 753, 633, 633, 753, 754, 634, 634, 754, 755, 635, 635, 755, 756, 636, 636, 756, 757, 637, 637, 757, 758, 638, 638, 758, 759, 639, 639, 759, 760, 640, 640, 760, 761, 641, 641, 761, 762, 642, 642, 762, 763, 643, 643, 763, 764, 644, 644, 764, 765, 645, 645, 765, 766, 646, 646, 766, 767, 647, 647, 767, 768, 648, 648, 768, 769, 649, 649, 769, 770, 650, 650, 770, 771, 651, 651, 771, 772, 652, 652, 772, 773, 653, 653, 773, 774, 654, 654, 774, 775, 655, 655, 775, 776, 656, 656, 776, 777, 657, 657, 777, 778, 658, 658, 778, 779, 659, 659, 779, 780, 660, 660, 780, 781, 661, 661, 781, 782, 662, 662, 782, 783, 663, 663, 783, 784, 664, 664, 784, 785, 665, 665, 785, 786, 666, 666, 786, 787, 667, 667, 787, 788, 668, 668, 788, 789, 669, 669, 789, 790, 670, 670, 790, 791, 671, 671, 791, 792, 672, 672, 792, 793, 673, 673, 793, 794, 674, 674, 794, 795, 675, 675, 795, 796, 676, 676, 796, 797, 677, 677, 797, 798, 678, 678, 798, 799, 679, 679, 799, 800, 680, 680, 800, 801, 681, 681, 801, 802, 682, 682, 802, 803, 683, 683, 803, 804, 684, 684, 804, 805, 685, 685, 805, 806, 686, 686, 806, 807, 687, 687, 807, 808, 688, 688, 808, 809, 689, 689, 809, 810, 690, 690, 810, 811, 691, 691, 811, 812, 692, 692, 812, 813, 693, 693, 813, 814, 694, 694, 814, 815, 695, 695, 815, 816, 696, 696, 816, 817, 697, 697, 817, 818, 698, 698, 818, 819, 699, 699, 819, 820, 700, 700, 820, 821, 701, 701, 821, 822, 702, 702, 822, 823, 703, 703, 823, 824, 704, 704, 824, 825, 705, 705, 825, 826, 706, 706, 826, 827, 707, 707, 827, 828, 708, 708, 828, 829, 709, 709, 829, 830, 710, 710, 830, 831, 711, 711, 831, 832, 712, 712, 832, 833, 713, 713, 833, 834, 714, 714, 834, 835, 715, 715, 835, 836, 716, 716, 836, 837, 717, 717, 837, 838, 718, 718, 838, 839, 719, 719, 839, 840, 720, 720, 840, 721, 601, 721, 841, 842, 722, 722, 842, 843, 723, 723, 843, 844, 724, 724, 844, 845, 725, 725, 845, 846, 726, 726, 846, 847, 727, 727, 847, 848, 728, 728, 848, 849, 729, 729, 849, 850, 730, 730, 850, 851, 731, 731, 851, 852, 732, 732, 852, 853, 733, 733, 853, 854, 734, 734, 854, 855, 735, 735, 855, 856, 736, 736, 856, 857, 737, 737, 857, 858, 738, 738, 858, 859, 739, 739, 859, 860, 740, 740, 860, 861, 741, 741, 861, 862, 742, 742, 862, 863, 743, 743, 863, 864, 744, 744, 864, 865, 745, 745, 865, 866, 746, 746, 866, 867, 747, 747, 867, 868, 748, 748, 868, 869, 749, 749, 869, 870, 750, 750, 870, 871, 751, 751, 871, 872, 752, 752, 872, 873, 753, 753, 873, 874, 754, 754, 874, 875, 755, 755, 875, 876, 756, 756, 876, 877, 757, 757, 877, 878, 758, 758, 878, 879, 759, 759, 879, 880, 760, 760, 880, 881, 761, 761, 881, 882, 762, 762, 882, 883, 763, 763, 883, 884, 764, 764, 884, 885, 765, 765, 885, 886, 766, 766, 886, 887, 767, 767, 887, 888, 768, 768, 888, 889, 769, 769, 889, 890, 770, 770, 890, 891, 771, 771, 891, 892, 772, 772, 892, 893, 773, 773, 893, 894, 774, 774, 894, 895, 775, 775, 895, 896, 776, 776, 896, 897, 777, 777, 897, 898, 778, 778, 898, 899, 779, 779, 899, 900, 780, 780, 900, 901, 781, 781, 901, 902, 782, 782, 902, 903, 783, 783, 903, 904, 784, 784, 904, 905, 785, 785, 905, 906, 786, 786, 906, 907, 787, 787, 907, 908, 788, 788, 908, 909, 789, 789, 909, 910, 790, 790, 910, 911, 791, 791, 911, 912, 792, 792, 912, 913, 793, 793, 913, 914, 794, 794, 914, 915, 795, 795, 915, 916, 796, 796, 916, 917, 797, 797, 917, 918, 798, 798, 918, 919, 799, 799, 919, 920, 800, 800, 920, 921, 801, 801, 921, 922, 802, 802, 922, 923, 803, 803, 923, 924, 804, 804, 924, 925, 805, 805, 925, 926, 806, 806, 926, 927, 807, 807, 927, 928, 808, 808, 928, 929, 809, 809, 929, 930, 810, 810, 930, 931, 811, 811, 931, 932, 812, 812, 932, 933, 813, 813, 933, 934, 814, 814, 934, 935, 815, 815, 935, 936, 816, 816, 936, 937, 817, 817, 937, 938, 818, 818, 938, 939, 819, 819, 939, 940, 820, 820, 940, 941, 821, 821, 941, 942, 822, 822, 942, 943, 823, 823, 943, 944, 824, 824, 944, 945, 825, 825, 945, 946, 826, 826, 946, 947, 827, 827, 947, 948, 828, 828, 948, 949, 829, 829, 949, 950, 830, 830, 950, 951, 831, 831, 951, 952, 832, 832, 952, 953, 833, 833, 953, 954, 834, 834, 954, 955, 835, 835, 955, 956, 836, 836, 956, 957, 837, 837, 957, 958, 838, 838, 958, 959, 839, 839, 959, 960, 840, 840, 960, 841, 721, 841, 961, 962, 842, 842, 962, 963, 843, 843, 963, 964, 844, 844, 964, 965, 845, 845, 965, 966, 846, 846, 966, 967, 847, 847, 967, 968, 848, 848, 968, 969, 849, 849, 969, 970, 850, 850, 970, 971, 851, 851, 971, 972, 852, 852, 972, 973, 853, 853, 973, 974, 854, 854, 974, 975, 855, 855, 975, 976, 856, 856, 976, 977, 857, 857, 977, 978, 858, 858, 978, 979, 859, 859, 979, 980, 860, 860, 980, 981, 861, 861, 981, 982, 862, 862, 982, 983, 863, 863, 983, 984, 864, 864, 984, 985, 865, 865, 985, 986, 866, 866, 986, 987, 867, 867, 987, 988, 868, 868, 988, 989, 869, 869, 989, 990, 870, 870, 990, 991, 871, 871, 991, 992, 872, 872, 992, 993, 873, 873, 993, 994, 874, 874, 994, 995, 875, 875, 995, 996, 876, 876, 996, 997, 877, 877, 997, 998, 878, 878, 998, 999, 879, 879, 999, 1000, 880, 880, 1000, 1001, 881, 881, 1001, 1002, 882, 882, 1002, 1003, 883, 883, 1003, 1004, 884, 884, 1004, 1005, 885, 885, 1005, 1006, 886, 886, 1006, 1007, 887, 887, 1007, 1008, 888, 888, 1008, 1009, 889, 889, 1009, 1010, 890, 890, 1010, 1011, 891, 891, 1011, 1012, 892, 892, 1012, 1013, 893, 893, 1013, 1014, 894, 894, 1014, 1015, 895, 895, 1015, 1016, 896, 896, 1016, 1017, 897, 897, 1017, 1018, 898, 898, 1018, 1019, 899, 899, 1019, 1020, 900, 900, 1020, 1021, 901, 901, 1021, 1022, 902, 902, 1022, 1023, 903, 903, 1023, 1024, 904, 904, 1024, 1025, 905, 905, 1025, 1026, 906, 906, 1026, 1027, 907, 907, 1027, 1028, 908, 908, 1028, 1029, 909, 909, 1029, 1030, 910, 910, 1030, 1031, 911, 911, 1031, 1032, 912, 912, 1032, 1033, 913, 913, 1033, 1034, 914, 914, 1034, 1035, 915, 915, 1035, 1036, 916, 916, 1036, 1037, 917, 917, 1037, 1038, 918, 918, 1038, 1039, 919, 919, 1039, 1040, 920, 920, 1040, 1041, 921, 921, 1041, 1042, 922, 922, 1042, 1043, 923, 923, 1043, 1044, 924, 924, 1044, 1045, 925, 925, 1045, 1046, 926, 926, 1046, 1047, 927, 927, 1047, 1048, 928, 928, 1048, 1049, 929, 929, 1049, 1050, 930, 930, 1050, 1051, 931, 931, 1051, 1052, 932, 932, 1052, 1053, 933, 933, 1053, 1054, 934, 934, 1054, 1055, 935, 935, 1055, 1056, 936, 936, 1056, 1057, 937, 937, 1057, 1058, 938, 938, 1058, 1059, 939, 939, 1059, 1060, 940, 940, 1060, 1061, 941, 941, 1061, 1062, 942, 942, 1062, 1063, 943, 943, 1063, 1064, 944, 944, 1064, 1065, 945, 945, 1065, 1066, 946, 946, 1066, 1067, 947, 947, 1067, 1068, 948, 948, 1068, 1069, 949, 949, 1069, 1070, 950, 950, 1070, 1071, 951, 951, 1071, 1072, 952, 952, 1072, 1073, 953, 953, 1073, 1074, 954, 954, 1074, 1075, 955, 955, 1075, 1076, 956, 956, 1076, 1077, 957, 957, 1077, 1078, 958, 958, 1078, 1079, 959, 959, 1079, 1080, 960, 960, 1080, 961, 841, 961, 1081, 1082, 962, 962, 1082, 1083, 963, 963, 1083, 1084, 964, 964, 1084, 1085, 965, 965, 1085, 1086, 966, 966, 1086, 1087, 967, 967, 1087, 1088, 968, 968, 1088, 1089, 969, 969, 1089, 1090, 970, 970, 1090, 1091, 971, 971, 1091, 1092, 972, 972, 1092, 1093, 973, 973, 1093, 1094, 974, 974, 1094, 1095, 975, 975, 1095, 1096, 976, 976, 1096, 1097, 977, 977, 1097, 1098, 978, 978, 1098, 1099, 979, 979, 1099, 1100, 980, 980, 1100, 1101, 981, 981, 1101, 1102, 982, 982, 1102, 1103, 983, 983, 1103, 1104, 984, 984, 1104, 1105, 985, 985, 1105, 1106, 986, 986, 1106, 1107, 987, 987, 1107, 1108, 988, 988, 1108, 1109, 989, 989, 1109, 1110, 990, 990, 1110, 1111, 991, 991, 1111, 1112, 992, 992, 1112, 1113, 993, 993, 1113, 1114, 994, 994, 1114, 1115, 995, 995, 1115, 1116, 996, 996, 1116, 1117, 997, 997, 1117, 1118, 998, 998, 1118, 1119, 999, 999, 1119, 1120, 1000, 1000, 1120, 1121, 1001, 1001, 1121, 1122, 1002, 1002, 1122, 1123, 1003, 1003, 1123, 1124, 1004, 1004, 1124, 1125, 1005, 1005, 1125, 1126, 1006, 1006, 1126, 1127, 1007, 1007, 1127, 1128, 1008, 1008, 1128, 1129, 1009, 1009, 1129, 1130, 1010, 1010, 1130, 1131, 1011, 1011, 1131, 1132, 1012, 1012, 1132, 1133, 1013, 1013, 1133, 1134, 1014, 1014, 1134, 1135, 1015, 1015, 1135, 1136, 1016, 1016, 1136, 1137, 1017, 1017, 1137, 1138, 1018, 1018, 1138, 1139, 1019, 1019, 1139, 1140, 1020, 1020, 1140, 1141, 1021, 1021, 1141, 1142, 1022, 1022, 1142, 1143, 1023, 1023, 1143, 1144, 1024, 1024, 1144, 1145, 1025, 1025, 1145, 1146, 1026, 1026, 1146, 1147, 1027, 1027, 1147, 1148, 1028, 1028, 1148, 1149, 1029, 1029, 1149, 1150, 1030, 1030, 1150, 1151, 1031, 1031, 1151, 1152, 1032, 1032, 1152, 1153, 1033, 1033, 1153, 1154, 1034, 1034, 1154, 1155, 1035, 1035, 1155, 1156, 1036, 1036, 1156, 1157, 1037, 1037, 1157, 1158, 1038, 1038, 1158, 1159, 1039, 1039, 1159, 1160, 1040, 1040, 1160, 1161, 1041, 1041, 1161, 1162, 1042, 1042, 1162, 1163, 1043, 1043, 1163, 1164, 1044, 1044, 1164, 1165, 1045, 1045, 1165, 1166, 1046, 1046, 1166, 1167, 1047, 1047, 1167, 1168, 1048, 1048, 1168, 1169, 1049, 1049, 1169, 1170, 1050, 1050, 1170, 1171, 1051, 1051, 1171, 1172, 1052, 1052, 1172, 1173, 1053, 1053, 1173, 1174, 1054, 1054, 1174, 1175, 1055, 1055, 1175, 1176, 1056, 1056, 1176, 1177, 1057, 1057, 1177, 1178, 1058, 1058, 1178, 1179, 1059, 1059, 1179, 1180, 1060, 1060, 1180, 1181, 1061, 1061, 1181, 1182, 1062, 1062, 1182, 1183, 1063, 1063, 1183, 1184, 1064, 1064, 1184, 1185, 1065, 1065, 1185, 1186, 1066, 1066, 1186, 1187, 1067, 1067, 1187, 1188, 1068, 1068, 1188, 1189, 1069, 1069, 1189, 1190, 1070, 1070, 1190, 1191, 1071, 1071, 1191, 1192, 1072, 1072, 1192, 1193, 1073, 1073, 1193, 1194, 1074, 1074, 1194, 1195, 1075, 1075, 1195, 1196, 1076, 1076, 1196, 1197, 1077, 1077, 1197, 1198, 1078, 1078, 1198, 1199, 1079, 1079, 1199, 1200, 1080, 1080, 1200, 1081, 961, 1081, 1201, 1202, 1082, 1082, 1202, 1203, 1083, 1083, 1203, 1204, 1084, 1084, 1204, 1205, 1085, 1085, 1205, 1206, 1086, 1086, 1206, 1207, 1087, 1087, 1207, 1208, 1088, 1088, 1208, 1209, 1089, 1089, 1209, 1210, 1090, 1090, 1210, 1211, 1091, 1091, 1211, 1212, 1092, 1092, 1212, 1213, 1093, 1093, 1213, 1214, 1094, 1094, 1214, 1215, 1095, 1095, 1215, 1216, 1096, 1096, 1216, 1217, 1097, 1097, 1217, 1218, 1098, 1098, 1218, 1219, 1099, 1099, 1219, 1220, 1100, 1100, 1220, 1221, 1101, 1101, 1221, 1222, 1102, 1102, 1222, 1223, 1103, 1103, 1223, 1224, 1104, 1104, 1224, 1225, 1105, 1105, 1225, 1226, 1106, 1106, 1226, 1227, 1107, 1107, 1227, 1228, 1108, 1108, 1228, 1229, 1109, 1109, 1229, 1230, 1110, 1110, 1230, 1231, 1111, 1111, 1231, 1232, 1112, 1112, 1232, 1233, 1113, 1113, 1233, 1234, 1114, 1114, 1234, 1235, 1115, 1115, 1235, 1236, 1116, 1116, 1236, 1237, 1117, 1117, 1237, 1238, 1118, 1118, 1238, 1239, 1119, 1119, 1239, 1240, 1120, 1120, 1240, 1241, 1121, 1121, 1241, 1242, 1122, 1122, 1242, 1243, 1123, 1123, 1243, 1244, 1124, 1124, 1244, 1245, 1125, 1125, 1245, 1246, 1126, 1126, 1246, 1247, 1127, 1127, 1247, 1248, 1128, 1128, 1248, 1249, 1129, 1129, 1249, 1250, 1130, 1130, 1250, 1251, 1131, 1131, 1251, 1252, 1132, 1132, 1252, 1253, 1133, 1133, 1253, 1254, 1134, 1134, 1254, 1255, 1135, 1135, 1255, 1256, 1136, 1136, 1256, 1257, 1137, 1137, 1257, 1258, 1138, 1138, 1258, 1259, 1139, 1139, 1259, 1260, 1140, 1140, 1260, 1261, 1141, 1141, 1261, 1262, 1142, 1142, 1262, 1263, 1143, 1143, 1263, 1264, 1144, 1144, 1264, 1265, 1145, 1145, 1265, 1266, 1146, 1146, 1266, 1267, 1147, 1147, 1267, 1268, 1148, 1148, 1268, 1269, 1149, 1149, 1269, 1270, 1150, 1150, 1270, 1271, 1151, 1151, 1271, 1272, 1152, 1152, 1272, 1273, 1153, 1153, 1273, 1274, 1154, 1154, 1274, 1275, 1155, 1155, 1275, 1276, 1156, 1156, 1276, 1277, 1157, 1157, 1277, 1278, 1158, 1158, 1278, 1279, 1159, 1159, 1279, 1280, 1160, 1160, 1280, 1281, 1161, 1161, 1281, 1282, 1162, 1162, 1282, 1283, 1163, 1163, 1283, 1284, 1164, 1164, 1284, 1285, 1165, 1165, 1285, 1286, 1166, 1166, 1286, 1287, 1167, 1167, 1287, 1288, 1168, 1168, 1288, 1289, 1169, 1169, 1289, 1290, 1170, 1170, 1290, 1291, 1171, 1171, 1291, 1292, 1172, 1172, 1292, 1293, 1173, 1173, 1293, 1294, 1174, 1174, 1294, 1295, 1175, 1175, 1295, 1296, 1176, 1176, 1296, 1297, 1177, 1177, 1297, 1298, 1178, 1178, 1298, 1299, 1179, 1179, 1299, 1300, 1180, 1180, 1300, 1301, 1181, 1181, 1301, 1302, 1182, 1182, 1302, 1303, 1183, 1183, 1303, 1304, 1184, 1184, 1304, 1305, 1185, 1185, 1305, 1306, 1186, 1186, 1306, 1307, 1187, 1187, 1307, 1308, 1188, 1188, 1308, 1309, 1189, 1189, 1309, 1310, 1190, 1190, 1310, 1311, 1191, 1191, 1311, 1312, 1192, 1192, 1312, 1313, 1193, 1193, 1313, 1314, 1194, 1194, 1314, 1315, 1195, 1195, 1315, 1316, 1196, 1196, 1316, 1317, 1197, 1197, 1317, 1318, 1198, 1198, 1318, 1319, 1199, 1199, 1319, 1320, 1200, 1200, 1320, 1201, 1081, 1201, 1321, 1322, 1202, 1202, 1322, 1323, 1203, 1203, 1323, 1324, 1204, 1204, 1324, 1325, 1205, 1205, 1325, 1326, 1206, 1206, 1326, 1327, 1207, 1207, 1327, 1328, 1208, 1208, 1328, 1329, 1209, 1209, 1329, 1330, 1210, 1210, 1330, 1331, 1211, 1211, 1331, 1332, 1212, 1212, 1332, 1333, 1213, 1213, 1333, 1334, 1214, 1214, 1334, 1335, 1215, 1215, 1335, 1336, 1216, 1216, 1336, 1337, 1217, 1217, 1337, 1338, 1218, 1218, 1338, 1339, 1219, 1219, 1339, 1340, 1220, 1220, 1340, 1341, 1221, 1221, 1341, 1342, 1222, 1222, 1342, 1343, 1223, 1223, 1343, 1344, 1224, 1224, 1344, 1345, 1225, 1225, 1345, 1346, 1226, 1226, 1346, 1347, 1227, 1227, 1347, 1348, 1228, 1228, 1348, 1349, 1229, 1229, 1349, 1350, 1230, 1230, 1350, 1351, 1231, 1231, 1351, 1352, 1232, 1232, 1352, 1353, 1233, 1233, 1353, 1354, 1234, 1234, 1354, 1355, 1235, 1235, 1355, 1356, 1236, 1236, 1356, 1357, 1237, 1237, 1357, 1358, 1238, 1238, 1358, 1359, 1239, 1239, 1359, 1360, 1240, 1240, 1360, 1361, 1241, 1241, 1361, 1362, 1242, 1242, 1362, 1363, 1243, 1243, 1363, 1364, 1244, 1244, 1364, 1365, 1245, 1245, 1365, 1366, 1246, 1246, 1366, 1367, 1247, 1247, 1367, 1368, 1248, 1248, 1368, 1369, 1249, 1249, 1369, 1370, 1250, 1250, 1370, 1371, 1251, 1251, 1371, 1372, 1252, 1252, 1372, 1373, 1253, 1253, 1373, 1374, 1254, 1254, 1374, 1375, 1255, 1255, 1375, 1376, 1256, 1256, 1376, 1377, 1257, 1257, 1377, 1378, 1258, 1258, 1378, 1379, 1259, 1259, 1379, 1380, 1260, 1260, 1380, 1381, 1261, 1261, 1381, 1382, 1262, 1262, 1382, 1383, 1263, 1263, 1383, 1384, 1264, 1264, 1384, 1385, 1265, 1265, 1385, 1386, 1266, 1266, 1386, 1387, 1267, 1267, 1387, 1388, 1268, 1268, 1388, 1389, 1269, 1269, 1389, 1390, 1270, 1270, 1390, 1391, 1271, 1271, 1391, 1392, 1272, 1272, 1392, 1393, 1273, 1273, 1393, 1394, 1274, 1274, 1394, 1395, 1275, 1275, 1395, 1396, 1276, 1276, 1396, 1397, 1277, 1277, 1397, 1398, 1278, 1278, 1398, 1399, 1279, 1279, 1399, 1400, 1280, 1280, 1400, 1401, 1281, 1281, 1401, 1402, 1282, 1282, 1402, 1403, 1283, 1283, 1403, 1404, 1284, 1284, 1404, 1405, 1285, 1285, 1405, 1406, 1286, 1286, 1406, 1407, 1287, 1287, 1407, 1408, 1288, 1288, 1408, 1409, 1289, 1289, 1409, 1410, 1290, 1290, 1410, 1411, 1291, 1291, 1411, 1412, 1292, 1292, 1412, 1413, 1293, 1293, 1413, 1414, 1294, 1294, 1414, 1415, 1295, 1295, 1415, 1416, 1296, 1296, 1416, 1417, 1297, 1297, 1417, 1418, 1298, 1298, 1418, 1419, 1299, 1299, 1419, 1420, 1300, 1300, 1420, 1421, 1301, 1301, 1421, 1422, 1302, 1302, 1422, 1423, 1303, 1303, 1423, 1424, 1304, 1304, 1424, 1425, 1305, 1305, 1425, 1426, 1306, 1306, 1426, 1427, 1307, 1307, 1427, 1428, 1308, 1308, 1428, 1429, 1309, 1309, 1429, 1430, 1310, 1310, 1430, 1431, 1311, 1311, 1431, 1432, 1312, 1312, 1432, 1433, 1313, 1313, 1433, 1434, 1314, 1314, 1434, 1435, 1315, 1315, 1435, 1436, 1316, 1316, 1436, 1437, 1317, 1317, 1437, 1438, 1318, 1318, 1438, 1439, 1319, 1319, 1439, 1440, 1320, 1320, 1440, 1321, 1201, 1321, 1441, 1442, 1322, 1322, 1442, 1443, 1323, 1323, 1443, 1444, 1324, 1324, 1444, 1445, 1325, 1325, 1445, 1446, 1326, 1326, 1446, 1447, 1327, 1327, 1447, 1448, 1328, 1328, 1448, 1449, 1329, 1329, 1449, 1450, 1330, 1330, 1450, 1451, 1331, 1331, 1451, 1452, 1332, 1332, 1452, 1453, 1333, 1333, 1453, 1454, 1334, 1334, 1454, 1455, 1335, 1335, 1455, 1456, 1336, 1336, 1456, 1457, 1337, 1337, 1457, 1458, 1338, 1338, 1458, 1459, 1339, 1339, 1459, 1460, 1340, 1340, 1460, 1461, 1341, 1341, 1461, 1462, 1342, 1342, 1462, 1463, 1343, 1343, 1463, 1464, 1344, 1344, 1464, 1465, 1345, 1345, 1465, 1466, 1346, 1346, 1466, 1467, 1347, 1347, 1467, 1468, 1348, 1348, 1468, 1469, 1349, 1349, 1469, 1470, 1350, 1350, 1470, 1471, 1351, 1351, 1471, 1472, 1352, 1352, 1472, 1473, 1353, 1353, 1473, 1474, 1354, 1354, 1474, 1475, 1355, 1355, 1475, 1476, 1356, 1356, 1476, 1477, 1357, 1357, 1477, 1478, 1358, 1358, 1478, 1479, 1359, 1359, 1479, 1480, 1360, 1360, 1480, 1481, 1361, 1361, 1481, 1482, 1362, 1362, 1482, 1483, 1363, 1363, 1483, 1484, 1364, 1364, 1484, 1485, 1365, 1365, 1485, 1486, 1366, 1366, 1486, 1487, 1367, 1367, 1487, 1488, 1368, 1368, 1488, 1489, 1369, 1369, 1489, 1490, 1370, 1370, 1490, 1491, 1371, 1371, 1491, 1492, 1372, 1372, 1492, 1493, 1373, 1373, 1493, 1494, 1374, 1374, 1494, 1495, 1375, 1375, 1495, 1496, 1376, 1376, 1496, 1497, 1377, 1377, 1497, 1498, 1378, 1378, 1498, 1499, 1379, 1379, 1499, 1500, 1380, 1380, 1500, 1501, 1381, 1381, 1501, 1502, 1382, 1382, 1502, 1503, 1383, 1383, 1503, 1504, 1384, 1384, 1504, 1505, 1385, 1385, 1505, 1506, 1386, 1386, 1506, 1507, 1387, 1387, 1507, 1508, 1388, 1388, 1508, 1509, 1389, 1389, 1509, 1510, 1390, 1390, 1510, 1511, 1391, 1391, 1511, 1512, 1392, 1392, 1512, 1513, 1393, 1393, 1513, 1514, 1394, 1394, 1514, 1515, 1395, 1395, 1515, 1516, 1396, 1396, 1516, 1517, 1397, 1397, 1517, 1518, 1398, 1398, 1518, 1519, 1399, 1399, 1519, 1520, 1400, 1400, 1520, 1521, 1401, 1401, 1521, 1522, 1402, 1402, 1522, 1523, 1403, 1403, 1523, 1524, 1404, 1404, 1524, 1525, 1405, 1405, 1525, 1526, 1406, 1406, 1526, 1527, 1407, 1407, 1527, 1528, 1408, 1408, 1528, 1529, 1409, 1409, 1529, 1530, 1410, 1410, 1530, 1531, 1411, 1411, 1531, 1532, 1412, 1412, 1532, 1533, 1413, 1413, 1533, 1534, 1414, 1414, 1534, 1535, 1415, 1415, 1535, 1536, 1416, 1416, 1536, 1537, 1417, 1417, 1537, 1538, 1418, 1418, 1538, 1539, 1419, 1419, 1539, 1540, 1420, 1420, 1540, 1541, 1421, 1421, 1541, 1542, 1422, 1422, 1542, 1543, 1423, 1423, 1543, 1544, 1424, 1424, 1544, 1545, 1425, 1425, 1545, 1546, 1426, 1426, 1546, 1547, 1427, 1427, 1547, 1548, 1428, 1428, 1548, 1549, 1429, 1429, 1549, 1550, 1430, 1430, 1550, 1551, 1431, 1431, 1551, 1552, 1432, 1432, 1552, 1553, 1433, 1433, 1553, 1554, 1434, 1434, 1554, 1555, 1435, 1435, 1555, 1556, 1436, 1436, 1556, 1557, 1437, 1437, 1557, 1558, 1438, 1438, 1558, 1559, 1439, 1439, 1559, 1560, 1440, 1440, 1560, 1441, 1321, 1441, 1561, 1562, 1442, 1442, 1562, 1563, 1443, 1443, 1563, 1564, 1444, 1444, 1564, 1565, 1445, 1445, 1565, 1566, 1446, 1446, 1566, 1567, 1447, 1447, 1567, 1568, 1448, 1448, 1568, 1569, 1449, 1449, 1569, 1570, 1450, 1450, 1570, 1571, 1451, 1451, 1571, 1572, 1452, 1452, 1572, 1573, 1453, 1453, 1573, 1574, 1454, 1454, 1574, 1575, 1455, 1455, 1575, 1576, 1456, 1456, 1576, 1577, 1457, 1457, 1577, 1578, 1458, 1458, 1578, 1579, 1459, 1459, 1579, 1580, 1460, 1460, 1580, 1581, 1461, 1461, 1581, 1582, 1462, 1462, 1582, 1583, 1463, 1463, 1583, 1584, 1464, 1464, 1584, 1585, 1465, 1465, 1585, 1586, 1466, 1466, 1586, 1587, 1467, 1467, 1587, 1588, 1468, 1468, 1588, 1589, 1469, 1469, 1589, 1590, 1470, 1470, 1590, 1591, 1471, 1471, 1591, 1592, 1472, 1472, 1592, 1593, 1473, 1473, 1593, 1594, 1474, 1474, 1594, 1595, 1475, 1475, 1595, 1596, 1476, 1476, 1596, 1597, 1477, 1477, 1597, 1598, 1478, 1478, 1598, 1599, 1479, 1479, 1599, 1600, 1480, 1480, 1600, 1601, 1481, 1481, 1601, 1602, 1482, 1482, 1602, 1603, 1483, 1483, 1603, 1604, 1484, 1484, 1604, 1605, 1485, 1485, 1605, 1606, 1486, 1486, 1606, 1607, 1487, 1487, 1607, 1608, 1488, 1488, 1608, 1609, 1489, 1489, 1609, 1610, 1490, 1490, 1610, 1611, 1491, 1491, 1611, 1612, 1492, 1492, 1612, 1613, 1493, 1493, 1613, 1614, 1494, 1494, 1614, 1615, 1495, 1495, 1615, 1616, 1496, 1496, 1616, 1617, 1497, 1497, 1617, 1618, 1498, 1498, 1618, 1619, 1499, 1499, 1619, 1620, 1500, 1500, 1620, 1621, 1501, 1501, 1621, 1622, 1502, 1502, 1622, 1623, 1503, 1503, 1623, 1624, 1504, 1504, 1624, 1625, 1505, 1505, 1625, 1626, 1506, 1506, 1626, 1627, 1507, 1507, 1627, 1628, 1508, 1508, 1628, 1629, 1509, 1509, 1629, 1630, 1510, 1510, 1630, 1631, 1511, 1511, 1631, 1632, 1512, 1512, 1632, 1633, 1513, 1513, 1633, 1634, 1514, 1514, 1634, 1635, 1515, 1515, 1635, 1636, 1516, 1516, 1636, 1637, 1517, 1517, 1637, 1638, 1518, 1518, 1638, 1639, 1519, 1519, 1639, 1640, 1520, 1520, 1640, 1641, 1521, 1521, 1641, 1642, 1522, 1522, 1642, 1643, 1523, 1523, 1643, 1644, 1524, 1524, 1644, 1645, 1525, 1525, 1645, 1646, 1526, 1526, 1646, 1647, 1527, 1527, 1647, 1648, 1528, 1528, 1648, 1649, 1529, 1529, 1649, 1650, 1530, 1530, 1650, 1651, 1531, 1531, 1651, 1652, 1532, 1532, 1652, 1653, 1533, 1533, 1653, 1654, 1534, 1534, 1654, 1655, 1535, 1535, 1655, 1656, 1536, 1536, 1656, 1657, 1537, 1537, 1657, 1658, 1538, 1538, 1658, 1659, 1539, 1539, 1659, 1660, 1540, 1540, 1660, 1661, 1541, 1541, 1661, 1662, 1542, 1542, 1662, 1663, 1543, 1543, 1663, 1664, 1544, 1544, 1664, 1665, 1545, 1545, 1665, 1666, 1546, 1546, 1666, 1667, 1547, 1547, 1667, 1668, 1548, 1548, 1668, 1669, 1549, 1549, 1669, 1670, 1550, 1550, 1670, 1671, 1551, 1551, 1671, 1672, 1552, 1552, 1672, 1673, 1553, 1553, 1673, 1674, 1554, 1554, 1674, 1675, 1555, 1555, 1675, 1676, 1556, 1556, 1676, 1677, 1557, 1557, 1677, 1678, 1558, 1558, 1678, 1679, 1559, 1559, 1679, 1680, 1560, 1560, 1680, 1561, 1441, 1561, 1681, 1682, 1562, 1562, 1682, 1683, 1563, 1563, 1683, 1684, 1564, 1564, 1684, 1685, 1565, 1565, 1685, 1686, 1566, 1566, 1686, 1687, 1567, 1567, 1687, 1688, 1568, 1568, 1688, 1689, 1569, 1569, 1689, 1690, 1570, 1570, 1690, 1691, 1571, 1571, 1691, 1692, 1572, 1572, 1692, 1693, 1573, 1573, 1693, 1694, 1574, 1574, 1694, 1695, 1575, 1575, 1695, 1696, 1576, 1576, 1696, 1697, 1577, 1577, 1697, 1698, 1578, 1578, 1698, 1699, 1579, 1579, 1699, 1700, 1580, 1580, 1700, 1701, 1581, 1581, 1701, 1702, 1582, 1582, 1702, 1703, 1583, 1583, 1703, 1704, 1584, 1584, 1704, 1705, 1585, 1585, 1705, 1706, 1586, 1586, 1706, 1707, 1587, 1587, 1707, 1708, 1588, 1588, 1708, 1709, 1589, 1589, 1709, 1710, 1590, 1590, 1710, 1711, 1591, 1591, 1711, 1712, 1592, 1592, 1712, 1713, 1593, 1593, 1713, 1714, 1594, 1594, 1714, 1715, 1595, 1595, 1715, 1716, 1596, 1596, 1716, 1717, 1597, 1597, 1717, 1718, 1598, 1598, 1718, 1719, 1599, 1599, 1719, 1720, 1600, 1600, 1720, 1721, 1601, 1601, 1721, 1722, 1602, 1602, 1722, 1723, 1603, 1603, 1723, 1724, 1604, 1604, 1724, 1725, 1605, 1605, 1725, 1726, 1606, 1606, 1726, 1727, 1607, 1607, 1727, 1728, 1608, 1608, 1728, 1729, 1609, 1609, 1729, 1730, 1610, 1610, 1730, 1731, 1611, 1611, 1731, 1732, 1612, 1612, 1732, 1733, 1613, 1613, 1733, 1734, 1614, 1614, 1734, 1735, 1615, 1615, 1735, 1736, 1616, 1616, 1736, 1737, 1617, 1617, 1737, 1738, 1618, 1618, 1738, 1739, 1619, 1619, 1739, 1740, 1620, 1620, 1740, 1741, 1621, 1621, 1741, 1742, 1622, 1622, 1742, 1743, 1623, 1623, 1743, 1744, 1624, 1624, 1744, 1745, 1625, 1625, 1745, 1746, 1626, 1626, 1746, 1747, 1627, 1627, 1747, 1748, 1628, 1628, 1748, 1749, 1629, 1629, 1749, 1750, 1630, 1630, 1750, 1751, 1631, 1631, 1751, 1752, 1632, 1632, 1752, 1753, 1633, 1633, 1753, 1754, 1634, 1634, 1754, 1755, 1635, 1635, 1755, 1756, 1636, 1636, 1756, 1757, 1637, 1637, 1757, 1758, 1638, 1638, 1758, 1759, 1639, 1639, 1759, 1760, 1640, 1640, 1760, 1761, 1641, 1641, 1761, 1762, 1642, 1642, 1762, 1763, 1643, 1643, 1763, 1764, 1644, 1644, 1764, 1765, 1645, 1645, 1765, 1766, 1646, 1646, 1766, 1767, 1647, 1647, 1767, 1768, 1648, 1648, 1768, 1769, 1649, 1649, 1769, 1770, 1650, 1650, 1770, 1771, 1651, 1651, 1771, 1772, 1652, 1652, 1772, 1773, 1653, 1653, 1773, 1774, 1654, 1654, 1774, 1775, 1655, 1655, 1775, 1776, 1656, 1656, 1776, 1777, 1657, 1657, 1777, 1778, 1658, 1658, 1778, 1779, 1659, 1659, 1779, 1780, 1660, 1660, 1780, 1781, 1661, 1661, 1781, 1782, 1662, 1662, 1782, 1783, 1663, 1663, 1783, 1784, 1664, 1664, 1784, 1785, 1665, 1665, 1785, 1786, 1666, 1666, 1786, 1787, 1667, 1667, 1787, 1788, 1668, 1668, 1788, 1789, 1669, 1669, 1789, 1790, 1670, 1670, 1790, 1791, 1671, 1671, 1791, 1792, 1672, 1672, 1792, 1793, 1673, 1673, 1793, 1794, 1674, 1674, 1794, 1795, 1675, 1675, 1795, 1796, 1676, 1676, 1796, 1797, 1677, 1677, 1797, 1798, 1678, 1678, 1798, 1799, 1679, 1679, 1799, 1800, 1680, 1680, 1800, 1681, 1561, 1681, 1801, 1802, 1682, 1682, 1802, 1803, 1683, 1683, 1803, 1804, 1684, 1684, 1804, 1805, 1685, 1685, 1805, 1806, 1686, 1686, 1806, 1807, 1687, 1687, 1807, 1808, 1688, 1688, 1808, 1809, 1689, 1689, 1809, 1810, 1690, 1690, 1810, 1811, 1691, 1691, 1811, 1812, 1692, 1692, 1812, 1813, 1693, 1693, 1813, 1814, 1694, 1694, 1814, 1815, 1695, 1695, 1815, 1816, 1696, 1696, 1816, 1817, 1697, 1697, 1817, 1818, 1698, 1698, 1818, 1819, 1699, 1699, 1819, 1820, 1700, 1700, 1820, 1821, 1701, 1701, 1821, 1822, 1702, 1702, 1822, 1823, 1703, 1703, 1823, 1824, 1704, 1704, 1824, 1825, 1705, 1705, 1825, 1826, 1706, 1706, 1826, 1827, 1707, 1707, 1827, 1828, 1708, 1708, 1828, 1829, 1709, 1709, 1829, 1830, 1710, 1710, 1830, 1831, 1711, 1711, 1831, 1832, 1712, 1712, 1832, 1833, 1713, 1713, 1833, 1834, 1714, 1714, 1834, 1835, 1715, 1715, 1835, 1836, 1716, 1716, 1836, 1837, 1717, 1717, 1837, 1838, 1718, 1718, 1838, 1839, 1719, 1719, 1839, 1840, 1720, 1720, 1840, 1841, 1721, 1721, 1841, 1842, 1722, 1722, 1842, 1843, 1723, 1723, 1843, 1844, 1724, 1724, 1844, 1845, 1725, 1725, 1845, 1846, 1726, 1726, 1846, 1847, 1727, 1727, 1847, 1848, 1728, 1728, 1848, 1849, 1729, 1729, 1849, 1850, 1730, 1730, 1850, 1851, 1731, 1731, 1851, 1852, 1732, 1732, 1852, 1853, 1733, 1733, 1853, 1854, 1734, 1734, 1854, 1855, 1735, 1735, 1855, 1856, 1736, 1736, 1856, 1857, 1737, 1737, 1857, 1858, 1738, 1738, 1858, 1859, 1739, 1739, 1859, 1860, 1740, 1740, 1860, 1861, 1741, 1741, 1861, 1862, 1742, 1742, 1862, 1863, 1743, 1743, 1863, 1864, 1744, 1744, 1864, 1865, 1745, 1745, 1865, 1866, 1746, 1746, 1866, 1867, 1747, 1747, 1867, 1868, 1748, 1748, 1868, 1869, 1749, 1749, 1869, 1870, 1750, 1750, 1870, 1871, 1751, 1751, 1871, 1872, 1752, 1752, 1872, 1873, 1753, 1753, 1873, 1874, 1754, 1754, 1874, 1875, 1755, 1755, 1875, 1876, 1756, 1756, 1876, 1877, 1757, 1757, 1877, 1878, 1758, 1758, 1878, 1879, 1759, 1759, 1879, 1880, 1760, 1760, 1880, 1881, 1761, 1761, 1881, 1882, 1762, 1762, 1882, 1883, 1763, 1763, 1883, 1884, 1764, 1764, 1884, 1885, 1765, 1765, 1885, 1886, 1766, 1766, 1886, 1887, 1767, 1767, 1887, 1888, 1768, 1768, 1888, 1889, 1769, 1769, 1889, 1890, 1770, 1770, 1890, 1891, 1771, 1771, 1891, 1892, 1772, 1772, 1892, 1893, 1773, 1773, 1893, 1894, 1774, 1774, 1894, 1895, 1775, 1775, 1895, 1896, 1776, 1776, 1896, 1897, 1777, 1777, 1897, 1898, 1778, 1778, 1898, 1899, 1779, 1779, 1899, 1900, 1780, 1780, 1900, 1901, 1781, 1781, 1901, 1902, 1782, 1782, 1902, 1903, 1783, 1783, 1903, 1904, 1784, 1784, 1904, 1905, 1785, 1785, 1905, 1906, 1786, 1786, 1906, 1907, 1787, 1787, 1907, 1908, 1788, 1788, 1908, 1909, 1789, 1789, 1909, 1910, 1790, 1790, 1910, 1911, 1791, 1791, 1911, 1912, 1792, 1792, 1912, 1913, 1793, 1793, 1913, 1914, 1794, 1794, 1914, 1915, 1795, 1795, 1915, 1916, 1796, 1796, 1916, 1917, 1797, 1797, 1917, 1918, 1798, 1798, 1918, 1919, 1799, 1799, 1919, 1920, 1800, 1800, 1920, 1801, 1681, 1801, 1921, 1922, 1802, 1802, 1922, 1923, 1803, 1803, 1923, 1924, 1804, 1804, 1924, 1925, 1805, 1805, 1925, 1926, 1806, 1806, 1926, 1927, 1807, 1807, 1927, 1928, 1808, 1808, 1928, 1929, 1809, 1809, 1929, 1930, 1810, 1810, 1930, 1931, 1811, 1811, 1931, 1932, 1812, 1812, 1932, 1933, 1813, 1813, 1933, 1934, 1814, 1814, 1934, 1935, 1815, 1815, 1935, 1936, 1816, 1816, 1936, 1937, 1817, 1817, 1937, 1938, 1818, 1818, 1938, 1939, 1819, 1819, 1939, 1940, 1820, 1820, 1940, 1941, 1821, 1821, 1941, 1942, 1822, 1822, 1942, 1943, 1823, 1823, 1943, 1944, 1824, 1824, 1944, 1945, 1825, 1825, 1945, 1946, 1826, 1826, 1946, 1947, 1827, 1827, 1947, 1948, 1828, 1828, 1948, 1949, 1829, 1829, 1949, 1950, 1830, 1830, 1950, 1951, 1831, 1831, 1951, 1952, 1832, 1832, 1952, 1953, 1833, 1833, 1953, 1954, 1834, 1834, 1954, 1955, 1835, 1835, 1955, 1956, 1836, 1836, 1956, 1957, 1837, 1837, 1957, 1958, 1838, 1838, 1958, 1959, 1839, 1839, 1959, 1960, 1840, 1840, 1960, 1961, 1841, 1841, 1961, 1962, 1842, 1842, 1962, 1963, 1843, 1843, 1963, 1964, 1844, 1844, 1964, 1965, 1845, 1845, 1965, 1966, 1846, 1846, 1966, 1967, 1847, 1847, 1967, 1968, 1848, 1848, 1968, 1969, 1849, 1849, 1969, 1970, 1850, 1850, 1970, 1971, 1851, 1851, 1971, 1972, 1852, 1852, 1972, 1973, 1853, 1853, 1973, 1974, 1854, 1854, 1974, 1975, 1855, 1855, 1975, 1976, 1856, 1856, 1976, 1977, 1857, 1857, 1977, 1978, 1858, 1858, 1978, 1979, 1859, 1859, 1979, 1980, 1860, 1860, 1980, 1981, 1861, 1861, 1981, 1982, 1862, 1862, 1982, 1983, 1863, 1863, 1983, 1984, 1864, 1864, 1984, 1985, 1865, 1865, 1985, 1986, 1866, 1866, 1986, 1987, 1867, 1867, 1987, 1988, 1868, 1868, 1988, 1989, 1869, 1869, 1989, 1990, 1870, 1870, 1990, 1991, 1871, 1871, 1991, 1992, 1872, 1872, 1992, 1993, 1873, 1873, 1993, 1994, 1874, 1874, 1994, 1995, 1875, 1875, 1995, 1996, 1876, 1876, 1996, 1997, 1877, 1877, 1997, 1998, 1878, 1878, 1998, 1999, 1879, 1879, 1999, 2000, 1880, 1880, 2000, 2001, 1881, 1881, 2001, 2002, 1882, 1882, 2002, 2003, 1883, 1883, 2003, 2004, 1884, 1884, 2004, 2005, 1885, 1885, 2005, 2006, 1886, 1886, 2006, 2007, 1887, 1887, 2007, 2008, 1888, 1888, 2008, 2009, 1889, 1889, 2009, 2010, 1890, 1890, 2010, 2011, 1891, 1891, 2011, 2012, 1892, 1892, 2012, 2013, 1893, 1893, 2013, 2014, 1894, 1894, 2014, 2015, 1895, 1895, 2015, 2016, 1896, 1896, 2016, 2017, 1897, 1897, 2017, 2018, 1898, 1898, 2018, 2019, 1899, 1899, 2019, 2020, 1900, 1900, 2020, 2021, 1901, 1901, 2021, 2022, 1902, 1902, 2022, 2023, 1903, 1903, 2023, 2024, 1904, 1904, 2024, 2025, 1905, 1905, 2025, 2026, 1906, 1906, 2026, 2027, 1907, 1907, 2027, 2028, 1908, 1908, 2028, 2029, 1909, 1909, 2029, 2030, 1910, 1910, 2030, 2031, 1911, 1911, 2031, 2032, 1912, 1912, 2032, 2033, 1913, 1913, 2033, 2034, 1914, 1914, 2034, 2035, 1915, 1915, 2035, 2036, 1916, 1916, 2036, 2037, 1917, 1917, 2037, 2038, 1918, 1918, 2038, 2039, 1919, 1919, 2039, 2040, 1920, 1920, 2040, 1921, 1801, 1921, 2041, 2042, 1922, 1922, 2042, 2043, 1923, 1923, 2043, 2044, 1924, 1924, 2044, 2045, 1925, 1925, 2045, 2046, 1926, 1926, 2046, 2047, 1927, 1927, 2047, 2048, 1928, 1928, 2048, 2049, 1929, 1929, 2049, 2050, 1930, 1930, 2050, 2051, 1931, 1931, 2051, 2052, 1932, 1932, 2052, 2053, 1933, 1933, 2053, 2054, 1934, 1934, 2054, 2055, 1935, 1935, 2055, 2056, 1936, 1936, 2056, 2057, 1937, 1937, 2057, 2058, 1938, 1938, 2058, 2059, 1939, 1939, 2059, 2060, 1940, 1940, 2060, 2061, 1941, 1941, 2061, 2062, 1942, 1942, 2062, 2063, 1943, 1943, 2063, 2064, 1944, 1944, 2064, 2065, 1945, 1945, 2065, 2066, 1946, 1946, 2066, 2067, 1947, 1947, 2067, 2068, 1948, 1948, 2068, 2069, 1949, 1949, 2069, 2070, 1950, 1950, 2070, 2071, 1951, 1951, 2071, 2072, 1952, 1952, 2072, 2073, 1953, 1953, 2073, 2074, 1954, 1954, 2074, 2075, 1955, 1955, 2075, 2076, 1956, 1956, 2076, 2077, 1957, 1957, 2077, 2078, 1958, 1958, 2078, 2079, 1959, 1959, 2079, 2080, 1960, 1960, 2080, 2081, 1961, 1961, 2081, 2082, 1962, 1962, 2082, 2083, 1963, 1963, 2083, 2084, 1964, 1964, 2084, 2085, 1965, 1965, 2085, 2086, 1966, 1966, 2086, 2087, 1967, 1967, 2087, 2088, 1968, 1968, 2088, 2089, 1969, 1969, 2089, 2090, 1970, 1970, 2090, 2091, 1971, 1971, 2091, 2092, 1972, 1972, 2092, 2093, 1973, 1973, 2093, 2094, 1974, 1974, 2094, 2095, 1975, 1975, 2095, 2096, 1976, 1976, 2096, 2097, 1977, 1977, 2097, 2098, 1978, 1978, 2098, 2099, 1979, 1979, 2099, 2100, 1980, 1980, 2100, 2101, 1981, 1981, 2101, 2102, 1982, 1982, 2102, 2103, 1983, 1983, 2103, 2104, 1984, 1984, 2104, 2105, 1985, 1985, 2105, 2106, 1986, 1986, 2106, 2107, 1987, 1987, 2107, 2108, 1988, 1988, 2108, 2109, 1989, 1989, 2109, 2110, 1990, 1990, 2110, 2111, 1991, 1991, 2111, 2112, 1992, 1992, 2112, 2113, 1993, 1993, 2113, 2114, 1994, 1994, 2114, 2115, 1995, 1995, 2115, 2116, 1996, 1996, 2116, 2117, 1997, 1997, 2117, 2118, 1998, 1998, 2118, 2119, 1999, 1999, 2119, 2120, 2000, 2000, 2120, 2121, 2001, 2001, 2121, 2122, 2002, 2002, 2122, 2123, 2003, 2003, 2123, 2124, 2004, 2004, 2124, 2125, 2005, 2005, 2125, 2126, 2006, 2006, 2126, 2127, 2007, 2007, 2127, 2128, 2008, 2008, 2128, 2129, 2009, 2009, 2129, 2130, 2010, 2010, 2130, 2131, 2011, 2011, 2131, 2132, 2012, 2012, 2132, 2133, 2013, 2013, 2133, 2134, 2014, 2014, 2134, 2135, 2015, 2015, 2135, 2136, 2016, 2016, 2136, 2137, 2017, 2017, 2137, 2138, 2018, 2018, 2138, 2139, 2019, 2019, 2139, 2140, 2020, 2020, 2140, 2141, 2021, 2021, 2141, 2142, 2022, 2022, 2142, 2143, 2023, 2023, 2143, 2144, 2024, 2024, 2144, 2145, 2025, 2025, 2145, 2146, 2026, 2026, 2146, 2147, 2027, 2027, 2147, 2148, 2028, 2028, 2148, 2149, 2029, 2029, 2149, 2150, 2030, 2030, 2150, 2151, 2031, 2031, 2151, 2152, 2032, 2032, 2152, 2153, 2033, 2033, 2153, 2154, 2034, 2034, 2154, 2155, 2035, 2035, 2155, 2156, 2036, 2036, 2156, 2157, 2037, 2037, 2157, 2158, 2038, 2038, 2158, 2159, 2039, 2039, 2159, 2160, 2040, 2040, 2160, 2041, 1921, 2041, 2161, 2162, 2042, 2042, 2162, 2163, 2043, 2043, 2163, 2164, 2044, 2044, 2164, 2165, 2045, 2045, 2165, 2166, 2046, 2046, 2166, 2167, 2047, 2047, 2167, 2168, 2048, 2048, 2168, 2169, 2049, 2049, 2169, 2170, 2050, 2050, 2170, 2171, 2051, 2051, 2171, 2172, 2052, 2052, 2172, 2173, 2053, 2053, 2173, 2174, 2054, 2054, 2174, 2175, 2055, 2055, 2175, 2176, 2056, 2056, 2176, 2177, 2057, 2057, 2177, 2178, 2058, 2058, 2178, 2179, 2059, 2059, 2179, 2180, 2060, 2060, 2180, 2181, 2061, 2061, 2181, 2182, 2062, 2062, 2182, 2183, 2063, 2063, 2183, 2184, 2064, 2064, 2184, 2185, 2065, 2065, 2185, 2186, 2066, 2066, 2186, 2187, 2067, 2067, 2187, 2188, 2068, 2068, 2188, 2189, 2069, 2069, 2189, 2190, 2070, 2070, 2190, 2191, 2071, 2071, 2191, 2192, 2072, 2072, 2192, 2193, 2073, 2073, 2193, 2194, 2074, 2074, 2194, 2195, 2075, 2075, 2195, 2196, 2076, 2076, 2196, 2197, 2077, 2077, 2197, 2198, 2078, 2078, 2198, 2199, 2079, 2079, 2199, 2200, 2080, 2080, 2200, 2201, 2081, 2081, 2201, 2202, 2082, 2082, 2202, 2203, 2083, 2083, 2203, 2204, 2084, 2084, 2204, 2205, 2085, 2085, 2205, 2206, 2086, 2086, 2206, 2207, 2087, 2087, 2207, 2208, 2088, 2088, 2208, 2209, 2089, 2089, 2209, 2210, 2090, 2090, 2210, 2211, 2091, 2091, 2211, 2212, 2092, 2092, 2212, 2213, 2093, 2093, 2213, 2214, 2094, 2094, 2214, 2215, 2095, 2095, 2215, 2216, 2096, 2096, 2216, 2217, 2097, 2097, 2217, 2218, 2098, 2098, 2218, 2219, 2099, 2099, 2219, 2220, 2100, 2100, 2220, 2221, 2101, 2101, 2221, 2222, 2102, 2102, 2222, 2223, 2103, 2103, 2223, 2224, 2104, 2104, 2224, 2225, 2105, 2105, 2225, 2226, 2106, 2106, 2226, 2227, 2107, 2107, 2227, 2228, 2108, 2108, 2228, 2229, 2109, 2109, 2229, 2230, 2110, 2110, 2230, 2231, 2111, 2111, 2231, 2232, 2112, 2112, 2232, 2233, 2113, 2113, 2233, 2234, 2114, 2114, 2234, 2235, 2115, 2115, 2235, 2236, 2116, 2116, 2236, 2237, 2117, 2117, 2237, 2238, 2118, 2118, 2238, 2239, 2119, 2119, 2239, 2240, 2120, 2120, 2240, 2241, 2121, 2121, 2241, 2242, 2122, 2122, 2242, 2243, 2123, 2123, 2243, 2244, 2124, 2124, 2244, 2245, 2125, 2125, 2245, 2246, 2126, 2126, 2246, 2247, 2127, 2127, 2247, 2248, 2128, 2128, 2248, 2249, 2129, 2129, 2249, 2250, 2130, 2130, 2250, 2251, 2131, 2131, 2251, 2252, 2132, 2132, 2252, 2253, 2133, 2133, 2253, 2254, 2134, 2134, 2254, 2255, 2135, 2135, 2255, 2256, 2136, 2136, 2256, 2257, 2137, 2137, 2257, 2258, 2138, 2138, 2258, 2259, 2139, 2139, 2259, 2260, 2140, 2140, 2260, 2261, 2141, 2141, 2261, 2262, 2142, 2142, 2262, 2263, 2143, 2143, 2263, 2264, 2144, 2144, 2264, 2265, 2145, 2145, 2265, 2266, 2146, 2146, 2266, 2267, 2147, 2147, 2267, 2268, 2148, 2148, 2268, 2269, 2149, 2149, 2269, 2270, 2150, 2150, 2270, 2271, 2151, 2151, 2271, 2272, 2152, 2152, 2272, 2273, 2153, 2153, 2273, 2274, 2154, 2154, 2274, 2275, 2155, 2155, 2275, 2276, 2156, 2156, 2276, 2277, 2157, 2157, 2277, 2278, 2158, 2158, 2278, 2279, 2159, 2159, 2279, 2280, 2160, 2160, 2280, 2161, 2041, 2161, 2281, 2282, 2162, 2162, 2282, 2283, 2163, 2163, 2283, 2284, 2164, 2164, 2284, 2285, 2165, 2165, 2285, 2286, 2166, 2166, 2286, 2287, 2167, 2167, 2287, 2288, 2168, 2168, 2288, 2289, 2169, 2169, 2289, 2290, 2170, 2170, 2290, 2291, 2171, 2171, 2291, 2292, 2172, 2172, 2292, 2293, 2173, 2173, 2293, 2294, 2174, 2174, 2294, 2295, 2175, 2175, 2295, 2296, 2176, 2176, 2296, 2297, 2177, 2177, 2297, 2298, 2178, 2178, 2298, 2299, 2179, 2179, 2299, 2300, 2180, 2180, 2300, 2301, 2181, 2181, 2301, 2302, 2182, 2182, 2302, 2303, 2183, 2183, 2303, 2304, 2184, 2184, 2304, 2305, 2185, 2185, 2305, 2306, 2186, 2186, 2306, 2307, 2187, 2187, 2307, 2308, 2188, 2188, 2308, 2309, 2189, 2189, 2309, 2310, 2190, 2190, 2310, 2311, 2191, 2191, 2311, 2312, 2192, 2192, 2312, 2313, 2193, 2193, 2313, 2314, 2194, 2194, 2314, 2315, 2195, 2195, 2315, 2316, 2196, 2196, 2316, 2317, 2197, 2197, 2317, 2318, 2198, 2198, 2318, 2319, 2199, 2199, 2319, 2320, 2200, 2200, 2320, 2321, 2201, 2201, 2321, 2322, 2202, 2202, 2322, 2323, 2203, 2203, 2323, 2324, 2204, 2204, 2324, 2325, 2205, 2205, 2325, 2326, 2206, 2206, 2326, 2327, 2207, 2207, 2327, 2328, 2208, 2208, 2328, 2329, 2209, 2209, 2329, 2330, 2210, 2210, 2330, 2331, 2211, 2211, 2331, 2332, 2212, 2212, 2332, 2333, 2213, 2213, 2333, 2334, 2214, 2214, 2334, 2335, 2215, 2215, 2335, 2336, 2216, 2216, 2336, 2337, 2217, 2217, 2337, 2338, 2218, 2218, 2338, 2339, 2219, 2219, 2339, 2340, 2220, 2220, 2340, 2341, 2221, 2221, 2341, 2342, 2222, 2222, 2342, 2343, 2223, 2223, 2343, 2344, 2224, 2224, 2344, 2345, 2225, 2225, 2345, 2346, 2226, 2226, 2346, 2347, 2227, 2227, 2347, 2348, 2228, 2228, 2348, 2349, 2229, 2229, 2349, 2350, 2230, 2230, 2350, 2351, 2231, 2231, 2351, 2352, 2232, 2232, 2352, 2353, 2233, 2233, 2353, 2354, 2234, 2234, 2354, 2355, 2235, 2235, 2355, 2356, 2236, 2236, 2356, 2357, 2237, 2237, 2357, 2358, 2238, 2238, 2358, 2359, 2239, 2239, 2359, 2360, 2240, 2240, 2360, 2361, 2241, 2241, 2361, 2362, 2242, 2242, 2362, 2363, 2243, 2243, 2363, 2364, 2244, 2244, 2364, 2365, 2245, 2245, 2365, 2366, 2246, 2246, 2366, 2367, 2247, 2247, 2367, 2368, 2248, 2248, 2368, 2369, 2249, 2249, 2369, 2370, 2250, 2250, 2370, 2371, 2251, 2251, 2371, 2372, 2252, 2252, 2372, 2373, 2253, 2253, 2373, 2374, 2254, 2254, 2374, 2375, 2255, 2255, 2375, 2376, 2256, 2256, 2376, 2377, 2257, 2257, 2377, 2378, 2258, 2258, 2378, 2379, 2259, 2259, 2379, 2380, 2260, 2260, 2380, 2381, 2261, 2261, 2381, 2382, 2262, 2262, 2382, 2383, 2263, 2263, 2383, 2384, 2264, 2264, 2384, 2385, 2265, 2265, 2385, 2386, 2266, 2266, 2386, 2387, 2267, 2267, 2387, 2388, 2268, 2268, 2388, 2389, 2269, 2269, 2389, 2390, 2270, 2270, 2390, 2391, 2271, 2271, 2391, 2392, 2272, 2272, 2392, 2393, 2273, 2273, 2393, 2394, 2274, 2274, 2394, 2395, 2275, 2275, 2395, 2396, 2276, 2276, 2396, 2397, 2277, 2277, 2397, 2398, 2278, 2278, 2398, 2399, 2279, 2279, 2399, 2400, 2280, 2280, 2400, 2281, 2161, 2281, 2401, 2402, 2282, 2282, 2402, 2403, 2283, 2283, 2403, 2404, 2284, 2284, 2404, 2405, 2285, 2285, 2405, 2406, 2286, 2286, 2406, 2407, 2287, 2287, 2407, 2408, 2288, 2288, 2408, 2409, 2289, 2289, 2409, 2410, 2290, 2290, 2410, 2411, 2291, 2291, 2411, 2412, 2292, 2292, 2412, 2413, 2293, 2293, 2413, 2414, 2294, 2294, 2414, 2415, 2295, 2295, 2415, 2416, 2296, 2296, 2416, 2417, 2297, 2297, 2417, 2418, 2298, 2298, 2418, 2419, 2299, 2299, 2419, 2420, 2300, 2300, 2420, 2421, 2301, 2301, 2421, 2422, 2302, 2302, 2422, 2423, 2303, 2303, 2423, 2424, 2304, 2304, 2424, 2425, 2305, 2305, 2425, 2426, 2306, 2306, 2426, 2427, 2307, 2307, 2427, 2428, 2308, 2308, 2428, 2429, 2309, 2309, 2429, 2430, 2310, 2310, 2430, 2431, 2311, 2311, 2431, 2432, 2312, 2312, 2432, 2433, 2313, 2313, 2433, 2434, 2314, 2314, 2434, 2435, 2315, 2315, 2435, 2436, 2316, 2316, 2436, 2437, 2317, 2317, 2437, 2438, 2318, 2318, 2438, 2439, 2319, 2319, 2439, 2440, 2320, 2320, 2440, 2441, 2321, 2321, 2441, 2442, 2322, 2322, 2442, 2443, 2323, 2323, 2443, 2444, 2324, 2324, 2444, 2445, 2325, 2325, 2445, 2446, 2326, 2326, 2446, 2447, 2327, 2327, 2447, 2448, 2328, 2328, 2448, 2449, 2329, 2329, 2449, 2450, 2330, 2330, 2450, 2451, 2331, 2331, 2451, 2452, 2332, 2332, 2452, 2453, 2333, 2333, 2453, 2454, 2334, 2334, 2454, 2455, 2335, 2335, 2455, 2456, 2336, 2336, 2456, 2457, 2337, 2337, 2457, 2458, 2338, 2338, 2458, 2459, 2339, 2339, 2459, 2460, 2340, 2340, 2460, 2461, 2341, 2341, 2461, 2462, 2342, 2342, 2462, 2463, 2343, 2343, 2463, 2464, 2344, 2344, 2464, 2465, 2345, 2345, 2465, 2466, 2346, 2346, 2466, 2467, 2347, 2347, 2467, 2468, 2348, 2348, 2468, 2469, 2349, 2349, 2469, 2470, 2350, 2350, 2470, 2471, 2351, 2351, 2471, 2472, 2352, 2352, 2472, 2473, 2353, 2353, 2473, 2474, 2354, 2354, 2474, 2475, 2355, 2355, 2475, 2476, 2356, 2356, 2476, 2477, 2357, 2357, 2477, 2478, 2358, 2358, 2478, 2479, 2359, 2359, 2479, 2480, 2360, 2360, 2480, 2481, 2361, 2361, 2481, 2482, 2362, 2362, 2482, 2483, 2363, 2363, 2483, 2484, 2364, 2364, 2484, 2485, 2365, 2365, 2485, 2486, 2366, 2366, 2486, 2487, 2367, 2367, 2487, 2488, 2368, 2368, 2488, 2489, 2369, 2369, 2489, 2490, 2370, 2370, 2490, 2491, 2371, 2371, 2491, 2492, 2372, 2372, 2492, 2493, 2373, 2373, 2493, 2494, 2374, 2374, 2494, 2495, 2375, 2375, 2495, 2496, 2376, 2376, 2496, 2497, 2377, 2377, 2497, 2498, 2378, 2378, 2498, 2499, 2379, 2379, 2499, 2500, 2380, 2380, 2500, 2501, 2381, 2381, 2501, 2502, 2382, 2382, 2502, 2503, 2383, 2383, 2503, 2504, 2384, 2384, 2504, 2505, 2385, 2385, 2505, 2506, 2386, 2386, 2506, 2507, 2387, 2387, 2507, 2508, 2388, 2388, 2508, 2509, 2389, 2389, 2509, 2510, 2390, 2390, 2510, 2511, 2391, 2391, 2511, 2512, 2392, 2392, 2512, 2513, 2393, 2393, 2513, 2514, 2394, 2394, 2514, 2515, 2395, 2395, 2515, 2516, 2396, 2396, 2516, 2517, 2397, 2397, 2517, 2518, 2398, 2398, 2518, 2519, 2399, 2399, 2519, 2520, 2400, 2400, 2520, 2401, 2281, 2401, 2521, 2522, 2402, 2402, 2522, 2523, 2403, 2403, 2523, 2524, 2404, 2404, 2524, 2525, 2405, 2405, 2525, 2526, 2406, 2406, 2526, 2527, 2407, 2407, 2527, 2528, 2408, 2408, 2528, 2529, 2409, 2409, 2529, 2530, 2410, 2410, 2530, 2531, 2411, 2411, 2531, 2532, 2412, 2412, 2532, 2533, 2413, 2413, 2533, 2534, 2414, 2414, 2534, 2535, 2415, 2415, 2535, 2536, 2416, 2416, 2536, 2537, 2417, 2417, 2537, 2538, 2418, 2418, 2538, 2539, 2419, 2419, 2539, 2540, 2420, 2420, 2540, 2541, 2421, 2421, 2541, 2542, 2422, 2422, 2542, 2543, 2423, 2423, 2543, 2544, 2424, 2424, 2544, 2545, 2425, 2425, 2545, 2546, 2426, 2426, 2546, 2547, 2427, 2427, 2547, 2548, 2428, 2428, 2548, 2549, 2429, 2429, 2549, 2550, 2430, 2430, 2550, 2551, 2431, 2431, 2551, 2552, 2432, 2432, 2552, 2553, 2433, 2433, 2553, 2554, 2434, 2434, 2554, 2555, 2435, 2435, 2555, 2556, 2436, 2436, 2556, 2557, 2437, 2437, 2557, 2558, 2438, 2438, 2558, 2559, 2439, 2439, 2559, 2560, 2440, 2440, 2560, 2561, 2441, 2441, 2561, 2562, 2442, 2442, 2562, 2563, 2443, 2443, 2563, 2564, 2444, 2444, 2564, 2565, 2445, 2445, 2565, 2566, 2446, 2446, 2566, 2567, 2447, 2447, 2567, 2568, 2448, 2448, 2568, 2569, 2449, 2449, 2569, 2570, 2450, 2450, 2570, 2571, 2451, 2451, 2571, 2572, 2452, 2452, 2572, 2573, 2453, 2453, 2573, 2574, 2454, 2454, 2574, 2575, 2455, 2455, 2575, 2576, 2456, 2456, 2576, 2577, 2457, 2457, 2577, 2578, 2458, 2458, 2578, 2579, 2459, 2459, 2579, 2580, 2460, 2460, 2580, 2581, 2461, 2461, 2581, 2582, 2462, 2462, 2582, 2583, 2463, 2463, 2583, 2584, 2464, 2464, 2584, 2585, 2465, 2465, 2585, 2586, 2466, 2466, 2586, 2587, 2467, 2467, 2587, 2588, 2468, 2468, 2588, 2589, 2469, 2469, 2589, 2590, 2470, 2470, 2590, 2591, 2471, 2471, 2591, 2592, 2472, 2472, 2592, 2593, 2473, 2473, 2593, 2594, 2474, 2474, 2594, 2595, 2475, 2475, 2595, 2596, 2476, 2476, 2596, 2597, 2477, 2477, 2597, 2598, 2478, 2478, 2598, 2599, 2479, 2479, 2599, 2600, 2480, 2480, 2600, 2601, 2481, 2481, 2601, 2602, 2482, 2482, 2602, 2603, 2483, 2483, 2603, 2604, 2484, 2484, 2604, 2605, 2485, 2485, 2605, 2606, 2486, 2486, 2606, 2607, 2487, 2487, 2607, 2608, 2488, 2488, 2608, 2609, 2489, 2489, 2609, 2610, 2490, 2490, 2610, 2611, 2491, 2491, 2611, 2612, 2492, 2492, 2612, 2613, 2493, 2493, 2613, 2614, 2494, 2494, 2614, 2615, 2495, 2495, 2615, 2616, 2496, 2496, 2616, 2617, 2497, 2497, 2617, 2618, 2498, 2498, 2618, 2619, 2499, 2499, 2619, 2620, 2500, 2500, 2620, 2621, 2501, 2501, 2621, 2622, 2502, 2502, 2622, 2623, 2503, 2503, 2623, 2624, 2504, 2504, 2624, 2625, 2505, 2505, 2625, 2626, 2506, 2506, 2626, 2627, 2507, 2507, 2627, 2628, 2508, 2508, 2628, 2629, 2509, 2509, 2629, 2630, 2510, 2510, 2630, 2631, 2511, 2511, 2631, 2632, 2512, 2512, 2632, 2633, 2513, 2513, 2633, 2634, 2514, 2514, 2634, 2635, 2515, 2515, 2635, 2636, 2516, 2516, 2636, 2637, 2517, 2517, 2637, 2638, 2518, 2518, 2638, 2639, 2519, 2519, 2639, 2640, 2520, 2520, 2640, 2521, 2401, 2521, 2641, 2642, 2522, 2522, 2642, 2643, 2523, 2523, 2643, 2644, 2524, 2524, 2644, 2645, 2525, 2525, 2645, 2646, 2526, 2526, 2646, 2647, 2527, 2527, 2647, 2648, 2528, 2528, 2648, 2649, 2529, 2529, 2649, 2650, 2530, 2530, 2650, 2651, 2531, 2531, 2651, 2652, 2532, 2532, 2652, 2653, 2533, 2533, 2653, 2654, 2534, 2534, 2654, 2655, 2535, 2535, 2655, 2656, 2536, 2536, 2656, 2657, 2537, 2537, 2657, 2658, 2538, 2538, 2658, 2659, 2539, 2539, 2659, 2660, 2540, 2540, 2660, 2661, 2541, 2541, 2661, 2662, 2542, 2542, 2662, 2663, 2543, 2543, 2663, 2664, 2544, 2544, 2664, 2665, 2545, 2545, 2665, 2666, 2546, 2546, 2666, 2667, 2547, 2547, 2667, 2668, 2548, 2548, 2668, 2669, 2549, 2549, 2669, 2670, 2550, 2550, 2670, 2671, 2551, 2551, 2671, 2672, 2552, 2552, 2672, 2673, 2553, 2553, 2673, 2674, 2554, 2554, 2674, 2675, 2555, 2555, 2675, 2676, 2556, 2556, 2676, 2677, 2557, 2557, 2677, 2678, 2558, 2558, 2678, 2679, 2559, 2559, 2679, 2680, 2560, 2560, 2680, 2681, 2561, 2561, 2681, 2682, 2562, 2562, 2682, 2683, 2563, 2563, 2683, 2684, 2564, 2564, 2684, 2685, 2565, 2565, 2685, 2686, 2566, 2566, 2686, 2687, 2567, 2567, 2687, 2688, 2568, 2568, 2688, 2689, 2569, 2569, 2689, 2690, 2570, 2570, 2690, 2691, 2571, 2571, 2691, 2692, 2572, 2572, 2692, 2693, 2573, 2573, 2693, 2694, 2574, 2574, 2694, 2695, 2575, 2575, 2695, 2696, 2576, 2576, 2696, 2697, 2577, 2577, 2697, 2698, 2578, 2578, 2698, 2699, 2579, 2579, 2699, 2700, 2580, 2580, 2700, 2701, 2581, 2581, 2701, 2702, 2582, 2582, 2702, 2703, 2583, 2583, 2703, 2704, 2584, 2584, 2704, 2705, 2585, 2585, 2705, 2706, 2586, 2586, 2706, 2707, 2587, 2587, 2707, 2708, 2588, 2588, 2708, 2709, 2589, 2589, 2709, 2710, 2590, 2590, 2710, 2711, 2591, 2591, 2711, 2712, 2592, 2592, 2712, 2713, 2593, 2593, 2713, 2714, 2594, 2594, 2714, 2715, 2595, 2595, 2715, 2716, 2596, 2596, 2716, 2717, 2597, 2597, 2717, 2718, 2598, 2598, 2718, 2719, 2599, 2599, 2719, 2720, 2600, 2600, 2720, 2721, 2601, 2601, 2721, 2722, 2602, 2602, 2722, 2723, 2603, 2603, 2723, 2724, 2604, 2604, 2724, 2725, 2605, 2605, 2725, 2726, 2606, 2606, 2726, 2727, 2607, 2607, 2727, 2728, 2608, 2608, 2728, 2729, 2609, 2609, 2729, 2730, 2610, 2610, 2730, 2731, 2611, 2611, 2731, 2732, 2612, 2612, 2732, 2733, 2613, 2613, 2733, 2734, 2614, 2614, 2734, 2735, 2615, 2615, 2735, 2736, 2616, 2616, 2736, 2737, 2617, 2617, 2737, 2738, 2618, 2618, 2738, 2739, 2619, 2619, 2739, 2740, 2620, 2620, 2740, 2741, 2621, 2621, 2741, 2742, 2622, 2622, 2742, 2743, 2623, 2623, 2743, 2744, 2624, 2624, 2744, 2745, 2625, 2625, 2745, 2746, 2626, 2626, 2746, 2747, 2627, 2627, 2747, 2748, 2628, 2628, 2748, 2749, 2629, 2629, 2749, 2750, 2630, 2630, 2750, 2751, 2631, 2631, 2751, 2752, 2632, 2632, 2752, 2753, 2633, 2633, 2753, 2754, 2634, 2634, 2754, 2755, 2635, 2635, 2755, 2756, 2636, 2636, 2756, 2757, 2637, 2637, 2757, 2758, 2638, 2638, 2758, 2759, 2639, 2639, 2759, 2760, 2640, 2640, 2760, 2641, 2521, 2641, 2761, 2762, 2642, 2642, 2762, 2763, 2643, 2643, 2763, 2764, 2644, 2644, 2764, 2765, 2645, 2645, 2765, 2766, 2646, 2646, 2766, 2767, 2647, 2647, 2767, 2768, 2648, 2648, 2768, 2769, 2649, 2649, 2769, 2770, 2650, 2650, 2770, 2771, 2651, 2651, 2771, 2772, 2652, 2652, 2772, 2773, 2653, 2653, 2773, 2774, 2654, 2654, 2774, 2775, 2655, 2655, 2775, 2776, 2656, 2656, 2776, 2777, 2657, 2657, 2777, 2778, 2658, 2658, 2778, 2779, 2659, 2659, 2779, 2780, 2660, 2660, 2780, 2781, 2661, 2661, 2781, 2782, 2662, 2662, 2782, 2783, 2663, 2663, 2783, 2784, 2664, 2664, 2784, 2785, 2665, 2665, 2785, 2786, 2666, 2666, 2786, 2787, 2667, 2667, 2787, 2788, 2668, 2668, 2788, 2789, 2669, 2669, 2789, 2790, 2670, 2670, 2790, 2791, 2671, 2671, 2791, 2792, 2672, 2672, 2792, 2793, 2673, 2673, 2793, 2794, 2674, 2674, 2794, 2795, 2675, 2675, 2795, 2796, 2676, 2676, 2796, 2797, 2677, 2677, 2797, 2798, 2678, 2678, 2798, 2799, 2679, 2679, 2799, 2800, 2680, 2680, 2800, 2801, 2681, 2681, 2801, 2802, 2682, 2682, 2802, 2803, 2683, 2683, 2803, 2804, 2684, 2684, 2804, 2805, 2685, 2685, 2805, 2806, 2686, 2686, 2806, 2807, 2687, 2687, 2807, 2808, 2688, 2688, 2808, 2809, 2689, 2689, 2809, 2810, 2690, 2690, 2810, 2811, 2691, 2691, 2811, 2812, 2692, 2692, 2812, 2813, 2693, 2693, 2813, 2814, 2694, 2694, 2814, 2815, 2695, 2695, 2815, 2816, 2696, 2696, 2816, 2817, 2697, 2697, 2817, 2818, 2698, 2698, 2818, 2819, 2699, 2699, 2819, 2820, 2700, 2700, 2820, 2821, 2701, 2701, 2821, 2822, 2702, 2702, 2822, 2823, 2703, 2703, 2823, 2824, 2704, 2704, 2824, 2825, 2705, 2705, 2825, 2826, 2706, 2706, 2826, 2827, 2707, 2707, 2827, 2828, 2708, 2708, 2828, 2829, 2709, 2709, 2829, 2830, 2710, 2710, 2830, 2831, 2711, 2711, 2831, 2832, 2712, 2712, 2832, 2833, 2713, 2713, 2833, 2834, 2714, 2714, 2834, 2835, 2715, 2715, 2835, 2836, 2716, 2716, 2836, 2837, 2717, 2717, 2837, 2838, 2718, 2718, 2838, 2839, 2719, 2719, 2839, 2840, 2720, 2720, 2840, 2841, 2721, 2721, 2841, 2842, 2722, 2722, 2842, 2843, 2723, 2723, 2843, 2844, 2724, 2724, 2844, 2845, 2725, 2725, 2845, 2846, 2726, 2726, 2846, 2847, 2727, 2727, 2847, 2848, 2728, 2728, 2848, 2849, 2729, 2729, 2849, 2850, 2730, 2730, 2850, 2851, 2731, 2731, 2851, 2852, 2732, 2732, 2852, 2853, 2733, 2733, 2853, 2854, 2734, 2734, 2854, 2855, 2735, 2735, 2855, 2856, 2736, 2736, 2856, 2857, 2737, 2737, 2857, 2858, 2738, 2738, 2858, 2859, 2739, 2739, 2859, 2860, 2740, 2740, 2860, 2861, 2741, 2741, 2861, 2862, 2742, 2742, 2862, 2863, 2743, 2743, 2863, 2864, 2744, 2744, 2864, 2865, 2745, 2745, 2865, 2866, 2746, 2746, 2866, 2867, 2747, 2747, 2867, 2868, 2748, 2748, 2868, 2869, 2749, 2749, 2869, 2870, 2750, 2750, 2870, 2871, 2751, 2751, 2871, 2872, 2752, 2752, 2872, 2873, 2753, 2753, 2873, 2874, 2754, 2754, 2874, 2875, 2755, 2755, 2875, 2876, 2756, 2756, 2876, 2877, 2757, 2757, 2877, 2878, 2758, 2758, 2878, 2879, 2759, 2759, 2879, 2880, 2760, 2760, 2880, 2761, 2641, 2761, 2881, 2882, 2762, 2762, 2882, 2883, 2763, 2763, 2883, 2884, 2764, 2764, 2884, 2885, 2765, 2765, 2885, 2886, 2766, 2766, 2886, 2887, 2767, 2767, 2887, 2888, 2768, 2768, 2888, 2889, 2769, 2769, 2889, 2890, 2770, 2770, 2890, 2891, 2771, 2771, 2891, 2892, 2772, 2772, 2892, 2893, 2773, 2773, 2893, 2894, 2774, 2774, 2894, 2895, 2775, 2775, 2895, 2896, 2776, 2776, 2896, 2897, 2777, 2777, 2897, 2898, 2778, 2778, 2898, 2899, 2779, 2779, 2899, 2900, 2780, 2780, 2900, 2901, 2781, 2781, 2901, 2902, 2782, 2782, 2902, 2903, 2783, 2783, 2903, 2904, 2784, 2784, 2904, 2905, 2785, 2785, 2905, 2906, 2786, 2786, 2906, 2907, 2787, 2787, 2907, 2908, 2788, 2788, 2908, 2909, 2789, 2789, 2909, 2910, 2790, 2790, 2910, 2911, 2791, 2791, 2911, 2912, 2792, 2792, 2912, 2913, 2793, 2793, 2913, 2914, 2794, 2794, 2914, 2915, 2795, 2795, 2915, 2916, 2796, 2796, 2916, 2917, 2797, 2797, 2917, 2918, 2798, 2798, 2918, 2919, 2799, 2799, 2919, 2920, 2800, 2800, 2920, 2921, 2801, 2801, 2921, 2922, 2802, 2802, 2922, 2923, 2803, 2803, 2923, 2924, 2804, 2804, 2924, 2925, 2805, 2805, 2925, 2926, 2806, 2806, 2926, 2927, 2807, 2807, 2927, 2928, 2808, 2808, 2928, 2929, 2809, 2809, 2929, 2930, 2810, 2810, 2930, 2931, 2811, 2811, 2931, 2932, 2812, 2812, 2932, 2933, 2813, 2813, 2933, 2934, 2814, 2814, 2934, 2935, 2815, 2815, 2935, 2936, 2816, 2816, 2936, 2937, 2817, 2817, 2937, 2938, 2818, 2818, 2938, 2939, 2819, 2819, 2939, 2940, 2820, 2820, 2940, 2941, 2821, 2821, 2941, 2942, 2822, 2822, 2942, 2943, 2823, 2823, 2943, 2944, 2824, 2824, 2944, 2945, 2825, 2825, 2945, 2946, 2826, 2826, 2946, 2947, 2827, 2827, 2947, 2948, 2828, 2828, 2948, 2949, 2829, 2829, 2949, 2950, 2830, 2830, 2950, 2951, 2831, 2831, 2951, 2952, 2832, 2832, 2952, 2953, 2833, 2833, 2953, 2954, 2834, 2834, 2954, 2955, 2835, 2835, 2955, 2956, 2836, 2836, 2956, 2957, 2837, 2837, 2957, 2958, 2838, 2838, 2958, 2959, 2839, 2839, 2959, 2960, 2840, 2840, 2960, 2961, 2841, 2841, 2961, 2962, 2842, 2842, 2962, 2963, 2843, 2843, 2963, 2964, 2844, 2844, 2964, 2965, 2845, 2845, 2965, 2966, 2846, 2846, 2966, 2967, 2847, 2847, 2967, 2968, 2848, 2848, 2968, 2969, 2849, 2849, 2969, 2970, 2850, 2850, 2970, 2971, 2851, 2851, 2971, 2972, 2852, 2852, 2972, 2973, 2853, 2853, 2973, 2974, 2854, 2854, 2974, 2975, 2855, 2855, 2975, 2976, 2856, 2856, 2976, 2977, 2857, 2857, 2977, 2978, 2858, 2858, 2978, 2979, 2859, 2859, 2979, 2980, 2860, 2860, 2980, 2981, 2861, 2861, 2981, 2982, 2862, 2862, 2982, 2983, 2863, 2863, 2983, 2984, 2864, 2864, 2984, 2985, 2865, 2865, 2985, 2986, 2866, 2866, 2986, 2987, 2867, 2867, 2987, 2988, 2868, 2868, 2988, 2989, 2869, 2869, 2989, 2990, 2870, 2870, 2990, 2991, 2871, 2871, 2991, 2992, 2872, 2872, 2992, 2993, 2873, 2873, 2993, 2994, 2874, 2874, 2994, 2995, 2875, 2875, 2995, 2996, 2876, 2876, 2996, 2997, 2877, 2877, 2997, 2998, 2878, 2878, 2998, 2999, 2879, 2879, 2999, 3000, 2880, 2880, 3000, 2881, 2761, 2881, 3001, 3002, 2882, 2882, 3002, 3003, 2883, 2883, 3003, 3004, 2884, 2884, 3004, 3005, 2885, 2885, 3005, 3006, 2886, 2886, 3006, 3007, 2887, 2887, 3007, 3008, 2888, 2888, 3008, 3009, 2889, 2889, 3009, 3010, 2890, 2890, 3010, 3011, 2891, 2891, 3011, 3012, 2892, 2892, 3012, 3013, 2893, 2893, 3013, 3014, 2894, 2894, 3014, 3015, 2895, 2895, 3015, 3016, 2896, 2896, 3016, 3017, 2897, 2897, 3017, 3018, 2898, 2898, 3018, 3019, 2899, 2899, 3019, 3020, 2900, 2900, 3020, 3021, 2901, 2901, 3021, 3022, 2902, 2902, 3022, 3023, 2903, 2903, 3023, 3024, 2904, 2904, 3024, 3025, 2905, 2905, 3025, 3026, 2906, 2906, 3026, 3027, 2907, 2907, 3027, 3028, 2908, 2908, 3028, 3029, 2909, 2909, 3029, 3030, 2910, 2910, 3030, 3031, 2911, 2911, 3031, 3032, 2912, 2912, 3032, 3033, 2913, 2913, 3033, 3034, 2914, 2914, 3034, 3035, 2915, 2915, 3035, 3036, 2916, 2916, 3036, 3037, 2917, 2917, 3037, 3038, 2918, 2918, 3038, 3039, 2919, 2919, 3039, 3040, 2920, 2920, 3040, 3041, 2921, 2921, 3041, 3042, 2922, 2922, 3042, 3043, 2923, 2923, 3043, 3044, 2924, 2924, 3044, 3045, 2925, 2925, 3045, 3046, 2926, 2926, 3046, 3047, 2927, 2927, 3047, 3048, 2928, 2928, 3048, 3049, 2929, 2929, 3049, 3050, 2930, 2930, 3050, 3051, 2931, 2931, 3051, 3052, 2932, 2932, 3052, 3053, 2933, 2933, 3053, 3054, 2934, 2934, 3054, 3055, 2935, 2935, 3055, 3056, 2936, 2936, 3056, 3057, 2937, 2937, 3057, 3058, 2938, 2938, 3058, 3059, 2939, 2939, 3059, 3060, 2940, 2940, 3060, 3061, 2941, 2941, 3061, 3062, 2942, 2942, 3062, 3063, 2943, 2943, 3063, 3064, 2944, 2944, 3064, 3065, 2945, 2945, 3065, 3066, 2946, 2946, 3066, 3067, 2947, 2947, 3067, 3068, 2948, 2948, 3068, 3069, 2949, 2949, 3069, 3070, 2950, 2950, 3070, 3071, 2951, 2951, 3071, 3072, 2952, 2952, 3072, 3073, 2953, 2953, 3073, 3074, 2954, 2954, 3074, 3075, 2955, 2955, 3075, 3076, 2956, 2956, 3076, 3077, 2957, 2957, 3077, 3078, 2958, 2958, 3078, 3079, 2959, 2959, 3079, 3080, 2960, 2960, 3080, 3081, 2961, 2961, 3081, 3082, 2962, 2962, 3082, 3083, 2963, 2963, 3083, 3084, 2964, 2964, 3084, 3085, 2965, 2965, 3085, 3086, 2966, 2966, 3086, 3087, 2967, 2967, 3087, 3088, 2968, 2968, 3088, 3089, 2969, 2969, 3089, 3090, 2970, 2970, 3090, 3091, 2971, 2971, 3091, 3092, 2972, 2972, 3092, 3093, 2973, 2973, 3093, 3094, 2974, 2974, 3094, 3095, 2975, 2975, 3095, 3096, 2976, 2976, 3096, 3097, 2977, 2977, 3097, 3098, 2978, 2978, 3098, 3099, 2979, 2979, 3099, 3100, 2980, 2980, 3100, 3101, 2981, 2981, 3101, 3102, 2982, 2982, 3102, 3103, 2983, 2983, 3103, 3104, 2984, 2984, 3104, 3105, 2985, 2985, 3105, 3106, 2986, 2986, 3106, 3107, 2987, 2987, 3107, 3108, 2988, 2988, 3108, 3109, 2989, 2989, 3109, 3110, 2990, 2990, 3110, 3111, 2991, 2991, 3111, 3112, 2992, 2992, 3112, 3113, 2993, 2993, 3113, 3114, 2994, 2994, 3114, 3115, 2995, 2995, 3115, 3116, 2996, 2996, 3116, 3117, 2997, 2997, 3117, 3118, 2998, 2998, 3118, 3119, 2999, 2999, 3119, 3120, 3000, 3000, 3120, 3001, 2881, 3001, 3121, 3122, 3002, 3002, 3122, 3123, 3003, 3003, 3123, 3124, 3004, 3004, 3124, 3125, 3005, 3005, 3125, 3126, 3006, 3006, 3126, 3127, 3007, 3007, 3127, 3128, 3008, 3008, 3128, 3129, 3009, 3009, 3129, 3130, 3010, 3010, 3130, 3131, 3011, 3011, 3131, 3132, 3012, 3012, 3132, 3133, 3013, 3013, 3133, 3134, 3014, 3014, 3134, 3135, 3015, 3015, 3135, 3136, 3016, 3016, 3136, 3137, 3017, 3017, 3137, 3138, 3018, 3018, 3138, 3139, 3019, 3019, 3139, 3140, 3020, 3020, 3140, 3141, 3021, 3021, 3141, 3142, 3022, 3022, 3142, 3143, 3023, 3023, 3143, 3144, 3024, 3024, 3144, 3145, 3025, 3025, 3145, 3146, 3026, 3026, 3146, 3147, 3027, 3027, 3147, 3148, 3028, 3028, 3148, 3149, 3029, 3029, 3149, 3150, 3030, 3030, 3150, 3151, 3031, 3031, 3151, 3152, 3032, 3032, 3152, 3153, 3033, 3033, 3153, 3154, 3034, 3034, 3154, 3155, 3035, 3035, 3155, 3156, 3036, 3036, 3156, 3157, 3037, 3037, 3157, 3158, 3038, 3038, 3158, 3159, 3039, 3039, 3159, 3160, 3040, 3040, 3160, 3161, 3041, 3041, 3161, 3162, 3042, 3042, 3162, 3163, 3043, 3043, 3163, 3164, 3044, 3044, 3164, 3165, 3045, 3045, 3165, 3166, 3046, 3046, 3166, 3167, 3047, 3047, 3167, 3168, 3048, 3048, 3168, 3169, 3049, 3049, 3169, 3170, 3050, 3050, 3170, 3171, 3051, 3051, 3171, 3172, 3052, 3052, 3172, 3173, 3053, 3053, 3173, 3174, 3054, 3054, 3174, 3175, 3055, 3055, 3175, 3176, 3056, 3056, 3176, 3177, 3057, 3057, 3177, 3178, 3058, 3058, 3178, 3179, 3059, 3059, 3179, 3180, 3060, 3060, 3180, 3181, 3061, 3061, 3181, 3182, 3062, 3062, 3182, 3183, 3063, 3063, 3183, 3184, 3064, 3064, 3184, 3185, 3065, 3065, 3185, 3186, 3066, 3066, 3186, 3187, 3067, 3067, 3187, 3188, 3068, 3068, 3188, 3189, 3069, 3069, 3189, 3190, 3070, 3070, 3190, 3191, 3071, 3071, 3191, 3192, 3072, 3072, 3192, 3193, 3073, 3073, 3193, 3194, 3074, 3074, 3194, 3195, 3075, 3075, 3195, 3196, 3076, 3076, 3196, 3197, 3077, 3077, 3197, 3198, 3078, 3078, 3198, 3199, 3079, 3079, 3199, 3200, 3080, 3080, 3200, 3201, 3081, 3081, 3201, 3202, 3082, 3082, 3202, 3203, 3083, 3083, 3203, 3204, 3084, 3084, 3204, 3205, 3085, 3085, 3205, 3206, 3086, 3086, 3206, 3207, 3087, 3087, 3207, 3208, 3088, 3088, 3208, 3209, 3089, 3089, 3209, 3210, 3090, 3090, 3210, 3211, 3091, 3091, 3211, 3212, 3092, 3092, 3212, 3213, 3093, 3093, 3213, 3214, 3094, 3094, 3214, 3215, 3095, 3095, 3215, 3216, 3096, 3096, 3216, 3217, 3097, 3097, 3217, 3218, 3098, 3098, 3218, 3219, 3099, 3099, 3219, 3220, 3100, 3100, 3220, 3221, 3101, 3101, 3221, 3222, 3102, 3102, 3222, 3223, 3103, 3103, 3223, 3224, 3104, 3104, 3224, 3225, 3105, 3105, 3225, 3226, 3106, 3106, 3226, 3227, 3107, 3107, 3227, 3228, 3108, 3108, 3228, 3229, 3109, 3109, 3229, 3230, 3110, 3110, 3230, 3231, 3111, 3111, 3231, 3232, 3112, 3112, 3232, 3233, 3113, 3113, 3233, 3234, 3114, 3114, 3234, 3235, 3115, 3115, 3235, 3236, 3116, 3116, 3236, 3237, 3117, 3117, 3237, 3238, 3118, 3118, 3238, 3239, 3119, 3119, 3239, 3240, 3120, 3120, 3240, 3121, 3001, 3121, 3241, 3242, 3122, 3122, 3242, 3243, 3123, 3123, 3243, 3244, 3124, 3124, 3244, 3245, 3125, 3125, 3245, 3246, 3126, 3126, 3246, 3247, 3127, 3127, 3247, 3248, 3128, 3128, 3248, 3249, 3129, 3129, 3249, 3250, 3130, 3130, 3250, 3251, 3131, 3131, 3251, 3252, 3132, 3132, 3252, 3253, 3133, 3133, 3253, 3254, 3134, 3134, 3254, 3255, 3135, 3135, 3255, 3256, 3136, 3136, 3256, 3257, 3137, 3137, 3257, 3258, 3138, 3138, 3258, 3259, 3139, 3139, 3259, 3260, 3140, 3140, 3260, 3261, 3141, 3141, 3261, 3262, 3142, 3142, 3262, 3263, 3143, 3143, 3263, 3264, 3144, 3144, 3264, 3265, 3145, 3145, 3265, 3266, 3146, 3146, 3266, 3267, 3147, 3147, 3267, 3268, 3148, 3148, 3268, 3269, 3149, 3149, 3269, 3270, 3150, 3150, 3270, 3271, 3151, 3151, 3271, 3272, 3152, 3152, 3272, 3273, 3153, 3153, 3273, 3274, 3154, 3154, 3274, 3275, 3155, 3155, 3275, 3276, 3156, 3156, 3276, 3277, 3157, 3157, 3277, 3278, 3158, 3158, 3278, 3279, 3159, 3159, 3279, 3280, 3160, 3160, 3280, 3281, 3161, 3161, 3281, 3282, 3162, 3162, 3282, 3283, 3163, 3163, 3283, 3284, 3164, 3164, 3284, 3285, 3165, 3165, 3285, 3286, 3166, 3166, 3286, 3287, 3167, 3167, 3287, 3288, 3168, 3168, 3288, 3289, 3169, 3169, 3289, 3290, 3170, 3170, 3290, 3291, 3171, 3171, 3291, 3292, 3172, 3172, 3292, 3293, 3173, 3173, 3293, 3294, 3174, 3174, 3294, 3295, 3175, 3175, 3295, 3296, 3176, 3176, 3296, 3297, 3177, 3177, 3297, 3298, 3178, 3178, 3298, 3299, 3179, 3179, 3299, 3300, 3180, 3180, 3300, 3301, 3181, 3181, 3301, 3302, 3182, 3182, 3302, 3303, 3183, 3183, 3303, 3304, 3184, 3184, 3304, 3305, 3185, 3185, 3305, 3306, 3186, 3186, 3306, 3307, 3187, 3187, 3307, 3308, 3188, 3188, 3308, 3309, 3189, 3189, 3309, 3310, 3190, 3190, 3310, 3311, 3191, 3191, 3311, 3312, 3192, 3192, 3312, 3313, 3193, 3193, 3313, 3314, 3194, 3194, 3314, 3315, 3195, 3195, 3315, 3316, 3196, 3196, 3316, 3317, 3197, 3197, 3317, 3318, 3198, 3198, 3318, 3319, 3199, 3199, 3319, 3320, 3200, 3200, 3320, 3321, 3201, 3201, 3321, 3322, 3202, 3202, 3322, 3323, 3203, 3203, 3323, 3324, 3204, 3204, 3324, 3325, 3205, 3205, 3325, 3326, 3206, 3206, 3326, 3327, 3207, 3207, 3327, 3328, 3208, 3208, 3328, 3329, 3209, 3209, 3329, 3330, 3210, 3210, 3330, 3331, 3211, 3211, 3331, 3332, 3212, 3212, 3332, 3333, 3213, 3213, 3333, 3334, 3214, 3214, 3334, 3335, 3215, 3215, 3335, 3336, 3216, 3216, 3336, 3337, 3217, 3217, 3337, 3338, 3218, 3218, 3338, 3339, 3219, 3219, 3339, 3340, 3220, 3220, 3340, 3341, 3221, 3221, 3341, 3342, 3222, 3222, 3342, 3343, 3223, 3223, 3343, 3344, 3224, 3224, 3344, 3345, 3225, 3225, 3345, 3346, 3226, 3226, 3346, 3347, 3227, 3227, 3347, 3348, 3228, 3228, 3348, 3349, 3229, 3229, 3349, 3350, 3230, 3230, 3350, 3351, 3231, 3231, 3351, 3352, 3232, 3232, 3352, 3353, 3233, 3233, 3353, 3354, 3234, 3234, 3354, 3355, 3235, 3235, 3355, 3356, 3236, 3236, 3356, 3357, 3237, 3237, 3357, 3358, 3238, 3238, 3358, 3359, 3239, 3239, 3359, 3360, 3240, 3240, 3360, 3241, 3121, 3241, 3361, 3362, 3242, 3242, 3362, 3363, 3243, 3243, 3363, 3364, 3244, 3244, 3364, 3365, 3245, 3245, 3365, 3366, 3246, 3246, 3366, 3367, 3247, 3247, 3367, 3368, 3248, 3248, 3368, 3369, 3249, 3249, 3369, 3370, 3250, 3250, 3370, 3371, 3251, 3251, 3371, 3372, 3252, 3252, 3372, 3373, 3253, 3253, 3373, 3374, 3254, 3254, 3374, 3375, 3255, 3255, 3375, 3376, 3256, 3256, 3376, 3377, 3257, 3257, 3377, 3378, 3258, 3258, 3378, 3379, 3259, 3259, 3379, 3380, 3260, 3260, 3380, 3381, 3261, 3261, 3381, 3382, 3262, 3262, 3382, 3383, 3263, 3263, 3383, 3384, 3264, 3264, 3384, 3385, 3265, 3265, 3385, 3386, 3266, 3266, 3386, 3387, 3267, 3267, 3387, 3388, 3268, 3268, 3388, 3389, 3269, 3269, 3389, 3390, 3270, 3270, 3390, 3391, 3271, 3271, 3391, 3392, 3272, 3272, 3392, 3393, 3273, 3273, 3393, 3394, 3274, 3274, 3394, 3395, 3275, 3275, 3395, 3396, 3276, 3276, 3396, 3397, 3277, 3277, 3397, 3398, 3278, 3278, 3398, 3399, 3279, 3279, 3399, 3400, 3280, 3280, 3400, 3401, 3281, 3281, 3401, 3402, 3282, 3282, 3402, 3403, 3283, 3283, 3403, 3404, 3284, 3284, 3404, 3405, 3285, 3285, 3405, 3406, 3286, 3286, 3406, 3407, 3287, 3287, 3407, 3408, 3288, 3288, 3408, 3409, 3289, 3289, 3409, 3410, 3290, 3290, 3410, 3411, 3291, 3291, 3411, 3412, 3292, 3292, 3412, 3413, 3293, 3293, 3413, 3414, 3294, 3294, 3414, 3415, 3295, 3295, 3415, 3416, 3296, 3296, 3416, 3417, 3297, 3297, 3417, 3418, 3298, 3298, 3418, 3419, 3299, 3299, 3419, 3420, 3300, 3300, 3420, 3421, 3301, 3301, 3421, 3422, 3302, 3302, 3422, 3423, 3303, 3303, 3423, 3424, 3304, 3304, 3424, 3425, 3305, 3305, 3425, 3426, 3306, 3306, 3426, 3427, 3307, 3307, 3427, 3428, 3308, 3308, 3428, 3429, 3309, 3309, 3429, 3430, 3310, 3310, 3430, 3431, 3311, 3311, 3431, 3432, 3312, 3312, 3432, 3433, 3313, 3313, 3433, 3434, 3314, 3314, 3434, 3435, 3315, 3315, 3435, 3436, 3316, 3316, 3436, 3437, 3317, 3317, 3437, 3438, 3318, 3318, 3438, 3439, 3319, 3319, 3439, 3440, 3320, 3320, 3440, 3441, 3321, 3321, 3441, 3442, 3322, 3322, 3442, 3443, 3323, 3323, 3443, 3444, 3324, 3324, 3444, 3445, 3325, 3325, 3445, 3446, 3326, 3326, 3446, 3447, 3327, 3327, 3447, 3448, 3328, 3328, 3448, 3449, 3329, 3329, 3449, 3450, 3330, 3330, 3450, 3451, 3331, 3331, 3451, 3452, 3332, 3332, 3452, 3453, 3333, 3333, 3453, 3454, 3334, 3334, 3454, 3455, 3335, 3335, 3455, 3456, 3336, 3336, 3456, 3457, 3337, 3337, 3457, 3458, 3338, 3338, 3458, 3459, 3339, 3339, 3459, 3460, 3340, 3340, 3460, 3461, 3341, 3341, 3461, 3462, 3342, 3342, 3462, 3463, 3343, 3343, 3463, 3464, 3344, 3344, 3464, 3465, 3345, 3345, 3465, 3466, 3346, 3346, 3466, 3467, 3347, 3347, 3467, 3468, 3348, 3348, 3468, 3469, 3349, 3349, 3469, 3470, 3350, 3350, 3470, 3471, 3351, 3351, 3471, 3472, 3352, 3352, 3472, 3473, 3353, 3353, 3473, 3474, 3354, 3354, 3474, 3475, 3355, 3355, 3475, 3476, 3356, 3356, 3476, 3477, 3357, 3357, 3477, 3478, 3358, 3358, 3478, 3479, 3359, 3359, 3479, 3480, 3360, 3360, 3480, 3361, 3241, 3361, 3481, 3482, 3362, 3362, 3482, 3483, 3363, 3363, 3483, 3484, 3364, 3364, 3484, 3485, 3365, 3365, 3485, 3486, 3366, 3366, 3486, 3487, 3367, 3367, 3487, 3488, 3368, 3368, 3488, 3489, 3369, 3369, 3489, 3490, 3370, 3370, 3490, 3491, 3371, 3371, 3491, 3492, 3372, 3372, 3492, 3493, 3373, 3373, 3493, 3494, 3374, 3374, 3494, 3495, 3375, 3375, 3495, 3496, 3376, 3376, 3496, 3497, 3377, 3377, 3497, 3498, 3378, 3378, 3498, 3499, 3379, 3379, 3499, 3500, 3380, 3380, 3500, 3501, 3381, 3381, 3501, 3502, 3382, 3382, 3502, 3503, 3383, 3383, 3503, 3504, 3384, 3384, 3504, 3505, 3385, 3385, 3505, 3506, 3386, 3386, 3506, 3507, 3387, 3387, 3507, 3508, 3388, 3388, 3508, 3509, 3389, 3389, 3509, 3510, 3390, 3390, 3510, 3511, 3391, 3391, 3511, 3512, 3392, 3392, 3512, 3513, 3393, 3393, 3513, 3514, 3394, 3394, 3514, 3515, 3395, 3395, 3515, 3516, 3396, 3396, 3516, 3517, 3397, 3397, 3517, 3518, 3398, 3398, 3518, 3519, 3399, 3399, 3519, 3520, 3400, 3400, 3520, 3521, 3401, 3401, 3521, 3522, 3402, 3402, 3522, 3523, 3403, 3403, 3523, 3524, 3404, 3404, 3524, 3525, 3405, 3405, 3525, 3526, 3406, 3406, 3526, 3527, 3407, 3407, 3527, 3528, 3408, 3408, 3528, 3529, 3409, 3409, 3529, 3530, 3410, 3410, 3530, 3531, 3411, 3411, 3531, 3532, 3412, 3412, 3532, 3533, 3413, 3413, 3533, 3534, 3414, 3414, 3534, 3535, 3415, 3415, 3535, 3536, 3416, 3416, 3536, 3537, 3417, 3417, 3537, 3538, 3418, 3418, 3538, 3539, 3419, 3419, 3539, 3540, 3420, 3420, 3540, 3541, 3421, 3421, 3541, 3542, 3422, 3422, 3542, 3543, 3423, 3423, 3543, 3544, 3424, 3424, 3544, 3545, 3425, 3425, 3545, 3546, 3426, 3426, 3546, 3547, 3427, 3427, 3547, 3548, 3428, 3428, 3548, 3549, 3429, 3429, 3549, 3550, 3430, 3430, 3550, 3551, 3431, 3431, 3551, 3552, 3432, 3432, 3552, 3553, 3433, 3433, 3553, 3554, 3434, 3434, 3554, 3555, 3435, 3435, 3555, 3556, 3436, 3436, 3556, 3557, 3437, 3437, 3557, 3558, 3438, 3438, 3558, 3559, 3439, 3439, 3559, 3560, 3440, 3440, 3560, 3561, 3441, 3441, 3561, 3562, 3442, 3442, 3562, 3563, 3443, 3443, 3563, 3564, 3444, 3444, 3564, 3565, 3445, 3445, 3565, 3566, 3446, 3446, 3566, 3567, 3447, 3447, 3567, 3568, 3448, 3448, 3568, 3569, 3449, 3449, 3569, 3570, 3450, 3450, 3570, 3571, 3451, 3451, 3571, 3572, 3452, 3452, 3572, 3573, 3453, 3453, 3573, 3574, 3454, 3454, 3574, 3575, 3455, 3455, 3575, 3576, 3456, 3456, 3576, 3577, 3457, 3457, 3577, 3578, 3458, 3458, 3578, 3579, 3459, 3459, 3579, 3580, 3460, 3460, 3580, 3581, 3461, 3461, 3581, 3582, 3462, 3462, 3582, 3583, 3463, 3463, 3583, 3584, 3464, 3464, 3584, 3585, 3465, 3465, 3585, 3586, 3466, 3466, 3586, 3587, 3467, 3467, 3587, 3588, 3468, 3468, 3588, 3589, 3469, 3469, 3589, 3590, 3470, 3470, 3590, 3591, 3471, 3471, 3591, 3592, 3472, 3472, 3592, 3593, 3473, 3473, 3593, 3594, 3474, 3474, 3594, 3595, 3475, 3475, 3595, 3596, 3476, 3476, 3596, 3597, 3477, 3477, 3597, 3598, 3478, 3478, 3598, 3599, 3479, 3479, 3599, 3600, 3480, 3480, 3600, 3481, 3361, 3481, 3601, 3602, 3482, 3482, 3602, 3603, 3483, 3483, 3603, 3604, 3484, 3484, 3604, 3605, 3485, 3485, 3605, 3606, 3486, 3486, 3606, 3607, 3487, 3487, 3607, 3608, 3488, 3488, 3608, 3609, 3489, 3489, 3609, 3610, 3490, 3490, 3610, 3611, 3491, 3491, 3611, 3612, 3492, 3492, 3612, 3613, 3493, 3493, 3613, 3614, 3494, 3494, 3614, 3615, 3495, 3495, 3615, 3616, 3496, 3496, 3616, 3617, 3497, 3497, 3617, 3618, 3498, 3498, 3618, 3619, 3499, 3499, 3619, 3620, 3500, 3500, 3620, 3621, 3501, 3501, 3621, 3622, 3502, 3502, 3622, 3623, 3503, 3503, 3623, 3624, 3504, 3504, 3624, 3625, 3505, 3505, 3625, 3626, 3506, 3506, 3626, 3627, 3507, 3507, 3627, 3628, 3508, 3508, 3628, 3629, 3509, 3509, 3629, 3630, 3510, 3510, 3630, 3631, 3511, 3511, 3631, 3632, 3512, 3512, 3632, 3633, 3513, 3513, 3633, 3634, 3514, 3514, 3634, 3635, 3515, 3515, 3635, 3636, 3516, 3516, 3636, 3637, 3517, 3517, 3637, 3638, 3518, 3518, 3638, 3639, 3519, 3519, 3639, 3640, 3520, 3520, 3640, 3641, 3521, 3521, 3641, 3642, 3522, 3522, 3642, 3643, 3523, 3523, 3643, 3644, 3524, 3524, 3644, 3645, 3525, 3525, 3645, 3646, 3526, 3526, 3646, 3647, 3527, 3527, 3647, 3648, 3528, 3528, 3648, 3649, 3529, 3529, 3649, 3650, 3530, 3530, 3650, 3651, 3531, 3531, 3651, 3652, 3532, 3532, 3652, 3653, 3533, 3533, 3653, 3654, 3534, 3534, 3654, 3655, 3535, 3535, 3655, 3656, 3536, 3536, 3656, 3657, 3537, 3537, 3657, 3658, 3538, 3538, 3658, 3659, 3539, 3539, 3659, 3660, 3540, 3540, 3660, 3661, 3541, 3541, 3661, 3662, 3542, 3542, 3662, 3663, 3543, 3543, 3663, 3664, 3544, 3544, 3664, 3665, 3545, 3545, 3665, 3666, 3546, 3546, 3666, 3667, 3547, 3547, 3667, 3668, 3548, 3548, 3668, 3669, 3549, 3549, 3669, 3670, 3550, 3550, 3670, 3671, 3551, 3551, 3671, 3672, 3552, 3552, 3672, 3673, 3553, 3553, 3673, 3674, 3554, 3554, 3674, 3675, 3555, 3555, 3675, 3676, 3556, 3556, 3676, 3677, 3557, 3557, 3677, 3678, 3558, 3558, 3678, 3679, 3559, 3559, 3679, 3680, 3560, 3560, 3680, 3681, 3561, 3561, 3681, 3682, 3562, 3562, 3682, 3683, 3563, 3563, 3683, 3684, 3564, 3564, 3684, 3685, 3565, 3565, 3685, 3686, 3566, 3566, 3686, 3687, 3567, 3567, 3687, 3688, 3568, 3568, 3688, 3689, 3569, 3569, 3689, 3690, 3570, 3570, 3690, 3691, 3571, 3571, 3691, 3692, 3572, 3572, 3692, 3693, 3573, 3573, 3693, 3694, 3574, 3574, 3694, 3695, 3575, 3575, 3695, 3696, 3576, 3576, 3696, 3697, 3577, 3577, 3697, 3698, 3578, 3578, 3698, 3699, 3579, 3579, 3699, 3700, 3580, 3580, 3700, 3701, 3581, 3581, 3701, 3702, 3582, 3582, 3702, 3703, 3583, 3583, 3703, 3704, 3584, 3584, 3704, 3705, 3585, 3585, 3705, 3706, 3586, 3586, 3706, 3707, 3587, 3587, 3707, 3708, 3588, 3588, 3708, 3709, 3589, 3589, 3709, 3710, 3590, 3590, 3710, 3711, 3591, 3591, 3711, 3712, 3592, 3592, 3712, 3713, 3593, 3593, 3713, 3714, 3594, 3594, 3714, 3715, 3595, 3595, 3715, 3716, 3596, 3596, 3716, 3717, 3597, 3597, 3717, 3718, 3598, 3598, 3718, 3719, 3599, 3599, 3719, 3720, 3600, 3600, 3720, 3601, 3481, 3601, 3721, 3722, 3602, 3602, 3722, 3723, 3603, 3603, 3723, 3724, 3604, 3604, 3724, 3725, 3605, 3605, 3725, 3726, 3606, 3606, 3726, 3727, 3607, 3607, 3727, 3728, 3608, 3608, 3728, 3729, 3609, 3609, 3729, 3730, 3610, 3610, 3730, 3731, 3611, 3611, 3731, 3732, 3612, 3612, 3732, 3733, 3613, 3613, 3733, 3734, 3614, 3614, 3734, 3735, 3615, 3615, 3735, 3736, 3616, 3616, 3736, 3737, 3617, 3617, 3737, 3738, 3618, 3618, 3738, 3739, 3619, 3619, 3739, 3740, 3620, 3620, 3740, 3741, 3621, 3621, 3741, 3742, 3622, 3622, 3742, 3743, 3623, 3623, 3743, 3744, 3624, 3624, 3744, 3745, 3625, 3625, 3745, 3746, 3626, 3626, 3746, 3747, 3627, 3627, 3747, 3748, 3628, 3628, 3748, 3749, 3629, 3629, 3749, 3750, 3630, 3630, 3750, 3751, 3631, 3631, 3751, 3752, 3632, 3632, 3752, 3753, 3633, 3633, 3753, 3754, 3634, 3634, 3754, 3755, 3635, 3635, 3755, 3756, 3636, 3636, 3756, 3757, 3637, 3637, 3757, 3758, 3638, 3638, 3758, 3759, 3639, 3639, 3759, 3760, 3640, 3640, 3760, 3761, 3641, 3641, 3761, 3762, 3642, 3642, 3762, 3763, 3643, 3643, 3763, 3764, 3644, 3644, 3764, 3765, 3645, 3645, 3765, 3766, 3646, 3646, 3766, 3767, 3647, 3647, 3767, 3768, 3648, 3648, 3768, 3769, 3649, 3649, 3769, 3770, 3650, 3650, 3770, 3771, 3651, 3651, 3771, 3772, 3652, 3652, 3772, 3773, 3653, 3653, 3773, 3774, 3654, 3654, 3774, 3775, 3655, 3655, 3775, 3776, 3656, 3656, 3776, 3777, 3657, 3657, 3777, 3778, 3658, 3658, 3778, 3779, 3659, 3659, 3779, 3780, 3660, 3660, 3780, 3781, 3661, 3661, 3781, 3782, 3662, 3662, 3782, 3783, 3663, 3663, 3783, 3784, 3664, 3664, 3784, 3785, 3665, 3665, 3785, 3786, 3666, 3666, 3786, 3787, 3667, 3667, 3787, 3788, 3668, 3668, 3788, 3789, 3669, 3669, 3789, 3790, 3670, 3670, 3790, 3791, 3671, 3671, 3791, 3792, 3672, 3672, 3792, 3793, 3673, 3673, 3793, 3794, 3674, 3674, 3794, 3795, 3675, 3675, 3795, 3796, 3676, 3676, 3796, 3797, 3677, 3677, 3797, 3798, 3678, 3678, 3798, 3799, 3679, 3679, 3799, 3800, 3680, 3680, 3800, 3801, 3681, 3681, 3801, 3802, 3682, 3682, 3802, 3803, 3683, 3683, 3803, 3804, 3684, 3684, 3804, 3805, 3685, 3685, 3805, 3806, 3686, 3686, 3806, 3807, 3687, 3687, 3807, 3808, 3688, 3688, 3808, 3809, 3689, 3689, 3809, 3810, 3690, 3690, 3810, 3811, 3691, 3691, 3811, 3812, 3692, 3692, 3812, 3813, 3693, 3693, 3813, 3814, 3694, 3694, 3814, 3815, 3695, 3695, 3815, 3816, 3696, 3696, 3816, 3817, 3697, 3697, 3817, 3818, 3698, 3698, 3818, 3819, 3699, 3699, 3819, 3820, 3700, 3700, 3820, 3821, 3701, 3701, 3821, 3822, 3702, 3702, 3822, 3823, 3703, 3703, 3823, 3824, 3704, 3704, 3824, 3825, 3705, 3705, 3825, 3826, 3706, 3706, 3826, 3827, 3707, 3707, 3827, 3828, 3708, 3708, 3828, 3829, 3709, 3709, 3829, 3830, 3710, 3710, 3830, 3831, 3711, 3711, 3831, 3832, 3712, 3712, 3832, 3833, 3713, 3713, 3833, 3834, 3714, 3714, 3834, 3835, 3715, 3715, 3835, 3836, 3716, 3716, 3836, 3837, 3717, 3717, 3837, 3838, 3718, 3718, 3838, 3839, 3719, 3719, 3839, 3840, 3720, 3720, 3840, 3721, 3601, 3721, 3841, 3842, 3722, 3722, 3842, 3843, 3723, 3723, 3843, 3844, 3724, 3724, 3844, 3845, 3725, 3725, 3845, 3846, 3726, 3726, 3846, 3847, 3727, 3727, 3847, 3848, 3728, 3728, 3848, 3849, 3729, 3729, 3849, 3850, 3730, 3730, 3850, 3851, 3731, 3731, 3851, 3852, 3732, 3732, 3852, 3853, 3733, 3733, 3853, 3854, 3734, 3734, 3854, 3855, 3735, 3735, 3855, 3856, 3736, 3736, 3856, 3857, 3737, 3737, 3857, 3858, 3738, 3738, 3858, 3859, 3739, 3739, 3859, 3860, 3740, 3740, 3860, 3861, 3741, 3741, 3861, 3862, 3742, 3742, 3862, 3863, 3743, 3743, 3863, 3864, 3744, 3744, 3864, 3865, 3745, 3745, 3865, 3866, 3746, 3746, 3866, 3867, 3747, 3747, 3867, 3868, 3748, 3748, 3868, 3869, 3749, 3749, 3869, 3870, 3750, 3750, 3870, 3871, 3751, 3751, 3871, 3872, 3752, 3752, 3872, 3873, 3753, 3753, 3873, 3874, 3754, 3754, 3874, 3875, 3755, 3755, 3875, 3876, 3756, 3756, 3876, 3877, 3757, 3757, 3877, 3878, 3758, 3758, 3878, 3879, 3759, 3759, 3879, 3880, 3760, 3760, 3880, 3881, 3761, 3761, 3881, 3882, 3762, 3762, 3882, 3883, 3763, 3763, 3883, 3884, 3764, 3764, 3884, 3885, 3765, 3765, 3885, 3886, 3766, 3766, 3886, 3887, 3767, 3767, 3887, 3888, 3768, 3768, 3888, 3889, 3769, 3769, 3889, 3890, 3770, 3770, 3890, 3891, 3771, 3771, 3891, 3892, 3772, 3772, 3892, 3893, 3773, 3773, 3893, 3894, 3774, 3774, 3894, 3895, 3775, 3775, 3895, 3896, 3776, 3776, 3896, 3897, 3777, 3777, 3897, 3898, 3778, 3778, 3898, 3899, 3779, 3779, 3899, 3900, 3780, 3780, 3900, 3901, 3781, 3781, 3901, 3902, 3782, 3782, 3902, 3903, 3783, 3783, 3903, 3904, 3784, 3784, 3904, 3905, 3785, 3785, 3905, 3906, 3786, 3786, 3906, 3907, 3787, 3787, 3907, 3908, 3788, 3788, 3908, 3909, 3789, 3789, 3909, 3910, 3790, 3790, 3910, 3911, 3791, 3791, 3911, 3912, 3792, 3792, 3912, 3913, 3793, 3793, 3913, 3914, 3794, 3794, 3914, 3915, 3795, 3795, 3915, 3916, 3796, 3796, 3916, 3917, 3797, 3797, 3917, 3918, 3798, 3798, 3918, 3919, 3799, 3799, 3919, 3920, 3800, 3800, 3920, 3921, 3801, 3801, 3921, 3922, 3802, 3802, 3922, 3923, 3803, 3803, 3923, 3924, 3804, 3804, 3924, 3925, 3805, 3805, 3925, 3926, 3806, 3806, 3926, 3927, 3807, 3807, 3927, 3928, 3808, 3808, 3928, 3929, 3809, 3809, 3929, 3930, 3810, 3810, 3930, 3931, 3811, 3811, 3931, 3932, 3812, 3812, 3932, 3933, 3813, 3813, 3933, 3934, 3814, 3814, 3934, 3935, 3815, 3815, 3935, 3936, 3816, 3816, 3936, 3937, 3817, 3817, 3937, 3938, 3818, 3818, 3938, 3939, 3819, 3819, 3939, 3940, 3820, 3820, 3940, 3941, 3821, 3821, 3941, 3942, 3822, 3822, 3942, 3943, 3823, 3823, 3943, 3944, 3824, 3824, 3944, 3945, 3825, 3825, 3945, 3946, 3826, 3826, 3946, 3947, 3827, 3827, 3947, 3948, 3828, 3828, 3948, 3949, 3829, 3829, 3949, 3950, 3830, 3830, 3950, 3951, 3831, 3831, 3951, 3952, 3832, 3832, 3952, 3953, 3833, 3833, 3953, 3954, 3834, 3834, 3954, 3955, 3835, 3835, 3955, 3956, 3836, 3836, 3956, 3957, 3837, 3837, 3957, 3958, 3838, 3838, 3958, 3959, 3839, 3839, 3959, 3960, 3840, 3840, 3960, 3841, 3721, 3841, 3961, 3962, 3842, 3842, 3962, 3963, 3843, 3843, 3963, 3964, 3844, 3844, 3964, 3965, 3845, 3845, 3965, 3966, 3846, 3846, 3966, 3967, 3847, 3847, 3967, 3968, 3848, 3848, 3968, 3969, 3849, 3849, 3969, 3970, 3850, 3850, 3970, 3971, 3851, 3851, 3971, 3972, 3852, 3852, 3972, 3973, 3853, 3853, 3973, 3974, 3854, 3854, 3974, 3975, 3855, 3855, 3975, 3976, 3856, 3856, 3976, 3977, 3857, 3857, 3977, 3978, 3858, 3858, 3978, 3979, 3859, 3859, 3979, 3980, 3860, 3860, 3980, 3981, 3861, 3861, 3981, 3982, 3862, 3862, 3982, 3983, 3863, 3863, 3983, 3984, 3864, 3864, 3984, 3985, 3865, 3865, 3985, 3986, 3866, 3866, 3986, 3987, 3867, 3867, 3987, 3988, 3868, 3868, 3988, 3989, 3869, 3869, 3989, 3990, 3870, 3870, 3990, 3991, 3871, 3871, 3991, 3992, 3872, 3872, 3992, 3993, 3873, 3873, 3993, 3994, 3874, 3874, 3994, 3995, 3875, 3875, 3995, 3996, 3876, 3876, 3996, 3997, 3877, 3877, 3997, 3998, 3878, 3878, 3998, 3999, 3879, 3879, 3999, 4000, 3880, 3880, 4000, 4001, 3881, 3881, 4001, 4002, 3882, 3882, 4002, 4003, 3883, 3883, 4003, 4004, 3884, 3884, 4004, 4005, 3885, 3885, 4005, 4006, 3886, 3886, 4006, 4007, 3887, 3887, 4007, 4008, 3888, 3888, 4008, 4009, 3889, 3889, 4009, 4010, 3890, 3890, 4010, 4011, 3891, 3891, 4011, 4012, 3892, 3892, 4012, 4013, 3893, 3893, 4013, 4014, 3894, 3894, 4014, 4015, 3895, 3895, 4015, 4016, 3896, 3896, 4016, 4017, 3897, 3897, 4017, 4018, 3898, 3898, 4018, 4019, 3899, 3899, 4019, 4020, 3900, 3900, 4020, 4021, 3901, 3901, 4021, 4022, 3902, 3902, 4022, 4023, 3903, 3903, 4023, 4024, 3904, 3904, 4024, 4025, 3905, 3905, 4025, 4026, 3906, 3906, 4026, 4027, 3907, 3907, 4027, 4028, 3908, 3908, 4028, 4029, 3909, 3909, 4029, 4030, 3910, 3910, 4030, 4031, 3911, 3911, 4031, 4032, 3912, 3912, 4032, 4033, 3913, 3913, 4033, 4034, 3914, 3914, 4034, 4035, 3915, 3915, 4035, 4036, 3916, 3916, 4036, 4037, 3917, 3917, 4037, 4038, 3918, 3918, 4038, 4039, 3919, 3919, 4039, 4040, 3920, 3920, 4040, 4041, 3921, 3921, 4041, 4042, 3922, 3922, 4042, 4043, 3923, 3923, 4043, 4044, 3924, 3924, 4044, 4045, 3925, 3925, 4045, 4046, 3926, 3926, 4046, 4047, 3927, 3927, 4047, 4048, 3928, 3928, 4048, 4049, 3929, 3929, 4049, 4050, 3930, 3930, 4050, 4051, 3931, 3931, 4051, 4052, 3932, 3932, 4052, 4053, 3933, 3933, 4053, 4054, 3934, 3934, 4054, 4055, 3935, 3935, 4055, 4056, 3936, 3936, 4056, 4057, 3937, 3937, 4057, 4058, 3938, 3938, 4058, 4059, 3939, 3939, 4059, 4060, 3940, 3940, 4060, 4061, 3941, 3941, 4061, 4062, 3942, 3942, 4062, 4063, 3943, 3943, 4063, 4064, 3944, 3944, 4064, 4065, 3945, 3945, 4065, 4066, 3946, 3946, 4066, 4067, 3947, 3947, 4067, 4068, 3948, 3948, 4068, 4069, 3949, 3949, 4069, 4070, 3950, 3950, 4070, 4071, 3951, 3951, 4071, 4072, 3952, 3952, 4072, 4073, 3953, 3953, 4073, 4074, 3954, 3954, 4074, 4075, 3955, 3955, 4075, 4076, 3956, 3956, 4076, 4077, 3957, 3957, 4077, 4078, 3958, 3958, 4078, 4079, 3959, 3959, 4079, 4080, 3960, 3960, 4080, 3961, 3841, 3961, 4081, 4082, 3962, 3962, 4082, 4083, 3963, 3963, 4083, 4084, 3964, 3964, 4084, 4085, 3965, 3965, 4085, 4086, 3966, 3966, 4086, 4087, 3967, 3967, 4087, 4088, 3968, 3968, 4088, 4089, 3969, 3969, 4089, 4090, 3970, 3970, 4090, 4091, 3971, 3971, 4091, 4092, 3972, 3972, 4092, 4093, 3973, 3973, 4093, 4094, 3974, 3974, 4094, 4095, 3975, 3975, 4095, 4096, 3976, 3976, 4096, 4097, 3977, 3977, 4097, 4098, 3978, 3978, 4098, 4099, 3979, 3979, 4099, 4100, 3980, 3980, 4100, 4101, 3981, 3981, 4101, 4102, 3982, 3982, 4102, 4103, 3983, 3983, 4103, 4104, 3984, 3984, 4104, 4105, 3985, 3985, 4105, 4106, 3986, 3986, 4106, 4107, 3987, 3987, 4107, 4108, 3988, 3988, 4108, 4109, 3989, 3989, 4109, 4110, 3990, 3990, 4110, 4111, 3991, 3991, 4111, 4112, 3992, 3992, 4112, 4113, 3993, 3993, 4113, 4114, 3994, 3994, 4114, 4115, 3995, 3995, 4115, 4116, 3996, 3996, 4116, 4117, 3997, 3997, 4117, 4118, 3998, 3998, 4118, 4119, 3999, 3999, 4119, 4120, 4000, 4000, 4120, 4121, 4001, 4001, 4121, 4122, 4002, 4002, 4122, 4123, 4003, 4003, 4123, 4124, 4004, 4004, 4124, 4125, 4005, 4005, 4125, 4126, 4006, 4006, 4126, 4127, 4007, 4007, 4127, 4128, 4008, 4008, 4128, 4129, 4009, 4009, 4129, 4130, 4010, 4010, 4130, 4131, 4011, 4011, 4131, 4132, 4012, 4012, 4132, 4133, 4013, 4013, 4133, 4134, 4014, 4014, 4134, 4135, 4015, 4015, 4135, 4136, 4016, 4016, 4136, 4137, 4017, 4017, 4137, 4138, 4018, 4018, 4138, 4139, 4019, 4019, 4139, 4140, 4020, 4020, 4140, 4141, 4021, 4021, 4141, 4142, 4022, 4022, 4142, 4143, 4023, 4023, 4143, 4144, 4024, 4024, 4144, 4145, 4025, 4025, 4145, 4146, 4026, 4026, 4146, 4147, 4027, 4027, 4147, 4148, 4028, 4028, 4148, 4149, 4029, 4029, 4149, 4150, 4030, 4030, 4150, 4151, 4031, 4031, 4151, 4152, 4032, 4032, 4152, 4153, 4033, 4033, 4153, 4154, 4034, 4034, 4154, 4155, 4035, 4035, 4155, 4156, 4036, 4036, 4156, 4157, 4037, 4037, 4157, 4158, 4038, 4038, 4158, 4159, 4039, 4039, 4159, 4160, 4040, 4040, 4160, 4161, 4041, 4041, 4161, 4162, 4042, 4042, 4162, 4163, 4043, 4043, 4163, 4164, 4044, 4044, 4164, 4165, 4045, 4045, 4165, 4166, 4046, 4046, 4166, 4167, 4047, 4047, 4167, 4168, 4048, 4048, 4168, 4169, 4049, 4049, 4169, 4170, 4050, 4050, 4170, 4171, 4051, 4051, 4171, 4172, 4052, 4052, 4172, 4173, 4053, 4053, 4173, 4174, 4054, 4054, 4174, 4175, 4055, 4055, 4175, 4176, 4056, 4056, 4176, 4177, 4057, 4057, 4177, 4178, 4058, 4058, 4178, 4179, 4059, 4059, 4179, 4180, 4060, 4060, 4180, 4181, 4061, 4061, 4181, 4182, 4062, 4062, 4182, 4183, 4063, 4063, 4183, 4184, 4064, 4064, 4184, 4185, 4065, 4065, 4185, 4186, 4066, 4066, 4186, 4187, 4067, 4067, 4187, 4188, 4068, 4068, 4188, 4189, 4069, 4069, 4189, 4190, 4070, 4070, 4190, 4191, 4071, 4071, 4191, 4192, 4072, 4072, 4192, 4193, 4073, 4073, 4193, 4194, 4074, 4074, 4194, 4195, 4075, 4075, 4195, 4196, 4076, 4076, 4196, 4197, 4077, 4077, 4197, 4198, 4078, 4078, 4198, 4199, 4079, 4079, 4199, 4200, 4080, 4080, 4200, 4081, 3961, 4081, 4201, 4202, 4082, 4082, 4202, 4203, 4083, 4083, 4203, 4204, 4084, 4084, 4204, 4205, 4085, 4085, 4205, 4206, 4086, 4086, 4206, 4207, 4087, 4087, 4207, 4208, 4088, 4088, 4208, 4209, 4089, 4089, 4209, 4210, 4090, 4090, 4210, 4211, 4091, 4091, 4211, 4212, 4092, 4092, 4212, 4213, 4093, 4093, 4213, 4214, 4094, 4094, 4214, 4215, 4095, 4095, 4215, 4216, 4096, 4096, 4216, 4217, 4097, 4097, 4217, 4218, 4098, 4098, 4218, 4219, 4099, 4099, 4219, 4220, 4100, 4100, 4220, 4221, 4101, 4101, 4221, 4222, 4102, 4102, 4222, 4223, 4103, 4103, 4223, 4224, 4104, 4104, 4224, 4225, 4105, 4105, 4225, 4226, 4106, 4106, 4226, 4227, 4107, 4107, 4227, 4228, 4108, 4108, 4228, 4229, 4109, 4109, 4229, 4230, 4110, 4110, 4230, 4231, 4111, 4111, 4231, 4232, 4112, 4112, 4232, 4233, 4113, 4113, 4233, 4234, 4114, 4114, 4234, 4235, 4115, 4115, 4235, 4236, 4116, 4116, 4236, 4237, 4117, 4117, 4237, 4238, 4118, 4118, 4238, 4239, 4119, 4119, 4239, 4240, 4120, 4120, 4240, 4241, 4121, 4121, 4241, 4242, 4122, 4122, 4242, 4243, 4123, 4123, 4243, 4244, 4124, 4124, 4244, 4245, 4125, 4125, 4245, 4246, 4126, 4126, 4246, 4247, 4127, 4127, 4247, 4248, 4128, 4128, 4248, 4249, 4129, 4129, 4249, 4250, 4130, 4130, 4250, 4251, 4131, 4131, 4251, 4252, 4132, 4132, 4252, 4253, 4133, 4133, 4253, 4254, 4134, 4134, 4254, 4255, 4135, 4135, 4255, 4256, 4136, 4136, 4256, 4257, 4137, 4137, 4257, 4258, 4138, 4138, 4258, 4259, 4139, 4139, 4259, 4260, 4140, 4140, 4260, 4261, 4141, 4141, 4261, 4262, 4142, 4142, 4262, 4263, 4143, 4143, 4263, 4264, 4144, 4144, 4264, 4265, 4145, 4145, 4265, 4266, 4146, 4146, 4266, 4267, 4147, 4147, 4267, 4268, 4148, 4148, 4268, 4269, 4149, 4149, 4269, 4270, 4150, 4150, 4270, 4271, 4151, 4151, 4271, 4272, 4152, 4152, 4272, 4273, 4153, 4153, 4273, 4274, 4154, 4154, 4274, 4275, 4155, 4155, 4275, 4276, 4156, 4156, 4276, 4277, 4157, 4157, 4277, 4278, 4158, 4158, 4278, 4279, 4159, 4159, 4279, 4280, 4160, 4160, 4280, 4281, 4161, 4161, 4281, 4282, 4162, 4162, 4282, 4283, 4163, 4163, 4283, 4284, 4164, 4164, 4284, 4285, 4165, 4165, 4285, 4286, 4166, 4166, 4286, 4287, 4167, 4167, 4287, 4288, 4168, 4168, 4288, 4289, 4169, 4169, 4289, 4290, 4170, 4170, 4290, 4291, 4171, 4171, 4291, 4292, 4172, 4172, 4292, 4293, 4173, 4173, 4293, 4294, 4174, 4174, 4294, 4295, 4175, 4175, 4295, 4296, 4176, 4176, 4296, 4297, 4177, 4177, 4297, 4298, 4178, 4178, 4298, 4299, 4179, 4179, 4299, 4300, 4180, 4180, 4300, 4301, 4181, 4181, 4301, 4302, 4182, 4182, 4302, 4303, 4183, 4183, 4303, 4304, 4184, 4184, 4304, 4305, 4185, 4185, 4305, 4306, 4186, 4186, 4306, 4307, 4187, 4187, 4307, 4308, 4188, 4188, 4308, 4309, 4189, 4189, 4309, 4310, 4190, 4190, 4310, 4311, 4191, 4191, 4311, 4312, 4192, 4192, 4312, 4313, 4193, 4193, 4313, 4314, 4194, 4194, 4314, 4315, 4195, 4195, 4315, 4316, 4196, 4196, 4316, 4317, 4197, 4197, 4317, 4318, 4198, 4198, 4318, 4319, 4199, 4199, 4319, 4320, 4200, 4200, 4320, 4201, 4081, 4201, 4321, 4322, 4202, 4202, 4322, 4323, 4203, 4203, 4323, 4324, 4204, 4204, 4324, 4325, 4205, 4205, 4325, 4326, 4206, 4206, 4326, 4327, 4207, 4207, 4327, 4328, 4208, 4208, 4328, 4329, 4209, 4209, 4329, 4330, 4210, 4210, 4330, 4331, 4211, 4211, 4331, 4332, 4212, 4212, 4332, 4333, 4213, 4213, 4333, 4334, 4214, 4214, 4334, 4335, 4215, 4215, 4335, 4336, 4216, 4216, 4336, 4337, 4217, 4217, 4337, 4338, 4218, 4218, 4338, 4339, 4219, 4219, 4339, 4340, 4220, 4220, 4340, 4341, 4221, 4221, 4341, 4342, 4222, 4222, 4342, 4343, 4223, 4223, 4343, 4344, 4224, 4224, 4344, 4345, 4225, 4225, 4345, 4346, 4226, 4226, 4346, 4347, 4227, 4227, 4347, 4348, 4228, 4228, 4348, 4349, 4229, 4229, 4349, 4350, 4230, 4230, 4350, 4351, 4231, 4231, 4351, 4352, 4232, 4232, 4352, 4353, 4233, 4233, 4353, 4354, 4234, 4234, 4354, 4355, 4235, 4235, 4355, 4356, 4236, 4236, 4356, 4357, 4237, 4237, 4357, 4358, 4238, 4238, 4358, 4359, 4239, 4239, 4359, 4360, 4240, 4240, 4360, 4361, 4241, 4241, 4361, 4362, 4242, 4242, 4362, 4363, 4243, 4243, 4363, 4364, 4244, 4244, 4364, 4365, 4245, 4245, 4365, 4366, 4246, 4246, 4366, 4367, 4247, 4247, 4367, 4368, 4248, 4248, 4368, 4369, 4249, 4249, 4369, 4370, 4250, 4250, 4370, 4371, 4251, 4251, 4371, 4372, 4252, 4252, 4372, 4373, 4253, 4253, 4373, 4374, 4254, 4254, 4374, 4375, 4255, 4255, 4375, 4376, 4256, 4256, 4376, 4377, 4257, 4257, 4377, 4378, 4258, 4258, 4378, 4379, 4259, 4259, 4379, 4380, 4260, 4260, 4380, 4381, 4261, 4261, 4381, 4382, 4262, 4262, 4382, 4383, 4263, 4263, 4383, 4384, 4264, 4264, 4384, 4385, 4265, 4265, 4385, 4386, 4266, 4266, 4386, 4387, 4267, 4267, 4387, 4388, 4268, 4268, 4388, 4389, 4269, 4269, 4389, 4390, 4270, 4270, 4390, 4391, 4271, 4271, 4391, 4392, 4272, 4272, 4392, 4393, 4273, 4273, 4393, 4394, 4274, 4274, 4394, 4395, 4275, 4275, 4395, 4396, 4276, 4276, 4396, 4397, 4277, 4277, 4397, 4398, 4278, 4278, 4398, 4399, 4279, 4279, 4399, 4400, 4280, 4280, 4400, 4401, 4281, 4281, 4401, 4402, 4282, 4282, 4402, 4403, 4283, 4283, 4403, 4404, 4284, 4284, 4404, 4405, 4285, 4285, 4405, 4406, 4286, 4286, 4406, 4407, 4287, 4287, 4407, 4408, 4288, 4288, 4408, 4409, 4289, 4289, 4409, 4410, 4290, 4290, 4410, 4411, 4291, 4291, 4411, 4412, 4292, 4292, 4412, 4413, 4293, 4293, 4413, 4414, 4294, 4294, 4414, 4415, 4295, 4295, 4415, 4416, 4296, 4296, 4416, 4417, 4297, 4297, 4417, 4418, 4298, 4298, 4418, 4419, 4299, 4299, 4419, 4420, 4300, 4300, 4420, 4421, 4301, 4301, 4421, 4422, 4302, 4302, 4422, 4423, 4303, 4303, 4423, 4424, 4304, 4304, 4424, 4425, 4305, 4305, 4425, 4426, 4306, 4306, 4426, 4427, 4307, 4307, 4427, 4428, 4308, 4308, 4428, 4429, 4309, 4309, 4429, 4430, 4310, 4310, 4430, 4431, 4311, 4311, 4431, 4432, 4312, 4312, 4432, 4433, 4313, 4313, 4433, 4434, 4314, 4314, 4434, 4435, 4315, 4315, 4435, 4436, 4316, 4316, 4436, 4437, 4317, 4317, 4437, 4438, 4318, 4318, 4438, 4439, 4319, 4319, 4439, 4440, 4320, 4320, 4440, 4321, 4201, 4321, 4441, 4442, 4322, 4322, 4442, 4443, 4323, 4323, 4443, 4444, 4324, 4324, 4444, 4445, 4325, 4325, 4445, 4446, 4326, 4326, 4446, 4447, 4327, 4327, 4447, 4448, 4328, 4328, 4448, 4449, 4329, 4329, 4449, 4450, 4330, 4330, 4450, 4451, 4331, 4331, 4451, 4452, 4332, 4332, 4452, 4453, 4333, 4333, 4453, 4454, 4334, 4334, 4454, 4455, 4335, 4335, 4455, 4456, 4336, 4336, 4456, 4457, 4337, 4337, 4457, 4458, 4338, 4338, 4458, 4459, 4339, 4339, 4459, 4460, 4340, 4340, 4460, 4461, 4341, 4341, 4461, 4462, 4342, 4342, 4462, 4463, 4343, 4343, 4463, 4464, 4344, 4344, 4464, 4465, 4345, 4345, 4465, 4466, 4346, 4346, 4466, 4467, 4347, 4347, 4467, 4468, 4348, 4348, 4468, 4469, 4349, 4349, 4469, 4470, 4350, 4350, 4470, 4471, 4351, 4351, 4471, 4472, 4352, 4352, 4472, 4473, 4353, 4353, 4473, 4474, 4354, 4354, 4474, 4475, 4355, 4355, 4475, 4476, 4356, 4356, 4476, 4477, 4357, 4357, 4477, 4478, 4358, 4358, 4478, 4479, 4359, 4359, 4479, 4480, 4360, 4360, 4480, 4481, 4361, 4361, 4481, 4482, 4362, 4362, 4482, 4483, 4363, 4363, 4483, 4484, 4364, 4364, 4484, 4485, 4365, 4365, 4485, 4486, 4366, 4366, 4486, 4487, 4367, 4367, 4487, 4488, 4368, 4368, 4488, 4489, 4369, 4369, 4489, 4490, 4370, 4370, 4490, 4491, 4371, 4371, 4491, 4492, 4372, 4372, 4492, 4493, 4373, 4373, 4493, 4494, 4374, 4374, 4494, 4495, 4375, 4375, 4495, 4496, 4376, 4376, 4496, 4497, 4377, 4377, 4497, 4498, 4378, 4378, 4498, 4499, 4379, 4379, 4499, 4500, 4380, 4380, 4500, 4501, 4381, 4381, 4501, 4502, 4382, 4382, 4502, 4503, 4383, 4383, 4503, 4504, 4384, 4384, 4504, 4505, 4385, 4385, 4505, 4506, 4386, 4386, 4506, 4507, 4387, 4387, 4507, 4508, 4388, 4388, 4508, 4509, 4389, 4389, 4509, 4510, 4390, 4390, 4510, 4511, 4391, 4391, 4511, 4512, 4392, 4392, 4512, 4513, 4393, 4393, 4513, 4514, 4394, 4394, 4514, 4515, 4395, 4395, 4515, 4516, 4396, 4396, 4516, 4517, 4397, 4397, 4517, 4518, 4398, 4398, 4518, 4519, 4399, 4399, 4519, 4520, 4400, 4400, 4520, 4521, 4401, 4401, 4521, 4522, 4402, 4402, 4522, 4523, 4403, 4403, 4523, 4524, 4404, 4404, 4524, 4525, 4405, 4405, 4525, 4526, 4406, 4406, 4526, 4527, 4407, 4407, 4527, 4528, 4408, 4408, 4528, 4529, 4409, 4409, 4529, 4530, 4410, 4410, 4530, 4531, 4411, 4411, 4531, 4532, 4412, 4412, 4532, 4533, 4413, 4413, 4533, 4534, 4414, 4414, 4534, 4535, 4415, 4415, 4535, 4536, 4416, 4416, 4536, 4537, 4417, 4417, 4537, 4538, 4418, 4418, 4538, 4539, 4419, 4419, 4539, 4540, 4420, 4420, 4540, 4541, 4421, 4421, 4541, 4542, 4422, 4422, 4542, 4543, 4423, 4423, 4543, 4544, 4424, 4424, 4544, 4545, 4425, 4425, 4545, 4546, 4426, 4426, 4546, 4547, 4427, 4427, 4547, 4548, 4428, 4428, 4548, 4549, 4429, 4429, 4549, 4550, 4430, 4430, 4550, 4551, 4431, 4431, 4551, 4552, 4432, 4432, 4552, 4553, 4433, 4433, 4553, 4554, 4434, 4434, 4554, 4555, 4435, 4435, 4555, 4556, 4436, 4436, 4556, 4557, 4437, 4437, 4557, 4558, 4438, 4438, 4558, 4559, 4439, 4439, 4559, 4560, 4440, 4440, 4560, 4441, 4321, 4441, 4561, 4562, 4442, 4442, 4562, 4563, 4443, 4443, 4563, 4564, 4444, 4444, 4564, 4565, 4445, 4445, 4565, 4566, 4446, 4446, 4566, 4567, 4447, 4447, 4567, 4568, 4448, 4448, 4568, 4569, 4449, 4449, 4569, 4570, 4450, 4450, 4570, 4571, 4451, 4451, 4571, 4572, 4452, 4452, 4572, 4573, 4453, 4453, 4573, 4574, 4454, 4454, 4574, 4575, 4455, 4455, 4575, 4576, 4456, 4456, 4576, 4577, 4457, 4457, 4577, 4578, 4458, 4458, 4578, 4579, 4459, 4459, 4579, 4580, 4460, 4460, 4580, 4581, 4461, 4461, 4581, 4582, 4462, 4462, 4582, 4583, 4463, 4463, 4583, 4584, 4464, 4464, 4584, 4585, 4465, 4465, 4585, 4586, 4466, 4466, 4586, 4587, 4467, 4467, 4587, 4588, 4468, 4468, 4588, 4589, 4469, 4469, 4589, 4590, 4470, 4470, 4590, 4591, 4471, 4471, 4591, 4592, 4472, 4472, 4592, 4593, 4473, 4473, 4593, 4594, 4474, 4474, 4594, 4595, 4475, 4475, 4595, 4596, 4476, 4476, 4596, 4597, 4477, 4477, 4597, 4598, 4478, 4478, 4598, 4599, 4479, 4479, 4599, 4600, 4480, 4480, 4600, 4601, 4481, 4481, 4601, 4602, 4482, 4482, 4602, 4603, 4483, 4483, 4603, 4604, 4484, 4484, 4604, 4605, 4485, 4485, 4605, 4606, 4486, 4486, 4606, 4607, 4487, 4487, 4607, 4608, 4488, 4488, 4608, 4609, 4489, 4489, 4609, 4610, 4490, 4490, 4610, 4611, 4491, 4491, 4611, 4612, 4492, 4492, 4612, 4613, 4493, 4493, 4613, 4614, 4494, 4494, 4614, 4615, 4495, 4495, 4615, 4616, 4496, 4496, 4616, 4617, 4497, 4497, 4617, 4618, 4498, 4498, 4618, 4619, 4499, 4499, 4619, 4620, 4500, 4500, 4620, 4621, 4501, 4501, 4621, 4622, 4502, 4502, 4622, 4623, 4503, 4503, 4623, 4624, 4504, 4504, 4624, 4625, 4505, 4505, 4625, 4626, 4506, 4506, 4626, 4627, 4507, 4507, 4627, 4628, 4508, 4508, 4628, 4629, 4509, 4509, 4629, 4630, 4510, 4510, 4630, 4631, 4511, 4511, 4631, 4632, 4512, 4512, 4632, 4633, 4513, 4513, 4633, 4634, 4514, 4514, 4634, 4635, 4515, 4515, 4635, 4636, 4516, 4516, 4636, 4637, 4517, 4517, 4637, 4638, 4518, 4518, 4638, 4639, 4519, 4519, 4639, 4640, 4520, 4520, 4640, 4641, 4521, 4521, 4641, 4642, 4522, 4522, 4642, 4643, 4523, 4523, 4643, 4644, 4524, 4524, 4644, 4645, 4525, 4525, 4645, 4646, 4526, 4526, 4646, 4647, 4527, 4527, 4647, 4648, 4528, 4528, 4648, 4649, 4529, 4529, 4649, 4650, 4530, 4530, 4650, 4651, 4531, 4531, 4651, 4652, 4532, 4532, 4652, 4653, 4533, 4533, 4653, 4654, 4534, 4534, 4654, 4655, 4535, 4535, 4655, 4656, 4536, 4536, 4656, 4657, 4537, 4537, 4657, 4658, 4538, 4538, 4658, 4659, 4539, 4539, 4659, 4660, 4540, 4540, 4660, 4661, 4541, 4541, 4661, 4662, 4542, 4542, 4662, 4663, 4543, 4543, 4663, 4664, 4544, 4544, 4664, 4665, 4545, 4545, 4665, 4666, 4546, 4546, 4666, 4667, 4547, 4547, 4667, 4668, 4548, 4548, 4668, 4669, 4549, 4549, 4669, 4670, 4550, 4550, 4670, 4671, 4551, 4551, 4671, 4672, 4552, 4552, 4672, 4673, 4553, 4553, 4673, 4674, 4554, 4554, 4674, 4675, 4555, 4555, 4675, 4676, 4556, 4556, 4676, 4677, 4557, 4557, 4677, 4678, 4558, 4558, 4678, 4679, 4559, 4559, 4679, 4680, 4560, 4560, 4680, 4561, 4441, 4561, 4681, 4682, 4562, 4562, 4682, 4683, 4563, 4563, 4683, 4684, 4564, 4564, 4684, 4685, 4565, 4565, 4685, 4686, 4566, 4566, 4686, 4687, 4567, 4567, 4687, 4688, 4568, 4568, 4688, 4689, 4569, 4569, 4689, 4690, 4570, 4570, 4690, 4691, 4571, 4571, 4691, 4692, 4572, 4572, 4692, 4693, 4573, 4573, 4693, 4694, 4574, 4574, 4694, 4695, 4575, 4575, 4695, 4696, 4576, 4576, 4696, 4697, 4577, 4577, 4697, 4698, 4578, 4578, 4698, 4699, 4579, 4579, 4699, 4700, 4580, 4580, 4700, 4701, 4581, 4581, 4701, 4702, 4582, 4582, 4702, 4703, 4583, 4583, 4703, 4704, 4584, 4584, 4704, 4705, 4585, 4585, 4705, 4706, 4586, 4586, 4706, 4707, 4587, 4587, 4707, 4708, 4588, 4588, 4708, 4709, 4589, 4589, 4709, 4710, 4590, 4590, 4710, 4711, 4591, 4591, 4711, 4712, 4592, 4592, 4712, 4713, 4593, 4593, 4713, 4714, 4594, 4594, 4714, 4715, 4595, 4595, 4715, 4716, 4596, 4596, 4716, 4717, 4597, 4597, 4717, 4718, 4598, 4598, 4718, 4719, 4599, 4599, 4719, 4720, 4600, 4600, 4720, 4721, 4601, 4601, 4721, 4722, 4602, 4602, 4722, 4723, 4603, 4603, 4723, 4724, 4604, 4604, 4724, 4725, 4605, 4605, 4725, 4726, 4606, 4606, 4726, 4727, 4607, 4607, 4727, 4728, 4608, 4608, 4728, 4729, 4609, 4609, 4729, 4730, 4610, 4610, 4730, 4731, 4611, 4611, 4731, 4732, 4612, 4612, 4732, 4733, 4613, 4613, 4733, 4734, 4614, 4614, 4734, 4735, 4615, 4615, 4735, 4736, 4616, 4616, 4736, 4737, 4617, 4617, 4737, 4738, 4618, 4618, 4738, 4739, 4619, 4619, 4739, 4740, 4620, 4620, 4740, 4741, 4621, 4621, 4741, 4742, 4622, 4622, 4742, 4743, 4623, 4623, 4743, 4744, 4624, 4624, 4744, 4745, 4625, 4625, 4745, 4746, 4626, 4626, 4746, 4747, 4627, 4627, 4747, 4748, 4628, 4628, 4748, 4749, 4629, 4629, 4749, 4750, 4630, 4630, 4750, 4751, 4631, 4631, 4751, 4752, 4632, 4632, 4752, 4753, 4633, 4633, 4753, 4754, 4634, 4634, 4754, 4755, 4635, 4635, 4755, 4756, 4636, 4636, 4756, 4757, 4637, 4637, 4757, 4758, 4638, 4638, 4758, 4759, 4639, 4639, 4759, 4760, 4640, 4640, 4760, 4761, 4641, 4641, 4761, 4762, 4642, 4642, 4762, 4763, 4643, 4643, 4763, 4764, 4644, 4644, 4764, 4765, 4645, 4645, 4765, 4766, 4646, 4646, 4766, 4767, 4647, 4647, 4767, 4768, 4648, 4648, 4768, 4769, 4649, 4649, 4769, 4770, 4650, 4650, 4770, 4771, 4651, 4651, 4771, 4772, 4652, 4652, 4772, 4773, 4653, 4653, 4773, 4774, 4654, 4654, 4774, 4775, 4655, 4655, 4775, 4776, 4656, 4656, 4776, 4777, 4657, 4657, 4777, 4778, 4658, 4658, 4778, 4779, 4659, 4659, 4779, 4780, 4660, 4660, 4780, 4781, 4661, 4661, 4781, 4782, 4662, 4662, 4782, 4783, 4663, 4663, 4783, 4784, 4664, 4664, 4784, 4785, 4665, 4665, 4785, 4786, 4666, 4666, 4786, 4787, 4667, 4667, 4787, 4788, 4668, 4668, 4788, 4789, 4669, 4669, 4789, 4790, 4670, 4670, 4790, 4791, 4671, 4671, 4791, 4792, 4672, 4672, 4792, 4793, 4673, 4673, 4793, 4794, 4674, 4674, 4794, 4795, 4675, 4675, 4795, 4796, 4676, 4676, 4796, 4797, 4677, 4677, 4797, 4798, 4678, 4678, 4798, 4799, 4679, 4679, 4799, 4800, 4680, 4680, 4800, 4681, 4561, 4681, 4801, 4802, 4682, 4682, 4802, 4803, 4683, 4683, 4803, 4804, 4684, 4684, 4804, 4805, 4685, 4685, 4805, 4806, 4686, 4686, 4806, 4807, 4687, 4687, 4807, 4808, 4688, 4688, 4808, 4809, 4689, 4689, 4809, 4810, 4690, 4690, 4810, 4811, 4691, 4691, 4811, 4812, 4692, 4692, 4812, 4813, 4693, 4693, 4813, 4814, 4694, 4694, 4814, 4815, 4695, 4695, 4815, 4816, 4696, 4696, 4816, 4817, 4697, 4697, 4817, 4818, 4698, 4698, 4818, 4819, 4699, 4699, 4819, 4820, 4700, 4700, 4820, 4821, 4701, 4701, 4821, 4822, 4702, 4702, 4822, 4823, 4703, 4703, 4823, 4824, 4704, 4704, 4824, 4825, 4705, 4705, 4825, 4826, 4706, 4706, 4826, 4827, 4707, 4707, 4827, 4828, 4708, 4708, 4828, 4829, 4709, 4709, 4829, 4830, 4710, 4710, 4830, 4831, 4711, 4711, 4831, 4832, 4712, 4712, 4832, 4833, 4713, 4713, 4833, 4834, 4714, 4714, 4834, 4835, 4715, 4715, 4835, 4836, 4716, 4716, 4836, 4837, 4717, 4717, 4837, 4838, 4718, 4718, 4838, 4839, 4719, 4719, 4839, 4840, 4720, 4720, 4840, 4841, 4721, 4721, 4841, 4842, 4722, 4722, 4842, 4843, 4723, 4723, 4843, 4844, 4724, 4724, 4844, 4845, 4725, 4725, 4845, 4846, 4726, 4726, 4846, 4847, 4727, 4727, 4847, 4848, 4728, 4728, 4848, 4849, 4729, 4729, 4849, 4850, 4730, 4730, 4850, 4851, 4731, 4731, 4851, 4852, 4732, 4732, 4852, 4853, 4733, 4733, 4853, 4854, 4734, 4734, 4854, 4855, 4735, 4735, 4855, 4856, 4736, 4736, 4856, 4857, 4737, 4737, 4857, 4858, 4738, 4738, 4858, 4859, 4739, 4739, 4859, 4860, 4740, 4740, 4860, 4861, 4741, 4741, 4861, 4862, 4742, 4742, 4862, 4863, 4743, 4743, 4863, 4864, 4744, 4744, 4864, 4865, 4745, 4745, 4865, 4866, 4746, 4746, 4866, 4867, 4747, 4747, 4867, 4868, 4748, 4748, 4868, 4869, 4749, 4749, 4869, 4870, 4750, 4750, 4870, 4871, 4751, 4751, 4871, 4872, 4752, 4752, 4872, 4873, 4753, 4753, 4873, 4874, 4754, 4754, 4874, 4875, 4755, 4755, 4875, 4876, 4756, 4756, 4876, 4877, 4757, 4757, 4877, 4878, 4758, 4758, 4878, 4879, 4759, 4759, 4879, 4880, 4760, 4760, 4880, 4881, 4761, 4761, 4881, 4882, 4762, 4762, 4882, 4883, 4763, 4763, 4883, 4884, 4764, 4764, 4884, 4885, 4765, 4765, 4885, 4886, 4766, 4766, 4886, 4887, 4767, 4767, 4887, 4888, 4768, 4768, 4888, 4889, 4769, 4769, 4889, 4890, 4770, 4770, 4890, 4891, 4771, 4771, 4891, 4892, 4772, 4772, 4892, 4893, 4773, 4773, 4893, 4894, 4774, 4774, 4894, 4895, 4775, 4775, 4895, 4896, 4776, 4776, 4896, 4897, 4777, 4777, 4897, 4898, 4778, 4778, 4898, 4899, 4779, 4779, 4899, 4900, 4780, 4780, 4900, 4901, 4781, 4781, 4901, 4902, 4782, 4782, 4902, 4903, 4783, 4783, 4903, 4904, 4784, 4784, 4904, 4905, 4785, 4785, 4905, 4906, 4786, 4786, 4906, 4907, 4787, 4787, 4907, 4908, 4788, 4788, 4908, 4909, 4789, 4789, 4909, 4910, 4790, 4790, 4910, 4911, 4791, 4791, 4911, 4912, 4792, 4792, 4912, 4913, 4793, 4793, 4913, 4914, 4794, 4794, 4914, 4915, 4795, 4795, 4915, 4916, 4796, 4796, 4916, 4917, 4797, 4797, 4917, 4918, 4798, 4798, 4918, 4919, 4799, 4799, 4919, 4920, 4800, 4800, 4920, 4801, 4681, 4801, 4921, 4922, 4802, 4802, 4922, 4923, 4803, 4803, 4923, 4924, 4804, 4804, 4924, 4925, 4805, 4805, 4925, 4926, 4806, 4806, 4926, 4927, 4807, 4807, 4927, 4928, 4808, 4808, 4928, 4929, 4809, 4809, 4929, 4930, 4810, 4810, 4930, 4931, 4811, 4811, 4931, 4932, 4812, 4812, 4932, 4933, 4813, 4813, 4933, 4934, 4814, 4814, 4934, 4935, 4815, 4815, 4935, 4936, 4816, 4816, 4936, 4937, 4817, 4817, 4937, 4938, 4818, 4818, 4938, 4939, 4819, 4819, 4939, 4940, 4820, 4820, 4940, 4941, 4821, 4821, 4941, 4942, 4822, 4822, 4942, 4943, 4823, 4823, 4943, 4944, 4824, 4824, 4944, 4945, 4825, 4825, 4945, 4946, 4826, 4826, 4946, 4947, 4827, 4827, 4947, 4948, 4828, 4828, 4948, 4949, 4829, 4829, 4949, 4950, 4830, 4830, 4950, 4951, 4831, 4831, 4951, 4952, 4832, 4832, 4952, 4953, 4833, 4833, 4953, 4954, 4834, 4834, 4954, 4955, 4835, 4835, 4955, 4956, 4836, 4836, 4956, 4957, 4837, 4837, 4957, 4958, 4838, 4838, 4958, 4959, 4839, 4839, 4959, 4960, 4840, 4840, 4960, 4961, 4841, 4841, 4961, 4962, 4842, 4842, 4962, 4963, 4843, 4843, 4963, 4964, 4844, 4844, 4964, 4965, 4845, 4845, 4965, 4966, 4846, 4846, 4966, 4967, 4847, 4847, 4967, 4968, 4848, 4848, 4968, 4969, 4849, 4849, 4969, 4970, 4850, 4850, 4970, 4971, 4851, 4851, 4971, 4972, 4852, 4852, 4972, 4973, 4853, 4853, 4973, 4974, 4854, 4854, 4974, 4975, 4855, 4855, 4975, 4976, 4856, 4856, 4976, 4977, 4857, 4857, 4977, 4978, 4858, 4858, 4978, 4979, 4859, 4859, 4979, 4980, 4860, 4860, 4980, 4981, 4861, 4861, 4981, 4982, 4862, 4862, 4982, 4983, 4863, 4863, 4983, 4984, 4864, 4864, 4984, 4985, 4865, 4865, 4985, 4986, 4866, 4866, 4986, 4987, 4867, 4867, 4987, 4988, 4868, 4868, 4988, 4989, 4869, 4869, 4989, 4990, 4870, 4870, 4990, 4991, 4871, 4871, 4991, 4992, 4872, 4872, 4992, 4993, 4873, 4873, 4993, 4994, 4874, 4874, 4994, 4995, 4875, 4875, 4995, 4996, 4876, 4876, 4996, 4997, 4877, 4877, 4997, 4998, 4878, 4878, 4998, 4999, 4879, 4879, 4999, 5000, 4880, 4880, 5000, 5001, 4881, 4881, 5001, 5002, 4882, 4882, 5002, 5003, 4883, 4883, 5003, 5004, 4884, 4884, 5004, 5005, 4885, 4885, 5005, 5006, 4886, 4886, 5006, 5007, 4887, 4887, 5007, 5008, 4888, 4888, 5008, 5009, 4889, 4889, 5009, 5010, 4890, 4890, 5010, 5011, 4891, 4891, 5011, 5012, 4892, 4892, 5012, 5013, 4893, 4893, 5013, 5014, 4894, 4894, 5014, 5015, 4895, 4895, 5015, 5016, 4896, 4896, 5016, 5017, 4897, 4897, 5017, 5018, 4898, 4898, 5018, 5019, 4899, 4899, 5019, 5020, 4900, 4900, 5020, 5021, 4901, 4901, 5021, 5022, 4902, 4902, 5022, 5023, 4903, 4903, 5023, 5024, 4904, 4904, 5024, 5025, 4905, 4905, 5025, 5026, 4906, 4906, 5026, 5027, 4907, 4907, 5027, 5028, 4908, 4908, 5028, 5029, 4909, 4909, 5029, 5030, 4910, 4910, 5030, 5031, 4911, 4911, 5031, 5032, 4912, 4912, 5032, 5033, 4913, 4913, 5033, 5034, 4914, 4914, 5034, 5035, 4915, 4915, 5035, 5036, 4916, 4916, 5036, 5037, 4917, 4917, 5037, 5038, 4918, 4918, 5038, 5039, 4919, 4919, 5039, 5040, 4920, 4920, 5040, 4921, 4801, 4921, 5041, 5042, 4922, 4922, 5042, 5043, 4923, 4923, 5043, 5044, 4924, 4924, 5044, 5045, 4925, 4925, 5045, 5046, 4926, 4926, 5046, 5047, 4927, 4927, 5047, 5048, 4928, 4928, 5048, 5049, 4929, 4929, 5049, 5050, 4930, 4930, 5050, 5051, 4931, 4931, 5051, 5052, 4932, 4932, 5052, 5053, 4933, 4933, 5053, 5054, 4934, 4934, 5054, 5055, 4935, 4935, 5055, 5056, 4936, 4936, 5056, 5057, 4937, 4937, 5057, 5058, 4938, 4938, 5058, 5059, 4939, 4939, 5059, 5060, 4940, 4940, 5060, 5061, 4941, 4941, 5061, 5062, 4942, 4942, 5062, 5063, 4943, 4943, 5063, 5064, 4944, 4944, 5064, 5065, 4945, 4945, 5065, 5066, 4946, 4946, 5066, 5067, 4947, 4947, 5067, 5068, 4948, 4948, 5068, 5069, 4949, 4949, 5069, 5070, 4950, 4950, 5070, 5071, 4951, 4951, 5071, 5072, 4952, 4952, 5072, 5073, 4953, 4953, 5073, 5074, 4954, 4954, 5074, 5075, 4955, 4955, 5075, 5076, 4956, 4956, 5076, 5077, 4957, 4957, 5077, 5078, 4958, 4958, 5078, 5079, 4959, 4959, 5079, 5080, 4960, 4960, 5080, 5081, 4961, 4961, 5081, 5082, 4962, 4962, 5082, 5083, 4963, 4963, 5083, 5084, 4964, 4964, 5084, 5085, 4965, 4965, 5085, 5086, 4966, 4966, 5086, 5087, 4967, 4967, 5087, 5088, 4968, 4968, 5088, 5089, 4969, 4969, 5089, 5090, 4970, 4970, 5090, 5091, 4971, 4971, 5091, 5092, 4972, 4972, 5092, 5093, 4973, 4973, 5093, 5094, 4974, 4974, 5094, 5095, 4975, 4975, 5095, 5096, 4976, 4976, 5096, 5097, 4977, 4977, 5097, 5098, 4978, 4978, 5098, 5099, 4979, 4979, 5099, 5100, 4980, 4980, 5100, 5101, 4981, 4981, 5101, 5102, 4982, 4982, 5102, 5103, 4983, 4983, 5103, 5104, 4984, 4984, 5104, 5105, 4985, 4985, 5105, 5106, 4986, 4986, 5106, 5107, 4987, 4987, 5107, 5108, 4988, 4988, 5108, 5109, 4989, 4989, 5109, 5110, 4990, 4990, 5110, 5111, 4991, 4991, 5111, 5112, 4992, 4992, 5112, 5113, 4993, 4993, 5113, 5114, 4994, 4994, 5114, 5115, 4995, 4995, 5115, 5116, 4996, 4996, 5116, 5117, 4997, 4997, 5117, 5118, 4998, 4998, 5118, 5119, 4999, 4999, 5119, 5120, 5000, 5000, 5120, 5121, 5001, 5001, 5121, 5122, 5002, 5002, 5122, 5123, 5003, 5003, 5123, 5124, 5004, 5004, 5124, 5125, 5005, 5005, 5125, 5126, 5006, 5006, 5126, 5127, 5007, 5007, 5127, 5128, 5008, 5008, 5128, 5129, 5009, 5009, 5129, 5130, 5010, 5010, 5130, 5131, 5011, 5011, 5131, 5132, 5012, 5012, 5132, 5133, 5013, 5013, 5133, 5134, 5014, 5014, 5134, 5135, 5015, 5015, 5135, 5136, 5016, 5016, 5136, 5137, 5017, 5017, 5137, 5138, 5018, 5018, 5138, 5139, 5019, 5019, 5139, 5140, 5020, 5020, 5140, 5141, 5021, 5021, 5141, 5142, 5022, 5022, 5142, 5143, 5023, 5023, 5143, 5144, 5024, 5024, 5144, 5145, 5025, 5025, 5145, 5146, 5026, 5026, 5146, 5147, 5027, 5027, 5147, 5148, 5028, 5028, 5148, 5149, 5029, 5029, 5149, 5150, 5030, 5030, 5150, 5151, 5031, 5031, 5151, 5152, 5032, 5032, 5152, 5153, 5033, 5033, 5153, 5154, 5034, 5034, 5154, 5155, 5035, 5035, 5155, 5156, 5036, 5036, 5156, 5157, 5037, 5037, 5157, 5158, 5038, 5038, 5158, 5159, 5039, 5039, 5159, 5160, 5040, 5040, 5160, 5041, 4921, 5041, 5161, 5162, 5042, 5042, 5162, 5163, 5043, 5043, 5163, 5164, 5044, 5044, 5164, 5165, 5045, 5045, 5165, 5166, 5046, 5046, 5166, 5167, 5047, 5047, 5167, 5168, 5048, 5048, 5168, 5169, 5049, 5049, 5169, 5170, 5050, 5050, 5170, 5171, 5051, 5051, 5171, 5172, 5052, 5052, 5172, 5173, 5053, 5053, 5173, 5174, 5054, 5054, 5174, 5175, 5055, 5055, 5175, 5176, 5056, 5056, 5176, 5177, 5057, 5057, 5177, 5178, 5058, 5058, 5178, 5179, 5059, 5059, 5179, 5180, 5060, 5060, 5180, 5181, 5061, 5061, 5181, 5182, 5062, 5062, 5182, 5183, 5063, 5063, 5183, 5184, 5064, 5064, 5184, 5185, 5065, 5065, 5185, 5186, 5066, 5066, 5186, 5187, 5067, 5067, 5187, 5188, 5068, 5068, 5188, 5189, 5069, 5069, 5189, 5190, 5070, 5070, 5190, 5191, 5071, 5071, 5191, 5192, 5072, 5072, 5192, 5193, 5073, 5073, 5193, 5194, 5074, 5074, 5194, 5195, 5075, 5075, 5195, 5196, 5076, 5076, 5196, 5197, 5077, 5077, 5197, 5198, 5078, 5078, 5198, 5199, 5079, 5079, 5199, 5200, 5080, 5080, 5200, 5201, 5081, 5081, 5201, 5202, 5082, 5082, 5202, 5203, 5083, 5083, 5203, 5204, 5084, 5084, 5204, 5205, 5085, 5085, 5205, 5206, 5086, 5086, 5206, 5207, 5087, 5087, 5207, 5208, 5088, 5088, 5208, 5209, 5089, 5089, 5209, 5210, 5090, 5090, 5210, 5211, 5091, 5091, 5211, 5212, 5092, 5092, 5212, 5213, 5093, 5093, 5213, 5214, 5094, 5094, 5214, 5215, 5095, 5095, 5215, 5216, 5096, 5096, 5216, 5217, 5097, 5097, 5217, 5218, 5098, 5098, 5218, 5219, 5099, 5099, 5219, 5220, 5100, 5100, 5220, 5221, 5101, 5101, 5221, 5222, 5102, 5102, 5222, 5223, 5103, 5103, 5223, 5224, 5104, 5104, 5224, 5225, 5105, 5105, 5225, 5226, 5106, 5106, 5226, 5227, 5107, 5107, 5227, 5228, 5108, 5108, 5228, 5229, 5109, 5109, 5229, 5230, 5110, 5110, 5230, 5231, 5111, 5111, 5231, 5232, 5112, 5112, 5232, 5233, 5113, 5113, 5233, 5234, 5114, 5114, 5234, 5235, 5115, 5115, 5235, 5236, 5116, 5116, 5236, 5237, 5117, 5117, 5237, 5238, 5118, 5118, 5238, 5239, 5119, 5119, 5239, 5240, 5120, 5120, 5240, 5241, 5121, 5121, 5241, 5242, 5122, 5122, 5242, 5243, 5123, 5123, 5243, 5244, 5124, 5124, 5244, 5245, 5125, 5125, 5245, 5246, 5126, 5126, 5246, 5247, 5127, 5127, 5247, 5248, 5128, 5128, 5248, 5249, 5129, 5129, 5249, 5250, 5130, 5130, 5250, 5251, 5131, 5131, 5251, 5252, 5132, 5132, 5252, 5253, 5133, 5133, 5253, 5254, 5134, 5134, 5254, 5255, 5135, 5135, 5255, 5256, 5136, 5136, 5256, 5257, 5137, 5137, 5257, 5258, 5138, 5138, 5258, 5259, 5139, 5139, 5259, 5260, 5140, 5140, 5260, 5261, 5141, 5141, 5261, 5262, 5142, 5142, 5262, 5263, 5143, 5143, 5263, 5264, 5144, 5144, 5264, 5265, 5145, 5145, 5265, 5266, 5146, 5146, 5266, 5267, 5147, 5147, 5267, 5268, 5148, 5148, 5268, 5269, 5149, 5149, 5269, 5270, 5150, 5150, 5270, 5271, 5151, 5151, 5271, 5272, 5152, 5152, 5272, 5273, 5153, 5153, 5273, 5274, 5154, 5154, 5274, 5275, 5155, 5155, 5275, 5276, 5156, 5156, 5276, 5277, 5157, 5157, 5277, 5278, 5158, 5158, 5278, 5279, 5159, 5159, 5279, 5280, 5160, 5160, 5280, 5161, 5041, 5161, 5281, 5282, 5162, 5162, 5282, 5283, 5163, 5163, 5283, 5284, 5164, 5164, 5284, 5285, 5165, 5165, 5285, 5286, 5166, 5166, 5286, 5287, 5167, 5167, 5287, 5288, 5168, 5168, 5288, 5289, 5169, 5169, 5289, 5290, 5170, 5170, 5290, 5291, 5171, 5171, 5291, 5292, 5172, 5172, 5292, 5293, 5173, 5173, 5293, 5294, 5174, 5174, 5294, 5295, 5175, 5175, 5295, 5296, 5176, 5176, 5296, 5297, 5177, 5177, 5297, 5298, 5178, 5178, 5298, 5299, 5179, 5179, 5299, 5300, 5180, 5180, 5300, 5301, 5181, 5181, 5301, 5302, 5182, 5182, 5302, 5303, 5183, 5183, 5303, 5304, 5184, 5184, 5304, 5305, 5185, 5185, 5305, 5306, 5186, 5186, 5306, 5307, 5187, 5187, 5307, 5308, 5188, 5188, 5308, 5309, 5189, 5189, 5309, 5310, 5190, 5190, 5310, 5311, 5191, 5191, 5311, 5312, 5192, 5192, 5312, 5313, 5193, 5193, 5313, 5314, 5194, 5194, 5314, 5315, 5195, 5195, 5315, 5316, 5196, 5196, 5316, 5317, 5197, 5197, 5317, 5318, 5198, 5198, 5318, 5319, 5199, 5199, 5319, 5320, 5200, 5200, 5320, 5321, 5201, 5201, 5321, 5322, 5202, 5202, 5322, 5323, 5203, 5203, 5323, 5324, 5204, 5204, 5324, 5325, 5205, 5205, 5325, 5326, 5206, 5206, 5326, 5327, 5207, 5207, 5327, 5328, 5208, 5208, 5328, 5329, 5209, 5209, 5329, 5330, 5210, 5210, 5330, 5331, 5211, 5211, 5331, 5332, 5212, 5212, 5332, 5333, 5213, 5213, 5333, 5334, 5214, 5214, 5334, 5335, 5215, 5215, 5335, 5336, 5216, 5216, 5336, 5337, 5217, 5217, 5337, 5338, 5218, 5218, 5338, 5339, 5219, 5219, 5339, 5340, 5220, 5220, 5340, 5341, 5221, 5221, 5341, 5342, 5222, 5222, 5342, 5343, 5223, 5223, 5343, 5344, 5224, 5224, 5344, 5345, 5225, 5225, 5345, 5346, 5226, 5226, 5346, 5347, 5227, 5227, 5347, 5348, 5228, 5228, 5348, 5349, 5229, 5229, 5349, 5350, 5230, 5230, 5350, 5351, 5231, 5231, 5351, 5352, 5232, 5232, 5352, 5353, 5233, 5233, 5353, 5354, 5234, 5234, 5354, 5355, 5235, 5235, 5355, 5356, 5236, 5236, 5356, 5357, 5237, 5237, 5357, 5358, 5238, 5238, 5358, 5359, 5239, 5239, 5359, 5360, 5240, 5240, 5360, 5361, 5241, 5241, 5361, 5362, 5242, 5242, 5362, 5363, 5243, 5243, 5363, 5364, 5244, 5244, 5364, 5365, 5245, 5245, 5365, 5366, 5246, 5246, 5366, 5367, 5247, 5247, 5367, 5368, 5248, 5248, 5368, 5369, 5249, 5249, 5369, 5370, 5250, 5250, 5370, 5371, 5251, 5251, 5371, 5372, 5252, 5252, 5372, 5373, 5253, 5253, 5373, 5374, 5254, 5254, 5374, 5375, 5255, 5255, 5375, 5376, 5256, 5256, 5376, 5377, 5257, 5257, 5377, 5378, 5258, 5258, 5378, 5379, 5259, 5259, 5379, 5380, 5260, 5260, 5380, 5381, 5261, 5261, 5381, 5382, 5262, 5262, 5382, 5383, 5263, 5263, 5383, 5384, 5264, 5264, 5384, 5385, 5265, 5265, 5385, 5386, 5266, 5266, 5386, 5387, 5267, 5267, 5387, 5388, 5268, 5268, 5388, 5389, 5269, 5269, 5389, 5390, 5270, 5270, 5390, 5391, 5271, 5271, 5391, 5392, 5272, 5272, 5392, 5393, 5273, 5273, 5393, 5394, 5274, 5274, 5394, 5395, 5275, 5275, 5395, 5396, 5276, 5276, 5396, 5397, 5277, 5277, 5397, 5398, 5278, 5278, 5398, 5399, 5279, 5279, 5399, 5400, 5280, 5280, 5400, 5281, 5161, 5281, 5401, 5402, 5282, 5282, 5402, 5403, 5283, 5283, 5403, 5404, 5284, 5284, 5404, 5405, 5285, 5285, 5405, 5406, 5286, 5286, 5406, 5407, 5287, 5287, 5407, 5408, 5288, 5288, 5408, 5409, 5289, 5289, 5409, 5410, 5290, 5290, 5410, 5411, 5291, 5291, 5411, 5412, 5292, 5292, 5412, 5413, 5293, 5293, 5413, 5414, 5294, 5294, 5414, 5415, 5295, 5295, 5415, 5416, 5296, 5296, 5416, 5417, 5297, 5297, 5417, 5418, 5298, 5298, 5418, 5419, 5299, 5299, 5419, 5420, 5300, 5300, 5420, 5421, 5301, 5301, 5421, 5422, 5302, 5302, 5422, 5423, 5303, 5303, 5423, 5424, 5304, 5304, 5424, 5425, 5305, 5305, 5425, 5426, 5306, 5306, 5426, 5427, 5307, 5307, 5427, 5428, 5308, 5308, 5428, 5429, 5309, 5309, 5429, 5430, 5310, 5310, 5430, 5431, 5311, 5311, 5431, 5432, 5312, 5312, 5432, 5433, 5313, 5313, 5433, 5434, 5314, 5314, 5434, 5435, 5315, 5315, 5435, 5436, 5316, 5316, 5436, 5437, 5317, 5317, 5437, 5438, 5318, 5318, 5438, 5439, 5319, 5319, 5439, 5440, 5320, 5320, 5440, 5441, 5321, 5321, 5441, 5442, 5322, 5322, 5442, 5443, 5323, 5323, 5443, 5444, 5324, 5324, 5444, 5445, 5325, 5325, 5445, 5446, 5326, 5326, 5446, 5447, 5327, 5327, 5447, 5448, 5328, 5328, 5448, 5449, 5329, 5329, 5449, 5450, 5330, 5330, 5450, 5451, 5331, 5331, 5451, 5452, 5332, 5332, 5452, 5453, 5333, 5333, 5453, 5454, 5334, 5334, 5454, 5455, 5335, 5335, 5455, 5456, 5336, 5336, 5456, 5457, 5337, 5337, 5457, 5458, 5338, 5338, 5458, 5459, 5339, 5339, 5459, 5460, 5340, 5340, 5460, 5461, 5341, 5341, 5461, 5462, 5342, 5342, 5462, 5463, 5343, 5343, 5463, 5464, 5344, 5344, 5464, 5465, 5345, 5345, 5465, 5466, 5346, 5346, 5466, 5467, 5347, 5347, 5467, 5468, 5348, 5348, 5468, 5469, 5349, 5349, 5469, 5470, 5350, 5350, 5470, 5471, 5351, 5351, 5471, 5472, 5352, 5352, 5472, 5473, 5353, 5353, 5473, 5474, 5354, 5354, 5474, 5475, 5355, 5355, 5475, 5476, 5356, 5356, 5476, 5477, 5357, 5357, 5477, 5478, 5358, 5358, 5478, 5479, 5359, 5359, 5479, 5480, 5360, 5360, 5480, 5481, 5361, 5361, 5481, 5482, 5362, 5362, 5482, 5483, 5363, 5363, 5483, 5484, 5364, 5364, 5484, 5485, 5365, 5365, 5485, 5486, 5366, 5366, 5486, 5487, 5367, 5367, 5487, 5488, 5368, 5368, 5488, 5489, 5369, 5369, 5489, 5490, 5370, 5370, 5490, 5491, 5371, 5371, 5491, 5492, 5372, 5372, 5492, 5493, 5373, 5373, 5493, 5494, 5374, 5374, 5494, 5495, 5375, 5375, 5495, 5496, 5376, 5376, 5496, 5497, 5377, 5377, 5497, 5498, 5378, 5378, 5498, 5499, 5379, 5379, 5499, 5500, 5380, 5380, 5500, 5501, 5381, 5381, 5501, 5502, 5382, 5382, 5502, 5503, 5383, 5383, 5503, 5504, 5384, 5384, 5504, 5505, 5385, 5385, 5505, 5506, 5386, 5386, 5506, 5507, 5387, 5387, 5507, 5508, 5388, 5388, 5508, 5509, 5389, 5389, 5509, 5510, 5390, 5390, 5510, 5511, 5391, 5391, 5511, 5512, 5392, 5392, 5512, 5513, 5393, 5393, 5513, 5514, 5394, 5394, 5514, 5515, 5395, 5395, 5515, 5516, 5396, 5396, 5516, 5517, 5397, 5397, 5517, 5518, 5398, 5398, 5518, 5519, 5399, 5399, 5519, 5520, 5400, 5400, 5520, 5401, 5281, 5401, 5521, 5522, 5402, 5402, 5522, 5523, 5403, 5403, 5523, 5524, 5404, 5404, 5524, 5525, 5405, 5405, 5525, 5526, 5406, 5406, 5526, 5527, 5407, 5407, 5527, 5528, 5408, 5408, 5528, 5529, 5409, 5409, 5529, 5530, 5410, 5410, 5530, 5531, 5411, 5411, 5531, 5532, 5412, 5412, 5532, 5533, 5413, 5413, 5533, 5534, 5414, 5414, 5534, 5535, 5415, 5415, 5535, 5536, 5416, 5416, 5536, 5537, 5417, 5417, 5537, 5538, 5418, 5418, 5538, 5539, 5419, 5419, 5539, 5540, 5420, 5420, 5540, 5541, 5421, 5421, 5541, 5542, 5422, 5422, 5542, 5543, 5423, 5423, 5543, 5544, 5424, 5424, 5544, 5545, 5425, 5425, 5545, 5546, 5426, 5426, 5546, 5547, 5427, 5427, 5547, 5548, 5428, 5428, 5548, 5549, 5429, 5429, 5549, 5550, 5430, 5430, 5550, 5551, 5431, 5431, 5551, 5552, 5432, 5432, 5552, 5553, 5433, 5433, 5553, 5554, 5434, 5434, 5554, 5555, 5435, 5435, 5555, 5556, 5436, 5436, 5556, 5557, 5437, 5437, 5557, 5558, 5438, 5438, 5558, 5559, 5439, 5439, 5559, 5560, 5440, 5440, 5560, 5561, 5441, 5441, 5561, 5562, 5442, 5442, 5562, 5563, 5443, 5443, 5563, 5564, 5444, 5444, 5564, 5565, 5445, 5445, 5565, 5566, 5446, 5446, 5566, 5567, 5447, 5447, 5567, 5568, 5448, 5448, 5568, 5569, 5449, 5449, 5569, 5570, 5450, 5450, 5570, 5571, 5451, 5451, 5571, 5572, 5452, 5452, 5572, 5573, 5453, 5453, 5573, 5574, 5454, 5454, 5574, 5575, 5455, 5455, 5575, 5576, 5456, 5456, 5576, 5577, 5457, 5457, 5577, 5578, 5458, 5458, 5578, 5579, 5459, 5459, 5579, 5580, 5460, 5460, 5580, 5581, 5461, 5461, 5581, 5582, 5462, 5462, 5582, 5583, 5463, 5463, 5583, 5584, 5464, 5464, 5584, 5585, 5465, 5465, 5585, 5586, 5466, 5466, 5586, 5587, 5467, 5467, 5587, 5588, 5468, 5468, 5588, 5589, 5469, 5469, 5589, 5590, 5470, 5470, 5590, 5591, 5471, 5471, 5591, 5592, 5472, 5472, 5592, 5593, 5473, 5473, 5593, 5594, 5474, 5474, 5594, 5595, 5475, 5475, 5595, 5596, 5476, 5476, 5596, 5597, 5477, 5477, 5597, 5598, 5478, 5478, 5598, 5599, 5479, 5479, 5599, 5600, 5480, 5480, 5600, 5601, 5481, 5481, 5601, 5602, 5482, 5482, 5602, 5603, 5483, 5483, 5603, 5604, 5484, 5484, 5604, 5605, 5485, 5485, 5605, 5606, 5486, 5486, 5606, 5607, 5487, 5487, 5607, 5608, 5488, 5488, 5608, 5609, 5489, 5489, 5609, 5610, 5490, 5490, 5610, 5611, 5491, 5491, 5611, 5612, 5492, 5492, 5612, 5613, 5493, 5493, 5613, 5614, 5494, 5494, 5614, 5615, 5495, 5495, 5615, 5616, 5496, 5496, 5616, 5617, 5497, 5497, 5617, 5618, 5498, 5498, 5618, 5619, 5499, 5499, 5619, 5620, 5500, 5500, 5620, 5621, 5501, 5501, 5621, 5622, 5502, 5502, 5622, 5623, 5503, 5503, 5623, 5624, 5504, 5504, 5624, 5625, 5505, 5505, 5625, 5626, 5506, 5506, 5626, 5627, 5507, 5507, 5627, 5628, 5508, 5508, 5628, 5629, 5509, 5509, 5629, 5630, 5510, 5510, 5630, 5631, 5511, 5511, 5631, 5632, 5512, 5512, 5632, 5633, 5513, 5513, 5633, 5634, 5514, 5514, 5634, 5635, 5515, 5515, 5635, 5636, 5516, 5516, 5636, 5637, 5517, 5517, 5637, 5638, 5518, 5518, 5638, 5639, 5519, 5519, 5639, 5640, 5520, 5520, 5640, 5521, 5401, 5521, 5641, 5642, 5522, 5522, 5642, 5643, 5523, 5523, 5643, 5644, 5524, 5524, 5644, 5645, 5525, 5525, 5645, 5646, 5526, 5526, 5646, 5647, 5527, 5527, 5647, 5648, 5528, 5528, 5648, 5649, 5529, 5529, 5649, 5650, 5530, 5530, 5650, 5651, 5531, 5531, 5651, 5652, 5532, 5532, 5652, 5653, 5533, 5533, 5653, 5654, 5534, 5534, 5654, 5655, 5535, 5535, 5655, 5656, 5536, 5536, 5656, 5657, 5537, 5537, 5657, 5658, 5538, 5538, 5658, 5659, 5539, 5539, 5659, 5660, 5540, 5540, 5660, 5661, 5541, 5541, 5661, 5662, 5542, 5542, 5662, 5663, 5543, 5543, 5663, 5664, 5544, 5544, 5664, 5665, 5545, 5545, 5665, 5666, 5546, 5546, 5666, 5667, 5547, 5547, 5667, 5668, 5548, 5548, 5668, 5669, 5549, 5549, 5669, 5670, 5550, 5550, 5670, 5671, 5551, 5551, 5671, 5672, 5552, 5552, 5672, 5673, 5553, 5553, 5673, 5674, 5554, 5554, 5674, 5675, 5555, 5555, 5675, 5676, 5556, 5556, 5676, 5677, 5557, 5557, 5677, 5678, 5558, 5558, 5678, 5679, 5559, 5559, 5679, 5680, 5560, 5560, 5680, 5681, 5561, 5561, 5681, 5682, 5562, 5562, 5682, 5683, 5563, 5563, 5683, 5684, 5564, 5564, 5684, 5685, 5565, 5565, 5685, 5686, 5566, 5566, 5686, 5687, 5567, 5567, 5687, 5688, 5568, 5568, 5688, 5689, 5569, 5569, 5689, 5690, 5570, 5570, 5690, 5691, 5571, 5571, 5691, 5692, 5572, 5572, 5692, 5693, 5573, 5573, 5693, 5694, 5574, 5574, 5694, 5695, 5575, 5575, 5695, 5696, 5576, 5576, 5696, 5697, 5577, 5577, 5697, 5698, 5578, 5578, 5698, 5699, 5579, 5579, 5699, 5700, 5580, 5580, 5700, 5701, 5581, 5581, 5701, 5702, 5582, 5582, 5702, 5703, 5583, 5583, 5703, 5704, 5584, 5584, 5704, 5705, 5585, 5585, 5705, 5706, 5586, 5586, 5706, 5707, 5587, 5587, 5707, 5708, 5588, 5588, 5708, 5709, 5589, 5589, 5709, 5710, 5590, 5590, 5710, 5711, 5591, 5591, 5711, 5712, 5592, 5592, 5712, 5713, 5593, 5593, 5713, 5714, 5594, 5594, 5714, 5715, 5595, 5595, 5715, 5716, 5596, 5596, 5716, 5717, 5597, 5597, 5717, 5718, 5598, 5598, 5718, 5719, 5599, 5599, 5719, 5720, 5600, 5600, 5720, 5721, 5601, 5601, 5721, 5722, 5602, 5602, 5722, 5723, 5603, 5603, 5723, 5724, 5604, 5604, 5724, 5725, 5605, 5605, 5725, 5726, 5606, 5606, 5726, 5727, 5607, 5607, 5727, 5728, 5608, 5608, 5728, 5729, 5609, 5609, 5729, 5730, 5610, 5610, 5730, 5731, 5611, 5611, 5731, 5732, 5612, 5612, 5732, 5733, 5613, 5613, 5733, 5734, 5614, 5614, 5734, 5735, 5615, 5615, 5735, 5736, 5616, 5616, 5736, 5737, 5617, 5617, 5737, 5738, 5618, 5618, 5738, 5739, 5619, 5619, 5739, 5740, 5620, 5620, 5740, 5741, 5621, 5621, 5741, 5742, 5622, 5622, 5742, 5743, 5623, 5623, 5743, 5744, 5624, 5624, 5744, 5745, 5625, 5625, 5745, 5746, 5626, 5626, 5746, 5747, 5627, 5627, 5747, 5748, 5628, 5628, 5748, 5749, 5629, 5629, 5749, 5750, 5630, 5630, 5750, 5751, 5631, 5631, 5751, 5752, 5632, 5632, 5752, 5753, 5633, 5633, 5753, 5754, 5634, 5634, 5754, 5755, 5635, 5635, 5755, 5756, 5636, 5636, 5756, 5757, 5637, 5637, 5757, 5758, 5638, 5638, 5758, 5759, 5639, 5639, 5759, 5760, 5640, 5640, 5760, 5641, 5521, 5641, 5761, 5762, 5642, 5642, 5762, 5763, 5643, 5643, 5763, 5764, 5644, 5644, 5764, 5765, 5645, 5645, 5765, 5766, 5646, 5646, 5766, 5767, 5647, 5647, 5767, 5768, 5648, 5648, 5768, 5769, 5649, 5649, 5769, 5770, 5650, 5650, 5770, 5771, 5651, 5651, 5771, 5772, 5652, 5652, 5772, 5773, 5653, 5653, 5773, 5774, 5654, 5654, 5774, 5775, 5655, 5655, 5775, 5776, 5656, 5656, 5776, 5777, 5657, 5657, 5777, 5778, 5658, 5658, 5778, 5779, 5659, 5659, 5779, 5780, 5660, 5660, 5780, 5781, 5661, 5661, 5781, 5782, 5662, 5662, 5782, 5783, 5663, 5663, 5783, 5784, 5664, 5664, 5784, 5785, 5665, 5665, 5785, 5786, 5666, 5666, 5786, 5787, 5667, 5667, 5787, 5788, 5668, 5668, 5788, 5789, 5669, 5669, 5789, 5790, 5670, 5670, 5790, 5791, 5671, 5671, 5791, 5792, 5672, 5672, 5792, 5793, 5673, 5673, 5793, 5794, 5674, 5674, 5794, 5795, 5675, 5675, 5795, 5796, 5676, 5676, 5796, 5797, 5677, 5677, 5797, 5798, 5678, 5678, 5798, 5799, 5679, 5679, 5799, 5800, 5680, 5680, 5800, 5801, 5681, 5681, 5801, 5802, 5682, 5682, 5802, 5803, 5683, 5683, 5803, 5804, 5684, 5684, 5804, 5805, 5685, 5685, 5805, 5806, 5686, 5686, 5806, 5807, 5687, 5687, 5807, 5808, 5688, 5688, 5808, 5809, 5689, 5689, 5809, 5810, 5690, 5690, 5810, 5811, 5691, 5691, 5811, 5812, 5692, 5692, 5812, 5813, 5693, 5693, 5813, 5814, 5694, 5694, 5814, 5815, 5695, 5695, 5815, 5816, 5696, 5696, 5816, 5817, 5697, 5697, 5817, 5818, 5698, 5698, 5818, 5819, 5699, 5699, 5819, 5820, 5700, 5700, 5820, 5821, 5701, 5701, 5821, 5822, 5702, 5702, 5822, 5823, 5703, 5703, 5823, 5824, 5704, 5704, 5824, 5825, 5705, 5705, 5825, 5826, 5706, 5706, 5826, 5827, 5707, 5707, 5827, 5828, 5708, 5708, 5828, 5829, 5709, 5709, 5829, 5830, 5710, 5710, 5830, 5831, 5711, 5711, 5831, 5832, 5712, 5712, 5832, 5833, 5713, 5713, 5833, 5834, 5714, 5714, 5834, 5835, 5715, 5715, 5835, 5836, 5716, 5716, 5836, 5837, 5717, 5717, 5837, 5838, 5718, 5718, 5838, 5839, 5719, 5719, 5839, 5840, 5720, 5720, 5840, 5841, 5721, 5721, 5841, 5842, 5722, 5722, 5842, 5843, 5723, 5723, 5843, 5844, 5724, 5724, 5844, 5845, 5725, 5725, 5845, 5846, 5726, 5726, 5846, 5847, 5727, 5727, 5847, 5848, 5728, 5728, 5848, 5849, 5729, 5729, 5849, 5850, 5730, 5730, 5850, 5851, 5731, 5731, 5851, 5852, 5732, 5732, 5852, 5853, 5733, 5733, 5853, 5854, 5734, 5734, 5854, 5855, 5735, 5735, 5855, 5856, 5736, 5736, 5856, 5857, 5737, 5737, 5857, 5858, 5738, 5738, 5858, 5859, 5739, 5739, 5859, 5860, 5740, 5740, 5860, 5861, 5741, 5741, 5861, 5862, 5742, 5742, 5862, 5863, 5743, 5743, 5863, 5864, 5744, 5744, 5864, 5865, 5745, 5745, 5865, 5866, 5746, 5746, 5866, 5867, 5747, 5747, 5867, 5868, 5748, 5748, 5868, 5869, 5749, 5749, 5869, 5870, 5750, 5750, 5870, 5871, 5751, 5751, 5871, 5872, 5752, 5752, 5872, 5873, 5753, 5753, 5873, 5874, 5754, 5754, 5874, 5875, 5755, 5755, 5875, 5876, 5756, 5756, 5876, 5877, 5757, 5757, 5877, 5878, 5758, 5758, 5878, 5879, 5759, 5759, 5879, 5880, 5760, 5760, 5880, 5761, 5641, 5761, 5881, 5882, 5762, 5762, 5882, 5883, 5763, 5763, 5883, 5884, 5764, 5764, 5884, 5885, 5765, 5765, 5885, 5886, 5766, 5766, 5886, 5887, 5767, 5767, 5887, 5888, 5768, 5768, 5888, 5889, 5769, 5769, 5889, 5890, 5770, 5770, 5890, 5891, 5771, 5771, 5891, 5892, 5772, 5772, 5892, 5893, 5773, 5773, 5893, 5894, 5774, 5774, 5894, 5895, 5775, 5775, 5895, 5896, 5776, 5776, 5896, 5897, 5777, 5777, 5897, 5898, 5778, 5778, 5898, 5899, 5779, 5779, 5899, 5900, 5780, 5780, 5900, 5901, 5781, 5781, 5901, 5902, 5782, 5782, 5902, 5903, 5783, 5783, 5903, 5904, 5784, 5784, 5904, 5905, 5785, 5785, 5905, 5906, 5786, 5786, 5906, 5907, 5787, 5787, 5907, 5908, 5788, 5788, 5908, 5909, 5789, 5789, 5909, 5910, 5790, 5790, 5910, 5911, 5791, 5791, 5911, 5912, 5792, 5792, 5912, 5913, 5793, 5793, 5913, 5914, 5794, 5794, 5914, 5915, 5795, 5795, 5915, 5916, 5796, 5796, 5916, 5917, 5797, 5797, 5917, 5918, 5798, 5798, 5918, 5919, 5799, 5799, 5919, 5920, 5800, 5800, 5920, 5921, 5801, 5801, 5921, 5922, 5802, 5802, 5922, 5923, 5803, 5803, 5923, 5924, 5804, 5804, 5924, 5925, 5805, 5805, 5925, 5926, 5806, 5806, 5926, 5927, 5807, 5807, 5927, 5928, 5808, 5808, 5928, 5929, 5809, 5809, 5929, 5930, 5810, 5810, 5930, 5931, 5811, 5811, 5931, 5932, 5812, 5812, 5932, 5933, 5813, 5813, 5933, 5934, 5814, 5814, 5934, 5935, 5815, 5815, 5935, 5936, 5816, 5816, 5936, 5937, 5817, 5817, 5937, 5938, 5818, 5818, 5938, 5939, 5819, 5819, 5939, 5940, 5820, 5820, 5940, 5941, 5821, 5821, 5941, 5942, 5822, 5822, 5942, 5943, 5823, 5823, 5943, 5944, 5824, 5824, 5944, 5945, 5825, 5825, 5945, 5946, 5826, 5826, 5946, 5947, 5827, 5827, 5947, 5948, 5828, 5828, 5948, 5949, 5829, 5829, 5949, 5950, 5830, 5830, 5950, 5951, 5831, 5831, 5951, 5952, 5832, 5832, 5952, 5953, 5833, 5833, 5953, 5954, 5834, 5834, 5954, 5955, 5835, 5835, 5955, 5956, 5836, 5836, 5956, 5957, 5837, 5837, 5957, 5958, 5838, 5838, 5958, 5959, 5839, 5839, 5959, 5960, 5840, 5840, 5960, 5961, 5841, 5841, 5961, 5962, 5842, 5842, 5962, 5963, 5843, 5843, 5963, 5964, 5844, 5844, 5964, 5965, 5845, 5845, 5965, 5966, 5846, 5846, 5966, 5967, 5847, 5847, 5967, 5968, 5848, 5848, 5968, 5969, 5849, 5849, 5969, 5970, 5850, 5850, 5970, 5971, 5851, 5851, 5971, 5972, 5852, 5852, 5972, 5973, 5853, 5853, 5973, 5974, 5854, 5854, 5974, 5975, 5855, 5855, 5975, 5976, 5856, 5856, 5976, 5977, 5857, 5857, 5977, 5978, 5858, 5858, 5978, 5979, 5859, 5859, 5979, 5980, 5860, 5860, 5980, 5981, 5861, 5861, 5981, 5982, 5862, 5862, 5982, 5983, 5863, 5863, 5983, 5984, 5864, 5864, 5984, 5985, 5865, 5865, 5985, 5986, 5866, 5866, 5986, 5987, 5867, 5867, 5987, 5988, 5868, 5868, 5988, 5989, 5869, 5869, 5989, 5990, 5870, 5870, 5990, 5991, 5871, 5871, 5991, 5992, 5872, 5872, 5992, 5993, 5873, 5873, 5993, 5994, 5874, 5874, 5994, 5995, 5875, 5875, 5995, 5996, 5876, 5876, 5996, 5997, 5877, 5877, 5997, 5998, 5878, 5878, 5998, 5999, 5879, 5879, 5999, 6000, 5880, 5880, 6000, 5881, 5761, 5881, 6001, 6002, 5882, 5882, 6002, 6003, 5883, 5883, 6003, 6004, 5884, 5884, 6004, 6005, 5885, 5885, 6005, 6006, 5886, 5886, 6006, 6007, 5887, 5887, 6007, 6008, 5888, 5888, 6008, 6009, 5889, 5889, 6009, 6010, 5890, 5890, 6010, 6011, 5891, 5891, 6011, 6012, 5892, 5892, 6012, 6013, 5893, 5893, 6013, 6014, 5894, 5894, 6014, 6015, 5895, 5895, 6015, 6016, 5896, 5896, 6016, 6017, 5897, 5897, 6017, 6018, 5898, 5898, 6018, 6019, 5899, 5899, 6019, 6020, 5900, 5900, 6020, 6021, 5901, 5901, 6021, 6022, 5902, 5902, 6022, 6023, 5903, 5903, 6023, 6024, 5904, 5904, 6024, 6025, 5905, 5905, 6025, 6026, 5906, 5906, 6026, 6027, 5907, 5907, 6027, 6028, 5908, 5908, 6028, 6029, 5909, 5909, 6029, 6030, 5910, 5910, 6030, 6031, 5911, 5911, 6031, 6032, 5912, 5912, 6032, 6033, 5913, 5913, 6033, 6034, 5914, 5914, 6034, 6035, 5915, 5915, 6035, 6036, 5916, 5916, 6036, 6037, 5917, 5917, 6037, 6038, 5918, 5918, 6038, 6039, 5919, 5919, 6039, 6040, 5920, 5920, 6040, 6041, 5921, 5921, 6041, 6042, 5922, 5922, 6042, 6043, 5923, 5923, 6043, 6044, 5924, 5924, 6044, 6045, 5925, 5925, 6045, 6046, 5926, 5926, 6046, 6047, 5927, 5927, 6047, 6048, 5928, 5928, 6048, 6049, 5929, 5929, 6049, 6050, 5930, 5930, 6050, 6051, 5931, 5931, 6051, 6052, 5932, 5932, 6052, 6053, 5933, 5933, 6053, 6054, 5934, 5934, 6054, 6055, 5935, 5935, 6055, 6056, 5936, 5936, 6056, 6057, 5937, 5937, 6057, 6058, 5938, 5938, 6058, 6059, 5939, 5939, 6059, 6060, 5940, 5940, 6060, 6061, 5941, 5941, 6061, 6062, 5942, 5942, 6062, 6063, 5943, 5943, 6063, 6064, 5944, 5944, 6064, 6065, 5945, 5945, 6065, 6066, 5946, 5946, 6066, 6067, 5947, 5947, 6067, 6068, 5948, 5948, 6068, 6069, 5949, 5949, 6069, 6070, 5950, 5950, 6070, 6071, 5951, 5951, 6071, 6072, 5952, 5952, 6072, 6073, 5953, 5953, 6073, 6074, 5954, 5954, 6074, 6075, 5955, 5955, 6075, 6076, 5956, 5956, 6076, 6077, 5957, 5957, 6077, 6078, 5958, 5958, 6078, 6079, 5959, 5959, 6079, 6080, 5960, 5960, 6080, 6081, 5961, 5961, 6081, 6082, 5962, 5962, 6082, 6083, 5963, 5963, 6083, 6084, 5964, 5964, 6084, 6085, 5965, 5965, 6085, 6086, 5966, 5966, 6086, 6087, 5967, 5967, 6087, 6088, 5968, 5968, 6088, 6089, 5969, 5969, 6089, 6090, 5970, 5970, 6090, 6091, 5971, 5971, 6091, 6092, 5972, 5972, 6092, 6093, 5973, 5973, 6093, 6094, 5974, 5974, 6094, 6095, 5975, 5975, 6095, 6096, 5976, 5976, 6096, 6097, 5977, 5977, 6097, 6098, 5978, 5978, 6098, 6099, 5979, 5979, 6099, 6100, 5980, 5980, 6100, 6101, 5981, 5981, 6101, 6102, 5982, 5982, 6102, 6103, 5983, 5983, 6103, 6104, 5984, 5984, 6104, 6105, 5985, 5985, 6105, 6106, 5986, 5986, 6106, 6107, 5987, 5987, 6107, 6108, 5988, 5988, 6108, 6109, 5989, 5989, 6109, 6110, 5990, 5990, 6110, 6111, 5991, 5991, 6111, 6112, 5992, 5992, 6112, 6113, 5993, 5993, 6113, 6114, 5994, 5994, 6114, 6115, 5995, 5995, 6115, 6116, 5996, 5996, 6116, 6117, 5997, 5997, 6117, 6118, 5998, 5998, 6118, 6119, 5999, 5999, 6119, 6120, 6000, 6000, 6120, 6001, 5881, 6001, 6121, 6122, 6002, 6002, 6122, 6123, 6003, 6003, 6123, 6124, 6004, 6004, 6124, 6125, 6005, 6005, 6125, 6126, 6006, 6006, 6126, 6127, 6007, 6007, 6127, 6128, 6008, 6008, 6128, 6129, 6009, 6009, 6129, 6130, 6010, 6010, 6130, 6131, 6011, 6011, 6131, 6132, 6012, 6012, 6132, 6133, 6013, 6013, 6133, 6134, 6014, 6014, 6134, 6135, 6015, 6015, 6135, 6136, 6016, 6016, 6136, 6137, 6017, 6017, 6137, 6138, 6018, 6018, 6138, 6139, 6019, 6019, 6139, 6140, 6020, 6020, 6140, 6141, 6021, 6021, 6141, 6142, 6022, 6022, 6142, 6143, 6023, 6023, 6143, 6144, 6024, 6024, 6144, 6145, 6025, 6025, 6145, 6146, 6026, 6026, 6146, 6147, 6027, 6027, 6147, 6148, 6028, 6028, 6148, 6149, 6029, 6029, 6149, 6150, 6030, 6030, 6150, 6151, 6031, 6031, 6151, 6152, 6032, 6032, 6152, 6153, 6033, 6033, 6153, 6154, 6034, 6034, 6154, 6155, 6035, 6035, 6155, 6156, 6036, 6036, 6156, 6157, 6037, 6037, 6157, 6158, 6038, 6038, 6158, 6159, 6039, 6039, 6159, 6160, 6040, 6040, 6160, 6161, 6041, 6041, 6161, 6162, 6042, 6042, 6162, 6163, 6043, 6043, 6163, 6164, 6044, 6044, 6164, 6165, 6045, 6045, 6165, 6166, 6046, 6046, 6166, 6167, 6047, 6047, 6167, 6168, 6048, 6048, 6168, 6169, 6049, 6049, 6169, 6170, 6050, 6050, 6170, 6171, 6051, 6051, 6171, 6172, 6052, 6052, 6172, 6173, 6053, 6053, 6173, 6174, 6054, 6054, 6174, 6175, 6055, 6055, 6175, 6176, 6056, 6056, 6176, 6177, 6057, 6057, 6177, 6178, 6058, 6058, 6178, 6179, 6059, 6059, 6179, 6180, 6060, 6060, 6180, 6181, 6061, 6061, 6181, 6182, 6062, 6062, 6182, 6183, 6063, 6063, 6183, 6184, 6064, 6064, 6184, 6185, 6065, 6065, 6185, 6186, 6066, 6066, 6186, 6187, 6067, 6067, 6187, 6188, 6068, 6068, 6188, 6189, 6069, 6069, 6189, 6190, 6070, 6070, 6190, 6191, 6071, 6071, 6191, 6192, 6072, 6072, 6192, 6193, 6073, 6073, 6193, 6194, 6074, 6074, 6194, 6195, 6075, 6075, 6195, 6196, 6076, 6076, 6196, 6197, 6077, 6077, 6197, 6198, 6078, 6078, 6198, 6199, 6079, 6079, 6199, 6200, 6080, 6080, 6200, 6201, 6081, 6081, 6201, 6202, 6082, 6082, 6202, 6203, 6083, 6083, 6203, 6204, 6084, 6084, 6204, 6205, 6085, 6085, 6205, 6206, 6086, 6086, 6206, 6207, 6087, 6087, 6207, 6208, 6088, 6088, 6208, 6209, 6089, 6089, 6209, 6210, 6090, 6090, 6210, 6211, 6091, 6091, 6211, 6212, 6092, 6092, 6212, 6213, 6093, 6093, 6213, 6214, 6094, 6094, 6214, 6215, 6095, 6095, 6215, 6216, 6096, 6096, 6216, 6217, 6097, 6097, 6217, 6218, 6098, 6098, 6218, 6219, 6099, 6099, 6219, 6220, 6100, 6100, 6220, 6221, 6101, 6101, 6221, 6222, 6102, 6102, 6222, 6223, 6103, 6103, 6223, 6224, 6104, 6104, 6224, 6225, 6105, 6105, 6225, 6226, 6106, 6106, 6226, 6227, 6107, 6107, 6227, 6228, 6108, 6108, 6228, 6229, 6109, 6109, 6229, 6230, 6110, 6110, 6230, 6231, 6111, 6111, 6231, 6232, 6112, 6112, 6232, 6233, 6113, 6113, 6233, 6234, 6114, 6114, 6234, 6235, 6115, 6115, 6235, 6236, 6116, 6116, 6236, 6237, 6117, 6117, 6237, 6238, 6118, 6118, 6238, 6239, 6119, 6119, 6239, 6240, 6120, 6120, 6240, 6121, 6001, 6121, 6241, 6242, 6122, 6122, 6242, 6243, 6123, 6123, 6243, 6244, 6124, 6124, 6244, 6245, 6125, 6125, 6245, 6246, 6126, 6126, 6246, 6247, 6127, 6127, 6247, 6248, 6128, 6128, 6248, 6249, 6129, 6129, 6249, 6250, 6130, 6130, 6250, 6251, 6131, 6131, 6251, 6252, 6132, 6132, 6252, 6253, 6133, 6133, 6253, 6254, 6134, 6134, 6254, 6255, 6135, 6135, 6255, 6256, 6136, 6136, 6256, 6257, 6137, 6137, 6257, 6258, 6138, 6138, 6258, 6259, 6139, 6139, 6259, 6260, 6140, 6140, 6260, 6261, 6141, 6141, 6261, 6262, 6142, 6142, 6262, 6263, 6143, 6143, 6263, 6264, 6144, 6144, 6264, 6265, 6145, 6145, 6265, 6266, 6146, 6146, 6266, 6267, 6147, 6147, 6267, 6268, 6148, 6148, 6268, 6269, 6149, 6149, 6269, 6270, 6150, 6150, 6270, 6271, 6151, 6151, 6271, 6272, 6152, 6152, 6272, 6273, 6153, 6153, 6273, 6274, 6154, 6154, 6274, 6275, 6155, 6155, 6275, 6276, 6156, 6156, 6276, 6277, 6157, 6157, 6277, 6278, 6158, 6158, 6278, 6279, 6159, 6159, 6279, 6280, 6160, 6160, 6280, 6281, 6161, 6161, 6281, 6282, 6162, 6162, 6282, 6283, 6163, 6163, 6283, 6284, 6164, 6164, 6284, 6285, 6165, 6165, 6285, 6286, 6166, 6166, 6286, 6287, 6167, 6167, 6287, 6288, 6168, 6168, 6288, 6289, 6169, 6169, 6289, 6290, 6170, 6170, 6290, 6291, 6171, 6171, 6291, 6292, 6172, 6172, 6292, 6293, 6173, 6173, 6293, 6294, 6174, 6174, 6294, 6295, 6175, 6175, 6295, 6296, 6176, 6176, 6296, 6297, 6177, 6177, 6297, 6298, 6178, 6178, 6298, 6299, 6179, 6179, 6299, 6300, 6180, 6180, 6300, 6301, 6181, 6181, 6301, 6302, 6182, 6182, 6302, 6303, 6183, 6183, 6303, 6304, 6184, 6184, 6304, 6305, 6185, 6185, 6305, 6306, 6186, 6186, 6306, 6307, 6187, 6187, 6307, 6308, 6188, 6188, 6308, 6309, 6189, 6189, 6309, 6310, 6190, 6190, 6310, 6311, 6191, 6191, 6311, 6312, 6192, 6192, 6312, 6313, 6193, 6193, 6313, 6314, 6194, 6194, 6314, 6315, 6195, 6195, 6315, 6316, 6196, 6196, 6316, 6317, 6197, 6197, 6317, 6318, 6198, 6198, 6318, 6319, 6199, 6199, 6319, 6320, 6200, 6200, 6320, 6321, 6201, 6201, 6321, 6322, 6202, 6202, 6322, 6323, 6203, 6203, 6323, 6324, 6204, 6204, 6324, 6325, 6205, 6205, 6325, 6326, 6206, 6206, 6326, 6327, 6207, 6207, 6327, 6328, 6208, 6208, 6328, 6329, 6209, 6209, 6329, 6330, 6210, 6210, 6330, 6331, 6211, 6211, 6331, 6332, 6212, 6212, 6332, 6333, 6213, 6213, 6333, 6334, 6214, 6214, 6334, 6335, 6215, 6215, 6335, 6336, 6216, 6216, 6336, 6337, 6217, 6217, 6337, 6338, 6218, 6218, 6338, 6339, 6219, 6219, 6339, 6340, 6220, 6220, 6340, 6341, 6221, 6221, 6341, 6342, 6222, 6222, 6342, 6343, 6223, 6223, 6343, 6344, 6224, 6224, 6344, 6345, 6225, 6225, 6345, 6346, 6226, 6226, 6346, 6347, 6227, 6227, 6347, 6348, 6228, 6228, 6348, 6349, 6229, 6229, 6349, 6350, 6230, 6230, 6350, 6351, 6231, 6231, 6351, 6352, 6232, 6232, 6352, 6353, 6233, 6233, 6353, 6354, 6234, 6234, 6354, 6355, 6235, 6235, 6355, 6356, 6236, 6236, 6356, 6357, 6237, 6237, 6357, 6358, 6238, 6238, 6358, 6359, 6239, 6239, 6359, 6360, 6240, 6240, 6360, 6241, 6121, 6241, 6361, 6362, 6242, 6242, 6362, 6363, 6243, 6243, 6363, 6364, 6244, 6244, 6364, 6365, 6245, 6245, 6365, 6366, 6246, 6246, 6366, 6367, 6247, 6247, 6367, 6368, 6248, 6248, 6368, 6369, 6249, 6249, 6369, 6370, 6250, 6250, 6370, 6371, 6251, 6251, 6371, 6372, 6252, 6252, 6372, 6373, 6253, 6253, 6373, 6374, 6254, 6254, 6374, 6375, 6255, 6255, 6375, 6376, 6256, 6256, 6376, 6377, 6257, 6257, 6377, 6378, 6258, 6258, 6378, 6379, 6259, 6259, 6379, 6380, 6260, 6260, 6380, 6381, 6261, 6261, 6381, 6382, 6262, 6262, 6382, 6383, 6263, 6263, 6383, 6384, 6264, 6264, 6384, 6385, 6265, 6265, 6385, 6386, 6266, 6266, 6386, 6387, 6267, 6267, 6387, 6388, 6268, 6268, 6388, 6389, 6269, 6269, 6389, 6390, 6270, 6270, 6390, 6391, 6271, 6271, 6391, 6392, 6272, 6272, 6392, 6393, 6273, 6273, 6393, 6394, 6274, 6274, 6394, 6395, 6275, 6275, 6395, 6396, 6276, 6276, 6396, 6397, 6277, 6277, 6397, 6398, 6278, 6278, 6398, 6399, 6279, 6279, 6399, 6400, 6280, 6280, 6400, 6401, 6281, 6281, 6401, 6402, 6282, 6282, 6402, 6403, 6283, 6283, 6403, 6404, 6284, 6284, 6404, 6405, 6285, 6285, 6405, 6406, 6286, 6286, 6406, 6407, 6287, 6287, 6407, 6408, 6288, 6288, 6408, 6409, 6289, 6289, 6409, 6410, 6290, 6290, 6410, 6411, 6291, 6291, 6411, 6412, 6292, 6292, 6412, 6413, 6293, 6293, 6413, 6414, 6294, 6294, 6414, 6415, 6295, 6295, 6415, 6416, 6296, 6296, 6416, 6417, 6297, 6297, 6417, 6418, 6298, 6298, 6418, 6419, 6299, 6299, 6419, 6420, 6300, 6300, 6420, 6421, 6301, 6301, 6421, 6422, 6302, 6302, 6422, 6423, 6303, 6303, 6423, 6424, 6304, 6304, 6424, 6425, 6305, 6305, 6425, 6426, 6306, 6306, 6426, 6427, 6307, 6307, 6427, 6428, 6308, 6308, 6428, 6429, 6309, 6309, 6429, 6430, 6310, 6310, 6430, 6431, 6311, 6311, 6431, 6432, 6312, 6312, 6432, 6433, 6313, 6313, 6433, 6434, 6314, 6314, 6434, 6435, 6315, 6315, 6435, 6436, 6316, 6316, 6436, 6437, 6317, 6317, 6437, 6438, 6318, 6318, 6438, 6439, 6319, 6319, 6439, 6440, 6320, 6320, 6440, 6441, 6321, 6321, 6441, 6442, 6322, 6322, 6442, 6443, 6323, 6323, 6443, 6444, 6324, 6324, 6444, 6445, 6325, 6325, 6445, 6446, 6326, 6326, 6446, 6447, 6327, 6327, 6447, 6448, 6328, 6328, 6448, 6449, 6329, 6329, 6449, 6450, 6330, 6330, 6450, 6451, 6331, 6331, 6451, 6452, 6332, 6332, 6452, 6453, 6333, 6333, 6453, 6454, 6334, 6334, 6454, 6455, 6335, 6335, 6455, 6456, 6336, 6336, 6456, 6457, 6337, 6337, 6457, 6458, 6338, 6338, 6458, 6459, 6339, 6339, 6459, 6460, 6340, 6340, 6460, 6461, 6341, 6341, 6461, 6462, 6342, 6342, 6462, 6463, 6343, 6343, 6463, 6464, 6344, 6344, 6464, 6465, 6345, 6345, 6465, 6466, 6346, 6346, 6466, 6467, 6347, 6347, 6467, 6468, 6348, 6348, 6468, 6469, 6349, 6349, 6469, 6470, 6350, 6350, 6470, 6471, 6351, 6351, 6471, 6472, 6352, 6352, 6472, 6473, 6353, 6353, 6473, 6474, 6354, 6354, 6474, 6475, 6355, 6355, 6475, 6476, 6356, 6356, 6476, 6477, 6357, 6357, 6477, 6478, 6358, 6358, 6478, 6479, 6359, 6359, 6479, 6480, 6360, 6360, 6480, 6361, 6241, 6361, 6481, 6482, 6362, 6362, 6482, 6483, 6363, 6363, 6483, 6484, 6364, 6364, 6484, 6485, 6365, 6365, 6485, 6486, 6366, 6366, 6486, 6487, 6367, 6367, 6487, 6488, 6368, 6368, 6488, 6489, 6369, 6369, 6489, 6490, 6370, 6370, 6490, 6491, 6371, 6371, 6491, 6492, 6372, 6372, 6492, 6493, 6373, 6373, 6493, 6494, 6374, 6374, 6494, 6495, 6375, 6375, 6495, 6496, 6376, 6376, 6496, 6497, 6377, 6377, 6497, 6498, 6378, 6378, 6498, 6499, 6379, 6379, 6499, 6500, 6380, 6380, 6500, 6501, 6381, 6381, 6501, 6502, 6382, 6382, 6502, 6503, 6383, 6383, 6503, 6504, 6384, 6384, 6504, 6505, 6385, 6385, 6505, 6506, 6386, 6386, 6506, 6507, 6387, 6387, 6507, 6508, 6388, 6388, 6508, 6509, 6389, 6389, 6509, 6510, 6390, 6390, 6510, 6511, 6391, 6391, 6511, 6512, 6392, 6392, 6512, 6513, 6393, 6393, 6513, 6514, 6394, 6394, 6514, 6515, 6395, 6395, 6515, 6516, 6396, 6396, 6516, 6517, 6397, 6397, 6517, 6518, 6398, 6398, 6518, 6519, 6399, 6399, 6519, 6520, 6400, 6400, 6520, 6521, 6401, 6401, 6521, 6522, 6402, 6402, 6522, 6523, 6403, 6403, 6523, 6524, 6404, 6404, 6524, 6525, 6405, 6405, 6525, 6526, 6406, 6406, 6526, 6527, 6407, 6407, 6527, 6528, 6408, 6408, 6528, 6529, 6409, 6409, 6529, 6530, 6410, 6410, 6530, 6531, 6411, 6411, 6531, 6532, 6412, 6412, 6532, 6533, 6413, 6413, 6533, 6534, 6414, 6414, 6534, 6535, 6415, 6415, 6535, 6536, 6416, 6416, 6536, 6537, 6417, 6417, 6537, 6538, 6418, 6418, 6538, 6539, 6419, 6419, 6539, 6540, 6420, 6420, 6540, 6541, 6421, 6421, 6541, 6542, 6422, 6422, 6542, 6543, 6423, 6423, 6543, 6544, 6424, 6424, 6544, 6545, 6425, 6425, 6545, 6546, 6426, 6426, 6546, 6547, 6427, 6427, 6547, 6548, 6428, 6428, 6548, 6549, 6429, 6429, 6549, 6550, 6430, 6430, 6550, 6551, 6431, 6431, 6551, 6552, 6432, 6432, 6552, 6553, 6433, 6433, 6553, 6554, 6434, 6434, 6554, 6555, 6435, 6435, 6555, 6556, 6436, 6436, 6556, 6557, 6437, 6437, 6557, 6558, 6438, 6438, 6558, 6559, 6439, 6439, 6559, 6560, 6440, 6440, 6560, 6561, 6441, 6441, 6561, 6562, 6442, 6442, 6562, 6563, 6443, 6443, 6563, 6564, 6444, 6444, 6564, 6565, 6445, 6445, 6565, 6566, 6446, 6446, 6566, 6567, 6447, 6447, 6567, 6568, 6448, 6448, 6568, 6569, 6449, 6449, 6569, 6570, 6450, 6450, 6570, 6571, 6451, 6451, 6571, 6572, 6452, 6452, 6572, 6573, 6453, 6453, 6573, 6574, 6454, 6454, 6574, 6575, 6455, 6455, 6575, 6576, 6456, 6456, 6576, 6577, 6457, 6457, 6577, 6578, 6458, 6458, 6578, 6579, 6459, 6459, 6579, 6580, 6460, 6460, 6580, 6581, 6461, 6461, 6581, 6582, 6462, 6462, 6582, 6583, 6463, 6463, 6583, 6584, 6464, 6464, 6584, 6585, 6465, 6465, 6585, 6586, 6466, 6466, 6586, 6587, 6467, 6467, 6587, 6588, 6468, 6468, 6588, 6589, 6469, 6469, 6589, 6590, 6470, 6470, 6590, 6591, 6471, 6471, 6591, 6592, 6472, 6472, 6592, 6593, 6473, 6473, 6593, 6594, 6474, 6474, 6594, 6595, 6475, 6475, 6595, 6596, 6476, 6476, 6596, 6597, 6477, 6477, 6597, 6598, 6478, 6478, 6598, 6599, 6479, 6479, 6599, 6600, 6480, 6480, 6600, 6481, 6361, 6481, 6601, 6602, 6482, 6482, 6602, 6603, 6483, 6483, 6603, 6604, 6484, 6484, 6604, 6605, 6485, 6485, 6605, 6606, 6486, 6486, 6606, 6607, 6487, 6487, 6607, 6608, 6488, 6488, 6608, 6609, 6489, 6489, 6609, 6610, 6490, 6490, 6610, 6611, 6491, 6491, 6611, 6612, 6492, 6492, 6612, 6613, 6493, 6493, 6613, 6614, 6494, 6494, 6614, 6615, 6495, 6495, 6615, 6616, 6496, 6496, 6616, 6617, 6497, 6497, 6617, 6618, 6498, 6498, 6618, 6619, 6499, 6499, 6619, 6620, 6500, 6500, 6620, 6621, 6501, 6501, 6621, 6622, 6502, 6502, 6622, 6623, 6503, 6503, 6623, 6624, 6504, 6504, 6624, 6625, 6505, 6505, 6625, 6626, 6506, 6506, 6626, 6627, 6507, 6507, 6627, 6628, 6508, 6508, 6628, 6629, 6509, 6509, 6629, 6630, 6510, 6510, 6630, 6631, 6511, 6511, 6631, 6632, 6512, 6512, 6632, 6633, 6513, 6513, 6633, 6634, 6514, 6514, 6634, 6635, 6515, 6515, 6635, 6636, 6516, 6516, 6636, 6637, 6517, 6517, 6637, 6638, 6518, 6518, 6638, 6639, 6519, 6519, 6639, 6640, 6520, 6520, 6640, 6641, 6521, 6521, 6641, 6642, 6522, 6522, 6642, 6643, 6523, 6523, 6643, 6644, 6524, 6524, 6644, 6645, 6525, 6525, 6645, 6646, 6526, 6526, 6646, 6647, 6527, 6527, 6647, 6648, 6528, 6528, 6648, 6649, 6529, 6529, 6649, 6650, 6530, 6530, 6650, 6651, 6531, 6531, 6651, 6652, 6532, 6532, 6652, 6653, 6533, 6533, 6653, 6654, 6534, 6534, 6654, 6655, 6535, 6535, 6655, 6656, 6536, 6536, 6656, 6657, 6537, 6537, 6657, 6658, 6538, 6538, 6658, 6659, 6539, 6539, 6659, 6660, 6540, 6540, 6660, 6661, 6541, 6541, 6661, 6662, 6542, 6542, 6662, 6663, 6543, 6543, 6663, 6664, 6544, 6544, 6664, 6665, 6545, 6545, 6665, 6666, 6546, 6546, 6666, 6667, 6547, 6547, 6667, 6668, 6548, 6548, 6668, 6669, 6549, 6549, 6669, 6670, 6550, 6550, 6670, 6671, 6551, 6551, 6671, 6672, 6552, 6552, 6672, 6673, 6553, 6553, 6673, 6674, 6554, 6554, 6674, 6675, 6555, 6555, 6675, 6676, 6556, 6556, 6676, 6677, 6557, 6557, 6677, 6678, 6558, 6558, 6678, 6679, 6559, 6559, 6679, 6680, 6560, 6560, 6680, 6681, 6561, 6561, 6681, 6682, 6562, 6562, 6682, 6683, 6563, 6563, 6683, 6684, 6564, 6564, 6684, 6685, 6565, 6565, 6685, 6686, 6566, 6566, 6686, 6687, 6567, 6567, 6687, 6688, 6568, 6568, 6688, 6689, 6569, 6569, 6689, 6690, 6570, 6570, 6690, 6691, 6571, 6571, 6691, 6692, 6572, 6572, 6692, 6693, 6573, 6573, 6693, 6694, 6574, 6574, 6694, 6695, 6575, 6575, 6695, 6696, 6576, 6576, 6696, 6697, 6577, 6577, 6697, 6698, 6578, 6578, 6698, 6699, 6579, 6579, 6699, 6700, 6580, 6580, 6700, 6701, 6581, 6581, 6701, 6702, 6582, 6582, 6702, 6703, 6583, 6583, 6703, 6704, 6584, 6584, 6704, 6705, 6585, 6585, 6705, 6706, 6586, 6586, 6706, 6707, 6587, 6587, 6707, 6708, 6588, 6588, 6708, 6709, 6589, 6589, 6709, 6710, 6590, 6590, 6710, 6711, 6591, 6591, 6711, 6712, 6592, 6592, 6712, 6713, 6593, 6593, 6713, 6714, 6594, 6594, 6714, 6715, 6595, 6595, 6715, 6716, 6596, 6596, 6716, 6717, 6597, 6597, 6717, 6718, 6598, 6598, 6718, 6719, 6599, 6599, 6719, 6720, 6600, 6600, 6720, 6601, 6481, 6601, 6721, 6722, 6602, 6602, 6722, 6723, 6603, 6603, 6723, 6724, 6604, 6604, 6724, 6725, 6605, 6605, 6725, 6726, 6606, 6606, 6726, 6727, 6607, 6607, 6727, 6728, 6608, 6608, 6728, 6729, 6609, 6609, 6729, 6730, 6610, 6610, 6730, 6731, 6611, 6611, 6731, 6732, 6612, 6612, 6732, 6733, 6613, 6613, 6733, 6734, 6614, 6614, 6734, 6735, 6615, 6615, 6735, 6736, 6616, 6616, 6736, 6737, 6617, 6617, 6737, 6738, 6618, 6618, 6738, 6739, 6619, 6619, 6739, 6740, 6620, 6620, 6740, 6741, 6621, 6621, 6741, 6742, 6622, 6622, 6742, 6743, 6623, 6623, 6743, 6744, 6624, 6624, 6744, 6745, 6625, 6625, 6745, 6746, 6626, 6626, 6746, 6747, 6627, 6627, 6747, 6748, 6628, 6628, 6748, 6749, 6629, 6629, 6749, 6750, 6630, 6630, 6750, 6751, 6631, 6631, 6751, 6752, 6632, 6632, 6752, 6753, 6633, 6633, 6753, 6754, 6634, 6634, 6754, 6755, 6635, 6635, 6755, 6756, 6636, 6636, 6756, 6757, 6637, 6637, 6757, 6758, 6638, 6638, 6758, 6759, 6639, 6639, 6759, 6760, 6640, 6640, 6760, 6761, 6641, 6641, 6761, 6762, 6642, 6642, 6762, 6763, 6643, 6643, 6763, 6764, 6644, 6644, 6764, 6765, 6645, 6645, 6765, 6766, 6646, 6646, 6766, 6767, 6647, 6647, 6767, 6768, 6648, 6648, 6768, 6769, 6649, 6649, 6769, 6770, 6650, 6650, 6770, 6771, 6651, 6651, 6771, 6772, 6652, 6652, 6772, 6773, 6653, 6653, 6773, 6774, 6654, 6654, 6774, 6775, 6655, 6655, 6775, 6776, 6656, 6656, 6776, 6777, 6657, 6657, 6777, 6778, 6658, 6658, 6778, 6779, 6659, 6659, 6779, 6780, 6660, 6660, 6780, 6781, 6661, 6661, 6781, 6782, 6662, 6662, 6782, 6783, 6663, 6663, 6783, 6784, 6664, 6664, 6784, 6785, 6665, 6665, 6785, 6786, 6666, 6666, 6786, 6787, 6667, 6667, 6787, 6788, 6668, 6668, 6788, 6789, 6669, 6669, 6789, 6790, 6670, 6670, 6790, 6791, 6671, 6671, 6791, 6792, 6672, 6672, 6792, 6793, 6673, 6673, 6793, 6794, 6674, 6674, 6794, 6795, 6675, 6675, 6795, 6796, 6676, 6676, 6796, 6797, 6677, 6677, 6797, 6798, 6678, 6678, 6798, 6799, 6679, 6679, 6799, 6800, 6680, 6680, 6800, 6801, 6681, 6681, 6801, 6802, 6682, 6682, 6802, 6803, 6683, 6683, 6803, 6804, 6684, 6684, 6804, 6805, 6685, 6685, 6805, 6806, 6686, 6686, 6806, 6807, 6687, 6687, 6807, 6808, 6688, 6688, 6808, 6809, 6689, 6689, 6809, 6810, 6690, 6690, 6810, 6811, 6691, 6691, 6811, 6812, 6692, 6692, 6812, 6813, 6693, 6693, 6813, 6814, 6694, 6694, 6814, 6815, 6695, 6695, 6815, 6816, 6696, 6696, 6816, 6817, 6697, 6697, 6817, 6818, 6698, 6698, 6818, 6819, 6699, 6699, 6819, 6820, 6700, 6700, 6820, 6821, 6701, 6701, 6821, 6822, 6702, 6702, 6822, 6823, 6703, 6703, 6823, 6824, 6704, 6704, 6824, 6825, 6705, 6705, 6825, 6826, 6706, 6706, 6826, 6827, 6707, 6707, 6827, 6828, 6708, 6708, 6828, 6829, 6709, 6709, 6829, 6830, 6710, 6710, 6830, 6831, 6711, 6711, 6831, 6832, 6712, 6712, 6832, 6833, 6713, 6713, 6833, 6834, 6714, 6714, 6834, 6835, 6715, 6715, 6835, 6836, 6716, 6716, 6836, 6837, 6717, 6717, 6837, 6838, 6718, 6718, 6838, 6839, 6719, 6719, 6839, 6840, 6720, 6720, 6840, 6721, 6601, 6721, 6841, 6842, 6722, 6722, 6842, 6843, 6723, 6723, 6843, 6844, 6724, 6724, 6844, 6845, 6725, 6725, 6845, 6846, 6726, 6726, 6846, 6847, 6727, 6727, 6847, 6848, 6728, 6728, 6848, 6849, 6729, 6729, 6849, 6850, 6730, 6730, 6850, 6851, 6731, 6731, 6851, 6852, 6732, 6732, 6852, 6853, 6733, 6733, 6853, 6854, 6734, 6734, 6854, 6855, 6735, 6735, 6855, 6856, 6736, 6736, 6856, 6857, 6737, 6737, 6857, 6858, 6738, 6738, 6858, 6859, 6739, 6739, 6859, 6860, 6740, 6740, 6860, 6861, 6741, 6741, 6861, 6862, 6742, 6742, 6862, 6863, 6743, 6743, 6863, 6864, 6744, 6744, 6864, 6865, 6745, 6745, 6865, 6866, 6746, 6746, 6866, 6867, 6747, 6747, 6867, 6868, 6748, 6748, 6868, 6869, 6749, 6749, 6869, 6870, 6750, 6750, 6870, 6871, 6751, 6751, 6871, 6872, 6752, 6752, 6872, 6873, 6753, 6753, 6873, 6874, 6754, 6754, 6874, 6875, 6755, 6755, 6875, 6876, 6756, 6756, 6876, 6877, 6757, 6757, 6877, 6878, 6758, 6758, 6878, 6879, 6759, 6759, 6879, 6880, 6760, 6760, 6880, 6881, 6761, 6761, 6881, 6882, 6762, 6762, 6882, 6883, 6763, 6763, 6883, 6884, 6764, 6764, 6884, 6885, 6765, 6765, 6885, 6886, 6766, 6766, 6886, 6887, 6767, 6767, 6887, 6888, 6768, 6768, 6888, 6889, 6769, 6769, 6889, 6890, 6770, 6770, 6890, 6891, 6771, 6771, 6891, 6892, 6772, 6772, 6892, 6893, 6773, 6773, 6893, 6894, 6774, 6774, 6894, 6895, 6775, 6775, 6895, 6896, 6776, 6776, 6896, 6897, 6777, 6777, 6897, 6898, 6778, 6778, 6898, 6899, 6779, 6779, 6899, 6900, 6780, 6780, 6900, 6901, 6781, 6781, 6901, 6902, 6782, 6782, 6902, 6903, 6783, 6783, 6903, 6904, 6784, 6784, 6904, 6905, 6785, 6785, 6905, 6906, 6786, 6786, 6906, 6907, 6787, 6787, 6907, 6908, 6788, 6788, 6908, 6909, 6789, 6789, 6909, 6910, 6790, 6790, 6910, 6911, 6791, 6791, 6911, 6912, 6792, 6792, 6912, 6913, 6793, 6793, 6913, 6914, 6794, 6794, 6914, 6915, 6795, 6795, 6915, 6916, 6796, 6796, 6916, 6917, 6797, 6797, 6917, 6918, 6798, 6798, 6918, 6919, 6799, 6799, 6919, 6920, 6800, 6800, 6920, 6921, 6801, 6801, 6921, 6922, 6802, 6802, 6922, 6923, 6803, 6803, 6923, 6924, 6804, 6804, 6924, 6925, 6805, 6805, 6925, 6926, 6806, 6806, 6926, 6927, 6807, 6807, 6927, 6928, 6808, 6808, 6928, 6929, 6809, 6809, 6929, 6930, 6810, 6810, 6930, 6931, 6811, 6811, 6931, 6932, 6812, 6812, 6932, 6933, 6813, 6813, 6933, 6934, 6814, 6814, 6934, 6935, 6815, 6815, 6935, 6936, 6816, 6816, 6936, 6937, 6817, 6817, 6937, 6938, 6818, 6818, 6938, 6939, 6819, 6819, 6939, 6940, 6820, 6820, 6940, 6941, 6821, 6821, 6941, 6942, 6822, 6822, 6942, 6943, 6823, 6823, 6943, 6944, 6824, 6824, 6944, 6945, 6825, 6825, 6945, 6946, 6826, 6826, 6946, 6947, 6827, 6827, 6947, 6948, 6828, 6828, 6948, 6949, 6829, 6829, 6949, 6950, 6830, 6830, 6950, 6951, 6831, 6831, 6951, 6952, 6832, 6832, 6952, 6953, 6833, 6833, 6953, 6954, 6834, 6834, 6954, 6955, 6835, 6835, 6955, 6956, 6836, 6836, 6956, 6957, 6837, 6837, 6957, 6958, 6838, 6838, 6958, 6959, 6839, 6839, 6959, 6960, 6840, 6840, 6960, 6841, 6721, 6841, 6961, 6962, 6842, 6842, 6962, 6963, 6843, 6843, 6963, 6964, 6844, 6844, 6964, 6965, 6845, 6845, 6965, 6966, 6846, 6846, 6966, 6967, 6847, 6847, 6967, 6968, 6848, 6848, 6968, 6969, 6849, 6849, 6969, 6970, 6850, 6850, 6970, 6971, 6851, 6851, 6971, 6972, 6852, 6852, 6972, 6973, 6853, 6853, 6973, 6974, 6854, 6854, 6974, 6975, 6855, 6855, 6975, 6976, 6856, 6856, 6976, 6977, 6857, 6857, 6977, 6978, 6858, 6858, 6978, 6979, 6859, 6859, 6979, 6980, 6860, 6860, 6980, 6981, 6861, 6861, 6981, 6982, 6862, 6862, 6982, 6983, 6863, 6863, 6983, 6984, 6864, 6864, 6984, 6985, 6865, 6865, 6985, 6986, 6866, 6866, 6986, 6987, 6867, 6867, 6987, 6988, 6868, 6868, 6988, 6989, 6869, 6869, 6989, 6990, 6870, 6870, 6990, 6991, 6871, 6871, 6991, 6992, 6872, 6872, 6992, 6993, 6873, 6873, 6993, 6994, 6874, 6874, 6994, 6995, 6875, 6875, 6995, 6996, 6876, 6876, 6996, 6997, 6877, 6877, 6997, 6998, 6878, 6878, 6998, 6999, 6879, 6879, 6999, 7000, 6880, 6880, 7000, 7001, 6881, 6881, 7001, 7002, 6882, 6882, 7002, 7003, 6883, 6883, 7003, 7004, 6884, 6884, 7004, 7005, 6885, 6885, 7005, 7006, 6886, 6886, 7006, 7007, 6887, 6887, 7007, 7008, 6888, 6888, 7008, 7009, 6889, 6889, 7009, 7010, 6890, 6890, 7010, 7011, 6891, 6891, 7011, 7012, 6892, 6892, 7012, 7013, 6893, 6893, 7013, 7014, 6894, 6894, 7014, 7015, 6895, 6895, 7015, 7016, 6896, 6896, 7016, 7017, 6897, 6897, 7017, 7018, 6898, 6898, 7018, 7019, 6899, 6899, 7019, 7020, 6900, 6900, 7020, 7021, 6901, 6901, 7021, 7022, 6902, 6902, 7022, 7023, 6903, 6903, 7023, 7024, 6904, 6904, 7024, 7025, 6905, 6905, 7025, 7026, 6906, 6906, 7026, 7027, 6907, 6907, 7027, 7028, 6908, 6908, 7028, 7029, 6909, 6909, 7029, 7030, 6910, 6910, 7030, 7031, 6911, 6911, 7031, 7032, 6912, 6912, 7032, 7033, 6913, 6913, 7033, 7034, 6914, 6914, 7034, 7035, 6915, 6915, 7035, 7036, 6916, 6916, 7036, 7037, 6917, 6917, 7037, 7038, 6918, 6918, 7038, 7039, 6919, 6919, 7039, 7040, 6920, 6920, 7040, 7041, 6921, 6921, 7041, 7042, 6922, 6922, 7042, 7043, 6923, 6923, 7043, 7044, 6924, 6924, 7044, 7045, 6925, 6925, 7045, 7046, 6926, 6926, 7046, 7047, 6927, 6927, 7047, 7048, 6928, 6928, 7048, 7049, 6929, 6929, 7049, 7050, 6930, 6930, 7050, 7051, 6931, 6931, 7051, 7052, 6932, 6932, 7052, 7053, 6933, 6933, 7053, 7054, 6934, 6934, 7054, 7055, 6935, 6935, 7055, 7056, 6936, 6936, 7056, 7057, 6937, 6937, 7057, 7058, 6938, 6938, 7058, 7059, 6939, 6939, 7059, 7060, 6940, 6940, 7060, 7061, 6941, 6941, 7061, 7062, 6942, 6942, 7062, 7063, 6943, 6943, 7063, 7064, 6944, 6944, 7064, 7065, 6945, 6945, 7065, 7066, 6946, 6946, 7066, 7067, 6947, 6947, 7067, 7068, 6948, 6948, 7068, 7069, 6949, 6949, 7069, 7070, 6950, 6950, 7070, 7071, 6951, 6951, 7071, 7072, 6952, 6952, 7072, 7073, 6953, 6953, 7073, 7074, 6954, 6954, 7074, 7075, 6955, 6955, 7075, 7076, 6956, 6956, 7076, 7077, 6957, 6957, 7077, 7078, 6958, 6958, 7078, 7079, 6959, 6959, 7079, 7080, 6960, 6960, 7080, 6961, 6841, 7081, 6962, 6961, 7081, 6963, 6962, 7081, 6964, 6963, 7081, 6965, 6964, 7081, 6966, 6965, 7081, 6967, 6966, 7081, 6968, 6967, 7081, 6969, 6968, 7081, 6970, 6969, 7081, 6971, 6970, 7081, 6972, 6971, 7081, 6973, 6972, 7081, 6974, 6973, 7081, 6975, 6974, 7081, 6976, 6975, 7081, 6977, 6976, 7081, 6978, 6977, 7081, 6979, 6978, 7081, 6980, 6979, 7081, 6981, 6980, 7081, 6982, 6981, 7081, 6983, 6982, 7081, 6984, 6983, 7081, 6985, 6984, 7081, 6986, 6985, 7081, 6987, 6986, 7081, 6988, 6987, 7081, 6989, 6988, 7081, 6990, 6989, 7081, 6991, 6990, 7081, 6992, 6991, 7081, 6993, 6992, 7081, 6994, 6993, 7081, 6995, 6994, 7081, 6996, 6995, 7081, 6997, 6996, 7081, 6998, 6997, 7081, 6999, 6998, 7081, 7000, 6999, 7081, 7001, 7000, 7081, 7002, 7001, 7081, 7003, 7002, 7081, 7004, 7003, 7081, 7005, 7004, 7081, 7006, 7005, 7081, 7007, 7006, 7081, 7008, 7007, 7081, 7009, 7008, 7081, 7010, 7009, 7081, 7011, 7010, 7081, 7012, 7011, 7081, 7013, 7012, 7081, 7014, 7013, 7081, 7015, 7014, 7081, 7016, 7015, 7081, 7017, 7016, 7081, 7018, 7017, 7081, 7019, 7018, 7081, 7020, 7019, 7081, 7021, 7020, 7081, 7022, 7021, 7081, 7023, 7022, 7081, 7024, 7023, 7081, 7025, 7024, 7081, 7026, 7025, 7081, 7027, 7026, 7081, 7028, 7027, 7081, 7029, 7028, 7081, 7030, 7029, 7081, 7031, 7030, 7081, 7032, 7031, 7081, 7033, 7032, 7081, 7034, 7033, 7081, 7035, 7034, 7081, 7036, 7035, 7081, 7037, 7036, 7081, 7038, 7037, 7081, 7039, 7038, 7081, 7040, 7039, 7081, 7041, 7040, 7081, 7042, 7041, 7081, 7043, 7042, 7081, 7044, 7043, 7081, 7045, 7044, 7081, 7046, 7045, 7081, 7047, 7046, 7081, 7048, 7047, 7081, 7049, 7048, 7081, 7050, 7049, 7081, 7051, 7050, 7081, 7052, 7051, 7081, 7053, 7052, 7081, 7054, 7053, 7081, 7055, 7054, 7081, 7056, 7055, 7081, 7057, 7056, 7081, 7058, 7057, 7081, 7059, 7058, 7081, 7060, 7059, 7081, 7061, 7060, 7081, 7062, 7061, 7081, 7063, 7062, 7081, 7064, 7063, 7081, 7065, 7064, 7081, 7066, 7065, 7081, 7067, 7066, 7081, 7068, 7067, 7081, 7069, 7068, 7081, 7070, 7069, 7081, 7071, 7070, 7081, 7072, 7071, 7081, 7073, 7072, 7081, 7074, 7073, 7081, 7075, 7074, 7081, 7076, 7075, 7081, 7077, 7076, 7081, 7078, 7077, 7081, 7079, 7078, 7081, 7080, 7079, 7081, 6961, 7080]
rel material:binding = </World/Looks/OmniGlass> (
bindMaterialAs = "weakerThanDescendants"
)
normal3f[] normals = [(0, -50, 0), (2.616798, -49.931477, 0), (2.6132116, -49.931477, 0.13695261), (0, -50, 0), (2.6132116, -49.931477, 0.13695261), (2.6024628, -49.931477, 0.27352986), (0, -50, 0), (2.6024628, -49.931477, 0.27352986), (2.5845807, -49.931477, 0.40935737), (0, -50, 0), (2.5845807, -49.931477, 0.40935737), (2.5596144, -49.931477, 0.54406285), (0, -50, 0), (2.5596144, -49.931477, 0.54406285), (2.5276325, -49.931477, 0.6772771), (0, -50, 0), (2.5276325, -49.931477, 0.6772771), (2.4887226, -49.931477, 0.808635), (0, -50, 0), (2.4887226, -49.931477, 0.808635), (2.4429913, -49.931477, 0.93777645), (0, -50, 0), (2.4429913, -49.931477, 0.93777645), (2.3905637, -49.931477, 1.0643475), (0, -50, 0), (2.3905637, -49.931477, 1.0643475), (2.331584, -49.931477, 1.1880014), (0, -50, 0), (2.331584, -49.931477, 1.1880014), (2.2662134, -49.931477, 1.308399), (0, -50, 0), (2.2662134, -49.931477, 1.308399), (2.1946313, -49.931477, 1.4252102), (0, -50, 0), (2.1946313, -49.931477, 1.4252102), (2.117034, -49.931477, 1.5381151), (0, -50, 0), (2.117034, -49.931477, 1.5381151), (2.033634, -49.931477, 1.6468042), (0, -50, 0), (2.033634, -49.931477, 1.6468042), (1.9446597, -49.931477, 1.7509795), (0, -50, 0), (1.9446597, -49.931477, 1.7509795), (1.8503555, -49.931477, 1.8503555), (0, -50, 0), (1.8503555, -49.931477, 1.8503555), (1.7509795, -49.931477, 1.9446597), (0, -50, 0), (1.7509795, -49.931477, 1.9446597), (1.6468042, -49.931477, 2.033634), (0, -50, 0), (1.6468042, -49.931477, 2.033634), (1.5381151, -49.931477, 2.117034), (0, -50, 0), (1.5381151, -49.931477, 2.117034), (1.4252102, -49.931477, 2.1946313), (0, -50, 0), (1.4252102, -49.931477, 2.1946313), (1.308399, -49.931477, 2.2662134), (0, -50, 0), (1.308399, -49.931477, 2.2662134), (1.1880014, -49.931477, 2.331584), (0, -50, 0), (1.1880014, -49.931477, 2.331584), (1.0643475, -49.931477, 2.3905637), (0, -50, 0), (1.0643475, -49.931477, 2.3905637), (0.93777645, -49.931477, 2.4429913), (0, -50, 0), (0.93777645, -49.931477, 2.4429913), (0.808635, -49.931477, 2.4887226), (0, -50, 0), (0.808635, -49.931477, 2.4887226), (0.6772771, -49.931477, 2.5276325), (0, -50, 0), (0.6772771, -49.931477, 2.5276325), (0.54406285, -49.931477, 2.5596144), (0, -50, 0), (0.54406285, -49.931477, 2.5596144), (0.40935737, -49.931477, 2.5845807), (0, -50, 0), (0.40935737, -49.931477, 2.5845807), (0.27352986, -49.931477, 2.6024628), (0, -50, 0), (0.27352986, -49.931477, 2.6024628), (0.13695261, -49.931477, 2.6132116), (0, -50, 0), (0.13695261, -49.931477, 2.6132116), (1.6023265e-16, -49.931477, 2.616798), (0, -50, 0), (1.6023265e-16, -49.931477, 2.616798), (-0.13695261, -49.931477, 2.6132116), (0, -50, 0), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.931477, 2.6024628), (0, -50, 0), (-0.27352986, -49.931477, 2.6024628), (-0.40935737, -49.931477, 2.5845807), (0, -50, 0), (-0.40935737, -49.931477, 2.5845807), (-0.54406285, -49.931477, 2.5596144), (0, -50, 0), (-0.54406285, -49.931477, 2.5596144), (-0.6772771, -49.931477, 2.5276325), (0, -50, 0), (-0.6772771, -49.931477, 2.5276325), (-0.808635, -49.931477, 2.4887226), (0, -50, 0), (-0.808635, -49.931477, 2.4887226), (-0.93777645, -49.931477, 2.4429913), (0, -50, 0), (-0.93777645, -49.931477, 2.4429913), (-1.0643475, -49.931477, 2.3905637), (0, -50, 0), (-1.0643475, -49.931477, 2.3905637), (-1.1880014, -49.931477, 2.331584), (0, -50, 0), (-1.1880014, -49.931477, 2.331584), (-1.308399, -49.931477, 2.2662134), (0, -50, 0), (-1.308399, -49.931477, 2.2662134), (-1.4252102, -49.931477, 2.1946313), (0, -50, 0), (-1.4252102, -49.931477, 2.1946313), (-1.5381151, -49.931477, 2.117034), (0, -50, 0), (-1.5381151, -49.931477, 2.117034), (-1.6468042, -49.931477, 2.033634), (0, -50, 0), (-1.6468042, -49.931477, 2.033634), (-1.7509795, -49.931477, 1.9446597), (0, -50, 0), (-1.7509795, -49.931477, 1.9446597), (-1.8503555, -49.931477, 1.8503555), (0, -50, 0), (-1.8503555, -49.931477, 1.8503555), (-1.9446597, -49.931477, 1.7509795), (0, -50, 0), (-1.9446597, -49.931477, 1.7509795), (-2.033634, -49.931477, 1.6468042), (0, -50, 0), (-2.033634, -49.931477, 1.6468042), (-2.117034, -49.931477, 1.5381151), (0, -50, 0), (-2.117034, -49.931477, 1.5381151), (-2.1946313, -49.931477, 1.4252102), (0, -50, 0), (-2.1946313, -49.931477, 1.4252102), (-2.2662134, -49.931477, 1.308399), (0, -50, 0), (-2.2662134, -49.931477, 1.308399), (-2.331584, -49.931477, 1.1880014), (0, -50, 0), (-2.331584, -49.931477, 1.1880014), (-2.3905637, -49.931477, 1.0643475), (0, -50, 0), (-2.3905637, -49.931477, 1.0643475), (-2.4429913, -49.931477, 0.93777645), (0, -50, 0), (-2.4429913, -49.931477, 0.93777645), (-2.4887226, -49.931477, 0.808635), (0, -50, 0), (-2.4887226, -49.931477, 0.808635), (-2.5276325, -49.931477, 0.6772771), (0, -50, 0), (-2.5276325, -49.931477, 0.6772771), (-2.5596144, -49.931477, 0.54406285), (0, -50, 0), (-2.5596144, -49.931477, 0.54406285), (-2.5845807, -49.931477, 0.40935737), (0, -50, 0), (-2.5845807, -49.931477, 0.40935737), (-2.6024628, -49.931477, 0.27352986), (0, -50, 0), (-2.6024628, -49.931477, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (0, -50, 0), (-2.6132116, -49.931477, 0.13695261), (-2.616798, -49.931477, 3.204653e-16), (0, -50, 0), (-2.616798, -49.931477, 3.204653e-16), (-2.6132116, -49.931477, -0.13695261), (0, -50, 0), (-2.6132116, -49.931477, -0.13695261), (-2.6024628, -49.931477, -0.27352986), (0, -50, 0), (-2.6024628, -49.931477, -0.27352986), (-2.5845807, -49.931477, -0.40935737), (0, -50, 0), (-2.5845807, -49.931477, -0.40935737), (-2.5596144, -49.931477, -0.54406285), (0, -50, 0), (-2.5596144, -49.931477, -0.54406285), (-2.5276325, -49.931477, -0.6772771), (0, -50, 0), (-2.5276325, -49.931477, -0.6772771), (-2.4887226, -49.931477, -0.808635), (0, -50, 0), (-2.4887226, -49.931477, -0.808635), (-2.4429913, -49.931477, -0.93777645), (0, -50, 0), (-2.4429913, -49.931477, -0.93777645), (-2.3905637, -49.931477, -1.0643475), (0, -50, 0), (-2.3905637, -49.931477, -1.0643475), (-2.331584, -49.931477, -1.1880014), (0, -50, 0), (-2.331584, -49.931477, -1.1880014), (-2.2662134, -49.931477, -1.308399), (0, -50, 0), (-2.2662134, -49.931477, -1.308399), (-2.1946313, -49.931477, -1.4252102), (0, -50, 0), (-2.1946313, -49.931477, -1.4252102), (-2.117034, -49.931477, -1.5381151), (0, -50, 0), (-2.117034, -49.931477, -1.5381151), (-2.033634, -49.931477, -1.6468042), (0, -50, 0), (-2.033634, -49.931477, -1.6468042), (-1.9446597, -49.931477, -1.7509795), (0, -50, 0), (-1.9446597, -49.931477, -1.7509795), (-1.8503555, -49.931477, -1.8503555), (0, -50, 0), (-1.8503555, -49.931477, -1.8503555), (-1.7509795, -49.931477, -1.9446597), (0, -50, 0), (-1.7509795, -49.931477, -1.9446597), (-1.6468042, -49.931477, -2.033634), (0, -50, 0), (-1.6468042, -49.931477, -2.033634), (-1.5381151, -49.931477, -2.117034), (0, -50, 0), (-1.5381151, -49.931477, -2.117034), (-1.4252102, -49.931477, -2.1946313), (0, -50, 0), (-1.4252102, -49.931477, -2.1946313), (-1.308399, -49.931477, -2.2662134), (0, -50, 0), (-1.308399, -49.931477, -2.2662134), (-1.1880014, -49.931477, -2.331584), (0, -50, 0), (-1.1880014, -49.931477, -2.331584), (-1.0643475, -49.931477, -2.3905637), (0, -50, 0), (-1.0643475, -49.931477, -2.3905637), (-0.93777645, -49.931477, -2.4429913), (0, -50, 0), (-0.93777645, -49.931477, -2.4429913), (-0.808635, -49.931477, -2.4887226), (0, -50, 0), (-0.808635, -49.931477, -2.4887226), (-0.6772771, -49.931477, -2.5276325), (0, -50, 0), (-0.6772771, -49.931477, -2.5276325), (-0.54406285, -49.931477, -2.5596144), (0, -50, 0), (-0.54406285, -49.931477, -2.5596144), (-0.40935737, -49.931477, -2.5845807), (0, -50, 0), (-0.40935737, -49.931477, -2.5845807), (-0.27352986, -49.931477, -2.6024628), (0, -50, 0), (-0.27352986, -49.931477, -2.6024628), (-0.13695261, -49.931477, -2.6132116), (0, -50, 0), (-0.13695261, -49.931477, -2.6132116), (-4.80698e-16, -49.931477, -2.616798), (0, -50, 0), (-4.80698e-16, -49.931477, -2.616798), (0.13695261, -49.931477, -2.6132116), (0, -50, 0), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.931477, -2.6024628), (0, -50, 0), (0.27352986, -49.931477, -2.6024628), (0.40935737, -49.931477, -2.5845807), (0, -50, 0), (0.40935737, -49.931477, -2.5845807), (0.54406285, -49.931477, -2.5596144), (0, -50, 0), (0.54406285, -49.931477, -2.5596144), (0.6772771, -49.931477, -2.5276325), (0, -50, 0), (0.6772771, -49.931477, -2.5276325), (0.808635, -49.931477, -2.4887226), (0, -50, 0), (0.808635, -49.931477, -2.4887226), (0.93777645, -49.931477, -2.4429913), (0, -50, 0), (0.93777645, -49.931477, -2.4429913), (1.0643475, -49.931477, -2.3905637), (0, -50, 0), (1.0643475, -49.931477, -2.3905637), (1.1880014, -49.931477, -2.331584), (0, -50, 0), (1.1880014, -49.931477, -2.331584), (1.308399, -49.931477, -2.2662134), (0, -50, 0), (1.308399, -49.931477, -2.2662134), (1.4252102, -49.931477, -2.1946313), (0, -50, 0), (1.4252102, -49.931477, -2.1946313), (1.5381151, -49.931477, -2.117034), (0, -50, 0), (1.5381151, -49.931477, -2.117034), (1.6468042, -49.931477, -2.033634), (0, -50, 0), (1.6468042, -49.931477, -2.033634), (1.7509795, -49.931477, -1.9446597), (0, -50, 0), (1.7509795, -49.931477, -1.9446597), (1.8503555, -49.931477, -1.8503555), (0, -50, 0), (1.8503555, -49.931477, -1.8503555), (1.9446597, -49.931477, -1.7509795), (0, -50, 0), (1.9446597, -49.931477, -1.7509795), (2.033634, -49.931477, -1.6468042), (0, -50, 0), (2.033634, -49.931477, -1.6468042), (2.117034, -49.931477, -1.5381151), (0, -50, 0), (2.117034, -49.931477, -1.5381151), (2.1946313, -49.931477, -1.4252102), (0, -50, 0), (2.1946313, -49.931477, -1.4252102), (2.2662134, -49.931477, -1.308399), (0, -50, 0), (2.2662134, -49.931477, -1.308399), (2.331584, -49.931477, -1.1880014), (0, -50, 0), (2.331584, -49.931477, -1.1880014), (2.3905637, -49.931477, -1.0643475), (0, -50, 0), (2.3905637, -49.931477, -1.0643475), (2.4429913, -49.931477, -0.93777645), (0, -50, 0), (2.4429913, -49.931477, -0.93777645), (2.4887226, -49.931477, -0.808635), (0, -50, 0), (2.4887226, -49.931477, -0.808635), (2.5276325, -49.931477, -0.6772771), (0, -50, 0), (2.5276325, -49.931477, -0.6772771), (2.5596144, -49.931477, -0.54406285), (0, -50, 0), (2.5596144, -49.931477, -0.54406285), (2.5845807, -49.931477, -0.40935737), (0, -50, 0), (2.5845807, -49.931477, -0.40935737), (2.6024628, -49.931477, -0.27352986), (0, -50, 0), (2.6024628, -49.931477, -0.27352986), (2.6132116, -49.931477, -0.13695261), (0, -50, 0), (2.6132116, -49.931477, -0.13695261), (2.616798, -49.931477, 0), (2.616798, -49.931477, 0), (5.2264233, -49.726093, 0), (5.2192607, -49.726093, 0.27352986), (2.6132116, -49.931477, 0.13695261), (2.6132116, -49.931477, 0.13695261), (5.2192607, -49.726093, 0.27352986), (5.197792, -49.726093, 0.54631), (2.6024628, -49.931477, 0.27352986), (2.6024628, -49.931477, 0.27352986), (5.197792, -49.726093, 0.54631), (5.1620774, -49.726093, 0.81759274), (2.5845807, -49.931477, 0.40935737), (2.5845807, -49.931477, 0.40935737), (5.1620774, -49.726093, 0.81759274), (5.112213, -49.726093, 1.0866345), (2.5596144, -49.931477, 0.54406285), (2.5596144, -49.931477, 0.54406285), (5.112213, -49.726093, 1.0866345), (5.048337, -49.726093, 1.3526978), (2.5276325, -49.931477, 0.6772771), (2.5276325, -49.931477, 0.6772771), (5.048337, -49.726093, 1.3526978), (4.970624, -49.726093, 1.6150535), (2.4887226, -49.931477, 0.808635), (2.4887226, -49.931477, 0.808635), (4.970624, -49.726093, 1.6150535), (4.8792863, -49.726093, 1.8729825), (2.4429913, -49.931477, 0.93777645), (2.4429913, -49.931477, 0.93777645), (4.8792863, -49.726093, 1.8729825), (4.774575, -49.726093, 2.1257777), (2.3905637, -49.931477, 1.0643475), (2.3905637, -49.931477, 1.0643475), (4.774575, -49.726093, 2.1257777), (4.656777, -49.726093, 2.3727465), (2.331584, -49.931477, 1.1880014), (2.331584, -49.931477, 1.1880014), (4.656777, -49.726093, 2.3727465), (4.526215, -49.726093, 2.6132116), (2.2662134, -49.931477, 1.308399), (2.2662134, -49.931477, 1.308399), (4.526215, -49.726093, 2.6132116), (4.3832474, -49.726093, 2.846514), (2.1946313, -49.931477, 1.4252102), (2.1946313, -49.931477, 1.4252102), (4.3832474, -49.726093, 2.846514), (4.2282653, -49.726093, 3.0720146), (2.117034, -49.931477, 1.5381151), (2.117034, -49.931477, 1.5381151), (4.2282653, -49.726093, 3.0720146), (4.0616937, -49.726093, 3.2890947), (2.033634, -49.931477, 1.6468042), (2.033634, -49.931477, 1.6468042), (4.0616937, -49.726093, 3.2890947), (3.8839893, -49.726093, 3.4971597), (1.9446597, -49.931477, 1.7509795), (1.9446597, -49.931477, 1.7509795), (3.8839893, -49.726093, 3.4971597), (3.6956394, -49.726093, 3.6956394), (1.8503555, -49.931477, 1.8503555), (1.8503555, -49.931477, 1.8503555), (3.6956394, -49.726093, 3.6956394), (3.4971597, -49.726093, 3.8839893), (1.7509795, -49.931477, 1.9446597), (1.7509795, -49.931477, 1.9446597), (3.4971597, -49.726093, 3.8839893), (3.2890947, -49.726093, 4.0616937), (1.6468042, -49.931477, 2.033634), (1.6468042, -49.931477, 2.033634), (3.2890947, -49.726093, 4.0616937), (3.0720146, -49.726093, 4.2282653), (1.5381151, -49.931477, 2.117034), (1.5381151, -49.931477, 2.117034), (3.0720146, -49.726093, 4.2282653), (2.846514, -49.726093, 4.3832474), (1.4252102, -49.931477, 2.1946313), (1.4252102, -49.931477, 2.1946313), (2.846514, -49.726093, 4.3832474), (2.6132116, -49.726093, 4.526215), (1.308399, -49.931477, 2.2662134), (1.308399, -49.931477, 2.2662134), (2.6132116, -49.726093, 4.526215), (2.3727465, -49.726093, 4.656777), (1.1880014, -49.931477, 2.331584), (1.1880014, -49.931477, 2.331584), (2.3727465, -49.726093, 4.656777), (2.1257777, -49.726093, 4.774575), (1.0643475, -49.931477, 2.3905637), (1.0643475, -49.931477, 2.3905637), (2.1257777, -49.726093, 4.774575), (1.8729825, -49.726093, 4.8792863), (0.93777645, -49.931477, 2.4429913), (0.93777645, -49.931477, 2.4429913), (1.8729825, -49.726093, 4.8792863), (1.6150535, -49.726093, 4.970624), (0.808635, -49.931477, 2.4887226), (0.808635, -49.931477, 2.4887226), (1.6150535, -49.726093, 4.970624), (1.3526978, -49.726093, 5.048337), (0.6772771, -49.931477, 2.5276325), (0.6772771, -49.931477, 2.5276325), (1.3526978, -49.726093, 5.048337), (1.0866345, -49.726093, 5.112213), (0.54406285, -49.931477, 2.5596144), (0.54406285, -49.931477, 2.5596144), (1.0866345, -49.726093, 5.112213), (0.81759274, -49.726093, 5.1620774), (0.40935737, -49.931477, 2.5845807), (0.40935737, -49.931477, 2.5845807), (0.81759274, -49.726093, 5.1620774), (0.54631, -49.726093, 5.197792), (0.27352986, -49.931477, 2.6024628), (0.27352986, -49.931477, 2.6024628), (0.54631, -49.726093, 5.197792), (0.27352986, -49.726093, 5.2192607), (0.13695261, -49.931477, 2.6132116), (0.13695261, -49.931477, 2.6132116), (0.27352986, -49.726093, 5.2192607), (3.2002612e-16, -49.726093, 5.2264233), (1.6023265e-16, -49.931477, 2.616798), (1.6023265e-16, -49.931477, 2.616798), (3.2002612e-16, -49.726093, 5.2264233), (-0.27352986, -49.726093, 5.2192607), (-0.13695261, -49.931477, 2.6132116), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.726093, 5.2192607), (-0.54631, -49.726093, 5.197792), (-0.27352986, -49.931477, 2.6024628), (-0.27352986, -49.931477, 2.6024628), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.726093, 5.1620774), (-0.40935737, -49.931477, 2.5845807), (-0.40935737, -49.931477, 2.5845807), (-0.81759274, -49.726093, 5.1620774), (-1.0866345, -49.726093, 5.112213), (-0.54406285, -49.931477, 2.5596144), (-0.54406285, -49.931477, 2.5596144), (-1.0866345, -49.726093, 5.112213), (-1.3526978, -49.726093, 5.048337), (-0.6772771, -49.931477, 2.5276325), (-0.6772771, -49.931477, 2.5276325), (-1.3526978, -49.726093, 5.048337), (-1.6150535, -49.726093, 4.970624), (-0.808635, -49.931477, 2.4887226), (-0.808635, -49.931477, 2.4887226), (-1.6150535, -49.726093, 4.970624), (-1.8729825, -49.726093, 4.8792863), (-0.93777645, -49.931477, 2.4429913), (-0.93777645, -49.931477, 2.4429913), (-1.8729825, -49.726093, 4.8792863), (-2.1257777, -49.726093, 4.774575), (-1.0643475, -49.931477, 2.3905637), (-1.0643475, -49.931477, 2.3905637), (-2.1257777, -49.726093, 4.774575), (-2.3727465, -49.726093, 4.656777), (-1.1880014, -49.931477, 2.331584), (-1.1880014, -49.931477, 2.331584), (-2.3727465, -49.726093, 4.656777), (-2.6132116, -49.726093, 4.526215), (-1.308399, -49.931477, 2.2662134), (-1.308399, -49.931477, 2.2662134), (-2.6132116, -49.726093, 4.526215), (-2.846514, -49.726093, 4.3832474), (-1.4252102, -49.931477, 2.1946313), (-1.4252102, -49.931477, 2.1946313), (-2.846514, -49.726093, 4.3832474), (-3.0720146, -49.726093, 4.2282653), (-1.5381151, -49.931477, 2.117034), (-1.5381151, -49.931477, 2.117034), (-3.0720146, -49.726093, 4.2282653), (-3.2890947, -49.726093, 4.0616937), (-1.6468042, -49.931477, 2.033634), (-1.6468042, -49.931477, 2.033634), (-3.2890947, -49.726093, 4.0616937), (-3.4971597, -49.726093, 3.8839893), (-1.7509795, -49.931477, 1.9446597), (-1.7509795, -49.931477, 1.9446597), (-3.4971597, -49.726093, 3.8839893), (-3.6956394, -49.726093, 3.6956394), (-1.8503555, -49.931477, 1.8503555), (-1.8503555, -49.931477, 1.8503555), (-3.6956394, -49.726093, 3.6956394), (-3.8839893, -49.726093, 3.4971597), (-1.9446597, -49.931477, 1.7509795), (-1.9446597, -49.931477, 1.7509795), (-3.8839893, -49.726093, 3.4971597), (-4.0616937, -49.726093, 3.2890947), (-2.033634, -49.931477, 1.6468042), (-2.033634, -49.931477, 1.6468042), (-4.0616937, -49.726093, 3.2890947), (-4.2282653, -49.726093, 3.0720146), (-2.117034, -49.931477, 1.5381151), (-2.117034, -49.931477, 1.5381151), (-4.2282653, -49.726093, 3.0720146), (-4.3832474, -49.726093, 2.846514), (-2.1946313, -49.931477, 1.4252102), (-2.1946313, -49.931477, 1.4252102), (-4.3832474, -49.726093, 2.846514), (-4.526215, -49.726093, 2.6132116), (-2.2662134, -49.931477, 1.308399), (-2.2662134, -49.931477, 1.308399), (-4.526215, -49.726093, 2.6132116), (-4.656777, -49.726093, 2.3727465), (-2.331584, -49.931477, 1.1880014), (-2.331584, -49.931477, 1.1880014), (-4.656777, -49.726093, 2.3727465), (-4.774575, -49.726093, 2.1257777), (-2.3905637, -49.931477, 1.0643475), (-2.3905637, -49.931477, 1.0643475), (-4.774575, -49.726093, 2.1257777), (-4.8792863, -49.726093, 1.8729825), (-2.4429913, -49.931477, 0.93777645), (-2.4429913, -49.931477, 0.93777645), (-4.8792863, -49.726093, 1.8729825), (-4.970624, -49.726093, 1.6150535), (-2.4887226, -49.931477, 0.808635), (-2.4887226, -49.931477, 0.808635), (-4.970624, -49.726093, 1.6150535), (-5.048337, -49.726093, 1.3526978), (-2.5276325, -49.931477, 0.6772771), (-2.5276325, -49.931477, 0.6772771), (-5.048337, -49.726093, 1.3526978), (-5.112213, -49.726093, 1.0866345), (-2.5596144, -49.931477, 0.54406285), (-2.5596144, -49.931477, 0.54406285), (-5.112213, -49.726093, 1.0866345), (-5.1620774, -49.726093, 0.81759274), (-2.5845807, -49.931477, 0.40935737), (-2.5845807, -49.931477, 0.40935737), (-5.1620774, -49.726093, 0.81759274), (-5.197792, -49.726093, 0.54631), (-2.6024628, -49.931477, 0.27352986), (-2.6024628, -49.931477, 0.27352986), (-5.197792, -49.726093, 0.54631), (-5.2192607, -49.726093, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (-2.6132116, -49.931477, 0.13695261), (-5.2192607, -49.726093, 0.27352986), (-5.2264233, -49.726093, 6.4005224e-16), (-2.616798, -49.931477, 3.204653e-16), (-2.616798, -49.931477, 3.204653e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2192607, -49.726093, -0.27352986), (-2.6132116, -49.931477, -0.13695261), (-2.6132116, -49.931477, -0.13695261), (-5.2192607, -49.726093, -0.27352986), (-5.197792, -49.726093, -0.54631), (-2.6024628, -49.931477, -0.27352986), (-2.6024628, -49.931477, -0.27352986), (-5.197792, -49.726093, -0.54631), (-5.1620774, -49.726093, -0.81759274), (-2.5845807, -49.931477, -0.40935737), (-2.5845807, -49.931477, -0.40935737), (-5.1620774, -49.726093, -0.81759274), (-5.112213, -49.726093, -1.0866345), (-2.5596144, -49.931477, -0.54406285), (-2.5596144, -49.931477, -0.54406285), (-5.112213, -49.726093, -1.0866345), (-5.048337, -49.726093, -1.3526978), (-2.5276325, -49.931477, -0.6772771), (-2.5276325, -49.931477, -0.6772771), (-5.048337, -49.726093, -1.3526978), (-4.970624, -49.726093, -1.6150535), (-2.4887226, -49.931477, -0.808635), (-2.4887226, -49.931477, -0.808635), (-4.970624, -49.726093, -1.6150535), (-4.8792863, -49.726093, -1.8729825), (-2.4429913, -49.931477, -0.93777645), (-2.4429913, -49.931477, -0.93777645), (-4.8792863, -49.726093, -1.8729825), (-4.774575, -49.726093, -2.1257777), (-2.3905637, -49.931477, -1.0643475), (-2.3905637, -49.931477, -1.0643475), (-4.774575, -49.726093, -2.1257777), (-4.656777, -49.726093, -2.3727465), (-2.331584, -49.931477, -1.1880014), (-2.331584, -49.931477, -1.1880014), (-4.656777, -49.726093, -2.3727465), (-4.526215, -49.726093, -2.6132116), (-2.2662134, -49.931477, -1.308399), (-2.2662134, -49.931477, -1.308399), (-4.526215, -49.726093, -2.6132116), (-4.3832474, -49.726093, -2.846514), (-2.1946313, -49.931477, -1.4252102), (-2.1946313, -49.931477, -1.4252102), (-4.3832474, -49.726093, -2.846514), (-4.2282653, -49.726093, -3.0720146), (-2.117034, -49.931477, -1.5381151), (-2.117034, -49.931477, -1.5381151), (-4.2282653, -49.726093, -3.0720146), (-4.0616937, -49.726093, -3.2890947), (-2.033634, -49.931477, -1.6468042), (-2.033634, -49.931477, -1.6468042), (-4.0616937, -49.726093, -3.2890947), (-3.8839893, -49.726093, -3.4971597), (-1.9446597, -49.931477, -1.7509795), (-1.9446597, -49.931477, -1.7509795), (-3.8839893, -49.726093, -3.4971597), (-3.6956394, -49.726093, -3.6956394), (-1.8503555, -49.931477, -1.8503555), (-1.8503555, -49.931477, -1.8503555), (-3.6956394, -49.726093, -3.6956394), (-3.4971597, -49.726093, -3.8839893), (-1.7509795, -49.931477, -1.9446597), (-1.7509795, -49.931477, -1.9446597), (-3.4971597, -49.726093, -3.8839893), (-3.2890947, -49.726093, -4.0616937), (-1.6468042, -49.931477, -2.033634), (-1.6468042, -49.931477, -2.033634), (-3.2890947, -49.726093, -4.0616937), (-3.0720146, -49.726093, -4.2282653), (-1.5381151, -49.931477, -2.117034), (-1.5381151, -49.931477, -2.117034), (-3.0720146, -49.726093, -4.2282653), (-2.846514, -49.726093, -4.3832474), (-1.4252102, -49.931477, -2.1946313), (-1.4252102, -49.931477, -2.1946313), (-2.846514, -49.726093, -4.3832474), (-2.6132116, -49.726093, -4.526215), (-1.308399, -49.931477, -2.2662134), (-1.308399, -49.931477, -2.2662134), (-2.6132116, -49.726093, -4.526215), (-2.3727465, -49.726093, -4.656777), (-1.1880014, -49.931477, -2.331584), (-1.1880014, -49.931477, -2.331584), (-2.3727465, -49.726093, -4.656777), (-2.1257777, -49.726093, -4.774575), (-1.0643475, -49.931477, -2.3905637), (-1.0643475, -49.931477, -2.3905637), (-2.1257777, -49.726093, -4.774575), (-1.8729825, -49.726093, -4.8792863), (-0.93777645, -49.931477, -2.4429913), (-0.93777645, -49.931477, -2.4429913), (-1.8729825, -49.726093, -4.8792863), (-1.6150535, -49.726093, -4.970624), (-0.808635, -49.931477, -2.4887226), (-0.808635, -49.931477, -2.4887226), (-1.6150535, -49.726093, -4.970624), (-1.3526978, -49.726093, -5.048337), (-0.6772771, -49.931477, -2.5276325), (-0.6772771, -49.931477, -2.5276325), (-1.3526978, -49.726093, -5.048337), (-1.0866345, -49.726093, -5.112213), (-0.54406285, -49.931477, -2.5596144), (-0.54406285, -49.931477, -2.5596144), (-1.0866345, -49.726093, -5.112213), (-0.81759274, -49.726093, -5.1620774), (-0.40935737, -49.931477, -2.5845807), (-0.40935737, -49.931477, -2.5845807), (-0.81759274, -49.726093, -5.1620774), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.931477, -2.6024628), (-0.27352986, -49.931477, -2.6024628), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.726093, -5.2192607), (-0.13695261, -49.931477, -2.6132116), (-0.13695261, -49.931477, -2.6132116), (-0.27352986, -49.726093, -5.2192607), (-9.600784e-16, -49.726093, -5.2264233), (-4.80698e-16, -49.931477, -2.616798), (-4.80698e-16, -49.931477, -2.616798), (-9.600784e-16, -49.726093, -5.2264233), (0.27352986, -49.726093, -5.2192607), (0.13695261, -49.931477, -2.6132116), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.726093, -5.2192607), (0.54631, -49.726093, -5.197792), (0.27352986, -49.931477, -2.6024628), (0.27352986, -49.931477, -2.6024628), (0.54631, -49.726093, -5.197792), (0.81759274, -49.726093, -5.1620774), (0.40935737, -49.931477, -2.5845807), (0.40935737, -49.931477, -2.5845807), (0.81759274, -49.726093, -5.1620774), (1.0866345, -49.726093, -5.112213), (0.54406285, -49.931477, -2.5596144), (0.54406285, -49.931477, -2.5596144), (1.0866345, -49.726093, -5.112213), (1.3526978, -49.726093, -5.048337), (0.6772771, -49.931477, -2.5276325), (0.6772771, -49.931477, -2.5276325), (1.3526978, -49.726093, -5.048337), (1.6150535, -49.726093, -4.970624), (0.808635, -49.931477, -2.4887226), (0.808635, -49.931477, -2.4887226), (1.6150535, -49.726093, -4.970624), (1.8729825, -49.726093, -4.8792863), (0.93777645, -49.931477, -2.4429913), (0.93777645, -49.931477, -2.4429913), (1.8729825, -49.726093, -4.8792863), (2.1257777, -49.726093, -4.774575), (1.0643475, -49.931477, -2.3905637), (1.0643475, -49.931477, -2.3905637), (2.1257777, -49.726093, -4.774575), (2.3727465, -49.726093, -4.656777), (1.1880014, -49.931477, -2.331584), (1.1880014, -49.931477, -2.331584), (2.3727465, -49.726093, -4.656777), (2.6132116, -49.726093, -4.526215), (1.308399, -49.931477, -2.2662134), (1.308399, -49.931477, -2.2662134), (2.6132116, -49.726093, -4.526215), (2.846514, -49.726093, -4.3832474), (1.4252102, -49.931477, -2.1946313), (1.4252102, -49.931477, -2.1946313), (2.846514, -49.726093, -4.3832474), (3.0720146, -49.726093, -4.2282653), (1.5381151, -49.931477, -2.117034), (1.5381151, -49.931477, -2.117034), (3.0720146, -49.726093, -4.2282653), (3.2890947, -49.726093, -4.0616937), (1.6468042, -49.931477, -2.033634), (1.6468042, -49.931477, -2.033634), (3.2890947, -49.726093, -4.0616937), (3.4971597, -49.726093, -3.8839893), (1.7509795, -49.931477, -1.9446597), (1.7509795, -49.931477, -1.9446597), (3.4971597, -49.726093, -3.8839893), (3.6956394, -49.726093, -3.6956394), (1.8503555, -49.931477, -1.8503555), (1.8503555, -49.931477, -1.8503555), (3.6956394, -49.726093, -3.6956394), (3.8839893, -49.726093, -3.4971597), (1.9446597, -49.931477, -1.7509795), (1.9446597, -49.931477, -1.7509795), (3.8839893, -49.726093, -3.4971597), (4.0616937, -49.726093, -3.2890947), (2.033634, -49.931477, -1.6468042), (2.033634, -49.931477, -1.6468042), (4.0616937, -49.726093, -3.2890947), (4.2282653, -49.726093, -3.0720146), (2.117034, -49.931477, -1.5381151), (2.117034, -49.931477, -1.5381151), (4.2282653, -49.726093, -3.0720146), (4.3832474, -49.726093, -2.846514), (2.1946313, -49.931477, -1.4252102), (2.1946313, -49.931477, -1.4252102), (4.3832474, -49.726093, -2.846514), (4.526215, -49.726093, -2.6132116), (2.2662134, -49.931477, -1.308399), (2.2662134, -49.931477, -1.308399), (4.526215, -49.726093, -2.6132116), (4.656777, -49.726093, -2.3727465), (2.331584, -49.931477, -1.1880014), (2.331584, -49.931477, -1.1880014), (4.656777, -49.726093, -2.3727465), (4.774575, -49.726093, -2.1257777), (2.3905637, -49.931477, -1.0643475), (2.3905637, -49.931477, -1.0643475), (4.774575, -49.726093, -2.1257777), (4.8792863, -49.726093, -1.8729825), (2.4429913, -49.931477, -0.93777645), (2.4429913, -49.931477, -0.93777645), (4.8792863, -49.726093, -1.8729825), (4.970624, -49.726093, -1.6150535), (2.4887226, -49.931477, -0.808635), (2.4887226, -49.931477, -0.808635), (4.970624, -49.726093, -1.6150535), (5.048337, -49.726093, -1.3526978), (2.5276325, -49.931477, -0.6772771), (2.5276325, -49.931477, -0.6772771), (5.048337, -49.726093, -1.3526978), (5.112213, -49.726093, -1.0866345), (2.5596144, -49.931477, -0.54406285), (2.5596144, -49.931477, -0.54406285), (5.112213, -49.726093, -1.0866345), (5.1620774, -49.726093, -0.81759274), (2.5845807, -49.931477, -0.40935737), (2.5845807, -49.931477, -0.40935737), (5.1620774, -49.726093, -0.81759274), (5.197792, -49.726093, -0.54631), (2.6024628, -49.931477, -0.27352986), (2.6024628, -49.931477, -0.27352986), (5.197792, -49.726093, -0.54631), (5.2192607, -49.726093, -0.27352986), (2.6132116, -49.931477, -0.13695261), (2.6132116, -49.931477, -0.13695261), (5.2192607, -49.726093, -0.27352986), (5.2264233, -49.726093, 0), (2.616798, -49.931477, 0), (5.2264233, -49.726093, 0), (7.8217235, -49.38442, 0), (7.8110037, -49.38442, 0.40935737), (5.2192607, -49.726093, 0.27352986), (5.2192607, -49.726093, 0.27352986), (7.8110037, -49.38442, 0.40935737), (7.778875, -49.38442, 0.81759274), (5.197792, -49.726093, 0.54631), (5.197792, -49.726093, 0.54631), (7.778875, -49.38442, 0.81759274), (7.725425, -49.38442, 1.223587), (5.1620774, -49.726093, 0.81759274), (5.1620774, -49.726093, 0.81759274), (7.725425, -49.38442, 1.223587), (7.6507998, -49.38442, 1.6262277), (5.112213, -49.726093, 1.0866345), (5.112213, -49.726093, 1.0866345), (7.6507998, -49.38442, 1.6262277), (7.5552044, -49.38442, 2.024411), (5.048337, -49.726093, 1.3526978), (5.048337, -49.726093, 1.3526978), (7.5552044, -49.38442, 2.024411), (7.438901, -49.38442, 2.4170454), (4.970624, -49.726093, 1.6150535), (4.970624, -49.726093, 1.6150535), (7.438901, -49.38442, 2.4170454), (7.302208, -49.38442, 2.8030548), (4.8792863, -49.726093, 1.8729825), (4.8792863, -49.726093, 1.8729825), (7.302208, -49.38442, 2.8030548), (7.1454997, -49.38442, 3.1813815), (4.774575, -49.726093, 2.1257777), (4.774575, -49.726093, 2.1257777), (7.1454997, -49.38442, 3.1813815), (6.9692063, -49.38442, 3.550988), (4.656777, -49.726093, 2.3727465), (4.656777, -49.726093, 2.3727465), (6.9692063, -49.38442, 3.550988), (6.773811, -49.38442, 3.9108617), (4.526215, -49.726093, 2.6132116), (4.526215, -49.726093, 2.6132116), (6.773811, -49.38442, 3.9108617), (6.5598493, -49.38442, 4.260016), (4.3832474, -49.726093, 2.846514), (4.3832474, -49.726093, 2.846514), (6.5598493, -49.38442, 4.260016), (6.327907, -49.38442, 4.5974936), (4.2282653, -49.726093, 3.0720146), (4.2282653, -49.726093, 3.0720146), (6.327907, -49.38442, 4.5974936), (6.0786204, -49.38442, 4.92237), (4.0616937, -49.726093, 3.2890947), (4.0616937, -49.726093, 3.2890947), (6.0786204, -49.38442, 4.92237), (5.812673, -49.38442, 5.2337546), (3.8839893, -49.726093, 3.4971597), (3.8839893, -49.726093, 3.4971597), (5.812673, -49.38442, 5.2337546), (5.5307937, -49.38442, 5.5307937), (3.6956394, -49.726093, 3.6956394), (3.6956394, -49.726093, 3.6956394), (5.5307937, -49.38442, 5.5307937), (5.2337546, -49.38442, 5.812673), (3.4971597, -49.726093, 3.8839893), (3.4971597, -49.726093, 3.8839893), (5.2337546, -49.38442, 5.812673), (4.92237, -49.38442, 6.0786204), (3.2890947, -49.726093, 4.0616937), (3.2890947, -49.726093, 4.0616937), (4.92237, -49.38442, 6.0786204), (4.5974936, -49.38442, 6.327907), (3.0720146, -49.726093, 4.2282653), (3.0720146, -49.726093, 4.2282653), (4.5974936, -49.38442, 6.327907), (4.260016, -49.38442, 6.5598493), (2.846514, -49.726093, 4.3832474), (2.846514, -49.726093, 4.3832474), (4.260016, -49.38442, 6.5598493), (3.9108617, -49.38442, 6.773811), (2.6132116, -49.726093, 4.526215), (2.6132116, -49.726093, 4.526215), (3.9108617, -49.38442, 6.773811), (3.550988, -49.38442, 6.9692063), (2.3727465, -49.726093, 4.656777), (2.3727465, -49.726093, 4.656777), (3.550988, -49.38442, 6.9692063), (3.1813815, -49.38442, 7.1454997), (2.1257777, -49.726093, 4.774575), (2.1257777, -49.726093, 4.774575), (3.1813815, -49.38442, 7.1454997), (2.8030548, -49.38442, 7.302208), (1.8729825, -49.726093, 4.8792863), (1.8729825, -49.726093, 4.8792863), (2.8030548, -49.38442, 7.302208), (2.4170454, -49.38442, 7.438901), (1.6150535, -49.726093, 4.970624), (1.6150535, -49.726093, 4.970624), (2.4170454, -49.38442, 7.438901), (2.024411, -49.38442, 7.5552044), (1.3526978, -49.726093, 5.048337), (1.3526978, -49.726093, 5.048337), (2.024411, -49.38442, 7.5552044), (1.6262277, -49.38442, 7.6507998), (1.0866345, -49.726093, 5.112213), (1.0866345, -49.726093, 5.112213), (1.6262277, -49.38442, 7.6507998), (1.223587, -49.38442, 7.725425), (0.81759274, -49.726093, 5.1620774), (0.81759274, -49.726093, 5.1620774), (1.223587, -49.38442, 7.725425), (0.81759274, -49.38442, 7.778875), (0.54631, -49.726093, 5.197792), (0.54631, -49.726093, 5.197792), (0.81759274, -49.38442, 7.778875), (0.40935737, -49.38442, 7.8110037), (0.27352986, -49.726093, 5.2192607), (0.27352986, -49.726093, 5.2192607), (0.40935737, -49.38442, 7.8110037), (4.789424e-16, -49.38442, 7.8217235), (3.2002612e-16, -49.726093, 5.2264233), (3.2002612e-16, -49.726093, 5.2264233), (4.789424e-16, -49.38442, 7.8217235), (-0.40935737, -49.38442, 7.8110037), (-0.27352986, -49.726093, 5.2192607), (-0.27352986, -49.726093, 5.2192607), (-0.40935737, -49.38442, 7.8110037), (-0.81759274, -49.38442, 7.778875), (-0.54631, -49.726093, 5.197792), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.38442, 7.778875), (-1.223587, -49.38442, 7.725425), (-0.81759274, -49.726093, 5.1620774), (-0.81759274, -49.726093, 5.1620774), (-1.223587, -49.38442, 7.725425), (-1.6262277, -49.38442, 7.6507998), (-1.0866345, -49.726093, 5.112213), (-1.0866345, -49.726093, 5.112213), (-1.6262277, -49.38442, 7.6507998), (-2.024411, -49.38442, 7.5552044), (-1.3526978, -49.726093, 5.048337), (-1.3526978, -49.726093, 5.048337), (-2.024411, -49.38442, 7.5552044), (-2.4170454, -49.38442, 7.438901), (-1.6150535, -49.726093, 4.970624), (-1.6150535, -49.726093, 4.970624), (-2.4170454, -49.38442, 7.438901), (-2.8030548, -49.38442, 7.302208), (-1.8729825, -49.726093, 4.8792863), (-1.8729825, -49.726093, 4.8792863), (-2.8030548, -49.38442, 7.302208), (-3.1813815, -49.38442, 7.1454997), (-2.1257777, -49.726093, 4.774575), (-2.1257777, -49.726093, 4.774575), (-3.1813815, -49.38442, 7.1454997), (-3.550988, -49.38442, 6.9692063), (-2.3727465, -49.726093, 4.656777), (-2.3727465, -49.726093, 4.656777), (-3.550988, -49.38442, 6.9692063), (-3.9108617, -49.38442, 6.773811), (-2.6132116, -49.726093, 4.526215), (-2.6132116, -49.726093, 4.526215), (-3.9108617, -49.38442, 6.773811), (-4.260016, -49.38442, 6.5598493), (-2.846514, -49.726093, 4.3832474), (-2.846514, -49.726093, 4.3832474), (-4.260016, -49.38442, 6.5598493), (-4.5974936, -49.38442, 6.327907), (-3.0720146, -49.726093, 4.2282653), (-3.0720146, -49.726093, 4.2282653), (-4.5974936, -49.38442, 6.327907), (-4.92237, -49.38442, 6.0786204), (-3.2890947, -49.726093, 4.0616937), (-3.2890947, -49.726093, 4.0616937), (-4.92237, -49.38442, 6.0786204), (-5.2337546, -49.38442, 5.812673), (-3.4971597, -49.726093, 3.8839893), (-3.4971597, -49.726093, 3.8839893), (-5.2337546, -49.38442, 5.812673), (-5.5307937, -49.38442, 5.5307937), (-3.6956394, -49.726093, 3.6956394), (-3.6956394, -49.726093, 3.6956394), (-5.5307937, -49.38442, 5.5307937), (-5.812673, -49.38442, 5.2337546), (-3.8839893, -49.726093, 3.4971597), (-3.8839893, -49.726093, 3.4971597), (-5.812673, -49.38442, 5.2337546), (-6.0786204, -49.38442, 4.92237), (-4.0616937, -49.726093, 3.2890947), (-4.0616937, -49.726093, 3.2890947), (-6.0786204, -49.38442, 4.92237), (-6.327907, -49.38442, 4.5974936), (-4.2282653, -49.726093, 3.0720146), (-4.2282653, -49.726093, 3.0720146), (-6.327907, -49.38442, 4.5974936), (-6.5598493, -49.38442, 4.260016), (-4.3832474, -49.726093, 2.846514), (-4.3832474, -49.726093, 2.846514), (-6.5598493, -49.38442, 4.260016), (-6.773811, -49.38442, 3.9108617), (-4.526215, -49.726093, 2.6132116), (-4.526215, -49.726093, 2.6132116), (-6.773811, -49.38442, 3.9108617), (-6.9692063, -49.38442, 3.550988), (-4.656777, -49.726093, 2.3727465), (-4.656777, -49.726093, 2.3727465), (-6.9692063, -49.38442, 3.550988), (-7.1454997, -49.38442, 3.1813815), (-4.774575, -49.726093, 2.1257777), (-4.774575, -49.726093, 2.1257777), (-7.1454997, -49.38442, 3.1813815), (-7.302208, -49.38442, 2.8030548), (-4.8792863, -49.726093, 1.8729825), (-4.8792863, -49.726093, 1.8729825), (-7.302208, -49.38442, 2.8030548), (-7.438901, -49.38442, 2.4170454), (-4.970624, -49.726093, 1.6150535), (-4.970624, -49.726093, 1.6150535), (-7.438901, -49.38442, 2.4170454), (-7.5552044, -49.38442, 2.024411), (-5.048337, -49.726093, 1.3526978), (-5.048337, -49.726093, 1.3526978), (-7.5552044, -49.38442, 2.024411), (-7.6507998, -49.38442, 1.6262277), (-5.112213, -49.726093, 1.0866345), (-5.112213, -49.726093, 1.0866345), (-7.6507998, -49.38442, 1.6262277), (-7.725425, -49.38442, 1.223587), (-5.1620774, -49.726093, 0.81759274), (-5.1620774, -49.726093, 0.81759274), (-7.725425, -49.38442, 1.223587), (-7.778875, -49.38442, 0.81759274), (-5.197792, -49.726093, 0.54631), (-5.197792, -49.726093, 0.54631), (-7.778875, -49.38442, 0.81759274), (-7.8110037, -49.38442, 0.40935737), (-5.2192607, -49.726093, 0.27352986), (-5.2192607, -49.726093, 0.27352986), (-7.8110037, -49.38442, 0.40935737), (-7.8217235, -49.38442, 9.578848e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-7.8217235, -49.38442, 9.578848e-16), (-7.8110037, -49.38442, -0.40935737), (-5.2192607, -49.726093, -0.27352986), (-5.2192607, -49.726093, -0.27352986), (-7.8110037, -49.38442, -0.40935737), (-7.778875, -49.38442, -0.81759274), (-5.197792, -49.726093, -0.54631), (-5.197792, -49.726093, -0.54631), (-7.778875, -49.38442, -0.81759274), (-7.725425, -49.38442, -1.223587), (-5.1620774, -49.726093, -0.81759274), (-5.1620774, -49.726093, -0.81759274), (-7.725425, -49.38442, -1.223587), (-7.6507998, -49.38442, -1.6262277), (-5.112213, -49.726093, -1.0866345), (-5.112213, -49.726093, -1.0866345), (-7.6507998, -49.38442, -1.6262277), (-7.5552044, -49.38442, -2.024411), (-5.048337, -49.726093, -1.3526978), (-5.048337, -49.726093, -1.3526978), (-7.5552044, -49.38442, -2.024411), (-7.438901, -49.38442, -2.4170454), (-4.970624, -49.726093, -1.6150535), (-4.970624, -49.726093, -1.6150535), (-7.438901, -49.38442, -2.4170454), (-7.302208, -49.38442, -2.8030548), (-4.8792863, -49.726093, -1.8729825), (-4.8792863, -49.726093, -1.8729825), (-7.302208, -49.38442, -2.8030548), (-7.1454997, -49.38442, -3.1813815), (-4.774575, -49.726093, -2.1257777), (-4.774575, -49.726093, -2.1257777), (-7.1454997, -49.38442, -3.1813815), (-6.9692063, -49.38442, -3.550988), (-4.656777, -49.726093, -2.3727465), (-4.656777, -49.726093, -2.3727465), (-6.9692063, -49.38442, -3.550988), (-6.773811, -49.38442, -3.9108617), (-4.526215, -49.726093, -2.6132116), (-4.526215, -49.726093, -2.6132116), (-6.773811, -49.38442, -3.9108617), (-6.5598493, -49.38442, -4.260016), (-4.3832474, -49.726093, -2.846514), (-4.3832474, -49.726093, -2.846514), (-6.5598493, -49.38442, -4.260016), (-6.327907, -49.38442, -4.5974936), (-4.2282653, -49.726093, -3.0720146), (-4.2282653, -49.726093, -3.0720146), (-6.327907, -49.38442, -4.5974936), (-6.0786204, -49.38442, -4.92237), (-4.0616937, -49.726093, -3.2890947), (-4.0616937, -49.726093, -3.2890947), (-6.0786204, -49.38442, -4.92237), (-5.812673, -49.38442, -5.2337546), (-3.8839893, -49.726093, -3.4971597), (-3.8839893, -49.726093, -3.4971597), (-5.812673, -49.38442, -5.2337546), (-5.5307937, -49.38442, -5.5307937), (-3.6956394, -49.726093, -3.6956394), (-3.6956394, -49.726093, -3.6956394), (-5.5307937, -49.38442, -5.5307937), (-5.2337546, -49.38442, -5.812673), (-3.4971597, -49.726093, -3.8839893), (-3.4971597, -49.726093, -3.8839893), (-5.2337546, -49.38442, -5.812673), (-4.92237, -49.38442, -6.0786204), (-3.2890947, -49.726093, -4.0616937), (-3.2890947, -49.726093, -4.0616937), (-4.92237, -49.38442, -6.0786204), (-4.5974936, -49.38442, -6.327907), (-3.0720146, -49.726093, -4.2282653), (-3.0720146, -49.726093, -4.2282653), (-4.5974936, -49.38442, -6.327907), (-4.260016, -49.38442, -6.5598493), (-2.846514, -49.726093, -4.3832474), (-2.846514, -49.726093, -4.3832474), (-4.260016, -49.38442, -6.5598493), (-3.9108617, -49.38442, -6.773811), (-2.6132116, -49.726093, -4.526215), (-2.6132116, -49.726093, -4.526215), (-3.9108617, -49.38442, -6.773811), (-3.550988, -49.38442, -6.9692063), (-2.3727465, -49.726093, -4.656777), (-2.3727465, -49.726093, -4.656777), (-3.550988, -49.38442, -6.9692063), (-3.1813815, -49.38442, -7.1454997), (-2.1257777, -49.726093, -4.774575), (-2.1257777, -49.726093, -4.774575), (-3.1813815, -49.38442, -7.1454997), (-2.8030548, -49.38442, -7.302208), (-1.8729825, -49.726093, -4.8792863), (-1.8729825, -49.726093, -4.8792863), (-2.8030548, -49.38442, -7.302208), (-2.4170454, -49.38442, -7.438901), (-1.6150535, -49.726093, -4.970624), (-1.6150535, -49.726093, -4.970624), (-2.4170454, -49.38442, -7.438901), (-2.024411, -49.38442, -7.5552044), (-1.3526978, -49.726093, -5.048337), (-1.3526978, -49.726093, -5.048337), (-2.024411, -49.38442, -7.5552044), (-1.6262277, -49.38442, -7.6507998), (-1.0866345, -49.726093, -5.112213), (-1.0866345, -49.726093, -5.112213), (-1.6262277, -49.38442, -7.6507998), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.726093, -5.1620774), (-0.81759274, -49.726093, -5.1620774), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.38442, -7.778875), (-0.54631, -49.726093, -5.197792), (-0.54631, -49.726093, -5.197792), (-0.81759274, -49.38442, -7.778875), (-0.40935737, -49.38442, -7.8110037), (-0.27352986, -49.726093, -5.2192607), (-0.27352986, -49.726093, -5.2192607), (-0.40935737, -49.38442, -7.8110037), (-1.4368273e-15, -49.38442, -7.8217235), (-9.600784e-16, -49.726093, -5.2264233), (-9.600784e-16, -49.726093, -5.2264233), (-1.4368273e-15, -49.38442, -7.8217235), (0.40935737, -49.38442, -7.8110037), (0.27352986, -49.726093, -5.2192607), (0.27352986, -49.726093, -5.2192607), (0.40935737, -49.38442, -7.8110037), (0.81759274, -49.38442, -7.778875), (0.54631, -49.726093, -5.197792), (0.54631, -49.726093, -5.197792), (0.81759274, -49.38442, -7.778875), (1.223587, -49.38442, -7.725425), (0.81759274, -49.726093, -5.1620774), (0.81759274, -49.726093, -5.1620774), (1.223587, -49.38442, -7.725425), (1.6262277, -49.38442, -7.6507998), (1.0866345, -49.726093, -5.112213), (1.0866345, -49.726093, -5.112213), (1.6262277, -49.38442, -7.6507998), (2.024411, -49.38442, -7.5552044), (1.3526978, -49.726093, -5.048337), (1.3526978, -49.726093, -5.048337), (2.024411, -49.38442, -7.5552044), (2.4170454, -49.38442, -7.438901), (1.6150535, -49.726093, -4.970624), (1.6150535, -49.726093, -4.970624), (2.4170454, -49.38442, -7.438901), (2.8030548, -49.38442, -7.302208), (1.8729825, -49.726093, -4.8792863), (1.8729825, -49.726093, -4.8792863), (2.8030548, -49.38442, -7.302208), (3.1813815, -49.38442, -7.1454997), (2.1257777, -49.726093, -4.774575), (2.1257777, -49.726093, -4.774575), (3.1813815, -49.38442, -7.1454997), (3.550988, -49.38442, -6.9692063), (2.3727465, -49.726093, -4.656777), (2.3727465, -49.726093, -4.656777), (3.550988, -49.38442, -6.9692063), (3.9108617, -49.38442, -6.773811), (2.6132116, -49.726093, -4.526215), (2.6132116, -49.726093, -4.526215), (3.9108617, -49.38442, -6.773811), (4.260016, -49.38442, -6.5598493), (2.846514, -49.726093, -4.3832474), (2.846514, -49.726093, -4.3832474), (4.260016, -49.38442, -6.5598493), (4.5974936, -49.38442, -6.327907), (3.0720146, -49.726093, -4.2282653), (3.0720146, -49.726093, -4.2282653), (4.5974936, -49.38442, -6.327907), (4.92237, -49.38442, -6.0786204), (3.2890947, -49.726093, -4.0616937), (3.2890947, -49.726093, -4.0616937), (4.92237, -49.38442, -6.0786204), (5.2337546, -49.38442, -5.812673), (3.4971597, -49.726093, -3.8839893), (3.4971597, -49.726093, -3.8839893), (5.2337546, -49.38442, -5.812673), (5.5307937, -49.38442, -5.5307937), (3.6956394, -49.726093, -3.6956394), (3.6956394, -49.726093, -3.6956394), (5.5307937, -49.38442, -5.5307937), (5.812673, -49.38442, -5.2337546), (3.8839893, -49.726093, -3.4971597), (3.8839893, -49.726093, -3.4971597), (5.812673, -49.38442, -5.2337546), (6.0786204, -49.38442, -4.92237), (4.0616937, -49.726093, -3.2890947), (4.0616937, -49.726093, -3.2890947), (6.0786204, -49.38442, -4.92237), (6.327907, -49.38442, -4.5974936), (4.2282653, -49.726093, -3.0720146), (4.2282653, -49.726093, -3.0720146), (6.327907, -49.38442, -4.5974936), (6.5598493, -49.38442, -4.260016), (4.3832474, -49.726093, -2.846514), (4.3832474, -49.726093, -2.846514), (6.5598493, -49.38442, -4.260016), (6.773811, -49.38442, -3.9108617), (4.526215, -49.726093, -2.6132116), (4.526215, -49.726093, -2.6132116), (6.773811, -49.38442, -3.9108617), (6.9692063, -49.38442, -3.550988), (4.656777, -49.726093, -2.3727465), (4.656777, -49.726093, -2.3727465), (6.9692063, -49.38442, -3.550988), (7.1454997, -49.38442, -3.1813815), (4.774575, -49.726093, -2.1257777), (4.774575, -49.726093, -2.1257777), (7.1454997, -49.38442, -3.1813815), (7.302208, -49.38442, -2.8030548), (4.8792863, -49.726093, -1.8729825), (4.8792863, -49.726093, -1.8729825), (7.302208, -49.38442, -2.8030548), (7.438901, -49.38442, -2.4170454), (4.970624, -49.726093, -1.6150535), (4.970624, -49.726093, -1.6150535), (7.438901, -49.38442, -2.4170454), (7.5552044, -49.38442, -2.024411), (5.048337, -49.726093, -1.3526978), (5.048337, -49.726093, -1.3526978), (7.5552044, -49.38442, -2.024411), (7.6507998, -49.38442, -1.6262277), (5.112213, -49.726093, -1.0866345), (5.112213, -49.726093, -1.0866345), (7.6507998, -49.38442, -1.6262277), (7.725425, -49.38442, -1.223587), (5.1620774, -49.726093, -0.81759274), (5.1620774, -49.726093, -0.81759274), (7.725425, -49.38442, -1.223587), (7.778875, -49.38442, -0.81759274), (5.197792, -49.726093, -0.54631), (5.197792, -49.726093, -0.54631), (7.778875, -49.38442, -0.81759274), (7.8110037, -49.38442, -0.40935737), (5.2192607, -49.726093, -0.27352986), (5.2192607, -49.726093, -0.27352986), (7.8110037, -49.38442, -0.40935737), (7.8217235, -49.38442, 0), (5.2264233, -49.726093, 0), (7.8217235, -49.38442, 0), (10.395584, -48.90738, 0), (10.381338, -48.90738, 0.54406285), (7.8110037, -49.38442, 0.40935737), (7.8110037, -49.38442, 0.40935737), (10.381338, -48.90738, 0.54406285), (10.338636, -48.90738, 1.0866345), (7.778875, -49.38442, 0.81759274), (7.778875, -49.38442, 0.81759274), (10.338636, -48.90738, 1.0866345), (10.267597, -48.90738, 1.6262277), (7.725425, -49.38442, 1.223587), (7.725425, -49.38442, 1.223587), (10.267597, -48.90738, 1.6262277), (10.168416, -48.90738, 2.1613636), (7.6507998, -49.38442, 1.6262277), (7.6507998, -49.38442, 1.6262277), (10.168416, -48.90738, 2.1613636), (10.041364, -48.90738, 2.6905754), (7.5552044, -49.38442, 2.024411), (7.5552044, -49.38442, 2.024411), (10.041364, -48.90738, 2.6905754), (9.886788, -48.90738, 3.2124124), (7.438901, -49.38442, 2.4170454), (7.438901, -49.38442, 2.4170454), (9.886788, -48.90738, 3.2124124), (9.705114, -48.90738, 3.7254443), (7.302208, -49.38442, 2.8030548), (7.302208, -49.38442, 2.8030548), (9.705114, -48.90738, 3.7254443), (9.496839, -48.90738, 4.2282653), (7.1454997, -49.38442, 3.1813815), (7.1454997, -49.38442, 3.1813815), (9.496839, -48.90738, 4.2282653), (9.262533, -48.90738, 4.7194967), (6.9692063, -49.38442, 3.550988), (6.9692063, -49.38442, 3.550988), (9.262533, -48.90738, 4.7194967), (9.00284, -48.90738, 5.197792), (6.773811, -49.38442, 3.9108617), (6.773811, -49.38442, 3.9108617), (9.00284, -48.90738, 5.197792), (8.718471, -48.90738, 5.661841), (6.5598493, -49.38442, 4.260016), (6.5598493, -49.38442, 4.260016), (8.718471, -48.90738, 5.661841), (8.410205, -48.90738, 6.110371), (6.327907, -49.38442, 4.5974936), (6.327907, -49.38442, 4.5974936), (8.410205, -48.90738, 6.110371), (8.078887, -48.90738, 6.5421534), (6.0786204, -49.38442, 4.92237), (6.0786204, -49.38442, 4.92237), (8.078887, -48.90738, 6.5421534), (7.725425, -48.90738, 6.9560037), (5.812673, -49.38442, 5.2337546), (5.812673, -49.38442, 5.2337546), (7.725425, -48.90738, 6.9560037), (7.350788, -48.90738, 7.350788), (5.5307937, -49.38442, 5.5307937), (5.5307937, -49.38442, 5.5307937), (7.350788, -48.90738, 7.350788), (6.9560037, -48.90738, 7.725425), (5.2337546, -49.38442, 5.812673), (5.2337546, -49.38442, 5.812673), (6.9560037, -48.90738, 7.725425), (6.5421534, -48.90738, 8.078887), (4.92237, -49.38442, 6.0786204), (4.92237, -49.38442, 6.0786204), (6.5421534, -48.90738, 8.078887), (6.110371, -48.90738, 8.410205), (4.5974936, -49.38442, 6.327907), (4.5974936, -49.38442, 6.327907), (6.110371, -48.90738, 8.410205), (5.661841, -48.90738, 8.718471), (4.260016, -49.38442, 6.5598493), (4.260016, -49.38442, 6.5598493), (5.661841, -48.90738, 8.718471), (5.197792, -48.90738, 9.00284), (3.9108617, -49.38442, 6.773811), (3.9108617, -49.38442, 6.773811), (5.197792, -48.90738, 9.00284), (4.7194967, -48.90738, 9.262533), (3.550988, -49.38442, 6.9692063), (3.550988, -49.38442, 6.9692063), (4.7194967, -48.90738, 9.262533), (4.2282653, -48.90738, 9.496839), (3.1813815, -49.38442, 7.1454997), (3.1813815, -49.38442, 7.1454997), (4.2282653, -48.90738, 9.496839), (3.7254443, -48.90738, 9.705114), (2.8030548, -49.38442, 7.302208), (2.8030548, -49.38442, 7.302208), (3.7254443, -48.90738, 9.705114), (3.2124124, -48.90738, 9.886788), (2.4170454, -49.38442, 7.438901), (2.4170454, -49.38442, 7.438901), (3.2124124, -48.90738, 9.886788), (2.6905754, -48.90738, 10.041364), (2.024411, -49.38442, 7.5552044), (2.024411, -49.38442, 7.5552044), (2.6905754, -48.90738, 10.041364), (2.1613636, -48.90738, 10.168416), (1.6262277, -49.38442, 7.6507998), (1.6262277, -49.38442, 7.6507998), (2.1613636, -48.90738, 10.168416), (1.6262277, -48.90738, 10.267597), (1.223587, -49.38442, 7.725425), (1.223587, -49.38442, 7.725425), (1.6262277, -48.90738, 10.267597), (1.0866345, -48.90738, 10.338636), (0.81759274, -49.38442, 7.778875), (0.81759274, -49.38442, 7.778875), (1.0866345, -48.90738, 10.338636), (0.54406285, -48.90738, 10.381338), (0.40935737, -49.38442, 7.8110037), (0.40935737, -49.38442, 7.8110037), (0.54406285, -48.90738, 10.381338), (6.3654595e-16, -48.90738, 10.395584), (4.789424e-16, -49.38442, 7.8217235), (4.789424e-16, -49.38442, 7.8217235), (6.3654595e-16, -48.90738, 10.395584), (-0.54406285, -48.90738, 10.381338), (-0.40935737, -49.38442, 7.8110037), (-0.40935737, -49.38442, 7.8110037), (-0.54406285, -48.90738, 10.381338), (-1.0866345, -48.90738, 10.338636), (-0.81759274, -49.38442, 7.778875), (-0.81759274, -49.38442, 7.778875), (-1.0866345, -48.90738, 10.338636), (-1.6262277, -48.90738, 10.267597), (-1.223587, -49.38442, 7.725425), (-1.223587, -49.38442, 7.725425), (-1.6262277, -48.90738, 10.267597), (-2.1613636, -48.90738, 10.168416), (-1.6262277, -49.38442, 7.6507998), (-1.6262277, -49.38442, 7.6507998), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.90738, 10.041364), (-2.024411, -49.38442, 7.5552044), (-2.024411, -49.38442, 7.5552044), (-2.6905754, -48.90738, 10.041364), (-3.2124124, -48.90738, 9.886788), (-2.4170454, -49.38442, 7.438901), (-2.4170454, -49.38442, 7.438901), (-3.2124124, -48.90738, 9.886788), (-3.7254443, -48.90738, 9.705114), (-2.8030548, -49.38442, 7.302208), (-2.8030548, -49.38442, 7.302208), (-3.7254443, -48.90738, 9.705114), (-4.2282653, -48.90738, 9.496839), (-3.1813815, -49.38442, 7.1454997), (-3.1813815, -49.38442, 7.1454997), (-4.2282653, -48.90738, 9.496839), (-4.7194967, -48.90738, 9.262533), (-3.550988, -49.38442, 6.9692063), (-3.550988, -49.38442, 6.9692063), (-4.7194967, -48.90738, 9.262533), (-5.197792, -48.90738, 9.00284), (-3.9108617, -49.38442, 6.773811), (-3.9108617, -49.38442, 6.773811), (-5.197792, -48.90738, 9.00284), (-5.661841, -48.90738, 8.718471), (-4.260016, -49.38442, 6.5598493), (-4.260016, -49.38442, 6.5598493), (-5.661841, -48.90738, 8.718471), (-6.110371, -48.90738, 8.410205), (-4.5974936, -49.38442, 6.327907), (-4.5974936, -49.38442, 6.327907), (-6.110371, -48.90738, 8.410205), (-6.5421534, -48.90738, 8.078887), (-4.92237, -49.38442, 6.0786204), (-4.92237, -49.38442, 6.0786204), (-6.5421534, -48.90738, 8.078887), (-6.9560037, -48.90738, 7.725425), (-5.2337546, -49.38442, 5.812673), (-5.2337546, -49.38442, 5.812673), (-6.9560037, -48.90738, 7.725425), (-7.350788, -48.90738, 7.350788), (-5.5307937, -49.38442, 5.5307937), (-5.5307937, -49.38442, 5.5307937), (-7.350788, -48.90738, 7.350788), (-7.725425, -48.90738, 6.9560037), (-5.812673, -49.38442, 5.2337546), (-5.812673, -49.38442, 5.2337546), (-7.725425, -48.90738, 6.9560037), (-8.078887, -48.90738, 6.5421534), (-6.0786204, -49.38442, 4.92237), (-6.0786204, -49.38442, 4.92237), (-8.078887, -48.90738, 6.5421534), (-8.410205, -48.90738, 6.110371), (-6.327907, -49.38442, 4.5974936), (-6.327907, -49.38442, 4.5974936), (-8.410205, -48.90738, 6.110371), (-8.718471, -48.90738, 5.661841), (-6.5598493, -49.38442, 4.260016), (-6.5598493, -49.38442, 4.260016), (-8.718471, -48.90738, 5.661841), (-9.00284, -48.90738, 5.197792), (-6.773811, -49.38442, 3.9108617), (-6.773811, -49.38442, 3.9108617), (-9.00284, -48.90738, 5.197792), (-9.262533, -48.90738, 4.7194967), (-6.9692063, -49.38442, 3.550988), (-6.9692063, -49.38442, 3.550988), (-9.262533, -48.90738, 4.7194967), (-9.496839, -48.90738, 4.2282653), (-7.1454997, -49.38442, 3.1813815), (-7.1454997, -49.38442, 3.1813815), (-9.496839, -48.90738, 4.2282653), (-9.705114, -48.90738, 3.7254443), (-7.302208, -49.38442, 2.8030548), (-7.302208, -49.38442, 2.8030548), (-9.705114, -48.90738, 3.7254443), (-9.886788, -48.90738, 3.2124124), (-7.438901, -49.38442, 2.4170454), (-7.438901, -49.38442, 2.4170454), (-9.886788, -48.90738, 3.2124124), (-10.041364, -48.90738, 2.6905754), (-7.5552044, -49.38442, 2.024411), (-7.5552044, -49.38442, 2.024411), (-10.041364, -48.90738, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-7.6507998, -49.38442, 1.6262277), (-7.6507998, -49.38442, 1.6262277), (-10.168416, -48.90738, 2.1613636), (-10.267597, -48.90738, 1.6262277), (-7.725425, -49.38442, 1.223587), (-7.725425, -49.38442, 1.223587), (-10.267597, -48.90738, 1.6262277), (-10.338636, -48.90738, 1.0866345), (-7.778875, -49.38442, 0.81759274), (-7.778875, -49.38442, 0.81759274), (-10.338636, -48.90738, 1.0866345), (-10.381338, -48.90738, 0.54406285), (-7.8110037, -49.38442, 0.40935737), (-7.8110037, -49.38442, 0.40935737), (-10.381338, -48.90738, 0.54406285), (-10.395584, -48.90738, 1.2730919e-15), (-7.8217235, -49.38442, 9.578848e-16), (-7.8217235, -49.38442, 9.578848e-16), (-10.395584, -48.90738, 1.2730919e-15), (-10.381338, -48.90738, -0.54406285), (-7.8110037, -49.38442, -0.40935737), (-7.8110037, -49.38442, -0.40935737), (-10.381338, -48.90738, -0.54406285), (-10.338636, -48.90738, -1.0866345), (-7.778875, -49.38442, -0.81759274), (-7.778875, -49.38442, -0.81759274), (-10.338636, -48.90738, -1.0866345), (-10.267597, -48.90738, -1.6262277), (-7.725425, -49.38442, -1.223587), (-7.725425, -49.38442, -1.223587), (-10.267597, -48.90738, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-7.6507998, -49.38442, -1.6262277), (-7.6507998, -49.38442, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-10.041364, -48.90738, -2.6905754), (-7.5552044, -49.38442, -2.024411), (-7.5552044, -49.38442, -2.024411), (-10.041364, -48.90738, -2.6905754), (-9.886788, -48.90738, -3.2124124), (-7.438901, -49.38442, -2.4170454), (-7.438901, -49.38442, -2.4170454), (-9.886788, -48.90738, -3.2124124), (-9.705114, -48.90738, -3.7254443), (-7.302208, -49.38442, -2.8030548), (-7.302208, -49.38442, -2.8030548), (-9.705114, -48.90738, -3.7254443), (-9.496839, -48.90738, -4.2282653), (-7.1454997, -49.38442, -3.1813815), (-7.1454997, -49.38442, -3.1813815), (-9.496839, -48.90738, -4.2282653), (-9.262533, -48.90738, -4.7194967), (-6.9692063, -49.38442, -3.550988), (-6.9692063, -49.38442, -3.550988), (-9.262533, -48.90738, -4.7194967), (-9.00284, -48.90738, -5.197792), (-6.773811, -49.38442, -3.9108617), (-6.773811, -49.38442, -3.9108617), (-9.00284, -48.90738, -5.197792), (-8.718471, -48.90738, -5.661841), (-6.5598493, -49.38442, -4.260016), (-6.5598493, -49.38442, -4.260016), (-8.718471, -48.90738, -5.661841), (-8.410205, -48.90738, -6.110371), (-6.327907, -49.38442, -4.5974936), (-6.327907, -49.38442, -4.5974936), (-8.410205, -48.90738, -6.110371), (-8.078887, -48.90738, -6.5421534), (-6.0786204, -49.38442, -4.92237), (-6.0786204, -49.38442, -4.92237), (-8.078887, -48.90738, -6.5421534), (-7.725425, -48.90738, -6.9560037), (-5.812673, -49.38442, -5.2337546), (-5.812673, -49.38442, -5.2337546), (-7.725425, -48.90738, -6.9560037), (-7.350788, -48.90738, -7.350788), (-5.5307937, -49.38442, -5.5307937), (-5.5307937, -49.38442, -5.5307937), (-7.350788, -48.90738, -7.350788), (-6.9560037, -48.90738, -7.725425), (-5.2337546, -49.38442, -5.812673), (-5.2337546, -49.38442, -5.812673), (-6.9560037, -48.90738, -7.725425), (-6.5421534, -48.90738, -8.078887), (-4.92237, -49.38442, -6.0786204), (-4.92237, -49.38442, -6.0786204), (-6.5421534, -48.90738, -8.078887), (-6.110371, -48.90738, -8.410205), (-4.5974936, -49.38442, -6.327907), (-4.5974936, -49.38442, -6.327907), (-6.110371, -48.90738, -8.410205), (-5.661841, -48.90738, -8.718471), (-4.260016, -49.38442, -6.5598493), (-4.260016, -49.38442, -6.5598493), (-5.661841, -48.90738, -8.718471), (-5.197792, -48.90738, -9.00284), (-3.9108617, -49.38442, -6.773811), (-3.9108617, -49.38442, -6.773811), (-5.197792, -48.90738, -9.00284), (-4.7194967, -48.90738, -9.262533), (-3.550988, -49.38442, -6.9692063), (-3.550988, -49.38442, -6.9692063), (-4.7194967, -48.90738, -9.262533), (-4.2282653, -48.90738, -9.496839), (-3.1813815, -49.38442, -7.1454997), (-3.1813815, -49.38442, -7.1454997), (-4.2282653, -48.90738, -9.496839), (-3.7254443, -48.90738, -9.705114), (-2.8030548, -49.38442, -7.302208), (-2.8030548, -49.38442, -7.302208), (-3.7254443, -48.90738, -9.705114), (-3.2124124, -48.90738, -9.886788), (-2.4170454, -49.38442, -7.438901), (-2.4170454, -49.38442, -7.438901), (-3.2124124, -48.90738, -9.886788), (-2.6905754, -48.90738, -10.041364), (-2.024411, -49.38442, -7.5552044), (-2.024411, -49.38442, -7.5552044), (-2.6905754, -48.90738, -10.041364), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -49.38442, -7.6507998), (-1.6262277, -49.38442, -7.6507998), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -48.90738, -10.267597), (-1.223587, -49.38442, -7.725425), (-1.223587, -49.38442, -7.725425), (-1.6262277, -48.90738, -10.267597), (-1.0866345, -48.90738, -10.338636), (-0.81759274, -49.38442, -7.778875), (-0.81759274, -49.38442, -7.778875), (-1.0866345, -48.90738, -10.338636), (-0.54406285, -48.90738, -10.381338), (-0.40935737, -49.38442, -7.8110037), (-0.40935737, -49.38442, -7.8110037), (-0.54406285, -48.90738, -10.381338), (-1.909638e-15, -48.90738, -10.395584), (-1.4368273e-15, -49.38442, -7.8217235), (-1.4368273e-15, -49.38442, -7.8217235), (-1.909638e-15, -48.90738, -10.395584), (0.54406285, -48.90738, -10.381338), (0.40935737, -49.38442, -7.8110037), (0.40935737, -49.38442, -7.8110037), (0.54406285, -48.90738, -10.381338), (1.0866345, -48.90738, -10.338636), (0.81759274, -49.38442, -7.778875), (0.81759274, -49.38442, -7.778875), (1.0866345, -48.90738, -10.338636), (1.6262277, -48.90738, -10.267597), (1.223587, -49.38442, -7.725425), (1.223587, -49.38442, -7.725425), (1.6262277, -48.90738, -10.267597), (2.1613636, -48.90738, -10.168416), (1.6262277, -49.38442, -7.6507998), (1.6262277, -49.38442, -7.6507998), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.90738, -10.041364), (2.024411, -49.38442, -7.5552044), (2.024411, -49.38442, -7.5552044), (2.6905754, -48.90738, -10.041364), (3.2124124, -48.90738, -9.886788), (2.4170454, -49.38442, -7.438901), (2.4170454, -49.38442, -7.438901), (3.2124124, -48.90738, -9.886788), (3.7254443, -48.90738, -9.705114), (2.8030548, -49.38442, -7.302208), (2.8030548, -49.38442, -7.302208), (3.7254443, -48.90738, -9.705114), (4.2282653, -48.90738, -9.496839), (3.1813815, -49.38442, -7.1454997), (3.1813815, -49.38442, -7.1454997), (4.2282653, -48.90738, -9.496839), (4.7194967, -48.90738, -9.262533), (3.550988, -49.38442, -6.9692063), (3.550988, -49.38442, -6.9692063), (4.7194967, -48.90738, -9.262533), (5.197792, -48.90738, -9.00284), (3.9108617, -49.38442, -6.773811), (3.9108617, -49.38442, -6.773811), (5.197792, -48.90738, -9.00284), (5.661841, -48.90738, -8.718471), (4.260016, -49.38442, -6.5598493), (4.260016, -49.38442, -6.5598493), (5.661841, -48.90738, -8.718471), (6.110371, -48.90738, -8.410205), (4.5974936, -49.38442, -6.327907), (4.5974936, -49.38442, -6.327907), (6.110371, -48.90738, -8.410205), (6.5421534, -48.90738, -8.078887), (4.92237, -49.38442, -6.0786204), (4.92237, -49.38442, -6.0786204), (6.5421534, -48.90738, -8.078887), (6.9560037, -48.90738, -7.725425), (5.2337546, -49.38442, -5.812673), (5.2337546, -49.38442, -5.812673), (6.9560037, -48.90738, -7.725425), (7.350788, -48.90738, -7.350788), (5.5307937, -49.38442, -5.5307937), (5.5307937, -49.38442, -5.5307937), (7.350788, -48.90738, -7.350788), (7.725425, -48.90738, -6.9560037), (5.812673, -49.38442, -5.2337546), (5.812673, -49.38442, -5.2337546), (7.725425, -48.90738, -6.9560037), (8.078887, -48.90738, -6.5421534), (6.0786204, -49.38442, -4.92237), (6.0786204, -49.38442, -4.92237), (8.078887, -48.90738, -6.5421534), (8.410205, -48.90738, -6.110371), (6.327907, -49.38442, -4.5974936), (6.327907, -49.38442, -4.5974936), (8.410205, -48.90738, -6.110371), (8.718471, -48.90738, -5.661841), (6.5598493, -49.38442, -4.260016), (6.5598493, -49.38442, -4.260016), (8.718471, -48.90738, -5.661841), (9.00284, -48.90738, -5.197792), (6.773811, -49.38442, -3.9108617), (6.773811, -49.38442, -3.9108617), (9.00284, -48.90738, -5.197792), (9.262533, -48.90738, -4.7194967), (6.9692063, -49.38442, -3.550988), (6.9692063, -49.38442, -3.550988), (9.262533, -48.90738, -4.7194967), (9.496839, -48.90738, -4.2282653), (7.1454997, -49.38442, -3.1813815), (7.1454997, -49.38442, -3.1813815), (9.496839, -48.90738, -4.2282653), (9.705114, -48.90738, -3.7254443), (7.302208, -49.38442, -2.8030548), (7.302208, -49.38442, -2.8030548), (9.705114, -48.90738, -3.7254443), (9.886788, -48.90738, -3.2124124), (7.438901, -49.38442, -2.4170454), (7.438901, -49.38442, -2.4170454), (9.886788, -48.90738, -3.2124124), (10.041364, -48.90738, -2.6905754), (7.5552044, -49.38442, -2.024411), (7.5552044, -49.38442, -2.024411), (10.041364, -48.90738, -2.6905754), (10.168416, -48.90738, -2.1613636), (7.6507998, -49.38442, -1.6262277), (7.6507998, -49.38442, -1.6262277), (10.168416, -48.90738, -2.1613636), (10.267597, -48.90738, -1.6262277), (7.725425, -49.38442, -1.223587), (7.725425, -49.38442, -1.223587), (10.267597, -48.90738, -1.6262277), (10.338636, -48.90738, -1.0866345), (7.778875, -49.38442, -0.81759274), (7.778875, -49.38442, -0.81759274), (10.338636, -48.90738, -1.0866345), (10.381338, -48.90738, -0.54406285), (7.8110037, -49.38442, -0.40935737), (7.8110037, -49.38442, -0.40935737), (10.381338, -48.90738, -0.54406285), (10.395584, -48.90738, 0), (7.8217235, -49.38442, 0), (10.395584, -48.90738, 0), (12.940952, -48.29629, 0), (12.923217, -48.29629, 0.6772771), (10.381338, -48.90738, 0.54406285), (10.381338, -48.90738, 0.54406285), (12.923217, -48.29629, 0.6772771), (12.87006, -48.29629, 1.3526978), (10.338636, -48.90738, 1.0866345), (10.338636, -48.90738, 1.0866345), (12.87006, -48.29629, 1.3526978), (12.781628, -48.29629, 2.024411), (10.267597, -48.90738, 1.6262277), (10.267597, -48.90738, 1.6262277), (12.781628, -48.29629, 2.024411), (12.658161, -48.29629, 2.6905754), (10.168416, -48.90738, 2.1613636), (10.168416, -48.90738, 2.1613636), (12.658161, -48.29629, 2.6905754), (12.5, -48.29629, 3.349365), (10.041364, -48.90738, 2.6905754), (10.041364, -48.90738, 2.6905754), (12.5, -48.29629, 3.349365), (12.307577, -48.29629, 3.998974), (9.886788, -48.90738, 3.2124124), (9.886788, -48.90738, 3.2124124), (12.307577, -48.29629, 3.998974), (12.08142, -48.29629, 4.6376224), (9.705114, -48.90738, 3.7254443), (9.705114, -48.90738, 3.7254443), (12.08142, -48.29629, 4.6376224), (11.822148, -48.29629, 5.2635593), (9.496839, -48.90738, 4.2282653), (9.496839, -48.90738, 4.2282653), (11.822148, -48.29629, 5.2635593), (11.530473, -48.29629, 5.8750696), (9.262533, -48.90738, 4.7194967), (9.262533, -48.90738, 4.7194967), (11.530473, -48.29629, 5.8750696), (11.207193, -48.29629, 6.470476), (9.00284, -48.90738, 5.197792), (9.00284, -48.90738, 5.197792), (11.207193, -48.29629, 6.470476), (10.853196, -48.29629, 7.0481477), (8.718471, -48.90738, 5.661841), (8.718471, -48.90738, 5.661841), (10.853196, -48.29629, 7.0481477), (10.46945, -48.29629, 7.606501), (8.410205, -48.90738, 6.110371), (8.410205, -48.90738, 6.110371), (10.46945, -48.29629, 7.606501), (10.057009, -48.29629, 8.144005), (8.078887, -48.90738, 6.5421534), (8.078887, -48.90738, 6.5421534), (10.057009, -48.29629, 8.144005), (9.617002, -48.29629, 8.659187), (7.725425, -48.90738, 6.9560037), (7.725425, -48.90738, 6.9560037), (9.617002, -48.29629, 8.659187), (9.150635, -48.29629, 9.150635), (7.350788, -48.90738, 7.350788), (7.350788, -48.90738, 7.350788), (9.150635, -48.29629, 9.150635), (8.659187, -48.29629, 9.617002), (6.9560037, -48.90738, 7.725425), (6.9560037, -48.90738, 7.725425), (8.659187, -48.29629, 9.617002), (8.144005, -48.29629, 10.057009), (6.5421534, -48.90738, 8.078887), (6.5421534, -48.90738, 8.078887), (8.144005, -48.29629, 10.057009), (7.606501, -48.29629, 10.46945), (6.110371, -48.90738, 8.410205), (6.110371, -48.90738, 8.410205), (7.606501, -48.29629, 10.46945), (7.0481477, -48.29629, 10.853196), (5.661841, -48.90738, 8.718471), (5.661841, -48.90738, 8.718471), (7.0481477, -48.29629, 10.853196), (6.470476, -48.29629, 11.207193), (5.197792, -48.90738, 9.00284), (5.197792, -48.90738, 9.00284), (6.470476, -48.29629, 11.207193), (5.8750696, -48.29629, 11.530473), (4.7194967, -48.90738, 9.262533), (4.7194967, -48.90738, 9.262533), (5.8750696, -48.29629, 11.530473), (5.2635593, -48.29629, 11.822148), (4.2282653, -48.90738, 9.496839), (4.2282653, -48.90738, 9.496839), (5.2635593, -48.29629, 11.822148), (4.6376224, -48.29629, 12.08142), (3.7254443, -48.90738, 9.705114), (3.7254443, -48.90738, 9.705114), (4.6376224, -48.29629, 12.08142), (3.998974, -48.29629, 12.307577), (3.2124124, -48.90738, 9.886788), (3.2124124, -48.90738, 9.886788), (3.998974, -48.29629, 12.307577), (3.349365, -48.29629, 12.5), (2.6905754, -48.90738, 10.041364), (2.6905754, -48.90738, 10.041364), (3.349365, -48.29629, 12.5), (2.6905754, -48.29629, 12.658161), (2.1613636, -48.90738, 10.168416), (2.1613636, -48.90738, 10.168416), (2.6905754, -48.29629, 12.658161), (2.024411, -48.29629, 12.781628), (1.6262277, -48.90738, 10.267597), (1.6262277, -48.90738, 10.267597), (2.024411, -48.29629, 12.781628), (1.3526978, -48.29629, 12.87006), (1.0866345, -48.90738, 10.338636), (1.0866345, -48.90738, 10.338636), (1.3526978, -48.29629, 12.87006), (0.6772771, -48.29629, 12.923217), (0.54406285, -48.90738, 10.381338), (0.54406285, -48.90738, 10.381338), (0.6772771, -48.29629, 12.923217), (7.924048e-16, -48.29629, 12.940952), (6.3654595e-16, -48.90738, 10.395584), (6.3654595e-16, -48.90738, 10.395584), (7.924048e-16, -48.29629, 12.940952), (-0.6772771, -48.29629, 12.923217), (-0.54406285, -48.90738, 10.381338), (-0.54406285, -48.90738, 10.381338), (-0.6772771, -48.29629, 12.923217), (-1.3526978, -48.29629, 12.87006), (-1.0866345, -48.90738, 10.338636), (-1.0866345, -48.90738, 10.338636), (-1.3526978, -48.29629, 12.87006), (-2.024411, -48.29629, 12.781628), (-1.6262277, -48.90738, 10.267597), (-1.6262277, -48.90738, 10.267597), (-2.024411, -48.29629, 12.781628), (-2.6905754, -48.29629, 12.658161), (-2.1613636, -48.90738, 10.168416), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.29629, 12.658161), (-3.349365, -48.29629, 12.5), (-2.6905754, -48.90738, 10.041364), (-2.6905754, -48.90738, 10.041364), (-3.349365, -48.29629, 12.5), (-3.998974, -48.29629, 12.307577), (-3.2124124, -48.90738, 9.886788), (-3.2124124, -48.90738, 9.886788), (-3.998974, -48.29629, 12.307577), (-4.6376224, -48.29629, 12.08142), (-3.7254443, -48.90738, 9.705114), (-3.7254443, -48.90738, 9.705114), (-4.6376224, -48.29629, 12.08142), (-5.2635593, -48.29629, 11.822148), (-4.2282653, -48.90738, 9.496839), (-4.2282653, -48.90738, 9.496839), (-5.2635593, -48.29629, 11.822148), (-5.8750696, -48.29629, 11.530473), (-4.7194967, -48.90738, 9.262533), (-4.7194967, -48.90738, 9.262533), (-5.8750696, -48.29629, 11.530473), (-6.470476, -48.29629, 11.207193), (-5.197792, -48.90738, 9.00284), (-5.197792, -48.90738, 9.00284), (-6.470476, -48.29629, 11.207193), (-7.0481477, -48.29629, 10.853196), (-5.661841, -48.90738, 8.718471), (-5.661841, -48.90738, 8.718471), (-7.0481477, -48.29629, 10.853196), (-7.606501, -48.29629, 10.46945), (-6.110371, -48.90738, 8.410205), (-6.110371, -48.90738, 8.410205), (-7.606501, -48.29629, 10.46945), (-8.144005, -48.29629, 10.057009), (-6.5421534, -48.90738, 8.078887), (-6.5421534, -48.90738, 8.078887), (-8.144005, -48.29629, 10.057009), (-8.659187, -48.29629, 9.617002), (-6.9560037, -48.90738, 7.725425), (-6.9560037, -48.90738, 7.725425), (-8.659187, -48.29629, 9.617002), (-9.150635, -48.29629, 9.150635), (-7.350788, -48.90738, 7.350788), (-7.350788, -48.90738, 7.350788), (-9.150635, -48.29629, 9.150635), (-9.617002, -48.29629, 8.659187), (-7.725425, -48.90738, 6.9560037), (-7.725425, -48.90738, 6.9560037), (-9.617002, -48.29629, 8.659187), (-10.057009, -48.29629, 8.144005), (-8.078887, -48.90738, 6.5421534), (-8.078887, -48.90738, 6.5421534), (-10.057009, -48.29629, 8.144005), (-10.46945, -48.29629, 7.606501), (-8.410205, -48.90738, 6.110371), (-8.410205, -48.90738, 6.110371), (-10.46945, -48.29629, 7.606501), (-10.853196, -48.29629, 7.0481477), (-8.718471, -48.90738, 5.661841), (-8.718471, -48.90738, 5.661841), (-10.853196, -48.29629, 7.0481477), (-11.207193, -48.29629, 6.470476), (-9.00284, -48.90738, 5.197792), (-9.00284, -48.90738, 5.197792), (-11.207193, -48.29629, 6.470476), (-11.530473, -48.29629, 5.8750696), (-9.262533, -48.90738, 4.7194967), (-9.262533, -48.90738, 4.7194967), (-11.530473, -48.29629, 5.8750696), (-11.822148, -48.29629, 5.2635593), (-9.496839, -48.90738, 4.2282653), (-9.496839, -48.90738, 4.2282653), (-11.822148, -48.29629, 5.2635593), (-12.08142, -48.29629, 4.6376224), (-9.705114, -48.90738, 3.7254443), (-9.705114, -48.90738, 3.7254443), (-12.08142, -48.29629, 4.6376224), (-12.307577, -48.29629, 3.998974), (-9.886788, -48.90738, 3.2124124), (-9.886788, -48.90738, 3.2124124), (-12.307577, -48.29629, 3.998974), (-12.5, -48.29629, 3.349365), (-10.041364, -48.90738, 2.6905754), (-10.041364, -48.90738, 2.6905754), (-12.5, -48.29629, 3.349365), (-12.658161, -48.29629, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-10.168416, -48.90738, 2.1613636), (-12.658161, -48.29629, 2.6905754), (-12.781628, -48.29629, 2.024411), (-10.267597, -48.90738, 1.6262277), (-10.267597, -48.90738, 1.6262277), (-12.781628, -48.29629, 2.024411), (-12.87006, -48.29629, 1.3526978), (-10.338636, -48.90738, 1.0866345), (-10.338636, -48.90738, 1.0866345), (-12.87006, -48.29629, 1.3526978), (-12.923217, -48.29629, 0.6772771), (-10.381338, -48.90738, 0.54406285), (-10.381338, -48.90738, 0.54406285), (-12.923217, -48.29629, 0.6772771), (-12.940952, -48.29629, 1.5848095e-15), (-10.395584, -48.90738, 1.2730919e-15), (-10.395584, -48.90738, 1.2730919e-15), (-12.940952, -48.29629, 1.5848095e-15), (-12.923217, -48.29629, -0.6772771), (-10.381338, -48.90738, -0.54406285), (-10.381338, -48.90738, -0.54406285), (-12.923217, -48.29629, -0.6772771), (-12.87006, -48.29629, -1.3526978), (-10.338636, -48.90738, -1.0866345), (-10.338636, -48.90738, -1.0866345), (-12.87006, -48.29629, -1.3526978), (-12.781628, -48.29629, -2.024411), (-10.267597, -48.90738, -1.6262277), (-10.267597, -48.90738, -1.6262277), (-12.781628, -48.29629, -2.024411), (-12.658161, -48.29629, -2.6905754), (-10.168416, -48.90738, -2.1613636), (-10.168416, -48.90738, -2.1613636), (-12.658161, -48.29629, -2.6905754), (-12.5, -48.29629, -3.349365), (-10.041364, -48.90738, -2.6905754), (-10.041364, -48.90738, -2.6905754), (-12.5, -48.29629, -3.349365), (-12.307577, -48.29629, -3.998974), (-9.886788, -48.90738, -3.2124124), (-9.886788, -48.90738, -3.2124124), (-12.307577, -48.29629, -3.998974), (-12.08142, -48.29629, -4.6376224), (-9.705114, -48.90738, -3.7254443), (-9.705114, -48.90738, -3.7254443), (-12.08142, -48.29629, -4.6376224), (-11.822148, -48.29629, -5.2635593), (-9.496839, -48.90738, -4.2282653), (-9.496839, -48.90738, -4.2282653), (-11.822148, -48.29629, -5.2635593), (-11.530473, -48.29629, -5.8750696), (-9.262533, -48.90738, -4.7194967), (-9.262533, -48.90738, -4.7194967), (-11.530473, -48.29629, -5.8750696), (-11.207193, -48.29629, -6.470476), (-9.00284, -48.90738, -5.197792), (-9.00284, -48.90738, -5.197792), (-11.207193, -48.29629, -6.470476), (-10.853196, -48.29629, -7.0481477), (-8.718471, -48.90738, -5.661841), (-8.718471, -48.90738, -5.661841), (-10.853196, -48.29629, -7.0481477), (-10.46945, -48.29629, -7.606501), (-8.410205, -48.90738, -6.110371), (-8.410205, -48.90738, -6.110371), (-10.46945, -48.29629, -7.606501), (-10.057009, -48.29629, -8.144005), (-8.078887, -48.90738, -6.5421534), (-8.078887, -48.90738, -6.5421534), (-10.057009, -48.29629, -8.144005), (-9.617002, -48.29629, -8.659187), (-7.725425, -48.90738, -6.9560037), (-7.725425, -48.90738, -6.9560037), (-9.617002, -48.29629, -8.659187), (-9.150635, -48.29629, -9.150635), (-7.350788, -48.90738, -7.350788), (-7.350788, -48.90738, -7.350788), (-9.150635, -48.29629, -9.150635), (-8.659187, -48.29629, -9.617002), (-6.9560037, -48.90738, -7.725425), (-6.9560037, -48.90738, -7.725425), (-8.659187, -48.29629, -9.617002), (-8.144005, -48.29629, -10.057009), (-6.5421534, -48.90738, -8.078887), (-6.5421534, -48.90738, -8.078887), (-8.144005, -48.29629, -10.057009), (-7.606501, -48.29629, -10.46945), (-6.110371, -48.90738, -8.410205), (-6.110371, -48.90738, -8.410205), (-7.606501, -48.29629, -10.46945), (-7.0481477, -48.29629, -10.853196), (-5.661841, -48.90738, -8.718471), (-5.661841, -48.90738, -8.718471), (-7.0481477, -48.29629, -10.853196), (-6.470476, -48.29629, -11.207193), (-5.197792, -48.90738, -9.00284), (-5.197792, -48.90738, -9.00284), (-6.470476, -48.29629, -11.207193), (-5.8750696, -48.29629, -11.530473), (-4.7194967, -48.90738, -9.262533), (-4.7194967, -48.90738, -9.262533), (-5.8750696, -48.29629, -11.530473), (-5.2635593, -48.29629, -11.822148), (-4.2282653, -48.90738, -9.496839), (-4.2282653, -48.90738, -9.496839), (-5.2635593, -48.29629, -11.822148), (-4.6376224, -48.29629, -12.08142), (-3.7254443, -48.90738, -9.705114), (-3.7254443, -48.90738, -9.705114), (-4.6376224, -48.29629, -12.08142), (-3.998974, -48.29629, -12.307577), (-3.2124124, -48.90738, -9.886788), (-3.2124124, -48.90738, -9.886788), (-3.998974, -48.29629, -12.307577), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.90738, -10.041364), (-2.6905754, -48.90738, -10.041364), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.29629, -12.658161), (-2.1613636, -48.90738, -10.168416), (-2.1613636, -48.90738, -10.168416), (-2.6905754, -48.29629, -12.658161), (-2.024411, -48.29629, -12.781628), (-1.6262277, -48.90738, -10.267597), (-1.6262277, -48.90738, -10.267597), (-2.024411, -48.29629, -12.781628), (-1.3526978, -48.29629, -12.87006), (-1.0866345, -48.90738, -10.338636), (-1.0866345, -48.90738, -10.338636), (-1.3526978, -48.29629, -12.87006), (-0.6772771, -48.29629, -12.923217), (-0.54406285, -48.90738, -10.381338), (-0.54406285, -48.90738, -10.381338), (-0.6772771, -48.29629, -12.923217), (-2.3772143e-15, -48.29629, -12.940952), (-1.909638e-15, -48.90738, -10.395584), (-1.909638e-15, -48.90738, -10.395584), (-2.3772143e-15, -48.29629, -12.940952), (0.6772771, -48.29629, -12.923217), (0.54406285, -48.90738, -10.381338), (0.54406285, -48.90738, -10.381338), (0.6772771, -48.29629, -12.923217), (1.3526978, -48.29629, -12.87006), (1.0866345, -48.90738, -10.338636), (1.0866345, -48.90738, -10.338636), (1.3526978, -48.29629, -12.87006), (2.024411, -48.29629, -12.781628), (1.6262277, -48.90738, -10.267597), (1.6262277, -48.90738, -10.267597), (2.024411, -48.29629, -12.781628), (2.6905754, -48.29629, -12.658161), (2.1613636, -48.90738, -10.168416), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.29629, -12.658161), (3.349365, -48.29629, -12.5), (2.6905754, -48.90738, -10.041364), (2.6905754, -48.90738, -10.041364), (3.349365, -48.29629, -12.5), (3.998974, -48.29629, -12.307577), (3.2124124, -48.90738, -9.886788), (3.2124124, -48.90738, -9.886788), (3.998974, -48.29629, -12.307577), (4.6376224, -48.29629, -12.08142), (3.7254443, -48.90738, -9.705114), (3.7254443, -48.90738, -9.705114), (4.6376224, -48.29629, -12.08142), (5.2635593, -48.29629, -11.822148), (4.2282653, -48.90738, -9.496839), (4.2282653, -48.90738, -9.496839), (5.2635593, -48.29629, -11.822148), (5.8750696, -48.29629, -11.530473), (4.7194967, -48.90738, -9.262533), (4.7194967, -48.90738, -9.262533), (5.8750696, -48.29629, -11.530473), (6.470476, -48.29629, -11.207193), (5.197792, -48.90738, -9.00284), (5.197792, -48.90738, -9.00284), (6.470476, -48.29629, -11.207193), (7.0481477, -48.29629, -10.853196), (5.661841, -48.90738, -8.718471), (5.661841, -48.90738, -8.718471), (7.0481477, -48.29629, -10.853196), (7.606501, -48.29629, -10.46945), (6.110371, -48.90738, -8.410205), (6.110371, -48.90738, -8.410205), (7.606501, -48.29629, -10.46945), (8.144005, -48.29629, -10.057009), (6.5421534, -48.90738, -8.078887), (6.5421534, -48.90738, -8.078887), (8.144005, -48.29629, -10.057009), (8.659187, -48.29629, -9.617002), (6.9560037, -48.90738, -7.725425), (6.9560037, -48.90738, -7.725425), (8.659187, -48.29629, -9.617002), (9.150635, -48.29629, -9.150635), (7.350788, -48.90738, -7.350788), (7.350788, -48.90738, -7.350788), (9.150635, -48.29629, -9.150635), (9.617002, -48.29629, -8.659187), (7.725425, -48.90738, -6.9560037), (7.725425, -48.90738, -6.9560037), (9.617002, -48.29629, -8.659187), (10.057009, -48.29629, -8.144005), (8.078887, -48.90738, -6.5421534), (8.078887, -48.90738, -6.5421534), (10.057009, -48.29629, -8.144005), (10.46945, -48.29629, -7.606501), (8.410205, -48.90738, -6.110371), (8.410205, -48.90738, -6.110371), (10.46945, -48.29629, -7.606501), (10.853196, -48.29629, -7.0481477), (8.718471, -48.90738, -5.661841), (8.718471, -48.90738, -5.661841), (10.853196, -48.29629, -7.0481477), (11.207193, -48.29629, -6.470476), (9.00284, -48.90738, -5.197792), (9.00284, -48.90738, -5.197792), (11.207193, -48.29629, -6.470476), (11.530473, -48.29629, -5.8750696), (9.262533, -48.90738, -4.7194967), (9.262533, -48.90738, -4.7194967), (11.530473, -48.29629, -5.8750696), (11.822148, -48.29629, -5.2635593), (9.496839, -48.90738, -4.2282653), (9.496839, -48.90738, -4.2282653), (11.822148, -48.29629, -5.2635593), (12.08142, -48.29629, -4.6376224), (9.705114, -48.90738, -3.7254443), (9.705114, -48.90738, -3.7254443), (12.08142, -48.29629, -4.6376224), (12.307577, -48.29629, -3.998974), (9.886788, -48.90738, -3.2124124), (9.886788, -48.90738, -3.2124124), (12.307577, -48.29629, -3.998974), (12.5, -48.29629, -3.349365), (10.041364, -48.90738, -2.6905754), (10.041364, -48.90738, -2.6905754), (12.5, -48.29629, -3.349365), (12.658161, -48.29629, -2.6905754), (10.168416, -48.90738, -2.1613636), (10.168416, -48.90738, -2.1613636), (12.658161, -48.29629, -2.6905754), (12.781628, -48.29629, -2.024411), (10.267597, -48.90738, -1.6262277), (10.267597, -48.90738, -1.6262277), (12.781628, -48.29629, -2.024411), (12.87006, -48.29629, -1.3526978), (10.338636, -48.90738, -1.0866345), (10.338636, -48.90738, -1.0866345), (12.87006, -48.29629, -1.3526978), (12.923217, -48.29629, -0.6772771), (10.381338, -48.90738, -0.54406285), (10.381338, -48.90738, -0.54406285), (12.923217, -48.29629, -0.6772771), (12.940952, -48.29629, 0), (10.395584, -48.90738, 0), (12.940952, -48.29629, 0), (15.45085, -47.552826, 0), (15.429675, -47.552826, 0.808635), (12.923217, -48.29629, 0.6772771), (12.923217, -48.29629, 0.6772771), (15.429675, -47.552826, 0.808635), (15.366208, -47.552826, 1.6150535), (12.87006, -48.29629, 1.3526978), (12.87006, -48.29629, 1.3526978), (15.366208, -47.552826, 1.6150535), (15.260624, -47.552826, 2.4170454), (12.781628, -48.29629, 2.024411), (12.781628, -48.29629, 2.024411), (15.260624, -47.552826, 2.4170454), (15.113212, -47.552826, 3.2124124), (12.658161, -48.29629, 2.6905754), (12.658161, -48.29629, 2.6905754), (15.113212, -47.552826, 3.2124124), (14.924375, -47.552826, 3.998974), (12.5, -48.29629, 3.349365), (12.5, -48.29629, 3.349365), (14.924375, -47.552826, 3.998974), (14.694632, -47.552826, 4.774575), (12.307577, -48.29629, 3.998974), (12.307577, -48.29629, 3.998974), (14.694632, -47.552826, 4.774575), (14.424611, -47.552826, 5.5370893), (12.08142, -48.29629, 4.6376224), (12.08142, -48.29629, 4.6376224), (14.424611, -47.552826, 5.5370893), (14.115053, -47.552826, 6.2844267), (11.822148, -48.29629, 5.2635593), (11.822148, -48.29629, 5.2635593), (14.115053, -47.552826, 6.2844267), (13.766808, -47.552826, 7.014539), (11.530473, -48.29629, 5.8750696), (11.530473, -48.29629, 5.8750696), (13.766808, -47.552826, 7.014539), (13.380828, -47.552826, 7.725425), (11.207193, -48.29629, 6.470476), (11.207193, -48.29629, 6.470476), (13.380828, -47.552826, 7.725425), (12.958173, -47.552826, 8.415136), (10.853196, -48.29629, 7.0481477), (10.853196, -48.29629, 7.0481477), (12.958173, -47.552826, 8.415136), (12.5, -47.552826, 9.081781), (10.46945, -48.29629, 7.606501), (10.46945, -48.29629, 7.606501), (12.5, -47.552826, 9.081781), (12.0075655, -47.552826, 9.723535), (10.057009, -48.29629, 8.144005), (10.057009, -48.29629, 8.144005), (12.0075655, -47.552826, 9.723535), (11.482219, -47.552826, 10.338636), (9.617002, -48.29629, 8.659187), (9.617002, -48.29629, 8.659187), (11.482219, -47.552826, 10.338636), (10.925401, -47.552826, 10.925401), (9.150635, -48.29629, 9.150635), (9.150635, -48.29629, 9.150635), (10.925401, -47.552826, 10.925401), (10.338636, -47.552826, 11.482219), (8.659187, -48.29629, 9.617002), (8.659187, -48.29629, 9.617002), (10.338636, -47.552826, 11.482219), (9.723535, -47.552826, 12.0075655), (8.144005, -48.29629, 10.057009), (8.144005, -48.29629, 10.057009), (9.723535, -47.552826, 12.0075655), (9.081781, -47.552826, 12.5), (7.606501, -48.29629, 10.46945), (7.606501, -48.29629, 10.46945), (9.081781, -47.552826, 12.5), (8.415136, -47.552826, 12.958173), (7.0481477, -48.29629, 10.853196), (7.0481477, -48.29629, 10.853196), (8.415136, -47.552826, 12.958173), (7.725425, -47.552826, 13.380828), (6.470476, -48.29629, 11.207193), (6.470476, -48.29629, 11.207193), (7.725425, -47.552826, 13.380828), (7.014539, -47.552826, 13.766808), (5.8750696, -48.29629, 11.530473), (5.8750696, -48.29629, 11.530473), (7.014539, -47.552826, 13.766808), (6.2844267, -47.552826, 14.115053), (5.2635593, -48.29629, 11.822148), (5.2635593, -48.29629, 11.822148), (6.2844267, -47.552826, 14.115053), (5.5370893, -47.552826, 14.424611), (4.6376224, -48.29629, 12.08142), (4.6376224, -48.29629, 12.08142), (5.5370893, -47.552826, 14.424611), (4.774575, -47.552826, 14.694632), (3.998974, -48.29629, 12.307577), (3.998974, -48.29629, 12.307577), (4.774575, -47.552826, 14.694632), (3.998974, -47.552826, 14.924375), (3.349365, -48.29629, 12.5), (3.349365, -48.29629, 12.5), (3.998974, -47.552826, 14.924375), (3.2124124, -47.552826, 15.113212), (2.6905754, -48.29629, 12.658161), (2.6905754, -48.29629, 12.658161), (3.2124124, -47.552826, 15.113212), (2.4170454, -47.552826, 15.260624), (2.024411, -48.29629, 12.781628), (2.024411, -48.29629, 12.781628), (2.4170454, -47.552826, 15.260624), (1.6150535, -47.552826, 15.366208), (1.3526978, -48.29629, 12.87006), (1.3526978, -48.29629, 12.87006), (1.6150535, -47.552826, 15.366208), (0.808635, -47.552826, 15.429675), (0.6772771, -48.29629, 12.923217), (0.6772771, -48.29629, 12.923217), (0.808635, -47.552826, 15.429675), (9.460917e-16, -47.552826, 15.45085), (7.924048e-16, -48.29629, 12.940952), (7.924048e-16, -48.29629, 12.940952), (9.460917e-16, -47.552826, 15.45085), (-0.808635, -47.552826, 15.429675), (-0.6772771, -48.29629, 12.923217), (-0.6772771, -48.29629, 12.923217), (-0.808635, -47.552826, 15.429675), (-1.6150535, -47.552826, 15.366208), (-1.3526978, -48.29629, 12.87006), (-1.3526978, -48.29629, 12.87006), (-1.6150535, -47.552826, 15.366208), (-2.4170454, -47.552826, 15.260624), (-2.024411, -48.29629, 12.781628), (-2.024411, -48.29629, 12.781628), (-2.4170454, -47.552826, 15.260624), (-3.2124124, -47.552826, 15.113212), (-2.6905754, -48.29629, 12.658161), (-2.6905754, -48.29629, 12.658161), (-3.2124124, -47.552826, 15.113212), (-3.998974, -47.552826, 14.924375), (-3.349365, -48.29629, 12.5), (-3.349365, -48.29629, 12.5), (-3.998974, -47.552826, 14.924375), (-4.774575, -47.552826, 14.694632), (-3.998974, -48.29629, 12.307577), (-3.998974, -48.29629, 12.307577), (-4.774575, -47.552826, 14.694632), (-5.5370893, -47.552826, 14.424611), (-4.6376224, -48.29629, 12.08142), (-4.6376224, -48.29629, 12.08142), (-5.5370893, -47.552826, 14.424611), (-6.2844267, -47.552826, 14.115053), (-5.2635593, -48.29629, 11.822148), (-5.2635593, -48.29629, 11.822148), (-6.2844267, -47.552826, 14.115053), (-7.014539, -47.552826, 13.766808), (-5.8750696, -48.29629, 11.530473), (-5.8750696, -48.29629, 11.530473), (-7.014539, -47.552826, 13.766808), (-7.725425, -47.552826, 13.380828), (-6.470476, -48.29629, 11.207193), (-6.470476, -48.29629, 11.207193), (-7.725425, -47.552826, 13.380828), (-8.415136, -47.552826, 12.958173), (-7.0481477, -48.29629, 10.853196), (-7.0481477, -48.29629, 10.853196), (-8.415136, -47.552826, 12.958173), (-9.081781, -47.552826, 12.5), (-7.606501, -48.29629, 10.46945), (-7.606501, -48.29629, 10.46945), (-9.081781, -47.552826, 12.5), (-9.723535, -47.552826, 12.0075655), (-8.144005, -48.29629, 10.057009), (-8.144005, -48.29629, 10.057009), (-9.723535, -47.552826, 12.0075655), (-10.338636, -47.552826, 11.482219), (-8.659187, -48.29629, 9.617002), (-8.659187, -48.29629, 9.617002), (-10.338636, -47.552826, 11.482219), (-10.925401, -47.552826, 10.925401), (-9.150635, -48.29629, 9.150635), (-9.150635, -48.29629, 9.150635), (-10.925401, -47.552826, 10.925401), (-11.482219, -47.552826, 10.338636), (-9.617002, -48.29629, 8.659187), (-9.617002, -48.29629, 8.659187), (-11.482219, -47.552826, 10.338636), (-12.0075655, -47.552826, 9.723535), (-10.057009, -48.29629, 8.144005), (-10.057009, -48.29629, 8.144005), (-12.0075655, -47.552826, 9.723535), (-12.5, -47.552826, 9.081781), (-10.46945, -48.29629, 7.606501), (-10.46945, -48.29629, 7.606501), (-12.5, -47.552826, 9.081781), (-12.958173, -47.552826, 8.415136), (-10.853196, -48.29629, 7.0481477), (-10.853196, -48.29629, 7.0481477), (-12.958173, -47.552826, 8.415136), (-13.380828, -47.552826, 7.725425), (-11.207193, -48.29629, 6.470476), (-11.207193, -48.29629, 6.470476), (-13.380828, -47.552826, 7.725425), (-13.766808, -47.552826, 7.014539), (-11.530473, -48.29629, 5.8750696), (-11.530473, -48.29629, 5.8750696), (-13.766808, -47.552826, 7.014539), (-14.115053, -47.552826, 6.2844267), (-11.822148, -48.29629, 5.2635593), (-11.822148, -48.29629, 5.2635593), (-14.115053, -47.552826, 6.2844267), (-14.424611, -47.552826, 5.5370893), (-12.08142, -48.29629, 4.6376224), (-12.08142, -48.29629, 4.6376224), (-14.424611, -47.552826, 5.5370893), (-14.694632, -47.552826, 4.774575), (-12.307577, -48.29629, 3.998974), (-12.307577, -48.29629, 3.998974), (-14.694632, -47.552826, 4.774575), (-14.924375, -47.552826, 3.998974), (-12.5, -48.29629, 3.349365), (-12.5, -48.29629, 3.349365), (-14.924375, -47.552826, 3.998974), (-15.113212, -47.552826, 3.2124124), (-12.658161, -48.29629, 2.6905754), (-12.658161, -48.29629, 2.6905754), (-15.113212, -47.552826, 3.2124124), (-15.260624, -47.552826, 2.4170454), (-12.781628, -48.29629, 2.024411), (-12.781628, -48.29629, 2.024411), (-15.260624, -47.552826, 2.4170454), (-15.366208, -47.552826, 1.6150535), (-12.87006, -48.29629, 1.3526978), (-12.87006, -48.29629, 1.3526978), (-15.366208, -47.552826, 1.6150535), (-15.429675, -47.552826, 0.808635), (-12.923217, -48.29629, 0.6772771), (-12.923217, -48.29629, 0.6772771), (-15.429675, -47.552826, 0.808635), (-15.45085, -47.552826, 1.8921833e-15), (-12.940952, -48.29629, 1.5848095e-15), (-12.940952, -48.29629, 1.5848095e-15), (-15.45085, -47.552826, 1.8921833e-15), (-15.429675, -47.552826, -0.808635), (-12.923217, -48.29629, -0.6772771), (-12.923217, -48.29629, -0.6772771), (-15.429675, -47.552826, -0.808635), (-15.366208, -47.552826, -1.6150535), (-12.87006, -48.29629, -1.3526978), (-12.87006, -48.29629, -1.3526978), (-15.366208, -47.552826, -1.6150535), (-15.260624, -47.552826, -2.4170454), (-12.781628, -48.29629, -2.024411), (-12.781628, -48.29629, -2.024411), (-15.260624, -47.552826, -2.4170454), (-15.113212, -47.552826, -3.2124124), (-12.658161, -48.29629, -2.6905754), (-12.658161, -48.29629, -2.6905754), (-15.113212, -47.552826, -3.2124124), (-14.924375, -47.552826, -3.998974), (-12.5, -48.29629, -3.349365), (-12.5, -48.29629, -3.349365), (-14.924375, -47.552826, -3.998974), (-14.694632, -47.552826, -4.774575), (-12.307577, -48.29629, -3.998974), (-12.307577, -48.29629, -3.998974), (-14.694632, -47.552826, -4.774575), (-14.424611, -47.552826, -5.5370893), (-12.08142, -48.29629, -4.6376224), (-12.08142, -48.29629, -4.6376224), (-14.424611, -47.552826, -5.5370893), (-14.115053, -47.552826, -6.2844267), (-11.822148, -48.29629, -5.2635593), (-11.822148, -48.29629, -5.2635593), (-14.115053, -47.552826, -6.2844267), (-13.766808, -47.552826, -7.014539), (-11.530473, -48.29629, -5.8750696), (-11.530473, -48.29629, -5.8750696), (-13.766808, -47.552826, -7.014539), (-13.380828, -47.552826, -7.725425), (-11.207193, -48.29629, -6.470476), (-11.207193, -48.29629, -6.470476), (-13.380828, -47.552826, -7.725425), (-12.958173, -47.552826, -8.415136), (-10.853196, -48.29629, -7.0481477), (-10.853196, -48.29629, -7.0481477), (-12.958173, -47.552826, -8.415136), (-12.5, -47.552826, -9.081781), (-10.46945, -48.29629, -7.606501), (-10.46945, -48.29629, -7.606501), (-12.5, -47.552826, -9.081781), (-12.0075655, -47.552826, -9.723535), (-10.057009, -48.29629, -8.144005), (-10.057009, -48.29629, -8.144005), (-12.0075655, -47.552826, -9.723535), (-11.482219, -47.552826, -10.338636), (-9.617002, -48.29629, -8.659187), (-9.617002, -48.29629, -8.659187), (-11.482219, -47.552826, -10.338636), (-10.925401, -47.552826, -10.925401), (-9.150635, -48.29629, -9.150635), (-9.150635, -48.29629, -9.150635), (-10.925401, -47.552826, -10.925401), (-10.338636, -47.552826, -11.482219), (-8.659187, -48.29629, -9.617002), (-8.659187, -48.29629, -9.617002), (-10.338636, -47.552826, -11.482219), (-9.723535, -47.552826, -12.0075655), (-8.144005, -48.29629, -10.057009), (-8.144005, -48.29629, -10.057009), (-9.723535, -47.552826, -12.0075655), (-9.081781, -47.552826, -12.5), (-7.606501, -48.29629, -10.46945), (-7.606501, -48.29629, -10.46945), (-9.081781, -47.552826, -12.5), (-8.415136, -47.552826, -12.958173), (-7.0481477, -48.29629, -10.853196), (-7.0481477, -48.29629, -10.853196), (-8.415136, -47.552826, -12.958173), (-7.725425, -47.552826, -13.380828), (-6.470476, -48.29629, -11.207193), (-6.470476, -48.29629, -11.207193), (-7.725425, -47.552826, -13.380828), (-7.014539, -47.552826, -13.766808), (-5.8750696, -48.29629, -11.530473), (-5.8750696, -48.29629, -11.530473), (-7.014539, -47.552826, -13.766808), (-6.2844267, -47.552826, -14.115053), (-5.2635593, -48.29629, -11.822148), (-5.2635593, -48.29629, -11.822148), (-6.2844267, -47.552826, -14.115053), (-5.5370893, -47.552826, -14.424611), (-4.6376224, -48.29629, -12.08142), (-4.6376224, -48.29629, -12.08142), (-5.5370893, -47.552826, -14.424611), (-4.774575, -47.552826, -14.694632), (-3.998974, -48.29629, -12.307577), (-3.998974, -48.29629, -12.307577), (-4.774575, -47.552826, -14.694632), (-3.998974, -47.552826, -14.924375), (-3.349365, -48.29629, -12.5), (-3.349365, -48.29629, -12.5), (-3.998974, -47.552826, -14.924375), (-3.2124124, -47.552826, -15.113212), (-2.6905754, -48.29629, -12.658161), (-2.6905754, -48.29629, -12.658161), (-3.2124124, -47.552826, -15.113212), (-2.4170454, -47.552826, -15.260624), (-2.024411, -48.29629, -12.781628), (-2.024411, -48.29629, -12.781628), (-2.4170454, -47.552826, -15.260624), (-1.6150535, -47.552826, -15.366208), (-1.3526978, -48.29629, -12.87006), (-1.3526978, -48.29629, -12.87006), (-1.6150535, -47.552826, -15.366208), (-0.808635, -47.552826, -15.429675), (-0.6772771, -48.29629, -12.923217), (-0.6772771, -48.29629, -12.923217), (-0.808635, -47.552826, -15.429675), (-2.838275e-15, -47.552826, -15.45085), (-2.3772143e-15, -48.29629, -12.940952), (-2.3772143e-15, -48.29629, -12.940952), (-2.838275e-15, -47.552826, -15.45085), (0.808635, -47.552826, -15.429675), (0.6772771, -48.29629, -12.923217), (0.6772771, -48.29629, -12.923217), (0.808635, -47.552826, -15.429675), (1.6150535, -47.552826, -15.366208), (1.3526978, -48.29629, -12.87006), (1.3526978, -48.29629, -12.87006), (1.6150535, -47.552826, -15.366208), (2.4170454, -47.552826, -15.260624), (2.024411, -48.29629, -12.781628), (2.024411, -48.29629, -12.781628), (2.4170454, -47.552826, -15.260624), (3.2124124, -47.552826, -15.113212), (2.6905754, -48.29629, -12.658161), (2.6905754, -48.29629, -12.658161), (3.2124124, -47.552826, -15.113212), (3.998974, -47.552826, -14.924375), (3.349365, -48.29629, -12.5), (3.349365, -48.29629, -12.5), (3.998974, -47.552826, -14.924375), (4.774575, -47.552826, -14.694632), (3.998974, -48.29629, -12.307577), (3.998974, -48.29629, -12.307577), (4.774575, -47.552826, -14.694632), (5.5370893, -47.552826, -14.424611), (4.6376224, -48.29629, -12.08142), (4.6376224, -48.29629, -12.08142), (5.5370893, -47.552826, -14.424611), (6.2844267, -47.552826, -14.115053), (5.2635593, -48.29629, -11.822148), (5.2635593, -48.29629, -11.822148), (6.2844267, -47.552826, -14.115053), (7.014539, -47.552826, -13.766808), (5.8750696, -48.29629, -11.530473), (5.8750696, -48.29629, -11.530473), (7.014539, -47.552826, -13.766808), (7.725425, -47.552826, -13.380828), (6.470476, -48.29629, -11.207193), (6.470476, -48.29629, -11.207193), (7.725425, -47.552826, -13.380828), (8.415136, -47.552826, -12.958173), (7.0481477, -48.29629, -10.853196), (7.0481477, -48.29629, -10.853196), (8.415136, -47.552826, -12.958173), (9.081781, -47.552826, -12.5), (7.606501, -48.29629, -10.46945), (7.606501, -48.29629, -10.46945), (9.081781, -47.552826, -12.5), (9.723535, -47.552826, -12.0075655), (8.144005, -48.29629, -10.057009), (8.144005, -48.29629, -10.057009), (9.723535, -47.552826, -12.0075655), (10.338636, -47.552826, -11.482219), (8.659187, -48.29629, -9.617002), (8.659187, -48.29629, -9.617002), (10.338636, -47.552826, -11.482219), (10.925401, -47.552826, -10.925401), (9.150635, -48.29629, -9.150635), (9.150635, -48.29629, -9.150635), (10.925401, -47.552826, -10.925401), (11.482219, -47.552826, -10.338636), (9.617002, -48.29629, -8.659187), (9.617002, -48.29629, -8.659187), (11.482219, -47.552826, -10.338636), (12.0075655, -47.552826, -9.723535), (10.057009, -48.29629, -8.144005), (10.057009, -48.29629, -8.144005), (12.0075655, -47.552826, -9.723535), (12.5, -47.552826, -9.081781), (10.46945, -48.29629, -7.606501), (10.46945, -48.29629, -7.606501), (12.5, -47.552826, -9.081781), (12.958173, -47.552826, -8.415136), (10.853196, -48.29629, -7.0481477), (10.853196, -48.29629, -7.0481477), (12.958173, -47.552826, -8.415136), (13.380828, -47.552826, -7.725425), (11.207193, -48.29629, -6.470476), (11.207193, -48.29629, -6.470476), (13.380828, -47.552826, -7.725425), (13.766808, -47.552826, -7.014539), (11.530473, -48.29629, -5.8750696), (11.530473, -48.29629, -5.8750696), (13.766808, -47.552826, -7.014539), (14.115053, -47.552826, -6.2844267), (11.822148, -48.29629, -5.2635593), (11.822148, -48.29629, -5.2635593), (14.115053, -47.552826, -6.2844267), (14.424611, -47.552826, -5.5370893), (12.08142, -48.29629, -4.6376224), (12.08142, -48.29629, -4.6376224), (14.424611, -47.552826, -5.5370893), (14.694632, -47.552826, -4.774575), (12.307577, -48.29629, -3.998974), (12.307577, -48.29629, -3.998974), (14.694632, -47.552826, -4.774575), (14.924375, -47.552826, -3.998974), (12.5, -48.29629, -3.349365), (12.5, -48.29629, -3.349365), (14.924375, -47.552826, -3.998974), (15.113212, -47.552826, -3.2124124), (12.658161, -48.29629, -2.6905754), (12.658161, -48.29629, -2.6905754), (15.113212, -47.552826, -3.2124124), (15.260624, -47.552826, -2.4170454), (12.781628, -48.29629, -2.024411), (12.781628, -48.29629, -2.024411), (15.260624, -47.552826, -2.4170454), (15.366208, -47.552826, -1.6150535), (12.87006, -48.29629, -1.3526978), (12.87006, -48.29629, -1.3526978), (15.366208, -47.552826, -1.6150535), (15.429675, -47.552826, -0.808635), (12.923217, -48.29629, -0.6772771), (12.923217, -48.29629, -0.6772771), (15.429675, -47.552826, -0.808635), (15.45085, -47.552826, 0), (12.940952, -48.29629, 0), (15.45085, -47.552826, 0), (17.918398, -46.67902, 0), (17.89384, -46.67902, 0.93777645), (15.429675, -47.552826, 0.808635), (15.429675, -47.552826, 0.808635), (17.89384, -46.67902, 0.93777645), (17.820238, -46.67902, 1.8729825), (15.366208, -47.552826, 1.6150535), (15.366208, -47.552826, 1.6150535), (17.820238, -46.67902, 1.8729825), (17.697792, -46.67902, 2.8030548), (15.260624, -47.552826, 2.4170454), (15.260624, -47.552826, 2.4170454), (17.697792, -46.67902, 2.8030548), (17.526838, -46.67902, 3.7254443), (15.113212, -47.552826, 3.2124124), (15.113212, -47.552826, 3.2124124), (17.526838, -46.67902, 3.7254443), (17.307842, -46.67902, 4.6376224), (14.924375, -47.552826, 3.998974), (14.924375, -47.552826, 3.998974), (17.307842, -46.67902, 4.6376224), (17.041409, -46.67902, 5.5370893), (14.694632, -47.552826, 4.774575), (14.694632, -47.552826, 4.774575), (17.041409, -46.67902, 5.5370893), (16.728266, -46.67902, 6.4213796), (14.424611, -47.552826, 5.5370893), (14.424611, -47.552826, 5.5370893), (16.728266, -46.67902, 6.4213796), (16.36927, -46.67902, 7.288069), (14.115053, -47.552826, 6.2844267), (14.115053, -47.552826, 6.2844267), (16.36927, -46.67902, 7.288069), (15.965409, -46.67902, 8.134782), (13.766808, -47.552826, 7.014539), (13.766808, -47.552826, 7.014539), (15.965409, -46.67902, 8.134782), (15.517787, -46.67902, 8.959199), (13.380828, -47.552826, 7.725425), (13.380828, -47.552826, 7.725425), (15.517787, -46.67902, 8.959199), (15.027633, -46.67902, 9.759059), (12.958173, -47.552826, 8.415136), (12.958173, -47.552826, 8.415136), (15.027633, -46.67902, 9.759059), (14.496288, -46.67902, 10.532169), (12.5, -47.552826, 9.081781), (12.5, -47.552826, 9.081781), (14.496288, -46.67902, 10.532169), (13.92521, -46.67902, 11.276413), (12.0075655, -47.552826, 9.723535), (12.0075655, -47.552826, 9.723535), (13.92521, -46.67902, 11.276413), (13.315965, -46.67902, 11.989748), (11.482219, -47.552826, 10.338636), (11.482219, -47.552826, 10.338636), (13.315965, -46.67902, 11.989748), (12.67022, -46.67902, 12.67022), (10.925401, -47.552826, 10.925401), (10.925401, -47.552826, 10.925401), (12.67022, -46.67902, 12.67022), (11.989748, -46.67902, 13.315965), (10.338636, -47.552826, 11.482219), (10.338636, -47.552826, 11.482219), (11.989748, -46.67902, 13.315965), (11.276413, -46.67902, 13.92521), (9.723535, -47.552826, 12.0075655), (9.723535, -47.552826, 12.0075655), (11.276413, -46.67902, 13.92521), (10.532169, -46.67902, 14.496288), (9.081781, -47.552826, 12.5), (9.081781, -47.552826, 12.5), (10.532169, -46.67902, 14.496288), (9.759059, -46.67902, 15.027633), (8.415136, -47.552826, 12.958173), (8.415136, -47.552826, 12.958173), (9.759059, -46.67902, 15.027633), (8.959199, -46.67902, 15.517787), (7.725425, -47.552826, 13.380828), (7.725425, -47.552826, 13.380828), (8.959199, -46.67902, 15.517787), (8.134782, -46.67902, 15.965409), (7.014539, -47.552826, 13.766808), (7.014539, -47.552826, 13.766808), (8.134782, -46.67902, 15.965409), (7.288069, -46.67902, 16.36927), (6.2844267, -47.552826, 14.115053), (6.2844267, -47.552826, 14.115053), (7.288069, -46.67902, 16.36927), (6.4213796, -46.67902, 16.728266), (5.5370893, -47.552826, 14.424611), (5.5370893, -47.552826, 14.424611), (6.4213796, -46.67902, 16.728266), (5.5370893, -46.67902, 17.041409), (4.774575, -47.552826, 14.694632), (4.774575, -47.552826, 14.694632), (5.5370893, -46.67902, 17.041409), (4.6376224, -46.67902, 17.307842), (3.998974, -47.552826, 14.924375), (3.998974, -47.552826, 14.924375), (4.6376224, -46.67902, 17.307842), (3.7254443, -46.67902, 17.526838), (3.2124124, -47.552826, 15.113212), (3.2124124, -47.552826, 15.113212), (3.7254443, -46.67902, 17.526838), (2.8030548, -46.67902, 17.697792), (2.4170454, -47.552826, 15.260624), (2.4170454, -47.552826, 15.260624), (2.8030548, -46.67902, 17.697792), (1.8729825, -46.67902, 17.820238), (1.6150535, -47.552826, 15.366208), (1.6150535, -47.552826, 15.366208), (1.8729825, -46.67902, 17.820238), (0.93777645, -46.67902, 17.89384), (0.808635, -47.552826, 15.429675), (0.808635, -47.552826, 15.429675), (0.93777645, -46.67902, 17.89384), (1.0971854e-15, -46.67902, 17.918398), (9.460917e-16, -47.552826, 15.45085), (9.460917e-16, -47.552826, 15.45085), (1.0971854e-15, -46.67902, 17.918398), (-0.93777645, -46.67902, 17.89384), (-0.808635, -47.552826, 15.429675), (-0.808635, -47.552826, 15.429675), (-0.93777645, -46.67902, 17.89384), (-1.8729825, -46.67902, 17.820238), (-1.6150535, -47.552826, 15.366208), (-1.6150535, -47.552826, 15.366208), (-1.8729825, -46.67902, 17.820238), (-2.8030548, -46.67902, 17.697792), (-2.4170454, -47.552826, 15.260624), (-2.4170454, -47.552826, 15.260624), (-2.8030548, -46.67902, 17.697792), (-3.7254443, -46.67902, 17.526838), (-3.2124124, -47.552826, 15.113212), (-3.2124124, -47.552826, 15.113212), (-3.7254443, -46.67902, 17.526838), (-4.6376224, -46.67902, 17.307842), (-3.998974, -47.552826, 14.924375), (-3.998974, -47.552826, 14.924375), (-4.6376224, -46.67902, 17.307842), (-5.5370893, -46.67902, 17.041409), (-4.774575, -47.552826, 14.694632), (-4.774575, -47.552826, 14.694632), (-5.5370893, -46.67902, 17.041409), (-6.4213796, -46.67902, 16.728266), (-5.5370893, -47.552826, 14.424611), (-5.5370893, -47.552826, 14.424611), (-6.4213796, -46.67902, 16.728266), (-7.288069, -46.67902, 16.36927), (-6.2844267, -47.552826, 14.115053), (-6.2844267, -47.552826, 14.115053), (-7.288069, -46.67902, 16.36927), (-8.134782, -46.67902, 15.965409), (-7.014539, -47.552826, 13.766808), (-7.014539, -47.552826, 13.766808), (-8.134782, -46.67902, 15.965409), (-8.959199, -46.67902, 15.517787), (-7.725425, -47.552826, 13.380828), (-7.725425, -47.552826, 13.380828), (-8.959199, -46.67902, 15.517787), (-9.759059, -46.67902, 15.027633), (-8.415136, -47.552826, 12.958173), (-8.415136, -47.552826, 12.958173), (-9.759059, -46.67902, 15.027633), (-10.532169, -46.67902, 14.496288), (-9.081781, -47.552826, 12.5), (-9.081781, -47.552826, 12.5), (-10.532169, -46.67902, 14.496288), (-11.276413, -46.67902, 13.92521), (-9.723535, -47.552826, 12.0075655), (-9.723535, -47.552826, 12.0075655), (-11.276413, -46.67902, 13.92521), (-11.989748, -46.67902, 13.315965), (-10.338636, -47.552826, 11.482219), (-10.338636, -47.552826, 11.482219), (-11.989748, -46.67902, 13.315965), (-12.67022, -46.67902, 12.67022), (-10.925401, -47.552826, 10.925401), (-10.925401, -47.552826, 10.925401), (-12.67022, -46.67902, 12.67022), (-13.315965, -46.67902, 11.989748), (-11.482219, -47.552826, 10.338636), (-11.482219, -47.552826, 10.338636), (-13.315965, -46.67902, 11.989748), (-13.92521, -46.67902, 11.276413), (-12.0075655, -47.552826, 9.723535), (-12.0075655, -47.552826, 9.723535), (-13.92521, -46.67902, 11.276413), (-14.496288, -46.67902, 10.532169), (-12.5, -47.552826, 9.081781), (-12.5, -47.552826, 9.081781), (-14.496288, -46.67902, 10.532169), (-15.027633, -46.67902, 9.759059), (-12.958173, -47.552826, 8.415136), (-12.958173, -47.552826, 8.415136), (-15.027633, -46.67902, 9.759059), (-15.517787, -46.67902, 8.959199), (-13.380828, -47.552826, 7.725425), (-13.380828, -47.552826, 7.725425), (-15.517787, -46.67902, 8.959199), (-15.965409, -46.67902, 8.134782), (-13.766808, -47.552826, 7.014539), (-13.766808, -47.552826, 7.014539), (-15.965409, -46.67902, 8.134782), (-16.36927, -46.67902, 7.288069), (-14.115053, -47.552826, 6.2844267), (-14.115053, -47.552826, 6.2844267), (-16.36927, -46.67902, 7.288069), (-16.728266, -46.67902, 6.4213796), (-14.424611, -47.552826, 5.5370893), (-14.424611, -47.552826, 5.5370893), (-16.728266, -46.67902, 6.4213796), (-17.041409, -46.67902, 5.5370893), (-14.694632, -47.552826, 4.774575), (-14.694632, -47.552826, 4.774575), (-17.041409, -46.67902, 5.5370893), (-17.307842, -46.67902, 4.6376224), (-14.924375, -47.552826, 3.998974), (-14.924375, -47.552826, 3.998974), (-17.307842, -46.67902, 4.6376224), (-17.526838, -46.67902, 3.7254443), (-15.113212, -47.552826, 3.2124124), (-15.113212, -47.552826, 3.2124124), (-17.526838, -46.67902, 3.7254443), (-17.697792, -46.67902, 2.8030548), (-15.260624, -47.552826, 2.4170454), (-15.260624, -47.552826, 2.4170454), (-17.697792, -46.67902, 2.8030548), (-17.820238, -46.67902, 1.8729825), (-15.366208, -47.552826, 1.6150535), (-15.366208, -47.552826, 1.6150535), (-17.820238, -46.67902, 1.8729825), (-17.89384, -46.67902, 0.93777645), (-15.429675, -47.552826, 0.808635), (-15.429675, -47.552826, 0.808635), (-17.89384, -46.67902, 0.93777645), (-17.918398, -46.67902, 2.1943708e-15), (-15.45085, -47.552826, 1.8921833e-15), (-15.45085, -47.552826, 1.8921833e-15), (-17.918398, -46.67902, 2.1943708e-15), (-17.89384, -46.67902, -0.93777645), (-15.429675, -47.552826, -0.808635), (-15.429675, -47.552826, -0.808635), (-17.89384, -46.67902, -0.93777645), (-17.820238, -46.67902, -1.8729825), (-15.366208, -47.552826, -1.6150535), (-15.366208, -47.552826, -1.6150535), (-17.820238, -46.67902, -1.8729825), (-17.697792, -46.67902, -2.8030548), (-15.260624, -47.552826, -2.4170454), (-15.260624, -47.552826, -2.4170454), (-17.697792, -46.67902, -2.8030548), (-17.526838, -46.67902, -3.7254443), (-15.113212, -47.552826, -3.2124124), (-15.113212, -47.552826, -3.2124124), (-17.526838, -46.67902, -3.7254443), (-17.307842, -46.67902, -4.6376224), (-14.924375, -47.552826, -3.998974), (-14.924375, -47.552826, -3.998974), (-17.307842, -46.67902, -4.6376224), (-17.041409, -46.67902, -5.5370893), (-14.694632, -47.552826, -4.774575), (-14.694632, -47.552826, -4.774575), (-17.041409, -46.67902, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-14.424611, -47.552826, -5.5370893), (-14.424611, -47.552826, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-16.36927, -46.67902, -7.288069), (-14.115053, -47.552826, -6.2844267), (-14.115053, -47.552826, -6.2844267), (-16.36927, -46.67902, -7.288069), (-15.965409, -46.67902, -8.134782), (-13.766808, -47.552826, -7.014539), (-13.766808, -47.552826, -7.014539), (-15.965409, -46.67902, -8.134782), (-15.517787, -46.67902, -8.959199), (-13.380828, -47.552826, -7.725425), (-13.380828, -47.552826, -7.725425), (-15.517787, -46.67902, -8.959199), (-15.027633, -46.67902, -9.759059), (-12.958173, -47.552826, -8.415136), (-12.958173, -47.552826, -8.415136), (-15.027633, -46.67902, -9.759059), (-14.496288, -46.67902, -10.532169), (-12.5, -47.552826, -9.081781), (-12.5, -47.552826, -9.081781), (-14.496288, -46.67902, -10.532169), (-13.92521, -46.67902, -11.276413), (-12.0075655, -47.552826, -9.723535), (-12.0075655, -47.552826, -9.723535), (-13.92521, -46.67902, -11.276413), (-13.315965, -46.67902, -11.989748), (-11.482219, -47.552826, -10.338636), (-11.482219, -47.552826, -10.338636), (-13.315965, -46.67902, -11.989748), (-12.67022, -46.67902, -12.67022), (-10.925401, -47.552826, -10.925401), (-10.925401, -47.552826, -10.925401), (-12.67022, -46.67902, -12.67022), (-11.989748, -46.67902, -13.315965), (-10.338636, -47.552826, -11.482219), (-10.338636, -47.552826, -11.482219), (-11.989748, -46.67902, -13.315965), (-11.276413, -46.67902, -13.92521), (-9.723535, -47.552826, -12.0075655), (-9.723535, -47.552826, -12.0075655), (-11.276413, -46.67902, -13.92521), (-10.532169, -46.67902, -14.496288), (-9.081781, -47.552826, -12.5), (-9.081781, -47.552826, -12.5), (-10.532169, -46.67902, -14.496288), (-9.759059, -46.67902, -15.027633), (-8.415136, -47.552826, -12.958173), (-8.415136, -47.552826, -12.958173), (-9.759059, -46.67902, -15.027633), (-8.959199, -46.67902, -15.517787), (-7.725425, -47.552826, -13.380828), (-7.725425, -47.552826, -13.380828), (-8.959199, -46.67902, -15.517787), (-8.134782, -46.67902, -15.965409), (-7.014539, -47.552826, -13.766808), (-7.014539, -47.552826, -13.766808), (-8.134782, -46.67902, -15.965409), (-7.288069, -46.67902, -16.36927), (-6.2844267, -47.552826, -14.115053), (-6.2844267, -47.552826, -14.115053), (-7.288069, -46.67902, -16.36927), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -47.552826, -14.424611), (-5.5370893, -47.552826, -14.424611), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -46.67902, -17.041409), (-4.774575, -47.552826, -14.694632), (-4.774575, -47.552826, -14.694632), (-5.5370893, -46.67902, -17.041409), (-4.6376224, -46.67902, -17.307842), (-3.998974, -47.552826, -14.924375), (-3.998974, -47.552826, -14.924375), (-4.6376224, -46.67902, -17.307842), (-3.7254443, -46.67902, -17.526838), (-3.2124124, -47.552826, -15.113212), (-3.2124124, -47.552826, -15.113212), (-3.7254443, -46.67902, -17.526838), (-2.8030548, -46.67902, -17.697792), (-2.4170454, -47.552826, -15.260624), (-2.4170454, -47.552826, -15.260624), (-2.8030548, -46.67902, -17.697792), (-1.8729825, -46.67902, -17.820238), (-1.6150535, -47.552826, -15.366208), (-1.6150535, -47.552826, -15.366208), (-1.8729825, -46.67902, -17.820238), (-0.93777645, -46.67902, -17.89384), (-0.808635, -47.552826, -15.429675), (-0.808635, -47.552826, -15.429675), (-0.93777645, -46.67902, -17.89384), (-3.2915563e-15, -46.67902, -17.918398), (-2.838275e-15, -47.552826, -15.45085), (-2.838275e-15, -47.552826, -15.45085), (-3.2915563e-15, -46.67902, -17.918398), (0.93777645, -46.67902, -17.89384), (0.808635, -47.552826, -15.429675), (0.808635, -47.552826, -15.429675), (0.93777645, -46.67902, -17.89384), (1.8729825, -46.67902, -17.820238), (1.6150535, -47.552826, -15.366208), (1.6150535, -47.552826, -15.366208), (1.8729825, -46.67902, -17.820238), (2.8030548, -46.67902, -17.697792), (2.4170454, -47.552826, -15.260624), (2.4170454, -47.552826, -15.260624), (2.8030548, -46.67902, -17.697792), (3.7254443, -46.67902, -17.526838), (3.2124124, -47.552826, -15.113212), (3.2124124, -47.552826, -15.113212), (3.7254443, -46.67902, -17.526838), (4.6376224, -46.67902, -17.307842), (3.998974, -47.552826, -14.924375), (3.998974, -47.552826, -14.924375), (4.6376224, -46.67902, -17.307842), (5.5370893, -46.67902, -17.041409), (4.774575, -47.552826, -14.694632), (4.774575, -47.552826, -14.694632), (5.5370893, -46.67902, -17.041409), (6.4213796, -46.67902, -16.728266), (5.5370893, -47.552826, -14.424611), (5.5370893, -47.552826, -14.424611), (6.4213796, -46.67902, -16.728266), (7.288069, -46.67902, -16.36927), (6.2844267, -47.552826, -14.115053), (6.2844267, -47.552826, -14.115053), (7.288069, -46.67902, -16.36927), (8.134782, -46.67902, -15.965409), (7.014539, -47.552826, -13.766808), (7.014539, -47.552826, -13.766808), (8.134782, -46.67902, -15.965409), (8.959199, -46.67902, -15.517787), (7.725425, -47.552826, -13.380828), (7.725425, -47.552826, -13.380828), (8.959199, -46.67902, -15.517787), (9.759059, -46.67902, -15.027633), (8.415136, -47.552826, -12.958173), (8.415136, -47.552826, -12.958173), (9.759059, -46.67902, -15.027633), (10.532169, -46.67902, -14.496288), (9.081781, -47.552826, -12.5), (9.081781, -47.552826, -12.5), (10.532169, -46.67902, -14.496288), (11.276413, -46.67902, -13.92521), (9.723535, -47.552826, -12.0075655), (9.723535, -47.552826, -12.0075655), (11.276413, -46.67902, -13.92521), (11.989748, -46.67902, -13.315965), (10.338636, -47.552826, -11.482219), (10.338636, -47.552826, -11.482219), (11.989748, -46.67902, -13.315965), (12.67022, -46.67902, -12.67022), (10.925401, -47.552826, -10.925401), (10.925401, -47.552826, -10.925401), (12.67022, -46.67902, -12.67022), (13.315965, -46.67902, -11.989748), (11.482219, -47.552826, -10.338636), (11.482219, -47.552826, -10.338636), (13.315965, -46.67902, -11.989748), (13.92521, -46.67902, -11.276413), (12.0075655, -47.552826, -9.723535), (12.0075655, -47.552826, -9.723535), (13.92521, -46.67902, -11.276413), (14.496288, -46.67902, -10.532169), (12.5, -47.552826, -9.081781), (12.5, -47.552826, -9.081781), (14.496288, -46.67902, -10.532169), (15.027633, -46.67902, -9.759059), (12.958173, -47.552826, -8.415136), (12.958173, -47.552826, -8.415136), (15.027633, -46.67902, -9.759059), (15.517787, -46.67902, -8.959199), (13.380828, -47.552826, -7.725425), (13.380828, -47.552826, -7.725425), (15.517787, -46.67902, -8.959199), (15.965409, -46.67902, -8.134782), (13.766808, -47.552826, -7.014539), (13.766808, -47.552826, -7.014539), (15.965409, -46.67902, -8.134782), (16.36927, -46.67902, -7.288069), (14.115053, -47.552826, -6.2844267), (14.115053, -47.552826, -6.2844267), (16.36927, -46.67902, -7.288069), (16.728266, -46.67902, -6.4213796), (14.424611, -47.552826, -5.5370893), (14.424611, -47.552826, -5.5370893), (16.728266, -46.67902, -6.4213796), (17.041409, -46.67902, -5.5370893), (14.694632, -47.552826, -4.774575), (14.694632, -47.552826, -4.774575), (17.041409, -46.67902, -5.5370893), (17.307842, -46.67902, -4.6376224), (14.924375, -47.552826, -3.998974), (14.924375, -47.552826, -3.998974), (17.307842, -46.67902, -4.6376224), (17.526838, -46.67902, -3.7254443), (15.113212, -47.552826, -3.2124124), (15.113212, -47.552826, -3.2124124), (17.526838, -46.67902, -3.7254443), (17.697792, -46.67902, -2.8030548), (15.260624, -47.552826, -2.4170454), (15.260624, -47.552826, -2.4170454), (17.697792, -46.67902, -2.8030548), (17.820238, -46.67902, -1.8729825), (15.366208, -47.552826, -1.6150535), (15.366208, -47.552826, -1.6150535), (17.820238, -46.67902, -1.8729825), (17.89384, -46.67902, -0.93777645), (15.429675, -47.552826, -0.808635), (15.429675, -47.552826, -0.808635), (17.89384, -46.67902, -0.93777645), (17.918398, -46.67902, 0), (15.45085, -47.552826, 0), (17.918398, -46.67902, 0), (20.336832, -45.677273, 0), (20.308962, -45.677273, 1.0643475), (17.89384, -46.67902, 0.93777645), (17.89384, -46.67902, 0.93777645), (20.308962, -45.677273, 1.0643475), (20.225426, -45.677273, 2.1257777), (17.820238, -46.67902, 1.8729825), (17.820238, -46.67902, 1.8729825), (20.225426, -45.677273, 2.1257777), (20.086452, -45.677273, 3.1813815), (17.697792, -46.67902, 2.8030548), (17.697792, -46.67902, 2.8030548), (20.086452, -45.677273, 3.1813815), (19.892424, -45.677273, 4.2282653), (17.526838, -46.67902, 3.7254443), (17.526838, -46.67902, 3.7254443), (19.892424, -45.677273, 4.2282653), (19.643871, -45.677273, 5.2635593), (17.307842, -46.67902, 4.6376224), (17.307842, -46.67902, 4.6376224), (19.643871, -45.677273, 5.2635593), (19.341476, -45.677273, 6.2844267), (17.041409, -46.67902, 5.5370893), (17.041409, -46.67902, 5.5370893), (19.341476, -45.677273, 6.2844267), (18.986069, -45.677273, 7.288069), (16.728266, -46.67902, 6.4213796), (16.728266, -46.67902, 6.4213796), (18.986069, -45.677273, 7.288069), (18.57862, -45.677273, 8.271735), (16.36927, -46.67902, 7.288069), (16.36927, -46.67902, 7.288069), (18.57862, -45.677273, 8.271735), (18.12025, -45.677273, 9.232729), (15.965409, -46.67902, 8.134782), (15.965409, -46.67902, 8.134782), (18.12025, -45.677273, 9.232729), (17.612213, -45.677273, 10.168416), (15.517787, -46.67902, 8.959199), (15.517787, -46.67902, 8.959199), (17.612213, -45.677273, 10.168416), (17.055902, -45.677273, 11.076233), (15.027633, -46.67902, 9.759059), (15.027633, -46.67902, 9.759059), (17.055902, -45.677273, 11.076233), (16.452843, -45.677273, 11.95369), (14.496288, -46.67902, 10.532169), (14.496288, -46.67902, 10.532169), (16.452843, -45.677273, 11.95369), (15.804687, -45.677273, 12.798383), (13.92521, -46.67902, 11.276413), (13.92521, -46.67902, 11.276413), (15.804687, -45.677273, 12.798383), (15.113212, -45.677273, 13.607997), (13.315965, -46.67902, 11.989748), (13.315965, -46.67902, 11.989748), (15.113212, -45.677273, 13.607997), (14.380312, -45.677273, 14.380312), (12.67022, -46.67902, 12.67022), (12.67022, -46.67902, 12.67022), (14.380312, -45.677273, 14.380312), (13.607997, -45.677273, 15.113212), (11.989748, -46.67902, 13.315965), (11.989748, -46.67902, 13.315965), (13.607997, -45.677273, 15.113212), (12.798383, -45.677273, 15.804687), (11.276413, -46.67902, 13.92521), (11.276413, -46.67902, 13.92521), (12.798383, -45.677273, 15.804687), (11.95369, -45.677273, 16.452843), (10.532169, -46.67902, 14.496288), (10.532169, -46.67902, 14.496288), (11.95369, -45.677273, 16.452843), (11.076233, -45.677273, 17.055902), (9.759059, -46.67902, 15.027633), (9.759059, -46.67902, 15.027633), (11.076233, -45.677273, 17.055902), (10.168416, -45.677273, 17.612213), (8.959199, -46.67902, 15.517787), (8.959199, -46.67902, 15.517787), (10.168416, -45.677273, 17.612213), (9.232729, -45.677273, 18.12025), (8.134782, -46.67902, 15.965409), (8.134782, -46.67902, 15.965409), (9.232729, -45.677273, 18.12025), (8.271735, -45.677273, 18.57862), (7.288069, -46.67902, 16.36927), (7.288069, -46.67902, 16.36927), (8.271735, -45.677273, 18.57862), (7.288069, -45.677273, 18.986069), (6.4213796, -46.67902, 16.728266), (6.4213796, -46.67902, 16.728266), (7.288069, -45.677273, 18.986069), (6.2844267, -45.677273, 19.341476), (5.5370893, -46.67902, 17.041409), (5.5370893, -46.67902, 17.041409), (6.2844267, -45.677273, 19.341476), (5.2635593, -45.677273, 19.643871), (4.6376224, -46.67902, 17.307842), (4.6376224, -46.67902, 17.307842), (5.2635593, -45.677273, 19.643871), (4.2282653, -45.677273, 19.892424), (3.7254443, -46.67902, 17.526838), (3.7254443, -46.67902, 17.526838), (4.2282653, -45.677273, 19.892424), (3.1813815, -45.677273, 20.086452), (2.8030548, -46.67902, 17.697792), (2.8030548, -46.67902, 17.697792), (3.1813815, -45.677273, 20.086452), (2.1257777, -45.677273, 20.225426), (1.8729825, -46.67902, 17.820238), (1.8729825, -46.67902, 17.820238), (2.1257777, -45.677273, 20.225426), (1.0643475, -45.677273, 20.308962), (0.93777645, -46.67902, 17.89384), (0.93777645, -46.67902, 17.89384), (1.0643475, -45.677273, 20.308962), (1.2452718e-15, -45.677273, 20.336832), (1.0971854e-15, -46.67902, 17.918398), (1.0971854e-15, -46.67902, 17.918398), (1.2452718e-15, -45.677273, 20.336832), (-1.0643475, -45.677273, 20.308962), (-0.93777645, -46.67902, 17.89384), (-0.93777645, -46.67902, 17.89384), (-1.0643475, -45.677273, 20.308962), (-2.1257777, -45.677273, 20.225426), (-1.8729825, -46.67902, 17.820238), (-1.8729825, -46.67902, 17.820238), (-2.1257777, -45.677273, 20.225426), (-3.1813815, -45.677273, 20.086452), (-2.8030548, -46.67902, 17.697792), (-2.8030548, -46.67902, 17.697792), (-3.1813815, -45.677273, 20.086452), (-4.2282653, -45.677273, 19.892424), (-3.7254443, -46.67902, 17.526838), (-3.7254443, -46.67902, 17.526838), (-4.2282653, -45.677273, 19.892424), (-5.2635593, -45.677273, 19.643871), (-4.6376224, -46.67902, 17.307842), (-4.6376224, -46.67902, 17.307842), (-5.2635593, -45.677273, 19.643871), (-6.2844267, -45.677273, 19.341476), (-5.5370893, -46.67902, 17.041409), (-5.5370893, -46.67902, 17.041409), (-6.2844267, -45.677273, 19.341476), (-7.288069, -45.677273, 18.986069), (-6.4213796, -46.67902, 16.728266), (-6.4213796, -46.67902, 16.728266), (-7.288069, -45.677273, 18.986069), (-8.271735, -45.677273, 18.57862), (-7.288069, -46.67902, 16.36927), (-7.288069, -46.67902, 16.36927), (-8.271735, -45.677273, 18.57862), (-9.232729, -45.677273, 18.12025), (-8.134782, -46.67902, 15.965409), (-8.134782, -46.67902, 15.965409), (-9.232729, -45.677273, 18.12025), (-10.168416, -45.677273, 17.612213), (-8.959199, -46.67902, 15.517787), (-8.959199, -46.67902, 15.517787), (-10.168416, -45.677273, 17.612213), (-11.076233, -45.677273, 17.055902), (-9.759059, -46.67902, 15.027633), (-9.759059, -46.67902, 15.027633), (-11.076233, -45.677273, 17.055902), (-11.95369, -45.677273, 16.452843), (-10.532169, -46.67902, 14.496288), (-10.532169, -46.67902, 14.496288), (-11.95369, -45.677273, 16.452843), (-12.798383, -45.677273, 15.804687), (-11.276413, -46.67902, 13.92521), (-11.276413, -46.67902, 13.92521), (-12.798383, -45.677273, 15.804687), (-13.607997, -45.677273, 15.113212), (-11.989748, -46.67902, 13.315965), (-11.989748, -46.67902, 13.315965), (-13.607997, -45.677273, 15.113212), (-14.380312, -45.677273, 14.380312), (-12.67022, -46.67902, 12.67022), (-12.67022, -46.67902, 12.67022), (-14.380312, -45.677273, 14.380312), (-15.113212, -45.677273, 13.607997), (-13.315965, -46.67902, 11.989748), (-13.315965, -46.67902, 11.989748), (-15.113212, -45.677273, 13.607997), (-15.804687, -45.677273, 12.798383), (-13.92521, -46.67902, 11.276413), (-13.92521, -46.67902, 11.276413), (-15.804687, -45.677273, 12.798383), (-16.452843, -45.677273, 11.95369), (-14.496288, -46.67902, 10.532169), (-14.496288, -46.67902, 10.532169), (-16.452843, -45.677273, 11.95369), (-17.055902, -45.677273, 11.076233), (-15.027633, -46.67902, 9.759059), (-15.027633, -46.67902, 9.759059), (-17.055902, -45.677273, 11.076233), (-17.612213, -45.677273, 10.168416), (-15.517787, -46.67902, 8.959199), (-15.517787, -46.67902, 8.959199), (-17.612213, -45.677273, 10.168416), (-18.12025, -45.677273, 9.232729), (-15.965409, -46.67902, 8.134782), (-15.965409, -46.67902, 8.134782), (-18.12025, -45.677273, 9.232729), (-18.57862, -45.677273, 8.271735), (-16.36927, -46.67902, 7.288069), (-16.36927, -46.67902, 7.288069), (-18.57862, -45.677273, 8.271735), (-18.986069, -45.677273, 7.288069), (-16.728266, -46.67902, 6.4213796), (-16.728266, -46.67902, 6.4213796), (-18.986069, -45.677273, 7.288069), (-19.341476, -45.677273, 6.2844267), (-17.041409, -46.67902, 5.5370893), (-17.041409, -46.67902, 5.5370893), (-19.341476, -45.677273, 6.2844267), (-19.643871, -45.677273, 5.2635593), (-17.307842, -46.67902, 4.6376224), (-17.307842, -46.67902, 4.6376224), (-19.643871, -45.677273, 5.2635593), (-19.892424, -45.677273, 4.2282653), (-17.526838, -46.67902, 3.7254443), (-17.526838, -46.67902, 3.7254443), (-19.892424, -45.677273, 4.2282653), (-20.086452, -45.677273, 3.1813815), (-17.697792, -46.67902, 2.8030548), (-17.697792, -46.67902, 2.8030548), (-20.086452, -45.677273, 3.1813815), (-20.225426, -45.677273, 2.1257777), (-17.820238, -46.67902, 1.8729825), (-17.820238, -46.67902, 1.8729825), (-20.225426, -45.677273, 2.1257777), (-20.308962, -45.677273, 1.0643475), (-17.89384, -46.67902, 0.93777645), (-17.89384, -46.67902, 0.93777645), (-20.308962, -45.677273, 1.0643475), (-20.336832, -45.677273, 2.4905437e-15), (-17.918398, -46.67902, 2.1943708e-15), (-17.918398, -46.67902, 2.1943708e-15), (-20.336832, -45.677273, 2.4905437e-15), (-20.308962, -45.677273, -1.0643475), (-17.89384, -46.67902, -0.93777645), (-17.89384, -46.67902, -0.93777645), (-20.308962, -45.677273, -1.0643475), (-20.225426, -45.677273, -2.1257777), (-17.820238, -46.67902, -1.8729825), (-17.820238, -46.67902, -1.8729825), (-20.225426, -45.677273, -2.1257777), (-20.086452, -45.677273, -3.1813815), (-17.697792, -46.67902, -2.8030548), (-17.697792, -46.67902, -2.8030548), (-20.086452, -45.677273, -3.1813815), (-19.892424, -45.677273, -4.2282653), (-17.526838, -46.67902, -3.7254443), (-17.526838, -46.67902, -3.7254443), (-19.892424, -45.677273, -4.2282653), (-19.643871, -45.677273, -5.2635593), (-17.307842, -46.67902, -4.6376224), (-17.307842, -46.67902, -4.6376224), (-19.643871, -45.677273, -5.2635593), (-19.341476, -45.677273, -6.2844267), (-17.041409, -46.67902, -5.5370893), (-17.041409, -46.67902, -5.5370893), (-19.341476, -45.677273, -6.2844267), (-18.986069, -45.677273, -7.288069), (-16.728266, -46.67902, -6.4213796), (-16.728266, -46.67902, -6.4213796), (-18.986069, -45.677273, -7.288069), (-18.57862, -45.677273, -8.271735), (-16.36927, -46.67902, -7.288069), (-16.36927, -46.67902, -7.288069), (-18.57862, -45.677273, -8.271735), (-18.12025, -45.677273, -9.232729), (-15.965409, -46.67902, -8.134782), (-15.965409, -46.67902, -8.134782), (-18.12025, -45.677273, -9.232729), (-17.612213, -45.677273, -10.168416), (-15.517787, -46.67902, -8.959199), (-15.517787, -46.67902, -8.959199), (-17.612213, -45.677273, -10.168416), (-17.055902, -45.677273, -11.076233), (-15.027633, -46.67902, -9.759059), (-15.027633, -46.67902, -9.759059), (-17.055902, -45.677273, -11.076233), (-16.452843, -45.677273, -11.95369), (-14.496288, -46.67902, -10.532169), (-14.496288, -46.67902, -10.532169), (-16.452843, -45.677273, -11.95369), (-15.804687, -45.677273, -12.798383), (-13.92521, -46.67902, -11.276413), (-13.92521, -46.67902, -11.276413), (-15.804687, -45.677273, -12.798383), (-15.113212, -45.677273, -13.607997), (-13.315965, -46.67902, -11.989748), (-13.315965, -46.67902, -11.989748), (-15.113212, -45.677273, -13.607997), (-14.380312, -45.677273, -14.380312), (-12.67022, -46.67902, -12.67022), (-12.67022, -46.67902, -12.67022), (-14.380312, -45.677273, -14.380312), (-13.607997, -45.677273, -15.113212), (-11.989748, -46.67902, -13.315965), (-11.989748, -46.67902, -13.315965), (-13.607997, -45.677273, -15.113212), (-12.798383, -45.677273, -15.804687), (-11.276413, -46.67902, -13.92521), (-11.276413, -46.67902, -13.92521), (-12.798383, -45.677273, -15.804687), (-11.95369, -45.677273, -16.452843), (-10.532169, -46.67902, -14.496288), (-10.532169, -46.67902, -14.496288), (-11.95369, -45.677273, -16.452843), (-11.076233, -45.677273, -17.055902), (-9.759059, -46.67902, -15.027633), (-9.759059, -46.67902, -15.027633), (-11.076233, -45.677273, -17.055902), (-10.168416, -45.677273, -17.612213), (-8.959199, -46.67902, -15.517787), (-8.959199, -46.67902, -15.517787), (-10.168416, -45.677273, -17.612213), (-9.232729, -45.677273, -18.12025), (-8.134782, -46.67902, -15.965409), (-8.134782, -46.67902, -15.965409), (-9.232729, -45.677273, -18.12025), (-8.271735, -45.677273, -18.57862), (-7.288069, -46.67902, -16.36927), (-7.288069, -46.67902, -16.36927), (-8.271735, -45.677273, -18.57862), (-7.288069, -45.677273, -18.986069), (-6.4213796, -46.67902, -16.728266), (-6.4213796, -46.67902, -16.728266), (-7.288069, -45.677273, -18.986069), (-6.2844267, -45.677273, -19.341476), (-5.5370893, -46.67902, -17.041409), (-5.5370893, -46.67902, -17.041409), (-6.2844267, -45.677273, -19.341476), (-5.2635593, -45.677273, -19.643871), (-4.6376224, -46.67902, -17.307842), (-4.6376224, -46.67902, -17.307842), (-5.2635593, -45.677273, -19.643871), (-4.2282653, -45.677273, -19.892424), (-3.7254443, -46.67902, -17.526838), (-3.7254443, -46.67902, -17.526838), (-4.2282653, -45.677273, -19.892424), (-3.1813815, -45.677273, -20.086452), (-2.8030548, -46.67902, -17.697792), (-2.8030548, -46.67902, -17.697792), (-3.1813815, -45.677273, -20.086452), (-2.1257777, -45.677273, -20.225426), (-1.8729825, -46.67902, -17.820238), (-1.8729825, -46.67902, -17.820238), (-2.1257777, -45.677273, -20.225426), (-1.0643475, -45.677273, -20.308962), (-0.93777645, -46.67902, -17.89384), (-0.93777645, -46.67902, -17.89384), (-1.0643475, -45.677273, -20.308962), (-3.7358155e-15, -45.677273, -20.336832), (-3.2915563e-15, -46.67902, -17.918398), (-3.2915563e-15, -46.67902, -17.918398), (-3.7358155e-15, -45.677273, -20.336832), (1.0643475, -45.677273, -20.308962), (0.93777645, -46.67902, -17.89384), (0.93777645, -46.67902, -17.89384), (1.0643475, -45.677273, -20.308962), (2.1257777, -45.677273, -20.225426), (1.8729825, -46.67902, -17.820238), (1.8729825, -46.67902, -17.820238), (2.1257777, -45.677273, -20.225426), (3.1813815, -45.677273, -20.086452), (2.8030548, -46.67902, -17.697792), (2.8030548, -46.67902, -17.697792), (3.1813815, -45.677273, -20.086452), (4.2282653, -45.677273, -19.892424), (3.7254443, -46.67902, -17.526838), (3.7254443, -46.67902, -17.526838), (4.2282653, -45.677273, -19.892424), (5.2635593, -45.677273, -19.643871), (4.6376224, -46.67902, -17.307842), (4.6376224, -46.67902, -17.307842), (5.2635593, -45.677273, -19.643871), (6.2844267, -45.677273, -19.341476), (5.5370893, -46.67902, -17.041409), (5.5370893, -46.67902, -17.041409), (6.2844267, -45.677273, -19.341476), (7.288069, -45.677273, -18.986069), (6.4213796, -46.67902, -16.728266), (6.4213796, -46.67902, -16.728266), (7.288069, -45.677273, -18.986069), (8.271735, -45.677273, -18.57862), (7.288069, -46.67902, -16.36927), (7.288069, -46.67902, -16.36927), (8.271735, -45.677273, -18.57862), (9.232729, -45.677273, -18.12025), (8.134782, -46.67902, -15.965409), (8.134782, -46.67902, -15.965409), (9.232729, -45.677273, -18.12025), (10.168416, -45.677273, -17.612213), (8.959199, -46.67902, -15.517787), (8.959199, -46.67902, -15.517787), (10.168416, -45.677273, -17.612213), (11.076233, -45.677273, -17.055902), (9.759059, -46.67902, -15.027633), (9.759059, -46.67902, -15.027633), (11.076233, -45.677273, -17.055902), (11.95369, -45.677273, -16.452843), (10.532169, -46.67902, -14.496288), (10.532169, -46.67902, -14.496288), (11.95369, -45.677273, -16.452843), (12.798383, -45.677273, -15.804687), (11.276413, -46.67902, -13.92521), (11.276413, -46.67902, -13.92521), (12.798383, -45.677273, -15.804687), (13.607997, -45.677273, -15.113212), (11.989748, -46.67902, -13.315965), (11.989748, -46.67902, -13.315965), (13.607997, -45.677273, -15.113212), (14.380312, -45.677273, -14.380312), (12.67022, -46.67902, -12.67022), (12.67022, -46.67902, -12.67022), (14.380312, -45.677273, -14.380312), (15.113212, -45.677273, -13.607997), (13.315965, -46.67902, -11.989748), (13.315965, -46.67902, -11.989748), (15.113212, -45.677273, -13.607997), (15.804687, -45.677273, -12.798383), (13.92521, -46.67902, -11.276413), (13.92521, -46.67902, -11.276413), (15.804687, -45.677273, -12.798383), (16.452843, -45.677273, -11.95369), (14.496288, -46.67902, -10.532169), (14.496288, -46.67902, -10.532169), (16.452843, -45.677273, -11.95369), (17.055902, -45.677273, -11.076233), (15.027633, -46.67902, -9.759059), (15.027633, -46.67902, -9.759059), (17.055902, -45.677273, -11.076233), (17.612213, -45.677273, -10.168416), (15.517787, -46.67902, -8.959199), (15.517787, -46.67902, -8.959199), (17.612213, -45.677273, -10.168416), (18.12025, -45.677273, -9.232729), (15.965409, -46.67902, -8.134782), (15.965409, -46.67902, -8.134782), (18.12025, -45.677273, -9.232729), (18.57862, -45.677273, -8.271735), (16.36927, -46.67902, -7.288069), (16.36927, -46.67902, -7.288069), (18.57862, -45.677273, -8.271735), (18.986069, -45.677273, -7.288069), (16.728266, -46.67902, -6.4213796), (16.728266, -46.67902, -6.4213796), (18.986069, -45.677273, -7.288069), (19.341476, -45.677273, -6.2844267), (17.041409, -46.67902, -5.5370893), (17.041409, -46.67902, -5.5370893), (19.341476, -45.677273, -6.2844267), (19.643871, -45.677273, -5.2635593), (17.307842, -46.67902, -4.6376224), (17.307842, -46.67902, -4.6376224), (19.643871, -45.677273, -5.2635593), (19.892424, -45.677273, -4.2282653), (17.526838, -46.67902, -3.7254443), (17.526838, -46.67902, -3.7254443), (19.892424, -45.677273, -4.2282653), (20.086452, -45.677273, -3.1813815), (17.697792, -46.67902, -2.8030548), (17.697792, -46.67902, -2.8030548), (20.086452, -45.677273, -3.1813815), (20.225426, -45.677273, -2.1257777), (17.820238, -46.67902, -1.8729825), (17.820238, -46.67902, -1.8729825), (20.225426, -45.677273, -2.1257777), (20.308962, -45.677273, -1.0643475), (17.89384, -46.67902, -0.93777645), (17.89384, -46.67902, -0.93777645), (20.308962, -45.677273, -1.0643475), (20.336832, -45.677273, 0), (17.918398, -46.67902, 0), (20.336832, -45.677273, 0), (22.699526, -44.550327, 0), (22.668417, -44.550327, 1.1880014), (20.308962, -45.677273, 1.0643475), (20.308962, -45.677273, 1.0643475), (22.668417, -44.550327, 1.1880014), (22.575174, -44.550327, 2.3727465), (20.225426, -45.677273, 2.1257777), (20.225426, -45.677273, 2.1257777), (22.575174, -44.550327, 2.3727465), (22.420055, -44.550327, 3.550988), (20.086452, -45.677273, 3.1813815), (20.086452, -45.677273, 3.1813815), (22.420055, -44.550327, 3.550988), (22.203485, -44.550327, 4.7194967), (19.892424, -45.677273, 4.2282653), (19.892424, -45.677273, 4.2282653), (22.203485, -44.550327, 4.7194967), (21.926058, -44.550327, 5.8750696), (19.643871, -45.677273, 5.2635593), (19.643871, -45.677273, 5.2635593), (21.926058, -44.550327, 5.8750696), (21.588531, -44.550327, 7.014539), (19.341476, -45.677273, 6.2844267), (19.341476, -45.677273, 6.2844267), (21.588531, -44.550327, 7.014539), (21.191832, -44.550327, 8.134782), (18.986069, -45.677273, 7.288069), (18.986069, -45.677273, 7.288069), (21.191832, -44.550327, 8.134782), (20.737047, -44.550327, 9.232729), (18.57862, -45.677273, 8.271735), (18.57862, -45.677273, 8.271735), (20.737047, -44.550327, 9.232729), (20.225426, -44.550327, 10.305368), (18.12025, -45.677273, 9.232729), (18.12025, -45.677273, 9.232729), (20.225426, -44.550327, 10.305368), (19.658365, -44.550327, 11.349763), (17.612213, -45.677273, 10.168416), (17.612213, -45.677273, 10.168416), (19.658365, -44.550327, 11.349763), (19.037424, -44.550327, 12.363048), (17.055902, -45.677273, 11.076233), (17.055902, -45.677273, 11.076233), (19.037424, -44.550327, 12.363048), (18.364302, -44.550327, 13.342446), (16.452843, -45.677273, 11.95369), (16.452843, -45.677273, 11.95369), (18.364302, -44.550327, 13.342446), (17.640844, -44.550327, 14.285274), (15.804687, -45.677273, 12.798383), (15.804687, -45.677273, 12.798383), (17.640844, -44.550327, 14.285274), (16.869034, -44.550327, 15.188947), (15.113212, -45.677273, 13.607997), (15.113212, -45.677273, 13.607997), (16.869034, -44.550327, 15.188947), (16.050987, -44.550327, 16.050987), (14.380312, -45.677273, 14.380312), (14.380312, -45.677273, 14.380312), (16.050987, -44.550327, 16.050987), (15.188947, -44.550327, 16.869034), (13.607997, -45.677273, 15.113212), (13.607997, -45.677273, 15.113212), (15.188947, -44.550327, 16.869034), (14.285274, -44.550327, 17.640844), (12.798383, -45.677273, 15.804687), (12.798383, -45.677273, 15.804687), (14.285274, -44.550327, 17.640844), (13.342446, -44.550327, 18.364302), (11.95369, -45.677273, 16.452843), (11.95369, -45.677273, 16.452843), (13.342446, -44.550327, 18.364302), (12.363048, -44.550327, 19.037424), (11.076233, -45.677273, 17.055902), (11.076233, -45.677273, 17.055902), (12.363048, -44.550327, 19.037424), (11.349763, -44.550327, 19.658365), (10.168416, -45.677273, 17.612213), (10.168416, -45.677273, 17.612213), (11.349763, -44.550327, 19.658365), (10.305368, -44.550327, 20.225426), (9.232729, -45.677273, 18.12025), (9.232729, -45.677273, 18.12025), (10.305368, -44.550327, 20.225426), (9.232729, -44.550327, 20.737047), (8.271735, -45.677273, 18.57862), (8.271735, -45.677273, 18.57862), (9.232729, -44.550327, 20.737047), (8.134782, -44.550327, 21.191832), (7.288069, -45.677273, 18.986069), (7.288069, -45.677273, 18.986069), (8.134782, -44.550327, 21.191832), (7.014539, -44.550327, 21.588531), (6.2844267, -45.677273, 19.341476), (6.2844267, -45.677273, 19.341476), (7.014539, -44.550327, 21.588531), (5.8750696, -44.550327, 21.926058), (5.2635593, -45.677273, 19.643871), (5.2635593, -45.677273, 19.643871), (5.8750696, -44.550327, 21.926058), (4.7194967, -44.550327, 22.203485), (4.2282653, -45.677273, 19.892424), (4.2282653, -45.677273, 19.892424), (4.7194967, -44.550327, 22.203485), (3.550988, -44.550327, 22.420055), (3.1813815, -45.677273, 20.086452), (3.1813815, -45.677273, 20.086452), (3.550988, -44.550327, 22.420055), (2.3727465, -44.550327, 22.575174), (2.1257777, -45.677273, 20.225426), (2.1257777, -45.677273, 20.225426), (2.3727465, -44.550327, 22.575174), (1.1880014, -44.550327, 22.668417), (1.0643475, -45.677273, 20.308962), (1.0643475, -45.677273, 20.308962), (1.1880014, -44.550327, 22.668417), (1.3899451e-15, -44.550327, 22.699526), (1.2452718e-15, -45.677273, 20.336832), (1.2452718e-15, -45.677273, 20.336832), (1.3899451e-15, -44.550327, 22.699526), (-1.1880014, -44.550327, 22.668417), (-1.0643475, -45.677273, 20.308962), (-1.0643475, -45.677273, 20.308962), (-1.1880014, -44.550327, 22.668417), (-2.3727465, -44.550327, 22.575174), (-2.1257777, -45.677273, 20.225426), (-2.1257777, -45.677273, 20.225426), (-2.3727465, -44.550327, 22.575174), (-3.550988, -44.550327, 22.420055), (-3.1813815, -45.677273, 20.086452), (-3.1813815, -45.677273, 20.086452), (-3.550988, -44.550327, 22.420055), (-4.7194967, -44.550327, 22.203485), (-4.2282653, -45.677273, 19.892424), (-4.2282653, -45.677273, 19.892424), (-4.7194967, -44.550327, 22.203485), (-5.8750696, -44.550327, 21.926058), (-5.2635593, -45.677273, 19.643871), (-5.2635593, -45.677273, 19.643871), (-5.8750696, -44.550327, 21.926058), (-7.014539, -44.550327, 21.588531), (-6.2844267, -45.677273, 19.341476), (-6.2844267, -45.677273, 19.341476), (-7.014539, -44.550327, 21.588531), (-8.134782, -44.550327, 21.191832), (-7.288069, -45.677273, 18.986069), (-7.288069, -45.677273, 18.986069), (-8.134782, -44.550327, 21.191832), (-9.232729, -44.550327, 20.737047), (-8.271735, -45.677273, 18.57862), (-8.271735, -45.677273, 18.57862), (-9.232729, -44.550327, 20.737047), (-10.305368, -44.550327, 20.225426), (-9.232729, -45.677273, 18.12025), (-9.232729, -45.677273, 18.12025), (-10.305368, -44.550327, 20.225426), (-11.349763, -44.550327, 19.658365), (-10.168416, -45.677273, 17.612213), (-10.168416, -45.677273, 17.612213), (-11.349763, -44.550327, 19.658365), (-12.363048, -44.550327, 19.037424), (-11.076233, -45.677273, 17.055902), (-11.076233, -45.677273, 17.055902), (-12.363048, -44.550327, 19.037424), (-13.342446, -44.550327, 18.364302), (-11.95369, -45.677273, 16.452843), (-11.95369, -45.677273, 16.452843), (-13.342446, -44.550327, 18.364302), (-14.285274, -44.550327, 17.640844), (-12.798383, -45.677273, 15.804687), (-12.798383, -45.677273, 15.804687), (-14.285274, -44.550327, 17.640844), (-15.188947, -44.550327, 16.869034), (-13.607997, -45.677273, 15.113212), (-13.607997, -45.677273, 15.113212), (-15.188947, -44.550327, 16.869034), (-16.050987, -44.550327, 16.050987), (-14.380312, -45.677273, 14.380312), (-14.380312, -45.677273, 14.380312), (-16.050987, -44.550327, 16.050987), (-16.869034, -44.550327, 15.188947), (-15.113212, -45.677273, 13.607997), (-15.113212, -45.677273, 13.607997), (-16.869034, -44.550327, 15.188947), (-17.640844, -44.550327, 14.285274), (-15.804687, -45.677273, 12.798383), (-15.804687, -45.677273, 12.798383), (-17.640844, -44.550327, 14.285274), (-18.364302, -44.550327, 13.342446), (-16.452843, -45.677273, 11.95369), (-16.452843, -45.677273, 11.95369), (-18.364302, -44.550327, 13.342446), (-19.037424, -44.550327, 12.363048), (-17.055902, -45.677273, 11.076233), (-17.055902, -45.677273, 11.076233), (-19.037424, -44.550327, 12.363048), (-19.658365, -44.550327, 11.349763), (-17.612213, -45.677273, 10.168416), (-17.612213, -45.677273, 10.168416), (-19.658365, -44.550327, 11.349763), (-20.225426, -44.550327, 10.305368), (-18.12025, -45.677273, 9.232729), (-18.12025, -45.677273, 9.232729), (-20.225426, -44.550327, 10.305368), (-20.737047, -44.550327, 9.232729), (-18.57862, -45.677273, 8.271735), (-18.57862, -45.677273, 8.271735), (-20.737047, -44.550327, 9.232729), (-21.191832, -44.550327, 8.134782), (-18.986069, -45.677273, 7.288069), (-18.986069, -45.677273, 7.288069), (-21.191832, -44.550327, 8.134782), (-21.588531, -44.550327, 7.014539), (-19.341476, -45.677273, 6.2844267), (-19.341476, -45.677273, 6.2844267), (-21.588531, -44.550327, 7.014539), (-21.926058, -44.550327, 5.8750696), (-19.643871, -45.677273, 5.2635593), (-19.643871, -45.677273, 5.2635593), (-21.926058, -44.550327, 5.8750696), (-22.203485, -44.550327, 4.7194967), (-19.892424, -45.677273, 4.2282653), (-19.892424, -45.677273, 4.2282653), (-22.203485, -44.550327, 4.7194967), (-22.420055, -44.550327, 3.550988), (-20.086452, -45.677273, 3.1813815), (-20.086452, -45.677273, 3.1813815), (-22.420055, -44.550327, 3.550988), (-22.575174, -44.550327, 2.3727465), (-20.225426, -45.677273, 2.1257777), (-20.225426, -45.677273, 2.1257777), (-22.575174, -44.550327, 2.3727465), (-22.668417, -44.550327, 1.1880014), (-20.308962, -45.677273, 1.0643475), (-20.308962, -45.677273, 1.0643475), (-22.668417, -44.550327, 1.1880014), (-22.699526, -44.550327, 2.7798901e-15), (-20.336832, -45.677273, 2.4905437e-15), (-20.336832, -45.677273, 2.4905437e-15), (-22.699526, -44.550327, 2.7798901e-15), (-22.668417, -44.550327, -1.1880014), (-20.308962, -45.677273, -1.0643475), (-20.308962, -45.677273, -1.0643475), (-22.668417, -44.550327, -1.1880014), (-22.575174, -44.550327, -2.3727465), (-20.225426, -45.677273, -2.1257777), (-20.225426, -45.677273, -2.1257777), (-22.575174, -44.550327, -2.3727465), (-22.420055, -44.550327, -3.550988), (-20.086452, -45.677273, -3.1813815), (-20.086452, -45.677273, -3.1813815), (-22.420055, -44.550327, -3.550988), (-22.203485, -44.550327, -4.7194967), (-19.892424, -45.677273, -4.2282653), (-19.892424, -45.677273, -4.2282653), (-22.203485, -44.550327, -4.7194967), (-21.926058, -44.550327, -5.8750696), (-19.643871, -45.677273, -5.2635593), (-19.643871, -45.677273, -5.2635593), (-21.926058, -44.550327, -5.8750696), (-21.588531, -44.550327, -7.014539), (-19.341476, -45.677273, -6.2844267), (-19.341476, -45.677273, -6.2844267), (-21.588531, -44.550327, -7.014539), (-21.191832, -44.550327, -8.134782), (-18.986069, -45.677273, -7.288069), (-18.986069, -45.677273, -7.288069), (-21.191832, -44.550327, -8.134782), (-20.737047, -44.550327, -9.232729), (-18.57862, -45.677273, -8.271735), (-18.57862, -45.677273, -8.271735), (-20.737047, -44.550327, -9.232729), (-20.225426, -44.550327, -10.305368), (-18.12025, -45.677273, -9.232729), (-18.12025, -45.677273, -9.232729), (-20.225426, -44.550327, -10.305368), (-19.658365, -44.550327, -11.349763), (-17.612213, -45.677273, -10.168416), (-17.612213, -45.677273, -10.168416), (-19.658365, -44.550327, -11.349763), (-19.037424, -44.550327, -12.363048), (-17.055902, -45.677273, -11.076233), (-17.055902, -45.677273, -11.076233), (-19.037424, -44.550327, -12.363048), (-18.364302, -44.550327, -13.342446), (-16.452843, -45.677273, -11.95369), (-16.452843, -45.677273, -11.95369), (-18.364302, -44.550327, -13.342446), (-17.640844, -44.550327, -14.285274), (-15.804687, -45.677273, -12.798383), (-15.804687, -45.677273, -12.798383), (-17.640844, -44.550327, -14.285274), (-16.869034, -44.550327, -15.188947), (-15.113212, -45.677273, -13.607997), (-15.113212, -45.677273, -13.607997), (-16.869034, -44.550327, -15.188947), (-16.050987, -44.550327, -16.050987), (-14.380312, -45.677273, -14.380312), (-14.380312, -45.677273, -14.380312), (-16.050987, -44.550327, -16.050987), (-15.188947, -44.550327, -16.869034), (-13.607997, -45.677273, -15.113212), (-13.607997, -45.677273, -15.113212), (-15.188947, -44.550327, -16.869034), (-14.285274, -44.550327, -17.640844), (-12.798383, -45.677273, -15.804687), (-12.798383, -45.677273, -15.804687), (-14.285274, -44.550327, -17.640844), (-13.342446, -44.550327, -18.364302), (-11.95369, -45.677273, -16.452843), (-11.95369, -45.677273, -16.452843), (-13.342446, -44.550327, -18.364302), (-12.363048, -44.550327, -19.037424), (-11.076233, -45.677273, -17.055902), (-11.076233, -45.677273, -17.055902), (-12.363048, -44.550327, -19.037424), (-11.349763, -44.550327, -19.658365), (-10.168416, -45.677273, -17.612213), (-10.168416, -45.677273, -17.612213), (-11.349763, -44.550327, -19.658365), (-10.305368, -44.550327, -20.225426), (-9.232729, -45.677273, -18.12025), (-9.232729, -45.677273, -18.12025), (-10.305368, -44.550327, -20.225426), (-9.232729, -44.550327, -20.737047), (-8.271735, -45.677273, -18.57862), (-8.271735, -45.677273, -18.57862), (-9.232729, -44.550327, -20.737047), (-8.134782, -44.550327, -21.191832), (-7.288069, -45.677273, -18.986069), (-7.288069, -45.677273, -18.986069), (-8.134782, -44.550327, -21.191832), (-7.014539, -44.550327, -21.588531), (-6.2844267, -45.677273, -19.341476), (-6.2844267, -45.677273, -19.341476), (-7.014539, -44.550327, -21.588531), (-5.8750696, -44.550327, -21.926058), (-5.2635593, -45.677273, -19.643871), (-5.2635593, -45.677273, -19.643871), (-5.8750696, -44.550327, -21.926058), (-4.7194967, -44.550327, -22.203485), (-4.2282653, -45.677273, -19.892424), (-4.2282653, -45.677273, -19.892424), (-4.7194967, -44.550327, -22.203485), (-3.550988, -44.550327, -22.420055), (-3.1813815, -45.677273, -20.086452), (-3.1813815, -45.677273, -20.086452), (-3.550988, -44.550327, -22.420055), (-2.3727465, -44.550327, -22.575174), (-2.1257777, -45.677273, -20.225426), (-2.1257777, -45.677273, -20.225426), (-2.3727465, -44.550327, -22.575174), (-1.1880014, -44.550327, -22.668417), (-1.0643475, -45.677273, -20.308962), (-1.0643475, -45.677273, -20.308962), (-1.1880014, -44.550327, -22.668417), (-4.169835e-15, -44.550327, -22.699526), (-3.7358155e-15, -45.677273, -20.336832), (-3.7358155e-15, -45.677273, -20.336832), (-4.169835e-15, -44.550327, -22.699526), (1.1880014, -44.550327, -22.668417), (1.0643475, -45.677273, -20.308962), (1.0643475, -45.677273, -20.308962), (1.1880014, -44.550327, -22.668417), (2.3727465, -44.550327, -22.575174), (2.1257777, -45.677273, -20.225426), (2.1257777, -45.677273, -20.225426), (2.3727465, -44.550327, -22.575174), (3.550988, -44.550327, -22.420055), (3.1813815, -45.677273, -20.086452), (3.1813815, -45.677273, -20.086452), (3.550988, -44.550327, -22.420055), (4.7194967, -44.550327, -22.203485), (4.2282653, -45.677273, -19.892424), (4.2282653, -45.677273, -19.892424), (4.7194967, -44.550327, -22.203485), (5.8750696, -44.550327, -21.926058), (5.2635593, -45.677273, -19.643871), (5.2635593, -45.677273, -19.643871), (5.8750696, -44.550327, -21.926058), (7.014539, -44.550327, -21.588531), (6.2844267, -45.677273, -19.341476), (6.2844267, -45.677273, -19.341476), (7.014539, -44.550327, -21.588531), (8.134782, -44.550327, -21.191832), (7.288069, -45.677273, -18.986069), (7.288069, -45.677273, -18.986069), (8.134782, -44.550327, -21.191832), (9.232729, -44.550327, -20.737047), (8.271735, -45.677273, -18.57862), (8.271735, -45.677273, -18.57862), (9.232729, -44.550327, -20.737047), (10.305368, -44.550327, -20.225426), (9.232729, -45.677273, -18.12025), (9.232729, -45.677273, -18.12025), (10.305368, -44.550327, -20.225426), (11.349763, -44.550327, -19.658365), (10.168416, -45.677273, -17.612213), (10.168416, -45.677273, -17.612213), (11.349763, -44.550327, -19.658365), (12.363048, -44.550327, -19.037424), (11.076233, -45.677273, -17.055902), (11.076233, -45.677273, -17.055902), (12.363048, -44.550327, -19.037424), (13.342446, -44.550327, -18.364302), (11.95369, -45.677273, -16.452843), (11.95369, -45.677273, -16.452843), (13.342446, -44.550327, -18.364302), (14.285274, -44.550327, -17.640844), (12.798383, -45.677273, -15.804687), (12.798383, -45.677273, -15.804687), (14.285274, -44.550327, -17.640844), (15.188947, -44.550327, -16.869034), (13.607997, -45.677273, -15.113212), (13.607997, -45.677273, -15.113212), (15.188947, -44.550327, -16.869034), (16.050987, -44.550327, -16.050987), (14.380312, -45.677273, -14.380312), (14.380312, -45.677273, -14.380312), (16.050987, -44.550327, -16.050987), (16.869034, -44.550327, -15.188947), (15.113212, -45.677273, -13.607997), (15.113212, -45.677273, -13.607997), (16.869034, -44.550327, -15.188947), (17.640844, -44.550327, -14.285274), (15.804687, -45.677273, -12.798383), (15.804687, -45.677273, -12.798383), (17.640844, -44.550327, -14.285274), (18.364302, -44.550327, -13.342446), (16.452843, -45.677273, -11.95369), (16.452843, -45.677273, -11.95369), (18.364302, -44.550327, -13.342446), (19.037424, -44.550327, -12.363048), (17.055902, -45.677273, -11.076233), (17.055902, -45.677273, -11.076233), (19.037424, -44.550327, -12.363048), (19.658365, -44.550327, -11.349763), (17.612213, -45.677273, -10.168416), (17.612213, -45.677273, -10.168416), (19.658365, -44.550327, -11.349763), (20.225426, -44.550327, -10.305368), (18.12025, -45.677273, -9.232729), (18.12025, -45.677273, -9.232729), (20.225426, -44.550327, -10.305368), (20.737047, -44.550327, -9.232729), (18.57862, -45.677273, -8.271735), (18.57862, -45.677273, -8.271735), (20.737047, -44.550327, -9.232729), (21.191832, -44.550327, -8.134782), (18.986069, -45.677273, -7.288069), (18.986069, -45.677273, -7.288069), (21.191832, -44.550327, -8.134782), (21.588531, -44.550327, -7.014539), (19.341476, -45.677273, -6.2844267), (19.341476, -45.677273, -6.2844267), (21.588531, -44.550327, -7.014539), (21.926058, -44.550327, -5.8750696), (19.643871, -45.677273, -5.2635593), (19.643871, -45.677273, -5.2635593), (21.926058, -44.550327, -5.8750696), (22.203485, -44.550327, -4.7194967), (19.892424, -45.677273, -4.2282653), (19.892424, -45.677273, -4.2282653), (22.203485, -44.550327, -4.7194967), (22.420055, -44.550327, -3.550988), (20.086452, -45.677273, -3.1813815), (20.086452, -45.677273, -3.1813815), (22.420055, -44.550327, -3.550988), (22.575174, -44.550327, -2.3727465), (20.225426, -45.677273, -2.1257777), (20.225426, -45.677273, -2.1257777), (22.575174, -44.550327, -2.3727465), (22.668417, -44.550327, -1.1880014), (20.308962, -45.677273, -1.0643475), (20.308962, -45.677273, -1.0643475), (22.668417, -44.550327, -1.1880014), (22.699526, -44.550327, 0), (20.336832, -45.677273, 0), (22.699526, -44.550327, 0), (25, -43.30127, 0), (24.965738, -43.30127, 1.308399), (22.668417, -44.550327, 1.1880014), (22.668417, -44.550327, 1.1880014), (24.965738, -43.30127, 1.308399), (24.863047, -43.30127, 2.6132116), (22.575174, -44.550327, 2.3727465), (22.575174, -44.550327, 2.3727465), (24.863047, -43.30127, 2.6132116), (24.69221, -43.30127, 3.9108617), (22.420055, -44.550327, 3.550988), (22.420055, -44.550327, 3.550988), (24.69221, -43.30127, 3.9108617), (24.45369, -43.30127, 5.197792), (22.203485, -44.550327, 4.7194967), (22.203485, -44.550327, 4.7194967), (24.45369, -43.30127, 5.197792), (24.148146, -43.30127, 6.470476), (21.926058, -44.550327, 5.8750696), (21.926058, -44.550327, 5.8750696), (24.148146, -43.30127, 6.470476), (23.776413, -43.30127, 7.725425), (21.588531, -44.550327, 7.014539), (21.588531, -44.550327, 7.014539), (23.776413, -43.30127, 7.725425), (23.33951, -43.30127, 8.959199), (21.191832, -44.550327, 8.134782), (21.191832, -44.550327, 8.134782), (23.33951, -43.30127, 8.959199), (22.838636, -43.30127, 10.168416), (20.737047, -44.550327, 9.232729), (20.737047, -44.550327, 9.232729), (22.838636, -43.30127, 10.168416), (22.275164, -43.30127, 11.349763), (20.225426, -44.550327, 10.305368), (20.225426, -44.550327, 10.305368), (22.275164, -43.30127, 11.349763), (21.650635, -43.30127, 12.5), (19.658365, -44.550327, 11.349763), (19.658365, -44.550327, 11.349763), (21.650635, -43.30127, 12.5), (20.966764, -43.30127, 13.615976), (19.037424, -44.550327, 12.363048), (19.037424, -44.550327, 12.363048), (20.966764, -43.30127, 13.615976), (20.225426, -43.30127, 14.694632), (18.364302, -44.550327, 13.342446), (18.364302, -44.550327, 13.342446), (20.225426, -43.30127, 14.694632), (19.42865, -43.30127, 15.733009), (17.640844, -44.550327, 14.285274), (17.640844, -44.550327, 14.285274), (19.42865, -43.30127, 15.733009), (18.57862, -43.30127, 16.728266), (16.869034, -44.550327, 15.188947), (16.869034, -44.550327, 15.188947), (18.57862, -43.30127, 16.728266), (17.67767, -43.30127, 17.67767), (16.050987, -44.550327, 16.050987), (16.050987, -44.550327, 16.050987), (17.67767, -43.30127, 17.67767), (16.728266, -43.30127, 18.57862), (15.188947, -44.550327, 16.869034), (15.188947, -44.550327, 16.869034), (16.728266, -43.30127, 18.57862), (15.733009, -43.30127, 19.42865), (14.285274, -44.550327, 17.640844), (14.285274, -44.550327, 17.640844), (15.733009, -43.30127, 19.42865), (14.694632, -43.30127, 20.225426), (13.342446, -44.550327, 18.364302), (13.342446, -44.550327, 18.364302), (14.694632, -43.30127, 20.225426), (13.615976, -43.30127, 20.966764), (12.363048, -44.550327, 19.037424), (12.363048, -44.550327, 19.037424), (13.615976, -43.30127, 20.966764), (12.5, -43.30127, 21.650635), (11.349763, -44.550327, 19.658365), (11.349763, -44.550327, 19.658365), (12.5, -43.30127, 21.650635), (11.349763, -43.30127, 22.275164), (10.305368, -44.550327, 20.225426), (10.305368, -44.550327, 20.225426), (11.349763, -43.30127, 22.275164), (10.168416, -43.30127, 22.838636), (9.232729, -44.550327, 20.737047), (9.232729, -44.550327, 20.737047), (10.168416, -43.30127, 22.838636), (8.959199, -43.30127, 23.33951), (8.134782, -44.550327, 21.191832), (8.134782, -44.550327, 21.191832), (8.959199, -43.30127, 23.33951), (7.725425, -43.30127, 23.776413), (7.014539, -44.550327, 21.588531), (7.014539, -44.550327, 21.588531), (7.725425, -43.30127, 23.776413), (6.470476, -43.30127, 24.148146), (5.8750696, -44.550327, 21.926058), (5.8750696, -44.550327, 21.926058), (6.470476, -43.30127, 24.148146), (5.197792, -43.30127, 24.45369), (4.7194967, -44.550327, 22.203485), (4.7194967, -44.550327, 22.203485), (5.197792, -43.30127, 24.45369), (3.9108617, -43.30127, 24.69221), (3.550988, -44.550327, 22.420055), (3.550988, -44.550327, 22.420055), (3.9108617, -43.30127, 24.69221), (2.6132116, -43.30127, 24.863047), (2.3727465, -44.550327, 22.575174), (2.3727465, -44.550327, 22.575174), (2.6132116, -43.30127, 24.863047), (1.308399, -43.30127, 24.965738), (1.1880014, -44.550327, 22.668417), (1.1880014, -44.550327, 22.668417), (1.308399, -43.30127, 24.965738), (1.5308084e-15, -43.30127, 25), (1.3899451e-15, -44.550327, 22.699526), (1.3899451e-15, -44.550327, 22.699526), (1.5308084e-15, -43.30127, 25), (-1.308399, -43.30127, 24.965738), (-1.1880014, -44.550327, 22.668417), (-1.1880014, -44.550327, 22.668417), (-1.308399, -43.30127, 24.965738), (-2.6132116, -43.30127, 24.863047), (-2.3727465, -44.550327, 22.575174), (-2.3727465, -44.550327, 22.575174), (-2.6132116, -43.30127, 24.863047), (-3.9108617, -43.30127, 24.69221), (-3.550988, -44.550327, 22.420055), (-3.550988, -44.550327, 22.420055), (-3.9108617, -43.30127, 24.69221), (-5.197792, -43.30127, 24.45369), (-4.7194967, -44.550327, 22.203485), (-4.7194967, -44.550327, 22.203485), (-5.197792, -43.30127, 24.45369), (-6.470476, -43.30127, 24.148146), (-5.8750696, -44.550327, 21.926058), (-5.8750696, -44.550327, 21.926058), (-6.470476, -43.30127, 24.148146), (-7.725425, -43.30127, 23.776413), (-7.014539, -44.550327, 21.588531), (-7.014539, -44.550327, 21.588531), (-7.725425, -43.30127, 23.776413), (-8.959199, -43.30127, 23.33951), (-8.134782, -44.550327, 21.191832), (-8.134782, -44.550327, 21.191832), (-8.959199, -43.30127, 23.33951), (-10.168416, -43.30127, 22.838636), (-9.232729, -44.550327, 20.737047), (-9.232729, -44.550327, 20.737047), (-10.168416, -43.30127, 22.838636), (-11.349763, -43.30127, 22.275164), (-10.305368, -44.550327, 20.225426), (-10.305368, -44.550327, 20.225426), (-11.349763, -43.30127, 22.275164), (-12.5, -43.30127, 21.650635), (-11.349763, -44.550327, 19.658365), (-11.349763, -44.550327, 19.658365), (-12.5, -43.30127, 21.650635), (-13.615976, -43.30127, 20.966764), (-12.363048, -44.550327, 19.037424), (-12.363048, -44.550327, 19.037424), (-13.615976, -43.30127, 20.966764), (-14.694632, -43.30127, 20.225426), (-13.342446, -44.550327, 18.364302), (-13.342446, -44.550327, 18.364302), (-14.694632, -43.30127, 20.225426), (-15.733009, -43.30127, 19.42865), (-14.285274, -44.550327, 17.640844), (-14.285274, -44.550327, 17.640844), (-15.733009, -43.30127, 19.42865), (-16.728266, -43.30127, 18.57862), (-15.188947, -44.550327, 16.869034), (-15.188947, -44.550327, 16.869034), (-16.728266, -43.30127, 18.57862), (-17.67767, -43.30127, 17.67767), (-16.050987, -44.550327, 16.050987), (-16.050987, -44.550327, 16.050987), (-17.67767, -43.30127, 17.67767), (-18.57862, -43.30127, 16.728266), (-16.869034, -44.550327, 15.188947), (-16.869034, -44.550327, 15.188947), (-18.57862, -43.30127, 16.728266), (-19.42865, -43.30127, 15.733009), (-17.640844, -44.550327, 14.285274), (-17.640844, -44.550327, 14.285274), (-19.42865, -43.30127, 15.733009), (-20.225426, -43.30127, 14.694632), (-18.364302, -44.550327, 13.342446), (-18.364302, -44.550327, 13.342446), (-20.225426, -43.30127, 14.694632), (-20.966764, -43.30127, 13.615976), (-19.037424, -44.550327, 12.363048), (-19.037424, -44.550327, 12.363048), (-20.966764, -43.30127, 13.615976), (-21.650635, -43.30127, 12.5), (-19.658365, -44.550327, 11.349763), (-19.658365, -44.550327, 11.349763), (-21.650635, -43.30127, 12.5), (-22.275164, -43.30127, 11.349763), (-20.225426, -44.550327, 10.305368), (-20.225426, -44.550327, 10.305368), (-22.275164, -43.30127, 11.349763), (-22.838636, -43.30127, 10.168416), (-20.737047, -44.550327, 9.232729), (-20.737047, -44.550327, 9.232729), (-22.838636, -43.30127, 10.168416), (-23.33951, -43.30127, 8.959199), (-21.191832, -44.550327, 8.134782), (-21.191832, -44.550327, 8.134782), (-23.33951, -43.30127, 8.959199), (-23.776413, -43.30127, 7.725425), (-21.588531, -44.550327, 7.014539), (-21.588531, -44.550327, 7.014539), (-23.776413, -43.30127, 7.725425), (-24.148146, -43.30127, 6.470476), (-21.926058, -44.550327, 5.8750696), (-21.926058, -44.550327, 5.8750696), (-24.148146, -43.30127, 6.470476), (-24.45369, -43.30127, 5.197792), (-22.203485, -44.550327, 4.7194967), (-22.203485, -44.550327, 4.7194967), (-24.45369, -43.30127, 5.197792), (-24.69221, -43.30127, 3.9108617), (-22.420055, -44.550327, 3.550988), (-22.420055, -44.550327, 3.550988), (-24.69221, -43.30127, 3.9108617), (-24.863047, -43.30127, 2.6132116), (-22.575174, -44.550327, 2.3727465), (-22.575174, -44.550327, 2.3727465), (-24.863047, -43.30127, 2.6132116), (-24.965738, -43.30127, 1.308399), (-22.668417, -44.550327, 1.1880014), (-22.668417, -44.550327, 1.1880014), (-24.965738, -43.30127, 1.308399), (-25, -43.30127, 3.0616169e-15), (-22.699526, -44.550327, 2.7798901e-15), (-22.699526, -44.550327, 2.7798901e-15), (-25, -43.30127, 3.0616169e-15), (-24.965738, -43.30127, -1.308399), (-22.668417, -44.550327, -1.1880014), (-22.668417, -44.550327, -1.1880014), (-24.965738, -43.30127, -1.308399), (-24.863047, -43.30127, -2.6132116), (-22.575174, -44.550327, -2.3727465), (-22.575174, -44.550327, -2.3727465), (-24.863047, -43.30127, -2.6132116), (-24.69221, -43.30127, -3.9108617), (-22.420055, -44.550327, -3.550988), (-22.420055, -44.550327, -3.550988), (-24.69221, -43.30127, -3.9108617), (-24.45369, -43.30127, -5.197792), (-22.203485, -44.550327, -4.7194967), (-22.203485, -44.550327, -4.7194967), (-24.45369, -43.30127, -5.197792), (-24.148146, -43.30127, -6.470476), (-21.926058, -44.550327, -5.8750696), (-21.926058, -44.550327, -5.8750696), (-24.148146, -43.30127, -6.470476), (-23.776413, -43.30127, -7.725425), (-21.588531, -44.550327, -7.014539), (-21.588531, -44.550327, -7.014539), (-23.776413, -43.30127, -7.725425), (-23.33951, -43.30127, -8.959199), (-21.191832, -44.550327, -8.134782), (-21.191832, -44.550327, -8.134782), (-23.33951, -43.30127, -8.959199), (-22.838636, -43.30127, -10.168416), (-20.737047, -44.550327, -9.232729), (-20.737047, -44.550327, -9.232729), (-22.838636, -43.30127, -10.168416), (-22.275164, -43.30127, -11.349763), (-20.225426, -44.550327, -10.305368), (-20.225426, -44.550327, -10.305368), (-22.275164, -43.30127, -11.349763), (-21.650635, -43.30127, -12.5), (-19.658365, -44.550327, -11.349763), (-19.658365, -44.550327, -11.349763), (-21.650635, -43.30127, -12.5), (-20.966764, -43.30127, -13.615976), (-19.037424, -44.550327, -12.363048), (-19.037424, -44.550327, -12.363048), (-20.966764, -43.30127, -13.615976), (-20.225426, -43.30127, -14.694632), (-18.364302, -44.550327, -13.342446), (-18.364302, -44.550327, -13.342446), (-20.225426, -43.30127, -14.694632), (-19.42865, -43.30127, -15.733009), (-17.640844, -44.550327, -14.285274), (-17.640844, -44.550327, -14.285274), (-19.42865, -43.30127, -15.733009), (-18.57862, -43.30127, -16.728266), (-16.869034, -44.550327, -15.188947), (-16.869034, -44.550327, -15.188947), (-18.57862, -43.30127, -16.728266), (-17.67767, -43.30127, -17.67767), (-16.050987, -44.550327, -16.050987), (-16.050987, -44.550327, -16.050987), (-17.67767, -43.30127, -17.67767), (-16.728266, -43.30127, -18.57862), (-15.188947, -44.550327, -16.869034), (-15.188947, -44.550327, -16.869034), (-16.728266, -43.30127, -18.57862), (-15.733009, -43.30127, -19.42865), (-14.285274, -44.550327, -17.640844), (-14.285274, -44.550327, -17.640844), (-15.733009, -43.30127, -19.42865), (-14.694632, -43.30127, -20.225426), (-13.342446, -44.550327, -18.364302), (-13.342446, -44.550327, -18.364302), (-14.694632, -43.30127, -20.225426), (-13.615976, -43.30127, -20.966764), (-12.363048, -44.550327, -19.037424), (-12.363048, -44.550327, -19.037424), (-13.615976, -43.30127, -20.966764), (-12.5, -43.30127, -21.650635), (-11.349763, -44.550327, -19.658365), (-11.349763, -44.550327, -19.658365), (-12.5, -43.30127, -21.650635), (-11.349763, -43.30127, -22.275164), (-10.305368, -44.550327, -20.225426), (-10.305368, -44.550327, -20.225426), (-11.349763, -43.30127, -22.275164), (-10.168416, -43.30127, -22.838636), (-9.232729, -44.550327, -20.737047), (-9.232729, -44.550327, -20.737047), (-10.168416, -43.30127, -22.838636), (-8.959199, -43.30127, -23.33951), (-8.134782, -44.550327, -21.191832), (-8.134782, -44.550327, -21.191832), (-8.959199, -43.30127, -23.33951), (-7.725425, -43.30127, -23.776413), (-7.014539, -44.550327, -21.588531), (-7.014539, -44.550327, -21.588531), (-7.725425, -43.30127, -23.776413), (-6.470476, -43.30127, -24.148146), (-5.8750696, -44.550327, -21.926058), (-5.8750696, -44.550327, -21.926058), (-6.470476, -43.30127, -24.148146), (-5.197792, -43.30127, -24.45369), (-4.7194967, -44.550327, -22.203485), (-4.7194967, -44.550327, -22.203485), (-5.197792, -43.30127, -24.45369), (-3.9108617, -43.30127, -24.69221), (-3.550988, -44.550327, -22.420055), (-3.550988, -44.550327, -22.420055), (-3.9108617, -43.30127, -24.69221), (-2.6132116, -43.30127, -24.863047), (-2.3727465, -44.550327, -22.575174), (-2.3727465, -44.550327, -22.575174), (-2.6132116, -43.30127, -24.863047), (-1.308399, -43.30127, -24.965738), (-1.1880014, -44.550327, -22.668417), (-1.1880014, -44.550327, -22.668417), (-1.308399, -43.30127, -24.965738), (-4.5924254e-15, -43.30127, -25), (-4.169835e-15, -44.550327, -22.699526), (-4.169835e-15, -44.550327, -22.699526), (-4.5924254e-15, -43.30127, -25), (1.308399, -43.30127, -24.965738), (1.1880014, -44.550327, -22.668417), (1.1880014, -44.550327, -22.668417), (1.308399, -43.30127, -24.965738), (2.6132116, -43.30127, -24.863047), (2.3727465, -44.550327, -22.575174), (2.3727465, -44.550327, -22.575174), (2.6132116, -43.30127, -24.863047), (3.9108617, -43.30127, -24.69221), (3.550988, -44.550327, -22.420055), (3.550988, -44.550327, -22.420055), (3.9108617, -43.30127, -24.69221), (5.197792, -43.30127, -24.45369), (4.7194967, -44.550327, -22.203485), (4.7194967, -44.550327, -22.203485), (5.197792, -43.30127, -24.45369), (6.470476, -43.30127, -24.148146), (5.8750696, -44.550327, -21.926058), (5.8750696, -44.550327, -21.926058), (6.470476, -43.30127, -24.148146), (7.725425, -43.30127, -23.776413), (7.014539, -44.550327, -21.588531), (7.014539, -44.550327, -21.588531), (7.725425, -43.30127, -23.776413), (8.959199, -43.30127, -23.33951), (8.134782, -44.550327, -21.191832), (8.134782, -44.550327, -21.191832), (8.959199, -43.30127, -23.33951), (10.168416, -43.30127, -22.838636), (9.232729, -44.550327, -20.737047), (9.232729, -44.550327, -20.737047), (10.168416, -43.30127, -22.838636), (11.349763, -43.30127, -22.275164), (10.305368, -44.550327, -20.225426), (10.305368, -44.550327, -20.225426), (11.349763, -43.30127, -22.275164), (12.5, -43.30127, -21.650635), (11.349763, -44.550327, -19.658365), (11.349763, -44.550327, -19.658365), (12.5, -43.30127, -21.650635), (13.615976, -43.30127, -20.966764), (12.363048, -44.550327, -19.037424), (12.363048, -44.550327, -19.037424), (13.615976, -43.30127, -20.966764), (14.694632, -43.30127, -20.225426), (13.342446, -44.550327, -18.364302), (13.342446, -44.550327, -18.364302), (14.694632, -43.30127, -20.225426), (15.733009, -43.30127, -19.42865), (14.285274, -44.550327, -17.640844), (14.285274, -44.550327, -17.640844), (15.733009, -43.30127, -19.42865), (16.728266, -43.30127, -18.57862), (15.188947, -44.550327, -16.869034), (15.188947, -44.550327, -16.869034), (16.728266, -43.30127, -18.57862), (17.67767, -43.30127, -17.67767), (16.050987, -44.550327, -16.050987), (16.050987, -44.550327, -16.050987), (17.67767, -43.30127, -17.67767), (18.57862, -43.30127, -16.728266), (16.869034, -44.550327, -15.188947), (16.869034, -44.550327, -15.188947), (18.57862, -43.30127, -16.728266), (19.42865, -43.30127, -15.733009), (17.640844, -44.550327, -14.285274), (17.640844, -44.550327, -14.285274), (19.42865, -43.30127, -15.733009), (20.225426, -43.30127, -14.694632), (18.364302, -44.550327, -13.342446), (18.364302, -44.550327, -13.342446), (20.225426, -43.30127, -14.694632), (20.966764, -43.30127, -13.615976), (19.037424, -44.550327, -12.363048), (19.037424, -44.550327, -12.363048), (20.966764, -43.30127, -13.615976), (21.650635, -43.30127, -12.5), (19.658365, -44.550327, -11.349763), (19.658365, -44.550327, -11.349763), (21.650635, -43.30127, -12.5), (22.275164, -43.30127, -11.349763), (20.225426, -44.550327, -10.305368), (20.225426, -44.550327, -10.305368), (22.275164, -43.30127, -11.349763), (22.838636, -43.30127, -10.168416), (20.737047, -44.550327, -9.232729), (20.737047, -44.550327, -9.232729), (22.838636, -43.30127, -10.168416), (23.33951, -43.30127, -8.959199), (21.191832, -44.550327, -8.134782), (21.191832, -44.550327, -8.134782), (23.33951, -43.30127, -8.959199), (23.776413, -43.30127, -7.725425), (21.588531, -44.550327, -7.014539), (21.588531, -44.550327, -7.014539), (23.776413, -43.30127, -7.725425), (24.148146, -43.30127, -6.470476), (21.926058, -44.550327, -5.8750696), (21.926058, -44.550327, -5.8750696), (24.148146, -43.30127, -6.470476), (24.45369, -43.30127, -5.197792), (22.203485, -44.550327, -4.7194967), (22.203485, -44.550327, -4.7194967), (24.45369, -43.30127, -5.197792), (24.69221, -43.30127, -3.9108617), (22.420055, -44.550327, -3.550988), (22.420055, -44.550327, -3.550988), (24.69221, -43.30127, -3.9108617), (24.863047, -43.30127, -2.6132116), (22.575174, -44.550327, -2.3727465), (22.575174, -44.550327, -2.3727465), (24.863047, -43.30127, -2.6132116), (24.965738, -43.30127, -1.308399), (22.668417, -44.550327, -1.1880014), (22.668417, -44.550327, -1.1880014), (24.965738, -43.30127, -1.308399), (25, -43.30127, 0), (22.699526, -44.550327, 0), (25, -43.30127, 0), (27.231953, -41.93353, 0), (27.194632, -41.93353, 1.4252102), (24.965738, -43.30127, 1.308399), (24.965738, -43.30127, 1.308399), (27.194632, -41.93353, 1.4252102), (27.082773, -41.93353, 2.846514), (24.863047, -43.30127, 2.6132116), (24.863047, -43.30127, 2.6132116), (27.082773, -41.93353, 2.846514), (26.89668, -41.93353, 4.260016), (24.69221, -43.30127, 3.9108617), (24.69221, -43.30127, 3.9108617), (26.89668, -41.93353, 4.260016), (26.636868, -41.93353, 5.661841), (24.45369, -43.30127, 5.197792), (24.45369, -43.30127, 5.197792), (26.636868, -41.93353, 5.661841), (26.304045, -41.93353, 7.0481477), (24.148146, -43.30127, 6.470476), (24.148146, -43.30127, 6.470476), (26.304045, -41.93353, 7.0481477), (25.899126, -41.93353, 8.415136), (23.776413, -43.30127, 7.725425), (23.776413, -43.30127, 7.725425), (25.899126, -41.93353, 8.415136), (25.423218, -41.93353, 9.759059), (23.33951, -43.30127, 8.959199), (23.33951, -43.30127, 8.959199), (25.423218, -41.93353, 9.759059), (24.877626, -41.93353, 11.076233), (22.838636, -43.30127, 10.168416), (22.838636, -43.30127, 10.168416), (24.877626, -41.93353, 11.076233), (24.263847, -41.93353, 12.363048), (22.275164, -43.30127, 11.349763), (22.275164, -43.30127, 11.349763), (24.263847, -41.93353, 12.363048), (23.583563, -41.93353, 13.615976), (21.650635, -43.30127, 12.5), (21.650635, -43.30127, 12.5), (23.583563, -41.93353, 13.615976), (22.838636, -41.93353, 14.831584), (20.966764, -43.30127, 13.615976), (20.966764, -43.30127, 13.615976), (22.838636, -41.93353, 14.831584), (22.031113, -41.93353, 16.00654), (20.225426, -43.30127, 14.694632), (20.225426, -43.30127, 14.694632), (22.031113, -41.93353, 16.00654), (21.1632, -41.93353, 17.137623), (19.42865, -43.30127, 15.733009), (19.42865, -43.30127, 15.733009), (21.1632, -41.93353, 17.137623), (20.237284, -41.93353, 18.221733), (18.57862, -43.30127, 16.728266), (18.57862, -43.30127, 16.728266), (20.237284, -41.93353, 18.221733), (19.255898, -41.93353, 19.255898), (17.67767, -43.30127, 17.67767), (17.67767, -43.30127, 17.67767), (19.255898, -41.93353, 19.255898), (18.221733, -41.93353, 20.237284), (16.728266, -43.30127, 18.57862), (16.728266, -43.30127, 18.57862), (18.221733, -41.93353, 20.237284), (17.137623, -41.93353, 21.1632), (15.733009, -43.30127, 19.42865), (15.733009, -43.30127, 19.42865), (17.137623, -41.93353, 21.1632), (16.00654, -41.93353, 22.031113), (14.694632, -43.30127, 20.225426), (14.694632, -43.30127, 20.225426), (16.00654, -41.93353, 22.031113), (14.831584, -41.93353, 22.838636), (13.615976, -43.30127, 20.966764), (13.615976, -43.30127, 20.966764), (14.831584, -41.93353, 22.838636), (13.615976, -41.93353, 23.583563), (12.5, -43.30127, 21.650635), (12.5, -43.30127, 21.650635), (13.615976, -41.93353, 23.583563), (12.363048, -41.93353, 24.263847), (11.349763, -43.30127, 22.275164), (11.349763, -43.30127, 22.275164), (12.363048, -41.93353, 24.263847), (11.076233, -41.93353, 24.877626), (10.168416, -43.30127, 22.838636), (10.168416, -43.30127, 22.838636), (11.076233, -41.93353, 24.877626), (9.759059, -41.93353, 25.423218), (8.959199, -43.30127, 23.33951), (8.959199, -43.30127, 23.33951), (9.759059, -41.93353, 25.423218), (8.415136, -41.93353, 25.899126), (7.725425, -43.30127, 23.776413), (7.725425, -43.30127, 23.776413), (8.415136, -41.93353, 25.899126), (7.0481477, -41.93353, 26.304045), (6.470476, -43.30127, 24.148146), (6.470476, -43.30127, 24.148146), (7.0481477, -41.93353, 26.304045), (5.661841, -41.93353, 26.636868), (5.197792, -43.30127, 24.45369), (5.197792, -43.30127, 24.45369), (5.661841, -41.93353, 26.636868), (4.260016, -41.93353, 26.89668), (3.9108617, -43.30127, 24.69221), (3.9108617, -43.30127, 24.69221), (4.260016, -41.93353, 26.89668), (2.846514, -41.93353, 27.082773), (2.6132116, -43.30127, 24.863047), (2.6132116, -43.30127, 24.863047), (2.846514, -41.93353, 27.082773), (1.4252102, -41.93353, 27.194632), (1.308399, -43.30127, 24.965738), (1.308399, -43.30127, 24.965738), (1.4252102, -41.93353, 27.194632), (1.6674762e-15, -41.93353, 27.231953), (1.5308084e-15, -43.30127, 25), (1.5308084e-15, -43.30127, 25), (1.6674762e-15, -41.93353, 27.231953), (-1.4252102, -41.93353, 27.194632), (-1.308399, -43.30127, 24.965738), (-1.308399, -43.30127, 24.965738), (-1.4252102, -41.93353, 27.194632), (-2.846514, -41.93353, 27.082773), (-2.6132116, -43.30127, 24.863047), (-2.6132116, -43.30127, 24.863047), (-2.846514, -41.93353, 27.082773), (-4.260016, -41.93353, 26.89668), (-3.9108617, -43.30127, 24.69221), (-3.9108617, -43.30127, 24.69221), (-4.260016, -41.93353, 26.89668), (-5.661841, -41.93353, 26.636868), (-5.197792, -43.30127, 24.45369), (-5.197792, -43.30127, 24.45369), (-5.661841, -41.93353, 26.636868), (-7.0481477, -41.93353, 26.304045), (-6.470476, -43.30127, 24.148146), (-6.470476, -43.30127, 24.148146), (-7.0481477, -41.93353, 26.304045), (-8.415136, -41.93353, 25.899126), (-7.725425, -43.30127, 23.776413), (-7.725425, -43.30127, 23.776413), (-8.415136, -41.93353, 25.899126), (-9.759059, -41.93353, 25.423218), (-8.959199, -43.30127, 23.33951), (-8.959199, -43.30127, 23.33951), (-9.759059, -41.93353, 25.423218), (-11.076233, -41.93353, 24.877626), (-10.168416, -43.30127, 22.838636), (-10.168416, -43.30127, 22.838636), (-11.076233, -41.93353, 24.877626), (-12.363048, -41.93353, 24.263847), (-11.349763, -43.30127, 22.275164), (-11.349763, -43.30127, 22.275164), (-12.363048, -41.93353, 24.263847), (-13.615976, -41.93353, 23.583563), (-12.5, -43.30127, 21.650635), (-12.5, -43.30127, 21.650635), (-13.615976, -41.93353, 23.583563), (-14.831584, -41.93353, 22.838636), (-13.615976, -43.30127, 20.966764), (-13.615976, -43.30127, 20.966764), (-14.831584, -41.93353, 22.838636), (-16.00654, -41.93353, 22.031113), (-14.694632, -43.30127, 20.225426), (-14.694632, -43.30127, 20.225426), (-16.00654, -41.93353, 22.031113), (-17.137623, -41.93353, 21.1632), (-15.733009, -43.30127, 19.42865), (-15.733009, -43.30127, 19.42865), (-17.137623, -41.93353, 21.1632), (-18.221733, -41.93353, 20.237284), (-16.728266, -43.30127, 18.57862), (-16.728266, -43.30127, 18.57862), (-18.221733, -41.93353, 20.237284), (-19.255898, -41.93353, 19.255898), (-17.67767, -43.30127, 17.67767), (-17.67767, -43.30127, 17.67767), (-19.255898, -41.93353, 19.255898), (-20.237284, -41.93353, 18.221733), (-18.57862, -43.30127, 16.728266), (-18.57862, -43.30127, 16.728266), (-20.237284, -41.93353, 18.221733), (-21.1632, -41.93353, 17.137623), (-19.42865, -43.30127, 15.733009), (-19.42865, -43.30127, 15.733009), (-21.1632, -41.93353, 17.137623), (-22.031113, -41.93353, 16.00654), (-20.225426, -43.30127, 14.694632), (-20.225426, -43.30127, 14.694632), (-22.031113, -41.93353, 16.00654), (-22.838636, -41.93353, 14.831584), (-20.966764, -43.30127, 13.615976), (-20.966764, -43.30127, 13.615976), (-22.838636, -41.93353, 14.831584), (-23.583563, -41.93353, 13.615976), (-21.650635, -43.30127, 12.5), (-21.650635, -43.30127, 12.5), (-23.583563, -41.93353, 13.615976), (-24.263847, -41.93353, 12.363048), (-22.275164, -43.30127, 11.349763), (-22.275164, -43.30127, 11.349763), (-24.263847, -41.93353, 12.363048), (-24.877626, -41.93353, 11.076233), (-22.838636, -43.30127, 10.168416), (-22.838636, -43.30127, 10.168416), (-24.877626, -41.93353, 11.076233), (-25.423218, -41.93353, 9.759059), (-23.33951, -43.30127, 8.959199), (-23.33951, -43.30127, 8.959199), (-25.423218, -41.93353, 9.759059), (-25.899126, -41.93353, 8.415136), (-23.776413, -43.30127, 7.725425), (-23.776413, -43.30127, 7.725425), (-25.899126, -41.93353, 8.415136), (-26.304045, -41.93353, 7.0481477), (-24.148146, -43.30127, 6.470476), (-24.148146, -43.30127, 6.470476), (-26.304045, -41.93353, 7.0481477), (-26.636868, -41.93353, 5.661841), (-24.45369, -43.30127, 5.197792), (-24.45369, -43.30127, 5.197792), (-26.636868, -41.93353, 5.661841), (-26.89668, -41.93353, 4.260016), (-24.69221, -43.30127, 3.9108617), (-24.69221, -43.30127, 3.9108617), (-26.89668, -41.93353, 4.260016), (-27.082773, -41.93353, 2.846514), (-24.863047, -43.30127, 2.6132116), (-24.863047, -43.30127, 2.6132116), (-27.082773, -41.93353, 2.846514), (-27.194632, -41.93353, 1.4252102), (-24.965738, -43.30127, 1.308399), (-24.965738, -43.30127, 1.308399), (-27.194632, -41.93353, 1.4252102), (-27.231953, -41.93353, 3.3349523e-15), (-25, -43.30127, 3.0616169e-15), (-25, -43.30127, 3.0616169e-15), (-27.231953, -41.93353, 3.3349523e-15), (-27.194632, -41.93353, -1.4252102), (-24.965738, -43.30127, -1.308399), (-24.965738, -43.30127, -1.308399), (-27.194632, -41.93353, -1.4252102), (-27.082773, -41.93353, -2.846514), (-24.863047, -43.30127, -2.6132116), (-24.863047, -43.30127, -2.6132116), (-27.082773, -41.93353, -2.846514), (-26.89668, -41.93353, -4.260016), (-24.69221, -43.30127, -3.9108617), (-24.69221, -43.30127, -3.9108617), (-26.89668, -41.93353, -4.260016), (-26.636868, -41.93353, -5.661841), (-24.45369, -43.30127, -5.197792), (-24.45369, -43.30127, -5.197792), (-26.636868, -41.93353, -5.661841), (-26.304045, -41.93353, -7.0481477), (-24.148146, -43.30127, -6.470476), (-24.148146, -43.30127, -6.470476), (-26.304045, -41.93353, -7.0481477), (-25.899126, -41.93353, -8.415136), (-23.776413, -43.30127, -7.725425), (-23.776413, -43.30127, -7.725425), (-25.899126, -41.93353, -8.415136), (-25.423218, -41.93353, -9.759059), (-23.33951, -43.30127, -8.959199), (-23.33951, -43.30127, -8.959199), (-25.423218, -41.93353, -9.759059), (-24.877626, -41.93353, -11.076233), (-22.838636, -43.30127, -10.168416), (-22.838636, -43.30127, -10.168416), (-24.877626, -41.93353, -11.076233), (-24.263847, -41.93353, -12.363048), (-22.275164, -43.30127, -11.349763), (-22.275164, -43.30127, -11.349763), (-24.263847, -41.93353, -12.363048), (-23.583563, -41.93353, -13.615976), (-21.650635, -43.30127, -12.5), (-21.650635, -43.30127, -12.5), (-23.583563, -41.93353, -13.615976), (-22.838636, -41.93353, -14.831584), (-20.966764, -43.30127, -13.615976), (-20.966764, -43.30127, -13.615976), (-22.838636, -41.93353, -14.831584), (-22.031113, -41.93353, -16.00654), (-20.225426, -43.30127, -14.694632), (-20.225426, -43.30127, -14.694632), (-22.031113, -41.93353, -16.00654), (-21.1632, -41.93353, -17.137623), (-19.42865, -43.30127, -15.733009), (-19.42865, -43.30127, -15.733009), (-21.1632, -41.93353, -17.137623), (-20.237284, -41.93353, -18.221733), (-18.57862, -43.30127, -16.728266), (-18.57862, -43.30127, -16.728266), (-20.237284, -41.93353, -18.221733), (-19.255898, -41.93353, -19.255898), (-17.67767, -43.30127, -17.67767), (-17.67767, -43.30127, -17.67767), (-19.255898, -41.93353, -19.255898), (-18.221733, -41.93353, -20.237284), (-16.728266, -43.30127, -18.57862), (-16.728266, -43.30127, -18.57862), (-18.221733, -41.93353, -20.237284), (-17.137623, -41.93353, -21.1632), (-15.733009, -43.30127, -19.42865), (-15.733009, -43.30127, -19.42865), (-17.137623, -41.93353, -21.1632), (-16.00654, -41.93353, -22.031113), (-14.694632, -43.30127, -20.225426), (-14.694632, -43.30127, -20.225426), (-16.00654, -41.93353, -22.031113), (-14.831584, -41.93353, -22.838636), (-13.615976, -43.30127, -20.966764), (-13.615976, -43.30127, -20.966764), (-14.831584, -41.93353, -22.838636), (-13.615976, -41.93353, -23.583563), (-12.5, -43.30127, -21.650635), (-12.5, -43.30127, -21.650635), (-13.615976, -41.93353, -23.583563), (-12.363048, -41.93353, -24.263847), (-11.349763, -43.30127, -22.275164), (-11.349763, -43.30127, -22.275164), (-12.363048, -41.93353, -24.263847), (-11.076233, -41.93353, -24.877626), (-10.168416, -43.30127, -22.838636), (-10.168416, -43.30127, -22.838636), (-11.076233, -41.93353, -24.877626), (-9.759059, -41.93353, -25.423218), (-8.959199, -43.30127, -23.33951), (-8.959199, -43.30127, -23.33951), (-9.759059, -41.93353, -25.423218), (-8.415136, -41.93353, -25.899126), (-7.725425, -43.30127, -23.776413), (-7.725425, -43.30127, -23.776413), (-8.415136, -41.93353, -25.899126), (-7.0481477, -41.93353, -26.304045), (-6.470476, -43.30127, -24.148146), (-6.470476, -43.30127, -24.148146), (-7.0481477, -41.93353, -26.304045), (-5.661841, -41.93353, -26.636868), (-5.197792, -43.30127, -24.45369), (-5.197792, -43.30127, -24.45369), (-5.661841, -41.93353, -26.636868), (-4.260016, -41.93353, -26.89668), (-3.9108617, -43.30127, -24.69221), (-3.9108617, -43.30127, -24.69221), (-4.260016, -41.93353, -26.89668), (-2.846514, -41.93353, -27.082773), (-2.6132116, -43.30127, -24.863047), (-2.6132116, -43.30127, -24.863047), (-2.846514, -41.93353, -27.082773), (-1.4252102, -41.93353, -27.194632), (-1.308399, -43.30127, -24.965738), (-1.308399, -43.30127, -24.965738), (-1.4252102, -41.93353, -27.194632), (-5.0024284e-15, -41.93353, -27.231953), (-4.5924254e-15, -43.30127, -25), (-4.5924254e-15, -43.30127, -25), (-5.0024284e-15, -41.93353, -27.231953), (1.4252102, -41.93353, -27.194632), (1.308399, -43.30127, -24.965738), (1.308399, -43.30127, -24.965738), (1.4252102, -41.93353, -27.194632), (2.846514, -41.93353, -27.082773), (2.6132116, -43.30127, -24.863047), (2.6132116, -43.30127, -24.863047), (2.846514, -41.93353, -27.082773), (4.260016, -41.93353, -26.89668), (3.9108617, -43.30127, -24.69221), (3.9108617, -43.30127, -24.69221), (4.260016, -41.93353, -26.89668), (5.661841, -41.93353, -26.636868), (5.197792, -43.30127, -24.45369), (5.197792, -43.30127, -24.45369), (5.661841, -41.93353, -26.636868), (7.0481477, -41.93353, -26.304045), (6.470476, -43.30127, -24.148146), (6.470476, -43.30127, -24.148146), (7.0481477, -41.93353, -26.304045), (8.415136, -41.93353, -25.899126), (7.725425, -43.30127, -23.776413), (7.725425, -43.30127, -23.776413), (8.415136, -41.93353, -25.899126), (9.759059, -41.93353, -25.423218), (8.959199, -43.30127, -23.33951), (8.959199, -43.30127, -23.33951), (9.759059, -41.93353, -25.423218), (11.076233, -41.93353, -24.877626), (10.168416, -43.30127, -22.838636), (10.168416, -43.30127, -22.838636), (11.076233, -41.93353, -24.877626), (12.363048, -41.93353, -24.263847), (11.349763, -43.30127, -22.275164), (11.349763, -43.30127, -22.275164), (12.363048, -41.93353, -24.263847), (13.615976, -41.93353, -23.583563), (12.5, -43.30127, -21.650635), (12.5, -43.30127, -21.650635), (13.615976, -41.93353, -23.583563), (14.831584, -41.93353, -22.838636), (13.615976, -43.30127, -20.966764), (13.615976, -43.30127, -20.966764), (14.831584, -41.93353, -22.838636), (16.00654, -41.93353, -22.031113), (14.694632, -43.30127, -20.225426), (14.694632, -43.30127, -20.225426), (16.00654, -41.93353, -22.031113), (17.137623, -41.93353, -21.1632), (15.733009, -43.30127, -19.42865), (15.733009, -43.30127, -19.42865), (17.137623, -41.93353, -21.1632), (18.221733, -41.93353, -20.237284), (16.728266, -43.30127, -18.57862), (16.728266, -43.30127, -18.57862), (18.221733, -41.93353, -20.237284), (19.255898, -41.93353, -19.255898), (17.67767, -43.30127, -17.67767), (17.67767, -43.30127, -17.67767), (19.255898, -41.93353, -19.255898), (20.237284, -41.93353, -18.221733), (18.57862, -43.30127, -16.728266), (18.57862, -43.30127, -16.728266), (20.237284, -41.93353, -18.221733), (21.1632, -41.93353, -17.137623), (19.42865, -43.30127, -15.733009), (19.42865, -43.30127, -15.733009), (21.1632, -41.93353, -17.137623), (22.031113, -41.93353, -16.00654), (20.225426, -43.30127, -14.694632), (20.225426, -43.30127, -14.694632), (22.031113, -41.93353, -16.00654), (22.838636, -41.93353, -14.831584), (20.966764, -43.30127, -13.615976), (20.966764, -43.30127, -13.615976), (22.838636, -41.93353, -14.831584), (23.583563, -41.93353, -13.615976), (21.650635, -43.30127, -12.5), (21.650635, -43.30127, -12.5), (23.583563, -41.93353, -13.615976), (24.263847, -41.93353, -12.363048), (22.275164, -43.30127, -11.349763), (22.275164, -43.30127, -11.349763), (24.263847, -41.93353, -12.363048), (24.877626, -41.93353, -11.076233), (22.838636, -43.30127, -10.168416), (22.838636, -43.30127, -10.168416), (24.877626, -41.93353, -11.076233), (25.423218, -41.93353, -9.759059), (23.33951, -43.30127, -8.959199), (23.33951, -43.30127, -8.959199), (25.423218, -41.93353, -9.759059), (25.899126, -41.93353, -8.415136), (23.776413, -43.30127, -7.725425), (23.776413, -43.30127, -7.725425), (25.899126, -41.93353, -8.415136), (26.304045, -41.93353, -7.0481477), (24.148146, -43.30127, -6.470476), (24.148146, -43.30127, -6.470476), (26.304045, -41.93353, -7.0481477), (26.636868, -41.93353, -5.661841), (24.45369, -43.30127, -5.197792), (24.45369, -43.30127, -5.197792), (26.636868, -41.93353, -5.661841), (26.89668, -41.93353, -4.260016), (24.69221, -43.30127, -3.9108617), (24.69221, -43.30127, -3.9108617), (26.89668, -41.93353, -4.260016), (27.082773, -41.93353, -2.846514), (24.863047, -43.30127, -2.6132116), (24.863047, -43.30127, -2.6132116), (27.082773, -41.93353, -2.846514), (27.194632, -41.93353, -1.4252102), (24.965738, -43.30127, -1.308399), (24.965738, -43.30127, -1.308399), (27.194632, -41.93353, -1.4252102), (27.231953, -41.93353, 0), (25, -43.30127, 0), (27.231953, -41.93353, 0), (29.389263, -40.45085, 0), (29.348986, -40.45085, 1.5381151), (27.194632, -41.93353, 1.4252102), (27.194632, -41.93353, 1.4252102), (29.348986, -40.45085, 1.5381151), (29.228266, -40.45085, 3.0720146), (27.082773, -41.93353, 2.846514), (27.082773, -41.93353, 2.846514), (29.228266, -40.45085, 3.0720146), (29.027431, -40.45085, 4.5974936), (26.89668, -41.93353, 4.260016), (26.89668, -41.93353, 4.260016), (29.027431, -40.45085, 4.5974936), (28.747036, -40.45085, 6.110371), (26.636868, -41.93353, 5.661841), (26.636868, -41.93353, 5.661841), (28.747036, -40.45085, 6.110371), (28.387848, -40.45085, 7.606501), (26.304045, -41.93353, 7.0481477), (26.304045, -41.93353, 7.0481477), (28.387848, -40.45085, 7.606501), (27.95085, -40.45085, 9.081781), (25.899126, -41.93353, 8.415136), (25.899126, -41.93353, 8.415136), (27.95085, -40.45085, 9.081781), (27.43724, -40.45085, 10.532169), (25.423218, -41.93353, 9.759059), (25.423218, -41.93353, 9.759059), (27.43724, -40.45085, 10.532169), (26.848427, -40.45085, 11.95369), (24.877626, -41.93353, 11.076233), (24.877626, -41.93353, 11.076233), (26.848427, -40.45085, 11.95369), (26.186026, -40.45085, 13.342446), (24.263847, -41.93353, 12.363048), (24.263847, -41.93353, 12.363048), (26.186026, -40.45085, 13.342446), (25.451847, -40.45085, 14.694632), (23.583563, -41.93353, 13.615976), (23.583563, -41.93353, 13.615976), (25.451847, -40.45085, 14.694632), (24.64791, -40.45085, 16.00654), (22.838636, -41.93353, 14.831584), (22.838636, -41.93353, 14.831584), (24.64791, -40.45085, 16.00654), (23.776413, -40.45085, 17.274574), (22.031113, -41.93353, 16.00654), (22.031113, -41.93353, 16.00654), (23.776413, -40.45085, 17.274574), (22.839746, -40.45085, 18.495262), (21.1632, -41.93353, 17.137623), (21.1632, -41.93353, 17.137623), (22.839746, -40.45085, 18.495262), (21.840479, -40.45085, 19.665255), (20.237284, -41.93353, 18.221733), (20.237284, -41.93353, 18.221733), (21.840479, -40.45085, 19.665255), (20.781347, -40.45085, 20.781347), (19.255898, -41.93353, 19.255898), (19.255898, -41.93353, 19.255898), (20.781347, -40.45085, 20.781347), (19.665255, -40.45085, 21.840479), (18.221733, -41.93353, 20.237284), (18.221733, -41.93353, 20.237284), (19.665255, -40.45085, 21.840479), (18.495262, -40.45085, 22.839746), (17.137623, -41.93353, 21.1632), (17.137623, -41.93353, 21.1632), (18.495262, -40.45085, 22.839746), (17.274574, -40.45085, 23.776413), (16.00654, -41.93353, 22.031113), (16.00654, -41.93353, 22.031113), (17.274574, -40.45085, 23.776413), (16.00654, -40.45085, 24.64791), (14.831584, -41.93353, 22.838636), (14.831584, -41.93353, 22.838636), (16.00654, -40.45085, 24.64791), (14.694632, -40.45085, 25.451847), (13.615976, -41.93353, 23.583563), (13.615976, -41.93353, 23.583563), (14.694632, -40.45085, 25.451847), (13.342446, -40.45085, 26.186026), (12.363048, -41.93353, 24.263847), (12.363048, -41.93353, 24.263847), (13.342446, -40.45085, 26.186026), (11.95369, -40.45085, 26.848427), (11.076233, -41.93353, 24.877626), (11.076233, -41.93353, 24.877626), (11.95369, -40.45085, 26.848427), (10.532169, -40.45085, 27.43724), (9.759059, -41.93353, 25.423218), (9.759059, -41.93353, 25.423218), (10.532169, -40.45085, 27.43724), (9.081781, -40.45085, 27.95085), (8.415136, -41.93353, 25.899126), (8.415136, -41.93353, 25.899126), (9.081781, -40.45085, 27.95085), (7.606501, -40.45085, 28.387848), (7.0481477, -41.93353, 26.304045), (7.0481477, -41.93353, 26.304045), (7.606501, -40.45085, 28.387848), (6.110371, -40.45085, 28.747036), (5.661841, -41.93353, 26.636868), (5.661841, -41.93353, 26.636868), (6.110371, -40.45085, 28.747036), (4.5974936, -40.45085, 29.027431), (4.260016, -41.93353, 26.89668), (4.260016, -41.93353, 26.89668), (4.5974936, -40.45085, 29.027431), (3.0720146, -40.45085, 29.228266), (2.846514, -41.93353, 27.082773), (2.846514, -41.93353, 27.082773), (3.0720146, -40.45085, 29.228266), (1.5381151, -40.45085, 29.348986), (1.4252102, -41.93353, 27.194632), (1.4252102, -41.93353, 27.194632), (1.5381151, -40.45085, 29.348986), (1.7995734e-15, -40.45085, 29.389263), (1.6674762e-15, -41.93353, 27.231953), (1.6674762e-15, -41.93353, 27.231953), (1.7995734e-15, -40.45085, 29.389263), (-1.5381151, -40.45085, 29.348986), (-1.4252102, -41.93353, 27.194632), (-1.4252102, -41.93353, 27.194632), (-1.5381151, -40.45085, 29.348986), (-3.0720146, -40.45085, 29.228266), (-2.846514, -41.93353, 27.082773), (-2.846514, -41.93353, 27.082773), (-3.0720146, -40.45085, 29.228266), (-4.5974936, -40.45085, 29.027431), (-4.260016, -41.93353, 26.89668), (-4.260016, -41.93353, 26.89668), (-4.5974936, -40.45085, 29.027431), (-6.110371, -40.45085, 28.747036), (-5.661841, -41.93353, 26.636868), (-5.661841, -41.93353, 26.636868), (-6.110371, -40.45085, 28.747036), (-7.606501, -40.45085, 28.387848), (-7.0481477, -41.93353, 26.304045), (-7.0481477, -41.93353, 26.304045), (-7.606501, -40.45085, 28.387848), (-9.081781, -40.45085, 27.95085), (-8.415136, -41.93353, 25.899126), (-8.415136, -41.93353, 25.899126), (-9.081781, -40.45085, 27.95085), (-10.532169, -40.45085, 27.43724), (-9.759059, -41.93353, 25.423218), (-9.759059, -41.93353, 25.423218), (-10.532169, -40.45085, 27.43724), (-11.95369, -40.45085, 26.848427), (-11.076233, -41.93353, 24.877626), (-11.076233, -41.93353, 24.877626), (-11.95369, -40.45085, 26.848427), (-13.342446, -40.45085, 26.186026), (-12.363048, -41.93353, 24.263847), (-12.363048, -41.93353, 24.263847), (-13.342446, -40.45085, 26.186026), (-14.694632, -40.45085, 25.451847), (-13.615976, -41.93353, 23.583563), (-13.615976, -41.93353, 23.583563), (-14.694632, -40.45085, 25.451847), (-16.00654, -40.45085, 24.64791), (-14.831584, -41.93353, 22.838636), (-14.831584, -41.93353, 22.838636), (-16.00654, -40.45085, 24.64791), (-17.274574, -40.45085, 23.776413), (-16.00654, -41.93353, 22.031113), (-16.00654, -41.93353, 22.031113), (-17.274574, -40.45085, 23.776413), (-18.495262, -40.45085, 22.839746), (-17.137623, -41.93353, 21.1632), (-17.137623, -41.93353, 21.1632), (-18.495262, -40.45085, 22.839746), (-19.665255, -40.45085, 21.840479), (-18.221733, -41.93353, 20.237284), (-18.221733, -41.93353, 20.237284), (-19.665255, -40.45085, 21.840479), (-20.781347, -40.45085, 20.781347), (-19.255898, -41.93353, 19.255898), (-19.255898, -41.93353, 19.255898), (-20.781347, -40.45085, 20.781347), (-21.840479, -40.45085, 19.665255), (-20.237284, -41.93353, 18.221733), (-20.237284, -41.93353, 18.221733), (-21.840479, -40.45085, 19.665255), (-22.839746, -40.45085, 18.495262), (-21.1632, -41.93353, 17.137623), (-21.1632, -41.93353, 17.137623), (-22.839746, -40.45085, 18.495262), (-23.776413, -40.45085, 17.274574), (-22.031113, -41.93353, 16.00654), (-22.031113, -41.93353, 16.00654), (-23.776413, -40.45085, 17.274574), (-24.64791, -40.45085, 16.00654), (-22.838636, -41.93353, 14.831584), (-22.838636, -41.93353, 14.831584), (-24.64791, -40.45085, 16.00654), (-25.451847, -40.45085, 14.694632), (-23.583563, -41.93353, 13.615976), (-23.583563, -41.93353, 13.615976), (-25.451847, -40.45085, 14.694632), (-26.186026, -40.45085, 13.342446), (-24.263847, -41.93353, 12.363048), (-24.263847, -41.93353, 12.363048), (-26.186026, -40.45085, 13.342446), (-26.848427, -40.45085, 11.95369), (-24.877626, -41.93353, 11.076233), (-24.877626, -41.93353, 11.076233), (-26.848427, -40.45085, 11.95369), (-27.43724, -40.45085, 10.532169), (-25.423218, -41.93353, 9.759059), (-25.423218, -41.93353, 9.759059), (-27.43724, -40.45085, 10.532169), (-27.95085, -40.45085, 9.081781), (-25.899126, -41.93353, 8.415136), (-25.899126, -41.93353, 8.415136), (-27.95085, -40.45085, 9.081781), (-28.387848, -40.45085, 7.606501), (-26.304045, -41.93353, 7.0481477), (-26.304045, -41.93353, 7.0481477), (-28.387848, -40.45085, 7.606501), (-28.747036, -40.45085, 6.110371), (-26.636868, -41.93353, 5.661841), (-26.636868, -41.93353, 5.661841), (-28.747036, -40.45085, 6.110371), (-29.027431, -40.45085, 4.5974936), (-26.89668, -41.93353, 4.260016), (-26.89668, -41.93353, 4.260016), (-29.027431, -40.45085, 4.5974936), (-29.228266, -40.45085, 3.0720146), (-27.082773, -41.93353, 2.846514), (-27.082773, -41.93353, 2.846514), (-29.228266, -40.45085, 3.0720146), (-29.348986, -40.45085, 1.5381151), (-27.194632, -41.93353, 1.4252102), (-27.194632, -41.93353, 1.4252102), (-29.348986, -40.45085, 1.5381151), (-29.389263, -40.45085, 3.5991468e-15), (-27.231953, -41.93353, 3.3349523e-15), (-27.231953, -41.93353, 3.3349523e-15), (-29.389263, -40.45085, 3.5991468e-15), (-29.348986, -40.45085, -1.5381151), (-27.194632, -41.93353, -1.4252102), (-27.194632, -41.93353, -1.4252102), (-29.348986, -40.45085, -1.5381151), (-29.228266, -40.45085, -3.0720146), (-27.082773, -41.93353, -2.846514), (-27.082773, -41.93353, -2.846514), (-29.228266, -40.45085, -3.0720146), (-29.027431, -40.45085, -4.5974936), (-26.89668, -41.93353, -4.260016), (-26.89668, -41.93353, -4.260016), (-29.027431, -40.45085, -4.5974936), (-28.747036, -40.45085, -6.110371), (-26.636868, -41.93353, -5.661841), (-26.636868, -41.93353, -5.661841), (-28.747036, -40.45085, -6.110371), (-28.387848, -40.45085, -7.606501), (-26.304045, -41.93353, -7.0481477), (-26.304045, -41.93353, -7.0481477), (-28.387848, -40.45085, -7.606501), (-27.95085, -40.45085, -9.081781), (-25.899126, -41.93353, -8.415136), (-25.899126, -41.93353, -8.415136), (-27.95085, -40.45085, -9.081781), (-27.43724, -40.45085, -10.532169), (-25.423218, -41.93353, -9.759059), (-25.423218, -41.93353, -9.759059), (-27.43724, -40.45085, -10.532169), (-26.848427, -40.45085, -11.95369), (-24.877626, -41.93353, -11.076233), (-24.877626, -41.93353, -11.076233), (-26.848427, -40.45085, -11.95369), (-26.186026, -40.45085, -13.342446), (-24.263847, -41.93353, -12.363048), (-24.263847, -41.93353, -12.363048), (-26.186026, -40.45085, -13.342446), (-25.451847, -40.45085, -14.694632), (-23.583563, -41.93353, -13.615976), (-23.583563, -41.93353, -13.615976), (-25.451847, -40.45085, -14.694632), (-24.64791, -40.45085, -16.00654), (-22.838636, -41.93353, -14.831584), (-22.838636, -41.93353, -14.831584), (-24.64791, -40.45085, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.031113, -41.93353, -16.00654), (-22.031113, -41.93353, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.839746, -40.45085, -18.495262), (-21.1632, -41.93353, -17.137623), (-21.1632, -41.93353, -17.137623), (-22.839746, -40.45085, -18.495262), (-21.840479, -40.45085, -19.665255), (-20.237284, -41.93353, -18.221733), (-20.237284, -41.93353, -18.221733), (-21.840479, -40.45085, -19.665255), (-20.781347, -40.45085, -20.781347), (-19.255898, -41.93353, -19.255898), (-19.255898, -41.93353, -19.255898), (-20.781347, -40.45085, -20.781347), (-19.665255, -40.45085, -21.840479), (-18.221733, -41.93353, -20.237284), (-18.221733, -41.93353, -20.237284), (-19.665255, -40.45085, -21.840479), (-18.495262, -40.45085, -22.839746), (-17.137623, -41.93353, -21.1632), (-17.137623, -41.93353, -21.1632), (-18.495262, -40.45085, -22.839746), (-17.274574, -40.45085, -23.776413), (-16.00654, -41.93353, -22.031113), (-16.00654, -41.93353, -22.031113), (-17.274574, -40.45085, -23.776413), (-16.00654, -40.45085, -24.64791), (-14.831584, -41.93353, -22.838636), (-14.831584, -41.93353, -22.838636), (-16.00654, -40.45085, -24.64791), (-14.694632, -40.45085, -25.451847), (-13.615976, -41.93353, -23.583563), (-13.615976, -41.93353, -23.583563), (-14.694632, -40.45085, -25.451847), (-13.342446, -40.45085, -26.186026), (-12.363048, -41.93353, -24.263847), (-12.363048, -41.93353, -24.263847), (-13.342446, -40.45085, -26.186026), (-11.95369, -40.45085, -26.848427), (-11.076233, -41.93353, -24.877626), (-11.076233, -41.93353, -24.877626), (-11.95369, -40.45085, -26.848427), (-10.532169, -40.45085, -27.43724), (-9.759059, -41.93353, -25.423218), (-9.759059, -41.93353, -25.423218), (-10.532169, -40.45085, -27.43724), (-9.081781, -40.45085, -27.95085), (-8.415136, -41.93353, -25.899126), (-8.415136, -41.93353, -25.899126), (-9.081781, -40.45085, -27.95085), (-7.606501, -40.45085, -28.387848), (-7.0481477, -41.93353, -26.304045), (-7.0481477, -41.93353, -26.304045), (-7.606501, -40.45085, -28.387848), (-6.110371, -40.45085, -28.747036), (-5.661841, -41.93353, -26.636868), (-5.661841, -41.93353, -26.636868), (-6.110371, -40.45085, -28.747036), (-4.5974936, -40.45085, -29.027431), (-4.260016, -41.93353, -26.89668), (-4.260016, -41.93353, -26.89668), (-4.5974936, -40.45085, -29.027431), (-3.0720146, -40.45085, -29.228266), (-2.846514, -41.93353, -27.082773), (-2.846514, -41.93353, -27.082773), (-3.0720146, -40.45085, -29.228266), (-1.5381151, -40.45085, -29.348986), (-1.4252102, -41.93353, -27.194632), (-1.4252102, -41.93353, -27.194632), (-1.5381151, -40.45085, -29.348986), (-5.39872e-15, -40.45085, -29.389263), (-5.0024284e-15, -41.93353, -27.231953), (-5.0024284e-15, -41.93353, -27.231953), (-5.39872e-15, -40.45085, -29.389263), (1.5381151, -40.45085, -29.348986), (1.4252102, -41.93353, -27.194632), (1.4252102, -41.93353, -27.194632), (1.5381151, -40.45085, -29.348986), (3.0720146, -40.45085, -29.228266), (2.846514, -41.93353, -27.082773), (2.846514, -41.93353, -27.082773), (3.0720146, -40.45085, -29.228266), (4.5974936, -40.45085, -29.027431), (4.260016, -41.93353, -26.89668), (4.260016, -41.93353, -26.89668), (4.5974936, -40.45085, -29.027431), (6.110371, -40.45085, -28.747036), (5.661841, -41.93353, -26.636868), (5.661841, -41.93353, -26.636868), (6.110371, -40.45085, -28.747036), (7.606501, -40.45085, -28.387848), (7.0481477, -41.93353, -26.304045), (7.0481477, -41.93353, -26.304045), (7.606501, -40.45085, -28.387848), (9.081781, -40.45085, -27.95085), (8.415136, -41.93353, -25.899126), (8.415136, -41.93353, -25.899126), (9.081781, -40.45085, -27.95085), (10.532169, -40.45085, -27.43724), (9.759059, -41.93353, -25.423218), (9.759059, -41.93353, -25.423218), (10.532169, -40.45085, -27.43724), (11.95369, -40.45085, -26.848427), (11.076233, -41.93353, -24.877626), (11.076233, -41.93353, -24.877626), (11.95369, -40.45085, -26.848427), (13.342446, -40.45085, -26.186026), (12.363048, -41.93353, -24.263847), (12.363048, -41.93353, -24.263847), (13.342446, -40.45085, -26.186026), (14.694632, -40.45085, -25.451847), (13.615976, -41.93353, -23.583563), (13.615976, -41.93353, -23.583563), (14.694632, -40.45085, -25.451847), (16.00654, -40.45085, -24.64791), (14.831584, -41.93353, -22.838636), (14.831584, -41.93353, -22.838636), (16.00654, -40.45085, -24.64791), (17.274574, -40.45085, -23.776413), (16.00654, -41.93353, -22.031113), (16.00654, -41.93353, -22.031113), (17.274574, -40.45085, -23.776413), (18.495262, -40.45085, -22.839746), (17.137623, -41.93353, -21.1632), (17.137623, -41.93353, -21.1632), (18.495262, -40.45085, -22.839746), (19.665255, -40.45085, -21.840479), (18.221733, -41.93353, -20.237284), (18.221733, -41.93353, -20.237284), (19.665255, -40.45085, -21.840479), (20.781347, -40.45085, -20.781347), (19.255898, -41.93353, -19.255898), (19.255898, -41.93353, -19.255898), (20.781347, -40.45085, -20.781347), (21.840479, -40.45085, -19.665255), (20.237284, -41.93353, -18.221733), (20.237284, -41.93353, -18.221733), (21.840479, -40.45085, -19.665255), (22.839746, -40.45085, -18.495262), (21.1632, -41.93353, -17.137623), (21.1632, -41.93353, -17.137623), (22.839746, -40.45085, -18.495262), (23.776413, -40.45085, -17.274574), (22.031113, -41.93353, -16.00654), (22.031113, -41.93353, -16.00654), (23.776413, -40.45085, -17.274574), (24.64791, -40.45085, -16.00654), (22.838636, -41.93353, -14.831584), (22.838636, -41.93353, -14.831584), (24.64791, -40.45085, -16.00654), (25.451847, -40.45085, -14.694632), (23.583563, -41.93353, -13.615976), (23.583563, -41.93353, -13.615976), (25.451847, -40.45085, -14.694632), (26.186026, -40.45085, -13.342446), (24.263847, -41.93353, -12.363048), (24.263847, -41.93353, -12.363048), (26.186026, -40.45085, -13.342446), (26.848427, -40.45085, -11.95369), (24.877626, -41.93353, -11.076233), (24.877626, -41.93353, -11.076233), (26.848427, -40.45085, -11.95369), (27.43724, -40.45085, -10.532169), (25.423218, -41.93353, -9.759059), (25.423218, -41.93353, -9.759059), (27.43724, -40.45085, -10.532169), (27.95085, -40.45085, -9.081781), (25.899126, -41.93353, -8.415136), (25.899126, -41.93353, -8.415136), (27.95085, -40.45085, -9.081781), (28.387848, -40.45085, -7.606501), (26.304045, -41.93353, -7.0481477), (26.304045, -41.93353, -7.0481477), (28.387848, -40.45085, -7.606501), (28.747036, -40.45085, -6.110371), (26.636868, -41.93353, -5.661841), (26.636868, -41.93353, -5.661841), (28.747036, -40.45085, -6.110371), (29.027431, -40.45085, -4.5974936), (26.89668, -41.93353, -4.260016), (26.89668, -41.93353, -4.260016), (29.027431, -40.45085, -4.5974936), (29.228266, -40.45085, -3.0720146), (27.082773, -41.93353, -2.846514), (27.082773, -41.93353, -2.846514), (29.228266, -40.45085, -3.0720146), (29.348986, -40.45085, -1.5381151), (27.194632, -41.93353, -1.4252102), (27.194632, -41.93353, -1.4252102), (29.348986, -40.45085, -1.5381151), (29.389263, -40.45085, 0), (27.231953, -41.93353, 0), (29.389263, -40.45085, 0), (31.466019, -38.8573, 0), (31.422897, -38.8573, 1.6468042), (29.348986, -40.45085, 1.5381151), (29.348986, -40.45085, 1.5381151), (31.422897, -38.8573, 1.6468042), (31.293646, -38.8573, 3.2890947), (29.228266, -40.45085, 3.0720146), (29.228266, -40.45085, 3.0720146), (31.293646, -38.8573, 3.2890947), (31.07862, -38.8573, 4.92237), (29.027431, -40.45085, 4.5974936), (29.027431, -40.45085, 4.5974936), (31.07862, -38.8573, 4.92237), (30.778412, -38.8573, 6.5421534), (28.747036, -40.45085, 6.110371), (28.747036, -40.45085, 6.110371), (30.778412, -38.8573, 6.5421534), (30.39384, -38.8573, 8.144005), (28.387848, -40.45085, 7.606501), (28.387848, -40.45085, 7.606501), (30.39384, -38.8573, 8.144005), (29.925962, -38.8573, 9.723535), (27.95085, -40.45085, 9.081781), (27.95085, -40.45085, 9.081781), (29.925962, -38.8573, 9.723535), (29.37606, -38.8573, 11.276413), (27.43724, -40.45085, 10.532169), (27.43724, -40.45085, 10.532169), (29.37606, -38.8573, 11.276413), (28.74564, -38.8573, 12.798383), (26.848427, -40.45085, 11.95369), (26.848427, -40.45085, 11.95369), (28.74564, -38.8573, 12.798383), (28.036428, -38.8573, 14.285274), (26.186026, -40.45085, 13.342446), (26.186026, -40.45085, 13.342446), (28.036428, -38.8573, 14.285274), (27.250372, -38.8573, 15.733009), (25.451847, -40.45085, 14.694632), (25.451847, -40.45085, 14.694632), (27.250372, -38.8573, 15.733009), (26.389624, -38.8573, 17.137623), (24.64791, -40.45085, 16.00654), (24.64791, -40.45085, 16.00654), (26.389624, -38.8573, 17.137623), (25.456545, -38.8573, 18.495262), (23.776413, -40.45085, 17.274574), (23.776413, -40.45085, 17.274574), (25.456545, -38.8573, 18.495262), (24.45369, -38.8573, 19.802208), (22.839746, -40.45085, 18.495262), (22.839746, -40.45085, 18.495262), (24.45369, -38.8573, 19.802208), (23.38381, -38.8573, 21.054876), (21.840479, -40.45085, 19.665255), (21.840479, -40.45085, 19.665255), (23.38381, -38.8573, 21.054876), (22.249836, -38.8573, 22.249836), (20.781347, -40.45085, 20.781347), (20.781347, -40.45085, 20.781347), (22.249836, -38.8573, 22.249836), (21.054876, -38.8573, 23.38381), (19.665255, -40.45085, 21.840479), (19.665255, -40.45085, 21.840479), (21.054876, -38.8573, 23.38381), (19.802208, -38.8573, 24.45369), (18.495262, -40.45085, 22.839746), (18.495262, -40.45085, 22.839746), (19.802208, -38.8573, 24.45369), (18.495262, -38.8573, 25.456545), (17.274574, -40.45085, 23.776413), (17.274574, -40.45085, 23.776413), (18.495262, -38.8573, 25.456545), (17.137623, -38.8573, 26.389624), (16.00654, -40.45085, 24.64791), (16.00654, -40.45085, 24.64791), (17.137623, -38.8573, 26.389624), (15.733009, -38.8573, 27.250372), (14.694632, -40.45085, 25.451847), (14.694632, -40.45085, 25.451847), (15.733009, -38.8573, 27.250372), (14.285274, -38.8573, 28.036428), (13.342446, -40.45085, 26.186026), (13.342446, -40.45085, 26.186026), (14.285274, -38.8573, 28.036428), (12.798383, -38.8573, 28.74564), (11.95369, -40.45085, 26.848427), (11.95369, -40.45085, 26.848427), (12.798383, -38.8573, 28.74564), (11.276413, -38.8573, 29.37606), (10.532169, -40.45085, 27.43724), (10.532169, -40.45085, 27.43724), (11.276413, -38.8573, 29.37606), (9.723535, -38.8573, 29.925962), (9.081781, -40.45085, 27.95085), (9.081781, -40.45085, 27.95085), (9.723535, -38.8573, 29.925962), (8.144005, -38.8573, 30.39384), (7.606501, -40.45085, 28.387848), (7.606501, -40.45085, 28.387848), (8.144005, -38.8573, 30.39384), (6.5421534, -38.8573, 30.778412), (6.110371, -40.45085, 28.747036), (6.110371, -40.45085, 28.747036), (6.5421534, -38.8573, 30.778412), (4.92237, -38.8573, 31.07862), (4.5974936, -40.45085, 29.027431), (4.5974936, -40.45085, 29.027431), (4.92237, -38.8573, 31.07862), (3.2890947, -38.8573, 31.293646), (3.0720146, -40.45085, 29.228266), (3.0720146, -40.45085, 29.228266), (3.2890947, -38.8573, 31.293646), (1.6468042, -38.8573, 31.422897), (1.5381151, -40.45085, 29.348986), (1.5381151, -40.45085, 29.348986), (1.6468042, -38.8573, 31.422897), (1.926738e-15, -38.8573, 31.466019), (1.7995734e-15, -40.45085, 29.389263), (1.7995734e-15, -40.45085, 29.389263), (1.926738e-15, -38.8573, 31.466019), (-1.6468042, -38.8573, 31.422897), (-1.5381151, -40.45085, 29.348986), (-1.5381151, -40.45085, 29.348986), (-1.6468042, -38.8573, 31.422897), (-3.2890947, -38.8573, 31.293646), (-3.0720146, -40.45085, 29.228266), (-3.0720146, -40.45085, 29.228266), (-3.2890947, -38.8573, 31.293646), (-4.92237, -38.8573, 31.07862), (-4.5974936, -40.45085, 29.027431), (-4.5974936, -40.45085, 29.027431), (-4.92237, -38.8573, 31.07862), (-6.5421534, -38.8573, 30.778412), (-6.110371, -40.45085, 28.747036), (-6.110371, -40.45085, 28.747036), (-6.5421534, -38.8573, 30.778412), (-8.144005, -38.8573, 30.39384), (-7.606501, -40.45085, 28.387848), (-7.606501, -40.45085, 28.387848), (-8.144005, -38.8573, 30.39384), (-9.723535, -38.8573, 29.925962), (-9.081781, -40.45085, 27.95085), (-9.081781, -40.45085, 27.95085), (-9.723535, -38.8573, 29.925962), (-11.276413, -38.8573, 29.37606), (-10.532169, -40.45085, 27.43724), (-10.532169, -40.45085, 27.43724), (-11.276413, -38.8573, 29.37606), (-12.798383, -38.8573, 28.74564), (-11.95369, -40.45085, 26.848427), (-11.95369, -40.45085, 26.848427), (-12.798383, -38.8573, 28.74564), (-14.285274, -38.8573, 28.036428), (-13.342446, -40.45085, 26.186026), (-13.342446, -40.45085, 26.186026), (-14.285274, -38.8573, 28.036428), (-15.733009, -38.8573, 27.250372), (-14.694632, -40.45085, 25.451847), (-14.694632, -40.45085, 25.451847), (-15.733009, -38.8573, 27.250372), (-17.137623, -38.8573, 26.389624), (-16.00654, -40.45085, 24.64791), (-16.00654, -40.45085, 24.64791), (-17.137623, -38.8573, 26.389624), (-18.495262, -38.8573, 25.456545), (-17.274574, -40.45085, 23.776413), (-17.274574, -40.45085, 23.776413), (-18.495262, -38.8573, 25.456545), (-19.802208, -38.8573, 24.45369), (-18.495262, -40.45085, 22.839746), (-18.495262, -40.45085, 22.839746), (-19.802208, -38.8573, 24.45369), (-21.054876, -38.8573, 23.38381), (-19.665255, -40.45085, 21.840479), (-19.665255, -40.45085, 21.840479), (-21.054876, -38.8573, 23.38381), (-22.249836, -38.8573, 22.249836), (-20.781347, -40.45085, 20.781347), (-20.781347, -40.45085, 20.781347), (-22.249836, -38.8573, 22.249836), (-23.38381, -38.8573, 21.054876), (-21.840479, -40.45085, 19.665255), (-21.840479, -40.45085, 19.665255), (-23.38381, -38.8573, 21.054876), (-24.45369, -38.8573, 19.802208), (-22.839746, -40.45085, 18.495262), (-22.839746, -40.45085, 18.495262), (-24.45369, -38.8573, 19.802208), (-25.456545, -38.8573, 18.495262), (-23.776413, -40.45085, 17.274574), (-23.776413, -40.45085, 17.274574), (-25.456545, -38.8573, 18.495262), (-26.389624, -38.8573, 17.137623), (-24.64791, -40.45085, 16.00654), (-24.64791, -40.45085, 16.00654), (-26.389624, -38.8573, 17.137623), (-27.250372, -38.8573, 15.733009), (-25.451847, -40.45085, 14.694632), (-25.451847, -40.45085, 14.694632), (-27.250372, -38.8573, 15.733009), (-28.036428, -38.8573, 14.285274), (-26.186026, -40.45085, 13.342446), (-26.186026, -40.45085, 13.342446), (-28.036428, -38.8573, 14.285274), (-28.74564, -38.8573, 12.798383), (-26.848427, -40.45085, 11.95369), (-26.848427, -40.45085, 11.95369), (-28.74564, -38.8573, 12.798383), (-29.37606, -38.8573, 11.276413), (-27.43724, -40.45085, 10.532169), (-27.43724, -40.45085, 10.532169), (-29.37606, -38.8573, 11.276413), (-29.925962, -38.8573, 9.723535), (-27.95085, -40.45085, 9.081781), (-27.95085, -40.45085, 9.081781), (-29.925962, -38.8573, 9.723535), (-30.39384, -38.8573, 8.144005), (-28.387848, -40.45085, 7.606501), (-28.387848, -40.45085, 7.606501), (-30.39384, -38.8573, 8.144005), (-30.778412, -38.8573, 6.5421534), (-28.747036, -40.45085, 6.110371), (-28.747036, -40.45085, 6.110371), (-30.778412, -38.8573, 6.5421534), (-31.07862, -38.8573, 4.92237), (-29.027431, -40.45085, 4.5974936), (-29.027431, -40.45085, 4.5974936), (-31.07862, -38.8573, 4.92237), (-31.293646, -38.8573, 3.2890947), (-29.228266, -40.45085, 3.0720146), (-29.228266, -40.45085, 3.0720146), (-31.293646, -38.8573, 3.2890947), (-31.422897, -38.8573, 1.6468042), (-29.348986, -40.45085, 1.5381151), (-29.348986, -40.45085, 1.5381151), (-31.422897, -38.8573, 1.6468042), (-31.466019, -38.8573, 3.853476e-15), (-29.389263, -40.45085, 3.5991468e-15), (-29.389263, -40.45085, 3.5991468e-15), (-31.466019, -38.8573, 3.853476e-15), (-31.422897, -38.8573, -1.6468042), (-29.348986, -40.45085, -1.5381151), (-29.348986, -40.45085, -1.5381151), (-31.422897, -38.8573, -1.6468042), (-31.293646, -38.8573, -3.2890947), (-29.228266, -40.45085, -3.0720146), (-29.228266, -40.45085, -3.0720146), (-31.293646, -38.8573, -3.2890947), (-31.07862, -38.8573, -4.92237), (-29.027431, -40.45085, -4.5974936), (-29.027431, -40.45085, -4.5974936), (-31.07862, -38.8573, -4.92237), (-30.778412, -38.8573, -6.5421534), (-28.747036, -40.45085, -6.110371), (-28.747036, -40.45085, -6.110371), (-30.778412, -38.8573, -6.5421534), (-30.39384, -38.8573, -8.144005), (-28.387848, -40.45085, -7.606501), (-28.387848, -40.45085, -7.606501), (-30.39384, -38.8573, -8.144005), (-29.925962, -38.8573, -9.723535), (-27.95085, -40.45085, -9.081781), (-27.95085, -40.45085, -9.081781), (-29.925962, -38.8573, -9.723535), (-29.37606, -38.8573, -11.276413), (-27.43724, -40.45085, -10.532169), (-27.43724, -40.45085, -10.532169), (-29.37606, -38.8573, -11.276413), (-28.74564, -38.8573, -12.798383), (-26.848427, -40.45085, -11.95369), (-26.848427, -40.45085, -11.95369), (-28.74564, -38.8573, -12.798383), (-28.036428, -38.8573, -14.285274), (-26.186026, -40.45085, -13.342446), (-26.186026, -40.45085, -13.342446), (-28.036428, -38.8573, -14.285274), (-27.250372, -38.8573, -15.733009), (-25.451847, -40.45085, -14.694632), (-25.451847, -40.45085, -14.694632), (-27.250372, -38.8573, -15.733009), (-26.389624, -38.8573, -17.137623), (-24.64791, -40.45085, -16.00654), (-24.64791, -40.45085, -16.00654), (-26.389624, -38.8573, -17.137623), (-25.456545, -38.8573, -18.495262), (-23.776413, -40.45085, -17.274574), (-23.776413, -40.45085, -17.274574), (-25.456545, -38.8573, -18.495262), (-24.45369, -38.8573, -19.802208), (-22.839746, -40.45085, -18.495262), (-22.839746, -40.45085, -18.495262), (-24.45369, -38.8573, -19.802208), (-23.38381, -38.8573, -21.054876), (-21.840479, -40.45085, -19.665255), (-21.840479, -40.45085, -19.665255), (-23.38381, -38.8573, -21.054876), (-22.249836, -38.8573, -22.249836), (-20.781347, -40.45085, -20.781347), (-20.781347, -40.45085, -20.781347), (-22.249836, -38.8573, -22.249836), (-21.054876, -38.8573, -23.38381), (-19.665255, -40.45085, -21.840479), (-19.665255, -40.45085, -21.840479), (-21.054876, -38.8573, -23.38381), (-19.802208, -38.8573, -24.45369), (-18.495262, -40.45085, -22.839746), (-18.495262, -40.45085, -22.839746), (-19.802208, -38.8573, -24.45369), (-18.495262, -38.8573, -25.456545), (-17.274574, -40.45085, -23.776413), (-17.274574, -40.45085, -23.776413), (-18.495262, -38.8573, -25.456545), (-17.137623, -38.8573, -26.389624), (-16.00654, -40.45085, -24.64791), (-16.00654, -40.45085, -24.64791), (-17.137623, -38.8573, -26.389624), (-15.733009, -38.8573, -27.250372), (-14.694632, -40.45085, -25.451847), (-14.694632, -40.45085, -25.451847), (-15.733009, -38.8573, -27.250372), (-14.285274, -38.8573, -28.036428), (-13.342446, -40.45085, -26.186026), (-13.342446, -40.45085, -26.186026), (-14.285274, -38.8573, -28.036428), (-12.798383, -38.8573, -28.74564), (-11.95369, -40.45085, -26.848427), (-11.95369, -40.45085, -26.848427), (-12.798383, -38.8573, -28.74564), (-11.276413, -38.8573, -29.37606), (-10.532169, -40.45085, -27.43724), (-10.532169, -40.45085, -27.43724), (-11.276413, -38.8573, -29.37606), (-9.723535, -38.8573, -29.925962), (-9.081781, -40.45085, -27.95085), (-9.081781, -40.45085, -27.95085), (-9.723535, -38.8573, -29.925962), (-8.144005, -38.8573, -30.39384), (-7.606501, -40.45085, -28.387848), (-7.606501, -40.45085, -28.387848), (-8.144005, -38.8573, -30.39384), (-6.5421534, -38.8573, -30.778412), (-6.110371, -40.45085, -28.747036), (-6.110371, -40.45085, -28.747036), (-6.5421534, -38.8573, -30.778412), (-4.92237, -38.8573, -31.07862), (-4.5974936, -40.45085, -29.027431), (-4.5974936, -40.45085, -29.027431), (-4.92237, -38.8573, -31.07862), (-3.2890947, -38.8573, -31.293646), (-3.0720146, -40.45085, -29.228266), (-3.0720146, -40.45085, -29.228266), (-3.2890947, -38.8573, -31.293646), (-1.6468042, -38.8573, -31.422897), (-1.5381151, -40.45085, -29.348986), (-1.5381151, -40.45085, -29.348986), (-1.6468042, -38.8573, -31.422897), (-5.780214e-15, -38.8573, -31.466019), (-5.39872e-15, -40.45085, -29.389263), (-5.39872e-15, -40.45085, -29.389263), (-5.780214e-15, -38.8573, -31.466019), (1.6468042, -38.8573, -31.422897), (1.5381151, -40.45085, -29.348986), (1.5381151, -40.45085, -29.348986), (1.6468042, -38.8573, -31.422897), (3.2890947, -38.8573, -31.293646), (3.0720146, -40.45085, -29.228266), (3.0720146, -40.45085, -29.228266), (3.2890947, -38.8573, -31.293646), (4.92237, -38.8573, -31.07862), (4.5974936, -40.45085, -29.027431), (4.5974936, -40.45085, -29.027431), (4.92237, -38.8573, -31.07862), (6.5421534, -38.8573, -30.778412), (6.110371, -40.45085, -28.747036), (6.110371, -40.45085, -28.747036), (6.5421534, -38.8573, -30.778412), (8.144005, -38.8573, -30.39384), (7.606501, -40.45085, -28.387848), (7.606501, -40.45085, -28.387848), (8.144005, -38.8573, -30.39384), (9.723535, -38.8573, -29.925962), (9.081781, -40.45085, -27.95085), (9.081781, -40.45085, -27.95085), (9.723535, -38.8573, -29.925962), (11.276413, -38.8573, -29.37606), (10.532169, -40.45085, -27.43724), (10.532169, -40.45085, -27.43724), (11.276413, -38.8573, -29.37606), (12.798383, -38.8573, -28.74564), (11.95369, -40.45085, -26.848427), (11.95369, -40.45085, -26.848427), (12.798383, -38.8573, -28.74564), (14.285274, -38.8573, -28.036428), (13.342446, -40.45085, -26.186026), (13.342446, -40.45085, -26.186026), (14.285274, -38.8573, -28.036428), (15.733009, -38.8573, -27.250372), (14.694632, -40.45085, -25.451847), (14.694632, -40.45085, -25.451847), (15.733009, -38.8573, -27.250372), (17.137623, -38.8573, -26.389624), (16.00654, -40.45085, -24.64791), (16.00654, -40.45085, -24.64791), (17.137623, -38.8573, -26.389624), (18.495262, -38.8573, -25.456545), (17.274574, -40.45085, -23.776413), (17.274574, -40.45085, -23.776413), (18.495262, -38.8573, -25.456545), (19.802208, -38.8573, -24.45369), (18.495262, -40.45085, -22.839746), (18.495262, -40.45085, -22.839746), (19.802208, -38.8573, -24.45369), (21.054876, -38.8573, -23.38381), (19.665255, -40.45085, -21.840479), (19.665255, -40.45085, -21.840479), (21.054876, -38.8573, -23.38381), (22.249836, -38.8573, -22.249836), (20.781347, -40.45085, -20.781347), (20.781347, -40.45085, -20.781347), (22.249836, -38.8573, -22.249836), (23.38381, -38.8573, -21.054876), (21.840479, -40.45085, -19.665255), (21.840479, -40.45085, -19.665255), (23.38381, -38.8573, -21.054876), (24.45369, -38.8573, -19.802208), (22.839746, -40.45085, -18.495262), (22.839746, -40.45085, -18.495262), (24.45369, -38.8573, -19.802208), (25.456545, -38.8573, -18.495262), (23.776413, -40.45085, -17.274574), (23.776413, -40.45085, -17.274574), (25.456545, -38.8573, -18.495262), (26.389624, -38.8573, -17.137623), (24.64791, -40.45085, -16.00654), (24.64791, -40.45085, -16.00654), (26.389624, -38.8573, -17.137623), (27.250372, -38.8573, -15.733009), (25.451847, -40.45085, -14.694632), (25.451847, -40.45085, -14.694632), (27.250372, -38.8573, -15.733009), (28.036428, -38.8573, -14.285274), (26.186026, -40.45085, -13.342446), (26.186026, -40.45085, -13.342446), (28.036428, -38.8573, -14.285274), (28.74564, -38.8573, -12.798383), (26.848427, -40.45085, -11.95369), (26.848427, -40.45085, -11.95369), (28.74564, -38.8573, -12.798383), (29.37606, -38.8573, -11.276413), (27.43724, -40.45085, -10.532169), (27.43724, -40.45085, -10.532169), (29.37606, -38.8573, -11.276413), (29.925962, -38.8573, -9.723535), (27.95085, -40.45085, -9.081781), (27.95085, -40.45085, -9.081781), (29.925962, -38.8573, -9.723535), (30.39384, -38.8573, -8.144005), (28.387848, -40.45085, -7.606501), (28.387848, -40.45085, -7.606501), (30.39384, -38.8573, -8.144005), (30.778412, -38.8573, -6.5421534), (28.747036, -40.45085, -6.110371), (28.747036, -40.45085, -6.110371), (30.778412, -38.8573, -6.5421534), (31.07862, -38.8573, -4.92237), (29.027431, -40.45085, -4.5974936), (29.027431, -40.45085, -4.5974936), (31.07862, -38.8573, -4.92237), (31.293646, -38.8573, -3.2890947), (29.228266, -40.45085, -3.0720146), (29.228266, -40.45085, -3.0720146), (31.293646, -38.8573, -3.2890947), (31.422897, -38.8573, -1.6468042), (29.348986, -40.45085, -1.5381151), (29.348986, -40.45085, -1.5381151), (31.422897, -38.8573, -1.6468042), (31.466019, -38.8573, 0), (29.389263, -40.45085, 0), (31.466019, -38.8573, 0), (33.45653, -37.15724, 0), (33.41068, -37.15724, 1.7509795), (31.422897, -38.8573, 1.6468042), (31.422897, -38.8573, 1.6468042), (33.41068, -37.15724, 1.7509795), (33.27325, -37.15724, 3.4971597), (31.293646, -38.8573, 3.2890947), (31.293646, -38.8573, 3.2890947), (33.27325, -37.15724, 3.4971597), (33.044624, -37.15724, 5.2337546), (31.07862, -38.8573, 4.92237), (31.07862, -38.8573, 4.92237), (33.044624, -37.15724, 5.2337546), (32.725426, -37.15724, 6.9560037), (30.778412, -38.8573, 6.5421534), (30.778412, -38.8573, 6.5421534), (32.725426, -37.15724, 6.9560037), (32.31653, -37.15724, 8.659187), (30.39384, -38.8573, 8.144005), (30.39384, -38.8573, 8.144005), (32.31653, -37.15724, 8.659187), (31.819052, -37.15724, 10.338636), (29.925962, -38.8573, 9.723535), (29.925962, -38.8573, 9.723535), (31.819052, -37.15724, 10.338636), (31.234362, -37.15724, 11.989748), (29.37606, -38.8573, 11.276413), (29.37606, -38.8573, 11.276413), (31.234362, -37.15724, 11.989748), (30.564062, -37.15724, 13.607997), (28.74564, -38.8573, 12.798383), (28.74564, -38.8573, 12.798383), (30.564062, -37.15724, 13.607997), (29.809986, -37.15724, 15.188947), (28.036428, -38.8573, 14.285274), (28.036428, -38.8573, 14.285274), (29.809986, -37.15724, 15.188947), (28.974205, -37.15724, 16.728266), (27.250372, -38.8573, 15.733009), (27.250372, -38.8573, 15.733009), (28.974205, -37.15724, 16.728266), (28.059008, -37.15724, 18.221733), (26.389624, -38.8573, 17.137623), (26.389624, -38.8573, 17.137623), (28.059008, -37.15724, 18.221733), (27.066902, -37.15724, 19.665255), (25.456545, -38.8573, 18.495262), (25.456545, -38.8573, 18.495262), (27.066902, -37.15724, 19.665255), (26.000607, -37.15724, 21.054876), (24.45369, -38.8573, 19.802208), (24.45369, -38.8573, 19.802208), (26.000607, -37.15724, 21.054876), (24.863047, -37.15724, 22.38679), (23.38381, -38.8573, 21.054876), (23.38381, -38.8573, 21.054876), (24.863047, -37.15724, 22.38679), (23.65734, -37.15724, 23.65734), (22.249836, -38.8573, 22.249836), (22.249836, -38.8573, 22.249836), (23.65734, -37.15724, 23.65734), (22.38679, -37.15724, 24.863047), (21.054876, -38.8573, 23.38381), (21.054876, -38.8573, 23.38381), (22.38679, -37.15724, 24.863047), (21.054876, -37.15724, 26.000607), (19.802208, -38.8573, 24.45369), (19.802208, -38.8573, 24.45369), (21.054876, -37.15724, 26.000607), (19.665255, -37.15724, 27.066902), (18.495262, -38.8573, 25.456545), (18.495262, -38.8573, 25.456545), (19.665255, -37.15724, 27.066902), (18.221733, -37.15724, 28.059008), (17.137623, -38.8573, 26.389624), (17.137623, -38.8573, 26.389624), (18.221733, -37.15724, 28.059008), (16.728266, -37.15724, 28.974205), (15.733009, -38.8573, 27.250372), (15.733009, -38.8573, 27.250372), (16.728266, -37.15724, 28.974205), (15.188947, -37.15724, 29.809986), (14.285274, -38.8573, 28.036428), (14.285274, -38.8573, 28.036428), (15.188947, -37.15724, 29.809986), (13.607997, -37.15724, 30.564062), (12.798383, -38.8573, 28.74564), (12.798383, -38.8573, 28.74564), (13.607997, -37.15724, 30.564062), (11.989748, -37.15724, 31.234362), (11.276413, -38.8573, 29.37606), (11.276413, -38.8573, 29.37606), (11.989748, -37.15724, 31.234362), (10.338636, -37.15724, 31.819052), (9.723535, -38.8573, 29.925962), (9.723535, -38.8573, 29.925962), (10.338636, -37.15724, 31.819052), (8.659187, -37.15724, 32.31653), (8.144005, -38.8573, 30.39384), (8.144005, -38.8573, 30.39384), (8.659187, -37.15724, 32.31653), (6.9560037, -37.15724, 32.725426), (6.5421534, -38.8573, 30.778412), (6.5421534, -38.8573, 30.778412), (6.9560037, -37.15724, 32.725426), (5.2337546, -37.15724, 33.044624), (4.92237, -38.8573, 31.07862), (4.92237, -38.8573, 31.07862), (5.2337546, -37.15724, 33.044624), (3.4971597, -37.15724, 33.27325), (3.2890947, -38.8573, 31.293646), (3.2890947, -38.8573, 31.293646), (3.4971597, -37.15724, 33.27325), (1.7509795, -37.15724, 33.41068), (1.6468042, -38.8573, 31.422897), (1.6468042, -38.8573, 31.422897), (1.7509795, -37.15724, 33.41068), (2.0486216e-15, -37.15724, 33.45653), (1.926738e-15, -38.8573, 31.466019), (1.926738e-15, -38.8573, 31.466019), (2.0486216e-15, -37.15724, 33.45653), (-1.7509795, -37.15724, 33.41068), (-1.6468042, -38.8573, 31.422897), (-1.6468042, -38.8573, 31.422897), (-1.7509795, -37.15724, 33.41068), (-3.4971597, -37.15724, 33.27325), (-3.2890947, -38.8573, 31.293646), (-3.2890947, -38.8573, 31.293646), (-3.4971597, -37.15724, 33.27325), (-5.2337546, -37.15724, 33.044624), (-4.92237, -38.8573, 31.07862), (-4.92237, -38.8573, 31.07862), (-5.2337546, -37.15724, 33.044624), (-6.9560037, -37.15724, 32.725426), (-6.5421534, -38.8573, 30.778412), (-6.5421534, -38.8573, 30.778412), (-6.9560037, -37.15724, 32.725426), (-8.659187, -37.15724, 32.31653), (-8.144005, -38.8573, 30.39384), (-8.144005, -38.8573, 30.39384), (-8.659187, -37.15724, 32.31653), (-10.338636, -37.15724, 31.819052), (-9.723535, -38.8573, 29.925962), (-9.723535, -38.8573, 29.925962), (-10.338636, -37.15724, 31.819052), (-11.989748, -37.15724, 31.234362), (-11.276413, -38.8573, 29.37606), (-11.276413, -38.8573, 29.37606), (-11.989748, -37.15724, 31.234362), (-13.607997, -37.15724, 30.564062), (-12.798383, -38.8573, 28.74564), (-12.798383, -38.8573, 28.74564), (-13.607997, -37.15724, 30.564062), (-15.188947, -37.15724, 29.809986), (-14.285274, -38.8573, 28.036428), (-14.285274, -38.8573, 28.036428), (-15.188947, -37.15724, 29.809986), (-16.728266, -37.15724, 28.974205), (-15.733009, -38.8573, 27.250372), (-15.733009, -38.8573, 27.250372), (-16.728266, -37.15724, 28.974205), (-18.221733, -37.15724, 28.059008), (-17.137623, -38.8573, 26.389624), (-17.137623, -38.8573, 26.389624), (-18.221733, -37.15724, 28.059008), (-19.665255, -37.15724, 27.066902), (-18.495262, -38.8573, 25.456545), (-18.495262, -38.8573, 25.456545), (-19.665255, -37.15724, 27.066902), (-21.054876, -37.15724, 26.000607), (-19.802208, -38.8573, 24.45369), (-19.802208, -38.8573, 24.45369), (-21.054876, -37.15724, 26.000607), (-22.38679, -37.15724, 24.863047), (-21.054876, -38.8573, 23.38381), (-21.054876, -38.8573, 23.38381), (-22.38679, -37.15724, 24.863047), (-23.65734, -37.15724, 23.65734), (-22.249836, -38.8573, 22.249836), (-22.249836, -38.8573, 22.249836), (-23.65734, -37.15724, 23.65734), (-24.863047, -37.15724, 22.38679), (-23.38381, -38.8573, 21.054876), (-23.38381, -38.8573, 21.054876), (-24.863047, -37.15724, 22.38679), (-26.000607, -37.15724, 21.054876), (-24.45369, -38.8573, 19.802208), (-24.45369, -38.8573, 19.802208), (-26.000607, -37.15724, 21.054876), (-27.066902, -37.15724, 19.665255), (-25.456545, -38.8573, 18.495262), (-25.456545, -38.8573, 18.495262), (-27.066902, -37.15724, 19.665255), (-28.059008, -37.15724, 18.221733), (-26.389624, -38.8573, 17.137623), (-26.389624, -38.8573, 17.137623), (-28.059008, -37.15724, 18.221733), (-28.974205, -37.15724, 16.728266), (-27.250372, -38.8573, 15.733009), (-27.250372, -38.8573, 15.733009), (-28.974205, -37.15724, 16.728266), (-29.809986, -37.15724, 15.188947), (-28.036428, -38.8573, 14.285274), (-28.036428, -38.8573, 14.285274), (-29.809986, -37.15724, 15.188947), (-30.564062, -37.15724, 13.607997), (-28.74564, -38.8573, 12.798383), (-28.74564, -38.8573, 12.798383), (-30.564062, -37.15724, 13.607997), (-31.234362, -37.15724, 11.989748), (-29.37606, -38.8573, 11.276413), (-29.37606, -38.8573, 11.276413), (-31.234362, -37.15724, 11.989748), (-31.819052, -37.15724, 10.338636), (-29.925962, -38.8573, 9.723535), (-29.925962, -38.8573, 9.723535), (-31.819052, -37.15724, 10.338636), (-32.31653, -37.15724, 8.659187), (-30.39384, -38.8573, 8.144005), (-30.39384, -38.8573, 8.144005), (-32.31653, -37.15724, 8.659187), (-32.725426, -37.15724, 6.9560037), (-30.778412, -38.8573, 6.5421534), (-30.778412, -38.8573, 6.5421534), (-32.725426, -37.15724, 6.9560037), (-33.044624, -37.15724, 5.2337546), (-31.07862, -38.8573, 4.92237), (-31.07862, -38.8573, 4.92237), (-33.044624, -37.15724, 5.2337546), (-33.27325, -37.15724, 3.4971597), (-31.293646, -38.8573, 3.2890947), (-31.293646, -38.8573, 3.2890947), (-33.27325, -37.15724, 3.4971597), (-33.41068, -37.15724, 1.7509795), (-31.422897, -38.8573, 1.6468042), (-31.422897, -38.8573, 1.6468042), (-33.41068, -37.15724, 1.7509795), (-33.45653, -37.15724, 4.097243e-15), (-31.466019, -38.8573, 3.853476e-15), (-31.466019, -38.8573, 3.853476e-15), (-33.45653, -37.15724, 4.097243e-15), (-33.41068, -37.15724, -1.7509795), (-31.422897, -38.8573, -1.6468042), (-31.422897, -38.8573, -1.6468042), (-33.41068, -37.15724, -1.7509795), (-33.27325, -37.15724, -3.4971597), (-31.293646, -38.8573, -3.2890947), (-31.293646, -38.8573, -3.2890947), (-33.27325, -37.15724, -3.4971597), (-33.044624, -37.15724, -5.2337546), (-31.07862, -38.8573, -4.92237), (-31.07862, -38.8573, -4.92237), (-33.044624, -37.15724, -5.2337546), (-32.725426, -37.15724, -6.9560037), (-30.778412, -38.8573, -6.5421534), (-30.778412, -38.8573, -6.5421534), (-32.725426, -37.15724, -6.9560037), (-32.31653, -37.15724, -8.659187), (-30.39384, -38.8573, -8.144005), (-30.39384, -38.8573, -8.144005), (-32.31653, -37.15724, -8.659187), (-31.819052, -37.15724, -10.338636), (-29.925962, -38.8573, -9.723535), (-29.925962, -38.8573, -9.723535), (-31.819052, -37.15724, -10.338636), (-31.234362, -37.15724, -11.989748), (-29.37606, -38.8573, -11.276413), (-29.37606, -38.8573, -11.276413), (-31.234362, -37.15724, -11.989748), (-30.564062, -37.15724, -13.607997), (-28.74564, -38.8573, -12.798383), (-28.74564, -38.8573, -12.798383), (-30.564062, -37.15724, -13.607997), (-29.809986, -37.15724, -15.188947), (-28.036428, -38.8573, -14.285274), (-28.036428, -38.8573, -14.285274), (-29.809986, -37.15724, -15.188947), (-28.974205, -37.15724, -16.728266), (-27.250372, -38.8573, -15.733009), (-27.250372, -38.8573, -15.733009), (-28.974205, -37.15724, -16.728266), (-28.059008, -37.15724, -18.221733), (-26.389624, -38.8573, -17.137623), (-26.389624, -38.8573, -17.137623), (-28.059008, -37.15724, -18.221733), (-27.066902, -37.15724, -19.665255), (-25.456545, -38.8573, -18.495262), (-25.456545, -38.8573, -18.495262), (-27.066902, -37.15724, -19.665255), (-26.000607, -37.15724, -21.054876), (-24.45369, -38.8573, -19.802208), (-24.45369, -38.8573, -19.802208), (-26.000607, -37.15724, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.38381, -38.8573, -21.054876), (-23.38381, -38.8573, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.65734, -37.15724, -23.65734), (-22.249836, -38.8573, -22.249836), (-22.249836, -38.8573, -22.249836), (-23.65734, -37.15724, -23.65734), (-22.38679, -37.15724, -24.863047), (-21.054876, -38.8573, -23.38381), (-21.054876, -38.8573, -23.38381), (-22.38679, -37.15724, -24.863047), (-21.054876, -37.15724, -26.000607), (-19.802208, -38.8573, -24.45369), (-19.802208, -38.8573, -24.45369), (-21.054876, -37.15724, -26.000607), (-19.665255, -37.15724, -27.066902), (-18.495262, -38.8573, -25.456545), (-18.495262, -38.8573, -25.456545), (-19.665255, -37.15724, -27.066902), (-18.221733, -37.15724, -28.059008), (-17.137623, -38.8573, -26.389624), (-17.137623, -38.8573, -26.389624), (-18.221733, -37.15724, -28.059008), (-16.728266, -37.15724, -28.974205), (-15.733009, -38.8573, -27.250372), (-15.733009, -38.8573, -27.250372), (-16.728266, -37.15724, -28.974205), (-15.188947, -37.15724, -29.809986), (-14.285274, -38.8573, -28.036428), (-14.285274, -38.8573, -28.036428), (-15.188947, -37.15724, -29.809986), (-13.607997, -37.15724, -30.564062), (-12.798383, -38.8573, -28.74564), (-12.798383, -38.8573, -28.74564), (-13.607997, -37.15724, -30.564062), (-11.989748, -37.15724, -31.234362), (-11.276413, -38.8573, -29.37606), (-11.276413, -38.8573, -29.37606), (-11.989748, -37.15724, -31.234362), (-10.338636, -37.15724, -31.819052), (-9.723535, -38.8573, -29.925962), (-9.723535, -38.8573, -29.925962), (-10.338636, -37.15724, -31.819052), (-8.659187, -37.15724, -32.31653), (-8.144005, -38.8573, -30.39384), (-8.144005, -38.8573, -30.39384), (-8.659187, -37.15724, -32.31653), (-6.9560037, -37.15724, -32.725426), (-6.5421534, -38.8573, -30.778412), (-6.5421534, -38.8573, -30.778412), (-6.9560037, -37.15724, -32.725426), (-5.2337546, -37.15724, -33.044624), (-4.92237, -38.8573, -31.07862), (-4.92237, -38.8573, -31.07862), (-5.2337546, -37.15724, -33.044624), (-3.4971597, -37.15724, -33.27325), (-3.2890947, -38.8573, -31.293646), (-3.2890947, -38.8573, -31.293646), (-3.4971597, -37.15724, -33.27325), (-1.7509795, -37.15724, -33.41068), (-1.6468042, -38.8573, -31.422897), (-1.6468042, -38.8573, -31.422897), (-1.7509795, -37.15724, -33.41068), (-6.145865e-15, -37.15724, -33.45653), (-5.780214e-15, -38.8573, -31.466019), (-5.780214e-15, -38.8573, -31.466019), (-6.145865e-15, -37.15724, -33.45653), (1.7509795, -37.15724, -33.41068), (1.6468042, -38.8573, -31.422897), (1.6468042, -38.8573, -31.422897), (1.7509795, -37.15724, -33.41068), (3.4971597, -37.15724, -33.27325), (3.2890947, -38.8573, -31.293646), (3.2890947, -38.8573, -31.293646), (3.4971597, -37.15724, -33.27325), (5.2337546, -37.15724, -33.044624), (4.92237, -38.8573, -31.07862), (4.92237, -38.8573, -31.07862), (5.2337546, -37.15724, -33.044624), (6.9560037, -37.15724, -32.725426), (6.5421534, -38.8573, -30.778412), (6.5421534, -38.8573, -30.778412), (6.9560037, -37.15724, -32.725426), (8.659187, -37.15724, -32.31653), (8.144005, -38.8573, -30.39384), (8.144005, -38.8573, -30.39384), (8.659187, -37.15724, -32.31653), (10.338636, -37.15724, -31.819052), (9.723535, -38.8573, -29.925962), (9.723535, -38.8573, -29.925962), (10.338636, -37.15724, -31.819052), (11.989748, -37.15724, -31.234362), (11.276413, -38.8573, -29.37606), (11.276413, -38.8573, -29.37606), (11.989748, -37.15724, -31.234362), (13.607997, -37.15724, -30.564062), (12.798383, -38.8573, -28.74564), (12.798383, -38.8573, -28.74564), (13.607997, -37.15724, -30.564062), (15.188947, -37.15724, -29.809986), (14.285274, -38.8573, -28.036428), (14.285274, -38.8573, -28.036428), (15.188947, -37.15724, -29.809986), (16.728266, -37.15724, -28.974205), (15.733009, -38.8573, -27.250372), (15.733009, -38.8573, -27.250372), (16.728266, -37.15724, -28.974205), (18.221733, -37.15724, -28.059008), (17.137623, -38.8573, -26.389624), (17.137623, -38.8573, -26.389624), (18.221733, -37.15724, -28.059008), (19.665255, -37.15724, -27.066902), (18.495262, -38.8573, -25.456545), (18.495262, -38.8573, -25.456545), (19.665255, -37.15724, -27.066902), (21.054876, -37.15724, -26.000607), (19.802208, -38.8573, -24.45369), (19.802208, -38.8573, -24.45369), (21.054876, -37.15724, -26.000607), (22.38679, -37.15724, -24.863047), (21.054876, -38.8573, -23.38381), (21.054876, -38.8573, -23.38381), (22.38679, -37.15724, -24.863047), (23.65734, -37.15724, -23.65734), (22.249836, -38.8573, -22.249836), (22.249836, -38.8573, -22.249836), (23.65734, -37.15724, -23.65734), (24.863047, -37.15724, -22.38679), (23.38381, -38.8573, -21.054876), (23.38381, -38.8573, -21.054876), (24.863047, -37.15724, -22.38679), (26.000607, -37.15724, -21.054876), (24.45369, -38.8573, -19.802208), (24.45369, -38.8573, -19.802208), (26.000607, -37.15724, -21.054876), (27.066902, -37.15724, -19.665255), (25.456545, -38.8573, -18.495262), (25.456545, -38.8573, -18.495262), (27.066902, -37.15724, -19.665255), (28.059008, -37.15724, -18.221733), (26.389624, -38.8573, -17.137623), (26.389624, -38.8573, -17.137623), (28.059008, -37.15724, -18.221733), (28.974205, -37.15724, -16.728266), (27.250372, -38.8573, -15.733009), (27.250372, -38.8573, -15.733009), (28.974205, -37.15724, -16.728266), (29.809986, -37.15724, -15.188947), (28.036428, -38.8573, -14.285274), (28.036428, -38.8573, -14.285274), (29.809986, -37.15724, -15.188947), (30.564062, -37.15724, -13.607997), (28.74564, -38.8573, -12.798383), (28.74564, -38.8573, -12.798383), (30.564062, -37.15724, -13.607997), (31.234362, -37.15724, -11.989748), (29.37606, -38.8573, -11.276413), (29.37606, -38.8573, -11.276413), (31.234362, -37.15724, -11.989748), (31.819052, -37.15724, -10.338636), (29.925962, -38.8573, -9.723535), (29.925962, -38.8573, -9.723535), (31.819052, -37.15724, -10.338636), (32.31653, -37.15724, -8.659187), (30.39384, -38.8573, -8.144005), (30.39384, -38.8573, -8.144005), (32.31653, -37.15724, -8.659187), (32.725426, -37.15724, -6.9560037), (30.778412, -38.8573, -6.5421534), (30.778412, -38.8573, -6.5421534), (32.725426, -37.15724, -6.9560037), (33.044624, -37.15724, -5.2337546), (31.07862, -38.8573, -4.92237), (31.07862, -38.8573, -4.92237), (33.044624, -37.15724, -5.2337546), (33.27325, -37.15724, -3.4971597), (31.293646, -38.8573, -3.2890947), (31.293646, -38.8573, -3.2890947), (33.27325, -37.15724, -3.4971597), (33.41068, -37.15724, -1.7509795), (31.422897, -38.8573, -1.6468042), (31.422897, -38.8573, -1.6468042), (33.41068, -37.15724, -1.7509795), (33.45653, -37.15724, 0), (31.466019, -38.8573, 0), (33.45653, -37.15724, 0), (35.35534, -35.35534, 0), (35.306885, -35.35534, 1.8503555), (33.41068, -37.15724, 1.7509795), (33.41068, -37.15724, 1.7509795), (35.306885, -35.35534, 1.8503555), (35.16166, -35.35534, 3.6956394), (33.27325, -37.15724, 3.4971597), (33.27325, -37.15724, 3.4971597), (35.16166, -35.35534, 3.6956394), (34.920055, -35.35534, 5.5307937), (33.044624, -37.15724, 5.2337546), (33.044624, -37.15724, 5.2337546), (34.920055, -35.35534, 5.5307937), (34.58274, -35.35534, 7.350788), (32.725426, -37.15724, 6.9560037), (32.725426, -37.15724, 6.9560037), (34.58274, -35.35534, 7.350788), (34.150635, -35.35534, 9.150635), (32.31653, -37.15724, 8.659187), (32.31653, -37.15724, 8.659187), (34.150635, -35.35534, 9.150635), (33.624924, -35.35534, 10.925401), (31.819052, -37.15724, 10.338636), (31.819052, -37.15724, 10.338636), (33.624924, -35.35534, 10.925401), (33.007053, -35.35534, 12.67022), (31.234362, -37.15724, 11.989748), (31.234362, -37.15724, 11.989748), (33.007053, -35.35534, 12.67022), (32.29871, -35.35534, 14.380312), (30.564062, -37.15724, 13.607997), (30.564062, -37.15724, 13.607997), (32.29871, -35.35534, 14.380312), (31.501839, -35.35534, 16.050987), (29.809986, -37.15724, 15.188947), (29.809986, -37.15724, 15.188947), (31.501839, -35.35534, 16.050987), (30.618622, -35.35534, 17.67767), (28.974205, -37.15724, 16.728266), (28.974205, -37.15724, 16.728266), (30.618622, -35.35534, 17.67767), (29.651482, -35.35534, 19.255898), (28.059008, -37.15724, 18.221733), (28.059008, -37.15724, 18.221733), (29.651482, -35.35534, 19.255898), (28.60307, -35.35534, 20.781347), (27.066902, -37.15724, 19.665255), (27.066902, -37.15724, 19.665255), (28.60307, -35.35534, 20.781347), (27.47626, -35.35534, 22.249836), (26.000607, -37.15724, 21.054876), (26.000607, -37.15724, 21.054876), (27.47626, -35.35534, 22.249836), (26.274137, -35.35534, 23.65734), (24.863047, -37.15724, 22.38679), (24.863047, -37.15724, 22.38679), (26.274137, -35.35534, 23.65734), (25, -35.35534, 25), (23.65734, -37.15724, 23.65734), (23.65734, -37.15724, 23.65734), (25, -35.35534, 25), (23.65734, -35.35534, 26.274137), (22.38679, -37.15724, 24.863047), (22.38679, -37.15724, 24.863047), (23.65734, -35.35534, 26.274137), (22.249836, -35.35534, 27.47626), (21.054876, -37.15724, 26.000607), (21.054876, -37.15724, 26.000607), (22.249836, -35.35534, 27.47626), (20.781347, -35.35534, 28.60307), (19.665255, -37.15724, 27.066902), (19.665255, -37.15724, 27.066902), (20.781347, -35.35534, 28.60307), (19.255898, -35.35534, 29.651482), (18.221733, -37.15724, 28.059008), (18.221733, -37.15724, 28.059008), (19.255898, -35.35534, 29.651482), (17.67767, -35.35534, 30.618622), (16.728266, -37.15724, 28.974205), (16.728266, -37.15724, 28.974205), (17.67767, -35.35534, 30.618622), (16.050987, -35.35534, 31.501839), (15.188947, -37.15724, 29.809986), (15.188947, -37.15724, 29.809986), (16.050987, -35.35534, 31.501839), (14.380312, -35.35534, 32.29871), (13.607997, -37.15724, 30.564062), (13.607997, -37.15724, 30.564062), (14.380312, -35.35534, 32.29871), (12.67022, -35.35534, 33.007053), (11.989748, -37.15724, 31.234362), (11.989748, -37.15724, 31.234362), (12.67022, -35.35534, 33.007053), (10.925401, -35.35534, 33.624924), (10.338636, -37.15724, 31.819052), (10.338636, -37.15724, 31.819052), (10.925401, -35.35534, 33.624924), (9.150635, -35.35534, 34.150635), (8.659187, -37.15724, 32.31653), (8.659187, -37.15724, 32.31653), (9.150635, -35.35534, 34.150635), (7.350788, -35.35534, 34.58274), (6.9560037, -37.15724, 32.725426), (6.9560037, -37.15724, 32.725426), (7.350788, -35.35534, 34.58274), (5.5307937, -35.35534, 34.920055), (5.2337546, -37.15724, 33.044624), (5.2337546, -37.15724, 33.044624), (5.5307937, -35.35534, 34.920055), (3.6956394, -35.35534, 35.16166), (3.4971597, -37.15724, 33.27325), (3.4971597, -37.15724, 33.27325), (3.6956394, -35.35534, 35.16166), (1.8503555, -35.35534, 35.306885), (1.7509795, -37.15724, 33.41068), (1.7509795, -37.15724, 33.41068), (1.8503555, -35.35534, 35.306885), (2.1648902e-15, -35.35534, 35.35534), (2.0486216e-15, -37.15724, 33.45653), (2.0486216e-15, -37.15724, 33.45653), (2.1648902e-15, -35.35534, 35.35534), (-1.8503555, -35.35534, 35.306885), (-1.7509795, -37.15724, 33.41068), (-1.7509795, -37.15724, 33.41068), (-1.8503555, -35.35534, 35.306885), (-3.6956394, -35.35534, 35.16166), (-3.4971597, -37.15724, 33.27325), (-3.4971597, -37.15724, 33.27325), (-3.6956394, -35.35534, 35.16166), (-5.5307937, -35.35534, 34.920055), (-5.2337546, -37.15724, 33.044624), (-5.2337546, -37.15724, 33.044624), (-5.5307937, -35.35534, 34.920055), (-7.350788, -35.35534, 34.58274), (-6.9560037, -37.15724, 32.725426), (-6.9560037, -37.15724, 32.725426), (-7.350788, -35.35534, 34.58274), (-9.150635, -35.35534, 34.150635), (-8.659187, -37.15724, 32.31653), (-8.659187, -37.15724, 32.31653), (-9.150635, -35.35534, 34.150635), (-10.925401, -35.35534, 33.624924), (-10.338636, -37.15724, 31.819052), (-10.338636, -37.15724, 31.819052), (-10.925401, -35.35534, 33.624924), (-12.67022, -35.35534, 33.007053), (-11.989748, -37.15724, 31.234362), (-11.989748, -37.15724, 31.234362), (-12.67022, -35.35534, 33.007053), (-14.380312, -35.35534, 32.29871), (-13.607997, -37.15724, 30.564062), (-13.607997, -37.15724, 30.564062), (-14.380312, -35.35534, 32.29871), (-16.050987, -35.35534, 31.501839), (-15.188947, -37.15724, 29.809986), (-15.188947, -37.15724, 29.809986), (-16.050987, -35.35534, 31.501839), (-17.67767, -35.35534, 30.618622), (-16.728266, -37.15724, 28.974205), (-16.728266, -37.15724, 28.974205), (-17.67767, -35.35534, 30.618622), (-19.255898, -35.35534, 29.651482), (-18.221733, -37.15724, 28.059008), (-18.221733, -37.15724, 28.059008), (-19.255898, -35.35534, 29.651482), (-20.781347, -35.35534, 28.60307), (-19.665255, -37.15724, 27.066902), (-19.665255, -37.15724, 27.066902), (-20.781347, -35.35534, 28.60307), (-22.249836, -35.35534, 27.47626), (-21.054876, -37.15724, 26.000607), (-21.054876, -37.15724, 26.000607), (-22.249836, -35.35534, 27.47626), (-23.65734, -35.35534, 26.274137), (-22.38679, -37.15724, 24.863047), (-22.38679, -37.15724, 24.863047), (-23.65734, -35.35534, 26.274137), (-25, -35.35534, 25), (-23.65734, -37.15724, 23.65734), (-23.65734, -37.15724, 23.65734), (-25, -35.35534, 25), (-26.274137, -35.35534, 23.65734), (-24.863047, -37.15724, 22.38679), (-24.863047, -37.15724, 22.38679), (-26.274137, -35.35534, 23.65734), (-27.47626, -35.35534, 22.249836), (-26.000607, -37.15724, 21.054876), (-26.000607, -37.15724, 21.054876), (-27.47626, -35.35534, 22.249836), (-28.60307, -35.35534, 20.781347), (-27.066902, -37.15724, 19.665255), (-27.066902, -37.15724, 19.665255), (-28.60307, -35.35534, 20.781347), (-29.651482, -35.35534, 19.255898), (-28.059008, -37.15724, 18.221733), (-28.059008, -37.15724, 18.221733), (-29.651482, -35.35534, 19.255898), (-30.618622, -35.35534, 17.67767), (-28.974205, -37.15724, 16.728266), (-28.974205, -37.15724, 16.728266), (-30.618622, -35.35534, 17.67767), (-31.501839, -35.35534, 16.050987), (-29.809986, -37.15724, 15.188947), (-29.809986, -37.15724, 15.188947), (-31.501839, -35.35534, 16.050987), (-32.29871, -35.35534, 14.380312), (-30.564062, -37.15724, 13.607997), (-30.564062, -37.15724, 13.607997), (-32.29871, -35.35534, 14.380312), (-33.007053, -35.35534, 12.67022), (-31.234362, -37.15724, 11.989748), (-31.234362, -37.15724, 11.989748), (-33.007053, -35.35534, 12.67022), (-33.624924, -35.35534, 10.925401), (-31.819052, -37.15724, 10.338636), (-31.819052, -37.15724, 10.338636), (-33.624924, -35.35534, 10.925401), (-34.150635, -35.35534, 9.150635), (-32.31653, -37.15724, 8.659187), (-32.31653, -37.15724, 8.659187), (-34.150635, -35.35534, 9.150635), (-34.58274, -35.35534, 7.350788), (-32.725426, -37.15724, 6.9560037), (-32.725426, -37.15724, 6.9560037), (-34.58274, -35.35534, 7.350788), (-34.920055, -35.35534, 5.5307937), (-33.044624, -37.15724, 5.2337546), (-33.044624, -37.15724, 5.2337546), (-34.920055, -35.35534, 5.5307937), (-35.16166, -35.35534, 3.6956394), (-33.27325, -37.15724, 3.4971597), (-33.27325, -37.15724, 3.4971597), (-35.16166, -35.35534, 3.6956394), (-35.306885, -35.35534, 1.8503555), (-33.41068, -37.15724, 1.7509795), (-33.41068, -37.15724, 1.7509795), (-35.306885, -35.35534, 1.8503555), (-35.35534, -35.35534, 4.3297804e-15), (-33.45653, -37.15724, 4.097243e-15), (-33.45653, -37.15724, 4.097243e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.306885, -35.35534, -1.8503555), (-33.41068, -37.15724, -1.7509795), (-33.41068, -37.15724, -1.7509795), (-35.306885, -35.35534, -1.8503555), (-35.16166, -35.35534, -3.6956394), (-33.27325, -37.15724, -3.4971597), (-33.27325, -37.15724, -3.4971597), (-35.16166, -35.35534, -3.6956394), (-34.920055, -35.35534, -5.5307937), (-33.044624, -37.15724, -5.2337546), (-33.044624, -37.15724, -5.2337546), (-34.920055, -35.35534, -5.5307937), (-34.58274, -35.35534, -7.350788), (-32.725426, -37.15724, -6.9560037), (-32.725426, -37.15724, -6.9560037), (-34.58274, -35.35534, -7.350788), (-34.150635, -35.35534, -9.150635), (-32.31653, -37.15724, -8.659187), (-32.31653, -37.15724, -8.659187), (-34.150635, -35.35534, -9.150635), (-33.624924, -35.35534, -10.925401), (-31.819052, -37.15724, -10.338636), (-31.819052, -37.15724, -10.338636), (-33.624924, -35.35534, -10.925401), (-33.007053, -35.35534, -12.67022), (-31.234362, -37.15724, -11.989748), (-31.234362, -37.15724, -11.989748), (-33.007053, -35.35534, -12.67022), (-32.29871, -35.35534, -14.380312), (-30.564062, -37.15724, -13.607997), (-30.564062, -37.15724, -13.607997), (-32.29871, -35.35534, -14.380312), (-31.501839, -35.35534, -16.050987), (-29.809986, -37.15724, -15.188947), (-29.809986, -37.15724, -15.188947), (-31.501839, -35.35534, -16.050987), (-30.618622, -35.35534, -17.67767), (-28.974205, -37.15724, -16.728266), (-28.974205, -37.15724, -16.728266), (-30.618622, -35.35534, -17.67767), (-29.651482, -35.35534, -19.255898), (-28.059008, -37.15724, -18.221733), (-28.059008, -37.15724, -18.221733), (-29.651482, -35.35534, -19.255898), (-28.60307, -35.35534, -20.781347), (-27.066902, -37.15724, -19.665255), (-27.066902, -37.15724, -19.665255), (-28.60307, -35.35534, -20.781347), (-27.47626, -35.35534, -22.249836), (-26.000607, -37.15724, -21.054876), (-26.000607, -37.15724, -21.054876), (-27.47626, -35.35534, -22.249836), (-26.274137, -35.35534, -23.65734), (-24.863047, -37.15724, -22.38679), (-24.863047, -37.15724, -22.38679), (-26.274137, -35.35534, -23.65734), (-25, -35.35534, -25), (-23.65734, -37.15724, -23.65734), (-23.65734, -37.15724, -23.65734), (-25, -35.35534, -25), (-23.65734, -35.35534, -26.274137), (-22.38679, -37.15724, -24.863047), (-22.38679, -37.15724, -24.863047), (-23.65734, -35.35534, -26.274137), (-22.249836, -35.35534, -27.47626), (-21.054876, -37.15724, -26.000607), (-21.054876, -37.15724, -26.000607), (-22.249836, -35.35534, -27.47626), (-20.781347, -35.35534, -28.60307), (-19.665255, -37.15724, -27.066902), (-19.665255, -37.15724, -27.066902), (-20.781347, -35.35534, -28.60307), (-19.255898, -35.35534, -29.651482), (-18.221733, -37.15724, -28.059008), (-18.221733, -37.15724, -28.059008), (-19.255898, -35.35534, -29.651482), (-17.67767, -35.35534, -30.618622), (-16.728266, -37.15724, -28.974205), (-16.728266, -37.15724, -28.974205), (-17.67767, -35.35534, -30.618622), (-16.050987, -35.35534, -31.501839), (-15.188947, -37.15724, -29.809986), (-15.188947, -37.15724, -29.809986), (-16.050987, -35.35534, -31.501839), (-14.380312, -35.35534, -32.29871), (-13.607997, -37.15724, -30.564062), (-13.607997, -37.15724, -30.564062), (-14.380312, -35.35534, -32.29871), (-12.67022, -35.35534, -33.007053), (-11.989748, -37.15724, -31.234362), (-11.989748, -37.15724, -31.234362), (-12.67022, -35.35534, -33.007053), (-10.925401, -35.35534, -33.624924), (-10.338636, -37.15724, -31.819052), (-10.338636, -37.15724, -31.819052), (-10.925401, -35.35534, -33.624924), (-9.150635, -35.35534, -34.150635), (-8.659187, -37.15724, -32.31653), (-8.659187, -37.15724, -32.31653), (-9.150635, -35.35534, -34.150635), (-7.350788, -35.35534, -34.58274), (-6.9560037, -37.15724, -32.725426), (-6.9560037, -37.15724, -32.725426), (-7.350788, -35.35534, -34.58274), (-5.5307937, -35.35534, -34.920055), (-5.2337546, -37.15724, -33.044624), (-5.2337546, -37.15724, -33.044624), (-5.5307937, -35.35534, -34.920055), (-3.6956394, -35.35534, -35.16166), (-3.4971597, -37.15724, -33.27325), (-3.4971597, -37.15724, -33.27325), (-3.6956394, -35.35534, -35.16166), (-1.8503555, -35.35534, -35.306885), (-1.7509795, -37.15724, -33.41068), (-1.7509795, -37.15724, -33.41068), (-1.8503555, -35.35534, -35.306885), (-6.4946704e-15, -35.35534, -35.35534), (-6.145865e-15, -37.15724, -33.45653), (-6.145865e-15, -37.15724, -33.45653), (-6.4946704e-15, -35.35534, -35.35534), (1.8503555, -35.35534, -35.306885), (1.7509795, -37.15724, -33.41068), (1.7509795, -37.15724, -33.41068), (1.8503555, -35.35534, -35.306885), (3.6956394, -35.35534, -35.16166), (3.4971597, -37.15724, -33.27325), (3.4971597, -37.15724, -33.27325), (3.6956394, -35.35534, -35.16166), (5.5307937, -35.35534, -34.920055), (5.2337546, -37.15724, -33.044624), (5.2337546, -37.15724, -33.044624), (5.5307937, -35.35534, -34.920055), (7.350788, -35.35534, -34.58274), (6.9560037, -37.15724, -32.725426), (6.9560037, -37.15724, -32.725426), (7.350788, -35.35534, -34.58274), (9.150635, -35.35534, -34.150635), (8.659187, -37.15724, -32.31653), (8.659187, -37.15724, -32.31653), (9.150635, -35.35534, -34.150635), (10.925401, -35.35534, -33.624924), (10.338636, -37.15724, -31.819052), (10.338636, -37.15724, -31.819052), (10.925401, -35.35534, -33.624924), (12.67022, -35.35534, -33.007053), (11.989748, -37.15724, -31.234362), (11.989748, -37.15724, -31.234362), (12.67022, -35.35534, -33.007053), (14.380312, -35.35534, -32.29871), (13.607997, -37.15724, -30.564062), (13.607997, -37.15724, -30.564062), (14.380312, -35.35534, -32.29871), (16.050987, -35.35534, -31.501839), (15.188947, -37.15724, -29.809986), (15.188947, -37.15724, -29.809986), (16.050987, -35.35534, -31.501839), (17.67767, -35.35534, -30.618622), (16.728266, -37.15724, -28.974205), (16.728266, -37.15724, -28.974205), (17.67767, -35.35534, -30.618622), (19.255898, -35.35534, -29.651482), (18.221733, -37.15724, -28.059008), (18.221733, -37.15724, -28.059008), (19.255898, -35.35534, -29.651482), (20.781347, -35.35534, -28.60307), (19.665255, -37.15724, -27.066902), (19.665255, -37.15724, -27.066902), (20.781347, -35.35534, -28.60307), (22.249836, -35.35534, -27.47626), (21.054876, -37.15724, -26.000607), (21.054876, -37.15724, -26.000607), (22.249836, -35.35534, -27.47626), (23.65734, -35.35534, -26.274137), (22.38679, -37.15724, -24.863047), (22.38679, -37.15724, -24.863047), (23.65734, -35.35534, -26.274137), (25, -35.35534, -25), (23.65734, -37.15724, -23.65734), (23.65734, -37.15724, -23.65734), (25, -35.35534, -25), (26.274137, -35.35534, -23.65734), (24.863047, -37.15724, -22.38679), (24.863047, -37.15724, -22.38679), (26.274137, -35.35534, -23.65734), (27.47626, -35.35534, -22.249836), (26.000607, -37.15724, -21.054876), (26.000607, -37.15724, -21.054876), (27.47626, -35.35534, -22.249836), (28.60307, -35.35534, -20.781347), (27.066902, -37.15724, -19.665255), (27.066902, -37.15724, -19.665255), (28.60307, -35.35534, -20.781347), (29.651482, -35.35534, -19.255898), (28.059008, -37.15724, -18.221733), (28.059008, -37.15724, -18.221733), (29.651482, -35.35534, -19.255898), (30.618622, -35.35534, -17.67767), (28.974205, -37.15724, -16.728266), (28.974205, -37.15724, -16.728266), (30.618622, -35.35534, -17.67767), (31.501839, -35.35534, -16.050987), (29.809986, -37.15724, -15.188947), (29.809986, -37.15724, -15.188947), (31.501839, -35.35534, -16.050987), (32.29871, -35.35534, -14.380312), (30.564062, -37.15724, -13.607997), (30.564062, -37.15724, -13.607997), (32.29871, -35.35534, -14.380312), (33.007053, -35.35534, -12.67022), (31.234362, -37.15724, -11.989748), (31.234362, -37.15724, -11.989748), (33.007053, -35.35534, -12.67022), (33.624924, -35.35534, -10.925401), (31.819052, -37.15724, -10.338636), (31.819052, -37.15724, -10.338636), (33.624924, -35.35534, -10.925401), (34.150635, -35.35534, -9.150635), (32.31653, -37.15724, -8.659187), (32.31653, -37.15724, -8.659187), (34.150635, -35.35534, -9.150635), (34.58274, -35.35534, -7.350788), (32.725426, -37.15724, -6.9560037), (32.725426, -37.15724, -6.9560037), (34.58274, -35.35534, -7.350788), (34.920055, -35.35534, -5.5307937), (33.044624, -37.15724, -5.2337546), (33.044624, -37.15724, -5.2337546), (34.920055, -35.35534, -5.5307937), (35.16166, -35.35534, -3.6956394), (33.27325, -37.15724, -3.4971597), (33.27325, -37.15724, -3.4971597), (35.16166, -35.35534, -3.6956394), (35.306885, -35.35534, -1.8503555), (33.41068, -37.15724, -1.7509795), (33.41068, -37.15724, -1.7509795), (35.306885, -35.35534, -1.8503555), (35.35534, -35.35534, 0), (33.45653, -37.15724, 0), (35.35534, -35.35534, 0), (37.15724, -33.45653, 0), (37.10632, -33.45653, 1.9446597), (35.306885, -35.35534, 1.8503555), (35.306885, -35.35534, 1.8503555), (37.10632, -33.45653, 1.9446597), (36.95369, -33.45653, 3.8839893), (35.16166, -35.35534, 3.6956394), (35.16166, -35.35534, 3.6956394), (36.95369, -33.45653, 3.8839893), (36.699776, -33.45653, 5.812673), (34.920055, -35.35534, 5.5307937), (34.920055, -35.35534, 5.5307937), (36.699776, -33.45653, 5.812673), (36.34527, -33.45653, 7.725425), (34.58274, -35.35534, 7.350788), (34.58274, -35.35534, 7.350788), (36.34527, -33.45653, 7.725425), (35.89114, -33.45653, 9.617002), (34.150635, -35.35534, 9.150635), (34.150635, -35.35534, 9.150635), (35.89114, -33.45653, 9.617002), (35.33864, -33.45653, 11.482219), (33.624924, -35.35534, 10.925401), (33.624924, -35.35534, 10.925401), (35.33864, -33.45653, 11.482219), (34.689274, -33.45653, 13.315965), (33.007053, -35.35534, 12.67022), (33.007053, -35.35534, 12.67022), (34.689274, -33.45653, 13.315965), (33.944828, -33.45653, 15.113212), (32.29871, -35.35534, 14.380312), (32.29871, -35.35534, 14.380312), (33.944828, -33.45653, 15.113212), (33.107346, -33.45653, 16.869034), (31.501839, -35.35534, 16.050987), (31.501839, -35.35534, 16.050987), (33.107346, -33.45653, 16.869034), (32.179115, -33.45653, 18.57862), (30.618622, -35.35534, 17.67767), (30.618622, -35.35534, 17.67767), (32.179115, -33.45653, 18.57862), (31.162685, -33.45653, 20.237284), (29.651482, -35.35534, 19.255898), (29.651482, -35.35534, 19.255898), (31.162685, -33.45653, 20.237284), (30.06084, -33.45653, 21.840479), (28.60307, -35.35534, 20.781347), (28.60307, -35.35534, 20.781347), (30.06084, -33.45653, 21.840479), (28.8766, -33.45653, 23.38381), (27.47626, -35.35534, 22.249836), (27.47626, -35.35534, 22.249836), (28.8766, -33.45653, 23.38381), (27.61321, -33.45653, 24.863047), (26.274137, -35.35534, 23.65734), (26.274137, -35.35534, 23.65734), (27.61321, -33.45653, 24.863047), (26.274137, -33.45653, 26.274137), (25, -35.35534, 25), (25, -35.35534, 25), (26.274137, -33.45653, 26.274137), (24.863047, -33.45653, 27.61321), (23.65734, -35.35534, 26.274137), (23.65734, -35.35534, 26.274137), (24.863047, -33.45653, 27.61321), (23.38381, -33.45653, 28.8766), (22.249836, -35.35534, 27.47626), (22.249836, -35.35534, 27.47626), (23.38381, -33.45653, 28.8766), (21.840479, -33.45653, 30.06084), (20.781347, -35.35534, 28.60307), (20.781347, -35.35534, 28.60307), (21.840479, -33.45653, 30.06084), (20.237284, -33.45653, 31.162685), (19.255898, -35.35534, 29.651482), (19.255898, -35.35534, 29.651482), (20.237284, -33.45653, 31.162685), (18.57862, -33.45653, 32.179115), (17.67767, -35.35534, 30.618622), (17.67767, -35.35534, 30.618622), (18.57862, -33.45653, 32.179115), (16.869034, -33.45653, 33.107346), (16.050987, -35.35534, 31.501839), (16.050987, -35.35534, 31.501839), (16.869034, -33.45653, 33.107346), (15.113212, -33.45653, 33.944828), (14.380312, -35.35534, 32.29871), (14.380312, -35.35534, 32.29871), (15.113212, -33.45653, 33.944828), (13.315965, -33.45653, 34.689274), (12.67022, -35.35534, 33.007053), (12.67022, -35.35534, 33.007053), (13.315965, -33.45653, 34.689274), (11.482219, -33.45653, 35.33864), (10.925401, -35.35534, 33.624924), (10.925401, -35.35534, 33.624924), (11.482219, -33.45653, 35.33864), (9.617002, -33.45653, 35.89114), (9.150635, -35.35534, 34.150635), (9.150635, -35.35534, 34.150635), (9.617002, -33.45653, 35.89114), (7.725425, -33.45653, 36.34527), (7.350788, -35.35534, 34.58274), (7.350788, -35.35534, 34.58274), (7.725425, -33.45653, 36.34527), (5.812673, -33.45653, 36.699776), (5.5307937, -35.35534, 34.920055), (5.5307937, -35.35534, 34.920055), (5.812673, -33.45653, 36.699776), (3.8839893, -33.45653, 36.95369), (3.6956394, -35.35534, 35.16166), (3.6956394, -35.35534, 35.16166), (3.8839893, -33.45653, 36.95369), (1.9446597, -33.45653, 37.10632), (1.8503555, -35.35534, 35.306885), (1.8503555, -35.35534, 35.306885), (1.9446597, -33.45653, 37.10632), (2.2752247e-15, -33.45653, 37.15724), (2.1648902e-15, -35.35534, 35.35534), (2.1648902e-15, -35.35534, 35.35534), (2.2752247e-15, -33.45653, 37.15724), (-1.9446597, -33.45653, 37.10632), (-1.8503555, -35.35534, 35.306885), (-1.8503555, -35.35534, 35.306885), (-1.9446597, -33.45653, 37.10632), (-3.8839893, -33.45653, 36.95369), (-3.6956394, -35.35534, 35.16166), (-3.6956394, -35.35534, 35.16166), (-3.8839893, -33.45653, 36.95369), (-5.812673, -33.45653, 36.699776), (-5.5307937, -35.35534, 34.920055), (-5.5307937, -35.35534, 34.920055), (-5.812673, -33.45653, 36.699776), (-7.725425, -33.45653, 36.34527), (-7.350788, -35.35534, 34.58274), (-7.350788, -35.35534, 34.58274), (-7.725425, -33.45653, 36.34527), (-9.617002, -33.45653, 35.89114), (-9.150635, -35.35534, 34.150635), (-9.150635, -35.35534, 34.150635), (-9.617002, -33.45653, 35.89114), (-11.482219, -33.45653, 35.33864), (-10.925401, -35.35534, 33.624924), (-10.925401, -35.35534, 33.624924), (-11.482219, -33.45653, 35.33864), (-13.315965, -33.45653, 34.689274), (-12.67022, -35.35534, 33.007053), (-12.67022, -35.35534, 33.007053), (-13.315965, -33.45653, 34.689274), (-15.113212, -33.45653, 33.944828), (-14.380312, -35.35534, 32.29871), (-14.380312, -35.35534, 32.29871), (-15.113212, -33.45653, 33.944828), (-16.869034, -33.45653, 33.107346), (-16.050987, -35.35534, 31.501839), (-16.050987, -35.35534, 31.501839), (-16.869034, -33.45653, 33.107346), (-18.57862, -33.45653, 32.179115), (-17.67767, -35.35534, 30.618622), (-17.67767, -35.35534, 30.618622), (-18.57862, -33.45653, 32.179115), (-20.237284, -33.45653, 31.162685), (-19.255898, -35.35534, 29.651482), (-19.255898, -35.35534, 29.651482), (-20.237284, -33.45653, 31.162685), (-21.840479, -33.45653, 30.06084), (-20.781347, -35.35534, 28.60307), (-20.781347, -35.35534, 28.60307), (-21.840479, -33.45653, 30.06084), (-23.38381, -33.45653, 28.8766), (-22.249836, -35.35534, 27.47626), (-22.249836, -35.35534, 27.47626), (-23.38381, -33.45653, 28.8766), (-24.863047, -33.45653, 27.61321), (-23.65734, -35.35534, 26.274137), (-23.65734, -35.35534, 26.274137), (-24.863047, -33.45653, 27.61321), (-26.274137, -33.45653, 26.274137), (-25, -35.35534, 25), (-25, -35.35534, 25), (-26.274137, -33.45653, 26.274137), (-27.61321, -33.45653, 24.863047), (-26.274137, -35.35534, 23.65734), (-26.274137, -35.35534, 23.65734), (-27.61321, -33.45653, 24.863047), (-28.8766, -33.45653, 23.38381), (-27.47626, -35.35534, 22.249836), (-27.47626, -35.35534, 22.249836), (-28.8766, -33.45653, 23.38381), (-30.06084, -33.45653, 21.840479), (-28.60307, -35.35534, 20.781347), (-28.60307, -35.35534, 20.781347), (-30.06084, -33.45653, 21.840479), (-31.162685, -33.45653, 20.237284), (-29.651482, -35.35534, 19.255898), (-29.651482, -35.35534, 19.255898), (-31.162685, -33.45653, 20.237284), (-32.179115, -33.45653, 18.57862), (-30.618622, -35.35534, 17.67767), (-30.618622, -35.35534, 17.67767), (-32.179115, -33.45653, 18.57862), (-33.107346, -33.45653, 16.869034), (-31.501839, -35.35534, 16.050987), (-31.501839, -35.35534, 16.050987), (-33.107346, -33.45653, 16.869034), (-33.944828, -33.45653, 15.113212), (-32.29871, -35.35534, 14.380312), (-32.29871, -35.35534, 14.380312), (-33.944828, -33.45653, 15.113212), (-34.689274, -33.45653, 13.315965), (-33.007053, -35.35534, 12.67022), (-33.007053, -35.35534, 12.67022), (-34.689274, -33.45653, 13.315965), (-35.33864, -33.45653, 11.482219), (-33.624924, -35.35534, 10.925401), (-33.624924, -35.35534, 10.925401), (-35.33864, -33.45653, 11.482219), (-35.89114, -33.45653, 9.617002), (-34.150635, -35.35534, 9.150635), (-34.150635, -35.35534, 9.150635), (-35.89114, -33.45653, 9.617002), (-36.34527, -33.45653, 7.725425), (-34.58274, -35.35534, 7.350788), (-34.58274, -35.35534, 7.350788), (-36.34527, -33.45653, 7.725425), (-36.699776, -33.45653, 5.812673), (-34.920055, -35.35534, 5.5307937), (-34.920055, -35.35534, 5.5307937), (-36.699776, -33.45653, 5.812673), (-36.95369, -33.45653, 3.8839893), (-35.16166, -35.35534, 3.6956394), (-35.16166, -35.35534, 3.6956394), (-36.95369, -33.45653, 3.8839893), (-37.10632, -33.45653, 1.9446597), (-35.306885, -35.35534, 1.8503555), (-35.306885, -35.35534, 1.8503555), (-37.10632, -33.45653, 1.9446597), (-37.15724, -33.45653, 4.5504495e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.35534, -35.35534, 4.3297804e-15), (-37.15724, -33.45653, 4.5504495e-15), (-37.10632, -33.45653, -1.9446597), (-35.306885, -35.35534, -1.8503555), (-35.306885, -35.35534, -1.8503555), (-37.10632, -33.45653, -1.9446597), (-36.95369, -33.45653, -3.8839893), (-35.16166, -35.35534, -3.6956394), (-35.16166, -35.35534, -3.6956394), (-36.95369, -33.45653, -3.8839893), (-36.699776, -33.45653, -5.812673), (-34.920055, -35.35534, -5.5307937), (-34.920055, -35.35534, -5.5307937), (-36.699776, -33.45653, -5.812673), (-36.34527, -33.45653, -7.725425), (-34.58274, -35.35534, -7.350788), (-34.58274, -35.35534, -7.350788), (-36.34527, -33.45653, -7.725425), (-35.89114, -33.45653, -9.617002), (-34.150635, -35.35534, -9.150635), (-34.150635, -35.35534, -9.150635), (-35.89114, -33.45653, -9.617002), (-35.33864, -33.45653, -11.482219), (-33.624924, -35.35534, -10.925401), (-33.624924, -35.35534, -10.925401), (-35.33864, -33.45653, -11.482219), (-34.689274, -33.45653, -13.315965), (-33.007053, -35.35534, -12.67022), (-33.007053, -35.35534, -12.67022), (-34.689274, -33.45653, -13.315965), (-33.944828, -33.45653, -15.113212), (-32.29871, -35.35534, -14.380312), (-32.29871, -35.35534, -14.380312), (-33.944828, -33.45653, -15.113212), (-33.107346, -33.45653, -16.869034), (-31.501839, -35.35534, -16.050987), (-31.501839, -35.35534, -16.050987), (-33.107346, -33.45653, -16.869034), (-32.179115, -33.45653, -18.57862), (-30.618622, -35.35534, -17.67767), (-30.618622, -35.35534, -17.67767), (-32.179115, -33.45653, -18.57862), (-31.162685, -33.45653, -20.237284), (-29.651482, -35.35534, -19.255898), (-29.651482, -35.35534, -19.255898), (-31.162685, -33.45653, -20.237284), (-30.06084, -33.45653, -21.840479), (-28.60307, -35.35534, -20.781347), (-28.60307, -35.35534, -20.781347), (-30.06084, -33.45653, -21.840479), (-28.8766, -33.45653, -23.38381), (-27.47626, -35.35534, -22.249836), (-27.47626, -35.35534, -22.249836), (-28.8766, -33.45653, -23.38381), (-27.61321, -33.45653, -24.863047), (-26.274137, -35.35534, -23.65734), (-26.274137, -35.35534, -23.65734), (-27.61321, -33.45653, -24.863047), (-26.274137, -33.45653, -26.274137), (-25, -35.35534, -25), (-25, -35.35534, -25), (-26.274137, -33.45653, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.65734, -35.35534, -26.274137), (-23.65734, -35.35534, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.38381, -33.45653, -28.8766), (-22.249836, -35.35534, -27.47626), (-22.249836, -35.35534, -27.47626), (-23.38381, -33.45653, -28.8766), (-21.840479, -33.45653, -30.06084), (-20.781347, -35.35534, -28.60307), (-20.781347, -35.35534, -28.60307), (-21.840479, -33.45653, -30.06084), (-20.237284, -33.45653, -31.162685), (-19.255898, -35.35534, -29.651482), (-19.255898, -35.35534, -29.651482), (-20.237284, -33.45653, -31.162685), (-18.57862, -33.45653, -32.179115), (-17.67767, -35.35534, -30.618622), (-17.67767, -35.35534, -30.618622), (-18.57862, -33.45653, -32.179115), (-16.869034, -33.45653, -33.107346), (-16.050987, -35.35534, -31.501839), (-16.050987, -35.35534, -31.501839), (-16.869034, -33.45653, -33.107346), (-15.113212, -33.45653, -33.944828), (-14.380312, -35.35534, -32.29871), (-14.380312, -35.35534, -32.29871), (-15.113212, -33.45653, -33.944828), (-13.315965, -33.45653, -34.689274), (-12.67022, -35.35534, -33.007053), (-12.67022, -35.35534, -33.007053), (-13.315965, -33.45653, -34.689274), (-11.482219, -33.45653, -35.33864), (-10.925401, -35.35534, -33.624924), (-10.925401, -35.35534, -33.624924), (-11.482219, -33.45653, -35.33864), (-9.617002, -33.45653, -35.89114), (-9.150635, -35.35534, -34.150635), (-9.150635, -35.35534, -34.150635), (-9.617002, -33.45653, -35.89114), (-7.725425, -33.45653, -36.34527), (-7.350788, -35.35534, -34.58274), (-7.350788, -35.35534, -34.58274), (-7.725425, -33.45653, -36.34527), (-5.812673, -33.45653, -36.699776), (-5.5307937, -35.35534, -34.920055), (-5.5307937, -35.35534, -34.920055), (-5.812673, -33.45653, -36.699776), (-3.8839893, -33.45653, -36.95369), (-3.6956394, -35.35534, -35.16166), (-3.6956394, -35.35534, -35.16166), (-3.8839893, -33.45653, -36.95369), (-1.9446597, -33.45653, -37.10632), (-1.8503555, -35.35534, -35.306885), (-1.8503555, -35.35534, -35.306885), (-1.9446597, -33.45653, -37.10632), (-6.8256744e-15, -33.45653, -37.15724), (-6.4946704e-15, -35.35534, -35.35534), (-6.4946704e-15, -35.35534, -35.35534), (-6.8256744e-15, -33.45653, -37.15724), (1.9446597, -33.45653, -37.10632), (1.8503555, -35.35534, -35.306885), (1.8503555, -35.35534, -35.306885), (1.9446597, -33.45653, -37.10632), (3.8839893, -33.45653, -36.95369), (3.6956394, -35.35534, -35.16166), (3.6956394, -35.35534, -35.16166), (3.8839893, -33.45653, -36.95369), (5.812673, -33.45653, -36.699776), (5.5307937, -35.35534, -34.920055), (5.5307937, -35.35534, -34.920055), (5.812673, -33.45653, -36.699776), (7.725425, -33.45653, -36.34527), (7.350788, -35.35534, -34.58274), (7.350788, -35.35534, -34.58274), (7.725425, -33.45653, -36.34527), (9.617002, -33.45653, -35.89114), (9.150635, -35.35534, -34.150635), (9.150635, -35.35534, -34.150635), (9.617002, -33.45653, -35.89114), (11.482219, -33.45653, -35.33864), (10.925401, -35.35534, -33.624924), (10.925401, -35.35534, -33.624924), (11.482219, -33.45653, -35.33864), (13.315965, -33.45653, -34.689274), (12.67022, -35.35534, -33.007053), (12.67022, -35.35534, -33.007053), (13.315965, -33.45653, -34.689274), (15.113212, -33.45653, -33.944828), (14.380312, -35.35534, -32.29871), (14.380312, -35.35534, -32.29871), (15.113212, -33.45653, -33.944828), (16.869034, -33.45653, -33.107346), (16.050987, -35.35534, -31.501839), (16.050987, -35.35534, -31.501839), (16.869034, -33.45653, -33.107346), (18.57862, -33.45653, -32.179115), (17.67767, -35.35534, -30.618622), (17.67767, -35.35534, -30.618622), (18.57862, -33.45653, -32.179115), (20.237284, -33.45653, -31.162685), (19.255898, -35.35534, -29.651482), (19.255898, -35.35534, -29.651482), (20.237284, -33.45653, -31.162685), (21.840479, -33.45653, -30.06084), (20.781347, -35.35534, -28.60307), (20.781347, -35.35534, -28.60307), (21.840479, -33.45653, -30.06084), (23.38381, -33.45653, -28.8766), (22.249836, -35.35534, -27.47626), (22.249836, -35.35534, -27.47626), (23.38381, -33.45653, -28.8766), (24.863047, -33.45653, -27.61321), (23.65734, -35.35534, -26.274137), (23.65734, -35.35534, -26.274137), (24.863047, -33.45653, -27.61321), (26.274137, -33.45653, -26.274137), (25, -35.35534, -25), (25, -35.35534, -25), (26.274137, -33.45653, -26.274137), (27.61321, -33.45653, -24.863047), (26.274137, -35.35534, -23.65734), (26.274137, -35.35534, -23.65734), (27.61321, -33.45653, -24.863047), (28.8766, -33.45653, -23.38381), (27.47626, -35.35534, -22.249836), (27.47626, -35.35534, -22.249836), (28.8766, -33.45653, -23.38381), (30.06084, -33.45653, -21.840479), (28.60307, -35.35534, -20.781347), (28.60307, -35.35534, -20.781347), (30.06084, -33.45653, -21.840479), (31.162685, -33.45653, -20.237284), (29.651482, -35.35534, -19.255898), (29.651482, -35.35534, -19.255898), (31.162685, -33.45653, -20.237284), (32.179115, -33.45653, -18.57862), (30.618622, -35.35534, -17.67767), (30.618622, -35.35534, -17.67767), (32.179115, -33.45653, -18.57862), (33.107346, -33.45653, -16.869034), (31.501839, -35.35534, -16.050987), (31.501839, -35.35534, -16.050987), (33.107346, -33.45653, -16.869034), (33.944828, -33.45653, -15.113212), (32.29871, -35.35534, -14.380312), (32.29871, -35.35534, -14.380312), (33.944828, -33.45653, -15.113212), (34.689274, -33.45653, -13.315965), (33.007053, -35.35534, -12.67022), (33.007053, -35.35534, -12.67022), (34.689274, -33.45653, -13.315965), (35.33864, -33.45653, -11.482219), (33.624924, -35.35534, -10.925401), (33.624924, -35.35534, -10.925401), (35.33864, -33.45653, -11.482219), (35.89114, -33.45653, -9.617002), (34.150635, -35.35534, -9.150635), (34.150635, -35.35534, -9.150635), (35.89114, -33.45653, -9.617002), (36.34527, -33.45653, -7.725425), (34.58274, -35.35534, -7.350788), (34.58274, -35.35534, -7.350788), (36.34527, -33.45653, -7.725425), (36.699776, -33.45653, -5.812673), (34.920055, -35.35534, -5.5307937), (34.920055, -35.35534, -5.5307937), (36.699776, -33.45653, -5.812673), (36.95369, -33.45653, -3.8839893), (35.16166, -35.35534, -3.6956394), (35.16166, -35.35534, -3.6956394), (36.95369, -33.45653, -3.8839893), (37.10632, -33.45653, -1.9446597), (35.306885, -35.35534, -1.8503555), (35.306885, -35.35534, -1.8503555), (37.10632, -33.45653, -1.9446597), (37.15724, -33.45653, 0), (35.35534, -35.35534, 0), (37.15724, -33.45653, 0), (38.8573, -31.466019, 0), (38.804047, -31.466019, 2.033634), (37.10632, -33.45653, 1.9446597), (37.10632, -33.45653, 1.9446597), (38.804047, -31.466019, 2.033634), (38.644432, -31.466019, 4.0616937), (36.95369, -33.45653, 3.8839893), (36.95369, -33.45653, 3.8839893), (38.644432, -31.466019, 4.0616937), (38.3789, -31.466019, 6.0786204), (36.699776, -33.45653, 5.812673), (36.699776, -33.45653, 5.812673), (38.3789, -31.466019, 6.0786204), (38.00817, -31.466019, 8.078887), (36.34527, -33.45653, 7.725425), (36.34527, -33.45653, 7.725425), (38.00817, -31.466019, 8.078887), (37.533268, -31.466019, 10.057009), (35.89114, -33.45653, 9.617002), (35.89114, -33.45653, 9.617002), (37.533268, -31.466019, 10.057009), (36.955486, -31.466019, 12.0075655), (35.33864, -33.45653, 11.482219), (35.33864, -33.45653, 11.482219), (36.955486, -31.466019, 12.0075655), (36.276413, -31.466019, 13.92521), (34.689274, -33.45653, 13.315965), (34.689274, -33.45653, 13.315965), (36.276413, -31.466019, 13.92521), (35.49791, -31.466019, 15.804687), (33.944828, -33.45653, 15.113212), (33.944828, -33.45653, 15.113212), (35.49791, -31.466019, 15.804687), (34.622105, -31.466019, 17.640844), (33.107346, -33.45653, 16.869034), (33.107346, -33.45653, 16.869034), (34.622105, -31.466019, 17.640844), (33.65141, -31.466019, 19.42865), (32.179115, -33.45653, 18.57862), (32.179115, -33.45653, 18.57862), (33.65141, -31.466019, 19.42865), (32.58847, -31.466019, 21.1632), (31.162685, -33.45653, 20.237284), (31.162685, -33.45653, 20.237284), (32.58847, -31.466019, 21.1632), (31.436214, -31.466019, 22.839746), (30.06084, -33.45653, 21.840479), (30.06084, -33.45653, 21.840479), (31.436214, -31.466019, 22.839746), (30.197792, -31.466019, 24.45369), (28.8766, -33.45653, 23.38381), (28.8766, -33.45653, 23.38381), (30.197792, -31.466019, 24.45369), (28.8766, -31.466019, 26.000607), (27.61321, -33.45653, 24.863047), (27.61321, -33.45653, 24.863047), (28.8766, -31.466019, 26.000607), (27.47626, -31.466019, 27.47626), (26.274137, -33.45653, 26.274137), (26.274137, -33.45653, 26.274137), (27.47626, -31.466019, 27.47626), (26.000607, -31.466019, 28.8766), (24.863047, -33.45653, 27.61321), (24.863047, -33.45653, 27.61321), (26.000607, -31.466019, 28.8766), (24.45369, -31.466019, 30.197792), (23.38381, -33.45653, 28.8766), (23.38381, -33.45653, 28.8766), (24.45369, -31.466019, 30.197792), (22.839746, -31.466019, 31.436214), (21.840479, -33.45653, 30.06084), (21.840479, -33.45653, 30.06084), (22.839746, -31.466019, 31.436214), (21.1632, -31.466019, 32.58847), (20.237284, -33.45653, 31.162685), (20.237284, -33.45653, 31.162685), (21.1632, -31.466019, 32.58847), (19.42865, -31.466019, 33.65141), (18.57862, -33.45653, 32.179115), (18.57862, -33.45653, 32.179115), (19.42865, -31.466019, 33.65141), (17.640844, -31.466019, 34.622105), (16.869034, -33.45653, 33.107346), (16.869034, -33.45653, 33.107346), (17.640844, -31.466019, 34.622105), (15.804687, -31.466019, 35.49791), (15.113212, -33.45653, 33.944828), (15.113212, -33.45653, 33.944828), (15.804687, -31.466019, 35.49791), (13.92521, -31.466019, 36.276413), (13.315965, -33.45653, 34.689274), (13.315965, -33.45653, 34.689274), (13.92521, -31.466019, 36.276413), (12.0075655, -31.466019, 36.955486), (11.482219, -33.45653, 35.33864), (11.482219, -33.45653, 35.33864), (12.0075655, -31.466019, 36.955486), (10.057009, -31.466019, 37.533268), (9.617002, -33.45653, 35.89114), (9.617002, -33.45653, 35.89114), (10.057009, -31.466019, 37.533268), (8.078887, -31.466019, 38.00817), (7.725425, -33.45653, 36.34527), (7.725425, -33.45653, 36.34527), (8.078887, -31.466019, 38.00817), (6.0786204, -31.466019, 38.3789), (5.812673, -33.45653, 36.699776), (5.812673, -33.45653, 36.699776), (6.0786204, -31.466019, 38.3789), (4.0616937, -31.466019, 38.644432), (3.8839893, -33.45653, 36.95369), (3.8839893, -33.45653, 36.95369), (4.0616937, -31.466019, 38.644432), (2.033634, -31.466019, 38.804047), (1.9446597, -33.45653, 37.10632), (1.9446597, -33.45653, 37.10632), (2.033634, -31.466019, 38.804047), (2.3793234e-15, -31.466019, 38.8573), (2.2752247e-15, -33.45653, 37.15724), (2.2752247e-15, -33.45653, 37.15724), (2.3793234e-15, -31.466019, 38.8573), (-2.033634, -31.466019, 38.804047), (-1.9446597, -33.45653, 37.10632), (-1.9446597, -33.45653, 37.10632), (-2.033634, -31.466019, 38.804047), (-4.0616937, -31.466019, 38.644432), (-3.8839893, -33.45653, 36.95369), (-3.8839893, -33.45653, 36.95369), (-4.0616937, -31.466019, 38.644432), (-6.0786204, -31.466019, 38.3789), (-5.812673, -33.45653, 36.699776), (-5.812673, -33.45653, 36.699776), (-6.0786204, -31.466019, 38.3789), (-8.078887, -31.466019, 38.00817), (-7.725425, -33.45653, 36.34527), (-7.725425, -33.45653, 36.34527), (-8.078887, -31.466019, 38.00817), (-10.057009, -31.466019, 37.533268), (-9.617002, -33.45653, 35.89114), (-9.617002, -33.45653, 35.89114), (-10.057009, -31.466019, 37.533268), (-12.0075655, -31.466019, 36.955486), (-11.482219, -33.45653, 35.33864), (-11.482219, -33.45653, 35.33864), (-12.0075655, -31.466019, 36.955486), (-13.92521, -31.466019, 36.276413), (-13.315965, -33.45653, 34.689274), (-13.315965, -33.45653, 34.689274), (-13.92521, -31.466019, 36.276413), (-15.804687, -31.466019, 35.49791), (-15.113212, -33.45653, 33.944828), (-15.113212, -33.45653, 33.944828), (-15.804687, -31.466019, 35.49791), (-17.640844, -31.466019, 34.622105), (-16.869034, -33.45653, 33.107346), (-16.869034, -33.45653, 33.107346), (-17.640844, -31.466019, 34.622105), (-19.42865, -31.466019, 33.65141), (-18.57862, -33.45653, 32.179115), (-18.57862, -33.45653, 32.179115), (-19.42865, -31.466019, 33.65141), (-21.1632, -31.466019, 32.58847), (-20.237284, -33.45653, 31.162685), (-20.237284, -33.45653, 31.162685), (-21.1632, -31.466019, 32.58847), (-22.839746, -31.466019, 31.436214), (-21.840479, -33.45653, 30.06084), (-21.840479, -33.45653, 30.06084), (-22.839746, -31.466019, 31.436214), (-24.45369, -31.466019, 30.197792), (-23.38381, -33.45653, 28.8766), (-23.38381, -33.45653, 28.8766), (-24.45369, -31.466019, 30.197792), (-26.000607, -31.466019, 28.8766), (-24.863047, -33.45653, 27.61321), (-24.863047, -33.45653, 27.61321), (-26.000607, -31.466019, 28.8766), (-27.47626, -31.466019, 27.47626), (-26.274137, -33.45653, 26.274137), (-26.274137, -33.45653, 26.274137), (-27.47626, -31.466019, 27.47626), (-28.8766, -31.466019, 26.000607), (-27.61321, -33.45653, 24.863047), (-27.61321, -33.45653, 24.863047), (-28.8766, -31.466019, 26.000607), (-30.197792, -31.466019, 24.45369), (-28.8766, -33.45653, 23.38381), (-28.8766, -33.45653, 23.38381), (-30.197792, -31.466019, 24.45369), (-31.436214, -31.466019, 22.839746), (-30.06084, -33.45653, 21.840479), (-30.06084, -33.45653, 21.840479), (-31.436214, -31.466019, 22.839746), (-32.58847, -31.466019, 21.1632), (-31.162685, -33.45653, 20.237284), (-31.162685, -33.45653, 20.237284), (-32.58847, -31.466019, 21.1632), (-33.65141, -31.466019, 19.42865), (-32.179115, -33.45653, 18.57862), (-32.179115, -33.45653, 18.57862), (-33.65141, -31.466019, 19.42865), (-34.622105, -31.466019, 17.640844), (-33.107346, -33.45653, 16.869034), (-33.107346, -33.45653, 16.869034), (-34.622105, -31.466019, 17.640844), (-35.49791, -31.466019, 15.804687), (-33.944828, -33.45653, 15.113212), (-33.944828, -33.45653, 15.113212), (-35.49791, -31.466019, 15.804687), (-36.276413, -31.466019, 13.92521), (-34.689274, -33.45653, 13.315965), (-34.689274, -33.45653, 13.315965), (-36.276413, -31.466019, 13.92521), (-36.955486, -31.466019, 12.0075655), (-35.33864, -33.45653, 11.482219), (-35.33864, -33.45653, 11.482219), (-36.955486, -31.466019, 12.0075655), (-37.533268, -31.466019, 10.057009), (-35.89114, -33.45653, 9.617002), (-35.89114, -33.45653, 9.617002), (-37.533268, -31.466019, 10.057009), (-38.00817, -31.466019, 8.078887), (-36.34527, -33.45653, 7.725425), (-36.34527, -33.45653, 7.725425), (-38.00817, -31.466019, 8.078887), (-38.3789, -31.466019, 6.0786204), (-36.699776, -33.45653, 5.812673), (-36.699776, -33.45653, 5.812673), (-38.3789, -31.466019, 6.0786204), (-38.644432, -31.466019, 4.0616937), (-36.95369, -33.45653, 3.8839893), (-36.95369, -33.45653, 3.8839893), (-38.644432, -31.466019, 4.0616937), (-38.804047, -31.466019, 2.033634), (-37.10632, -33.45653, 1.9446597), (-37.10632, -33.45653, 1.9446597), (-38.804047, -31.466019, 2.033634), (-38.8573, -31.466019, 4.7586468e-15), (-37.15724, -33.45653, 4.5504495e-15), (-37.15724, -33.45653, 4.5504495e-15), (-38.8573, -31.466019, 4.7586468e-15), (-38.804047, -31.466019, -2.033634), (-37.10632, -33.45653, -1.9446597), (-37.10632, -33.45653, -1.9446597), (-38.804047, -31.466019, -2.033634), (-38.644432, -31.466019, -4.0616937), (-36.95369, -33.45653, -3.8839893), (-36.95369, -33.45653, -3.8839893), (-38.644432, -31.466019, -4.0616937), (-38.3789, -31.466019, -6.0786204), (-36.699776, -33.45653, -5.812673), (-36.699776, -33.45653, -5.812673), (-38.3789, -31.466019, -6.0786204), (-38.00817, -31.466019, -8.078887), (-36.34527, -33.45653, -7.725425), (-36.34527, -33.45653, -7.725425), (-38.00817, -31.466019, -8.078887), (-37.533268, -31.466019, -10.057009), (-35.89114, -33.45653, -9.617002), (-35.89114, -33.45653, -9.617002), (-37.533268, -31.466019, -10.057009), (-36.955486, -31.466019, -12.0075655), (-35.33864, -33.45653, -11.482219), (-35.33864, -33.45653, -11.482219), (-36.955486, -31.466019, -12.0075655), (-36.276413, -31.466019, -13.92521), (-34.689274, -33.45653, -13.315965), (-34.689274, -33.45653, -13.315965), (-36.276413, -31.466019, -13.92521), (-35.49791, -31.466019, -15.804687), (-33.944828, -33.45653, -15.113212), (-33.944828, -33.45653, -15.113212), (-35.49791, -31.466019, -15.804687), (-34.622105, -31.466019, -17.640844), (-33.107346, -33.45653, -16.869034), (-33.107346, -33.45653, -16.869034), (-34.622105, -31.466019, -17.640844), (-33.65141, -31.466019, -19.42865), (-32.179115, -33.45653, -18.57862), (-32.179115, -33.45653, -18.57862), (-33.65141, -31.466019, -19.42865), (-32.58847, -31.466019, -21.1632), (-31.162685, -33.45653, -20.237284), (-31.162685, -33.45653, -20.237284), (-32.58847, -31.466019, -21.1632), (-31.436214, -31.466019, -22.839746), (-30.06084, -33.45653, -21.840479), (-30.06084, -33.45653, -21.840479), (-31.436214, -31.466019, -22.839746), (-30.197792, -31.466019, -24.45369), (-28.8766, -33.45653, -23.38381), (-28.8766, -33.45653, -23.38381), (-30.197792, -31.466019, -24.45369), (-28.8766, -31.466019, -26.000607), (-27.61321, -33.45653, -24.863047), (-27.61321, -33.45653, -24.863047), (-28.8766, -31.466019, -26.000607), (-27.47626, -31.466019, -27.47626), (-26.274137, -33.45653, -26.274137), (-26.274137, -33.45653, -26.274137), (-27.47626, -31.466019, -27.47626), (-26.000607, -31.466019, -28.8766), (-24.863047, -33.45653, -27.61321), (-24.863047, -33.45653, -27.61321), (-26.000607, -31.466019, -28.8766), (-24.45369, -31.466019, -30.197792), (-23.38381, -33.45653, -28.8766), (-23.38381, -33.45653, -28.8766), (-24.45369, -31.466019, -30.197792), (-22.839746, -31.466019, -31.436214), (-21.840479, -33.45653, -30.06084), (-21.840479, -33.45653, -30.06084), (-22.839746, -31.466019, -31.436214), (-21.1632, -31.466019, -32.58847), (-20.237284, -33.45653, -31.162685), (-20.237284, -33.45653, -31.162685), (-21.1632, -31.466019, -32.58847), (-19.42865, -31.466019, -33.65141), (-18.57862, -33.45653, -32.179115), (-18.57862, -33.45653, -32.179115), (-19.42865, -31.466019, -33.65141), (-17.640844, -31.466019, -34.622105), (-16.869034, -33.45653, -33.107346), (-16.869034, -33.45653, -33.107346), (-17.640844, -31.466019, -34.622105), (-15.804687, -31.466019, -35.49791), (-15.113212, -33.45653, -33.944828), (-15.113212, -33.45653, -33.944828), (-15.804687, -31.466019, -35.49791), (-13.92521, -31.466019, -36.276413), (-13.315965, -33.45653, -34.689274), (-13.315965, -33.45653, -34.689274), (-13.92521, -31.466019, -36.276413), (-12.0075655, -31.466019, -36.955486), (-11.482219, -33.45653, -35.33864), (-11.482219, -33.45653, -35.33864), (-12.0075655, -31.466019, -36.955486), (-10.057009, -31.466019, -37.533268), (-9.617002, -33.45653, -35.89114), (-9.617002, -33.45653, -35.89114), (-10.057009, -31.466019, -37.533268), (-8.078887, -31.466019, -38.00817), (-7.725425, -33.45653, -36.34527), (-7.725425, -33.45653, -36.34527), (-8.078887, -31.466019, -38.00817), (-6.0786204, -31.466019, -38.3789), (-5.812673, -33.45653, -36.699776), (-5.812673, -33.45653, -36.699776), (-6.0786204, -31.466019, -38.3789), (-4.0616937, -31.466019, -38.644432), (-3.8839893, -33.45653, -36.95369), (-3.8839893, -33.45653, -36.95369), (-4.0616937, -31.466019, -38.644432), (-2.033634, -31.466019, -38.804047), (-1.9446597, -33.45653, -37.10632), (-1.9446597, -33.45653, -37.10632), (-2.033634, -31.466019, -38.804047), (-7.1379695e-15, -31.466019, -38.8573), (-6.8256744e-15, -33.45653, -37.15724), (-6.8256744e-15, -33.45653, -37.15724), (-7.1379695e-15, -31.466019, -38.8573), (2.033634, -31.466019, -38.804047), (1.9446597, -33.45653, -37.10632), (1.9446597, -33.45653, -37.10632), (2.033634, -31.466019, -38.804047), (4.0616937, -31.466019, -38.644432), (3.8839893, -33.45653, -36.95369), (3.8839893, -33.45653, -36.95369), (4.0616937, -31.466019, -38.644432), (6.0786204, -31.466019, -38.3789), (5.812673, -33.45653, -36.699776), (5.812673, -33.45653, -36.699776), (6.0786204, -31.466019, -38.3789), (8.078887, -31.466019, -38.00817), (7.725425, -33.45653, -36.34527), (7.725425, -33.45653, -36.34527), (8.078887, -31.466019, -38.00817), (10.057009, -31.466019, -37.533268), (9.617002, -33.45653, -35.89114), (9.617002, -33.45653, -35.89114), (10.057009, -31.466019, -37.533268), (12.0075655, -31.466019, -36.955486), (11.482219, -33.45653, -35.33864), (11.482219, -33.45653, -35.33864), (12.0075655, -31.466019, -36.955486), (13.92521, -31.466019, -36.276413), (13.315965, -33.45653, -34.689274), (13.315965, -33.45653, -34.689274), (13.92521, -31.466019, -36.276413), (15.804687, -31.466019, -35.49791), (15.113212, -33.45653, -33.944828), (15.113212, -33.45653, -33.944828), (15.804687, -31.466019, -35.49791), (17.640844, -31.466019, -34.622105), (16.869034, -33.45653, -33.107346), (16.869034, -33.45653, -33.107346), (17.640844, -31.466019, -34.622105), (19.42865, -31.466019, -33.65141), (18.57862, -33.45653, -32.179115), (18.57862, -33.45653, -32.179115), (19.42865, -31.466019, -33.65141), (21.1632, -31.466019, -32.58847), (20.237284, -33.45653, -31.162685), (20.237284, -33.45653, -31.162685), (21.1632, -31.466019, -32.58847), (22.839746, -31.466019, -31.436214), (21.840479, -33.45653, -30.06084), (21.840479, -33.45653, -30.06084), (22.839746, -31.466019, -31.436214), (24.45369, -31.466019, -30.197792), (23.38381, -33.45653, -28.8766), (23.38381, -33.45653, -28.8766), (24.45369, -31.466019, -30.197792), (26.000607, -31.466019, -28.8766), (24.863047, -33.45653, -27.61321), (24.863047, -33.45653, -27.61321), (26.000607, -31.466019, -28.8766), (27.47626, -31.466019, -27.47626), (26.274137, -33.45653, -26.274137), (26.274137, -33.45653, -26.274137), (27.47626, -31.466019, -27.47626), (28.8766, -31.466019, -26.000607), (27.61321, -33.45653, -24.863047), (27.61321, -33.45653, -24.863047), (28.8766, -31.466019, -26.000607), (30.197792, -31.466019, -24.45369), (28.8766, -33.45653, -23.38381), (28.8766, -33.45653, -23.38381), (30.197792, -31.466019, -24.45369), (31.436214, -31.466019, -22.839746), (30.06084, -33.45653, -21.840479), (30.06084, -33.45653, -21.840479), (31.436214, -31.466019, -22.839746), (32.58847, -31.466019, -21.1632), (31.162685, -33.45653, -20.237284), (31.162685, -33.45653, -20.237284), (32.58847, -31.466019, -21.1632), (33.65141, -31.466019, -19.42865), (32.179115, -33.45653, -18.57862), (32.179115, -33.45653, -18.57862), (33.65141, -31.466019, -19.42865), (34.622105, -31.466019, -17.640844), (33.107346, -33.45653, -16.869034), (33.107346, -33.45653, -16.869034), (34.622105, -31.466019, -17.640844), (35.49791, -31.466019, -15.804687), (33.944828, -33.45653, -15.113212), (33.944828, -33.45653, -15.113212), (35.49791, -31.466019, -15.804687), (36.276413, -31.466019, -13.92521), (34.689274, -33.45653, -13.315965), (34.689274, -33.45653, -13.315965), (36.276413, -31.466019, -13.92521), (36.955486, -31.466019, -12.0075655), (35.33864, -33.45653, -11.482219), (35.33864, -33.45653, -11.482219), (36.955486, -31.466019, -12.0075655), (37.533268, -31.466019, -10.057009), (35.89114, -33.45653, -9.617002), (35.89114, -33.45653, -9.617002), (37.533268, -31.466019, -10.057009), (38.00817, -31.466019, -8.078887), (36.34527, -33.45653, -7.725425), (36.34527, -33.45653, -7.725425), (38.00817, -31.466019, -8.078887), (38.3789, -31.466019, -6.0786204), (36.699776, -33.45653, -5.812673), (36.699776, -33.45653, -5.812673), (38.3789, -31.466019, -6.0786204), (38.644432, -31.466019, -4.0616937), (36.95369, -33.45653, -3.8839893), (36.95369, -33.45653, -3.8839893), (38.644432, -31.466019, -4.0616937), (38.804047, -31.466019, -2.033634), (37.10632, -33.45653, -1.9446597), (37.10632, -33.45653, -1.9446597), (38.804047, -31.466019, -2.033634), (38.8573, -31.466019, 0), (37.15724, -33.45653, 0), (38.8573, -31.466019, 0), (40.45085, -29.389263, 0), (40.395412, -29.389263, 2.117034), (38.804047, -31.466019, 2.033634), (38.804047, -31.466019, 2.033634), (40.395412, -29.389263, 2.117034), (40.229256, -29.389263, 4.2282653), (38.644432, -31.466019, 4.0616937), (38.644432, -31.466019, 4.0616937), (40.229256, -29.389263, 4.2282653), (39.95283, -29.389263, 6.327907), (38.3789, -31.466019, 6.0786204), (38.3789, -31.466019, 6.0786204), (39.95283, -29.389263, 6.327907), (39.566902, -29.389263, 8.410205), (38.00817, -31.466019, 8.078887), (38.00817, -31.466019, 8.078887), (39.566902, -29.389263, 8.410205), (39.07252, -29.389263, 10.46945), (37.533268, -31.466019, 10.057009), (37.533268, -31.466019, 10.057009), (39.07252, -29.389263, 10.46945), (38.471043, -29.389263, 12.5), (36.955486, -31.466019, 12.0075655), (36.955486, -31.466019, 12.0075655), (38.471043, -29.389263, 12.5), (37.764122, -29.389263, 14.496288), (36.276413, -31.466019, 13.92521), (36.276413, -31.466019, 13.92521), (37.764122, -29.389263, 14.496288), (36.95369, -29.389263, 16.452843), (35.49791, -31.466019, 15.804687), (35.49791, -31.466019, 15.804687), (36.95369, -29.389263, 16.452843), (36.04197, -29.389263, 18.364302), (34.622105, -31.466019, 17.640844), (34.622105, -31.466019, 17.640844), (36.04197, -29.389263, 18.364302), (35.031464, -29.389263, 20.225426), (33.65141, -31.466019, 19.42865), (33.65141, -31.466019, 19.42865), (35.031464, -29.389263, 20.225426), (33.92494, -29.389263, 22.031113), (32.58847, -31.466019, 21.1632), (32.58847, -31.466019, 21.1632), (33.92494, -29.389263, 22.031113), (32.725426, -29.389263, 23.776413), (31.436214, -31.466019, 22.839746), (31.436214, -31.466019, 22.839746), (32.725426, -29.389263, 23.776413), (31.436214, -29.389263, 25.456545), (30.197792, -31.466019, 24.45369), (30.197792, -31.466019, 24.45369), (31.436214, -29.389263, 25.456545), (30.06084, -29.389263, 27.066902), (28.8766, -31.466019, 26.000607), (28.8766, -31.466019, 26.000607), (30.06084, -29.389263, 27.066902), (28.60307, -29.389263, 28.60307), (27.47626, -31.466019, 27.47626), (27.47626, -31.466019, 27.47626), (28.60307, -29.389263, 28.60307), (27.066902, -29.389263, 30.06084), (26.000607, -31.466019, 28.8766), (26.000607, -31.466019, 28.8766), (27.066902, -29.389263, 30.06084), (25.456545, -29.389263, 31.436214), (24.45369, -31.466019, 30.197792), (24.45369, -31.466019, 30.197792), (25.456545, -29.389263, 31.436214), (23.776413, -29.389263, 32.725426), (22.839746, -31.466019, 31.436214), (22.839746, -31.466019, 31.436214), (23.776413, -29.389263, 32.725426), (22.031113, -29.389263, 33.92494), (21.1632, -31.466019, 32.58847), (21.1632, -31.466019, 32.58847), (22.031113, -29.389263, 33.92494), (20.225426, -29.389263, 35.031464), (19.42865, -31.466019, 33.65141), (19.42865, -31.466019, 33.65141), (20.225426, -29.389263, 35.031464), (18.364302, -29.389263, 36.04197), (17.640844, -31.466019, 34.622105), (17.640844, -31.466019, 34.622105), (18.364302, -29.389263, 36.04197), (16.452843, -29.389263, 36.95369), (15.804687, -31.466019, 35.49791), (15.804687, -31.466019, 35.49791), (16.452843, -29.389263, 36.95369), (14.496288, -29.389263, 37.764122), (13.92521, -31.466019, 36.276413), (13.92521, -31.466019, 36.276413), (14.496288, -29.389263, 37.764122), (12.5, -29.389263, 38.471043), (12.0075655, -31.466019, 36.955486), (12.0075655, -31.466019, 36.955486), (12.5, -29.389263, 38.471043), (10.46945, -29.389263, 39.07252), (10.057009, -31.466019, 37.533268), (10.057009, -31.466019, 37.533268), (10.46945, -29.389263, 39.07252), (8.410205, -29.389263, 39.566902), (8.078887, -31.466019, 38.00817), (8.078887, -31.466019, 38.00817), (8.410205, -29.389263, 39.566902), (6.327907, -29.389263, 39.95283), (6.0786204, -31.466019, 38.3789), (6.0786204, -31.466019, 38.3789), (6.327907, -29.389263, 39.95283), (4.2282653, -29.389263, 40.229256), (4.0616937, -31.466019, 38.644432), (4.0616937, -31.466019, 38.644432), (4.2282653, -29.389263, 40.229256), (2.117034, -29.389263, 40.395412), (2.033634, -31.466019, 38.804047), (2.033634, -31.466019, 38.804047), (2.117034, -29.389263, 40.395412), (2.4769e-15, -29.389263, 40.45085), (2.3793234e-15, -31.466019, 38.8573), (2.3793234e-15, -31.466019, 38.8573), (2.4769e-15, -29.389263, 40.45085), (-2.117034, -29.389263, 40.395412), (-2.033634, -31.466019, 38.804047), (-2.033634, -31.466019, 38.804047), (-2.117034, -29.389263, 40.395412), (-4.2282653, -29.389263, 40.229256), (-4.0616937, -31.466019, 38.644432), (-4.0616937, -31.466019, 38.644432), (-4.2282653, -29.389263, 40.229256), (-6.327907, -29.389263, 39.95283), (-6.0786204, -31.466019, 38.3789), (-6.0786204, -31.466019, 38.3789), (-6.327907, -29.389263, 39.95283), (-8.410205, -29.389263, 39.566902), (-8.078887, -31.466019, 38.00817), (-8.078887, -31.466019, 38.00817), (-8.410205, -29.389263, 39.566902), (-10.46945, -29.389263, 39.07252), (-10.057009, -31.466019, 37.533268), (-10.057009, -31.466019, 37.533268), (-10.46945, -29.389263, 39.07252), (-12.5, -29.389263, 38.471043), (-12.0075655, -31.466019, 36.955486), (-12.0075655, -31.466019, 36.955486), (-12.5, -29.389263, 38.471043), (-14.496288, -29.389263, 37.764122), (-13.92521, -31.466019, 36.276413), (-13.92521, -31.466019, 36.276413), (-14.496288, -29.389263, 37.764122), (-16.452843, -29.389263, 36.95369), (-15.804687, -31.466019, 35.49791), (-15.804687, -31.466019, 35.49791), (-16.452843, -29.389263, 36.95369), (-18.364302, -29.389263, 36.04197), (-17.640844, -31.466019, 34.622105), (-17.640844, -31.466019, 34.622105), (-18.364302, -29.389263, 36.04197), (-20.225426, -29.389263, 35.031464), (-19.42865, -31.466019, 33.65141), (-19.42865, -31.466019, 33.65141), (-20.225426, -29.389263, 35.031464), (-22.031113, -29.389263, 33.92494), (-21.1632, -31.466019, 32.58847), (-21.1632, -31.466019, 32.58847), (-22.031113, -29.389263, 33.92494), (-23.776413, -29.389263, 32.725426), (-22.839746, -31.466019, 31.436214), (-22.839746, -31.466019, 31.436214), (-23.776413, -29.389263, 32.725426), (-25.456545, -29.389263, 31.436214), (-24.45369, -31.466019, 30.197792), (-24.45369, -31.466019, 30.197792), (-25.456545, -29.389263, 31.436214), (-27.066902, -29.389263, 30.06084), (-26.000607, -31.466019, 28.8766), (-26.000607, -31.466019, 28.8766), (-27.066902, -29.389263, 30.06084), (-28.60307, -29.389263, 28.60307), (-27.47626, -31.466019, 27.47626), (-27.47626, -31.466019, 27.47626), (-28.60307, -29.389263, 28.60307), (-30.06084, -29.389263, 27.066902), (-28.8766, -31.466019, 26.000607), (-28.8766, -31.466019, 26.000607), (-30.06084, -29.389263, 27.066902), (-31.436214, -29.389263, 25.456545), (-30.197792, -31.466019, 24.45369), (-30.197792, -31.466019, 24.45369), (-31.436214, -29.389263, 25.456545), (-32.725426, -29.389263, 23.776413), (-31.436214, -31.466019, 22.839746), (-31.436214, -31.466019, 22.839746), (-32.725426, -29.389263, 23.776413), (-33.92494, -29.389263, 22.031113), (-32.58847, -31.466019, 21.1632), (-32.58847, -31.466019, 21.1632), (-33.92494, -29.389263, 22.031113), (-35.031464, -29.389263, 20.225426), (-33.65141, -31.466019, 19.42865), (-33.65141, -31.466019, 19.42865), (-35.031464, -29.389263, 20.225426), (-36.04197, -29.389263, 18.364302), (-34.622105, -31.466019, 17.640844), (-34.622105, -31.466019, 17.640844), (-36.04197, -29.389263, 18.364302), (-36.95369, -29.389263, 16.452843), (-35.49791, -31.466019, 15.804687), (-35.49791, -31.466019, 15.804687), (-36.95369, -29.389263, 16.452843), (-37.764122, -29.389263, 14.496288), (-36.276413, -31.466019, 13.92521), (-36.276413, -31.466019, 13.92521), (-37.764122, -29.389263, 14.496288), (-38.471043, -29.389263, 12.5), (-36.955486, -31.466019, 12.0075655), (-36.955486, -31.466019, 12.0075655), (-38.471043, -29.389263, 12.5), (-39.07252, -29.389263, 10.46945), (-37.533268, -31.466019, 10.057009), (-37.533268, -31.466019, 10.057009), (-39.07252, -29.389263, 10.46945), (-39.566902, -29.389263, 8.410205), (-38.00817, -31.466019, 8.078887), (-38.00817, -31.466019, 8.078887), (-39.566902, -29.389263, 8.410205), (-39.95283, -29.389263, 6.327907), (-38.3789, -31.466019, 6.0786204), (-38.3789, -31.466019, 6.0786204), (-39.95283, -29.389263, 6.327907), (-40.229256, -29.389263, 4.2282653), (-38.644432, -31.466019, 4.0616937), (-38.644432, -31.466019, 4.0616937), (-40.229256, -29.389263, 4.2282653), (-40.395412, -29.389263, 2.117034), (-38.804047, -31.466019, 2.033634), (-38.804047, -31.466019, 2.033634), (-40.395412, -29.389263, 2.117034), (-40.45085, -29.389263, 4.9538e-15), (-38.8573, -31.466019, 4.7586468e-15), (-38.8573, -31.466019, 4.7586468e-15), (-40.45085, -29.389263, 4.9538e-15), (-40.395412, -29.389263, -2.117034), (-38.804047, -31.466019, -2.033634), (-38.804047, -31.466019, -2.033634), (-40.395412, -29.389263, -2.117034), (-40.229256, -29.389263, -4.2282653), (-38.644432, -31.466019, -4.0616937), (-38.644432, -31.466019, -4.0616937), (-40.229256, -29.389263, -4.2282653), (-39.95283, -29.389263, -6.327907), (-38.3789, -31.466019, -6.0786204), (-38.3789, -31.466019, -6.0786204), (-39.95283, -29.389263, -6.327907), (-39.566902, -29.389263, -8.410205), (-38.00817, -31.466019, -8.078887), (-38.00817, -31.466019, -8.078887), (-39.566902, -29.389263, -8.410205), (-39.07252, -29.389263, -10.46945), (-37.533268, -31.466019, -10.057009), (-37.533268, -31.466019, -10.057009), (-39.07252, -29.389263, -10.46945), (-38.471043, -29.389263, -12.5), (-36.955486, -31.466019, -12.0075655), (-36.955486, -31.466019, -12.0075655), (-38.471043, -29.389263, -12.5), (-37.764122, -29.389263, -14.496288), (-36.276413, -31.466019, -13.92521), (-36.276413, -31.466019, -13.92521), (-37.764122, -29.389263, -14.496288), (-36.95369, -29.389263, -16.452843), (-35.49791, -31.466019, -15.804687), (-35.49791, -31.466019, -15.804687), (-36.95369, -29.389263, -16.452843), (-36.04197, -29.389263, -18.364302), (-34.622105, -31.466019, -17.640844), (-34.622105, -31.466019, -17.640844), (-36.04197, -29.389263, -18.364302), (-35.031464, -29.389263, -20.225426), (-33.65141, -31.466019, -19.42865), (-33.65141, -31.466019, -19.42865), (-35.031464, -29.389263, -20.225426), (-33.92494, -29.389263, -22.031113), (-32.58847, -31.466019, -21.1632), (-32.58847, -31.466019, -21.1632), (-33.92494, -29.389263, -22.031113), (-32.725426, -29.389263, -23.776413), (-31.436214, -31.466019, -22.839746), (-31.436214, -31.466019, -22.839746), (-32.725426, -29.389263, -23.776413), (-31.436214, -29.389263, -25.456545), (-30.197792, -31.466019, -24.45369), (-30.197792, -31.466019, -24.45369), (-31.436214, -29.389263, -25.456545), (-30.06084, -29.389263, -27.066902), (-28.8766, -31.466019, -26.000607), (-28.8766, -31.466019, -26.000607), (-30.06084, -29.389263, -27.066902), (-28.60307, -29.389263, -28.60307), (-27.47626, -31.466019, -27.47626), (-27.47626, -31.466019, -27.47626), (-28.60307, -29.389263, -28.60307), (-27.066902, -29.389263, -30.06084), (-26.000607, -31.466019, -28.8766), (-26.000607, -31.466019, -28.8766), (-27.066902, -29.389263, -30.06084), (-25.456545, -29.389263, -31.436214), (-24.45369, -31.466019, -30.197792), (-24.45369, -31.466019, -30.197792), (-25.456545, -29.389263, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.839746, -31.466019, -31.436214), (-22.839746, -31.466019, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.031113, -29.389263, -33.92494), (-21.1632, -31.466019, -32.58847), (-21.1632, -31.466019, -32.58847), (-22.031113, -29.389263, -33.92494), (-20.225426, -29.389263, -35.031464), (-19.42865, -31.466019, -33.65141), (-19.42865, -31.466019, -33.65141), (-20.225426, -29.389263, -35.031464), (-18.364302, -29.389263, -36.04197), (-17.640844, -31.466019, -34.622105), (-17.640844, -31.466019, -34.622105), (-18.364302, -29.389263, -36.04197), (-16.452843, -29.389263, -36.95369), (-15.804687, -31.466019, -35.49791), (-15.804687, -31.466019, -35.49791), (-16.452843, -29.389263, -36.95369), (-14.496288, -29.389263, -37.764122), (-13.92521, -31.466019, -36.276413), (-13.92521, -31.466019, -36.276413), (-14.496288, -29.389263, -37.764122), (-12.5, -29.389263, -38.471043), (-12.0075655, -31.466019, -36.955486), (-12.0075655, -31.466019, -36.955486), (-12.5, -29.389263, -38.471043), (-10.46945, -29.389263, -39.07252), (-10.057009, -31.466019, -37.533268), (-10.057009, -31.466019, -37.533268), (-10.46945, -29.389263, -39.07252), (-8.410205, -29.389263, -39.566902), (-8.078887, -31.466019, -38.00817), (-8.078887, -31.466019, -38.00817), (-8.410205, -29.389263, -39.566902), (-6.327907, -29.389263, -39.95283), (-6.0786204, -31.466019, -38.3789), (-6.0786204, -31.466019, -38.3789), (-6.327907, -29.389263, -39.95283), (-4.2282653, -29.389263, -40.229256), (-4.0616937, -31.466019, -38.644432), (-4.0616937, -31.466019, -38.644432), (-4.2282653, -29.389263, -40.229256), (-2.117034, -29.389263, -40.395412), (-2.033634, -31.466019, -38.804047), (-2.033634, -31.466019, -38.804047), (-2.117034, -29.389263, -40.395412), (-7.430701e-15, -29.389263, -40.45085), (-7.1379695e-15, -31.466019, -38.8573), (-7.1379695e-15, -31.466019, -38.8573), (-7.430701e-15, -29.389263, -40.45085), (2.117034, -29.389263, -40.395412), (2.033634, -31.466019, -38.804047), (2.033634, -31.466019, -38.804047), (2.117034, -29.389263, -40.395412), (4.2282653, -29.389263, -40.229256), (4.0616937, -31.466019, -38.644432), (4.0616937, -31.466019, -38.644432), (4.2282653, -29.389263, -40.229256), (6.327907, -29.389263, -39.95283), (6.0786204, -31.466019, -38.3789), (6.0786204, -31.466019, -38.3789), (6.327907, -29.389263, -39.95283), (8.410205, -29.389263, -39.566902), (8.078887, -31.466019, -38.00817), (8.078887, -31.466019, -38.00817), (8.410205, -29.389263, -39.566902), (10.46945, -29.389263, -39.07252), (10.057009, -31.466019, -37.533268), (10.057009, -31.466019, -37.533268), (10.46945, -29.389263, -39.07252), (12.5, -29.389263, -38.471043), (12.0075655, -31.466019, -36.955486), (12.0075655, -31.466019, -36.955486), (12.5, -29.389263, -38.471043), (14.496288, -29.389263, -37.764122), (13.92521, -31.466019, -36.276413), (13.92521, -31.466019, -36.276413), (14.496288, -29.389263, -37.764122), (16.452843, -29.389263, -36.95369), (15.804687, -31.466019, -35.49791), (15.804687, -31.466019, -35.49791), (16.452843, -29.389263, -36.95369), (18.364302, -29.389263, -36.04197), (17.640844, -31.466019, -34.622105), (17.640844, -31.466019, -34.622105), (18.364302, -29.389263, -36.04197), (20.225426, -29.389263, -35.031464), (19.42865, -31.466019, -33.65141), (19.42865, -31.466019, -33.65141), (20.225426, -29.389263, -35.031464), (22.031113, -29.389263, -33.92494), (21.1632, -31.466019, -32.58847), (21.1632, -31.466019, -32.58847), (22.031113, -29.389263, -33.92494), (23.776413, -29.389263, -32.725426), (22.839746, -31.466019, -31.436214), (22.839746, -31.466019, -31.436214), (23.776413, -29.389263, -32.725426), (25.456545, -29.389263, -31.436214), (24.45369, -31.466019, -30.197792), (24.45369, -31.466019, -30.197792), (25.456545, -29.389263, -31.436214), (27.066902, -29.389263, -30.06084), (26.000607, -31.466019, -28.8766), (26.000607, -31.466019, -28.8766), (27.066902, -29.389263, -30.06084), (28.60307, -29.389263, -28.60307), (27.47626, -31.466019, -27.47626), (27.47626, -31.466019, -27.47626), (28.60307, -29.389263, -28.60307), (30.06084, -29.389263, -27.066902), (28.8766, -31.466019, -26.000607), (28.8766, -31.466019, -26.000607), (30.06084, -29.389263, -27.066902), (31.436214, -29.389263, -25.456545), (30.197792, -31.466019, -24.45369), (30.197792, -31.466019, -24.45369), (31.436214, -29.389263, -25.456545), (32.725426, -29.389263, -23.776413), (31.436214, -31.466019, -22.839746), (31.436214, -31.466019, -22.839746), (32.725426, -29.389263, -23.776413), (33.92494, -29.389263, -22.031113), (32.58847, -31.466019, -21.1632), (32.58847, -31.466019, -21.1632), (33.92494, -29.389263, -22.031113), (35.031464, -29.389263, -20.225426), (33.65141, -31.466019, -19.42865), (33.65141, -31.466019, -19.42865), (35.031464, -29.389263, -20.225426), (36.04197, -29.389263, -18.364302), (34.622105, -31.466019, -17.640844), (34.622105, -31.466019, -17.640844), (36.04197, -29.389263, -18.364302), (36.95369, -29.389263, -16.452843), (35.49791, -31.466019, -15.804687), (35.49791, -31.466019, -15.804687), (36.95369, -29.389263, -16.452843), (37.764122, -29.389263, -14.496288), (36.276413, -31.466019, -13.92521), (36.276413, -31.466019, -13.92521), (37.764122, -29.389263, -14.496288), (38.471043, -29.389263, -12.5), (36.955486, -31.466019, -12.0075655), (36.955486, -31.466019, -12.0075655), (38.471043, -29.389263, -12.5), (39.07252, -29.389263, -10.46945), (37.533268, -31.466019, -10.057009), (37.533268, -31.466019, -10.057009), (39.07252, -29.389263, -10.46945), (39.566902, -29.389263, -8.410205), (38.00817, -31.466019, -8.078887), (38.00817, -31.466019, -8.078887), (39.566902, -29.389263, -8.410205), (39.95283, -29.389263, -6.327907), (38.3789, -31.466019, -6.0786204), (38.3789, -31.466019, -6.0786204), (39.95283, -29.389263, -6.327907), (40.229256, -29.389263, -4.2282653), (38.644432, -31.466019, -4.0616937), (38.644432, -31.466019, -4.0616937), (40.229256, -29.389263, -4.2282653), (40.395412, -29.389263, -2.117034), (38.804047, -31.466019, -2.033634), (38.804047, -31.466019, -2.033634), (40.395412, -29.389263, -2.117034), (40.45085, -29.389263, 0), (38.8573, -31.466019, 0), (40.45085, -29.389263, 0), (41.93353, -27.231953, 0), (41.87606, -27.231953, 2.1946313), (40.395412, -29.389263, 2.117034), (40.395412, -29.389263, 2.117034), (41.87606, -27.231953, 2.1946313), (41.70381, -27.231953, 4.3832474), (40.229256, -29.389263, 4.2282653), (40.229256, -29.389263, 4.2282653), (41.70381, -27.231953, 4.3832474), (41.417255, -27.231953, 6.5598493), (39.95283, -29.389263, 6.327907), (39.95283, -29.389263, 6.327907), (41.417255, -27.231953, 6.5598493), (41.01718, -27.231953, 8.718471), (39.566902, -29.389263, 8.410205), (39.566902, -29.389263, 8.410205), (41.01718, -27.231953, 8.718471), (40.504677, -27.231953, 10.853196), (39.07252, -29.389263, 10.46945), (39.07252, -29.389263, 10.46945), (40.504677, -27.231953, 10.853196), (39.881157, -27.231953, 12.958173), (38.471043, -29.389263, 12.5), (38.471043, -29.389263, 12.5), (39.881157, -27.231953, 12.958173), (39.148323, -27.231953, 15.027633), (37.764122, -29.389263, 14.496288), (37.764122, -29.389263, 14.496288), (39.148323, -27.231953, 15.027633), (38.308186, -27.231953, 17.055902), (36.95369, -29.389263, 16.452843), (36.95369, -29.389263, 16.452843), (38.308186, -27.231953, 17.055902), (37.36305, -27.231953, 19.037424), (36.04197, -29.389263, 18.364302), (36.04197, -29.389263, 18.364302), (37.36305, -27.231953, 19.037424), (36.315502, -27.231953, 20.966764), (35.031464, -29.389263, 20.225426), (35.031464, -29.389263, 20.225426), (36.315502, -27.231953, 20.966764), (35.168415, -27.231953, 22.838636), (33.92494, -29.389263, 22.031113), (33.92494, -29.389263, 22.031113), (35.168415, -27.231953, 22.838636), (33.92494, -27.231953, 24.64791), (32.725426, -29.389263, 23.776413), (32.725426, -29.389263, 23.776413), (33.92494, -27.231953, 24.64791), (32.58847, -27.231953, 26.389624), (31.436214, -29.389263, 25.456545), (31.436214, -29.389263, 25.456545), (32.58847, -27.231953, 26.389624), (31.162685, -27.231953, 28.059008), (30.06084, -29.389263, 27.066902), (30.06084, -29.389263, 27.066902), (31.162685, -27.231953, 28.059008), (29.651482, -27.231953, 29.651482), (28.60307, -29.389263, 28.60307), (28.60307, -29.389263, 28.60307), (29.651482, -27.231953, 29.651482), (28.059008, -27.231953, 31.162685), (27.066902, -29.389263, 30.06084), (27.066902, -29.389263, 30.06084), (28.059008, -27.231953, 31.162685), (26.389624, -27.231953, 32.58847), (25.456545, -29.389263, 31.436214), (25.456545, -29.389263, 31.436214), (26.389624, -27.231953, 32.58847), (24.64791, -27.231953, 33.92494), (23.776413, -29.389263, 32.725426), (23.776413, -29.389263, 32.725426), (24.64791, -27.231953, 33.92494), (22.838636, -27.231953, 35.168415), (22.031113, -29.389263, 33.92494), (22.031113, -29.389263, 33.92494), (22.838636, -27.231953, 35.168415), (20.966764, -27.231953, 36.315502), (20.225426, -29.389263, 35.031464), (20.225426, -29.389263, 35.031464), (20.966764, -27.231953, 36.315502), (19.037424, -27.231953, 37.36305), (18.364302, -29.389263, 36.04197), (18.364302, -29.389263, 36.04197), (19.037424, -27.231953, 37.36305), (17.055902, -27.231953, 38.308186), (16.452843, -29.389263, 36.95369), (16.452843, -29.389263, 36.95369), (17.055902, -27.231953, 38.308186), (15.027633, -27.231953, 39.148323), (14.496288, -29.389263, 37.764122), (14.496288, -29.389263, 37.764122), (15.027633, -27.231953, 39.148323), (12.958173, -27.231953, 39.881157), (12.5, -29.389263, 38.471043), (12.5, -29.389263, 38.471043), (12.958173, -27.231953, 39.881157), (10.853196, -27.231953, 40.504677), (10.46945, -29.389263, 39.07252), (10.46945, -29.389263, 39.07252), (10.853196, -27.231953, 40.504677), (8.718471, -27.231953, 41.01718), (8.410205, -29.389263, 39.566902), (8.410205, -29.389263, 39.566902), (8.718471, -27.231953, 41.01718), (6.5598493, -27.231953, 41.417255), (6.327907, -29.389263, 39.95283), (6.327907, -29.389263, 39.95283), (6.5598493, -27.231953, 41.417255), (4.3832474, -27.231953, 41.70381), (4.2282653, -29.389263, 40.229256), (4.2282653, -29.389263, 40.229256), (4.3832474, -27.231953, 41.70381), (2.1946313, -27.231953, 41.87606), (2.117034, -29.389263, 40.395412), (2.117034, -29.389263, 40.395412), (2.1946313, -27.231953, 41.87606), (2.567688e-15, -27.231953, 41.93353), (2.4769e-15, -29.389263, 40.45085), (2.4769e-15, -29.389263, 40.45085), (2.567688e-15, -27.231953, 41.93353), (-2.1946313, -27.231953, 41.87606), (-2.117034, -29.389263, 40.395412), (-2.117034, -29.389263, 40.395412), (-2.1946313, -27.231953, 41.87606), (-4.3832474, -27.231953, 41.70381), (-4.2282653, -29.389263, 40.229256), (-4.2282653, -29.389263, 40.229256), (-4.3832474, -27.231953, 41.70381), (-6.5598493, -27.231953, 41.417255), (-6.327907, -29.389263, 39.95283), (-6.327907, -29.389263, 39.95283), (-6.5598493, -27.231953, 41.417255), (-8.718471, -27.231953, 41.01718), (-8.410205, -29.389263, 39.566902), (-8.410205, -29.389263, 39.566902), (-8.718471, -27.231953, 41.01718), (-10.853196, -27.231953, 40.504677), (-10.46945, -29.389263, 39.07252), (-10.46945, -29.389263, 39.07252), (-10.853196, -27.231953, 40.504677), (-12.958173, -27.231953, 39.881157), (-12.5, -29.389263, 38.471043), (-12.5, -29.389263, 38.471043), (-12.958173, -27.231953, 39.881157), (-15.027633, -27.231953, 39.148323), (-14.496288, -29.389263, 37.764122), (-14.496288, -29.389263, 37.764122), (-15.027633, -27.231953, 39.148323), (-17.055902, -27.231953, 38.308186), (-16.452843, -29.389263, 36.95369), (-16.452843, -29.389263, 36.95369), (-17.055902, -27.231953, 38.308186), (-19.037424, -27.231953, 37.36305), (-18.364302, -29.389263, 36.04197), (-18.364302, -29.389263, 36.04197), (-19.037424, -27.231953, 37.36305), (-20.966764, -27.231953, 36.315502), (-20.225426, -29.389263, 35.031464), (-20.225426, -29.389263, 35.031464), (-20.966764, -27.231953, 36.315502), (-22.838636, -27.231953, 35.168415), (-22.031113, -29.389263, 33.92494), (-22.031113, -29.389263, 33.92494), (-22.838636, -27.231953, 35.168415), (-24.64791, -27.231953, 33.92494), (-23.776413, -29.389263, 32.725426), (-23.776413, -29.389263, 32.725426), (-24.64791, -27.231953, 33.92494), (-26.389624, -27.231953, 32.58847), (-25.456545, -29.389263, 31.436214), (-25.456545, -29.389263, 31.436214), (-26.389624, -27.231953, 32.58847), (-28.059008, -27.231953, 31.162685), (-27.066902, -29.389263, 30.06084), (-27.066902, -29.389263, 30.06084), (-28.059008, -27.231953, 31.162685), (-29.651482, -27.231953, 29.651482), (-28.60307, -29.389263, 28.60307), (-28.60307, -29.389263, 28.60307), (-29.651482, -27.231953, 29.651482), (-31.162685, -27.231953, 28.059008), (-30.06084, -29.389263, 27.066902), (-30.06084, -29.389263, 27.066902), (-31.162685, -27.231953, 28.059008), (-32.58847, -27.231953, 26.389624), (-31.436214, -29.389263, 25.456545), (-31.436214, -29.389263, 25.456545), (-32.58847, -27.231953, 26.389624), (-33.92494, -27.231953, 24.64791), (-32.725426, -29.389263, 23.776413), (-32.725426, -29.389263, 23.776413), (-33.92494, -27.231953, 24.64791), (-35.168415, -27.231953, 22.838636), (-33.92494, -29.389263, 22.031113), (-33.92494, -29.389263, 22.031113), (-35.168415, -27.231953, 22.838636), (-36.315502, -27.231953, 20.966764), (-35.031464, -29.389263, 20.225426), (-35.031464, -29.389263, 20.225426), (-36.315502, -27.231953, 20.966764), (-37.36305, -27.231953, 19.037424), (-36.04197, -29.389263, 18.364302), (-36.04197, -29.389263, 18.364302), (-37.36305, -27.231953, 19.037424), (-38.308186, -27.231953, 17.055902), (-36.95369, -29.389263, 16.452843), (-36.95369, -29.389263, 16.452843), (-38.308186, -27.231953, 17.055902), (-39.148323, -27.231953, 15.027633), (-37.764122, -29.389263, 14.496288), (-37.764122, -29.389263, 14.496288), (-39.148323, -27.231953, 15.027633), (-39.881157, -27.231953, 12.958173), (-38.471043, -29.389263, 12.5), (-38.471043, -29.389263, 12.5), (-39.881157, -27.231953, 12.958173), (-40.504677, -27.231953, 10.853196), (-39.07252, -29.389263, 10.46945), (-39.07252, -29.389263, 10.46945), (-40.504677, -27.231953, 10.853196), (-41.01718, -27.231953, 8.718471), (-39.566902, -29.389263, 8.410205), (-39.566902, -29.389263, 8.410205), (-41.01718, -27.231953, 8.718471), (-41.417255, -27.231953, 6.5598493), (-39.95283, -29.389263, 6.327907), (-39.95283, -29.389263, 6.327907), (-41.417255, -27.231953, 6.5598493), (-41.70381, -27.231953, 4.3832474), (-40.229256, -29.389263, 4.2282653), (-40.229256, -29.389263, 4.2282653), (-41.70381, -27.231953, 4.3832474), (-41.87606, -27.231953, 2.1946313), (-40.395412, -29.389263, 2.117034), (-40.395412, -29.389263, 2.117034), (-41.87606, -27.231953, 2.1946313), (-41.93353, -27.231953, 5.135376e-15), (-40.45085, -29.389263, 4.9538e-15), (-40.45085, -29.389263, 4.9538e-15), (-41.93353, -27.231953, 5.135376e-15), (-41.87606, -27.231953, -2.1946313), (-40.395412, -29.389263, -2.117034), (-40.395412, -29.389263, -2.117034), (-41.87606, -27.231953, -2.1946313), (-41.70381, -27.231953, -4.3832474), (-40.229256, -29.389263, -4.2282653), (-40.229256, -29.389263, -4.2282653), (-41.70381, -27.231953, -4.3832474), (-41.417255, -27.231953, -6.5598493), (-39.95283, -29.389263, -6.327907), (-39.95283, -29.389263, -6.327907), (-41.417255, -27.231953, -6.5598493), (-41.01718, -27.231953, -8.718471), (-39.566902, -29.389263, -8.410205), (-39.566902, -29.389263, -8.410205), (-41.01718, -27.231953, -8.718471), (-40.504677, -27.231953, -10.853196), (-39.07252, -29.389263, -10.46945), (-39.07252, -29.389263, -10.46945), (-40.504677, -27.231953, -10.853196), (-39.881157, -27.231953, -12.958173), (-38.471043, -29.389263, -12.5), (-38.471043, -29.389263, -12.5), (-39.881157, -27.231953, -12.958173), (-39.148323, -27.231953, -15.027633), (-37.764122, -29.389263, -14.496288), (-37.764122, -29.389263, -14.496288), (-39.148323, -27.231953, -15.027633), (-38.308186, -27.231953, -17.055902), (-36.95369, -29.389263, -16.452843), (-36.95369, -29.389263, -16.452843), (-38.308186, -27.231953, -17.055902), (-37.36305, -27.231953, -19.037424), (-36.04197, -29.389263, -18.364302), (-36.04197, -29.389263, -18.364302), (-37.36305, -27.231953, -19.037424), (-36.315502, -27.231953, -20.966764), (-35.031464, -29.389263, -20.225426), (-35.031464, -29.389263, -20.225426), (-36.315502, -27.231953, -20.966764), (-35.168415, -27.231953, -22.838636), (-33.92494, -29.389263, -22.031113), (-33.92494, -29.389263, -22.031113), (-35.168415, -27.231953, -22.838636), (-33.92494, -27.231953, -24.64791), (-32.725426, -29.389263, -23.776413), (-32.725426, -29.389263, -23.776413), (-33.92494, -27.231953, -24.64791), (-32.58847, -27.231953, -26.389624), (-31.436214, -29.389263, -25.456545), (-31.436214, -29.389263, -25.456545), (-32.58847, -27.231953, -26.389624), (-31.162685, -27.231953, -28.059008), (-30.06084, -29.389263, -27.066902), (-30.06084, -29.389263, -27.066902), (-31.162685, -27.231953, -28.059008), (-29.651482, -27.231953, -29.651482), (-28.60307, -29.389263, -28.60307), (-28.60307, -29.389263, -28.60307), (-29.651482, -27.231953, -29.651482), (-28.059008, -27.231953, -31.162685), (-27.066902, -29.389263, -30.06084), (-27.066902, -29.389263, -30.06084), (-28.059008, -27.231953, -31.162685), (-26.389624, -27.231953, -32.58847), (-25.456545, -29.389263, -31.436214), (-25.456545, -29.389263, -31.436214), (-26.389624, -27.231953, -32.58847), (-24.64791, -27.231953, -33.92494), (-23.776413, -29.389263, -32.725426), (-23.776413, -29.389263, -32.725426), (-24.64791, -27.231953, -33.92494), (-22.838636, -27.231953, -35.168415), (-22.031113, -29.389263, -33.92494), (-22.031113, -29.389263, -33.92494), (-22.838636, -27.231953, -35.168415), (-20.966764, -27.231953, -36.315502), (-20.225426, -29.389263, -35.031464), (-20.225426, -29.389263, -35.031464), (-20.966764, -27.231953, -36.315502), (-19.037424, -27.231953, -37.36305), (-18.364302, -29.389263, -36.04197), (-18.364302, -29.389263, -36.04197), (-19.037424, -27.231953, -37.36305), (-17.055902, -27.231953, -38.308186), (-16.452843, -29.389263, -36.95369), (-16.452843, -29.389263, -36.95369), (-17.055902, -27.231953, -38.308186), (-15.027633, -27.231953, -39.148323), (-14.496288, -29.389263, -37.764122), (-14.496288, -29.389263, -37.764122), (-15.027633, -27.231953, -39.148323), (-12.958173, -27.231953, -39.881157), (-12.5, -29.389263, -38.471043), (-12.5, -29.389263, -38.471043), (-12.958173, -27.231953, -39.881157), (-10.853196, -27.231953, -40.504677), (-10.46945, -29.389263, -39.07252), (-10.46945, -29.389263, -39.07252), (-10.853196, -27.231953, -40.504677), (-8.718471, -27.231953, -41.01718), (-8.410205, -29.389263, -39.566902), (-8.410205, -29.389263, -39.566902), (-8.718471, -27.231953, -41.01718), (-6.5598493, -27.231953, -41.417255), (-6.327907, -29.389263, -39.95283), (-6.327907, -29.389263, -39.95283), (-6.5598493, -27.231953, -41.417255), (-4.3832474, -27.231953, -41.70381), (-4.2282653, -29.389263, -40.229256), (-4.2282653, -29.389263, -40.229256), (-4.3832474, -27.231953, -41.70381), (-2.1946313, -27.231953, -41.87606), (-2.117034, -29.389263, -40.395412), (-2.117034, -29.389263, -40.395412), (-2.1946313, -27.231953, -41.87606), (-7.703064e-15, -27.231953, -41.93353), (-7.430701e-15, -29.389263, -40.45085), (-7.430701e-15, -29.389263, -40.45085), (-7.703064e-15, -27.231953, -41.93353), (2.1946313, -27.231953, -41.87606), (2.117034, -29.389263, -40.395412), (2.117034, -29.389263, -40.395412), (2.1946313, -27.231953, -41.87606), (4.3832474, -27.231953, -41.70381), (4.2282653, -29.389263, -40.229256), (4.2282653, -29.389263, -40.229256), (4.3832474, -27.231953, -41.70381), (6.5598493, -27.231953, -41.417255), (6.327907, -29.389263, -39.95283), (6.327907, -29.389263, -39.95283), (6.5598493, -27.231953, -41.417255), (8.718471, -27.231953, -41.01718), (8.410205, -29.389263, -39.566902), (8.410205, -29.389263, -39.566902), (8.718471, -27.231953, -41.01718), (10.853196, -27.231953, -40.504677), (10.46945, -29.389263, -39.07252), (10.46945, -29.389263, -39.07252), (10.853196, -27.231953, -40.504677), (12.958173, -27.231953, -39.881157), (12.5, -29.389263, -38.471043), (12.5, -29.389263, -38.471043), (12.958173, -27.231953, -39.881157), (15.027633, -27.231953, -39.148323), (14.496288, -29.389263, -37.764122), (14.496288, -29.389263, -37.764122), (15.027633, -27.231953, -39.148323), (17.055902, -27.231953, -38.308186), (16.452843, -29.389263, -36.95369), (16.452843, -29.389263, -36.95369), (17.055902, -27.231953, -38.308186), (19.037424, -27.231953, -37.36305), (18.364302, -29.389263, -36.04197), (18.364302, -29.389263, -36.04197), (19.037424, -27.231953, -37.36305), (20.966764, -27.231953, -36.315502), (20.225426, -29.389263, -35.031464), (20.225426, -29.389263, -35.031464), (20.966764, -27.231953, -36.315502), (22.838636, -27.231953, -35.168415), (22.031113, -29.389263, -33.92494), (22.031113, -29.389263, -33.92494), (22.838636, -27.231953, -35.168415), (24.64791, -27.231953, -33.92494), (23.776413, -29.389263, -32.725426), (23.776413, -29.389263, -32.725426), (24.64791, -27.231953, -33.92494), (26.389624, -27.231953, -32.58847), (25.456545, -29.389263, -31.436214), (25.456545, -29.389263, -31.436214), (26.389624, -27.231953, -32.58847), (28.059008, -27.231953, -31.162685), (27.066902, -29.389263, -30.06084), (27.066902, -29.389263, -30.06084), (28.059008, -27.231953, -31.162685), (29.651482, -27.231953, -29.651482), (28.60307, -29.389263, -28.60307), (28.60307, -29.389263, -28.60307), (29.651482, -27.231953, -29.651482), (31.162685, -27.231953, -28.059008), (30.06084, -29.389263, -27.066902), (30.06084, -29.389263, -27.066902), (31.162685, -27.231953, -28.059008), (32.58847, -27.231953, -26.389624), (31.436214, -29.389263, -25.456545), (31.436214, -29.389263, -25.456545), (32.58847, -27.231953, -26.389624), (33.92494, -27.231953, -24.64791), (32.725426, -29.389263, -23.776413), (32.725426, -29.389263, -23.776413), (33.92494, -27.231953, -24.64791), (35.168415, -27.231953, -22.838636), (33.92494, -29.389263, -22.031113), (33.92494, -29.389263, -22.031113), (35.168415, -27.231953, -22.838636), (36.315502, -27.231953, -20.966764), (35.031464, -29.389263, -20.225426), (35.031464, -29.389263, -20.225426), (36.315502, -27.231953, -20.966764), (37.36305, -27.231953, -19.037424), (36.04197, -29.389263, -18.364302), (36.04197, -29.389263, -18.364302), (37.36305, -27.231953, -19.037424), (38.308186, -27.231953, -17.055902), (36.95369, -29.389263, -16.452843), (36.95369, -29.389263, -16.452843), (38.308186, -27.231953, -17.055902), (39.148323, -27.231953, -15.027633), (37.764122, -29.389263, -14.496288), (37.764122, -29.389263, -14.496288), (39.148323, -27.231953, -15.027633), (39.881157, -27.231953, -12.958173), (38.471043, -29.389263, -12.5), (38.471043, -29.389263, -12.5), (39.881157, -27.231953, -12.958173), (40.504677, -27.231953, -10.853196), (39.07252, -29.389263, -10.46945), (39.07252, -29.389263, -10.46945), (40.504677, -27.231953, -10.853196), (41.01718, -27.231953, -8.718471), (39.566902, -29.389263, -8.410205), (39.566902, -29.389263, -8.410205), (41.01718, -27.231953, -8.718471), (41.417255, -27.231953, -6.5598493), (39.95283, -29.389263, -6.327907), (39.95283, -29.389263, -6.327907), (41.417255, -27.231953, -6.5598493), (41.70381, -27.231953, -4.3832474), (40.229256, -29.389263, -4.2282653), (40.229256, -29.389263, -4.2282653), (41.70381, -27.231953, -4.3832474), (41.87606, -27.231953, -2.1946313), (40.395412, -29.389263, -2.117034), (40.395412, -29.389263, -2.117034), (41.87606, -27.231953, -2.1946313), (41.93353, -27.231953, 0), (40.45085, -29.389263, 0), (41.93353, -27.231953, 0), (43.30127, -25, 0), (43.24193, -25, 2.2662134), (41.87606, -27.231953, 2.1946313), (41.87606, -27.231953, 2.1946313), (43.24193, -25, 2.2662134), (43.06406, -25, 4.526215), (41.70381, -27.231953, 4.3832474), (41.70381, -27.231953, 4.3832474), (43.06406, -25, 4.526215), (42.768158, -25, 6.773811), (41.417255, -27.231953, 6.5598493), (41.417255, -27.231953, 6.5598493), (42.768158, -25, 6.773811), (42.355034, -25, 9.00284), (41.01718, -27.231953, 8.718471), (41.01718, -27.231953, 8.718471), (42.355034, -25, 9.00284), (41.825813, -25, 11.207193), (40.504677, -27.231953, 10.853196), (40.504677, -27.231953, 10.853196), (41.825813, -25, 11.207193), (41.181953, -25, 13.380828), (39.881157, -27.231953, 12.958173), (39.881157, -27.231953, 12.958173), (41.181953, -25, 13.380828), (40.425217, -25, 15.517787), (39.148323, -27.231953, 15.027633), (39.148323, -27.231953, 15.027633), (40.425217, -25, 15.517787), (39.55768, -25, 17.612213), (38.308186, -27.231953, 17.055902), (38.308186, -27.231953, 17.055902), (39.55768, -25, 17.612213), (38.581715, -25, 19.658365), (37.36305, -27.231953, 19.037424), (37.36305, -27.231953, 19.037424), (38.581715, -25, 19.658365), (37.5, -25, 21.650635), (36.315502, -27.231953, 20.966764), (36.315502, -27.231953, 20.966764), (37.5, -25, 21.650635), (36.315502, -25, 23.583563), (35.168415, -27.231953, 22.838636), (35.168415, -27.231953, 22.838636), (36.315502, -25, 23.583563), (35.031464, -25, 25.451847), (33.92494, -27.231953, 24.64791), (33.92494, -27.231953, 24.64791), (35.031464, -25, 25.451847), (33.65141, -25, 27.250372), (32.58847, -27.231953, 26.389624), (32.58847, -27.231953, 26.389624), (33.65141, -25, 27.250372), (32.179115, -25, 28.974205), (31.162685, -27.231953, 28.059008), (31.162685, -27.231953, 28.059008), (32.179115, -25, 28.974205), (30.618622, -25, 30.618622), (29.651482, -27.231953, 29.651482), (29.651482, -27.231953, 29.651482), (30.618622, -25, 30.618622), (28.974205, -25, 32.179115), (28.059008, -27.231953, 31.162685), (28.059008, -27.231953, 31.162685), (28.974205, -25, 32.179115), (27.250372, -25, 33.65141), (26.389624, -27.231953, 32.58847), (26.389624, -27.231953, 32.58847), (27.250372, -25, 33.65141), (25.451847, -25, 35.031464), (24.64791, -27.231953, 33.92494), (24.64791, -27.231953, 33.92494), (25.451847, -25, 35.031464), (23.583563, -25, 36.315502), (22.838636, -27.231953, 35.168415), (22.838636, -27.231953, 35.168415), (23.583563, -25, 36.315502), (21.650635, -25, 37.5), (20.966764, -27.231953, 36.315502), (20.966764, -27.231953, 36.315502), (21.650635, -25, 37.5), (19.658365, -25, 38.581715), (19.037424, -27.231953, 37.36305), (19.037424, -27.231953, 37.36305), (19.658365, -25, 38.581715), (17.612213, -25, 39.55768), (17.055902, -27.231953, 38.308186), (17.055902, -27.231953, 38.308186), (17.612213, -25, 39.55768), (15.517787, -25, 40.425217), (15.027633, -27.231953, 39.148323), (15.027633, -27.231953, 39.148323), (15.517787, -25, 40.425217), (13.380828, -25, 41.181953), (12.958173, -27.231953, 39.881157), (12.958173, -27.231953, 39.881157), (13.380828, -25, 41.181953), (11.207193, -25, 41.825813), (10.853196, -27.231953, 40.504677), (10.853196, -27.231953, 40.504677), (11.207193, -25, 41.825813), (9.00284, -25, 42.355034), (8.718471, -27.231953, 41.01718), (8.718471, -27.231953, 41.01718), (9.00284, -25, 42.355034), (6.773811, -25, 42.768158), (6.5598493, -27.231953, 41.417255), (6.5598493, -27.231953, 41.417255), (6.773811, -25, 42.768158), (4.526215, -25, 43.06406), (4.3832474, -27.231953, 41.70381), (4.3832474, -27.231953, 41.70381), (4.526215, -25, 43.06406), (2.2662134, -25, 43.24193), (2.1946313, -27.231953, 41.87606), (2.1946313, -27.231953, 41.87606), (2.2662134, -25, 43.24193), (2.651438e-15, -25, 43.30127), (2.567688e-15, -27.231953, 41.93353), (2.567688e-15, -27.231953, 41.93353), (2.651438e-15, -25, 43.30127), (-2.2662134, -25, 43.24193), (-2.1946313, -27.231953, 41.87606), (-2.1946313, -27.231953, 41.87606), (-2.2662134, -25, 43.24193), (-4.526215, -25, 43.06406), (-4.3832474, -27.231953, 41.70381), (-4.3832474, -27.231953, 41.70381), (-4.526215, -25, 43.06406), (-6.773811, -25, 42.768158), (-6.5598493, -27.231953, 41.417255), (-6.5598493, -27.231953, 41.417255), (-6.773811, -25, 42.768158), (-9.00284, -25, 42.355034), (-8.718471, -27.231953, 41.01718), (-8.718471, -27.231953, 41.01718), (-9.00284, -25, 42.355034), (-11.207193, -25, 41.825813), (-10.853196, -27.231953, 40.504677), (-10.853196, -27.231953, 40.504677), (-11.207193, -25, 41.825813), (-13.380828, -25, 41.181953), (-12.958173, -27.231953, 39.881157), (-12.958173, -27.231953, 39.881157), (-13.380828, -25, 41.181953), (-15.517787, -25, 40.425217), (-15.027633, -27.231953, 39.148323), (-15.027633, -27.231953, 39.148323), (-15.517787, -25, 40.425217), (-17.612213, -25, 39.55768), (-17.055902, -27.231953, 38.308186), (-17.055902, -27.231953, 38.308186), (-17.612213, -25, 39.55768), (-19.658365, -25, 38.581715), (-19.037424, -27.231953, 37.36305), (-19.037424, -27.231953, 37.36305), (-19.658365, -25, 38.581715), (-21.650635, -25, 37.5), (-20.966764, -27.231953, 36.315502), (-20.966764, -27.231953, 36.315502), (-21.650635, -25, 37.5), (-23.583563, -25, 36.315502), (-22.838636, -27.231953, 35.168415), (-22.838636, -27.231953, 35.168415), (-23.583563, -25, 36.315502), (-25.451847, -25, 35.031464), (-24.64791, -27.231953, 33.92494), (-24.64791, -27.231953, 33.92494), (-25.451847, -25, 35.031464), (-27.250372, -25, 33.65141), (-26.389624, -27.231953, 32.58847), (-26.389624, -27.231953, 32.58847), (-27.250372, -25, 33.65141), (-28.974205, -25, 32.179115), (-28.059008, -27.231953, 31.162685), (-28.059008, -27.231953, 31.162685), (-28.974205, -25, 32.179115), (-30.618622, -25, 30.618622), (-29.651482, -27.231953, 29.651482), (-29.651482, -27.231953, 29.651482), (-30.618622, -25, 30.618622), (-32.179115, -25, 28.974205), (-31.162685, -27.231953, 28.059008), (-31.162685, -27.231953, 28.059008), (-32.179115, -25, 28.974205), (-33.65141, -25, 27.250372), (-32.58847, -27.231953, 26.389624), (-32.58847, -27.231953, 26.389624), (-33.65141, -25, 27.250372), (-35.031464, -25, 25.451847), (-33.92494, -27.231953, 24.64791), (-33.92494, -27.231953, 24.64791), (-35.031464, -25, 25.451847), (-36.315502, -25, 23.583563), (-35.168415, -27.231953, 22.838636), (-35.168415, -27.231953, 22.838636), (-36.315502, -25, 23.583563), (-37.5, -25, 21.650635), (-36.315502, -27.231953, 20.966764), (-36.315502, -27.231953, 20.966764), (-37.5, -25, 21.650635), (-38.581715, -25, 19.658365), (-37.36305, -27.231953, 19.037424), (-37.36305, -27.231953, 19.037424), (-38.581715, -25, 19.658365), (-39.55768, -25, 17.612213), (-38.308186, -27.231953, 17.055902), (-38.308186, -27.231953, 17.055902), (-39.55768, -25, 17.612213), (-40.425217, -25, 15.517787), (-39.148323, -27.231953, 15.027633), (-39.148323, -27.231953, 15.027633), (-40.425217, -25, 15.517787), (-41.181953, -25, 13.380828), (-39.881157, -27.231953, 12.958173), (-39.881157, -27.231953, 12.958173), (-41.181953, -25, 13.380828), (-41.825813, -25, 11.207193), (-40.504677, -27.231953, 10.853196), (-40.504677, -27.231953, 10.853196), (-41.825813, -25, 11.207193), (-42.355034, -25, 9.00284), (-41.01718, -27.231953, 8.718471), (-41.01718, -27.231953, 8.718471), (-42.355034, -25, 9.00284), (-42.768158, -25, 6.773811), (-41.417255, -27.231953, 6.5598493), (-41.417255, -27.231953, 6.5598493), (-42.768158, -25, 6.773811), (-43.06406, -25, 4.526215), (-41.70381, -27.231953, 4.3832474), (-41.70381, -27.231953, 4.3832474), (-43.06406, -25, 4.526215), (-43.24193, -25, 2.2662134), (-41.87606, -27.231953, 2.1946313), (-41.87606, -27.231953, 2.1946313), (-43.24193, -25, 2.2662134), (-43.30127, -25, 5.302876e-15), (-41.93353, -27.231953, 5.135376e-15), (-41.93353, -27.231953, 5.135376e-15), (-43.30127, -25, 5.302876e-15), (-43.24193, -25, -2.2662134), (-41.87606, -27.231953, -2.1946313), (-41.87606, -27.231953, -2.1946313), (-43.24193, -25, -2.2662134), (-43.06406, -25, -4.526215), (-41.70381, -27.231953, -4.3832474), (-41.70381, -27.231953, -4.3832474), (-43.06406, -25, -4.526215), (-42.768158, -25, -6.773811), (-41.417255, -27.231953, -6.5598493), (-41.417255, -27.231953, -6.5598493), (-42.768158, -25, -6.773811), (-42.355034, -25, -9.00284), (-41.01718, -27.231953, -8.718471), (-41.01718, -27.231953, -8.718471), (-42.355034, -25, -9.00284), (-41.825813, -25, -11.207193), (-40.504677, -27.231953, -10.853196), (-40.504677, -27.231953, -10.853196), (-41.825813, -25, -11.207193), (-41.181953, -25, -13.380828), (-39.881157, -27.231953, -12.958173), (-39.881157, -27.231953, -12.958173), (-41.181953, -25, -13.380828), (-40.425217, -25, -15.517787), (-39.148323, -27.231953, -15.027633), (-39.148323, -27.231953, -15.027633), (-40.425217, -25, -15.517787), (-39.55768, -25, -17.612213), (-38.308186, -27.231953, -17.055902), (-38.308186, -27.231953, -17.055902), (-39.55768, -25, -17.612213), (-38.581715, -25, -19.658365), (-37.36305, -27.231953, -19.037424), (-37.36305, -27.231953, -19.037424), (-38.581715, -25, -19.658365), (-37.5, -25, -21.650635), (-36.315502, -27.231953, -20.966764), (-36.315502, -27.231953, -20.966764), (-37.5, -25, -21.650635), (-36.315502, -25, -23.583563), (-35.168415, -27.231953, -22.838636), (-35.168415, -27.231953, -22.838636), (-36.315502, -25, -23.583563), (-35.031464, -25, -25.451847), (-33.92494, -27.231953, -24.64791), (-33.92494, -27.231953, -24.64791), (-35.031464, -25, -25.451847), (-33.65141, -25, -27.250372), (-32.58847, -27.231953, -26.389624), (-32.58847, -27.231953, -26.389624), (-33.65141, -25, -27.250372), (-32.179115, -25, -28.974205), (-31.162685, -27.231953, -28.059008), (-31.162685, -27.231953, -28.059008), (-32.179115, -25, -28.974205), (-30.618622, -25, -30.618622), (-29.651482, -27.231953, -29.651482), (-29.651482, -27.231953, -29.651482), (-30.618622, -25, -30.618622), (-28.974205, -25, -32.179115), (-28.059008, -27.231953, -31.162685), (-28.059008, -27.231953, -31.162685), (-28.974205, -25, -32.179115), (-27.250372, -25, -33.65141), (-26.389624, -27.231953, -32.58847), (-26.389624, -27.231953, -32.58847), (-27.250372, -25, -33.65141), (-25.451847, -25, -35.031464), (-24.64791, -27.231953, -33.92494), (-24.64791, -27.231953, -33.92494), (-25.451847, -25, -35.031464), (-23.583563, -25, -36.315502), (-22.838636, -27.231953, -35.168415), (-22.838636, -27.231953, -35.168415), (-23.583563, -25, -36.315502), (-21.650635, -25, -37.5), (-20.966764, -27.231953, -36.315502), (-20.966764, -27.231953, -36.315502), (-21.650635, -25, -37.5), (-19.658365, -25, -38.581715), (-19.037424, -27.231953, -37.36305), (-19.037424, -27.231953, -37.36305), (-19.658365, -25, -38.581715), (-17.612213, -25, -39.55768), (-17.055902, -27.231953, -38.308186), (-17.055902, -27.231953, -38.308186), (-17.612213, -25, -39.55768), (-15.517787, -25, -40.425217), (-15.027633, -27.231953, -39.148323), (-15.027633, -27.231953, -39.148323), (-15.517787, -25, -40.425217), (-13.380828, -25, -41.181953), (-12.958173, -27.231953, -39.881157), (-12.958173, -27.231953, -39.881157), (-13.380828, -25, -41.181953), (-11.207193, -25, -41.825813), (-10.853196, -27.231953, -40.504677), (-10.853196, -27.231953, -40.504677), (-11.207193, -25, -41.825813), (-9.00284, -25, -42.355034), (-8.718471, -27.231953, -41.01718), (-8.718471, -27.231953, -41.01718), (-9.00284, -25, -42.355034), (-6.773811, -25, -42.768158), (-6.5598493, -27.231953, -41.417255), (-6.5598493, -27.231953, -41.417255), (-6.773811, -25, -42.768158), (-4.526215, -25, -43.06406), (-4.3832474, -27.231953, -41.70381), (-4.3832474, -27.231953, -41.70381), (-4.526215, -25, -43.06406), (-2.2662134, -25, -43.24193), (-2.1946313, -27.231953, -41.87606), (-2.1946313, -27.231953, -41.87606), (-2.2662134, -25, -43.24193), (-7.9543145e-15, -25, -43.30127), (-7.703064e-15, -27.231953, -41.93353), (-7.703064e-15, -27.231953, -41.93353), (-7.9543145e-15, -25, -43.30127), (2.2662134, -25, -43.24193), (2.1946313, -27.231953, -41.87606), (2.1946313, -27.231953, -41.87606), (2.2662134, -25, -43.24193), (4.526215, -25, -43.06406), (4.3832474, -27.231953, -41.70381), (4.3832474, -27.231953, -41.70381), (4.526215, -25, -43.06406), (6.773811, -25, -42.768158), (6.5598493, -27.231953, -41.417255), (6.5598493, -27.231953, -41.417255), (6.773811, -25, -42.768158), (9.00284, -25, -42.355034), (8.718471, -27.231953, -41.01718), (8.718471, -27.231953, -41.01718), (9.00284, -25, -42.355034), (11.207193, -25, -41.825813), (10.853196, -27.231953, -40.504677), (10.853196, -27.231953, -40.504677), (11.207193, -25, -41.825813), (13.380828, -25, -41.181953), (12.958173, -27.231953, -39.881157), (12.958173, -27.231953, -39.881157), (13.380828, -25, -41.181953), (15.517787, -25, -40.425217), (15.027633, -27.231953, -39.148323), (15.027633, -27.231953, -39.148323), (15.517787, -25, -40.425217), (17.612213, -25, -39.55768), (17.055902, -27.231953, -38.308186), (17.055902, -27.231953, -38.308186), (17.612213, -25, -39.55768), (19.658365, -25, -38.581715), (19.037424, -27.231953, -37.36305), (19.037424, -27.231953, -37.36305), (19.658365, -25, -38.581715), (21.650635, -25, -37.5), (20.966764, -27.231953, -36.315502), (20.966764, -27.231953, -36.315502), (21.650635, -25, -37.5), (23.583563, -25, -36.315502), (22.838636, -27.231953, -35.168415), (22.838636, -27.231953, -35.168415), (23.583563, -25, -36.315502), (25.451847, -25, -35.031464), (24.64791, -27.231953, -33.92494), (24.64791, -27.231953, -33.92494), (25.451847, -25, -35.031464), (27.250372, -25, -33.65141), (26.389624, -27.231953, -32.58847), (26.389624, -27.231953, -32.58847), (27.250372, -25, -33.65141), (28.974205, -25, -32.179115), (28.059008, -27.231953, -31.162685), (28.059008, -27.231953, -31.162685), (28.974205, -25, -32.179115), (30.618622, -25, -30.618622), (29.651482, -27.231953, -29.651482), (29.651482, -27.231953, -29.651482), (30.618622, -25, -30.618622), (32.179115, -25, -28.974205), (31.162685, -27.231953, -28.059008), (31.162685, -27.231953, -28.059008), (32.179115, -25, -28.974205), (33.65141, -25, -27.250372), (32.58847, -27.231953, -26.389624), (32.58847, -27.231953, -26.389624), (33.65141, -25, -27.250372), (35.031464, -25, -25.451847), (33.92494, -27.231953, -24.64791), (33.92494, -27.231953, -24.64791), (35.031464, -25, -25.451847), (36.315502, -25, -23.583563), (35.168415, -27.231953, -22.838636), (35.168415, -27.231953, -22.838636), (36.315502, -25, -23.583563), (37.5, -25, -21.650635), (36.315502, -27.231953, -20.966764), (36.315502, -27.231953, -20.966764), (37.5, -25, -21.650635), (38.581715, -25, -19.658365), (37.36305, -27.231953, -19.037424), (37.36305, -27.231953, -19.037424), (38.581715, -25, -19.658365), (39.55768, -25, -17.612213), (38.308186, -27.231953, -17.055902), (38.308186, -27.231953, -17.055902), (39.55768, -25, -17.612213), (40.425217, -25, -15.517787), (39.148323, -27.231953, -15.027633), (39.148323, -27.231953, -15.027633), (40.425217, -25, -15.517787), (41.181953, -25, -13.380828), (39.881157, -27.231953, -12.958173), (39.881157, -27.231953, -12.958173), (41.181953, -25, -13.380828), (41.825813, -25, -11.207193), (40.504677, -27.231953, -10.853196), (40.504677, -27.231953, -10.853196), (41.825813, -25, -11.207193), (42.355034, -25, -9.00284), (41.01718, -27.231953, -8.718471), (41.01718, -27.231953, -8.718471), (42.355034, -25, -9.00284), (42.768158, -25, -6.773811), (41.417255, -27.231953, -6.5598493), (41.417255, -27.231953, -6.5598493), (42.768158, -25, -6.773811), (43.06406, -25, -4.526215), (41.70381, -27.231953, -4.3832474), (41.70381, -27.231953, -4.3832474), (43.06406, -25, -4.526215), (43.24193, -25, -2.2662134), (41.87606, -27.231953, -2.1946313), (41.87606, -27.231953, -2.1946313), (43.24193, -25, -2.2662134), (43.30127, -25, 0), (41.93353, -27.231953, 0), (43.30127, -25, 0), (44.550327, -22.699526, 0), (44.489273, -22.699526, 2.331584), (43.24193, -25, 2.2662134), (43.24193, -25, 2.2662134), (44.489273, -22.699526, 2.331584), (44.306274, -22.699526, 4.656777), (43.06406, -25, 4.526215), (43.06406, -25, 4.526215), (44.306274, -22.699526, 4.656777), (44.00184, -22.699526, 6.9692063), (42.768158, -25, 6.773811), (42.768158, -25, 6.773811), (44.00184, -22.699526, 6.9692063), (43.576794, -22.699526, 9.262533), (42.355034, -25, 9.00284), (42.355034, -25, 9.00284), (43.576794, -22.699526, 9.262533), (43.03231, -22.699526, 11.530473), (41.825813, -25, 11.207193), (41.825813, -25, 11.207193), (43.03231, -22.699526, 11.530473), (42.369877, -22.699526, 13.766808), (41.181953, -25, 13.380828), (41.181953, -25, 13.380828), (42.369877, -22.699526, 13.766808), (41.591312, -22.699526, 15.965409), (40.425217, -25, 15.517787), (40.425217, -25, 15.517787), (41.591312, -22.699526, 15.965409), (40.69875, -22.699526, 18.12025), (39.55768, -25, 17.612213), (39.55768, -25, 17.612213), (40.69875, -22.699526, 18.12025), (39.69463, -22.699526, 20.225426), (38.581715, -25, 19.658365), (38.581715, -25, 19.658365), (39.69463, -22.699526, 20.225426), (38.581715, -22.699526, 22.275164), (37.5, -25, 21.650635), (37.5, -25, 21.650635), (38.581715, -22.699526, 22.275164), (37.36305, -22.699526, 24.263847), (36.315502, -25, 23.583563), (36.315502, -25, 23.583563), (37.36305, -22.699526, 24.263847), (36.04197, -22.699526, 26.186026), (35.031464, -25, 25.451847), (35.031464, -25, 25.451847), (36.04197, -22.699526, 26.186026), (34.622105, -22.699526, 28.036428), (33.65141, -25, 27.250372), (33.65141, -25, 27.250372), (34.622105, -22.699526, 28.036428), (33.107346, -22.699526, 29.809986), (32.179115, -25, 28.974205), (32.179115, -25, 28.974205), (33.107346, -22.699526, 29.809986), (31.501839, -22.699526, 31.501839), (30.618622, -25, 30.618622), (30.618622, -25, 30.618622), (31.501839, -22.699526, 31.501839), (29.809986, -22.699526, 33.107346), (28.974205, -25, 32.179115), (28.974205, -25, 32.179115), (29.809986, -22.699526, 33.107346), (28.036428, -22.699526, 34.622105), (27.250372, -25, 33.65141), (27.250372, -25, 33.65141), (28.036428, -22.699526, 34.622105), (26.186026, -22.699526, 36.04197), (25.451847, -25, 35.031464), (25.451847, -25, 35.031464), (26.186026, -22.699526, 36.04197), (24.263847, -22.699526, 37.36305), (23.583563, -25, 36.315502), (23.583563, -25, 36.315502), (24.263847, -22.699526, 37.36305), (22.275164, -22.699526, 38.581715), (21.650635, -25, 37.5), (21.650635, -25, 37.5), (22.275164, -22.699526, 38.581715), (20.225426, -22.699526, 39.69463), (19.658365, -25, 38.581715), (19.658365, -25, 38.581715), (20.225426, -22.699526, 39.69463), (18.12025, -22.699526, 40.69875), (17.612213, -25, 39.55768), (17.612213, -25, 39.55768), (18.12025, -22.699526, 40.69875), (15.965409, -22.699526, 41.591312), (15.517787, -25, 40.425217), (15.517787, -25, 40.425217), (15.965409, -22.699526, 41.591312), (13.766808, -22.699526, 42.369877), (13.380828, -25, 41.181953), (13.380828, -25, 41.181953), (13.766808, -22.699526, 42.369877), (11.530473, -22.699526, 43.03231), (11.207193, -25, 41.825813), (11.207193, -25, 41.825813), (11.530473, -22.699526, 43.03231), (9.262533, -22.699526, 43.576794), (9.00284, -25, 42.355034), (9.00284, -25, 42.355034), (9.262533, -22.699526, 43.576794), (6.9692063, -22.699526, 44.00184), (6.773811, -25, 42.768158), (6.773811, -25, 42.768158), (6.9692063, -22.699526, 44.00184), (4.656777, -22.699526, 44.306274), (4.526215, -25, 43.06406), (4.526215, -25, 43.06406), (4.656777, -22.699526, 44.306274), (2.331584, -22.699526, 44.489273), (2.2662134, -25, 43.24193), (2.2662134, -25, 43.24193), (2.331584, -22.699526, 44.489273), (2.7279206e-15, -22.699526, 44.550327), (2.651438e-15, -25, 43.30127), (2.651438e-15, -25, 43.30127), (2.7279206e-15, -22.699526, 44.550327), (-2.331584, -22.699526, 44.489273), (-2.2662134, -25, 43.24193), (-2.2662134, -25, 43.24193), (-2.331584, -22.699526, 44.489273), (-4.656777, -22.699526, 44.306274), (-4.526215, -25, 43.06406), (-4.526215, -25, 43.06406), (-4.656777, -22.699526, 44.306274), (-6.9692063, -22.699526, 44.00184), (-6.773811, -25, 42.768158), (-6.773811, -25, 42.768158), (-6.9692063, -22.699526, 44.00184), (-9.262533, -22.699526, 43.576794), (-9.00284, -25, 42.355034), (-9.00284, -25, 42.355034), (-9.262533, -22.699526, 43.576794), (-11.530473, -22.699526, 43.03231), (-11.207193, -25, 41.825813), (-11.207193, -25, 41.825813), (-11.530473, -22.699526, 43.03231), (-13.766808, -22.699526, 42.369877), (-13.380828, -25, 41.181953), (-13.380828, -25, 41.181953), (-13.766808, -22.699526, 42.369877), (-15.965409, -22.699526, 41.591312), (-15.517787, -25, 40.425217), (-15.517787, -25, 40.425217), (-15.965409, -22.699526, 41.591312), (-18.12025, -22.699526, 40.69875), (-17.612213, -25, 39.55768), (-17.612213, -25, 39.55768), (-18.12025, -22.699526, 40.69875), (-20.225426, -22.699526, 39.69463), (-19.658365, -25, 38.581715), (-19.658365, -25, 38.581715), (-20.225426, -22.699526, 39.69463), (-22.275164, -22.699526, 38.581715), (-21.650635, -25, 37.5), (-21.650635, -25, 37.5), (-22.275164, -22.699526, 38.581715), (-24.263847, -22.699526, 37.36305), (-23.583563, -25, 36.315502), (-23.583563, -25, 36.315502), (-24.263847, -22.699526, 37.36305), (-26.186026, -22.699526, 36.04197), (-25.451847, -25, 35.031464), (-25.451847, -25, 35.031464), (-26.186026, -22.699526, 36.04197), (-28.036428, -22.699526, 34.622105), (-27.250372, -25, 33.65141), (-27.250372, -25, 33.65141), (-28.036428, -22.699526, 34.622105), (-29.809986, -22.699526, 33.107346), (-28.974205, -25, 32.179115), (-28.974205, -25, 32.179115), (-29.809986, -22.699526, 33.107346), (-31.501839, -22.699526, 31.501839), (-30.618622, -25, 30.618622), (-30.618622, -25, 30.618622), (-31.501839, -22.699526, 31.501839), (-33.107346, -22.699526, 29.809986), (-32.179115, -25, 28.974205), (-32.179115, -25, 28.974205), (-33.107346, -22.699526, 29.809986), (-34.622105, -22.699526, 28.036428), (-33.65141, -25, 27.250372), (-33.65141, -25, 27.250372), (-34.622105, -22.699526, 28.036428), (-36.04197, -22.699526, 26.186026), (-35.031464, -25, 25.451847), (-35.031464, -25, 25.451847), (-36.04197, -22.699526, 26.186026), (-37.36305, -22.699526, 24.263847), (-36.315502, -25, 23.583563), (-36.315502, -25, 23.583563), (-37.36305, -22.699526, 24.263847), (-38.581715, -22.699526, 22.275164), (-37.5, -25, 21.650635), (-37.5, -25, 21.650635), (-38.581715, -22.699526, 22.275164), (-39.69463, -22.699526, 20.225426), (-38.581715, -25, 19.658365), (-38.581715, -25, 19.658365), (-39.69463, -22.699526, 20.225426), (-40.69875, -22.699526, 18.12025), (-39.55768, -25, 17.612213), (-39.55768, -25, 17.612213), (-40.69875, -22.699526, 18.12025), (-41.591312, -22.699526, 15.965409), (-40.425217, -25, 15.517787), (-40.425217, -25, 15.517787), (-41.591312, -22.699526, 15.965409), (-42.369877, -22.699526, 13.766808), (-41.181953, -25, 13.380828), (-41.181953, -25, 13.380828), (-42.369877, -22.699526, 13.766808), (-43.03231, -22.699526, 11.530473), (-41.825813, -25, 11.207193), (-41.825813, -25, 11.207193), (-43.03231, -22.699526, 11.530473), (-43.576794, -22.699526, 9.262533), (-42.355034, -25, 9.00284), (-42.355034, -25, 9.00284), (-43.576794, -22.699526, 9.262533), (-44.00184, -22.699526, 6.9692063), (-42.768158, -25, 6.773811), (-42.768158, -25, 6.773811), (-44.00184, -22.699526, 6.9692063), (-44.306274, -22.699526, 4.656777), (-43.06406, -25, 4.526215), (-43.06406, -25, 4.526215), (-44.306274, -22.699526, 4.656777), (-44.489273, -22.699526, 2.331584), (-43.24193, -25, 2.2662134), (-43.24193, -25, 2.2662134), (-44.489273, -22.699526, 2.331584), (-44.550327, -22.699526, 5.4558413e-15), (-43.30127, -25, 5.302876e-15), (-43.30127, -25, 5.302876e-15), (-44.550327, -22.699526, 5.4558413e-15), (-44.489273, -22.699526, -2.331584), (-43.24193, -25, -2.2662134), (-43.24193, -25, -2.2662134), (-44.489273, -22.699526, -2.331584), (-44.306274, -22.699526, -4.656777), (-43.06406, -25, -4.526215), (-43.06406, -25, -4.526215), (-44.306274, -22.699526, -4.656777), (-44.00184, -22.699526, -6.9692063), (-42.768158, -25, -6.773811), (-42.768158, -25, -6.773811), (-44.00184, -22.699526, -6.9692063), (-43.576794, -22.699526, -9.262533), (-42.355034, -25, -9.00284), (-42.355034, -25, -9.00284), (-43.576794, -22.699526, -9.262533), (-43.03231, -22.699526, -11.530473), (-41.825813, -25, -11.207193), (-41.825813, -25, -11.207193), (-43.03231, -22.699526, -11.530473), (-42.369877, -22.699526, -13.766808), (-41.181953, -25, -13.380828), (-41.181953, -25, -13.380828), (-42.369877, -22.699526, -13.766808), (-41.591312, -22.699526, -15.965409), (-40.425217, -25, -15.517787), (-40.425217, -25, -15.517787), (-41.591312, -22.699526, -15.965409), (-40.69875, -22.699526, -18.12025), (-39.55768, -25, -17.612213), (-39.55768, -25, -17.612213), (-40.69875, -22.699526, -18.12025), (-39.69463, -22.699526, -20.225426), (-38.581715, -25, -19.658365), (-38.581715, -25, -19.658365), (-39.69463, -22.699526, -20.225426), (-38.581715, -22.699526, -22.275164), (-37.5, -25, -21.650635), (-37.5, -25, -21.650635), (-38.581715, -22.699526, -22.275164), (-37.36305, -22.699526, -24.263847), (-36.315502, -25, -23.583563), (-36.315502, -25, -23.583563), (-37.36305, -22.699526, -24.263847), (-36.04197, -22.699526, -26.186026), (-35.031464, -25, -25.451847), (-35.031464, -25, -25.451847), (-36.04197, -22.699526, -26.186026), (-34.622105, -22.699526, -28.036428), (-33.65141, -25, -27.250372), (-33.65141, -25, -27.250372), (-34.622105, -22.699526, -28.036428), (-33.107346, -22.699526, -29.809986), (-32.179115, -25, -28.974205), (-32.179115, -25, -28.974205), (-33.107346, -22.699526, -29.809986), (-31.501839, -22.699526, -31.501839), (-30.618622, -25, -30.618622), (-30.618622, -25, -30.618622), (-31.501839, -22.699526, -31.501839), (-29.809986, -22.699526, -33.107346), (-28.974205, -25, -32.179115), (-28.974205, -25, -32.179115), (-29.809986, -22.699526, -33.107346), (-28.036428, -22.699526, -34.622105), (-27.250372, -25, -33.65141), (-27.250372, -25, -33.65141), (-28.036428, -22.699526, -34.622105), (-26.186026, -22.699526, -36.04197), (-25.451847, -25, -35.031464), (-25.451847, -25, -35.031464), (-26.186026, -22.699526, -36.04197), (-24.263847, -22.699526, -37.36305), (-23.583563, -25, -36.315502), (-23.583563, -25, -36.315502), (-24.263847, -22.699526, -37.36305), (-22.275164, -22.699526, -38.581715), (-21.650635, -25, -37.5), (-21.650635, -25, -37.5), (-22.275164, -22.699526, -38.581715), (-20.225426, -22.699526, -39.69463), (-19.658365, -25, -38.581715), (-19.658365, -25, -38.581715), (-20.225426, -22.699526, -39.69463), (-18.12025, -22.699526, -40.69875), (-17.612213, -25, -39.55768), (-17.612213, -25, -39.55768), (-18.12025, -22.699526, -40.69875), (-15.965409, -22.699526, -41.591312), (-15.517787, -25, -40.425217), (-15.517787, -25, -40.425217), (-15.965409, -22.699526, -41.591312), (-13.766808, -22.699526, -42.369877), (-13.380828, -25, -41.181953), (-13.380828, -25, -41.181953), (-13.766808, -22.699526, -42.369877), (-11.530473, -22.699526, -43.03231), (-11.207193, -25, -41.825813), (-11.207193, -25, -41.825813), (-11.530473, -22.699526, -43.03231), (-9.262533, -22.699526, -43.576794), (-9.00284, -25, -42.355034), (-9.00284, -25, -42.355034), (-9.262533, -22.699526, -43.576794), (-6.9692063, -22.699526, -44.00184), (-6.773811, -25, -42.768158), (-6.773811, -25, -42.768158), (-6.9692063, -22.699526, -44.00184), (-4.656777, -22.699526, -44.306274), (-4.526215, -25, -43.06406), (-4.526215, -25, -43.06406), (-4.656777, -22.699526, -44.306274), (-2.331584, -22.699526, -44.489273), (-2.2662134, -25, -43.24193), (-2.2662134, -25, -43.24193), (-2.331584, -22.699526, -44.489273), (-8.183762e-15, -22.699526, -44.550327), (-7.9543145e-15, -25, -43.30127), (-7.9543145e-15, -25, -43.30127), (-8.183762e-15, -22.699526, -44.550327), (2.331584, -22.699526, -44.489273), (2.2662134, -25, -43.24193), (2.2662134, -25, -43.24193), (2.331584, -22.699526, -44.489273), (4.656777, -22.699526, -44.306274), (4.526215, -25, -43.06406), (4.526215, -25, -43.06406), (4.656777, -22.699526, -44.306274), (6.9692063, -22.699526, -44.00184), (6.773811, -25, -42.768158), (6.773811, -25, -42.768158), (6.9692063, -22.699526, -44.00184), (9.262533, -22.699526, -43.576794), (9.00284, -25, -42.355034), (9.00284, -25, -42.355034), (9.262533, -22.699526, -43.576794), (11.530473, -22.699526, -43.03231), (11.207193, -25, -41.825813), (11.207193, -25, -41.825813), (11.530473, -22.699526, -43.03231), (13.766808, -22.699526, -42.369877), (13.380828, -25, -41.181953), (13.380828, -25, -41.181953), (13.766808, -22.699526, -42.369877), (15.965409, -22.699526, -41.591312), (15.517787, -25, -40.425217), (15.517787, -25, -40.425217), (15.965409, -22.699526, -41.591312), (18.12025, -22.699526, -40.69875), (17.612213, -25, -39.55768), (17.612213, -25, -39.55768), (18.12025, -22.699526, -40.69875), (20.225426, -22.699526, -39.69463), (19.658365, -25, -38.581715), (19.658365, -25, -38.581715), (20.225426, -22.699526, -39.69463), (22.275164, -22.699526, -38.581715), (21.650635, -25, -37.5), (21.650635, -25, -37.5), (22.275164, -22.699526, -38.581715), (24.263847, -22.699526, -37.36305), (23.583563, -25, -36.315502), (23.583563, -25, -36.315502), (24.263847, -22.699526, -37.36305), (26.186026, -22.699526, -36.04197), (25.451847, -25, -35.031464), (25.451847, -25, -35.031464), (26.186026, -22.699526, -36.04197), (28.036428, -22.699526, -34.622105), (27.250372, -25, -33.65141), (27.250372, -25, -33.65141), (28.036428, -22.699526, -34.622105), (29.809986, -22.699526, -33.107346), (28.974205, -25, -32.179115), (28.974205, -25, -32.179115), (29.809986, -22.699526, -33.107346), (31.501839, -22.699526, -31.501839), (30.618622, -25, -30.618622), (30.618622, -25, -30.618622), (31.501839, -22.699526, -31.501839), (33.107346, -22.699526, -29.809986), (32.179115, -25, -28.974205), (32.179115, -25, -28.974205), (33.107346, -22.699526, -29.809986), (34.622105, -22.699526, -28.036428), (33.65141, -25, -27.250372), (33.65141, -25, -27.250372), (34.622105, -22.699526, -28.036428), (36.04197, -22.699526, -26.186026), (35.031464, -25, -25.451847), (35.031464, -25, -25.451847), (36.04197, -22.699526, -26.186026), (37.36305, -22.699526, -24.263847), (36.315502, -25, -23.583563), (36.315502, -25, -23.583563), (37.36305, -22.699526, -24.263847), (38.581715, -22.699526, -22.275164), (37.5, -25, -21.650635), (37.5, -25, -21.650635), (38.581715, -22.699526, -22.275164), (39.69463, -22.699526, -20.225426), (38.581715, -25, -19.658365), (38.581715, -25, -19.658365), (39.69463, -22.699526, -20.225426), (40.69875, -22.699526, -18.12025), (39.55768, -25, -17.612213), (39.55768, -25, -17.612213), (40.69875, -22.699526, -18.12025), (41.591312, -22.699526, -15.965409), (40.425217, -25, -15.517787), (40.425217, -25, -15.517787), (41.591312, -22.699526, -15.965409), (42.369877, -22.699526, -13.766808), (41.181953, -25, -13.380828), (41.181953, -25, -13.380828), (42.369877, -22.699526, -13.766808), (43.03231, -22.699526, -11.530473), (41.825813, -25, -11.207193), (41.825813, -25, -11.207193), (43.03231, -22.699526, -11.530473), (43.576794, -22.699526, -9.262533), (42.355034, -25, -9.00284), (42.355034, -25, -9.00284), (43.576794, -22.699526, -9.262533), (44.00184, -22.699526, -6.9692063), (42.768158, -25, -6.773811), (42.768158, -25, -6.773811), (44.00184, -22.699526, -6.9692063), (44.306274, -22.699526, -4.656777), (43.06406, -25, -4.526215), (43.06406, -25, -4.526215), (44.306274, -22.699526, -4.656777), (44.489273, -22.699526, -2.331584), (43.24193, -25, -2.2662134), (43.24193, -25, -2.2662134), (44.489273, -22.699526, -2.331584), (44.550327, -22.699526, 0), (43.30127, -25, 0), (44.550327, -22.699526, 0), (45.677273, -20.336832, 0), (45.614674, -20.336832, 2.3905637), (44.489273, -22.699526, 2.331584), (44.489273, -22.699526, 2.331584), (45.614674, -20.336832, 2.3905637), (45.427048, -20.336832, 4.774575), (44.306274, -22.699526, 4.656777), (44.306274, -22.699526, 4.656777), (45.427048, -20.336832, 4.774575), (45.11491, -20.336832, 7.1454997), (44.00184, -22.699526, 6.9692063), (44.00184, -22.699526, 6.9692063), (45.11491, -20.336832, 7.1454997), (44.679115, -20.336832, 9.496839), (43.576794, -22.699526, 9.262533), (43.576794, -22.699526, 9.262533), (44.679115, -20.336832, 9.496839), (44.120857, -20.336832, 11.822148), (43.03231, -22.699526, 11.530473), (43.03231, -22.699526, 11.530473), (44.120857, -20.336832, 11.822148), (43.44167, -20.336832, 14.115053), (42.369877, -22.699526, 13.766808), (42.369877, -22.699526, 13.766808), (43.44167, -20.336832, 14.115053), (42.64341, -20.336832, 16.36927), (41.591312, -22.699526, 15.965409), (41.591312, -22.699526, 15.965409), (42.64341, -20.336832, 16.36927), (41.728264, -20.336832, 18.57862), (40.69875, -22.699526, 18.12025), (40.69875, -22.699526, 18.12025), (41.728264, -20.336832, 18.57862), (40.69875, -20.336832, 20.737047), (39.69463, -22.699526, 20.225426), (39.69463, -22.699526, 20.225426), (40.69875, -20.336832, 20.737047), (39.55768, -20.336832, 22.838636), (38.581715, -22.699526, 22.275164), (38.581715, -22.699526, 22.275164), (39.55768, -20.336832, 22.838636), (38.308186, -20.336832, 24.877626), (37.36305, -22.699526, 24.263847), (37.36305, -22.699526, 24.263847), (38.308186, -20.336832, 24.877626), (36.95369, -20.336832, 26.848427), (36.04197, -22.699526, 26.186026), (36.04197, -22.699526, 26.186026), (36.95369, -20.336832, 26.848427), (35.49791, -20.336832, 28.74564), (34.622105, -22.699526, 28.036428), (34.622105, -22.699526, 28.036428), (35.49791, -20.336832, 28.74564), (33.944828, -20.336832, 30.564062), (33.107346, -22.699526, 29.809986), (33.107346, -22.699526, 29.809986), (33.944828, -20.336832, 30.564062), (32.29871, -20.336832, 32.29871), (31.501839, -22.699526, 31.501839), (31.501839, -22.699526, 31.501839), (32.29871, -20.336832, 32.29871), (30.564062, -20.336832, 33.944828), (29.809986, -22.699526, 33.107346), (29.809986, -22.699526, 33.107346), (30.564062, -20.336832, 33.944828), (28.74564, -20.336832, 35.49791), (28.036428, -22.699526, 34.622105), (28.036428, -22.699526, 34.622105), (28.74564, -20.336832, 35.49791), (26.848427, -20.336832, 36.95369), (26.186026, -22.699526, 36.04197), (26.186026, -22.699526, 36.04197), (26.848427, -20.336832, 36.95369), (24.877626, -20.336832, 38.308186), (24.263847, -22.699526, 37.36305), (24.263847, -22.699526, 37.36305), (24.877626, -20.336832, 38.308186), (22.838636, -20.336832, 39.55768), (22.275164, -22.699526, 38.581715), (22.275164, -22.699526, 38.581715), (22.838636, -20.336832, 39.55768), (20.737047, -20.336832, 40.69875), (20.225426, -22.699526, 39.69463), (20.225426, -22.699526, 39.69463), (20.737047, -20.336832, 40.69875), (18.57862, -20.336832, 41.728264), (18.12025, -22.699526, 40.69875), (18.12025, -22.699526, 40.69875), (18.57862, -20.336832, 41.728264), (16.36927, -20.336832, 42.64341), (15.965409, -22.699526, 41.591312), (15.965409, -22.699526, 41.591312), (16.36927, -20.336832, 42.64341), (14.115053, -20.336832, 43.44167), (13.766808, -22.699526, 42.369877), (13.766808, -22.699526, 42.369877), (14.115053, -20.336832, 43.44167), (11.822148, -20.336832, 44.120857), (11.530473, -22.699526, 43.03231), (11.530473, -22.699526, 43.03231), (11.822148, -20.336832, 44.120857), (9.496839, -20.336832, 44.679115), (9.262533, -22.699526, 43.576794), (9.262533, -22.699526, 43.576794), (9.496839, -20.336832, 44.679115), (7.1454997, -20.336832, 45.11491), (6.9692063, -22.699526, 44.00184), (6.9692063, -22.699526, 44.00184), (7.1454997, -20.336832, 45.11491), (4.774575, -20.336832, 45.427048), (4.656777, -22.699526, 44.306274), (4.656777, -22.699526, 44.306274), (4.774575, -20.336832, 45.427048), (2.3905637, -20.336832, 45.614674), (2.331584, -22.699526, 44.489273), (2.331584, -22.699526, 44.489273), (2.3905637, -20.336832, 45.614674), (2.7969263e-15, -20.336832, 45.677273), (2.7279206e-15, -22.699526, 44.550327), (2.7279206e-15, -22.699526, 44.550327), (2.7969263e-15, -20.336832, 45.677273), (-2.3905637, -20.336832, 45.614674), (-2.331584, -22.699526, 44.489273), (-2.331584, -22.699526, 44.489273), (-2.3905637, -20.336832, 45.614674), (-4.774575, -20.336832, 45.427048), (-4.656777, -22.699526, 44.306274), (-4.656777, -22.699526, 44.306274), (-4.774575, -20.336832, 45.427048), (-7.1454997, -20.336832, 45.11491), (-6.9692063, -22.699526, 44.00184), (-6.9692063, -22.699526, 44.00184), (-7.1454997, -20.336832, 45.11491), (-9.496839, -20.336832, 44.679115), (-9.262533, -22.699526, 43.576794), (-9.262533, -22.699526, 43.576794), (-9.496839, -20.336832, 44.679115), (-11.822148, -20.336832, 44.120857), (-11.530473, -22.699526, 43.03231), (-11.530473, -22.699526, 43.03231), (-11.822148, -20.336832, 44.120857), (-14.115053, -20.336832, 43.44167), (-13.766808, -22.699526, 42.369877), (-13.766808, -22.699526, 42.369877), (-14.115053, -20.336832, 43.44167), (-16.36927, -20.336832, 42.64341), (-15.965409, -22.699526, 41.591312), (-15.965409, -22.699526, 41.591312), (-16.36927, -20.336832, 42.64341), (-18.57862, -20.336832, 41.728264), (-18.12025, -22.699526, 40.69875), (-18.12025, -22.699526, 40.69875), (-18.57862, -20.336832, 41.728264), (-20.737047, -20.336832, 40.69875), (-20.225426, -22.699526, 39.69463), (-20.225426, -22.699526, 39.69463), (-20.737047, -20.336832, 40.69875), (-22.838636, -20.336832, 39.55768), (-22.275164, -22.699526, 38.581715), (-22.275164, -22.699526, 38.581715), (-22.838636, -20.336832, 39.55768), (-24.877626, -20.336832, 38.308186), (-24.263847, -22.699526, 37.36305), (-24.263847, -22.699526, 37.36305), (-24.877626, -20.336832, 38.308186), (-26.848427, -20.336832, 36.95369), (-26.186026, -22.699526, 36.04197), (-26.186026, -22.699526, 36.04197), (-26.848427, -20.336832, 36.95369), (-28.74564, -20.336832, 35.49791), (-28.036428, -22.699526, 34.622105), (-28.036428, -22.699526, 34.622105), (-28.74564, -20.336832, 35.49791), (-30.564062, -20.336832, 33.944828), (-29.809986, -22.699526, 33.107346), (-29.809986, -22.699526, 33.107346), (-30.564062, -20.336832, 33.944828), (-32.29871, -20.336832, 32.29871), (-31.501839, -22.699526, 31.501839), (-31.501839, -22.699526, 31.501839), (-32.29871, -20.336832, 32.29871), (-33.944828, -20.336832, 30.564062), (-33.107346, -22.699526, 29.809986), (-33.107346, -22.699526, 29.809986), (-33.944828, -20.336832, 30.564062), (-35.49791, -20.336832, 28.74564), (-34.622105, -22.699526, 28.036428), (-34.622105, -22.699526, 28.036428), (-35.49791, -20.336832, 28.74564), (-36.95369, -20.336832, 26.848427), (-36.04197, -22.699526, 26.186026), (-36.04197, -22.699526, 26.186026), (-36.95369, -20.336832, 26.848427), (-38.308186, -20.336832, 24.877626), (-37.36305, -22.699526, 24.263847), (-37.36305, -22.699526, 24.263847), (-38.308186, -20.336832, 24.877626), (-39.55768, -20.336832, 22.838636), (-38.581715, -22.699526, 22.275164), (-38.581715, -22.699526, 22.275164), (-39.55768, -20.336832, 22.838636), (-40.69875, -20.336832, 20.737047), (-39.69463, -22.699526, 20.225426), (-39.69463, -22.699526, 20.225426), (-40.69875, -20.336832, 20.737047), (-41.728264, -20.336832, 18.57862), (-40.69875, -22.699526, 18.12025), (-40.69875, -22.699526, 18.12025), (-41.728264, -20.336832, 18.57862), (-42.64341, -20.336832, 16.36927), (-41.591312, -22.699526, 15.965409), (-41.591312, -22.699526, 15.965409), (-42.64341, -20.336832, 16.36927), (-43.44167, -20.336832, 14.115053), (-42.369877, -22.699526, 13.766808), (-42.369877, -22.699526, 13.766808), (-43.44167, -20.336832, 14.115053), (-44.120857, -20.336832, 11.822148), (-43.03231, -22.699526, 11.530473), (-43.03231, -22.699526, 11.530473), (-44.120857, -20.336832, 11.822148), (-44.679115, -20.336832, 9.496839), (-43.576794, -22.699526, 9.262533), (-43.576794, -22.699526, 9.262533), (-44.679115, -20.336832, 9.496839), (-45.11491, -20.336832, 7.1454997), (-44.00184, -22.699526, 6.9692063), (-44.00184, -22.699526, 6.9692063), (-45.11491, -20.336832, 7.1454997), (-45.427048, -20.336832, 4.774575), (-44.306274, -22.699526, 4.656777), (-44.306274, -22.699526, 4.656777), (-45.427048, -20.336832, 4.774575), (-45.614674, -20.336832, 2.3905637), (-44.489273, -22.699526, 2.331584), (-44.489273, -22.699526, 2.331584), (-45.614674, -20.336832, 2.3905637), (-45.677273, -20.336832, 5.5938526e-15), (-44.550327, -22.699526, 5.4558413e-15), (-44.550327, -22.699526, 5.4558413e-15), (-45.677273, -20.336832, 5.5938526e-15), (-45.614674, -20.336832, -2.3905637), (-44.489273, -22.699526, -2.331584), (-44.489273, -22.699526, -2.331584), (-45.614674, -20.336832, -2.3905637), (-45.427048, -20.336832, -4.774575), (-44.306274, -22.699526, -4.656777), (-44.306274, -22.699526, -4.656777), (-45.427048, -20.336832, -4.774575), (-45.11491, -20.336832, -7.1454997), (-44.00184, -22.699526, -6.9692063), (-44.00184, -22.699526, -6.9692063), (-45.11491, -20.336832, -7.1454997), (-44.679115, -20.336832, -9.496839), (-43.576794, -22.699526, -9.262533), (-43.576794, -22.699526, -9.262533), (-44.679115, -20.336832, -9.496839), (-44.120857, -20.336832, -11.822148), (-43.03231, -22.699526, -11.530473), (-43.03231, -22.699526, -11.530473), (-44.120857, -20.336832, -11.822148), (-43.44167, -20.336832, -14.115053), (-42.369877, -22.699526, -13.766808), (-42.369877, -22.699526, -13.766808), (-43.44167, -20.336832, -14.115053), (-42.64341, -20.336832, -16.36927), (-41.591312, -22.699526, -15.965409), (-41.591312, -22.699526, -15.965409), (-42.64341, -20.336832, -16.36927), (-41.728264, -20.336832, -18.57862), (-40.69875, -22.699526, -18.12025), (-40.69875, -22.699526, -18.12025), (-41.728264, -20.336832, -18.57862), (-40.69875, -20.336832, -20.737047), (-39.69463, -22.699526, -20.225426), (-39.69463, -22.699526, -20.225426), (-40.69875, -20.336832, -20.737047), (-39.55768, -20.336832, -22.838636), (-38.581715, -22.699526, -22.275164), (-38.581715, -22.699526, -22.275164), (-39.55768, -20.336832, -22.838636), (-38.308186, -20.336832, -24.877626), (-37.36305, -22.699526, -24.263847), (-37.36305, -22.699526, -24.263847), (-38.308186, -20.336832, -24.877626), (-36.95369, -20.336832, -26.848427), (-36.04197, -22.699526, -26.186026), (-36.04197, -22.699526, -26.186026), (-36.95369, -20.336832, -26.848427), (-35.49791, -20.336832, -28.74564), (-34.622105, -22.699526, -28.036428), (-34.622105, -22.699526, -28.036428), (-35.49791, -20.336832, -28.74564), (-33.944828, -20.336832, -30.564062), (-33.107346, -22.699526, -29.809986), (-33.107346, -22.699526, -29.809986), (-33.944828, -20.336832, -30.564062), (-32.29871, -20.336832, -32.29871), (-31.501839, -22.699526, -31.501839), (-31.501839, -22.699526, -31.501839), (-32.29871, -20.336832, -32.29871), (-30.564062, -20.336832, -33.944828), (-29.809986, -22.699526, -33.107346), (-29.809986, -22.699526, -33.107346), (-30.564062, -20.336832, -33.944828), (-28.74564, -20.336832, -35.49791), (-28.036428, -22.699526, -34.622105), (-28.036428, -22.699526, -34.622105), (-28.74564, -20.336832, -35.49791), (-26.848427, -20.336832, -36.95369), (-26.186026, -22.699526, -36.04197), (-26.186026, -22.699526, -36.04197), (-26.848427, -20.336832, -36.95369), (-24.877626, -20.336832, -38.308186), (-24.263847, -22.699526, -37.36305), (-24.263847, -22.699526, -37.36305), (-24.877626, -20.336832, -38.308186), (-22.838636, -20.336832, -39.55768), (-22.275164, -22.699526, -38.581715), (-22.275164, -22.699526, -38.581715), (-22.838636, -20.336832, -39.55768), (-20.737047, -20.336832, -40.69875), (-20.225426, -22.699526, -39.69463), (-20.225426, -22.699526, -39.69463), (-20.737047, -20.336832, -40.69875), (-18.57862, -20.336832, -41.728264), (-18.12025, -22.699526, -40.69875), (-18.12025, -22.699526, -40.69875), (-18.57862, -20.336832, -41.728264), (-16.36927, -20.336832, -42.64341), (-15.965409, -22.699526, -41.591312), (-15.965409, -22.699526, -41.591312), (-16.36927, -20.336832, -42.64341), (-14.115053, -20.336832, -43.44167), (-13.766808, -22.699526, -42.369877), (-13.766808, -22.699526, -42.369877), (-14.115053, -20.336832, -43.44167), (-11.822148, -20.336832, -44.120857), (-11.530473, -22.699526, -43.03231), (-11.530473, -22.699526, -43.03231), (-11.822148, -20.336832, -44.120857), (-9.496839, -20.336832, -44.679115), (-9.262533, -22.699526, -43.576794), (-9.262533, -22.699526, -43.576794), (-9.496839, -20.336832, -44.679115), (-7.1454997, -20.336832, -45.11491), (-6.9692063, -22.699526, -44.00184), (-6.9692063, -22.699526, -44.00184), (-7.1454997, -20.336832, -45.11491), (-4.774575, -20.336832, -45.427048), (-4.656777, -22.699526, -44.306274), (-4.656777, -22.699526, -44.306274), (-4.774575, -20.336832, -45.427048), (-2.3905637, -20.336832, -45.614674), (-2.331584, -22.699526, -44.489273), (-2.331584, -22.699526, -44.489273), (-2.3905637, -20.336832, -45.614674), (-8.390779e-15, -20.336832, -45.677273), (-8.183762e-15, -22.699526, -44.550327), (-8.183762e-15, -22.699526, -44.550327), (-8.390779e-15, -20.336832, -45.677273), (2.3905637, -20.336832, -45.614674), (2.331584, -22.699526, -44.489273), (2.331584, -22.699526, -44.489273), (2.3905637, -20.336832, -45.614674), (4.774575, -20.336832, -45.427048), (4.656777, -22.699526, -44.306274), (4.656777, -22.699526, -44.306274), (4.774575, -20.336832, -45.427048), (7.1454997, -20.336832, -45.11491), (6.9692063, -22.699526, -44.00184), (6.9692063, -22.699526, -44.00184), (7.1454997, -20.336832, -45.11491), (9.496839, -20.336832, -44.679115), (9.262533, -22.699526, -43.576794), (9.262533, -22.699526, -43.576794), (9.496839, -20.336832, -44.679115), (11.822148, -20.336832, -44.120857), (11.530473, -22.699526, -43.03231), (11.530473, -22.699526, -43.03231), (11.822148, -20.336832, -44.120857), (14.115053, -20.336832, -43.44167), (13.766808, -22.699526, -42.369877), (13.766808, -22.699526, -42.369877), (14.115053, -20.336832, -43.44167), (16.36927, -20.336832, -42.64341), (15.965409, -22.699526, -41.591312), (15.965409, -22.699526, -41.591312), (16.36927, -20.336832, -42.64341), (18.57862, -20.336832, -41.728264), (18.12025, -22.699526, -40.69875), (18.12025, -22.699526, -40.69875), (18.57862, -20.336832, -41.728264), (20.737047, -20.336832, -40.69875), (20.225426, -22.699526, -39.69463), (20.225426, -22.699526, -39.69463), (20.737047, -20.336832, -40.69875), (22.838636, -20.336832, -39.55768), (22.275164, -22.699526, -38.581715), (22.275164, -22.699526, -38.581715), (22.838636, -20.336832, -39.55768), (24.877626, -20.336832, -38.308186), (24.263847, -22.699526, -37.36305), (24.263847, -22.699526, -37.36305), (24.877626, -20.336832, -38.308186), (26.848427, -20.336832, -36.95369), (26.186026, -22.699526, -36.04197), (26.186026, -22.699526, -36.04197), (26.848427, -20.336832, -36.95369), (28.74564, -20.336832, -35.49791), (28.036428, -22.699526, -34.622105), (28.036428, -22.699526, -34.622105), (28.74564, -20.336832, -35.49791), (30.564062, -20.336832, -33.944828), (29.809986, -22.699526, -33.107346), (29.809986, -22.699526, -33.107346), (30.564062, -20.336832, -33.944828), (32.29871, -20.336832, -32.29871), (31.501839, -22.699526, -31.501839), (31.501839, -22.699526, -31.501839), (32.29871, -20.336832, -32.29871), (33.944828, -20.336832, -30.564062), (33.107346, -22.699526, -29.809986), (33.107346, -22.699526, -29.809986), (33.944828, -20.336832, -30.564062), (35.49791, -20.336832, -28.74564), (34.622105, -22.699526, -28.036428), (34.622105, -22.699526, -28.036428), (35.49791, -20.336832, -28.74564), (36.95369, -20.336832, -26.848427), (36.04197, -22.699526, -26.186026), (36.04197, -22.699526, -26.186026), (36.95369, -20.336832, -26.848427), (38.308186, -20.336832, -24.877626), (37.36305, -22.699526, -24.263847), (37.36305, -22.699526, -24.263847), (38.308186, -20.336832, -24.877626), (39.55768, -20.336832, -22.838636), (38.581715, -22.699526, -22.275164), (38.581715, -22.699526, -22.275164), (39.55768, -20.336832, -22.838636), (40.69875, -20.336832, -20.737047), (39.69463, -22.699526, -20.225426), (39.69463, -22.699526, -20.225426), (40.69875, -20.336832, -20.737047), (41.728264, -20.336832, -18.57862), (40.69875, -22.699526, -18.12025), (40.69875, -22.699526, -18.12025), (41.728264, -20.336832, -18.57862), (42.64341, -20.336832, -16.36927), (41.591312, -22.699526, -15.965409), (41.591312, -22.699526, -15.965409), (42.64341, -20.336832, -16.36927), (43.44167, -20.336832, -14.115053), (42.369877, -22.699526, -13.766808), (42.369877, -22.699526, -13.766808), (43.44167, -20.336832, -14.115053), (44.120857, -20.336832, -11.822148), (43.03231, -22.699526, -11.530473), (43.03231, -22.699526, -11.530473), (44.120857, -20.336832, -11.822148), (44.679115, -20.336832, -9.496839), (43.576794, -22.699526, -9.262533), (43.576794, -22.699526, -9.262533), (44.679115, -20.336832, -9.496839), (45.11491, -20.336832, -7.1454997), (44.00184, -22.699526, -6.9692063), (44.00184, -22.699526, -6.9692063), (45.11491, -20.336832, -7.1454997), (45.427048, -20.336832, -4.774575), (44.306274, -22.699526, -4.656777), (44.306274, -22.699526, -4.656777), (45.427048, -20.336832, -4.774575), (45.614674, -20.336832, -2.3905637), (44.489273, -22.699526, -2.331584), (44.489273, -22.699526, -2.331584), (45.614674, -20.336832, -2.3905637), (45.677273, -20.336832, 0), (44.550327, -22.699526, 0), (45.677273, -20.336832, 0), (46.67902, -17.918398, 0), (46.615047, -17.918398, 2.4429913), (45.614674, -20.336832, 2.3905637), (45.614674, -20.336832, 2.3905637), (46.615047, -17.918398, 2.4429913), (46.42331, -17.918398, 4.8792863), (45.427048, -20.336832, 4.774575), (45.427048, -20.336832, 4.774575), (46.42331, -17.918398, 4.8792863), (46.104324, -17.918398, 7.302208), (45.11491, -20.336832, 7.1454997), (45.11491, -20.336832, 7.1454997), (46.104324, -17.918398, 7.302208), (45.658974, -17.918398, 9.705114), (44.679115, -20.336832, 9.496839), (44.679115, -20.336832, 9.496839), (45.658974, -17.918398, 9.705114), (45.08847, -17.918398, 12.08142), (44.120857, -20.336832, 11.822148), (44.120857, -20.336832, 11.822148), (45.08847, -17.918398, 12.08142), (44.394386, -17.918398, 14.424611), (43.44167, -20.336832, 14.115053), (43.44167, -20.336832, 14.115053), (44.394386, -17.918398, 14.424611), (43.57862, -17.918398, 16.728266), (42.64341, -20.336832, 16.36927), (42.64341, -20.336832, 16.36927), (43.57862, -17.918398, 16.728266), (42.64341, -17.918398, 18.986069), (41.728264, -20.336832, 18.57862), (41.728264, -20.336832, 18.57862), (42.64341, -17.918398, 18.986069), (41.591312, -17.918398, 21.191832), (40.69875, -20.336832, 20.737047), (40.69875, -20.336832, 20.737047), (41.591312, -17.918398, 21.191832), (40.425217, -17.918398, 23.33951), (39.55768, -20.336832, 22.838636), (39.55768, -20.336832, 22.838636), (40.425217, -17.918398, 23.33951), (39.148323, -17.918398, 25.423218), (38.308186, -20.336832, 24.877626), (38.308186, -20.336832, 24.877626), (39.148323, -17.918398, 25.423218), (37.764122, -17.918398, 27.43724), (36.95369, -20.336832, 26.848427), (36.95369, -20.336832, 26.848427), (37.764122, -17.918398, 27.43724), (36.276413, -17.918398, 29.37606), (35.49791, -20.336832, 28.74564), (35.49791, -20.336832, 28.74564), (36.276413, -17.918398, 29.37606), (34.689274, -17.918398, 31.234362), (33.944828, -20.336832, 30.564062), (33.944828, -20.336832, 30.564062), (34.689274, -17.918398, 31.234362), (33.007053, -17.918398, 33.007053), (32.29871, -20.336832, 32.29871), (32.29871, -20.336832, 32.29871), (33.007053, -17.918398, 33.007053), (31.234362, -17.918398, 34.689274), (30.564062, -20.336832, 33.944828), (30.564062, -20.336832, 33.944828), (31.234362, -17.918398, 34.689274), (29.37606, -17.918398, 36.276413), (28.74564, -20.336832, 35.49791), (28.74564, -20.336832, 35.49791), (29.37606, -17.918398, 36.276413), (27.43724, -17.918398, 37.764122), (26.848427, -20.336832, 36.95369), (26.848427, -20.336832, 36.95369), (27.43724, -17.918398, 37.764122), (25.423218, -17.918398, 39.148323), (24.877626, -20.336832, 38.308186), (24.877626, -20.336832, 38.308186), (25.423218, -17.918398, 39.148323), (23.33951, -17.918398, 40.425217), (22.838636, -20.336832, 39.55768), (22.838636, -20.336832, 39.55768), (23.33951, -17.918398, 40.425217), (21.191832, -17.918398, 41.591312), (20.737047, -20.336832, 40.69875), (20.737047, -20.336832, 40.69875), (21.191832, -17.918398, 41.591312), (18.986069, -17.918398, 42.64341), (18.57862, -20.336832, 41.728264), (18.57862, -20.336832, 41.728264), (18.986069, -17.918398, 42.64341), (16.728266, -17.918398, 43.57862), (16.36927, -20.336832, 42.64341), (16.36927, -20.336832, 42.64341), (16.728266, -17.918398, 43.57862), (14.424611, -17.918398, 44.394386), (14.115053, -20.336832, 43.44167), (14.115053, -20.336832, 43.44167), (14.424611, -17.918398, 44.394386), (12.08142, -17.918398, 45.08847), (11.822148, -20.336832, 44.120857), (11.822148, -20.336832, 44.120857), (12.08142, -17.918398, 45.08847), (9.705114, -17.918398, 45.658974), (9.496839, -20.336832, 44.679115), (9.496839, -20.336832, 44.679115), (9.705114, -17.918398, 45.658974), (7.302208, -17.918398, 46.104324), (7.1454997, -20.336832, 45.11491), (7.1454997, -20.336832, 45.11491), (7.302208, -17.918398, 46.104324), (4.8792863, -17.918398, 46.42331), (4.774575, -20.336832, 45.427048), (4.774575, -20.336832, 45.427048), (4.8792863, -17.918398, 46.42331), (2.4429913, -17.918398, 46.615047), (2.3905637, -20.336832, 45.614674), (2.3905637, -20.336832, 45.614674), (2.4429913, -17.918398, 46.615047), (2.8582657e-15, -17.918398, 46.67902), (2.7969263e-15, -20.336832, 45.677273), (2.7969263e-15, -20.336832, 45.677273), (2.8582657e-15, -17.918398, 46.67902), (-2.4429913, -17.918398, 46.615047), (-2.3905637, -20.336832, 45.614674), (-2.3905637, -20.336832, 45.614674), (-2.4429913, -17.918398, 46.615047), (-4.8792863, -17.918398, 46.42331), (-4.774575, -20.336832, 45.427048), (-4.774575, -20.336832, 45.427048), (-4.8792863, -17.918398, 46.42331), (-7.302208, -17.918398, 46.104324), (-7.1454997, -20.336832, 45.11491), (-7.1454997, -20.336832, 45.11491), (-7.302208, -17.918398, 46.104324), (-9.705114, -17.918398, 45.658974), (-9.496839, -20.336832, 44.679115), (-9.496839, -20.336832, 44.679115), (-9.705114, -17.918398, 45.658974), (-12.08142, -17.918398, 45.08847), (-11.822148, -20.336832, 44.120857), (-11.822148, -20.336832, 44.120857), (-12.08142, -17.918398, 45.08847), (-14.424611, -17.918398, 44.394386), (-14.115053, -20.336832, 43.44167), (-14.115053, -20.336832, 43.44167), (-14.424611, -17.918398, 44.394386), (-16.728266, -17.918398, 43.57862), (-16.36927, -20.336832, 42.64341), (-16.36927, -20.336832, 42.64341), (-16.728266, -17.918398, 43.57862), (-18.986069, -17.918398, 42.64341), (-18.57862, -20.336832, 41.728264), (-18.57862, -20.336832, 41.728264), (-18.986069, -17.918398, 42.64341), (-21.191832, -17.918398, 41.591312), (-20.737047, -20.336832, 40.69875), (-20.737047, -20.336832, 40.69875), (-21.191832, -17.918398, 41.591312), (-23.33951, -17.918398, 40.425217), (-22.838636, -20.336832, 39.55768), (-22.838636, -20.336832, 39.55768), (-23.33951, -17.918398, 40.425217), (-25.423218, -17.918398, 39.148323), (-24.877626, -20.336832, 38.308186), (-24.877626, -20.336832, 38.308186), (-25.423218, -17.918398, 39.148323), (-27.43724, -17.918398, 37.764122), (-26.848427, -20.336832, 36.95369), (-26.848427, -20.336832, 36.95369), (-27.43724, -17.918398, 37.764122), (-29.37606, -17.918398, 36.276413), (-28.74564, -20.336832, 35.49791), (-28.74564, -20.336832, 35.49791), (-29.37606, -17.918398, 36.276413), (-31.234362, -17.918398, 34.689274), (-30.564062, -20.336832, 33.944828), (-30.564062, -20.336832, 33.944828), (-31.234362, -17.918398, 34.689274), (-33.007053, -17.918398, 33.007053), (-32.29871, -20.336832, 32.29871), (-32.29871, -20.336832, 32.29871), (-33.007053, -17.918398, 33.007053), (-34.689274, -17.918398, 31.234362), (-33.944828, -20.336832, 30.564062), (-33.944828, -20.336832, 30.564062), (-34.689274, -17.918398, 31.234362), (-36.276413, -17.918398, 29.37606), (-35.49791, -20.336832, 28.74564), (-35.49791, -20.336832, 28.74564), (-36.276413, -17.918398, 29.37606), (-37.764122, -17.918398, 27.43724), (-36.95369, -20.336832, 26.848427), (-36.95369, -20.336832, 26.848427), (-37.764122, -17.918398, 27.43724), (-39.148323, -17.918398, 25.423218), (-38.308186, -20.336832, 24.877626), (-38.308186, -20.336832, 24.877626), (-39.148323, -17.918398, 25.423218), (-40.425217, -17.918398, 23.33951), (-39.55768, -20.336832, 22.838636), (-39.55768, -20.336832, 22.838636), (-40.425217, -17.918398, 23.33951), (-41.591312, -17.918398, 21.191832), (-40.69875, -20.336832, 20.737047), (-40.69875, -20.336832, 20.737047), (-41.591312, -17.918398, 21.191832), (-42.64341, -17.918398, 18.986069), (-41.728264, -20.336832, 18.57862), (-41.728264, -20.336832, 18.57862), (-42.64341, -17.918398, 18.986069), (-43.57862, -17.918398, 16.728266), (-42.64341, -20.336832, 16.36927), (-42.64341, -20.336832, 16.36927), (-43.57862, -17.918398, 16.728266), (-44.394386, -17.918398, 14.424611), (-43.44167, -20.336832, 14.115053), (-43.44167, -20.336832, 14.115053), (-44.394386, -17.918398, 14.424611), (-45.08847, -17.918398, 12.08142), (-44.120857, -20.336832, 11.822148), (-44.120857, -20.336832, 11.822148), (-45.08847, -17.918398, 12.08142), (-45.658974, -17.918398, 9.705114), (-44.679115, -20.336832, 9.496839), (-44.679115, -20.336832, 9.496839), (-45.658974, -17.918398, 9.705114), (-46.104324, -17.918398, 7.302208), (-45.11491, -20.336832, 7.1454997), (-45.11491, -20.336832, 7.1454997), (-46.104324, -17.918398, 7.302208), (-46.42331, -17.918398, 4.8792863), (-45.427048, -20.336832, 4.774575), (-45.427048, -20.336832, 4.774575), (-46.42331, -17.918398, 4.8792863), (-46.615047, -17.918398, 2.4429913), (-45.614674, -20.336832, 2.3905637), (-45.614674, -20.336832, 2.3905637), (-46.615047, -17.918398, 2.4429913), (-46.67902, -17.918398, 5.7165313e-15), (-45.677273, -20.336832, 5.5938526e-15), (-45.677273, -20.336832, 5.5938526e-15), (-46.67902, -17.918398, 5.7165313e-15), (-46.615047, -17.918398, -2.4429913), (-45.614674, -20.336832, -2.3905637), (-45.614674, -20.336832, -2.3905637), (-46.615047, -17.918398, -2.4429913), (-46.42331, -17.918398, -4.8792863), (-45.427048, -20.336832, -4.774575), (-45.427048, -20.336832, -4.774575), (-46.42331, -17.918398, -4.8792863), (-46.104324, -17.918398, -7.302208), (-45.11491, -20.336832, -7.1454997), (-45.11491, -20.336832, -7.1454997), (-46.104324, -17.918398, -7.302208), (-45.658974, -17.918398, -9.705114), (-44.679115, -20.336832, -9.496839), (-44.679115, -20.336832, -9.496839), (-45.658974, -17.918398, -9.705114), (-45.08847, -17.918398, -12.08142), (-44.120857, -20.336832, -11.822148), (-44.120857, -20.336832, -11.822148), (-45.08847, -17.918398, -12.08142), (-44.394386, -17.918398, -14.424611), (-43.44167, -20.336832, -14.115053), (-43.44167, -20.336832, -14.115053), (-44.394386, -17.918398, -14.424611), (-43.57862, -17.918398, -16.728266), (-42.64341, -20.336832, -16.36927), (-42.64341, -20.336832, -16.36927), (-43.57862, -17.918398, -16.728266), (-42.64341, -17.918398, -18.986069), (-41.728264, -20.336832, -18.57862), (-41.728264, -20.336832, -18.57862), (-42.64341, -17.918398, -18.986069), (-41.591312, -17.918398, -21.191832), (-40.69875, -20.336832, -20.737047), (-40.69875, -20.336832, -20.737047), (-41.591312, -17.918398, -21.191832), (-40.425217, -17.918398, -23.33951), (-39.55768, -20.336832, -22.838636), (-39.55768, -20.336832, -22.838636), (-40.425217, -17.918398, -23.33951), (-39.148323, -17.918398, -25.423218), (-38.308186, -20.336832, -24.877626), (-38.308186, -20.336832, -24.877626), (-39.148323, -17.918398, -25.423218), (-37.764122, -17.918398, -27.43724), (-36.95369, -20.336832, -26.848427), (-36.95369, -20.336832, -26.848427), (-37.764122, -17.918398, -27.43724), (-36.276413, -17.918398, -29.37606), (-35.49791, -20.336832, -28.74564), (-35.49791, -20.336832, -28.74564), (-36.276413, -17.918398, -29.37606), (-34.689274, -17.918398, -31.234362), (-33.944828, -20.336832, -30.564062), (-33.944828, -20.336832, -30.564062), (-34.689274, -17.918398, -31.234362), (-33.007053, -17.918398, -33.007053), (-32.29871, -20.336832, -32.29871), (-32.29871, -20.336832, -32.29871), (-33.007053, -17.918398, -33.007053), (-31.234362, -17.918398, -34.689274), (-30.564062, -20.336832, -33.944828), (-30.564062, -20.336832, -33.944828), (-31.234362, -17.918398, -34.689274), (-29.37606, -17.918398, -36.276413), (-28.74564, -20.336832, -35.49791), (-28.74564, -20.336832, -35.49791), (-29.37606, -17.918398, -36.276413), (-27.43724, -17.918398, -37.764122), (-26.848427, -20.336832, -36.95369), (-26.848427, -20.336832, -36.95369), (-27.43724, -17.918398, -37.764122), (-25.423218, -17.918398, -39.148323), (-24.877626, -20.336832, -38.308186), (-24.877626, -20.336832, -38.308186), (-25.423218, -17.918398, -39.148323), (-23.33951, -17.918398, -40.425217), (-22.838636, -20.336832, -39.55768), (-22.838636, -20.336832, -39.55768), (-23.33951, -17.918398, -40.425217), (-21.191832, -17.918398, -41.591312), (-20.737047, -20.336832, -40.69875), (-20.737047, -20.336832, -40.69875), (-21.191832, -17.918398, -41.591312), (-18.986069, -17.918398, -42.64341), (-18.57862, -20.336832, -41.728264), (-18.57862, -20.336832, -41.728264), (-18.986069, -17.918398, -42.64341), (-16.728266, -17.918398, -43.57862), (-16.36927, -20.336832, -42.64341), (-16.36927, -20.336832, -42.64341), (-16.728266, -17.918398, -43.57862), (-14.424611, -17.918398, -44.394386), (-14.115053, -20.336832, -43.44167), (-14.115053, -20.336832, -43.44167), (-14.424611, -17.918398, -44.394386), (-12.08142, -17.918398, -45.08847), (-11.822148, -20.336832, -44.120857), (-11.822148, -20.336832, -44.120857), (-12.08142, -17.918398, -45.08847), (-9.705114, -17.918398, -45.658974), (-9.496839, -20.336832, -44.679115), (-9.496839, -20.336832, -44.679115), (-9.705114, -17.918398, -45.658974), (-7.302208, -17.918398, -46.104324), (-7.1454997, -20.336832, -45.11491), (-7.1454997, -20.336832, -45.11491), (-7.302208, -17.918398, -46.104324), (-4.8792863, -17.918398, -46.42331), (-4.774575, -20.336832, -45.427048), (-4.774575, -20.336832, -45.427048), (-4.8792863, -17.918398, -46.42331), (-2.4429913, -17.918398, -46.615047), (-2.3905637, -20.336832, -45.614674), (-2.3905637, -20.336832, -45.614674), (-2.4429913, -17.918398, -46.615047), (-8.5747974e-15, -17.918398, -46.67902), (-8.390779e-15, -20.336832, -45.677273), (-8.390779e-15, -20.336832, -45.677273), (-8.5747974e-15, -17.918398, -46.67902), (2.4429913, -17.918398, -46.615047), (2.3905637, -20.336832, -45.614674), (2.3905637, -20.336832, -45.614674), (2.4429913, -17.918398, -46.615047), (4.8792863, -17.918398, -46.42331), (4.774575, -20.336832, -45.427048), (4.774575, -20.336832, -45.427048), (4.8792863, -17.918398, -46.42331), (7.302208, -17.918398, -46.104324), (7.1454997, -20.336832, -45.11491), (7.1454997, -20.336832, -45.11491), (7.302208, -17.918398, -46.104324), (9.705114, -17.918398, -45.658974), (9.496839, -20.336832, -44.679115), (9.496839, -20.336832, -44.679115), (9.705114, -17.918398, -45.658974), (12.08142, -17.918398, -45.08847), (11.822148, -20.336832, -44.120857), (11.822148, -20.336832, -44.120857), (12.08142, -17.918398, -45.08847), (14.424611, -17.918398, -44.394386), (14.115053, -20.336832, -43.44167), (14.115053, -20.336832, -43.44167), (14.424611, -17.918398, -44.394386), (16.728266, -17.918398, -43.57862), (16.36927, -20.336832, -42.64341), (16.36927, -20.336832, -42.64341), (16.728266, -17.918398, -43.57862), (18.986069, -17.918398, -42.64341), (18.57862, -20.336832, -41.728264), (18.57862, -20.336832, -41.728264), (18.986069, -17.918398, -42.64341), (21.191832, -17.918398, -41.591312), (20.737047, -20.336832, -40.69875), (20.737047, -20.336832, -40.69875), (21.191832, -17.918398, -41.591312), (23.33951, -17.918398, -40.425217), (22.838636, -20.336832, -39.55768), (22.838636, -20.336832, -39.55768), (23.33951, -17.918398, -40.425217), (25.423218, -17.918398, -39.148323), (24.877626, -20.336832, -38.308186), (24.877626, -20.336832, -38.308186), (25.423218, -17.918398, -39.148323), (27.43724, -17.918398, -37.764122), (26.848427, -20.336832, -36.95369), (26.848427, -20.336832, -36.95369), (27.43724, -17.918398, -37.764122), (29.37606, -17.918398, -36.276413), (28.74564, -20.336832, -35.49791), (28.74564, -20.336832, -35.49791), (29.37606, -17.918398, -36.276413), (31.234362, -17.918398, -34.689274), (30.564062, -20.336832, -33.944828), (30.564062, -20.336832, -33.944828), (31.234362, -17.918398, -34.689274), (33.007053, -17.918398, -33.007053), (32.29871, -20.336832, -32.29871), (32.29871, -20.336832, -32.29871), (33.007053, -17.918398, -33.007053), (34.689274, -17.918398, -31.234362), (33.944828, -20.336832, -30.564062), (33.944828, -20.336832, -30.564062), (34.689274, -17.918398, -31.234362), (36.276413, -17.918398, -29.37606), (35.49791, -20.336832, -28.74564), (35.49791, -20.336832, -28.74564), (36.276413, -17.918398, -29.37606), (37.764122, -17.918398, -27.43724), (36.95369, -20.336832, -26.848427), (36.95369, -20.336832, -26.848427), (37.764122, -17.918398, -27.43724), (39.148323, -17.918398, -25.423218), (38.308186, -20.336832, -24.877626), (38.308186, -20.336832, -24.877626), (39.148323, -17.918398, -25.423218), (40.425217, -17.918398, -23.33951), (39.55768, -20.336832, -22.838636), (39.55768, -20.336832, -22.838636), (40.425217, -17.918398, -23.33951), (41.591312, -17.918398, -21.191832), (40.69875, -20.336832, -20.737047), (40.69875, -20.336832, -20.737047), (41.591312, -17.918398, -21.191832), (42.64341, -17.918398, -18.986069), (41.728264, -20.336832, -18.57862), (41.728264, -20.336832, -18.57862), (42.64341, -17.918398, -18.986069), (43.57862, -17.918398, -16.728266), (42.64341, -20.336832, -16.36927), (42.64341, -20.336832, -16.36927), (43.57862, -17.918398, -16.728266), (44.394386, -17.918398, -14.424611), (43.44167, -20.336832, -14.115053), (43.44167, -20.336832, -14.115053), (44.394386, -17.918398, -14.424611), (45.08847, -17.918398, -12.08142), (44.120857, -20.336832, -11.822148), (44.120857, -20.336832, -11.822148), (45.08847, -17.918398, -12.08142), (45.658974, -17.918398, -9.705114), (44.679115, -20.336832, -9.496839), (44.679115, -20.336832, -9.496839), (45.658974, -17.918398, -9.705114), (46.104324, -17.918398, -7.302208), (45.11491, -20.336832, -7.1454997), (45.11491, -20.336832, -7.1454997), (46.104324, -17.918398, -7.302208), (46.42331, -17.918398, -4.8792863), (45.427048, -20.336832, -4.774575), (45.427048, -20.336832, -4.774575), (46.42331, -17.918398, -4.8792863), (46.615047, -17.918398, -2.4429913), (45.614674, -20.336832, -2.3905637), (45.614674, -20.336832, -2.3905637), (46.615047, -17.918398, -2.4429913), (46.67902, -17.918398, 0), (45.677273, -20.336832, 0), (46.67902, -17.918398, 0), (47.552826, -15.45085, 0), (47.487656, -15.45085, 2.4887226), (46.615047, -17.918398, 2.4429913), (46.615047, -17.918398, 2.4429913), (47.487656, -15.45085, 2.4887226), (47.292328, -15.45085, 4.970624), (46.42331, -17.918398, 4.8792863), (46.42331, -17.918398, 4.8792863), (47.292328, -15.45085, 4.970624), (46.967373, -15.45085, 7.438901), (46.104324, -17.918398, 7.302208), (46.104324, -17.918398, 7.302208), (46.967373, -15.45085, 7.438901), (46.513683, -15.45085, 9.886788), (45.658974, -17.918398, 9.705114), (45.658974, -17.918398, 9.705114), (46.513683, -15.45085, 9.886788), (45.932503, -15.45085, 12.307577), (45.08847, -17.918398, 12.08142), (45.08847, -17.918398, 12.08142), (45.932503, -15.45085, 12.307577), (45.225426, -15.45085, 14.694632), (44.394386, -17.918398, 14.424611), (44.394386, -17.918398, 14.424611), (45.225426, -15.45085, 14.694632), (44.394386, -15.45085, 17.041409), (43.57862, -17.918398, 16.728266), (43.57862, -17.918398, 16.728266), (44.394386, -15.45085, 17.041409), (43.44167, -15.45085, 19.341476), (42.64341, -17.918398, 18.986069), (42.64341, -17.918398, 18.986069), (43.44167, -15.45085, 19.341476), (42.369877, -15.45085, 21.588531), (41.591312, -17.918398, 21.191832), (41.591312, -17.918398, 21.191832), (42.369877, -15.45085, 21.588531), (41.181953, -15.45085, 23.776413), (40.425217, -17.918398, 23.33951), (40.425217, -17.918398, 23.33951), (41.181953, -15.45085, 23.776413), (39.881157, -15.45085, 25.899126), (39.148323, -17.918398, 25.423218), (39.148323, -17.918398, 25.423218), (39.881157, -15.45085, 25.899126), (38.471043, -15.45085, 27.95085), (37.764122, -17.918398, 27.43724), (37.764122, -17.918398, 27.43724), (38.471043, -15.45085, 27.95085), (36.955486, -15.45085, 29.925962), (36.276413, -17.918398, 29.37606), (36.276413, -17.918398, 29.37606), (36.955486, -15.45085, 29.925962), (35.33864, -15.45085, 31.819052), (34.689274, -17.918398, 31.234362), (34.689274, -17.918398, 31.234362), (35.33864, -15.45085, 31.819052), (33.624924, -15.45085, 33.624924), (33.007053, -17.918398, 33.007053), (33.007053, -17.918398, 33.007053), (33.624924, -15.45085, 33.624924), (31.819052, -15.45085, 35.33864), (31.234362, -17.918398, 34.689274), (31.234362, -17.918398, 34.689274), (31.819052, -15.45085, 35.33864), (29.925962, -15.45085, 36.955486), (29.37606, -17.918398, 36.276413), (29.37606, -17.918398, 36.276413), (29.925962, -15.45085, 36.955486), (27.95085, -15.45085, 38.471043), (27.43724, -17.918398, 37.764122), (27.43724, -17.918398, 37.764122), (27.95085, -15.45085, 38.471043), (25.899126, -15.45085, 39.881157), (25.423218, -17.918398, 39.148323), (25.423218, -17.918398, 39.148323), (25.899126, -15.45085, 39.881157), (23.776413, -15.45085, 41.181953), (23.33951, -17.918398, 40.425217), (23.33951, -17.918398, 40.425217), (23.776413, -15.45085, 41.181953), (21.588531, -15.45085, 42.369877), (21.191832, -17.918398, 41.591312), (21.191832, -17.918398, 41.591312), (21.588531, -15.45085, 42.369877), (19.341476, -15.45085, 43.44167), (18.986069, -17.918398, 42.64341), (18.986069, -17.918398, 42.64341), (19.341476, -15.45085, 43.44167), (17.041409, -15.45085, 44.394386), (16.728266, -17.918398, 43.57862), (16.728266, -17.918398, 43.57862), (17.041409, -15.45085, 44.394386), (14.694632, -15.45085, 45.225426), (14.424611, -17.918398, 44.394386), (14.424611, -17.918398, 44.394386), (14.694632, -15.45085, 45.225426), (12.307577, -15.45085, 45.932503), (12.08142, -17.918398, 45.08847), (12.08142, -17.918398, 45.08847), (12.307577, -15.45085, 45.932503), (9.886788, -15.45085, 46.513683), (9.705114, -17.918398, 45.658974), (9.705114, -17.918398, 45.658974), (9.886788, -15.45085, 46.513683), (7.438901, -15.45085, 46.967373), (7.302208, -17.918398, 46.104324), (7.302208, -17.918398, 46.104324), (7.438901, -15.45085, 46.967373), (4.970624, -15.45085, 47.292328), (4.8792863, -17.918398, 46.42331), (4.8792863, -17.918398, 46.42331), (4.970624, -15.45085, 47.292328), (2.4887226, -15.45085, 47.487656), (2.4429913, -17.918398, 46.615047), (2.4429913, -17.918398, 46.615047), (2.4887226, -15.45085, 47.487656), (2.9117708e-15, -15.45085, 47.552826), (2.8582657e-15, -17.918398, 46.67902), (2.8582657e-15, -17.918398, 46.67902), (2.9117708e-15, -15.45085, 47.552826), (-2.4887226, -15.45085, 47.487656), (-2.4429913, -17.918398, 46.615047), (-2.4429913, -17.918398, 46.615047), (-2.4887226, -15.45085, 47.487656), (-4.970624, -15.45085, 47.292328), (-4.8792863, -17.918398, 46.42331), (-4.8792863, -17.918398, 46.42331), (-4.970624, -15.45085, 47.292328), (-7.438901, -15.45085, 46.967373), (-7.302208, -17.918398, 46.104324), (-7.302208, -17.918398, 46.104324), (-7.438901, -15.45085, 46.967373), (-9.886788, -15.45085, 46.513683), (-9.705114, -17.918398, 45.658974), (-9.705114, -17.918398, 45.658974), (-9.886788, -15.45085, 46.513683), (-12.307577, -15.45085, 45.932503), (-12.08142, -17.918398, 45.08847), (-12.08142, -17.918398, 45.08847), (-12.307577, -15.45085, 45.932503), (-14.694632, -15.45085, 45.225426), (-14.424611, -17.918398, 44.394386), (-14.424611, -17.918398, 44.394386), (-14.694632, -15.45085, 45.225426), (-17.041409, -15.45085, 44.394386), (-16.728266, -17.918398, 43.57862), (-16.728266, -17.918398, 43.57862), (-17.041409, -15.45085, 44.394386), (-19.341476, -15.45085, 43.44167), (-18.986069, -17.918398, 42.64341), (-18.986069, -17.918398, 42.64341), (-19.341476, -15.45085, 43.44167), (-21.588531, -15.45085, 42.369877), (-21.191832, -17.918398, 41.591312), (-21.191832, -17.918398, 41.591312), (-21.588531, -15.45085, 42.369877), (-23.776413, -15.45085, 41.181953), (-23.33951, -17.918398, 40.425217), (-23.33951, -17.918398, 40.425217), (-23.776413, -15.45085, 41.181953), (-25.899126, -15.45085, 39.881157), (-25.423218, -17.918398, 39.148323), (-25.423218, -17.918398, 39.148323), (-25.899126, -15.45085, 39.881157), (-27.95085, -15.45085, 38.471043), (-27.43724, -17.918398, 37.764122), (-27.43724, -17.918398, 37.764122), (-27.95085, -15.45085, 38.471043), (-29.925962, -15.45085, 36.955486), (-29.37606, -17.918398, 36.276413), (-29.37606, -17.918398, 36.276413), (-29.925962, -15.45085, 36.955486), (-31.819052, -15.45085, 35.33864), (-31.234362, -17.918398, 34.689274), (-31.234362, -17.918398, 34.689274), (-31.819052, -15.45085, 35.33864), (-33.624924, -15.45085, 33.624924), (-33.007053, -17.918398, 33.007053), (-33.007053, -17.918398, 33.007053), (-33.624924, -15.45085, 33.624924), (-35.33864, -15.45085, 31.819052), (-34.689274, -17.918398, 31.234362), (-34.689274, -17.918398, 31.234362), (-35.33864, -15.45085, 31.819052), (-36.955486, -15.45085, 29.925962), (-36.276413, -17.918398, 29.37606), (-36.276413, -17.918398, 29.37606), (-36.955486, -15.45085, 29.925962), (-38.471043, -15.45085, 27.95085), (-37.764122, -17.918398, 27.43724), (-37.764122, -17.918398, 27.43724), (-38.471043, -15.45085, 27.95085), (-39.881157, -15.45085, 25.899126), (-39.148323, -17.918398, 25.423218), (-39.148323, -17.918398, 25.423218), (-39.881157, -15.45085, 25.899126), (-41.181953, -15.45085, 23.776413), (-40.425217, -17.918398, 23.33951), (-40.425217, -17.918398, 23.33951), (-41.181953, -15.45085, 23.776413), (-42.369877, -15.45085, 21.588531), (-41.591312, -17.918398, 21.191832), (-41.591312, -17.918398, 21.191832), (-42.369877, -15.45085, 21.588531), (-43.44167, -15.45085, 19.341476), (-42.64341, -17.918398, 18.986069), (-42.64341, -17.918398, 18.986069), (-43.44167, -15.45085, 19.341476), (-44.394386, -15.45085, 17.041409), (-43.57862, -17.918398, 16.728266), (-43.57862, -17.918398, 16.728266), (-44.394386, -15.45085, 17.041409), (-45.225426, -15.45085, 14.694632), (-44.394386, -17.918398, 14.424611), (-44.394386, -17.918398, 14.424611), (-45.225426, -15.45085, 14.694632), (-45.932503, -15.45085, 12.307577), (-45.08847, -17.918398, 12.08142), (-45.08847, -17.918398, 12.08142), (-45.932503, -15.45085, 12.307577), (-46.513683, -15.45085, 9.886788), (-45.658974, -17.918398, 9.705114), (-45.658974, -17.918398, 9.705114), (-46.513683, -15.45085, 9.886788), (-46.967373, -15.45085, 7.438901), (-46.104324, -17.918398, 7.302208), (-46.104324, -17.918398, 7.302208), (-46.967373, -15.45085, 7.438901), (-47.292328, -15.45085, 4.970624), (-46.42331, -17.918398, 4.8792863), (-46.42331, -17.918398, 4.8792863), (-47.292328, -15.45085, 4.970624), (-47.487656, -15.45085, 2.4887226), (-46.615047, -17.918398, 2.4429913), (-46.615047, -17.918398, 2.4429913), (-47.487656, -15.45085, 2.4887226), (-47.552826, -15.45085, 5.8235417e-15), (-46.67902, -17.918398, 5.7165313e-15), (-46.67902, -17.918398, 5.7165313e-15), (-47.552826, -15.45085, 5.8235417e-15), (-47.487656, -15.45085, -2.4887226), (-46.615047, -17.918398, -2.4429913), (-46.615047, -17.918398, -2.4429913), (-47.487656, -15.45085, -2.4887226), (-47.292328, -15.45085, -4.970624), (-46.42331, -17.918398, -4.8792863), (-46.42331, -17.918398, -4.8792863), (-47.292328, -15.45085, -4.970624), (-46.967373, -15.45085, -7.438901), (-46.104324, -17.918398, -7.302208), (-46.104324, -17.918398, -7.302208), (-46.967373, -15.45085, -7.438901), (-46.513683, -15.45085, -9.886788), (-45.658974, -17.918398, -9.705114), (-45.658974, -17.918398, -9.705114), (-46.513683, -15.45085, -9.886788), (-45.932503, -15.45085, -12.307577), (-45.08847, -17.918398, -12.08142), (-45.08847, -17.918398, -12.08142), (-45.932503, -15.45085, -12.307577), (-45.225426, -15.45085, -14.694632), (-44.394386, -17.918398, -14.424611), (-44.394386, -17.918398, -14.424611), (-45.225426, -15.45085, -14.694632), (-44.394386, -15.45085, -17.041409), (-43.57862, -17.918398, -16.728266), (-43.57862, -17.918398, -16.728266), (-44.394386, -15.45085, -17.041409), (-43.44167, -15.45085, -19.341476), (-42.64341, -17.918398, -18.986069), (-42.64341, -17.918398, -18.986069), (-43.44167, -15.45085, -19.341476), (-42.369877, -15.45085, -21.588531), (-41.591312, -17.918398, -21.191832), (-41.591312, -17.918398, -21.191832), (-42.369877, -15.45085, -21.588531), (-41.181953, -15.45085, -23.776413), (-40.425217, -17.918398, -23.33951), (-40.425217, -17.918398, -23.33951), (-41.181953, -15.45085, -23.776413), (-39.881157, -15.45085, -25.899126), (-39.148323, -17.918398, -25.423218), (-39.148323, -17.918398, -25.423218), (-39.881157, -15.45085, -25.899126), (-38.471043, -15.45085, -27.95085), (-37.764122, -17.918398, -27.43724), (-37.764122, -17.918398, -27.43724), (-38.471043, -15.45085, -27.95085), (-36.955486, -15.45085, -29.925962), (-36.276413, -17.918398, -29.37606), (-36.276413, -17.918398, -29.37606), (-36.955486, -15.45085, -29.925962), (-35.33864, -15.45085, -31.819052), (-34.689274, -17.918398, -31.234362), (-34.689274, -17.918398, -31.234362), (-35.33864, -15.45085, -31.819052), (-33.624924, -15.45085, -33.624924), (-33.007053, -17.918398, -33.007053), (-33.007053, -17.918398, -33.007053), (-33.624924, -15.45085, -33.624924), (-31.819052, -15.45085, -35.33864), (-31.234362, -17.918398, -34.689274), (-31.234362, -17.918398, -34.689274), (-31.819052, -15.45085, -35.33864), (-29.925962, -15.45085, -36.955486), (-29.37606, -17.918398, -36.276413), (-29.37606, -17.918398, -36.276413), (-29.925962, -15.45085, -36.955486), (-27.95085, -15.45085, -38.471043), (-27.43724, -17.918398, -37.764122), (-27.43724, -17.918398, -37.764122), (-27.95085, -15.45085, -38.471043), (-25.899126, -15.45085, -39.881157), (-25.423218, -17.918398, -39.148323), (-25.423218, -17.918398, -39.148323), (-25.899126, -15.45085, -39.881157), (-23.776413, -15.45085, -41.181953), (-23.33951, -17.918398, -40.425217), (-23.33951, -17.918398, -40.425217), (-23.776413, -15.45085, -41.181953), (-21.588531, -15.45085, -42.369877), (-21.191832, -17.918398, -41.591312), (-21.191832, -17.918398, -41.591312), (-21.588531, -15.45085, -42.369877), (-19.341476, -15.45085, -43.44167), (-18.986069, -17.918398, -42.64341), (-18.986069, -17.918398, -42.64341), (-19.341476, -15.45085, -43.44167), (-17.041409, -15.45085, -44.394386), (-16.728266, -17.918398, -43.57862), (-16.728266, -17.918398, -43.57862), (-17.041409, -15.45085, -44.394386), (-14.694632, -15.45085, -45.225426), (-14.424611, -17.918398, -44.394386), (-14.424611, -17.918398, -44.394386), (-14.694632, -15.45085, -45.225426), (-12.307577, -15.45085, -45.932503), (-12.08142, -17.918398, -45.08847), (-12.08142, -17.918398, -45.08847), (-12.307577, -15.45085, -45.932503), (-9.886788, -15.45085, -46.513683), (-9.705114, -17.918398, -45.658974), (-9.705114, -17.918398, -45.658974), (-9.886788, -15.45085, -46.513683), (-7.438901, -15.45085, -46.967373), (-7.302208, -17.918398, -46.104324), (-7.302208, -17.918398, -46.104324), (-7.438901, -15.45085, -46.967373), (-4.970624, -15.45085, -47.292328), (-4.8792863, -17.918398, -46.42331), (-4.8792863, -17.918398, -46.42331), (-4.970624, -15.45085, -47.292328), (-2.4887226, -15.45085, -47.487656), (-2.4429913, -17.918398, -46.615047), (-2.4429913, -17.918398, -46.615047), (-2.4887226, -15.45085, -47.487656), (-8.735313e-15, -15.45085, -47.552826), (-8.5747974e-15, -17.918398, -46.67902), (-8.5747974e-15, -17.918398, -46.67902), (-8.735313e-15, -15.45085, -47.552826), (2.4887226, -15.45085, -47.487656), (2.4429913, -17.918398, -46.615047), (2.4429913, -17.918398, -46.615047), (2.4887226, -15.45085, -47.487656), (4.970624, -15.45085, -47.292328), (4.8792863, -17.918398, -46.42331), (4.8792863, -17.918398, -46.42331), (4.970624, -15.45085, -47.292328), (7.438901, -15.45085, -46.967373), (7.302208, -17.918398, -46.104324), (7.302208, -17.918398, -46.104324), (7.438901, -15.45085, -46.967373), (9.886788, -15.45085, -46.513683), (9.705114, -17.918398, -45.658974), (9.705114, -17.918398, -45.658974), (9.886788, -15.45085, -46.513683), (12.307577, -15.45085, -45.932503), (12.08142, -17.918398, -45.08847), (12.08142, -17.918398, -45.08847), (12.307577, -15.45085, -45.932503), (14.694632, -15.45085, -45.225426), (14.424611, -17.918398, -44.394386), (14.424611, -17.918398, -44.394386), (14.694632, -15.45085, -45.225426), (17.041409, -15.45085, -44.394386), (16.728266, -17.918398, -43.57862), (16.728266, -17.918398, -43.57862), (17.041409, -15.45085, -44.394386), (19.341476, -15.45085, -43.44167), (18.986069, -17.918398, -42.64341), (18.986069, -17.918398, -42.64341), (19.341476, -15.45085, -43.44167), (21.588531, -15.45085, -42.369877), (21.191832, -17.918398, -41.591312), (21.191832, -17.918398, -41.591312), (21.588531, -15.45085, -42.369877), (23.776413, -15.45085, -41.181953), (23.33951, -17.918398, -40.425217), (23.33951, -17.918398, -40.425217), (23.776413, -15.45085, -41.181953), (25.899126, -15.45085, -39.881157), (25.423218, -17.918398, -39.148323), (25.423218, -17.918398, -39.148323), (25.899126, -15.45085, -39.881157), (27.95085, -15.45085, -38.471043), (27.43724, -17.918398, -37.764122), (27.43724, -17.918398, -37.764122), (27.95085, -15.45085, -38.471043), (29.925962, -15.45085, -36.955486), (29.37606, -17.918398, -36.276413), (29.37606, -17.918398, -36.276413), (29.925962, -15.45085, -36.955486), (31.819052, -15.45085, -35.33864), (31.234362, -17.918398, -34.689274), (31.234362, -17.918398, -34.689274), (31.819052, -15.45085, -35.33864), (33.624924, -15.45085, -33.624924), (33.007053, -17.918398, -33.007053), (33.007053, -17.918398, -33.007053), (33.624924, -15.45085, -33.624924), (35.33864, -15.45085, -31.819052), (34.689274, -17.918398, -31.234362), (34.689274, -17.918398, -31.234362), (35.33864, -15.45085, -31.819052), (36.955486, -15.45085, -29.925962), (36.276413, -17.918398, -29.37606), (36.276413, -17.918398, -29.37606), (36.955486, -15.45085, -29.925962), (38.471043, -15.45085, -27.95085), (37.764122, -17.918398, -27.43724), (37.764122, -17.918398, -27.43724), (38.471043, -15.45085, -27.95085), (39.881157, -15.45085, -25.899126), (39.148323, -17.918398, -25.423218), (39.148323, -17.918398, -25.423218), (39.881157, -15.45085, -25.899126), (41.181953, -15.45085, -23.776413), (40.425217, -17.918398, -23.33951), (40.425217, -17.918398, -23.33951), (41.181953, -15.45085, -23.776413), (42.369877, -15.45085, -21.588531), (41.591312, -17.918398, -21.191832), (41.591312, -17.918398, -21.191832), (42.369877, -15.45085, -21.588531), (43.44167, -15.45085, -19.341476), (42.64341, -17.918398, -18.986069), (42.64341, -17.918398, -18.986069), (43.44167, -15.45085, -19.341476), (44.394386, -15.45085, -17.041409), (43.57862, -17.918398, -16.728266), (43.57862, -17.918398, -16.728266), (44.394386, -15.45085, -17.041409), (45.225426, -15.45085, -14.694632), (44.394386, -17.918398, -14.424611), (44.394386, -17.918398, -14.424611), (45.225426, -15.45085, -14.694632), (45.932503, -15.45085, -12.307577), (45.08847, -17.918398, -12.08142), (45.08847, -17.918398, -12.08142), (45.932503, -15.45085, -12.307577), (46.513683, -15.45085, -9.886788), (45.658974, -17.918398, -9.705114), (45.658974, -17.918398, -9.705114), (46.513683, -15.45085, -9.886788), (46.967373, -15.45085, -7.438901), (46.104324, -17.918398, -7.302208), (46.104324, -17.918398, -7.302208), (46.967373, -15.45085, -7.438901), (47.292328, -15.45085, -4.970624), (46.42331, -17.918398, -4.8792863), (46.42331, -17.918398, -4.8792863), (47.292328, -15.45085, -4.970624), (47.487656, -15.45085, -2.4887226), (46.615047, -17.918398, -2.4429913), (46.615047, -17.918398, -2.4429913), (47.487656, -15.45085, -2.4887226), (47.552826, -15.45085, 0), (46.67902, -17.918398, 0), (47.552826, -15.45085, 0), (48.29629, -12.940952, 0), (48.230103, -12.940952, 2.5276325), (47.487656, -15.45085, 2.4887226), (47.487656, -15.45085, 2.4887226), (48.230103, -12.940952, 2.5276325), (48.03172, -12.940952, 5.048337), (47.292328, -15.45085, 4.970624), (47.292328, -15.45085, 4.970624), (48.03172, -12.940952, 5.048337), (47.701683, -12.940952, 7.5552044), (46.967373, -15.45085, 7.438901), (46.967373, -15.45085, 7.438901), (47.701683, -12.940952, 7.5552044), (47.240902, -12.940952, 10.041364), (46.513683, -15.45085, 9.886788), (46.513683, -15.45085, 9.886788), (47.240902, -12.940952, 10.041364), (46.650635, -12.940952, 12.5), (45.932503, -15.45085, 12.307577), (45.932503, -15.45085, 12.307577), (46.650635, -12.940952, 12.5), (45.932503, -12.940952, 14.924375), (45.225426, -15.45085, 14.694632), (45.225426, -15.45085, 14.694632), (45.932503, -12.940952, 14.924375), (45.08847, -12.940952, 17.307842), (44.394386, -15.45085, 17.041409), (44.394386, -15.45085, 17.041409), (45.08847, -12.940952, 17.307842), (44.120857, -12.940952, 19.643871), (43.44167, -15.45085, 19.341476), (43.44167, -15.45085, 19.341476), (44.120857, -12.940952, 19.643871), (43.03231, -12.940952, 21.926058), (42.369877, -15.45085, 21.588531), (42.369877, -15.45085, 21.588531), (43.03231, -12.940952, 21.926058), (41.825813, -12.940952, 24.148146), (41.181953, -15.45085, 23.776413), (41.181953, -15.45085, 23.776413), (41.825813, -12.940952, 24.148146), (40.504677, -12.940952, 26.304045), (39.881157, -15.45085, 25.899126), (39.881157, -15.45085, 25.899126), (40.504677, -12.940952, 26.304045), (39.07252, -12.940952, 28.387848), (38.471043, -15.45085, 27.95085), (38.471043, -15.45085, 27.95085), (39.07252, -12.940952, 28.387848), (37.533268, -12.940952, 30.39384), (36.955486, -15.45085, 29.925962), (36.955486, -15.45085, 29.925962), (37.533268, -12.940952, 30.39384), (35.89114, -12.940952, 32.31653), (35.33864, -15.45085, 31.819052), (35.33864, -15.45085, 31.819052), (35.89114, -12.940952, 32.31653), (34.150635, -12.940952, 34.150635), (33.624924, -15.45085, 33.624924), (33.624924, -15.45085, 33.624924), (34.150635, -12.940952, 34.150635), (32.31653, -12.940952, 35.89114), (31.819052, -15.45085, 35.33864), (31.819052, -15.45085, 35.33864), (32.31653, -12.940952, 35.89114), (30.39384, -12.940952, 37.533268), (29.925962, -15.45085, 36.955486), (29.925962, -15.45085, 36.955486), (30.39384, -12.940952, 37.533268), (28.387848, -12.940952, 39.07252), (27.95085, -15.45085, 38.471043), (27.95085, -15.45085, 38.471043), (28.387848, -12.940952, 39.07252), (26.304045, -12.940952, 40.504677), (25.899126, -15.45085, 39.881157), (25.899126, -15.45085, 39.881157), (26.304045, -12.940952, 40.504677), (24.148146, -12.940952, 41.825813), (23.776413, -15.45085, 41.181953), (23.776413, -15.45085, 41.181953), (24.148146, -12.940952, 41.825813), (21.926058, -12.940952, 43.03231), (21.588531, -15.45085, 42.369877), (21.588531, -15.45085, 42.369877), (21.926058, -12.940952, 43.03231), (19.643871, -12.940952, 44.120857), (19.341476, -15.45085, 43.44167), (19.341476, -15.45085, 43.44167), (19.643871, -12.940952, 44.120857), (17.307842, -12.940952, 45.08847), (17.041409, -15.45085, 44.394386), (17.041409, -15.45085, 44.394386), (17.307842, -12.940952, 45.08847), (14.924375, -12.940952, 45.932503), (14.694632, -15.45085, 45.225426), (14.694632, -15.45085, 45.225426), (14.924375, -12.940952, 45.932503), (12.5, -12.940952, 46.650635), (12.307577, -15.45085, 45.932503), (12.307577, -15.45085, 45.932503), (12.5, -12.940952, 46.650635), (10.041364, -12.940952, 47.240902), (9.886788, -15.45085, 46.513683), (9.886788, -15.45085, 46.513683), (10.041364, -12.940952, 47.240902), (7.5552044, -12.940952, 47.701683), (7.438901, -15.45085, 46.967373), (7.438901, -15.45085, 46.967373), (7.5552044, -12.940952, 47.701683), (5.048337, -12.940952, 48.03172), (4.970624, -15.45085, 47.292328), (4.970624, -15.45085, 47.292328), (5.048337, -12.940952, 48.03172), (2.5276325, -12.940952, 48.230103), (2.4887226, -15.45085, 47.487656), (2.4887226, -15.45085, 47.487656), (2.5276325, -12.940952, 48.230103), (2.9572948e-15, -12.940952, 48.29629), (2.9117708e-15, -15.45085, 47.552826), (2.9117708e-15, -15.45085, 47.552826), (2.9572948e-15, -12.940952, 48.29629), (-2.5276325, -12.940952, 48.230103), (-2.4887226, -15.45085, 47.487656), (-2.4887226, -15.45085, 47.487656), (-2.5276325, -12.940952, 48.230103), (-5.048337, -12.940952, 48.03172), (-4.970624, -15.45085, 47.292328), (-4.970624, -15.45085, 47.292328), (-5.048337, -12.940952, 48.03172), (-7.5552044, -12.940952, 47.701683), (-7.438901, -15.45085, 46.967373), (-7.438901, -15.45085, 46.967373), (-7.5552044, -12.940952, 47.701683), (-10.041364, -12.940952, 47.240902), (-9.886788, -15.45085, 46.513683), (-9.886788, -15.45085, 46.513683), (-10.041364, -12.940952, 47.240902), (-12.5, -12.940952, 46.650635), (-12.307577, -15.45085, 45.932503), (-12.307577, -15.45085, 45.932503), (-12.5, -12.940952, 46.650635), (-14.924375, -12.940952, 45.932503), (-14.694632, -15.45085, 45.225426), (-14.694632, -15.45085, 45.225426), (-14.924375, -12.940952, 45.932503), (-17.307842, -12.940952, 45.08847), (-17.041409, -15.45085, 44.394386), (-17.041409, -15.45085, 44.394386), (-17.307842, -12.940952, 45.08847), (-19.643871, -12.940952, 44.120857), (-19.341476, -15.45085, 43.44167), (-19.341476, -15.45085, 43.44167), (-19.643871, -12.940952, 44.120857), (-21.926058, -12.940952, 43.03231), (-21.588531, -15.45085, 42.369877), (-21.588531, -15.45085, 42.369877), (-21.926058, -12.940952, 43.03231), (-24.148146, -12.940952, 41.825813), (-23.776413, -15.45085, 41.181953), (-23.776413, -15.45085, 41.181953), (-24.148146, -12.940952, 41.825813), (-26.304045, -12.940952, 40.504677), (-25.899126, -15.45085, 39.881157), (-25.899126, -15.45085, 39.881157), (-26.304045, -12.940952, 40.504677), (-28.387848, -12.940952, 39.07252), (-27.95085, -15.45085, 38.471043), (-27.95085, -15.45085, 38.471043), (-28.387848, -12.940952, 39.07252), (-30.39384, -12.940952, 37.533268), (-29.925962, -15.45085, 36.955486), (-29.925962, -15.45085, 36.955486), (-30.39384, -12.940952, 37.533268), (-32.31653, -12.940952, 35.89114), (-31.819052, -15.45085, 35.33864), (-31.819052, -15.45085, 35.33864), (-32.31653, -12.940952, 35.89114), (-34.150635, -12.940952, 34.150635), (-33.624924, -15.45085, 33.624924), (-33.624924, -15.45085, 33.624924), (-34.150635, -12.940952, 34.150635), (-35.89114, -12.940952, 32.31653), (-35.33864, -15.45085, 31.819052), (-35.33864, -15.45085, 31.819052), (-35.89114, -12.940952, 32.31653), (-37.533268, -12.940952, 30.39384), (-36.955486, -15.45085, 29.925962), (-36.955486, -15.45085, 29.925962), (-37.533268, -12.940952, 30.39384), (-39.07252, -12.940952, 28.387848), (-38.471043, -15.45085, 27.95085), (-38.471043, -15.45085, 27.95085), (-39.07252, -12.940952, 28.387848), (-40.504677, -12.940952, 26.304045), (-39.881157, -15.45085, 25.899126), (-39.881157, -15.45085, 25.899126), (-40.504677, -12.940952, 26.304045), (-41.825813, -12.940952, 24.148146), (-41.181953, -15.45085, 23.776413), (-41.181953, -15.45085, 23.776413), (-41.825813, -12.940952, 24.148146), (-43.03231, -12.940952, 21.926058), (-42.369877, -15.45085, 21.588531), (-42.369877, -15.45085, 21.588531), (-43.03231, -12.940952, 21.926058), (-44.120857, -12.940952, 19.643871), (-43.44167, -15.45085, 19.341476), (-43.44167, -15.45085, 19.341476), (-44.120857, -12.940952, 19.643871), (-45.08847, -12.940952, 17.307842), (-44.394386, -15.45085, 17.041409), (-44.394386, -15.45085, 17.041409), (-45.08847, -12.940952, 17.307842), (-45.932503, -12.940952, 14.924375), (-45.225426, -15.45085, 14.694632), (-45.225426, -15.45085, 14.694632), (-45.932503, -12.940952, 14.924375), (-46.650635, -12.940952, 12.5), (-45.932503, -15.45085, 12.307577), (-45.932503, -15.45085, 12.307577), (-46.650635, -12.940952, 12.5), (-47.240902, -12.940952, 10.041364), (-46.513683, -15.45085, 9.886788), (-46.513683, -15.45085, 9.886788), (-47.240902, -12.940952, 10.041364), (-47.701683, -12.940952, 7.5552044), (-46.967373, -15.45085, 7.438901), (-46.967373, -15.45085, 7.438901), (-47.701683, -12.940952, 7.5552044), (-48.03172, -12.940952, 5.048337), (-47.292328, -15.45085, 4.970624), (-47.292328, -15.45085, 4.970624), (-48.03172, -12.940952, 5.048337), (-48.230103, -12.940952, 2.5276325), (-47.487656, -15.45085, 2.4887226), (-47.487656, -15.45085, 2.4887226), (-48.230103, -12.940952, 2.5276325), (-48.29629, -12.940952, 5.9145897e-15), (-47.552826, -15.45085, 5.8235417e-15), (-47.552826, -15.45085, 5.8235417e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.230103, -12.940952, -2.5276325), (-47.487656, -15.45085, -2.4887226), (-47.487656, -15.45085, -2.4887226), (-48.230103, -12.940952, -2.5276325), (-48.03172, -12.940952, -5.048337), (-47.292328, -15.45085, -4.970624), (-47.292328, -15.45085, -4.970624), (-48.03172, -12.940952, -5.048337), (-47.701683, -12.940952, -7.5552044), (-46.967373, -15.45085, -7.438901), (-46.967373, -15.45085, -7.438901), (-47.701683, -12.940952, -7.5552044), (-47.240902, -12.940952, -10.041364), (-46.513683, -15.45085, -9.886788), (-46.513683, -15.45085, -9.886788), (-47.240902, -12.940952, -10.041364), (-46.650635, -12.940952, -12.5), (-45.932503, -15.45085, -12.307577), (-45.932503, -15.45085, -12.307577), (-46.650635, -12.940952, -12.5), (-45.932503, -12.940952, -14.924375), (-45.225426, -15.45085, -14.694632), (-45.225426, -15.45085, -14.694632), (-45.932503, -12.940952, -14.924375), (-45.08847, -12.940952, -17.307842), (-44.394386, -15.45085, -17.041409), (-44.394386, -15.45085, -17.041409), (-45.08847, -12.940952, -17.307842), (-44.120857, -12.940952, -19.643871), (-43.44167, -15.45085, -19.341476), (-43.44167, -15.45085, -19.341476), (-44.120857, -12.940952, -19.643871), (-43.03231, -12.940952, -21.926058), (-42.369877, -15.45085, -21.588531), (-42.369877, -15.45085, -21.588531), (-43.03231, -12.940952, -21.926058), (-41.825813, -12.940952, -24.148146), (-41.181953, -15.45085, -23.776413), (-41.181953, -15.45085, -23.776413), (-41.825813, -12.940952, -24.148146), (-40.504677, -12.940952, -26.304045), (-39.881157, -15.45085, -25.899126), (-39.881157, -15.45085, -25.899126), (-40.504677, -12.940952, -26.304045), (-39.07252, -12.940952, -28.387848), (-38.471043, -15.45085, -27.95085), (-38.471043, -15.45085, -27.95085), (-39.07252, -12.940952, -28.387848), (-37.533268, -12.940952, -30.39384), (-36.955486, -15.45085, -29.925962), (-36.955486, -15.45085, -29.925962), (-37.533268, -12.940952, -30.39384), (-35.89114, -12.940952, -32.31653), (-35.33864, -15.45085, -31.819052), (-35.33864, -15.45085, -31.819052), (-35.89114, -12.940952, -32.31653), (-34.150635, -12.940952, -34.150635), (-33.624924, -15.45085, -33.624924), (-33.624924, -15.45085, -33.624924), (-34.150635, -12.940952, -34.150635), (-32.31653, -12.940952, -35.89114), (-31.819052, -15.45085, -35.33864), (-31.819052, -15.45085, -35.33864), (-32.31653, -12.940952, -35.89114), (-30.39384, -12.940952, -37.533268), (-29.925962, -15.45085, -36.955486), (-29.925962, -15.45085, -36.955486), (-30.39384, -12.940952, -37.533268), (-28.387848, -12.940952, -39.07252), (-27.95085, -15.45085, -38.471043), (-27.95085, -15.45085, -38.471043), (-28.387848, -12.940952, -39.07252), (-26.304045, -12.940952, -40.504677), (-25.899126, -15.45085, -39.881157), (-25.899126, -15.45085, -39.881157), (-26.304045, -12.940952, -40.504677), (-24.148146, -12.940952, -41.825813), (-23.776413, -15.45085, -41.181953), (-23.776413, -15.45085, -41.181953), (-24.148146, -12.940952, -41.825813), (-21.926058, -12.940952, -43.03231), (-21.588531, -15.45085, -42.369877), (-21.588531, -15.45085, -42.369877), (-21.926058, -12.940952, -43.03231), (-19.643871, -12.940952, -44.120857), (-19.341476, -15.45085, -43.44167), (-19.341476, -15.45085, -43.44167), (-19.643871, -12.940952, -44.120857), (-17.307842, -12.940952, -45.08847), (-17.041409, -15.45085, -44.394386), (-17.041409, -15.45085, -44.394386), (-17.307842, -12.940952, -45.08847), (-14.924375, -12.940952, -45.932503), (-14.694632, -15.45085, -45.225426), (-14.694632, -15.45085, -45.225426), (-14.924375, -12.940952, -45.932503), (-12.5, -12.940952, -46.650635), (-12.307577, -15.45085, -45.932503), (-12.307577, -15.45085, -45.932503), (-12.5, -12.940952, -46.650635), (-10.041364, -12.940952, -47.240902), (-9.886788, -15.45085, -46.513683), (-9.886788, -15.45085, -46.513683), (-10.041364, -12.940952, -47.240902), (-7.5552044, -12.940952, -47.701683), (-7.438901, -15.45085, -46.967373), (-7.438901, -15.45085, -46.967373), (-7.5552044, -12.940952, -47.701683), (-5.048337, -12.940952, -48.03172), (-4.970624, -15.45085, -47.292328), (-4.970624, -15.45085, -47.292328), (-5.048337, -12.940952, -48.03172), (-2.5276325, -12.940952, -48.230103), (-2.4887226, -15.45085, -47.487656), (-2.4887226, -15.45085, -47.487656), (-2.5276325, -12.940952, -48.230103), (-8.871885e-15, -12.940952, -48.29629), (-8.735313e-15, -15.45085, -47.552826), (-8.735313e-15, -15.45085, -47.552826), (-8.871885e-15, -12.940952, -48.29629), (2.5276325, -12.940952, -48.230103), (2.4887226, -15.45085, -47.487656), (2.4887226, -15.45085, -47.487656), (2.5276325, -12.940952, -48.230103), (5.048337, -12.940952, -48.03172), (4.970624, -15.45085, -47.292328), (4.970624, -15.45085, -47.292328), (5.048337, -12.940952, -48.03172), (7.5552044, -12.940952, -47.701683), (7.438901, -15.45085, -46.967373), (7.438901, -15.45085, -46.967373), (7.5552044, -12.940952, -47.701683), (10.041364, -12.940952, -47.240902), (9.886788, -15.45085, -46.513683), (9.886788, -15.45085, -46.513683), (10.041364, -12.940952, -47.240902), (12.5, -12.940952, -46.650635), (12.307577, -15.45085, -45.932503), (12.307577, -15.45085, -45.932503), (12.5, -12.940952, -46.650635), (14.924375, -12.940952, -45.932503), (14.694632, -15.45085, -45.225426), (14.694632, -15.45085, -45.225426), (14.924375, -12.940952, -45.932503), (17.307842, -12.940952, -45.08847), (17.041409, -15.45085, -44.394386), (17.041409, -15.45085, -44.394386), (17.307842, -12.940952, -45.08847), (19.643871, -12.940952, -44.120857), (19.341476, -15.45085, -43.44167), (19.341476, -15.45085, -43.44167), (19.643871, -12.940952, -44.120857), (21.926058, -12.940952, -43.03231), (21.588531, -15.45085, -42.369877), (21.588531, -15.45085, -42.369877), (21.926058, -12.940952, -43.03231), (24.148146, -12.940952, -41.825813), (23.776413, -15.45085, -41.181953), (23.776413, -15.45085, -41.181953), (24.148146, -12.940952, -41.825813), (26.304045, -12.940952, -40.504677), (25.899126, -15.45085, -39.881157), (25.899126, -15.45085, -39.881157), (26.304045, -12.940952, -40.504677), (28.387848, -12.940952, -39.07252), (27.95085, -15.45085, -38.471043), (27.95085, -15.45085, -38.471043), (28.387848, -12.940952, -39.07252), (30.39384, -12.940952, -37.533268), (29.925962, -15.45085, -36.955486), (29.925962, -15.45085, -36.955486), (30.39384, -12.940952, -37.533268), (32.31653, -12.940952, -35.89114), (31.819052, -15.45085, -35.33864), (31.819052, -15.45085, -35.33864), (32.31653, -12.940952, -35.89114), (34.150635, -12.940952, -34.150635), (33.624924, -15.45085, -33.624924), (33.624924, -15.45085, -33.624924), (34.150635, -12.940952, -34.150635), (35.89114, -12.940952, -32.31653), (35.33864, -15.45085, -31.819052), (35.33864, -15.45085, -31.819052), (35.89114, -12.940952, -32.31653), (37.533268, -12.940952, -30.39384), (36.955486, -15.45085, -29.925962), (36.955486, -15.45085, -29.925962), (37.533268, -12.940952, -30.39384), (39.07252, -12.940952, -28.387848), (38.471043, -15.45085, -27.95085), (38.471043, -15.45085, -27.95085), (39.07252, -12.940952, -28.387848), (40.504677, -12.940952, -26.304045), (39.881157, -15.45085, -25.899126), (39.881157, -15.45085, -25.899126), (40.504677, -12.940952, -26.304045), (41.825813, -12.940952, -24.148146), (41.181953, -15.45085, -23.776413), (41.181953, -15.45085, -23.776413), (41.825813, -12.940952, -24.148146), (43.03231, -12.940952, -21.926058), (42.369877, -15.45085, -21.588531), (42.369877, -15.45085, -21.588531), (43.03231, -12.940952, -21.926058), (44.120857, -12.940952, -19.643871), (43.44167, -15.45085, -19.341476), (43.44167, -15.45085, -19.341476), (44.120857, -12.940952, -19.643871), (45.08847, -12.940952, -17.307842), (44.394386, -15.45085, -17.041409), (44.394386, -15.45085, -17.041409), (45.08847, -12.940952, -17.307842), (45.932503, -12.940952, -14.924375), (45.225426, -15.45085, -14.694632), (45.225426, -15.45085, -14.694632), (45.932503, -12.940952, -14.924375), (46.650635, -12.940952, -12.5), (45.932503, -15.45085, -12.307577), (45.932503, -15.45085, -12.307577), (46.650635, -12.940952, -12.5), (47.240902, -12.940952, -10.041364), (46.513683, -15.45085, -9.886788), (46.513683, -15.45085, -9.886788), (47.240902, -12.940952, -10.041364), (47.701683, -12.940952, -7.5552044), (46.967373, -15.45085, -7.438901), (46.967373, -15.45085, -7.438901), (47.701683, -12.940952, -7.5552044), (48.03172, -12.940952, -5.048337), (47.292328, -15.45085, -4.970624), (47.292328, -15.45085, -4.970624), (48.03172, -12.940952, -5.048337), (48.230103, -12.940952, -2.5276325), (47.487656, -15.45085, -2.4887226), (47.487656, -15.45085, -2.4887226), (48.230103, -12.940952, -2.5276325), (48.29629, -12.940952, 0), (47.552826, -15.45085, 0), (48.29629, -12.940952, 0), (48.90738, -10.395584, 0), (48.840355, -10.395584, 2.5596144), (48.230103, -12.940952, 2.5276325), (48.230103, -12.940952, 2.5276325), (48.840355, -10.395584, 2.5596144), (48.63946, -10.395584, 5.112213), (48.03172, -12.940952, 5.048337), (48.03172, -12.940952, 5.048337), (48.63946, -10.395584, 5.112213), (48.30525, -10.395584, 7.6507998), (47.701683, -12.940952, 7.5552044), (47.701683, -12.940952, 7.5552044), (48.30525, -10.395584, 7.6507998), (47.83864, -10.395584, 10.168416), (47.240902, -12.940952, 10.041364), (47.240902, -12.940952, 10.041364), (47.83864, -10.395584, 10.168416), (47.240902, -10.395584, 12.658161), (46.650635, -12.940952, 12.5), (46.650635, -12.940952, 12.5), (47.240902, -10.395584, 12.658161), (46.513683, -10.395584, 15.113212), (45.932503, -12.940952, 14.924375), (45.932503, -12.940952, 14.924375), (46.513683, -10.395584, 15.113212), (45.658974, -10.395584, 17.526838), (45.08847, -12.940952, 17.307842), (45.08847, -12.940952, 17.307842), (45.658974, -10.395584, 17.526838), (44.679115, -10.395584, 19.892424), (44.120857, -12.940952, 19.643871), (44.120857, -12.940952, 19.643871), (44.679115, -10.395584, 19.892424), (43.576794, -10.395584, 22.203485), (43.03231, -12.940952, 21.926058), (43.03231, -12.940952, 21.926058), (43.576794, -10.395584, 22.203485), (42.355034, -10.395584, 24.45369), (41.825813, -12.940952, 24.148146), (41.825813, -12.940952, 24.148146), (42.355034, -10.395584, 24.45369), (41.01718, -10.395584, 26.636868), (40.504677, -12.940952, 26.304045), (40.504677, -12.940952, 26.304045), (41.01718, -10.395584, 26.636868), (39.566902, -10.395584, 28.747036), (39.07252, -12.940952, 28.387848), (39.07252, -12.940952, 28.387848), (39.566902, -10.395584, 28.747036), (38.00817, -10.395584, 30.778412), (37.533268, -12.940952, 30.39384), (37.533268, -12.940952, 30.39384), (38.00817, -10.395584, 30.778412), (36.34527, -10.395584, 32.725426), (35.89114, -12.940952, 32.31653), (35.89114, -12.940952, 32.31653), (36.34527, -10.395584, 32.725426), (34.58274, -10.395584, 34.58274), (34.150635, -12.940952, 34.150635), (34.150635, -12.940952, 34.150635), (34.58274, -10.395584, 34.58274), (32.725426, -10.395584, 36.34527), (32.31653, -12.940952, 35.89114), (32.31653, -12.940952, 35.89114), (32.725426, -10.395584, 36.34527), (30.778412, -10.395584, 38.00817), (30.39384, -12.940952, 37.533268), (30.39384, -12.940952, 37.533268), (30.778412, -10.395584, 38.00817), (28.747036, -10.395584, 39.566902), (28.387848, -12.940952, 39.07252), (28.387848, -12.940952, 39.07252), (28.747036, -10.395584, 39.566902), (26.636868, -10.395584, 41.01718), (26.304045, -12.940952, 40.504677), (26.304045, -12.940952, 40.504677), (26.636868, -10.395584, 41.01718), (24.45369, -10.395584, 42.355034), (24.148146, -12.940952, 41.825813), (24.148146, -12.940952, 41.825813), (24.45369, -10.395584, 42.355034), (22.203485, -10.395584, 43.576794), (21.926058, -12.940952, 43.03231), (21.926058, -12.940952, 43.03231), (22.203485, -10.395584, 43.576794), (19.892424, -10.395584, 44.679115), (19.643871, -12.940952, 44.120857), (19.643871, -12.940952, 44.120857), (19.892424, -10.395584, 44.679115), (17.526838, -10.395584, 45.658974), (17.307842, -12.940952, 45.08847), (17.307842, -12.940952, 45.08847), (17.526838, -10.395584, 45.658974), (15.113212, -10.395584, 46.513683), (14.924375, -12.940952, 45.932503), (14.924375, -12.940952, 45.932503), (15.113212, -10.395584, 46.513683), (12.658161, -10.395584, 47.240902), (12.5, -12.940952, 46.650635), (12.5, -12.940952, 46.650635), (12.658161, -10.395584, 47.240902), (10.168416, -10.395584, 47.83864), (10.041364, -12.940952, 47.240902), (10.041364, -12.940952, 47.240902), (10.168416, -10.395584, 47.83864), (7.6507998, -10.395584, 48.30525), (7.5552044, -12.940952, 47.701683), (7.5552044, -12.940952, 47.701683), (7.6507998, -10.395584, 48.30525), (5.112213, -10.395584, 48.63946), (5.048337, -12.940952, 48.03172), (5.048337, -12.940952, 48.03172), (5.112213, -10.395584, 48.63946), (2.5596144, -10.395584, 48.840355), (2.5276325, -12.940952, 48.230103), (2.5276325, -12.940952, 48.230103), (2.5596144, -10.395584, 48.840355), (2.9947134e-15, -10.395584, 48.90738), (2.9572948e-15, -12.940952, 48.29629), (2.9572948e-15, -12.940952, 48.29629), (2.9947134e-15, -10.395584, 48.90738), (-2.5596144, -10.395584, 48.840355), (-2.5276325, -12.940952, 48.230103), (-2.5276325, -12.940952, 48.230103), (-2.5596144, -10.395584, 48.840355), (-5.112213, -10.395584, 48.63946), (-5.048337, -12.940952, 48.03172), (-5.048337, -12.940952, 48.03172), (-5.112213, -10.395584, 48.63946), (-7.6507998, -10.395584, 48.30525), (-7.5552044, -12.940952, 47.701683), (-7.5552044, -12.940952, 47.701683), (-7.6507998, -10.395584, 48.30525), (-10.168416, -10.395584, 47.83864), (-10.041364, -12.940952, 47.240902), (-10.041364, -12.940952, 47.240902), (-10.168416, -10.395584, 47.83864), (-12.658161, -10.395584, 47.240902), (-12.5, -12.940952, 46.650635), (-12.5, -12.940952, 46.650635), (-12.658161, -10.395584, 47.240902), (-15.113212, -10.395584, 46.513683), (-14.924375, -12.940952, 45.932503), (-14.924375, -12.940952, 45.932503), (-15.113212, -10.395584, 46.513683), (-17.526838, -10.395584, 45.658974), (-17.307842, -12.940952, 45.08847), (-17.307842, -12.940952, 45.08847), (-17.526838, -10.395584, 45.658974), (-19.892424, -10.395584, 44.679115), (-19.643871, -12.940952, 44.120857), (-19.643871, -12.940952, 44.120857), (-19.892424, -10.395584, 44.679115), (-22.203485, -10.395584, 43.576794), (-21.926058, -12.940952, 43.03231), (-21.926058, -12.940952, 43.03231), (-22.203485, -10.395584, 43.576794), (-24.45369, -10.395584, 42.355034), (-24.148146, -12.940952, 41.825813), (-24.148146, -12.940952, 41.825813), (-24.45369, -10.395584, 42.355034), (-26.636868, -10.395584, 41.01718), (-26.304045, -12.940952, 40.504677), (-26.304045, -12.940952, 40.504677), (-26.636868, -10.395584, 41.01718), (-28.747036, -10.395584, 39.566902), (-28.387848, -12.940952, 39.07252), (-28.387848, -12.940952, 39.07252), (-28.747036, -10.395584, 39.566902), (-30.778412, -10.395584, 38.00817), (-30.39384, -12.940952, 37.533268), (-30.39384, -12.940952, 37.533268), (-30.778412, -10.395584, 38.00817), (-32.725426, -10.395584, 36.34527), (-32.31653, -12.940952, 35.89114), (-32.31653, -12.940952, 35.89114), (-32.725426, -10.395584, 36.34527), (-34.58274, -10.395584, 34.58274), (-34.150635, -12.940952, 34.150635), (-34.150635, -12.940952, 34.150635), (-34.58274, -10.395584, 34.58274), (-36.34527, -10.395584, 32.725426), (-35.89114, -12.940952, 32.31653), (-35.89114, -12.940952, 32.31653), (-36.34527, -10.395584, 32.725426), (-38.00817, -10.395584, 30.778412), (-37.533268, -12.940952, 30.39384), (-37.533268, -12.940952, 30.39384), (-38.00817, -10.395584, 30.778412), (-39.566902, -10.395584, 28.747036), (-39.07252, -12.940952, 28.387848), (-39.07252, -12.940952, 28.387848), (-39.566902, -10.395584, 28.747036), (-41.01718, -10.395584, 26.636868), (-40.504677, -12.940952, 26.304045), (-40.504677, -12.940952, 26.304045), (-41.01718, -10.395584, 26.636868), (-42.355034, -10.395584, 24.45369), (-41.825813, -12.940952, 24.148146), (-41.825813, -12.940952, 24.148146), (-42.355034, -10.395584, 24.45369), (-43.576794, -10.395584, 22.203485), (-43.03231, -12.940952, 21.926058), (-43.03231, -12.940952, 21.926058), (-43.576794, -10.395584, 22.203485), (-44.679115, -10.395584, 19.892424), (-44.120857, -12.940952, 19.643871), (-44.120857, -12.940952, 19.643871), (-44.679115, -10.395584, 19.892424), (-45.658974, -10.395584, 17.526838), (-45.08847, -12.940952, 17.307842), (-45.08847, -12.940952, 17.307842), (-45.658974, -10.395584, 17.526838), (-46.513683, -10.395584, 15.113212), (-45.932503, -12.940952, 14.924375), (-45.932503, -12.940952, 14.924375), (-46.513683, -10.395584, 15.113212), (-47.240902, -10.395584, 12.658161), (-46.650635, -12.940952, 12.5), (-46.650635, -12.940952, 12.5), (-47.240902, -10.395584, 12.658161), (-47.83864, -10.395584, 10.168416), (-47.240902, -12.940952, 10.041364), (-47.240902, -12.940952, 10.041364), (-47.83864, -10.395584, 10.168416), (-48.30525, -10.395584, 7.6507998), (-47.701683, -12.940952, 7.5552044), (-47.701683, -12.940952, 7.5552044), (-48.30525, -10.395584, 7.6507998), (-48.63946, -10.395584, 5.112213), (-48.03172, -12.940952, 5.048337), (-48.03172, -12.940952, 5.048337), (-48.63946, -10.395584, 5.112213), (-48.840355, -10.395584, 2.5596144), (-48.230103, -12.940952, 2.5276325), (-48.230103, -12.940952, 2.5276325), (-48.840355, -10.395584, 2.5596144), (-48.90738, -10.395584, 5.9894267e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.90738, -10.395584, 5.9894267e-15), (-48.840355, -10.395584, -2.5596144), (-48.230103, -12.940952, -2.5276325), (-48.230103, -12.940952, -2.5276325), (-48.840355, -10.395584, -2.5596144), (-48.63946, -10.395584, -5.112213), (-48.03172, -12.940952, -5.048337), (-48.03172, -12.940952, -5.048337), (-48.63946, -10.395584, -5.112213), (-48.30525, -10.395584, -7.6507998), (-47.701683, -12.940952, -7.5552044), (-47.701683, -12.940952, -7.5552044), (-48.30525, -10.395584, -7.6507998), (-47.83864, -10.395584, -10.168416), (-47.240902, -12.940952, -10.041364), (-47.240902, -12.940952, -10.041364), (-47.83864, -10.395584, -10.168416), (-47.240902, -10.395584, -12.658161), (-46.650635, -12.940952, -12.5), (-46.650635, -12.940952, -12.5), (-47.240902, -10.395584, -12.658161), (-46.513683, -10.395584, -15.113212), (-45.932503, -12.940952, -14.924375), (-45.932503, -12.940952, -14.924375), (-46.513683, -10.395584, -15.113212), (-45.658974, -10.395584, -17.526838), (-45.08847, -12.940952, -17.307842), (-45.08847, -12.940952, -17.307842), (-45.658974, -10.395584, -17.526838), (-44.679115, -10.395584, -19.892424), (-44.120857, -12.940952, -19.643871), (-44.120857, -12.940952, -19.643871), (-44.679115, -10.395584, -19.892424), (-43.576794, -10.395584, -22.203485), (-43.03231, -12.940952, -21.926058), (-43.03231, -12.940952, -21.926058), (-43.576794, -10.395584, -22.203485), (-42.355034, -10.395584, -24.45369), (-41.825813, -12.940952, -24.148146), (-41.825813, -12.940952, -24.148146), (-42.355034, -10.395584, -24.45369), (-41.01718, -10.395584, -26.636868), (-40.504677, -12.940952, -26.304045), (-40.504677, -12.940952, -26.304045), (-41.01718, -10.395584, -26.636868), (-39.566902, -10.395584, -28.747036), (-39.07252, -12.940952, -28.387848), (-39.07252, -12.940952, -28.387848), (-39.566902, -10.395584, -28.747036), (-38.00817, -10.395584, -30.778412), (-37.533268, -12.940952, -30.39384), (-37.533268, -12.940952, -30.39384), (-38.00817, -10.395584, -30.778412), (-36.34527, -10.395584, -32.725426), (-35.89114, -12.940952, -32.31653), (-35.89114, -12.940952, -32.31653), (-36.34527, -10.395584, -32.725426), (-34.58274, -10.395584, -34.58274), (-34.150635, -12.940952, -34.150635), (-34.150635, -12.940952, -34.150635), (-34.58274, -10.395584, -34.58274), (-32.725426, -10.395584, -36.34527), (-32.31653, -12.940952, -35.89114), (-32.31653, -12.940952, -35.89114), (-32.725426, -10.395584, -36.34527), (-30.778412, -10.395584, -38.00817), (-30.39384, -12.940952, -37.533268), (-30.39384, -12.940952, -37.533268), (-30.778412, -10.395584, -38.00817), (-28.747036, -10.395584, -39.566902), (-28.387848, -12.940952, -39.07252), (-28.387848, -12.940952, -39.07252), (-28.747036, -10.395584, -39.566902), (-26.636868, -10.395584, -41.01718), (-26.304045, -12.940952, -40.504677), (-26.304045, -12.940952, -40.504677), (-26.636868, -10.395584, -41.01718), (-24.45369, -10.395584, -42.355034), (-24.148146, -12.940952, -41.825813), (-24.148146, -12.940952, -41.825813), (-24.45369, -10.395584, -42.355034), (-22.203485, -10.395584, -43.576794), (-21.926058, -12.940952, -43.03231), (-21.926058, -12.940952, -43.03231), (-22.203485, -10.395584, -43.576794), (-19.892424, -10.395584, -44.679115), (-19.643871, -12.940952, -44.120857), (-19.643871, -12.940952, -44.120857), (-19.892424, -10.395584, -44.679115), (-17.526838, -10.395584, -45.658974), (-17.307842, -12.940952, -45.08847), (-17.307842, -12.940952, -45.08847), (-17.526838, -10.395584, -45.658974), (-15.113212, -10.395584, -46.513683), (-14.924375, -12.940952, -45.932503), (-14.924375, -12.940952, -45.932503), (-15.113212, -10.395584, -46.513683), (-12.658161, -10.395584, -47.240902), (-12.5, -12.940952, -46.650635), (-12.5, -12.940952, -46.650635), (-12.658161, -10.395584, -47.240902), (-10.168416, -10.395584, -47.83864), (-10.041364, -12.940952, -47.240902), (-10.041364, -12.940952, -47.240902), (-10.168416, -10.395584, -47.83864), (-7.6507998, -10.395584, -48.30525), (-7.5552044, -12.940952, -47.701683), (-7.5552044, -12.940952, -47.701683), (-7.6507998, -10.395584, -48.30525), (-5.112213, -10.395584, -48.63946), (-5.048337, -12.940952, -48.03172), (-5.048337, -12.940952, -48.03172), (-5.112213, -10.395584, -48.63946), (-2.5596144, -10.395584, -48.840355), (-2.5276325, -12.940952, -48.230103), (-2.5276325, -12.940952, -48.230103), (-2.5596144, -10.395584, -48.840355), (-8.98414e-15, -10.395584, -48.90738), (-8.871885e-15, -12.940952, -48.29629), (-8.871885e-15, -12.940952, -48.29629), (-8.98414e-15, -10.395584, -48.90738), (2.5596144, -10.395584, -48.840355), (2.5276325, -12.940952, -48.230103), (2.5276325, -12.940952, -48.230103), (2.5596144, -10.395584, -48.840355), (5.112213, -10.395584, -48.63946), (5.048337, -12.940952, -48.03172), (5.048337, -12.940952, -48.03172), (5.112213, -10.395584, -48.63946), (7.6507998, -10.395584, -48.30525), (7.5552044, -12.940952, -47.701683), (7.5552044, -12.940952, -47.701683), (7.6507998, -10.395584, -48.30525), (10.168416, -10.395584, -47.83864), (10.041364, -12.940952, -47.240902), (10.041364, -12.940952, -47.240902), (10.168416, -10.395584, -47.83864), (12.658161, -10.395584, -47.240902), (12.5, -12.940952, -46.650635), (12.5, -12.940952, -46.650635), (12.658161, -10.395584, -47.240902), (15.113212, -10.395584, -46.513683), (14.924375, -12.940952, -45.932503), (14.924375, -12.940952, -45.932503), (15.113212, -10.395584, -46.513683), (17.526838, -10.395584, -45.658974), (17.307842, -12.940952, -45.08847), (17.307842, -12.940952, -45.08847), (17.526838, -10.395584, -45.658974), (19.892424, -10.395584, -44.679115), (19.643871, -12.940952, -44.120857), (19.643871, -12.940952, -44.120857), (19.892424, -10.395584, -44.679115), (22.203485, -10.395584, -43.576794), (21.926058, -12.940952, -43.03231), (21.926058, -12.940952, -43.03231), (22.203485, -10.395584, -43.576794), (24.45369, -10.395584, -42.355034), (24.148146, -12.940952, -41.825813), (24.148146, -12.940952, -41.825813), (24.45369, -10.395584, -42.355034), (26.636868, -10.395584, -41.01718), (26.304045, -12.940952, -40.504677), (26.304045, -12.940952, -40.504677), (26.636868, -10.395584, -41.01718), (28.747036, -10.395584, -39.566902), (28.387848, -12.940952, -39.07252), (28.387848, -12.940952, -39.07252), (28.747036, -10.395584, -39.566902), (30.778412, -10.395584, -38.00817), (30.39384, -12.940952, -37.533268), (30.39384, -12.940952, -37.533268), (30.778412, -10.395584, -38.00817), (32.725426, -10.395584, -36.34527), (32.31653, -12.940952, -35.89114), (32.31653, -12.940952, -35.89114), (32.725426, -10.395584, -36.34527), (34.58274, -10.395584, -34.58274), (34.150635, -12.940952, -34.150635), (34.150635, -12.940952, -34.150635), (34.58274, -10.395584, -34.58274), (36.34527, -10.395584, -32.725426), (35.89114, -12.940952, -32.31653), (35.89114, -12.940952, -32.31653), (36.34527, -10.395584, -32.725426), (38.00817, -10.395584, -30.778412), (37.533268, -12.940952, -30.39384), (37.533268, -12.940952, -30.39384), (38.00817, -10.395584, -30.778412), (39.566902, -10.395584, -28.747036), (39.07252, -12.940952, -28.387848), (39.07252, -12.940952, -28.387848), (39.566902, -10.395584, -28.747036), (41.01718, -10.395584, -26.636868), (40.504677, -12.940952, -26.304045), (40.504677, -12.940952, -26.304045), (41.01718, -10.395584, -26.636868), (42.355034, -10.395584, -24.45369), (41.825813, -12.940952, -24.148146), (41.825813, -12.940952, -24.148146), (42.355034, -10.395584, -24.45369), (43.576794, -10.395584, -22.203485), (43.03231, -12.940952, -21.926058), (43.03231, -12.940952, -21.926058), (43.576794, -10.395584, -22.203485), (44.679115, -10.395584, -19.892424), (44.120857, -12.940952, -19.643871), (44.120857, -12.940952, -19.643871), (44.679115, -10.395584, -19.892424), (45.658974, -10.395584, -17.526838), (45.08847, -12.940952, -17.307842), (45.08847, -12.940952, -17.307842), (45.658974, -10.395584, -17.526838), (46.513683, -10.395584, -15.113212), (45.932503, -12.940952, -14.924375), (45.932503, -12.940952, -14.924375), (46.513683, -10.395584, -15.113212), (47.240902, -10.395584, -12.658161), (46.650635, -12.940952, -12.5), (46.650635, -12.940952, -12.5), (47.240902, -10.395584, -12.658161), (47.83864, -10.395584, -10.168416), (47.240902, -12.940952, -10.041364), (47.240902, -12.940952, -10.041364), (47.83864, -10.395584, -10.168416), (48.30525, -10.395584, -7.6507998), (47.701683, -12.940952, -7.5552044), (47.701683, -12.940952, -7.5552044), (48.30525, -10.395584, -7.6507998), (48.63946, -10.395584, -5.112213), (48.03172, -12.940952, -5.048337), (48.03172, -12.940952, -5.048337), (48.63946, -10.395584, -5.112213), (48.840355, -10.395584, -2.5596144), (48.230103, -12.940952, -2.5276325), (48.230103, -12.940952, -2.5276325), (48.840355, -10.395584, -2.5596144), (48.90738, -10.395584, 0), (48.29629, -12.940952, 0), (48.90738, -10.395584, 0), (49.38442, -7.8217235, 0), (49.31674, -7.8217235, 2.5845807), (48.840355, -10.395584, 2.5596144), (48.840355, -10.395584, 2.5596144), (49.31674, -7.8217235, 2.5845807), (49.113884, -7.8217235, 5.1620774), (48.63946, -10.395584, 5.112213), (48.63946, -10.395584, 5.112213), (49.113884, -7.8217235, 5.1620774), (48.776413, -7.8217235, 7.725425), (48.30525, -10.395584, 7.6507998), (48.30525, -10.395584, 7.6507998), (48.776413, -7.8217235, 7.725425), (48.30525, -7.8217235, 10.267597), (47.83864, -10.395584, 10.168416), (47.83864, -10.395584, 10.168416), (48.30525, -7.8217235, 10.267597), (47.701683, -7.8217235, 12.781628), (47.240902, -10.395584, 12.658161), (47.240902, -10.395584, 12.658161), (47.701683, -7.8217235, 12.781628), (46.967373, -7.8217235, 15.260624), (46.513683, -10.395584, 15.113212), (46.513683, -10.395584, 15.113212), (46.967373, -7.8217235, 15.260624), (46.104324, -7.8217235, 17.697792), (45.658974, -10.395584, 17.526838), (45.658974, -10.395584, 17.526838), (46.104324, -7.8217235, 17.697792), (45.11491, -7.8217235, 20.086452), (44.679115, -10.395584, 19.892424), (44.679115, -10.395584, 19.892424), (45.11491, -7.8217235, 20.086452), (44.00184, -7.8217235, 22.420055), (43.576794, -10.395584, 22.203485), (43.576794, -10.395584, 22.203485), (44.00184, -7.8217235, 22.420055), (42.768158, -7.8217235, 24.69221), (42.355034, -10.395584, 24.45369), (42.355034, -10.395584, 24.45369), (42.768158, -7.8217235, 24.69221), (41.417255, -7.8217235, 26.89668), (41.01718, -10.395584, 26.636868), (41.01718, -10.395584, 26.636868), (41.417255, -7.8217235, 26.89668), (39.95283, -7.8217235, 29.027431), (39.566902, -10.395584, 28.747036), (39.566902, -10.395584, 28.747036), (39.95283, -7.8217235, 29.027431), (38.3789, -7.8217235, 31.07862), (38.00817, -10.395584, 30.778412), (38.00817, -10.395584, 30.778412), (38.3789, -7.8217235, 31.07862), (36.699776, -7.8217235, 33.044624), (36.34527, -10.395584, 32.725426), (36.34527, -10.395584, 32.725426), (36.699776, -7.8217235, 33.044624), (34.920055, -7.8217235, 34.920055), (34.58274, -10.395584, 34.58274), (34.58274, -10.395584, 34.58274), (34.920055, -7.8217235, 34.920055), (33.044624, -7.8217235, 36.699776), (32.725426, -10.395584, 36.34527), (32.725426, -10.395584, 36.34527), (33.044624, -7.8217235, 36.699776), (31.07862, -7.8217235, 38.3789), (30.778412, -10.395584, 38.00817), (30.778412, -10.395584, 38.00817), (31.07862, -7.8217235, 38.3789), (29.027431, -7.8217235, 39.95283), (28.747036, -10.395584, 39.566902), (28.747036, -10.395584, 39.566902), (29.027431, -7.8217235, 39.95283), (26.89668, -7.8217235, 41.417255), (26.636868, -10.395584, 41.01718), (26.636868, -10.395584, 41.01718), (26.89668, -7.8217235, 41.417255), (24.69221, -7.8217235, 42.768158), (24.45369, -10.395584, 42.355034), (24.45369, -10.395584, 42.355034), (24.69221, -7.8217235, 42.768158), (22.420055, -7.8217235, 44.00184), (22.203485, -10.395584, 43.576794), (22.203485, -10.395584, 43.576794), (22.420055, -7.8217235, 44.00184), (20.086452, -7.8217235, 45.11491), (19.892424, -10.395584, 44.679115), (19.892424, -10.395584, 44.679115), (20.086452, -7.8217235, 45.11491), (17.697792, -7.8217235, 46.104324), (17.526838, -10.395584, 45.658974), (17.526838, -10.395584, 45.658974), (17.697792, -7.8217235, 46.104324), (15.260624, -7.8217235, 46.967373), (15.113212, -10.395584, 46.513683), (15.113212, -10.395584, 46.513683), (15.260624, -7.8217235, 46.967373), (12.781628, -7.8217235, 47.701683), (12.658161, -10.395584, 47.240902), (12.658161, -10.395584, 47.240902), (12.781628, -7.8217235, 47.701683), (10.267597, -7.8217235, 48.30525), (10.168416, -10.395584, 47.83864), (10.168416, -10.395584, 47.83864), (10.267597, -7.8217235, 48.30525), (7.725425, -7.8217235, 48.776413), (7.6507998, -10.395584, 48.30525), (7.6507998, -10.395584, 48.30525), (7.725425, -7.8217235, 48.776413), (5.1620774, -7.8217235, 49.113884), (5.112213, -10.395584, 48.63946), (5.112213, -10.395584, 48.63946), (5.1620774, -7.8217235, 49.113884), (2.5845807, -7.8217235, 49.31674), (2.5596144, -10.395584, 48.840355), (2.5596144, -10.395584, 48.840355), (2.5845807, -7.8217235, 49.31674), (3.0239235e-15, -7.8217235, 49.38442), (2.9947134e-15, -10.395584, 48.90738), (2.9947134e-15, -10.395584, 48.90738), (3.0239235e-15, -7.8217235, 49.38442), (-2.5845807, -7.8217235, 49.31674), (-2.5596144, -10.395584, 48.840355), (-2.5596144, -10.395584, 48.840355), (-2.5845807, -7.8217235, 49.31674), (-5.1620774, -7.8217235, 49.113884), (-5.112213, -10.395584, 48.63946), (-5.112213, -10.395584, 48.63946), (-5.1620774, -7.8217235, 49.113884), (-7.725425, -7.8217235, 48.776413), (-7.6507998, -10.395584, 48.30525), (-7.6507998, -10.395584, 48.30525), (-7.725425, -7.8217235, 48.776413), (-10.267597, -7.8217235, 48.30525), (-10.168416, -10.395584, 47.83864), (-10.168416, -10.395584, 47.83864), (-10.267597, -7.8217235, 48.30525), (-12.781628, -7.8217235, 47.701683), (-12.658161, -10.395584, 47.240902), (-12.658161, -10.395584, 47.240902), (-12.781628, -7.8217235, 47.701683), (-15.260624, -7.8217235, 46.967373), (-15.113212, -10.395584, 46.513683), (-15.113212, -10.395584, 46.513683), (-15.260624, -7.8217235, 46.967373), (-17.697792, -7.8217235, 46.104324), (-17.526838, -10.395584, 45.658974), (-17.526838, -10.395584, 45.658974), (-17.697792, -7.8217235, 46.104324), (-20.086452, -7.8217235, 45.11491), (-19.892424, -10.395584, 44.679115), (-19.892424, -10.395584, 44.679115), (-20.086452, -7.8217235, 45.11491), (-22.420055, -7.8217235, 44.00184), (-22.203485, -10.395584, 43.576794), (-22.203485, -10.395584, 43.576794), (-22.420055, -7.8217235, 44.00184), (-24.69221, -7.8217235, 42.768158), (-24.45369, -10.395584, 42.355034), (-24.45369, -10.395584, 42.355034), (-24.69221, -7.8217235, 42.768158), (-26.89668, -7.8217235, 41.417255), (-26.636868, -10.395584, 41.01718), (-26.636868, -10.395584, 41.01718), (-26.89668, -7.8217235, 41.417255), (-29.027431, -7.8217235, 39.95283), (-28.747036, -10.395584, 39.566902), (-28.747036, -10.395584, 39.566902), (-29.027431, -7.8217235, 39.95283), (-31.07862, -7.8217235, 38.3789), (-30.778412, -10.395584, 38.00817), (-30.778412, -10.395584, 38.00817), (-31.07862, -7.8217235, 38.3789), (-33.044624, -7.8217235, 36.699776), (-32.725426, -10.395584, 36.34527), (-32.725426, -10.395584, 36.34527), (-33.044624, -7.8217235, 36.699776), (-34.920055, -7.8217235, 34.920055), (-34.58274, -10.395584, 34.58274), (-34.58274, -10.395584, 34.58274), (-34.920055, -7.8217235, 34.920055), (-36.699776, -7.8217235, 33.044624), (-36.34527, -10.395584, 32.725426), (-36.34527, -10.395584, 32.725426), (-36.699776, -7.8217235, 33.044624), (-38.3789, -7.8217235, 31.07862), (-38.00817, -10.395584, 30.778412), (-38.00817, -10.395584, 30.778412), (-38.3789, -7.8217235, 31.07862), (-39.95283, -7.8217235, 29.027431), (-39.566902, -10.395584, 28.747036), (-39.566902, -10.395584, 28.747036), (-39.95283, -7.8217235, 29.027431), (-41.417255, -7.8217235, 26.89668), (-41.01718, -10.395584, 26.636868), (-41.01718, -10.395584, 26.636868), (-41.417255, -7.8217235, 26.89668), (-42.768158, -7.8217235, 24.69221), (-42.355034, -10.395584, 24.45369), (-42.355034, -10.395584, 24.45369), (-42.768158, -7.8217235, 24.69221), (-44.00184, -7.8217235, 22.420055), (-43.576794, -10.395584, 22.203485), (-43.576794, -10.395584, 22.203485), (-44.00184, -7.8217235, 22.420055), (-45.11491, -7.8217235, 20.086452), (-44.679115, -10.395584, 19.892424), (-44.679115, -10.395584, 19.892424), (-45.11491, -7.8217235, 20.086452), (-46.104324, -7.8217235, 17.697792), (-45.658974, -10.395584, 17.526838), (-45.658974, -10.395584, 17.526838), (-46.104324, -7.8217235, 17.697792), (-46.967373, -7.8217235, 15.260624), (-46.513683, -10.395584, 15.113212), (-46.513683, -10.395584, 15.113212), (-46.967373, -7.8217235, 15.260624), (-47.701683, -7.8217235, 12.781628), (-47.240902, -10.395584, 12.658161), (-47.240902, -10.395584, 12.658161), (-47.701683, -7.8217235, 12.781628), (-48.30525, -7.8217235, 10.267597), (-47.83864, -10.395584, 10.168416), (-47.83864, -10.395584, 10.168416), (-48.30525, -7.8217235, 10.267597), (-48.776413, -7.8217235, 7.725425), (-48.30525, -10.395584, 7.6507998), (-48.30525, -10.395584, 7.6507998), (-48.776413, -7.8217235, 7.725425), (-49.113884, -7.8217235, 5.1620774), (-48.63946, -10.395584, 5.112213), (-48.63946, -10.395584, 5.112213), (-49.113884, -7.8217235, 5.1620774), (-49.31674, -7.8217235, 2.5845807), (-48.840355, -10.395584, 2.5596144), (-48.840355, -10.395584, 2.5596144), (-49.31674, -7.8217235, 2.5845807), (-49.38442, -7.8217235, 6.047847e-15), (-48.90738, -10.395584, 5.9894267e-15), (-48.90738, -10.395584, 5.9894267e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.31674, -7.8217235, -2.5845807), (-48.840355, -10.395584, -2.5596144), (-48.840355, -10.395584, -2.5596144), (-49.31674, -7.8217235, -2.5845807), (-49.113884, -7.8217235, -5.1620774), (-48.63946, -10.395584, -5.112213), (-48.63946, -10.395584, -5.112213), (-49.113884, -7.8217235, -5.1620774), (-48.776413, -7.8217235, -7.725425), (-48.30525, -10.395584, -7.6507998), (-48.30525, -10.395584, -7.6507998), (-48.776413, -7.8217235, -7.725425), (-48.30525, -7.8217235, -10.267597), (-47.83864, -10.395584, -10.168416), (-47.83864, -10.395584, -10.168416), (-48.30525, -7.8217235, -10.267597), (-47.701683, -7.8217235, -12.781628), (-47.240902, -10.395584, -12.658161), (-47.240902, -10.395584, -12.658161), (-47.701683, -7.8217235, -12.781628), (-46.967373, -7.8217235, -15.260624), (-46.513683, -10.395584, -15.113212), (-46.513683, -10.395584, -15.113212), (-46.967373, -7.8217235, -15.260624), (-46.104324, -7.8217235, -17.697792), (-45.658974, -10.395584, -17.526838), (-45.658974, -10.395584, -17.526838), (-46.104324, -7.8217235, -17.697792), (-45.11491, -7.8217235, -20.086452), (-44.679115, -10.395584, -19.892424), (-44.679115, -10.395584, -19.892424), (-45.11491, -7.8217235, -20.086452), (-44.00184, -7.8217235, -22.420055), (-43.576794, -10.395584, -22.203485), (-43.576794, -10.395584, -22.203485), (-44.00184, -7.8217235, -22.420055), (-42.768158, -7.8217235, -24.69221), (-42.355034, -10.395584, -24.45369), (-42.355034, -10.395584, -24.45369), (-42.768158, -7.8217235, -24.69221), (-41.417255, -7.8217235, -26.89668), (-41.01718, -10.395584, -26.636868), (-41.01718, -10.395584, -26.636868), (-41.417255, -7.8217235, -26.89668), (-39.95283, -7.8217235, -29.027431), (-39.566902, -10.395584, -28.747036), (-39.566902, -10.395584, -28.747036), (-39.95283, -7.8217235, -29.027431), (-38.3789, -7.8217235, -31.07862), (-38.00817, -10.395584, -30.778412), (-38.00817, -10.395584, -30.778412), (-38.3789, -7.8217235, -31.07862), (-36.699776, -7.8217235, -33.044624), (-36.34527, -10.395584, -32.725426), (-36.34527, -10.395584, -32.725426), (-36.699776, -7.8217235, -33.044624), (-34.920055, -7.8217235, -34.920055), (-34.58274, -10.395584, -34.58274), (-34.58274, -10.395584, -34.58274), (-34.920055, -7.8217235, -34.920055), (-33.044624, -7.8217235, -36.699776), (-32.725426, -10.395584, -36.34527), (-32.725426, -10.395584, -36.34527), (-33.044624, -7.8217235, -36.699776), (-31.07862, -7.8217235, -38.3789), (-30.778412, -10.395584, -38.00817), (-30.778412, -10.395584, -38.00817), (-31.07862, -7.8217235, -38.3789), (-29.027431, -7.8217235, -39.95283), (-28.747036, -10.395584, -39.566902), (-28.747036, -10.395584, -39.566902), (-29.027431, -7.8217235, -39.95283), (-26.89668, -7.8217235, -41.417255), (-26.636868, -10.395584, -41.01718), (-26.636868, -10.395584, -41.01718), (-26.89668, -7.8217235, -41.417255), (-24.69221, -7.8217235, -42.768158), (-24.45369, -10.395584, -42.355034), (-24.45369, -10.395584, -42.355034), (-24.69221, -7.8217235, -42.768158), (-22.420055, -7.8217235, -44.00184), (-22.203485, -10.395584, -43.576794), (-22.203485, -10.395584, -43.576794), (-22.420055, -7.8217235, -44.00184), (-20.086452, -7.8217235, -45.11491), (-19.892424, -10.395584, -44.679115), (-19.892424, -10.395584, -44.679115), (-20.086452, -7.8217235, -45.11491), (-17.697792, -7.8217235, -46.104324), (-17.526838, -10.395584, -45.658974), (-17.526838, -10.395584, -45.658974), (-17.697792, -7.8217235, -46.104324), (-15.260624, -7.8217235, -46.967373), (-15.113212, -10.395584, -46.513683), (-15.113212, -10.395584, -46.513683), (-15.260624, -7.8217235, -46.967373), (-12.781628, -7.8217235, -47.701683), (-12.658161, -10.395584, -47.240902), (-12.658161, -10.395584, -47.240902), (-12.781628, -7.8217235, -47.701683), (-10.267597, -7.8217235, -48.30525), (-10.168416, -10.395584, -47.83864), (-10.168416, -10.395584, -47.83864), (-10.267597, -7.8217235, -48.30525), (-7.725425, -7.8217235, -48.776413), (-7.6507998, -10.395584, -48.30525), (-7.6507998, -10.395584, -48.30525), (-7.725425, -7.8217235, -48.776413), (-5.1620774, -7.8217235, -49.113884), (-5.112213, -10.395584, -48.63946), (-5.112213, -10.395584, -48.63946), (-5.1620774, -7.8217235, -49.113884), (-2.5845807, -7.8217235, -49.31674), (-2.5596144, -10.395584, -48.840355), (-2.5596144, -10.395584, -48.840355), (-2.5845807, -7.8217235, -49.31674), (-9.07177e-15, -7.8217235, -49.38442), (-8.98414e-15, -10.395584, -48.90738), (-8.98414e-15, -10.395584, -48.90738), (-9.07177e-15, -7.8217235, -49.38442), (2.5845807, -7.8217235, -49.31674), (2.5596144, -10.395584, -48.840355), (2.5596144, -10.395584, -48.840355), (2.5845807, -7.8217235, -49.31674), (5.1620774, -7.8217235, -49.113884), (5.112213, -10.395584, -48.63946), (5.112213, -10.395584, -48.63946), (5.1620774, -7.8217235, -49.113884), (7.725425, -7.8217235, -48.776413), (7.6507998, -10.395584, -48.30525), (7.6507998, -10.395584, -48.30525), (7.725425, -7.8217235, -48.776413), (10.267597, -7.8217235, -48.30525), (10.168416, -10.395584, -47.83864), (10.168416, -10.395584, -47.83864), (10.267597, -7.8217235, -48.30525), (12.781628, -7.8217235, -47.701683), (12.658161, -10.395584, -47.240902), (12.658161, -10.395584, -47.240902), (12.781628, -7.8217235, -47.701683), (15.260624, -7.8217235, -46.967373), (15.113212, -10.395584, -46.513683), (15.113212, -10.395584, -46.513683), (15.260624, -7.8217235, -46.967373), (17.697792, -7.8217235, -46.104324), (17.526838, -10.395584, -45.658974), (17.526838, -10.395584, -45.658974), (17.697792, -7.8217235, -46.104324), (20.086452, -7.8217235, -45.11491), (19.892424, -10.395584, -44.679115), (19.892424, -10.395584, -44.679115), (20.086452, -7.8217235, -45.11491), (22.420055, -7.8217235, -44.00184), (22.203485, -10.395584, -43.576794), (22.203485, -10.395584, -43.576794), (22.420055, -7.8217235, -44.00184), (24.69221, -7.8217235, -42.768158), (24.45369, -10.395584, -42.355034), (24.45369, -10.395584, -42.355034), (24.69221, -7.8217235, -42.768158), (26.89668, -7.8217235, -41.417255), (26.636868, -10.395584, -41.01718), (26.636868, -10.395584, -41.01718), (26.89668, -7.8217235, -41.417255), (29.027431, -7.8217235, -39.95283), (28.747036, -10.395584, -39.566902), (28.747036, -10.395584, -39.566902), (29.027431, -7.8217235, -39.95283), (31.07862, -7.8217235, -38.3789), (30.778412, -10.395584, -38.00817), (30.778412, -10.395584, -38.00817), (31.07862, -7.8217235, -38.3789), (33.044624, -7.8217235, -36.699776), (32.725426, -10.395584, -36.34527), (32.725426, -10.395584, -36.34527), (33.044624, -7.8217235, -36.699776), (34.920055, -7.8217235, -34.920055), (34.58274, -10.395584, -34.58274), (34.58274, -10.395584, -34.58274), (34.920055, -7.8217235, -34.920055), (36.699776, -7.8217235, -33.044624), (36.34527, -10.395584, -32.725426), (36.34527, -10.395584, -32.725426), (36.699776, -7.8217235, -33.044624), (38.3789, -7.8217235, -31.07862), (38.00817, -10.395584, -30.778412), (38.00817, -10.395584, -30.778412), (38.3789, -7.8217235, -31.07862), (39.95283, -7.8217235, -29.027431), (39.566902, -10.395584, -28.747036), (39.566902, -10.395584, -28.747036), (39.95283, -7.8217235, -29.027431), (41.417255, -7.8217235, -26.89668), (41.01718, -10.395584, -26.636868), (41.01718, -10.395584, -26.636868), (41.417255, -7.8217235, -26.89668), (42.768158, -7.8217235, -24.69221), (42.355034, -10.395584, -24.45369), (42.355034, -10.395584, -24.45369), (42.768158, -7.8217235, -24.69221), (44.00184, -7.8217235, -22.420055), (43.576794, -10.395584, -22.203485), (43.576794, -10.395584, -22.203485), (44.00184, -7.8217235, -22.420055), (45.11491, -7.8217235, -20.086452), (44.679115, -10.395584, -19.892424), (44.679115, -10.395584, -19.892424), (45.11491, -7.8217235, -20.086452), (46.104324, -7.8217235, -17.697792), (45.658974, -10.395584, -17.526838), (45.658974, -10.395584, -17.526838), (46.104324, -7.8217235, -17.697792), (46.967373, -7.8217235, -15.260624), (46.513683, -10.395584, -15.113212), (46.513683, -10.395584, -15.113212), (46.967373, -7.8217235, -15.260624), (47.701683, -7.8217235, -12.781628), (47.240902, -10.395584, -12.658161), (47.240902, -10.395584, -12.658161), (47.701683, -7.8217235, -12.781628), (48.30525, -7.8217235, -10.267597), (47.83864, -10.395584, -10.168416), (47.83864, -10.395584, -10.168416), (48.30525, -7.8217235, -10.267597), (48.776413, -7.8217235, -7.725425), (48.30525, -10.395584, -7.6507998), (48.30525, -10.395584, -7.6507998), (48.776413, -7.8217235, -7.725425), (49.113884, -7.8217235, -5.1620774), (48.63946, -10.395584, -5.112213), (48.63946, -10.395584, -5.112213), (49.113884, -7.8217235, -5.1620774), (49.31674, -7.8217235, -2.5845807), (48.840355, -10.395584, -2.5596144), (48.840355, -10.395584, -2.5596144), (49.31674, -7.8217235, -2.5845807), (49.38442, -7.8217235, 0), (48.90738, -10.395584, 0), (49.38442, -7.8217235, 0), (49.726093, -5.2264233, 0), (49.657948, -5.2264233, 2.6024628), (49.31674, -7.8217235, 2.5845807), (49.31674, -7.8217235, 2.5845807), (49.657948, -5.2264233, 2.6024628), (49.45369, -5.2264233, 5.197792), (49.113884, -7.8217235, 5.1620774), (49.113884, -7.8217235, 5.1620774), (49.45369, -5.2264233, 5.197792), (49.113884, -5.2264233, 7.778875), (48.776413, -7.8217235, 7.725425), (48.776413, -7.8217235, 7.725425), (49.113884, -5.2264233, 7.778875), (48.63946, -5.2264233, 10.338636), (48.30525, -7.8217235, 10.267597), (48.30525, -7.8217235, 10.267597), (48.63946, -5.2264233, 10.338636), (48.03172, -5.2264233, 12.87006), (47.701683, -7.8217235, 12.781628), (47.701683, -7.8217235, 12.781628), (48.03172, -5.2264233, 12.87006), (47.292328, -5.2264233, 15.366208), (46.967373, -7.8217235, 15.260624), (46.967373, -7.8217235, 15.260624), (47.292328, -5.2264233, 15.366208), (46.42331, -5.2264233, 17.820238), (46.104324, -7.8217235, 17.697792), (46.104324, -7.8217235, 17.697792), (46.42331, -5.2264233, 17.820238), (45.427048, -5.2264233, 20.225426), (45.11491, -7.8217235, 20.086452), (45.11491, -7.8217235, 20.086452), (45.427048, -5.2264233, 20.225426), (44.306274, -5.2264233, 22.575174), (44.00184, -7.8217235, 22.420055), (44.00184, -7.8217235, 22.420055), (44.306274, -5.2264233, 22.575174), (43.06406, -5.2264233, 24.863047), (42.768158, -7.8217235, 24.69221), (42.768158, -7.8217235, 24.69221), (43.06406, -5.2264233, 24.863047), (41.70381, -5.2264233, 27.082773), (41.417255, -7.8217235, 26.89668), (41.417255, -7.8217235, 26.89668), (41.70381, -5.2264233, 27.082773), (40.229256, -5.2264233, 29.228266), (39.95283, -7.8217235, 29.027431), (39.95283, -7.8217235, 29.027431), (40.229256, -5.2264233, 29.228266), (38.644432, -5.2264233, 31.293646), (38.3789, -7.8217235, 31.07862), (38.3789, -7.8217235, 31.07862), (38.644432, -5.2264233, 31.293646), (36.95369, -5.2264233, 33.27325), (36.699776, -7.8217235, 33.044624), (36.699776, -7.8217235, 33.044624), (36.95369, -5.2264233, 33.27325), (35.16166, -5.2264233, 35.16166), (34.920055, -7.8217235, 34.920055), (34.920055, -7.8217235, 34.920055), (35.16166, -5.2264233, 35.16166), (33.27325, -5.2264233, 36.95369), (33.044624, -7.8217235, 36.699776), (33.044624, -7.8217235, 36.699776), (33.27325, -5.2264233, 36.95369), (31.293646, -5.2264233, 38.644432), (31.07862, -7.8217235, 38.3789), (31.07862, -7.8217235, 38.3789), (31.293646, -5.2264233, 38.644432), (29.228266, -5.2264233, 40.229256), (29.027431, -7.8217235, 39.95283), (29.027431, -7.8217235, 39.95283), (29.228266, -5.2264233, 40.229256), (27.082773, -5.2264233, 41.70381), (26.89668, -7.8217235, 41.417255), (26.89668, -7.8217235, 41.417255), (27.082773, -5.2264233, 41.70381), (24.863047, -5.2264233, 43.06406), (24.69221, -7.8217235, 42.768158), (24.69221, -7.8217235, 42.768158), (24.863047, -5.2264233, 43.06406), (22.575174, -5.2264233, 44.306274), (22.420055, -7.8217235, 44.00184), (22.420055, -7.8217235, 44.00184), (22.575174, -5.2264233, 44.306274), (20.225426, -5.2264233, 45.427048), (20.086452, -7.8217235, 45.11491), (20.086452, -7.8217235, 45.11491), (20.225426, -5.2264233, 45.427048), (17.820238, -5.2264233, 46.42331), (17.697792, -7.8217235, 46.104324), (17.697792, -7.8217235, 46.104324), (17.820238, -5.2264233, 46.42331), (15.366208, -5.2264233, 47.292328), (15.260624, -7.8217235, 46.967373), (15.260624, -7.8217235, 46.967373), (15.366208, -5.2264233, 47.292328), (12.87006, -5.2264233, 48.03172), (12.781628, -7.8217235, 47.701683), (12.781628, -7.8217235, 47.701683), (12.87006, -5.2264233, 48.03172), (10.338636, -5.2264233, 48.63946), (10.267597, -7.8217235, 48.30525), (10.267597, -7.8217235, 48.30525), (10.338636, -5.2264233, 48.63946), (7.778875, -5.2264233, 49.113884), (7.725425, -7.8217235, 48.776413), (7.725425, -7.8217235, 48.776413), (7.778875, -5.2264233, 49.113884), (5.197792, -5.2264233, 49.45369), (5.1620774, -7.8217235, 49.113884), (5.1620774, -7.8217235, 49.113884), (5.197792, -5.2264233, 49.45369), (2.6024628, -5.2264233, 49.657948), (2.5845807, -7.8217235, 49.31674), (2.5845807, -7.8217235, 49.31674), (2.6024628, -5.2264233, 49.657948), (3.0448452e-15, -5.2264233, 49.726093), (3.0239235e-15, -7.8217235, 49.38442), (3.0239235e-15, -7.8217235, 49.38442), (3.0448452e-15, -5.2264233, 49.726093), (-2.6024628, -5.2264233, 49.657948), (-2.5845807, -7.8217235, 49.31674), (-2.5845807, -7.8217235, 49.31674), (-2.6024628, -5.2264233, 49.657948), (-5.197792, -5.2264233, 49.45369), (-5.1620774, -7.8217235, 49.113884), (-5.1620774, -7.8217235, 49.113884), (-5.197792, -5.2264233, 49.45369), (-7.778875, -5.2264233, 49.113884), (-7.725425, -7.8217235, 48.776413), (-7.725425, -7.8217235, 48.776413), (-7.778875, -5.2264233, 49.113884), (-10.338636, -5.2264233, 48.63946), (-10.267597, -7.8217235, 48.30525), (-10.267597, -7.8217235, 48.30525), (-10.338636, -5.2264233, 48.63946), (-12.87006, -5.2264233, 48.03172), (-12.781628, -7.8217235, 47.701683), (-12.781628, -7.8217235, 47.701683), (-12.87006, -5.2264233, 48.03172), (-15.366208, -5.2264233, 47.292328), (-15.260624, -7.8217235, 46.967373), (-15.260624, -7.8217235, 46.967373), (-15.366208, -5.2264233, 47.292328), (-17.820238, -5.2264233, 46.42331), (-17.697792, -7.8217235, 46.104324), (-17.697792, -7.8217235, 46.104324), (-17.820238, -5.2264233, 46.42331), (-20.225426, -5.2264233, 45.427048), (-20.086452, -7.8217235, 45.11491), (-20.086452, -7.8217235, 45.11491), (-20.225426, -5.2264233, 45.427048), (-22.575174, -5.2264233, 44.306274), (-22.420055, -7.8217235, 44.00184), (-22.420055, -7.8217235, 44.00184), (-22.575174, -5.2264233, 44.306274), (-24.863047, -5.2264233, 43.06406), (-24.69221, -7.8217235, 42.768158), (-24.69221, -7.8217235, 42.768158), (-24.863047, -5.2264233, 43.06406), (-27.082773, -5.2264233, 41.70381), (-26.89668, -7.8217235, 41.417255), (-26.89668, -7.8217235, 41.417255), (-27.082773, -5.2264233, 41.70381), (-29.228266, -5.2264233, 40.229256), (-29.027431, -7.8217235, 39.95283), (-29.027431, -7.8217235, 39.95283), (-29.228266, -5.2264233, 40.229256), (-31.293646, -5.2264233, 38.644432), (-31.07862, -7.8217235, 38.3789), (-31.07862, -7.8217235, 38.3789), (-31.293646, -5.2264233, 38.644432), (-33.27325, -5.2264233, 36.95369), (-33.044624, -7.8217235, 36.699776), (-33.044624, -7.8217235, 36.699776), (-33.27325, -5.2264233, 36.95369), (-35.16166, -5.2264233, 35.16166), (-34.920055, -7.8217235, 34.920055), (-34.920055, -7.8217235, 34.920055), (-35.16166, -5.2264233, 35.16166), (-36.95369, -5.2264233, 33.27325), (-36.699776, -7.8217235, 33.044624), (-36.699776, -7.8217235, 33.044624), (-36.95369, -5.2264233, 33.27325), (-38.644432, -5.2264233, 31.293646), (-38.3789, -7.8217235, 31.07862), (-38.3789, -7.8217235, 31.07862), (-38.644432, -5.2264233, 31.293646), (-40.229256, -5.2264233, 29.228266), (-39.95283, -7.8217235, 29.027431), (-39.95283, -7.8217235, 29.027431), (-40.229256, -5.2264233, 29.228266), (-41.70381, -5.2264233, 27.082773), (-41.417255, -7.8217235, 26.89668), (-41.417255, -7.8217235, 26.89668), (-41.70381, -5.2264233, 27.082773), (-43.06406, -5.2264233, 24.863047), (-42.768158, -7.8217235, 24.69221), (-42.768158, -7.8217235, 24.69221), (-43.06406, -5.2264233, 24.863047), (-44.306274, -5.2264233, 22.575174), (-44.00184, -7.8217235, 22.420055), (-44.00184, -7.8217235, 22.420055), (-44.306274, -5.2264233, 22.575174), (-45.427048, -5.2264233, 20.225426), (-45.11491, -7.8217235, 20.086452), (-45.11491, -7.8217235, 20.086452), (-45.427048, -5.2264233, 20.225426), (-46.42331, -5.2264233, 17.820238), (-46.104324, -7.8217235, 17.697792), (-46.104324, -7.8217235, 17.697792), (-46.42331, -5.2264233, 17.820238), (-47.292328, -5.2264233, 15.366208), (-46.967373, -7.8217235, 15.260624), (-46.967373, -7.8217235, 15.260624), (-47.292328, -5.2264233, 15.366208), (-48.03172, -5.2264233, 12.87006), (-47.701683, -7.8217235, 12.781628), (-47.701683, -7.8217235, 12.781628), (-48.03172, -5.2264233, 12.87006), (-48.63946, -5.2264233, 10.338636), (-48.30525, -7.8217235, 10.267597), (-48.30525, -7.8217235, 10.267597), (-48.63946, -5.2264233, 10.338636), (-49.113884, -5.2264233, 7.778875), (-48.776413, -7.8217235, 7.725425), (-48.776413, -7.8217235, 7.725425), (-49.113884, -5.2264233, 7.778875), (-49.45369, -5.2264233, 5.197792), (-49.113884, -7.8217235, 5.1620774), (-49.113884, -7.8217235, 5.1620774), (-49.45369, -5.2264233, 5.197792), (-49.657948, -5.2264233, 2.6024628), (-49.31674, -7.8217235, 2.5845807), (-49.31674, -7.8217235, 2.5845807), (-49.657948, -5.2264233, 2.6024628), (-49.726093, -5.2264233, 6.0896904e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.657948, -5.2264233, -2.6024628), (-49.31674, -7.8217235, -2.5845807), (-49.31674, -7.8217235, -2.5845807), (-49.657948, -5.2264233, -2.6024628), (-49.45369, -5.2264233, -5.197792), (-49.113884, -7.8217235, -5.1620774), (-49.113884, -7.8217235, -5.1620774), (-49.45369, -5.2264233, -5.197792), (-49.113884, -5.2264233, -7.778875), (-48.776413, -7.8217235, -7.725425), (-48.776413, -7.8217235, -7.725425), (-49.113884, -5.2264233, -7.778875), (-48.63946, -5.2264233, -10.338636), (-48.30525, -7.8217235, -10.267597), (-48.30525, -7.8217235, -10.267597), (-48.63946, -5.2264233, -10.338636), (-48.03172, -5.2264233, -12.87006), (-47.701683, -7.8217235, -12.781628), (-47.701683, -7.8217235, -12.781628), (-48.03172, -5.2264233, -12.87006), (-47.292328, -5.2264233, -15.366208), (-46.967373, -7.8217235, -15.260624), (-46.967373, -7.8217235, -15.260624), (-47.292328, -5.2264233, -15.366208), (-46.42331, -5.2264233, -17.820238), (-46.104324, -7.8217235, -17.697792), (-46.104324, -7.8217235, -17.697792), (-46.42331, -5.2264233, -17.820238), (-45.427048, -5.2264233, -20.225426), (-45.11491, -7.8217235, -20.086452), (-45.11491, -7.8217235, -20.086452), (-45.427048, -5.2264233, -20.225426), (-44.306274, -5.2264233, -22.575174), (-44.00184, -7.8217235, -22.420055), (-44.00184, -7.8217235, -22.420055), (-44.306274, -5.2264233, -22.575174), (-43.06406, -5.2264233, -24.863047), (-42.768158, -7.8217235, -24.69221), (-42.768158, -7.8217235, -24.69221), (-43.06406, -5.2264233, -24.863047), (-41.70381, -5.2264233, -27.082773), (-41.417255, -7.8217235, -26.89668), (-41.417255, -7.8217235, -26.89668), (-41.70381, -5.2264233, -27.082773), (-40.229256, -5.2264233, -29.228266), (-39.95283, -7.8217235, -29.027431), (-39.95283, -7.8217235, -29.027431), (-40.229256, -5.2264233, -29.228266), (-38.644432, -5.2264233, -31.293646), (-38.3789, -7.8217235, -31.07862), (-38.3789, -7.8217235, -31.07862), (-38.644432, -5.2264233, -31.293646), (-36.95369, -5.2264233, -33.27325), (-36.699776, -7.8217235, -33.044624), (-36.699776, -7.8217235, -33.044624), (-36.95369, -5.2264233, -33.27325), (-35.16166, -5.2264233, -35.16166), (-34.920055, -7.8217235, -34.920055), (-34.920055, -7.8217235, -34.920055), (-35.16166, -5.2264233, -35.16166), (-33.27325, -5.2264233, -36.95369), (-33.044624, -7.8217235, -36.699776), (-33.044624, -7.8217235, -36.699776), (-33.27325, -5.2264233, -36.95369), (-31.293646, -5.2264233, -38.644432), (-31.07862, -7.8217235, -38.3789), (-31.07862, -7.8217235, -38.3789), (-31.293646, -5.2264233, -38.644432), (-29.228266, -5.2264233, -40.229256), (-29.027431, -7.8217235, -39.95283), (-29.027431, -7.8217235, -39.95283), (-29.228266, -5.2264233, -40.229256), (-27.082773, -5.2264233, -41.70381), (-26.89668, -7.8217235, -41.417255), (-26.89668, -7.8217235, -41.417255), (-27.082773, -5.2264233, -41.70381), (-24.863047, -5.2264233, -43.06406), (-24.69221, -7.8217235, -42.768158), (-24.69221, -7.8217235, -42.768158), (-24.863047, -5.2264233, -43.06406), (-22.575174, -5.2264233, -44.306274), (-22.420055, -7.8217235, -44.00184), (-22.420055, -7.8217235, -44.00184), (-22.575174, -5.2264233, -44.306274), (-20.225426, -5.2264233, -45.427048), (-20.086452, -7.8217235, -45.11491), (-20.086452, -7.8217235, -45.11491), (-20.225426, -5.2264233, -45.427048), (-17.820238, -5.2264233, -46.42331), (-17.697792, -7.8217235, -46.104324), (-17.697792, -7.8217235, -46.104324), (-17.820238, -5.2264233, -46.42331), (-15.366208, -5.2264233, -47.292328), (-15.260624, -7.8217235, -46.967373), (-15.260624, -7.8217235, -46.967373), (-15.366208, -5.2264233, -47.292328), (-12.87006, -5.2264233, -48.03172), (-12.781628, -7.8217235, -47.701683), (-12.781628, -7.8217235, -47.701683), (-12.87006, -5.2264233, -48.03172), (-10.338636, -5.2264233, -48.63946), (-10.267597, -7.8217235, -48.30525), (-10.267597, -7.8217235, -48.30525), (-10.338636, -5.2264233, -48.63946), (-7.778875, -5.2264233, -49.113884), (-7.725425, -7.8217235, -48.776413), (-7.725425, -7.8217235, -48.776413), (-7.778875, -5.2264233, -49.113884), (-5.197792, -5.2264233, -49.45369), (-5.1620774, -7.8217235, -49.113884), (-5.1620774, -7.8217235, -49.113884), (-5.197792, -5.2264233, -49.45369), (-2.6024628, -5.2264233, -49.657948), (-2.5845807, -7.8217235, -49.31674), (-2.5845807, -7.8217235, -49.31674), (-2.6024628, -5.2264233, -49.657948), (-9.1345354e-15, -5.2264233, -49.726093), (-9.07177e-15, -7.8217235, -49.38442), (-9.07177e-15, -7.8217235, -49.38442), (-9.1345354e-15, -5.2264233, -49.726093), (2.6024628, -5.2264233, -49.657948), (2.5845807, -7.8217235, -49.31674), (2.5845807, -7.8217235, -49.31674), (2.6024628, -5.2264233, -49.657948), (5.197792, -5.2264233, -49.45369), (5.1620774, -7.8217235, -49.113884), (5.1620774, -7.8217235, -49.113884), (5.197792, -5.2264233, -49.45369), (7.778875, -5.2264233, -49.113884), (7.725425, -7.8217235, -48.776413), (7.725425, -7.8217235, -48.776413), (7.778875, -5.2264233, -49.113884), (10.338636, -5.2264233, -48.63946), (10.267597, -7.8217235, -48.30525), (10.267597, -7.8217235, -48.30525), (10.338636, -5.2264233, -48.63946), (12.87006, -5.2264233, -48.03172), (12.781628, -7.8217235, -47.701683), (12.781628, -7.8217235, -47.701683), (12.87006, -5.2264233, -48.03172), (15.366208, -5.2264233, -47.292328), (15.260624, -7.8217235, -46.967373), (15.260624, -7.8217235, -46.967373), (15.366208, -5.2264233, -47.292328), (17.820238, -5.2264233, -46.42331), (17.697792, -7.8217235, -46.104324), (17.697792, -7.8217235, -46.104324), (17.820238, -5.2264233, -46.42331), (20.225426, -5.2264233, -45.427048), (20.086452, -7.8217235, -45.11491), (20.086452, -7.8217235, -45.11491), (20.225426, -5.2264233, -45.427048), (22.575174, -5.2264233, -44.306274), (22.420055, -7.8217235, -44.00184), (22.420055, -7.8217235, -44.00184), (22.575174, -5.2264233, -44.306274), (24.863047, -5.2264233, -43.06406), (24.69221, -7.8217235, -42.768158), (24.69221, -7.8217235, -42.768158), (24.863047, -5.2264233, -43.06406), (27.082773, -5.2264233, -41.70381), (26.89668, -7.8217235, -41.417255), (26.89668, -7.8217235, -41.417255), (27.082773, -5.2264233, -41.70381), (29.228266, -5.2264233, -40.229256), (29.027431, -7.8217235, -39.95283), (29.027431, -7.8217235, -39.95283), (29.228266, -5.2264233, -40.229256), (31.293646, -5.2264233, -38.644432), (31.07862, -7.8217235, -38.3789), (31.07862, -7.8217235, -38.3789), (31.293646, -5.2264233, -38.644432), (33.27325, -5.2264233, -36.95369), (33.044624, -7.8217235, -36.699776), (33.044624, -7.8217235, -36.699776), (33.27325, -5.2264233, -36.95369), (35.16166, -5.2264233, -35.16166), (34.920055, -7.8217235, -34.920055), (34.920055, -7.8217235, -34.920055), (35.16166, -5.2264233, -35.16166), (36.95369, -5.2264233, -33.27325), (36.699776, -7.8217235, -33.044624), (36.699776, -7.8217235, -33.044624), (36.95369, -5.2264233, -33.27325), (38.644432, -5.2264233, -31.293646), (38.3789, -7.8217235, -31.07862), (38.3789, -7.8217235, -31.07862), (38.644432, -5.2264233, -31.293646), (40.229256, -5.2264233, -29.228266), (39.95283, -7.8217235, -29.027431), (39.95283, -7.8217235, -29.027431), (40.229256, -5.2264233, -29.228266), (41.70381, -5.2264233, -27.082773), (41.417255, -7.8217235, -26.89668), (41.417255, -7.8217235, -26.89668), (41.70381, -5.2264233, -27.082773), (43.06406, -5.2264233, -24.863047), (42.768158, -7.8217235, -24.69221), (42.768158, -7.8217235, -24.69221), (43.06406, -5.2264233, -24.863047), (44.306274, -5.2264233, -22.575174), (44.00184, -7.8217235, -22.420055), (44.00184, -7.8217235, -22.420055), (44.306274, -5.2264233, -22.575174), (45.427048, -5.2264233, -20.225426), (45.11491, -7.8217235, -20.086452), (45.11491, -7.8217235, -20.086452), (45.427048, -5.2264233, -20.225426), (46.42331, -5.2264233, -17.820238), (46.104324, -7.8217235, -17.697792), (46.104324, -7.8217235, -17.697792), (46.42331, -5.2264233, -17.820238), (47.292328, -5.2264233, -15.366208), (46.967373, -7.8217235, -15.260624), (46.967373, -7.8217235, -15.260624), (47.292328, -5.2264233, -15.366208), (48.03172, -5.2264233, -12.87006), (47.701683, -7.8217235, -12.781628), (47.701683, -7.8217235, -12.781628), (48.03172, -5.2264233, -12.87006), (48.63946, -5.2264233, -10.338636), (48.30525, -7.8217235, -10.267597), (48.30525, -7.8217235, -10.267597), (48.63946, -5.2264233, -10.338636), (49.113884, -5.2264233, -7.778875), (48.776413, -7.8217235, -7.725425), (48.776413, -7.8217235, -7.725425), (49.113884, -5.2264233, -7.778875), (49.45369, -5.2264233, -5.197792), (49.113884, -7.8217235, -5.1620774), (49.113884, -7.8217235, -5.1620774), (49.45369, -5.2264233, -5.197792), (49.657948, -5.2264233, -2.6024628), (49.31674, -7.8217235, -2.5845807), (49.31674, -7.8217235, -2.5845807), (49.657948, -5.2264233, -2.6024628), (49.726093, -5.2264233, 0), (49.38442, -7.8217235, 0), (49.726093, -5.2264233, 0), (49.931477, -2.616798, 0), (49.86305, -2.616798, 2.6132116), (49.657948, -5.2264233, 2.6024628), (49.657948, -5.2264233, 2.6024628), (49.86305, -2.616798, 2.6132116), (49.657948, -2.616798, 5.2192607), (49.45369, -5.2264233, 5.197792), (49.45369, -5.2264233, 5.197792), (49.657948, -2.616798, 5.2192607), (49.31674, -2.616798, 7.8110037), (49.113884, -5.2264233, 7.778875), (49.113884, -5.2264233, 7.778875), (49.31674, -2.616798, 7.8110037), (48.840355, -2.616798, 10.381338), (48.63946, -5.2264233, 10.338636), (48.63946, -5.2264233, 10.338636), (48.840355, -2.616798, 10.381338), (48.230103, -2.616798, 12.923217), (48.03172, -5.2264233, 12.87006), (48.03172, -5.2264233, 12.87006), (48.230103, -2.616798, 12.923217), (47.487656, -2.616798, 15.429675), (47.292328, -5.2264233, 15.366208), (47.292328, -5.2264233, 15.366208), (47.487656, -2.616798, 15.429675), (46.615047, -2.616798, 17.89384), (46.42331, -5.2264233, 17.820238), (46.42331, -5.2264233, 17.820238), (46.615047, -2.616798, 17.89384), (45.614674, -2.616798, 20.308962), (45.427048, -5.2264233, 20.225426), (45.427048, -5.2264233, 20.225426), (45.614674, -2.616798, 20.308962), (44.489273, -2.616798, 22.668417), (44.306274, -5.2264233, 22.575174), (44.306274, -5.2264233, 22.575174), (44.489273, -2.616798, 22.668417), (43.24193, -2.616798, 24.965738), (43.06406, -5.2264233, 24.863047), (43.06406, -5.2264233, 24.863047), (43.24193, -2.616798, 24.965738), (41.87606, -2.616798, 27.194632), (41.70381, -5.2264233, 27.082773), (41.70381, -5.2264233, 27.082773), (41.87606, -2.616798, 27.194632), (40.395412, -2.616798, 29.348986), (40.229256, -5.2264233, 29.228266), (40.229256, -5.2264233, 29.228266), (40.395412, -2.616798, 29.348986), (38.804047, -2.616798, 31.422897), (38.644432, -5.2264233, 31.293646), (38.644432, -5.2264233, 31.293646), (38.804047, -2.616798, 31.422897), (37.10632, -2.616798, 33.41068), (36.95369, -5.2264233, 33.27325), (36.95369, -5.2264233, 33.27325), (37.10632, -2.616798, 33.41068), (35.306885, -2.616798, 35.306885), (35.16166, -5.2264233, 35.16166), (35.16166, -5.2264233, 35.16166), (35.306885, -2.616798, 35.306885), (33.41068, -2.616798, 37.10632), (33.27325, -5.2264233, 36.95369), (33.27325, -5.2264233, 36.95369), (33.41068, -2.616798, 37.10632), (31.422897, -2.616798, 38.804047), (31.293646, -5.2264233, 38.644432), (31.293646, -5.2264233, 38.644432), (31.422897, -2.616798, 38.804047), (29.348986, -2.616798, 40.395412), (29.228266, -5.2264233, 40.229256), (29.228266, -5.2264233, 40.229256), (29.348986, -2.616798, 40.395412), (27.194632, -2.616798, 41.87606), (27.082773, -5.2264233, 41.70381), (27.082773, -5.2264233, 41.70381), (27.194632, -2.616798, 41.87606), (24.965738, -2.616798, 43.24193), (24.863047, -5.2264233, 43.06406), (24.863047, -5.2264233, 43.06406), (24.965738, -2.616798, 43.24193), (22.668417, -2.616798, 44.489273), (22.575174, -5.2264233, 44.306274), (22.575174, -5.2264233, 44.306274), (22.668417, -2.616798, 44.489273), (20.308962, -2.616798, 45.614674), (20.225426, -5.2264233, 45.427048), (20.225426, -5.2264233, 45.427048), (20.308962, -2.616798, 45.614674), (17.89384, -2.616798, 46.615047), (17.820238, -5.2264233, 46.42331), (17.820238, -5.2264233, 46.42331), (17.89384, -2.616798, 46.615047), (15.429675, -2.616798, 47.487656), (15.366208, -5.2264233, 47.292328), (15.366208, -5.2264233, 47.292328), (15.429675, -2.616798, 47.487656), (12.923217, -2.616798, 48.230103), (12.87006, -5.2264233, 48.03172), (12.87006, -5.2264233, 48.03172), (12.923217, -2.616798, 48.230103), (10.381338, -2.616798, 48.840355), (10.338636, -5.2264233, 48.63946), (10.338636, -5.2264233, 48.63946), (10.381338, -2.616798, 48.840355), (7.8110037, -2.616798, 49.31674), (7.778875, -5.2264233, 49.113884), (7.778875, -5.2264233, 49.113884), (7.8110037, -2.616798, 49.31674), (5.2192607, -2.616798, 49.657948), (5.197792, -5.2264233, 49.45369), (5.197792, -5.2264233, 49.45369), (5.2192607, -2.616798, 49.657948), (2.6132116, -2.616798, 49.86305), (2.6024628, -5.2264233, 49.657948), (2.6024628, -5.2264233, 49.657948), (2.6132116, -2.616798, 49.86305), (3.0574211e-15, -2.616798, 49.931477), (3.0448452e-15, -5.2264233, 49.726093), (3.0448452e-15, -5.2264233, 49.726093), (3.0574211e-15, -2.616798, 49.931477), (-2.6132116, -2.616798, 49.86305), (-2.6024628, -5.2264233, 49.657948), (-2.6024628, -5.2264233, 49.657948), (-2.6132116, -2.616798, 49.86305), (-5.2192607, -2.616798, 49.657948), (-5.197792, -5.2264233, 49.45369), (-5.197792, -5.2264233, 49.45369), (-5.2192607, -2.616798, 49.657948), (-7.8110037, -2.616798, 49.31674), (-7.778875, -5.2264233, 49.113884), (-7.778875, -5.2264233, 49.113884), (-7.8110037, -2.616798, 49.31674), (-10.381338, -2.616798, 48.840355), (-10.338636, -5.2264233, 48.63946), (-10.338636, -5.2264233, 48.63946), (-10.381338, -2.616798, 48.840355), (-12.923217, -2.616798, 48.230103), (-12.87006, -5.2264233, 48.03172), (-12.87006, -5.2264233, 48.03172), (-12.923217, -2.616798, 48.230103), (-15.429675, -2.616798, 47.487656), (-15.366208, -5.2264233, 47.292328), (-15.366208, -5.2264233, 47.292328), (-15.429675, -2.616798, 47.487656), (-17.89384, -2.616798, 46.615047), (-17.820238, -5.2264233, 46.42331), (-17.820238, -5.2264233, 46.42331), (-17.89384, -2.616798, 46.615047), (-20.308962, -2.616798, 45.614674), (-20.225426, -5.2264233, 45.427048), (-20.225426, -5.2264233, 45.427048), (-20.308962, -2.616798, 45.614674), (-22.668417, -2.616798, 44.489273), (-22.575174, -5.2264233, 44.306274), (-22.575174, -5.2264233, 44.306274), (-22.668417, -2.616798, 44.489273), (-24.965738, -2.616798, 43.24193), (-24.863047, -5.2264233, 43.06406), (-24.863047, -5.2264233, 43.06406), (-24.965738, -2.616798, 43.24193), (-27.194632, -2.616798, 41.87606), (-27.082773, -5.2264233, 41.70381), (-27.082773, -5.2264233, 41.70381), (-27.194632, -2.616798, 41.87606), (-29.348986, -2.616798, 40.395412), (-29.228266, -5.2264233, 40.229256), (-29.228266, -5.2264233, 40.229256), (-29.348986, -2.616798, 40.395412), (-31.422897, -2.616798, 38.804047), (-31.293646, -5.2264233, 38.644432), (-31.293646, -5.2264233, 38.644432), (-31.422897, -2.616798, 38.804047), (-33.41068, -2.616798, 37.10632), (-33.27325, -5.2264233, 36.95369), (-33.27325, -5.2264233, 36.95369), (-33.41068, -2.616798, 37.10632), (-35.306885, -2.616798, 35.306885), (-35.16166, -5.2264233, 35.16166), (-35.16166, -5.2264233, 35.16166), (-35.306885, -2.616798, 35.306885), (-37.10632, -2.616798, 33.41068), (-36.95369, -5.2264233, 33.27325), (-36.95369, -5.2264233, 33.27325), (-37.10632, -2.616798, 33.41068), (-38.804047, -2.616798, 31.422897), (-38.644432, -5.2264233, 31.293646), (-38.644432, -5.2264233, 31.293646), (-38.804047, -2.616798, 31.422897), (-40.395412, -2.616798, 29.348986), (-40.229256, -5.2264233, 29.228266), (-40.229256, -5.2264233, 29.228266), (-40.395412, -2.616798, 29.348986), (-41.87606, -2.616798, 27.194632), (-41.70381, -5.2264233, 27.082773), (-41.70381, -5.2264233, 27.082773), (-41.87606, -2.616798, 27.194632), (-43.24193, -2.616798, 24.965738), (-43.06406, -5.2264233, 24.863047), (-43.06406, -5.2264233, 24.863047), (-43.24193, -2.616798, 24.965738), (-44.489273, -2.616798, 22.668417), (-44.306274, -5.2264233, 22.575174), (-44.306274, -5.2264233, 22.575174), (-44.489273, -2.616798, 22.668417), (-45.614674, -2.616798, 20.308962), (-45.427048, -5.2264233, 20.225426), (-45.427048, -5.2264233, 20.225426), (-45.614674, -2.616798, 20.308962), (-46.615047, -2.616798, 17.89384), (-46.42331, -5.2264233, 17.820238), (-46.42331, -5.2264233, 17.820238), (-46.615047, -2.616798, 17.89384), (-47.487656, -2.616798, 15.429675), (-47.292328, -5.2264233, 15.366208), (-47.292328, -5.2264233, 15.366208), (-47.487656, -2.616798, 15.429675), (-48.230103, -2.616798, 12.923217), (-48.03172, -5.2264233, 12.87006), (-48.03172, -5.2264233, 12.87006), (-48.230103, -2.616798, 12.923217), (-48.840355, -2.616798, 10.381338), (-48.63946, -5.2264233, 10.338636), (-48.63946, -5.2264233, 10.338636), (-48.840355, -2.616798, 10.381338), (-49.31674, -2.616798, 7.8110037), (-49.113884, -5.2264233, 7.778875), (-49.113884, -5.2264233, 7.778875), (-49.31674, -2.616798, 7.8110037), (-49.657948, -2.616798, 5.2192607), (-49.45369, -5.2264233, 5.197792), (-49.45369, -5.2264233, 5.197792), (-49.657948, -2.616798, 5.2192607), (-49.86305, -2.616798, 2.6132116), (-49.657948, -5.2264233, 2.6024628), (-49.657948, -5.2264233, 2.6024628), (-49.86305, -2.616798, 2.6132116), (-49.931477, -2.616798, 6.1148422e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.931477, -2.616798, 6.1148422e-15), (-49.86305, -2.616798, -2.6132116), (-49.657948, -5.2264233, -2.6024628), (-49.657948, -5.2264233, -2.6024628), (-49.86305, -2.616798, -2.6132116), (-49.657948, -2.616798, -5.2192607), (-49.45369, -5.2264233, -5.197792), (-49.45369, -5.2264233, -5.197792), (-49.657948, -2.616798, -5.2192607), (-49.31674, -2.616798, -7.8110037), (-49.113884, -5.2264233, -7.778875), (-49.113884, -5.2264233, -7.778875), (-49.31674, -2.616798, -7.8110037), (-48.840355, -2.616798, -10.381338), (-48.63946, -5.2264233, -10.338636), (-48.63946, -5.2264233, -10.338636), (-48.840355, -2.616798, -10.381338), (-48.230103, -2.616798, -12.923217), (-48.03172, -5.2264233, -12.87006), (-48.03172, -5.2264233, -12.87006), (-48.230103, -2.616798, -12.923217), (-47.487656, -2.616798, -15.429675), (-47.292328, -5.2264233, -15.366208), (-47.292328, -5.2264233, -15.366208), (-47.487656, -2.616798, -15.429675), (-46.615047, -2.616798, -17.89384), (-46.42331, -5.2264233, -17.820238), (-46.42331, -5.2264233, -17.820238), (-46.615047, -2.616798, -17.89384), (-45.614674, -2.616798, -20.308962), (-45.427048, -5.2264233, -20.225426), (-45.427048, -5.2264233, -20.225426), (-45.614674, -2.616798, -20.308962), (-44.489273, -2.616798, -22.668417), (-44.306274, -5.2264233, -22.575174), (-44.306274, -5.2264233, -22.575174), (-44.489273, -2.616798, -22.668417), (-43.24193, -2.616798, -24.965738), (-43.06406, -5.2264233, -24.863047), (-43.06406, -5.2264233, -24.863047), (-43.24193, -2.616798, -24.965738), (-41.87606, -2.616798, -27.194632), (-41.70381, -5.2264233, -27.082773), (-41.70381, -5.2264233, -27.082773), (-41.87606, -2.616798, -27.194632), (-40.395412, -2.616798, -29.348986), (-40.229256, -5.2264233, -29.228266), (-40.229256, -5.2264233, -29.228266), (-40.395412, -2.616798, -29.348986), (-38.804047, -2.616798, -31.422897), (-38.644432, -5.2264233, -31.293646), (-38.644432, -5.2264233, -31.293646), (-38.804047, -2.616798, -31.422897), (-37.10632, -2.616798, -33.41068), (-36.95369, -5.2264233, -33.27325), (-36.95369, -5.2264233, -33.27325), (-37.10632, -2.616798, -33.41068), (-35.306885, -2.616798, -35.306885), (-35.16166, -5.2264233, -35.16166), (-35.16166, -5.2264233, -35.16166), (-35.306885, -2.616798, -35.306885), (-33.41068, -2.616798, -37.10632), (-33.27325, -5.2264233, -36.95369), (-33.27325, -5.2264233, -36.95369), (-33.41068, -2.616798, -37.10632), (-31.422897, -2.616798, -38.804047), (-31.293646, -5.2264233, -38.644432), (-31.293646, -5.2264233, -38.644432), (-31.422897, -2.616798, -38.804047), (-29.348986, -2.616798, -40.395412), (-29.228266, -5.2264233, -40.229256), (-29.228266, -5.2264233, -40.229256), (-29.348986, -2.616798, -40.395412), (-27.194632, -2.616798, -41.87606), (-27.082773, -5.2264233, -41.70381), (-27.082773, -5.2264233, -41.70381), (-27.194632, -2.616798, -41.87606), (-24.965738, -2.616798, -43.24193), (-24.863047, -5.2264233, -43.06406), (-24.863047, -5.2264233, -43.06406), (-24.965738, -2.616798, -43.24193), (-22.668417, -2.616798, -44.489273), (-22.575174, -5.2264233, -44.306274), (-22.575174, -5.2264233, -44.306274), (-22.668417, -2.616798, -44.489273), (-20.308962, -2.616798, -45.614674), (-20.225426, -5.2264233, -45.427048), (-20.225426, -5.2264233, -45.427048), (-20.308962, -2.616798, -45.614674), (-17.89384, -2.616798, -46.615047), (-17.820238, -5.2264233, -46.42331), (-17.820238, -5.2264233, -46.42331), (-17.89384, -2.616798, -46.615047), (-15.429675, -2.616798, -47.487656), (-15.366208, -5.2264233, -47.292328), (-15.366208, -5.2264233, -47.292328), (-15.429675, -2.616798, -47.487656), (-12.923217, -2.616798, -48.230103), (-12.87006, -5.2264233, -48.03172), (-12.87006, -5.2264233, -48.03172), (-12.923217, -2.616798, -48.230103), (-10.381338, -2.616798, -48.840355), (-10.338636, -5.2264233, -48.63946), (-10.338636, -5.2264233, -48.63946), (-10.381338, -2.616798, -48.840355), (-7.8110037, -2.616798, -49.31674), (-7.778875, -5.2264233, -49.113884), (-7.778875, -5.2264233, -49.113884), (-7.8110037, -2.616798, -49.31674), (-5.2192607, -2.616798, -49.657948), (-5.197792, -5.2264233, -49.45369), (-5.197792, -5.2264233, -49.45369), (-5.2192607, -2.616798, -49.657948), (-2.6132116, -2.616798, -49.86305), (-2.6024628, -5.2264233, -49.657948), (-2.6024628, -5.2264233, -49.657948), (-2.6132116, -2.616798, -49.86305), (-9.172263e-15, -2.616798, -49.931477), (-9.1345354e-15, -5.2264233, -49.726093), (-9.1345354e-15, -5.2264233, -49.726093), (-9.172263e-15, -2.616798, -49.931477), (2.6132116, -2.616798, -49.86305), (2.6024628, -5.2264233, -49.657948), (2.6024628, -5.2264233, -49.657948), (2.6132116, -2.616798, -49.86305), (5.2192607, -2.616798, -49.657948), (5.197792, -5.2264233, -49.45369), (5.197792, -5.2264233, -49.45369), (5.2192607, -2.616798, -49.657948), (7.8110037, -2.616798, -49.31674), (7.778875, -5.2264233, -49.113884), (7.778875, -5.2264233, -49.113884), (7.8110037, -2.616798, -49.31674), (10.381338, -2.616798, -48.840355), (10.338636, -5.2264233, -48.63946), (10.338636, -5.2264233, -48.63946), (10.381338, -2.616798, -48.840355), (12.923217, -2.616798, -48.230103), (12.87006, -5.2264233, -48.03172), (12.87006, -5.2264233, -48.03172), (12.923217, -2.616798, -48.230103), (15.429675, -2.616798, -47.487656), (15.366208, -5.2264233, -47.292328), (15.366208, -5.2264233, -47.292328), (15.429675, -2.616798, -47.487656), (17.89384, -2.616798, -46.615047), (17.820238, -5.2264233, -46.42331), (17.820238, -5.2264233, -46.42331), (17.89384, -2.616798, -46.615047), (20.308962, -2.616798, -45.614674), (20.225426, -5.2264233, -45.427048), (20.225426, -5.2264233, -45.427048), (20.308962, -2.616798, -45.614674), (22.668417, -2.616798, -44.489273), (22.575174, -5.2264233, -44.306274), (22.575174, -5.2264233, -44.306274), (22.668417, -2.616798, -44.489273), (24.965738, -2.616798, -43.24193), (24.863047, -5.2264233, -43.06406), (24.863047, -5.2264233, -43.06406), (24.965738, -2.616798, -43.24193), (27.194632, -2.616798, -41.87606), (27.082773, -5.2264233, -41.70381), (27.082773, -5.2264233, -41.70381), (27.194632, -2.616798, -41.87606), (29.348986, -2.616798, -40.395412), (29.228266, -5.2264233, -40.229256), (29.228266, -5.2264233, -40.229256), (29.348986, -2.616798, -40.395412), (31.422897, -2.616798, -38.804047), (31.293646, -5.2264233, -38.644432), (31.293646, -5.2264233, -38.644432), (31.422897, -2.616798, -38.804047), (33.41068, -2.616798, -37.10632), (33.27325, -5.2264233, -36.95369), (33.27325, -5.2264233, -36.95369), (33.41068, -2.616798, -37.10632), (35.306885, -2.616798, -35.306885), (35.16166, -5.2264233, -35.16166), (35.16166, -5.2264233, -35.16166), (35.306885, -2.616798, -35.306885), (37.10632, -2.616798, -33.41068), (36.95369, -5.2264233, -33.27325), (36.95369, -5.2264233, -33.27325), (37.10632, -2.616798, -33.41068), (38.804047, -2.616798, -31.422897), (38.644432, -5.2264233, -31.293646), (38.644432, -5.2264233, -31.293646), (38.804047, -2.616798, -31.422897), (40.395412, -2.616798, -29.348986), (40.229256, -5.2264233, -29.228266), (40.229256, -5.2264233, -29.228266), (40.395412, -2.616798, -29.348986), (41.87606, -2.616798, -27.194632), (41.70381, -5.2264233, -27.082773), (41.70381, -5.2264233, -27.082773), (41.87606, -2.616798, -27.194632), (43.24193, -2.616798, -24.965738), (43.06406, -5.2264233, -24.863047), (43.06406, -5.2264233, -24.863047), (43.24193, -2.616798, -24.965738), (44.489273, -2.616798, -22.668417), (44.306274, -5.2264233, -22.575174), (44.306274, -5.2264233, -22.575174), (44.489273, -2.616798, -22.668417), (45.614674, -2.616798, -20.308962), (45.427048, -5.2264233, -20.225426), (45.427048, -5.2264233, -20.225426), (45.614674, -2.616798, -20.308962), (46.615047, -2.616798, -17.89384), (46.42331, -5.2264233, -17.820238), (46.42331, -5.2264233, -17.820238), (46.615047, -2.616798, -17.89384), (47.487656, -2.616798, -15.429675), (47.292328, -5.2264233, -15.366208), (47.292328, -5.2264233, -15.366208), (47.487656, -2.616798, -15.429675), (48.230103, -2.616798, -12.923217), (48.03172, -5.2264233, -12.87006), (48.03172, -5.2264233, -12.87006), (48.230103, -2.616798, -12.923217), (48.840355, -2.616798, -10.381338), (48.63946, -5.2264233, -10.338636), (48.63946, -5.2264233, -10.338636), (48.840355, -2.616798, -10.381338), (49.31674, -2.616798, -7.8110037), (49.113884, -5.2264233, -7.778875), (49.113884, -5.2264233, -7.778875), (49.31674, -2.616798, -7.8110037), (49.657948, -2.616798, -5.2192607), (49.45369, -5.2264233, -5.197792), (49.45369, -5.2264233, -5.197792), (49.657948, -2.616798, -5.2192607), (49.86305, -2.616798, -2.6132116), (49.657948, -5.2264233, -2.6024628), (49.657948, -5.2264233, -2.6024628), (49.86305, -2.616798, -2.6132116), (49.931477, -2.616798, 0), (49.726093, -5.2264233, 0), (49.931477, -2.616798, 0), (50, 0, 0), (49.931477, 0, 2.616798), (49.86305, -2.616798, 2.6132116), (49.86305, -2.616798, 2.6132116), (49.931477, 0, 2.616798), (49.726093, 0, 5.2264233), (49.657948, -2.616798, 5.2192607), (49.657948, -2.616798, 5.2192607), (49.726093, 0, 5.2264233), (49.38442, 0, 7.8217235), (49.31674, -2.616798, 7.8110037), (49.31674, -2.616798, 7.8110037), (49.38442, 0, 7.8217235), (48.90738, 0, 10.395584), (48.840355, -2.616798, 10.381338), (48.840355, -2.616798, 10.381338), (48.90738, 0, 10.395584), (48.29629, 0, 12.940952), (48.230103, -2.616798, 12.923217), (48.230103, -2.616798, 12.923217), (48.29629, 0, 12.940952), (47.552826, 0, 15.45085), (47.487656, -2.616798, 15.429675), (47.487656, -2.616798, 15.429675), (47.552826, 0, 15.45085), (46.67902, 0, 17.918398), (46.615047, -2.616798, 17.89384), (46.615047, -2.616798, 17.89384), (46.67902, 0, 17.918398), (45.677273, 0, 20.336832), (45.614674, -2.616798, 20.308962), (45.614674, -2.616798, 20.308962), (45.677273, 0, 20.336832), (44.550327, 0, 22.699526), (44.489273, -2.616798, 22.668417), (44.489273, -2.616798, 22.668417), (44.550327, 0, 22.699526), (43.30127, 0, 25), (43.24193, -2.616798, 24.965738), (43.24193, -2.616798, 24.965738), (43.30127, 0, 25), (41.93353, 0, 27.231953), (41.87606, -2.616798, 27.194632), (41.87606, -2.616798, 27.194632), (41.93353, 0, 27.231953), (40.45085, 0, 29.389263), (40.395412, -2.616798, 29.348986), (40.395412, -2.616798, 29.348986), (40.45085, 0, 29.389263), (38.8573, 0, 31.466019), (38.804047, -2.616798, 31.422897), (38.804047, -2.616798, 31.422897), (38.8573, 0, 31.466019), (37.15724, 0, 33.45653), (37.10632, -2.616798, 33.41068), (37.10632, -2.616798, 33.41068), (37.15724, 0, 33.45653), (35.35534, 0, 35.35534), (35.306885, -2.616798, 35.306885), (35.306885, -2.616798, 35.306885), (35.35534, 0, 35.35534), (33.45653, 0, 37.15724), (33.41068, -2.616798, 37.10632), (33.41068, -2.616798, 37.10632), (33.45653, 0, 37.15724), (31.466019, 0, 38.8573), (31.422897, -2.616798, 38.804047), (31.422897, -2.616798, 38.804047), (31.466019, 0, 38.8573), (29.389263, 0, 40.45085), (29.348986, -2.616798, 40.395412), (29.348986, -2.616798, 40.395412), (29.389263, 0, 40.45085), (27.231953, 0, 41.93353), (27.194632, -2.616798, 41.87606), (27.194632, -2.616798, 41.87606), (27.231953, 0, 41.93353), (25, 0, 43.30127), (24.965738, -2.616798, 43.24193), (24.965738, -2.616798, 43.24193), (25, 0, 43.30127), (22.699526, 0, 44.550327), (22.668417, -2.616798, 44.489273), (22.668417, -2.616798, 44.489273), (22.699526, 0, 44.550327), (20.336832, 0, 45.677273), (20.308962, -2.616798, 45.614674), (20.308962, -2.616798, 45.614674), (20.336832, 0, 45.677273), (17.918398, 0, 46.67902), (17.89384, -2.616798, 46.615047), (17.89384, -2.616798, 46.615047), (17.918398, 0, 46.67902), (15.45085, 0, 47.552826), (15.429675, -2.616798, 47.487656), (15.429675, -2.616798, 47.487656), (15.45085, 0, 47.552826), (12.940952, 0, 48.29629), (12.923217, -2.616798, 48.230103), (12.923217, -2.616798, 48.230103), (12.940952, 0, 48.29629), (10.395584, 0, 48.90738), (10.381338, -2.616798, 48.840355), (10.381338, -2.616798, 48.840355), (10.395584, 0, 48.90738), (7.8217235, 0, 49.38442), (7.8110037, -2.616798, 49.31674), (7.8110037, -2.616798, 49.31674), (7.8217235, 0, 49.38442), (5.2264233, 0, 49.726093), (5.2192607, -2.616798, 49.657948), (5.2192607, -2.616798, 49.657948), (5.2264233, 0, 49.726093), (2.616798, 0, 49.931477), (2.6132116, -2.616798, 49.86305), (2.6132116, -2.616798, 49.86305), (2.616798, 0, 49.931477), (3.0616169e-15, 0, 50), (3.0574211e-15, -2.616798, 49.931477), (3.0574211e-15, -2.616798, 49.931477), (3.0616169e-15, 0, 50), (-2.616798, 0, 49.931477), (-2.6132116, -2.616798, 49.86305), (-2.6132116, -2.616798, 49.86305), (-2.616798, 0, 49.931477), (-5.2264233, 0, 49.726093), (-5.2192607, -2.616798, 49.657948), (-5.2192607, -2.616798, 49.657948), (-5.2264233, 0, 49.726093), (-7.8217235, 0, 49.38442), (-7.8110037, -2.616798, 49.31674), (-7.8110037, -2.616798, 49.31674), (-7.8217235, 0, 49.38442), (-10.395584, 0, 48.90738), (-10.381338, -2.616798, 48.840355), (-10.381338, -2.616798, 48.840355), (-10.395584, 0, 48.90738), (-12.940952, 0, 48.29629), (-12.923217, -2.616798, 48.230103), (-12.923217, -2.616798, 48.230103), (-12.940952, 0, 48.29629), (-15.45085, 0, 47.552826), (-15.429675, -2.616798, 47.487656), (-15.429675, -2.616798, 47.487656), (-15.45085, 0, 47.552826), (-17.918398, 0, 46.67902), (-17.89384, -2.616798, 46.615047), (-17.89384, -2.616798, 46.615047), (-17.918398, 0, 46.67902), (-20.336832, 0, 45.677273), (-20.308962, -2.616798, 45.614674), (-20.308962, -2.616798, 45.614674), (-20.336832, 0, 45.677273), (-22.699526, 0, 44.550327), (-22.668417, -2.616798, 44.489273), (-22.668417, -2.616798, 44.489273), (-22.699526, 0, 44.550327), (-25, 0, 43.30127), (-24.965738, -2.616798, 43.24193), (-24.965738, -2.616798, 43.24193), (-25, 0, 43.30127), (-27.231953, 0, 41.93353), (-27.194632, -2.616798, 41.87606), (-27.194632, -2.616798, 41.87606), (-27.231953, 0, 41.93353), (-29.389263, 0, 40.45085), (-29.348986, -2.616798, 40.395412), (-29.348986, -2.616798, 40.395412), (-29.389263, 0, 40.45085), (-31.466019, 0, 38.8573), (-31.422897, -2.616798, 38.804047), (-31.422897, -2.616798, 38.804047), (-31.466019, 0, 38.8573), (-33.45653, 0, 37.15724), (-33.41068, -2.616798, 37.10632), (-33.41068, -2.616798, 37.10632), (-33.45653, 0, 37.15724), (-35.35534, 0, 35.35534), (-35.306885, -2.616798, 35.306885), (-35.306885, -2.616798, 35.306885), (-35.35534, 0, 35.35534), (-37.15724, 0, 33.45653), (-37.10632, -2.616798, 33.41068), (-37.10632, -2.616798, 33.41068), (-37.15724, 0, 33.45653), (-38.8573, 0, 31.466019), (-38.804047, -2.616798, 31.422897), (-38.804047, -2.616798, 31.422897), (-38.8573, 0, 31.466019), (-40.45085, 0, 29.389263), (-40.395412, -2.616798, 29.348986), (-40.395412, -2.616798, 29.348986), (-40.45085, 0, 29.389263), (-41.93353, 0, 27.231953), (-41.87606, -2.616798, 27.194632), (-41.87606, -2.616798, 27.194632), (-41.93353, 0, 27.231953), (-43.30127, 0, 25), (-43.24193, -2.616798, 24.965738), (-43.24193, -2.616798, 24.965738), (-43.30127, 0, 25), (-44.550327, 0, 22.699526), (-44.489273, -2.616798, 22.668417), (-44.489273, -2.616798, 22.668417), (-44.550327, 0, 22.699526), (-45.677273, 0, 20.336832), (-45.614674, -2.616798, 20.308962), (-45.614674, -2.616798, 20.308962), (-45.677273, 0, 20.336832), (-46.67902, 0, 17.918398), (-46.615047, -2.616798, 17.89384), (-46.615047, -2.616798, 17.89384), (-46.67902, 0, 17.918398), (-47.552826, 0, 15.45085), (-47.487656, -2.616798, 15.429675), (-47.487656, -2.616798, 15.429675), (-47.552826, 0, 15.45085), (-48.29629, 0, 12.940952), (-48.230103, -2.616798, 12.923217), (-48.230103, -2.616798, 12.923217), (-48.29629, 0, 12.940952), (-48.90738, 0, 10.395584), (-48.840355, -2.616798, 10.381338), (-48.840355, -2.616798, 10.381338), (-48.90738, 0, 10.395584), (-49.38442, 0, 7.8217235), (-49.31674, -2.616798, 7.8110037), (-49.31674, -2.616798, 7.8110037), (-49.38442, 0, 7.8217235), (-49.726093, 0, 5.2264233), (-49.657948, -2.616798, 5.2192607), (-49.657948, -2.616798, 5.2192607), (-49.726093, 0, 5.2264233), (-49.931477, 0, 2.616798), (-49.86305, -2.616798, 2.6132116), (-49.86305, -2.616798, 2.6132116), (-49.931477, 0, 2.616798), (-50, 0, 6.1232338e-15), (-49.931477, -2.616798, 6.1148422e-15), (-49.931477, -2.616798, 6.1148422e-15), (-50, 0, 6.1232338e-15), (-49.931477, 0, -2.616798), (-49.86305, -2.616798, -2.6132116), (-49.86305, -2.616798, -2.6132116), (-49.931477, 0, -2.616798), (-49.726093, 0, -5.2264233), (-49.657948, -2.616798, -5.2192607), (-49.657948, -2.616798, -5.2192607), (-49.726093, 0, -5.2264233), (-49.38442, 0, -7.8217235), (-49.31674, -2.616798, -7.8110037), (-49.31674, -2.616798, -7.8110037), (-49.38442, 0, -7.8217235), (-48.90738, 0, -10.395584), (-48.840355, -2.616798, -10.381338), (-48.840355, -2.616798, -10.381338), (-48.90738, 0, -10.395584), (-48.29629, 0, -12.940952), (-48.230103, -2.616798, -12.923217), (-48.230103, -2.616798, -12.923217), (-48.29629, 0, -12.940952), (-47.552826, 0, -15.45085), (-47.487656, -2.616798, -15.429675), (-47.487656, -2.616798, -15.429675), (-47.552826, 0, -15.45085), (-46.67902, 0, -17.918398), (-46.615047, -2.616798, -17.89384), (-46.615047, -2.616798, -17.89384), (-46.67902, 0, -17.918398), (-45.677273, 0, -20.336832), (-45.614674, -2.616798, -20.308962), (-45.614674, -2.616798, -20.308962), (-45.677273, 0, -20.336832), (-44.550327, 0, -22.699526), (-44.489273, -2.616798, -22.668417), (-44.489273, -2.616798, -22.668417), (-44.550327, 0, -22.699526), (-43.30127, 0, -25), (-43.24193, -2.616798, -24.965738), (-43.24193, -2.616798, -24.965738), (-43.30127, 0, -25), (-41.93353, 0, -27.231953), (-41.87606, -2.616798, -27.194632), (-41.87606, -2.616798, -27.194632), (-41.93353, 0, -27.231953), (-40.45085, 0, -29.389263), (-40.395412, -2.616798, -29.348986), (-40.395412, -2.616798, -29.348986), (-40.45085, 0, -29.389263), (-38.8573, 0, -31.466019), (-38.804047, -2.616798, -31.422897), (-38.804047, -2.616798, -31.422897), (-38.8573, 0, -31.466019), (-37.15724, 0, -33.45653), (-37.10632, -2.616798, -33.41068), (-37.10632, -2.616798, -33.41068), (-37.15724, 0, -33.45653), (-35.35534, 0, -35.35534), (-35.306885, -2.616798, -35.306885), (-35.306885, -2.616798, -35.306885), (-35.35534, 0, -35.35534), (-33.45653, 0, -37.15724), (-33.41068, -2.616798, -37.10632), (-33.41068, -2.616798, -37.10632), (-33.45653, 0, -37.15724), (-31.466019, 0, -38.8573), (-31.422897, -2.616798, -38.804047), (-31.422897, -2.616798, -38.804047), (-31.466019, 0, -38.8573), (-29.389263, 0, -40.45085), (-29.348986, -2.616798, -40.395412), (-29.348986, -2.616798, -40.395412), (-29.389263, 0, -40.45085), (-27.231953, 0, -41.93353), (-27.194632, -2.616798, -41.87606), (-27.194632, -2.616798, -41.87606), (-27.231953, 0, -41.93353), (-25, 0, -43.30127), (-24.965738, -2.616798, -43.24193), (-24.965738, -2.616798, -43.24193), (-25, 0, -43.30127), (-22.699526, 0, -44.550327), (-22.668417, -2.616798, -44.489273), (-22.668417, -2.616798, -44.489273), (-22.699526, 0, -44.550327), (-20.336832, 0, -45.677273), (-20.308962, -2.616798, -45.614674), (-20.308962, -2.616798, -45.614674), (-20.336832, 0, -45.677273), (-17.918398, 0, -46.67902), (-17.89384, -2.616798, -46.615047), (-17.89384, -2.616798, -46.615047), (-17.918398, 0, -46.67902), (-15.45085, 0, -47.552826), (-15.429675, -2.616798, -47.487656), (-15.429675, -2.616798, -47.487656), (-15.45085, 0, -47.552826), (-12.940952, 0, -48.29629), (-12.923217, -2.616798, -48.230103), (-12.923217, -2.616798, -48.230103), (-12.940952, 0, -48.29629), (-10.395584, 0, -48.90738), (-10.381338, -2.616798, -48.840355), (-10.381338, -2.616798, -48.840355), (-10.395584, 0, -48.90738), (-7.8217235, 0, -49.38442), (-7.8110037, -2.616798, -49.31674), (-7.8110037, -2.616798, -49.31674), (-7.8217235, 0, -49.38442), (-5.2264233, 0, -49.726093), (-5.2192607, -2.616798, -49.657948), (-5.2192607, -2.616798, -49.657948), (-5.2264233, 0, -49.726093), (-2.616798, 0, -49.931477), (-2.6132116, -2.616798, -49.86305), (-2.6132116, -2.616798, -49.86305), (-2.616798, 0, -49.931477), (-9.184851e-15, 0, -50), (-9.172263e-15, -2.616798, -49.931477), (-9.172263e-15, -2.616798, -49.931477), (-9.184851e-15, 0, -50), (2.616798, 0, -49.931477), (2.6132116, -2.616798, -49.86305), (2.6132116, -2.616798, -49.86305), (2.616798, 0, -49.931477), (5.2264233, 0, -49.726093), (5.2192607, -2.616798, -49.657948), (5.2192607, -2.616798, -49.657948), (5.2264233, 0, -49.726093), (7.8217235, 0, -49.38442), (7.8110037, -2.616798, -49.31674), (7.8110037, -2.616798, -49.31674), (7.8217235, 0, -49.38442), (10.395584, 0, -48.90738), (10.381338, -2.616798, -48.840355), (10.381338, -2.616798, -48.840355), (10.395584, 0, -48.90738), (12.940952, 0, -48.29629), (12.923217, -2.616798, -48.230103), (12.923217, -2.616798, -48.230103), (12.940952, 0, -48.29629), (15.45085, 0, -47.552826), (15.429675, -2.616798, -47.487656), (15.429675, -2.616798, -47.487656), (15.45085, 0, -47.552826), (17.918398, 0, -46.67902), (17.89384, -2.616798, -46.615047), (17.89384, -2.616798, -46.615047), (17.918398, 0, -46.67902), (20.336832, 0, -45.677273), (20.308962, -2.616798, -45.614674), (20.308962, -2.616798, -45.614674), (20.336832, 0, -45.677273), (22.699526, 0, -44.550327), (22.668417, -2.616798, -44.489273), (22.668417, -2.616798, -44.489273), (22.699526, 0, -44.550327), (25, 0, -43.30127), (24.965738, -2.616798, -43.24193), (24.965738, -2.616798, -43.24193), (25, 0, -43.30127), (27.231953, 0, -41.93353), (27.194632, -2.616798, -41.87606), (27.194632, -2.616798, -41.87606), (27.231953, 0, -41.93353), (29.389263, 0, -40.45085), (29.348986, -2.616798, -40.395412), (29.348986, -2.616798, -40.395412), (29.389263, 0, -40.45085), (31.466019, 0, -38.8573), (31.422897, -2.616798, -38.804047), (31.422897, -2.616798, -38.804047), (31.466019, 0, -38.8573), (33.45653, 0, -37.15724), (33.41068, -2.616798, -37.10632), (33.41068, -2.616798, -37.10632), (33.45653, 0, -37.15724), (35.35534, 0, -35.35534), (35.306885, -2.616798, -35.306885), (35.306885, -2.616798, -35.306885), (35.35534, 0, -35.35534), (37.15724, 0, -33.45653), (37.10632, -2.616798, -33.41068), (37.10632, -2.616798, -33.41068), (37.15724, 0, -33.45653), (38.8573, 0, -31.466019), (38.804047, -2.616798, -31.422897), (38.804047, -2.616798, -31.422897), (38.8573, 0, -31.466019), (40.45085, 0, -29.389263), (40.395412, -2.616798, -29.348986), (40.395412, -2.616798, -29.348986), (40.45085, 0, -29.389263), (41.93353, 0, -27.231953), (41.87606, -2.616798, -27.194632), (41.87606, -2.616798, -27.194632), (41.93353, 0, -27.231953), (43.30127, 0, -25), (43.24193, -2.616798, -24.965738), (43.24193, -2.616798, -24.965738), (43.30127, 0, -25), (44.550327, 0, -22.699526), (44.489273, -2.616798, -22.668417), (44.489273, -2.616798, -22.668417), (44.550327, 0, -22.699526), (45.677273, 0, -20.336832), (45.614674, -2.616798, -20.308962), (45.614674, -2.616798, -20.308962), (45.677273, 0, -20.336832), (46.67902, 0, -17.918398), (46.615047, -2.616798, -17.89384), (46.615047, -2.616798, -17.89384), (46.67902, 0, -17.918398), (47.552826, 0, -15.45085), (47.487656, -2.616798, -15.429675), (47.487656, -2.616798, -15.429675), (47.552826, 0, -15.45085), (48.29629, 0, -12.940952), (48.230103, -2.616798, -12.923217), (48.230103, -2.616798, -12.923217), (48.29629, 0, -12.940952), (48.90738, 0, -10.395584), (48.840355, -2.616798, -10.381338), (48.840355, -2.616798, -10.381338), (48.90738, 0, -10.395584), (49.38442, 0, -7.8217235), (49.31674, -2.616798, -7.8110037), (49.31674, -2.616798, -7.8110037), (49.38442, 0, -7.8217235), (49.726093, 0, -5.2264233), (49.657948, -2.616798, -5.2192607), (49.657948, -2.616798, -5.2192607), (49.726093, 0, -5.2264233), (49.931477, 0, -2.616798), (49.86305, -2.616798, -2.6132116), (49.86305, -2.616798, -2.6132116), (49.931477, 0, -2.616798), (50, 0, 0), (49.931477, -2.616798, 0), (50, 0, 0), (49.931477, 2.616798, 0), (49.86305, 2.616798, 2.6132116), (49.931477, 0, 2.616798), (49.931477, 0, 2.616798), (49.86305, 2.616798, 2.6132116), (49.657948, 2.616798, 5.2192607), (49.726093, 0, 5.2264233), (49.726093, 0, 5.2264233), (49.657948, 2.616798, 5.2192607), (49.31674, 2.616798, 7.8110037), (49.38442, 0, 7.8217235), (49.38442, 0, 7.8217235), (49.31674, 2.616798, 7.8110037), (48.840355, 2.616798, 10.381338), (48.90738, 0, 10.395584), (48.90738, 0, 10.395584), (48.840355, 2.616798, 10.381338), (48.230103, 2.616798, 12.923217), (48.29629, 0, 12.940952), (48.29629, 0, 12.940952), (48.230103, 2.616798, 12.923217), (47.487656, 2.616798, 15.429675), (47.552826, 0, 15.45085), (47.552826, 0, 15.45085), (47.487656, 2.616798, 15.429675), (46.615047, 2.616798, 17.89384), (46.67902, 0, 17.918398), (46.67902, 0, 17.918398), (46.615047, 2.616798, 17.89384), (45.614674, 2.616798, 20.308962), (45.677273, 0, 20.336832), (45.677273, 0, 20.336832), (45.614674, 2.616798, 20.308962), (44.489273, 2.616798, 22.668417), (44.550327, 0, 22.699526), (44.550327, 0, 22.699526), (44.489273, 2.616798, 22.668417), (43.24193, 2.616798, 24.965738), (43.30127, 0, 25), (43.30127, 0, 25), (43.24193, 2.616798, 24.965738), (41.87606, 2.616798, 27.194632), (41.93353, 0, 27.231953), (41.93353, 0, 27.231953), (41.87606, 2.616798, 27.194632), (40.395412, 2.616798, 29.348986), (40.45085, 0, 29.389263), (40.45085, 0, 29.389263), (40.395412, 2.616798, 29.348986), (38.804047, 2.616798, 31.422897), (38.8573, 0, 31.466019), (38.8573, 0, 31.466019), (38.804047, 2.616798, 31.422897), (37.10632, 2.616798, 33.41068), (37.15724, 0, 33.45653), (37.15724, 0, 33.45653), (37.10632, 2.616798, 33.41068), (35.306885, 2.616798, 35.306885), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (35.306885, 2.616798, 35.306885), (33.41068, 2.616798, 37.10632), (33.45653, 0, 37.15724), (33.45653, 0, 37.15724), (33.41068, 2.616798, 37.10632), (31.422897, 2.616798, 38.804047), (31.466019, 0, 38.8573), (31.466019, 0, 38.8573), (31.422897, 2.616798, 38.804047), (29.348986, 2.616798, 40.395412), (29.389263, 0, 40.45085), (29.389263, 0, 40.45085), (29.348986, 2.616798, 40.395412), (27.194632, 2.616798, 41.87606), (27.231953, 0, 41.93353), (27.231953, 0, 41.93353), (27.194632, 2.616798, 41.87606), (24.965738, 2.616798, 43.24193), (25, 0, 43.30127), (25, 0, 43.30127), (24.965738, 2.616798, 43.24193), (22.668417, 2.616798, 44.489273), (22.699526, 0, 44.550327), (22.699526, 0, 44.550327), (22.668417, 2.616798, 44.489273), (20.308962, 2.616798, 45.614674), (20.336832, 0, 45.677273), (20.336832, 0, 45.677273), (20.308962, 2.616798, 45.614674), (17.89384, 2.616798, 46.615047), (17.918398, 0, 46.67902), (17.918398, 0, 46.67902), (17.89384, 2.616798, 46.615047), (15.429675, 2.616798, 47.487656), (15.45085, 0, 47.552826), (15.45085, 0, 47.552826), (15.429675, 2.616798, 47.487656), (12.923217, 2.616798, 48.230103), (12.940952, 0, 48.29629), (12.940952, 0, 48.29629), (12.923217, 2.616798, 48.230103), (10.381338, 2.616798, 48.840355), (10.395584, 0, 48.90738), (10.395584, 0, 48.90738), (10.381338, 2.616798, 48.840355), (7.8110037, 2.616798, 49.31674), (7.8217235, 0, 49.38442), (7.8217235, 0, 49.38442), (7.8110037, 2.616798, 49.31674), (5.2192607, 2.616798, 49.657948), (5.2264233, 0, 49.726093), (5.2264233, 0, 49.726093), (5.2192607, 2.616798, 49.657948), (2.6132116, 2.616798, 49.86305), (2.616798, 0, 49.931477), (2.616798, 0, 49.931477), (2.6132116, 2.616798, 49.86305), (3.0574211e-15, 2.616798, 49.931477), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.0574211e-15, 2.616798, 49.931477), (-2.6132116, 2.616798, 49.86305), (-2.616798, 0, 49.931477), (-2.616798, 0, 49.931477), (-2.6132116, 2.616798, 49.86305), (-5.2192607, 2.616798, 49.657948), (-5.2264233, 0, 49.726093), (-5.2264233, 0, 49.726093), (-5.2192607, 2.616798, 49.657948), (-7.8110037, 2.616798, 49.31674), (-7.8217235, 0, 49.38442), (-7.8217235, 0, 49.38442), (-7.8110037, 2.616798, 49.31674), (-10.381338, 2.616798, 48.840355), (-10.395584, 0, 48.90738), (-10.395584, 0, 48.90738), (-10.381338, 2.616798, 48.840355), (-12.923217, 2.616798, 48.230103), (-12.940952, 0, 48.29629), (-12.940952, 0, 48.29629), (-12.923217, 2.616798, 48.230103), (-15.429675, 2.616798, 47.487656), (-15.45085, 0, 47.552826), (-15.45085, 0, 47.552826), (-15.429675, 2.616798, 47.487656), (-17.89384, 2.616798, 46.615047), (-17.918398, 0, 46.67902), (-17.918398, 0, 46.67902), (-17.89384, 2.616798, 46.615047), (-20.308962, 2.616798, 45.614674), (-20.336832, 0, 45.677273), (-20.336832, 0, 45.677273), (-20.308962, 2.616798, 45.614674), (-22.668417, 2.616798, 44.489273), (-22.699526, 0, 44.550327), (-22.699526, 0, 44.550327), (-22.668417, 2.616798, 44.489273), (-24.965738, 2.616798, 43.24193), (-25, 0, 43.30127), (-25, 0, 43.30127), (-24.965738, 2.616798, 43.24193), (-27.194632, 2.616798, 41.87606), (-27.231953, 0, 41.93353), (-27.231953, 0, 41.93353), (-27.194632, 2.616798, 41.87606), (-29.348986, 2.616798, 40.395412), (-29.389263, 0, 40.45085), (-29.389263, 0, 40.45085), (-29.348986, 2.616798, 40.395412), (-31.422897, 2.616798, 38.804047), (-31.466019, 0, 38.8573), (-31.466019, 0, 38.8573), (-31.422897, 2.616798, 38.804047), (-33.41068, 2.616798, 37.10632), (-33.45653, 0, 37.15724), (-33.45653, 0, 37.15724), (-33.41068, 2.616798, 37.10632), (-35.306885, 2.616798, 35.306885), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-35.306885, 2.616798, 35.306885), (-37.10632, 2.616798, 33.41068), (-37.15724, 0, 33.45653), (-37.15724, 0, 33.45653), (-37.10632, 2.616798, 33.41068), (-38.804047, 2.616798, 31.422897), (-38.8573, 0, 31.466019), (-38.8573, 0, 31.466019), (-38.804047, 2.616798, 31.422897), (-40.395412, 2.616798, 29.348986), (-40.45085, 0, 29.389263), (-40.45085, 0, 29.389263), (-40.395412, 2.616798, 29.348986), (-41.87606, 2.616798, 27.194632), (-41.93353, 0, 27.231953), (-41.93353, 0, 27.231953), (-41.87606, 2.616798, 27.194632), (-43.24193, 2.616798, 24.965738), (-43.30127, 0, 25), (-43.30127, 0, 25), (-43.24193, 2.616798, 24.965738), (-44.489273, 2.616798, 22.668417), (-44.550327, 0, 22.699526), (-44.550327, 0, 22.699526), (-44.489273, 2.616798, 22.668417), (-45.614674, 2.616798, 20.308962), (-45.677273, 0, 20.336832), (-45.677273, 0, 20.336832), (-45.614674, 2.616798, 20.308962), (-46.615047, 2.616798, 17.89384), (-46.67902, 0, 17.918398), (-46.67902, 0, 17.918398), (-46.615047, 2.616798, 17.89384), (-47.487656, 2.616798, 15.429675), (-47.552826, 0, 15.45085), (-47.552826, 0, 15.45085), (-47.487656, 2.616798, 15.429675), (-48.230103, 2.616798, 12.923217), (-48.29629, 0, 12.940952), (-48.29629, 0, 12.940952), (-48.230103, 2.616798, 12.923217), (-48.840355, 2.616798, 10.381338), (-48.90738, 0, 10.395584), (-48.90738, 0, 10.395584), (-48.840355, 2.616798, 10.381338), (-49.31674, 2.616798, 7.8110037), (-49.38442, 0, 7.8217235), (-49.38442, 0, 7.8217235), (-49.31674, 2.616798, 7.8110037), (-49.657948, 2.616798, 5.2192607), (-49.726093, 0, 5.2264233), (-49.726093, 0, 5.2264233), (-49.657948, 2.616798, 5.2192607), (-49.86305, 2.616798, 2.6132116), (-49.931477, 0, 2.616798), (-49.931477, 0, 2.616798), (-49.86305, 2.616798, 2.6132116), (-49.931477, 2.616798, 6.1148422e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.86305, 2.616798, -2.6132116), (-49.931477, 0, -2.616798), (-49.931477, 0, -2.616798), (-49.86305, 2.616798, -2.6132116), (-49.657948, 2.616798, -5.2192607), (-49.726093, 0, -5.2264233), (-49.726093, 0, -5.2264233), (-49.657948, 2.616798, -5.2192607), (-49.31674, 2.616798, -7.8110037), (-49.38442, 0, -7.8217235), (-49.38442, 0, -7.8217235), (-49.31674, 2.616798, -7.8110037), (-48.840355, 2.616798, -10.381338), (-48.90738, 0, -10.395584), (-48.90738, 0, -10.395584), (-48.840355, 2.616798, -10.381338), (-48.230103, 2.616798, -12.923217), (-48.29629, 0, -12.940952), (-48.29629, 0, -12.940952), (-48.230103, 2.616798, -12.923217), (-47.487656, 2.616798, -15.429675), (-47.552826, 0, -15.45085), (-47.552826, 0, -15.45085), (-47.487656, 2.616798, -15.429675), (-46.615047, 2.616798, -17.89384), (-46.67902, 0, -17.918398), (-46.67902, 0, -17.918398), (-46.615047, 2.616798, -17.89384), (-45.614674, 2.616798, -20.308962), (-45.677273, 0, -20.336832), (-45.677273, 0, -20.336832), (-45.614674, 2.616798, -20.308962), (-44.489273, 2.616798, -22.668417), (-44.550327, 0, -22.699526), (-44.550327, 0, -22.699526), (-44.489273, 2.616798, -22.668417), (-43.24193, 2.616798, -24.965738), (-43.30127, 0, -25), (-43.30127, 0, -25), (-43.24193, 2.616798, -24.965738), (-41.87606, 2.616798, -27.194632), (-41.93353, 0, -27.231953), (-41.93353, 0, -27.231953), (-41.87606, 2.616798, -27.194632), (-40.395412, 2.616798, -29.348986), (-40.45085, 0, -29.389263), (-40.45085, 0, -29.389263), (-40.395412, 2.616798, -29.348986), (-38.804047, 2.616798, -31.422897), (-38.8573, 0, -31.466019), (-38.8573, 0, -31.466019), (-38.804047, 2.616798, -31.422897), (-37.10632, 2.616798, -33.41068), (-37.15724, 0, -33.45653), (-37.15724, 0, -33.45653), (-37.10632, 2.616798, -33.41068), (-35.306885, 2.616798, -35.306885), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-35.306885, 2.616798, -35.306885), (-33.41068, 2.616798, -37.10632), (-33.45653, 0, -37.15724), (-33.45653, 0, -37.15724), (-33.41068, 2.616798, -37.10632), (-31.422897, 2.616798, -38.804047), (-31.466019, 0, -38.8573), (-31.466019, 0, -38.8573), (-31.422897, 2.616798, -38.804047), (-29.348986, 2.616798, -40.395412), (-29.389263, 0, -40.45085), (-29.389263, 0, -40.45085), (-29.348986, 2.616798, -40.395412), (-27.194632, 2.616798, -41.87606), (-27.231953, 0, -41.93353), (-27.231953, 0, -41.93353), (-27.194632, 2.616798, -41.87606), (-24.965738, 2.616798, -43.24193), (-25, 0, -43.30127), (-25, 0, -43.30127), (-24.965738, 2.616798, -43.24193), (-22.668417, 2.616798, -44.489273), (-22.699526, 0, -44.550327), (-22.699526, 0, -44.550327), (-22.668417, 2.616798, -44.489273), (-20.308962, 2.616798, -45.614674), (-20.336832, 0, -45.677273), (-20.336832, 0, -45.677273), (-20.308962, 2.616798, -45.614674), (-17.89384, 2.616798, -46.615047), (-17.918398, 0, -46.67902), (-17.918398, 0, -46.67902), (-17.89384, 2.616798, -46.615047), (-15.429675, 2.616798, -47.487656), (-15.45085, 0, -47.552826), (-15.45085, 0, -47.552826), (-15.429675, 2.616798, -47.487656), (-12.923217, 2.616798, -48.230103), (-12.940952, 0, -48.29629), (-12.940952, 0, -48.29629), (-12.923217, 2.616798, -48.230103), (-10.381338, 2.616798, -48.840355), (-10.395584, 0, -48.90738), (-10.395584, 0, -48.90738), (-10.381338, 2.616798, -48.840355), (-7.8110037, 2.616798, -49.31674), (-7.8217235, 0, -49.38442), (-7.8217235, 0, -49.38442), (-7.8110037, 2.616798, -49.31674), (-5.2192607, 2.616798, -49.657948), (-5.2264233, 0, -49.726093), (-5.2264233, 0, -49.726093), (-5.2192607, 2.616798, -49.657948), (-2.6132116, 2.616798, -49.86305), (-2.616798, 0, -49.931477), (-2.616798, 0, -49.931477), (-2.6132116, 2.616798, -49.86305), (-9.172263e-15, 2.616798, -49.931477), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.172263e-15, 2.616798, -49.931477), (2.6132116, 2.616798, -49.86305), (2.616798, 0, -49.931477), (2.616798, 0, -49.931477), (2.6132116, 2.616798, -49.86305), (5.2192607, 2.616798, -49.657948), (5.2264233, 0, -49.726093), (5.2264233, 0, -49.726093), (5.2192607, 2.616798, -49.657948), (7.8110037, 2.616798, -49.31674), (7.8217235, 0, -49.38442), (7.8217235, 0, -49.38442), (7.8110037, 2.616798, -49.31674), (10.381338, 2.616798, -48.840355), (10.395584, 0, -48.90738), (10.395584, 0, -48.90738), (10.381338, 2.616798, -48.840355), (12.923217, 2.616798, -48.230103), (12.940952, 0, -48.29629), (12.940952, 0, -48.29629), (12.923217, 2.616798, -48.230103), (15.429675, 2.616798, -47.487656), (15.45085, 0, -47.552826), (15.45085, 0, -47.552826), (15.429675, 2.616798, -47.487656), (17.89384, 2.616798, -46.615047), (17.918398, 0, -46.67902), (17.918398, 0, -46.67902), (17.89384, 2.616798, -46.615047), (20.308962, 2.616798, -45.614674), (20.336832, 0, -45.677273), (20.336832, 0, -45.677273), (20.308962, 2.616798, -45.614674), (22.668417, 2.616798, -44.489273), (22.699526, 0, -44.550327), (22.699526, 0, -44.550327), (22.668417, 2.616798, -44.489273), (24.965738, 2.616798, -43.24193), (25, 0, -43.30127), (25, 0, -43.30127), (24.965738, 2.616798, -43.24193), (27.194632, 2.616798, -41.87606), (27.231953, 0, -41.93353), (27.231953, 0, -41.93353), (27.194632, 2.616798, -41.87606), (29.348986, 2.616798, -40.395412), (29.389263, 0, -40.45085), (29.389263, 0, -40.45085), (29.348986, 2.616798, -40.395412), (31.422897, 2.616798, -38.804047), (31.466019, 0, -38.8573), (31.466019, 0, -38.8573), (31.422897, 2.616798, -38.804047), (33.41068, 2.616798, -37.10632), (33.45653, 0, -37.15724), (33.45653, 0, -37.15724), (33.41068, 2.616798, -37.10632), (35.306885, 2.616798, -35.306885), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (35.306885, 2.616798, -35.306885), (37.10632, 2.616798, -33.41068), (37.15724, 0, -33.45653), (37.15724, 0, -33.45653), (37.10632, 2.616798, -33.41068), (38.804047, 2.616798, -31.422897), (38.8573, 0, -31.466019), (38.8573, 0, -31.466019), (38.804047, 2.616798, -31.422897), (40.395412, 2.616798, -29.348986), (40.45085, 0, -29.389263), (40.45085, 0, -29.389263), (40.395412, 2.616798, -29.348986), (41.87606, 2.616798, -27.194632), (41.93353, 0, -27.231953), (41.93353, 0, -27.231953), (41.87606, 2.616798, -27.194632), (43.24193, 2.616798, -24.965738), (43.30127, 0, -25), (43.30127, 0, -25), (43.24193, 2.616798, -24.965738), (44.489273, 2.616798, -22.668417), (44.550327, 0, -22.699526), (44.550327, 0, -22.699526), (44.489273, 2.616798, -22.668417), (45.614674, 2.616798, -20.308962), (45.677273, 0, -20.336832), (45.677273, 0, -20.336832), (45.614674, 2.616798, -20.308962), (46.615047, 2.616798, -17.89384), (46.67902, 0, -17.918398), (46.67902, 0, -17.918398), (46.615047, 2.616798, -17.89384), (47.487656, 2.616798, -15.429675), (47.552826, 0, -15.45085), (47.552826, 0, -15.45085), (47.487656, 2.616798, -15.429675), (48.230103, 2.616798, -12.923217), (48.29629, 0, -12.940952), (48.29629, 0, -12.940952), (48.230103, 2.616798, -12.923217), (48.840355, 2.616798, -10.381338), (48.90738, 0, -10.395584), (48.90738, 0, -10.395584), (48.840355, 2.616798, -10.381338), (49.31674, 2.616798, -7.8110037), (49.38442, 0, -7.8217235), (49.38442, 0, -7.8217235), (49.31674, 2.616798, -7.8110037), (49.657948, 2.616798, -5.2192607), (49.726093, 0, -5.2264233), (49.726093, 0, -5.2264233), (49.657948, 2.616798, -5.2192607), (49.86305, 2.616798, -2.6132116), (49.931477, 0, -2.616798), (49.931477, 0, -2.616798), (49.86305, 2.616798, -2.6132116), (49.931477, 2.616798, 0), (50, 0, 0), (49.931477, 2.616798, 0), (49.726093, 5.2264233, 0), (49.657948, 5.2264233, 2.6024628), (49.86305, 2.616798, 2.6132116), (49.86305, 2.616798, 2.6132116), (49.657948, 5.2264233, 2.6024628), (49.45369, 5.2264233, 5.197792), (49.657948, 2.616798, 5.2192607), (49.657948, 2.616798, 5.2192607), (49.45369, 5.2264233, 5.197792), (49.113884, 5.2264233, 7.778875), (49.31674, 2.616798, 7.8110037), (49.31674, 2.616798, 7.8110037), (49.113884, 5.2264233, 7.778875), (48.63946, 5.2264233, 10.338636), (48.840355, 2.616798, 10.381338), (48.840355, 2.616798, 10.381338), (48.63946, 5.2264233, 10.338636), (48.03172, 5.2264233, 12.87006), (48.230103, 2.616798, 12.923217), (48.230103, 2.616798, 12.923217), (48.03172, 5.2264233, 12.87006), (47.292328, 5.2264233, 15.366208), (47.487656, 2.616798, 15.429675), (47.487656, 2.616798, 15.429675), (47.292328, 5.2264233, 15.366208), (46.42331, 5.2264233, 17.820238), (46.615047, 2.616798, 17.89384), (46.615047, 2.616798, 17.89384), (46.42331, 5.2264233, 17.820238), (45.427048, 5.2264233, 20.225426), (45.614674, 2.616798, 20.308962), (45.614674, 2.616798, 20.308962), (45.427048, 5.2264233, 20.225426), (44.306274, 5.2264233, 22.575174), (44.489273, 2.616798, 22.668417), (44.489273, 2.616798, 22.668417), (44.306274, 5.2264233, 22.575174), (43.06406, 5.2264233, 24.863047), (43.24193, 2.616798, 24.965738), (43.24193, 2.616798, 24.965738), (43.06406, 5.2264233, 24.863047), (41.70381, 5.2264233, 27.082773), (41.87606, 2.616798, 27.194632), (41.87606, 2.616798, 27.194632), (41.70381, 5.2264233, 27.082773), (40.229256, 5.2264233, 29.228266), (40.395412, 2.616798, 29.348986), (40.395412, 2.616798, 29.348986), (40.229256, 5.2264233, 29.228266), (38.644432, 5.2264233, 31.293646), (38.804047, 2.616798, 31.422897), (38.804047, 2.616798, 31.422897), (38.644432, 5.2264233, 31.293646), (36.95369, 5.2264233, 33.27325), (37.10632, 2.616798, 33.41068), (37.10632, 2.616798, 33.41068), (36.95369, 5.2264233, 33.27325), (35.16166, 5.2264233, 35.16166), (35.306885, 2.616798, 35.306885), (35.306885, 2.616798, 35.306885), (35.16166, 5.2264233, 35.16166), (33.27325, 5.2264233, 36.95369), (33.41068, 2.616798, 37.10632), (33.41068, 2.616798, 37.10632), (33.27325, 5.2264233, 36.95369), (31.293646, 5.2264233, 38.644432), (31.422897, 2.616798, 38.804047), (31.422897, 2.616798, 38.804047), (31.293646, 5.2264233, 38.644432), (29.228266, 5.2264233, 40.229256), (29.348986, 2.616798, 40.395412), (29.348986, 2.616798, 40.395412), (29.228266, 5.2264233, 40.229256), (27.082773, 5.2264233, 41.70381), (27.194632, 2.616798, 41.87606), (27.194632, 2.616798, 41.87606), (27.082773, 5.2264233, 41.70381), (24.863047, 5.2264233, 43.06406), (24.965738, 2.616798, 43.24193), (24.965738, 2.616798, 43.24193), (24.863047, 5.2264233, 43.06406), (22.575174, 5.2264233, 44.306274), (22.668417, 2.616798, 44.489273), (22.668417, 2.616798, 44.489273), (22.575174, 5.2264233, 44.306274), (20.225426, 5.2264233, 45.427048), (20.308962, 2.616798, 45.614674), (20.308962, 2.616798, 45.614674), (20.225426, 5.2264233, 45.427048), (17.820238, 5.2264233, 46.42331), (17.89384, 2.616798, 46.615047), (17.89384, 2.616798, 46.615047), (17.820238, 5.2264233, 46.42331), (15.366208, 5.2264233, 47.292328), (15.429675, 2.616798, 47.487656), (15.429675, 2.616798, 47.487656), (15.366208, 5.2264233, 47.292328), (12.87006, 5.2264233, 48.03172), (12.923217, 2.616798, 48.230103), (12.923217, 2.616798, 48.230103), (12.87006, 5.2264233, 48.03172), (10.338636, 5.2264233, 48.63946), (10.381338, 2.616798, 48.840355), (10.381338, 2.616798, 48.840355), (10.338636, 5.2264233, 48.63946), (7.778875, 5.2264233, 49.113884), (7.8110037, 2.616798, 49.31674), (7.8110037, 2.616798, 49.31674), (7.778875, 5.2264233, 49.113884), (5.197792, 5.2264233, 49.45369), (5.2192607, 2.616798, 49.657948), (5.2192607, 2.616798, 49.657948), (5.197792, 5.2264233, 49.45369), (2.6024628, 5.2264233, 49.657948), (2.6132116, 2.616798, 49.86305), (2.6132116, 2.616798, 49.86305), (2.6024628, 5.2264233, 49.657948), (3.0448452e-15, 5.2264233, 49.726093), (3.0574211e-15, 2.616798, 49.931477), (3.0574211e-15, 2.616798, 49.931477), (3.0448452e-15, 5.2264233, 49.726093), (-2.6024628, 5.2264233, 49.657948), (-2.6132116, 2.616798, 49.86305), (-2.6132116, 2.616798, 49.86305), (-2.6024628, 5.2264233, 49.657948), (-5.197792, 5.2264233, 49.45369), (-5.2192607, 2.616798, 49.657948), (-5.2192607, 2.616798, 49.657948), (-5.197792, 5.2264233, 49.45369), (-7.778875, 5.2264233, 49.113884), (-7.8110037, 2.616798, 49.31674), (-7.8110037, 2.616798, 49.31674), (-7.778875, 5.2264233, 49.113884), (-10.338636, 5.2264233, 48.63946), (-10.381338, 2.616798, 48.840355), (-10.381338, 2.616798, 48.840355), (-10.338636, 5.2264233, 48.63946), (-12.87006, 5.2264233, 48.03172), (-12.923217, 2.616798, 48.230103), (-12.923217, 2.616798, 48.230103), (-12.87006, 5.2264233, 48.03172), (-15.366208, 5.2264233, 47.292328), (-15.429675, 2.616798, 47.487656), (-15.429675, 2.616798, 47.487656), (-15.366208, 5.2264233, 47.292328), (-17.820238, 5.2264233, 46.42331), (-17.89384, 2.616798, 46.615047), (-17.89384, 2.616798, 46.615047), (-17.820238, 5.2264233, 46.42331), (-20.225426, 5.2264233, 45.427048), (-20.308962, 2.616798, 45.614674), (-20.308962, 2.616798, 45.614674), (-20.225426, 5.2264233, 45.427048), (-22.575174, 5.2264233, 44.306274), (-22.668417, 2.616798, 44.489273), (-22.668417, 2.616798, 44.489273), (-22.575174, 5.2264233, 44.306274), (-24.863047, 5.2264233, 43.06406), (-24.965738, 2.616798, 43.24193), (-24.965738, 2.616798, 43.24193), (-24.863047, 5.2264233, 43.06406), (-27.082773, 5.2264233, 41.70381), (-27.194632, 2.616798, 41.87606), (-27.194632, 2.616798, 41.87606), (-27.082773, 5.2264233, 41.70381), (-29.228266, 5.2264233, 40.229256), (-29.348986, 2.616798, 40.395412), (-29.348986, 2.616798, 40.395412), (-29.228266, 5.2264233, 40.229256), (-31.293646, 5.2264233, 38.644432), (-31.422897, 2.616798, 38.804047), (-31.422897, 2.616798, 38.804047), (-31.293646, 5.2264233, 38.644432), (-33.27325, 5.2264233, 36.95369), (-33.41068, 2.616798, 37.10632), (-33.41068, 2.616798, 37.10632), (-33.27325, 5.2264233, 36.95369), (-35.16166, 5.2264233, 35.16166), (-35.306885, 2.616798, 35.306885), (-35.306885, 2.616798, 35.306885), (-35.16166, 5.2264233, 35.16166), (-36.95369, 5.2264233, 33.27325), (-37.10632, 2.616798, 33.41068), (-37.10632, 2.616798, 33.41068), (-36.95369, 5.2264233, 33.27325), (-38.644432, 5.2264233, 31.293646), (-38.804047, 2.616798, 31.422897), (-38.804047, 2.616798, 31.422897), (-38.644432, 5.2264233, 31.293646), (-40.229256, 5.2264233, 29.228266), (-40.395412, 2.616798, 29.348986), (-40.395412, 2.616798, 29.348986), (-40.229256, 5.2264233, 29.228266), (-41.70381, 5.2264233, 27.082773), (-41.87606, 2.616798, 27.194632), (-41.87606, 2.616798, 27.194632), (-41.70381, 5.2264233, 27.082773), (-43.06406, 5.2264233, 24.863047), (-43.24193, 2.616798, 24.965738), (-43.24193, 2.616798, 24.965738), (-43.06406, 5.2264233, 24.863047), (-44.306274, 5.2264233, 22.575174), (-44.489273, 2.616798, 22.668417), (-44.489273, 2.616798, 22.668417), (-44.306274, 5.2264233, 22.575174), (-45.427048, 5.2264233, 20.225426), (-45.614674, 2.616798, 20.308962), (-45.614674, 2.616798, 20.308962), (-45.427048, 5.2264233, 20.225426), (-46.42331, 5.2264233, 17.820238), (-46.615047, 2.616798, 17.89384), (-46.615047, 2.616798, 17.89384), (-46.42331, 5.2264233, 17.820238), (-47.292328, 5.2264233, 15.366208), (-47.487656, 2.616798, 15.429675), (-47.487656, 2.616798, 15.429675), (-47.292328, 5.2264233, 15.366208), (-48.03172, 5.2264233, 12.87006), (-48.230103, 2.616798, 12.923217), (-48.230103, 2.616798, 12.923217), (-48.03172, 5.2264233, 12.87006), (-48.63946, 5.2264233, 10.338636), (-48.840355, 2.616798, 10.381338), (-48.840355, 2.616798, 10.381338), (-48.63946, 5.2264233, 10.338636), (-49.113884, 5.2264233, 7.778875), (-49.31674, 2.616798, 7.8110037), (-49.31674, 2.616798, 7.8110037), (-49.113884, 5.2264233, 7.778875), (-49.45369, 5.2264233, 5.197792), (-49.657948, 2.616798, 5.2192607), (-49.657948, 2.616798, 5.2192607), (-49.45369, 5.2264233, 5.197792), (-49.657948, 5.2264233, 2.6024628), (-49.86305, 2.616798, 2.6132116), (-49.86305, 2.616798, 2.6132116), (-49.657948, 5.2264233, 2.6024628), (-49.726093, 5.2264233, 6.0896904e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.657948, 5.2264233, -2.6024628), (-49.86305, 2.616798, -2.6132116), (-49.86305, 2.616798, -2.6132116), (-49.657948, 5.2264233, -2.6024628), (-49.45369, 5.2264233, -5.197792), (-49.657948, 2.616798, -5.2192607), (-49.657948, 2.616798, -5.2192607), (-49.45369, 5.2264233, -5.197792), (-49.113884, 5.2264233, -7.778875), (-49.31674, 2.616798, -7.8110037), (-49.31674, 2.616798, -7.8110037), (-49.113884, 5.2264233, -7.778875), (-48.63946, 5.2264233, -10.338636), (-48.840355, 2.616798, -10.381338), (-48.840355, 2.616798, -10.381338), (-48.63946, 5.2264233, -10.338636), (-48.03172, 5.2264233, -12.87006), (-48.230103, 2.616798, -12.923217), (-48.230103, 2.616798, -12.923217), (-48.03172, 5.2264233, -12.87006), (-47.292328, 5.2264233, -15.366208), (-47.487656, 2.616798, -15.429675), (-47.487656, 2.616798, -15.429675), (-47.292328, 5.2264233, -15.366208), (-46.42331, 5.2264233, -17.820238), (-46.615047, 2.616798, -17.89384), (-46.615047, 2.616798, -17.89384), (-46.42331, 5.2264233, -17.820238), (-45.427048, 5.2264233, -20.225426), (-45.614674, 2.616798, -20.308962), (-45.614674, 2.616798, -20.308962), (-45.427048, 5.2264233, -20.225426), (-44.306274, 5.2264233, -22.575174), (-44.489273, 2.616798, -22.668417), (-44.489273, 2.616798, -22.668417), (-44.306274, 5.2264233, -22.575174), (-43.06406, 5.2264233, -24.863047), (-43.24193, 2.616798, -24.965738), (-43.24193, 2.616798, -24.965738), (-43.06406, 5.2264233, -24.863047), (-41.70381, 5.2264233, -27.082773), (-41.87606, 2.616798, -27.194632), (-41.87606, 2.616798, -27.194632), (-41.70381, 5.2264233, -27.082773), (-40.229256, 5.2264233, -29.228266), (-40.395412, 2.616798, -29.348986), (-40.395412, 2.616798, -29.348986), (-40.229256, 5.2264233, -29.228266), (-38.644432, 5.2264233, -31.293646), (-38.804047, 2.616798, -31.422897), (-38.804047, 2.616798, -31.422897), (-38.644432, 5.2264233, -31.293646), (-36.95369, 5.2264233, -33.27325), (-37.10632, 2.616798, -33.41068), (-37.10632, 2.616798, -33.41068), (-36.95369, 5.2264233, -33.27325), (-35.16166, 5.2264233, -35.16166), (-35.306885, 2.616798, -35.306885), (-35.306885, 2.616798, -35.306885), (-35.16166, 5.2264233, -35.16166), (-33.27325, 5.2264233, -36.95369), (-33.41068, 2.616798, -37.10632), (-33.41068, 2.616798, -37.10632), (-33.27325, 5.2264233, -36.95369), (-31.293646, 5.2264233, -38.644432), (-31.422897, 2.616798, -38.804047), (-31.422897, 2.616798, -38.804047), (-31.293646, 5.2264233, -38.644432), (-29.228266, 5.2264233, -40.229256), (-29.348986, 2.616798, -40.395412), (-29.348986, 2.616798, -40.395412), (-29.228266, 5.2264233, -40.229256), (-27.082773, 5.2264233, -41.70381), (-27.194632, 2.616798, -41.87606), (-27.194632, 2.616798, -41.87606), (-27.082773, 5.2264233, -41.70381), (-24.863047, 5.2264233, -43.06406), (-24.965738, 2.616798, -43.24193), (-24.965738, 2.616798, -43.24193), (-24.863047, 5.2264233, -43.06406), (-22.575174, 5.2264233, -44.306274), (-22.668417, 2.616798, -44.489273), (-22.668417, 2.616798, -44.489273), (-22.575174, 5.2264233, -44.306274), (-20.225426, 5.2264233, -45.427048), (-20.308962, 2.616798, -45.614674), (-20.308962, 2.616798, -45.614674), (-20.225426, 5.2264233, -45.427048), (-17.820238, 5.2264233, -46.42331), (-17.89384, 2.616798, -46.615047), (-17.89384, 2.616798, -46.615047), (-17.820238, 5.2264233, -46.42331), (-15.366208, 5.2264233, -47.292328), (-15.429675, 2.616798, -47.487656), (-15.429675, 2.616798, -47.487656), (-15.366208, 5.2264233, -47.292328), (-12.87006, 5.2264233, -48.03172), (-12.923217, 2.616798, -48.230103), (-12.923217, 2.616798, -48.230103), (-12.87006, 5.2264233, -48.03172), (-10.338636, 5.2264233, -48.63946), (-10.381338, 2.616798, -48.840355), (-10.381338, 2.616798, -48.840355), (-10.338636, 5.2264233, -48.63946), (-7.778875, 5.2264233, -49.113884), (-7.8110037, 2.616798, -49.31674), (-7.8110037, 2.616798, -49.31674), (-7.778875, 5.2264233, -49.113884), (-5.197792, 5.2264233, -49.45369), (-5.2192607, 2.616798, -49.657948), (-5.2192607, 2.616798, -49.657948), (-5.197792, 5.2264233, -49.45369), (-2.6024628, 5.2264233, -49.657948), (-2.6132116, 2.616798, -49.86305), (-2.6132116, 2.616798, -49.86305), (-2.6024628, 5.2264233, -49.657948), (-9.1345354e-15, 5.2264233, -49.726093), (-9.172263e-15, 2.616798, -49.931477), (-9.172263e-15, 2.616798, -49.931477), (-9.1345354e-15, 5.2264233, -49.726093), (2.6024628, 5.2264233, -49.657948), (2.6132116, 2.616798, -49.86305), (2.6132116, 2.616798, -49.86305), (2.6024628, 5.2264233, -49.657948), (5.197792, 5.2264233, -49.45369), (5.2192607, 2.616798, -49.657948), (5.2192607, 2.616798, -49.657948), (5.197792, 5.2264233, -49.45369), (7.778875, 5.2264233, -49.113884), (7.8110037, 2.616798, -49.31674), (7.8110037, 2.616798, -49.31674), (7.778875, 5.2264233, -49.113884), (10.338636, 5.2264233, -48.63946), (10.381338, 2.616798, -48.840355), (10.381338, 2.616798, -48.840355), (10.338636, 5.2264233, -48.63946), (12.87006, 5.2264233, -48.03172), (12.923217, 2.616798, -48.230103), (12.923217, 2.616798, -48.230103), (12.87006, 5.2264233, -48.03172), (15.366208, 5.2264233, -47.292328), (15.429675, 2.616798, -47.487656), (15.429675, 2.616798, -47.487656), (15.366208, 5.2264233, -47.292328), (17.820238, 5.2264233, -46.42331), (17.89384, 2.616798, -46.615047), (17.89384, 2.616798, -46.615047), (17.820238, 5.2264233, -46.42331), (20.225426, 5.2264233, -45.427048), (20.308962, 2.616798, -45.614674), (20.308962, 2.616798, -45.614674), (20.225426, 5.2264233, -45.427048), (22.575174, 5.2264233, -44.306274), (22.668417, 2.616798, -44.489273), (22.668417, 2.616798, -44.489273), (22.575174, 5.2264233, -44.306274), (24.863047, 5.2264233, -43.06406), (24.965738, 2.616798, -43.24193), (24.965738, 2.616798, -43.24193), (24.863047, 5.2264233, -43.06406), (27.082773, 5.2264233, -41.70381), (27.194632, 2.616798, -41.87606), (27.194632, 2.616798, -41.87606), (27.082773, 5.2264233, -41.70381), (29.228266, 5.2264233, -40.229256), (29.348986, 2.616798, -40.395412), (29.348986, 2.616798, -40.395412), (29.228266, 5.2264233, -40.229256), (31.293646, 5.2264233, -38.644432), (31.422897, 2.616798, -38.804047), (31.422897, 2.616798, -38.804047), (31.293646, 5.2264233, -38.644432), (33.27325, 5.2264233, -36.95369), (33.41068, 2.616798, -37.10632), (33.41068, 2.616798, -37.10632), (33.27325, 5.2264233, -36.95369), (35.16166, 5.2264233, -35.16166), (35.306885, 2.616798, -35.306885), (35.306885, 2.616798, -35.306885), (35.16166, 5.2264233, -35.16166), (36.95369, 5.2264233, -33.27325), (37.10632, 2.616798, -33.41068), (37.10632, 2.616798, -33.41068), (36.95369, 5.2264233, -33.27325), (38.644432, 5.2264233, -31.293646), (38.804047, 2.616798, -31.422897), (38.804047, 2.616798, -31.422897), (38.644432, 5.2264233, -31.293646), (40.229256, 5.2264233, -29.228266), (40.395412, 2.616798, -29.348986), (40.395412, 2.616798, -29.348986), (40.229256, 5.2264233, -29.228266), (41.70381, 5.2264233, -27.082773), (41.87606, 2.616798, -27.194632), (41.87606, 2.616798, -27.194632), (41.70381, 5.2264233, -27.082773), (43.06406, 5.2264233, -24.863047), (43.24193, 2.616798, -24.965738), (43.24193, 2.616798, -24.965738), (43.06406, 5.2264233, -24.863047), (44.306274, 5.2264233, -22.575174), (44.489273, 2.616798, -22.668417), (44.489273, 2.616798, -22.668417), (44.306274, 5.2264233, -22.575174), (45.427048, 5.2264233, -20.225426), (45.614674, 2.616798, -20.308962), (45.614674, 2.616798, -20.308962), (45.427048, 5.2264233, -20.225426), (46.42331, 5.2264233, -17.820238), (46.615047, 2.616798, -17.89384), (46.615047, 2.616798, -17.89384), (46.42331, 5.2264233, -17.820238), (47.292328, 5.2264233, -15.366208), (47.487656, 2.616798, -15.429675), (47.487656, 2.616798, -15.429675), (47.292328, 5.2264233, -15.366208), (48.03172, 5.2264233, -12.87006), (48.230103, 2.616798, -12.923217), (48.230103, 2.616798, -12.923217), (48.03172, 5.2264233, -12.87006), (48.63946, 5.2264233, -10.338636), (48.840355, 2.616798, -10.381338), (48.840355, 2.616798, -10.381338), (48.63946, 5.2264233, -10.338636), (49.113884, 5.2264233, -7.778875), (49.31674, 2.616798, -7.8110037), (49.31674, 2.616798, -7.8110037), (49.113884, 5.2264233, -7.778875), (49.45369, 5.2264233, -5.197792), (49.657948, 2.616798, -5.2192607), (49.657948, 2.616798, -5.2192607), (49.45369, 5.2264233, -5.197792), (49.657948, 5.2264233, -2.6024628), (49.86305, 2.616798, -2.6132116), (49.86305, 2.616798, -2.6132116), (49.657948, 5.2264233, -2.6024628), (49.726093, 5.2264233, 0), (49.931477, 2.616798, 0), (49.726093, 5.2264233, 0), (49.38442, 7.8217235, 0), (49.31674, 7.8217235, 2.5845807), (49.657948, 5.2264233, 2.6024628), (49.657948, 5.2264233, 2.6024628), (49.31674, 7.8217235, 2.5845807), (49.113884, 7.8217235, 5.1620774), (49.45369, 5.2264233, 5.197792), (49.45369, 5.2264233, 5.197792), (49.113884, 7.8217235, 5.1620774), (48.776413, 7.8217235, 7.725425), (49.113884, 5.2264233, 7.778875), (49.113884, 5.2264233, 7.778875), (48.776413, 7.8217235, 7.725425), (48.30525, 7.8217235, 10.267597), (48.63946, 5.2264233, 10.338636), (48.63946, 5.2264233, 10.338636), (48.30525, 7.8217235, 10.267597), (47.701683, 7.8217235, 12.781628), (48.03172, 5.2264233, 12.87006), (48.03172, 5.2264233, 12.87006), (47.701683, 7.8217235, 12.781628), (46.967373, 7.8217235, 15.260624), (47.292328, 5.2264233, 15.366208), (47.292328, 5.2264233, 15.366208), (46.967373, 7.8217235, 15.260624), (46.104324, 7.8217235, 17.697792), (46.42331, 5.2264233, 17.820238), (46.42331, 5.2264233, 17.820238), (46.104324, 7.8217235, 17.697792), (45.11491, 7.8217235, 20.086452), (45.427048, 5.2264233, 20.225426), (45.427048, 5.2264233, 20.225426), (45.11491, 7.8217235, 20.086452), (44.00184, 7.8217235, 22.420055), (44.306274, 5.2264233, 22.575174), (44.306274, 5.2264233, 22.575174), (44.00184, 7.8217235, 22.420055), (42.768158, 7.8217235, 24.69221), (43.06406, 5.2264233, 24.863047), (43.06406, 5.2264233, 24.863047), (42.768158, 7.8217235, 24.69221), (41.417255, 7.8217235, 26.89668), (41.70381, 5.2264233, 27.082773), (41.70381, 5.2264233, 27.082773), (41.417255, 7.8217235, 26.89668), (39.95283, 7.8217235, 29.027431), (40.229256, 5.2264233, 29.228266), (40.229256, 5.2264233, 29.228266), (39.95283, 7.8217235, 29.027431), (38.3789, 7.8217235, 31.07862), (38.644432, 5.2264233, 31.293646), (38.644432, 5.2264233, 31.293646), (38.3789, 7.8217235, 31.07862), (36.699776, 7.8217235, 33.044624), (36.95369, 5.2264233, 33.27325), (36.95369, 5.2264233, 33.27325), (36.699776, 7.8217235, 33.044624), (34.920055, 7.8217235, 34.920055), (35.16166, 5.2264233, 35.16166), (35.16166, 5.2264233, 35.16166), (34.920055, 7.8217235, 34.920055), (33.044624, 7.8217235, 36.699776), (33.27325, 5.2264233, 36.95369), (33.27325, 5.2264233, 36.95369), (33.044624, 7.8217235, 36.699776), (31.07862, 7.8217235, 38.3789), (31.293646, 5.2264233, 38.644432), (31.293646, 5.2264233, 38.644432), (31.07862, 7.8217235, 38.3789), (29.027431, 7.8217235, 39.95283), (29.228266, 5.2264233, 40.229256), (29.228266, 5.2264233, 40.229256), (29.027431, 7.8217235, 39.95283), (26.89668, 7.8217235, 41.417255), (27.082773, 5.2264233, 41.70381), (27.082773, 5.2264233, 41.70381), (26.89668, 7.8217235, 41.417255), (24.69221, 7.8217235, 42.768158), (24.863047, 5.2264233, 43.06406), (24.863047, 5.2264233, 43.06406), (24.69221, 7.8217235, 42.768158), (22.420055, 7.8217235, 44.00184), (22.575174, 5.2264233, 44.306274), (22.575174, 5.2264233, 44.306274), (22.420055, 7.8217235, 44.00184), (20.086452, 7.8217235, 45.11491), (20.225426, 5.2264233, 45.427048), (20.225426, 5.2264233, 45.427048), (20.086452, 7.8217235, 45.11491), (17.697792, 7.8217235, 46.104324), (17.820238, 5.2264233, 46.42331), (17.820238, 5.2264233, 46.42331), (17.697792, 7.8217235, 46.104324), (15.260624, 7.8217235, 46.967373), (15.366208, 5.2264233, 47.292328), (15.366208, 5.2264233, 47.292328), (15.260624, 7.8217235, 46.967373), (12.781628, 7.8217235, 47.701683), (12.87006, 5.2264233, 48.03172), (12.87006, 5.2264233, 48.03172), (12.781628, 7.8217235, 47.701683), (10.267597, 7.8217235, 48.30525), (10.338636, 5.2264233, 48.63946), (10.338636, 5.2264233, 48.63946), (10.267597, 7.8217235, 48.30525), (7.725425, 7.8217235, 48.776413), (7.778875, 5.2264233, 49.113884), (7.778875, 5.2264233, 49.113884), (7.725425, 7.8217235, 48.776413), (5.1620774, 7.8217235, 49.113884), (5.197792, 5.2264233, 49.45369), (5.197792, 5.2264233, 49.45369), (5.1620774, 7.8217235, 49.113884), (2.5845807, 7.8217235, 49.31674), (2.6024628, 5.2264233, 49.657948), (2.6024628, 5.2264233, 49.657948), (2.5845807, 7.8217235, 49.31674), (3.0239235e-15, 7.8217235, 49.38442), (3.0448452e-15, 5.2264233, 49.726093), (3.0448452e-15, 5.2264233, 49.726093), (3.0239235e-15, 7.8217235, 49.38442), (-2.5845807, 7.8217235, 49.31674), (-2.6024628, 5.2264233, 49.657948), (-2.6024628, 5.2264233, 49.657948), (-2.5845807, 7.8217235, 49.31674), (-5.1620774, 7.8217235, 49.113884), (-5.197792, 5.2264233, 49.45369), (-5.197792, 5.2264233, 49.45369), (-5.1620774, 7.8217235, 49.113884), (-7.725425, 7.8217235, 48.776413), (-7.778875, 5.2264233, 49.113884), (-7.778875, 5.2264233, 49.113884), (-7.725425, 7.8217235, 48.776413), (-10.267597, 7.8217235, 48.30525), (-10.338636, 5.2264233, 48.63946), (-10.338636, 5.2264233, 48.63946), (-10.267597, 7.8217235, 48.30525), (-12.781628, 7.8217235, 47.701683), (-12.87006, 5.2264233, 48.03172), (-12.87006, 5.2264233, 48.03172), (-12.781628, 7.8217235, 47.701683), (-15.260624, 7.8217235, 46.967373), (-15.366208, 5.2264233, 47.292328), (-15.366208, 5.2264233, 47.292328), (-15.260624, 7.8217235, 46.967373), (-17.697792, 7.8217235, 46.104324), (-17.820238, 5.2264233, 46.42331), (-17.820238, 5.2264233, 46.42331), (-17.697792, 7.8217235, 46.104324), (-20.086452, 7.8217235, 45.11491), (-20.225426, 5.2264233, 45.427048), (-20.225426, 5.2264233, 45.427048), (-20.086452, 7.8217235, 45.11491), (-22.420055, 7.8217235, 44.00184), (-22.575174, 5.2264233, 44.306274), (-22.575174, 5.2264233, 44.306274), (-22.420055, 7.8217235, 44.00184), (-24.69221, 7.8217235, 42.768158), (-24.863047, 5.2264233, 43.06406), (-24.863047, 5.2264233, 43.06406), (-24.69221, 7.8217235, 42.768158), (-26.89668, 7.8217235, 41.417255), (-27.082773, 5.2264233, 41.70381), (-27.082773, 5.2264233, 41.70381), (-26.89668, 7.8217235, 41.417255), (-29.027431, 7.8217235, 39.95283), (-29.228266, 5.2264233, 40.229256), (-29.228266, 5.2264233, 40.229256), (-29.027431, 7.8217235, 39.95283), (-31.07862, 7.8217235, 38.3789), (-31.293646, 5.2264233, 38.644432), (-31.293646, 5.2264233, 38.644432), (-31.07862, 7.8217235, 38.3789), (-33.044624, 7.8217235, 36.699776), (-33.27325, 5.2264233, 36.95369), (-33.27325, 5.2264233, 36.95369), (-33.044624, 7.8217235, 36.699776), (-34.920055, 7.8217235, 34.920055), (-35.16166, 5.2264233, 35.16166), (-35.16166, 5.2264233, 35.16166), (-34.920055, 7.8217235, 34.920055), (-36.699776, 7.8217235, 33.044624), (-36.95369, 5.2264233, 33.27325), (-36.95369, 5.2264233, 33.27325), (-36.699776, 7.8217235, 33.044624), (-38.3789, 7.8217235, 31.07862), (-38.644432, 5.2264233, 31.293646), (-38.644432, 5.2264233, 31.293646), (-38.3789, 7.8217235, 31.07862), (-39.95283, 7.8217235, 29.027431), (-40.229256, 5.2264233, 29.228266), (-40.229256, 5.2264233, 29.228266), (-39.95283, 7.8217235, 29.027431), (-41.417255, 7.8217235, 26.89668), (-41.70381, 5.2264233, 27.082773), (-41.70381, 5.2264233, 27.082773), (-41.417255, 7.8217235, 26.89668), (-42.768158, 7.8217235, 24.69221), (-43.06406, 5.2264233, 24.863047), (-43.06406, 5.2264233, 24.863047), (-42.768158, 7.8217235, 24.69221), (-44.00184, 7.8217235, 22.420055), (-44.306274, 5.2264233, 22.575174), (-44.306274, 5.2264233, 22.575174), (-44.00184, 7.8217235, 22.420055), (-45.11491, 7.8217235, 20.086452), (-45.427048, 5.2264233, 20.225426), (-45.427048, 5.2264233, 20.225426), (-45.11491, 7.8217235, 20.086452), (-46.104324, 7.8217235, 17.697792), (-46.42331, 5.2264233, 17.820238), (-46.42331, 5.2264233, 17.820238), (-46.104324, 7.8217235, 17.697792), (-46.967373, 7.8217235, 15.260624), (-47.292328, 5.2264233, 15.366208), (-47.292328, 5.2264233, 15.366208), (-46.967373, 7.8217235, 15.260624), (-47.701683, 7.8217235, 12.781628), (-48.03172, 5.2264233, 12.87006), (-48.03172, 5.2264233, 12.87006), (-47.701683, 7.8217235, 12.781628), (-48.30525, 7.8217235, 10.267597), (-48.63946, 5.2264233, 10.338636), (-48.63946, 5.2264233, 10.338636), (-48.30525, 7.8217235, 10.267597), (-48.776413, 7.8217235, 7.725425), (-49.113884, 5.2264233, 7.778875), (-49.113884, 5.2264233, 7.778875), (-48.776413, 7.8217235, 7.725425), (-49.113884, 7.8217235, 5.1620774), (-49.45369, 5.2264233, 5.197792), (-49.45369, 5.2264233, 5.197792), (-49.113884, 7.8217235, 5.1620774), (-49.31674, 7.8217235, 2.5845807), (-49.657948, 5.2264233, 2.6024628), (-49.657948, 5.2264233, 2.6024628), (-49.31674, 7.8217235, 2.5845807), (-49.38442, 7.8217235, 6.047847e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.38442, 7.8217235, 6.047847e-15), (-49.31674, 7.8217235, -2.5845807), (-49.657948, 5.2264233, -2.6024628), (-49.657948, 5.2264233, -2.6024628), (-49.31674, 7.8217235, -2.5845807), (-49.113884, 7.8217235, -5.1620774), (-49.45369, 5.2264233, -5.197792), (-49.45369, 5.2264233, -5.197792), (-49.113884, 7.8217235, -5.1620774), (-48.776413, 7.8217235, -7.725425), (-49.113884, 5.2264233, -7.778875), (-49.113884, 5.2264233, -7.778875), (-48.776413, 7.8217235, -7.725425), (-48.30525, 7.8217235, -10.267597), (-48.63946, 5.2264233, -10.338636), (-48.63946, 5.2264233, -10.338636), (-48.30525, 7.8217235, -10.267597), (-47.701683, 7.8217235, -12.781628), (-48.03172, 5.2264233, -12.87006), (-48.03172, 5.2264233, -12.87006), (-47.701683, 7.8217235, -12.781628), (-46.967373, 7.8217235, -15.260624), (-47.292328, 5.2264233, -15.366208), (-47.292328, 5.2264233, -15.366208), (-46.967373, 7.8217235, -15.260624), (-46.104324, 7.8217235, -17.697792), (-46.42331, 5.2264233, -17.820238), (-46.42331, 5.2264233, -17.820238), (-46.104324, 7.8217235, -17.697792), (-45.11491, 7.8217235, -20.086452), (-45.427048, 5.2264233, -20.225426), (-45.427048, 5.2264233, -20.225426), (-45.11491, 7.8217235, -20.086452), (-44.00184, 7.8217235, -22.420055), (-44.306274, 5.2264233, -22.575174), (-44.306274, 5.2264233, -22.575174), (-44.00184, 7.8217235, -22.420055), (-42.768158, 7.8217235, -24.69221), (-43.06406, 5.2264233, -24.863047), (-43.06406, 5.2264233, -24.863047), (-42.768158, 7.8217235, -24.69221), (-41.417255, 7.8217235, -26.89668), (-41.70381, 5.2264233, -27.082773), (-41.70381, 5.2264233, -27.082773), (-41.417255, 7.8217235, -26.89668), (-39.95283, 7.8217235, -29.027431), (-40.229256, 5.2264233, -29.228266), (-40.229256, 5.2264233, -29.228266), (-39.95283, 7.8217235, -29.027431), (-38.3789, 7.8217235, -31.07862), (-38.644432, 5.2264233, -31.293646), (-38.644432, 5.2264233, -31.293646), (-38.3789, 7.8217235, -31.07862), (-36.699776, 7.8217235, -33.044624), (-36.95369, 5.2264233, -33.27325), (-36.95369, 5.2264233, -33.27325), (-36.699776, 7.8217235, -33.044624), (-34.920055, 7.8217235, -34.920055), (-35.16166, 5.2264233, -35.16166), (-35.16166, 5.2264233, -35.16166), (-34.920055, 7.8217235, -34.920055), (-33.044624, 7.8217235, -36.699776), (-33.27325, 5.2264233, -36.95369), (-33.27325, 5.2264233, -36.95369), (-33.044624, 7.8217235, -36.699776), (-31.07862, 7.8217235, -38.3789), (-31.293646, 5.2264233, -38.644432), (-31.293646, 5.2264233, -38.644432), (-31.07862, 7.8217235, -38.3789), (-29.027431, 7.8217235, -39.95283), (-29.228266, 5.2264233, -40.229256), (-29.228266, 5.2264233, -40.229256), (-29.027431, 7.8217235, -39.95283), (-26.89668, 7.8217235, -41.417255), (-27.082773, 5.2264233, -41.70381), (-27.082773, 5.2264233, -41.70381), (-26.89668, 7.8217235, -41.417255), (-24.69221, 7.8217235, -42.768158), (-24.863047, 5.2264233, -43.06406), (-24.863047, 5.2264233, -43.06406), (-24.69221, 7.8217235, -42.768158), (-22.420055, 7.8217235, -44.00184), (-22.575174, 5.2264233, -44.306274), (-22.575174, 5.2264233, -44.306274), (-22.420055, 7.8217235, -44.00184), (-20.086452, 7.8217235, -45.11491), (-20.225426, 5.2264233, -45.427048), (-20.225426, 5.2264233, -45.427048), (-20.086452, 7.8217235, -45.11491), (-17.697792, 7.8217235, -46.104324), (-17.820238, 5.2264233, -46.42331), (-17.820238, 5.2264233, -46.42331), (-17.697792, 7.8217235, -46.104324), (-15.260624, 7.8217235, -46.967373), (-15.366208, 5.2264233, -47.292328), (-15.366208, 5.2264233, -47.292328), (-15.260624, 7.8217235, -46.967373), (-12.781628, 7.8217235, -47.701683), (-12.87006, 5.2264233, -48.03172), (-12.87006, 5.2264233, -48.03172), (-12.781628, 7.8217235, -47.701683), (-10.267597, 7.8217235, -48.30525), (-10.338636, 5.2264233, -48.63946), (-10.338636, 5.2264233, -48.63946), (-10.267597, 7.8217235, -48.30525), (-7.725425, 7.8217235, -48.776413), (-7.778875, 5.2264233, -49.113884), (-7.778875, 5.2264233, -49.113884), (-7.725425, 7.8217235, -48.776413), (-5.1620774, 7.8217235, -49.113884), (-5.197792, 5.2264233, -49.45369), (-5.197792, 5.2264233, -49.45369), (-5.1620774, 7.8217235, -49.113884), (-2.5845807, 7.8217235, -49.31674), (-2.6024628, 5.2264233, -49.657948), (-2.6024628, 5.2264233, -49.657948), (-2.5845807, 7.8217235, -49.31674), (-9.07177e-15, 7.8217235, -49.38442), (-9.1345354e-15, 5.2264233, -49.726093), (-9.1345354e-15, 5.2264233, -49.726093), (-9.07177e-15, 7.8217235, -49.38442), (2.5845807, 7.8217235, -49.31674), (2.6024628, 5.2264233, -49.657948), (2.6024628, 5.2264233, -49.657948), (2.5845807, 7.8217235, -49.31674), (5.1620774, 7.8217235, -49.113884), (5.197792, 5.2264233, -49.45369), (5.197792, 5.2264233, -49.45369), (5.1620774, 7.8217235, -49.113884), (7.725425, 7.8217235, -48.776413), (7.778875, 5.2264233, -49.113884), (7.778875, 5.2264233, -49.113884), (7.725425, 7.8217235, -48.776413), (10.267597, 7.8217235, -48.30525), (10.338636, 5.2264233, -48.63946), (10.338636, 5.2264233, -48.63946), (10.267597, 7.8217235, -48.30525), (12.781628, 7.8217235, -47.701683), (12.87006, 5.2264233, -48.03172), (12.87006, 5.2264233, -48.03172), (12.781628, 7.8217235, -47.701683), (15.260624, 7.8217235, -46.967373), (15.366208, 5.2264233, -47.292328), (15.366208, 5.2264233, -47.292328), (15.260624, 7.8217235, -46.967373), (17.697792, 7.8217235, -46.104324), (17.820238, 5.2264233, -46.42331), (17.820238, 5.2264233, -46.42331), (17.697792, 7.8217235, -46.104324), (20.086452, 7.8217235, -45.11491), (20.225426, 5.2264233, -45.427048), (20.225426, 5.2264233, -45.427048), (20.086452, 7.8217235, -45.11491), (22.420055, 7.8217235, -44.00184), (22.575174, 5.2264233, -44.306274), (22.575174, 5.2264233, -44.306274), (22.420055, 7.8217235, -44.00184), (24.69221, 7.8217235, -42.768158), (24.863047, 5.2264233, -43.06406), (24.863047, 5.2264233, -43.06406), (24.69221, 7.8217235, -42.768158), (26.89668, 7.8217235, -41.417255), (27.082773, 5.2264233, -41.70381), (27.082773, 5.2264233, -41.70381), (26.89668, 7.8217235, -41.417255), (29.027431, 7.8217235, -39.95283), (29.228266, 5.2264233, -40.229256), (29.228266, 5.2264233, -40.229256), (29.027431, 7.8217235, -39.95283), (31.07862, 7.8217235, -38.3789), (31.293646, 5.2264233, -38.644432), (31.293646, 5.2264233, -38.644432), (31.07862, 7.8217235, -38.3789), (33.044624, 7.8217235, -36.699776), (33.27325, 5.2264233, -36.95369), (33.27325, 5.2264233, -36.95369), (33.044624, 7.8217235, -36.699776), (34.920055, 7.8217235, -34.920055), (35.16166, 5.2264233, -35.16166), (35.16166, 5.2264233, -35.16166), (34.920055, 7.8217235, -34.920055), (36.699776, 7.8217235, -33.044624), (36.95369, 5.2264233, -33.27325), (36.95369, 5.2264233, -33.27325), (36.699776, 7.8217235, -33.044624), (38.3789, 7.8217235, -31.07862), (38.644432, 5.2264233, -31.293646), (38.644432, 5.2264233, -31.293646), (38.3789, 7.8217235, -31.07862), (39.95283, 7.8217235, -29.027431), (40.229256, 5.2264233, -29.228266), (40.229256, 5.2264233, -29.228266), (39.95283, 7.8217235, -29.027431), (41.417255, 7.8217235, -26.89668), (41.70381, 5.2264233, -27.082773), (41.70381, 5.2264233, -27.082773), (41.417255, 7.8217235, -26.89668), (42.768158, 7.8217235, -24.69221), (43.06406, 5.2264233, -24.863047), (43.06406, 5.2264233, -24.863047), (42.768158, 7.8217235, -24.69221), (44.00184, 7.8217235, -22.420055), (44.306274, 5.2264233, -22.575174), (44.306274, 5.2264233, -22.575174), (44.00184, 7.8217235, -22.420055), (45.11491, 7.8217235, -20.086452), (45.427048, 5.2264233, -20.225426), (45.427048, 5.2264233, -20.225426), (45.11491, 7.8217235, -20.086452), (46.104324, 7.8217235, -17.697792), (46.42331, 5.2264233, -17.820238), (46.42331, 5.2264233, -17.820238), (46.104324, 7.8217235, -17.697792), (46.967373, 7.8217235, -15.260624), (47.292328, 5.2264233, -15.366208), (47.292328, 5.2264233, -15.366208), (46.967373, 7.8217235, -15.260624), (47.701683, 7.8217235, -12.781628), (48.03172, 5.2264233, -12.87006), (48.03172, 5.2264233, -12.87006), (47.701683, 7.8217235, -12.781628), (48.30525, 7.8217235, -10.267597), (48.63946, 5.2264233, -10.338636), (48.63946, 5.2264233, -10.338636), (48.30525, 7.8217235, -10.267597), (48.776413, 7.8217235, -7.725425), (49.113884, 5.2264233, -7.778875), (49.113884, 5.2264233, -7.778875), (48.776413, 7.8217235, -7.725425), (49.113884, 7.8217235, -5.1620774), (49.45369, 5.2264233, -5.197792), (49.45369, 5.2264233, -5.197792), (49.113884, 7.8217235, -5.1620774), (49.31674, 7.8217235, -2.5845807), (49.657948, 5.2264233, -2.6024628), (49.657948, 5.2264233, -2.6024628), (49.31674, 7.8217235, -2.5845807), (49.38442, 7.8217235, 0), (49.726093, 5.2264233, 0), (49.38442, 7.8217235, 0), (48.90738, 10.395584, 0), (48.840355, 10.395584, 2.5596144), (49.31674, 7.8217235, 2.5845807), (49.31674, 7.8217235, 2.5845807), (48.840355, 10.395584, 2.5596144), (48.63946, 10.395584, 5.112213), (49.113884, 7.8217235, 5.1620774), (49.113884, 7.8217235, 5.1620774), (48.63946, 10.395584, 5.112213), (48.30525, 10.395584, 7.6507998), (48.776413, 7.8217235, 7.725425), (48.776413, 7.8217235, 7.725425), (48.30525, 10.395584, 7.6507998), (47.83864, 10.395584, 10.168416), (48.30525, 7.8217235, 10.267597), (48.30525, 7.8217235, 10.267597), (47.83864, 10.395584, 10.168416), (47.240902, 10.395584, 12.658161), (47.701683, 7.8217235, 12.781628), (47.701683, 7.8217235, 12.781628), (47.240902, 10.395584, 12.658161), (46.513683, 10.395584, 15.113212), (46.967373, 7.8217235, 15.260624), (46.967373, 7.8217235, 15.260624), (46.513683, 10.395584, 15.113212), (45.658974, 10.395584, 17.526838), (46.104324, 7.8217235, 17.697792), (46.104324, 7.8217235, 17.697792), (45.658974, 10.395584, 17.526838), (44.679115, 10.395584, 19.892424), (45.11491, 7.8217235, 20.086452), (45.11491, 7.8217235, 20.086452), (44.679115, 10.395584, 19.892424), (43.576794, 10.395584, 22.203485), (44.00184, 7.8217235, 22.420055), (44.00184, 7.8217235, 22.420055), (43.576794, 10.395584, 22.203485), (42.355034, 10.395584, 24.45369), (42.768158, 7.8217235, 24.69221), (42.768158, 7.8217235, 24.69221), (42.355034, 10.395584, 24.45369), (41.01718, 10.395584, 26.636868), (41.417255, 7.8217235, 26.89668), (41.417255, 7.8217235, 26.89668), (41.01718, 10.395584, 26.636868), (39.566902, 10.395584, 28.747036), (39.95283, 7.8217235, 29.027431), (39.95283, 7.8217235, 29.027431), (39.566902, 10.395584, 28.747036), (38.00817, 10.395584, 30.778412), (38.3789, 7.8217235, 31.07862), (38.3789, 7.8217235, 31.07862), (38.00817, 10.395584, 30.778412), (36.34527, 10.395584, 32.725426), (36.699776, 7.8217235, 33.044624), (36.699776, 7.8217235, 33.044624), (36.34527, 10.395584, 32.725426), (34.58274, 10.395584, 34.58274), (34.920055, 7.8217235, 34.920055), (34.920055, 7.8217235, 34.920055), (34.58274, 10.395584, 34.58274), (32.725426, 10.395584, 36.34527), (33.044624, 7.8217235, 36.699776), (33.044624, 7.8217235, 36.699776), (32.725426, 10.395584, 36.34527), (30.778412, 10.395584, 38.00817), (31.07862, 7.8217235, 38.3789), (31.07862, 7.8217235, 38.3789), (30.778412, 10.395584, 38.00817), (28.747036, 10.395584, 39.566902), (29.027431, 7.8217235, 39.95283), (29.027431, 7.8217235, 39.95283), (28.747036, 10.395584, 39.566902), (26.636868, 10.395584, 41.01718), (26.89668, 7.8217235, 41.417255), (26.89668, 7.8217235, 41.417255), (26.636868, 10.395584, 41.01718), (24.45369, 10.395584, 42.355034), (24.69221, 7.8217235, 42.768158), (24.69221, 7.8217235, 42.768158), (24.45369, 10.395584, 42.355034), (22.203485, 10.395584, 43.576794), (22.420055, 7.8217235, 44.00184), (22.420055, 7.8217235, 44.00184), (22.203485, 10.395584, 43.576794), (19.892424, 10.395584, 44.679115), (20.086452, 7.8217235, 45.11491), (20.086452, 7.8217235, 45.11491), (19.892424, 10.395584, 44.679115), (17.526838, 10.395584, 45.658974), (17.697792, 7.8217235, 46.104324), (17.697792, 7.8217235, 46.104324), (17.526838, 10.395584, 45.658974), (15.113212, 10.395584, 46.513683), (15.260624, 7.8217235, 46.967373), (15.260624, 7.8217235, 46.967373), (15.113212, 10.395584, 46.513683), (12.658161, 10.395584, 47.240902), (12.781628, 7.8217235, 47.701683), (12.781628, 7.8217235, 47.701683), (12.658161, 10.395584, 47.240902), (10.168416, 10.395584, 47.83864), (10.267597, 7.8217235, 48.30525), (10.267597, 7.8217235, 48.30525), (10.168416, 10.395584, 47.83864), (7.6507998, 10.395584, 48.30525), (7.725425, 7.8217235, 48.776413), (7.725425, 7.8217235, 48.776413), (7.6507998, 10.395584, 48.30525), (5.112213, 10.395584, 48.63946), (5.1620774, 7.8217235, 49.113884), (5.1620774, 7.8217235, 49.113884), (5.112213, 10.395584, 48.63946), (2.5596144, 10.395584, 48.840355), (2.5845807, 7.8217235, 49.31674), (2.5845807, 7.8217235, 49.31674), (2.5596144, 10.395584, 48.840355), (2.9947134e-15, 10.395584, 48.90738), (3.0239235e-15, 7.8217235, 49.38442), (3.0239235e-15, 7.8217235, 49.38442), (2.9947134e-15, 10.395584, 48.90738), (-2.5596144, 10.395584, 48.840355), (-2.5845807, 7.8217235, 49.31674), (-2.5845807, 7.8217235, 49.31674), (-2.5596144, 10.395584, 48.840355), (-5.112213, 10.395584, 48.63946), (-5.1620774, 7.8217235, 49.113884), (-5.1620774, 7.8217235, 49.113884), (-5.112213, 10.395584, 48.63946), (-7.6507998, 10.395584, 48.30525), (-7.725425, 7.8217235, 48.776413), (-7.725425, 7.8217235, 48.776413), (-7.6507998, 10.395584, 48.30525), (-10.168416, 10.395584, 47.83864), (-10.267597, 7.8217235, 48.30525), (-10.267597, 7.8217235, 48.30525), (-10.168416, 10.395584, 47.83864), (-12.658161, 10.395584, 47.240902), (-12.781628, 7.8217235, 47.701683), (-12.781628, 7.8217235, 47.701683), (-12.658161, 10.395584, 47.240902), (-15.113212, 10.395584, 46.513683), (-15.260624, 7.8217235, 46.967373), (-15.260624, 7.8217235, 46.967373), (-15.113212, 10.395584, 46.513683), (-17.526838, 10.395584, 45.658974), (-17.697792, 7.8217235, 46.104324), (-17.697792, 7.8217235, 46.104324), (-17.526838, 10.395584, 45.658974), (-19.892424, 10.395584, 44.679115), (-20.086452, 7.8217235, 45.11491), (-20.086452, 7.8217235, 45.11491), (-19.892424, 10.395584, 44.679115), (-22.203485, 10.395584, 43.576794), (-22.420055, 7.8217235, 44.00184), (-22.420055, 7.8217235, 44.00184), (-22.203485, 10.395584, 43.576794), (-24.45369, 10.395584, 42.355034), (-24.69221, 7.8217235, 42.768158), (-24.69221, 7.8217235, 42.768158), (-24.45369, 10.395584, 42.355034), (-26.636868, 10.395584, 41.01718), (-26.89668, 7.8217235, 41.417255), (-26.89668, 7.8217235, 41.417255), (-26.636868, 10.395584, 41.01718), (-28.747036, 10.395584, 39.566902), (-29.027431, 7.8217235, 39.95283), (-29.027431, 7.8217235, 39.95283), (-28.747036, 10.395584, 39.566902), (-30.778412, 10.395584, 38.00817), (-31.07862, 7.8217235, 38.3789), (-31.07862, 7.8217235, 38.3789), (-30.778412, 10.395584, 38.00817), (-32.725426, 10.395584, 36.34527), (-33.044624, 7.8217235, 36.699776), (-33.044624, 7.8217235, 36.699776), (-32.725426, 10.395584, 36.34527), (-34.58274, 10.395584, 34.58274), (-34.920055, 7.8217235, 34.920055), (-34.920055, 7.8217235, 34.920055), (-34.58274, 10.395584, 34.58274), (-36.34527, 10.395584, 32.725426), (-36.699776, 7.8217235, 33.044624), (-36.699776, 7.8217235, 33.044624), (-36.34527, 10.395584, 32.725426), (-38.00817, 10.395584, 30.778412), (-38.3789, 7.8217235, 31.07862), (-38.3789, 7.8217235, 31.07862), (-38.00817, 10.395584, 30.778412), (-39.566902, 10.395584, 28.747036), (-39.95283, 7.8217235, 29.027431), (-39.95283, 7.8217235, 29.027431), (-39.566902, 10.395584, 28.747036), (-41.01718, 10.395584, 26.636868), (-41.417255, 7.8217235, 26.89668), (-41.417255, 7.8217235, 26.89668), (-41.01718, 10.395584, 26.636868), (-42.355034, 10.395584, 24.45369), (-42.768158, 7.8217235, 24.69221), (-42.768158, 7.8217235, 24.69221), (-42.355034, 10.395584, 24.45369), (-43.576794, 10.395584, 22.203485), (-44.00184, 7.8217235, 22.420055), (-44.00184, 7.8217235, 22.420055), (-43.576794, 10.395584, 22.203485), (-44.679115, 10.395584, 19.892424), (-45.11491, 7.8217235, 20.086452), (-45.11491, 7.8217235, 20.086452), (-44.679115, 10.395584, 19.892424), (-45.658974, 10.395584, 17.526838), (-46.104324, 7.8217235, 17.697792), (-46.104324, 7.8217235, 17.697792), (-45.658974, 10.395584, 17.526838), (-46.513683, 10.395584, 15.113212), (-46.967373, 7.8217235, 15.260624), (-46.967373, 7.8217235, 15.260624), (-46.513683, 10.395584, 15.113212), (-47.240902, 10.395584, 12.658161), (-47.701683, 7.8217235, 12.781628), (-47.701683, 7.8217235, 12.781628), (-47.240902, 10.395584, 12.658161), (-47.83864, 10.395584, 10.168416), (-48.30525, 7.8217235, 10.267597), (-48.30525, 7.8217235, 10.267597), (-47.83864, 10.395584, 10.168416), (-48.30525, 10.395584, 7.6507998), (-48.776413, 7.8217235, 7.725425), (-48.776413, 7.8217235, 7.725425), (-48.30525, 10.395584, 7.6507998), (-48.63946, 10.395584, 5.112213), (-49.113884, 7.8217235, 5.1620774), (-49.113884, 7.8217235, 5.1620774), (-48.63946, 10.395584, 5.112213), (-48.840355, 10.395584, 2.5596144), (-49.31674, 7.8217235, 2.5845807), (-49.31674, 7.8217235, 2.5845807), (-48.840355, 10.395584, 2.5596144), (-48.90738, 10.395584, 5.9894267e-15), (-49.38442, 7.8217235, 6.047847e-15), (-49.38442, 7.8217235, 6.047847e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.840355, 10.395584, -2.5596144), (-49.31674, 7.8217235, -2.5845807), (-49.31674, 7.8217235, -2.5845807), (-48.840355, 10.395584, -2.5596144), (-48.63946, 10.395584, -5.112213), (-49.113884, 7.8217235, -5.1620774), (-49.113884, 7.8217235, -5.1620774), (-48.63946, 10.395584, -5.112213), (-48.30525, 10.395584, -7.6507998), (-48.776413, 7.8217235, -7.725425), (-48.776413, 7.8217235, -7.725425), (-48.30525, 10.395584, -7.6507998), (-47.83864, 10.395584, -10.168416), (-48.30525, 7.8217235, -10.267597), (-48.30525, 7.8217235, -10.267597), (-47.83864, 10.395584, -10.168416), (-47.240902, 10.395584, -12.658161), (-47.701683, 7.8217235, -12.781628), (-47.701683, 7.8217235, -12.781628), (-47.240902, 10.395584, -12.658161), (-46.513683, 10.395584, -15.113212), (-46.967373, 7.8217235, -15.260624), (-46.967373, 7.8217235, -15.260624), (-46.513683, 10.395584, -15.113212), (-45.658974, 10.395584, -17.526838), (-46.104324, 7.8217235, -17.697792), (-46.104324, 7.8217235, -17.697792), (-45.658974, 10.395584, -17.526838), (-44.679115, 10.395584, -19.892424), (-45.11491, 7.8217235, -20.086452), (-45.11491, 7.8217235, -20.086452), (-44.679115, 10.395584, -19.892424), (-43.576794, 10.395584, -22.203485), (-44.00184, 7.8217235, -22.420055), (-44.00184, 7.8217235, -22.420055), (-43.576794, 10.395584, -22.203485), (-42.355034, 10.395584, -24.45369), (-42.768158, 7.8217235, -24.69221), (-42.768158, 7.8217235, -24.69221), (-42.355034, 10.395584, -24.45369), (-41.01718, 10.395584, -26.636868), (-41.417255, 7.8217235, -26.89668), (-41.417255, 7.8217235, -26.89668), (-41.01718, 10.395584, -26.636868), (-39.566902, 10.395584, -28.747036), (-39.95283, 7.8217235, -29.027431), (-39.95283, 7.8217235, -29.027431), (-39.566902, 10.395584, -28.747036), (-38.00817, 10.395584, -30.778412), (-38.3789, 7.8217235, -31.07862), (-38.3789, 7.8217235, -31.07862), (-38.00817, 10.395584, -30.778412), (-36.34527, 10.395584, -32.725426), (-36.699776, 7.8217235, -33.044624), (-36.699776, 7.8217235, -33.044624), (-36.34527, 10.395584, -32.725426), (-34.58274, 10.395584, -34.58274), (-34.920055, 7.8217235, -34.920055), (-34.920055, 7.8217235, -34.920055), (-34.58274, 10.395584, -34.58274), (-32.725426, 10.395584, -36.34527), (-33.044624, 7.8217235, -36.699776), (-33.044624, 7.8217235, -36.699776), (-32.725426, 10.395584, -36.34527), (-30.778412, 10.395584, -38.00817), (-31.07862, 7.8217235, -38.3789), (-31.07862, 7.8217235, -38.3789), (-30.778412, 10.395584, -38.00817), (-28.747036, 10.395584, -39.566902), (-29.027431, 7.8217235, -39.95283), (-29.027431, 7.8217235, -39.95283), (-28.747036, 10.395584, -39.566902), (-26.636868, 10.395584, -41.01718), (-26.89668, 7.8217235, -41.417255), (-26.89668, 7.8217235, -41.417255), (-26.636868, 10.395584, -41.01718), (-24.45369, 10.395584, -42.355034), (-24.69221, 7.8217235, -42.768158), (-24.69221, 7.8217235, -42.768158), (-24.45369, 10.395584, -42.355034), (-22.203485, 10.395584, -43.576794), (-22.420055, 7.8217235, -44.00184), (-22.420055, 7.8217235, -44.00184), (-22.203485, 10.395584, -43.576794), (-19.892424, 10.395584, -44.679115), (-20.086452, 7.8217235, -45.11491), (-20.086452, 7.8217235, -45.11491), (-19.892424, 10.395584, -44.679115), (-17.526838, 10.395584, -45.658974), (-17.697792, 7.8217235, -46.104324), (-17.697792, 7.8217235, -46.104324), (-17.526838, 10.395584, -45.658974), (-15.113212, 10.395584, -46.513683), (-15.260624, 7.8217235, -46.967373), (-15.260624, 7.8217235, -46.967373), (-15.113212, 10.395584, -46.513683), (-12.658161, 10.395584, -47.240902), (-12.781628, 7.8217235, -47.701683), (-12.781628, 7.8217235, -47.701683), (-12.658161, 10.395584, -47.240902), (-10.168416, 10.395584, -47.83864), (-10.267597, 7.8217235, -48.30525), (-10.267597, 7.8217235, -48.30525), (-10.168416, 10.395584, -47.83864), (-7.6507998, 10.395584, -48.30525), (-7.725425, 7.8217235, -48.776413), (-7.725425, 7.8217235, -48.776413), (-7.6507998, 10.395584, -48.30525), (-5.112213, 10.395584, -48.63946), (-5.1620774, 7.8217235, -49.113884), (-5.1620774, 7.8217235, -49.113884), (-5.112213, 10.395584, -48.63946), (-2.5596144, 10.395584, -48.840355), (-2.5845807, 7.8217235, -49.31674), (-2.5845807, 7.8217235, -49.31674), (-2.5596144, 10.395584, -48.840355), (-8.98414e-15, 10.395584, -48.90738), (-9.07177e-15, 7.8217235, -49.38442), (-9.07177e-15, 7.8217235, -49.38442), (-8.98414e-15, 10.395584, -48.90738), (2.5596144, 10.395584, -48.840355), (2.5845807, 7.8217235, -49.31674), (2.5845807, 7.8217235, -49.31674), (2.5596144, 10.395584, -48.840355), (5.112213, 10.395584, -48.63946), (5.1620774, 7.8217235, -49.113884), (5.1620774, 7.8217235, -49.113884), (5.112213, 10.395584, -48.63946), (7.6507998, 10.395584, -48.30525), (7.725425, 7.8217235, -48.776413), (7.725425, 7.8217235, -48.776413), (7.6507998, 10.395584, -48.30525), (10.168416, 10.395584, -47.83864), (10.267597, 7.8217235, -48.30525), (10.267597, 7.8217235, -48.30525), (10.168416, 10.395584, -47.83864), (12.658161, 10.395584, -47.240902), (12.781628, 7.8217235, -47.701683), (12.781628, 7.8217235, -47.701683), (12.658161, 10.395584, -47.240902), (15.113212, 10.395584, -46.513683), (15.260624, 7.8217235, -46.967373), (15.260624, 7.8217235, -46.967373), (15.113212, 10.395584, -46.513683), (17.526838, 10.395584, -45.658974), (17.697792, 7.8217235, -46.104324), (17.697792, 7.8217235, -46.104324), (17.526838, 10.395584, -45.658974), (19.892424, 10.395584, -44.679115), (20.086452, 7.8217235, -45.11491), (20.086452, 7.8217235, -45.11491), (19.892424, 10.395584, -44.679115), (22.203485, 10.395584, -43.576794), (22.420055, 7.8217235, -44.00184), (22.420055, 7.8217235, -44.00184), (22.203485, 10.395584, -43.576794), (24.45369, 10.395584, -42.355034), (24.69221, 7.8217235, -42.768158), (24.69221, 7.8217235, -42.768158), (24.45369, 10.395584, -42.355034), (26.636868, 10.395584, -41.01718), (26.89668, 7.8217235, -41.417255), (26.89668, 7.8217235, -41.417255), (26.636868, 10.395584, -41.01718), (28.747036, 10.395584, -39.566902), (29.027431, 7.8217235, -39.95283), (29.027431, 7.8217235, -39.95283), (28.747036, 10.395584, -39.566902), (30.778412, 10.395584, -38.00817), (31.07862, 7.8217235, -38.3789), (31.07862, 7.8217235, -38.3789), (30.778412, 10.395584, -38.00817), (32.725426, 10.395584, -36.34527), (33.044624, 7.8217235, -36.699776), (33.044624, 7.8217235, -36.699776), (32.725426, 10.395584, -36.34527), (34.58274, 10.395584, -34.58274), (34.920055, 7.8217235, -34.920055), (34.920055, 7.8217235, -34.920055), (34.58274, 10.395584, -34.58274), (36.34527, 10.395584, -32.725426), (36.699776, 7.8217235, -33.044624), (36.699776, 7.8217235, -33.044624), (36.34527, 10.395584, -32.725426), (38.00817, 10.395584, -30.778412), (38.3789, 7.8217235, -31.07862), (38.3789, 7.8217235, -31.07862), (38.00817, 10.395584, -30.778412), (39.566902, 10.395584, -28.747036), (39.95283, 7.8217235, -29.027431), (39.95283, 7.8217235, -29.027431), (39.566902, 10.395584, -28.747036), (41.01718, 10.395584, -26.636868), (41.417255, 7.8217235, -26.89668), (41.417255, 7.8217235, -26.89668), (41.01718, 10.395584, -26.636868), (42.355034, 10.395584, -24.45369), (42.768158, 7.8217235, -24.69221), (42.768158, 7.8217235, -24.69221), (42.355034, 10.395584, -24.45369), (43.576794, 10.395584, -22.203485), (44.00184, 7.8217235, -22.420055), (44.00184, 7.8217235, -22.420055), (43.576794, 10.395584, -22.203485), (44.679115, 10.395584, -19.892424), (45.11491, 7.8217235, -20.086452), (45.11491, 7.8217235, -20.086452), (44.679115, 10.395584, -19.892424), (45.658974, 10.395584, -17.526838), (46.104324, 7.8217235, -17.697792), (46.104324, 7.8217235, -17.697792), (45.658974, 10.395584, -17.526838), (46.513683, 10.395584, -15.113212), (46.967373, 7.8217235, -15.260624), (46.967373, 7.8217235, -15.260624), (46.513683, 10.395584, -15.113212), (47.240902, 10.395584, -12.658161), (47.701683, 7.8217235, -12.781628), (47.701683, 7.8217235, -12.781628), (47.240902, 10.395584, -12.658161), (47.83864, 10.395584, -10.168416), (48.30525, 7.8217235, -10.267597), (48.30525, 7.8217235, -10.267597), (47.83864, 10.395584, -10.168416), (48.30525, 10.395584, -7.6507998), (48.776413, 7.8217235, -7.725425), (48.776413, 7.8217235, -7.725425), (48.30525, 10.395584, -7.6507998), (48.63946, 10.395584, -5.112213), (49.113884, 7.8217235, -5.1620774), (49.113884, 7.8217235, -5.1620774), (48.63946, 10.395584, -5.112213), (48.840355, 10.395584, -2.5596144), (49.31674, 7.8217235, -2.5845807), (49.31674, 7.8217235, -2.5845807), (48.840355, 10.395584, -2.5596144), (48.90738, 10.395584, 0), (49.38442, 7.8217235, 0), (48.90738, 10.395584, 0), (48.29629, 12.940952, 0), (48.230103, 12.940952, 2.5276325), (48.840355, 10.395584, 2.5596144), (48.840355, 10.395584, 2.5596144), (48.230103, 12.940952, 2.5276325), (48.03172, 12.940952, 5.048337), (48.63946, 10.395584, 5.112213), (48.63946, 10.395584, 5.112213), (48.03172, 12.940952, 5.048337), (47.701683, 12.940952, 7.5552044), (48.30525, 10.395584, 7.6507998), (48.30525, 10.395584, 7.6507998), (47.701683, 12.940952, 7.5552044), (47.240902, 12.940952, 10.041364), (47.83864, 10.395584, 10.168416), (47.83864, 10.395584, 10.168416), (47.240902, 12.940952, 10.041364), (46.650635, 12.940952, 12.5), (47.240902, 10.395584, 12.658161), (47.240902, 10.395584, 12.658161), (46.650635, 12.940952, 12.5), (45.932503, 12.940952, 14.924375), (46.513683, 10.395584, 15.113212), (46.513683, 10.395584, 15.113212), (45.932503, 12.940952, 14.924375), (45.08847, 12.940952, 17.307842), (45.658974, 10.395584, 17.526838), (45.658974, 10.395584, 17.526838), (45.08847, 12.940952, 17.307842), (44.120857, 12.940952, 19.643871), (44.679115, 10.395584, 19.892424), (44.679115, 10.395584, 19.892424), (44.120857, 12.940952, 19.643871), (43.03231, 12.940952, 21.926058), (43.576794, 10.395584, 22.203485), (43.576794, 10.395584, 22.203485), (43.03231, 12.940952, 21.926058), (41.825813, 12.940952, 24.148146), (42.355034, 10.395584, 24.45369), (42.355034, 10.395584, 24.45369), (41.825813, 12.940952, 24.148146), (40.504677, 12.940952, 26.304045), (41.01718, 10.395584, 26.636868), (41.01718, 10.395584, 26.636868), (40.504677, 12.940952, 26.304045), (39.07252, 12.940952, 28.387848), (39.566902, 10.395584, 28.747036), (39.566902, 10.395584, 28.747036), (39.07252, 12.940952, 28.387848), (37.533268, 12.940952, 30.39384), (38.00817, 10.395584, 30.778412), (38.00817, 10.395584, 30.778412), (37.533268, 12.940952, 30.39384), (35.89114, 12.940952, 32.31653), (36.34527, 10.395584, 32.725426), (36.34527, 10.395584, 32.725426), (35.89114, 12.940952, 32.31653), (34.150635, 12.940952, 34.150635), (34.58274, 10.395584, 34.58274), (34.58274, 10.395584, 34.58274), (34.150635, 12.940952, 34.150635), (32.31653, 12.940952, 35.89114), (32.725426, 10.395584, 36.34527), (32.725426, 10.395584, 36.34527), (32.31653, 12.940952, 35.89114), (30.39384, 12.940952, 37.533268), (30.778412, 10.395584, 38.00817), (30.778412, 10.395584, 38.00817), (30.39384, 12.940952, 37.533268), (28.387848, 12.940952, 39.07252), (28.747036, 10.395584, 39.566902), (28.747036, 10.395584, 39.566902), (28.387848, 12.940952, 39.07252), (26.304045, 12.940952, 40.504677), (26.636868, 10.395584, 41.01718), (26.636868, 10.395584, 41.01718), (26.304045, 12.940952, 40.504677), (24.148146, 12.940952, 41.825813), (24.45369, 10.395584, 42.355034), (24.45369, 10.395584, 42.355034), (24.148146, 12.940952, 41.825813), (21.926058, 12.940952, 43.03231), (22.203485, 10.395584, 43.576794), (22.203485, 10.395584, 43.576794), (21.926058, 12.940952, 43.03231), (19.643871, 12.940952, 44.120857), (19.892424, 10.395584, 44.679115), (19.892424, 10.395584, 44.679115), (19.643871, 12.940952, 44.120857), (17.307842, 12.940952, 45.08847), (17.526838, 10.395584, 45.658974), (17.526838, 10.395584, 45.658974), (17.307842, 12.940952, 45.08847), (14.924375, 12.940952, 45.932503), (15.113212, 10.395584, 46.513683), (15.113212, 10.395584, 46.513683), (14.924375, 12.940952, 45.932503), (12.5, 12.940952, 46.650635), (12.658161, 10.395584, 47.240902), (12.658161, 10.395584, 47.240902), (12.5, 12.940952, 46.650635), (10.041364, 12.940952, 47.240902), (10.168416, 10.395584, 47.83864), (10.168416, 10.395584, 47.83864), (10.041364, 12.940952, 47.240902), (7.5552044, 12.940952, 47.701683), (7.6507998, 10.395584, 48.30525), (7.6507998, 10.395584, 48.30525), (7.5552044, 12.940952, 47.701683), (5.048337, 12.940952, 48.03172), (5.112213, 10.395584, 48.63946), (5.112213, 10.395584, 48.63946), (5.048337, 12.940952, 48.03172), (2.5276325, 12.940952, 48.230103), (2.5596144, 10.395584, 48.840355), (2.5596144, 10.395584, 48.840355), (2.5276325, 12.940952, 48.230103), (2.9572948e-15, 12.940952, 48.29629), (2.9947134e-15, 10.395584, 48.90738), (2.9947134e-15, 10.395584, 48.90738), (2.9572948e-15, 12.940952, 48.29629), (-2.5276325, 12.940952, 48.230103), (-2.5596144, 10.395584, 48.840355), (-2.5596144, 10.395584, 48.840355), (-2.5276325, 12.940952, 48.230103), (-5.048337, 12.940952, 48.03172), (-5.112213, 10.395584, 48.63946), (-5.112213, 10.395584, 48.63946), (-5.048337, 12.940952, 48.03172), (-7.5552044, 12.940952, 47.701683), (-7.6507998, 10.395584, 48.30525), (-7.6507998, 10.395584, 48.30525), (-7.5552044, 12.940952, 47.701683), (-10.041364, 12.940952, 47.240902), (-10.168416, 10.395584, 47.83864), (-10.168416, 10.395584, 47.83864), (-10.041364, 12.940952, 47.240902), (-12.5, 12.940952, 46.650635), (-12.658161, 10.395584, 47.240902), (-12.658161, 10.395584, 47.240902), (-12.5, 12.940952, 46.650635), (-14.924375, 12.940952, 45.932503), (-15.113212, 10.395584, 46.513683), (-15.113212, 10.395584, 46.513683), (-14.924375, 12.940952, 45.932503), (-17.307842, 12.940952, 45.08847), (-17.526838, 10.395584, 45.658974), (-17.526838, 10.395584, 45.658974), (-17.307842, 12.940952, 45.08847), (-19.643871, 12.940952, 44.120857), (-19.892424, 10.395584, 44.679115), (-19.892424, 10.395584, 44.679115), (-19.643871, 12.940952, 44.120857), (-21.926058, 12.940952, 43.03231), (-22.203485, 10.395584, 43.576794), (-22.203485, 10.395584, 43.576794), (-21.926058, 12.940952, 43.03231), (-24.148146, 12.940952, 41.825813), (-24.45369, 10.395584, 42.355034), (-24.45369, 10.395584, 42.355034), (-24.148146, 12.940952, 41.825813), (-26.304045, 12.940952, 40.504677), (-26.636868, 10.395584, 41.01718), (-26.636868, 10.395584, 41.01718), (-26.304045, 12.940952, 40.504677), (-28.387848, 12.940952, 39.07252), (-28.747036, 10.395584, 39.566902), (-28.747036, 10.395584, 39.566902), (-28.387848, 12.940952, 39.07252), (-30.39384, 12.940952, 37.533268), (-30.778412, 10.395584, 38.00817), (-30.778412, 10.395584, 38.00817), (-30.39384, 12.940952, 37.533268), (-32.31653, 12.940952, 35.89114), (-32.725426, 10.395584, 36.34527), (-32.725426, 10.395584, 36.34527), (-32.31653, 12.940952, 35.89114), (-34.150635, 12.940952, 34.150635), (-34.58274, 10.395584, 34.58274), (-34.58274, 10.395584, 34.58274), (-34.150635, 12.940952, 34.150635), (-35.89114, 12.940952, 32.31653), (-36.34527, 10.395584, 32.725426), (-36.34527, 10.395584, 32.725426), (-35.89114, 12.940952, 32.31653), (-37.533268, 12.940952, 30.39384), (-38.00817, 10.395584, 30.778412), (-38.00817, 10.395584, 30.778412), (-37.533268, 12.940952, 30.39384), (-39.07252, 12.940952, 28.387848), (-39.566902, 10.395584, 28.747036), (-39.566902, 10.395584, 28.747036), (-39.07252, 12.940952, 28.387848), (-40.504677, 12.940952, 26.304045), (-41.01718, 10.395584, 26.636868), (-41.01718, 10.395584, 26.636868), (-40.504677, 12.940952, 26.304045), (-41.825813, 12.940952, 24.148146), (-42.355034, 10.395584, 24.45369), (-42.355034, 10.395584, 24.45369), (-41.825813, 12.940952, 24.148146), (-43.03231, 12.940952, 21.926058), (-43.576794, 10.395584, 22.203485), (-43.576794, 10.395584, 22.203485), (-43.03231, 12.940952, 21.926058), (-44.120857, 12.940952, 19.643871), (-44.679115, 10.395584, 19.892424), (-44.679115, 10.395584, 19.892424), (-44.120857, 12.940952, 19.643871), (-45.08847, 12.940952, 17.307842), (-45.658974, 10.395584, 17.526838), (-45.658974, 10.395584, 17.526838), (-45.08847, 12.940952, 17.307842), (-45.932503, 12.940952, 14.924375), (-46.513683, 10.395584, 15.113212), (-46.513683, 10.395584, 15.113212), (-45.932503, 12.940952, 14.924375), (-46.650635, 12.940952, 12.5), (-47.240902, 10.395584, 12.658161), (-47.240902, 10.395584, 12.658161), (-46.650635, 12.940952, 12.5), (-47.240902, 12.940952, 10.041364), (-47.83864, 10.395584, 10.168416), (-47.83864, 10.395584, 10.168416), (-47.240902, 12.940952, 10.041364), (-47.701683, 12.940952, 7.5552044), (-48.30525, 10.395584, 7.6507998), (-48.30525, 10.395584, 7.6507998), (-47.701683, 12.940952, 7.5552044), (-48.03172, 12.940952, 5.048337), (-48.63946, 10.395584, 5.112213), (-48.63946, 10.395584, 5.112213), (-48.03172, 12.940952, 5.048337), (-48.230103, 12.940952, 2.5276325), (-48.840355, 10.395584, 2.5596144), (-48.840355, 10.395584, 2.5596144), (-48.230103, 12.940952, 2.5276325), (-48.29629, 12.940952, 5.9145897e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.29629, 12.940952, 5.9145897e-15), (-48.230103, 12.940952, -2.5276325), (-48.840355, 10.395584, -2.5596144), (-48.840355, 10.395584, -2.5596144), (-48.230103, 12.940952, -2.5276325), (-48.03172, 12.940952, -5.048337), (-48.63946, 10.395584, -5.112213), (-48.63946, 10.395584, -5.112213), (-48.03172, 12.940952, -5.048337), (-47.701683, 12.940952, -7.5552044), (-48.30525, 10.395584, -7.6507998), (-48.30525, 10.395584, -7.6507998), (-47.701683, 12.940952, -7.5552044), (-47.240902, 12.940952, -10.041364), (-47.83864, 10.395584, -10.168416), (-47.83864, 10.395584, -10.168416), (-47.240902, 12.940952, -10.041364), (-46.650635, 12.940952, -12.5), (-47.240902, 10.395584, -12.658161), (-47.240902, 10.395584, -12.658161), (-46.650635, 12.940952, -12.5), (-45.932503, 12.940952, -14.924375), (-46.513683, 10.395584, -15.113212), (-46.513683, 10.395584, -15.113212), (-45.932503, 12.940952, -14.924375), (-45.08847, 12.940952, -17.307842), (-45.658974, 10.395584, -17.526838), (-45.658974, 10.395584, -17.526838), (-45.08847, 12.940952, -17.307842), (-44.120857, 12.940952, -19.643871), (-44.679115, 10.395584, -19.892424), (-44.679115, 10.395584, -19.892424), (-44.120857, 12.940952, -19.643871), (-43.03231, 12.940952, -21.926058), (-43.576794, 10.395584, -22.203485), (-43.576794, 10.395584, -22.203485), (-43.03231, 12.940952, -21.926058), (-41.825813, 12.940952, -24.148146), (-42.355034, 10.395584, -24.45369), (-42.355034, 10.395584, -24.45369), (-41.825813, 12.940952, -24.148146), (-40.504677, 12.940952, -26.304045), (-41.01718, 10.395584, -26.636868), (-41.01718, 10.395584, -26.636868), (-40.504677, 12.940952, -26.304045), (-39.07252, 12.940952, -28.387848), (-39.566902, 10.395584, -28.747036), (-39.566902, 10.395584, -28.747036), (-39.07252, 12.940952, -28.387848), (-37.533268, 12.940952, -30.39384), (-38.00817, 10.395584, -30.778412), (-38.00817, 10.395584, -30.778412), (-37.533268, 12.940952, -30.39384), (-35.89114, 12.940952, -32.31653), (-36.34527, 10.395584, -32.725426), (-36.34527, 10.395584, -32.725426), (-35.89114, 12.940952, -32.31653), (-34.150635, 12.940952, -34.150635), (-34.58274, 10.395584, -34.58274), (-34.58274, 10.395584, -34.58274), (-34.150635, 12.940952, -34.150635), (-32.31653, 12.940952, -35.89114), (-32.725426, 10.395584, -36.34527), (-32.725426, 10.395584, -36.34527), (-32.31653, 12.940952, -35.89114), (-30.39384, 12.940952, -37.533268), (-30.778412, 10.395584, -38.00817), (-30.778412, 10.395584, -38.00817), (-30.39384, 12.940952, -37.533268), (-28.387848, 12.940952, -39.07252), (-28.747036, 10.395584, -39.566902), (-28.747036, 10.395584, -39.566902), (-28.387848, 12.940952, -39.07252), (-26.304045, 12.940952, -40.504677), (-26.636868, 10.395584, -41.01718), (-26.636868, 10.395584, -41.01718), (-26.304045, 12.940952, -40.504677), (-24.148146, 12.940952, -41.825813), (-24.45369, 10.395584, -42.355034), (-24.45369, 10.395584, -42.355034), (-24.148146, 12.940952, -41.825813), (-21.926058, 12.940952, -43.03231), (-22.203485, 10.395584, -43.576794), (-22.203485, 10.395584, -43.576794), (-21.926058, 12.940952, -43.03231), (-19.643871, 12.940952, -44.120857), (-19.892424, 10.395584, -44.679115), (-19.892424, 10.395584, -44.679115), (-19.643871, 12.940952, -44.120857), (-17.307842, 12.940952, -45.08847), (-17.526838, 10.395584, -45.658974), (-17.526838, 10.395584, -45.658974), (-17.307842, 12.940952, -45.08847), (-14.924375, 12.940952, -45.932503), (-15.113212, 10.395584, -46.513683), (-15.113212, 10.395584, -46.513683), (-14.924375, 12.940952, -45.932503), (-12.5, 12.940952, -46.650635), (-12.658161, 10.395584, -47.240902), (-12.658161, 10.395584, -47.240902), (-12.5, 12.940952, -46.650635), (-10.041364, 12.940952, -47.240902), (-10.168416, 10.395584, -47.83864), (-10.168416, 10.395584, -47.83864), (-10.041364, 12.940952, -47.240902), (-7.5552044, 12.940952, -47.701683), (-7.6507998, 10.395584, -48.30525), (-7.6507998, 10.395584, -48.30525), (-7.5552044, 12.940952, -47.701683), (-5.048337, 12.940952, -48.03172), (-5.112213, 10.395584, -48.63946), (-5.112213, 10.395584, -48.63946), (-5.048337, 12.940952, -48.03172), (-2.5276325, 12.940952, -48.230103), (-2.5596144, 10.395584, -48.840355), (-2.5596144, 10.395584, -48.840355), (-2.5276325, 12.940952, -48.230103), (-8.871885e-15, 12.940952, -48.29629), (-8.98414e-15, 10.395584, -48.90738), (-8.98414e-15, 10.395584, -48.90738), (-8.871885e-15, 12.940952, -48.29629), (2.5276325, 12.940952, -48.230103), (2.5596144, 10.395584, -48.840355), (2.5596144, 10.395584, -48.840355), (2.5276325, 12.940952, -48.230103), (5.048337, 12.940952, -48.03172), (5.112213, 10.395584, -48.63946), (5.112213, 10.395584, -48.63946), (5.048337, 12.940952, -48.03172), (7.5552044, 12.940952, -47.701683), (7.6507998, 10.395584, -48.30525), (7.6507998, 10.395584, -48.30525), (7.5552044, 12.940952, -47.701683), (10.041364, 12.940952, -47.240902), (10.168416, 10.395584, -47.83864), (10.168416, 10.395584, -47.83864), (10.041364, 12.940952, -47.240902), (12.5, 12.940952, -46.650635), (12.658161, 10.395584, -47.240902), (12.658161, 10.395584, -47.240902), (12.5, 12.940952, -46.650635), (14.924375, 12.940952, -45.932503), (15.113212, 10.395584, -46.513683), (15.113212, 10.395584, -46.513683), (14.924375, 12.940952, -45.932503), (17.307842, 12.940952, -45.08847), (17.526838, 10.395584, -45.658974), (17.526838, 10.395584, -45.658974), (17.307842, 12.940952, -45.08847), (19.643871, 12.940952, -44.120857), (19.892424, 10.395584, -44.679115), (19.892424, 10.395584, -44.679115), (19.643871, 12.940952, -44.120857), (21.926058, 12.940952, -43.03231), (22.203485, 10.395584, -43.576794), (22.203485, 10.395584, -43.576794), (21.926058, 12.940952, -43.03231), (24.148146, 12.940952, -41.825813), (24.45369, 10.395584, -42.355034), (24.45369, 10.395584, -42.355034), (24.148146, 12.940952, -41.825813), (26.304045, 12.940952, -40.504677), (26.636868, 10.395584, -41.01718), (26.636868, 10.395584, -41.01718), (26.304045, 12.940952, -40.504677), (28.387848, 12.940952, -39.07252), (28.747036, 10.395584, -39.566902), (28.747036, 10.395584, -39.566902), (28.387848, 12.940952, -39.07252), (30.39384, 12.940952, -37.533268), (30.778412, 10.395584, -38.00817), (30.778412, 10.395584, -38.00817), (30.39384, 12.940952, -37.533268), (32.31653, 12.940952, -35.89114), (32.725426, 10.395584, -36.34527), (32.725426, 10.395584, -36.34527), (32.31653, 12.940952, -35.89114), (34.150635, 12.940952, -34.150635), (34.58274, 10.395584, -34.58274), (34.58274, 10.395584, -34.58274), (34.150635, 12.940952, -34.150635), (35.89114, 12.940952, -32.31653), (36.34527, 10.395584, -32.725426), (36.34527, 10.395584, -32.725426), (35.89114, 12.940952, -32.31653), (37.533268, 12.940952, -30.39384), (38.00817, 10.395584, -30.778412), (38.00817, 10.395584, -30.778412), (37.533268, 12.940952, -30.39384), (39.07252, 12.940952, -28.387848), (39.566902, 10.395584, -28.747036), (39.566902, 10.395584, -28.747036), (39.07252, 12.940952, -28.387848), (40.504677, 12.940952, -26.304045), (41.01718, 10.395584, -26.636868), (41.01718, 10.395584, -26.636868), (40.504677, 12.940952, -26.304045), (41.825813, 12.940952, -24.148146), (42.355034, 10.395584, -24.45369), (42.355034, 10.395584, -24.45369), (41.825813, 12.940952, -24.148146), (43.03231, 12.940952, -21.926058), (43.576794, 10.395584, -22.203485), (43.576794, 10.395584, -22.203485), (43.03231, 12.940952, -21.926058), (44.120857, 12.940952, -19.643871), (44.679115, 10.395584, -19.892424), (44.679115, 10.395584, -19.892424), (44.120857, 12.940952, -19.643871), (45.08847, 12.940952, -17.307842), (45.658974, 10.395584, -17.526838), (45.658974, 10.395584, -17.526838), (45.08847, 12.940952, -17.307842), (45.932503, 12.940952, -14.924375), (46.513683, 10.395584, -15.113212), (46.513683, 10.395584, -15.113212), (45.932503, 12.940952, -14.924375), (46.650635, 12.940952, -12.5), (47.240902, 10.395584, -12.658161), (47.240902, 10.395584, -12.658161), (46.650635, 12.940952, -12.5), (47.240902, 12.940952, -10.041364), (47.83864, 10.395584, -10.168416), (47.83864, 10.395584, -10.168416), (47.240902, 12.940952, -10.041364), (47.701683, 12.940952, -7.5552044), (48.30525, 10.395584, -7.6507998), (48.30525, 10.395584, -7.6507998), (47.701683, 12.940952, -7.5552044), (48.03172, 12.940952, -5.048337), (48.63946, 10.395584, -5.112213), (48.63946, 10.395584, -5.112213), (48.03172, 12.940952, -5.048337), (48.230103, 12.940952, -2.5276325), (48.840355, 10.395584, -2.5596144), (48.840355, 10.395584, -2.5596144), (48.230103, 12.940952, -2.5276325), (48.29629, 12.940952, 0), (48.90738, 10.395584, 0), (48.29629, 12.940952, 0), (47.552826, 15.45085, 0), (47.487656, 15.45085, 2.4887226), (48.230103, 12.940952, 2.5276325), (48.230103, 12.940952, 2.5276325), (47.487656, 15.45085, 2.4887226), (47.292328, 15.45085, 4.970624), (48.03172, 12.940952, 5.048337), (48.03172, 12.940952, 5.048337), (47.292328, 15.45085, 4.970624), (46.967373, 15.45085, 7.438901), (47.701683, 12.940952, 7.5552044), (47.701683, 12.940952, 7.5552044), (46.967373, 15.45085, 7.438901), (46.513683, 15.45085, 9.886788), (47.240902, 12.940952, 10.041364), (47.240902, 12.940952, 10.041364), (46.513683, 15.45085, 9.886788), (45.932503, 15.45085, 12.307577), (46.650635, 12.940952, 12.5), (46.650635, 12.940952, 12.5), (45.932503, 15.45085, 12.307577), (45.225426, 15.45085, 14.694632), (45.932503, 12.940952, 14.924375), (45.932503, 12.940952, 14.924375), (45.225426, 15.45085, 14.694632), (44.394386, 15.45085, 17.041409), (45.08847, 12.940952, 17.307842), (45.08847, 12.940952, 17.307842), (44.394386, 15.45085, 17.041409), (43.44167, 15.45085, 19.341476), (44.120857, 12.940952, 19.643871), (44.120857, 12.940952, 19.643871), (43.44167, 15.45085, 19.341476), (42.369877, 15.45085, 21.588531), (43.03231, 12.940952, 21.926058), (43.03231, 12.940952, 21.926058), (42.369877, 15.45085, 21.588531), (41.181953, 15.45085, 23.776413), (41.825813, 12.940952, 24.148146), (41.825813, 12.940952, 24.148146), (41.181953, 15.45085, 23.776413), (39.881157, 15.45085, 25.899126), (40.504677, 12.940952, 26.304045), (40.504677, 12.940952, 26.304045), (39.881157, 15.45085, 25.899126), (38.471043, 15.45085, 27.95085), (39.07252, 12.940952, 28.387848), (39.07252, 12.940952, 28.387848), (38.471043, 15.45085, 27.95085), (36.955486, 15.45085, 29.925962), (37.533268, 12.940952, 30.39384), (37.533268, 12.940952, 30.39384), (36.955486, 15.45085, 29.925962), (35.33864, 15.45085, 31.819052), (35.89114, 12.940952, 32.31653), (35.89114, 12.940952, 32.31653), (35.33864, 15.45085, 31.819052), (33.624924, 15.45085, 33.624924), (34.150635, 12.940952, 34.150635), (34.150635, 12.940952, 34.150635), (33.624924, 15.45085, 33.624924), (31.819052, 15.45085, 35.33864), (32.31653, 12.940952, 35.89114), (32.31653, 12.940952, 35.89114), (31.819052, 15.45085, 35.33864), (29.925962, 15.45085, 36.955486), (30.39384, 12.940952, 37.533268), (30.39384, 12.940952, 37.533268), (29.925962, 15.45085, 36.955486), (27.95085, 15.45085, 38.471043), (28.387848, 12.940952, 39.07252), (28.387848, 12.940952, 39.07252), (27.95085, 15.45085, 38.471043), (25.899126, 15.45085, 39.881157), (26.304045, 12.940952, 40.504677), (26.304045, 12.940952, 40.504677), (25.899126, 15.45085, 39.881157), (23.776413, 15.45085, 41.181953), (24.148146, 12.940952, 41.825813), (24.148146, 12.940952, 41.825813), (23.776413, 15.45085, 41.181953), (21.588531, 15.45085, 42.369877), (21.926058, 12.940952, 43.03231), (21.926058, 12.940952, 43.03231), (21.588531, 15.45085, 42.369877), (19.341476, 15.45085, 43.44167), (19.643871, 12.940952, 44.120857), (19.643871, 12.940952, 44.120857), (19.341476, 15.45085, 43.44167), (17.041409, 15.45085, 44.394386), (17.307842, 12.940952, 45.08847), (17.307842, 12.940952, 45.08847), (17.041409, 15.45085, 44.394386), (14.694632, 15.45085, 45.225426), (14.924375, 12.940952, 45.932503), (14.924375, 12.940952, 45.932503), (14.694632, 15.45085, 45.225426), (12.307577, 15.45085, 45.932503), (12.5, 12.940952, 46.650635), (12.5, 12.940952, 46.650635), (12.307577, 15.45085, 45.932503), (9.886788, 15.45085, 46.513683), (10.041364, 12.940952, 47.240902), (10.041364, 12.940952, 47.240902), (9.886788, 15.45085, 46.513683), (7.438901, 15.45085, 46.967373), (7.5552044, 12.940952, 47.701683), (7.5552044, 12.940952, 47.701683), (7.438901, 15.45085, 46.967373), (4.970624, 15.45085, 47.292328), (5.048337, 12.940952, 48.03172), (5.048337, 12.940952, 48.03172), (4.970624, 15.45085, 47.292328), (2.4887226, 15.45085, 47.487656), (2.5276325, 12.940952, 48.230103), (2.5276325, 12.940952, 48.230103), (2.4887226, 15.45085, 47.487656), (2.9117708e-15, 15.45085, 47.552826), (2.9572948e-15, 12.940952, 48.29629), (2.9572948e-15, 12.940952, 48.29629), (2.9117708e-15, 15.45085, 47.552826), (-2.4887226, 15.45085, 47.487656), (-2.5276325, 12.940952, 48.230103), (-2.5276325, 12.940952, 48.230103), (-2.4887226, 15.45085, 47.487656), (-4.970624, 15.45085, 47.292328), (-5.048337, 12.940952, 48.03172), (-5.048337, 12.940952, 48.03172), (-4.970624, 15.45085, 47.292328), (-7.438901, 15.45085, 46.967373), (-7.5552044, 12.940952, 47.701683), (-7.5552044, 12.940952, 47.701683), (-7.438901, 15.45085, 46.967373), (-9.886788, 15.45085, 46.513683), (-10.041364, 12.940952, 47.240902), (-10.041364, 12.940952, 47.240902), (-9.886788, 15.45085, 46.513683), (-12.307577, 15.45085, 45.932503), (-12.5, 12.940952, 46.650635), (-12.5, 12.940952, 46.650635), (-12.307577, 15.45085, 45.932503), (-14.694632, 15.45085, 45.225426), (-14.924375, 12.940952, 45.932503), (-14.924375, 12.940952, 45.932503), (-14.694632, 15.45085, 45.225426), (-17.041409, 15.45085, 44.394386), (-17.307842, 12.940952, 45.08847), (-17.307842, 12.940952, 45.08847), (-17.041409, 15.45085, 44.394386), (-19.341476, 15.45085, 43.44167), (-19.643871, 12.940952, 44.120857), (-19.643871, 12.940952, 44.120857), (-19.341476, 15.45085, 43.44167), (-21.588531, 15.45085, 42.369877), (-21.926058, 12.940952, 43.03231), (-21.926058, 12.940952, 43.03231), (-21.588531, 15.45085, 42.369877), (-23.776413, 15.45085, 41.181953), (-24.148146, 12.940952, 41.825813), (-24.148146, 12.940952, 41.825813), (-23.776413, 15.45085, 41.181953), (-25.899126, 15.45085, 39.881157), (-26.304045, 12.940952, 40.504677), (-26.304045, 12.940952, 40.504677), (-25.899126, 15.45085, 39.881157), (-27.95085, 15.45085, 38.471043), (-28.387848, 12.940952, 39.07252), (-28.387848, 12.940952, 39.07252), (-27.95085, 15.45085, 38.471043), (-29.925962, 15.45085, 36.955486), (-30.39384, 12.940952, 37.533268), (-30.39384, 12.940952, 37.533268), (-29.925962, 15.45085, 36.955486), (-31.819052, 15.45085, 35.33864), (-32.31653, 12.940952, 35.89114), (-32.31653, 12.940952, 35.89114), (-31.819052, 15.45085, 35.33864), (-33.624924, 15.45085, 33.624924), (-34.150635, 12.940952, 34.150635), (-34.150635, 12.940952, 34.150635), (-33.624924, 15.45085, 33.624924), (-35.33864, 15.45085, 31.819052), (-35.89114, 12.940952, 32.31653), (-35.89114, 12.940952, 32.31653), (-35.33864, 15.45085, 31.819052), (-36.955486, 15.45085, 29.925962), (-37.533268, 12.940952, 30.39384), (-37.533268, 12.940952, 30.39384), (-36.955486, 15.45085, 29.925962), (-38.471043, 15.45085, 27.95085), (-39.07252, 12.940952, 28.387848), (-39.07252, 12.940952, 28.387848), (-38.471043, 15.45085, 27.95085), (-39.881157, 15.45085, 25.899126), (-40.504677, 12.940952, 26.304045), (-40.504677, 12.940952, 26.304045), (-39.881157, 15.45085, 25.899126), (-41.181953, 15.45085, 23.776413), (-41.825813, 12.940952, 24.148146), (-41.825813, 12.940952, 24.148146), (-41.181953, 15.45085, 23.776413), (-42.369877, 15.45085, 21.588531), (-43.03231, 12.940952, 21.926058), (-43.03231, 12.940952, 21.926058), (-42.369877, 15.45085, 21.588531), (-43.44167, 15.45085, 19.341476), (-44.120857, 12.940952, 19.643871), (-44.120857, 12.940952, 19.643871), (-43.44167, 15.45085, 19.341476), (-44.394386, 15.45085, 17.041409), (-45.08847, 12.940952, 17.307842), (-45.08847, 12.940952, 17.307842), (-44.394386, 15.45085, 17.041409), (-45.225426, 15.45085, 14.694632), (-45.932503, 12.940952, 14.924375), (-45.932503, 12.940952, 14.924375), (-45.225426, 15.45085, 14.694632), (-45.932503, 15.45085, 12.307577), (-46.650635, 12.940952, 12.5), (-46.650635, 12.940952, 12.5), (-45.932503, 15.45085, 12.307577), (-46.513683, 15.45085, 9.886788), (-47.240902, 12.940952, 10.041364), (-47.240902, 12.940952, 10.041364), (-46.513683, 15.45085, 9.886788), (-46.967373, 15.45085, 7.438901), (-47.701683, 12.940952, 7.5552044), (-47.701683, 12.940952, 7.5552044), (-46.967373, 15.45085, 7.438901), (-47.292328, 15.45085, 4.970624), (-48.03172, 12.940952, 5.048337), (-48.03172, 12.940952, 5.048337), (-47.292328, 15.45085, 4.970624), (-47.487656, 15.45085, 2.4887226), (-48.230103, 12.940952, 2.5276325), (-48.230103, 12.940952, 2.5276325), (-47.487656, 15.45085, 2.4887226), (-47.552826, 15.45085, 5.8235417e-15), (-48.29629, 12.940952, 5.9145897e-15), (-48.29629, 12.940952, 5.9145897e-15), (-47.552826, 15.45085, 5.8235417e-15), (-47.487656, 15.45085, -2.4887226), (-48.230103, 12.940952, -2.5276325), (-48.230103, 12.940952, -2.5276325), (-47.487656, 15.45085, -2.4887226), (-47.292328, 15.45085, -4.970624), (-48.03172, 12.940952, -5.048337), (-48.03172, 12.940952, -5.048337), (-47.292328, 15.45085, -4.970624), (-46.967373, 15.45085, -7.438901), (-47.701683, 12.940952, -7.5552044), (-47.701683, 12.940952, -7.5552044), (-46.967373, 15.45085, -7.438901), (-46.513683, 15.45085, -9.886788), (-47.240902, 12.940952, -10.041364), (-47.240902, 12.940952, -10.041364), (-46.513683, 15.45085, -9.886788), (-45.932503, 15.45085, -12.307577), (-46.650635, 12.940952, -12.5), (-46.650635, 12.940952, -12.5), (-45.932503, 15.45085, -12.307577), (-45.225426, 15.45085, -14.694632), (-45.932503, 12.940952, -14.924375), (-45.932503, 12.940952, -14.924375), (-45.225426, 15.45085, -14.694632), (-44.394386, 15.45085, -17.041409), (-45.08847, 12.940952, -17.307842), (-45.08847, 12.940952, -17.307842), (-44.394386, 15.45085, -17.041409), (-43.44167, 15.45085, -19.341476), (-44.120857, 12.940952, -19.643871), (-44.120857, 12.940952, -19.643871), (-43.44167, 15.45085, -19.341476), (-42.369877, 15.45085, -21.588531), (-43.03231, 12.940952, -21.926058), (-43.03231, 12.940952, -21.926058), (-42.369877, 15.45085, -21.588531), (-41.181953, 15.45085, -23.776413), (-41.825813, 12.940952, -24.148146), (-41.825813, 12.940952, -24.148146), (-41.181953, 15.45085, -23.776413), (-39.881157, 15.45085, -25.899126), (-40.504677, 12.940952, -26.304045), (-40.504677, 12.940952, -26.304045), (-39.881157, 15.45085, -25.899126), (-38.471043, 15.45085, -27.95085), (-39.07252, 12.940952, -28.387848), (-39.07252, 12.940952, -28.387848), (-38.471043, 15.45085, -27.95085), (-36.955486, 15.45085, -29.925962), (-37.533268, 12.940952, -30.39384), (-37.533268, 12.940952, -30.39384), (-36.955486, 15.45085, -29.925962), (-35.33864, 15.45085, -31.819052), (-35.89114, 12.940952, -32.31653), (-35.89114, 12.940952, -32.31653), (-35.33864, 15.45085, -31.819052), (-33.624924, 15.45085, -33.624924), (-34.150635, 12.940952, -34.150635), (-34.150635, 12.940952, -34.150635), (-33.624924, 15.45085, -33.624924), (-31.819052, 15.45085, -35.33864), (-32.31653, 12.940952, -35.89114), (-32.31653, 12.940952, -35.89114), (-31.819052, 15.45085, -35.33864), (-29.925962, 15.45085, -36.955486), (-30.39384, 12.940952, -37.533268), (-30.39384, 12.940952, -37.533268), (-29.925962, 15.45085, -36.955486), (-27.95085, 15.45085, -38.471043), (-28.387848, 12.940952, -39.07252), (-28.387848, 12.940952, -39.07252), (-27.95085, 15.45085, -38.471043), (-25.899126, 15.45085, -39.881157), (-26.304045, 12.940952, -40.504677), (-26.304045, 12.940952, -40.504677), (-25.899126, 15.45085, -39.881157), (-23.776413, 15.45085, -41.181953), (-24.148146, 12.940952, -41.825813), (-24.148146, 12.940952, -41.825813), (-23.776413, 15.45085, -41.181953), (-21.588531, 15.45085, -42.369877), (-21.926058, 12.940952, -43.03231), (-21.926058, 12.940952, -43.03231), (-21.588531, 15.45085, -42.369877), (-19.341476, 15.45085, -43.44167), (-19.643871, 12.940952, -44.120857), (-19.643871, 12.940952, -44.120857), (-19.341476, 15.45085, -43.44167), (-17.041409, 15.45085, -44.394386), (-17.307842, 12.940952, -45.08847), (-17.307842, 12.940952, -45.08847), (-17.041409, 15.45085, -44.394386), (-14.694632, 15.45085, -45.225426), (-14.924375, 12.940952, -45.932503), (-14.924375, 12.940952, -45.932503), (-14.694632, 15.45085, -45.225426), (-12.307577, 15.45085, -45.932503), (-12.5, 12.940952, -46.650635), (-12.5, 12.940952, -46.650635), (-12.307577, 15.45085, -45.932503), (-9.886788, 15.45085, -46.513683), (-10.041364, 12.940952, -47.240902), (-10.041364, 12.940952, -47.240902), (-9.886788, 15.45085, -46.513683), (-7.438901, 15.45085, -46.967373), (-7.5552044, 12.940952, -47.701683), (-7.5552044, 12.940952, -47.701683), (-7.438901, 15.45085, -46.967373), (-4.970624, 15.45085, -47.292328), (-5.048337, 12.940952, -48.03172), (-5.048337, 12.940952, -48.03172), (-4.970624, 15.45085, -47.292328), (-2.4887226, 15.45085, -47.487656), (-2.5276325, 12.940952, -48.230103), (-2.5276325, 12.940952, -48.230103), (-2.4887226, 15.45085, -47.487656), (-8.735313e-15, 15.45085, -47.552826), (-8.871885e-15, 12.940952, -48.29629), (-8.871885e-15, 12.940952, -48.29629), (-8.735313e-15, 15.45085, -47.552826), (2.4887226, 15.45085, -47.487656), (2.5276325, 12.940952, -48.230103), (2.5276325, 12.940952, -48.230103), (2.4887226, 15.45085, -47.487656), (4.970624, 15.45085, -47.292328), (5.048337, 12.940952, -48.03172), (5.048337, 12.940952, -48.03172), (4.970624, 15.45085, -47.292328), (7.438901, 15.45085, -46.967373), (7.5552044, 12.940952, -47.701683), (7.5552044, 12.940952, -47.701683), (7.438901, 15.45085, -46.967373), (9.886788, 15.45085, -46.513683), (10.041364, 12.940952, -47.240902), (10.041364, 12.940952, -47.240902), (9.886788, 15.45085, -46.513683), (12.307577, 15.45085, -45.932503), (12.5, 12.940952, -46.650635), (12.5, 12.940952, -46.650635), (12.307577, 15.45085, -45.932503), (14.694632, 15.45085, -45.225426), (14.924375, 12.940952, -45.932503), (14.924375, 12.940952, -45.932503), (14.694632, 15.45085, -45.225426), (17.041409, 15.45085, -44.394386), (17.307842, 12.940952, -45.08847), (17.307842, 12.940952, -45.08847), (17.041409, 15.45085, -44.394386), (19.341476, 15.45085, -43.44167), (19.643871, 12.940952, -44.120857), (19.643871, 12.940952, -44.120857), (19.341476, 15.45085, -43.44167), (21.588531, 15.45085, -42.369877), (21.926058, 12.940952, -43.03231), (21.926058, 12.940952, -43.03231), (21.588531, 15.45085, -42.369877), (23.776413, 15.45085, -41.181953), (24.148146, 12.940952, -41.825813), (24.148146, 12.940952, -41.825813), (23.776413, 15.45085, -41.181953), (25.899126, 15.45085, -39.881157), (26.304045, 12.940952, -40.504677), (26.304045, 12.940952, -40.504677), (25.899126, 15.45085, -39.881157), (27.95085, 15.45085, -38.471043), (28.387848, 12.940952, -39.07252), (28.387848, 12.940952, -39.07252), (27.95085, 15.45085, -38.471043), (29.925962, 15.45085, -36.955486), (30.39384, 12.940952, -37.533268), (30.39384, 12.940952, -37.533268), (29.925962, 15.45085, -36.955486), (31.819052, 15.45085, -35.33864), (32.31653, 12.940952, -35.89114), (32.31653, 12.940952, -35.89114), (31.819052, 15.45085, -35.33864), (33.624924, 15.45085, -33.624924), (34.150635, 12.940952, -34.150635), (34.150635, 12.940952, -34.150635), (33.624924, 15.45085, -33.624924), (35.33864, 15.45085, -31.819052), (35.89114, 12.940952, -32.31653), (35.89114, 12.940952, -32.31653), (35.33864, 15.45085, -31.819052), (36.955486, 15.45085, -29.925962), (37.533268, 12.940952, -30.39384), (37.533268, 12.940952, -30.39384), (36.955486, 15.45085, -29.925962), (38.471043, 15.45085, -27.95085), (39.07252, 12.940952, -28.387848), (39.07252, 12.940952, -28.387848), (38.471043, 15.45085, -27.95085), (39.881157, 15.45085, -25.899126), (40.504677, 12.940952, -26.304045), (40.504677, 12.940952, -26.304045), (39.881157, 15.45085, -25.899126), (41.181953, 15.45085, -23.776413), (41.825813, 12.940952, -24.148146), (41.825813, 12.940952, -24.148146), (41.181953, 15.45085, -23.776413), (42.369877, 15.45085, -21.588531), (43.03231, 12.940952, -21.926058), (43.03231, 12.940952, -21.926058), (42.369877, 15.45085, -21.588531), (43.44167, 15.45085, -19.341476), (44.120857, 12.940952, -19.643871), (44.120857, 12.940952, -19.643871), (43.44167, 15.45085, -19.341476), (44.394386, 15.45085, -17.041409), (45.08847, 12.940952, -17.307842), (45.08847, 12.940952, -17.307842), (44.394386, 15.45085, -17.041409), (45.225426, 15.45085, -14.694632), (45.932503, 12.940952, -14.924375), (45.932503, 12.940952, -14.924375), (45.225426, 15.45085, -14.694632), (45.932503, 15.45085, -12.307577), (46.650635, 12.940952, -12.5), (46.650635, 12.940952, -12.5), (45.932503, 15.45085, -12.307577), (46.513683, 15.45085, -9.886788), (47.240902, 12.940952, -10.041364), (47.240902, 12.940952, -10.041364), (46.513683, 15.45085, -9.886788), (46.967373, 15.45085, -7.438901), (47.701683, 12.940952, -7.5552044), (47.701683, 12.940952, -7.5552044), (46.967373, 15.45085, -7.438901), (47.292328, 15.45085, -4.970624), (48.03172, 12.940952, -5.048337), (48.03172, 12.940952, -5.048337), (47.292328, 15.45085, -4.970624), (47.487656, 15.45085, -2.4887226), (48.230103, 12.940952, -2.5276325), (48.230103, 12.940952, -2.5276325), (47.487656, 15.45085, -2.4887226), (47.552826, 15.45085, 0), (48.29629, 12.940952, 0), (47.552826, 15.45085, 0), (46.67902, 17.918398, 0), (46.615047, 17.918398, 2.4429913), (47.487656, 15.45085, 2.4887226), (47.487656, 15.45085, 2.4887226), (46.615047, 17.918398, 2.4429913), (46.42331, 17.918398, 4.8792863), (47.292328, 15.45085, 4.970624), (47.292328, 15.45085, 4.970624), (46.42331, 17.918398, 4.8792863), (46.104324, 17.918398, 7.302208), (46.967373, 15.45085, 7.438901), (46.967373, 15.45085, 7.438901), (46.104324, 17.918398, 7.302208), (45.658974, 17.918398, 9.705114), (46.513683, 15.45085, 9.886788), (46.513683, 15.45085, 9.886788), (45.658974, 17.918398, 9.705114), (45.08847, 17.918398, 12.08142), (45.932503, 15.45085, 12.307577), (45.932503, 15.45085, 12.307577), (45.08847, 17.918398, 12.08142), (44.394386, 17.918398, 14.424611), (45.225426, 15.45085, 14.694632), (45.225426, 15.45085, 14.694632), (44.394386, 17.918398, 14.424611), (43.57862, 17.918398, 16.728266), (44.394386, 15.45085, 17.041409), (44.394386, 15.45085, 17.041409), (43.57862, 17.918398, 16.728266), (42.64341, 17.918398, 18.986069), (43.44167, 15.45085, 19.341476), (43.44167, 15.45085, 19.341476), (42.64341, 17.918398, 18.986069), (41.591312, 17.918398, 21.191832), (42.369877, 15.45085, 21.588531), (42.369877, 15.45085, 21.588531), (41.591312, 17.918398, 21.191832), (40.425217, 17.918398, 23.33951), (41.181953, 15.45085, 23.776413), (41.181953, 15.45085, 23.776413), (40.425217, 17.918398, 23.33951), (39.148323, 17.918398, 25.423218), (39.881157, 15.45085, 25.899126), (39.881157, 15.45085, 25.899126), (39.148323, 17.918398, 25.423218), (37.764122, 17.918398, 27.43724), (38.471043, 15.45085, 27.95085), (38.471043, 15.45085, 27.95085), (37.764122, 17.918398, 27.43724), (36.276413, 17.918398, 29.37606), (36.955486, 15.45085, 29.925962), (36.955486, 15.45085, 29.925962), (36.276413, 17.918398, 29.37606), (34.689274, 17.918398, 31.234362), (35.33864, 15.45085, 31.819052), (35.33864, 15.45085, 31.819052), (34.689274, 17.918398, 31.234362), (33.007053, 17.918398, 33.007053), (33.624924, 15.45085, 33.624924), (33.624924, 15.45085, 33.624924), (33.007053, 17.918398, 33.007053), (31.234362, 17.918398, 34.689274), (31.819052, 15.45085, 35.33864), (31.819052, 15.45085, 35.33864), (31.234362, 17.918398, 34.689274), (29.37606, 17.918398, 36.276413), (29.925962, 15.45085, 36.955486), (29.925962, 15.45085, 36.955486), (29.37606, 17.918398, 36.276413), (27.43724, 17.918398, 37.764122), (27.95085, 15.45085, 38.471043), (27.95085, 15.45085, 38.471043), (27.43724, 17.918398, 37.764122), (25.423218, 17.918398, 39.148323), (25.899126, 15.45085, 39.881157), (25.899126, 15.45085, 39.881157), (25.423218, 17.918398, 39.148323), (23.33951, 17.918398, 40.425217), (23.776413, 15.45085, 41.181953), (23.776413, 15.45085, 41.181953), (23.33951, 17.918398, 40.425217), (21.191832, 17.918398, 41.591312), (21.588531, 15.45085, 42.369877), (21.588531, 15.45085, 42.369877), (21.191832, 17.918398, 41.591312), (18.986069, 17.918398, 42.64341), (19.341476, 15.45085, 43.44167), (19.341476, 15.45085, 43.44167), (18.986069, 17.918398, 42.64341), (16.728266, 17.918398, 43.57862), (17.041409, 15.45085, 44.394386), (17.041409, 15.45085, 44.394386), (16.728266, 17.918398, 43.57862), (14.424611, 17.918398, 44.394386), (14.694632, 15.45085, 45.225426), (14.694632, 15.45085, 45.225426), (14.424611, 17.918398, 44.394386), (12.08142, 17.918398, 45.08847), (12.307577, 15.45085, 45.932503), (12.307577, 15.45085, 45.932503), (12.08142, 17.918398, 45.08847), (9.705114, 17.918398, 45.658974), (9.886788, 15.45085, 46.513683), (9.886788, 15.45085, 46.513683), (9.705114, 17.918398, 45.658974), (7.302208, 17.918398, 46.104324), (7.438901, 15.45085, 46.967373), (7.438901, 15.45085, 46.967373), (7.302208, 17.918398, 46.104324), (4.8792863, 17.918398, 46.42331), (4.970624, 15.45085, 47.292328), (4.970624, 15.45085, 47.292328), (4.8792863, 17.918398, 46.42331), (2.4429913, 17.918398, 46.615047), (2.4887226, 15.45085, 47.487656), (2.4887226, 15.45085, 47.487656), (2.4429913, 17.918398, 46.615047), (2.8582657e-15, 17.918398, 46.67902), (2.9117708e-15, 15.45085, 47.552826), (2.9117708e-15, 15.45085, 47.552826), (2.8582657e-15, 17.918398, 46.67902), (-2.4429913, 17.918398, 46.615047), (-2.4887226, 15.45085, 47.487656), (-2.4887226, 15.45085, 47.487656), (-2.4429913, 17.918398, 46.615047), (-4.8792863, 17.918398, 46.42331), (-4.970624, 15.45085, 47.292328), (-4.970624, 15.45085, 47.292328), (-4.8792863, 17.918398, 46.42331), (-7.302208, 17.918398, 46.104324), (-7.438901, 15.45085, 46.967373), (-7.438901, 15.45085, 46.967373), (-7.302208, 17.918398, 46.104324), (-9.705114, 17.918398, 45.658974), (-9.886788, 15.45085, 46.513683), (-9.886788, 15.45085, 46.513683), (-9.705114, 17.918398, 45.658974), (-12.08142, 17.918398, 45.08847), (-12.307577, 15.45085, 45.932503), (-12.307577, 15.45085, 45.932503), (-12.08142, 17.918398, 45.08847), (-14.424611, 17.918398, 44.394386), (-14.694632, 15.45085, 45.225426), (-14.694632, 15.45085, 45.225426), (-14.424611, 17.918398, 44.394386), (-16.728266, 17.918398, 43.57862), (-17.041409, 15.45085, 44.394386), (-17.041409, 15.45085, 44.394386), (-16.728266, 17.918398, 43.57862), (-18.986069, 17.918398, 42.64341), (-19.341476, 15.45085, 43.44167), (-19.341476, 15.45085, 43.44167), (-18.986069, 17.918398, 42.64341), (-21.191832, 17.918398, 41.591312), (-21.588531, 15.45085, 42.369877), (-21.588531, 15.45085, 42.369877), (-21.191832, 17.918398, 41.591312), (-23.33951, 17.918398, 40.425217), (-23.776413, 15.45085, 41.181953), (-23.776413, 15.45085, 41.181953), (-23.33951, 17.918398, 40.425217), (-25.423218, 17.918398, 39.148323), (-25.899126, 15.45085, 39.881157), (-25.899126, 15.45085, 39.881157), (-25.423218, 17.918398, 39.148323), (-27.43724, 17.918398, 37.764122), (-27.95085, 15.45085, 38.471043), (-27.95085, 15.45085, 38.471043), (-27.43724, 17.918398, 37.764122), (-29.37606, 17.918398, 36.276413), (-29.925962, 15.45085, 36.955486), (-29.925962, 15.45085, 36.955486), (-29.37606, 17.918398, 36.276413), (-31.234362, 17.918398, 34.689274), (-31.819052, 15.45085, 35.33864), (-31.819052, 15.45085, 35.33864), (-31.234362, 17.918398, 34.689274), (-33.007053, 17.918398, 33.007053), (-33.624924, 15.45085, 33.624924), (-33.624924, 15.45085, 33.624924), (-33.007053, 17.918398, 33.007053), (-34.689274, 17.918398, 31.234362), (-35.33864, 15.45085, 31.819052), (-35.33864, 15.45085, 31.819052), (-34.689274, 17.918398, 31.234362), (-36.276413, 17.918398, 29.37606), (-36.955486, 15.45085, 29.925962), (-36.955486, 15.45085, 29.925962), (-36.276413, 17.918398, 29.37606), (-37.764122, 17.918398, 27.43724), (-38.471043, 15.45085, 27.95085), (-38.471043, 15.45085, 27.95085), (-37.764122, 17.918398, 27.43724), (-39.148323, 17.918398, 25.423218), (-39.881157, 15.45085, 25.899126), (-39.881157, 15.45085, 25.899126), (-39.148323, 17.918398, 25.423218), (-40.425217, 17.918398, 23.33951), (-41.181953, 15.45085, 23.776413), (-41.181953, 15.45085, 23.776413), (-40.425217, 17.918398, 23.33951), (-41.591312, 17.918398, 21.191832), (-42.369877, 15.45085, 21.588531), (-42.369877, 15.45085, 21.588531), (-41.591312, 17.918398, 21.191832), (-42.64341, 17.918398, 18.986069), (-43.44167, 15.45085, 19.341476), (-43.44167, 15.45085, 19.341476), (-42.64341, 17.918398, 18.986069), (-43.57862, 17.918398, 16.728266), (-44.394386, 15.45085, 17.041409), (-44.394386, 15.45085, 17.041409), (-43.57862, 17.918398, 16.728266), (-44.394386, 17.918398, 14.424611), (-45.225426, 15.45085, 14.694632), (-45.225426, 15.45085, 14.694632), (-44.394386, 17.918398, 14.424611), (-45.08847, 17.918398, 12.08142), (-45.932503, 15.45085, 12.307577), (-45.932503, 15.45085, 12.307577), (-45.08847, 17.918398, 12.08142), (-45.658974, 17.918398, 9.705114), (-46.513683, 15.45085, 9.886788), (-46.513683, 15.45085, 9.886788), (-45.658974, 17.918398, 9.705114), (-46.104324, 17.918398, 7.302208), (-46.967373, 15.45085, 7.438901), (-46.967373, 15.45085, 7.438901), (-46.104324, 17.918398, 7.302208), (-46.42331, 17.918398, 4.8792863), (-47.292328, 15.45085, 4.970624), (-47.292328, 15.45085, 4.970624), (-46.42331, 17.918398, 4.8792863), (-46.615047, 17.918398, 2.4429913), (-47.487656, 15.45085, 2.4887226), (-47.487656, 15.45085, 2.4887226), (-46.615047, 17.918398, 2.4429913), (-46.67902, 17.918398, 5.7165313e-15), (-47.552826, 15.45085, 5.8235417e-15), (-47.552826, 15.45085, 5.8235417e-15), (-46.67902, 17.918398, 5.7165313e-15), (-46.615047, 17.918398, -2.4429913), (-47.487656, 15.45085, -2.4887226), (-47.487656, 15.45085, -2.4887226), (-46.615047, 17.918398, -2.4429913), (-46.42331, 17.918398, -4.8792863), (-47.292328, 15.45085, -4.970624), (-47.292328, 15.45085, -4.970624), (-46.42331, 17.918398, -4.8792863), (-46.104324, 17.918398, -7.302208), (-46.967373, 15.45085, -7.438901), (-46.967373, 15.45085, -7.438901), (-46.104324, 17.918398, -7.302208), (-45.658974, 17.918398, -9.705114), (-46.513683, 15.45085, -9.886788), (-46.513683, 15.45085, -9.886788), (-45.658974, 17.918398, -9.705114), (-45.08847, 17.918398, -12.08142), (-45.932503, 15.45085, -12.307577), (-45.932503, 15.45085, -12.307577), (-45.08847, 17.918398, -12.08142), (-44.394386, 17.918398, -14.424611), (-45.225426, 15.45085, -14.694632), (-45.225426, 15.45085, -14.694632), (-44.394386, 17.918398, -14.424611), (-43.57862, 17.918398, -16.728266), (-44.394386, 15.45085, -17.041409), (-44.394386, 15.45085, -17.041409), (-43.57862, 17.918398, -16.728266), (-42.64341, 17.918398, -18.986069), (-43.44167, 15.45085, -19.341476), (-43.44167, 15.45085, -19.341476), (-42.64341, 17.918398, -18.986069), (-41.591312, 17.918398, -21.191832), (-42.369877, 15.45085, -21.588531), (-42.369877, 15.45085, -21.588531), (-41.591312, 17.918398, -21.191832), (-40.425217, 17.918398, -23.33951), (-41.181953, 15.45085, -23.776413), (-41.181953, 15.45085, -23.776413), (-40.425217, 17.918398, -23.33951), (-39.148323, 17.918398, -25.423218), (-39.881157, 15.45085, -25.899126), (-39.881157, 15.45085, -25.899126), (-39.148323, 17.918398, -25.423218), (-37.764122, 17.918398, -27.43724), (-38.471043, 15.45085, -27.95085), (-38.471043, 15.45085, -27.95085), (-37.764122, 17.918398, -27.43724), (-36.276413, 17.918398, -29.37606), (-36.955486, 15.45085, -29.925962), (-36.955486, 15.45085, -29.925962), (-36.276413, 17.918398, -29.37606), (-34.689274, 17.918398, -31.234362), (-35.33864, 15.45085, -31.819052), (-35.33864, 15.45085, -31.819052), (-34.689274, 17.918398, -31.234362), (-33.007053, 17.918398, -33.007053), (-33.624924, 15.45085, -33.624924), (-33.624924, 15.45085, -33.624924), (-33.007053, 17.918398, -33.007053), (-31.234362, 17.918398, -34.689274), (-31.819052, 15.45085, -35.33864), (-31.819052, 15.45085, -35.33864), (-31.234362, 17.918398, -34.689274), (-29.37606, 17.918398, -36.276413), (-29.925962, 15.45085, -36.955486), (-29.925962, 15.45085, -36.955486), (-29.37606, 17.918398, -36.276413), (-27.43724, 17.918398, -37.764122), (-27.95085, 15.45085, -38.471043), (-27.95085, 15.45085, -38.471043), (-27.43724, 17.918398, -37.764122), (-25.423218, 17.918398, -39.148323), (-25.899126, 15.45085, -39.881157), (-25.899126, 15.45085, -39.881157), (-25.423218, 17.918398, -39.148323), (-23.33951, 17.918398, -40.425217), (-23.776413, 15.45085, -41.181953), (-23.776413, 15.45085, -41.181953), (-23.33951, 17.918398, -40.425217), (-21.191832, 17.918398, -41.591312), (-21.588531, 15.45085, -42.369877), (-21.588531, 15.45085, -42.369877), (-21.191832, 17.918398, -41.591312), (-18.986069, 17.918398, -42.64341), (-19.341476, 15.45085, -43.44167), (-19.341476, 15.45085, -43.44167), (-18.986069, 17.918398, -42.64341), (-16.728266, 17.918398, -43.57862), (-17.041409, 15.45085, -44.394386), (-17.041409, 15.45085, -44.394386), (-16.728266, 17.918398, -43.57862), (-14.424611, 17.918398, -44.394386), (-14.694632, 15.45085, -45.225426), (-14.694632, 15.45085, -45.225426), (-14.424611, 17.918398, -44.394386), (-12.08142, 17.918398, -45.08847), (-12.307577, 15.45085, -45.932503), (-12.307577, 15.45085, -45.932503), (-12.08142, 17.918398, -45.08847), (-9.705114, 17.918398, -45.658974), (-9.886788, 15.45085, -46.513683), (-9.886788, 15.45085, -46.513683), (-9.705114, 17.918398, -45.658974), (-7.302208, 17.918398, -46.104324), (-7.438901, 15.45085, -46.967373), (-7.438901, 15.45085, -46.967373), (-7.302208, 17.918398, -46.104324), (-4.8792863, 17.918398, -46.42331), (-4.970624, 15.45085, -47.292328), (-4.970624, 15.45085, -47.292328), (-4.8792863, 17.918398, -46.42331), (-2.4429913, 17.918398, -46.615047), (-2.4887226, 15.45085, -47.487656), (-2.4887226, 15.45085, -47.487656), (-2.4429913, 17.918398, -46.615047), (-8.5747974e-15, 17.918398, -46.67902), (-8.735313e-15, 15.45085, -47.552826), (-8.735313e-15, 15.45085, -47.552826), (-8.5747974e-15, 17.918398, -46.67902), (2.4429913, 17.918398, -46.615047), (2.4887226, 15.45085, -47.487656), (2.4887226, 15.45085, -47.487656), (2.4429913, 17.918398, -46.615047), (4.8792863, 17.918398, -46.42331), (4.970624, 15.45085, -47.292328), (4.970624, 15.45085, -47.292328), (4.8792863, 17.918398, -46.42331), (7.302208, 17.918398, -46.104324), (7.438901, 15.45085, -46.967373), (7.438901, 15.45085, -46.967373), (7.302208, 17.918398, -46.104324), (9.705114, 17.918398, -45.658974), (9.886788, 15.45085, -46.513683), (9.886788, 15.45085, -46.513683), (9.705114, 17.918398, -45.658974), (12.08142, 17.918398, -45.08847), (12.307577, 15.45085, -45.932503), (12.307577, 15.45085, -45.932503), (12.08142, 17.918398, -45.08847), (14.424611, 17.918398, -44.394386), (14.694632, 15.45085, -45.225426), (14.694632, 15.45085, -45.225426), (14.424611, 17.918398, -44.394386), (16.728266, 17.918398, -43.57862), (17.041409, 15.45085, -44.394386), (17.041409, 15.45085, -44.394386), (16.728266, 17.918398, -43.57862), (18.986069, 17.918398, -42.64341), (19.341476, 15.45085, -43.44167), (19.341476, 15.45085, -43.44167), (18.986069, 17.918398, -42.64341), (21.191832, 17.918398, -41.591312), (21.588531, 15.45085, -42.369877), (21.588531, 15.45085, -42.369877), (21.191832, 17.918398, -41.591312), (23.33951, 17.918398, -40.425217), (23.776413, 15.45085, -41.181953), (23.776413, 15.45085, -41.181953), (23.33951, 17.918398, -40.425217), (25.423218, 17.918398, -39.148323), (25.899126, 15.45085, -39.881157), (25.899126, 15.45085, -39.881157), (25.423218, 17.918398, -39.148323), (27.43724, 17.918398, -37.764122), (27.95085, 15.45085, -38.471043), (27.95085, 15.45085, -38.471043), (27.43724, 17.918398, -37.764122), (29.37606, 17.918398, -36.276413), (29.925962, 15.45085, -36.955486), (29.925962, 15.45085, -36.955486), (29.37606, 17.918398, -36.276413), (31.234362, 17.918398, -34.689274), (31.819052, 15.45085, -35.33864), (31.819052, 15.45085, -35.33864), (31.234362, 17.918398, -34.689274), (33.007053, 17.918398, -33.007053), (33.624924, 15.45085, -33.624924), (33.624924, 15.45085, -33.624924), (33.007053, 17.918398, -33.007053), (34.689274, 17.918398, -31.234362), (35.33864, 15.45085, -31.819052), (35.33864, 15.45085, -31.819052), (34.689274, 17.918398, -31.234362), (36.276413, 17.918398, -29.37606), (36.955486, 15.45085, -29.925962), (36.955486, 15.45085, -29.925962), (36.276413, 17.918398, -29.37606), (37.764122, 17.918398, -27.43724), (38.471043, 15.45085, -27.95085), (38.471043, 15.45085, -27.95085), (37.764122, 17.918398, -27.43724), (39.148323, 17.918398, -25.423218), (39.881157, 15.45085, -25.899126), (39.881157, 15.45085, -25.899126), (39.148323, 17.918398, -25.423218), (40.425217, 17.918398, -23.33951), (41.181953, 15.45085, -23.776413), (41.181953, 15.45085, -23.776413), (40.425217, 17.918398, -23.33951), (41.591312, 17.918398, -21.191832), (42.369877, 15.45085, -21.588531), (42.369877, 15.45085, -21.588531), (41.591312, 17.918398, -21.191832), (42.64341, 17.918398, -18.986069), (43.44167, 15.45085, -19.341476), (43.44167, 15.45085, -19.341476), (42.64341, 17.918398, -18.986069), (43.57862, 17.918398, -16.728266), (44.394386, 15.45085, -17.041409), (44.394386, 15.45085, -17.041409), (43.57862, 17.918398, -16.728266), (44.394386, 17.918398, -14.424611), (45.225426, 15.45085, -14.694632), (45.225426, 15.45085, -14.694632), (44.394386, 17.918398, -14.424611), (45.08847, 17.918398, -12.08142), (45.932503, 15.45085, -12.307577), (45.932503, 15.45085, -12.307577), (45.08847, 17.918398, -12.08142), (45.658974, 17.918398, -9.705114), (46.513683, 15.45085, -9.886788), (46.513683, 15.45085, -9.886788), (45.658974, 17.918398, -9.705114), (46.104324, 17.918398, -7.302208), (46.967373, 15.45085, -7.438901), (46.967373, 15.45085, -7.438901), (46.104324, 17.918398, -7.302208), (46.42331, 17.918398, -4.8792863), (47.292328, 15.45085, -4.970624), (47.292328, 15.45085, -4.970624), (46.42331, 17.918398, -4.8792863), (46.615047, 17.918398, -2.4429913), (47.487656, 15.45085, -2.4887226), (47.487656, 15.45085, -2.4887226), (46.615047, 17.918398, -2.4429913), (46.67902, 17.918398, 0), (47.552826, 15.45085, 0), (46.67902, 17.918398, 0), (45.677273, 20.336832, 0), (45.614674, 20.336832, 2.3905637), (46.615047, 17.918398, 2.4429913), (46.615047, 17.918398, 2.4429913), (45.614674, 20.336832, 2.3905637), (45.427048, 20.336832, 4.774575), (46.42331, 17.918398, 4.8792863), (46.42331, 17.918398, 4.8792863), (45.427048, 20.336832, 4.774575), (45.11491, 20.336832, 7.1454997), (46.104324, 17.918398, 7.302208), (46.104324, 17.918398, 7.302208), (45.11491, 20.336832, 7.1454997), (44.679115, 20.336832, 9.496839), (45.658974, 17.918398, 9.705114), (45.658974, 17.918398, 9.705114), (44.679115, 20.336832, 9.496839), (44.120857, 20.336832, 11.822148), (45.08847, 17.918398, 12.08142), (45.08847, 17.918398, 12.08142), (44.120857, 20.336832, 11.822148), (43.44167, 20.336832, 14.115053), (44.394386, 17.918398, 14.424611), (44.394386, 17.918398, 14.424611), (43.44167, 20.336832, 14.115053), (42.64341, 20.336832, 16.36927), (43.57862, 17.918398, 16.728266), (43.57862, 17.918398, 16.728266), (42.64341, 20.336832, 16.36927), (41.728264, 20.336832, 18.57862), (42.64341, 17.918398, 18.986069), (42.64341, 17.918398, 18.986069), (41.728264, 20.336832, 18.57862), (40.69875, 20.336832, 20.737047), (41.591312, 17.918398, 21.191832), (41.591312, 17.918398, 21.191832), (40.69875, 20.336832, 20.737047), (39.55768, 20.336832, 22.838636), (40.425217, 17.918398, 23.33951), (40.425217, 17.918398, 23.33951), (39.55768, 20.336832, 22.838636), (38.308186, 20.336832, 24.877626), (39.148323, 17.918398, 25.423218), (39.148323, 17.918398, 25.423218), (38.308186, 20.336832, 24.877626), (36.95369, 20.336832, 26.848427), (37.764122, 17.918398, 27.43724), (37.764122, 17.918398, 27.43724), (36.95369, 20.336832, 26.848427), (35.49791, 20.336832, 28.74564), (36.276413, 17.918398, 29.37606), (36.276413, 17.918398, 29.37606), (35.49791, 20.336832, 28.74564), (33.944828, 20.336832, 30.564062), (34.689274, 17.918398, 31.234362), (34.689274, 17.918398, 31.234362), (33.944828, 20.336832, 30.564062), (32.29871, 20.336832, 32.29871), (33.007053, 17.918398, 33.007053), (33.007053, 17.918398, 33.007053), (32.29871, 20.336832, 32.29871), (30.564062, 20.336832, 33.944828), (31.234362, 17.918398, 34.689274), (31.234362, 17.918398, 34.689274), (30.564062, 20.336832, 33.944828), (28.74564, 20.336832, 35.49791), (29.37606, 17.918398, 36.276413), (29.37606, 17.918398, 36.276413), (28.74564, 20.336832, 35.49791), (26.848427, 20.336832, 36.95369), (27.43724, 17.918398, 37.764122), (27.43724, 17.918398, 37.764122), (26.848427, 20.336832, 36.95369), (24.877626, 20.336832, 38.308186), (25.423218, 17.918398, 39.148323), (25.423218, 17.918398, 39.148323), (24.877626, 20.336832, 38.308186), (22.838636, 20.336832, 39.55768), (23.33951, 17.918398, 40.425217), (23.33951, 17.918398, 40.425217), (22.838636, 20.336832, 39.55768), (20.737047, 20.336832, 40.69875), (21.191832, 17.918398, 41.591312), (21.191832, 17.918398, 41.591312), (20.737047, 20.336832, 40.69875), (18.57862, 20.336832, 41.728264), (18.986069, 17.918398, 42.64341), (18.986069, 17.918398, 42.64341), (18.57862, 20.336832, 41.728264), (16.36927, 20.336832, 42.64341), (16.728266, 17.918398, 43.57862), (16.728266, 17.918398, 43.57862), (16.36927, 20.336832, 42.64341), (14.115053, 20.336832, 43.44167), (14.424611, 17.918398, 44.394386), (14.424611, 17.918398, 44.394386), (14.115053, 20.336832, 43.44167), (11.822148, 20.336832, 44.120857), (12.08142, 17.918398, 45.08847), (12.08142, 17.918398, 45.08847), (11.822148, 20.336832, 44.120857), (9.496839, 20.336832, 44.679115), (9.705114, 17.918398, 45.658974), (9.705114, 17.918398, 45.658974), (9.496839, 20.336832, 44.679115), (7.1454997, 20.336832, 45.11491), (7.302208, 17.918398, 46.104324), (7.302208, 17.918398, 46.104324), (7.1454997, 20.336832, 45.11491), (4.774575, 20.336832, 45.427048), (4.8792863, 17.918398, 46.42331), (4.8792863, 17.918398, 46.42331), (4.774575, 20.336832, 45.427048), (2.3905637, 20.336832, 45.614674), (2.4429913, 17.918398, 46.615047), (2.4429913, 17.918398, 46.615047), (2.3905637, 20.336832, 45.614674), (2.7969263e-15, 20.336832, 45.677273), (2.8582657e-15, 17.918398, 46.67902), (2.8582657e-15, 17.918398, 46.67902), (2.7969263e-15, 20.336832, 45.677273), (-2.3905637, 20.336832, 45.614674), (-2.4429913, 17.918398, 46.615047), (-2.4429913, 17.918398, 46.615047), (-2.3905637, 20.336832, 45.614674), (-4.774575, 20.336832, 45.427048), (-4.8792863, 17.918398, 46.42331), (-4.8792863, 17.918398, 46.42331), (-4.774575, 20.336832, 45.427048), (-7.1454997, 20.336832, 45.11491), (-7.302208, 17.918398, 46.104324), (-7.302208, 17.918398, 46.104324), (-7.1454997, 20.336832, 45.11491), (-9.496839, 20.336832, 44.679115), (-9.705114, 17.918398, 45.658974), (-9.705114, 17.918398, 45.658974), (-9.496839, 20.336832, 44.679115), (-11.822148, 20.336832, 44.120857), (-12.08142, 17.918398, 45.08847), (-12.08142, 17.918398, 45.08847), (-11.822148, 20.336832, 44.120857), (-14.115053, 20.336832, 43.44167), (-14.424611, 17.918398, 44.394386), (-14.424611, 17.918398, 44.394386), (-14.115053, 20.336832, 43.44167), (-16.36927, 20.336832, 42.64341), (-16.728266, 17.918398, 43.57862), (-16.728266, 17.918398, 43.57862), (-16.36927, 20.336832, 42.64341), (-18.57862, 20.336832, 41.728264), (-18.986069, 17.918398, 42.64341), (-18.986069, 17.918398, 42.64341), (-18.57862, 20.336832, 41.728264), (-20.737047, 20.336832, 40.69875), (-21.191832, 17.918398, 41.591312), (-21.191832, 17.918398, 41.591312), (-20.737047, 20.336832, 40.69875), (-22.838636, 20.336832, 39.55768), (-23.33951, 17.918398, 40.425217), (-23.33951, 17.918398, 40.425217), (-22.838636, 20.336832, 39.55768), (-24.877626, 20.336832, 38.308186), (-25.423218, 17.918398, 39.148323), (-25.423218, 17.918398, 39.148323), (-24.877626, 20.336832, 38.308186), (-26.848427, 20.336832, 36.95369), (-27.43724, 17.918398, 37.764122), (-27.43724, 17.918398, 37.764122), (-26.848427, 20.336832, 36.95369), (-28.74564, 20.336832, 35.49791), (-29.37606, 17.918398, 36.276413), (-29.37606, 17.918398, 36.276413), (-28.74564, 20.336832, 35.49791), (-30.564062, 20.336832, 33.944828), (-31.234362, 17.918398, 34.689274), (-31.234362, 17.918398, 34.689274), (-30.564062, 20.336832, 33.944828), (-32.29871, 20.336832, 32.29871), (-33.007053, 17.918398, 33.007053), (-33.007053, 17.918398, 33.007053), (-32.29871, 20.336832, 32.29871), (-33.944828, 20.336832, 30.564062), (-34.689274, 17.918398, 31.234362), (-34.689274, 17.918398, 31.234362), (-33.944828, 20.336832, 30.564062), (-35.49791, 20.336832, 28.74564), (-36.276413, 17.918398, 29.37606), (-36.276413, 17.918398, 29.37606), (-35.49791, 20.336832, 28.74564), (-36.95369, 20.336832, 26.848427), (-37.764122, 17.918398, 27.43724), (-37.764122, 17.918398, 27.43724), (-36.95369, 20.336832, 26.848427), (-38.308186, 20.336832, 24.877626), (-39.148323, 17.918398, 25.423218), (-39.148323, 17.918398, 25.423218), (-38.308186, 20.336832, 24.877626), (-39.55768, 20.336832, 22.838636), (-40.425217, 17.918398, 23.33951), (-40.425217, 17.918398, 23.33951), (-39.55768, 20.336832, 22.838636), (-40.69875, 20.336832, 20.737047), (-41.591312, 17.918398, 21.191832), (-41.591312, 17.918398, 21.191832), (-40.69875, 20.336832, 20.737047), (-41.728264, 20.336832, 18.57862), (-42.64341, 17.918398, 18.986069), (-42.64341, 17.918398, 18.986069), (-41.728264, 20.336832, 18.57862), (-42.64341, 20.336832, 16.36927), (-43.57862, 17.918398, 16.728266), (-43.57862, 17.918398, 16.728266), (-42.64341, 20.336832, 16.36927), (-43.44167, 20.336832, 14.115053), (-44.394386, 17.918398, 14.424611), (-44.394386, 17.918398, 14.424611), (-43.44167, 20.336832, 14.115053), (-44.120857, 20.336832, 11.822148), (-45.08847, 17.918398, 12.08142), (-45.08847, 17.918398, 12.08142), (-44.120857, 20.336832, 11.822148), (-44.679115, 20.336832, 9.496839), (-45.658974, 17.918398, 9.705114), (-45.658974, 17.918398, 9.705114), (-44.679115, 20.336832, 9.496839), (-45.11491, 20.336832, 7.1454997), (-46.104324, 17.918398, 7.302208), (-46.104324, 17.918398, 7.302208), (-45.11491, 20.336832, 7.1454997), (-45.427048, 20.336832, 4.774575), (-46.42331, 17.918398, 4.8792863), (-46.42331, 17.918398, 4.8792863), (-45.427048, 20.336832, 4.774575), (-45.614674, 20.336832, 2.3905637), (-46.615047, 17.918398, 2.4429913), (-46.615047, 17.918398, 2.4429913), (-45.614674, 20.336832, 2.3905637), (-45.677273, 20.336832, 5.5938526e-15), (-46.67902, 17.918398, 5.7165313e-15), (-46.67902, 17.918398, 5.7165313e-15), (-45.677273, 20.336832, 5.5938526e-15), (-45.614674, 20.336832, -2.3905637), (-46.615047, 17.918398, -2.4429913), (-46.615047, 17.918398, -2.4429913), (-45.614674, 20.336832, -2.3905637), (-45.427048, 20.336832, -4.774575), (-46.42331, 17.918398, -4.8792863), (-46.42331, 17.918398, -4.8792863), (-45.427048, 20.336832, -4.774575), (-45.11491, 20.336832, -7.1454997), (-46.104324, 17.918398, -7.302208), (-46.104324, 17.918398, -7.302208), (-45.11491, 20.336832, -7.1454997), (-44.679115, 20.336832, -9.496839), (-45.658974, 17.918398, -9.705114), (-45.658974, 17.918398, -9.705114), (-44.679115, 20.336832, -9.496839), (-44.120857, 20.336832, -11.822148), (-45.08847, 17.918398, -12.08142), (-45.08847, 17.918398, -12.08142), (-44.120857, 20.336832, -11.822148), (-43.44167, 20.336832, -14.115053), (-44.394386, 17.918398, -14.424611), (-44.394386, 17.918398, -14.424611), (-43.44167, 20.336832, -14.115053), (-42.64341, 20.336832, -16.36927), (-43.57862, 17.918398, -16.728266), (-43.57862, 17.918398, -16.728266), (-42.64341, 20.336832, -16.36927), (-41.728264, 20.336832, -18.57862), (-42.64341, 17.918398, -18.986069), (-42.64341, 17.918398, -18.986069), (-41.728264, 20.336832, -18.57862), (-40.69875, 20.336832, -20.737047), (-41.591312, 17.918398, -21.191832), (-41.591312, 17.918398, -21.191832), (-40.69875, 20.336832, -20.737047), (-39.55768, 20.336832, -22.838636), (-40.425217, 17.918398, -23.33951), (-40.425217, 17.918398, -23.33951), (-39.55768, 20.336832, -22.838636), (-38.308186, 20.336832, -24.877626), (-39.148323, 17.918398, -25.423218), (-39.148323, 17.918398, -25.423218), (-38.308186, 20.336832, -24.877626), (-36.95369, 20.336832, -26.848427), (-37.764122, 17.918398, -27.43724), (-37.764122, 17.918398, -27.43724), (-36.95369, 20.336832, -26.848427), (-35.49791, 20.336832, -28.74564), (-36.276413, 17.918398, -29.37606), (-36.276413, 17.918398, -29.37606), (-35.49791, 20.336832, -28.74564), (-33.944828, 20.336832, -30.564062), (-34.689274, 17.918398, -31.234362), (-34.689274, 17.918398, -31.234362), (-33.944828, 20.336832, -30.564062), (-32.29871, 20.336832, -32.29871), (-33.007053, 17.918398, -33.007053), (-33.007053, 17.918398, -33.007053), (-32.29871, 20.336832, -32.29871), (-30.564062, 20.336832, -33.944828), (-31.234362, 17.918398, -34.689274), (-31.234362, 17.918398, -34.689274), (-30.564062, 20.336832, -33.944828), (-28.74564, 20.336832, -35.49791), (-29.37606, 17.918398, -36.276413), (-29.37606, 17.918398, -36.276413), (-28.74564, 20.336832, -35.49791), (-26.848427, 20.336832, -36.95369), (-27.43724, 17.918398, -37.764122), (-27.43724, 17.918398, -37.764122), (-26.848427, 20.336832, -36.95369), (-24.877626, 20.336832, -38.308186), (-25.423218, 17.918398, -39.148323), (-25.423218, 17.918398, -39.148323), (-24.877626, 20.336832, -38.308186), (-22.838636, 20.336832, -39.55768), (-23.33951, 17.918398, -40.425217), (-23.33951, 17.918398, -40.425217), (-22.838636, 20.336832, -39.55768), (-20.737047, 20.336832, -40.69875), (-21.191832, 17.918398, -41.591312), (-21.191832, 17.918398, -41.591312), (-20.737047, 20.336832, -40.69875), (-18.57862, 20.336832, -41.728264), (-18.986069, 17.918398, -42.64341), (-18.986069, 17.918398, -42.64341), (-18.57862, 20.336832, -41.728264), (-16.36927, 20.336832, -42.64341), (-16.728266, 17.918398, -43.57862), (-16.728266, 17.918398, -43.57862), (-16.36927, 20.336832, -42.64341), (-14.115053, 20.336832, -43.44167), (-14.424611, 17.918398, -44.394386), (-14.424611, 17.918398, -44.394386), (-14.115053, 20.336832, -43.44167), (-11.822148, 20.336832, -44.120857), (-12.08142, 17.918398, -45.08847), (-12.08142, 17.918398, -45.08847), (-11.822148, 20.336832, -44.120857), (-9.496839, 20.336832, -44.679115), (-9.705114, 17.918398, -45.658974), (-9.705114, 17.918398, -45.658974), (-9.496839, 20.336832, -44.679115), (-7.1454997, 20.336832, -45.11491), (-7.302208, 17.918398, -46.104324), (-7.302208, 17.918398, -46.104324), (-7.1454997, 20.336832, -45.11491), (-4.774575, 20.336832, -45.427048), (-4.8792863, 17.918398, -46.42331), (-4.8792863, 17.918398, -46.42331), (-4.774575, 20.336832, -45.427048), (-2.3905637, 20.336832, -45.614674), (-2.4429913, 17.918398, -46.615047), (-2.4429913, 17.918398, -46.615047), (-2.3905637, 20.336832, -45.614674), (-8.390779e-15, 20.336832, -45.677273), (-8.5747974e-15, 17.918398, -46.67902), (-8.5747974e-15, 17.918398, -46.67902), (-8.390779e-15, 20.336832, -45.677273), (2.3905637, 20.336832, -45.614674), (2.4429913, 17.918398, -46.615047), (2.4429913, 17.918398, -46.615047), (2.3905637, 20.336832, -45.614674), (4.774575, 20.336832, -45.427048), (4.8792863, 17.918398, -46.42331), (4.8792863, 17.918398, -46.42331), (4.774575, 20.336832, -45.427048), (7.1454997, 20.336832, -45.11491), (7.302208, 17.918398, -46.104324), (7.302208, 17.918398, -46.104324), (7.1454997, 20.336832, -45.11491), (9.496839, 20.336832, -44.679115), (9.705114, 17.918398, -45.658974), (9.705114, 17.918398, -45.658974), (9.496839, 20.336832, -44.679115), (11.822148, 20.336832, -44.120857), (12.08142, 17.918398, -45.08847), (12.08142, 17.918398, -45.08847), (11.822148, 20.336832, -44.120857), (14.115053, 20.336832, -43.44167), (14.424611, 17.918398, -44.394386), (14.424611, 17.918398, -44.394386), (14.115053, 20.336832, -43.44167), (16.36927, 20.336832, -42.64341), (16.728266, 17.918398, -43.57862), (16.728266, 17.918398, -43.57862), (16.36927, 20.336832, -42.64341), (18.57862, 20.336832, -41.728264), (18.986069, 17.918398, -42.64341), (18.986069, 17.918398, -42.64341), (18.57862, 20.336832, -41.728264), (20.737047, 20.336832, -40.69875), (21.191832, 17.918398, -41.591312), (21.191832, 17.918398, -41.591312), (20.737047, 20.336832, -40.69875), (22.838636, 20.336832, -39.55768), (23.33951, 17.918398, -40.425217), (23.33951, 17.918398, -40.425217), (22.838636, 20.336832, -39.55768), (24.877626, 20.336832, -38.308186), (25.423218, 17.918398, -39.148323), (25.423218, 17.918398, -39.148323), (24.877626, 20.336832, -38.308186), (26.848427, 20.336832, -36.95369), (27.43724, 17.918398, -37.764122), (27.43724, 17.918398, -37.764122), (26.848427, 20.336832, -36.95369), (28.74564, 20.336832, -35.49791), (29.37606, 17.918398, -36.276413), (29.37606, 17.918398, -36.276413), (28.74564, 20.336832, -35.49791), (30.564062, 20.336832, -33.944828), (31.234362, 17.918398, -34.689274), (31.234362, 17.918398, -34.689274), (30.564062, 20.336832, -33.944828), (32.29871, 20.336832, -32.29871), (33.007053, 17.918398, -33.007053), (33.007053, 17.918398, -33.007053), (32.29871, 20.336832, -32.29871), (33.944828, 20.336832, -30.564062), (34.689274, 17.918398, -31.234362), (34.689274, 17.918398, -31.234362), (33.944828, 20.336832, -30.564062), (35.49791, 20.336832, -28.74564), (36.276413, 17.918398, -29.37606), (36.276413, 17.918398, -29.37606), (35.49791, 20.336832, -28.74564), (36.95369, 20.336832, -26.848427), (37.764122, 17.918398, -27.43724), (37.764122, 17.918398, -27.43724), (36.95369, 20.336832, -26.848427), (38.308186, 20.336832, -24.877626), (39.148323, 17.918398, -25.423218), (39.148323, 17.918398, -25.423218), (38.308186, 20.336832, -24.877626), (39.55768, 20.336832, -22.838636), (40.425217, 17.918398, -23.33951), (40.425217, 17.918398, -23.33951), (39.55768, 20.336832, -22.838636), (40.69875, 20.336832, -20.737047), (41.591312, 17.918398, -21.191832), (41.591312, 17.918398, -21.191832), (40.69875, 20.336832, -20.737047), (41.728264, 20.336832, -18.57862), (42.64341, 17.918398, -18.986069), (42.64341, 17.918398, -18.986069), (41.728264, 20.336832, -18.57862), (42.64341, 20.336832, -16.36927), (43.57862, 17.918398, -16.728266), (43.57862, 17.918398, -16.728266), (42.64341, 20.336832, -16.36927), (43.44167, 20.336832, -14.115053), (44.394386, 17.918398, -14.424611), (44.394386, 17.918398, -14.424611), (43.44167, 20.336832, -14.115053), (44.120857, 20.336832, -11.822148), (45.08847, 17.918398, -12.08142), (45.08847, 17.918398, -12.08142), (44.120857, 20.336832, -11.822148), (44.679115, 20.336832, -9.496839), (45.658974, 17.918398, -9.705114), (45.658974, 17.918398, -9.705114), (44.679115, 20.336832, -9.496839), (45.11491, 20.336832, -7.1454997), (46.104324, 17.918398, -7.302208), (46.104324, 17.918398, -7.302208), (45.11491, 20.336832, -7.1454997), (45.427048, 20.336832, -4.774575), (46.42331, 17.918398, -4.8792863), (46.42331, 17.918398, -4.8792863), (45.427048, 20.336832, -4.774575), (45.614674, 20.336832, -2.3905637), (46.615047, 17.918398, -2.4429913), (46.615047, 17.918398, -2.4429913), (45.614674, 20.336832, -2.3905637), (45.677273, 20.336832, 0), (46.67902, 17.918398, 0), (45.677273, 20.336832, 0), (44.550327, 22.699526, 0), (44.489273, 22.699526, 2.331584), (45.614674, 20.336832, 2.3905637), (45.614674, 20.336832, 2.3905637), (44.489273, 22.699526, 2.331584), (44.306274, 22.699526, 4.656777), (45.427048, 20.336832, 4.774575), (45.427048, 20.336832, 4.774575), (44.306274, 22.699526, 4.656777), (44.00184, 22.699526, 6.9692063), (45.11491, 20.336832, 7.1454997), (45.11491, 20.336832, 7.1454997), (44.00184, 22.699526, 6.9692063), (43.576794, 22.699526, 9.262533), (44.679115, 20.336832, 9.496839), (44.679115, 20.336832, 9.496839), (43.576794, 22.699526, 9.262533), (43.03231, 22.699526, 11.530473), (44.120857, 20.336832, 11.822148), (44.120857, 20.336832, 11.822148), (43.03231, 22.699526, 11.530473), (42.369877, 22.699526, 13.766808), (43.44167, 20.336832, 14.115053), (43.44167, 20.336832, 14.115053), (42.369877, 22.699526, 13.766808), (41.591312, 22.699526, 15.965409), (42.64341, 20.336832, 16.36927), (42.64341, 20.336832, 16.36927), (41.591312, 22.699526, 15.965409), (40.69875, 22.699526, 18.12025), (41.728264, 20.336832, 18.57862), (41.728264, 20.336832, 18.57862), (40.69875, 22.699526, 18.12025), (39.69463, 22.699526, 20.225426), (40.69875, 20.336832, 20.737047), (40.69875, 20.336832, 20.737047), (39.69463, 22.699526, 20.225426), (38.581715, 22.699526, 22.275164), (39.55768, 20.336832, 22.838636), (39.55768, 20.336832, 22.838636), (38.581715, 22.699526, 22.275164), (37.36305, 22.699526, 24.263847), (38.308186, 20.336832, 24.877626), (38.308186, 20.336832, 24.877626), (37.36305, 22.699526, 24.263847), (36.04197, 22.699526, 26.186026), (36.95369, 20.336832, 26.848427), (36.95369, 20.336832, 26.848427), (36.04197, 22.699526, 26.186026), (34.622105, 22.699526, 28.036428), (35.49791, 20.336832, 28.74564), (35.49791, 20.336832, 28.74564), (34.622105, 22.699526, 28.036428), (33.107346, 22.699526, 29.809986), (33.944828, 20.336832, 30.564062), (33.944828, 20.336832, 30.564062), (33.107346, 22.699526, 29.809986), (31.501839, 22.699526, 31.501839), (32.29871, 20.336832, 32.29871), (32.29871, 20.336832, 32.29871), (31.501839, 22.699526, 31.501839), (29.809986, 22.699526, 33.107346), (30.564062, 20.336832, 33.944828), (30.564062, 20.336832, 33.944828), (29.809986, 22.699526, 33.107346), (28.036428, 22.699526, 34.622105), (28.74564, 20.336832, 35.49791), (28.74564, 20.336832, 35.49791), (28.036428, 22.699526, 34.622105), (26.186026, 22.699526, 36.04197), (26.848427, 20.336832, 36.95369), (26.848427, 20.336832, 36.95369), (26.186026, 22.699526, 36.04197), (24.263847, 22.699526, 37.36305), (24.877626, 20.336832, 38.308186), (24.877626, 20.336832, 38.308186), (24.263847, 22.699526, 37.36305), (22.275164, 22.699526, 38.581715), (22.838636, 20.336832, 39.55768), (22.838636, 20.336832, 39.55768), (22.275164, 22.699526, 38.581715), (20.225426, 22.699526, 39.69463), (20.737047, 20.336832, 40.69875), (20.737047, 20.336832, 40.69875), (20.225426, 22.699526, 39.69463), (18.12025, 22.699526, 40.69875), (18.57862, 20.336832, 41.728264), (18.57862, 20.336832, 41.728264), (18.12025, 22.699526, 40.69875), (15.965409, 22.699526, 41.591312), (16.36927, 20.336832, 42.64341), (16.36927, 20.336832, 42.64341), (15.965409, 22.699526, 41.591312), (13.766808, 22.699526, 42.369877), (14.115053, 20.336832, 43.44167), (14.115053, 20.336832, 43.44167), (13.766808, 22.699526, 42.369877), (11.530473, 22.699526, 43.03231), (11.822148, 20.336832, 44.120857), (11.822148, 20.336832, 44.120857), (11.530473, 22.699526, 43.03231), (9.262533, 22.699526, 43.576794), (9.496839, 20.336832, 44.679115), (9.496839, 20.336832, 44.679115), (9.262533, 22.699526, 43.576794), (6.9692063, 22.699526, 44.00184), (7.1454997, 20.336832, 45.11491), (7.1454997, 20.336832, 45.11491), (6.9692063, 22.699526, 44.00184), (4.656777, 22.699526, 44.306274), (4.774575, 20.336832, 45.427048), (4.774575, 20.336832, 45.427048), (4.656777, 22.699526, 44.306274), (2.331584, 22.699526, 44.489273), (2.3905637, 20.336832, 45.614674), (2.3905637, 20.336832, 45.614674), (2.331584, 22.699526, 44.489273), (2.7279206e-15, 22.699526, 44.550327), (2.7969263e-15, 20.336832, 45.677273), (2.7969263e-15, 20.336832, 45.677273), (2.7279206e-15, 22.699526, 44.550327), (-2.331584, 22.699526, 44.489273), (-2.3905637, 20.336832, 45.614674), (-2.3905637, 20.336832, 45.614674), (-2.331584, 22.699526, 44.489273), (-4.656777, 22.699526, 44.306274), (-4.774575, 20.336832, 45.427048), (-4.774575, 20.336832, 45.427048), (-4.656777, 22.699526, 44.306274), (-6.9692063, 22.699526, 44.00184), (-7.1454997, 20.336832, 45.11491), (-7.1454997, 20.336832, 45.11491), (-6.9692063, 22.699526, 44.00184), (-9.262533, 22.699526, 43.576794), (-9.496839, 20.336832, 44.679115), (-9.496839, 20.336832, 44.679115), (-9.262533, 22.699526, 43.576794), (-11.530473, 22.699526, 43.03231), (-11.822148, 20.336832, 44.120857), (-11.822148, 20.336832, 44.120857), (-11.530473, 22.699526, 43.03231), (-13.766808, 22.699526, 42.369877), (-14.115053, 20.336832, 43.44167), (-14.115053, 20.336832, 43.44167), (-13.766808, 22.699526, 42.369877), (-15.965409, 22.699526, 41.591312), (-16.36927, 20.336832, 42.64341), (-16.36927, 20.336832, 42.64341), (-15.965409, 22.699526, 41.591312), (-18.12025, 22.699526, 40.69875), (-18.57862, 20.336832, 41.728264), (-18.57862, 20.336832, 41.728264), (-18.12025, 22.699526, 40.69875), (-20.225426, 22.699526, 39.69463), (-20.737047, 20.336832, 40.69875), (-20.737047, 20.336832, 40.69875), (-20.225426, 22.699526, 39.69463), (-22.275164, 22.699526, 38.581715), (-22.838636, 20.336832, 39.55768), (-22.838636, 20.336832, 39.55768), (-22.275164, 22.699526, 38.581715), (-24.263847, 22.699526, 37.36305), (-24.877626, 20.336832, 38.308186), (-24.877626, 20.336832, 38.308186), (-24.263847, 22.699526, 37.36305), (-26.186026, 22.699526, 36.04197), (-26.848427, 20.336832, 36.95369), (-26.848427, 20.336832, 36.95369), (-26.186026, 22.699526, 36.04197), (-28.036428, 22.699526, 34.622105), (-28.74564, 20.336832, 35.49791), (-28.74564, 20.336832, 35.49791), (-28.036428, 22.699526, 34.622105), (-29.809986, 22.699526, 33.107346), (-30.564062, 20.336832, 33.944828), (-30.564062, 20.336832, 33.944828), (-29.809986, 22.699526, 33.107346), (-31.501839, 22.699526, 31.501839), (-32.29871, 20.336832, 32.29871), (-32.29871, 20.336832, 32.29871), (-31.501839, 22.699526, 31.501839), (-33.107346, 22.699526, 29.809986), (-33.944828, 20.336832, 30.564062), (-33.944828, 20.336832, 30.564062), (-33.107346, 22.699526, 29.809986), (-34.622105, 22.699526, 28.036428), (-35.49791, 20.336832, 28.74564), (-35.49791, 20.336832, 28.74564), (-34.622105, 22.699526, 28.036428), (-36.04197, 22.699526, 26.186026), (-36.95369, 20.336832, 26.848427), (-36.95369, 20.336832, 26.848427), (-36.04197, 22.699526, 26.186026), (-37.36305, 22.699526, 24.263847), (-38.308186, 20.336832, 24.877626), (-38.308186, 20.336832, 24.877626), (-37.36305, 22.699526, 24.263847), (-38.581715, 22.699526, 22.275164), (-39.55768, 20.336832, 22.838636), (-39.55768, 20.336832, 22.838636), (-38.581715, 22.699526, 22.275164), (-39.69463, 22.699526, 20.225426), (-40.69875, 20.336832, 20.737047), (-40.69875, 20.336832, 20.737047), (-39.69463, 22.699526, 20.225426), (-40.69875, 22.699526, 18.12025), (-41.728264, 20.336832, 18.57862), (-41.728264, 20.336832, 18.57862), (-40.69875, 22.699526, 18.12025), (-41.591312, 22.699526, 15.965409), (-42.64341, 20.336832, 16.36927), (-42.64341, 20.336832, 16.36927), (-41.591312, 22.699526, 15.965409), (-42.369877, 22.699526, 13.766808), (-43.44167, 20.336832, 14.115053), (-43.44167, 20.336832, 14.115053), (-42.369877, 22.699526, 13.766808), (-43.03231, 22.699526, 11.530473), (-44.120857, 20.336832, 11.822148), (-44.120857, 20.336832, 11.822148), (-43.03231, 22.699526, 11.530473), (-43.576794, 22.699526, 9.262533), (-44.679115, 20.336832, 9.496839), (-44.679115, 20.336832, 9.496839), (-43.576794, 22.699526, 9.262533), (-44.00184, 22.699526, 6.9692063), (-45.11491, 20.336832, 7.1454997), (-45.11491, 20.336832, 7.1454997), (-44.00184, 22.699526, 6.9692063), (-44.306274, 22.699526, 4.656777), (-45.427048, 20.336832, 4.774575), (-45.427048, 20.336832, 4.774575), (-44.306274, 22.699526, 4.656777), (-44.489273, 22.699526, 2.331584), (-45.614674, 20.336832, 2.3905637), (-45.614674, 20.336832, 2.3905637), (-44.489273, 22.699526, 2.331584), (-44.550327, 22.699526, 5.4558413e-15), (-45.677273, 20.336832, 5.5938526e-15), (-45.677273, 20.336832, 5.5938526e-15), (-44.550327, 22.699526, 5.4558413e-15), (-44.489273, 22.699526, -2.331584), (-45.614674, 20.336832, -2.3905637), (-45.614674, 20.336832, -2.3905637), (-44.489273, 22.699526, -2.331584), (-44.306274, 22.699526, -4.656777), (-45.427048, 20.336832, -4.774575), (-45.427048, 20.336832, -4.774575), (-44.306274, 22.699526, -4.656777), (-44.00184, 22.699526, -6.9692063), (-45.11491, 20.336832, -7.1454997), (-45.11491, 20.336832, -7.1454997), (-44.00184, 22.699526, -6.9692063), (-43.576794, 22.699526, -9.262533), (-44.679115, 20.336832, -9.496839), (-44.679115, 20.336832, -9.496839), (-43.576794, 22.699526, -9.262533), (-43.03231, 22.699526, -11.530473), (-44.120857, 20.336832, -11.822148), (-44.120857, 20.336832, -11.822148), (-43.03231, 22.699526, -11.530473), (-42.369877, 22.699526, -13.766808), (-43.44167, 20.336832, -14.115053), (-43.44167, 20.336832, -14.115053), (-42.369877, 22.699526, -13.766808), (-41.591312, 22.699526, -15.965409), (-42.64341, 20.336832, -16.36927), (-42.64341, 20.336832, -16.36927), (-41.591312, 22.699526, -15.965409), (-40.69875, 22.699526, -18.12025), (-41.728264, 20.336832, -18.57862), (-41.728264, 20.336832, -18.57862), (-40.69875, 22.699526, -18.12025), (-39.69463, 22.699526, -20.225426), (-40.69875, 20.336832, -20.737047), (-40.69875, 20.336832, -20.737047), (-39.69463, 22.699526, -20.225426), (-38.581715, 22.699526, -22.275164), (-39.55768, 20.336832, -22.838636), (-39.55768, 20.336832, -22.838636), (-38.581715, 22.699526, -22.275164), (-37.36305, 22.699526, -24.263847), (-38.308186, 20.336832, -24.877626), (-38.308186, 20.336832, -24.877626), (-37.36305, 22.699526, -24.263847), (-36.04197, 22.699526, -26.186026), (-36.95369, 20.336832, -26.848427), (-36.95369, 20.336832, -26.848427), (-36.04197, 22.699526, -26.186026), (-34.622105, 22.699526, -28.036428), (-35.49791, 20.336832, -28.74564), (-35.49791, 20.336832, -28.74564), (-34.622105, 22.699526, -28.036428), (-33.107346, 22.699526, -29.809986), (-33.944828, 20.336832, -30.564062), (-33.944828, 20.336832, -30.564062), (-33.107346, 22.699526, -29.809986), (-31.501839, 22.699526, -31.501839), (-32.29871, 20.336832, -32.29871), (-32.29871, 20.336832, -32.29871), (-31.501839, 22.699526, -31.501839), (-29.809986, 22.699526, -33.107346), (-30.564062, 20.336832, -33.944828), (-30.564062, 20.336832, -33.944828), (-29.809986, 22.699526, -33.107346), (-28.036428, 22.699526, -34.622105), (-28.74564, 20.336832, -35.49791), (-28.74564, 20.336832, -35.49791), (-28.036428, 22.699526, -34.622105), (-26.186026, 22.699526, -36.04197), (-26.848427, 20.336832, -36.95369), (-26.848427, 20.336832, -36.95369), (-26.186026, 22.699526, -36.04197), (-24.263847, 22.699526, -37.36305), (-24.877626, 20.336832, -38.308186), (-24.877626, 20.336832, -38.308186), (-24.263847, 22.699526, -37.36305), (-22.275164, 22.699526, -38.581715), (-22.838636, 20.336832, -39.55768), (-22.838636, 20.336832, -39.55768), (-22.275164, 22.699526, -38.581715), (-20.225426, 22.699526, -39.69463), (-20.737047, 20.336832, -40.69875), (-20.737047, 20.336832, -40.69875), (-20.225426, 22.699526, -39.69463), (-18.12025, 22.699526, -40.69875), (-18.57862, 20.336832, -41.728264), (-18.57862, 20.336832, -41.728264), (-18.12025, 22.699526, -40.69875), (-15.965409, 22.699526, -41.591312), (-16.36927, 20.336832, -42.64341), (-16.36927, 20.336832, -42.64341), (-15.965409, 22.699526, -41.591312), (-13.766808, 22.699526, -42.369877), (-14.115053, 20.336832, -43.44167), (-14.115053, 20.336832, -43.44167), (-13.766808, 22.699526, -42.369877), (-11.530473, 22.699526, -43.03231), (-11.822148, 20.336832, -44.120857), (-11.822148, 20.336832, -44.120857), (-11.530473, 22.699526, -43.03231), (-9.262533, 22.699526, -43.576794), (-9.496839, 20.336832, -44.679115), (-9.496839, 20.336832, -44.679115), (-9.262533, 22.699526, -43.576794), (-6.9692063, 22.699526, -44.00184), (-7.1454997, 20.336832, -45.11491), (-7.1454997, 20.336832, -45.11491), (-6.9692063, 22.699526, -44.00184), (-4.656777, 22.699526, -44.306274), (-4.774575, 20.336832, -45.427048), (-4.774575, 20.336832, -45.427048), (-4.656777, 22.699526, -44.306274), (-2.331584, 22.699526, -44.489273), (-2.3905637, 20.336832, -45.614674), (-2.3905637, 20.336832, -45.614674), (-2.331584, 22.699526, -44.489273), (-8.183762e-15, 22.699526, -44.550327), (-8.390779e-15, 20.336832, -45.677273), (-8.390779e-15, 20.336832, -45.677273), (-8.183762e-15, 22.699526, -44.550327), (2.331584, 22.699526, -44.489273), (2.3905637, 20.336832, -45.614674), (2.3905637, 20.336832, -45.614674), (2.331584, 22.699526, -44.489273), (4.656777, 22.699526, -44.306274), (4.774575, 20.336832, -45.427048), (4.774575, 20.336832, -45.427048), (4.656777, 22.699526, -44.306274), (6.9692063, 22.699526, -44.00184), (7.1454997, 20.336832, -45.11491), (7.1454997, 20.336832, -45.11491), (6.9692063, 22.699526, -44.00184), (9.262533, 22.699526, -43.576794), (9.496839, 20.336832, -44.679115), (9.496839, 20.336832, -44.679115), (9.262533, 22.699526, -43.576794), (11.530473, 22.699526, -43.03231), (11.822148, 20.336832, -44.120857), (11.822148, 20.336832, -44.120857), (11.530473, 22.699526, -43.03231), (13.766808, 22.699526, -42.369877), (14.115053, 20.336832, -43.44167), (14.115053, 20.336832, -43.44167), (13.766808, 22.699526, -42.369877), (15.965409, 22.699526, -41.591312), (16.36927, 20.336832, -42.64341), (16.36927, 20.336832, -42.64341), (15.965409, 22.699526, -41.591312), (18.12025, 22.699526, -40.69875), (18.57862, 20.336832, -41.728264), (18.57862, 20.336832, -41.728264), (18.12025, 22.699526, -40.69875), (20.225426, 22.699526, -39.69463), (20.737047, 20.336832, -40.69875), (20.737047, 20.336832, -40.69875), (20.225426, 22.699526, -39.69463), (22.275164, 22.699526, -38.581715), (22.838636, 20.336832, -39.55768), (22.838636, 20.336832, -39.55768), (22.275164, 22.699526, -38.581715), (24.263847, 22.699526, -37.36305), (24.877626, 20.336832, -38.308186), (24.877626, 20.336832, -38.308186), (24.263847, 22.699526, -37.36305), (26.186026, 22.699526, -36.04197), (26.848427, 20.336832, -36.95369), (26.848427, 20.336832, -36.95369), (26.186026, 22.699526, -36.04197), (28.036428, 22.699526, -34.622105), (28.74564, 20.336832, -35.49791), (28.74564, 20.336832, -35.49791), (28.036428, 22.699526, -34.622105), (29.809986, 22.699526, -33.107346), (30.564062, 20.336832, -33.944828), (30.564062, 20.336832, -33.944828), (29.809986, 22.699526, -33.107346), (31.501839, 22.699526, -31.501839), (32.29871, 20.336832, -32.29871), (32.29871, 20.336832, -32.29871), (31.501839, 22.699526, -31.501839), (33.107346, 22.699526, -29.809986), (33.944828, 20.336832, -30.564062), (33.944828, 20.336832, -30.564062), (33.107346, 22.699526, -29.809986), (34.622105, 22.699526, -28.036428), (35.49791, 20.336832, -28.74564), (35.49791, 20.336832, -28.74564), (34.622105, 22.699526, -28.036428), (36.04197, 22.699526, -26.186026), (36.95369, 20.336832, -26.848427), (36.95369, 20.336832, -26.848427), (36.04197, 22.699526, -26.186026), (37.36305, 22.699526, -24.263847), (38.308186, 20.336832, -24.877626), (38.308186, 20.336832, -24.877626), (37.36305, 22.699526, -24.263847), (38.581715, 22.699526, -22.275164), (39.55768, 20.336832, -22.838636), (39.55768, 20.336832, -22.838636), (38.581715, 22.699526, -22.275164), (39.69463, 22.699526, -20.225426), (40.69875, 20.336832, -20.737047), (40.69875, 20.336832, -20.737047), (39.69463, 22.699526, -20.225426), (40.69875, 22.699526, -18.12025), (41.728264, 20.336832, -18.57862), (41.728264, 20.336832, -18.57862), (40.69875, 22.699526, -18.12025), (41.591312, 22.699526, -15.965409), (42.64341, 20.336832, -16.36927), (42.64341, 20.336832, -16.36927), (41.591312, 22.699526, -15.965409), (42.369877, 22.699526, -13.766808), (43.44167, 20.336832, -14.115053), (43.44167, 20.336832, -14.115053), (42.369877, 22.699526, -13.766808), (43.03231, 22.699526, -11.530473), (44.120857, 20.336832, -11.822148), (44.120857, 20.336832, -11.822148), (43.03231, 22.699526, -11.530473), (43.576794, 22.699526, -9.262533), (44.679115, 20.336832, -9.496839), (44.679115, 20.336832, -9.496839), (43.576794, 22.699526, -9.262533), (44.00184, 22.699526, -6.9692063), (45.11491, 20.336832, -7.1454997), (45.11491, 20.336832, -7.1454997), (44.00184, 22.699526, -6.9692063), (44.306274, 22.699526, -4.656777), (45.427048, 20.336832, -4.774575), (45.427048, 20.336832, -4.774575), (44.306274, 22.699526, -4.656777), (44.489273, 22.699526, -2.331584), (45.614674, 20.336832, -2.3905637), (45.614674, 20.336832, -2.3905637), (44.489273, 22.699526, -2.331584), (44.550327, 22.699526, 0), (45.677273, 20.336832, 0), (44.550327, 22.699526, 0), (43.30127, 25, 0), (43.24193, 25, 2.2662134), (44.489273, 22.699526, 2.331584), (44.489273, 22.699526, 2.331584), (43.24193, 25, 2.2662134), (43.06406, 25, 4.526215), (44.306274, 22.699526, 4.656777), (44.306274, 22.699526, 4.656777), (43.06406, 25, 4.526215), (42.768158, 25, 6.773811), (44.00184, 22.699526, 6.9692063), (44.00184, 22.699526, 6.9692063), (42.768158, 25, 6.773811), (42.355034, 25, 9.00284), (43.576794, 22.699526, 9.262533), (43.576794, 22.699526, 9.262533), (42.355034, 25, 9.00284), (41.825813, 25, 11.207193), (43.03231, 22.699526, 11.530473), (43.03231, 22.699526, 11.530473), (41.825813, 25, 11.207193), (41.181953, 25, 13.380828), (42.369877, 22.699526, 13.766808), (42.369877, 22.699526, 13.766808), (41.181953, 25, 13.380828), (40.425217, 25, 15.517787), (41.591312, 22.699526, 15.965409), (41.591312, 22.699526, 15.965409), (40.425217, 25, 15.517787), (39.55768, 25, 17.612213), (40.69875, 22.699526, 18.12025), (40.69875, 22.699526, 18.12025), (39.55768, 25, 17.612213), (38.581715, 25, 19.658365), (39.69463, 22.699526, 20.225426), (39.69463, 22.699526, 20.225426), (38.581715, 25, 19.658365), (37.5, 25, 21.650635), (38.581715, 22.699526, 22.275164), (38.581715, 22.699526, 22.275164), (37.5, 25, 21.650635), (36.315502, 25, 23.583563), (37.36305, 22.699526, 24.263847), (37.36305, 22.699526, 24.263847), (36.315502, 25, 23.583563), (35.031464, 25, 25.451847), (36.04197, 22.699526, 26.186026), (36.04197, 22.699526, 26.186026), (35.031464, 25, 25.451847), (33.65141, 25, 27.250372), (34.622105, 22.699526, 28.036428), (34.622105, 22.699526, 28.036428), (33.65141, 25, 27.250372), (32.179115, 25, 28.974205), (33.107346, 22.699526, 29.809986), (33.107346, 22.699526, 29.809986), (32.179115, 25, 28.974205), (30.618622, 25, 30.618622), (31.501839, 22.699526, 31.501839), (31.501839, 22.699526, 31.501839), (30.618622, 25, 30.618622), (28.974205, 25, 32.179115), (29.809986, 22.699526, 33.107346), (29.809986, 22.699526, 33.107346), (28.974205, 25, 32.179115), (27.250372, 25, 33.65141), (28.036428, 22.699526, 34.622105), (28.036428, 22.699526, 34.622105), (27.250372, 25, 33.65141), (25.451847, 25, 35.031464), (26.186026, 22.699526, 36.04197), (26.186026, 22.699526, 36.04197), (25.451847, 25, 35.031464), (23.583563, 25, 36.315502), (24.263847, 22.699526, 37.36305), (24.263847, 22.699526, 37.36305), (23.583563, 25, 36.315502), (21.650635, 25, 37.5), (22.275164, 22.699526, 38.581715), (22.275164, 22.699526, 38.581715), (21.650635, 25, 37.5), (19.658365, 25, 38.581715), (20.225426, 22.699526, 39.69463), (20.225426, 22.699526, 39.69463), (19.658365, 25, 38.581715), (17.612213, 25, 39.55768), (18.12025, 22.699526, 40.69875), (18.12025, 22.699526, 40.69875), (17.612213, 25, 39.55768), (15.517787, 25, 40.425217), (15.965409, 22.699526, 41.591312), (15.965409, 22.699526, 41.591312), (15.517787, 25, 40.425217), (13.380828, 25, 41.181953), (13.766808, 22.699526, 42.369877), (13.766808, 22.699526, 42.369877), (13.380828, 25, 41.181953), (11.207193, 25, 41.825813), (11.530473, 22.699526, 43.03231), (11.530473, 22.699526, 43.03231), (11.207193, 25, 41.825813), (9.00284, 25, 42.355034), (9.262533, 22.699526, 43.576794), (9.262533, 22.699526, 43.576794), (9.00284, 25, 42.355034), (6.773811, 25, 42.768158), (6.9692063, 22.699526, 44.00184), (6.9692063, 22.699526, 44.00184), (6.773811, 25, 42.768158), (4.526215, 25, 43.06406), (4.656777, 22.699526, 44.306274), (4.656777, 22.699526, 44.306274), (4.526215, 25, 43.06406), (2.2662134, 25, 43.24193), (2.331584, 22.699526, 44.489273), (2.331584, 22.699526, 44.489273), (2.2662134, 25, 43.24193), (2.651438e-15, 25, 43.30127), (2.7279206e-15, 22.699526, 44.550327), (2.7279206e-15, 22.699526, 44.550327), (2.651438e-15, 25, 43.30127), (-2.2662134, 25, 43.24193), (-2.331584, 22.699526, 44.489273), (-2.331584, 22.699526, 44.489273), (-2.2662134, 25, 43.24193), (-4.526215, 25, 43.06406), (-4.656777, 22.699526, 44.306274), (-4.656777, 22.699526, 44.306274), (-4.526215, 25, 43.06406), (-6.773811, 25, 42.768158), (-6.9692063, 22.699526, 44.00184), (-6.9692063, 22.699526, 44.00184), (-6.773811, 25, 42.768158), (-9.00284, 25, 42.355034), (-9.262533, 22.699526, 43.576794), (-9.262533, 22.699526, 43.576794), (-9.00284, 25, 42.355034), (-11.207193, 25, 41.825813), (-11.530473, 22.699526, 43.03231), (-11.530473, 22.699526, 43.03231), (-11.207193, 25, 41.825813), (-13.380828, 25, 41.181953), (-13.766808, 22.699526, 42.369877), (-13.766808, 22.699526, 42.369877), (-13.380828, 25, 41.181953), (-15.517787, 25, 40.425217), (-15.965409, 22.699526, 41.591312), (-15.965409, 22.699526, 41.591312), (-15.517787, 25, 40.425217), (-17.612213, 25, 39.55768), (-18.12025, 22.699526, 40.69875), (-18.12025, 22.699526, 40.69875), (-17.612213, 25, 39.55768), (-19.658365, 25, 38.581715), (-20.225426, 22.699526, 39.69463), (-20.225426, 22.699526, 39.69463), (-19.658365, 25, 38.581715), (-21.650635, 25, 37.5), (-22.275164, 22.699526, 38.581715), (-22.275164, 22.699526, 38.581715), (-21.650635, 25, 37.5), (-23.583563, 25, 36.315502), (-24.263847, 22.699526, 37.36305), (-24.263847, 22.699526, 37.36305), (-23.583563, 25, 36.315502), (-25.451847, 25, 35.031464), (-26.186026, 22.699526, 36.04197), (-26.186026, 22.699526, 36.04197), (-25.451847, 25, 35.031464), (-27.250372, 25, 33.65141), (-28.036428, 22.699526, 34.622105), (-28.036428, 22.699526, 34.622105), (-27.250372, 25, 33.65141), (-28.974205, 25, 32.179115), (-29.809986, 22.699526, 33.107346), (-29.809986, 22.699526, 33.107346), (-28.974205, 25, 32.179115), (-30.618622, 25, 30.618622), (-31.501839, 22.699526, 31.501839), (-31.501839, 22.699526, 31.501839), (-30.618622, 25, 30.618622), (-32.179115, 25, 28.974205), (-33.107346, 22.699526, 29.809986), (-33.107346, 22.699526, 29.809986), (-32.179115, 25, 28.974205), (-33.65141, 25, 27.250372), (-34.622105, 22.699526, 28.036428), (-34.622105, 22.699526, 28.036428), (-33.65141, 25, 27.250372), (-35.031464, 25, 25.451847), (-36.04197, 22.699526, 26.186026), (-36.04197, 22.699526, 26.186026), (-35.031464, 25, 25.451847), (-36.315502, 25, 23.583563), (-37.36305, 22.699526, 24.263847), (-37.36305, 22.699526, 24.263847), (-36.315502, 25, 23.583563), (-37.5, 25, 21.650635), (-38.581715, 22.699526, 22.275164), (-38.581715, 22.699526, 22.275164), (-37.5, 25, 21.650635), (-38.581715, 25, 19.658365), (-39.69463, 22.699526, 20.225426), (-39.69463, 22.699526, 20.225426), (-38.581715, 25, 19.658365), (-39.55768, 25, 17.612213), (-40.69875, 22.699526, 18.12025), (-40.69875, 22.699526, 18.12025), (-39.55768, 25, 17.612213), (-40.425217, 25, 15.517787), (-41.591312, 22.699526, 15.965409), (-41.591312, 22.699526, 15.965409), (-40.425217, 25, 15.517787), (-41.181953, 25, 13.380828), (-42.369877, 22.699526, 13.766808), (-42.369877, 22.699526, 13.766808), (-41.181953, 25, 13.380828), (-41.825813, 25, 11.207193), (-43.03231, 22.699526, 11.530473), (-43.03231, 22.699526, 11.530473), (-41.825813, 25, 11.207193), (-42.355034, 25, 9.00284), (-43.576794, 22.699526, 9.262533), (-43.576794, 22.699526, 9.262533), (-42.355034, 25, 9.00284), (-42.768158, 25, 6.773811), (-44.00184, 22.699526, 6.9692063), (-44.00184, 22.699526, 6.9692063), (-42.768158, 25, 6.773811), (-43.06406, 25, 4.526215), (-44.306274, 22.699526, 4.656777), (-44.306274, 22.699526, 4.656777), (-43.06406, 25, 4.526215), (-43.24193, 25, 2.2662134), (-44.489273, 22.699526, 2.331584), (-44.489273, 22.699526, 2.331584), (-43.24193, 25, 2.2662134), (-43.30127, 25, 5.302876e-15), (-44.550327, 22.699526, 5.4558413e-15), (-44.550327, 22.699526, 5.4558413e-15), (-43.30127, 25, 5.302876e-15), (-43.24193, 25, -2.2662134), (-44.489273, 22.699526, -2.331584), (-44.489273, 22.699526, -2.331584), (-43.24193, 25, -2.2662134), (-43.06406, 25, -4.526215), (-44.306274, 22.699526, -4.656777), (-44.306274, 22.699526, -4.656777), (-43.06406, 25, -4.526215), (-42.768158, 25, -6.773811), (-44.00184, 22.699526, -6.9692063), (-44.00184, 22.699526, -6.9692063), (-42.768158, 25, -6.773811), (-42.355034, 25, -9.00284), (-43.576794, 22.699526, -9.262533), (-43.576794, 22.699526, -9.262533), (-42.355034, 25, -9.00284), (-41.825813, 25, -11.207193), (-43.03231, 22.699526, -11.530473), (-43.03231, 22.699526, -11.530473), (-41.825813, 25, -11.207193), (-41.181953, 25, -13.380828), (-42.369877, 22.699526, -13.766808), (-42.369877, 22.699526, -13.766808), (-41.181953, 25, -13.380828), (-40.425217, 25, -15.517787), (-41.591312, 22.699526, -15.965409), (-41.591312, 22.699526, -15.965409), (-40.425217, 25, -15.517787), (-39.55768, 25, -17.612213), (-40.69875, 22.699526, -18.12025), (-40.69875, 22.699526, -18.12025), (-39.55768, 25, -17.612213), (-38.581715, 25, -19.658365), (-39.69463, 22.699526, -20.225426), (-39.69463, 22.699526, -20.225426), (-38.581715, 25, -19.658365), (-37.5, 25, -21.650635), (-38.581715, 22.699526, -22.275164), (-38.581715, 22.699526, -22.275164), (-37.5, 25, -21.650635), (-36.315502, 25, -23.583563), (-37.36305, 22.699526, -24.263847), (-37.36305, 22.699526, -24.263847), (-36.315502, 25, -23.583563), (-35.031464, 25, -25.451847), (-36.04197, 22.699526, -26.186026), (-36.04197, 22.699526, -26.186026), (-35.031464, 25, -25.451847), (-33.65141, 25, -27.250372), (-34.622105, 22.699526, -28.036428), (-34.622105, 22.699526, -28.036428), (-33.65141, 25, -27.250372), (-32.179115, 25, -28.974205), (-33.107346, 22.699526, -29.809986), (-33.107346, 22.699526, -29.809986), (-32.179115, 25, -28.974205), (-30.618622, 25, -30.618622), (-31.501839, 22.699526, -31.501839), (-31.501839, 22.699526, -31.501839), (-30.618622, 25, -30.618622), (-28.974205, 25, -32.179115), (-29.809986, 22.699526, -33.107346), (-29.809986, 22.699526, -33.107346), (-28.974205, 25, -32.179115), (-27.250372, 25, -33.65141), (-28.036428, 22.699526, -34.622105), (-28.036428, 22.699526, -34.622105), (-27.250372, 25, -33.65141), (-25.451847, 25, -35.031464), (-26.186026, 22.699526, -36.04197), (-26.186026, 22.699526, -36.04197), (-25.451847, 25, -35.031464), (-23.583563, 25, -36.315502), (-24.263847, 22.699526, -37.36305), (-24.263847, 22.699526, -37.36305), (-23.583563, 25, -36.315502), (-21.650635, 25, -37.5), (-22.275164, 22.699526, -38.581715), (-22.275164, 22.699526, -38.581715), (-21.650635, 25, -37.5), (-19.658365, 25, -38.581715), (-20.225426, 22.699526, -39.69463), (-20.225426, 22.699526, -39.69463), (-19.658365, 25, -38.581715), (-17.612213, 25, -39.55768), (-18.12025, 22.699526, -40.69875), (-18.12025, 22.699526, -40.69875), (-17.612213, 25, -39.55768), (-15.517787, 25, -40.425217), (-15.965409, 22.699526, -41.591312), (-15.965409, 22.699526, -41.591312), (-15.517787, 25, -40.425217), (-13.380828, 25, -41.181953), (-13.766808, 22.699526, -42.369877), (-13.766808, 22.699526, -42.369877), (-13.380828, 25, -41.181953), (-11.207193, 25, -41.825813), (-11.530473, 22.699526, -43.03231), (-11.530473, 22.699526, -43.03231), (-11.207193, 25, -41.825813), (-9.00284, 25, -42.355034), (-9.262533, 22.699526, -43.576794), (-9.262533, 22.699526, -43.576794), (-9.00284, 25, -42.355034), (-6.773811, 25, -42.768158), (-6.9692063, 22.699526, -44.00184), (-6.9692063, 22.699526, -44.00184), (-6.773811, 25, -42.768158), (-4.526215, 25, -43.06406), (-4.656777, 22.699526, -44.306274), (-4.656777, 22.699526, -44.306274), (-4.526215, 25, -43.06406), (-2.2662134, 25, -43.24193), (-2.331584, 22.699526, -44.489273), (-2.331584, 22.699526, -44.489273), (-2.2662134, 25, -43.24193), (-7.9543145e-15, 25, -43.30127), (-8.183762e-15, 22.699526, -44.550327), (-8.183762e-15, 22.699526, -44.550327), (-7.9543145e-15, 25, -43.30127), (2.2662134, 25, -43.24193), (2.331584, 22.699526, -44.489273), (2.331584, 22.699526, -44.489273), (2.2662134, 25, -43.24193), (4.526215, 25, -43.06406), (4.656777, 22.699526, -44.306274), (4.656777, 22.699526, -44.306274), (4.526215, 25, -43.06406), (6.773811, 25, -42.768158), (6.9692063, 22.699526, -44.00184), (6.9692063, 22.699526, -44.00184), (6.773811, 25, -42.768158), (9.00284, 25, -42.355034), (9.262533, 22.699526, -43.576794), (9.262533, 22.699526, -43.576794), (9.00284, 25, -42.355034), (11.207193, 25, -41.825813), (11.530473, 22.699526, -43.03231), (11.530473, 22.699526, -43.03231), (11.207193, 25, -41.825813), (13.380828, 25, -41.181953), (13.766808, 22.699526, -42.369877), (13.766808, 22.699526, -42.369877), (13.380828, 25, -41.181953), (15.517787, 25, -40.425217), (15.965409, 22.699526, -41.591312), (15.965409, 22.699526, -41.591312), (15.517787, 25, -40.425217), (17.612213, 25, -39.55768), (18.12025, 22.699526, -40.69875), (18.12025, 22.699526, -40.69875), (17.612213, 25, -39.55768), (19.658365, 25, -38.581715), (20.225426, 22.699526, -39.69463), (20.225426, 22.699526, -39.69463), (19.658365, 25, -38.581715), (21.650635, 25, -37.5), (22.275164, 22.699526, -38.581715), (22.275164, 22.699526, -38.581715), (21.650635, 25, -37.5), (23.583563, 25, -36.315502), (24.263847, 22.699526, -37.36305), (24.263847, 22.699526, -37.36305), (23.583563, 25, -36.315502), (25.451847, 25, -35.031464), (26.186026, 22.699526, -36.04197), (26.186026, 22.699526, -36.04197), (25.451847, 25, -35.031464), (27.250372, 25, -33.65141), (28.036428, 22.699526, -34.622105), (28.036428, 22.699526, -34.622105), (27.250372, 25, -33.65141), (28.974205, 25, -32.179115), (29.809986, 22.699526, -33.107346), (29.809986, 22.699526, -33.107346), (28.974205, 25, -32.179115), (30.618622, 25, -30.618622), (31.501839, 22.699526, -31.501839), (31.501839, 22.699526, -31.501839), (30.618622, 25, -30.618622), (32.179115, 25, -28.974205), (33.107346, 22.699526, -29.809986), (33.107346, 22.699526, -29.809986), (32.179115, 25, -28.974205), (33.65141, 25, -27.250372), (34.622105, 22.699526, -28.036428), (34.622105, 22.699526, -28.036428), (33.65141, 25, -27.250372), (35.031464, 25, -25.451847), (36.04197, 22.699526, -26.186026), (36.04197, 22.699526, -26.186026), (35.031464, 25, -25.451847), (36.315502, 25, -23.583563), (37.36305, 22.699526, -24.263847), (37.36305, 22.699526, -24.263847), (36.315502, 25, -23.583563), (37.5, 25, -21.650635), (38.581715, 22.699526, -22.275164), (38.581715, 22.699526, -22.275164), (37.5, 25, -21.650635), (38.581715, 25, -19.658365), (39.69463, 22.699526, -20.225426), (39.69463, 22.699526, -20.225426), (38.581715, 25, -19.658365), (39.55768, 25, -17.612213), (40.69875, 22.699526, -18.12025), (40.69875, 22.699526, -18.12025), (39.55768, 25, -17.612213), (40.425217, 25, -15.517787), (41.591312, 22.699526, -15.965409), (41.591312, 22.699526, -15.965409), (40.425217, 25, -15.517787), (41.181953, 25, -13.380828), (42.369877, 22.699526, -13.766808), (42.369877, 22.699526, -13.766808), (41.181953, 25, -13.380828), (41.825813, 25, -11.207193), (43.03231, 22.699526, -11.530473), (43.03231, 22.699526, -11.530473), (41.825813, 25, -11.207193), (42.355034, 25, -9.00284), (43.576794, 22.699526, -9.262533), (43.576794, 22.699526, -9.262533), (42.355034, 25, -9.00284), (42.768158, 25, -6.773811), (44.00184, 22.699526, -6.9692063), (44.00184, 22.699526, -6.9692063), (42.768158, 25, -6.773811), (43.06406, 25, -4.526215), (44.306274, 22.699526, -4.656777), (44.306274, 22.699526, -4.656777), (43.06406, 25, -4.526215), (43.24193, 25, -2.2662134), (44.489273, 22.699526, -2.331584), (44.489273, 22.699526, -2.331584), (43.24193, 25, -2.2662134), (43.30127, 25, 0), (44.550327, 22.699526, 0), (43.30127, 25, 0), (41.93353, 27.231953, 0), (41.87606, 27.231953, 2.1946313), (43.24193, 25, 2.2662134), (43.24193, 25, 2.2662134), (41.87606, 27.231953, 2.1946313), (41.70381, 27.231953, 4.3832474), (43.06406, 25, 4.526215), (43.06406, 25, 4.526215), (41.70381, 27.231953, 4.3832474), (41.417255, 27.231953, 6.5598493), (42.768158, 25, 6.773811), (42.768158, 25, 6.773811), (41.417255, 27.231953, 6.5598493), (41.01718, 27.231953, 8.718471), (42.355034, 25, 9.00284), (42.355034, 25, 9.00284), (41.01718, 27.231953, 8.718471), (40.504677, 27.231953, 10.853196), (41.825813, 25, 11.207193), (41.825813, 25, 11.207193), (40.504677, 27.231953, 10.853196), (39.881157, 27.231953, 12.958173), (41.181953, 25, 13.380828), (41.181953, 25, 13.380828), (39.881157, 27.231953, 12.958173), (39.148323, 27.231953, 15.027633), (40.425217, 25, 15.517787), (40.425217, 25, 15.517787), (39.148323, 27.231953, 15.027633), (38.308186, 27.231953, 17.055902), (39.55768, 25, 17.612213), (39.55768, 25, 17.612213), (38.308186, 27.231953, 17.055902), (37.36305, 27.231953, 19.037424), (38.581715, 25, 19.658365), (38.581715, 25, 19.658365), (37.36305, 27.231953, 19.037424), (36.315502, 27.231953, 20.966764), (37.5, 25, 21.650635), (37.5, 25, 21.650635), (36.315502, 27.231953, 20.966764), (35.168415, 27.231953, 22.838636), (36.315502, 25, 23.583563), (36.315502, 25, 23.583563), (35.168415, 27.231953, 22.838636), (33.92494, 27.231953, 24.64791), (35.031464, 25, 25.451847), (35.031464, 25, 25.451847), (33.92494, 27.231953, 24.64791), (32.58847, 27.231953, 26.389624), (33.65141, 25, 27.250372), (33.65141, 25, 27.250372), (32.58847, 27.231953, 26.389624), (31.162685, 27.231953, 28.059008), (32.179115, 25, 28.974205), (32.179115, 25, 28.974205), (31.162685, 27.231953, 28.059008), (29.651482, 27.231953, 29.651482), (30.618622, 25, 30.618622), (30.618622, 25, 30.618622), (29.651482, 27.231953, 29.651482), (28.059008, 27.231953, 31.162685), (28.974205, 25, 32.179115), (28.974205, 25, 32.179115), (28.059008, 27.231953, 31.162685), (26.389624, 27.231953, 32.58847), (27.250372, 25, 33.65141), (27.250372, 25, 33.65141), (26.389624, 27.231953, 32.58847), (24.64791, 27.231953, 33.92494), (25.451847, 25, 35.031464), (25.451847, 25, 35.031464), (24.64791, 27.231953, 33.92494), (22.838636, 27.231953, 35.168415), (23.583563, 25, 36.315502), (23.583563, 25, 36.315502), (22.838636, 27.231953, 35.168415), (20.966764, 27.231953, 36.315502), (21.650635, 25, 37.5), (21.650635, 25, 37.5), (20.966764, 27.231953, 36.315502), (19.037424, 27.231953, 37.36305), (19.658365, 25, 38.581715), (19.658365, 25, 38.581715), (19.037424, 27.231953, 37.36305), (17.055902, 27.231953, 38.308186), (17.612213, 25, 39.55768), (17.612213, 25, 39.55768), (17.055902, 27.231953, 38.308186), (15.027633, 27.231953, 39.148323), (15.517787, 25, 40.425217), (15.517787, 25, 40.425217), (15.027633, 27.231953, 39.148323), (12.958173, 27.231953, 39.881157), (13.380828, 25, 41.181953), (13.380828, 25, 41.181953), (12.958173, 27.231953, 39.881157), (10.853196, 27.231953, 40.504677), (11.207193, 25, 41.825813), (11.207193, 25, 41.825813), (10.853196, 27.231953, 40.504677), (8.718471, 27.231953, 41.01718), (9.00284, 25, 42.355034), (9.00284, 25, 42.355034), (8.718471, 27.231953, 41.01718), (6.5598493, 27.231953, 41.417255), (6.773811, 25, 42.768158), (6.773811, 25, 42.768158), (6.5598493, 27.231953, 41.417255), (4.3832474, 27.231953, 41.70381), (4.526215, 25, 43.06406), (4.526215, 25, 43.06406), (4.3832474, 27.231953, 41.70381), (2.1946313, 27.231953, 41.87606), (2.2662134, 25, 43.24193), (2.2662134, 25, 43.24193), (2.1946313, 27.231953, 41.87606), (2.567688e-15, 27.231953, 41.93353), (2.651438e-15, 25, 43.30127), (2.651438e-15, 25, 43.30127), (2.567688e-15, 27.231953, 41.93353), (-2.1946313, 27.231953, 41.87606), (-2.2662134, 25, 43.24193), (-2.2662134, 25, 43.24193), (-2.1946313, 27.231953, 41.87606), (-4.3832474, 27.231953, 41.70381), (-4.526215, 25, 43.06406), (-4.526215, 25, 43.06406), (-4.3832474, 27.231953, 41.70381), (-6.5598493, 27.231953, 41.417255), (-6.773811, 25, 42.768158), (-6.773811, 25, 42.768158), (-6.5598493, 27.231953, 41.417255), (-8.718471, 27.231953, 41.01718), (-9.00284, 25, 42.355034), (-9.00284, 25, 42.355034), (-8.718471, 27.231953, 41.01718), (-10.853196, 27.231953, 40.504677), (-11.207193, 25, 41.825813), (-11.207193, 25, 41.825813), (-10.853196, 27.231953, 40.504677), (-12.958173, 27.231953, 39.881157), (-13.380828, 25, 41.181953), (-13.380828, 25, 41.181953), (-12.958173, 27.231953, 39.881157), (-15.027633, 27.231953, 39.148323), (-15.517787, 25, 40.425217), (-15.517787, 25, 40.425217), (-15.027633, 27.231953, 39.148323), (-17.055902, 27.231953, 38.308186), (-17.612213, 25, 39.55768), (-17.612213, 25, 39.55768), (-17.055902, 27.231953, 38.308186), (-19.037424, 27.231953, 37.36305), (-19.658365, 25, 38.581715), (-19.658365, 25, 38.581715), (-19.037424, 27.231953, 37.36305), (-20.966764, 27.231953, 36.315502), (-21.650635, 25, 37.5), (-21.650635, 25, 37.5), (-20.966764, 27.231953, 36.315502), (-22.838636, 27.231953, 35.168415), (-23.583563, 25, 36.315502), (-23.583563, 25, 36.315502), (-22.838636, 27.231953, 35.168415), (-24.64791, 27.231953, 33.92494), (-25.451847, 25, 35.031464), (-25.451847, 25, 35.031464), (-24.64791, 27.231953, 33.92494), (-26.389624, 27.231953, 32.58847), (-27.250372, 25, 33.65141), (-27.250372, 25, 33.65141), (-26.389624, 27.231953, 32.58847), (-28.059008, 27.231953, 31.162685), (-28.974205, 25, 32.179115), (-28.974205, 25, 32.179115), (-28.059008, 27.231953, 31.162685), (-29.651482, 27.231953, 29.651482), (-30.618622, 25, 30.618622), (-30.618622, 25, 30.618622), (-29.651482, 27.231953, 29.651482), (-31.162685, 27.231953, 28.059008), (-32.179115, 25, 28.974205), (-32.179115, 25, 28.974205), (-31.162685, 27.231953, 28.059008), (-32.58847, 27.231953, 26.389624), (-33.65141, 25, 27.250372), (-33.65141, 25, 27.250372), (-32.58847, 27.231953, 26.389624), (-33.92494, 27.231953, 24.64791), (-35.031464, 25, 25.451847), (-35.031464, 25, 25.451847), (-33.92494, 27.231953, 24.64791), (-35.168415, 27.231953, 22.838636), (-36.315502, 25, 23.583563), (-36.315502, 25, 23.583563), (-35.168415, 27.231953, 22.838636), (-36.315502, 27.231953, 20.966764), (-37.5, 25, 21.650635), (-37.5, 25, 21.650635), (-36.315502, 27.231953, 20.966764), (-37.36305, 27.231953, 19.037424), (-38.581715, 25, 19.658365), (-38.581715, 25, 19.658365), (-37.36305, 27.231953, 19.037424), (-38.308186, 27.231953, 17.055902), (-39.55768, 25, 17.612213), (-39.55768, 25, 17.612213), (-38.308186, 27.231953, 17.055902), (-39.148323, 27.231953, 15.027633), (-40.425217, 25, 15.517787), (-40.425217, 25, 15.517787), (-39.148323, 27.231953, 15.027633), (-39.881157, 27.231953, 12.958173), (-41.181953, 25, 13.380828), (-41.181953, 25, 13.380828), (-39.881157, 27.231953, 12.958173), (-40.504677, 27.231953, 10.853196), (-41.825813, 25, 11.207193), (-41.825813, 25, 11.207193), (-40.504677, 27.231953, 10.853196), (-41.01718, 27.231953, 8.718471), (-42.355034, 25, 9.00284), (-42.355034, 25, 9.00284), (-41.01718, 27.231953, 8.718471), (-41.417255, 27.231953, 6.5598493), (-42.768158, 25, 6.773811), (-42.768158, 25, 6.773811), (-41.417255, 27.231953, 6.5598493), (-41.70381, 27.231953, 4.3832474), (-43.06406, 25, 4.526215), (-43.06406, 25, 4.526215), (-41.70381, 27.231953, 4.3832474), (-41.87606, 27.231953, 2.1946313), (-43.24193, 25, 2.2662134), (-43.24193, 25, 2.2662134), (-41.87606, 27.231953, 2.1946313), (-41.93353, 27.231953, 5.135376e-15), (-43.30127, 25, 5.302876e-15), (-43.30127, 25, 5.302876e-15), (-41.93353, 27.231953, 5.135376e-15), (-41.87606, 27.231953, -2.1946313), (-43.24193, 25, -2.2662134), (-43.24193, 25, -2.2662134), (-41.87606, 27.231953, -2.1946313), (-41.70381, 27.231953, -4.3832474), (-43.06406, 25, -4.526215), (-43.06406, 25, -4.526215), (-41.70381, 27.231953, -4.3832474), (-41.417255, 27.231953, -6.5598493), (-42.768158, 25, -6.773811), (-42.768158, 25, -6.773811), (-41.417255, 27.231953, -6.5598493), (-41.01718, 27.231953, -8.718471), (-42.355034, 25, -9.00284), (-42.355034, 25, -9.00284), (-41.01718, 27.231953, -8.718471), (-40.504677, 27.231953, -10.853196), (-41.825813, 25, -11.207193), (-41.825813, 25, -11.207193), (-40.504677, 27.231953, -10.853196), (-39.881157, 27.231953, -12.958173), (-41.181953, 25, -13.380828), (-41.181953, 25, -13.380828), (-39.881157, 27.231953, -12.958173), (-39.148323, 27.231953, -15.027633), (-40.425217, 25, -15.517787), (-40.425217, 25, -15.517787), (-39.148323, 27.231953, -15.027633), (-38.308186, 27.231953, -17.055902), (-39.55768, 25, -17.612213), (-39.55768, 25, -17.612213), (-38.308186, 27.231953, -17.055902), (-37.36305, 27.231953, -19.037424), (-38.581715, 25, -19.658365), (-38.581715, 25, -19.658365), (-37.36305, 27.231953, -19.037424), (-36.315502, 27.231953, -20.966764), (-37.5, 25, -21.650635), (-37.5, 25, -21.650635), (-36.315502, 27.231953, -20.966764), (-35.168415, 27.231953, -22.838636), (-36.315502, 25, -23.583563), (-36.315502, 25, -23.583563), (-35.168415, 27.231953, -22.838636), (-33.92494, 27.231953, -24.64791), (-35.031464, 25, -25.451847), (-35.031464, 25, -25.451847), (-33.92494, 27.231953, -24.64791), (-32.58847, 27.231953, -26.389624), (-33.65141, 25, -27.250372), (-33.65141, 25, -27.250372), (-32.58847, 27.231953, -26.389624), (-31.162685, 27.231953, -28.059008), (-32.179115, 25, -28.974205), (-32.179115, 25, -28.974205), (-31.162685, 27.231953, -28.059008), (-29.651482, 27.231953, -29.651482), (-30.618622, 25, -30.618622), (-30.618622, 25, -30.618622), (-29.651482, 27.231953, -29.651482), (-28.059008, 27.231953, -31.162685), (-28.974205, 25, -32.179115), (-28.974205, 25, -32.179115), (-28.059008, 27.231953, -31.162685), (-26.389624, 27.231953, -32.58847), (-27.250372, 25, -33.65141), (-27.250372, 25, -33.65141), (-26.389624, 27.231953, -32.58847), (-24.64791, 27.231953, -33.92494), (-25.451847, 25, -35.031464), (-25.451847, 25, -35.031464), (-24.64791, 27.231953, -33.92494), (-22.838636, 27.231953, -35.168415), (-23.583563, 25, -36.315502), (-23.583563, 25, -36.315502), (-22.838636, 27.231953, -35.168415), (-20.966764, 27.231953, -36.315502), (-21.650635, 25, -37.5), (-21.650635, 25, -37.5), (-20.966764, 27.231953, -36.315502), (-19.037424, 27.231953, -37.36305), (-19.658365, 25, -38.581715), (-19.658365, 25, -38.581715), (-19.037424, 27.231953, -37.36305), (-17.055902, 27.231953, -38.308186), (-17.612213, 25, -39.55768), (-17.612213, 25, -39.55768), (-17.055902, 27.231953, -38.308186), (-15.027633, 27.231953, -39.148323), (-15.517787, 25, -40.425217), (-15.517787, 25, -40.425217), (-15.027633, 27.231953, -39.148323), (-12.958173, 27.231953, -39.881157), (-13.380828, 25, -41.181953), (-13.380828, 25, -41.181953), (-12.958173, 27.231953, -39.881157), (-10.853196, 27.231953, -40.504677), (-11.207193, 25, -41.825813), (-11.207193, 25, -41.825813), (-10.853196, 27.231953, -40.504677), (-8.718471, 27.231953, -41.01718), (-9.00284, 25, -42.355034), (-9.00284, 25, -42.355034), (-8.718471, 27.231953, -41.01718), (-6.5598493, 27.231953, -41.417255), (-6.773811, 25, -42.768158), (-6.773811, 25, -42.768158), (-6.5598493, 27.231953, -41.417255), (-4.3832474, 27.231953, -41.70381), (-4.526215, 25, -43.06406), (-4.526215, 25, -43.06406), (-4.3832474, 27.231953, -41.70381), (-2.1946313, 27.231953, -41.87606), (-2.2662134, 25, -43.24193), (-2.2662134, 25, -43.24193), (-2.1946313, 27.231953, -41.87606), (-7.703064e-15, 27.231953, -41.93353), (-7.9543145e-15, 25, -43.30127), (-7.9543145e-15, 25, -43.30127), (-7.703064e-15, 27.231953, -41.93353), (2.1946313, 27.231953, -41.87606), (2.2662134, 25, -43.24193), (2.2662134, 25, -43.24193), (2.1946313, 27.231953, -41.87606), (4.3832474, 27.231953, -41.70381), (4.526215, 25, -43.06406), (4.526215, 25, -43.06406), (4.3832474, 27.231953, -41.70381), (6.5598493, 27.231953, -41.417255), (6.773811, 25, -42.768158), (6.773811, 25, -42.768158), (6.5598493, 27.231953, -41.417255), (8.718471, 27.231953, -41.01718), (9.00284, 25, -42.355034), (9.00284, 25, -42.355034), (8.718471, 27.231953, -41.01718), (10.853196, 27.231953, -40.504677), (11.207193, 25, -41.825813), (11.207193, 25, -41.825813), (10.853196, 27.231953, -40.504677), (12.958173, 27.231953, -39.881157), (13.380828, 25, -41.181953), (13.380828, 25, -41.181953), (12.958173, 27.231953, -39.881157), (15.027633, 27.231953, -39.148323), (15.517787, 25, -40.425217), (15.517787, 25, -40.425217), (15.027633, 27.231953, -39.148323), (17.055902, 27.231953, -38.308186), (17.612213, 25, -39.55768), (17.612213, 25, -39.55768), (17.055902, 27.231953, -38.308186), (19.037424, 27.231953, -37.36305), (19.658365, 25, -38.581715), (19.658365, 25, -38.581715), (19.037424, 27.231953, -37.36305), (20.966764, 27.231953, -36.315502), (21.650635, 25, -37.5), (21.650635, 25, -37.5), (20.966764, 27.231953, -36.315502), (22.838636, 27.231953, -35.168415), (23.583563, 25, -36.315502), (23.583563, 25, -36.315502), (22.838636, 27.231953, -35.168415), (24.64791, 27.231953, -33.92494), (25.451847, 25, -35.031464), (25.451847, 25, -35.031464), (24.64791, 27.231953, -33.92494), (26.389624, 27.231953, -32.58847), (27.250372, 25, -33.65141), (27.250372, 25, -33.65141), (26.389624, 27.231953, -32.58847), (28.059008, 27.231953, -31.162685), (28.974205, 25, -32.179115), (28.974205, 25, -32.179115), (28.059008, 27.231953, -31.162685), (29.651482, 27.231953, -29.651482), (30.618622, 25, -30.618622), (30.618622, 25, -30.618622), (29.651482, 27.231953, -29.651482), (31.162685, 27.231953, -28.059008), (32.179115, 25, -28.974205), (32.179115, 25, -28.974205), (31.162685, 27.231953, -28.059008), (32.58847, 27.231953, -26.389624), (33.65141, 25, -27.250372), (33.65141, 25, -27.250372), (32.58847, 27.231953, -26.389624), (33.92494, 27.231953, -24.64791), (35.031464, 25, -25.451847), (35.031464, 25, -25.451847), (33.92494, 27.231953, -24.64791), (35.168415, 27.231953, -22.838636), (36.315502, 25, -23.583563), (36.315502, 25, -23.583563), (35.168415, 27.231953, -22.838636), (36.315502, 27.231953, -20.966764), (37.5, 25, -21.650635), (37.5, 25, -21.650635), (36.315502, 27.231953, -20.966764), (37.36305, 27.231953, -19.037424), (38.581715, 25, -19.658365), (38.581715, 25, -19.658365), (37.36305, 27.231953, -19.037424), (38.308186, 27.231953, -17.055902), (39.55768, 25, -17.612213), (39.55768, 25, -17.612213), (38.308186, 27.231953, -17.055902), (39.148323, 27.231953, -15.027633), (40.425217, 25, -15.517787), (40.425217, 25, -15.517787), (39.148323, 27.231953, -15.027633), (39.881157, 27.231953, -12.958173), (41.181953, 25, -13.380828), (41.181953, 25, -13.380828), (39.881157, 27.231953, -12.958173), (40.504677, 27.231953, -10.853196), (41.825813, 25, -11.207193), (41.825813, 25, -11.207193), (40.504677, 27.231953, -10.853196), (41.01718, 27.231953, -8.718471), (42.355034, 25, -9.00284), (42.355034, 25, -9.00284), (41.01718, 27.231953, -8.718471), (41.417255, 27.231953, -6.5598493), (42.768158, 25, -6.773811), (42.768158, 25, -6.773811), (41.417255, 27.231953, -6.5598493), (41.70381, 27.231953, -4.3832474), (43.06406, 25, -4.526215), (43.06406, 25, -4.526215), (41.70381, 27.231953, -4.3832474), (41.87606, 27.231953, -2.1946313), (43.24193, 25, -2.2662134), (43.24193, 25, -2.2662134), (41.87606, 27.231953, -2.1946313), (41.93353, 27.231953, 0), (43.30127, 25, 0), (41.93353, 27.231953, 0), (40.45085, 29.389263, 0), (40.395412, 29.389263, 2.117034), (41.87606, 27.231953, 2.1946313), (41.87606, 27.231953, 2.1946313), (40.395412, 29.389263, 2.117034), (40.229256, 29.389263, 4.2282653), (41.70381, 27.231953, 4.3832474), (41.70381, 27.231953, 4.3832474), (40.229256, 29.389263, 4.2282653), (39.95283, 29.389263, 6.327907), (41.417255, 27.231953, 6.5598493), (41.417255, 27.231953, 6.5598493), (39.95283, 29.389263, 6.327907), (39.566902, 29.389263, 8.410205), (41.01718, 27.231953, 8.718471), (41.01718, 27.231953, 8.718471), (39.566902, 29.389263, 8.410205), (39.07252, 29.389263, 10.46945), (40.504677, 27.231953, 10.853196), (40.504677, 27.231953, 10.853196), (39.07252, 29.389263, 10.46945), (38.471043, 29.389263, 12.5), (39.881157, 27.231953, 12.958173), (39.881157, 27.231953, 12.958173), (38.471043, 29.389263, 12.5), (37.764122, 29.389263, 14.496288), (39.148323, 27.231953, 15.027633), (39.148323, 27.231953, 15.027633), (37.764122, 29.389263, 14.496288), (36.95369, 29.389263, 16.452843), (38.308186, 27.231953, 17.055902), (38.308186, 27.231953, 17.055902), (36.95369, 29.389263, 16.452843), (36.04197, 29.389263, 18.364302), (37.36305, 27.231953, 19.037424), (37.36305, 27.231953, 19.037424), (36.04197, 29.389263, 18.364302), (35.031464, 29.389263, 20.225426), (36.315502, 27.231953, 20.966764), (36.315502, 27.231953, 20.966764), (35.031464, 29.389263, 20.225426), (33.92494, 29.389263, 22.031113), (35.168415, 27.231953, 22.838636), (35.168415, 27.231953, 22.838636), (33.92494, 29.389263, 22.031113), (32.725426, 29.389263, 23.776413), (33.92494, 27.231953, 24.64791), (33.92494, 27.231953, 24.64791), (32.725426, 29.389263, 23.776413), (31.436214, 29.389263, 25.456545), (32.58847, 27.231953, 26.389624), (32.58847, 27.231953, 26.389624), (31.436214, 29.389263, 25.456545), (30.06084, 29.389263, 27.066902), (31.162685, 27.231953, 28.059008), (31.162685, 27.231953, 28.059008), (30.06084, 29.389263, 27.066902), (28.60307, 29.389263, 28.60307), (29.651482, 27.231953, 29.651482), (29.651482, 27.231953, 29.651482), (28.60307, 29.389263, 28.60307), (27.066902, 29.389263, 30.06084), (28.059008, 27.231953, 31.162685), (28.059008, 27.231953, 31.162685), (27.066902, 29.389263, 30.06084), (25.456545, 29.389263, 31.436214), (26.389624, 27.231953, 32.58847), (26.389624, 27.231953, 32.58847), (25.456545, 29.389263, 31.436214), (23.776413, 29.389263, 32.725426), (24.64791, 27.231953, 33.92494), (24.64791, 27.231953, 33.92494), (23.776413, 29.389263, 32.725426), (22.031113, 29.389263, 33.92494), (22.838636, 27.231953, 35.168415), (22.838636, 27.231953, 35.168415), (22.031113, 29.389263, 33.92494), (20.225426, 29.389263, 35.031464), (20.966764, 27.231953, 36.315502), (20.966764, 27.231953, 36.315502), (20.225426, 29.389263, 35.031464), (18.364302, 29.389263, 36.04197), (19.037424, 27.231953, 37.36305), (19.037424, 27.231953, 37.36305), (18.364302, 29.389263, 36.04197), (16.452843, 29.389263, 36.95369), (17.055902, 27.231953, 38.308186), (17.055902, 27.231953, 38.308186), (16.452843, 29.389263, 36.95369), (14.496288, 29.389263, 37.764122), (15.027633, 27.231953, 39.148323), (15.027633, 27.231953, 39.148323), (14.496288, 29.389263, 37.764122), (12.5, 29.389263, 38.471043), (12.958173, 27.231953, 39.881157), (12.958173, 27.231953, 39.881157), (12.5, 29.389263, 38.471043), (10.46945, 29.389263, 39.07252), (10.853196, 27.231953, 40.504677), (10.853196, 27.231953, 40.504677), (10.46945, 29.389263, 39.07252), (8.410205, 29.389263, 39.566902), (8.718471, 27.231953, 41.01718), (8.718471, 27.231953, 41.01718), (8.410205, 29.389263, 39.566902), (6.327907, 29.389263, 39.95283), (6.5598493, 27.231953, 41.417255), (6.5598493, 27.231953, 41.417255), (6.327907, 29.389263, 39.95283), (4.2282653, 29.389263, 40.229256), (4.3832474, 27.231953, 41.70381), (4.3832474, 27.231953, 41.70381), (4.2282653, 29.389263, 40.229256), (2.117034, 29.389263, 40.395412), (2.1946313, 27.231953, 41.87606), (2.1946313, 27.231953, 41.87606), (2.117034, 29.389263, 40.395412), (2.4769e-15, 29.389263, 40.45085), (2.567688e-15, 27.231953, 41.93353), (2.567688e-15, 27.231953, 41.93353), (2.4769e-15, 29.389263, 40.45085), (-2.117034, 29.389263, 40.395412), (-2.1946313, 27.231953, 41.87606), (-2.1946313, 27.231953, 41.87606), (-2.117034, 29.389263, 40.395412), (-4.2282653, 29.389263, 40.229256), (-4.3832474, 27.231953, 41.70381), (-4.3832474, 27.231953, 41.70381), (-4.2282653, 29.389263, 40.229256), (-6.327907, 29.389263, 39.95283), (-6.5598493, 27.231953, 41.417255), (-6.5598493, 27.231953, 41.417255), (-6.327907, 29.389263, 39.95283), (-8.410205, 29.389263, 39.566902), (-8.718471, 27.231953, 41.01718), (-8.718471, 27.231953, 41.01718), (-8.410205, 29.389263, 39.566902), (-10.46945, 29.389263, 39.07252), (-10.853196, 27.231953, 40.504677), (-10.853196, 27.231953, 40.504677), (-10.46945, 29.389263, 39.07252), (-12.5, 29.389263, 38.471043), (-12.958173, 27.231953, 39.881157), (-12.958173, 27.231953, 39.881157), (-12.5, 29.389263, 38.471043), (-14.496288, 29.389263, 37.764122), (-15.027633, 27.231953, 39.148323), (-15.027633, 27.231953, 39.148323), (-14.496288, 29.389263, 37.764122), (-16.452843, 29.389263, 36.95369), (-17.055902, 27.231953, 38.308186), (-17.055902, 27.231953, 38.308186), (-16.452843, 29.389263, 36.95369), (-18.364302, 29.389263, 36.04197), (-19.037424, 27.231953, 37.36305), (-19.037424, 27.231953, 37.36305), (-18.364302, 29.389263, 36.04197), (-20.225426, 29.389263, 35.031464), (-20.966764, 27.231953, 36.315502), (-20.966764, 27.231953, 36.315502), (-20.225426, 29.389263, 35.031464), (-22.031113, 29.389263, 33.92494), (-22.838636, 27.231953, 35.168415), (-22.838636, 27.231953, 35.168415), (-22.031113, 29.389263, 33.92494), (-23.776413, 29.389263, 32.725426), (-24.64791, 27.231953, 33.92494), (-24.64791, 27.231953, 33.92494), (-23.776413, 29.389263, 32.725426), (-25.456545, 29.389263, 31.436214), (-26.389624, 27.231953, 32.58847), (-26.389624, 27.231953, 32.58847), (-25.456545, 29.389263, 31.436214), (-27.066902, 29.389263, 30.06084), (-28.059008, 27.231953, 31.162685), (-28.059008, 27.231953, 31.162685), (-27.066902, 29.389263, 30.06084), (-28.60307, 29.389263, 28.60307), (-29.651482, 27.231953, 29.651482), (-29.651482, 27.231953, 29.651482), (-28.60307, 29.389263, 28.60307), (-30.06084, 29.389263, 27.066902), (-31.162685, 27.231953, 28.059008), (-31.162685, 27.231953, 28.059008), (-30.06084, 29.389263, 27.066902), (-31.436214, 29.389263, 25.456545), (-32.58847, 27.231953, 26.389624), (-32.58847, 27.231953, 26.389624), (-31.436214, 29.389263, 25.456545), (-32.725426, 29.389263, 23.776413), (-33.92494, 27.231953, 24.64791), (-33.92494, 27.231953, 24.64791), (-32.725426, 29.389263, 23.776413), (-33.92494, 29.389263, 22.031113), (-35.168415, 27.231953, 22.838636), (-35.168415, 27.231953, 22.838636), (-33.92494, 29.389263, 22.031113), (-35.031464, 29.389263, 20.225426), (-36.315502, 27.231953, 20.966764), (-36.315502, 27.231953, 20.966764), (-35.031464, 29.389263, 20.225426), (-36.04197, 29.389263, 18.364302), (-37.36305, 27.231953, 19.037424), (-37.36305, 27.231953, 19.037424), (-36.04197, 29.389263, 18.364302), (-36.95369, 29.389263, 16.452843), (-38.308186, 27.231953, 17.055902), (-38.308186, 27.231953, 17.055902), (-36.95369, 29.389263, 16.452843), (-37.764122, 29.389263, 14.496288), (-39.148323, 27.231953, 15.027633), (-39.148323, 27.231953, 15.027633), (-37.764122, 29.389263, 14.496288), (-38.471043, 29.389263, 12.5), (-39.881157, 27.231953, 12.958173), (-39.881157, 27.231953, 12.958173), (-38.471043, 29.389263, 12.5), (-39.07252, 29.389263, 10.46945), (-40.504677, 27.231953, 10.853196), (-40.504677, 27.231953, 10.853196), (-39.07252, 29.389263, 10.46945), (-39.566902, 29.389263, 8.410205), (-41.01718, 27.231953, 8.718471), (-41.01718, 27.231953, 8.718471), (-39.566902, 29.389263, 8.410205), (-39.95283, 29.389263, 6.327907), (-41.417255, 27.231953, 6.5598493), (-41.417255, 27.231953, 6.5598493), (-39.95283, 29.389263, 6.327907), (-40.229256, 29.389263, 4.2282653), (-41.70381, 27.231953, 4.3832474), (-41.70381, 27.231953, 4.3832474), (-40.229256, 29.389263, 4.2282653), (-40.395412, 29.389263, 2.117034), (-41.87606, 27.231953, 2.1946313), (-41.87606, 27.231953, 2.1946313), (-40.395412, 29.389263, 2.117034), (-40.45085, 29.389263, 4.9538e-15), (-41.93353, 27.231953, 5.135376e-15), (-41.93353, 27.231953, 5.135376e-15), (-40.45085, 29.389263, 4.9538e-15), (-40.395412, 29.389263, -2.117034), (-41.87606, 27.231953, -2.1946313), (-41.87606, 27.231953, -2.1946313), (-40.395412, 29.389263, -2.117034), (-40.229256, 29.389263, -4.2282653), (-41.70381, 27.231953, -4.3832474), (-41.70381, 27.231953, -4.3832474), (-40.229256, 29.389263, -4.2282653), (-39.95283, 29.389263, -6.327907), (-41.417255, 27.231953, -6.5598493), (-41.417255, 27.231953, -6.5598493), (-39.95283, 29.389263, -6.327907), (-39.566902, 29.389263, -8.410205), (-41.01718, 27.231953, -8.718471), (-41.01718, 27.231953, -8.718471), (-39.566902, 29.389263, -8.410205), (-39.07252, 29.389263, -10.46945), (-40.504677, 27.231953, -10.853196), (-40.504677, 27.231953, -10.853196), (-39.07252, 29.389263, -10.46945), (-38.471043, 29.389263, -12.5), (-39.881157, 27.231953, -12.958173), (-39.881157, 27.231953, -12.958173), (-38.471043, 29.389263, -12.5), (-37.764122, 29.389263, -14.496288), (-39.148323, 27.231953, -15.027633), (-39.148323, 27.231953, -15.027633), (-37.764122, 29.389263, -14.496288), (-36.95369, 29.389263, -16.452843), (-38.308186, 27.231953, -17.055902), (-38.308186, 27.231953, -17.055902), (-36.95369, 29.389263, -16.452843), (-36.04197, 29.389263, -18.364302), (-37.36305, 27.231953, -19.037424), (-37.36305, 27.231953, -19.037424), (-36.04197, 29.389263, -18.364302), (-35.031464, 29.389263, -20.225426), (-36.315502, 27.231953, -20.966764), (-36.315502, 27.231953, -20.966764), (-35.031464, 29.389263, -20.225426), (-33.92494, 29.389263, -22.031113), (-35.168415, 27.231953, -22.838636), (-35.168415, 27.231953, -22.838636), (-33.92494, 29.389263, -22.031113), (-32.725426, 29.389263, -23.776413), (-33.92494, 27.231953, -24.64791), (-33.92494, 27.231953, -24.64791), (-32.725426, 29.389263, -23.776413), (-31.436214, 29.389263, -25.456545), (-32.58847, 27.231953, -26.389624), (-32.58847, 27.231953, -26.389624), (-31.436214, 29.389263, -25.456545), (-30.06084, 29.389263, -27.066902), (-31.162685, 27.231953, -28.059008), (-31.162685, 27.231953, -28.059008), (-30.06084, 29.389263, -27.066902), (-28.60307, 29.389263, -28.60307), (-29.651482, 27.231953, -29.651482), (-29.651482, 27.231953, -29.651482), (-28.60307, 29.389263, -28.60307), (-27.066902, 29.389263, -30.06084), (-28.059008, 27.231953, -31.162685), (-28.059008, 27.231953, -31.162685), (-27.066902, 29.389263, -30.06084), (-25.456545, 29.389263, -31.436214), (-26.389624, 27.231953, -32.58847), (-26.389624, 27.231953, -32.58847), (-25.456545, 29.389263, -31.436214), (-23.776413, 29.389263, -32.725426), (-24.64791, 27.231953, -33.92494), (-24.64791, 27.231953, -33.92494), (-23.776413, 29.389263, -32.725426), (-22.031113, 29.389263, -33.92494), (-22.838636, 27.231953, -35.168415), (-22.838636, 27.231953, -35.168415), (-22.031113, 29.389263, -33.92494), (-20.225426, 29.389263, -35.031464), (-20.966764, 27.231953, -36.315502), (-20.966764, 27.231953, -36.315502), (-20.225426, 29.389263, -35.031464), (-18.364302, 29.389263, -36.04197), (-19.037424, 27.231953, -37.36305), (-19.037424, 27.231953, -37.36305), (-18.364302, 29.389263, -36.04197), (-16.452843, 29.389263, -36.95369), (-17.055902, 27.231953, -38.308186), (-17.055902, 27.231953, -38.308186), (-16.452843, 29.389263, -36.95369), (-14.496288, 29.389263, -37.764122), (-15.027633, 27.231953, -39.148323), (-15.027633, 27.231953, -39.148323), (-14.496288, 29.389263, -37.764122), (-12.5, 29.389263, -38.471043), (-12.958173, 27.231953, -39.881157), (-12.958173, 27.231953, -39.881157), (-12.5, 29.389263, -38.471043), (-10.46945, 29.389263, -39.07252), (-10.853196, 27.231953, -40.504677), (-10.853196, 27.231953, -40.504677), (-10.46945, 29.389263, -39.07252), (-8.410205, 29.389263, -39.566902), (-8.718471, 27.231953, -41.01718), (-8.718471, 27.231953, -41.01718), (-8.410205, 29.389263, -39.566902), (-6.327907, 29.389263, -39.95283), (-6.5598493, 27.231953, -41.417255), (-6.5598493, 27.231953, -41.417255), (-6.327907, 29.389263, -39.95283), (-4.2282653, 29.389263, -40.229256), (-4.3832474, 27.231953, -41.70381), (-4.3832474, 27.231953, -41.70381), (-4.2282653, 29.389263, -40.229256), (-2.117034, 29.389263, -40.395412), (-2.1946313, 27.231953, -41.87606), (-2.1946313, 27.231953, -41.87606), (-2.117034, 29.389263, -40.395412), (-7.430701e-15, 29.389263, -40.45085), (-7.703064e-15, 27.231953, -41.93353), (-7.703064e-15, 27.231953, -41.93353), (-7.430701e-15, 29.389263, -40.45085), (2.117034, 29.389263, -40.395412), (2.1946313, 27.231953, -41.87606), (2.1946313, 27.231953, -41.87606), (2.117034, 29.389263, -40.395412), (4.2282653, 29.389263, -40.229256), (4.3832474, 27.231953, -41.70381), (4.3832474, 27.231953, -41.70381), (4.2282653, 29.389263, -40.229256), (6.327907, 29.389263, -39.95283), (6.5598493, 27.231953, -41.417255), (6.5598493, 27.231953, -41.417255), (6.327907, 29.389263, -39.95283), (8.410205, 29.389263, -39.566902), (8.718471, 27.231953, -41.01718), (8.718471, 27.231953, -41.01718), (8.410205, 29.389263, -39.566902), (10.46945, 29.389263, -39.07252), (10.853196, 27.231953, -40.504677), (10.853196, 27.231953, -40.504677), (10.46945, 29.389263, -39.07252), (12.5, 29.389263, -38.471043), (12.958173, 27.231953, -39.881157), (12.958173, 27.231953, -39.881157), (12.5, 29.389263, -38.471043), (14.496288, 29.389263, -37.764122), (15.027633, 27.231953, -39.148323), (15.027633, 27.231953, -39.148323), (14.496288, 29.389263, -37.764122), (16.452843, 29.389263, -36.95369), (17.055902, 27.231953, -38.308186), (17.055902, 27.231953, -38.308186), (16.452843, 29.389263, -36.95369), (18.364302, 29.389263, -36.04197), (19.037424, 27.231953, -37.36305), (19.037424, 27.231953, -37.36305), (18.364302, 29.389263, -36.04197), (20.225426, 29.389263, -35.031464), (20.966764, 27.231953, -36.315502), (20.966764, 27.231953, -36.315502), (20.225426, 29.389263, -35.031464), (22.031113, 29.389263, -33.92494), (22.838636, 27.231953, -35.168415), (22.838636, 27.231953, -35.168415), (22.031113, 29.389263, -33.92494), (23.776413, 29.389263, -32.725426), (24.64791, 27.231953, -33.92494), (24.64791, 27.231953, -33.92494), (23.776413, 29.389263, -32.725426), (25.456545, 29.389263, -31.436214), (26.389624, 27.231953, -32.58847), (26.389624, 27.231953, -32.58847), (25.456545, 29.389263, -31.436214), (27.066902, 29.389263, -30.06084), (28.059008, 27.231953, -31.162685), (28.059008, 27.231953, -31.162685), (27.066902, 29.389263, -30.06084), (28.60307, 29.389263, -28.60307), (29.651482, 27.231953, -29.651482), (29.651482, 27.231953, -29.651482), (28.60307, 29.389263, -28.60307), (30.06084, 29.389263, -27.066902), (31.162685, 27.231953, -28.059008), (31.162685, 27.231953, -28.059008), (30.06084, 29.389263, -27.066902), (31.436214, 29.389263, -25.456545), (32.58847, 27.231953, -26.389624), (32.58847, 27.231953, -26.389624), (31.436214, 29.389263, -25.456545), (32.725426, 29.389263, -23.776413), (33.92494, 27.231953, -24.64791), (33.92494, 27.231953, -24.64791), (32.725426, 29.389263, -23.776413), (33.92494, 29.389263, -22.031113), (35.168415, 27.231953, -22.838636), (35.168415, 27.231953, -22.838636), (33.92494, 29.389263, -22.031113), (35.031464, 29.389263, -20.225426), (36.315502, 27.231953, -20.966764), (36.315502, 27.231953, -20.966764), (35.031464, 29.389263, -20.225426), (36.04197, 29.389263, -18.364302), (37.36305, 27.231953, -19.037424), (37.36305, 27.231953, -19.037424), (36.04197, 29.389263, -18.364302), (36.95369, 29.389263, -16.452843), (38.308186, 27.231953, -17.055902), (38.308186, 27.231953, -17.055902), (36.95369, 29.389263, -16.452843), (37.764122, 29.389263, -14.496288), (39.148323, 27.231953, -15.027633), (39.148323, 27.231953, -15.027633), (37.764122, 29.389263, -14.496288), (38.471043, 29.389263, -12.5), (39.881157, 27.231953, -12.958173), (39.881157, 27.231953, -12.958173), (38.471043, 29.389263, -12.5), (39.07252, 29.389263, -10.46945), (40.504677, 27.231953, -10.853196), (40.504677, 27.231953, -10.853196), (39.07252, 29.389263, -10.46945), (39.566902, 29.389263, -8.410205), (41.01718, 27.231953, -8.718471), (41.01718, 27.231953, -8.718471), (39.566902, 29.389263, -8.410205), (39.95283, 29.389263, -6.327907), (41.417255, 27.231953, -6.5598493), (41.417255, 27.231953, -6.5598493), (39.95283, 29.389263, -6.327907), (40.229256, 29.389263, -4.2282653), (41.70381, 27.231953, -4.3832474), (41.70381, 27.231953, -4.3832474), (40.229256, 29.389263, -4.2282653), (40.395412, 29.389263, -2.117034), (41.87606, 27.231953, -2.1946313), (41.87606, 27.231953, -2.1946313), (40.395412, 29.389263, -2.117034), (40.45085, 29.389263, 0), (41.93353, 27.231953, 0), (40.45085, 29.389263, 0), (38.8573, 31.466019, 0), (38.804047, 31.466019, 2.033634), (40.395412, 29.389263, 2.117034), (40.395412, 29.389263, 2.117034), (38.804047, 31.466019, 2.033634), (38.644432, 31.466019, 4.0616937), (40.229256, 29.389263, 4.2282653), (40.229256, 29.389263, 4.2282653), (38.644432, 31.466019, 4.0616937), (38.3789, 31.466019, 6.0786204), (39.95283, 29.389263, 6.327907), (39.95283, 29.389263, 6.327907), (38.3789, 31.466019, 6.0786204), (38.00817, 31.466019, 8.078887), (39.566902, 29.389263, 8.410205), (39.566902, 29.389263, 8.410205), (38.00817, 31.466019, 8.078887), (37.533268, 31.466019, 10.057009), (39.07252, 29.389263, 10.46945), (39.07252, 29.389263, 10.46945), (37.533268, 31.466019, 10.057009), (36.955486, 31.466019, 12.0075655), (38.471043, 29.389263, 12.5), (38.471043, 29.389263, 12.5), (36.955486, 31.466019, 12.0075655), (36.276413, 31.466019, 13.92521), (37.764122, 29.389263, 14.496288), (37.764122, 29.389263, 14.496288), (36.276413, 31.466019, 13.92521), (35.49791, 31.466019, 15.804687), (36.95369, 29.389263, 16.452843), (36.95369, 29.389263, 16.452843), (35.49791, 31.466019, 15.804687), (34.622105, 31.466019, 17.640844), (36.04197, 29.389263, 18.364302), (36.04197, 29.389263, 18.364302), (34.622105, 31.466019, 17.640844), (33.65141, 31.466019, 19.42865), (35.031464, 29.389263, 20.225426), (35.031464, 29.389263, 20.225426), (33.65141, 31.466019, 19.42865), (32.58847, 31.466019, 21.1632), (33.92494, 29.389263, 22.031113), (33.92494, 29.389263, 22.031113), (32.58847, 31.466019, 21.1632), (31.436214, 31.466019, 22.839746), (32.725426, 29.389263, 23.776413), (32.725426, 29.389263, 23.776413), (31.436214, 31.466019, 22.839746), (30.197792, 31.466019, 24.45369), (31.436214, 29.389263, 25.456545), (31.436214, 29.389263, 25.456545), (30.197792, 31.466019, 24.45369), (28.8766, 31.466019, 26.000607), (30.06084, 29.389263, 27.066902), (30.06084, 29.389263, 27.066902), (28.8766, 31.466019, 26.000607), (27.47626, 31.466019, 27.47626), (28.60307, 29.389263, 28.60307), (28.60307, 29.389263, 28.60307), (27.47626, 31.466019, 27.47626), (26.000607, 31.466019, 28.8766), (27.066902, 29.389263, 30.06084), (27.066902, 29.389263, 30.06084), (26.000607, 31.466019, 28.8766), (24.45369, 31.466019, 30.197792), (25.456545, 29.389263, 31.436214), (25.456545, 29.389263, 31.436214), (24.45369, 31.466019, 30.197792), (22.839746, 31.466019, 31.436214), (23.776413, 29.389263, 32.725426), (23.776413, 29.389263, 32.725426), (22.839746, 31.466019, 31.436214), (21.1632, 31.466019, 32.58847), (22.031113, 29.389263, 33.92494), (22.031113, 29.389263, 33.92494), (21.1632, 31.466019, 32.58847), (19.42865, 31.466019, 33.65141), (20.225426, 29.389263, 35.031464), (20.225426, 29.389263, 35.031464), (19.42865, 31.466019, 33.65141), (17.640844, 31.466019, 34.622105), (18.364302, 29.389263, 36.04197), (18.364302, 29.389263, 36.04197), (17.640844, 31.466019, 34.622105), (15.804687, 31.466019, 35.49791), (16.452843, 29.389263, 36.95369), (16.452843, 29.389263, 36.95369), (15.804687, 31.466019, 35.49791), (13.92521, 31.466019, 36.276413), (14.496288, 29.389263, 37.764122), (14.496288, 29.389263, 37.764122), (13.92521, 31.466019, 36.276413), (12.0075655, 31.466019, 36.955486), (12.5, 29.389263, 38.471043), (12.5, 29.389263, 38.471043), (12.0075655, 31.466019, 36.955486), (10.057009, 31.466019, 37.533268), (10.46945, 29.389263, 39.07252), (10.46945, 29.389263, 39.07252), (10.057009, 31.466019, 37.533268), (8.078887, 31.466019, 38.00817), (8.410205, 29.389263, 39.566902), (8.410205, 29.389263, 39.566902), (8.078887, 31.466019, 38.00817), (6.0786204, 31.466019, 38.3789), (6.327907, 29.389263, 39.95283), (6.327907, 29.389263, 39.95283), (6.0786204, 31.466019, 38.3789), (4.0616937, 31.466019, 38.644432), (4.2282653, 29.389263, 40.229256), (4.2282653, 29.389263, 40.229256), (4.0616937, 31.466019, 38.644432), (2.033634, 31.466019, 38.804047), (2.117034, 29.389263, 40.395412), (2.117034, 29.389263, 40.395412), (2.033634, 31.466019, 38.804047), (2.3793234e-15, 31.466019, 38.8573), (2.4769e-15, 29.389263, 40.45085), (2.4769e-15, 29.389263, 40.45085), (2.3793234e-15, 31.466019, 38.8573), (-2.033634, 31.466019, 38.804047), (-2.117034, 29.389263, 40.395412), (-2.117034, 29.389263, 40.395412), (-2.033634, 31.466019, 38.804047), (-4.0616937, 31.466019, 38.644432), (-4.2282653, 29.389263, 40.229256), (-4.2282653, 29.389263, 40.229256), (-4.0616937, 31.466019, 38.644432), (-6.0786204, 31.466019, 38.3789), (-6.327907, 29.389263, 39.95283), (-6.327907, 29.389263, 39.95283), (-6.0786204, 31.466019, 38.3789), (-8.078887, 31.466019, 38.00817), (-8.410205, 29.389263, 39.566902), (-8.410205, 29.389263, 39.566902), (-8.078887, 31.466019, 38.00817), (-10.057009, 31.466019, 37.533268), (-10.46945, 29.389263, 39.07252), (-10.46945, 29.389263, 39.07252), (-10.057009, 31.466019, 37.533268), (-12.0075655, 31.466019, 36.955486), (-12.5, 29.389263, 38.471043), (-12.5, 29.389263, 38.471043), (-12.0075655, 31.466019, 36.955486), (-13.92521, 31.466019, 36.276413), (-14.496288, 29.389263, 37.764122), (-14.496288, 29.389263, 37.764122), (-13.92521, 31.466019, 36.276413), (-15.804687, 31.466019, 35.49791), (-16.452843, 29.389263, 36.95369), (-16.452843, 29.389263, 36.95369), (-15.804687, 31.466019, 35.49791), (-17.640844, 31.466019, 34.622105), (-18.364302, 29.389263, 36.04197), (-18.364302, 29.389263, 36.04197), (-17.640844, 31.466019, 34.622105), (-19.42865, 31.466019, 33.65141), (-20.225426, 29.389263, 35.031464), (-20.225426, 29.389263, 35.031464), (-19.42865, 31.466019, 33.65141), (-21.1632, 31.466019, 32.58847), (-22.031113, 29.389263, 33.92494), (-22.031113, 29.389263, 33.92494), (-21.1632, 31.466019, 32.58847), (-22.839746, 31.466019, 31.436214), (-23.776413, 29.389263, 32.725426), (-23.776413, 29.389263, 32.725426), (-22.839746, 31.466019, 31.436214), (-24.45369, 31.466019, 30.197792), (-25.456545, 29.389263, 31.436214), (-25.456545, 29.389263, 31.436214), (-24.45369, 31.466019, 30.197792), (-26.000607, 31.466019, 28.8766), (-27.066902, 29.389263, 30.06084), (-27.066902, 29.389263, 30.06084), (-26.000607, 31.466019, 28.8766), (-27.47626, 31.466019, 27.47626), (-28.60307, 29.389263, 28.60307), (-28.60307, 29.389263, 28.60307), (-27.47626, 31.466019, 27.47626), (-28.8766, 31.466019, 26.000607), (-30.06084, 29.389263, 27.066902), (-30.06084, 29.389263, 27.066902), (-28.8766, 31.466019, 26.000607), (-30.197792, 31.466019, 24.45369), (-31.436214, 29.389263, 25.456545), (-31.436214, 29.389263, 25.456545), (-30.197792, 31.466019, 24.45369), (-31.436214, 31.466019, 22.839746), (-32.725426, 29.389263, 23.776413), (-32.725426, 29.389263, 23.776413), (-31.436214, 31.466019, 22.839746), (-32.58847, 31.466019, 21.1632), (-33.92494, 29.389263, 22.031113), (-33.92494, 29.389263, 22.031113), (-32.58847, 31.466019, 21.1632), (-33.65141, 31.466019, 19.42865), (-35.031464, 29.389263, 20.225426), (-35.031464, 29.389263, 20.225426), (-33.65141, 31.466019, 19.42865), (-34.622105, 31.466019, 17.640844), (-36.04197, 29.389263, 18.364302), (-36.04197, 29.389263, 18.364302), (-34.622105, 31.466019, 17.640844), (-35.49791, 31.466019, 15.804687), (-36.95369, 29.389263, 16.452843), (-36.95369, 29.389263, 16.452843), (-35.49791, 31.466019, 15.804687), (-36.276413, 31.466019, 13.92521), (-37.764122, 29.389263, 14.496288), (-37.764122, 29.389263, 14.496288), (-36.276413, 31.466019, 13.92521), (-36.955486, 31.466019, 12.0075655), (-38.471043, 29.389263, 12.5), (-38.471043, 29.389263, 12.5), (-36.955486, 31.466019, 12.0075655), (-37.533268, 31.466019, 10.057009), (-39.07252, 29.389263, 10.46945), (-39.07252, 29.389263, 10.46945), (-37.533268, 31.466019, 10.057009), (-38.00817, 31.466019, 8.078887), (-39.566902, 29.389263, 8.410205), (-39.566902, 29.389263, 8.410205), (-38.00817, 31.466019, 8.078887), (-38.3789, 31.466019, 6.0786204), (-39.95283, 29.389263, 6.327907), (-39.95283, 29.389263, 6.327907), (-38.3789, 31.466019, 6.0786204), (-38.644432, 31.466019, 4.0616937), (-40.229256, 29.389263, 4.2282653), (-40.229256, 29.389263, 4.2282653), (-38.644432, 31.466019, 4.0616937), (-38.804047, 31.466019, 2.033634), (-40.395412, 29.389263, 2.117034), (-40.395412, 29.389263, 2.117034), (-38.804047, 31.466019, 2.033634), (-38.8573, 31.466019, 4.7586468e-15), (-40.45085, 29.389263, 4.9538e-15), (-40.45085, 29.389263, 4.9538e-15), (-38.8573, 31.466019, 4.7586468e-15), (-38.804047, 31.466019, -2.033634), (-40.395412, 29.389263, -2.117034), (-40.395412, 29.389263, -2.117034), (-38.804047, 31.466019, -2.033634), (-38.644432, 31.466019, -4.0616937), (-40.229256, 29.389263, -4.2282653), (-40.229256, 29.389263, -4.2282653), (-38.644432, 31.466019, -4.0616937), (-38.3789, 31.466019, -6.0786204), (-39.95283, 29.389263, -6.327907), (-39.95283, 29.389263, -6.327907), (-38.3789, 31.466019, -6.0786204), (-38.00817, 31.466019, -8.078887), (-39.566902, 29.389263, -8.410205), (-39.566902, 29.389263, -8.410205), (-38.00817, 31.466019, -8.078887), (-37.533268, 31.466019, -10.057009), (-39.07252, 29.389263, -10.46945), (-39.07252, 29.389263, -10.46945), (-37.533268, 31.466019, -10.057009), (-36.955486, 31.466019, -12.0075655), (-38.471043, 29.389263, -12.5), (-38.471043, 29.389263, -12.5), (-36.955486, 31.466019, -12.0075655), (-36.276413, 31.466019, -13.92521), (-37.764122, 29.389263, -14.496288), (-37.764122, 29.389263, -14.496288), (-36.276413, 31.466019, -13.92521), (-35.49791, 31.466019, -15.804687), (-36.95369, 29.389263, -16.452843), (-36.95369, 29.389263, -16.452843), (-35.49791, 31.466019, -15.804687), (-34.622105, 31.466019, -17.640844), (-36.04197, 29.389263, -18.364302), (-36.04197, 29.389263, -18.364302), (-34.622105, 31.466019, -17.640844), (-33.65141, 31.466019, -19.42865), (-35.031464, 29.389263, -20.225426), (-35.031464, 29.389263, -20.225426), (-33.65141, 31.466019, -19.42865), (-32.58847, 31.466019, -21.1632), (-33.92494, 29.389263, -22.031113), (-33.92494, 29.389263, -22.031113), (-32.58847, 31.466019, -21.1632), (-31.436214, 31.466019, -22.839746), (-32.725426, 29.389263, -23.776413), (-32.725426, 29.389263, -23.776413), (-31.436214, 31.466019, -22.839746), (-30.197792, 31.466019, -24.45369), (-31.436214, 29.389263, -25.456545), (-31.436214, 29.389263, -25.456545), (-30.197792, 31.466019, -24.45369), (-28.8766, 31.466019, -26.000607), (-30.06084, 29.389263, -27.066902), (-30.06084, 29.389263, -27.066902), (-28.8766, 31.466019, -26.000607), (-27.47626, 31.466019, -27.47626), (-28.60307, 29.389263, -28.60307), (-28.60307, 29.389263, -28.60307), (-27.47626, 31.466019, -27.47626), (-26.000607, 31.466019, -28.8766), (-27.066902, 29.389263, -30.06084), (-27.066902, 29.389263, -30.06084), (-26.000607, 31.466019, -28.8766), (-24.45369, 31.466019, -30.197792), (-25.456545, 29.389263, -31.436214), (-25.456545, 29.389263, -31.436214), (-24.45369, 31.466019, -30.197792), (-22.839746, 31.466019, -31.436214), (-23.776413, 29.389263, -32.725426), (-23.776413, 29.389263, -32.725426), (-22.839746, 31.466019, -31.436214), (-21.1632, 31.466019, -32.58847), (-22.031113, 29.389263, -33.92494), (-22.031113, 29.389263, -33.92494), (-21.1632, 31.466019, -32.58847), (-19.42865, 31.466019, -33.65141), (-20.225426, 29.389263, -35.031464), (-20.225426, 29.389263, -35.031464), (-19.42865, 31.466019, -33.65141), (-17.640844, 31.466019, -34.622105), (-18.364302, 29.389263, -36.04197), (-18.364302, 29.389263, -36.04197), (-17.640844, 31.466019, -34.622105), (-15.804687, 31.466019, -35.49791), (-16.452843, 29.389263, -36.95369), (-16.452843, 29.389263, -36.95369), (-15.804687, 31.466019, -35.49791), (-13.92521, 31.466019, -36.276413), (-14.496288, 29.389263, -37.764122), (-14.496288, 29.389263, -37.764122), (-13.92521, 31.466019, -36.276413), (-12.0075655, 31.466019, -36.955486), (-12.5, 29.389263, -38.471043), (-12.5, 29.389263, -38.471043), (-12.0075655, 31.466019, -36.955486), (-10.057009, 31.466019, -37.533268), (-10.46945, 29.389263, -39.07252), (-10.46945, 29.389263, -39.07252), (-10.057009, 31.466019, -37.533268), (-8.078887, 31.466019, -38.00817), (-8.410205, 29.389263, -39.566902), (-8.410205, 29.389263, -39.566902), (-8.078887, 31.466019, -38.00817), (-6.0786204, 31.466019, -38.3789), (-6.327907, 29.389263, -39.95283), (-6.327907, 29.389263, -39.95283), (-6.0786204, 31.466019, -38.3789), (-4.0616937, 31.466019, -38.644432), (-4.2282653, 29.389263, -40.229256), (-4.2282653, 29.389263, -40.229256), (-4.0616937, 31.466019, -38.644432), (-2.033634, 31.466019, -38.804047), (-2.117034, 29.389263, -40.395412), (-2.117034, 29.389263, -40.395412), (-2.033634, 31.466019, -38.804047), (-7.1379695e-15, 31.466019, -38.8573), (-7.430701e-15, 29.389263, -40.45085), (-7.430701e-15, 29.389263, -40.45085), (-7.1379695e-15, 31.466019, -38.8573), (2.033634, 31.466019, -38.804047), (2.117034, 29.389263, -40.395412), (2.117034, 29.389263, -40.395412), (2.033634, 31.466019, -38.804047), (4.0616937, 31.466019, -38.644432), (4.2282653, 29.389263, -40.229256), (4.2282653, 29.389263, -40.229256), (4.0616937, 31.466019, -38.644432), (6.0786204, 31.466019, -38.3789), (6.327907, 29.389263, -39.95283), (6.327907, 29.389263, -39.95283), (6.0786204, 31.466019, -38.3789), (8.078887, 31.466019, -38.00817), (8.410205, 29.389263, -39.566902), (8.410205, 29.389263, -39.566902), (8.078887, 31.466019, -38.00817), (10.057009, 31.466019, -37.533268), (10.46945, 29.389263, -39.07252), (10.46945, 29.389263, -39.07252), (10.057009, 31.466019, -37.533268), (12.0075655, 31.466019, -36.955486), (12.5, 29.389263, -38.471043), (12.5, 29.389263, -38.471043), (12.0075655, 31.466019, -36.955486), (13.92521, 31.466019, -36.276413), (14.496288, 29.389263, -37.764122), (14.496288, 29.389263, -37.764122), (13.92521, 31.466019, -36.276413), (15.804687, 31.466019, -35.49791), (16.452843, 29.389263, -36.95369), (16.452843, 29.389263, -36.95369), (15.804687, 31.466019, -35.49791), (17.640844, 31.466019, -34.622105), (18.364302, 29.389263, -36.04197), (18.364302, 29.389263, -36.04197), (17.640844, 31.466019, -34.622105), (19.42865, 31.466019, -33.65141), (20.225426, 29.389263, -35.031464), (20.225426, 29.389263, -35.031464), (19.42865, 31.466019, -33.65141), (21.1632, 31.466019, -32.58847), (22.031113, 29.389263, -33.92494), (22.031113, 29.389263, -33.92494), (21.1632, 31.466019, -32.58847), (22.839746, 31.466019, -31.436214), (23.776413, 29.389263, -32.725426), (23.776413, 29.389263, -32.725426), (22.839746, 31.466019, -31.436214), (24.45369, 31.466019, -30.197792), (25.456545, 29.389263, -31.436214), (25.456545, 29.389263, -31.436214), (24.45369, 31.466019, -30.197792), (26.000607, 31.466019, -28.8766), (27.066902, 29.389263, -30.06084), (27.066902, 29.389263, -30.06084), (26.000607, 31.466019, -28.8766), (27.47626, 31.466019, -27.47626), (28.60307, 29.389263, -28.60307), (28.60307, 29.389263, -28.60307), (27.47626, 31.466019, -27.47626), (28.8766, 31.466019, -26.000607), (30.06084, 29.389263, -27.066902), (30.06084, 29.389263, -27.066902), (28.8766, 31.466019, -26.000607), (30.197792, 31.466019, -24.45369), (31.436214, 29.389263, -25.456545), (31.436214, 29.389263, -25.456545), (30.197792, 31.466019, -24.45369), (31.436214, 31.466019, -22.839746), (32.725426, 29.389263, -23.776413), (32.725426, 29.389263, -23.776413), (31.436214, 31.466019, -22.839746), (32.58847, 31.466019, -21.1632), (33.92494, 29.389263, -22.031113), (33.92494, 29.389263, -22.031113), (32.58847, 31.466019, -21.1632), (33.65141, 31.466019, -19.42865), (35.031464, 29.389263, -20.225426), (35.031464, 29.389263, -20.225426), (33.65141, 31.466019, -19.42865), (34.622105, 31.466019, -17.640844), (36.04197, 29.389263, -18.364302), (36.04197, 29.389263, -18.364302), (34.622105, 31.466019, -17.640844), (35.49791, 31.466019, -15.804687), (36.95369, 29.389263, -16.452843), (36.95369, 29.389263, -16.452843), (35.49791, 31.466019, -15.804687), (36.276413, 31.466019, -13.92521), (37.764122, 29.389263, -14.496288), (37.764122, 29.389263, -14.496288), (36.276413, 31.466019, -13.92521), (36.955486, 31.466019, -12.0075655), (38.471043, 29.389263, -12.5), (38.471043, 29.389263, -12.5), (36.955486, 31.466019, -12.0075655), (37.533268, 31.466019, -10.057009), (39.07252, 29.389263, -10.46945), (39.07252, 29.389263, -10.46945), (37.533268, 31.466019, -10.057009), (38.00817, 31.466019, -8.078887), (39.566902, 29.389263, -8.410205), (39.566902, 29.389263, -8.410205), (38.00817, 31.466019, -8.078887), (38.3789, 31.466019, -6.0786204), (39.95283, 29.389263, -6.327907), (39.95283, 29.389263, -6.327907), (38.3789, 31.466019, -6.0786204), (38.644432, 31.466019, -4.0616937), (40.229256, 29.389263, -4.2282653), (40.229256, 29.389263, -4.2282653), (38.644432, 31.466019, -4.0616937), (38.804047, 31.466019, -2.033634), (40.395412, 29.389263, -2.117034), (40.395412, 29.389263, -2.117034), (38.804047, 31.466019, -2.033634), (38.8573, 31.466019, 0), (40.45085, 29.389263, 0), (38.8573, 31.466019, 0), (37.15724, 33.45653, 0), (37.10632, 33.45653, 1.9446597), (38.804047, 31.466019, 2.033634), (38.804047, 31.466019, 2.033634), (37.10632, 33.45653, 1.9446597), (36.95369, 33.45653, 3.8839893), (38.644432, 31.466019, 4.0616937), (38.644432, 31.466019, 4.0616937), (36.95369, 33.45653, 3.8839893), (36.699776, 33.45653, 5.812673), (38.3789, 31.466019, 6.0786204), (38.3789, 31.466019, 6.0786204), (36.699776, 33.45653, 5.812673), (36.34527, 33.45653, 7.725425), (38.00817, 31.466019, 8.078887), (38.00817, 31.466019, 8.078887), (36.34527, 33.45653, 7.725425), (35.89114, 33.45653, 9.617002), (37.533268, 31.466019, 10.057009), (37.533268, 31.466019, 10.057009), (35.89114, 33.45653, 9.617002), (35.33864, 33.45653, 11.482219), (36.955486, 31.466019, 12.0075655), (36.955486, 31.466019, 12.0075655), (35.33864, 33.45653, 11.482219), (34.689274, 33.45653, 13.315965), (36.276413, 31.466019, 13.92521), (36.276413, 31.466019, 13.92521), (34.689274, 33.45653, 13.315965), (33.944828, 33.45653, 15.113212), (35.49791, 31.466019, 15.804687), (35.49791, 31.466019, 15.804687), (33.944828, 33.45653, 15.113212), (33.107346, 33.45653, 16.869034), (34.622105, 31.466019, 17.640844), (34.622105, 31.466019, 17.640844), (33.107346, 33.45653, 16.869034), (32.179115, 33.45653, 18.57862), (33.65141, 31.466019, 19.42865), (33.65141, 31.466019, 19.42865), (32.179115, 33.45653, 18.57862), (31.162685, 33.45653, 20.237284), (32.58847, 31.466019, 21.1632), (32.58847, 31.466019, 21.1632), (31.162685, 33.45653, 20.237284), (30.06084, 33.45653, 21.840479), (31.436214, 31.466019, 22.839746), (31.436214, 31.466019, 22.839746), (30.06084, 33.45653, 21.840479), (28.8766, 33.45653, 23.38381), (30.197792, 31.466019, 24.45369), (30.197792, 31.466019, 24.45369), (28.8766, 33.45653, 23.38381), (27.61321, 33.45653, 24.863047), (28.8766, 31.466019, 26.000607), (28.8766, 31.466019, 26.000607), (27.61321, 33.45653, 24.863047), (26.274137, 33.45653, 26.274137), (27.47626, 31.466019, 27.47626), (27.47626, 31.466019, 27.47626), (26.274137, 33.45653, 26.274137), (24.863047, 33.45653, 27.61321), (26.000607, 31.466019, 28.8766), (26.000607, 31.466019, 28.8766), (24.863047, 33.45653, 27.61321), (23.38381, 33.45653, 28.8766), (24.45369, 31.466019, 30.197792), (24.45369, 31.466019, 30.197792), (23.38381, 33.45653, 28.8766), (21.840479, 33.45653, 30.06084), (22.839746, 31.466019, 31.436214), (22.839746, 31.466019, 31.436214), (21.840479, 33.45653, 30.06084), (20.237284, 33.45653, 31.162685), (21.1632, 31.466019, 32.58847), (21.1632, 31.466019, 32.58847), (20.237284, 33.45653, 31.162685), (18.57862, 33.45653, 32.179115), (19.42865, 31.466019, 33.65141), (19.42865, 31.466019, 33.65141), (18.57862, 33.45653, 32.179115), (16.869034, 33.45653, 33.107346), (17.640844, 31.466019, 34.622105), (17.640844, 31.466019, 34.622105), (16.869034, 33.45653, 33.107346), (15.113212, 33.45653, 33.944828), (15.804687, 31.466019, 35.49791), (15.804687, 31.466019, 35.49791), (15.113212, 33.45653, 33.944828), (13.315965, 33.45653, 34.689274), (13.92521, 31.466019, 36.276413), (13.92521, 31.466019, 36.276413), (13.315965, 33.45653, 34.689274), (11.482219, 33.45653, 35.33864), (12.0075655, 31.466019, 36.955486), (12.0075655, 31.466019, 36.955486), (11.482219, 33.45653, 35.33864), (9.617002, 33.45653, 35.89114), (10.057009, 31.466019, 37.533268), (10.057009, 31.466019, 37.533268), (9.617002, 33.45653, 35.89114), (7.725425, 33.45653, 36.34527), (8.078887, 31.466019, 38.00817), (8.078887, 31.466019, 38.00817), (7.725425, 33.45653, 36.34527), (5.812673, 33.45653, 36.699776), (6.0786204, 31.466019, 38.3789), (6.0786204, 31.466019, 38.3789), (5.812673, 33.45653, 36.699776), (3.8839893, 33.45653, 36.95369), (4.0616937, 31.466019, 38.644432), (4.0616937, 31.466019, 38.644432), (3.8839893, 33.45653, 36.95369), (1.9446597, 33.45653, 37.10632), (2.033634, 31.466019, 38.804047), (2.033634, 31.466019, 38.804047), (1.9446597, 33.45653, 37.10632), (2.2752247e-15, 33.45653, 37.15724), (2.3793234e-15, 31.466019, 38.8573), (2.3793234e-15, 31.466019, 38.8573), (2.2752247e-15, 33.45653, 37.15724), (-1.9446597, 33.45653, 37.10632), (-2.033634, 31.466019, 38.804047), (-2.033634, 31.466019, 38.804047), (-1.9446597, 33.45653, 37.10632), (-3.8839893, 33.45653, 36.95369), (-4.0616937, 31.466019, 38.644432), (-4.0616937, 31.466019, 38.644432), (-3.8839893, 33.45653, 36.95369), (-5.812673, 33.45653, 36.699776), (-6.0786204, 31.466019, 38.3789), (-6.0786204, 31.466019, 38.3789), (-5.812673, 33.45653, 36.699776), (-7.725425, 33.45653, 36.34527), (-8.078887, 31.466019, 38.00817), (-8.078887, 31.466019, 38.00817), (-7.725425, 33.45653, 36.34527), (-9.617002, 33.45653, 35.89114), (-10.057009, 31.466019, 37.533268), (-10.057009, 31.466019, 37.533268), (-9.617002, 33.45653, 35.89114), (-11.482219, 33.45653, 35.33864), (-12.0075655, 31.466019, 36.955486), (-12.0075655, 31.466019, 36.955486), (-11.482219, 33.45653, 35.33864), (-13.315965, 33.45653, 34.689274), (-13.92521, 31.466019, 36.276413), (-13.92521, 31.466019, 36.276413), (-13.315965, 33.45653, 34.689274), (-15.113212, 33.45653, 33.944828), (-15.804687, 31.466019, 35.49791), (-15.804687, 31.466019, 35.49791), (-15.113212, 33.45653, 33.944828), (-16.869034, 33.45653, 33.107346), (-17.640844, 31.466019, 34.622105), (-17.640844, 31.466019, 34.622105), (-16.869034, 33.45653, 33.107346), (-18.57862, 33.45653, 32.179115), (-19.42865, 31.466019, 33.65141), (-19.42865, 31.466019, 33.65141), (-18.57862, 33.45653, 32.179115), (-20.237284, 33.45653, 31.162685), (-21.1632, 31.466019, 32.58847), (-21.1632, 31.466019, 32.58847), (-20.237284, 33.45653, 31.162685), (-21.840479, 33.45653, 30.06084), (-22.839746, 31.466019, 31.436214), (-22.839746, 31.466019, 31.436214), (-21.840479, 33.45653, 30.06084), (-23.38381, 33.45653, 28.8766), (-24.45369, 31.466019, 30.197792), (-24.45369, 31.466019, 30.197792), (-23.38381, 33.45653, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.000607, 31.466019, 28.8766), (-26.000607, 31.466019, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.274137, 33.45653, 26.274137), (-27.47626, 31.466019, 27.47626), (-27.47626, 31.466019, 27.47626), (-26.274137, 33.45653, 26.274137), (-27.61321, 33.45653, 24.863047), (-28.8766, 31.466019, 26.000607), (-28.8766, 31.466019, 26.000607), (-27.61321, 33.45653, 24.863047), (-28.8766, 33.45653, 23.38381), (-30.197792, 31.466019, 24.45369), (-30.197792, 31.466019, 24.45369), (-28.8766, 33.45653, 23.38381), (-30.06084, 33.45653, 21.840479), (-31.436214, 31.466019, 22.839746), (-31.436214, 31.466019, 22.839746), (-30.06084, 33.45653, 21.840479), (-31.162685, 33.45653, 20.237284), (-32.58847, 31.466019, 21.1632), (-32.58847, 31.466019, 21.1632), (-31.162685, 33.45653, 20.237284), (-32.179115, 33.45653, 18.57862), (-33.65141, 31.466019, 19.42865), (-33.65141, 31.466019, 19.42865), (-32.179115, 33.45653, 18.57862), (-33.107346, 33.45653, 16.869034), (-34.622105, 31.466019, 17.640844), (-34.622105, 31.466019, 17.640844), (-33.107346, 33.45653, 16.869034), (-33.944828, 33.45653, 15.113212), (-35.49791, 31.466019, 15.804687), (-35.49791, 31.466019, 15.804687), (-33.944828, 33.45653, 15.113212), (-34.689274, 33.45653, 13.315965), (-36.276413, 31.466019, 13.92521), (-36.276413, 31.466019, 13.92521), (-34.689274, 33.45653, 13.315965), (-35.33864, 33.45653, 11.482219), (-36.955486, 31.466019, 12.0075655), (-36.955486, 31.466019, 12.0075655), (-35.33864, 33.45653, 11.482219), (-35.89114, 33.45653, 9.617002), (-37.533268, 31.466019, 10.057009), (-37.533268, 31.466019, 10.057009), (-35.89114, 33.45653, 9.617002), (-36.34527, 33.45653, 7.725425), (-38.00817, 31.466019, 8.078887), (-38.00817, 31.466019, 8.078887), (-36.34527, 33.45653, 7.725425), (-36.699776, 33.45653, 5.812673), (-38.3789, 31.466019, 6.0786204), (-38.3789, 31.466019, 6.0786204), (-36.699776, 33.45653, 5.812673), (-36.95369, 33.45653, 3.8839893), (-38.644432, 31.466019, 4.0616937), (-38.644432, 31.466019, 4.0616937), (-36.95369, 33.45653, 3.8839893), (-37.10632, 33.45653, 1.9446597), (-38.804047, 31.466019, 2.033634), (-38.804047, 31.466019, 2.033634), (-37.10632, 33.45653, 1.9446597), (-37.15724, 33.45653, 4.5504495e-15), (-38.8573, 31.466019, 4.7586468e-15), (-38.8573, 31.466019, 4.7586468e-15), (-37.15724, 33.45653, 4.5504495e-15), (-37.10632, 33.45653, -1.9446597), (-38.804047, 31.466019, -2.033634), (-38.804047, 31.466019, -2.033634), (-37.10632, 33.45653, -1.9446597), (-36.95369, 33.45653, -3.8839893), (-38.644432, 31.466019, -4.0616937), (-38.644432, 31.466019, -4.0616937), (-36.95369, 33.45653, -3.8839893), (-36.699776, 33.45653, -5.812673), (-38.3789, 31.466019, -6.0786204), (-38.3789, 31.466019, -6.0786204), (-36.699776, 33.45653, -5.812673), (-36.34527, 33.45653, -7.725425), (-38.00817, 31.466019, -8.078887), (-38.00817, 31.466019, -8.078887), (-36.34527, 33.45653, -7.725425), (-35.89114, 33.45653, -9.617002), (-37.533268, 31.466019, -10.057009), (-37.533268, 31.466019, -10.057009), (-35.89114, 33.45653, -9.617002), (-35.33864, 33.45653, -11.482219), (-36.955486, 31.466019, -12.0075655), (-36.955486, 31.466019, -12.0075655), (-35.33864, 33.45653, -11.482219), (-34.689274, 33.45653, -13.315965), (-36.276413, 31.466019, -13.92521), (-36.276413, 31.466019, -13.92521), (-34.689274, 33.45653, -13.315965), (-33.944828, 33.45653, -15.113212), (-35.49791, 31.466019, -15.804687), (-35.49791, 31.466019, -15.804687), (-33.944828, 33.45653, -15.113212), (-33.107346, 33.45653, -16.869034), (-34.622105, 31.466019, -17.640844), (-34.622105, 31.466019, -17.640844), (-33.107346, 33.45653, -16.869034), (-32.179115, 33.45653, -18.57862), (-33.65141, 31.466019, -19.42865), (-33.65141, 31.466019, -19.42865), (-32.179115, 33.45653, -18.57862), (-31.162685, 33.45653, -20.237284), (-32.58847, 31.466019, -21.1632), (-32.58847, 31.466019, -21.1632), (-31.162685, 33.45653, -20.237284), (-30.06084, 33.45653, -21.840479), (-31.436214, 31.466019, -22.839746), (-31.436214, 31.466019, -22.839746), (-30.06084, 33.45653, -21.840479), (-28.8766, 33.45653, -23.38381), (-30.197792, 31.466019, -24.45369), (-30.197792, 31.466019, -24.45369), (-28.8766, 33.45653, -23.38381), (-27.61321, 33.45653, -24.863047), (-28.8766, 31.466019, -26.000607), (-28.8766, 31.466019, -26.000607), (-27.61321, 33.45653, -24.863047), (-26.274137, 33.45653, -26.274137), (-27.47626, 31.466019, -27.47626), (-27.47626, 31.466019, -27.47626), (-26.274137, 33.45653, -26.274137), (-24.863047, 33.45653, -27.61321), (-26.000607, 31.466019, -28.8766), (-26.000607, 31.466019, -28.8766), (-24.863047, 33.45653, -27.61321), (-23.38381, 33.45653, -28.8766), (-24.45369, 31.466019, -30.197792), (-24.45369, 31.466019, -30.197792), (-23.38381, 33.45653, -28.8766), (-21.840479, 33.45653, -30.06084), (-22.839746, 31.466019, -31.436214), (-22.839746, 31.466019, -31.436214), (-21.840479, 33.45653, -30.06084), (-20.237284, 33.45653, -31.162685), (-21.1632, 31.466019, -32.58847), (-21.1632, 31.466019, -32.58847), (-20.237284, 33.45653, -31.162685), (-18.57862, 33.45653, -32.179115), (-19.42865, 31.466019, -33.65141), (-19.42865, 31.466019, -33.65141), (-18.57862, 33.45653, -32.179115), (-16.869034, 33.45653, -33.107346), (-17.640844, 31.466019, -34.622105), (-17.640844, 31.466019, -34.622105), (-16.869034, 33.45653, -33.107346), (-15.113212, 33.45653, -33.944828), (-15.804687, 31.466019, -35.49791), (-15.804687, 31.466019, -35.49791), (-15.113212, 33.45653, -33.944828), (-13.315965, 33.45653, -34.689274), (-13.92521, 31.466019, -36.276413), (-13.92521, 31.466019, -36.276413), (-13.315965, 33.45653, -34.689274), (-11.482219, 33.45653, -35.33864), (-12.0075655, 31.466019, -36.955486), (-12.0075655, 31.466019, -36.955486), (-11.482219, 33.45653, -35.33864), (-9.617002, 33.45653, -35.89114), (-10.057009, 31.466019, -37.533268), (-10.057009, 31.466019, -37.533268), (-9.617002, 33.45653, -35.89114), (-7.725425, 33.45653, -36.34527), (-8.078887, 31.466019, -38.00817), (-8.078887, 31.466019, -38.00817), (-7.725425, 33.45653, -36.34527), (-5.812673, 33.45653, -36.699776), (-6.0786204, 31.466019, -38.3789), (-6.0786204, 31.466019, -38.3789), (-5.812673, 33.45653, -36.699776), (-3.8839893, 33.45653, -36.95369), (-4.0616937, 31.466019, -38.644432), (-4.0616937, 31.466019, -38.644432), (-3.8839893, 33.45653, -36.95369), (-1.9446597, 33.45653, -37.10632), (-2.033634, 31.466019, -38.804047), (-2.033634, 31.466019, -38.804047), (-1.9446597, 33.45653, -37.10632), (-6.8256744e-15, 33.45653, -37.15724), (-7.1379695e-15, 31.466019, -38.8573), (-7.1379695e-15, 31.466019, -38.8573), (-6.8256744e-15, 33.45653, -37.15724), (1.9446597, 33.45653, -37.10632), (2.033634, 31.466019, -38.804047), (2.033634, 31.466019, -38.804047), (1.9446597, 33.45653, -37.10632), (3.8839893, 33.45653, -36.95369), (4.0616937, 31.466019, -38.644432), (4.0616937, 31.466019, -38.644432), (3.8839893, 33.45653, -36.95369), (5.812673, 33.45653, -36.699776), (6.0786204, 31.466019, -38.3789), (6.0786204, 31.466019, -38.3789), (5.812673, 33.45653, -36.699776), (7.725425, 33.45653, -36.34527), (8.078887, 31.466019, -38.00817), (8.078887, 31.466019, -38.00817), (7.725425, 33.45653, -36.34527), (9.617002, 33.45653, -35.89114), (10.057009, 31.466019, -37.533268), (10.057009, 31.466019, -37.533268), (9.617002, 33.45653, -35.89114), (11.482219, 33.45653, -35.33864), (12.0075655, 31.466019, -36.955486), (12.0075655, 31.466019, -36.955486), (11.482219, 33.45653, -35.33864), (13.315965, 33.45653, -34.689274), (13.92521, 31.466019, -36.276413), (13.92521, 31.466019, -36.276413), (13.315965, 33.45653, -34.689274), (15.113212, 33.45653, -33.944828), (15.804687, 31.466019, -35.49791), (15.804687, 31.466019, -35.49791), (15.113212, 33.45653, -33.944828), (16.869034, 33.45653, -33.107346), (17.640844, 31.466019, -34.622105), (17.640844, 31.466019, -34.622105), (16.869034, 33.45653, -33.107346), (18.57862, 33.45653, -32.179115), (19.42865, 31.466019, -33.65141), (19.42865, 31.466019, -33.65141), (18.57862, 33.45653, -32.179115), (20.237284, 33.45653, -31.162685), (21.1632, 31.466019, -32.58847), (21.1632, 31.466019, -32.58847), (20.237284, 33.45653, -31.162685), (21.840479, 33.45653, -30.06084), (22.839746, 31.466019, -31.436214), (22.839746, 31.466019, -31.436214), (21.840479, 33.45653, -30.06084), (23.38381, 33.45653, -28.8766), (24.45369, 31.466019, -30.197792), (24.45369, 31.466019, -30.197792), (23.38381, 33.45653, -28.8766), (24.863047, 33.45653, -27.61321), (26.000607, 31.466019, -28.8766), (26.000607, 31.466019, -28.8766), (24.863047, 33.45653, -27.61321), (26.274137, 33.45653, -26.274137), (27.47626, 31.466019, -27.47626), (27.47626, 31.466019, -27.47626), (26.274137, 33.45653, -26.274137), (27.61321, 33.45653, -24.863047), (28.8766, 31.466019, -26.000607), (28.8766, 31.466019, -26.000607), (27.61321, 33.45653, -24.863047), (28.8766, 33.45653, -23.38381), (30.197792, 31.466019, -24.45369), (30.197792, 31.466019, -24.45369), (28.8766, 33.45653, -23.38381), (30.06084, 33.45653, -21.840479), (31.436214, 31.466019, -22.839746), (31.436214, 31.466019, -22.839746), (30.06084, 33.45653, -21.840479), (31.162685, 33.45653, -20.237284), (32.58847, 31.466019, -21.1632), (32.58847, 31.466019, -21.1632), (31.162685, 33.45653, -20.237284), (32.179115, 33.45653, -18.57862), (33.65141, 31.466019, -19.42865), (33.65141, 31.466019, -19.42865), (32.179115, 33.45653, -18.57862), (33.107346, 33.45653, -16.869034), (34.622105, 31.466019, -17.640844), (34.622105, 31.466019, -17.640844), (33.107346, 33.45653, -16.869034), (33.944828, 33.45653, -15.113212), (35.49791, 31.466019, -15.804687), (35.49791, 31.466019, -15.804687), (33.944828, 33.45653, -15.113212), (34.689274, 33.45653, -13.315965), (36.276413, 31.466019, -13.92521), (36.276413, 31.466019, -13.92521), (34.689274, 33.45653, -13.315965), (35.33864, 33.45653, -11.482219), (36.955486, 31.466019, -12.0075655), (36.955486, 31.466019, -12.0075655), (35.33864, 33.45653, -11.482219), (35.89114, 33.45653, -9.617002), (37.533268, 31.466019, -10.057009), (37.533268, 31.466019, -10.057009), (35.89114, 33.45653, -9.617002), (36.34527, 33.45653, -7.725425), (38.00817, 31.466019, -8.078887), (38.00817, 31.466019, -8.078887), (36.34527, 33.45653, -7.725425), (36.699776, 33.45653, -5.812673), (38.3789, 31.466019, -6.0786204), (38.3789, 31.466019, -6.0786204), (36.699776, 33.45653, -5.812673), (36.95369, 33.45653, -3.8839893), (38.644432, 31.466019, -4.0616937), (38.644432, 31.466019, -4.0616937), (36.95369, 33.45653, -3.8839893), (37.10632, 33.45653, -1.9446597), (38.804047, 31.466019, -2.033634), (38.804047, 31.466019, -2.033634), (37.10632, 33.45653, -1.9446597), (37.15724, 33.45653, 0), (38.8573, 31.466019, 0), (37.15724, 33.45653, 0), (35.35534, 35.35534, 0), (35.306885, 35.35534, 1.8503555), (37.10632, 33.45653, 1.9446597), (37.10632, 33.45653, 1.9446597), (35.306885, 35.35534, 1.8503555), (35.16166, 35.35534, 3.6956394), (36.95369, 33.45653, 3.8839893), (36.95369, 33.45653, 3.8839893), (35.16166, 35.35534, 3.6956394), (34.920055, 35.35534, 5.5307937), (36.699776, 33.45653, 5.812673), (36.699776, 33.45653, 5.812673), (34.920055, 35.35534, 5.5307937), (34.58274, 35.35534, 7.350788), (36.34527, 33.45653, 7.725425), (36.34527, 33.45653, 7.725425), (34.58274, 35.35534, 7.350788), (34.150635, 35.35534, 9.150635), (35.89114, 33.45653, 9.617002), (35.89114, 33.45653, 9.617002), (34.150635, 35.35534, 9.150635), (33.624924, 35.35534, 10.925401), (35.33864, 33.45653, 11.482219), (35.33864, 33.45653, 11.482219), (33.624924, 35.35534, 10.925401), (33.007053, 35.35534, 12.67022), (34.689274, 33.45653, 13.315965), (34.689274, 33.45653, 13.315965), (33.007053, 35.35534, 12.67022), (32.29871, 35.35534, 14.380312), (33.944828, 33.45653, 15.113212), (33.944828, 33.45653, 15.113212), (32.29871, 35.35534, 14.380312), (31.501839, 35.35534, 16.050987), (33.107346, 33.45653, 16.869034), (33.107346, 33.45653, 16.869034), (31.501839, 35.35534, 16.050987), (30.618622, 35.35534, 17.67767), (32.179115, 33.45653, 18.57862), (32.179115, 33.45653, 18.57862), (30.618622, 35.35534, 17.67767), (29.651482, 35.35534, 19.255898), (31.162685, 33.45653, 20.237284), (31.162685, 33.45653, 20.237284), (29.651482, 35.35534, 19.255898), (28.60307, 35.35534, 20.781347), (30.06084, 33.45653, 21.840479), (30.06084, 33.45653, 21.840479), (28.60307, 35.35534, 20.781347), (27.47626, 35.35534, 22.249836), (28.8766, 33.45653, 23.38381), (28.8766, 33.45653, 23.38381), (27.47626, 35.35534, 22.249836), (26.274137, 35.35534, 23.65734), (27.61321, 33.45653, 24.863047), (27.61321, 33.45653, 24.863047), (26.274137, 35.35534, 23.65734), (25, 35.35534, 25), (26.274137, 33.45653, 26.274137), (26.274137, 33.45653, 26.274137), (25, 35.35534, 25), (23.65734, 35.35534, 26.274137), (24.863047, 33.45653, 27.61321), (24.863047, 33.45653, 27.61321), (23.65734, 35.35534, 26.274137), (22.249836, 35.35534, 27.47626), (23.38381, 33.45653, 28.8766), (23.38381, 33.45653, 28.8766), (22.249836, 35.35534, 27.47626), (20.781347, 35.35534, 28.60307), (21.840479, 33.45653, 30.06084), (21.840479, 33.45653, 30.06084), (20.781347, 35.35534, 28.60307), (19.255898, 35.35534, 29.651482), (20.237284, 33.45653, 31.162685), (20.237284, 33.45653, 31.162685), (19.255898, 35.35534, 29.651482), (17.67767, 35.35534, 30.618622), (18.57862, 33.45653, 32.179115), (18.57862, 33.45653, 32.179115), (17.67767, 35.35534, 30.618622), (16.050987, 35.35534, 31.501839), (16.869034, 33.45653, 33.107346), (16.869034, 33.45653, 33.107346), (16.050987, 35.35534, 31.501839), (14.380312, 35.35534, 32.29871), (15.113212, 33.45653, 33.944828), (15.113212, 33.45653, 33.944828), (14.380312, 35.35534, 32.29871), (12.67022, 35.35534, 33.007053), (13.315965, 33.45653, 34.689274), (13.315965, 33.45653, 34.689274), (12.67022, 35.35534, 33.007053), (10.925401, 35.35534, 33.624924), (11.482219, 33.45653, 35.33864), (11.482219, 33.45653, 35.33864), (10.925401, 35.35534, 33.624924), (9.150635, 35.35534, 34.150635), (9.617002, 33.45653, 35.89114), (9.617002, 33.45653, 35.89114), (9.150635, 35.35534, 34.150635), (7.350788, 35.35534, 34.58274), (7.725425, 33.45653, 36.34527), (7.725425, 33.45653, 36.34527), (7.350788, 35.35534, 34.58274), (5.5307937, 35.35534, 34.920055), (5.812673, 33.45653, 36.699776), (5.812673, 33.45653, 36.699776), (5.5307937, 35.35534, 34.920055), (3.6956394, 35.35534, 35.16166), (3.8839893, 33.45653, 36.95369), (3.8839893, 33.45653, 36.95369), (3.6956394, 35.35534, 35.16166), (1.8503555, 35.35534, 35.306885), (1.9446597, 33.45653, 37.10632), (1.9446597, 33.45653, 37.10632), (1.8503555, 35.35534, 35.306885), (2.1648902e-15, 35.35534, 35.35534), (2.2752247e-15, 33.45653, 37.15724), (2.2752247e-15, 33.45653, 37.15724), (2.1648902e-15, 35.35534, 35.35534), (-1.8503555, 35.35534, 35.306885), (-1.9446597, 33.45653, 37.10632), (-1.9446597, 33.45653, 37.10632), (-1.8503555, 35.35534, 35.306885), (-3.6956394, 35.35534, 35.16166), (-3.8839893, 33.45653, 36.95369), (-3.8839893, 33.45653, 36.95369), (-3.6956394, 35.35534, 35.16166), (-5.5307937, 35.35534, 34.920055), (-5.812673, 33.45653, 36.699776), (-5.812673, 33.45653, 36.699776), (-5.5307937, 35.35534, 34.920055), (-7.350788, 35.35534, 34.58274), (-7.725425, 33.45653, 36.34527), (-7.725425, 33.45653, 36.34527), (-7.350788, 35.35534, 34.58274), (-9.150635, 35.35534, 34.150635), (-9.617002, 33.45653, 35.89114), (-9.617002, 33.45653, 35.89114), (-9.150635, 35.35534, 34.150635), (-10.925401, 35.35534, 33.624924), (-11.482219, 33.45653, 35.33864), (-11.482219, 33.45653, 35.33864), (-10.925401, 35.35534, 33.624924), (-12.67022, 35.35534, 33.007053), (-13.315965, 33.45653, 34.689274), (-13.315965, 33.45653, 34.689274), (-12.67022, 35.35534, 33.007053), (-14.380312, 35.35534, 32.29871), (-15.113212, 33.45653, 33.944828), (-15.113212, 33.45653, 33.944828), (-14.380312, 35.35534, 32.29871), (-16.050987, 35.35534, 31.501839), (-16.869034, 33.45653, 33.107346), (-16.869034, 33.45653, 33.107346), (-16.050987, 35.35534, 31.501839), (-17.67767, 35.35534, 30.618622), (-18.57862, 33.45653, 32.179115), (-18.57862, 33.45653, 32.179115), (-17.67767, 35.35534, 30.618622), (-19.255898, 35.35534, 29.651482), (-20.237284, 33.45653, 31.162685), (-20.237284, 33.45653, 31.162685), (-19.255898, 35.35534, 29.651482), (-20.781347, 35.35534, 28.60307), (-21.840479, 33.45653, 30.06084), (-21.840479, 33.45653, 30.06084), (-20.781347, 35.35534, 28.60307), (-22.249836, 35.35534, 27.47626), (-23.38381, 33.45653, 28.8766), (-23.38381, 33.45653, 28.8766), (-22.249836, 35.35534, 27.47626), (-23.65734, 35.35534, 26.274137), (-24.863047, 33.45653, 27.61321), (-24.863047, 33.45653, 27.61321), (-23.65734, 35.35534, 26.274137), (-25, 35.35534, 25), (-26.274137, 33.45653, 26.274137), (-26.274137, 33.45653, 26.274137), (-25, 35.35534, 25), (-26.274137, 35.35534, 23.65734), (-27.61321, 33.45653, 24.863047), (-27.61321, 33.45653, 24.863047), (-26.274137, 35.35534, 23.65734), (-27.47626, 35.35534, 22.249836), (-28.8766, 33.45653, 23.38381), (-28.8766, 33.45653, 23.38381), (-27.47626, 35.35534, 22.249836), (-28.60307, 35.35534, 20.781347), (-30.06084, 33.45653, 21.840479), (-30.06084, 33.45653, 21.840479), (-28.60307, 35.35534, 20.781347), (-29.651482, 35.35534, 19.255898), (-31.162685, 33.45653, 20.237284), (-31.162685, 33.45653, 20.237284), (-29.651482, 35.35534, 19.255898), (-30.618622, 35.35534, 17.67767), (-32.179115, 33.45653, 18.57862), (-32.179115, 33.45653, 18.57862), (-30.618622, 35.35534, 17.67767), (-31.501839, 35.35534, 16.050987), (-33.107346, 33.45653, 16.869034), (-33.107346, 33.45653, 16.869034), (-31.501839, 35.35534, 16.050987), (-32.29871, 35.35534, 14.380312), (-33.944828, 33.45653, 15.113212), (-33.944828, 33.45653, 15.113212), (-32.29871, 35.35534, 14.380312), (-33.007053, 35.35534, 12.67022), (-34.689274, 33.45653, 13.315965), (-34.689274, 33.45653, 13.315965), (-33.007053, 35.35534, 12.67022), (-33.624924, 35.35534, 10.925401), (-35.33864, 33.45653, 11.482219), (-35.33864, 33.45653, 11.482219), (-33.624924, 35.35534, 10.925401), (-34.150635, 35.35534, 9.150635), (-35.89114, 33.45653, 9.617002), (-35.89114, 33.45653, 9.617002), (-34.150635, 35.35534, 9.150635), (-34.58274, 35.35534, 7.350788), (-36.34527, 33.45653, 7.725425), (-36.34527, 33.45653, 7.725425), (-34.58274, 35.35534, 7.350788), (-34.920055, 35.35534, 5.5307937), (-36.699776, 33.45653, 5.812673), (-36.699776, 33.45653, 5.812673), (-34.920055, 35.35534, 5.5307937), (-35.16166, 35.35534, 3.6956394), (-36.95369, 33.45653, 3.8839893), (-36.95369, 33.45653, 3.8839893), (-35.16166, 35.35534, 3.6956394), (-35.306885, 35.35534, 1.8503555), (-37.10632, 33.45653, 1.9446597), (-37.10632, 33.45653, 1.9446597), (-35.306885, 35.35534, 1.8503555), (-35.35534, 35.35534, 4.3297804e-15), (-37.15724, 33.45653, 4.5504495e-15), (-37.15724, 33.45653, 4.5504495e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.306885, 35.35534, -1.8503555), (-37.10632, 33.45653, -1.9446597), (-37.10632, 33.45653, -1.9446597), (-35.306885, 35.35534, -1.8503555), (-35.16166, 35.35534, -3.6956394), (-36.95369, 33.45653, -3.8839893), (-36.95369, 33.45653, -3.8839893), (-35.16166, 35.35534, -3.6956394), (-34.920055, 35.35534, -5.5307937), (-36.699776, 33.45653, -5.812673), (-36.699776, 33.45653, -5.812673), (-34.920055, 35.35534, -5.5307937), (-34.58274, 35.35534, -7.350788), (-36.34527, 33.45653, -7.725425), (-36.34527, 33.45653, -7.725425), (-34.58274, 35.35534, -7.350788), (-34.150635, 35.35534, -9.150635), (-35.89114, 33.45653, -9.617002), (-35.89114, 33.45653, -9.617002), (-34.150635, 35.35534, -9.150635), (-33.624924, 35.35534, -10.925401), (-35.33864, 33.45653, -11.482219), (-35.33864, 33.45653, -11.482219), (-33.624924, 35.35534, -10.925401), (-33.007053, 35.35534, -12.67022), (-34.689274, 33.45653, -13.315965), (-34.689274, 33.45653, -13.315965), (-33.007053, 35.35534, -12.67022), (-32.29871, 35.35534, -14.380312), (-33.944828, 33.45653, -15.113212), (-33.944828, 33.45653, -15.113212), (-32.29871, 35.35534, -14.380312), (-31.501839, 35.35534, -16.050987), (-33.107346, 33.45653, -16.869034), (-33.107346, 33.45653, -16.869034), (-31.501839, 35.35534, -16.050987), (-30.618622, 35.35534, -17.67767), (-32.179115, 33.45653, -18.57862), (-32.179115, 33.45653, -18.57862), (-30.618622, 35.35534, -17.67767), (-29.651482, 35.35534, -19.255898), (-31.162685, 33.45653, -20.237284), (-31.162685, 33.45653, -20.237284), (-29.651482, 35.35534, -19.255898), (-28.60307, 35.35534, -20.781347), (-30.06084, 33.45653, -21.840479), (-30.06084, 33.45653, -21.840479), (-28.60307, 35.35534, -20.781347), (-27.47626, 35.35534, -22.249836), (-28.8766, 33.45653, -23.38381), (-28.8766, 33.45653, -23.38381), (-27.47626, 35.35534, -22.249836), (-26.274137, 35.35534, -23.65734), (-27.61321, 33.45653, -24.863047), (-27.61321, 33.45653, -24.863047), (-26.274137, 35.35534, -23.65734), (-25, 35.35534, -25), (-26.274137, 33.45653, -26.274137), (-26.274137, 33.45653, -26.274137), (-25, 35.35534, -25), (-23.65734, 35.35534, -26.274137), (-24.863047, 33.45653, -27.61321), (-24.863047, 33.45653, -27.61321), (-23.65734, 35.35534, -26.274137), (-22.249836, 35.35534, -27.47626), (-23.38381, 33.45653, -28.8766), (-23.38381, 33.45653, -28.8766), (-22.249836, 35.35534, -27.47626), (-20.781347, 35.35534, -28.60307), (-21.840479, 33.45653, -30.06084), (-21.840479, 33.45653, -30.06084), (-20.781347, 35.35534, -28.60307), (-19.255898, 35.35534, -29.651482), (-20.237284, 33.45653, -31.162685), (-20.237284, 33.45653, -31.162685), (-19.255898, 35.35534, -29.651482), (-17.67767, 35.35534, -30.618622), (-18.57862, 33.45653, -32.179115), (-18.57862, 33.45653, -32.179115), (-17.67767, 35.35534, -30.618622), (-16.050987, 35.35534, -31.501839), (-16.869034, 33.45653, -33.107346), (-16.869034, 33.45653, -33.107346), (-16.050987, 35.35534, -31.501839), (-14.380312, 35.35534, -32.29871), (-15.113212, 33.45653, -33.944828), (-15.113212, 33.45653, -33.944828), (-14.380312, 35.35534, -32.29871), (-12.67022, 35.35534, -33.007053), (-13.315965, 33.45653, -34.689274), (-13.315965, 33.45653, -34.689274), (-12.67022, 35.35534, -33.007053), (-10.925401, 35.35534, -33.624924), (-11.482219, 33.45653, -35.33864), (-11.482219, 33.45653, -35.33864), (-10.925401, 35.35534, -33.624924), (-9.150635, 35.35534, -34.150635), (-9.617002, 33.45653, -35.89114), (-9.617002, 33.45653, -35.89114), (-9.150635, 35.35534, -34.150635), (-7.350788, 35.35534, -34.58274), (-7.725425, 33.45653, -36.34527), (-7.725425, 33.45653, -36.34527), (-7.350788, 35.35534, -34.58274), (-5.5307937, 35.35534, -34.920055), (-5.812673, 33.45653, -36.699776), (-5.812673, 33.45653, -36.699776), (-5.5307937, 35.35534, -34.920055), (-3.6956394, 35.35534, -35.16166), (-3.8839893, 33.45653, -36.95369), (-3.8839893, 33.45653, -36.95369), (-3.6956394, 35.35534, -35.16166), (-1.8503555, 35.35534, -35.306885), (-1.9446597, 33.45653, -37.10632), (-1.9446597, 33.45653, -37.10632), (-1.8503555, 35.35534, -35.306885), (-6.4946704e-15, 35.35534, -35.35534), (-6.8256744e-15, 33.45653, -37.15724), (-6.8256744e-15, 33.45653, -37.15724), (-6.4946704e-15, 35.35534, -35.35534), (1.8503555, 35.35534, -35.306885), (1.9446597, 33.45653, -37.10632), (1.9446597, 33.45653, -37.10632), (1.8503555, 35.35534, -35.306885), (3.6956394, 35.35534, -35.16166), (3.8839893, 33.45653, -36.95369), (3.8839893, 33.45653, -36.95369), (3.6956394, 35.35534, -35.16166), (5.5307937, 35.35534, -34.920055), (5.812673, 33.45653, -36.699776), (5.812673, 33.45653, -36.699776), (5.5307937, 35.35534, -34.920055), (7.350788, 35.35534, -34.58274), (7.725425, 33.45653, -36.34527), (7.725425, 33.45653, -36.34527), (7.350788, 35.35534, -34.58274), (9.150635, 35.35534, -34.150635), (9.617002, 33.45653, -35.89114), (9.617002, 33.45653, -35.89114), (9.150635, 35.35534, -34.150635), (10.925401, 35.35534, -33.624924), (11.482219, 33.45653, -35.33864), (11.482219, 33.45653, -35.33864), (10.925401, 35.35534, -33.624924), (12.67022, 35.35534, -33.007053), (13.315965, 33.45653, -34.689274), (13.315965, 33.45653, -34.689274), (12.67022, 35.35534, -33.007053), (14.380312, 35.35534, -32.29871), (15.113212, 33.45653, -33.944828), (15.113212, 33.45653, -33.944828), (14.380312, 35.35534, -32.29871), (16.050987, 35.35534, -31.501839), (16.869034, 33.45653, -33.107346), (16.869034, 33.45653, -33.107346), (16.050987, 35.35534, -31.501839), (17.67767, 35.35534, -30.618622), (18.57862, 33.45653, -32.179115), (18.57862, 33.45653, -32.179115), (17.67767, 35.35534, -30.618622), (19.255898, 35.35534, -29.651482), (20.237284, 33.45653, -31.162685), (20.237284, 33.45653, -31.162685), (19.255898, 35.35534, -29.651482), (20.781347, 35.35534, -28.60307), (21.840479, 33.45653, -30.06084), (21.840479, 33.45653, -30.06084), (20.781347, 35.35534, -28.60307), (22.249836, 35.35534, -27.47626), (23.38381, 33.45653, -28.8766), (23.38381, 33.45653, -28.8766), (22.249836, 35.35534, -27.47626), (23.65734, 35.35534, -26.274137), (24.863047, 33.45653, -27.61321), (24.863047, 33.45653, -27.61321), (23.65734, 35.35534, -26.274137), (25, 35.35534, -25), (26.274137, 33.45653, -26.274137), (26.274137, 33.45653, -26.274137), (25, 35.35534, -25), (26.274137, 35.35534, -23.65734), (27.61321, 33.45653, -24.863047), (27.61321, 33.45653, -24.863047), (26.274137, 35.35534, -23.65734), (27.47626, 35.35534, -22.249836), (28.8766, 33.45653, -23.38381), (28.8766, 33.45653, -23.38381), (27.47626, 35.35534, -22.249836), (28.60307, 35.35534, -20.781347), (30.06084, 33.45653, -21.840479), (30.06084, 33.45653, -21.840479), (28.60307, 35.35534, -20.781347), (29.651482, 35.35534, -19.255898), (31.162685, 33.45653, -20.237284), (31.162685, 33.45653, -20.237284), (29.651482, 35.35534, -19.255898), (30.618622, 35.35534, -17.67767), (32.179115, 33.45653, -18.57862), (32.179115, 33.45653, -18.57862), (30.618622, 35.35534, -17.67767), (31.501839, 35.35534, -16.050987), (33.107346, 33.45653, -16.869034), (33.107346, 33.45653, -16.869034), (31.501839, 35.35534, -16.050987), (32.29871, 35.35534, -14.380312), (33.944828, 33.45653, -15.113212), (33.944828, 33.45653, -15.113212), (32.29871, 35.35534, -14.380312), (33.007053, 35.35534, -12.67022), (34.689274, 33.45653, -13.315965), (34.689274, 33.45653, -13.315965), (33.007053, 35.35534, -12.67022), (33.624924, 35.35534, -10.925401), (35.33864, 33.45653, -11.482219), (35.33864, 33.45653, -11.482219), (33.624924, 35.35534, -10.925401), (34.150635, 35.35534, -9.150635), (35.89114, 33.45653, -9.617002), (35.89114, 33.45653, -9.617002), (34.150635, 35.35534, -9.150635), (34.58274, 35.35534, -7.350788), (36.34527, 33.45653, -7.725425), (36.34527, 33.45653, -7.725425), (34.58274, 35.35534, -7.350788), (34.920055, 35.35534, -5.5307937), (36.699776, 33.45653, -5.812673), (36.699776, 33.45653, -5.812673), (34.920055, 35.35534, -5.5307937), (35.16166, 35.35534, -3.6956394), (36.95369, 33.45653, -3.8839893), (36.95369, 33.45653, -3.8839893), (35.16166, 35.35534, -3.6956394), (35.306885, 35.35534, -1.8503555), (37.10632, 33.45653, -1.9446597), (37.10632, 33.45653, -1.9446597), (35.306885, 35.35534, -1.8503555), (35.35534, 35.35534, 0), (37.15724, 33.45653, 0), (35.35534, 35.35534, 0), (33.45653, 37.15724, 0), (33.41068, 37.15724, 1.7509795), (35.306885, 35.35534, 1.8503555), (35.306885, 35.35534, 1.8503555), (33.41068, 37.15724, 1.7509795), (33.27325, 37.15724, 3.4971597), (35.16166, 35.35534, 3.6956394), (35.16166, 35.35534, 3.6956394), (33.27325, 37.15724, 3.4971597), (33.044624, 37.15724, 5.2337546), (34.920055, 35.35534, 5.5307937), (34.920055, 35.35534, 5.5307937), (33.044624, 37.15724, 5.2337546), (32.725426, 37.15724, 6.9560037), (34.58274, 35.35534, 7.350788), (34.58274, 35.35534, 7.350788), (32.725426, 37.15724, 6.9560037), (32.31653, 37.15724, 8.659187), (34.150635, 35.35534, 9.150635), (34.150635, 35.35534, 9.150635), (32.31653, 37.15724, 8.659187), (31.819052, 37.15724, 10.338636), (33.624924, 35.35534, 10.925401), (33.624924, 35.35534, 10.925401), (31.819052, 37.15724, 10.338636), (31.234362, 37.15724, 11.989748), (33.007053, 35.35534, 12.67022), (33.007053, 35.35534, 12.67022), (31.234362, 37.15724, 11.989748), (30.564062, 37.15724, 13.607997), (32.29871, 35.35534, 14.380312), (32.29871, 35.35534, 14.380312), (30.564062, 37.15724, 13.607997), (29.809986, 37.15724, 15.188947), (31.501839, 35.35534, 16.050987), (31.501839, 35.35534, 16.050987), (29.809986, 37.15724, 15.188947), (28.974205, 37.15724, 16.728266), (30.618622, 35.35534, 17.67767), (30.618622, 35.35534, 17.67767), (28.974205, 37.15724, 16.728266), (28.059008, 37.15724, 18.221733), (29.651482, 35.35534, 19.255898), (29.651482, 35.35534, 19.255898), (28.059008, 37.15724, 18.221733), (27.066902, 37.15724, 19.665255), (28.60307, 35.35534, 20.781347), (28.60307, 35.35534, 20.781347), (27.066902, 37.15724, 19.665255), (26.000607, 37.15724, 21.054876), (27.47626, 35.35534, 22.249836), (27.47626, 35.35534, 22.249836), (26.000607, 37.15724, 21.054876), (24.863047, 37.15724, 22.38679), (26.274137, 35.35534, 23.65734), (26.274137, 35.35534, 23.65734), (24.863047, 37.15724, 22.38679), (23.65734, 37.15724, 23.65734), (25, 35.35534, 25), (25, 35.35534, 25), (23.65734, 37.15724, 23.65734), (22.38679, 37.15724, 24.863047), (23.65734, 35.35534, 26.274137), (23.65734, 35.35534, 26.274137), (22.38679, 37.15724, 24.863047), (21.054876, 37.15724, 26.000607), (22.249836, 35.35534, 27.47626), (22.249836, 35.35534, 27.47626), (21.054876, 37.15724, 26.000607), (19.665255, 37.15724, 27.066902), (20.781347, 35.35534, 28.60307), (20.781347, 35.35534, 28.60307), (19.665255, 37.15724, 27.066902), (18.221733, 37.15724, 28.059008), (19.255898, 35.35534, 29.651482), (19.255898, 35.35534, 29.651482), (18.221733, 37.15724, 28.059008), (16.728266, 37.15724, 28.974205), (17.67767, 35.35534, 30.618622), (17.67767, 35.35534, 30.618622), (16.728266, 37.15724, 28.974205), (15.188947, 37.15724, 29.809986), (16.050987, 35.35534, 31.501839), (16.050987, 35.35534, 31.501839), (15.188947, 37.15724, 29.809986), (13.607997, 37.15724, 30.564062), (14.380312, 35.35534, 32.29871), (14.380312, 35.35534, 32.29871), (13.607997, 37.15724, 30.564062), (11.989748, 37.15724, 31.234362), (12.67022, 35.35534, 33.007053), (12.67022, 35.35534, 33.007053), (11.989748, 37.15724, 31.234362), (10.338636, 37.15724, 31.819052), (10.925401, 35.35534, 33.624924), (10.925401, 35.35534, 33.624924), (10.338636, 37.15724, 31.819052), (8.659187, 37.15724, 32.31653), (9.150635, 35.35534, 34.150635), (9.150635, 35.35534, 34.150635), (8.659187, 37.15724, 32.31653), (6.9560037, 37.15724, 32.725426), (7.350788, 35.35534, 34.58274), (7.350788, 35.35534, 34.58274), (6.9560037, 37.15724, 32.725426), (5.2337546, 37.15724, 33.044624), (5.5307937, 35.35534, 34.920055), (5.5307937, 35.35534, 34.920055), (5.2337546, 37.15724, 33.044624), (3.4971597, 37.15724, 33.27325), (3.6956394, 35.35534, 35.16166), (3.6956394, 35.35534, 35.16166), (3.4971597, 37.15724, 33.27325), (1.7509795, 37.15724, 33.41068), (1.8503555, 35.35534, 35.306885), (1.8503555, 35.35534, 35.306885), (1.7509795, 37.15724, 33.41068), (2.0486216e-15, 37.15724, 33.45653), (2.1648902e-15, 35.35534, 35.35534), (2.1648902e-15, 35.35534, 35.35534), (2.0486216e-15, 37.15724, 33.45653), (-1.7509795, 37.15724, 33.41068), (-1.8503555, 35.35534, 35.306885), (-1.8503555, 35.35534, 35.306885), (-1.7509795, 37.15724, 33.41068), (-3.4971597, 37.15724, 33.27325), (-3.6956394, 35.35534, 35.16166), (-3.6956394, 35.35534, 35.16166), (-3.4971597, 37.15724, 33.27325), (-5.2337546, 37.15724, 33.044624), (-5.5307937, 35.35534, 34.920055), (-5.5307937, 35.35534, 34.920055), (-5.2337546, 37.15724, 33.044624), (-6.9560037, 37.15724, 32.725426), (-7.350788, 35.35534, 34.58274), (-7.350788, 35.35534, 34.58274), (-6.9560037, 37.15724, 32.725426), (-8.659187, 37.15724, 32.31653), (-9.150635, 35.35534, 34.150635), (-9.150635, 35.35534, 34.150635), (-8.659187, 37.15724, 32.31653), (-10.338636, 37.15724, 31.819052), (-10.925401, 35.35534, 33.624924), (-10.925401, 35.35534, 33.624924), (-10.338636, 37.15724, 31.819052), (-11.989748, 37.15724, 31.234362), (-12.67022, 35.35534, 33.007053), (-12.67022, 35.35534, 33.007053), (-11.989748, 37.15724, 31.234362), (-13.607997, 37.15724, 30.564062), (-14.380312, 35.35534, 32.29871), (-14.380312, 35.35534, 32.29871), (-13.607997, 37.15724, 30.564062), (-15.188947, 37.15724, 29.809986), (-16.050987, 35.35534, 31.501839), (-16.050987, 35.35534, 31.501839), (-15.188947, 37.15724, 29.809986), (-16.728266, 37.15724, 28.974205), (-17.67767, 35.35534, 30.618622), (-17.67767, 35.35534, 30.618622), (-16.728266, 37.15724, 28.974205), (-18.221733, 37.15724, 28.059008), (-19.255898, 35.35534, 29.651482), (-19.255898, 35.35534, 29.651482), (-18.221733, 37.15724, 28.059008), (-19.665255, 37.15724, 27.066902), (-20.781347, 35.35534, 28.60307), (-20.781347, 35.35534, 28.60307), (-19.665255, 37.15724, 27.066902), (-21.054876, 37.15724, 26.000607), (-22.249836, 35.35534, 27.47626), (-22.249836, 35.35534, 27.47626), (-21.054876, 37.15724, 26.000607), (-22.38679, 37.15724, 24.863047), (-23.65734, 35.35534, 26.274137), (-23.65734, 35.35534, 26.274137), (-22.38679, 37.15724, 24.863047), (-23.65734, 37.15724, 23.65734), (-25, 35.35534, 25), (-25, 35.35534, 25), (-23.65734, 37.15724, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.274137, 35.35534, 23.65734), (-26.274137, 35.35534, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.000607, 37.15724, 21.054876), (-27.47626, 35.35534, 22.249836), (-27.47626, 35.35534, 22.249836), (-26.000607, 37.15724, 21.054876), (-27.066902, 37.15724, 19.665255), (-28.60307, 35.35534, 20.781347), (-28.60307, 35.35534, 20.781347), (-27.066902, 37.15724, 19.665255), (-28.059008, 37.15724, 18.221733), (-29.651482, 35.35534, 19.255898), (-29.651482, 35.35534, 19.255898), (-28.059008, 37.15724, 18.221733), (-28.974205, 37.15724, 16.728266), (-30.618622, 35.35534, 17.67767), (-30.618622, 35.35534, 17.67767), (-28.974205, 37.15724, 16.728266), (-29.809986, 37.15724, 15.188947), (-31.501839, 35.35534, 16.050987), (-31.501839, 35.35534, 16.050987), (-29.809986, 37.15724, 15.188947), (-30.564062, 37.15724, 13.607997), (-32.29871, 35.35534, 14.380312), (-32.29871, 35.35534, 14.380312), (-30.564062, 37.15724, 13.607997), (-31.234362, 37.15724, 11.989748), (-33.007053, 35.35534, 12.67022), (-33.007053, 35.35534, 12.67022), (-31.234362, 37.15724, 11.989748), (-31.819052, 37.15724, 10.338636), (-33.624924, 35.35534, 10.925401), (-33.624924, 35.35534, 10.925401), (-31.819052, 37.15724, 10.338636), (-32.31653, 37.15724, 8.659187), (-34.150635, 35.35534, 9.150635), (-34.150635, 35.35534, 9.150635), (-32.31653, 37.15724, 8.659187), (-32.725426, 37.15724, 6.9560037), (-34.58274, 35.35534, 7.350788), (-34.58274, 35.35534, 7.350788), (-32.725426, 37.15724, 6.9560037), (-33.044624, 37.15724, 5.2337546), (-34.920055, 35.35534, 5.5307937), (-34.920055, 35.35534, 5.5307937), (-33.044624, 37.15724, 5.2337546), (-33.27325, 37.15724, 3.4971597), (-35.16166, 35.35534, 3.6956394), (-35.16166, 35.35534, 3.6956394), (-33.27325, 37.15724, 3.4971597), (-33.41068, 37.15724, 1.7509795), (-35.306885, 35.35534, 1.8503555), (-35.306885, 35.35534, 1.8503555), (-33.41068, 37.15724, 1.7509795), (-33.45653, 37.15724, 4.097243e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.35534, 35.35534, 4.3297804e-15), (-33.45653, 37.15724, 4.097243e-15), (-33.41068, 37.15724, -1.7509795), (-35.306885, 35.35534, -1.8503555), (-35.306885, 35.35534, -1.8503555), (-33.41068, 37.15724, -1.7509795), (-33.27325, 37.15724, -3.4971597), (-35.16166, 35.35534, -3.6956394), (-35.16166, 35.35534, -3.6956394), (-33.27325, 37.15724, -3.4971597), (-33.044624, 37.15724, -5.2337546), (-34.920055, 35.35534, -5.5307937), (-34.920055, 35.35534, -5.5307937), (-33.044624, 37.15724, -5.2337546), (-32.725426, 37.15724, -6.9560037), (-34.58274, 35.35534, -7.350788), (-34.58274, 35.35534, -7.350788), (-32.725426, 37.15724, -6.9560037), (-32.31653, 37.15724, -8.659187), (-34.150635, 35.35534, -9.150635), (-34.150635, 35.35534, -9.150635), (-32.31653, 37.15724, -8.659187), (-31.819052, 37.15724, -10.338636), (-33.624924, 35.35534, -10.925401), (-33.624924, 35.35534, -10.925401), (-31.819052, 37.15724, -10.338636), (-31.234362, 37.15724, -11.989748), (-33.007053, 35.35534, -12.67022), (-33.007053, 35.35534, -12.67022), (-31.234362, 37.15724, -11.989748), (-30.564062, 37.15724, -13.607997), (-32.29871, 35.35534, -14.380312), (-32.29871, 35.35534, -14.380312), (-30.564062, 37.15724, -13.607997), (-29.809986, 37.15724, -15.188947), (-31.501839, 35.35534, -16.050987), (-31.501839, 35.35534, -16.050987), (-29.809986, 37.15724, -15.188947), (-28.974205, 37.15724, -16.728266), (-30.618622, 35.35534, -17.67767), (-30.618622, 35.35534, -17.67767), (-28.974205, 37.15724, -16.728266), (-28.059008, 37.15724, -18.221733), (-29.651482, 35.35534, -19.255898), (-29.651482, 35.35534, -19.255898), (-28.059008, 37.15724, -18.221733), (-27.066902, 37.15724, -19.665255), (-28.60307, 35.35534, -20.781347), (-28.60307, 35.35534, -20.781347), (-27.066902, 37.15724, -19.665255), (-26.000607, 37.15724, -21.054876), (-27.47626, 35.35534, -22.249836), (-27.47626, 35.35534, -22.249836), (-26.000607, 37.15724, -21.054876), (-24.863047, 37.15724, -22.38679), (-26.274137, 35.35534, -23.65734), (-26.274137, 35.35534, -23.65734), (-24.863047, 37.15724, -22.38679), (-23.65734, 37.15724, -23.65734), (-25, 35.35534, -25), (-25, 35.35534, -25), (-23.65734, 37.15724, -23.65734), (-22.38679, 37.15724, -24.863047), (-23.65734, 35.35534, -26.274137), (-23.65734, 35.35534, -26.274137), (-22.38679, 37.15724, -24.863047), (-21.054876, 37.15724, -26.000607), (-22.249836, 35.35534, -27.47626), (-22.249836, 35.35534, -27.47626), (-21.054876, 37.15724, -26.000607), (-19.665255, 37.15724, -27.066902), (-20.781347, 35.35534, -28.60307), (-20.781347, 35.35534, -28.60307), (-19.665255, 37.15724, -27.066902), (-18.221733, 37.15724, -28.059008), (-19.255898, 35.35534, -29.651482), (-19.255898, 35.35534, -29.651482), (-18.221733, 37.15724, -28.059008), (-16.728266, 37.15724, -28.974205), (-17.67767, 35.35534, -30.618622), (-17.67767, 35.35534, -30.618622), (-16.728266, 37.15724, -28.974205), (-15.188947, 37.15724, -29.809986), (-16.050987, 35.35534, -31.501839), (-16.050987, 35.35534, -31.501839), (-15.188947, 37.15724, -29.809986), (-13.607997, 37.15724, -30.564062), (-14.380312, 35.35534, -32.29871), (-14.380312, 35.35534, -32.29871), (-13.607997, 37.15724, -30.564062), (-11.989748, 37.15724, -31.234362), (-12.67022, 35.35534, -33.007053), (-12.67022, 35.35534, -33.007053), (-11.989748, 37.15724, -31.234362), (-10.338636, 37.15724, -31.819052), (-10.925401, 35.35534, -33.624924), (-10.925401, 35.35534, -33.624924), (-10.338636, 37.15724, -31.819052), (-8.659187, 37.15724, -32.31653), (-9.150635, 35.35534, -34.150635), (-9.150635, 35.35534, -34.150635), (-8.659187, 37.15724, -32.31653), (-6.9560037, 37.15724, -32.725426), (-7.350788, 35.35534, -34.58274), (-7.350788, 35.35534, -34.58274), (-6.9560037, 37.15724, -32.725426), (-5.2337546, 37.15724, -33.044624), (-5.5307937, 35.35534, -34.920055), (-5.5307937, 35.35534, -34.920055), (-5.2337546, 37.15724, -33.044624), (-3.4971597, 37.15724, -33.27325), (-3.6956394, 35.35534, -35.16166), (-3.6956394, 35.35534, -35.16166), (-3.4971597, 37.15724, -33.27325), (-1.7509795, 37.15724, -33.41068), (-1.8503555, 35.35534, -35.306885), (-1.8503555, 35.35534, -35.306885), (-1.7509795, 37.15724, -33.41068), (-6.145865e-15, 37.15724, -33.45653), (-6.4946704e-15, 35.35534, -35.35534), (-6.4946704e-15, 35.35534, -35.35534), (-6.145865e-15, 37.15724, -33.45653), (1.7509795, 37.15724, -33.41068), (1.8503555, 35.35534, -35.306885), (1.8503555, 35.35534, -35.306885), (1.7509795, 37.15724, -33.41068), (3.4971597, 37.15724, -33.27325), (3.6956394, 35.35534, -35.16166), (3.6956394, 35.35534, -35.16166), (3.4971597, 37.15724, -33.27325), (5.2337546, 37.15724, -33.044624), (5.5307937, 35.35534, -34.920055), (5.5307937, 35.35534, -34.920055), (5.2337546, 37.15724, -33.044624), (6.9560037, 37.15724, -32.725426), (7.350788, 35.35534, -34.58274), (7.350788, 35.35534, -34.58274), (6.9560037, 37.15724, -32.725426), (8.659187, 37.15724, -32.31653), (9.150635, 35.35534, -34.150635), (9.150635, 35.35534, -34.150635), (8.659187, 37.15724, -32.31653), (10.338636, 37.15724, -31.819052), (10.925401, 35.35534, -33.624924), (10.925401, 35.35534, -33.624924), (10.338636, 37.15724, -31.819052), (11.989748, 37.15724, -31.234362), (12.67022, 35.35534, -33.007053), (12.67022, 35.35534, -33.007053), (11.989748, 37.15724, -31.234362), (13.607997, 37.15724, -30.564062), (14.380312, 35.35534, -32.29871), (14.380312, 35.35534, -32.29871), (13.607997, 37.15724, -30.564062), (15.188947, 37.15724, -29.809986), (16.050987, 35.35534, -31.501839), (16.050987, 35.35534, -31.501839), (15.188947, 37.15724, -29.809986), (16.728266, 37.15724, -28.974205), (17.67767, 35.35534, -30.618622), (17.67767, 35.35534, -30.618622), (16.728266, 37.15724, -28.974205), (18.221733, 37.15724, -28.059008), (19.255898, 35.35534, -29.651482), (19.255898, 35.35534, -29.651482), (18.221733, 37.15724, -28.059008), (19.665255, 37.15724, -27.066902), (20.781347, 35.35534, -28.60307), (20.781347, 35.35534, -28.60307), (19.665255, 37.15724, -27.066902), (21.054876, 37.15724, -26.000607), (22.249836, 35.35534, -27.47626), (22.249836, 35.35534, -27.47626), (21.054876, 37.15724, -26.000607), (22.38679, 37.15724, -24.863047), (23.65734, 35.35534, -26.274137), (23.65734, 35.35534, -26.274137), (22.38679, 37.15724, -24.863047), (23.65734, 37.15724, -23.65734), (25, 35.35534, -25), (25, 35.35534, -25), (23.65734, 37.15724, -23.65734), (24.863047, 37.15724, -22.38679), (26.274137, 35.35534, -23.65734), (26.274137, 35.35534, -23.65734), (24.863047, 37.15724, -22.38679), (26.000607, 37.15724, -21.054876), (27.47626, 35.35534, -22.249836), (27.47626, 35.35534, -22.249836), (26.000607, 37.15724, -21.054876), (27.066902, 37.15724, -19.665255), (28.60307, 35.35534, -20.781347), (28.60307, 35.35534, -20.781347), (27.066902, 37.15724, -19.665255), (28.059008, 37.15724, -18.221733), (29.651482, 35.35534, -19.255898), (29.651482, 35.35534, -19.255898), (28.059008, 37.15724, -18.221733), (28.974205, 37.15724, -16.728266), (30.618622, 35.35534, -17.67767), (30.618622, 35.35534, -17.67767), (28.974205, 37.15724, -16.728266), (29.809986, 37.15724, -15.188947), (31.501839, 35.35534, -16.050987), (31.501839, 35.35534, -16.050987), (29.809986, 37.15724, -15.188947), (30.564062, 37.15724, -13.607997), (32.29871, 35.35534, -14.380312), (32.29871, 35.35534, -14.380312), (30.564062, 37.15724, -13.607997), (31.234362, 37.15724, -11.989748), (33.007053, 35.35534, -12.67022), (33.007053, 35.35534, -12.67022), (31.234362, 37.15724, -11.989748), (31.819052, 37.15724, -10.338636), (33.624924, 35.35534, -10.925401), (33.624924, 35.35534, -10.925401), (31.819052, 37.15724, -10.338636), (32.31653, 37.15724, -8.659187), (34.150635, 35.35534, -9.150635), (34.150635, 35.35534, -9.150635), (32.31653, 37.15724, -8.659187), (32.725426, 37.15724, -6.9560037), (34.58274, 35.35534, -7.350788), (34.58274, 35.35534, -7.350788), (32.725426, 37.15724, -6.9560037), (33.044624, 37.15724, -5.2337546), (34.920055, 35.35534, -5.5307937), (34.920055, 35.35534, -5.5307937), (33.044624, 37.15724, -5.2337546), (33.27325, 37.15724, -3.4971597), (35.16166, 35.35534, -3.6956394), (35.16166, 35.35534, -3.6956394), (33.27325, 37.15724, -3.4971597), (33.41068, 37.15724, -1.7509795), (35.306885, 35.35534, -1.8503555), (35.306885, 35.35534, -1.8503555), (33.41068, 37.15724, -1.7509795), (33.45653, 37.15724, 0), (35.35534, 35.35534, 0), (33.45653, 37.15724, 0), (31.466019, 38.8573, 0), (31.422897, 38.8573, 1.6468042), (33.41068, 37.15724, 1.7509795), (33.41068, 37.15724, 1.7509795), (31.422897, 38.8573, 1.6468042), (31.293646, 38.8573, 3.2890947), (33.27325, 37.15724, 3.4971597), (33.27325, 37.15724, 3.4971597), (31.293646, 38.8573, 3.2890947), (31.07862, 38.8573, 4.92237), (33.044624, 37.15724, 5.2337546), (33.044624, 37.15724, 5.2337546), (31.07862, 38.8573, 4.92237), (30.778412, 38.8573, 6.5421534), (32.725426, 37.15724, 6.9560037), (32.725426, 37.15724, 6.9560037), (30.778412, 38.8573, 6.5421534), (30.39384, 38.8573, 8.144005), (32.31653, 37.15724, 8.659187), (32.31653, 37.15724, 8.659187), (30.39384, 38.8573, 8.144005), (29.925962, 38.8573, 9.723535), (31.819052, 37.15724, 10.338636), (31.819052, 37.15724, 10.338636), (29.925962, 38.8573, 9.723535), (29.37606, 38.8573, 11.276413), (31.234362, 37.15724, 11.989748), (31.234362, 37.15724, 11.989748), (29.37606, 38.8573, 11.276413), (28.74564, 38.8573, 12.798383), (30.564062, 37.15724, 13.607997), (30.564062, 37.15724, 13.607997), (28.74564, 38.8573, 12.798383), (28.036428, 38.8573, 14.285274), (29.809986, 37.15724, 15.188947), (29.809986, 37.15724, 15.188947), (28.036428, 38.8573, 14.285274), (27.250372, 38.8573, 15.733009), (28.974205, 37.15724, 16.728266), (28.974205, 37.15724, 16.728266), (27.250372, 38.8573, 15.733009), (26.389624, 38.8573, 17.137623), (28.059008, 37.15724, 18.221733), (28.059008, 37.15724, 18.221733), (26.389624, 38.8573, 17.137623), (25.456545, 38.8573, 18.495262), (27.066902, 37.15724, 19.665255), (27.066902, 37.15724, 19.665255), (25.456545, 38.8573, 18.495262), (24.45369, 38.8573, 19.802208), (26.000607, 37.15724, 21.054876), (26.000607, 37.15724, 21.054876), (24.45369, 38.8573, 19.802208), (23.38381, 38.8573, 21.054876), (24.863047, 37.15724, 22.38679), (24.863047, 37.15724, 22.38679), (23.38381, 38.8573, 21.054876), (22.249836, 38.8573, 22.249836), (23.65734, 37.15724, 23.65734), (23.65734, 37.15724, 23.65734), (22.249836, 38.8573, 22.249836), (21.054876, 38.8573, 23.38381), (22.38679, 37.15724, 24.863047), (22.38679, 37.15724, 24.863047), (21.054876, 38.8573, 23.38381), (19.802208, 38.8573, 24.45369), (21.054876, 37.15724, 26.000607), (21.054876, 37.15724, 26.000607), (19.802208, 38.8573, 24.45369), (18.495262, 38.8573, 25.456545), (19.665255, 37.15724, 27.066902), (19.665255, 37.15724, 27.066902), (18.495262, 38.8573, 25.456545), (17.137623, 38.8573, 26.389624), (18.221733, 37.15724, 28.059008), (18.221733, 37.15724, 28.059008), (17.137623, 38.8573, 26.389624), (15.733009, 38.8573, 27.250372), (16.728266, 37.15724, 28.974205), (16.728266, 37.15724, 28.974205), (15.733009, 38.8573, 27.250372), (14.285274, 38.8573, 28.036428), (15.188947, 37.15724, 29.809986), (15.188947, 37.15724, 29.809986), (14.285274, 38.8573, 28.036428), (12.798383, 38.8573, 28.74564), (13.607997, 37.15724, 30.564062), (13.607997, 37.15724, 30.564062), (12.798383, 38.8573, 28.74564), (11.276413, 38.8573, 29.37606), (11.989748, 37.15724, 31.234362), (11.989748, 37.15724, 31.234362), (11.276413, 38.8573, 29.37606), (9.723535, 38.8573, 29.925962), (10.338636, 37.15724, 31.819052), (10.338636, 37.15724, 31.819052), (9.723535, 38.8573, 29.925962), (8.144005, 38.8573, 30.39384), (8.659187, 37.15724, 32.31653), (8.659187, 37.15724, 32.31653), (8.144005, 38.8573, 30.39384), (6.5421534, 38.8573, 30.778412), (6.9560037, 37.15724, 32.725426), (6.9560037, 37.15724, 32.725426), (6.5421534, 38.8573, 30.778412), (4.92237, 38.8573, 31.07862), (5.2337546, 37.15724, 33.044624), (5.2337546, 37.15724, 33.044624), (4.92237, 38.8573, 31.07862), (3.2890947, 38.8573, 31.293646), (3.4971597, 37.15724, 33.27325), (3.4971597, 37.15724, 33.27325), (3.2890947, 38.8573, 31.293646), (1.6468042, 38.8573, 31.422897), (1.7509795, 37.15724, 33.41068), (1.7509795, 37.15724, 33.41068), (1.6468042, 38.8573, 31.422897), (1.926738e-15, 38.8573, 31.466019), (2.0486216e-15, 37.15724, 33.45653), (2.0486216e-15, 37.15724, 33.45653), (1.926738e-15, 38.8573, 31.466019), (-1.6468042, 38.8573, 31.422897), (-1.7509795, 37.15724, 33.41068), (-1.7509795, 37.15724, 33.41068), (-1.6468042, 38.8573, 31.422897), (-3.2890947, 38.8573, 31.293646), (-3.4971597, 37.15724, 33.27325), (-3.4971597, 37.15724, 33.27325), (-3.2890947, 38.8573, 31.293646), (-4.92237, 38.8573, 31.07862), (-5.2337546, 37.15724, 33.044624), (-5.2337546, 37.15724, 33.044624), (-4.92237, 38.8573, 31.07862), (-6.5421534, 38.8573, 30.778412), (-6.9560037, 37.15724, 32.725426), (-6.9560037, 37.15724, 32.725426), (-6.5421534, 38.8573, 30.778412), (-8.144005, 38.8573, 30.39384), (-8.659187, 37.15724, 32.31653), (-8.659187, 37.15724, 32.31653), (-8.144005, 38.8573, 30.39384), (-9.723535, 38.8573, 29.925962), (-10.338636, 37.15724, 31.819052), (-10.338636, 37.15724, 31.819052), (-9.723535, 38.8573, 29.925962), (-11.276413, 38.8573, 29.37606), (-11.989748, 37.15724, 31.234362), (-11.989748, 37.15724, 31.234362), (-11.276413, 38.8573, 29.37606), (-12.798383, 38.8573, 28.74564), (-13.607997, 37.15724, 30.564062), (-13.607997, 37.15724, 30.564062), (-12.798383, 38.8573, 28.74564), (-14.285274, 38.8573, 28.036428), (-15.188947, 37.15724, 29.809986), (-15.188947, 37.15724, 29.809986), (-14.285274, 38.8573, 28.036428), (-15.733009, 38.8573, 27.250372), (-16.728266, 37.15724, 28.974205), (-16.728266, 37.15724, 28.974205), (-15.733009, 38.8573, 27.250372), (-17.137623, 38.8573, 26.389624), (-18.221733, 37.15724, 28.059008), (-18.221733, 37.15724, 28.059008), (-17.137623, 38.8573, 26.389624), (-18.495262, 38.8573, 25.456545), (-19.665255, 37.15724, 27.066902), (-19.665255, 37.15724, 27.066902), (-18.495262, 38.8573, 25.456545), (-19.802208, 38.8573, 24.45369), (-21.054876, 37.15724, 26.000607), (-21.054876, 37.15724, 26.000607), (-19.802208, 38.8573, 24.45369), (-21.054876, 38.8573, 23.38381), (-22.38679, 37.15724, 24.863047), (-22.38679, 37.15724, 24.863047), (-21.054876, 38.8573, 23.38381), (-22.249836, 38.8573, 22.249836), (-23.65734, 37.15724, 23.65734), (-23.65734, 37.15724, 23.65734), (-22.249836, 38.8573, 22.249836), (-23.38381, 38.8573, 21.054876), (-24.863047, 37.15724, 22.38679), (-24.863047, 37.15724, 22.38679), (-23.38381, 38.8573, 21.054876), (-24.45369, 38.8573, 19.802208), (-26.000607, 37.15724, 21.054876), (-26.000607, 37.15724, 21.054876), (-24.45369, 38.8573, 19.802208), (-25.456545, 38.8573, 18.495262), (-27.066902, 37.15724, 19.665255), (-27.066902, 37.15724, 19.665255), (-25.456545, 38.8573, 18.495262), (-26.389624, 38.8573, 17.137623), (-28.059008, 37.15724, 18.221733), (-28.059008, 37.15724, 18.221733), (-26.389624, 38.8573, 17.137623), (-27.250372, 38.8573, 15.733009), (-28.974205, 37.15724, 16.728266), (-28.974205, 37.15724, 16.728266), (-27.250372, 38.8573, 15.733009), (-28.036428, 38.8573, 14.285274), (-29.809986, 37.15724, 15.188947), (-29.809986, 37.15724, 15.188947), (-28.036428, 38.8573, 14.285274), (-28.74564, 38.8573, 12.798383), (-30.564062, 37.15724, 13.607997), (-30.564062, 37.15724, 13.607997), (-28.74564, 38.8573, 12.798383), (-29.37606, 38.8573, 11.276413), (-31.234362, 37.15724, 11.989748), (-31.234362, 37.15724, 11.989748), (-29.37606, 38.8573, 11.276413), (-29.925962, 38.8573, 9.723535), (-31.819052, 37.15724, 10.338636), (-31.819052, 37.15724, 10.338636), (-29.925962, 38.8573, 9.723535), (-30.39384, 38.8573, 8.144005), (-32.31653, 37.15724, 8.659187), (-32.31653, 37.15724, 8.659187), (-30.39384, 38.8573, 8.144005), (-30.778412, 38.8573, 6.5421534), (-32.725426, 37.15724, 6.9560037), (-32.725426, 37.15724, 6.9560037), (-30.778412, 38.8573, 6.5421534), (-31.07862, 38.8573, 4.92237), (-33.044624, 37.15724, 5.2337546), (-33.044624, 37.15724, 5.2337546), (-31.07862, 38.8573, 4.92237), (-31.293646, 38.8573, 3.2890947), (-33.27325, 37.15724, 3.4971597), (-33.27325, 37.15724, 3.4971597), (-31.293646, 38.8573, 3.2890947), (-31.422897, 38.8573, 1.6468042), (-33.41068, 37.15724, 1.7509795), (-33.41068, 37.15724, 1.7509795), (-31.422897, 38.8573, 1.6468042), (-31.466019, 38.8573, 3.853476e-15), (-33.45653, 37.15724, 4.097243e-15), (-33.45653, 37.15724, 4.097243e-15), (-31.466019, 38.8573, 3.853476e-15), (-31.422897, 38.8573, -1.6468042), (-33.41068, 37.15724, -1.7509795), (-33.41068, 37.15724, -1.7509795), (-31.422897, 38.8573, -1.6468042), (-31.293646, 38.8573, -3.2890947), (-33.27325, 37.15724, -3.4971597), (-33.27325, 37.15724, -3.4971597), (-31.293646, 38.8573, -3.2890947), (-31.07862, 38.8573, -4.92237), (-33.044624, 37.15724, -5.2337546), (-33.044624, 37.15724, -5.2337546), (-31.07862, 38.8573, -4.92237), (-30.778412, 38.8573, -6.5421534), (-32.725426, 37.15724, -6.9560037), (-32.725426, 37.15724, -6.9560037), (-30.778412, 38.8573, -6.5421534), (-30.39384, 38.8573, -8.144005), (-32.31653, 37.15724, -8.659187), (-32.31653, 37.15724, -8.659187), (-30.39384, 38.8573, -8.144005), (-29.925962, 38.8573, -9.723535), (-31.819052, 37.15724, -10.338636), (-31.819052, 37.15724, -10.338636), (-29.925962, 38.8573, -9.723535), (-29.37606, 38.8573, -11.276413), (-31.234362, 37.15724, -11.989748), (-31.234362, 37.15724, -11.989748), (-29.37606, 38.8573, -11.276413), (-28.74564, 38.8573, -12.798383), (-30.564062, 37.15724, -13.607997), (-30.564062, 37.15724, -13.607997), (-28.74564, 38.8573, -12.798383), (-28.036428, 38.8573, -14.285274), (-29.809986, 37.15724, -15.188947), (-29.809986, 37.15724, -15.188947), (-28.036428, 38.8573, -14.285274), (-27.250372, 38.8573, -15.733009), (-28.974205, 37.15724, -16.728266), (-28.974205, 37.15724, -16.728266), (-27.250372, 38.8573, -15.733009), (-26.389624, 38.8573, -17.137623), (-28.059008, 37.15724, -18.221733), (-28.059008, 37.15724, -18.221733), (-26.389624, 38.8573, -17.137623), (-25.456545, 38.8573, -18.495262), (-27.066902, 37.15724, -19.665255), (-27.066902, 37.15724, -19.665255), (-25.456545, 38.8573, -18.495262), (-24.45369, 38.8573, -19.802208), (-26.000607, 37.15724, -21.054876), (-26.000607, 37.15724, -21.054876), (-24.45369, 38.8573, -19.802208), (-23.38381, 38.8573, -21.054876), (-24.863047, 37.15724, -22.38679), (-24.863047, 37.15724, -22.38679), (-23.38381, 38.8573, -21.054876), (-22.249836, 38.8573, -22.249836), (-23.65734, 37.15724, -23.65734), (-23.65734, 37.15724, -23.65734), (-22.249836, 38.8573, -22.249836), (-21.054876, 38.8573, -23.38381), (-22.38679, 37.15724, -24.863047), (-22.38679, 37.15724, -24.863047), (-21.054876, 38.8573, -23.38381), (-19.802208, 38.8573, -24.45369), (-21.054876, 37.15724, -26.000607), (-21.054876, 37.15724, -26.000607), (-19.802208, 38.8573, -24.45369), (-18.495262, 38.8573, -25.456545), (-19.665255, 37.15724, -27.066902), (-19.665255, 37.15724, -27.066902), (-18.495262, 38.8573, -25.456545), (-17.137623, 38.8573, -26.389624), (-18.221733, 37.15724, -28.059008), (-18.221733, 37.15724, -28.059008), (-17.137623, 38.8573, -26.389624), (-15.733009, 38.8573, -27.250372), (-16.728266, 37.15724, -28.974205), (-16.728266, 37.15724, -28.974205), (-15.733009, 38.8573, -27.250372), (-14.285274, 38.8573, -28.036428), (-15.188947, 37.15724, -29.809986), (-15.188947, 37.15724, -29.809986), (-14.285274, 38.8573, -28.036428), (-12.798383, 38.8573, -28.74564), (-13.607997, 37.15724, -30.564062), (-13.607997, 37.15724, -30.564062), (-12.798383, 38.8573, -28.74564), (-11.276413, 38.8573, -29.37606), (-11.989748, 37.15724, -31.234362), (-11.989748, 37.15724, -31.234362), (-11.276413, 38.8573, -29.37606), (-9.723535, 38.8573, -29.925962), (-10.338636, 37.15724, -31.819052), (-10.338636, 37.15724, -31.819052), (-9.723535, 38.8573, -29.925962), (-8.144005, 38.8573, -30.39384), (-8.659187, 37.15724, -32.31653), (-8.659187, 37.15724, -32.31653), (-8.144005, 38.8573, -30.39384), (-6.5421534, 38.8573, -30.778412), (-6.9560037, 37.15724, -32.725426), (-6.9560037, 37.15724, -32.725426), (-6.5421534, 38.8573, -30.778412), (-4.92237, 38.8573, -31.07862), (-5.2337546, 37.15724, -33.044624), (-5.2337546, 37.15724, -33.044624), (-4.92237, 38.8573, -31.07862), (-3.2890947, 38.8573, -31.293646), (-3.4971597, 37.15724, -33.27325), (-3.4971597, 37.15724, -33.27325), (-3.2890947, 38.8573, -31.293646), (-1.6468042, 38.8573, -31.422897), (-1.7509795, 37.15724, -33.41068), (-1.7509795, 37.15724, -33.41068), (-1.6468042, 38.8573, -31.422897), (-5.780214e-15, 38.8573, -31.466019), (-6.145865e-15, 37.15724, -33.45653), (-6.145865e-15, 37.15724, -33.45653), (-5.780214e-15, 38.8573, -31.466019), (1.6468042, 38.8573, -31.422897), (1.7509795, 37.15724, -33.41068), (1.7509795, 37.15724, -33.41068), (1.6468042, 38.8573, -31.422897), (3.2890947, 38.8573, -31.293646), (3.4971597, 37.15724, -33.27325), (3.4971597, 37.15724, -33.27325), (3.2890947, 38.8573, -31.293646), (4.92237, 38.8573, -31.07862), (5.2337546, 37.15724, -33.044624), (5.2337546, 37.15724, -33.044624), (4.92237, 38.8573, -31.07862), (6.5421534, 38.8573, -30.778412), (6.9560037, 37.15724, -32.725426), (6.9560037, 37.15724, -32.725426), (6.5421534, 38.8573, -30.778412), (8.144005, 38.8573, -30.39384), (8.659187, 37.15724, -32.31653), (8.659187, 37.15724, -32.31653), (8.144005, 38.8573, -30.39384), (9.723535, 38.8573, -29.925962), (10.338636, 37.15724, -31.819052), (10.338636, 37.15724, -31.819052), (9.723535, 38.8573, -29.925962), (11.276413, 38.8573, -29.37606), (11.989748, 37.15724, -31.234362), (11.989748, 37.15724, -31.234362), (11.276413, 38.8573, -29.37606), (12.798383, 38.8573, -28.74564), (13.607997, 37.15724, -30.564062), (13.607997, 37.15724, -30.564062), (12.798383, 38.8573, -28.74564), (14.285274, 38.8573, -28.036428), (15.188947, 37.15724, -29.809986), (15.188947, 37.15724, -29.809986), (14.285274, 38.8573, -28.036428), (15.733009, 38.8573, -27.250372), (16.728266, 37.15724, -28.974205), (16.728266, 37.15724, -28.974205), (15.733009, 38.8573, -27.250372), (17.137623, 38.8573, -26.389624), (18.221733, 37.15724, -28.059008), (18.221733, 37.15724, -28.059008), (17.137623, 38.8573, -26.389624), (18.495262, 38.8573, -25.456545), (19.665255, 37.15724, -27.066902), (19.665255, 37.15724, -27.066902), (18.495262, 38.8573, -25.456545), (19.802208, 38.8573, -24.45369), (21.054876, 37.15724, -26.000607), (21.054876, 37.15724, -26.000607), (19.802208, 38.8573, -24.45369), (21.054876, 38.8573, -23.38381), (22.38679, 37.15724, -24.863047), (22.38679, 37.15724, -24.863047), (21.054876, 38.8573, -23.38381), (22.249836, 38.8573, -22.249836), (23.65734, 37.15724, -23.65734), (23.65734, 37.15724, -23.65734), (22.249836, 38.8573, -22.249836), (23.38381, 38.8573, -21.054876), (24.863047, 37.15724, -22.38679), (24.863047, 37.15724, -22.38679), (23.38381, 38.8573, -21.054876), (24.45369, 38.8573, -19.802208), (26.000607, 37.15724, -21.054876), (26.000607, 37.15724, -21.054876), (24.45369, 38.8573, -19.802208), (25.456545, 38.8573, -18.495262), (27.066902, 37.15724, -19.665255), (27.066902, 37.15724, -19.665255), (25.456545, 38.8573, -18.495262), (26.389624, 38.8573, -17.137623), (28.059008, 37.15724, -18.221733), (28.059008, 37.15724, -18.221733), (26.389624, 38.8573, -17.137623), (27.250372, 38.8573, -15.733009), (28.974205, 37.15724, -16.728266), (28.974205, 37.15724, -16.728266), (27.250372, 38.8573, -15.733009), (28.036428, 38.8573, -14.285274), (29.809986, 37.15724, -15.188947), (29.809986, 37.15724, -15.188947), (28.036428, 38.8573, -14.285274), (28.74564, 38.8573, -12.798383), (30.564062, 37.15724, -13.607997), (30.564062, 37.15724, -13.607997), (28.74564, 38.8573, -12.798383), (29.37606, 38.8573, -11.276413), (31.234362, 37.15724, -11.989748), (31.234362, 37.15724, -11.989748), (29.37606, 38.8573, -11.276413), (29.925962, 38.8573, -9.723535), (31.819052, 37.15724, -10.338636), (31.819052, 37.15724, -10.338636), (29.925962, 38.8573, -9.723535), (30.39384, 38.8573, -8.144005), (32.31653, 37.15724, -8.659187), (32.31653, 37.15724, -8.659187), (30.39384, 38.8573, -8.144005), (30.778412, 38.8573, -6.5421534), (32.725426, 37.15724, -6.9560037), (32.725426, 37.15724, -6.9560037), (30.778412, 38.8573, -6.5421534), (31.07862, 38.8573, -4.92237), (33.044624, 37.15724, -5.2337546), (33.044624, 37.15724, -5.2337546), (31.07862, 38.8573, -4.92237), (31.293646, 38.8573, -3.2890947), (33.27325, 37.15724, -3.4971597), (33.27325, 37.15724, -3.4971597), (31.293646, 38.8573, -3.2890947), (31.422897, 38.8573, -1.6468042), (33.41068, 37.15724, -1.7509795), (33.41068, 37.15724, -1.7509795), (31.422897, 38.8573, -1.6468042), (31.466019, 38.8573, 0), (33.45653, 37.15724, 0), (31.466019, 38.8573, 0), (29.389263, 40.45085, 0), (29.348986, 40.45085, 1.5381151), (31.422897, 38.8573, 1.6468042), (31.422897, 38.8573, 1.6468042), (29.348986, 40.45085, 1.5381151), (29.228266, 40.45085, 3.0720146), (31.293646, 38.8573, 3.2890947), (31.293646, 38.8573, 3.2890947), (29.228266, 40.45085, 3.0720146), (29.027431, 40.45085, 4.5974936), (31.07862, 38.8573, 4.92237), (31.07862, 38.8573, 4.92237), (29.027431, 40.45085, 4.5974936), (28.747036, 40.45085, 6.110371), (30.778412, 38.8573, 6.5421534), (30.778412, 38.8573, 6.5421534), (28.747036, 40.45085, 6.110371), (28.387848, 40.45085, 7.606501), (30.39384, 38.8573, 8.144005), (30.39384, 38.8573, 8.144005), (28.387848, 40.45085, 7.606501), (27.95085, 40.45085, 9.081781), (29.925962, 38.8573, 9.723535), (29.925962, 38.8573, 9.723535), (27.95085, 40.45085, 9.081781), (27.43724, 40.45085, 10.532169), (29.37606, 38.8573, 11.276413), (29.37606, 38.8573, 11.276413), (27.43724, 40.45085, 10.532169), (26.848427, 40.45085, 11.95369), (28.74564, 38.8573, 12.798383), (28.74564, 38.8573, 12.798383), (26.848427, 40.45085, 11.95369), (26.186026, 40.45085, 13.342446), (28.036428, 38.8573, 14.285274), (28.036428, 38.8573, 14.285274), (26.186026, 40.45085, 13.342446), (25.451847, 40.45085, 14.694632), (27.250372, 38.8573, 15.733009), (27.250372, 38.8573, 15.733009), (25.451847, 40.45085, 14.694632), (24.64791, 40.45085, 16.00654), (26.389624, 38.8573, 17.137623), (26.389624, 38.8573, 17.137623), (24.64791, 40.45085, 16.00654), (23.776413, 40.45085, 17.274574), (25.456545, 38.8573, 18.495262), (25.456545, 38.8573, 18.495262), (23.776413, 40.45085, 17.274574), (22.839746, 40.45085, 18.495262), (24.45369, 38.8573, 19.802208), (24.45369, 38.8573, 19.802208), (22.839746, 40.45085, 18.495262), (21.840479, 40.45085, 19.665255), (23.38381, 38.8573, 21.054876), (23.38381, 38.8573, 21.054876), (21.840479, 40.45085, 19.665255), (20.781347, 40.45085, 20.781347), (22.249836, 38.8573, 22.249836), (22.249836, 38.8573, 22.249836), (20.781347, 40.45085, 20.781347), (19.665255, 40.45085, 21.840479), (21.054876, 38.8573, 23.38381), (21.054876, 38.8573, 23.38381), (19.665255, 40.45085, 21.840479), (18.495262, 40.45085, 22.839746), (19.802208, 38.8573, 24.45369), (19.802208, 38.8573, 24.45369), (18.495262, 40.45085, 22.839746), (17.274574, 40.45085, 23.776413), (18.495262, 38.8573, 25.456545), (18.495262, 38.8573, 25.456545), (17.274574, 40.45085, 23.776413), (16.00654, 40.45085, 24.64791), (17.137623, 38.8573, 26.389624), (17.137623, 38.8573, 26.389624), (16.00654, 40.45085, 24.64791), (14.694632, 40.45085, 25.451847), (15.733009, 38.8573, 27.250372), (15.733009, 38.8573, 27.250372), (14.694632, 40.45085, 25.451847), (13.342446, 40.45085, 26.186026), (14.285274, 38.8573, 28.036428), (14.285274, 38.8573, 28.036428), (13.342446, 40.45085, 26.186026), (11.95369, 40.45085, 26.848427), (12.798383, 38.8573, 28.74564), (12.798383, 38.8573, 28.74564), (11.95369, 40.45085, 26.848427), (10.532169, 40.45085, 27.43724), (11.276413, 38.8573, 29.37606), (11.276413, 38.8573, 29.37606), (10.532169, 40.45085, 27.43724), (9.081781, 40.45085, 27.95085), (9.723535, 38.8573, 29.925962), (9.723535, 38.8573, 29.925962), (9.081781, 40.45085, 27.95085), (7.606501, 40.45085, 28.387848), (8.144005, 38.8573, 30.39384), (8.144005, 38.8573, 30.39384), (7.606501, 40.45085, 28.387848), (6.110371, 40.45085, 28.747036), (6.5421534, 38.8573, 30.778412), (6.5421534, 38.8573, 30.778412), (6.110371, 40.45085, 28.747036), (4.5974936, 40.45085, 29.027431), (4.92237, 38.8573, 31.07862), (4.92237, 38.8573, 31.07862), (4.5974936, 40.45085, 29.027431), (3.0720146, 40.45085, 29.228266), (3.2890947, 38.8573, 31.293646), (3.2890947, 38.8573, 31.293646), (3.0720146, 40.45085, 29.228266), (1.5381151, 40.45085, 29.348986), (1.6468042, 38.8573, 31.422897), (1.6468042, 38.8573, 31.422897), (1.5381151, 40.45085, 29.348986), (1.7995734e-15, 40.45085, 29.389263), (1.926738e-15, 38.8573, 31.466019), (1.926738e-15, 38.8573, 31.466019), (1.7995734e-15, 40.45085, 29.389263), (-1.5381151, 40.45085, 29.348986), (-1.6468042, 38.8573, 31.422897), (-1.6468042, 38.8573, 31.422897), (-1.5381151, 40.45085, 29.348986), (-3.0720146, 40.45085, 29.228266), (-3.2890947, 38.8573, 31.293646), (-3.2890947, 38.8573, 31.293646), (-3.0720146, 40.45085, 29.228266), (-4.5974936, 40.45085, 29.027431), (-4.92237, 38.8573, 31.07862), (-4.92237, 38.8573, 31.07862), (-4.5974936, 40.45085, 29.027431), (-6.110371, 40.45085, 28.747036), (-6.5421534, 38.8573, 30.778412), (-6.5421534, 38.8573, 30.778412), (-6.110371, 40.45085, 28.747036), (-7.606501, 40.45085, 28.387848), (-8.144005, 38.8573, 30.39384), (-8.144005, 38.8573, 30.39384), (-7.606501, 40.45085, 28.387848), (-9.081781, 40.45085, 27.95085), (-9.723535, 38.8573, 29.925962), (-9.723535, 38.8573, 29.925962), (-9.081781, 40.45085, 27.95085), (-10.532169, 40.45085, 27.43724), (-11.276413, 38.8573, 29.37606), (-11.276413, 38.8573, 29.37606), (-10.532169, 40.45085, 27.43724), (-11.95369, 40.45085, 26.848427), (-12.798383, 38.8573, 28.74564), (-12.798383, 38.8573, 28.74564), (-11.95369, 40.45085, 26.848427), (-13.342446, 40.45085, 26.186026), (-14.285274, 38.8573, 28.036428), (-14.285274, 38.8573, 28.036428), (-13.342446, 40.45085, 26.186026), (-14.694632, 40.45085, 25.451847), (-15.733009, 38.8573, 27.250372), (-15.733009, 38.8573, 27.250372), (-14.694632, 40.45085, 25.451847), (-16.00654, 40.45085, 24.64791), (-17.137623, 38.8573, 26.389624), (-17.137623, 38.8573, 26.389624), (-16.00654, 40.45085, 24.64791), (-17.274574, 40.45085, 23.776413), (-18.495262, 38.8573, 25.456545), (-18.495262, 38.8573, 25.456545), (-17.274574, 40.45085, 23.776413), (-18.495262, 40.45085, 22.839746), (-19.802208, 38.8573, 24.45369), (-19.802208, 38.8573, 24.45369), (-18.495262, 40.45085, 22.839746), (-19.665255, 40.45085, 21.840479), (-21.054876, 38.8573, 23.38381), (-21.054876, 38.8573, 23.38381), (-19.665255, 40.45085, 21.840479), (-20.781347, 40.45085, 20.781347), (-22.249836, 38.8573, 22.249836), (-22.249836, 38.8573, 22.249836), (-20.781347, 40.45085, 20.781347), (-21.840479, 40.45085, 19.665255), (-23.38381, 38.8573, 21.054876), (-23.38381, 38.8573, 21.054876), (-21.840479, 40.45085, 19.665255), (-22.839746, 40.45085, 18.495262), (-24.45369, 38.8573, 19.802208), (-24.45369, 38.8573, 19.802208), (-22.839746, 40.45085, 18.495262), (-23.776413, 40.45085, 17.274574), (-25.456545, 38.8573, 18.495262), (-25.456545, 38.8573, 18.495262), (-23.776413, 40.45085, 17.274574), (-24.64791, 40.45085, 16.00654), (-26.389624, 38.8573, 17.137623), (-26.389624, 38.8573, 17.137623), (-24.64791, 40.45085, 16.00654), (-25.451847, 40.45085, 14.694632), (-27.250372, 38.8573, 15.733009), (-27.250372, 38.8573, 15.733009), (-25.451847, 40.45085, 14.694632), (-26.186026, 40.45085, 13.342446), (-28.036428, 38.8573, 14.285274), (-28.036428, 38.8573, 14.285274), (-26.186026, 40.45085, 13.342446), (-26.848427, 40.45085, 11.95369), (-28.74564, 38.8573, 12.798383), (-28.74564, 38.8573, 12.798383), (-26.848427, 40.45085, 11.95369), (-27.43724, 40.45085, 10.532169), (-29.37606, 38.8573, 11.276413), (-29.37606, 38.8573, 11.276413), (-27.43724, 40.45085, 10.532169), (-27.95085, 40.45085, 9.081781), (-29.925962, 38.8573, 9.723535), (-29.925962, 38.8573, 9.723535), (-27.95085, 40.45085, 9.081781), (-28.387848, 40.45085, 7.606501), (-30.39384, 38.8573, 8.144005), (-30.39384, 38.8573, 8.144005), (-28.387848, 40.45085, 7.606501), (-28.747036, 40.45085, 6.110371), (-30.778412, 38.8573, 6.5421534), (-30.778412, 38.8573, 6.5421534), (-28.747036, 40.45085, 6.110371), (-29.027431, 40.45085, 4.5974936), (-31.07862, 38.8573, 4.92237), (-31.07862, 38.8573, 4.92237), (-29.027431, 40.45085, 4.5974936), (-29.228266, 40.45085, 3.0720146), (-31.293646, 38.8573, 3.2890947), (-31.293646, 38.8573, 3.2890947), (-29.228266, 40.45085, 3.0720146), (-29.348986, 40.45085, 1.5381151), (-31.422897, 38.8573, 1.6468042), (-31.422897, 38.8573, 1.6468042), (-29.348986, 40.45085, 1.5381151), (-29.389263, 40.45085, 3.5991468e-15), (-31.466019, 38.8573, 3.853476e-15), (-31.466019, 38.8573, 3.853476e-15), (-29.389263, 40.45085, 3.5991468e-15), (-29.348986, 40.45085, -1.5381151), (-31.422897, 38.8573, -1.6468042), (-31.422897, 38.8573, -1.6468042), (-29.348986, 40.45085, -1.5381151), (-29.228266, 40.45085, -3.0720146), (-31.293646, 38.8573, -3.2890947), (-31.293646, 38.8573, -3.2890947), (-29.228266, 40.45085, -3.0720146), (-29.027431, 40.45085, -4.5974936), (-31.07862, 38.8573, -4.92237), (-31.07862, 38.8573, -4.92237), (-29.027431, 40.45085, -4.5974936), (-28.747036, 40.45085, -6.110371), (-30.778412, 38.8573, -6.5421534), (-30.778412, 38.8573, -6.5421534), (-28.747036, 40.45085, -6.110371), (-28.387848, 40.45085, -7.606501), (-30.39384, 38.8573, -8.144005), (-30.39384, 38.8573, -8.144005), (-28.387848, 40.45085, -7.606501), (-27.95085, 40.45085, -9.081781), (-29.925962, 38.8573, -9.723535), (-29.925962, 38.8573, -9.723535), (-27.95085, 40.45085, -9.081781), (-27.43724, 40.45085, -10.532169), (-29.37606, 38.8573, -11.276413), (-29.37606, 38.8573, -11.276413), (-27.43724, 40.45085, -10.532169), (-26.848427, 40.45085, -11.95369), (-28.74564, 38.8573, -12.798383), (-28.74564, 38.8573, -12.798383), (-26.848427, 40.45085, -11.95369), (-26.186026, 40.45085, -13.342446), (-28.036428, 38.8573, -14.285274), (-28.036428, 38.8573, -14.285274), (-26.186026, 40.45085, -13.342446), (-25.451847, 40.45085, -14.694632), (-27.250372, 38.8573, -15.733009), (-27.250372, 38.8573, -15.733009), (-25.451847, 40.45085, -14.694632), (-24.64791, 40.45085, -16.00654), (-26.389624, 38.8573, -17.137623), (-26.389624, 38.8573, -17.137623), (-24.64791, 40.45085, -16.00654), (-23.776413, 40.45085, -17.274574), (-25.456545, 38.8573, -18.495262), (-25.456545, 38.8573, -18.495262), (-23.776413, 40.45085, -17.274574), (-22.839746, 40.45085, -18.495262), (-24.45369, 38.8573, -19.802208), (-24.45369, 38.8573, -19.802208), (-22.839746, 40.45085, -18.495262), (-21.840479, 40.45085, -19.665255), (-23.38381, 38.8573, -21.054876), (-23.38381, 38.8573, -21.054876), (-21.840479, 40.45085, -19.665255), (-20.781347, 40.45085, -20.781347), (-22.249836, 38.8573, -22.249836), (-22.249836, 38.8573, -22.249836), (-20.781347, 40.45085, -20.781347), (-19.665255, 40.45085, -21.840479), (-21.054876, 38.8573, -23.38381), (-21.054876, 38.8573, -23.38381), (-19.665255, 40.45085, -21.840479), (-18.495262, 40.45085, -22.839746), (-19.802208, 38.8573, -24.45369), (-19.802208, 38.8573, -24.45369), (-18.495262, 40.45085, -22.839746), (-17.274574, 40.45085, -23.776413), (-18.495262, 38.8573, -25.456545), (-18.495262, 38.8573, -25.456545), (-17.274574, 40.45085, -23.776413), (-16.00654, 40.45085, -24.64791), (-17.137623, 38.8573, -26.389624), (-17.137623, 38.8573, -26.389624), (-16.00654, 40.45085, -24.64791), (-14.694632, 40.45085, -25.451847), (-15.733009, 38.8573, -27.250372), (-15.733009, 38.8573, -27.250372), (-14.694632, 40.45085, -25.451847), (-13.342446, 40.45085, -26.186026), (-14.285274, 38.8573, -28.036428), (-14.285274, 38.8573, -28.036428), (-13.342446, 40.45085, -26.186026), (-11.95369, 40.45085, -26.848427), (-12.798383, 38.8573, -28.74564), (-12.798383, 38.8573, -28.74564), (-11.95369, 40.45085, -26.848427), (-10.532169, 40.45085, -27.43724), (-11.276413, 38.8573, -29.37606), (-11.276413, 38.8573, -29.37606), (-10.532169, 40.45085, -27.43724), (-9.081781, 40.45085, -27.95085), (-9.723535, 38.8573, -29.925962), (-9.723535, 38.8573, -29.925962), (-9.081781, 40.45085, -27.95085), (-7.606501, 40.45085, -28.387848), (-8.144005, 38.8573, -30.39384), (-8.144005, 38.8573, -30.39384), (-7.606501, 40.45085, -28.387848), (-6.110371, 40.45085, -28.747036), (-6.5421534, 38.8573, -30.778412), (-6.5421534, 38.8573, -30.778412), (-6.110371, 40.45085, -28.747036), (-4.5974936, 40.45085, -29.027431), (-4.92237, 38.8573, -31.07862), (-4.92237, 38.8573, -31.07862), (-4.5974936, 40.45085, -29.027431), (-3.0720146, 40.45085, -29.228266), (-3.2890947, 38.8573, -31.293646), (-3.2890947, 38.8573, -31.293646), (-3.0720146, 40.45085, -29.228266), (-1.5381151, 40.45085, -29.348986), (-1.6468042, 38.8573, -31.422897), (-1.6468042, 38.8573, -31.422897), (-1.5381151, 40.45085, -29.348986), (-5.39872e-15, 40.45085, -29.389263), (-5.780214e-15, 38.8573, -31.466019), (-5.780214e-15, 38.8573, -31.466019), (-5.39872e-15, 40.45085, -29.389263), (1.5381151, 40.45085, -29.348986), (1.6468042, 38.8573, -31.422897), (1.6468042, 38.8573, -31.422897), (1.5381151, 40.45085, -29.348986), (3.0720146, 40.45085, -29.228266), (3.2890947, 38.8573, -31.293646), (3.2890947, 38.8573, -31.293646), (3.0720146, 40.45085, -29.228266), (4.5974936, 40.45085, -29.027431), (4.92237, 38.8573, -31.07862), (4.92237, 38.8573, -31.07862), (4.5974936, 40.45085, -29.027431), (6.110371, 40.45085, -28.747036), (6.5421534, 38.8573, -30.778412), (6.5421534, 38.8573, -30.778412), (6.110371, 40.45085, -28.747036), (7.606501, 40.45085, -28.387848), (8.144005, 38.8573, -30.39384), (8.144005, 38.8573, -30.39384), (7.606501, 40.45085, -28.387848), (9.081781, 40.45085, -27.95085), (9.723535, 38.8573, -29.925962), (9.723535, 38.8573, -29.925962), (9.081781, 40.45085, -27.95085), (10.532169, 40.45085, -27.43724), (11.276413, 38.8573, -29.37606), (11.276413, 38.8573, -29.37606), (10.532169, 40.45085, -27.43724), (11.95369, 40.45085, -26.848427), (12.798383, 38.8573, -28.74564), (12.798383, 38.8573, -28.74564), (11.95369, 40.45085, -26.848427), (13.342446, 40.45085, -26.186026), (14.285274, 38.8573, -28.036428), (14.285274, 38.8573, -28.036428), (13.342446, 40.45085, -26.186026), (14.694632, 40.45085, -25.451847), (15.733009, 38.8573, -27.250372), (15.733009, 38.8573, -27.250372), (14.694632, 40.45085, -25.451847), (16.00654, 40.45085, -24.64791), (17.137623, 38.8573, -26.389624), (17.137623, 38.8573, -26.389624), (16.00654, 40.45085, -24.64791), (17.274574, 40.45085, -23.776413), (18.495262, 38.8573, -25.456545), (18.495262, 38.8573, -25.456545), (17.274574, 40.45085, -23.776413), (18.495262, 40.45085, -22.839746), (19.802208, 38.8573, -24.45369), (19.802208, 38.8573, -24.45369), (18.495262, 40.45085, -22.839746), (19.665255, 40.45085, -21.840479), (21.054876, 38.8573, -23.38381), (21.054876, 38.8573, -23.38381), (19.665255, 40.45085, -21.840479), (20.781347, 40.45085, -20.781347), (22.249836, 38.8573, -22.249836), (22.249836, 38.8573, -22.249836), (20.781347, 40.45085, -20.781347), (21.840479, 40.45085, -19.665255), (23.38381, 38.8573, -21.054876), (23.38381, 38.8573, -21.054876), (21.840479, 40.45085, -19.665255), (22.839746, 40.45085, -18.495262), (24.45369, 38.8573, -19.802208), (24.45369, 38.8573, -19.802208), (22.839746, 40.45085, -18.495262), (23.776413, 40.45085, -17.274574), (25.456545, 38.8573, -18.495262), (25.456545, 38.8573, -18.495262), (23.776413, 40.45085, -17.274574), (24.64791, 40.45085, -16.00654), (26.389624, 38.8573, -17.137623), (26.389624, 38.8573, -17.137623), (24.64791, 40.45085, -16.00654), (25.451847, 40.45085, -14.694632), (27.250372, 38.8573, -15.733009), (27.250372, 38.8573, -15.733009), (25.451847, 40.45085, -14.694632), (26.186026, 40.45085, -13.342446), (28.036428, 38.8573, -14.285274), (28.036428, 38.8573, -14.285274), (26.186026, 40.45085, -13.342446), (26.848427, 40.45085, -11.95369), (28.74564, 38.8573, -12.798383), (28.74564, 38.8573, -12.798383), (26.848427, 40.45085, -11.95369), (27.43724, 40.45085, -10.532169), (29.37606, 38.8573, -11.276413), (29.37606, 38.8573, -11.276413), (27.43724, 40.45085, -10.532169), (27.95085, 40.45085, -9.081781), (29.925962, 38.8573, -9.723535), (29.925962, 38.8573, -9.723535), (27.95085, 40.45085, -9.081781), (28.387848, 40.45085, -7.606501), (30.39384, 38.8573, -8.144005), (30.39384, 38.8573, -8.144005), (28.387848, 40.45085, -7.606501), (28.747036, 40.45085, -6.110371), (30.778412, 38.8573, -6.5421534), (30.778412, 38.8573, -6.5421534), (28.747036, 40.45085, -6.110371), (29.027431, 40.45085, -4.5974936), (31.07862, 38.8573, -4.92237), (31.07862, 38.8573, -4.92237), (29.027431, 40.45085, -4.5974936), (29.228266, 40.45085, -3.0720146), (31.293646, 38.8573, -3.2890947), (31.293646, 38.8573, -3.2890947), (29.228266, 40.45085, -3.0720146), (29.348986, 40.45085, -1.5381151), (31.422897, 38.8573, -1.6468042), (31.422897, 38.8573, -1.6468042), (29.348986, 40.45085, -1.5381151), (29.389263, 40.45085, 0), (31.466019, 38.8573, 0), (29.389263, 40.45085, 0), (27.231953, 41.93353, 0), (27.194632, 41.93353, 1.4252102), (29.348986, 40.45085, 1.5381151), (29.348986, 40.45085, 1.5381151), (27.194632, 41.93353, 1.4252102), (27.082773, 41.93353, 2.846514), (29.228266, 40.45085, 3.0720146), (29.228266, 40.45085, 3.0720146), (27.082773, 41.93353, 2.846514), (26.89668, 41.93353, 4.260016), (29.027431, 40.45085, 4.5974936), (29.027431, 40.45085, 4.5974936), (26.89668, 41.93353, 4.260016), (26.636868, 41.93353, 5.661841), (28.747036, 40.45085, 6.110371), (28.747036, 40.45085, 6.110371), (26.636868, 41.93353, 5.661841), (26.304045, 41.93353, 7.0481477), (28.387848, 40.45085, 7.606501), (28.387848, 40.45085, 7.606501), (26.304045, 41.93353, 7.0481477), (25.899126, 41.93353, 8.415136), (27.95085, 40.45085, 9.081781), (27.95085, 40.45085, 9.081781), (25.899126, 41.93353, 8.415136), (25.423218, 41.93353, 9.759059), (27.43724, 40.45085, 10.532169), (27.43724, 40.45085, 10.532169), (25.423218, 41.93353, 9.759059), (24.877626, 41.93353, 11.076233), (26.848427, 40.45085, 11.95369), (26.848427, 40.45085, 11.95369), (24.877626, 41.93353, 11.076233), (24.263847, 41.93353, 12.363048), (26.186026, 40.45085, 13.342446), (26.186026, 40.45085, 13.342446), (24.263847, 41.93353, 12.363048), (23.583563, 41.93353, 13.615976), (25.451847, 40.45085, 14.694632), (25.451847, 40.45085, 14.694632), (23.583563, 41.93353, 13.615976), (22.838636, 41.93353, 14.831584), (24.64791, 40.45085, 16.00654), (24.64791, 40.45085, 16.00654), (22.838636, 41.93353, 14.831584), (22.031113, 41.93353, 16.00654), (23.776413, 40.45085, 17.274574), (23.776413, 40.45085, 17.274574), (22.031113, 41.93353, 16.00654), (21.1632, 41.93353, 17.137623), (22.839746, 40.45085, 18.495262), (22.839746, 40.45085, 18.495262), (21.1632, 41.93353, 17.137623), (20.237284, 41.93353, 18.221733), (21.840479, 40.45085, 19.665255), (21.840479, 40.45085, 19.665255), (20.237284, 41.93353, 18.221733), (19.255898, 41.93353, 19.255898), (20.781347, 40.45085, 20.781347), (20.781347, 40.45085, 20.781347), (19.255898, 41.93353, 19.255898), (18.221733, 41.93353, 20.237284), (19.665255, 40.45085, 21.840479), (19.665255, 40.45085, 21.840479), (18.221733, 41.93353, 20.237284), (17.137623, 41.93353, 21.1632), (18.495262, 40.45085, 22.839746), (18.495262, 40.45085, 22.839746), (17.137623, 41.93353, 21.1632), (16.00654, 41.93353, 22.031113), (17.274574, 40.45085, 23.776413), (17.274574, 40.45085, 23.776413), (16.00654, 41.93353, 22.031113), (14.831584, 41.93353, 22.838636), (16.00654, 40.45085, 24.64791), (16.00654, 40.45085, 24.64791), (14.831584, 41.93353, 22.838636), (13.615976, 41.93353, 23.583563), (14.694632, 40.45085, 25.451847), (14.694632, 40.45085, 25.451847), (13.615976, 41.93353, 23.583563), (12.363048, 41.93353, 24.263847), (13.342446, 40.45085, 26.186026), (13.342446, 40.45085, 26.186026), (12.363048, 41.93353, 24.263847), (11.076233, 41.93353, 24.877626), (11.95369, 40.45085, 26.848427), (11.95369, 40.45085, 26.848427), (11.076233, 41.93353, 24.877626), (9.759059, 41.93353, 25.423218), (10.532169, 40.45085, 27.43724), (10.532169, 40.45085, 27.43724), (9.759059, 41.93353, 25.423218), (8.415136, 41.93353, 25.899126), (9.081781, 40.45085, 27.95085), (9.081781, 40.45085, 27.95085), (8.415136, 41.93353, 25.899126), (7.0481477, 41.93353, 26.304045), (7.606501, 40.45085, 28.387848), (7.606501, 40.45085, 28.387848), (7.0481477, 41.93353, 26.304045), (5.661841, 41.93353, 26.636868), (6.110371, 40.45085, 28.747036), (6.110371, 40.45085, 28.747036), (5.661841, 41.93353, 26.636868), (4.260016, 41.93353, 26.89668), (4.5974936, 40.45085, 29.027431), (4.5974936, 40.45085, 29.027431), (4.260016, 41.93353, 26.89668), (2.846514, 41.93353, 27.082773), (3.0720146, 40.45085, 29.228266), (3.0720146, 40.45085, 29.228266), (2.846514, 41.93353, 27.082773), (1.4252102, 41.93353, 27.194632), (1.5381151, 40.45085, 29.348986), (1.5381151, 40.45085, 29.348986), (1.4252102, 41.93353, 27.194632), (1.6674762e-15, 41.93353, 27.231953), (1.7995734e-15, 40.45085, 29.389263), (1.7995734e-15, 40.45085, 29.389263), (1.6674762e-15, 41.93353, 27.231953), (-1.4252102, 41.93353, 27.194632), (-1.5381151, 40.45085, 29.348986), (-1.5381151, 40.45085, 29.348986), (-1.4252102, 41.93353, 27.194632), (-2.846514, 41.93353, 27.082773), (-3.0720146, 40.45085, 29.228266), (-3.0720146, 40.45085, 29.228266), (-2.846514, 41.93353, 27.082773), (-4.260016, 41.93353, 26.89668), (-4.5974936, 40.45085, 29.027431), (-4.5974936, 40.45085, 29.027431), (-4.260016, 41.93353, 26.89668), (-5.661841, 41.93353, 26.636868), (-6.110371, 40.45085, 28.747036), (-6.110371, 40.45085, 28.747036), (-5.661841, 41.93353, 26.636868), (-7.0481477, 41.93353, 26.304045), (-7.606501, 40.45085, 28.387848), (-7.606501, 40.45085, 28.387848), (-7.0481477, 41.93353, 26.304045), (-8.415136, 41.93353, 25.899126), (-9.081781, 40.45085, 27.95085), (-9.081781, 40.45085, 27.95085), (-8.415136, 41.93353, 25.899126), (-9.759059, 41.93353, 25.423218), (-10.532169, 40.45085, 27.43724), (-10.532169, 40.45085, 27.43724), (-9.759059, 41.93353, 25.423218), (-11.076233, 41.93353, 24.877626), (-11.95369, 40.45085, 26.848427), (-11.95369, 40.45085, 26.848427), (-11.076233, 41.93353, 24.877626), (-12.363048, 41.93353, 24.263847), (-13.342446, 40.45085, 26.186026), (-13.342446, 40.45085, 26.186026), (-12.363048, 41.93353, 24.263847), (-13.615976, 41.93353, 23.583563), (-14.694632, 40.45085, 25.451847), (-14.694632, 40.45085, 25.451847), (-13.615976, 41.93353, 23.583563), (-14.831584, 41.93353, 22.838636), (-16.00654, 40.45085, 24.64791), (-16.00654, 40.45085, 24.64791), (-14.831584, 41.93353, 22.838636), (-16.00654, 41.93353, 22.031113), (-17.274574, 40.45085, 23.776413), (-17.274574, 40.45085, 23.776413), (-16.00654, 41.93353, 22.031113), (-17.137623, 41.93353, 21.1632), (-18.495262, 40.45085, 22.839746), (-18.495262, 40.45085, 22.839746), (-17.137623, 41.93353, 21.1632), (-18.221733, 41.93353, 20.237284), (-19.665255, 40.45085, 21.840479), (-19.665255, 40.45085, 21.840479), (-18.221733, 41.93353, 20.237284), (-19.255898, 41.93353, 19.255898), (-20.781347, 40.45085, 20.781347), (-20.781347, 40.45085, 20.781347), (-19.255898, 41.93353, 19.255898), (-20.237284, 41.93353, 18.221733), (-21.840479, 40.45085, 19.665255), (-21.840479, 40.45085, 19.665255), (-20.237284, 41.93353, 18.221733), (-21.1632, 41.93353, 17.137623), (-22.839746, 40.45085, 18.495262), (-22.839746, 40.45085, 18.495262), (-21.1632, 41.93353, 17.137623), (-22.031113, 41.93353, 16.00654), (-23.776413, 40.45085, 17.274574), (-23.776413, 40.45085, 17.274574), (-22.031113, 41.93353, 16.00654), (-22.838636, 41.93353, 14.831584), (-24.64791, 40.45085, 16.00654), (-24.64791, 40.45085, 16.00654), (-22.838636, 41.93353, 14.831584), (-23.583563, 41.93353, 13.615976), (-25.451847, 40.45085, 14.694632), (-25.451847, 40.45085, 14.694632), (-23.583563, 41.93353, 13.615976), (-24.263847, 41.93353, 12.363048), (-26.186026, 40.45085, 13.342446), (-26.186026, 40.45085, 13.342446), (-24.263847, 41.93353, 12.363048), (-24.877626, 41.93353, 11.076233), (-26.848427, 40.45085, 11.95369), (-26.848427, 40.45085, 11.95369), (-24.877626, 41.93353, 11.076233), (-25.423218, 41.93353, 9.759059), (-27.43724, 40.45085, 10.532169), (-27.43724, 40.45085, 10.532169), (-25.423218, 41.93353, 9.759059), (-25.899126, 41.93353, 8.415136), (-27.95085, 40.45085, 9.081781), (-27.95085, 40.45085, 9.081781), (-25.899126, 41.93353, 8.415136), (-26.304045, 41.93353, 7.0481477), (-28.387848, 40.45085, 7.606501), (-28.387848, 40.45085, 7.606501), (-26.304045, 41.93353, 7.0481477), (-26.636868, 41.93353, 5.661841), (-28.747036, 40.45085, 6.110371), (-28.747036, 40.45085, 6.110371), (-26.636868, 41.93353, 5.661841), (-26.89668, 41.93353, 4.260016), (-29.027431, 40.45085, 4.5974936), (-29.027431, 40.45085, 4.5974936), (-26.89668, 41.93353, 4.260016), (-27.082773, 41.93353, 2.846514), (-29.228266, 40.45085, 3.0720146), (-29.228266, 40.45085, 3.0720146), (-27.082773, 41.93353, 2.846514), (-27.194632, 41.93353, 1.4252102), (-29.348986, 40.45085, 1.5381151), (-29.348986, 40.45085, 1.5381151), (-27.194632, 41.93353, 1.4252102), (-27.231953, 41.93353, 3.3349523e-15), (-29.389263, 40.45085, 3.5991468e-15), (-29.389263, 40.45085, 3.5991468e-15), (-27.231953, 41.93353, 3.3349523e-15), (-27.194632, 41.93353, -1.4252102), (-29.348986, 40.45085, -1.5381151), (-29.348986, 40.45085, -1.5381151), (-27.194632, 41.93353, -1.4252102), (-27.082773, 41.93353, -2.846514), (-29.228266, 40.45085, -3.0720146), (-29.228266, 40.45085, -3.0720146), (-27.082773, 41.93353, -2.846514), (-26.89668, 41.93353, -4.260016), (-29.027431, 40.45085, -4.5974936), (-29.027431, 40.45085, -4.5974936), (-26.89668, 41.93353, -4.260016), (-26.636868, 41.93353, -5.661841), (-28.747036, 40.45085, -6.110371), (-28.747036, 40.45085, -6.110371), (-26.636868, 41.93353, -5.661841), (-26.304045, 41.93353, -7.0481477), (-28.387848, 40.45085, -7.606501), (-28.387848, 40.45085, -7.606501), (-26.304045, 41.93353, -7.0481477), (-25.899126, 41.93353, -8.415136), (-27.95085, 40.45085, -9.081781), (-27.95085, 40.45085, -9.081781), (-25.899126, 41.93353, -8.415136), (-25.423218, 41.93353, -9.759059), (-27.43724, 40.45085, -10.532169), (-27.43724, 40.45085, -10.532169), (-25.423218, 41.93353, -9.759059), (-24.877626, 41.93353, -11.076233), (-26.848427, 40.45085, -11.95369), (-26.848427, 40.45085, -11.95369), (-24.877626, 41.93353, -11.076233), (-24.263847, 41.93353, -12.363048), (-26.186026, 40.45085, -13.342446), (-26.186026, 40.45085, -13.342446), (-24.263847, 41.93353, -12.363048), (-23.583563, 41.93353, -13.615976), (-25.451847, 40.45085, -14.694632), (-25.451847, 40.45085, -14.694632), (-23.583563, 41.93353, -13.615976), (-22.838636, 41.93353, -14.831584), (-24.64791, 40.45085, -16.00654), (-24.64791, 40.45085, -16.00654), (-22.838636, 41.93353, -14.831584), (-22.031113, 41.93353, -16.00654), (-23.776413, 40.45085, -17.274574), (-23.776413, 40.45085, -17.274574), (-22.031113, 41.93353, -16.00654), (-21.1632, 41.93353, -17.137623), (-22.839746, 40.45085, -18.495262), (-22.839746, 40.45085, -18.495262), (-21.1632, 41.93353, -17.137623), (-20.237284, 41.93353, -18.221733), (-21.840479, 40.45085, -19.665255), (-21.840479, 40.45085, -19.665255), (-20.237284, 41.93353, -18.221733), (-19.255898, 41.93353, -19.255898), (-20.781347, 40.45085, -20.781347), (-20.781347, 40.45085, -20.781347), (-19.255898, 41.93353, -19.255898), (-18.221733, 41.93353, -20.237284), (-19.665255, 40.45085, -21.840479), (-19.665255, 40.45085, -21.840479), (-18.221733, 41.93353, -20.237284), (-17.137623, 41.93353, -21.1632), (-18.495262, 40.45085, -22.839746), (-18.495262, 40.45085, -22.839746), (-17.137623, 41.93353, -21.1632), (-16.00654, 41.93353, -22.031113), (-17.274574, 40.45085, -23.776413), (-17.274574, 40.45085, -23.776413), (-16.00654, 41.93353, -22.031113), (-14.831584, 41.93353, -22.838636), (-16.00654, 40.45085, -24.64791), (-16.00654, 40.45085, -24.64791), (-14.831584, 41.93353, -22.838636), (-13.615976, 41.93353, -23.583563), (-14.694632, 40.45085, -25.451847), (-14.694632, 40.45085, -25.451847), (-13.615976, 41.93353, -23.583563), (-12.363048, 41.93353, -24.263847), (-13.342446, 40.45085, -26.186026), (-13.342446, 40.45085, -26.186026), (-12.363048, 41.93353, -24.263847), (-11.076233, 41.93353, -24.877626), (-11.95369, 40.45085, -26.848427), (-11.95369, 40.45085, -26.848427), (-11.076233, 41.93353, -24.877626), (-9.759059, 41.93353, -25.423218), (-10.532169, 40.45085, -27.43724), (-10.532169, 40.45085, -27.43724), (-9.759059, 41.93353, -25.423218), (-8.415136, 41.93353, -25.899126), (-9.081781, 40.45085, -27.95085), (-9.081781, 40.45085, -27.95085), (-8.415136, 41.93353, -25.899126), (-7.0481477, 41.93353, -26.304045), (-7.606501, 40.45085, -28.387848), (-7.606501, 40.45085, -28.387848), (-7.0481477, 41.93353, -26.304045), (-5.661841, 41.93353, -26.636868), (-6.110371, 40.45085, -28.747036), (-6.110371, 40.45085, -28.747036), (-5.661841, 41.93353, -26.636868), (-4.260016, 41.93353, -26.89668), (-4.5974936, 40.45085, -29.027431), (-4.5974936, 40.45085, -29.027431), (-4.260016, 41.93353, -26.89668), (-2.846514, 41.93353, -27.082773), (-3.0720146, 40.45085, -29.228266), (-3.0720146, 40.45085, -29.228266), (-2.846514, 41.93353, -27.082773), (-1.4252102, 41.93353, -27.194632), (-1.5381151, 40.45085, -29.348986), (-1.5381151, 40.45085, -29.348986), (-1.4252102, 41.93353, -27.194632), (-5.0024284e-15, 41.93353, -27.231953), (-5.39872e-15, 40.45085, -29.389263), (-5.39872e-15, 40.45085, -29.389263), (-5.0024284e-15, 41.93353, -27.231953), (1.4252102, 41.93353, -27.194632), (1.5381151, 40.45085, -29.348986), (1.5381151, 40.45085, -29.348986), (1.4252102, 41.93353, -27.194632), (2.846514, 41.93353, -27.082773), (3.0720146, 40.45085, -29.228266), (3.0720146, 40.45085, -29.228266), (2.846514, 41.93353, -27.082773), (4.260016, 41.93353, -26.89668), (4.5974936, 40.45085, -29.027431), (4.5974936, 40.45085, -29.027431), (4.260016, 41.93353, -26.89668), (5.661841, 41.93353, -26.636868), (6.110371, 40.45085, -28.747036), (6.110371, 40.45085, -28.747036), (5.661841, 41.93353, -26.636868), (7.0481477, 41.93353, -26.304045), (7.606501, 40.45085, -28.387848), (7.606501, 40.45085, -28.387848), (7.0481477, 41.93353, -26.304045), (8.415136, 41.93353, -25.899126), (9.081781, 40.45085, -27.95085), (9.081781, 40.45085, -27.95085), (8.415136, 41.93353, -25.899126), (9.759059, 41.93353, -25.423218), (10.532169, 40.45085, -27.43724), (10.532169, 40.45085, -27.43724), (9.759059, 41.93353, -25.423218), (11.076233, 41.93353, -24.877626), (11.95369, 40.45085, -26.848427), (11.95369, 40.45085, -26.848427), (11.076233, 41.93353, -24.877626), (12.363048, 41.93353, -24.263847), (13.342446, 40.45085, -26.186026), (13.342446, 40.45085, -26.186026), (12.363048, 41.93353, -24.263847), (13.615976, 41.93353, -23.583563), (14.694632, 40.45085, -25.451847), (14.694632, 40.45085, -25.451847), (13.615976, 41.93353, -23.583563), (14.831584, 41.93353, -22.838636), (16.00654, 40.45085, -24.64791), (16.00654, 40.45085, -24.64791), (14.831584, 41.93353, -22.838636), (16.00654, 41.93353, -22.031113), (17.274574, 40.45085, -23.776413), (17.274574, 40.45085, -23.776413), (16.00654, 41.93353, -22.031113), (17.137623, 41.93353, -21.1632), (18.495262, 40.45085, -22.839746), (18.495262, 40.45085, -22.839746), (17.137623, 41.93353, -21.1632), (18.221733, 41.93353, -20.237284), (19.665255, 40.45085, -21.840479), (19.665255, 40.45085, -21.840479), (18.221733, 41.93353, -20.237284), (19.255898, 41.93353, -19.255898), (20.781347, 40.45085, -20.781347), (20.781347, 40.45085, -20.781347), (19.255898, 41.93353, -19.255898), (20.237284, 41.93353, -18.221733), (21.840479, 40.45085, -19.665255), (21.840479, 40.45085, -19.665255), (20.237284, 41.93353, -18.221733), (21.1632, 41.93353, -17.137623), (22.839746, 40.45085, -18.495262), (22.839746, 40.45085, -18.495262), (21.1632, 41.93353, -17.137623), (22.031113, 41.93353, -16.00654), (23.776413, 40.45085, -17.274574), (23.776413, 40.45085, -17.274574), (22.031113, 41.93353, -16.00654), (22.838636, 41.93353, -14.831584), (24.64791, 40.45085, -16.00654), (24.64791, 40.45085, -16.00654), (22.838636, 41.93353, -14.831584), (23.583563, 41.93353, -13.615976), (25.451847, 40.45085, -14.694632), (25.451847, 40.45085, -14.694632), (23.583563, 41.93353, -13.615976), (24.263847, 41.93353, -12.363048), (26.186026, 40.45085, -13.342446), (26.186026, 40.45085, -13.342446), (24.263847, 41.93353, -12.363048), (24.877626, 41.93353, -11.076233), (26.848427, 40.45085, -11.95369), (26.848427, 40.45085, -11.95369), (24.877626, 41.93353, -11.076233), (25.423218, 41.93353, -9.759059), (27.43724, 40.45085, -10.532169), (27.43724, 40.45085, -10.532169), (25.423218, 41.93353, -9.759059), (25.899126, 41.93353, -8.415136), (27.95085, 40.45085, -9.081781), (27.95085, 40.45085, -9.081781), (25.899126, 41.93353, -8.415136), (26.304045, 41.93353, -7.0481477), (28.387848, 40.45085, -7.606501), (28.387848, 40.45085, -7.606501), (26.304045, 41.93353, -7.0481477), (26.636868, 41.93353, -5.661841), (28.747036, 40.45085, -6.110371), (28.747036, 40.45085, -6.110371), (26.636868, 41.93353, -5.661841), (26.89668, 41.93353, -4.260016), (29.027431, 40.45085, -4.5974936), (29.027431, 40.45085, -4.5974936), (26.89668, 41.93353, -4.260016), (27.082773, 41.93353, -2.846514), (29.228266, 40.45085, -3.0720146), (29.228266, 40.45085, -3.0720146), (27.082773, 41.93353, -2.846514), (27.194632, 41.93353, -1.4252102), (29.348986, 40.45085, -1.5381151), (29.348986, 40.45085, -1.5381151), (27.194632, 41.93353, -1.4252102), (27.231953, 41.93353, 0), (29.389263, 40.45085, 0), (27.231953, 41.93353, 0), (25, 43.30127, 0), (24.965738, 43.30127, 1.308399), (27.194632, 41.93353, 1.4252102), (27.194632, 41.93353, 1.4252102), (24.965738, 43.30127, 1.308399), (24.863047, 43.30127, 2.6132116), (27.082773, 41.93353, 2.846514), (27.082773, 41.93353, 2.846514), (24.863047, 43.30127, 2.6132116), (24.69221, 43.30127, 3.9108617), (26.89668, 41.93353, 4.260016), (26.89668, 41.93353, 4.260016), (24.69221, 43.30127, 3.9108617), (24.45369, 43.30127, 5.197792), (26.636868, 41.93353, 5.661841), (26.636868, 41.93353, 5.661841), (24.45369, 43.30127, 5.197792), (24.148146, 43.30127, 6.470476), (26.304045, 41.93353, 7.0481477), (26.304045, 41.93353, 7.0481477), (24.148146, 43.30127, 6.470476), (23.776413, 43.30127, 7.725425), (25.899126, 41.93353, 8.415136), (25.899126, 41.93353, 8.415136), (23.776413, 43.30127, 7.725425), (23.33951, 43.30127, 8.959199), (25.423218, 41.93353, 9.759059), (25.423218, 41.93353, 9.759059), (23.33951, 43.30127, 8.959199), (22.838636, 43.30127, 10.168416), (24.877626, 41.93353, 11.076233), (24.877626, 41.93353, 11.076233), (22.838636, 43.30127, 10.168416), (22.275164, 43.30127, 11.349763), (24.263847, 41.93353, 12.363048), (24.263847, 41.93353, 12.363048), (22.275164, 43.30127, 11.349763), (21.650635, 43.30127, 12.5), (23.583563, 41.93353, 13.615976), (23.583563, 41.93353, 13.615976), (21.650635, 43.30127, 12.5), (20.966764, 43.30127, 13.615976), (22.838636, 41.93353, 14.831584), (22.838636, 41.93353, 14.831584), (20.966764, 43.30127, 13.615976), (20.225426, 43.30127, 14.694632), (22.031113, 41.93353, 16.00654), (22.031113, 41.93353, 16.00654), (20.225426, 43.30127, 14.694632), (19.42865, 43.30127, 15.733009), (21.1632, 41.93353, 17.137623), (21.1632, 41.93353, 17.137623), (19.42865, 43.30127, 15.733009), (18.57862, 43.30127, 16.728266), (20.237284, 41.93353, 18.221733), (20.237284, 41.93353, 18.221733), (18.57862, 43.30127, 16.728266), (17.67767, 43.30127, 17.67767), (19.255898, 41.93353, 19.255898), (19.255898, 41.93353, 19.255898), (17.67767, 43.30127, 17.67767), (16.728266, 43.30127, 18.57862), (18.221733, 41.93353, 20.237284), (18.221733, 41.93353, 20.237284), (16.728266, 43.30127, 18.57862), (15.733009, 43.30127, 19.42865), (17.137623, 41.93353, 21.1632), (17.137623, 41.93353, 21.1632), (15.733009, 43.30127, 19.42865), (14.694632, 43.30127, 20.225426), (16.00654, 41.93353, 22.031113), (16.00654, 41.93353, 22.031113), (14.694632, 43.30127, 20.225426), (13.615976, 43.30127, 20.966764), (14.831584, 41.93353, 22.838636), (14.831584, 41.93353, 22.838636), (13.615976, 43.30127, 20.966764), (12.5, 43.30127, 21.650635), (13.615976, 41.93353, 23.583563), (13.615976, 41.93353, 23.583563), (12.5, 43.30127, 21.650635), (11.349763, 43.30127, 22.275164), (12.363048, 41.93353, 24.263847), (12.363048, 41.93353, 24.263847), (11.349763, 43.30127, 22.275164), (10.168416, 43.30127, 22.838636), (11.076233, 41.93353, 24.877626), (11.076233, 41.93353, 24.877626), (10.168416, 43.30127, 22.838636), (8.959199, 43.30127, 23.33951), (9.759059, 41.93353, 25.423218), (9.759059, 41.93353, 25.423218), (8.959199, 43.30127, 23.33951), (7.725425, 43.30127, 23.776413), (8.415136, 41.93353, 25.899126), (8.415136, 41.93353, 25.899126), (7.725425, 43.30127, 23.776413), (6.470476, 43.30127, 24.148146), (7.0481477, 41.93353, 26.304045), (7.0481477, 41.93353, 26.304045), (6.470476, 43.30127, 24.148146), (5.197792, 43.30127, 24.45369), (5.661841, 41.93353, 26.636868), (5.661841, 41.93353, 26.636868), (5.197792, 43.30127, 24.45369), (3.9108617, 43.30127, 24.69221), (4.260016, 41.93353, 26.89668), (4.260016, 41.93353, 26.89668), (3.9108617, 43.30127, 24.69221), (2.6132116, 43.30127, 24.863047), (2.846514, 41.93353, 27.082773), (2.846514, 41.93353, 27.082773), (2.6132116, 43.30127, 24.863047), (1.308399, 43.30127, 24.965738), (1.4252102, 41.93353, 27.194632), (1.4252102, 41.93353, 27.194632), (1.308399, 43.30127, 24.965738), (1.5308084e-15, 43.30127, 25), (1.6674762e-15, 41.93353, 27.231953), (1.6674762e-15, 41.93353, 27.231953), (1.5308084e-15, 43.30127, 25), (-1.308399, 43.30127, 24.965738), (-1.4252102, 41.93353, 27.194632), (-1.4252102, 41.93353, 27.194632), (-1.308399, 43.30127, 24.965738), (-2.6132116, 43.30127, 24.863047), (-2.846514, 41.93353, 27.082773), (-2.846514, 41.93353, 27.082773), (-2.6132116, 43.30127, 24.863047), (-3.9108617, 43.30127, 24.69221), (-4.260016, 41.93353, 26.89668), (-4.260016, 41.93353, 26.89668), (-3.9108617, 43.30127, 24.69221), (-5.197792, 43.30127, 24.45369), (-5.661841, 41.93353, 26.636868), (-5.661841, 41.93353, 26.636868), (-5.197792, 43.30127, 24.45369), (-6.470476, 43.30127, 24.148146), (-7.0481477, 41.93353, 26.304045), (-7.0481477, 41.93353, 26.304045), (-6.470476, 43.30127, 24.148146), (-7.725425, 43.30127, 23.776413), (-8.415136, 41.93353, 25.899126), (-8.415136, 41.93353, 25.899126), (-7.725425, 43.30127, 23.776413), (-8.959199, 43.30127, 23.33951), (-9.759059, 41.93353, 25.423218), (-9.759059, 41.93353, 25.423218), (-8.959199, 43.30127, 23.33951), (-10.168416, 43.30127, 22.838636), (-11.076233, 41.93353, 24.877626), (-11.076233, 41.93353, 24.877626), (-10.168416, 43.30127, 22.838636), (-11.349763, 43.30127, 22.275164), (-12.363048, 41.93353, 24.263847), (-12.363048, 41.93353, 24.263847), (-11.349763, 43.30127, 22.275164), (-12.5, 43.30127, 21.650635), (-13.615976, 41.93353, 23.583563), (-13.615976, 41.93353, 23.583563), (-12.5, 43.30127, 21.650635), (-13.615976, 43.30127, 20.966764), (-14.831584, 41.93353, 22.838636), (-14.831584, 41.93353, 22.838636), (-13.615976, 43.30127, 20.966764), (-14.694632, 43.30127, 20.225426), (-16.00654, 41.93353, 22.031113), (-16.00654, 41.93353, 22.031113), (-14.694632, 43.30127, 20.225426), (-15.733009, 43.30127, 19.42865), (-17.137623, 41.93353, 21.1632), (-17.137623, 41.93353, 21.1632), (-15.733009, 43.30127, 19.42865), (-16.728266, 43.30127, 18.57862), (-18.221733, 41.93353, 20.237284), (-18.221733, 41.93353, 20.237284), (-16.728266, 43.30127, 18.57862), (-17.67767, 43.30127, 17.67767), (-19.255898, 41.93353, 19.255898), (-19.255898, 41.93353, 19.255898), (-17.67767, 43.30127, 17.67767), (-18.57862, 43.30127, 16.728266), (-20.237284, 41.93353, 18.221733), (-20.237284, 41.93353, 18.221733), (-18.57862, 43.30127, 16.728266), (-19.42865, 43.30127, 15.733009), (-21.1632, 41.93353, 17.137623), (-21.1632, 41.93353, 17.137623), (-19.42865, 43.30127, 15.733009), (-20.225426, 43.30127, 14.694632), (-22.031113, 41.93353, 16.00654), (-22.031113, 41.93353, 16.00654), (-20.225426, 43.30127, 14.694632), (-20.966764, 43.30127, 13.615976), (-22.838636, 41.93353, 14.831584), (-22.838636, 41.93353, 14.831584), (-20.966764, 43.30127, 13.615976), (-21.650635, 43.30127, 12.5), (-23.583563, 41.93353, 13.615976), (-23.583563, 41.93353, 13.615976), (-21.650635, 43.30127, 12.5), (-22.275164, 43.30127, 11.349763), (-24.263847, 41.93353, 12.363048), (-24.263847, 41.93353, 12.363048), (-22.275164, 43.30127, 11.349763), (-22.838636, 43.30127, 10.168416), (-24.877626, 41.93353, 11.076233), (-24.877626, 41.93353, 11.076233), (-22.838636, 43.30127, 10.168416), (-23.33951, 43.30127, 8.959199), (-25.423218, 41.93353, 9.759059), (-25.423218, 41.93353, 9.759059), (-23.33951, 43.30127, 8.959199), (-23.776413, 43.30127, 7.725425), (-25.899126, 41.93353, 8.415136), (-25.899126, 41.93353, 8.415136), (-23.776413, 43.30127, 7.725425), (-24.148146, 43.30127, 6.470476), (-26.304045, 41.93353, 7.0481477), (-26.304045, 41.93353, 7.0481477), (-24.148146, 43.30127, 6.470476), (-24.45369, 43.30127, 5.197792), (-26.636868, 41.93353, 5.661841), (-26.636868, 41.93353, 5.661841), (-24.45369, 43.30127, 5.197792), (-24.69221, 43.30127, 3.9108617), (-26.89668, 41.93353, 4.260016), (-26.89668, 41.93353, 4.260016), (-24.69221, 43.30127, 3.9108617), (-24.863047, 43.30127, 2.6132116), (-27.082773, 41.93353, 2.846514), (-27.082773, 41.93353, 2.846514), (-24.863047, 43.30127, 2.6132116), (-24.965738, 43.30127, 1.308399), (-27.194632, 41.93353, 1.4252102), (-27.194632, 41.93353, 1.4252102), (-24.965738, 43.30127, 1.308399), (-25, 43.30127, 3.0616169e-15), (-27.231953, 41.93353, 3.3349523e-15), (-27.231953, 41.93353, 3.3349523e-15), (-25, 43.30127, 3.0616169e-15), (-24.965738, 43.30127, -1.308399), (-27.194632, 41.93353, -1.4252102), (-27.194632, 41.93353, -1.4252102), (-24.965738, 43.30127, -1.308399), (-24.863047, 43.30127, -2.6132116), (-27.082773, 41.93353, -2.846514), (-27.082773, 41.93353, -2.846514), (-24.863047, 43.30127, -2.6132116), (-24.69221, 43.30127, -3.9108617), (-26.89668, 41.93353, -4.260016), (-26.89668, 41.93353, -4.260016), (-24.69221, 43.30127, -3.9108617), (-24.45369, 43.30127, -5.197792), (-26.636868, 41.93353, -5.661841), (-26.636868, 41.93353, -5.661841), (-24.45369, 43.30127, -5.197792), (-24.148146, 43.30127, -6.470476), (-26.304045, 41.93353, -7.0481477), (-26.304045, 41.93353, -7.0481477), (-24.148146, 43.30127, -6.470476), (-23.776413, 43.30127, -7.725425), (-25.899126, 41.93353, -8.415136), (-25.899126, 41.93353, -8.415136), (-23.776413, 43.30127, -7.725425), (-23.33951, 43.30127, -8.959199), (-25.423218, 41.93353, -9.759059), (-25.423218, 41.93353, -9.759059), (-23.33951, 43.30127, -8.959199), (-22.838636, 43.30127, -10.168416), (-24.877626, 41.93353, -11.076233), (-24.877626, 41.93353, -11.076233), (-22.838636, 43.30127, -10.168416), (-22.275164, 43.30127, -11.349763), (-24.263847, 41.93353, -12.363048), (-24.263847, 41.93353, -12.363048), (-22.275164, 43.30127, -11.349763), (-21.650635, 43.30127, -12.5), (-23.583563, 41.93353, -13.615976), (-23.583563, 41.93353, -13.615976), (-21.650635, 43.30127, -12.5), (-20.966764, 43.30127, -13.615976), (-22.838636, 41.93353, -14.831584), (-22.838636, 41.93353, -14.831584), (-20.966764, 43.30127, -13.615976), (-20.225426, 43.30127, -14.694632), (-22.031113, 41.93353, -16.00654), (-22.031113, 41.93353, -16.00654), (-20.225426, 43.30127, -14.694632), (-19.42865, 43.30127, -15.733009), (-21.1632, 41.93353, -17.137623), (-21.1632, 41.93353, -17.137623), (-19.42865, 43.30127, -15.733009), (-18.57862, 43.30127, -16.728266), (-20.237284, 41.93353, -18.221733), (-20.237284, 41.93353, -18.221733), (-18.57862, 43.30127, -16.728266), (-17.67767, 43.30127, -17.67767), (-19.255898, 41.93353, -19.255898), (-19.255898, 41.93353, -19.255898), (-17.67767, 43.30127, -17.67767), (-16.728266, 43.30127, -18.57862), (-18.221733, 41.93353, -20.237284), (-18.221733, 41.93353, -20.237284), (-16.728266, 43.30127, -18.57862), (-15.733009, 43.30127, -19.42865), (-17.137623, 41.93353, -21.1632), (-17.137623, 41.93353, -21.1632), (-15.733009, 43.30127, -19.42865), (-14.694632, 43.30127, -20.225426), (-16.00654, 41.93353, -22.031113), (-16.00654, 41.93353, -22.031113), (-14.694632, 43.30127, -20.225426), (-13.615976, 43.30127, -20.966764), (-14.831584, 41.93353, -22.838636), (-14.831584, 41.93353, -22.838636), (-13.615976, 43.30127, -20.966764), (-12.5, 43.30127, -21.650635), (-13.615976, 41.93353, -23.583563), (-13.615976, 41.93353, -23.583563), (-12.5, 43.30127, -21.650635), (-11.349763, 43.30127, -22.275164), (-12.363048, 41.93353, -24.263847), (-12.363048, 41.93353, -24.263847), (-11.349763, 43.30127, -22.275164), (-10.168416, 43.30127, -22.838636), (-11.076233, 41.93353, -24.877626), (-11.076233, 41.93353, -24.877626), (-10.168416, 43.30127, -22.838636), (-8.959199, 43.30127, -23.33951), (-9.759059, 41.93353, -25.423218), (-9.759059, 41.93353, -25.423218), (-8.959199, 43.30127, -23.33951), (-7.725425, 43.30127, -23.776413), (-8.415136, 41.93353, -25.899126), (-8.415136, 41.93353, -25.899126), (-7.725425, 43.30127, -23.776413), (-6.470476, 43.30127, -24.148146), (-7.0481477, 41.93353, -26.304045), (-7.0481477, 41.93353, -26.304045), (-6.470476, 43.30127, -24.148146), (-5.197792, 43.30127, -24.45369), (-5.661841, 41.93353, -26.636868), (-5.661841, 41.93353, -26.636868), (-5.197792, 43.30127, -24.45369), (-3.9108617, 43.30127, -24.69221), (-4.260016, 41.93353, -26.89668), (-4.260016, 41.93353, -26.89668), (-3.9108617, 43.30127, -24.69221), (-2.6132116, 43.30127, -24.863047), (-2.846514, 41.93353, -27.082773), (-2.846514, 41.93353, -27.082773), (-2.6132116, 43.30127, -24.863047), (-1.308399, 43.30127, -24.965738), (-1.4252102, 41.93353, -27.194632), (-1.4252102, 41.93353, -27.194632), (-1.308399, 43.30127, -24.965738), (-4.5924254e-15, 43.30127, -25), (-5.0024284e-15, 41.93353, -27.231953), (-5.0024284e-15, 41.93353, -27.231953), (-4.5924254e-15, 43.30127, -25), (1.308399, 43.30127, -24.965738), (1.4252102, 41.93353, -27.194632), (1.4252102, 41.93353, -27.194632), (1.308399, 43.30127, -24.965738), (2.6132116, 43.30127, -24.863047), (2.846514, 41.93353, -27.082773), (2.846514, 41.93353, -27.082773), (2.6132116, 43.30127, -24.863047), (3.9108617, 43.30127, -24.69221), (4.260016, 41.93353, -26.89668), (4.260016, 41.93353, -26.89668), (3.9108617, 43.30127, -24.69221), (5.197792, 43.30127, -24.45369), (5.661841, 41.93353, -26.636868), (5.661841, 41.93353, -26.636868), (5.197792, 43.30127, -24.45369), (6.470476, 43.30127, -24.148146), (7.0481477, 41.93353, -26.304045), (7.0481477, 41.93353, -26.304045), (6.470476, 43.30127, -24.148146), (7.725425, 43.30127, -23.776413), (8.415136, 41.93353, -25.899126), (8.415136, 41.93353, -25.899126), (7.725425, 43.30127, -23.776413), (8.959199, 43.30127, -23.33951), (9.759059, 41.93353, -25.423218), (9.759059, 41.93353, -25.423218), (8.959199, 43.30127, -23.33951), (10.168416, 43.30127, -22.838636), (11.076233, 41.93353, -24.877626), (11.076233, 41.93353, -24.877626), (10.168416, 43.30127, -22.838636), (11.349763, 43.30127, -22.275164), (12.363048, 41.93353, -24.263847), (12.363048, 41.93353, -24.263847), (11.349763, 43.30127, -22.275164), (12.5, 43.30127, -21.650635), (13.615976, 41.93353, -23.583563), (13.615976, 41.93353, -23.583563), (12.5, 43.30127, -21.650635), (13.615976, 43.30127, -20.966764), (14.831584, 41.93353, -22.838636), (14.831584, 41.93353, -22.838636), (13.615976, 43.30127, -20.966764), (14.694632, 43.30127, -20.225426), (16.00654, 41.93353, -22.031113), (16.00654, 41.93353, -22.031113), (14.694632, 43.30127, -20.225426), (15.733009, 43.30127, -19.42865), (17.137623, 41.93353, -21.1632), (17.137623, 41.93353, -21.1632), (15.733009, 43.30127, -19.42865), (16.728266, 43.30127, -18.57862), (18.221733, 41.93353, -20.237284), (18.221733, 41.93353, -20.237284), (16.728266, 43.30127, -18.57862), (17.67767, 43.30127, -17.67767), (19.255898, 41.93353, -19.255898), (19.255898, 41.93353, -19.255898), (17.67767, 43.30127, -17.67767), (18.57862, 43.30127, -16.728266), (20.237284, 41.93353, -18.221733), (20.237284, 41.93353, -18.221733), (18.57862, 43.30127, -16.728266), (19.42865, 43.30127, -15.733009), (21.1632, 41.93353, -17.137623), (21.1632, 41.93353, -17.137623), (19.42865, 43.30127, -15.733009), (20.225426, 43.30127, -14.694632), (22.031113, 41.93353, -16.00654), (22.031113, 41.93353, -16.00654), (20.225426, 43.30127, -14.694632), (20.966764, 43.30127, -13.615976), (22.838636, 41.93353, -14.831584), (22.838636, 41.93353, -14.831584), (20.966764, 43.30127, -13.615976), (21.650635, 43.30127, -12.5), (23.583563, 41.93353, -13.615976), (23.583563, 41.93353, -13.615976), (21.650635, 43.30127, -12.5), (22.275164, 43.30127, -11.349763), (24.263847, 41.93353, -12.363048), (24.263847, 41.93353, -12.363048), (22.275164, 43.30127, -11.349763), (22.838636, 43.30127, -10.168416), (24.877626, 41.93353, -11.076233), (24.877626, 41.93353, -11.076233), (22.838636, 43.30127, -10.168416), (23.33951, 43.30127, -8.959199), (25.423218, 41.93353, -9.759059), (25.423218, 41.93353, -9.759059), (23.33951, 43.30127, -8.959199), (23.776413, 43.30127, -7.725425), (25.899126, 41.93353, -8.415136), (25.899126, 41.93353, -8.415136), (23.776413, 43.30127, -7.725425), (24.148146, 43.30127, -6.470476), (26.304045, 41.93353, -7.0481477), (26.304045, 41.93353, -7.0481477), (24.148146, 43.30127, -6.470476), (24.45369, 43.30127, -5.197792), (26.636868, 41.93353, -5.661841), (26.636868, 41.93353, -5.661841), (24.45369, 43.30127, -5.197792), (24.69221, 43.30127, -3.9108617), (26.89668, 41.93353, -4.260016), (26.89668, 41.93353, -4.260016), (24.69221, 43.30127, -3.9108617), (24.863047, 43.30127, -2.6132116), (27.082773, 41.93353, -2.846514), (27.082773, 41.93353, -2.846514), (24.863047, 43.30127, -2.6132116), (24.965738, 43.30127, -1.308399), (27.194632, 41.93353, -1.4252102), (27.194632, 41.93353, -1.4252102), (24.965738, 43.30127, -1.308399), (25, 43.30127, 0), (27.231953, 41.93353, 0), (25, 43.30127, 0), (22.699526, 44.550327, 0), (22.668417, 44.550327, 1.1880014), (24.965738, 43.30127, 1.308399), (24.965738, 43.30127, 1.308399), (22.668417, 44.550327, 1.1880014), (22.575174, 44.550327, 2.3727465), (24.863047, 43.30127, 2.6132116), (24.863047, 43.30127, 2.6132116), (22.575174, 44.550327, 2.3727465), (22.420055, 44.550327, 3.550988), (24.69221, 43.30127, 3.9108617), (24.69221, 43.30127, 3.9108617), (22.420055, 44.550327, 3.550988), (22.203485, 44.550327, 4.7194967), (24.45369, 43.30127, 5.197792), (24.45369, 43.30127, 5.197792), (22.203485, 44.550327, 4.7194967), (21.926058, 44.550327, 5.8750696), (24.148146, 43.30127, 6.470476), (24.148146, 43.30127, 6.470476), (21.926058, 44.550327, 5.8750696), (21.588531, 44.550327, 7.014539), (23.776413, 43.30127, 7.725425), (23.776413, 43.30127, 7.725425), (21.588531, 44.550327, 7.014539), (21.191832, 44.550327, 8.134782), (23.33951, 43.30127, 8.959199), (23.33951, 43.30127, 8.959199), (21.191832, 44.550327, 8.134782), (20.737047, 44.550327, 9.232729), (22.838636, 43.30127, 10.168416), (22.838636, 43.30127, 10.168416), (20.737047, 44.550327, 9.232729), (20.225426, 44.550327, 10.305368), (22.275164, 43.30127, 11.349763), (22.275164, 43.30127, 11.349763), (20.225426, 44.550327, 10.305368), (19.658365, 44.550327, 11.349763), (21.650635, 43.30127, 12.5), (21.650635, 43.30127, 12.5), (19.658365, 44.550327, 11.349763), (19.037424, 44.550327, 12.363048), (20.966764, 43.30127, 13.615976), (20.966764, 43.30127, 13.615976), (19.037424, 44.550327, 12.363048), (18.364302, 44.550327, 13.342446), (20.225426, 43.30127, 14.694632), (20.225426, 43.30127, 14.694632), (18.364302, 44.550327, 13.342446), (17.640844, 44.550327, 14.285274), (19.42865, 43.30127, 15.733009), (19.42865, 43.30127, 15.733009), (17.640844, 44.550327, 14.285274), (16.869034, 44.550327, 15.188947), (18.57862, 43.30127, 16.728266), (18.57862, 43.30127, 16.728266), (16.869034, 44.550327, 15.188947), (16.050987, 44.550327, 16.050987), (17.67767, 43.30127, 17.67767), (17.67767, 43.30127, 17.67767), (16.050987, 44.550327, 16.050987), (15.188947, 44.550327, 16.869034), (16.728266, 43.30127, 18.57862), (16.728266, 43.30127, 18.57862), (15.188947, 44.550327, 16.869034), (14.285274, 44.550327, 17.640844), (15.733009, 43.30127, 19.42865), (15.733009, 43.30127, 19.42865), (14.285274, 44.550327, 17.640844), (13.342446, 44.550327, 18.364302), (14.694632, 43.30127, 20.225426), (14.694632, 43.30127, 20.225426), (13.342446, 44.550327, 18.364302), (12.363048, 44.550327, 19.037424), (13.615976, 43.30127, 20.966764), (13.615976, 43.30127, 20.966764), (12.363048, 44.550327, 19.037424), (11.349763, 44.550327, 19.658365), (12.5, 43.30127, 21.650635), (12.5, 43.30127, 21.650635), (11.349763, 44.550327, 19.658365), (10.305368, 44.550327, 20.225426), (11.349763, 43.30127, 22.275164), (11.349763, 43.30127, 22.275164), (10.305368, 44.550327, 20.225426), (9.232729, 44.550327, 20.737047), (10.168416, 43.30127, 22.838636), (10.168416, 43.30127, 22.838636), (9.232729, 44.550327, 20.737047), (8.134782, 44.550327, 21.191832), (8.959199, 43.30127, 23.33951), (8.959199, 43.30127, 23.33951), (8.134782, 44.550327, 21.191832), (7.014539, 44.550327, 21.588531), (7.725425, 43.30127, 23.776413), (7.725425, 43.30127, 23.776413), (7.014539, 44.550327, 21.588531), (5.8750696, 44.550327, 21.926058), (6.470476, 43.30127, 24.148146), (6.470476, 43.30127, 24.148146), (5.8750696, 44.550327, 21.926058), (4.7194967, 44.550327, 22.203485), (5.197792, 43.30127, 24.45369), (5.197792, 43.30127, 24.45369), (4.7194967, 44.550327, 22.203485), (3.550988, 44.550327, 22.420055), (3.9108617, 43.30127, 24.69221), (3.9108617, 43.30127, 24.69221), (3.550988, 44.550327, 22.420055), (2.3727465, 44.550327, 22.575174), (2.6132116, 43.30127, 24.863047), (2.6132116, 43.30127, 24.863047), (2.3727465, 44.550327, 22.575174), (1.1880014, 44.550327, 22.668417), (1.308399, 43.30127, 24.965738), (1.308399, 43.30127, 24.965738), (1.1880014, 44.550327, 22.668417), (1.3899451e-15, 44.550327, 22.699526), (1.5308084e-15, 43.30127, 25), (1.5308084e-15, 43.30127, 25), (1.3899451e-15, 44.550327, 22.699526), (-1.1880014, 44.550327, 22.668417), (-1.308399, 43.30127, 24.965738), (-1.308399, 43.30127, 24.965738), (-1.1880014, 44.550327, 22.668417), (-2.3727465, 44.550327, 22.575174), (-2.6132116, 43.30127, 24.863047), (-2.6132116, 43.30127, 24.863047), (-2.3727465, 44.550327, 22.575174), (-3.550988, 44.550327, 22.420055), (-3.9108617, 43.30127, 24.69221), (-3.9108617, 43.30127, 24.69221), (-3.550988, 44.550327, 22.420055), (-4.7194967, 44.550327, 22.203485), (-5.197792, 43.30127, 24.45369), (-5.197792, 43.30127, 24.45369), (-4.7194967, 44.550327, 22.203485), (-5.8750696, 44.550327, 21.926058), (-6.470476, 43.30127, 24.148146), (-6.470476, 43.30127, 24.148146), (-5.8750696, 44.550327, 21.926058), (-7.014539, 44.550327, 21.588531), (-7.725425, 43.30127, 23.776413), (-7.725425, 43.30127, 23.776413), (-7.014539, 44.550327, 21.588531), (-8.134782, 44.550327, 21.191832), (-8.959199, 43.30127, 23.33951), (-8.959199, 43.30127, 23.33951), (-8.134782, 44.550327, 21.191832), (-9.232729, 44.550327, 20.737047), (-10.168416, 43.30127, 22.838636), (-10.168416, 43.30127, 22.838636), (-9.232729, 44.550327, 20.737047), (-10.305368, 44.550327, 20.225426), (-11.349763, 43.30127, 22.275164), (-11.349763, 43.30127, 22.275164), (-10.305368, 44.550327, 20.225426), (-11.349763, 44.550327, 19.658365), (-12.5, 43.30127, 21.650635), (-12.5, 43.30127, 21.650635), (-11.349763, 44.550327, 19.658365), (-12.363048, 44.550327, 19.037424), (-13.615976, 43.30127, 20.966764), (-13.615976, 43.30127, 20.966764), (-12.363048, 44.550327, 19.037424), (-13.342446, 44.550327, 18.364302), (-14.694632, 43.30127, 20.225426), (-14.694632, 43.30127, 20.225426), (-13.342446, 44.550327, 18.364302), (-14.285274, 44.550327, 17.640844), (-15.733009, 43.30127, 19.42865), (-15.733009, 43.30127, 19.42865), (-14.285274, 44.550327, 17.640844), (-15.188947, 44.550327, 16.869034), (-16.728266, 43.30127, 18.57862), (-16.728266, 43.30127, 18.57862), (-15.188947, 44.550327, 16.869034), (-16.050987, 44.550327, 16.050987), (-17.67767, 43.30127, 17.67767), (-17.67767, 43.30127, 17.67767), (-16.050987, 44.550327, 16.050987), (-16.869034, 44.550327, 15.188947), (-18.57862, 43.30127, 16.728266), (-18.57862, 43.30127, 16.728266), (-16.869034, 44.550327, 15.188947), (-17.640844, 44.550327, 14.285274), (-19.42865, 43.30127, 15.733009), (-19.42865, 43.30127, 15.733009), (-17.640844, 44.550327, 14.285274), (-18.364302, 44.550327, 13.342446), (-20.225426, 43.30127, 14.694632), (-20.225426, 43.30127, 14.694632), (-18.364302, 44.550327, 13.342446), (-19.037424, 44.550327, 12.363048), (-20.966764, 43.30127, 13.615976), (-20.966764, 43.30127, 13.615976), (-19.037424, 44.550327, 12.363048), (-19.658365, 44.550327, 11.349763), (-21.650635, 43.30127, 12.5), (-21.650635, 43.30127, 12.5), (-19.658365, 44.550327, 11.349763), (-20.225426, 44.550327, 10.305368), (-22.275164, 43.30127, 11.349763), (-22.275164, 43.30127, 11.349763), (-20.225426, 44.550327, 10.305368), (-20.737047, 44.550327, 9.232729), (-22.838636, 43.30127, 10.168416), (-22.838636, 43.30127, 10.168416), (-20.737047, 44.550327, 9.232729), (-21.191832, 44.550327, 8.134782), (-23.33951, 43.30127, 8.959199), (-23.33951, 43.30127, 8.959199), (-21.191832, 44.550327, 8.134782), (-21.588531, 44.550327, 7.014539), (-23.776413, 43.30127, 7.725425), (-23.776413, 43.30127, 7.725425), (-21.588531, 44.550327, 7.014539), (-21.926058, 44.550327, 5.8750696), (-24.148146, 43.30127, 6.470476), (-24.148146, 43.30127, 6.470476), (-21.926058, 44.550327, 5.8750696), (-22.203485, 44.550327, 4.7194967), (-24.45369, 43.30127, 5.197792), (-24.45369, 43.30127, 5.197792), (-22.203485, 44.550327, 4.7194967), (-22.420055, 44.550327, 3.550988), (-24.69221, 43.30127, 3.9108617), (-24.69221, 43.30127, 3.9108617), (-22.420055, 44.550327, 3.550988), (-22.575174, 44.550327, 2.3727465), (-24.863047, 43.30127, 2.6132116), (-24.863047, 43.30127, 2.6132116), (-22.575174, 44.550327, 2.3727465), (-22.668417, 44.550327, 1.1880014), (-24.965738, 43.30127, 1.308399), (-24.965738, 43.30127, 1.308399), (-22.668417, 44.550327, 1.1880014), (-22.699526, 44.550327, 2.7798901e-15), (-25, 43.30127, 3.0616169e-15), (-25, 43.30127, 3.0616169e-15), (-22.699526, 44.550327, 2.7798901e-15), (-22.668417, 44.550327, -1.1880014), (-24.965738, 43.30127, -1.308399), (-24.965738, 43.30127, -1.308399), (-22.668417, 44.550327, -1.1880014), (-22.575174, 44.550327, -2.3727465), (-24.863047, 43.30127, -2.6132116), (-24.863047, 43.30127, -2.6132116), (-22.575174, 44.550327, -2.3727465), (-22.420055, 44.550327, -3.550988), (-24.69221, 43.30127, -3.9108617), (-24.69221, 43.30127, -3.9108617), (-22.420055, 44.550327, -3.550988), (-22.203485, 44.550327, -4.7194967), (-24.45369, 43.30127, -5.197792), (-24.45369, 43.30127, -5.197792), (-22.203485, 44.550327, -4.7194967), (-21.926058, 44.550327, -5.8750696), (-24.148146, 43.30127, -6.470476), (-24.148146, 43.30127, -6.470476), (-21.926058, 44.550327, -5.8750696), (-21.588531, 44.550327, -7.014539), (-23.776413, 43.30127, -7.725425), (-23.776413, 43.30127, -7.725425), (-21.588531, 44.550327, -7.014539), (-21.191832, 44.550327, -8.134782), (-23.33951, 43.30127, -8.959199), (-23.33951, 43.30127, -8.959199), (-21.191832, 44.550327, -8.134782), (-20.737047, 44.550327, -9.232729), (-22.838636, 43.30127, -10.168416), (-22.838636, 43.30127, -10.168416), (-20.737047, 44.550327, -9.232729), (-20.225426, 44.550327, -10.305368), (-22.275164, 43.30127, -11.349763), (-22.275164, 43.30127, -11.349763), (-20.225426, 44.550327, -10.305368), (-19.658365, 44.550327, -11.349763), (-21.650635, 43.30127, -12.5), (-21.650635, 43.30127, -12.5), (-19.658365, 44.550327, -11.349763), (-19.037424, 44.550327, -12.363048), (-20.966764, 43.30127, -13.615976), (-20.966764, 43.30127, -13.615976), (-19.037424, 44.550327, -12.363048), (-18.364302, 44.550327, -13.342446), (-20.225426, 43.30127, -14.694632), (-20.225426, 43.30127, -14.694632), (-18.364302, 44.550327, -13.342446), (-17.640844, 44.550327, -14.285274), (-19.42865, 43.30127, -15.733009), (-19.42865, 43.30127, -15.733009), (-17.640844, 44.550327, -14.285274), (-16.869034, 44.550327, -15.188947), (-18.57862, 43.30127, -16.728266), (-18.57862, 43.30127, -16.728266), (-16.869034, 44.550327, -15.188947), (-16.050987, 44.550327, -16.050987), (-17.67767, 43.30127, -17.67767), (-17.67767, 43.30127, -17.67767), (-16.050987, 44.550327, -16.050987), (-15.188947, 44.550327, -16.869034), (-16.728266, 43.30127, -18.57862), (-16.728266, 43.30127, -18.57862), (-15.188947, 44.550327, -16.869034), (-14.285274, 44.550327, -17.640844), (-15.733009, 43.30127, -19.42865), (-15.733009, 43.30127, -19.42865), (-14.285274, 44.550327, -17.640844), (-13.342446, 44.550327, -18.364302), (-14.694632, 43.30127, -20.225426), (-14.694632, 43.30127, -20.225426), (-13.342446, 44.550327, -18.364302), (-12.363048, 44.550327, -19.037424), (-13.615976, 43.30127, -20.966764), (-13.615976, 43.30127, -20.966764), (-12.363048, 44.550327, -19.037424), (-11.349763, 44.550327, -19.658365), (-12.5, 43.30127, -21.650635), (-12.5, 43.30127, -21.650635), (-11.349763, 44.550327, -19.658365), (-10.305368, 44.550327, -20.225426), (-11.349763, 43.30127, -22.275164), (-11.349763, 43.30127, -22.275164), (-10.305368, 44.550327, -20.225426), (-9.232729, 44.550327, -20.737047), (-10.168416, 43.30127, -22.838636), (-10.168416, 43.30127, -22.838636), (-9.232729, 44.550327, -20.737047), (-8.134782, 44.550327, -21.191832), (-8.959199, 43.30127, -23.33951), (-8.959199, 43.30127, -23.33951), (-8.134782, 44.550327, -21.191832), (-7.014539, 44.550327, -21.588531), (-7.725425, 43.30127, -23.776413), (-7.725425, 43.30127, -23.776413), (-7.014539, 44.550327, -21.588531), (-5.8750696, 44.550327, -21.926058), (-6.470476, 43.30127, -24.148146), (-6.470476, 43.30127, -24.148146), (-5.8750696, 44.550327, -21.926058), (-4.7194967, 44.550327, -22.203485), (-5.197792, 43.30127, -24.45369), (-5.197792, 43.30127, -24.45369), (-4.7194967, 44.550327, -22.203485), (-3.550988, 44.550327, -22.420055), (-3.9108617, 43.30127, -24.69221), (-3.9108617, 43.30127, -24.69221), (-3.550988, 44.550327, -22.420055), (-2.3727465, 44.550327, -22.575174), (-2.6132116, 43.30127, -24.863047), (-2.6132116, 43.30127, -24.863047), (-2.3727465, 44.550327, -22.575174), (-1.1880014, 44.550327, -22.668417), (-1.308399, 43.30127, -24.965738), (-1.308399, 43.30127, -24.965738), (-1.1880014, 44.550327, -22.668417), (-4.169835e-15, 44.550327, -22.699526), (-4.5924254e-15, 43.30127, -25), (-4.5924254e-15, 43.30127, -25), (-4.169835e-15, 44.550327, -22.699526), (1.1880014, 44.550327, -22.668417), (1.308399, 43.30127, -24.965738), (1.308399, 43.30127, -24.965738), (1.1880014, 44.550327, -22.668417), (2.3727465, 44.550327, -22.575174), (2.6132116, 43.30127, -24.863047), (2.6132116, 43.30127, -24.863047), (2.3727465, 44.550327, -22.575174), (3.550988, 44.550327, -22.420055), (3.9108617, 43.30127, -24.69221), (3.9108617, 43.30127, -24.69221), (3.550988, 44.550327, -22.420055), (4.7194967, 44.550327, -22.203485), (5.197792, 43.30127, -24.45369), (5.197792, 43.30127, -24.45369), (4.7194967, 44.550327, -22.203485), (5.8750696, 44.550327, -21.926058), (6.470476, 43.30127, -24.148146), (6.470476, 43.30127, -24.148146), (5.8750696, 44.550327, -21.926058), (7.014539, 44.550327, -21.588531), (7.725425, 43.30127, -23.776413), (7.725425, 43.30127, -23.776413), (7.014539, 44.550327, -21.588531), (8.134782, 44.550327, -21.191832), (8.959199, 43.30127, -23.33951), (8.959199, 43.30127, -23.33951), (8.134782, 44.550327, -21.191832), (9.232729, 44.550327, -20.737047), (10.168416, 43.30127, -22.838636), (10.168416, 43.30127, -22.838636), (9.232729, 44.550327, -20.737047), (10.305368, 44.550327, -20.225426), (11.349763, 43.30127, -22.275164), (11.349763, 43.30127, -22.275164), (10.305368, 44.550327, -20.225426), (11.349763, 44.550327, -19.658365), (12.5, 43.30127, -21.650635), (12.5, 43.30127, -21.650635), (11.349763, 44.550327, -19.658365), (12.363048, 44.550327, -19.037424), (13.615976, 43.30127, -20.966764), (13.615976, 43.30127, -20.966764), (12.363048, 44.550327, -19.037424), (13.342446, 44.550327, -18.364302), (14.694632, 43.30127, -20.225426), (14.694632, 43.30127, -20.225426), (13.342446, 44.550327, -18.364302), (14.285274, 44.550327, -17.640844), (15.733009, 43.30127, -19.42865), (15.733009, 43.30127, -19.42865), (14.285274, 44.550327, -17.640844), (15.188947, 44.550327, -16.869034), (16.728266, 43.30127, -18.57862), (16.728266, 43.30127, -18.57862), (15.188947, 44.550327, -16.869034), (16.050987, 44.550327, -16.050987), (17.67767, 43.30127, -17.67767), (17.67767, 43.30127, -17.67767), (16.050987, 44.550327, -16.050987), (16.869034, 44.550327, -15.188947), (18.57862, 43.30127, -16.728266), (18.57862, 43.30127, -16.728266), (16.869034, 44.550327, -15.188947), (17.640844, 44.550327, -14.285274), (19.42865, 43.30127, -15.733009), (19.42865, 43.30127, -15.733009), (17.640844, 44.550327, -14.285274), (18.364302, 44.550327, -13.342446), (20.225426, 43.30127, -14.694632), (20.225426, 43.30127, -14.694632), (18.364302, 44.550327, -13.342446), (19.037424, 44.550327, -12.363048), (20.966764, 43.30127, -13.615976), (20.966764, 43.30127, -13.615976), (19.037424, 44.550327, -12.363048), (19.658365, 44.550327, -11.349763), (21.650635, 43.30127, -12.5), (21.650635, 43.30127, -12.5), (19.658365, 44.550327, -11.349763), (20.225426, 44.550327, -10.305368), (22.275164, 43.30127, -11.349763), (22.275164, 43.30127, -11.349763), (20.225426, 44.550327, -10.305368), (20.737047, 44.550327, -9.232729), (22.838636, 43.30127, -10.168416), (22.838636, 43.30127, -10.168416), (20.737047, 44.550327, -9.232729), (21.191832, 44.550327, -8.134782), (23.33951, 43.30127, -8.959199), (23.33951, 43.30127, -8.959199), (21.191832, 44.550327, -8.134782), (21.588531, 44.550327, -7.014539), (23.776413, 43.30127, -7.725425), (23.776413, 43.30127, -7.725425), (21.588531, 44.550327, -7.014539), (21.926058, 44.550327, -5.8750696), (24.148146, 43.30127, -6.470476), (24.148146, 43.30127, -6.470476), (21.926058, 44.550327, -5.8750696), (22.203485, 44.550327, -4.7194967), (24.45369, 43.30127, -5.197792), (24.45369, 43.30127, -5.197792), (22.203485, 44.550327, -4.7194967), (22.420055, 44.550327, -3.550988), (24.69221, 43.30127, -3.9108617), (24.69221, 43.30127, -3.9108617), (22.420055, 44.550327, -3.550988), (22.575174, 44.550327, -2.3727465), (24.863047, 43.30127, -2.6132116), (24.863047, 43.30127, -2.6132116), (22.575174, 44.550327, -2.3727465), (22.668417, 44.550327, -1.1880014), (24.965738, 43.30127, -1.308399), (24.965738, 43.30127, -1.308399), (22.668417, 44.550327, -1.1880014), (22.699526, 44.550327, 0), (25, 43.30127, 0), (22.699526, 44.550327, 0), (20.336832, 45.677273, 0), (20.308962, 45.677273, 1.0643475), (22.668417, 44.550327, 1.1880014), (22.668417, 44.550327, 1.1880014), (20.308962, 45.677273, 1.0643475), (20.225426, 45.677273, 2.1257777), (22.575174, 44.550327, 2.3727465), (22.575174, 44.550327, 2.3727465), (20.225426, 45.677273, 2.1257777), (20.086452, 45.677273, 3.1813815), (22.420055, 44.550327, 3.550988), (22.420055, 44.550327, 3.550988), (20.086452, 45.677273, 3.1813815), (19.892424, 45.677273, 4.2282653), (22.203485, 44.550327, 4.7194967), (22.203485, 44.550327, 4.7194967), (19.892424, 45.677273, 4.2282653), (19.643871, 45.677273, 5.2635593), (21.926058, 44.550327, 5.8750696), (21.926058, 44.550327, 5.8750696), (19.643871, 45.677273, 5.2635593), (19.341476, 45.677273, 6.2844267), (21.588531, 44.550327, 7.014539), (21.588531, 44.550327, 7.014539), (19.341476, 45.677273, 6.2844267), (18.986069, 45.677273, 7.288069), (21.191832, 44.550327, 8.134782), (21.191832, 44.550327, 8.134782), (18.986069, 45.677273, 7.288069), (18.57862, 45.677273, 8.271735), (20.737047, 44.550327, 9.232729), (20.737047, 44.550327, 9.232729), (18.57862, 45.677273, 8.271735), (18.12025, 45.677273, 9.232729), (20.225426, 44.550327, 10.305368), (20.225426, 44.550327, 10.305368), (18.12025, 45.677273, 9.232729), (17.612213, 45.677273, 10.168416), (19.658365, 44.550327, 11.349763), (19.658365, 44.550327, 11.349763), (17.612213, 45.677273, 10.168416), (17.055902, 45.677273, 11.076233), (19.037424, 44.550327, 12.363048), (19.037424, 44.550327, 12.363048), (17.055902, 45.677273, 11.076233), (16.452843, 45.677273, 11.95369), (18.364302, 44.550327, 13.342446), (18.364302, 44.550327, 13.342446), (16.452843, 45.677273, 11.95369), (15.804687, 45.677273, 12.798383), (17.640844, 44.550327, 14.285274), (17.640844, 44.550327, 14.285274), (15.804687, 45.677273, 12.798383), (15.113212, 45.677273, 13.607997), (16.869034, 44.550327, 15.188947), (16.869034, 44.550327, 15.188947), (15.113212, 45.677273, 13.607997), (14.380312, 45.677273, 14.380312), (16.050987, 44.550327, 16.050987), (16.050987, 44.550327, 16.050987), (14.380312, 45.677273, 14.380312), (13.607997, 45.677273, 15.113212), (15.188947, 44.550327, 16.869034), (15.188947, 44.550327, 16.869034), (13.607997, 45.677273, 15.113212), (12.798383, 45.677273, 15.804687), (14.285274, 44.550327, 17.640844), (14.285274, 44.550327, 17.640844), (12.798383, 45.677273, 15.804687), (11.95369, 45.677273, 16.452843), (13.342446, 44.550327, 18.364302), (13.342446, 44.550327, 18.364302), (11.95369, 45.677273, 16.452843), (11.076233, 45.677273, 17.055902), (12.363048, 44.550327, 19.037424), (12.363048, 44.550327, 19.037424), (11.076233, 45.677273, 17.055902), (10.168416, 45.677273, 17.612213), (11.349763, 44.550327, 19.658365), (11.349763, 44.550327, 19.658365), (10.168416, 45.677273, 17.612213), (9.232729, 45.677273, 18.12025), (10.305368, 44.550327, 20.225426), (10.305368, 44.550327, 20.225426), (9.232729, 45.677273, 18.12025), (8.271735, 45.677273, 18.57862), (9.232729, 44.550327, 20.737047), (9.232729, 44.550327, 20.737047), (8.271735, 45.677273, 18.57862), (7.288069, 45.677273, 18.986069), (8.134782, 44.550327, 21.191832), (8.134782, 44.550327, 21.191832), (7.288069, 45.677273, 18.986069), (6.2844267, 45.677273, 19.341476), (7.014539, 44.550327, 21.588531), (7.014539, 44.550327, 21.588531), (6.2844267, 45.677273, 19.341476), (5.2635593, 45.677273, 19.643871), (5.8750696, 44.550327, 21.926058), (5.8750696, 44.550327, 21.926058), (5.2635593, 45.677273, 19.643871), (4.2282653, 45.677273, 19.892424), (4.7194967, 44.550327, 22.203485), (4.7194967, 44.550327, 22.203485), (4.2282653, 45.677273, 19.892424), (3.1813815, 45.677273, 20.086452), (3.550988, 44.550327, 22.420055), (3.550988, 44.550327, 22.420055), (3.1813815, 45.677273, 20.086452), (2.1257777, 45.677273, 20.225426), (2.3727465, 44.550327, 22.575174), (2.3727465, 44.550327, 22.575174), (2.1257777, 45.677273, 20.225426), (1.0643475, 45.677273, 20.308962), (1.1880014, 44.550327, 22.668417), (1.1880014, 44.550327, 22.668417), (1.0643475, 45.677273, 20.308962), (1.2452718e-15, 45.677273, 20.336832), (1.3899451e-15, 44.550327, 22.699526), (1.3899451e-15, 44.550327, 22.699526), (1.2452718e-15, 45.677273, 20.336832), (-1.0643475, 45.677273, 20.308962), (-1.1880014, 44.550327, 22.668417), (-1.1880014, 44.550327, 22.668417), (-1.0643475, 45.677273, 20.308962), (-2.1257777, 45.677273, 20.225426), (-2.3727465, 44.550327, 22.575174), (-2.3727465, 44.550327, 22.575174), (-2.1257777, 45.677273, 20.225426), (-3.1813815, 45.677273, 20.086452), (-3.550988, 44.550327, 22.420055), (-3.550988, 44.550327, 22.420055), (-3.1813815, 45.677273, 20.086452), (-4.2282653, 45.677273, 19.892424), (-4.7194967, 44.550327, 22.203485), (-4.7194967, 44.550327, 22.203485), (-4.2282653, 45.677273, 19.892424), (-5.2635593, 45.677273, 19.643871), (-5.8750696, 44.550327, 21.926058), (-5.8750696, 44.550327, 21.926058), (-5.2635593, 45.677273, 19.643871), (-6.2844267, 45.677273, 19.341476), (-7.014539, 44.550327, 21.588531), (-7.014539, 44.550327, 21.588531), (-6.2844267, 45.677273, 19.341476), (-7.288069, 45.677273, 18.986069), (-8.134782, 44.550327, 21.191832), (-8.134782, 44.550327, 21.191832), (-7.288069, 45.677273, 18.986069), (-8.271735, 45.677273, 18.57862), (-9.232729, 44.550327, 20.737047), (-9.232729, 44.550327, 20.737047), (-8.271735, 45.677273, 18.57862), (-9.232729, 45.677273, 18.12025), (-10.305368, 44.550327, 20.225426), (-10.305368, 44.550327, 20.225426), (-9.232729, 45.677273, 18.12025), (-10.168416, 45.677273, 17.612213), (-11.349763, 44.550327, 19.658365), (-11.349763, 44.550327, 19.658365), (-10.168416, 45.677273, 17.612213), (-11.076233, 45.677273, 17.055902), (-12.363048, 44.550327, 19.037424), (-12.363048, 44.550327, 19.037424), (-11.076233, 45.677273, 17.055902), (-11.95369, 45.677273, 16.452843), (-13.342446, 44.550327, 18.364302), (-13.342446, 44.550327, 18.364302), (-11.95369, 45.677273, 16.452843), (-12.798383, 45.677273, 15.804687), (-14.285274, 44.550327, 17.640844), (-14.285274, 44.550327, 17.640844), (-12.798383, 45.677273, 15.804687), (-13.607997, 45.677273, 15.113212), (-15.188947, 44.550327, 16.869034), (-15.188947, 44.550327, 16.869034), (-13.607997, 45.677273, 15.113212), (-14.380312, 45.677273, 14.380312), (-16.050987, 44.550327, 16.050987), (-16.050987, 44.550327, 16.050987), (-14.380312, 45.677273, 14.380312), (-15.113212, 45.677273, 13.607997), (-16.869034, 44.550327, 15.188947), (-16.869034, 44.550327, 15.188947), (-15.113212, 45.677273, 13.607997), (-15.804687, 45.677273, 12.798383), (-17.640844, 44.550327, 14.285274), (-17.640844, 44.550327, 14.285274), (-15.804687, 45.677273, 12.798383), (-16.452843, 45.677273, 11.95369), (-18.364302, 44.550327, 13.342446), (-18.364302, 44.550327, 13.342446), (-16.452843, 45.677273, 11.95369), (-17.055902, 45.677273, 11.076233), (-19.037424, 44.550327, 12.363048), (-19.037424, 44.550327, 12.363048), (-17.055902, 45.677273, 11.076233), (-17.612213, 45.677273, 10.168416), (-19.658365, 44.550327, 11.349763), (-19.658365, 44.550327, 11.349763), (-17.612213, 45.677273, 10.168416), (-18.12025, 45.677273, 9.232729), (-20.225426, 44.550327, 10.305368), (-20.225426, 44.550327, 10.305368), (-18.12025, 45.677273, 9.232729), (-18.57862, 45.677273, 8.271735), (-20.737047, 44.550327, 9.232729), (-20.737047, 44.550327, 9.232729), (-18.57862, 45.677273, 8.271735), (-18.986069, 45.677273, 7.288069), (-21.191832, 44.550327, 8.134782), (-21.191832, 44.550327, 8.134782), (-18.986069, 45.677273, 7.288069), (-19.341476, 45.677273, 6.2844267), (-21.588531, 44.550327, 7.014539), (-21.588531, 44.550327, 7.014539), (-19.341476, 45.677273, 6.2844267), (-19.643871, 45.677273, 5.2635593), (-21.926058, 44.550327, 5.8750696), (-21.926058, 44.550327, 5.8750696), (-19.643871, 45.677273, 5.2635593), (-19.892424, 45.677273, 4.2282653), (-22.203485, 44.550327, 4.7194967), (-22.203485, 44.550327, 4.7194967), (-19.892424, 45.677273, 4.2282653), (-20.086452, 45.677273, 3.1813815), (-22.420055, 44.550327, 3.550988), (-22.420055, 44.550327, 3.550988), (-20.086452, 45.677273, 3.1813815), (-20.225426, 45.677273, 2.1257777), (-22.575174, 44.550327, 2.3727465), (-22.575174, 44.550327, 2.3727465), (-20.225426, 45.677273, 2.1257777), (-20.308962, 45.677273, 1.0643475), (-22.668417, 44.550327, 1.1880014), (-22.668417, 44.550327, 1.1880014), (-20.308962, 45.677273, 1.0643475), (-20.336832, 45.677273, 2.4905437e-15), (-22.699526, 44.550327, 2.7798901e-15), (-22.699526, 44.550327, 2.7798901e-15), (-20.336832, 45.677273, 2.4905437e-15), (-20.308962, 45.677273, -1.0643475), (-22.668417, 44.550327, -1.1880014), (-22.668417, 44.550327, -1.1880014), (-20.308962, 45.677273, -1.0643475), (-20.225426, 45.677273, -2.1257777), (-22.575174, 44.550327, -2.3727465), (-22.575174, 44.550327, -2.3727465), (-20.225426, 45.677273, -2.1257777), (-20.086452, 45.677273, -3.1813815), (-22.420055, 44.550327, -3.550988), (-22.420055, 44.550327, -3.550988), (-20.086452, 45.677273, -3.1813815), (-19.892424, 45.677273, -4.2282653), (-22.203485, 44.550327, -4.7194967), (-22.203485, 44.550327, -4.7194967), (-19.892424, 45.677273, -4.2282653), (-19.643871, 45.677273, -5.2635593), (-21.926058, 44.550327, -5.8750696), (-21.926058, 44.550327, -5.8750696), (-19.643871, 45.677273, -5.2635593), (-19.341476, 45.677273, -6.2844267), (-21.588531, 44.550327, -7.014539), (-21.588531, 44.550327, -7.014539), (-19.341476, 45.677273, -6.2844267), (-18.986069, 45.677273, -7.288069), (-21.191832, 44.550327, -8.134782), (-21.191832, 44.550327, -8.134782), (-18.986069, 45.677273, -7.288069), (-18.57862, 45.677273, -8.271735), (-20.737047, 44.550327, -9.232729), (-20.737047, 44.550327, -9.232729), (-18.57862, 45.677273, -8.271735), (-18.12025, 45.677273, -9.232729), (-20.225426, 44.550327, -10.305368), (-20.225426, 44.550327, -10.305368), (-18.12025, 45.677273, -9.232729), (-17.612213, 45.677273, -10.168416), (-19.658365, 44.550327, -11.349763), (-19.658365, 44.550327, -11.349763), (-17.612213, 45.677273, -10.168416), (-17.055902, 45.677273, -11.076233), (-19.037424, 44.550327, -12.363048), (-19.037424, 44.550327, -12.363048), (-17.055902, 45.677273, -11.076233), (-16.452843, 45.677273, -11.95369), (-18.364302, 44.550327, -13.342446), (-18.364302, 44.550327, -13.342446), (-16.452843, 45.677273, -11.95369), (-15.804687, 45.677273, -12.798383), (-17.640844, 44.550327, -14.285274), (-17.640844, 44.550327, -14.285274), (-15.804687, 45.677273, -12.798383), (-15.113212, 45.677273, -13.607997), (-16.869034, 44.550327, -15.188947), (-16.869034, 44.550327, -15.188947), (-15.113212, 45.677273, -13.607997), (-14.380312, 45.677273, -14.380312), (-16.050987, 44.550327, -16.050987), (-16.050987, 44.550327, -16.050987), (-14.380312, 45.677273, -14.380312), (-13.607997, 45.677273, -15.113212), (-15.188947, 44.550327, -16.869034), (-15.188947, 44.550327, -16.869034), (-13.607997, 45.677273, -15.113212), (-12.798383, 45.677273, -15.804687), (-14.285274, 44.550327, -17.640844), (-14.285274, 44.550327, -17.640844), (-12.798383, 45.677273, -15.804687), (-11.95369, 45.677273, -16.452843), (-13.342446, 44.550327, -18.364302), (-13.342446, 44.550327, -18.364302), (-11.95369, 45.677273, -16.452843), (-11.076233, 45.677273, -17.055902), (-12.363048, 44.550327, -19.037424), (-12.363048, 44.550327, -19.037424), (-11.076233, 45.677273, -17.055902), (-10.168416, 45.677273, -17.612213), (-11.349763, 44.550327, -19.658365), (-11.349763, 44.550327, -19.658365), (-10.168416, 45.677273, -17.612213), (-9.232729, 45.677273, -18.12025), (-10.305368, 44.550327, -20.225426), (-10.305368, 44.550327, -20.225426), (-9.232729, 45.677273, -18.12025), (-8.271735, 45.677273, -18.57862), (-9.232729, 44.550327, -20.737047), (-9.232729, 44.550327, -20.737047), (-8.271735, 45.677273, -18.57862), (-7.288069, 45.677273, -18.986069), (-8.134782, 44.550327, -21.191832), (-8.134782, 44.550327, -21.191832), (-7.288069, 45.677273, -18.986069), (-6.2844267, 45.677273, -19.341476), (-7.014539, 44.550327, -21.588531), (-7.014539, 44.550327, -21.588531), (-6.2844267, 45.677273, -19.341476), (-5.2635593, 45.677273, -19.643871), (-5.8750696, 44.550327, -21.926058), (-5.8750696, 44.550327, -21.926058), (-5.2635593, 45.677273, -19.643871), (-4.2282653, 45.677273, -19.892424), (-4.7194967, 44.550327, -22.203485), (-4.7194967, 44.550327, -22.203485), (-4.2282653, 45.677273, -19.892424), (-3.1813815, 45.677273, -20.086452), (-3.550988, 44.550327, -22.420055), (-3.550988, 44.550327, -22.420055), (-3.1813815, 45.677273, -20.086452), (-2.1257777, 45.677273, -20.225426), (-2.3727465, 44.550327, -22.575174), (-2.3727465, 44.550327, -22.575174), (-2.1257777, 45.677273, -20.225426), (-1.0643475, 45.677273, -20.308962), (-1.1880014, 44.550327, -22.668417), (-1.1880014, 44.550327, -22.668417), (-1.0643475, 45.677273, -20.308962), (-3.7358155e-15, 45.677273, -20.336832), (-4.169835e-15, 44.550327, -22.699526), (-4.169835e-15, 44.550327, -22.699526), (-3.7358155e-15, 45.677273, -20.336832), (1.0643475, 45.677273, -20.308962), (1.1880014, 44.550327, -22.668417), (1.1880014, 44.550327, -22.668417), (1.0643475, 45.677273, -20.308962), (2.1257777, 45.677273, -20.225426), (2.3727465, 44.550327, -22.575174), (2.3727465, 44.550327, -22.575174), (2.1257777, 45.677273, -20.225426), (3.1813815, 45.677273, -20.086452), (3.550988, 44.550327, -22.420055), (3.550988, 44.550327, -22.420055), (3.1813815, 45.677273, -20.086452), (4.2282653, 45.677273, -19.892424), (4.7194967, 44.550327, -22.203485), (4.7194967, 44.550327, -22.203485), (4.2282653, 45.677273, -19.892424), (5.2635593, 45.677273, -19.643871), (5.8750696, 44.550327, -21.926058), (5.8750696, 44.550327, -21.926058), (5.2635593, 45.677273, -19.643871), (6.2844267, 45.677273, -19.341476), (7.014539, 44.550327, -21.588531), (7.014539, 44.550327, -21.588531), (6.2844267, 45.677273, -19.341476), (7.288069, 45.677273, -18.986069), (8.134782, 44.550327, -21.191832), (8.134782, 44.550327, -21.191832), (7.288069, 45.677273, -18.986069), (8.271735, 45.677273, -18.57862), (9.232729, 44.550327, -20.737047), (9.232729, 44.550327, -20.737047), (8.271735, 45.677273, -18.57862), (9.232729, 45.677273, -18.12025), (10.305368, 44.550327, -20.225426), (10.305368, 44.550327, -20.225426), (9.232729, 45.677273, -18.12025), (10.168416, 45.677273, -17.612213), (11.349763, 44.550327, -19.658365), (11.349763, 44.550327, -19.658365), (10.168416, 45.677273, -17.612213), (11.076233, 45.677273, -17.055902), (12.363048, 44.550327, -19.037424), (12.363048, 44.550327, -19.037424), (11.076233, 45.677273, -17.055902), (11.95369, 45.677273, -16.452843), (13.342446, 44.550327, -18.364302), (13.342446, 44.550327, -18.364302), (11.95369, 45.677273, -16.452843), (12.798383, 45.677273, -15.804687), (14.285274, 44.550327, -17.640844), (14.285274, 44.550327, -17.640844), (12.798383, 45.677273, -15.804687), (13.607997, 45.677273, -15.113212), (15.188947, 44.550327, -16.869034), (15.188947, 44.550327, -16.869034), (13.607997, 45.677273, -15.113212), (14.380312, 45.677273, -14.380312), (16.050987, 44.550327, -16.050987), (16.050987, 44.550327, -16.050987), (14.380312, 45.677273, -14.380312), (15.113212, 45.677273, -13.607997), (16.869034, 44.550327, -15.188947), (16.869034, 44.550327, -15.188947), (15.113212, 45.677273, -13.607997), (15.804687, 45.677273, -12.798383), (17.640844, 44.550327, -14.285274), (17.640844, 44.550327, -14.285274), (15.804687, 45.677273, -12.798383), (16.452843, 45.677273, -11.95369), (18.364302, 44.550327, -13.342446), (18.364302, 44.550327, -13.342446), (16.452843, 45.677273, -11.95369), (17.055902, 45.677273, -11.076233), (19.037424, 44.550327, -12.363048), (19.037424, 44.550327, -12.363048), (17.055902, 45.677273, -11.076233), (17.612213, 45.677273, -10.168416), (19.658365, 44.550327, -11.349763), (19.658365, 44.550327, -11.349763), (17.612213, 45.677273, -10.168416), (18.12025, 45.677273, -9.232729), (20.225426, 44.550327, -10.305368), (20.225426, 44.550327, -10.305368), (18.12025, 45.677273, -9.232729), (18.57862, 45.677273, -8.271735), (20.737047, 44.550327, -9.232729), (20.737047, 44.550327, -9.232729), (18.57862, 45.677273, -8.271735), (18.986069, 45.677273, -7.288069), (21.191832, 44.550327, -8.134782), (21.191832, 44.550327, -8.134782), (18.986069, 45.677273, -7.288069), (19.341476, 45.677273, -6.2844267), (21.588531, 44.550327, -7.014539), (21.588531, 44.550327, -7.014539), (19.341476, 45.677273, -6.2844267), (19.643871, 45.677273, -5.2635593), (21.926058, 44.550327, -5.8750696), (21.926058, 44.550327, -5.8750696), (19.643871, 45.677273, -5.2635593), (19.892424, 45.677273, -4.2282653), (22.203485, 44.550327, -4.7194967), (22.203485, 44.550327, -4.7194967), (19.892424, 45.677273, -4.2282653), (20.086452, 45.677273, -3.1813815), (22.420055, 44.550327, -3.550988), (22.420055, 44.550327, -3.550988), (20.086452, 45.677273, -3.1813815), (20.225426, 45.677273, -2.1257777), (22.575174, 44.550327, -2.3727465), (22.575174, 44.550327, -2.3727465), (20.225426, 45.677273, -2.1257777), (20.308962, 45.677273, -1.0643475), (22.668417, 44.550327, -1.1880014), (22.668417, 44.550327, -1.1880014), (20.308962, 45.677273, -1.0643475), (20.336832, 45.677273, 0), (22.699526, 44.550327, 0), (20.336832, 45.677273, 0), (17.918398, 46.67902, 0), (17.89384, 46.67902, 0.93777645), (20.308962, 45.677273, 1.0643475), (20.308962, 45.677273, 1.0643475), (17.89384, 46.67902, 0.93777645), (17.820238, 46.67902, 1.8729825), (20.225426, 45.677273, 2.1257777), (20.225426, 45.677273, 2.1257777), (17.820238, 46.67902, 1.8729825), (17.697792, 46.67902, 2.8030548), (20.086452, 45.677273, 3.1813815), (20.086452, 45.677273, 3.1813815), (17.697792, 46.67902, 2.8030548), (17.526838, 46.67902, 3.7254443), (19.892424, 45.677273, 4.2282653), (19.892424, 45.677273, 4.2282653), (17.526838, 46.67902, 3.7254443), (17.307842, 46.67902, 4.6376224), (19.643871, 45.677273, 5.2635593), (19.643871, 45.677273, 5.2635593), (17.307842, 46.67902, 4.6376224), (17.041409, 46.67902, 5.5370893), (19.341476, 45.677273, 6.2844267), (19.341476, 45.677273, 6.2844267), (17.041409, 46.67902, 5.5370893), (16.728266, 46.67902, 6.4213796), (18.986069, 45.677273, 7.288069), (18.986069, 45.677273, 7.288069), (16.728266, 46.67902, 6.4213796), (16.36927, 46.67902, 7.288069), (18.57862, 45.677273, 8.271735), (18.57862, 45.677273, 8.271735), (16.36927, 46.67902, 7.288069), (15.965409, 46.67902, 8.134782), (18.12025, 45.677273, 9.232729), (18.12025, 45.677273, 9.232729), (15.965409, 46.67902, 8.134782), (15.517787, 46.67902, 8.959199), (17.612213, 45.677273, 10.168416), (17.612213, 45.677273, 10.168416), (15.517787, 46.67902, 8.959199), (15.027633, 46.67902, 9.759059), (17.055902, 45.677273, 11.076233), (17.055902, 45.677273, 11.076233), (15.027633, 46.67902, 9.759059), (14.496288, 46.67902, 10.532169), (16.452843, 45.677273, 11.95369), (16.452843, 45.677273, 11.95369), (14.496288, 46.67902, 10.532169), (13.92521, 46.67902, 11.276413), (15.804687, 45.677273, 12.798383), (15.804687, 45.677273, 12.798383), (13.92521, 46.67902, 11.276413), (13.315965, 46.67902, 11.989748), (15.113212, 45.677273, 13.607997), (15.113212, 45.677273, 13.607997), (13.315965, 46.67902, 11.989748), (12.67022, 46.67902, 12.67022), (14.380312, 45.677273, 14.380312), (14.380312, 45.677273, 14.380312), (12.67022, 46.67902, 12.67022), (11.989748, 46.67902, 13.315965), (13.607997, 45.677273, 15.113212), (13.607997, 45.677273, 15.113212), (11.989748, 46.67902, 13.315965), (11.276413, 46.67902, 13.92521), (12.798383, 45.677273, 15.804687), (12.798383, 45.677273, 15.804687), (11.276413, 46.67902, 13.92521), (10.532169, 46.67902, 14.496288), (11.95369, 45.677273, 16.452843), (11.95369, 45.677273, 16.452843), (10.532169, 46.67902, 14.496288), (9.759059, 46.67902, 15.027633), (11.076233, 45.677273, 17.055902), (11.076233, 45.677273, 17.055902), (9.759059, 46.67902, 15.027633), (8.959199, 46.67902, 15.517787), (10.168416, 45.677273, 17.612213), (10.168416, 45.677273, 17.612213), (8.959199, 46.67902, 15.517787), (8.134782, 46.67902, 15.965409), (9.232729, 45.677273, 18.12025), (9.232729, 45.677273, 18.12025), (8.134782, 46.67902, 15.965409), (7.288069, 46.67902, 16.36927), (8.271735, 45.677273, 18.57862), (8.271735, 45.677273, 18.57862), (7.288069, 46.67902, 16.36927), (6.4213796, 46.67902, 16.728266), (7.288069, 45.677273, 18.986069), (7.288069, 45.677273, 18.986069), (6.4213796, 46.67902, 16.728266), (5.5370893, 46.67902, 17.041409), (6.2844267, 45.677273, 19.341476), (6.2844267, 45.677273, 19.341476), (5.5370893, 46.67902, 17.041409), (4.6376224, 46.67902, 17.307842), (5.2635593, 45.677273, 19.643871), (5.2635593, 45.677273, 19.643871), (4.6376224, 46.67902, 17.307842), (3.7254443, 46.67902, 17.526838), (4.2282653, 45.677273, 19.892424), (4.2282653, 45.677273, 19.892424), (3.7254443, 46.67902, 17.526838), (2.8030548, 46.67902, 17.697792), (3.1813815, 45.677273, 20.086452), (3.1813815, 45.677273, 20.086452), (2.8030548, 46.67902, 17.697792), (1.8729825, 46.67902, 17.820238), (2.1257777, 45.677273, 20.225426), (2.1257777, 45.677273, 20.225426), (1.8729825, 46.67902, 17.820238), (0.93777645, 46.67902, 17.89384), (1.0643475, 45.677273, 20.308962), (1.0643475, 45.677273, 20.308962), (0.93777645, 46.67902, 17.89384), (1.0971854e-15, 46.67902, 17.918398), (1.2452718e-15, 45.677273, 20.336832), (1.2452718e-15, 45.677273, 20.336832), (1.0971854e-15, 46.67902, 17.918398), (-0.93777645, 46.67902, 17.89384), (-1.0643475, 45.677273, 20.308962), (-1.0643475, 45.677273, 20.308962), (-0.93777645, 46.67902, 17.89384), (-1.8729825, 46.67902, 17.820238), (-2.1257777, 45.677273, 20.225426), (-2.1257777, 45.677273, 20.225426), (-1.8729825, 46.67902, 17.820238), (-2.8030548, 46.67902, 17.697792), (-3.1813815, 45.677273, 20.086452), (-3.1813815, 45.677273, 20.086452), (-2.8030548, 46.67902, 17.697792), (-3.7254443, 46.67902, 17.526838), (-4.2282653, 45.677273, 19.892424), (-4.2282653, 45.677273, 19.892424), (-3.7254443, 46.67902, 17.526838), (-4.6376224, 46.67902, 17.307842), (-5.2635593, 45.677273, 19.643871), (-5.2635593, 45.677273, 19.643871), (-4.6376224, 46.67902, 17.307842), (-5.5370893, 46.67902, 17.041409), (-6.2844267, 45.677273, 19.341476), (-6.2844267, 45.677273, 19.341476), (-5.5370893, 46.67902, 17.041409), (-6.4213796, 46.67902, 16.728266), (-7.288069, 45.677273, 18.986069), (-7.288069, 45.677273, 18.986069), (-6.4213796, 46.67902, 16.728266), (-7.288069, 46.67902, 16.36927), (-8.271735, 45.677273, 18.57862), (-8.271735, 45.677273, 18.57862), (-7.288069, 46.67902, 16.36927), (-8.134782, 46.67902, 15.965409), (-9.232729, 45.677273, 18.12025), (-9.232729, 45.677273, 18.12025), (-8.134782, 46.67902, 15.965409), (-8.959199, 46.67902, 15.517787), (-10.168416, 45.677273, 17.612213), (-10.168416, 45.677273, 17.612213), (-8.959199, 46.67902, 15.517787), (-9.759059, 46.67902, 15.027633), (-11.076233, 45.677273, 17.055902), (-11.076233, 45.677273, 17.055902), (-9.759059, 46.67902, 15.027633), (-10.532169, 46.67902, 14.496288), (-11.95369, 45.677273, 16.452843), (-11.95369, 45.677273, 16.452843), (-10.532169, 46.67902, 14.496288), (-11.276413, 46.67902, 13.92521), (-12.798383, 45.677273, 15.804687), (-12.798383, 45.677273, 15.804687), (-11.276413, 46.67902, 13.92521), (-11.989748, 46.67902, 13.315965), (-13.607997, 45.677273, 15.113212), (-13.607997, 45.677273, 15.113212), (-11.989748, 46.67902, 13.315965), (-12.67022, 46.67902, 12.67022), (-14.380312, 45.677273, 14.380312), (-14.380312, 45.677273, 14.380312), (-12.67022, 46.67902, 12.67022), (-13.315965, 46.67902, 11.989748), (-15.113212, 45.677273, 13.607997), (-15.113212, 45.677273, 13.607997), (-13.315965, 46.67902, 11.989748), (-13.92521, 46.67902, 11.276413), (-15.804687, 45.677273, 12.798383), (-15.804687, 45.677273, 12.798383), (-13.92521, 46.67902, 11.276413), (-14.496288, 46.67902, 10.532169), (-16.452843, 45.677273, 11.95369), (-16.452843, 45.677273, 11.95369), (-14.496288, 46.67902, 10.532169), (-15.027633, 46.67902, 9.759059), (-17.055902, 45.677273, 11.076233), (-17.055902, 45.677273, 11.076233), (-15.027633, 46.67902, 9.759059), (-15.517787, 46.67902, 8.959199), (-17.612213, 45.677273, 10.168416), (-17.612213, 45.677273, 10.168416), (-15.517787, 46.67902, 8.959199), (-15.965409, 46.67902, 8.134782), (-18.12025, 45.677273, 9.232729), (-18.12025, 45.677273, 9.232729), (-15.965409, 46.67902, 8.134782), (-16.36927, 46.67902, 7.288069), (-18.57862, 45.677273, 8.271735), (-18.57862, 45.677273, 8.271735), (-16.36927, 46.67902, 7.288069), (-16.728266, 46.67902, 6.4213796), (-18.986069, 45.677273, 7.288069), (-18.986069, 45.677273, 7.288069), (-16.728266, 46.67902, 6.4213796), (-17.041409, 46.67902, 5.5370893), (-19.341476, 45.677273, 6.2844267), (-19.341476, 45.677273, 6.2844267), (-17.041409, 46.67902, 5.5370893), (-17.307842, 46.67902, 4.6376224), (-19.643871, 45.677273, 5.2635593), (-19.643871, 45.677273, 5.2635593), (-17.307842, 46.67902, 4.6376224), (-17.526838, 46.67902, 3.7254443), (-19.892424, 45.677273, 4.2282653), (-19.892424, 45.677273, 4.2282653), (-17.526838, 46.67902, 3.7254443), (-17.697792, 46.67902, 2.8030548), (-20.086452, 45.677273, 3.1813815), (-20.086452, 45.677273, 3.1813815), (-17.697792, 46.67902, 2.8030548), (-17.820238, 46.67902, 1.8729825), (-20.225426, 45.677273, 2.1257777), (-20.225426, 45.677273, 2.1257777), (-17.820238, 46.67902, 1.8729825), (-17.89384, 46.67902, 0.93777645), (-20.308962, 45.677273, 1.0643475), (-20.308962, 45.677273, 1.0643475), (-17.89384, 46.67902, 0.93777645), (-17.918398, 46.67902, 2.1943708e-15), (-20.336832, 45.677273, 2.4905437e-15), (-20.336832, 45.677273, 2.4905437e-15), (-17.918398, 46.67902, 2.1943708e-15), (-17.89384, 46.67902, -0.93777645), (-20.308962, 45.677273, -1.0643475), (-20.308962, 45.677273, -1.0643475), (-17.89384, 46.67902, -0.93777645), (-17.820238, 46.67902, -1.8729825), (-20.225426, 45.677273, -2.1257777), (-20.225426, 45.677273, -2.1257777), (-17.820238, 46.67902, -1.8729825), (-17.697792, 46.67902, -2.8030548), (-20.086452, 45.677273, -3.1813815), (-20.086452, 45.677273, -3.1813815), (-17.697792, 46.67902, -2.8030548), (-17.526838, 46.67902, -3.7254443), (-19.892424, 45.677273, -4.2282653), (-19.892424, 45.677273, -4.2282653), (-17.526838, 46.67902, -3.7254443), (-17.307842, 46.67902, -4.6376224), (-19.643871, 45.677273, -5.2635593), (-19.643871, 45.677273, -5.2635593), (-17.307842, 46.67902, -4.6376224), (-17.041409, 46.67902, -5.5370893), (-19.341476, 45.677273, -6.2844267), (-19.341476, 45.677273, -6.2844267), (-17.041409, 46.67902, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-18.986069, 45.677273, -7.288069), (-18.986069, 45.677273, -7.288069), (-16.728266, 46.67902, -6.4213796), (-16.36927, 46.67902, -7.288069), (-18.57862, 45.677273, -8.271735), (-18.57862, 45.677273, -8.271735), (-16.36927, 46.67902, -7.288069), (-15.965409, 46.67902, -8.134782), (-18.12025, 45.677273, -9.232729), (-18.12025, 45.677273, -9.232729), (-15.965409, 46.67902, -8.134782), (-15.517787, 46.67902, -8.959199), (-17.612213, 45.677273, -10.168416), (-17.612213, 45.677273, -10.168416), (-15.517787, 46.67902, -8.959199), (-15.027633, 46.67902, -9.759059), (-17.055902, 45.677273, -11.076233), (-17.055902, 45.677273, -11.076233), (-15.027633, 46.67902, -9.759059), (-14.496288, 46.67902, -10.532169), (-16.452843, 45.677273, -11.95369), (-16.452843, 45.677273, -11.95369), (-14.496288, 46.67902, -10.532169), (-13.92521, 46.67902, -11.276413), (-15.804687, 45.677273, -12.798383), (-15.804687, 45.677273, -12.798383), (-13.92521, 46.67902, -11.276413), (-13.315965, 46.67902, -11.989748), (-15.113212, 45.677273, -13.607997), (-15.113212, 45.677273, -13.607997), (-13.315965, 46.67902, -11.989748), (-12.67022, 46.67902, -12.67022), (-14.380312, 45.677273, -14.380312), (-14.380312, 45.677273, -14.380312), (-12.67022, 46.67902, -12.67022), (-11.989748, 46.67902, -13.315965), (-13.607997, 45.677273, -15.113212), (-13.607997, 45.677273, -15.113212), (-11.989748, 46.67902, -13.315965), (-11.276413, 46.67902, -13.92521), (-12.798383, 45.677273, -15.804687), (-12.798383, 45.677273, -15.804687), (-11.276413, 46.67902, -13.92521), (-10.532169, 46.67902, -14.496288), (-11.95369, 45.677273, -16.452843), (-11.95369, 45.677273, -16.452843), (-10.532169, 46.67902, -14.496288), (-9.759059, 46.67902, -15.027633), (-11.076233, 45.677273, -17.055902), (-11.076233, 45.677273, -17.055902), (-9.759059, 46.67902, -15.027633), (-8.959199, 46.67902, -15.517787), (-10.168416, 45.677273, -17.612213), (-10.168416, 45.677273, -17.612213), (-8.959199, 46.67902, -15.517787), (-8.134782, 46.67902, -15.965409), (-9.232729, 45.677273, -18.12025), (-9.232729, 45.677273, -18.12025), (-8.134782, 46.67902, -15.965409), (-7.288069, 46.67902, -16.36927), (-8.271735, 45.677273, -18.57862), (-8.271735, 45.677273, -18.57862), (-7.288069, 46.67902, -16.36927), (-6.4213796, 46.67902, -16.728266), (-7.288069, 45.677273, -18.986069), (-7.288069, 45.677273, -18.986069), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 46.67902, -17.041409), (-6.2844267, 45.677273, -19.341476), (-6.2844267, 45.677273, -19.341476), (-5.5370893, 46.67902, -17.041409), (-4.6376224, 46.67902, -17.307842), (-5.2635593, 45.677273, -19.643871), (-5.2635593, 45.677273, -19.643871), (-4.6376224, 46.67902, -17.307842), (-3.7254443, 46.67902, -17.526838), (-4.2282653, 45.677273, -19.892424), (-4.2282653, 45.677273, -19.892424), (-3.7254443, 46.67902, -17.526838), (-2.8030548, 46.67902, -17.697792), (-3.1813815, 45.677273, -20.086452), (-3.1813815, 45.677273, -20.086452), (-2.8030548, 46.67902, -17.697792), (-1.8729825, 46.67902, -17.820238), (-2.1257777, 45.677273, -20.225426), (-2.1257777, 45.677273, -20.225426), (-1.8729825, 46.67902, -17.820238), (-0.93777645, 46.67902, -17.89384), (-1.0643475, 45.677273, -20.308962), (-1.0643475, 45.677273, -20.308962), (-0.93777645, 46.67902, -17.89384), (-3.2915563e-15, 46.67902, -17.918398), (-3.7358155e-15, 45.677273, -20.336832), (-3.7358155e-15, 45.677273, -20.336832), (-3.2915563e-15, 46.67902, -17.918398), (0.93777645, 46.67902, -17.89384), (1.0643475, 45.677273, -20.308962), (1.0643475, 45.677273, -20.308962), (0.93777645, 46.67902, -17.89384), (1.8729825, 46.67902, -17.820238), (2.1257777, 45.677273, -20.225426), (2.1257777, 45.677273, -20.225426), (1.8729825, 46.67902, -17.820238), (2.8030548, 46.67902, -17.697792), (3.1813815, 45.677273, -20.086452), (3.1813815, 45.677273, -20.086452), (2.8030548, 46.67902, -17.697792), (3.7254443, 46.67902, -17.526838), (4.2282653, 45.677273, -19.892424), (4.2282653, 45.677273, -19.892424), (3.7254443, 46.67902, -17.526838), (4.6376224, 46.67902, -17.307842), (5.2635593, 45.677273, -19.643871), (5.2635593, 45.677273, -19.643871), (4.6376224, 46.67902, -17.307842), (5.5370893, 46.67902, -17.041409), (6.2844267, 45.677273, -19.341476), (6.2844267, 45.677273, -19.341476), (5.5370893, 46.67902, -17.041409), (6.4213796, 46.67902, -16.728266), (7.288069, 45.677273, -18.986069), (7.288069, 45.677273, -18.986069), (6.4213796, 46.67902, -16.728266), (7.288069, 46.67902, -16.36927), (8.271735, 45.677273, -18.57862), (8.271735, 45.677273, -18.57862), (7.288069, 46.67902, -16.36927), (8.134782, 46.67902, -15.965409), (9.232729, 45.677273, -18.12025), (9.232729, 45.677273, -18.12025), (8.134782, 46.67902, -15.965409), (8.959199, 46.67902, -15.517787), (10.168416, 45.677273, -17.612213), (10.168416, 45.677273, -17.612213), (8.959199, 46.67902, -15.517787), (9.759059, 46.67902, -15.027633), (11.076233, 45.677273, -17.055902), (11.076233, 45.677273, -17.055902), (9.759059, 46.67902, -15.027633), (10.532169, 46.67902, -14.496288), (11.95369, 45.677273, -16.452843), (11.95369, 45.677273, -16.452843), (10.532169, 46.67902, -14.496288), (11.276413, 46.67902, -13.92521), (12.798383, 45.677273, -15.804687), (12.798383, 45.677273, -15.804687), (11.276413, 46.67902, -13.92521), (11.989748, 46.67902, -13.315965), (13.607997, 45.677273, -15.113212), (13.607997, 45.677273, -15.113212), (11.989748, 46.67902, -13.315965), (12.67022, 46.67902, -12.67022), (14.380312, 45.677273, -14.380312), (14.380312, 45.677273, -14.380312), (12.67022, 46.67902, -12.67022), (13.315965, 46.67902, -11.989748), (15.113212, 45.677273, -13.607997), (15.113212, 45.677273, -13.607997), (13.315965, 46.67902, -11.989748), (13.92521, 46.67902, -11.276413), (15.804687, 45.677273, -12.798383), (15.804687, 45.677273, -12.798383), (13.92521, 46.67902, -11.276413), (14.496288, 46.67902, -10.532169), (16.452843, 45.677273, -11.95369), (16.452843, 45.677273, -11.95369), (14.496288, 46.67902, -10.532169), (15.027633, 46.67902, -9.759059), (17.055902, 45.677273, -11.076233), (17.055902, 45.677273, -11.076233), (15.027633, 46.67902, -9.759059), (15.517787, 46.67902, -8.959199), (17.612213, 45.677273, -10.168416), (17.612213, 45.677273, -10.168416), (15.517787, 46.67902, -8.959199), (15.965409, 46.67902, -8.134782), (18.12025, 45.677273, -9.232729), (18.12025, 45.677273, -9.232729), (15.965409, 46.67902, -8.134782), (16.36927, 46.67902, -7.288069), (18.57862, 45.677273, -8.271735), (18.57862, 45.677273, -8.271735), (16.36927, 46.67902, -7.288069), (16.728266, 46.67902, -6.4213796), (18.986069, 45.677273, -7.288069), (18.986069, 45.677273, -7.288069), (16.728266, 46.67902, -6.4213796), (17.041409, 46.67902, -5.5370893), (19.341476, 45.677273, -6.2844267), (19.341476, 45.677273, -6.2844267), (17.041409, 46.67902, -5.5370893), (17.307842, 46.67902, -4.6376224), (19.643871, 45.677273, -5.2635593), (19.643871, 45.677273, -5.2635593), (17.307842, 46.67902, -4.6376224), (17.526838, 46.67902, -3.7254443), (19.892424, 45.677273, -4.2282653), (19.892424, 45.677273, -4.2282653), (17.526838, 46.67902, -3.7254443), (17.697792, 46.67902, -2.8030548), (20.086452, 45.677273, -3.1813815), (20.086452, 45.677273, -3.1813815), (17.697792, 46.67902, -2.8030548), (17.820238, 46.67902, -1.8729825), (20.225426, 45.677273, -2.1257777), (20.225426, 45.677273, -2.1257777), (17.820238, 46.67902, -1.8729825), (17.89384, 46.67902, -0.93777645), (20.308962, 45.677273, -1.0643475), (20.308962, 45.677273, -1.0643475), (17.89384, 46.67902, -0.93777645), (17.918398, 46.67902, 0), (20.336832, 45.677273, 0), (17.918398, 46.67902, 0), (15.45085, 47.552826, 0), (15.429675, 47.552826, 0.808635), (17.89384, 46.67902, 0.93777645), (17.89384, 46.67902, 0.93777645), (15.429675, 47.552826, 0.808635), (15.366208, 47.552826, 1.6150535), (17.820238, 46.67902, 1.8729825), (17.820238, 46.67902, 1.8729825), (15.366208, 47.552826, 1.6150535), (15.260624, 47.552826, 2.4170454), (17.697792, 46.67902, 2.8030548), (17.697792, 46.67902, 2.8030548), (15.260624, 47.552826, 2.4170454), (15.113212, 47.552826, 3.2124124), (17.526838, 46.67902, 3.7254443), (17.526838, 46.67902, 3.7254443), (15.113212, 47.552826, 3.2124124), (14.924375, 47.552826, 3.998974), (17.307842, 46.67902, 4.6376224), (17.307842, 46.67902, 4.6376224), (14.924375, 47.552826, 3.998974), (14.694632, 47.552826, 4.774575), (17.041409, 46.67902, 5.5370893), (17.041409, 46.67902, 5.5370893), (14.694632, 47.552826, 4.774575), (14.424611, 47.552826, 5.5370893), (16.728266, 46.67902, 6.4213796), (16.728266, 46.67902, 6.4213796), (14.424611, 47.552826, 5.5370893), (14.115053, 47.552826, 6.2844267), (16.36927, 46.67902, 7.288069), (16.36927, 46.67902, 7.288069), (14.115053, 47.552826, 6.2844267), (13.766808, 47.552826, 7.014539), (15.965409, 46.67902, 8.134782), (15.965409, 46.67902, 8.134782), (13.766808, 47.552826, 7.014539), (13.380828, 47.552826, 7.725425), (15.517787, 46.67902, 8.959199), (15.517787, 46.67902, 8.959199), (13.380828, 47.552826, 7.725425), (12.958173, 47.552826, 8.415136), (15.027633, 46.67902, 9.759059), (15.027633, 46.67902, 9.759059), (12.958173, 47.552826, 8.415136), (12.5, 47.552826, 9.081781), (14.496288, 46.67902, 10.532169), (14.496288, 46.67902, 10.532169), (12.5, 47.552826, 9.081781), (12.0075655, 47.552826, 9.723535), (13.92521, 46.67902, 11.276413), (13.92521, 46.67902, 11.276413), (12.0075655, 47.552826, 9.723535), (11.482219, 47.552826, 10.338636), (13.315965, 46.67902, 11.989748), (13.315965, 46.67902, 11.989748), (11.482219, 47.552826, 10.338636), (10.925401, 47.552826, 10.925401), (12.67022, 46.67902, 12.67022), (12.67022, 46.67902, 12.67022), (10.925401, 47.552826, 10.925401), (10.338636, 47.552826, 11.482219), (11.989748, 46.67902, 13.315965), (11.989748, 46.67902, 13.315965), (10.338636, 47.552826, 11.482219), (9.723535, 47.552826, 12.0075655), (11.276413, 46.67902, 13.92521), (11.276413, 46.67902, 13.92521), (9.723535, 47.552826, 12.0075655), (9.081781, 47.552826, 12.5), (10.532169, 46.67902, 14.496288), (10.532169, 46.67902, 14.496288), (9.081781, 47.552826, 12.5), (8.415136, 47.552826, 12.958173), (9.759059, 46.67902, 15.027633), (9.759059, 46.67902, 15.027633), (8.415136, 47.552826, 12.958173), (7.725425, 47.552826, 13.380828), (8.959199, 46.67902, 15.517787), (8.959199, 46.67902, 15.517787), (7.725425, 47.552826, 13.380828), (7.014539, 47.552826, 13.766808), (8.134782, 46.67902, 15.965409), (8.134782, 46.67902, 15.965409), (7.014539, 47.552826, 13.766808), (6.2844267, 47.552826, 14.115053), (7.288069, 46.67902, 16.36927), (7.288069, 46.67902, 16.36927), (6.2844267, 47.552826, 14.115053), (5.5370893, 47.552826, 14.424611), (6.4213796, 46.67902, 16.728266), (6.4213796, 46.67902, 16.728266), (5.5370893, 47.552826, 14.424611), (4.774575, 47.552826, 14.694632), (5.5370893, 46.67902, 17.041409), (5.5370893, 46.67902, 17.041409), (4.774575, 47.552826, 14.694632), (3.998974, 47.552826, 14.924375), (4.6376224, 46.67902, 17.307842), (4.6376224, 46.67902, 17.307842), (3.998974, 47.552826, 14.924375), (3.2124124, 47.552826, 15.113212), (3.7254443, 46.67902, 17.526838), (3.7254443, 46.67902, 17.526838), (3.2124124, 47.552826, 15.113212), (2.4170454, 47.552826, 15.260624), (2.8030548, 46.67902, 17.697792), (2.8030548, 46.67902, 17.697792), (2.4170454, 47.552826, 15.260624), (1.6150535, 47.552826, 15.366208), (1.8729825, 46.67902, 17.820238), (1.8729825, 46.67902, 17.820238), (1.6150535, 47.552826, 15.366208), (0.808635, 47.552826, 15.429675), (0.93777645, 46.67902, 17.89384), (0.93777645, 46.67902, 17.89384), (0.808635, 47.552826, 15.429675), (9.460917e-16, 47.552826, 15.45085), (1.0971854e-15, 46.67902, 17.918398), (1.0971854e-15, 46.67902, 17.918398), (9.460917e-16, 47.552826, 15.45085), (-0.808635, 47.552826, 15.429675), (-0.93777645, 46.67902, 17.89384), (-0.93777645, 46.67902, 17.89384), (-0.808635, 47.552826, 15.429675), (-1.6150535, 47.552826, 15.366208), (-1.8729825, 46.67902, 17.820238), (-1.8729825, 46.67902, 17.820238), (-1.6150535, 47.552826, 15.366208), (-2.4170454, 47.552826, 15.260624), (-2.8030548, 46.67902, 17.697792), (-2.8030548, 46.67902, 17.697792), (-2.4170454, 47.552826, 15.260624), (-3.2124124, 47.552826, 15.113212), (-3.7254443, 46.67902, 17.526838), (-3.7254443, 46.67902, 17.526838), (-3.2124124, 47.552826, 15.113212), (-3.998974, 47.552826, 14.924375), (-4.6376224, 46.67902, 17.307842), (-4.6376224, 46.67902, 17.307842), (-3.998974, 47.552826, 14.924375), (-4.774575, 47.552826, 14.694632), (-5.5370893, 46.67902, 17.041409), (-5.5370893, 46.67902, 17.041409), (-4.774575, 47.552826, 14.694632), (-5.5370893, 47.552826, 14.424611), (-6.4213796, 46.67902, 16.728266), (-6.4213796, 46.67902, 16.728266), (-5.5370893, 47.552826, 14.424611), (-6.2844267, 47.552826, 14.115053), (-7.288069, 46.67902, 16.36927), (-7.288069, 46.67902, 16.36927), (-6.2844267, 47.552826, 14.115053), (-7.014539, 47.552826, 13.766808), (-8.134782, 46.67902, 15.965409), (-8.134782, 46.67902, 15.965409), (-7.014539, 47.552826, 13.766808), (-7.725425, 47.552826, 13.380828), (-8.959199, 46.67902, 15.517787), (-8.959199, 46.67902, 15.517787), (-7.725425, 47.552826, 13.380828), (-8.415136, 47.552826, 12.958173), (-9.759059, 46.67902, 15.027633), (-9.759059, 46.67902, 15.027633), (-8.415136, 47.552826, 12.958173), (-9.081781, 47.552826, 12.5), (-10.532169, 46.67902, 14.496288), (-10.532169, 46.67902, 14.496288), (-9.081781, 47.552826, 12.5), (-9.723535, 47.552826, 12.0075655), (-11.276413, 46.67902, 13.92521), (-11.276413, 46.67902, 13.92521), (-9.723535, 47.552826, 12.0075655), (-10.338636, 47.552826, 11.482219), (-11.989748, 46.67902, 13.315965), (-11.989748, 46.67902, 13.315965), (-10.338636, 47.552826, 11.482219), (-10.925401, 47.552826, 10.925401), (-12.67022, 46.67902, 12.67022), (-12.67022, 46.67902, 12.67022), (-10.925401, 47.552826, 10.925401), (-11.482219, 47.552826, 10.338636), (-13.315965, 46.67902, 11.989748), (-13.315965, 46.67902, 11.989748), (-11.482219, 47.552826, 10.338636), (-12.0075655, 47.552826, 9.723535), (-13.92521, 46.67902, 11.276413), (-13.92521, 46.67902, 11.276413), (-12.0075655, 47.552826, 9.723535), (-12.5, 47.552826, 9.081781), (-14.496288, 46.67902, 10.532169), (-14.496288, 46.67902, 10.532169), (-12.5, 47.552826, 9.081781), (-12.958173, 47.552826, 8.415136), (-15.027633, 46.67902, 9.759059), (-15.027633, 46.67902, 9.759059), (-12.958173, 47.552826, 8.415136), (-13.380828, 47.552826, 7.725425), (-15.517787, 46.67902, 8.959199), (-15.517787, 46.67902, 8.959199), (-13.380828, 47.552826, 7.725425), (-13.766808, 47.552826, 7.014539), (-15.965409, 46.67902, 8.134782), (-15.965409, 46.67902, 8.134782), (-13.766808, 47.552826, 7.014539), (-14.115053, 47.552826, 6.2844267), (-16.36927, 46.67902, 7.288069), (-16.36927, 46.67902, 7.288069), (-14.115053, 47.552826, 6.2844267), (-14.424611, 47.552826, 5.5370893), (-16.728266, 46.67902, 6.4213796), (-16.728266, 46.67902, 6.4213796), (-14.424611, 47.552826, 5.5370893), (-14.694632, 47.552826, 4.774575), (-17.041409, 46.67902, 5.5370893), (-17.041409, 46.67902, 5.5370893), (-14.694632, 47.552826, 4.774575), (-14.924375, 47.552826, 3.998974), (-17.307842, 46.67902, 4.6376224), (-17.307842, 46.67902, 4.6376224), (-14.924375, 47.552826, 3.998974), (-15.113212, 47.552826, 3.2124124), (-17.526838, 46.67902, 3.7254443), (-17.526838, 46.67902, 3.7254443), (-15.113212, 47.552826, 3.2124124), (-15.260624, 47.552826, 2.4170454), (-17.697792, 46.67902, 2.8030548), (-17.697792, 46.67902, 2.8030548), (-15.260624, 47.552826, 2.4170454), (-15.366208, 47.552826, 1.6150535), (-17.820238, 46.67902, 1.8729825), (-17.820238, 46.67902, 1.8729825), (-15.366208, 47.552826, 1.6150535), (-15.429675, 47.552826, 0.808635), (-17.89384, 46.67902, 0.93777645), (-17.89384, 46.67902, 0.93777645), (-15.429675, 47.552826, 0.808635), (-15.45085, 47.552826, 1.8921833e-15), (-17.918398, 46.67902, 2.1943708e-15), (-17.918398, 46.67902, 2.1943708e-15), (-15.45085, 47.552826, 1.8921833e-15), (-15.429675, 47.552826, -0.808635), (-17.89384, 46.67902, -0.93777645), (-17.89384, 46.67902, -0.93777645), (-15.429675, 47.552826, -0.808635), (-15.366208, 47.552826, -1.6150535), (-17.820238, 46.67902, -1.8729825), (-17.820238, 46.67902, -1.8729825), (-15.366208, 47.552826, -1.6150535), (-15.260624, 47.552826, -2.4170454), (-17.697792, 46.67902, -2.8030548), (-17.697792, 46.67902, -2.8030548), (-15.260624, 47.552826, -2.4170454), (-15.113212, 47.552826, -3.2124124), (-17.526838, 46.67902, -3.7254443), (-17.526838, 46.67902, -3.7254443), (-15.113212, 47.552826, -3.2124124), (-14.924375, 47.552826, -3.998974), (-17.307842, 46.67902, -4.6376224), (-17.307842, 46.67902, -4.6376224), (-14.924375, 47.552826, -3.998974), (-14.694632, 47.552826, -4.774575), (-17.041409, 46.67902, -5.5370893), (-17.041409, 46.67902, -5.5370893), (-14.694632, 47.552826, -4.774575), (-14.424611, 47.552826, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-16.728266, 46.67902, -6.4213796), (-14.424611, 47.552826, -5.5370893), (-14.115053, 47.552826, -6.2844267), (-16.36927, 46.67902, -7.288069), (-16.36927, 46.67902, -7.288069), (-14.115053, 47.552826, -6.2844267), (-13.766808, 47.552826, -7.014539), (-15.965409, 46.67902, -8.134782), (-15.965409, 46.67902, -8.134782), (-13.766808, 47.552826, -7.014539), (-13.380828, 47.552826, -7.725425), (-15.517787, 46.67902, -8.959199), (-15.517787, 46.67902, -8.959199), (-13.380828, 47.552826, -7.725425), (-12.958173, 47.552826, -8.415136), (-15.027633, 46.67902, -9.759059), (-15.027633, 46.67902, -9.759059), (-12.958173, 47.552826, -8.415136), (-12.5, 47.552826, -9.081781), (-14.496288, 46.67902, -10.532169), (-14.496288, 46.67902, -10.532169), (-12.5, 47.552826, -9.081781), (-12.0075655, 47.552826, -9.723535), (-13.92521, 46.67902, -11.276413), (-13.92521, 46.67902, -11.276413), (-12.0075655, 47.552826, -9.723535), (-11.482219, 47.552826, -10.338636), (-13.315965, 46.67902, -11.989748), (-13.315965, 46.67902, -11.989748), (-11.482219, 47.552826, -10.338636), (-10.925401, 47.552826, -10.925401), (-12.67022, 46.67902, -12.67022), (-12.67022, 46.67902, -12.67022), (-10.925401, 47.552826, -10.925401), (-10.338636, 47.552826, -11.482219), (-11.989748, 46.67902, -13.315965), (-11.989748, 46.67902, -13.315965), (-10.338636, 47.552826, -11.482219), (-9.723535, 47.552826, -12.0075655), (-11.276413, 46.67902, -13.92521), (-11.276413, 46.67902, -13.92521), (-9.723535, 47.552826, -12.0075655), (-9.081781, 47.552826, -12.5), (-10.532169, 46.67902, -14.496288), (-10.532169, 46.67902, -14.496288), (-9.081781, 47.552826, -12.5), (-8.415136, 47.552826, -12.958173), (-9.759059, 46.67902, -15.027633), (-9.759059, 46.67902, -15.027633), (-8.415136, 47.552826, -12.958173), (-7.725425, 47.552826, -13.380828), (-8.959199, 46.67902, -15.517787), (-8.959199, 46.67902, -15.517787), (-7.725425, 47.552826, -13.380828), (-7.014539, 47.552826, -13.766808), (-8.134782, 46.67902, -15.965409), (-8.134782, 46.67902, -15.965409), (-7.014539, 47.552826, -13.766808), (-6.2844267, 47.552826, -14.115053), (-7.288069, 46.67902, -16.36927), (-7.288069, 46.67902, -16.36927), (-6.2844267, 47.552826, -14.115053), (-5.5370893, 47.552826, -14.424611), (-6.4213796, 46.67902, -16.728266), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 47.552826, -14.424611), (-4.774575, 47.552826, -14.694632), (-5.5370893, 46.67902, -17.041409), (-5.5370893, 46.67902, -17.041409), (-4.774575, 47.552826, -14.694632), (-3.998974, 47.552826, -14.924375), (-4.6376224, 46.67902, -17.307842), (-4.6376224, 46.67902, -17.307842), (-3.998974, 47.552826, -14.924375), (-3.2124124, 47.552826, -15.113212), (-3.7254443, 46.67902, -17.526838), (-3.7254443, 46.67902, -17.526838), (-3.2124124, 47.552826, -15.113212), (-2.4170454, 47.552826, -15.260624), (-2.8030548, 46.67902, -17.697792), (-2.8030548, 46.67902, -17.697792), (-2.4170454, 47.552826, -15.260624), (-1.6150535, 47.552826, -15.366208), (-1.8729825, 46.67902, -17.820238), (-1.8729825, 46.67902, -17.820238), (-1.6150535, 47.552826, -15.366208), (-0.808635, 47.552826, -15.429675), (-0.93777645, 46.67902, -17.89384), (-0.93777645, 46.67902, -17.89384), (-0.808635, 47.552826, -15.429675), (-2.838275e-15, 47.552826, -15.45085), (-3.2915563e-15, 46.67902, -17.918398), (-3.2915563e-15, 46.67902, -17.918398), (-2.838275e-15, 47.552826, -15.45085), (0.808635, 47.552826, -15.429675), (0.93777645, 46.67902, -17.89384), (0.93777645, 46.67902, -17.89384), (0.808635, 47.552826, -15.429675), (1.6150535, 47.552826, -15.366208), (1.8729825, 46.67902, -17.820238), (1.8729825, 46.67902, -17.820238), (1.6150535, 47.552826, -15.366208), (2.4170454, 47.552826, -15.260624), (2.8030548, 46.67902, -17.697792), (2.8030548, 46.67902, -17.697792), (2.4170454, 47.552826, -15.260624), (3.2124124, 47.552826, -15.113212), (3.7254443, 46.67902, -17.526838), (3.7254443, 46.67902, -17.526838), (3.2124124, 47.552826, -15.113212), (3.998974, 47.552826, -14.924375), (4.6376224, 46.67902, -17.307842), (4.6376224, 46.67902, -17.307842), (3.998974, 47.552826, -14.924375), (4.774575, 47.552826, -14.694632), (5.5370893, 46.67902, -17.041409), (5.5370893, 46.67902, -17.041409), (4.774575, 47.552826, -14.694632), (5.5370893, 47.552826, -14.424611), (6.4213796, 46.67902, -16.728266), (6.4213796, 46.67902, -16.728266), (5.5370893, 47.552826, -14.424611), (6.2844267, 47.552826, -14.115053), (7.288069, 46.67902, -16.36927), (7.288069, 46.67902, -16.36927), (6.2844267, 47.552826, -14.115053), (7.014539, 47.552826, -13.766808), (8.134782, 46.67902, -15.965409), (8.134782, 46.67902, -15.965409), (7.014539, 47.552826, -13.766808), (7.725425, 47.552826, -13.380828), (8.959199, 46.67902, -15.517787), (8.959199, 46.67902, -15.517787), (7.725425, 47.552826, -13.380828), (8.415136, 47.552826, -12.958173), (9.759059, 46.67902, -15.027633), (9.759059, 46.67902, -15.027633), (8.415136, 47.552826, -12.958173), (9.081781, 47.552826, -12.5), (10.532169, 46.67902, -14.496288), (10.532169, 46.67902, -14.496288), (9.081781, 47.552826, -12.5), (9.723535, 47.552826, -12.0075655), (11.276413, 46.67902, -13.92521), (11.276413, 46.67902, -13.92521), (9.723535, 47.552826, -12.0075655), (10.338636, 47.552826, -11.482219), (11.989748, 46.67902, -13.315965), (11.989748, 46.67902, -13.315965), (10.338636, 47.552826, -11.482219), (10.925401, 47.552826, -10.925401), (12.67022, 46.67902, -12.67022), (12.67022, 46.67902, -12.67022), (10.925401, 47.552826, -10.925401), (11.482219, 47.552826, -10.338636), (13.315965, 46.67902, -11.989748), (13.315965, 46.67902, -11.989748), (11.482219, 47.552826, -10.338636), (12.0075655, 47.552826, -9.723535), (13.92521, 46.67902, -11.276413), (13.92521, 46.67902, -11.276413), (12.0075655, 47.552826, -9.723535), (12.5, 47.552826, -9.081781), (14.496288, 46.67902, -10.532169), (14.496288, 46.67902, -10.532169), (12.5, 47.552826, -9.081781), (12.958173, 47.552826, -8.415136), (15.027633, 46.67902, -9.759059), (15.027633, 46.67902, -9.759059), (12.958173, 47.552826, -8.415136), (13.380828, 47.552826, -7.725425), (15.517787, 46.67902, -8.959199), (15.517787, 46.67902, -8.959199), (13.380828, 47.552826, -7.725425), (13.766808, 47.552826, -7.014539), (15.965409, 46.67902, -8.134782), (15.965409, 46.67902, -8.134782), (13.766808, 47.552826, -7.014539), (14.115053, 47.552826, -6.2844267), (16.36927, 46.67902, -7.288069), (16.36927, 46.67902, -7.288069), (14.115053, 47.552826, -6.2844267), (14.424611, 47.552826, -5.5370893), (16.728266, 46.67902, -6.4213796), (16.728266, 46.67902, -6.4213796), (14.424611, 47.552826, -5.5370893), (14.694632, 47.552826, -4.774575), (17.041409, 46.67902, -5.5370893), (17.041409, 46.67902, -5.5370893), (14.694632, 47.552826, -4.774575), (14.924375, 47.552826, -3.998974), (17.307842, 46.67902, -4.6376224), (17.307842, 46.67902, -4.6376224), (14.924375, 47.552826, -3.998974), (15.113212, 47.552826, -3.2124124), (17.526838, 46.67902, -3.7254443), (17.526838, 46.67902, -3.7254443), (15.113212, 47.552826, -3.2124124), (15.260624, 47.552826, -2.4170454), (17.697792, 46.67902, -2.8030548), (17.697792, 46.67902, -2.8030548), (15.260624, 47.552826, -2.4170454), (15.366208, 47.552826, -1.6150535), (17.820238, 46.67902, -1.8729825), (17.820238, 46.67902, -1.8729825), (15.366208, 47.552826, -1.6150535), (15.429675, 47.552826, -0.808635), (17.89384, 46.67902, -0.93777645), (17.89384, 46.67902, -0.93777645), (15.429675, 47.552826, -0.808635), (15.45085, 47.552826, 0), (17.918398, 46.67902, 0), (15.45085, 47.552826, 0), (12.940952, 48.29629, 0), (12.923217, 48.29629, 0.6772771), (15.429675, 47.552826, 0.808635), (15.429675, 47.552826, 0.808635), (12.923217, 48.29629, 0.6772771), (12.87006, 48.29629, 1.3526978), (15.366208, 47.552826, 1.6150535), (15.366208, 47.552826, 1.6150535), (12.87006, 48.29629, 1.3526978), (12.781628, 48.29629, 2.024411), (15.260624, 47.552826, 2.4170454), (15.260624, 47.552826, 2.4170454), (12.781628, 48.29629, 2.024411), (12.658161, 48.29629, 2.6905754), (15.113212, 47.552826, 3.2124124), (15.113212, 47.552826, 3.2124124), (12.658161, 48.29629, 2.6905754), (12.5, 48.29629, 3.349365), (14.924375, 47.552826, 3.998974), (14.924375, 47.552826, 3.998974), (12.5, 48.29629, 3.349365), (12.307577, 48.29629, 3.998974), (14.694632, 47.552826, 4.774575), (14.694632, 47.552826, 4.774575), (12.307577, 48.29629, 3.998974), (12.08142, 48.29629, 4.6376224), (14.424611, 47.552826, 5.5370893), (14.424611, 47.552826, 5.5370893), (12.08142, 48.29629, 4.6376224), (11.822148, 48.29629, 5.2635593), (14.115053, 47.552826, 6.2844267), (14.115053, 47.552826, 6.2844267), (11.822148, 48.29629, 5.2635593), (11.530473, 48.29629, 5.8750696), (13.766808, 47.552826, 7.014539), (13.766808, 47.552826, 7.014539), (11.530473, 48.29629, 5.8750696), (11.207193, 48.29629, 6.470476), (13.380828, 47.552826, 7.725425), (13.380828, 47.552826, 7.725425), (11.207193, 48.29629, 6.470476), (10.853196, 48.29629, 7.0481477), (12.958173, 47.552826, 8.415136), (12.958173, 47.552826, 8.415136), (10.853196, 48.29629, 7.0481477), (10.46945, 48.29629, 7.606501), (12.5, 47.552826, 9.081781), (12.5, 47.552826, 9.081781), (10.46945, 48.29629, 7.606501), (10.057009, 48.29629, 8.144005), (12.0075655, 47.552826, 9.723535), (12.0075655, 47.552826, 9.723535), (10.057009, 48.29629, 8.144005), (9.617002, 48.29629, 8.659187), (11.482219, 47.552826, 10.338636), (11.482219, 47.552826, 10.338636), (9.617002, 48.29629, 8.659187), (9.150635, 48.29629, 9.150635), (10.925401, 47.552826, 10.925401), (10.925401, 47.552826, 10.925401), (9.150635, 48.29629, 9.150635), (8.659187, 48.29629, 9.617002), (10.338636, 47.552826, 11.482219), (10.338636, 47.552826, 11.482219), (8.659187, 48.29629, 9.617002), (8.144005, 48.29629, 10.057009), (9.723535, 47.552826, 12.0075655), (9.723535, 47.552826, 12.0075655), (8.144005, 48.29629, 10.057009), (7.606501, 48.29629, 10.46945), (9.081781, 47.552826, 12.5), (9.081781, 47.552826, 12.5), (7.606501, 48.29629, 10.46945), (7.0481477, 48.29629, 10.853196), (8.415136, 47.552826, 12.958173), (8.415136, 47.552826, 12.958173), (7.0481477, 48.29629, 10.853196), (6.470476, 48.29629, 11.207193), (7.725425, 47.552826, 13.380828), (7.725425, 47.552826, 13.380828), (6.470476, 48.29629, 11.207193), (5.8750696, 48.29629, 11.530473), (7.014539, 47.552826, 13.766808), (7.014539, 47.552826, 13.766808), (5.8750696, 48.29629, 11.530473), (5.2635593, 48.29629, 11.822148), (6.2844267, 47.552826, 14.115053), (6.2844267, 47.552826, 14.115053), (5.2635593, 48.29629, 11.822148), (4.6376224, 48.29629, 12.08142), (5.5370893, 47.552826, 14.424611), (5.5370893, 47.552826, 14.424611), (4.6376224, 48.29629, 12.08142), (3.998974, 48.29629, 12.307577), (4.774575, 47.552826, 14.694632), (4.774575, 47.552826, 14.694632), (3.998974, 48.29629, 12.307577), (3.349365, 48.29629, 12.5), (3.998974, 47.552826, 14.924375), (3.998974, 47.552826, 14.924375), (3.349365, 48.29629, 12.5), (2.6905754, 48.29629, 12.658161), (3.2124124, 47.552826, 15.113212), (3.2124124, 47.552826, 15.113212), (2.6905754, 48.29629, 12.658161), (2.024411, 48.29629, 12.781628), (2.4170454, 47.552826, 15.260624), (2.4170454, 47.552826, 15.260624), (2.024411, 48.29629, 12.781628), (1.3526978, 48.29629, 12.87006), (1.6150535, 47.552826, 15.366208), (1.6150535, 47.552826, 15.366208), (1.3526978, 48.29629, 12.87006), (0.6772771, 48.29629, 12.923217), (0.808635, 47.552826, 15.429675), (0.808635, 47.552826, 15.429675), (0.6772771, 48.29629, 12.923217), (7.924048e-16, 48.29629, 12.940952), (9.460917e-16, 47.552826, 15.45085), (9.460917e-16, 47.552826, 15.45085), (7.924048e-16, 48.29629, 12.940952), (-0.6772771, 48.29629, 12.923217), (-0.808635, 47.552826, 15.429675), (-0.808635, 47.552826, 15.429675), (-0.6772771, 48.29629, 12.923217), (-1.3526978, 48.29629, 12.87006), (-1.6150535, 47.552826, 15.366208), (-1.6150535, 47.552826, 15.366208), (-1.3526978, 48.29629, 12.87006), (-2.024411, 48.29629, 12.781628), (-2.4170454, 47.552826, 15.260624), (-2.4170454, 47.552826, 15.260624), (-2.024411, 48.29629, 12.781628), (-2.6905754, 48.29629, 12.658161), (-3.2124124, 47.552826, 15.113212), (-3.2124124, 47.552826, 15.113212), (-2.6905754, 48.29629, 12.658161), (-3.349365, 48.29629, 12.5), (-3.998974, 47.552826, 14.924375), (-3.998974, 47.552826, 14.924375), (-3.349365, 48.29629, 12.5), (-3.998974, 48.29629, 12.307577), (-4.774575, 47.552826, 14.694632), (-4.774575, 47.552826, 14.694632), (-3.998974, 48.29629, 12.307577), (-4.6376224, 48.29629, 12.08142), (-5.5370893, 47.552826, 14.424611), (-5.5370893, 47.552826, 14.424611), (-4.6376224, 48.29629, 12.08142), (-5.2635593, 48.29629, 11.822148), (-6.2844267, 47.552826, 14.115053), (-6.2844267, 47.552826, 14.115053), (-5.2635593, 48.29629, 11.822148), (-5.8750696, 48.29629, 11.530473), (-7.014539, 47.552826, 13.766808), (-7.014539, 47.552826, 13.766808), (-5.8750696, 48.29629, 11.530473), (-6.470476, 48.29629, 11.207193), (-7.725425, 47.552826, 13.380828), (-7.725425, 47.552826, 13.380828), (-6.470476, 48.29629, 11.207193), (-7.0481477, 48.29629, 10.853196), (-8.415136, 47.552826, 12.958173), (-8.415136, 47.552826, 12.958173), (-7.0481477, 48.29629, 10.853196), (-7.606501, 48.29629, 10.46945), (-9.081781, 47.552826, 12.5), (-9.081781, 47.552826, 12.5), (-7.606501, 48.29629, 10.46945), (-8.144005, 48.29629, 10.057009), (-9.723535, 47.552826, 12.0075655), (-9.723535, 47.552826, 12.0075655), (-8.144005, 48.29629, 10.057009), (-8.659187, 48.29629, 9.617002), (-10.338636, 47.552826, 11.482219), (-10.338636, 47.552826, 11.482219), (-8.659187, 48.29629, 9.617002), (-9.150635, 48.29629, 9.150635), (-10.925401, 47.552826, 10.925401), (-10.925401, 47.552826, 10.925401), (-9.150635, 48.29629, 9.150635), (-9.617002, 48.29629, 8.659187), (-11.482219, 47.552826, 10.338636), (-11.482219, 47.552826, 10.338636), (-9.617002, 48.29629, 8.659187), (-10.057009, 48.29629, 8.144005), (-12.0075655, 47.552826, 9.723535), (-12.0075655, 47.552826, 9.723535), (-10.057009, 48.29629, 8.144005), (-10.46945, 48.29629, 7.606501), (-12.5, 47.552826, 9.081781), (-12.5, 47.552826, 9.081781), (-10.46945, 48.29629, 7.606501), (-10.853196, 48.29629, 7.0481477), (-12.958173, 47.552826, 8.415136), (-12.958173, 47.552826, 8.415136), (-10.853196, 48.29629, 7.0481477), (-11.207193, 48.29629, 6.470476), (-13.380828, 47.552826, 7.725425), (-13.380828, 47.552826, 7.725425), (-11.207193, 48.29629, 6.470476), (-11.530473, 48.29629, 5.8750696), (-13.766808, 47.552826, 7.014539), (-13.766808, 47.552826, 7.014539), (-11.530473, 48.29629, 5.8750696), (-11.822148, 48.29629, 5.2635593), (-14.115053, 47.552826, 6.2844267), (-14.115053, 47.552826, 6.2844267), (-11.822148, 48.29629, 5.2635593), (-12.08142, 48.29629, 4.6376224), (-14.424611, 47.552826, 5.5370893), (-14.424611, 47.552826, 5.5370893), (-12.08142, 48.29629, 4.6376224), (-12.307577, 48.29629, 3.998974), (-14.694632, 47.552826, 4.774575), (-14.694632, 47.552826, 4.774575), (-12.307577, 48.29629, 3.998974), (-12.5, 48.29629, 3.349365), (-14.924375, 47.552826, 3.998974), (-14.924375, 47.552826, 3.998974), (-12.5, 48.29629, 3.349365), (-12.658161, 48.29629, 2.6905754), (-15.113212, 47.552826, 3.2124124), (-15.113212, 47.552826, 3.2124124), (-12.658161, 48.29629, 2.6905754), (-12.781628, 48.29629, 2.024411), (-15.260624, 47.552826, 2.4170454), (-15.260624, 47.552826, 2.4170454), (-12.781628, 48.29629, 2.024411), (-12.87006, 48.29629, 1.3526978), (-15.366208, 47.552826, 1.6150535), (-15.366208, 47.552826, 1.6150535), (-12.87006, 48.29629, 1.3526978), (-12.923217, 48.29629, 0.6772771), (-15.429675, 47.552826, 0.808635), (-15.429675, 47.552826, 0.808635), (-12.923217, 48.29629, 0.6772771), (-12.940952, 48.29629, 1.5848095e-15), (-15.45085, 47.552826, 1.8921833e-15), (-15.45085, 47.552826, 1.8921833e-15), (-12.940952, 48.29629, 1.5848095e-15), (-12.923217, 48.29629, -0.6772771), (-15.429675, 47.552826, -0.808635), (-15.429675, 47.552826, -0.808635), (-12.923217, 48.29629, -0.6772771), (-12.87006, 48.29629, -1.3526978), (-15.366208, 47.552826, -1.6150535), (-15.366208, 47.552826, -1.6150535), (-12.87006, 48.29629, -1.3526978), (-12.781628, 48.29629, -2.024411), (-15.260624, 47.552826, -2.4170454), (-15.260624, 47.552826, -2.4170454), (-12.781628, 48.29629, -2.024411), (-12.658161, 48.29629, -2.6905754), (-15.113212, 47.552826, -3.2124124), (-15.113212, 47.552826, -3.2124124), (-12.658161, 48.29629, -2.6905754), (-12.5, 48.29629, -3.349365), (-14.924375, 47.552826, -3.998974), (-14.924375, 47.552826, -3.998974), (-12.5, 48.29629, -3.349365), (-12.307577, 48.29629, -3.998974), (-14.694632, 47.552826, -4.774575), (-14.694632, 47.552826, -4.774575), (-12.307577, 48.29629, -3.998974), (-12.08142, 48.29629, -4.6376224), (-14.424611, 47.552826, -5.5370893), (-14.424611, 47.552826, -5.5370893), (-12.08142, 48.29629, -4.6376224), (-11.822148, 48.29629, -5.2635593), (-14.115053, 47.552826, -6.2844267), (-14.115053, 47.552826, -6.2844267), (-11.822148, 48.29629, -5.2635593), (-11.530473, 48.29629, -5.8750696), (-13.766808, 47.552826, -7.014539), (-13.766808, 47.552826, -7.014539), (-11.530473, 48.29629, -5.8750696), (-11.207193, 48.29629, -6.470476), (-13.380828, 47.552826, -7.725425), (-13.380828, 47.552826, -7.725425), (-11.207193, 48.29629, -6.470476), (-10.853196, 48.29629, -7.0481477), (-12.958173, 47.552826, -8.415136), (-12.958173, 47.552826, -8.415136), (-10.853196, 48.29629, -7.0481477), (-10.46945, 48.29629, -7.606501), (-12.5, 47.552826, -9.081781), (-12.5, 47.552826, -9.081781), (-10.46945, 48.29629, -7.606501), (-10.057009, 48.29629, -8.144005), (-12.0075655, 47.552826, -9.723535), (-12.0075655, 47.552826, -9.723535), (-10.057009, 48.29629, -8.144005), (-9.617002, 48.29629, -8.659187), (-11.482219, 47.552826, -10.338636), (-11.482219, 47.552826, -10.338636), (-9.617002, 48.29629, -8.659187), (-9.150635, 48.29629, -9.150635), (-10.925401, 47.552826, -10.925401), (-10.925401, 47.552826, -10.925401), (-9.150635, 48.29629, -9.150635), (-8.659187, 48.29629, -9.617002), (-10.338636, 47.552826, -11.482219), (-10.338636, 47.552826, -11.482219), (-8.659187, 48.29629, -9.617002), (-8.144005, 48.29629, -10.057009), (-9.723535, 47.552826, -12.0075655), (-9.723535, 47.552826, -12.0075655), (-8.144005, 48.29629, -10.057009), (-7.606501, 48.29629, -10.46945), (-9.081781, 47.552826, -12.5), (-9.081781, 47.552826, -12.5), (-7.606501, 48.29629, -10.46945), (-7.0481477, 48.29629, -10.853196), (-8.415136, 47.552826, -12.958173), (-8.415136, 47.552826, -12.958173), (-7.0481477, 48.29629, -10.853196), (-6.470476, 48.29629, -11.207193), (-7.725425, 47.552826, -13.380828), (-7.725425, 47.552826, -13.380828), (-6.470476, 48.29629, -11.207193), (-5.8750696, 48.29629, -11.530473), (-7.014539, 47.552826, -13.766808), (-7.014539, 47.552826, -13.766808), (-5.8750696, 48.29629, -11.530473), (-5.2635593, 48.29629, -11.822148), (-6.2844267, 47.552826, -14.115053), (-6.2844267, 47.552826, -14.115053), (-5.2635593, 48.29629, -11.822148), (-4.6376224, 48.29629, -12.08142), (-5.5370893, 47.552826, -14.424611), (-5.5370893, 47.552826, -14.424611), (-4.6376224, 48.29629, -12.08142), (-3.998974, 48.29629, -12.307577), (-4.774575, 47.552826, -14.694632), (-4.774575, 47.552826, -14.694632), (-3.998974, 48.29629, -12.307577), (-3.349365, 48.29629, -12.5), (-3.998974, 47.552826, -14.924375), (-3.998974, 47.552826, -14.924375), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.29629, -12.658161), (-3.2124124, 47.552826, -15.113212), (-3.2124124, 47.552826, -15.113212), (-2.6905754, 48.29629, -12.658161), (-2.024411, 48.29629, -12.781628), (-2.4170454, 47.552826, -15.260624), (-2.4170454, 47.552826, -15.260624), (-2.024411, 48.29629, -12.781628), (-1.3526978, 48.29629, -12.87006), (-1.6150535, 47.552826, -15.366208), (-1.6150535, 47.552826, -15.366208), (-1.3526978, 48.29629, -12.87006), (-0.6772771, 48.29629, -12.923217), (-0.808635, 47.552826, -15.429675), (-0.808635, 47.552826, -15.429675), (-0.6772771, 48.29629, -12.923217), (-2.3772143e-15, 48.29629, -12.940952), (-2.838275e-15, 47.552826, -15.45085), (-2.838275e-15, 47.552826, -15.45085), (-2.3772143e-15, 48.29629, -12.940952), (0.6772771, 48.29629, -12.923217), (0.808635, 47.552826, -15.429675), (0.808635, 47.552826, -15.429675), (0.6772771, 48.29629, -12.923217), (1.3526978, 48.29629, -12.87006), (1.6150535, 47.552826, -15.366208), (1.6150535, 47.552826, -15.366208), (1.3526978, 48.29629, -12.87006), (2.024411, 48.29629, -12.781628), (2.4170454, 47.552826, -15.260624), (2.4170454, 47.552826, -15.260624), (2.024411, 48.29629, -12.781628), (2.6905754, 48.29629, -12.658161), (3.2124124, 47.552826, -15.113212), (3.2124124, 47.552826, -15.113212), (2.6905754, 48.29629, -12.658161), (3.349365, 48.29629, -12.5), (3.998974, 47.552826, -14.924375), (3.998974, 47.552826, -14.924375), (3.349365, 48.29629, -12.5), (3.998974, 48.29629, -12.307577), (4.774575, 47.552826, -14.694632), (4.774575, 47.552826, -14.694632), (3.998974, 48.29629, -12.307577), (4.6376224, 48.29629, -12.08142), (5.5370893, 47.552826, -14.424611), (5.5370893, 47.552826, -14.424611), (4.6376224, 48.29629, -12.08142), (5.2635593, 48.29629, -11.822148), (6.2844267, 47.552826, -14.115053), (6.2844267, 47.552826, -14.115053), (5.2635593, 48.29629, -11.822148), (5.8750696, 48.29629, -11.530473), (7.014539, 47.552826, -13.766808), (7.014539, 47.552826, -13.766808), (5.8750696, 48.29629, -11.530473), (6.470476, 48.29629, -11.207193), (7.725425, 47.552826, -13.380828), (7.725425, 47.552826, -13.380828), (6.470476, 48.29629, -11.207193), (7.0481477, 48.29629, -10.853196), (8.415136, 47.552826, -12.958173), (8.415136, 47.552826, -12.958173), (7.0481477, 48.29629, -10.853196), (7.606501, 48.29629, -10.46945), (9.081781, 47.552826, -12.5), (9.081781, 47.552826, -12.5), (7.606501, 48.29629, -10.46945), (8.144005, 48.29629, -10.057009), (9.723535, 47.552826, -12.0075655), (9.723535, 47.552826, -12.0075655), (8.144005, 48.29629, -10.057009), (8.659187, 48.29629, -9.617002), (10.338636, 47.552826, -11.482219), (10.338636, 47.552826, -11.482219), (8.659187, 48.29629, -9.617002), (9.150635, 48.29629, -9.150635), (10.925401, 47.552826, -10.925401), (10.925401, 47.552826, -10.925401), (9.150635, 48.29629, -9.150635), (9.617002, 48.29629, -8.659187), (11.482219, 47.552826, -10.338636), (11.482219, 47.552826, -10.338636), (9.617002, 48.29629, -8.659187), (10.057009, 48.29629, -8.144005), (12.0075655, 47.552826, -9.723535), (12.0075655, 47.552826, -9.723535), (10.057009, 48.29629, -8.144005), (10.46945, 48.29629, -7.606501), (12.5, 47.552826, -9.081781), (12.5, 47.552826, -9.081781), (10.46945, 48.29629, -7.606501), (10.853196, 48.29629, -7.0481477), (12.958173, 47.552826, -8.415136), (12.958173, 47.552826, -8.415136), (10.853196, 48.29629, -7.0481477), (11.207193, 48.29629, -6.470476), (13.380828, 47.552826, -7.725425), (13.380828, 47.552826, -7.725425), (11.207193, 48.29629, -6.470476), (11.530473, 48.29629, -5.8750696), (13.766808, 47.552826, -7.014539), (13.766808, 47.552826, -7.014539), (11.530473, 48.29629, -5.8750696), (11.822148, 48.29629, -5.2635593), (14.115053, 47.552826, -6.2844267), (14.115053, 47.552826, -6.2844267), (11.822148, 48.29629, -5.2635593), (12.08142, 48.29629, -4.6376224), (14.424611, 47.552826, -5.5370893), (14.424611, 47.552826, -5.5370893), (12.08142, 48.29629, -4.6376224), (12.307577, 48.29629, -3.998974), (14.694632, 47.552826, -4.774575), (14.694632, 47.552826, -4.774575), (12.307577, 48.29629, -3.998974), (12.5, 48.29629, -3.349365), (14.924375, 47.552826, -3.998974), (14.924375, 47.552826, -3.998974), (12.5, 48.29629, -3.349365), (12.658161, 48.29629, -2.6905754), (15.113212, 47.552826, -3.2124124), (15.113212, 47.552826, -3.2124124), (12.658161, 48.29629, -2.6905754), (12.781628, 48.29629, -2.024411), (15.260624, 47.552826, -2.4170454), (15.260624, 47.552826, -2.4170454), (12.781628, 48.29629, -2.024411), (12.87006, 48.29629, -1.3526978), (15.366208, 47.552826, -1.6150535), (15.366208, 47.552826, -1.6150535), (12.87006, 48.29629, -1.3526978), (12.923217, 48.29629, -0.6772771), (15.429675, 47.552826, -0.808635), (15.429675, 47.552826, -0.808635), (12.923217, 48.29629, -0.6772771), (12.940952, 48.29629, 0), (15.45085, 47.552826, 0), (12.940952, 48.29629, 0), (10.395584, 48.90738, 0), (10.381338, 48.90738, 0.54406285), (12.923217, 48.29629, 0.6772771), (12.923217, 48.29629, 0.6772771), (10.381338, 48.90738, 0.54406285), (10.338636, 48.90738, 1.0866345), (12.87006, 48.29629, 1.3526978), (12.87006, 48.29629, 1.3526978), (10.338636, 48.90738, 1.0866345), (10.267597, 48.90738, 1.6262277), (12.781628, 48.29629, 2.024411), (12.781628, 48.29629, 2.024411), (10.267597, 48.90738, 1.6262277), (10.168416, 48.90738, 2.1613636), (12.658161, 48.29629, 2.6905754), (12.658161, 48.29629, 2.6905754), (10.168416, 48.90738, 2.1613636), (10.041364, 48.90738, 2.6905754), (12.5, 48.29629, 3.349365), (12.5, 48.29629, 3.349365), (10.041364, 48.90738, 2.6905754), (9.886788, 48.90738, 3.2124124), (12.307577, 48.29629, 3.998974), (12.307577, 48.29629, 3.998974), (9.886788, 48.90738, 3.2124124), (9.705114, 48.90738, 3.7254443), (12.08142, 48.29629, 4.6376224), (12.08142, 48.29629, 4.6376224), (9.705114, 48.90738, 3.7254443), (9.496839, 48.90738, 4.2282653), (11.822148, 48.29629, 5.2635593), (11.822148, 48.29629, 5.2635593), (9.496839, 48.90738, 4.2282653), (9.262533, 48.90738, 4.7194967), (11.530473, 48.29629, 5.8750696), (11.530473, 48.29629, 5.8750696), (9.262533, 48.90738, 4.7194967), (9.00284, 48.90738, 5.197792), (11.207193, 48.29629, 6.470476), (11.207193, 48.29629, 6.470476), (9.00284, 48.90738, 5.197792), (8.718471, 48.90738, 5.661841), (10.853196, 48.29629, 7.0481477), (10.853196, 48.29629, 7.0481477), (8.718471, 48.90738, 5.661841), (8.410205, 48.90738, 6.110371), (10.46945, 48.29629, 7.606501), (10.46945, 48.29629, 7.606501), (8.410205, 48.90738, 6.110371), (8.078887, 48.90738, 6.5421534), (10.057009, 48.29629, 8.144005), (10.057009, 48.29629, 8.144005), (8.078887, 48.90738, 6.5421534), (7.725425, 48.90738, 6.9560037), (9.617002, 48.29629, 8.659187), (9.617002, 48.29629, 8.659187), (7.725425, 48.90738, 6.9560037), (7.350788, 48.90738, 7.350788), (9.150635, 48.29629, 9.150635), (9.150635, 48.29629, 9.150635), (7.350788, 48.90738, 7.350788), (6.9560037, 48.90738, 7.725425), (8.659187, 48.29629, 9.617002), (8.659187, 48.29629, 9.617002), (6.9560037, 48.90738, 7.725425), (6.5421534, 48.90738, 8.078887), (8.144005, 48.29629, 10.057009), (8.144005, 48.29629, 10.057009), (6.5421534, 48.90738, 8.078887), (6.110371, 48.90738, 8.410205), (7.606501, 48.29629, 10.46945), (7.606501, 48.29629, 10.46945), (6.110371, 48.90738, 8.410205), (5.661841, 48.90738, 8.718471), (7.0481477, 48.29629, 10.853196), (7.0481477, 48.29629, 10.853196), (5.661841, 48.90738, 8.718471), (5.197792, 48.90738, 9.00284), (6.470476, 48.29629, 11.207193), (6.470476, 48.29629, 11.207193), (5.197792, 48.90738, 9.00284), (4.7194967, 48.90738, 9.262533), (5.8750696, 48.29629, 11.530473), (5.8750696, 48.29629, 11.530473), (4.7194967, 48.90738, 9.262533), (4.2282653, 48.90738, 9.496839), (5.2635593, 48.29629, 11.822148), (5.2635593, 48.29629, 11.822148), (4.2282653, 48.90738, 9.496839), (3.7254443, 48.90738, 9.705114), (4.6376224, 48.29629, 12.08142), (4.6376224, 48.29629, 12.08142), (3.7254443, 48.90738, 9.705114), (3.2124124, 48.90738, 9.886788), (3.998974, 48.29629, 12.307577), (3.998974, 48.29629, 12.307577), (3.2124124, 48.90738, 9.886788), (2.6905754, 48.90738, 10.041364), (3.349365, 48.29629, 12.5), (3.349365, 48.29629, 12.5), (2.6905754, 48.90738, 10.041364), (2.1613636, 48.90738, 10.168416), (2.6905754, 48.29629, 12.658161), (2.6905754, 48.29629, 12.658161), (2.1613636, 48.90738, 10.168416), (1.6262277, 48.90738, 10.267597), (2.024411, 48.29629, 12.781628), (2.024411, 48.29629, 12.781628), (1.6262277, 48.90738, 10.267597), (1.0866345, 48.90738, 10.338636), (1.3526978, 48.29629, 12.87006), (1.3526978, 48.29629, 12.87006), (1.0866345, 48.90738, 10.338636), (0.54406285, 48.90738, 10.381338), (0.6772771, 48.29629, 12.923217), (0.6772771, 48.29629, 12.923217), (0.54406285, 48.90738, 10.381338), (6.3654595e-16, 48.90738, 10.395584), (7.924048e-16, 48.29629, 12.940952), (7.924048e-16, 48.29629, 12.940952), (6.3654595e-16, 48.90738, 10.395584), (-0.54406285, 48.90738, 10.381338), (-0.6772771, 48.29629, 12.923217), (-0.6772771, 48.29629, 12.923217), (-0.54406285, 48.90738, 10.381338), (-1.0866345, 48.90738, 10.338636), (-1.3526978, 48.29629, 12.87006), (-1.3526978, 48.29629, 12.87006), (-1.0866345, 48.90738, 10.338636), (-1.6262277, 48.90738, 10.267597), (-2.024411, 48.29629, 12.781628), (-2.024411, 48.29629, 12.781628), (-1.6262277, 48.90738, 10.267597), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.29629, 12.658161), (-2.6905754, 48.29629, 12.658161), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.90738, 10.041364), (-3.349365, 48.29629, 12.5), (-3.349365, 48.29629, 12.5), (-2.6905754, 48.90738, 10.041364), (-3.2124124, 48.90738, 9.886788), (-3.998974, 48.29629, 12.307577), (-3.998974, 48.29629, 12.307577), (-3.2124124, 48.90738, 9.886788), (-3.7254443, 48.90738, 9.705114), (-4.6376224, 48.29629, 12.08142), (-4.6376224, 48.29629, 12.08142), (-3.7254443, 48.90738, 9.705114), (-4.2282653, 48.90738, 9.496839), (-5.2635593, 48.29629, 11.822148), (-5.2635593, 48.29629, 11.822148), (-4.2282653, 48.90738, 9.496839), (-4.7194967, 48.90738, 9.262533), (-5.8750696, 48.29629, 11.530473), (-5.8750696, 48.29629, 11.530473), (-4.7194967, 48.90738, 9.262533), (-5.197792, 48.90738, 9.00284), (-6.470476, 48.29629, 11.207193), (-6.470476, 48.29629, 11.207193), (-5.197792, 48.90738, 9.00284), (-5.661841, 48.90738, 8.718471), (-7.0481477, 48.29629, 10.853196), (-7.0481477, 48.29629, 10.853196), (-5.661841, 48.90738, 8.718471), (-6.110371, 48.90738, 8.410205), (-7.606501, 48.29629, 10.46945), (-7.606501, 48.29629, 10.46945), (-6.110371, 48.90738, 8.410205), (-6.5421534, 48.90738, 8.078887), (-8.144005, 48.29629, 10.057009), (-8.144005, 48.29629, 10.057009), (-6.5421534, 48.90738, 8.078887), (-6.9560037, 48.90738, 7.725425), (-8.659187, 48.29629, 9.617002), (-8.659187, 48.29629, 9.617002), (-6.9560037, 48.90738, 7.725425), (-7.350788, 48.90738, 7.350788), (-9.150635, 48.29629, 9.150635), (-9.150635, 48.29629, 9.150635), (-7.350788, 48.90738, 7.350788), (-7.725425, 48.90738, 6.9560037), (-9.617002, 48.29629, 8.659187), (-9.617002, 48.29629, 8.659187), (-7.725425, 48.90738, 6.9560037), (-8.078887, 48.90738, 6.5421534), (-10.057009, 48.29629, 8.144005), (-10.057009, 48.29629, 8.144005), (-8.078887, 48.90738, 6.5421534), (-8.410205, 48.90738, 6.110371), (-10.46945, 48.29629, 7.606501), (-10.46945, 48.29629, 7.606501), (-8.410205, 48.90738, 6.110371), (-8.718471, 48.90738, 5.661841), (-10.853196, 48.29629, 7.0481477), (-10.853196, 48.29629, 7.0481477), (-8.718471, 48.90738, 5.661841), (-9.00284, 48.90738, 5.197792), (-11.207193, 48.29629, 6.470476), (-11.207193, 48.29629, 6.470476), (-9.00284, 48.90738, 5.197792), (-9.262533, 48.90738, 4.7194967), (-11.530473, 48.29629, 5.8750696), (-11.530473, 48.29629, 5.8750696), (-9.262533, 48.90738, 4.7194967), (-9.496839, 48.90738, 4.2282653), (-11.822148, 48.29629, 5.2635593), (-11.822148, 48.29629, 5.2635593), (-9.496839, 48.90738, 4.2282653), (-9.705114, 48.90738, 3.7254443), (-12.08142, 48.29629, 4.6376224), (-12.08142, 48.29629, 4.6376224), (-9.705114, 48.90738, 3.7254443), (-9.886788, 48.90738, 3.2124124), (-12.307577, 48.29629, 3.998974), (-12.307577, 48.29629, 3.998974), (-9.886788, 48.90738, 3.2124124), (-10.041364, 48.90738, 2.6905754), (-12.5, 48.29629, 3.349365), (-12.5, 48.29629, 3.349365), (-10.041364, 48.90738, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-12.658161, 48.29629, 2.6905754), (-12.658161, 48.29629, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-10.267597, 48.90738, 1.6262277), (-12.781628, 48.29629, 2.024411), (-12.781628, 48.29629, 2.024411), (-10.267597, 48.90738, 1.6262277), (-10.338636, 48.90738, 1.0866345), (-12.87006, 48.29629, 1.3526978), (-12.87006, 48.29629, 1.3526978), (-10.338636, 48.90738, 1.0866345), (-10.381338, 48.90738, 0.54406285), (-12.923217, 48.29629, 0.6772771), (-12.923217, 48.29629, 0.6772771), (-10.381338, 48.90738, 0.54406285), (-10.395584, 48.90738, 1.2730919e-15), (-12.940952, 48.29629, 1.5848095e-15), (-12.940952, 48.29629, 1.5848095e-15), (-10.395584, 48.90738, 1.2730919e-15), (-10.381338, 48.90738, -0.54406285), (-12.923217, 48.29629, -0.6772771), (-12.923217, 48.29629, -0.6772771), (-10.381338, 48.90738, -0.54406285), (-10.338636, 48.90738, -1.0866345), (-12.87006, 48.29629, -1.3526978), (-12.87006, 48.29629, -1.3526978), (-10.338636, 48.90738, -1.0866345), (-10.267597, 48.90738, -1.6262277), (-12.781628, 48.29629, -2.024411), (-12.781628, 48.29629, -2.024411), (-10.267597, 48.90738, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-12.658161, 48.29629, -2.6905754), (-12.658161, 48.29629, -2.6905754), (-10.168416, 48.90738, -2.1613636), (-10.041364, 48.90738, -2.6905754), (-12.5, 48.29629, -3.349365), (-12.5, 48.29629, -3.349365), (-10.041364, 48.90738, -2.6905754), (-9.886788, 48.90738, -3.2124124), (-12.307577, 48.29629, -3.998974), (-12.307577, 48.29629, -3.998974), (-9.886788, 48.90738, -3.2124124), (-9.705114, 48.90738, -3.7254443), (-12.08142, 48.29629, -4.6376224), (-12.08142, 48.29629, -4.6376224), (-9.705114, 48.90738, -3.7254443), (-9.496839, 48.90738, -4.2282653), (-11.822148, 48.29629, -5.2635593), (-11.822148, 48.29629, -5.2635593), (-9.496839, 48.90738, -4.2282653), (-9.262533, 48.90738, -4.7194967), (-11.530473, 48.29629, -5.8750696), (-11.530473, 48.29629, -5.8750696), (-9.262533, 48.90738, -4.7194967), (-9.00284, 48.90738, -5.197792), (-11.207193, 48.29629, -6.470476), (-11.207193, 48.29629, -6.470476), (-9.00284, 48.90738, -5.197792), (-8.718471, 48.90738, -5.661841), (-10.853196, 48.29629, -7.0481477), (-10.853196, 48.29629, -7.0481477), (-8.718471, 48.90738, -5.661841), (-8.410205, 48.90738, -6.110371), (-10.46945, 48.29629, -7.606501), (-10.46945, 48.29629, -7.606501), (-8.410205, 48.90738, -6.110371), (-8.078887, 48.90738, -6.5421534), (-10.057009, 48.29629, -8.144005), (-10.057009, 48.29629, -8.144005), (-8.078887, 48.90738, -6.5421534), (-7.725425, 48.90738, -6.9560037), (-9.617002, 48.29629, -8.659187), (-9.617002, 48.29629, -8.659187), (-7.725425, 48.90738, -6.9560037), (-7.350788, 48.90738, -7.350788), (-9.150635, 48.29629, -9.150635), (-9.150635, 48.29629, -9.150635), (-7.350788, 48.90738, -7.350788), (-6.9560037, 48.90738, -7.725425), (-8.659187, 48.29629, -9.617002), (-8.659187, 48.29629, -9.617002), (-6.9560037, 48.90738, -7.725425), (-6.5421534, 48.90738, -8.078887), (-8.144005, 48.29629, -10.057009), (-8.144005, 48.29629, -10.057009), (-6.5421534, 48.90738, -8.078887), (-6.110371, 48.90738, -8.410205), (-7.606501, 48.29629, -10.46945), (-7.606501, 48.29629, -10.46945), (-6.110371, 48.90738, -8.410205), (-5.661841, 48.90738, -8.718471), (-7.0481477, 48.29629, -10.853196), (-7.0481477, 48.29629, -10.853196), (-5.661841, 48.90738, -8.718471), (-5.197792, 48.90738, -9.00284), (-6.470476, 48.29629, -11.207193), (-6.470476, 48.29629, -11.207193), (-5.197792, 48.90738, -9.00284), (-4.7194967, 48.90738, -9.262533), (-5.8750696, 48.29629, -11.530473), (-5.8750696, 48.29629, -11.530473), (-4.7194967, 48.90738, -9.262533), (-4.2282653, 48.90738, -9.496839), (-5.2635593, 48.29629, -11.822148), (-5.2635593, 48.29629, -11.822148), (-4.2282653, 48.90738, -9.496839), (-3.7254443, 48.90738, -9.705114), (-4.6376224, 48.29629, -12.08142), (-4.6376224, 48.29629, -12.08142), (-3.7254443, 48.90738, -9.705114), (-3.2124124, 48.90738, -9.886788), (-3.998974, 48.29629, -12.307577), (-3.998974, 48.29629, -12.307577), (-3.2124124, 48.90738, -9.886788), (-2.6905754, 48.90738, -10.041364), (-3.349365, 48.29629, -12.5), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.90738, -10.041364), (-2.1613636, 48.90738, -10.168416), (-2.6905754, 48.29629, -12.658161), (-2.6905754, 48.29629, -12.658161), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 48.90738, -10.267597), (-2.024411, 48.29629, -12.781628), (-2.024411, 48.29629, -12.781628), (-1.6262277, 48.90738, -10.267597), (-1.0866345, 48.90738, -10.338636), (-1.3526978, 48.29629, -12.87006), (-1.3526978, 48.29629, -12.87006), (-1.0866345, 48.90738, -10.338636), (-0.54406285, 48.90738, -10.381338), (-0.6772771, 48.29629, -12.923217), (-0.6772771, 48.29629, -12.923217), (-0.54406285, 48.90738, -10.381338), (-1.909638e-15, 48.90738, -10.395584), (-2.3772143e-15, 48.29629, -12.940952), (-2.3772143e-15, 48.29629, -12.940952), (-1.909638e-15, 48.90738, -10.395584), (0.54406285, 48.90738, -10.381338), (0.6772771, 48.29629, -12.923217), (0.6772771, 48.29629, -12.923217), (0.54406285, 48.90738, -10.381338), (1.0866345, 48.90738, -10.338636), (1.3526978, 48.29629, -12.87006), (1.3526978, 48.29629, -12.87006), (1.0866345, 48.90738, -10.338636), (1.6262277, 48.90738, -10.267597), (2.024411, 48.29629, -12.781628), (2.024411, 48.29629, -12.781628), (1.6262277, 48.90738, -10.267597), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.29629, -12.658161), (2.6905754, 48.29629, -12.658161), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.90738, -10.041364), (3.349365, 48.29629, -12.5), (3.349365, 48.29629, -12.5), (2.6905754, 48.90738, -10.041364), (3.2124124, 48.90738, -9.886788), (3.998974, 48.29629, -12.307577), (3.998974, 48.29629, -12.307577), (3.2124124, 48.90738, -9.886788), (3.7254443, 48.90738, -9.705114), (4.6376224, 48.29629, -12.08142), (4.6376224, 48.29629, -12.08142), (3.7254443, 48.90738, -9.705114), (4.2282653, 48.90738, -9.496839), (5.2635593, 48.29629, -11.822148), (5.2635593, 48.29629, -11.822148), (4.2282653, 48.90738, -9.496839), (4.7194967, 48.90738, -9.262533), (5.8750696, 48.29629, -11.530473), (5.8750696, 48.29629, -11.530473), (4.7194967, 48.90738, -9.262533), (5.197792, 48.90738, -9.00284), (6.470476, 48.29629, -11.207193), (6.470476, 48.29629, -11.207193), (5.197792, 48.90738, -9.00284), (5.661841, 48.90738, -8.718471), (7.0481477, 48.29629, -10.853196), (7.0481477, 48.29629, -10.853196), (5.661841, 48.90738, -8.718471), (6.110371, 48.90738, -8.410205), (7.606501, 48.29629, -10.46945), (7.606501, 48.29629, -10.46945), (6.110371, 48.90738, -8.410205), (6.5421534, 48.90738, -8.078887), (8.144005, 48.29629, -10.057009), (8.144005, 48.29629, -10.057009), (6.5421534, 48.90738, -8.078887), (6.9560037, 48.90738, -7.725425), (8.659187, 48.29629, -9.617002), (8.659187, 48.29629, -9.617002), (6.9560037, 48.90738, -7.725425), (7.350788, 48.90738, -7.350788), (9.150635, 48.29629, -9.150635), (9.150635, 48.29629, -9.150635), (7.350788, 48.90738, -7.350788), (7.725425, 48.90738, -6.9560037), (9.617002, 48.29629, -8.659187), (9.617002, 48.29629, -8.659187), (7.725425, 48.90738, -6.9560037), (8.078887, 48.90738, -6.5421534), (10.057009, 48.29629, -8.144005), (10.057009, 48.29629, -8.144005), (8.078887, 48.90738, -6.5421534), (8.410205, 48.90738, -6.110371), (10.46945, 48.29629, -7.606501), (10.46945, 48.29629, -7.606501), (8.410205, 48.90738, -6.110371), (8.718471, 48.90738, -5.661841), (10.853196, 48.29629, -7.0481477), (10.853196, 48.29629, -7.0481477), (8.718471, 48.90738, -5.661841), (9.00284, 48.90738, -5.197792), (11.207193, 48.29629, -6.470476), (11.207193, 48.29629, -6.470476), (9.00284, 48.90738, -5.197792), (9.262533, 48.90738, -4.7194967), (11.530473, 48.29629, -5.8750696), (11.530473, 48.29629, -5.8750696), (9.262533, 48.90738, -4.7194967), (9.496839, 48.90738, -4.2282653), (11.822148, 48.29629, -5.2635593), (11.822148, 48.29629, -5.2635593), (9.496839, 48.90738, -4.2282653), (9.705114, 48.90738, -3.7254443), (12.08142, 48.29629, -4.6376224), (12.08142, 48.29629, -4.6376224), (9.705114, 48.90738, -3.7254443), (9.886788, 48.90738, -3.2124124), (12.307577, 48.29629, -3.998974), (12.307577, 48.29629, -3.998974), (9.886788, 48.90738, -3.2124124), (10.041364, 48.90738, -2.6905754), (12.5, 48.29629, -3.349365), (12.5, 48.29629, -3.349365), (10.041364, 48.90738, -2.6905754), (10.168416, 48.90738, -2.1613636), (12.658161, 48.29629, -2.6905754), (12.658161, 48.29629, -2.6905754), (10.168416, 48.90738, -2.1613636), (10.267597, 48.90738, -1.6262277), (12.781628, 48.29629, -2.024411), (12.781628, 48.29629, -2.024411), (10.267597, 48.90738, -1.6262277), (10.338636, 48.90738, -1.0866345), (12.87006, 48.29629, -1.3526978), (12.87006, 48.29629, -1.3526978), (10.338636, 48.90738, -1.0866345), (10.381338, 48.90738, -0.54406285), (12.923217, 48.29629, -0.6772771), (12.923217, 48.29629, -0.6772771), (10.381338, 48.90738, -0.54406285), (10.395584, 48.90738, 0), (12.940952, 48.29629, 0), (10.395584, 48.90738, 0), (7.8217235, 49.38442, 0), (7.8110037, 49.38442, 0.40935737), (10.381338, 48.90738, 0.54406285), (10.381338, 48.90738, 0.54406285), (7.8110037, 49.38442, 0.40935737), (7.778875, 49.38442, 0.81759274), (10.338636, 48.90738, 1.0866345), (10.338636, 48.90738, 1.0866345), (7.778875, 49.38442, 0.81759274), (7.725425, 49.38442, 1.223587), (10.267597, 48.90738, 1.6262277), (10.267597, 48.90738, 1.6262277), (7.725425, 49.38442, 1.223587), (7.6507998, 49.38442, 1.6262277), (10.168416, 48.90738, 2.1613636), (10.168416, 48.90738, 2.1613636), (7.6507998, 49.38442, 1.6262277), (7.5552044, 49.38442, 2.024411), (10.041364, 48.90738, 2.6905754), (10.041364, 48.90738, 2.6905754), (7.5552044, 49.38442, 2.024411), (7.438901, 49.38442, 2.4170454), (9.886788, 48.90738, 3.2124124), (9.886788, 48.90738, 3.2124124), (7.438901, 49.38442, 2.4170454), (7.302208, 49.38442, 2.8030548), (9.705114, 48.90738, 3.7254443), (9.705114, 48.90738, 3.7254443), (7.302208, 49.38442, 2.8030548), (7.1454997, 49.38442, 3.1813815), (9.496839, 48.90738, 4.2282653), (9.496839, 48.90738, 4.2282653), (7.1454997, 49.38442, 3.1813815), (6.9692063, 49.38442, 3.550988), (9.262533, 48.90738, 4.7194967), (9.262533, 48.90738, 4.7194967), (6.9692063, 49.38442, 3.550988), (6.773811, 49.38442, 3.9108617), (9.00284, 48.90738, 5.197792), (9.00284, 48.90738, 5.197792), (6.773811, 49.38442, 3.9108617), (6.5598493, 49.38442, 4.260016), (8.718471, 48.90738, 5.661841), (8.718471, 48.90738, 5.661841), (6.5598493, 49.38442, 4.260016), (6.327907, 49.38442, 4.5974936), (8.410205, 48.90738, 6.110371), (8.410205, 48.90738, 6.110371), (6.327907, 49.38442, 4.5974936), (6.0786204, 49.38442, 4.92237), (8.078887, 48.90738, 6.5421534), (8.078887, 48.90738, 6.5421534), (6.0786204, 49.38442, 4.92237), (5.812673, 49.38442, 5.2337546), (7.725425, 48.90738, 6.9560037), (7.725425, 48.90738, 6.9560037), (5.812673, 49.38442, 5.2337546), (5.5307937, 49.38442, 5.5307937), (7.350788, 48.90738, 7.350788), (7.350788, 48.90738, 7.350788), (5.5307937, 49.38442, 5.5307937), (5.2337546, 49.38442, 5.812673), (6.9560037, 48.90738, 7.725425), (6.9560037, 48.90738, 7.725425), (5.2337546, 49.38442, 5.812673), (4.92237, 49.38442, 6.0786204), (6.5421534, 48.90738, 8.078887), (6.5421534, 48.90738, 8.078887), (4.92237, 49.38442, 6.0786204), (4.5974936, 49.38442, 6.327907), (6.110371, 48.90738, 8.410205), (6.110371, 48.90738, 8.410205), (4.5974936, 49.38442, 6.327907), (4.260016, 49.38442, 6.5598493), (5.661841, 48.90738, 8.718471), (5.661841, 48.90738, 8.718471), (4.260016, 49.38442, 6.5598493), (3.9108617, 49.38442, 6.773811), (5.197792, 48.90738, 9.00284), (5.197792, 48.90738, 9.00284), (3.9108617, 49.38442, 6.773811), (3.550988, 49.38442, 6.9692063), (4.7194967, 48.90738, 9.262533), (4.7194967, 48.90738, 9.262533), (3.550988, 49.38442, 6.9692063), (3.1813815, 49.38442, 7.1454997), (4.2282653, 48.90738, 9.496839), (4.2282653, 48.90738, 9.496839), (3.1813815, 49.38442, 7.1454997), (2.8030548, 49.38442, 7.302208), (3.7254443, 48.90738, 9.705114), (3.7254443, 48.90738, 9.705114), (2.8030548, 49.38442, 7.302208), (2.4170454, 49.38442, 7.438901), (3.2124124, 48.90738, 9.886788), (3.2124124, 48.90738, 9.886788), (2.4170454, 49.38442, 7.438901), (2.024411, 49.38442, 7.5552044), (2.6905754, 48.90738, 10.041364), (2.6905754, 48.90738, 10.041364), (2.024411, 49.38442, 7.5552044), (1.6262277, 49.38442, 7.6507998), (2.1613636, 48.90738, 10.168416), (2.1613636, 48.90738, 10.168416), (1.6262277, 49.38442, 7.6507998), (1.223587, 49.38442, 7.725425), (1.6262277, 48.90738, 10.267597), (1.6262277, 48.90738, 10.267597), (1.223587, 49.38442, 7.725425), (0.81759274, 49.38442, 7.778875), (1.0866345, 48.90738, 10.338636), (1.0866345, 48.90738, 10.338636), (0.81759274, 49.38442, 7.778875), (0.40935737, 49.38442, 7.8110037), (0.54406285, 48.90738, 10.381338), (0.54406285, 48.90738, 10.381338), (0.40935737, 49.38442, 7.8110037), (4.789424e-16, 49.38442, 7.8217235), (6.3654595e-16, 48.90738, 10.395584), (6.3654595e-16, 48.90738, 10.395584), (4.789424e-16, 49.38442, 7.8217235), (-0.40935737, 49.38442, 7.8110037), (-0.54406285, 48.90738, 10.381338), (-0.54406285, 48.90738, 10.381338), (-0.40935737, 49.38442, 7.8110037), (-0.81759274, 49.38442, 7.778875), (-1.0866345, 48.90738, 10.338636), (-1.0866345, 48.90738, 10.338636), (-0.81759274, 49.38442, 7.778875), (-1.223587, 49.38442, 7.725425), (-1.6262277, 48.90738, 10.267597), (-1.6262277, 48.90738, 10.267597), (-1.223587, 49.38442, 7.725425), (-1.6262277, 49.38442, 7.6507998), (-2.1613636, 48.90738, 10.168416), (-2.1613636, 48.90738, 10.168416), (-1.6262277, 49.38442, 7.6507998), (-2.024411, 49.38442, 7.5552044), (-2.6905754, 48.90738, 10.041364), (-2.6905754, 48.90738, 10.041364), (-2.024411, 49.38442, 7.5552044), (-2.4170454, 49.38442, 7.438901), (-3.2124124, 48.90738, 9.886788), (-3.2124124, 48.90738, 9.886788), (-2.4170454, 49.38442, 7.438901), (-2.8030548, 49.38442, 7.302208), (-3.7254443, 48.90738, 9.705114), (-3.7254443, 48.90738, 9.705114), (-2.8030548, 49.38442, 7.302208), (-3.1813815, 49.38442, 7.1454997), (-4.2282653, 48.90738, 9.496839), (-4.2282653, 48.90738, 9.496839), (-3.1813815, 49.38442, 7.1454997), (-3.550988, 49.38442, 6.9692063), (-4.7194967, 48.90738, 9.262533), (-4.7194967, 48.90738, 9.262533), (-3.550988, 49.38442, 6.9692063), (-3.9108617, 49.38442, 6.773811), (-5.197792, 48.90738, 9.00284), (-5.197792, 48.90738, 9.00284), (-3.9108617, 49.38442, 6.773811), (-4.260016, 49.38442, 6.5598493), (-5.661841, 48.90738, 8.718471), (-5.661841, 48.90738, 8.718471), (-4.260016, 49.38442, 6.5598493), (-4.5974936, 49.38442, 6.327907), (-6.110371, 48.90738, 8.410205), (-6.110371, 48.90738, 8.410205), (-4.5974936, 49.38442, 6.327907), (-4.92237, 49.38442, 6.0786204), (-6.5421534, 48.90738, 8.078887), (-6.5421534, 48.90738, 8.078887), (-4.92237, 49.38442, 6.0786204), (-5.2337546, 49.38442, 5.812673), (-6.9560037, 48.90738, 7.725425), (-6.9560037, 48.90738, 7.725425), (-5.2337546, 49.38442, 5.812673), (-5.5307937, 49.38442, 5.5307937), (-7.350788, 48.90738, 7.350788), (-7.350788, 48.90738, 7.350788), (-5.5307937, 49.38442, 5.5307937), (-5.812673, 49.38442, 5.2337546), (-7.725425, 48.90738, 6.9560037), (-7.725425, 48.90738, 6.9560037), (-5.812673, 49.38442, 5.2337546), (-6.0786204, 49.38442, 4.92237), (-8.078887, 48.90738, 6.5421534), (-8.078887, 48.90738, 6.5421534), (-6.0786204, 49.38442, 4.92237), (-6.327907, 49.38442, 4.5974936), (-8.410205, 48.90738, 6.110371), (-8.410205, 48.90738, 6.110371), (-6.327907, 49.38442, 4.5974936), (-6.5598493, 49.38442, 4.260016), (-8.718471, 48.90738, 5.661841), (-8.718471, 48.90738, 5.661841), (-6.5598493, 49.38442, 4.260016), (-6.773811, 49.38442, 3.9108617), (-9.00284, 48.90738, 5.197792), (-9.00284, 48.90738, 5.197792), (-6.773811, 49.38442, 3.9108617), (-6.9692063, 49.38442, 3.550988), (-9.262533, 48.90738, 4.7194967), (-9.262533, 48.90738, 4.7194967), (-6.9692063, 49.38442, 3.550988), (-7.1454997, 49.38442, 3.1813815), (-9.496839, 48.90738, 4.2282653), (-9.496839, 48.90738, 4.2282653), (-7.1454997, 49.38442, 3.1813815), (-7.302208, 49.38442, 2.8030548), (-9.705114, 48.90738, 3.7254443), (-9.705114, 48.90738, 3.7254443), (-7.302208, 49.38442, 2.8030548), (-7.438901, 49.38442, 2.4170454), (-9.886788, 48.90738, 3.2124124), (-9.886788, 48.90738, 3.2124124), (-7.438901, 49.38442, 2.4170454), (-7.5552044, 49.38442, 2.024411), (-10.041364, 48.90738, 2.6905754), (-10.041364, 48.90738, 2.6905754), (-7.5552044, 49.38442, 2.024411), (-7.6507998, 49.38442, 1.6262277), (-10.168416, 48.90738, 2.1613636), (-10.168416, 48.90738, 2.1613636), (-7.6507998, 49.38442, 1.6262277), (-7.725425, 49.38442, 1.223587), (-10.267597, 48.90738, 1.6262277), (-10.267597, 48.90738, 1.6262277), (-7.725425, 49.38442, 1.223587), (-7.778875, 49.38442, 0.81759274), (-10.338636, 48.90738, 1.0866345), (-10.338636, 48.90738, 1.0866345), (-7.778875, 49.38442, 0.81759274), (-7.8110037, 49.38442, 0.40935737), (-10.381338, 48.90738, 0.54406285), (-10.381338, 48.90738, 0.54406285), (-7.8110037, 49.38442, 0.40935737), (-7.8217235, 49.38442, 9.578848e-16), (-10.395584, 48.90738, 1.2730919e-15), (-10.395584, 48.90738, 1.2730919e-15), (-7.8217235, 49.38442, 9.578848e-16), (-7.8110037, 49.38442, -0.40935737), (-10.381338, 48.90738, -0.54406285), (-10.381338, 48.90738, -0.54406285), (-7.8110037, 49.38442, -0.40935737), (-7.778875, 49.38442, -0.81759274), (-10.338636, 48.90738, -1.0866345), (-10.338636, 48.90738, -1.0866345), (-7.778875, 49.38442, -0.81759274), (-7.725425, 49.38442, -1.223587), (-10.267597, 48.90738, -1.6262277), (-10.267597, 48.90738, -1.6262277), (-7.725425, 49.38442, -1.223587), (-7.6507998, 49.38442, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-10.168416, 48.90738, -2.1613636), (-7.6507998, 49.38442, -1.6262277), (-7.5552044, 49.38442, -2.024411), (-10.041364, 48.90738, -2.6905754), (-10.041364, 48.90738, -2.6905754), (-7.5552044, 49.38442, -2.024411), (-7.438901, 49.38442, -2.4170454), (-9.886788, 48.90738, -3.2124124), (-9.886788, 48.90738, -3.2124124), (-7.438901, 49.38442, -2.4170454), (-7.302208, 49.38442, -2.8030548), (-9.705114, 48.90738, -3.7254443), (-9.705114, 48.90738, -3.7254443), (-7.302208, 49.38442, -2.8030548), (-7.1454997, 49.38442, -3.1813815), (-9.496839, 48.90738, -4.2282653), (-9.496839, 48.90738, -4.2282653), (-7.1454997, 49.38442, -3.1813815), (-6.9692063, 49.38442, -3.550988), (-9.262533, 48.90738, -4.7194967), (-9.262533, 48.90738, -4.7194967), (-6.9692063, 49.38442, -3.550988), (-6.773811, 49.38442, -3.9108617), (-9.00284, 48.90738, -5.197792), (-9.00284, 48.90738, -5.197792), (-6.773811, 49.38442, -3.9108617), (-6.5598493, 49.38442, -4.260016), (-8.718471, 48.90738, -5.661841), (-8.718471, 48.90738, -5.661841), (-6.5598493, 49.38442, -4.260016), (-6.327907, 49.38442, -4.5974936), (-8.410205, 48.90738, -6.110371), (-8.410205, 48.90738, -6.110371), (-6.327907, 49.38442, -4.5974936), (-6.0786204, 49.38442, -4.92237), (-8.078887, 48.90738, -6.5421534), (-8.078887, 48.90738, -6.5421534), (-6.0786204, 49.38442, -4.92237), (-5.812673, 49.38442, -5.2337546), (-7.725425, 48.90738, -6.9560037), (-7.725425, 48.90738, -6.9560037), (-5.812673, 49.38442, -5.2337546), (-5.5307937, 49.38442, -5.5307937), (-7.350788, 48.90738, -7.350788), (-7.350788, 48.90738, -7.350788), (-5.5307937, 49.38442, -5.5307937), (-5.2337546, 49.38442, -5.812673), (-6.9560037, 48.90738, -7.725425), (-6.9560037, 48.90738, -7.725425), (-5.2337546, 49.38442, -5.812673), (-4.92237, 49.38442, -6.0786204), (-6.5421534, 48.90738, -8.078887), (-6.5421534, 48.90738, -8.078887), (-4.92237, 49.38442, -6.0786204), (-4.5974936, 49.38442, -6.327907), (-6.110371, 48.90738, -8.410205), (-6.110371, 48.90738, -8.410205), (-4.5974936, 49.38442, -6.327907), (-4.260016, 49.38442, -6.5598493), (-5.661841, 48.90738, -8.718471), (-5.661841, 48.90738, -8.718471), (-4.260016, 49.38442, -6.5598493), (-3.9108617, 49.38442, -6.773811), (-5.197792, 48.90738, -9.00284), (-5.197792, 48.90738, -9.00284), (-3.9108617, 49.38442, -6.773811), (-3.550988, 49.38442, -6.9692063), (-4.7194967, 48.90738, -9.262533), (-4.7194967, 48.90738, -9.262533), (-3.550988, 49.38442, -6.9692063), (-3.1813815, 49.38442, -7.1454997), (-4.2282653, 48.90738, -9.496839), (-4.2282653, 48.90738, -9.496839), (-3.1813815, 49.38442, -7.1454997), (-2.8030548, 49.38442, -7.302208), (-3.7254443, 48.90738, -9.705114), (-3.7254443, 48.90738, -9.705114), (-2.8030548, 49.38442, -7.302208), (-2.4170454, 49.38442, -7.438901), (-3.2124124, 48.90738, -9.886788), (-3.2124124, 48.90738, -9.886788), (-2.4170454, 49.38442, -7.438901), (-2.024411, 49.38442, -7.5552044), (-2.6905754, 48.90738, -10.041364), (-2.6905754, 48.90738, -10.041364), (-2.024411, 49.38442, -7.5552044), (-1.6262277, 49.38442, -7.6507998), (-2.1613636, 48.90738, -10.168416), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 49.38442, -7.6507998), (-1.223587, 49.38442, -7.725425), (-1.6262277, 48.90738, -10.267597), (-1.6262277, 48.90738, -10.267597), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.38442, -7.778875), (-1.0866345, 48.90738, -10.338636), (-1.0866345, 48.90738, -10.338636), (-0.81759274, 49.38442, -7.778875), (-0.40935737, 49.38442, -7.8110037), (-0.54406285, 48.90738, -10.381338), (-0.54406285, 48.90738, -10.381338), (-0.40935737, 49.38442, -7.8110037), (-1.4368273e-15, 49.38442, -7.8217235), (-1.909638e-15, 48.90738, -10.395584), (-1.909638e-15, 48.90738, -10.395584), (-1.4368273e-15, 49.38442, -7.8217235), (0.40935737, 49.38442, -7.8110037), (0.54406285, 48.90738, -10.381338), (0.54406285, 48.90738, -10.381338), (0.40935737, 49.38442, -7.8110037), (0.81759274, 49.38442, -7.778875), (1.0866345, 48.90738, -10.338636), (1.0866345, 48.90738, -10.338636), (0.81759274, 49.38442, -7.778875), (1.223587, 49.38442, -7.725425), (1.6262277, 48.90738, -10.267597), (1.6262277, 48.90738, -10.267597), (1.223587, 49.38442, -7.725425), (1.6262277, 49.38442, -7.6507998), (2.1613636, 48.90738, -10.168416), (2.1613636, 48.90738, -10.168416), (1.6262277, 49.38442, -7.6507998), (2.024411, 49.38442, -7.5552044), (2.6905754, 48.90738, -10.041364), (2.6905754, 48.90738, -10.041364), (2.024411, 49.38442, -7.5552044), (2.4170454, 49.38442, -7.438901), (3.2124124, 48.90738, -9.886788), (3.2124124, 48.90738, -9.886788), (2.4170454, 49.38442, -7.438901), (2.8030548, 49.38442, -7.302208), (3.7254443, 48.90738, -9.705114), (3.7254443, 48.90738, -9.705114), (2.8030548, 49.38442, -7.302208), (3.1813815, 49.38442, -7.1454997), (4.2282653, 48.90738, -9.496839), (4.2282653, 48.90738, -9.496839), (3.1813815, 49.38442, -7.1454997), (3.550988, 49.38442, -6.9692063), (4.7194967, 48.90738, -9.262533), (4.7194967, 48.90738, -9.262533), (3.550988, 49.38442, -6.9692063), (3.9108617, 49.38442, -6.773811), (5.197792, 48.90738, -9.00284), (5.197792, 48.90738, -9.00284), (3.9108617, 49.38442, -6.773811), (4.260016, 49.38442, -6.5598493), (5.661841, 48.90738, -8.718471), (5.661841, 48.90738, -8.718471), (4.260016, 49.38442, -6.5598493), (4.5974936, 49.38442, -6.327907), (6.110371, 48.90738, -8.410205), (6.110371, 48.90738, -8.410205), (4.5974936, 49.38442, -6.327907), (4.92237, 49.38442, -6.0786204), (6.5421534, 48.90738, -8.078887), (6.5421534, 48.90738, -8.078887), (4.92237, 49.38442, -6.0786204), (5.2337546, 49.38442, -5.812673), (6.9560037, 48.90738, -7.725425), (6.9560037, 48.90738, -7.725425), (5.2337546, 49.38442, -5.812673), (5.5307937, 49.38442, -5.5307937), (7.350788, 48.90738, -7.350788), (7.350788, 48.90738, -7.350788), (5.5307937, 49.38442, -5.5307937), (5.812673, 49.38442, -5.2337546), (7.725425, 48.90738, -6.9560037), (7.725425, 48.90738, -6.9560037), (5.812673, 49.38442, -5.2337546), (6.0786204, 49.38442, -4.92237), (8.078887, 48.90738, -6.5421534), (8.078887, 48.90738, -6.5421534), (6.0786204, 49.38442, -4.92237), (6.327907, 49.38442, -4.5974936), (8.410205, 48.90738, -6.110371), (8.410205, 48.90738, -6.110371), (6.327907, 49.38442, -4.5974936), (6.5598493, 49.38442, -4.260016), (8.718471, 48.90738, -5.661841), (8.718471, 48.90738, -5.661841), (6.5598493, 49.38442, -4.260016), (6.773811, 49.38442, -3.9108617), (9.00284, 48.90738, -5.197792), (9.00284, 48.90738, -5.197792), (6.773811, 49.38442, -3.9108617), (6.9692063, 49.38442, -3.550988), (9.262533, 48.90738, -4.7194967), (9.262533, 48.90738, -4.7194967), (6.9692063, 49.38442, -3.550988), (7.1454997, 49.38442, -3.1813815), (9.496839, 48.90738, -4.2282653), (9.496839, 48.90738, -4.2282653), (7.1454997, 49.38442, -3.1813815), (7.302208, 49.38442, -2.8030548), (9.705114, 48.90738, -3.7254443), (9.705114, 48.90738, -3.7254443), (7.302208, 49.38442, -2.8030548), (7.438901, 49.38442, -2.4170454), (9.886788, 48.90738, -3.2124124), (9.886788, 48.90738, -3.2124124), (7.438901, 49.38442, -2.4170454), (7.5552044, 49.38442, -2.024411), (10.041364, 48.90738, -2.6905754), (10.041364, 48.90738, -2.6905754), (7.5552044, 49.38442, -2.024411), (7.6507998, 49.38442, -1.6262277), (10.168416, 48.90738, -2.1613636), (10.168416, 48.90738, -2.1613636), (7.6507998, 49.38442, -1.6262277), (7.725425, 49.38442, -1.223587), (10.267597, 48.90738, -1.6262277), (10.267597, 48.90738, -1.6262277), (7.725425, 49.38442, -1.223587), (7.778875, 49.38442, -0.81759274), (10.338636, 48.90738, -1.0866345), (10.338636, 48.90738, -1.0866345), (7.778875, 49.38442, -0.81759274), (7.8110037, 49.38442, -0.40935737), (10.381338, 48.90738, -0.54406285), (10.381338, 48.90738, -0.54406285), (7.8110037, 49.38442, -0.40935737), (7.8217235, 49.38442, 0), (10.395584, 48.90738, 0), (7.8217235, 49.38442, 0), (5.2264233, 49.726093, 0), (5.2192607, 49.726093, 0.27352986), (7.8110037, 49.38442, 0.40935737), (7.8110037, 49.38442, 0.40935737), (5.2192607, 49.726093, 0.27352986), (5.197792, 49.726093, 0.54631), (7.778875, 49.38442, 0.81759274), (7.778875, 49.38442, 0.81759274), (5.197792, 49.726093, 0.54631), (5.1620774, 49.726093, 0.81759274), (7.725425, 49.38442, 1.223587), (7.725425, 49.38442, 1.223587), (5.1620774, 49.726093, 0.81759274), (5.112213, 49.726093, 1.0866345), (7.6507998, 49.38442, 1.6262277), (7.6507998, 49.38442, 1.6262277), (5.112213, 49.726093, 1.0866345), (5.048337, 49.726093, 1.3526978), (7.5552044, 49.38442, 2.024411), (7.5552044, 49.38442, 2.024411), (5.048337, 49.726093, 1.3526978), (4.970624, 49.726093, 1.6150535), (7.438901, 49.38442, 2.4170454), (7.438901, 49.38442, 2.4170454), (4.970624, 49.726093, 1.6150535), (4.8792863, 49.726093, 1.8729825), (7.302208, 49.38442, 2.8030548), (7.302208, 49.38442, 2.8030548), (4.8792863, 49.726093, 1.8729825), (4.774575, 49.726093, 2.1257777), (7.1454997, 49.38442, 3.1813815), (7.1454997, 49.38442, 3.1813815), (4.774575, 49.726093, 2.1257777), (4.656777, 49.726093, 2.3727465), (6.9692063, 49.38442, 3.550988), (6.9692063, 49.38442, 3.550988), (4.656777, 49.726093, 2.3727465), (4.526215, 49.726093, 2.6132116), (6.773811, 49.38442, 3.9108617), (6.773811, 49.38442, 3.9108617), (4.526215, 49.726093, 2.6132116), (4.3832474, 49.726093, 2.846514), (6.5598493, 49.38442, 4.260016), (6.5598493, 49.38442, 4.260016), (4.3832474, 49.726093, 2.846514), (4.2282653, 49.726093, 3.0720146), (6.327907, 49.38442, 4.5974936), (6.327907, 49.38442, 4.5974936), (4.2282653, 49.726093, 3.0720146), (4.0616937, 49.726093, 3.2890947), (6.0786204, 49.38442, 4.92237), (6.0786204, 49.38442, 4.92237), (4.0616937, 49.726093, 3.2890947), (3.8839893, 49.726093, 3.4971597), (5.812673, 49.38442, 5.2337546), (5.812673, 49.38442, 5.2337546), (3.8839893, 49.726093, 3.4971597), (3.6956394, 49.726093, 3.6956394), (5.5307937, 49.38442, 5.5307937), (5.5307937, 49.38442, 5.5307937), (3.6956394, 49.726093, 3.6956394), (3.4971597, 49.726093, 3.8839893), (5.2337546, 49.38442, 5.812673), (5.2337546, 49.38442, 5.812673), (3.4971597, 49.726093, 3.8839893), (3.2890947, 49.726093, 4.0616937), (4.92237, 49.38442, 6.0786204), (4.92237, 49.38442, 6.0786204), (3.2890947, 49.726093, 4.0616937), (3.0720146, 49.726093, 4.2282653), (4.5974936, 49.38442, 6.327907), (4.5974936, 49.38442, 6.327907), (3.0720146, 49.726093, 4.2282653), (2.846514, 49.726093, 4.3832474), (4.260016, 49.38442, 6.5598493), (4.260016, 49.38442, 6.5598493), (2.846514, 49.726093, 4.3832474), (2.6132116, 49.726093, 4.526215), (3.9108617, 49.38442, 6.773811), (3.9108617, 49.38442, 6.773811), (2.6132116, 49.726093, 4.526215), (2.3727465, 49.726093, 4.656777), (3.550988, 49.38442, 6.9692063), (3.550988, 49.38442, 6.9692063), (2.3727465, 49.726093, 4.656777), (2.1257777, 49.726093, 4.774575), (3.1813815, 49.38442, 7.1454997), (3.1813815, 49.38442, 7.1454997), (2.1257777, 49.726093, 4.774575), (1.8729825, 49.726093, 4.8792863), (2.8030548, 49.38442, 7.302208), (2.8030548, 49.38442, 7.302208), (1.8729825, 49.726093, 4.8792863), (1.6150535, 49.726093, 4.970624), (2.4170454, 49.38442, 7.438901), (2.4170454, 49.38442, 7.438901), (1.6150535, 49.726093, 4.970624), (1.3526978, 49.726093, 5.048337), (2.024411, 49.38442, 7.5552044), (2.024411, 49.38442, 7.5552044), (1.3526978, 49.726093, 5.048337), (1.0866345, 49.726093, 5.112213), (1.6262277, 49.38442, 7.6507998), (1.6262277, 49.38442, 7.6507998), (1.0866345, 49.726093, 5.112213), (0.81759274, 49.726093, 5.1620774), (1.223587, 49.38442, 7.725425), (1.223587, 49.38442, 7.725425), (0.81759274, 49.726093, 5.1620774), (0.54631, 49.726093, 5.197792), (0.81759274, 49.38442, 7.778875), (0.81759274, 49.38442, 7.778875), (0.54631, 49.726093, 5.197792), (0.27352986, 49.726093, 5.2192607), (0.40935737, 49.38442, 7.8110037), (0.40935737, 49.38442, 7.8110037), (0.27352986, 49.726093, 5.2192607), (3.2002612e-16, 49.726093, 5.2264233), (4.789424e-16, 49.38442, 7.8217235), (4.789424e-16, 49.38442, 7.8217235), (3.2002612e-16, 49.726093, 5.2264233), (-0.27352986, 49.726093, 5.2192607), (-0.40935737, 49.38442, 7.8110037), (-0.40935737, 49.38442, 7.8110037), (-0.27352986, 49.726093, 5.2192607), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.38442, 7.778875), (-0.81759274, 49.38442, 7.778875), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.726093, 5.1620774), (-1.223587, 49.38442, 7.725425), (-1.223587, 49.38442, 7.725425), (-0.81759274, 49.726093, 5.1620774), (-1.0866345, 49.726093, 5.112213), (-1.6262277, 49.38442, 7.6507998), (-1.6262277, 49.38442, 7.6507998), (-1.0866345, 49.726093, 5.112213), (-1.3526978, 49.726093, 5.048337), (-2.024411, 49.38442, 7.5552044), (-2.024411, 49.38442, 7.5552044), (-1.3526978, 49.726093, 5.048337), (-1.6150535, 49.726093, 4.970624), (-2.4170454, 49.38442, 7.438901), (-2.4170454, 49.38442, 7.438901), (-1.6150535, 49.726093, 4.970624), (-1.8729825, 49.726093, 4.8792863), (-2.8030548, 49.38442, 7.302208), (-2.8030548, 49.38442, 7.302208), (-1.8729825, 49.726093, 4.8792863), (-2.1257777, 49.726093, 4.774575), (-3.1813815, 49.38442, 7.1454997), (-3.1813815, 49.38442, 7.1454997), (-2.1257777, 49.726093, 4.774575), (-2.3727465, 49.726093, 4.656777), (-3.550988, 49.38442, 6.9692063), (-3.550988, 49.38442, 6.9692063), (-2.3727465, 49.726093, 4.656777), (-2.6132116, 49.726093, 4.526215), (-3.9108617, 49.38442, 6.773811), (-3.9108617, 49.38442, 6.773811), (-2.6132116, 49.726093, 4.526215), (-2.846514, 49.726093, 4.3832474), (-4.260016, 49.38442, 6.5598493), (-4.260016, 49.38442, 6.5598493), (-2.846514, 49.726093, 4.3832474), (-3.0720146, 49.726093, 4.2282653), (-4.5974936, 49.38442, 6.327907), (-4.5974936, 49.38442, 6.327907), (-3.0720146, 49.726093, 4.2282653), (-3.2890947, 49.726093, 4.0616937), (-4.92237, 49.38442, 6.0786204), (-4.92237, 49.38442, 6.0786204), (-3.2890947, 49.726093, 4.0616937), (-3.4971597, 49.726093, 3.8839893), (-5.2337546, 49.38442, 5.812673), (-5.2337546, 49.38442, 5.812673), (-3.4971597, 49.726093, 3.8839893), (-3.6956394, 49.726093, 3.6956394), (-5.5307937, 49.38442, 5.5307937), (-5.5307937, 49.38442, 5.5307937), (-3.6956394, 49.726093, 3.6956394), (-3.8839893, 49.726093, 3.4971597), (-5.812673, 49.38442, 5.2337546), (-5.812673, 49.38442, 5.2337546), (-3.8839893, 49.726093, 3.4971597), (-4.0616937, 49.726093, 3.2890947), (-6.0786204, 49.38442, 4.92237), (-6.0786204, 49.38442, 4.92237), (-4.0616937, 49.726093, 3.2890947), (-4.2282653, 49.726093, 3.0720146), (-6.327907, 49.38442, 4.5974936), (-6.327907, 49.38442, 4.5974936), (-4.2282653, 49.726093, 3.0720146), (-4.3832474, 49.726093, 2.846514), (-6.5598493, 49.38442, 4.260016), (-6.5598493, 49.38442, 4.260016), (-4.3832474, 49.726093, 2.846514), (-4.526215, 49.726093, 2.6132116), (-6.773811, 49.38442, 3.9108617), (-6.773811, 49.38442, 3.9108617), (-4.526215, 49.726093, 2.6132116), (-4.656777, 49.726093, 2.3727465), (-6.9692063, 49.38442, 3.550988), (-6.9692063, 49.38442, 3.550988), (-4.656777, 49.726093, 2.3727465), (-4.774575, 49.726093, 2.1257777), (-7.1454997, 49.38442, 3.1813815), (-7.1454997, 49.38442, 3.1813815), (-4.774575, 49.726093, 2.1257777), (-4.8792863, 49.726093, 1.8729825), (-7.302208, 49.38442, 2.8030548), (-7.302208, 49.38442, 2.8030548), (-4.8792863, 49.726093, 1.8729825), (-4.970624, 49.726093, 1.6150535), (-7.438901, 49.38442, 2.4170454), (-7.438901, 49.38442, 2.4170454), (-4.970624, 49.726093, 1.6150535), (-5.048337, 49.726093, 1.3526978), (-7.5552044, 49.38442, 2.024411), (-7.5552044, 49.38442, 2.024411), (-5.048337, 49.726093, 1.3526978), (-5.112213, 49.726093, 1.0866345), (-7.6507998, 49.38442, 1.6262277), (-7.6507998, 49.38442, 1.6262277), (-5.112213, 49.726093, 1.0866345), (-5.1620774, 49.726093, 0.81759274), (-7.725425, 49.38442, 1.223587), (-7.725425, 49.38442, 1.223587), (-5.1620774, 49.726093, 0.81759274), (-5.197792, 49.726093, 0.54631), (-7.778875, 49.38442, 0.81759274), (-7.778875, 49.38442, 0.81759274), (-5.197792, 49.726093, 0.54631), (-5.2192607, 49.726093, 0.27352986), (-7.8110037, 49.38442, 0.40935737), (-7.8110037, 49.38442, 0.40935737), (-5.2192607, 49.726093, 0.27352986), (-5.2264233, 49.726093, 6.4005224e-16), (-7.8217235, 49.38442, 9.578848e-16), (-7.8217235, 49.38442, 9.578848e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2192607, 49.726093, -0.27352986), (-7.8110037, 49.38442, -0.40935737), (-7.8110037, 49.38442, -0.40935737), (-5.2192607, 49.726093, -0.27352986), (-5.197792, 49.726093, -0.54631), (-7.778875, 49.38442, -0.81759274), (-7.778875, 49.38442, -0.81759274), (-5.197792, 49.726093, -0.54631), (-5.1620774, 49.726093, -0.81759274), (-7.725425, 49.38442, -1.223587), (-7.725425, 49.38442, -1.223587), (-5.1620774, 49.726093, -0.81759274), (-5.112213, 49.726093, -1.0866345), (-7.6507998, 49.38442, -1.6262277), (-7.6507998, 49.38442, -1.6262277), (-5.112213, 49.726093, -1.0866345), (-5.048337, 49.726093, -1.3526978), (-7.5552044, 49.38442, -2.024411), (-7.5552044, 49.38442, -2.024411), (-5.048337, 49.726093, -1.3526978), (-4.970624, 49.726093, -1.6150535), (-7.438901, 49.38442, -2.4170454), (-7.438901, 49.38442, -2.4170454), (-4.970624, 49.726093, -1.6150535), (-4.8792863, 49.726093, -1.8729825), (-7.302208, 49.38442, -2.8030548), (-7.302208, 49.38442, -2.8030548), (-4.8792863, 49.726093, -1.8729825), (-4.774575, 49.726093, -2.1257777), (-7.1454997, 49.38442, -3.1813815), (-7.1454997, 49.38442, -3.1813815), (-4.774575, 49.726093, -2.1257777), (-4.656777, 49.726093, -2.3727465), (-6.9692063, 49.38442, -3.550988), (-6.9692063, 49.38442, -3.550988), (-4.656777, 49.726093, -2.3727465), (-4.526215, 49.726093, -2.6132116), (-6.773811, 49.38442, -3.9108617), (-6.773811, 49.38442, -3.9108617), (-4.526215, 49.726093, -2.6132116), (-4.3832474, 49.726093, -2.846514), (-6.5598493, 49.38442, -4.260016), (-6.5598493, 49.38442, -4.260016), (-4.3832474, 49.726093, -2.846514), (-4.2282653, 49.726093, -3.0720146), (-6.327907, 49.38442, -4.5974936), (-6.327907, 49.38442, -4.5974936), (-4.2282653, 49.726093, -3.0720146), (-4.0616937, 49.726093, -3.2890947), (-6.0786204, 49.38442, -4.92237), (-6.0786204, 49.38442, -4.92237), (-4.0616937, 49.726093, -3.2890947), (-3.8839893, 49.726093, -3.4971597), (-5.812673, 49.38442, -5.2337546), (-5.812673, 49.38442, -5.2337546), (-3.8839893, 49.726093, -3.4971597), (-3.6956394, 49.726093, -3.6956394), (-5.5307937, 49.38442, -5.5307937), (-5.5307937, 49.38442, -5.5307937), (-3.6956394, 49.726093, -3.6956394), (-3.4971597, 49.726093, -3.8839893), (-5.2337546, 49.38442, -5.812673), (-5.2337546, 49.38442, -5.812673), (-3.4971597, 49.726093, -3.8839893), (-3.2890947, 49.726093, -4.0616937), (-4.92237, 49.38442, -6.0786204), (-4.92237, 49.38442, -6.0786204), (-3.2890947, 49.726093, -4.0616937), (-3.0720146, 49.726093, -4.2282653), (-4.5974936, 49.38442, -6.327907), (-4.5974936, 49.38442, -6.327907), (-3.0720146, 49.726093, -4.2282653), (-2.846514, 49.726093, -4.3832474), (-4.260016, 49.38442, -6.5598493), (-4.260016, 49.38442, -6.5598493), (-2.846514, 49.726093, -4.3832474), (-2.6132116, 49.726093, -4.526215), (-3.9108617, 49.38442, -6.773811), (-3.9108617, 49.38442, -6.773811), (-2.6132116, 49.726093, -4.526215), (-2.3727465, 49.726093, -4.656777), (-3.550988, 49.38442, -6.9692063), (-3.550988, 49.38442, -6.9692063), (-2.3727465, 49.726093, -4.656777), (-2.1257777, 49.726093, -4.774575), (-3.1813815, 49.38442, -7.1454997), (-3.1813815, 49.38442, -7.1454997), (-2.1257777, 49.726093, -4.774575), (-1.8729825, 49.726093, -4.8792863), (-2.8030548, 49.38442, -7.302208), (-2.8030548, 49.38442, -7.302208), (-1.8729825, 49.726093, -4.8792863), (-1.6150535, 49.726093, -4.970624), (-2.4170454, 49.38442, -7.438901), (-2.4170454, 49.38442, -7.438901), (-1.6150535, 49.726093, -4.970624), (-1.3526978, 49.726093, -5.048337), (-2.024411, 49.38442, -7.5552044), (-2.024411, 49.38442, -7.5552044), (-1.3526978, 49.726093, -5.048337), (-1.0866345, 49.726093, -5.112213), (-1.6262277, 49.38442, -7.6507998), (-1.6262277, 49.38442, -7.6507998), (-1.0866345, 49.726093, -5.112213), (-0.81759274, 49.726093, -5.1620774), (-1.223587, 49.38442, -7.725425), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.726093, -5.1620774), (-0.54631, 49.726093, -5.197792), (-0.81759274, 49.38442, -7.778875), (-0.81759274, 49.38442, -7.778875), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.726093, -5.2192607), (-0.40935737, 49.38442, -7.8110037), (-0.40935737, 49.38442, -7.8110037), (-0.27352986, 49.726093, -5.2192607), (-9.600784e-16, 49.726093, -5.2264233), (-1.4368273e-15, 49.38442, -7.8217235), (-1.4368273e-15, 49.38442, -7.8217235), (-9.600784e-16, 49.726093, -5.2264233), (0.27352986, 49.726093, -5.2192607), (0.40935737, 49.38442, -7.8110037), (0.40935737, 49.38442, -7.8110037), (0.27352986, 49.726093, -5.2192607), (0.54631, 49.726093, -5.197792), (0.81759274, 49.38442, -7.778875), (0.81759274, 49.38442, -7.778875), (0.54631, 49.726093, -5.197792), (0.81759274, 49.726093, -5.1620774), (1.223587, 49.38442, -7.725425), (1.223587, 49.38442, -7.725425), (0.81759274, 49.726093, -5.1620774), (1.0866345, 49.726093, -5.112213), (1.6262277, 49.38442, -7.6507998), (1.6262277, 49.38442, -7.6507998), (1.0866345, 49.726093, -5.112213), (1.3526978, 49.726093, -5.048337), (2.024411, 49.38442, -7.5552044), (2.024411, 49.38442, -7.5552044), (1.3526978, 49.726093, -5.048337), (1.6150535, 49.726093, -4.970624), (2.4170454, 49.38442, -7.438901), (2.4170454, 49.38442, -7.438901), (1.6150535, 49.726093, -4.970624), (1.8729825, 49.726093, -4.8792863), (2.8030548, 49.38442, -7.302208), (2.8030548, 49.38442, -7.302208), (1.8729825, 49.726093, -4.8792863), (2.1257777, 49.726093, -4.774575), (3.1813815, 49.38442, -7.1454997), (3.1813815, 49.38442, -7.1454997), (2.1257777, 49.726093, -4.774575), (2.3727465, 49.726093, -4.656777), (3.550988, 49.38442, -6.9692063), (3.550988, 49.38442, -6.9692063), (2.3727465, 49.726093, -4.656777), (2.6132116, 49.726093, -4.526215), (3.9108617, 49.38442, -6.773811), (3.9108617, 49.38442, -6.773811), (2.6132116, 49.726093, -4.526215), (2.846514, 49.726093, -4.3832474), (4.260016, 49.38442, -6.5598493), (4.260016, 49.38442, -6.5598493), (2.846514, 49.726093, -4.3832474), (3.0720146, 49.726093, -4.2282653), (4.5974936, 49.38442, -6.327907), (4.5974936, 49.38442, -6.327907), (3.0720146, 49.726093, -4.2282653), (3.2890947, 49.726093, -4.0616937), (4.92237, 49.38442, -6.0786204), (4.92237, 49.38442, -6.0786204), (3.2890947, 49.726093, -4.0616937), (3.4971597, 49.726093, -3.8839893), (5.2337546, 49.38442, -5.812673), (5.2337546, 49.38442, -5.812673), (3.4971597, 49.726093, -3.8839893), (3.6956394, 49.726093, -3.6956394), (5.5307937, 49.38442, -5.5307937), (5.5307937, 49.38442, -5.5307937), (3.6956394, 49.726093, -3.6956394), (3.8839893, 49.726093, -3.4971597), (5.812673, 49.38442, -5.2337546), (5.812673, 49.38442, -5.2337546), (3.8839893, 49.726093, -3.4971597), (4.0616937, 49.726093, -3.2890947), (6.0786204, 49.38442, -4.92237), (6.0786204, 49.38442, -4.92237), (4.0616937, 49.726093, -3.2890947), (4.2282653, 49.726093, -3.0720146), (6.327907, 49.38442, -4.5974936), (6.327907, 49.38442, -4.5974936), (4.2282653, 49.726093, -3.0720146), (4.3832474, 49.726093, -2.846514), (6.5598493, 49.38442, -4.260016), (6.5598493, 49.38442, -4.260016), (4.3832474, 49.726093, -2.846514), (4.526215, 49.726093, -2.6132116), (6.773811, 49.38442, -3.9108617), (6.773811, 49.38442, -3.9108617), (4.526215, 49.726093, -2.6132116), (4.656777, 49.726093, -2.3727465), (6.9692063, 49.38442, -3.550988), (6.9692063, 49.38442, -3.550988), (4.656777, 49.726093, -2.3727465), (4.774575, 49.726093, -2.1257777), (7.1454997, 49.38442, -3.1813815), (7.1454997, 49.38442, -3.1813815), (4.774575, 49.726093, -2.1257777), (4.8792863, 49.726093, -1.8729825), (7.302208, 49.38442, -2.8030548), (7.302208, 49.38442, -2.8030548), (4.8792863, 49.726093, -1.8729825), (4.970624, 49.726093, -1.6150535), (7.438901, 49.38442, -2.4170454), (7.438901, 49.38442, -2.4170454), (4.970624, 49.726093, -1.6150535), (5.048337, 49.726093, -1.3526978), (7.5552044, 49.38442, -2.024411), (7.5552044, 49.38442, -2.024411), (5.048337, 49.726093, -1.3526978), (5.112213, 49.726093, -1.0866345), (7.6507998, 49.38442, -1.6262277), (7.6507998, 49.38442, -1.6262277), (5.112213, 49.726093, -1.0866345), (5.1620774, 49.726093, -0.81759274), (7.725425, 49.38442, -1.223587), (7.725425, 49.38442, -1.223587), (5.1620774, 49.726093, -0.81759274), (5.197792, 49.726093, -0.54631), (7.778875, 49.38442, -0.81759274), (7.778875, 49.38442, -0.81759274), (5.197792, 49.726093, -0.54631), (5.2192607, 49.726093, -0.27352986), (7.8110037, 49.38442, -0.40935737), (7.8110037, 49.38442, -0.40935737), (5.2192607, 49.726093, -0.27352986), (5.2264233, 49.726093, 0), (7.8217235, 49.38442, 0), (5.2264233, 49.726093, 0), (2.616798, 49.931477, 0), (2.6132116, 49.931477, 0.13695261), (5.2192607, 49.726093, 0.27352986), (5.2192607, 49.726093, 0.27352986), (2.6132116, 49.931477, 0.13695261), (2.6024628, 49.931477, 0.27352986), (5.197792, 49.726093, 0.54631), (5.197792, 49.726093, 0.54631), (2.6024628, 49.931477, 0.27352986), (2.5845807, 49.931477, 0.40935737), (5.1620774, 49.726093, 0.81759274), (5.1620774, 49.726093, 0.81759274), (2.5845807, 49.931477, 0.40935737), (2.5596144, 49.931477, 0.54406285), (5.112213, 49.726093, 1.0866345), (5.112213, 49.726093, 1.0866345), (2.5596144, 49.931477, 0.54406285), (2.5276325, 49.931477, 0.6772771), (5.048337, 49.726093, 1.3526978), (5.048337, 49.726093, 1.3526978), (2.5276325, 49.931477, 0.6772771), (2.4887226, 49.931477, 0.808635), (4.970624, 49.726093, 1.6150535), (4.970624, 49.726093, 1.6150535), (2.4887226, 49.931477, 0.808635), (2.4429913, 49.931477, 0.93777645), (4.8792863, 49.726093, 1.8729825), (4.8792863, 49.726093, 1.8729825), (2.4429913, 49.931477, 0.93777645), (2.3905637, 49.931477, 1.0643475), (4.774575, 49.726093, 2.1257777), (4.774575, 49.726093, 2.1257777), (2.3905637, 49.931477, 1.0643475), (2.331584, 49.931477, 1.1880014), (4.656777, 49.726093, 2.3727465), (4.656777, 49.726093, 2.3727465), (2.331584, 49.931477, 1.1880014), (2.2662134, 49.931477, 1.308399), (4.526215, 49.726093, 2.6132116), (4.526215, 49.726093, 2.6132116), (2.2662134, 49.931477, 1.308399), (2.1946313, 49.931477, 1.4252102), (4.3832474, 49.726093, 2.846514), (4.3832474, 49.726093, 2.846514), (2.1946313, 49.931477, 1.4252102), (2.117034, 49.931477, 1.5381151), (4.2282653, 49.726093, 3.0720146), (4.2282653, 49.726093, 3.0720146), (2.117034, 49.931477, 1.5381151), (2.033634, 49.931477, 1.6468042), (4.0616937, 49.726093, 3.2890947), (4.0616937, 49.726093, 3.2890947), (2.033634, 49.931477, 1.6468042), (1.9446597, 49.931477, 1.7509795), (3.8839893, 49.726093, 3.4971597), (3.8839893, 49.726093, 3.4971597), (1.9446597, 49.931477, 1.7509795), (1.8503555, 49.931477, 1.8503555), (3.6956394, 49.726093, 3.6956394), (3.6956394, 49.726093, 3.6956394), (1.8503555, 49.931477, 1.8503555), (1.7509795, 49.931477, 1.9446597), (3.4971597, 49.726093, 3.8839893), (3.4971597, 49.726093, 3.8839893), (1.7509795, 49.931477, 1.9446597), (1.6468042, 49.931477, 2.033634), (3.2890947, 49.726093, 4.0616937), (3.2890947, 49.726093, 4.0616937), (1.6468042, 49.931477, 2.033634), (1.5381151, 49.931477, 2.117034), (3.0720146, 49.726093, 4.2282653), (3.0720146, 49.726093, 4.2282653), (1.5381151, 49.931477, 2.117034), (1.4252102, 49.931477, 2.1946313), (2.846514, 49.726093, 4.3832474), (2.846514, 49.726093, 4.3832474), (1.4252102, 49.931477, 2.1946313), (1.308399, 49.931477, 2.2662134), (2.6132116, 49.726093, 4.526215), (2.6132116, 49.726093, 4.526215), (1.308399, 49.931477, 2.2662134), (1.1880014, 49.931477, 2.331584), (2.3727465, 49.726093, 4.656777), (2.3727465, 49.726093, 4.656777), (1.1880014, 49.931477, 2.331584), (1.0643475, 49.931477, 2.3905637), (2.1257777, 49.726093, 4.774575), (2.1257777, 49.726093, 4.774575), (1.0643475, 49.931477, 2.3905637), (0.93777645, 49.931477, 2.4429913), (1.8729825, 49.726093, 4.8792863), (1.8729825, 49.726093, 4.8792863), (0.93777645, 49.931477, 2.4429913), (0.808635, 49.931477, 2.4887226), (1.6150535, 49.726093, 4.970624), (1.6150535, 49.726093, 4.970624), (0.808635, 49.931477, 2.4887226), (0.6772771, 49.931477, 2.5276325), (1.3526978, 49.726093, 5.048337), (1.3526978, 49.726093, 5.048337), (0.6772771, 49.931477, 2.5276325), (0.54406285, 49.931477, 2.5596144), (1.0866345, 49.726093, 5.112213), (1.0866345, 49.726093, 5.112213), (0.54406285, 49.931477, 2.5596144), (0.40935737, 49.931477, 2.5845807), (0.81759274, 49.726093, 5.1620774), (0.81759274, 49.726093, 5.1620774), (0.40935737, 49.931477, 2.5845807), (0.27352986, 49.931477, 2.6024628), (0.54631, 49.726093, 5.197792), (0.54631, 49.726093, 5.197792), (0.27352986, 49.931477, 2.6024628), (0.13695261, 49.931477, 2.6132116), (0.27352986, 49.726093, 5.2192607), (0.27352986, 49.726093, 5.2192607), (0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (3.2002612e-16, 49.726093, 5.2264233), (3.2002612e-16, 49.726093, 5.2264233), (1.6023265e-16, 49.931477, 2.616798), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.726093, 5.2192607), (-0.27352986, 49.726093, 5.2192607), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.931477, 2.6024628), (-0.54631, 49.726093, 5.197792), (-0.54631, 49.726093, 5.197792), (-0.27352986, 49.931477, 2.6024628), (-0.40935737, 49.931477, 2.5845807), (-0.81759274, 49.726093, 5.1620774), (-0.81759274, 49.726093, 5.1620774), (-0.40935737, 49.931477, 2.5845807), (-0.54406285, 49.931477, 2.5596144), (-1.0866345, 49.726093, 5.112213), (-1.0866345, 49.726093, 5.112213), (-0.54406285, 49.931477, 2.5596144), (-0.6772771, 49.931477, 2.5276325), (-1.3526978, 49.726093, 5.048337), (-1.3526978, 49.726093, 5.048337), (-0.6772771, 49.931477, 2.5276325), (-0.808635, 49.931477, 2.4887226), (-1.6150535, 49.726093, 4.970624), (-1.6150535, 49.726093, 4.970624), (-0.808635, 49.931477, 2.4887226), (-0.93777645, 49.931477, 2.4429913), (-1.8729825, 49.726093, 4.8792863), (-1.8729825, 49.726093, 4.8792863), (-0.93777645, 49.931477, 2.4429913), (-1.0643475, 49.931477, 2.3905637), (-2.1257777, 49.726093, 4.774575), (-2.1257777, 49.726093, 4.774575), (-1.0643475, 49.931477, 2.3905637), (-1.1880014, 49.931477, 2.331584), (-2.3727465, 49.726093, 4.656777), (-2.3727465, 49.726093, 4.656777), (-1.1880014, 49.931477, 2.331584), (-1.308399, 49.931477, 2.2662134), (-2.6132116, 49.726093, 4.526215), (-2.6132116, 49.726093, 4.526215), (-1.308399, 49.931477, 2.2662134), (-1.4252102, 49.931477, 2.1946313), (-2.846514, 49.726093, 4.3832474), (-2.846514, 49.726093, 4.3832474), (-1.4252102, 49.931477, 2.1946313), (-1.5381151, 49.931477, 2.117034), (-3.0720146, 49.726093, 4.2282653), (-3.0720146, 49.726093, 4.2282653), (-1.5381151, 49.931477, 2.117034), (-1.6468042, 49.931477, 2.033634), (-3.2890947, 49.726093, 4.0616937), (-3.2890947, 49.726093, 4.0616937), (-1.6468042, 49.931477, 2.033634), (-1.7509795, 49.931477, 1.9446597), (-3.4971597, 49.726093, 3.8839893), (-3.4971597, 49.726093, 3.8839893), (-1.7509795, 49.931477, 1.9446597), (-1.8503555, 49.931477, 1.8503555), (-3.6956394, 49.726093, 3.6956394), (-3.6956394, 49.726093, 3.6956394), (-1.8503555, 49.931477, 1.8503555), (-1.9446597, 49.931477, 1.7509795), (-3.8839893, 49.726093, 3.4971597), (-3.8839893, 49.726093, 3.4971597), (-1.9446597, 49.931477, 1.7509795), (-2.033634, 49.931477, 1.6468042), (-4.0616937, 49.726093, 3.2890947), (-4.0616937, 49.726093, 3.2890947), (-2.033634, 49.931477, 1.6468042), (-2.117034, 49.931477, 1.5381151), (-4.2282653, 49.726093, 3.0720146), (-4.2282653, 49.726093, 3.0720146), (-2.117034, 49.931477, 1.5381151), (-2.1946313, 49.931477, 1.4252102), (-4.3832474, 49.726093, 2.846514), (-4.3832474, 49.726093, 2.846514), (-2.1946313, 49.931477, 1.4252102), (-2.2662134, 49.931477, 1.308399), (-4.526215, 49.726093, 2.6132116), (-4.526215, 49.726093, 2.6132116), (-2.2662134, 49.931477, 1.308399), (-2.331584, 49.931477, 1.1880014), (-4.656777, 49.726093, 2.3727465), (-4.656777, 49.726093, 2.3727465), (-2.331584, 49.931477, 1.1880014), (-2.3905637, 49.931477, 1.0643475), (-4.774575, 49.726093, 2.1257777), (-4.774575, 49.726093, 2.1257777), (-2.3905637, 49.931477, 1.0643475), (-2.4429913, 49.931477, 0.93777645), (-4.8792863, 49.726093, 1.8729825), (-4.8792863, 49.726093, 1.8729825), (-2.4429913, 49.931477, 0.93777645), (-2.4887226, 49.931477, 0.808635), (-4.970624, 49.726093, 1.6150535), (-4.970624, 49.726093, 1.6150535), (-2.4887226, 49.931477, 0.808635), (-2.5276325, 49.931477, 0.6772771), (-5.048337, 49.726093, 1.3526978), (-5.048337, 49.726093, 1.3526978), (-2.5276325, 49.931477, 0.6772771), (-2.5596144, 49.931477, 0.54406285), (-5.112213, 49.726093, 1.0866345), (-5.112213, 49.726093, 1.0866345), (-2.5596144, 49.931477, 0.54406285), (-2.5845807, 49.931477, 0.40935737), (-5.1620774, 49.726093, 0.81759274), (-5.1620774, 49.726093, 0.81759274), (-2.5845807, 49.931477, 0.40935737), (-2.6024628, 49.931477, 0.27352986), (-5.197792, 49.726093, 0.54631), (-5.197792, 49.726093, 0.54631), (-2.6024628, 49.931477, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-5.2192607, 49.726093, 0.27352986), (-5.2192607, 49.726093, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-2.616798, 49.931477, 3.204653e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, -0.13695261), (-5.2192607, 49.726093, -0.27352986), (-5.2192607, 49.726093, -0.27352986), (-2.6132116, 49.931477, -0.13695261), (-2.6024628, 49.931477, -0.27352986), (-5.197792, 49.726093, -0.54631), (-5.197792, 49.726093, -0.54631), (-2.6024628, 49.931477, -0.27352986), (-2.5845807, 49.931477, -0.40935737), (-5.1620774, 49.726093, -0.81759274), (-5.1620774, 49.726093, -0.81759274), (-2.5845807, 49.931477, -0.40935737), (-2.5596144, 49.931477, -0.54406285), (-5.112213, 49.726093, -1.0866345), (-5.112213, 49.726093, -1.0866345), (-2.5596144, 49.931477, -0.54406285), (-2.5276325, 49.931477, -0.6772771), (-5.048337, 49.726093, -1.3526978), (-5.048337, 49.726093, -1.3526978), (-2.5276325, 49.931477, -0.6772771), (-2.4887226, 49.931477, -0.808635), (-4.970624, 49.726093, -1.6150535), (-4.970624, 49.726093, -1.6150535), (-2.4887226, 49.931477, -0.808635), (-2.4429913, 49.931477, -0.93777645), (-4.8792863, 49.726093, -1.8729825), (-4.8792863, 49.726093, -1.8729825), (-2.4429913, 49.931477, -0.93777645), (-2.3905637, 49.931477, -1.0643475), (-4.774575, 49.726093, -2.1257777), (-4.774575, 49.726093, -2.1257777), (-2.3905637, 49.931477, -1.0643475), (-2.331584, 49.931477, -1.1880014), (-4.656777, 49.726093, -2.3727465), (-4.656777, 49.726093, -2.3727465), (-2.331584, 49.931477, -1.1880014), (-2.2662134, 49.931477, -1.308399), (-4.526215, 49.726093, -2.6132116), (-4.526215, 49.726093, -2.6132116), (-2.2662134, 49.931477, -1.308399), (-2.1946313, 49.931477, -1.4252102), (-4.3832474, 49.726093, -2.846514), (-4.3832474, 49.726093, -2.846514), (-2.1946313, 49.931477, -1.4252102), (-2.117034, 49.931477, -1.5381151), (-4.2282653, 49.726093, -3.0720146), (-4.2282653, 49.726093, -3.0720146), (-2.117034, 49.931477, -1.5381151), (-2.033634, 49.931477, -1.6468042), (-4.0616937, 49.726093, -3.2890947), (-4.0616937, 49.726093, -3.2890947), (-2.033634, 49.931477, -1.6468042), (-1.9446597, 49.931477, -1.7509795), (-3.8839893, 49.726093, -3.4971597), (-3.8839893, 49.726093, -3.4971597), (-1.9446597, 49.931477, -1.7509795), (-1.8503555, 49.931477, -1.8503555), (-3.6956394, 49.726093, -3.6956394), (-3.6956394, 49.726093, -3.6956394), (-1.8503555, 49.931477, -1.8503555), (-1.7509795, 49.931477, -1.9446597), (-3.4971597, 49.726093, -3.8839893), (-3.4971597, 49.726093, -3.8839893), (-1.7509795, 49.931477, -1.9446597), (-1.6468042, 49.931477, -2.033634), (-3.2890947, 49.726093, -4.0616937), (-3.2890947, 49.726093, -4.0616937), (-1.6468042, 49.931477, -2.033634), (-1.5381151, 49.931477, -2.117034), (-3.0720146, 49.726093, -4.2282653), (-3.0720146, 49.726093, -4.2282653), (-1.5381151, 49.931477, -2.117034), (-1.4252102, 49.931477, -2.1946313), (-2.846514, 49.726093, -4.3832474), (-2.846514, 49.726093, -4.3832474), (-1.4252102, 49.931477, -2.1946313), (-1.308399, 49.931477, -2.2662134), (-2.6132116, 49.726093, -4.526215), (-2.6132116, 49.726093, -4.526215), (-1.308399, 49.931477, -2.2662134), (-1.1880014, 49.931477, -2.331584), (-2.3727465, 49.726093, -4.656777), (-2.3727465, 49.726093, -4.656777), (-1.1880014, 49.931477, -2.331584), (-1.0643475, 49.931477, -2.3905637), (-2.1257777, 49.726093, -4.774575), (-2.1257777, 49.726093, -4.774575), (-1.0643475, 49.931477, -2.3905637), (-0.93777645, 49.931477, -2.4429913), (-1.8729825, 49.726093, -4.8792863), (-1.8729825, 49.726093, -4.8792863), (-0.93777645, 49.931477, -2.4429913), (-0.808635, 49.931477, -2.4887226), (-1.6150535, 49.726093, -4.970624), (-1.6150535, 49.726093, -4.970624), (-0.808635, 49.931477, -2.4887226), (-0.6772771, 49.931477, -2.5276325), (-1.3526978, 49.726093, -5.048337), (-1.3526978, 49.726093, -5.048337), (-0.6772771, 49.931477, -2.5276325), (-0.54406285, 49.931477, -2.5596144), (-1.0866345, 49.726093, -5.112213), (-1.0866345, 49.726093, -5.112213), (-0.54406285, 49.931477, -2.5596144), (-0.40935737, 49.931477, -2.5845807), (-0.81759274, 49.726093, -5.1620774), (-0.81759274, 49.726093, -5.1620774), (-0.40935737, 49.931477, -2.5845807), (-0.27352986, 49.931477, -2.6024628), (-0.54631, 49.726093, -5.197792), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.931477, -2.6024628), (-0.13695261, 49.931477, -2.6132116), (-0.27352986, 49.726093, -5.2192607), (-0.27352986, 49.726093, -5.2192607), (-0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (-9.600784e-16, 49.726093, -5.2264233), (-9.600784e-16, 49.726093, -5.2264233), (-4.80698e-16, 49.931477, -2.616798), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.726093, -5.2192607), (0.27352986, 49.726093, -5.2192607), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.931477, -2.6024628), (0.54631, 49.726093, -5.197792), (0.54631, 49.726093, -5.197792), (0.27352986, 49.931477, -2.6024628), (0.40935737, 49.931477, -2.5845807), (0.81759274, 49.726093, -5.1620774), (0.81759274, 49.726093, -5.1620774), (0.40935737, 49.931477, -2.5845807), (0.54406285, 49.931477, -2.5596144), (1.0866345, 49.726093, -5.112213), (1.0866345, 49.726093, -5.112213), (0.54406285, 49.931477, -2.5596144), (0.6772771, 49.931477, -2.5276325), (1.3526978, 49.726093, -5.048337), (1.3526978, 49.726093, -5.048337), (0.6772771, 49.931477, -2.5276325), (0.808635, 49.931477, -2.4887226), (1.6150535, 49.726093, -4.970624), (1.6150535, 49.726093, -4.970624), (0.808635, 49.931477, -2.4887226), (0.93777645, 49.931477, -2.4429913), (1.8729825, 49.726093, -4.8792863), (1.8729825, 49.726093, -4.8792863), (0.93777645, 49.931477, -2.4429913), (1.0643475, 49.931477, -2.3905637), (2.1257777, 49.726093, -4.774575), (2.1257777, 49.726093, -4.774575), (1.0643475, 49.931477, -2.3905637), (1.1880014, 49.931477, -2.331584), (2.3727465, 49.726093, -4.656777), (2.3727465, 49.726093, -4.656777), (1.1880014, 49.931477, -2.331584), (1.308399, 49.931477, -2.2662134), (2.6132116, 49.726093, -4.526215), (2.6132116, 49.726093, -4.526215), (1.308399, 49.931477, -2.2662134), (1.4252102, 49.931477, -2.1946313), (2.846514, 49.726093, -4.3832474), (2.846514, 49.726093, -4.3832474), (1.4252102, 49.931477, -2.1946313), (1.5381151, 49.931477, -2.117034), (3.0720146, 49.726093, -4.2282653), (3.0720146, 49.726093, -4.2282653), (1.5381151, 49.931477, -2.117034), (1.6468042, 49.931477, -2.033634), (3.2890947, 49.726093, -4.0616937), (3.2890947, 49.726093, -4.0616937), (1.6468042, 49.931477, -2.033634), (1.7509795, 49.931477, -1.9446597), (3.4971597, 49.726093, -3.8839893), (3.4971597, 49.726093, -3.8839893), (1.7509795, 49.931477, -1.9446597), (1.8503555, 49.931477, -1.8503555), (3.6956394, 49.726093, -3.6956394), (3.6956394, 49.726093, -3.6956394), (1.8503555, 49.931477, -1.8503555), (1.9446597, 49.931477, -1.7509795), (3.8839893, 49.726093, -3.4971597), (3.8839893, 49.726093, -3.4971597), (1.9446597, 49.931477, -1.7509795), (2.033634, 49.931477, -1.6468042), (4.0616937, 49.726093, -3.2890947), (4.0616937, 49.726093, -3.2890947), (2.033634, 49.931477, -1.6468042), (2.117034, 49.931477, -1.5381151), (4.2282653, 49.726093, -3.0720146), (4.2282653, 49.726093, -3.0720146), (2.117034, 49.931477, -1.5381151), (2.1946313, 49.931477, -1.4252102), (4.3832474, 49.726093, -2.846514), (4.3832474, 49.726093, -2.846514), (2.1946313, 49.931477, -1.4252102), (2.2662134, 49.931477, -1.308399), (4.526215, 49.726093, -2.6132116), (4.526215, 49.726093, -2.6132116), (2.2662134, 49.931477, -1.308399), (2.331584, 49.931477, -1.1880014), (4.656777, 49.726093, -2.3727465), (4.656777, 49.726093, -2.3727465), (2.331584, 49.931477, -1.1880014), (2.3905637, 49.931477, -1.0643475), (4.774575, 49.726093, -2.1257777), (4.774575, 49.726093, -2.1257777), (2.3905637, 49.931477, -1.0643475), (2.4429913, 49.931477, -0.93777645), (4.8792863, 49.726093, -1.8729825), (4.8792863, 49.726093, -1.8729825), (2.4429913, 49.931477, -0.93777645), (2.4887226, 49.931477, -0.808635), (4.970624, 49.726093, -1.6150535), (4.970624, 49.726093, -1.6150535), (2.4887226, 49.931477, -0.808635), (2.5276325, 49.931477, -0.6772771), (5.048337, 49.726093, -1.3526978), (5.048337, 49.726093, -1.3526978), (2.5276325, 49.931477, -0.6772771), (2.5596144, 49.931477, -0.54406285), (5.112213, 49.726093, -1.0866345), (5.112213, 49.726093, -1.0866345), (2.5596144, 49.931477, -0.54406285), (2.5845807, 49.931477, -0.40935737), (5.1620774, 49.726093, -0.81759274), (5.1620774, 49.726093, -0.81759274), (2.5845807, 49.931477, -0.40935737), (2.6024628, 49.931477, -0.27352986), (5.197792, 49.726093, -0.54631), (5.197792, 49.726093, -0.54631), (2.6024628, 49.931477, -0.27352986), (2.6132116, 49.931477, -0.13695261), (5.2192607, 49.726093, -0.27352986), (5.2192607, 49.726093, -0.27352986), (2.6132116, 49.931477, -0.13695261), (2.616798, 49.931477, 0), (5.2264233, 49.726093, 0), (0, 50, 0), (2.6132116, 49.931477, 0.13695261), (2.616798, 49.931477, 0), (0, 50, 0), (2.6024628, 49.931477, 0.27352986), (2.6132116, 49.931477, 0.13695261), (0, 50, 0), (2.5845807, 49.931477, 0.40935737), (2.6024628, 49.931477, 0.27352986), (0, 50, 0), (2.5596144, 49.931477, 0.54406285), (2.5845807, 49.931477, 0.40935737), (0, 50, 0), (2.5276325, 49.931477, 0.6772771), (2.5596144, 49.931477, 0.54406285), (0, 50, 0), (2.4887226, 49.931477, 0.808635), (2.5276325, 49.931477, 0.6772771), (0, 50, 0), (2.4429913, 49.931477, 0.93777645), (2.4887226, 49.931477, 0.808635), (0, 50, 0), (2.3905637, 49.931477, 1.0643475), (2.4429913, 49.931477, 0.93777645), (0, 50, 0), (2.331584, 49.931477, 1.1880014), (2.3905637, 49.931477, 1.0643475), (0, 50, 0), (2.2662134, 49.931477, 1.308399), (2.331584, 49.931477, 1.1880014), (0, 50, 0), (2.1946313, 49.931477, 1.4252102), (2.2662134, 49.931477, 1.308399), (0, 50, 0), (2.117034, 49.931477, 1.5381151), (2.1946313, 49.931477, 1.4252102), (0, 50, 0), (2.033634, 49.931477, 1.6468042), (2.117034, 49.931477, 1.5381151), (0, 50, 0), (1.9446597, 49.931477, 1.7509795), (2.033634, 49.931477, 1.6468042), (0, 50, 0), (1.8503555, 49.931477, 1.8503555), (1.9446597, 49.931477, 1.7509795), (0, 50, 0), (1.7509795, 49.931477, 1.9446597), (1.8503555, 49.931477, 1.8503555), (0, 50, 0), (1.6468042, 49.931477, 2.033634), (1.7509795, 49.931477, 1.9446597), (0, 50, 0), (1.5381151, 49.931477, 2.117034), (1.6468042, 49.931477, 2.033634), (0, 50, 0), (1.4252102, 49.931477, 2.1946313), (1.5381151, 49.931477, 2.117034), (0, 50, 0), (1.308399, 49.931477, 2.2662134), (1.4252102, 49.931477, 2.1946313), (0, 50, 0), (1.1880014, 49.931477, 2.331584), (1.308399, 49.931477, 2.2662134), (0, 50, 0), (1.0643475, 49.931477, 2.3905637), (1.1880014, 49.931477, 2.331584), (0, 50, 0), (0.93777645, 49.931477, 2.4429913), (1.0643475, 49.931477, 2.3905637), (0, 50, 0), (0.808635, 49.931477, 2.4887226), (0.93777645, 49.931477, 2.4429913), (0, 50, 0), (0.6772771, 49.931477, 2.5276325), (0.808635, 49.931477, 2.4887226), (0, 50, 0), (0.54406285, 49.931477, 2.5596144), (0.6772771, 49.931477, 2.5276325), (0, 50, 0), (0.40935737, 49.931477, 2.5845807), (0.54406285, 49.931477, 2.5596144), (0, 50, 0), (0.27352986, 49.931477, 2.6024628), (0.40935737, 49.931477, 2.5845807), (0, 50, 0), (0.13695261, 49.931477, 2.6132116), (0.27352986, 49.931477, 2.6024628), (0, 50, 0), (1.6023265e-16, 49.931477, 2.616798), (0.13695261, 49.931477, 2.6132116), (0, 50, 0), (-0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (0, 50, 0), (-0.27352986, 49.931477, 2.6024628), (-0.13695261, 49.931477, 2.6132116), (0, 50, 0), (-0.40935737, 49.931477, 2.5845807), (-0.27352986, 49.931477, 2.6024628), (0, 50, 0), (-0.54406285, 49.931477, 2.5596144), (-0.40935737, 49.931477, 2.5845807), (0, 50, 0), (-0.6772771, 49.931477, 2.5276325), (-0.54406285, 49.931477, 2.5596144), (0, 50, 0), (-0.808635, 49.931477, 2.4887226), (-0.6772771, 49.931477, 2.5276325), (0, 50, 0), (-0.93777645, 49.931477, 2.4429913), (-0.808635, 49.931477, 2.4887226), (0, 50, 0), (-1.0643475, 49.931477, 2.3905637), (-0.93777645, 49.931477, 2.4429913), (0, 50, 0), (-1.1880014, 49.931477, 2.331584), (-1.0643475, 49.931477, 2.3905637), (0, 50, 0), (-1.308399, 49.931477, 2.2662134), (-1.1880014, 49.931477, 2.331584), (0, 50, 0), (-1.4252102, 49.931477, 2.1946313), (-1.308399, 49.931477, 2.2662134), (0, 50, 0), (-1.5381151, 49.931477, 2.117034), (-1.4252102, 49.931477, 2.1946313), (0, 50, 0), (-1.6468042, 49.931477, 2.033634), (-1.5381151, 49.931477, 2.117034), (0, 50, 0), (-1.7509795, 49.931477, 1.9446597), (-1.6468042, 49.931477, 2.033634), (0, 50, 0), (-1.8503555, 49.931477, 1.8503555), (-1.7509795, 49.931477, 1.9446597), (0, 50, 0), (-1.9446597, 49.931477, 1.7509795), (-1.8503555, 49.931477, 1.8503555), (0, 50, 0), (-2.033634, 49.931477, 1.6468042), (-1.9446597, 49.931477, 1.7509795), (0, 50, 0), (-2.117034, 49.931477, 1.5381151), (-2.033634, 49.931477, 1.6468042), (0, 50, 0), (-2.1946313, 49.931477, 1.4252102), (-2.117034, 49.931477, 1.5381151), (0, 50, 0), (-2.2662134, 49.931477, 1.308399), (-2.1946313, 49.931477, 1.4252102), (0, 50, 0), (-2.331584, 49.931477, 1.1880014), (-2.2662134, 49.931477, 1.308399), (0, 50, 0), (-2.3905637, 49.931477, 1.0643475), (-2.331584, 49.931477, 1.1880014), (0, 50, 0), (-2.4429913, 49.931477, 0.93777645), (-2.3905637, 49.931477, 1.0643475), (0, 50, 0), (-2.4887226, 49.931477, 0.808635), (-2.4429913, 49.931477, 0.93777645), (0, 50, 0), (-2.5276325, 49.931477, 0.6772771), (-2.4887226, 49.931477, 0.808635), (0, 50, 0), (-2.5596144, 49.931477, 0.54406285), (-2.5276325, 49.931477, 0.6772771), (0, 50, 0), (-2.5845807, 49.931477, 0.40935737), (-2.5596144, 49.931477, 0.54406285), (0, 50, 0), (-2.6024628, 49.931477, 0.27352986), (-2.5845807, 49.931477, 0.40935737), (0, 50, 0), (-2.6132116, 49.931477, 0.13695261), (-2.6024628, 49.931477, 0.27352986), (0, 50, 0), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, 0.13695261), (0, 50, 0), (-2.6132116, 49.931477, -0.13695261), (-2.616798, 49.931477, 3.204653e-16), (0, 50, 0), (-2.6024628, 49.931477, -0.27352986), (-2.6132116, 49.931477, -0.13695261), (0, 50, 0), (-2.5845807, 49.931477, -0.40935737), (-2.6024628, 49.931477, -0.27352986), (0, 50, 0), (-2.5596144, 49.931477, -0.54406285), (-2.5845807, 49.931477, -0.40935737), (0, 50, 0), (-2.5276325, 49.931477, -0.6772771), (-2.5596144, 49.931477, -0.54406285), (0, 50, 0), (-2.4887226, 49.931477, -0.808635), (-2.5276325, 49.931477, -0.6772771), (0, 50, 0), (-2.4429913, 49.931477, -0.93777645), (-2.4887226, 49.931477, -0.808635), (0, 50, 0), (-2.3905637, 49.931477, -1.0643475), (-2.4429913, 49.931477, -0.93777645), (0, 50, 0), (-2.331584, 49.931477, -1.1880014), (-2.3905637, 49.931477, -1.0643475), (0, 50, 0), (-2.2662134, 49.931477, -1.308399), (-2.331584, 49.931477, -1.1880014), (0, 50, 0), (-2.1946313, 49.931477, -1.4252102), (-2.2662134, 49.931477, -1.308399), (0, 50, 0), (-2.117034, 49.931477, -1.5381151), (-2.1946313, 49.931477, -1.4252102), (0, 50, 0), (-2.033634, 49.931477, -1.6468042), (-2.117034, 49.931477, -1.5381151), (0, 50, 0), (-1.9446597, 49.931477, -1.7509795), (-2.033634, 49.931477, -1.6468042), (0, 50, 0), (-1.8503555, 49.931477, -1.8503555), (-1.9446597, 49.931477, -1.7509795), (0, 50, 0), (-1.7509795, 49.931477, -1.9446597), (-1.8503555, 49.931477, -1.8503555), (0, 50, 0), (-1.6468042, 49.931477, -2.033634), (-1.7509795, 49.931477, -1.9446597), (0, 50, 0), (-1.5381151, 49.931477, -2.117034), (-1.6468042, 49.931477, -2.033634), (0, 50, 0), (-1.4252102, 49.931477, -2.1946313), (-1.5381151, 49.931477, -2.117034), (0, 50, 0), (-1.308399, 49.931477, -2.2662134), (-1.4252102, 49.931477, -2.1946313), (0, 50, 0), (-1.1880014, 49.931477, -2.331584), (-1.308399, 49.931477, -2.2662134), (0, 50, 0), (-1.0643475, 49.931477, -2.3905637), (-1.1880014, 49.931477, -2.331584), (0, 50, 0), (-0.93777645, 49.931477, -2.4429913), (-1.0643475, 49.931477, -2.3905637), (0, 50, 0), (-0.808635, 49.931477, -2.4887226), (-0.93777645, 49.931477, -2.4429913), (0, 50, 0), (-0.6772771, 49.931477, -2.5276325), (-0.808635, 49.931477, -2.4887226), (0, 50, 0), (-0.54406285, 49.931477, -2.5596144), (-0.6772771, 49.931477, -2.5276325), (0, 50, 0), (-0.40935737, 49.931477, -2.5845807), (-0.54406285, 49.931477, -2.5596144), (0, 50, 0), (-0.27352986, 49.931477, -2.6024628), (-0.40935737, 49.931477, -2.5845807), (0, 50, 0), (-0.13695261, 49.931477, -2.6132116), (-0.27352986, 49.931477, -2.6024628), (0, 50, 0), (-4.80698e-16, 49.931477, -2.616798), (-0.13695261, 49.931477, -2.6132116), (0, 50, 0), (0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (0, 50, 0), (0.27352986, 49.931477, -2.6024628), (0.13695261, 49.931477, -2.6132116), (0, 50, 0), (0.40935737, 49.931477, -2.5845807), (0.27352986, 49.931477, -2.6024628), (0, 50, 0), (0.54406285, 49.931477, -2.5596144), (0.40935737, 49.931477, -2.5845807), (0, 50, 0), (0.6772771, 49.931477, -2.5276325), (0.54406285, 49.931477, -2.5596144), (0, 50, 0), (0.808635, 49.931477, -2.4887226), (0.6772771, 49.931477, -2.5276325), (0, 50, 0), (0.93777645, 49.931477, -2.4429913), (0.808635, 49.931477, -2.4887226), (0, 50, 0), (1.0643475, 49.931477, -2.3905637), (0.93777645, 49.931477, -2.4429913), (0, 50, 0), (1.1880014, 49.931477, -2.331584), (1.0643475, 49.931477, -2.3905637), (0, 50, 0), (1.308399, 49.931477, -2.2662134), (1.1880014, 49.931477, -2.331584), (0, 50, 0), (1.4252102, 49.931477, -2.1946313), (1.308399, 49.931477, -2.2662134), (0, 50, 0), (1.5381151, 49.931477, -2.117034), (1.4252102, 49.931477, -2.1946313), (0, 50, 0), (1.6468042, 49.931477, -2.033634), (1.5381151, 49.931477, -2.117034), (0, 50, 0), (1.7509795, 49.931477, -1.9446597), (1.6468042, 49.931477, -2.033634), (0, 50, 0), (1.8503555, 49.931477, -1.8503555), (1.7509795, 49.931477, -1.9446597), (0, 50, 0), (1.9446597, 49.931477, -1.7509795), (1.8503555, 49.931477, -1.8503555), (0, 50, 0), (2.033634, 49.931477, -1.6468042), (1.9446597, 49.931477, -1.7509795), (0, 50, 0), (2.117034, 49.931477, -1.5381151), (2.033634, 49.931477, -1.6468042), (0, 50, 0), (2.1946313, 49.931477, -1.4252102), (2.117034, 49.931477, -1.5381151), (0, 50, 0), (2.2662134, 49.931477, -1.308399), (2.1946313, 49.931477, -1.4252102), (0, 50, 0), (2.331584, 49.931477, -1.1880014), (2.2662134, 49.931477, -1.308399), (0, 50, 0), (2.3905637, 49.931477, -1.0643475), (2.331584, 49.931477, -1.1880014), (0, 50, 0), (2.4429913, 49.931477, -0.93777645), (2.3905637, 49.931477, -1.0643475), (0, 50, 0), (2.4887226, 49.931477, -0.808635), (2.4429913, 49.931477, -0.93777645), (0, 50, 0), (2.5276325, 49.931477, -0.6772771), (2.4887226, 49.931477, -0.808635), (0, 50, 0), (2.5596144, 49.931477, -0.54406285), (2.5276325, 49.931477, -0.6772771), (0, 50, 0), (2.5845807, 49.931477, -0.40935737), (2.5596144, 49.931477, -0.54406285), (0, 50, 0), (2.6024628, 49.931477, -0.27352986), (2.5845807, 49.931477, -0.40935737), (0, 50, 0), (2.6132116, 49.931477, -0.13695261), (2.6024628, 49.931477, -0.27352986), (0, 50, 0), (2.616798, 49.931477, 0), (2.6132116, 49.931477, -0.13695261)] (
interpolation = "faceVarying"
)
point3f[] points = [(0, -50, 0), (2.616798, -49.931477, 0), (2.6132116, -49.931477, 0.13695261), (2.6024628, -49.931477, 0.27352986), (2.5845807, -49.931477, 0.40935737), (2.5596144, -49.931477, 0.54406285), (2.5276325, -49.931477, 0.6772771), (2.4887226, -49.931477, 0.808635), (2.4429913, -49.931477, 0.93777645), (2.3905637, -49.931477, 1.0643475), (2.331584, -49.931477, 1.1880014), (2.2662134, -49.931477, 1.308399), (2.1946313, -49.931477, 1.4252102), (2.117034, -49.931477, 1.5381151), (2.033634, -49.931477, 1.6468042), (1.9446597, -49.931477, 1.7509795), (1.8503555, -49.931477, 1.8503555), (1.7509795, -49.931477, 1.9446597), (1.6468042, -49.931477, 2.033634), (1.5381151, -49.931477, 2.117034), (1.4252102, -49.931477, 2.1946313), (1.308399, -49.931477, 2.2662134), (1.1880014, -49.931477, 2.331584), (1.0643475, -49.931477, 2.3905637), (0.93777645, -49.931477, 2.4429913), (0.808635, -49.931477, 2.4887226), (0.6772771, -49.931477, 2.5276325), (0.54406285, -49.931477, 2.5596144), (0.40935737, -49.931477, 2.5845807), (0.27352986, -49.931477, 2.6024628), (0.13695261, -49.931477, 2.6132116), (1.6023265e-16, -49.931477, 2.616798), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.931477, 2.6024628), (-0.40935737, -49.931477, 2.5845807), (-0.54406285, -49.931477, 2.5596144), (-0.6772771, -49.931477, 2.5276325), (-0.808635, -49.931477, 2.4887226), (-0.93777645, -49.931477, 2.4429913), (-1.0643475, -49.931477, 2.3905637), (-1.1880014, -49.931477, 2.331584), (-1.308399, -49.931477, 2.2662134), (-1.4252102, -49.931477, 2.1946313), (-1.5381151, -49.931477, 2.117034), (-1.6468042, -49.931477, 2.033634), (-1.7509795, -49.931477, 1.9446597), (-1.8503555, -49.931477, 1.8503555), (-1.9446597, -49.931477, 1.7509795), (-2.033634, -49.931477, 1.6468042), (-2.117034, -49.931477, 1.5381151), (-2.1946313, -49.931477, 1.4252102), (-2.2662134, -49.931477, 1.308399), (-2.331584, -49.931477, 1.1880014), (-2.3905637, -49.931477, 1.0643475), (-2.4429913, -49.931477, 0.93777645), (-2.4887226, -49.931477, 0.808635), (-2.5276325, -49.931477, 0.6772771), (-2.5596144, -49.931477, 0.54406285), (-2.5845807, -49.931477, 0.40935737), (-2.6024628, -49.931477, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (-2.616798, -49.931477, 3.204653e-16), (-2.6132116, -49.931477, -0.13695261), (-2.6024628, -49.931477, -0.27352986), (-2.5845807, -49.931477, -0.40935737), (-2.5596144, -49.931477, -0.54406285), (-2.5276325, -49.931477, -0.6772771), (-2.4887226, -49.931477, -0.808635), (-2.4429913, -49.931477, -0.93777645), (-2.3905637, -49.931477, -1.0643475), (-2.331584, -49.931477, -1.1880014), (-2.2662134, -49.931477, -1.308399), (-2.1946313, -49.931477, -1.4252102), (-2.117034, -49.931477, -1.5381151), (-2.033634, -49.931477, -1.6468042), (-1.9446597, -49.931477, -1.7509795), (-1.8503555, -49.931477, -1.8503555), (-1.7509795, -49.931477, -1.9446597), (-1.6468042, -49.931477, -2.033634), (-1.5381151, -49.931477, -2.117034), (-1.4252102, -49.931477, -2.1946313), (-1.308399, -49.931477, -2.2662134), (-1.1880014, -49.931477, -2.331584), (-1.0643475, -49.931477, -2.3905637), (-0.93777645, -49.931477, -2.4429913), (-0.808635, -49.931477, -2.4887226), (-0.6772771, -49.931477, -2.5276325), (-0.54406285, -49.931477, -2.5596144), (-0.40935737, -49.931477, -2.5845807), (-0.27352986, -49.931477, -2.6024628), (-0.13695261, -49.931477, -2.6132116), (-4.80698e-16, -49.931477, -2.616798), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.931477, -2.6024628), (0.40935737, -49.931477, -2.5845807), (0.54406285, -49.931477, -2.5596144), (0.6772771, -49.931477, -2.5276325), (0.808635, -49.931477, -2.4887226), (0.93777645, -49.931477, -2.4429913), (1.0643475, -49.931477, -2.3905637), (1.1880014, -49.931477, -2.331584), (1.308399, -49.931477, -2.2662134), (1.4252102, -49.931477, -2.1946313), (1.5381151, -49.931477, -2.117034), (1.6468042, -49.931477, -2.033634), (1.7509795, -49.931477, -1.9446597), (1.8503555, -49.931477, -1.8503555), (1.9446597, -49.931477, -1.7509795), (2.033634, -49.931477, -1.6468042), (2.117034, -49.931477, -1.5381151), (2.1946313, -49.931477, -1.4252102), (2.2662134, -49.931477, -1.308399), (2.331584, -49.931477, -1.1880014), (2.3905637, -49.931477, -1.0643475), (2.4429913, -49.931477, -0.93777645), (2.4887226, -49.931477, -0.808635), (2.5276325, -49.931477, -0.6772771), (2.5596144, -49.931477, -0.54406285), (2.5845807, -49.931477, -0.40935737), (2.6024628, -49.931477, -0.27352986), (2.6132116, -49.931477, -0.13695261), (5.2264233, -49.726093, 0), (5.2192607, -49.726093, 0.27352986), (5.197792, -49.726093, 0.54631), (5.1620774, -49.726093, 0.81759274), (5.112213, -49.726093, 1.0866345), (5.048337, -49.726093, 1.3526978), (4.970624, -49.726093, 1.6150535), (4.8792863, -49.726093, 1.8729825), (4.774575, -49.726093, 2.1257777), (4.656777, -49.726093, 2.3727465), (4.526215, -49.726093, 2.6132116), (4.3832474, -49.726093, 2.846514), (4.2282653, -49.726093, 3.0720146), (4.0616937, -49.726093, 3.2890947), (3.8839893, -49.726093, 3.4971597), (3.6956394, -49.726093, 3.6956394), (3.4971597, -49.726093, 3.8839893), (3.2890947, -49.726093, 4.0616937), (3.0720146, -49.726093, 4.2282653), (2.846514, -49.726093, 4.3832474), (2.6132116, -49.726093, 4.526215), (2.3727465, -49.726093, 4.656777), (2.1257777, -49.726093, 4.774575), (1.8729825, -49.726093, 4.8792863), (1.6150535, -49.726093, 4.970624), (1.3526978, -49.726093, 5.048337), (1.0866345, -49.726093, 5.112213), (0.81759274, -49.726093, 5.1620774), (0.54631, -49.726093, 5.197792), (0.27352986, -49.726093, 5.2192607), (3.2002612e-16, -49.726093, 5.2264233), (-0.27352986, -49.726093, 5.2192607), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.726093, 5.1620774), (-1.0866345, -49.726093, 5.112213), (-1.3526978, -49.726093, 5.048337), (-1.6150535, -49.726093, 4.970624), (-1.8729825, -49.726093, 4.8792863), (-2.1257777, -49.726093, 4.774575), (-2.3727465, -49.726093, 4.656777), (-2.6132116, -49.726093, 4.526215), (-2.846514, -49.726093, 4.3832474), (-3.0720146, -49.726093, 4.2282653), (-3.2890947, -49.726093, 4.0616937), (-3.4971597, -49.726093, 3.8839893), (-3.6956394, -49.726093, 3.6956394), (-3.8839893, -49.726093, 3.4971597), (-4.0616937, -49.726093, 3.2890947), (-4.2282653, -49.726093, 3.0720146), (-4.3832474, -49.726093, 2.846514), (-4.526215, -49.726093, 2.6132116), (-4.656777, -49.726093, 2.3727465), (-4.774575, -49.726093, 2.1257777), (-4.8792863, -49.726093, 1.8729825), (-4.970624, -49.726093, 1.6150535), (-5.048337, -49.726093, 1.3526978), (-5.112213, -49.726093, 1.0866345), (-5.1620774, -49.726093, 0.81759274), (-5.197792, -49.726093, 0.54631), (-5.2192607, -49.726093, 0.27352986), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2192607, -49.726093, -0.27352986), (-5.197792, -49.726093, -0.54631), (-5.1620774, -49.726093, -0.81759274), (-5.112213, -49.726093, -1.0866345), (-5.048337, -49.726093, -1.3526978), (-4.970624, -49.726093, -1.6150535), (-4.8792863, -49.726093, -1.8729825), (-4.774575, -49.726093, -2.1257777), (-4.656777, -49.726093, -2.3727465), (-4.526215, -49.726093, -2.6132116), (-4.3832474, -49.726093, -2.846514), (-4.2282653, -49.726093, -3.0720146), (-4.0616937, -49.726093, -3.2890947), (-3.8839893, -49.726093, -3.4971597), (-3.6956394, -49.726093, -3.6956394), (-3.4971597, -49.726093, -3.8839893), (-3.2890947, -49.726093, -4.0616937), (-3.0720146, -49.726093, -4.2282653), (-2.846514, -49.726093, -4.3832474), (-2.6132116, -49.726093, -4.526215), (-2.3727465, -49.726093, -4.656777), (-2.1257777, -49.726093, -4.774575), (-1.8729825, -49.726093, -4.8792863), (-1.6150535, -49.726093, -4.970624), (-1.3526978, -49.726093, -5.048337), (-1.0866345, -49.726093, -5.112213), (-0.81759274, -49.726093, -5.1620774), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.726093, -5.2192607), (-9.600784e-16, -49.726093, -5.2264233), (0.27352986, -49.726093, -5.2192607), (0.54631, -49.726093, -5.197792), (0.81759274, -49.726093, -5.1620774), (1.0866345, -49.726093, -5.112213), (1.3526978, -49.726093, -5.048337), (1.6150535, -49.726093, -4.970624), (1.8729825, -49.726093, -4.8792863), (2.1257777, -49.726093, -4.774575), (2.3727465, -49.726093, -4.656777), (2.6132116, -49.726093, -4.526215), (2.846514, -49.726093, -4.3832474), (3.0720146, -49.726093, -4.2282653), (3.2890947, -49.726093, -4.0616937), (3.4971597, -49.726093, -3.8839893), (3.6956394, -49.726093, -3.6956394), (3.8839893, -49.726093, -3.4971597), (4.0616937, -49.726093, -3.2890947), (4.2282653, -49.726093, -3.0720146), (4.3832474, -49.726093, -2.846514), (4.526215, -49.726093, -2.6132116), (4.656777, -49.726093, -2.3727465), (4.774575, -49.726093, -2.1257777), (4.8792863, -49.726093, -1.8729825), (4.970624, -49.726093, -1.6150535), (5.048337, -49.726093, -1.3526978), (5.112213, -49.726093, -1.0866345), (5.1620774, -49.726093, -0.81759274), (5.197792, -49.726093, -0.54631), (5.2192607, -49.726093, -0.27352986), (7.8217235, -49.38442, 0), (7.8110037, -49.38442, 0.40935737), (7.778875, -49.38442, 0.81759274), (7.725425, -49.38442, 1.223587), (7.6507998, -49.38442, 1.6262277), (7.5552044, -49.38442, 2.024411), (7.438901, -49.38442, 2.4170454), (7.302208, -49.38442, 2.8030548), (7.1454997, -49.38442, 3.1813815), (6.9692063, -49.38442, 3.550988), (6.773811, -49.38442, 3.9108617), (6.5598493, -49.38442, 4.260016), (6.327907, -49.38442, 4.5974936), (6.0786204, -49.38442, 4.92237), (5.812673, -49.38442, 5.2337546), (5.5307937, -49.38442, 5.5307937), (5.2337546, -49.38442, 5.812673), (4.92237, -49.38442, 6.0786204), (4.5974936, -49.38442, 6.327907), (4.260016, -49.38442, 6.5598493), (3.9108617, -49.38442, 6.773811), (3.550988, -49.38442, 6.9692063), (3.1813815, -49.38442, 7.1454997), (2.8030548, -49.38442, 7.302208), (2.4170454, -49.38442, 7.438901), (2.024411, -49.38442, 7.5552044), (1.6262277, -49.38442, 7.6507998), (1.223587, -49.38442, 7.725425), (0.81759274, -49.38442, 7.778875), (0.40935737, -49.38442, 7.8110037), (4.789424e-16, -49.38442, 7.8217235), (-0.40935737, -49.38442, 7.8110037), (-0.81759274, -49.38442, 7.778875), (-1.223587, -49.38442, 7.725425), (-1.6262277, -49.38442, 7.6507998), (-2.024411, -49.38442, 7.5552044), (-2.4170454, -49.38442, 7.438901), (-2.8030548, -49.38442, 7.302208), (-3.1813815, -49.38442, 7.1454997), (-3.550988, -49.38442, 6.9692063), (-3.9108617, -49.38442, 6.773811), (-4.260016, -49.38442, 6.5598493), (-4.5974936, -49.38442, 6.327907), (-4.92237, -49.38442, 6.0786204), (-5.2337546, -49.38442, 5.812673), (-5.5307937, -49.38442, 5.5307937), (-5.812673, -49.38442, 5.2337546), (-6.0786204, -49.38442, 4.92237), (-6.327907, -49.38442, 4.5974936), (-6.5598493, -49.38442, 4.260016), (-6.773811, -49.38442, 3.9108617), (-6.9692063, -49.38442, 3.550988), (-7.1454997, -49.38442, 3.1813815), (-7.302208, -49.38442, 2.8030548), (-7.438901, -49.38442, 2.4170454), (-7.5552044, -49.38442, 2.024411), (-7.6507998, -49.38442, 1.6262277), (-7.725425, -49.38442, 1.223587), (-7.778875, -49.38442, 0.81759274), (-7.8110037, -49.38442, 0.40935737), (-7.8217235, -49.38442, 9.578848e-16), (-7.8110037, -49.38442, -0.40935737), (-7.778875, -49.38442, -0.81759274), (-7.725425, -49.38442, -1.223587), (-7.6507998, -49.38442, -1.6262277), (-7.5552044, -49.38442, -2.024411), (-7.438901, -49.38442, -2.4170454), (-7.302208, -49.38442, -2.8030548), (-7.1454997, -49.38442, -3.1813815), (-6.9692063, -49.38442, -3.550988), (-6.773811, -49.38442, -3.9108617), (-6.5598493, -49.38442, -4.260016), (-6.327907, -49.38442, -4.5974936), (-6.0786204, -49.38442, -4.92237), (-5.812673, -49.38442, -5.2337546), (-5.5307937, -49.38442, -5.5307937), (-5.2337546, -49.38442, -5.812673), (-4.92237, -49.38442, -6.0786204), (-4.5974936, -49.38442, -6.327907), (-4.260016, -49.38442, -6.5598493), (-3.9108617, -49.38442, -6.773811), (-3.550988, -49.38442, -6.9692063), (-3.1813815, -49.38442, -7.1454997), (-2.8030548, -49.38442, -7.302208), (-2.4170454, -49.38442, -7.438901), (-2.024411, -49.38442, -7.5552044), (-1.6262277, -49.38442, -7.6507998), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.38442, -7.778875), (-0.40935737, -49.38442, -7.8110037), (-1.4368273e-15, -49.38442, -7.8217235), (0.40935737, -49.38442, -7.8110037), (0.81759274, -49.38442, -7.778875), (1.223587, -49.38442, -7.725425), (1.6262277, -49.38442, -7.6507998), (2.024411, -49.38442, -7.5552044), (2.4170454, -49.38442, -7.438901), (2.8030548, -49.38442, -7.302208), (3.1813815, -49.38442, -7.1454997), (3.550988, -49.38442, -6.9692063), (3.9108617, -49.38442, -6.773811), (4.260016, -49.38442, -6.5598493), (4.5974936, -49.38442, -6.327907), (4.92237, -49.38442, -6.0786204), (5.2337546, -49.38442, -5.812673), (5.5307937, -49.38442, -5.5307937), (5.812673, -49.38442, -5.2337546), (6.0786204, -49.38442, -4.92237), (6.327907, -49.38442, -4.5974936), (6.5598493, -49.38442, -4.260016), (6.773811, -49.38442, -3.9108617), (6.9692063, -49.38442, -3.550988), (7.1454997, -49.38442, -3.1813815), (7.302208, -49.38442, -2.8030548), (7.438901, -49.38442, -2.4170454), (7.5552044, -49.38442, -2.024411), (7.6507998, -49.38442, -1.6262277), (7.725425, -49.38442, -1.223587), (7.778875, -49.38442, -0.81759274), (7.8110037, -49.38442, -0.40935737), (10.395584, -48.90738, 0), (10.381338, -48.90738, 0.54406285), (10.338636, -48.90738, 1.0866345), (10.267597, -48.90738, 1.6262277), (10.168416, -48.90738, 2.1613636), (10.041364, -48.90738, 2.6905754), (9.886788, -48.90738, 3.2124124), (9.705114, -48.90738, 3.7254443), (9.496839, -48.90738, 4.2282653), (9.262533, -48.90738, 4.7194967), (9.00284, -48.90738, 5.197792), (8.718471, -48.90738, 5.661841), (8.410205, -48.90738, 6.110371), (8.078887, -48.90738, 6.5421534), (7.725425, -48.90738, 6.9560037), (7.350788, -48.90738, 7.350788), (6.9560037, -48.90738, 7.725425), (6.5421534, -48.90738, 8.078887), (6.110371, -48.90738, 8.410205), (5.661841, -48.90738, 8.718471), (5.197792, -48.90738, 9.00284), (4.7194967, -48.90738, 9.262533), (4.2282653, -48.90738, 9.496839), (3.7254443, -48.90738, 9.705114), (3.2124124, -48.90738, 9.886788), (2.6905754, -48.90738, 10.041364), (2.1613636, -48.90738, 10.168416), (1.6262277, -48.90738, 10.267597), (1.0866345, -48.90738, 10.338636), (0.54406285, -48.90738, 10.381338), (6.3654595e-16, -48.90738, 10.395584), (-0.54406285, -48.90738, 10.381338), (-1.0866345, -48.90738, 10.338636), (-1.6262277, -48.90738, 10.267597), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.90738, 10.041364), (-3.2124124, -48.90738, 9.886788), (-3.7254443, -48.90738, 9.705114), (-4.2282653, -48.90738, 9.496839), (-4.7194967, -48.90738, 9.262533), (-5.197792, -48.90738, 9.00284), (-5.661841, -48.90738, 8.718471), (-6.110371, -48.90738, 8.410205), (-6.5421534, -48.90738, 8.078887), (-6.9560037, -48.90738, 7.725425), (-7.350788, -48.90738, 7.350788), (-7.725425, -48.90738, 6.9560037), (-8.078887, -48.90738, 6.5421534), (-8.410205, -48.90738, 6.110371), (-8.718471, -48.90738, 5.661841), (-9.00284, -48.90738, 5.197792), (-9.262533, -48.90738, 4.7194967), (-9.496839, -48.90738, 4.2282653), (-9.705114, -48.90738, 3.7254443), (-9.886788, -48.90738, 3.2124124), (-10.041364, -48.90738, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-10.267597, -48.90738, 1.6262277), (-10.338636, -48.90738, 1.0866345), (-10.381338, -48.90738, 0.54406285), (-10.395584, -48.90738, 1.2730919e-15), (-10.381338, -48.90738, -0.54406285), (-10.338636, -48.90738, -1.0866345), (-10.267597, -48.90738, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-10.041364, -48.90738, -2.6905754), (-9.886788, -48.90738, -3.2124124), (-9.705114, -48.90738, -3.7254443), (-9.496839, -48.90738, -4.2282653), (-9.262533, -48.90738, -4.7194967), (-9.00284, -48.90738, -5.197792), (-8.718471, -48.90738, -5.661841), (-8.410205, -48.90738, -6.110371), (-8.078887, -48.90738, -6.5421534), (-7.725425, -48.90738, -6.9560037), (-7.350788, -48.90738, -7.350788), (-6.9560037, -48.90738, -7.725425), (-6.5421534, -48.90738, -8.078887), (-6.110371, -48.90738, -8.410205), (-5.661841, -48.90738, -8.718471), (-5.197792, -48.90738, -9.00284), (-4.7194967, -48.90738, -9.262533), (-4.2282653, -48.90738, -9.496839), (-3.7254443, -48.90738, -9.705114), (-3.2124124, -48.90738, -9.886788), (-2.6905754, -48.90738, -10.041364), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -48.90738, -10.267597), (-1.0866345, -48.90738, -10.338636), (-0.54406285, -48.90738, -10.381338), (-1.909638e-15, -48.90738, -10.395584), (0.54406285, -48.90738, -10.381338), (1.0866345, -48.90738, -10.338636), (1.6262277, -48.90738, -10.267597), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.90738, -10.041364), (3.2124124, -48.90738, -9.886788), (3.7254443, -48.90738, -9.705114), (4.2282653, -48.90738, -9.496839), (4.7194967, -48.90738, -9.262533), (5.197792, -48.90738, -9.00284), (5.661841, -48.90738, -8.718471), (6.110371, -48.90738, -8.410205), (6.5421534, -48.90738, -8.078887), (6.9560037, -48.90738, -7.725425), (7.350788, -48.90738, -7.350788), (7.725425, -48.90738, -6.9560037), (8.078887, -48.90738, -6.5421534), (8.410205, -48.90738, -6.110371), (8.718471, -48.90738, -5.661841), (9.00284, -48.90738, -5.197792), (9.262533, -48.90738, -4.7194967), (9.496839, -48.90738, -4.2282653), (9.705114, -48.90738, -3.7254443), (9.886788, -48.90738, -3.2124124), (10.041364, -48.90738, -2.6905754), (10.168416, -48.90738, -2.1613636), (10.267597, -48.90738, -1.6262277), (10.338636, -48.90738, -1.0866345), (10.381338, -48.90738, -0.54406285), (12.940952, -48.29629, 0), (12.923217, -48.29629, 0.6772771), (12.87006, -48.29629, 1.3526978), (12.781628, -48.29629, 2.024411), (12.658161, -48.29629, 2.6905754), (12.5, -48.29629, 3.349365), (12.307577, -48.29629, 3.998974), (12.08142, -48.29629, 4.6376224), (11.822148, -48.29629, 5.2635593), (11.530473, -48.29629, 5.8750696), (11.207193, -48.29629, 6.470476), (10.853196, -48.29629, 7.0481477), (10.46945, -48.29629, 7.606501), (10.057009, -48.29629, 8.144005), (9.617002, -48.29629, 8.659187), (9.150635, -48.29629, 9.150635), (8.659187, -48.29629, 9.617002), (8.144005, -48.29629, 10.057009), (7.606501, -48.29629, 10.46945), (7.0481477, -48.29629, 10.853196), (6.470476, -48.29629, 11.207193), (5.8750696, -48.29629, 11.530473), (5.2635593, -48.29629, 11.822148), (4.6376224, -48.29629, 12.08142), (3.998974, -48.29629, 12.307577), (3.349365, -48.29629, 12.5), (2.6905754, -48.29629, 12.658161), (2.024411, -48.29629, 12.781628), (1.3526978, -48.29629, 12.87006), (0.6772771, -48.29629, 12.923217), (7.924048e-16, -48.29629, 12.940952), (-0.6772771, -48.29629, 12.923217), (-1.3526978, -48.29629, 12.87006), (-2.024411, -48.29629, 12.781628), (-2.6905754, -48.29629, 12.658161), (-3.349365, -48.29629, 12.5), (-3.998974, -48.29629, 12.307577), (-4.6376224, -48.29629, 12.08142), (-5.2635593, -48.29629, 11.822148), (-5.8750696, -48.29629, 11.530473), (-6.470476, -48.29629, 11.207193), (-7.0481477, -48.29629, 10.853196), (-7.606501, -48.29629, 10.46945), (-8.144005, -48.29629, 10.057009), (-8.659187, -48.29629, 9.617002), (-9.150635, -48.29629, 9.150635), (-9.617002, -48.29629, 8.659187), (-10.057009, -48.29629, 8.144005), (-10.46945, -48.29629, 7.606501), (-10.853196, -48.29629, 7.0481477), (-11.207193, -48.29629, 6.470476), (-11.530473, -48.29629, 5.8750696), (-11.822148, -48.29629, 5.2635593), (-12.08142, -48.29629, 4.6376224), (-12.307577, -48.29629, 3.998974), (-12.5, -48.29629, 3.349365), (-12.658161, -48.29629, 2.6905754), (-12.781628, -48.29629, 2.024411), (-12.87006, -48.29629, 1.3526978), (-12.923217, -48.29629, 0.6772771), (-12.940952, -48.29629, 1.5848095e-15), (-12.923217, -48.29629, -0.6772771), (-12.87006, -48.29629, -1.3526978), (-12.781628, -48.29629, -2.024411), (-12.658161, -48.29629, -2.6905754), (-12.5, -48.29629, -3.349365), (-12.307577, -48.29629, -3.998974), (-12.08142, -48.29629, -4.6376224), (-11.822148, -48.29629, -5.2635593), (-11.530473, -48.29629, -5.8750696), (-11.207193, -48.29629, -6.470476), (-10.853196, -48.29629, -7.0481477), (-10.46945, -48.29629, -7.606501), (-10.057009, -48.29629, -8.144005), (-9.617002, -48.29629, -8.659187), (-9.150635, -48.29629, -9.150635), (-8.659187, -48.29629, -9.617002), (-8.144005, -48.29629, -10.057009), (-7.606501, -48.29629, -10.46945), (-7.0481477, -48.29629, -10.853196), (-6.470476, -48.29629, -11.207193), (-5.8750696, -48.29629, -11.530473), (-5.2635593, -48.29629, -11.822148), (-4.6376224, -48.29629, -12.08142), (-3.998974, -48.29629, -12.307577), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.29629, -12.658161), (-2.024411, -48.29629, -12.781628), (-1.3526978, -48.29629, -12.87006), (-0.6772771, -48.29629, -12.923217), (-2.3772143e-15, -48.29629, -12.940952), (0.6772771, -48.29629, -12.923217), (1.3526978, -48.29629, -12.87006), (2.024411, -48.29629, -12.781628), (2.6905754, -48.29629, -12.658161), (3.349365, -48.29629, -12.5), (3.998974, -48.29629, -12.307577), (4.6376224, -48.29629, -12.08142), (5.2635593, -48.29629, -11.822148), (5.8750696, -48.29629, -11.530473), (6.470476, -48.29629, -11.207193), (7.0481477, -48.29629, -10.853196), (7.606501, -48.29629, -10.46945), (8.144005, -48.29629, -10.057009), (8.659187, -48.29629, -9.617002), (9.150635, -48.29629, -9.150635), (9.617002, -48.29629, -8.659187), (10.057009, -48.29629, -8.144005), (10.46945, -48.29629, -7.606501), (10.853196, -48.29629, -7.0481477), (11.207193, -48.29629, -6.470476), (11.530473, -48.29629, -5.8750696), (11.822148, -48.29629, -5.2635593), (12.08142, -48.29629, -4.6376224), (12.307577, -48.29629, -3.998974), (12.5, -48.29629, -3.349365), (12.658161, -48.29629, -2.6905754), (12.781628, -48.29629, -2.024411), (12.87006, -48.29629, -1.3526978), (12.923217, -48.29629, -0.6772771), (15.45085, -47.552826, 0), (15.429675, -47.552826, 0.808635), (15.366208, -47.552826, 1.6150535), (15.260624, -47.552826, 2.4170454), (15.113212, -47.552826, 3.2124124), (14.924375, -47.552826, 3.998974), (14.694632, -47.552826, 4.774575), (14.424611, -47.552826, 5.5370893), (14.115053, -47.552826, 6.2844267), (13.766808, -47.552826, 7.014539), (13.380828, -47.552826, 7.725425), (12.958173, -47.552826, 8.415136), (12.5, -47.552826, 9.081781), (12.0075655, -47.552826, 9.723535), (11.482219, -47.552826, 10.338636), (10.925401, -47.552826, 10.925401), (10.338636, -47.552826, 11.482219), (9.723535, -47.552826, 12.0075655), (9.081781, -47.552826, 12.5), (8.415136, -47.552826, 12.958173), (7.725425, -47.552826, 13.380828), (7.014539, -47.552826, 13.766808), (6.2844267, -47.552826, 14.115053), (5.5370893, -47.552826, 14.424611), (4.774575, -47.552826, 14.694632), (3.998974, -47.552826, 14.924375), (3.2124124, -47.552826, 15.113212), (2.4170454, -47.552826, 15.260624), (1.6150535, -47.552826, 15.366208), (0.808635, -47.552826, 15.429675), (9.460917e-16, -47.552826, 15.45085), (-0.808635, -47.552826, 15.429675), (-1.6150535, -47.552826, 15.366208), (-2.4170454, -47.552826, 15.260624), (-3.2124124, -47.552826, 15.113212), (-3.998974, -47.552826, 14.924375), (-4.774575, -47.552826, 14.694632), (-5.5370893, -47.552826, 14.424611), (-6.2844267, -47.552826, 14.115053), (-7.014539, -47.552826, 13.766808), (-7.725425, -47.552826, 13.380828), (-8.415136, -47.552826, 12.958173), (-9.081781, -47.552826, 12.5), (-9.723535, -47.552826, 12.0075655), (-10.338636, -47.552826, 11.482219), (-10.925401, -47.552826, 10.925401), (-11.482219, -47.552826, 10.338636), (-12.0075655, -47.552826, 9.723535), (-12.5, -47.552826, 9.081781), (-12.958173, -47.552826, 8.415136), (-13.380828, -47.552826, 7.725425), (-13.766808, -47.552826, 7.014539), (-14.115053, -47.552826, 6.2844267), (-14.424611, -47.552826, 5.5370893), (-14.694632, -47.552826, 4.774575), (-14.924375, -47.552826, 3.998974), (-15.113212, -47.552826, 3.2124124), (-15.260624, -47.552826, 2.4170454), (-15.366208, -47.552826, 1.6150535), (-15.429675, -47.552826, 0.808635), (-15.45085, -47.552826, 1.8921833e-15), (-15.429675, -47.552826, -0.808635), (-15.366208, -47.552826, -1.6150535), (-15.260624, -47.552826, -2.4170454), (-15.113212, -47.552826, -3.2124124), (-14.924375, -47.552826, -3.998974), (-14.694632, -47.552826, -4.774575), (-14.424611, -47.552826, -5.5370893), (-14.115053, -47.552826, -6.2844267), (-13.766808, -47.552826, -7.014539), (-13.380828, -47.552826, -7.725425), (-12.958173, -47.552826, -8.415136), (-12.5, -47.552826, -9.081781), (-12.0075655, -47.552826, -9.723535), (-11.482219, -47.552826, -10.338636), (-10.925401, -47.552826, -10.925401), (-10.338636, -47.552826, -11.482219), (-9.723535, -47.552826, -12.0075655), (-9.081781, -47.552826, -12.5), (-8.415136, -47.552826, -12.958173), (-7.725425, -47.552826, -13.380828), (-7.014539, -47.552826, -13.766808), (-6.2844267, -47.552826, -14.115053), (-5.5370893, -47.552826, -14.424611), (-4.774575, -47.552826, -14.694632), (-3.998974, -47.552826, -14.924375), (-3.2124124, -47.552826, -15.113212), (-2.4170454, -47.552826, -15.260624), (-1.6150535, -47.552826, -15.366208), (-0.808635, -47.552826, -15.429675), (-2.838275e-15, -47.552826, -15.45085), (0.808635, -47.552826, -15.429675), (1.6150535, -47.552826, -15.366208), (2.4170454, -47.552826, -15.260624), (3.2124124, -47.552826, -15.113212), (3.998974, -47.552826, -14.924375), (4.774575, -47.552826, -14.694632), (5.5370893, -47.552826, -14.424611), (6.2844267, -47.552826, -14.115053), (7.014539, -47.552826, -13.766808), (7.725425, -47.552826, -13.380828), (8.415136, -47.552826, -12.958173), (9.081781, -47.552826, -12.5), (9.723535, -47.552826, -12.0075655), (10.338636, -47.552826, -11.482219), (10.925401, -47.552826, -10.925401), (11.482219, -47.552826, -10.338636), (12.0075655, -47.552826, -9.723535), (12.5, -47.552826, -9.081781), (12.958173, -47.552826, -8.415136), (13.380828, -47.552826, -7.725425), (13.766808, -47.552826, -7.014539), (14.115053, -47.552826, -6.2844267), (14.424611, -47.552826, -5.5370893), (14.694632, -47.552826, -4.774575), (14.924375, -47.552826, -3.998974), (15.113212, -47.552826, -3.2124124), (15.260624, -47.552826, -2.4170454), (15.366208, -47.552826, -1.6150535), (15.429675, -47.552826, -0.808635), (17.918398, -46.67902, 0), (17.89384, -46.67902, 0.93777645), (17.820238, -46.67902, 1.8729825), (17.697792, -46.67902, 2.8030548), (17.526838, -46.67902, 3.7254443), (17.307842, -46.67902, 4.6376224), (17.041409, -46.67902, 5.5370893), (16.728266, -46.67902, 6.4213796), (16.36927, -46.67902, 7.288069), (15.965409, -46.67902, 8.134782), (15.517787, -46.67902, 8.959199), (15.027633, -46.67902, 9.759059), (14.496288, -46.67902, 10.532169), (13.92521, -46.67902, 11.276413), (13.315965, -46.67902, 11.989748), (12.67022, -46.67902, 12.67022), (11.989748, -46.67902, 13.315965), (11.276413, -46.67902, 13.92521), (10.532169, -46.67902, 14.496288), (9.759059, -46.67902, 15.027633), (8.959199, -46.67902, 15.517787), (8.134782, -46.67902, 15.965409), (7.288069, -46.67902, 16.36927), (6.4213796, -46.67902, 16.728266), (5.5370893, -46.67902, 17.041409), (4.6376224, -46.67902, 17.307842), (3.7254443, -46.67902, 17.526838), (2.8030548, -46.67902, 17.697792), (1.8729825, -46.67902, 17.820238), (0.93777645, -46.67902, 17.89384), (1.0971854e-15, -46.67902, 17.918398), (-0.93777645, -46.67902, 17.89384), (-1.8729825, -46.67902, 17.820238), (-2.8030548, -46.67902, 17.697792), (-3.7254443, -46.67902, 17.526838), (-4.6376224, -46.67902, 17.307842), (-5.5370893, -46.67902, 17.041409), (-6.4213796, -46.67902, 16.728266), (-7.288069, -46.67902, 16.36927), (-8.134782, -46.67902, 15.965409), (-8.959199, -46.67902, 15.517787), (-9.759059, -46.67902, 15.027633), (-10.532169, -46.67902, 14.496288), (-11.276413, -46.67902, 13.92521), (-11.989748, -46.67902, 13.315965), (-12.67022, -46.67902, 12.67022), (-13.315965, -46.67902, 11.989748), (-13.92521, -46.67902, 11.276413), (-14.496288, -46.67902, 10.532169), (-15.027633, -46.67902, 9.759059), (-15.517787, -46.67902, 8.959199), (-15.965409, -46.67902, 8.134782), (-16.36927, -46.67902, 7.288069), (-16.728266, -46.67902, 6.4213796), (-17.041409, -46.67902, 5.5370893), (-17.307842, -46.67902, 4.6376224), (-17.526838, -46.67902, 3.7254443), (-17.697792, -46.67902, 2.8030548), (-17.820238, -46.67902, 1.8729825), (-17.89384, -46.67902, 0.93777645), (-17.918398, -46.67902, 2.1943708e-15), (-17.89384, -46.67902, -0.93777645), (-17.820238, -46.67902, -1.8729825), (-17.697792, -46.67902, -2.8030548), (-17.526838, -46.67902, -3.7254443), (-17.307842, -46.67902, -4.6376224), (-17.041409, -46.67902, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-16.36927, -46.67902, -7.288069), (-15.965409, -46.67902, -8.134782), (-15.517787, -46.67902, -8.959199), (-15.027633, -46.67902, -9.759059), (-14.496288, -46.67902, -10.532169), (-13.92521, -46.67902, -11.276413), (-13.315965, -46.67902, -11.989748), (-12.67022, -46.67902, -12.67022), (-11.989748, -46.67902, -13.315965), (-11.276413, -46.67902, -13.92521), (-10.532169, -46.67902, -14.496288), (-9.759059, -46.67902, -15.027633), (-8.959199, -46.67902, -15.517787), (-8.134782, -46.67902, -15.965409), (-7.288069, -46.67902, -16.36927), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -46.67902, -17.041409), (-4.6376224, -46.67902, -17.307842), (-3.7254443, -46.67902, -17.526838), (-2.8030548, -46.67902, -17.697792), (-1.8729825, -46.67902, -17.820238), (-0.93777645, -46.67902, -17.89384), (-3.2915563e-15, -46.67902, -17.918398), (0.93777645, -46.67902, -17.89384), (1.8729825, -46.67902, -17.820238), (2.8030548, -46.67902, -17.697792), (3.7254443, -46.67902, -17.526838), (4.6376224, -46.67902, -17.307842), (5.5370893, -46.67902, -17.041409), (6.4213796, -46.67902, -16.728266), (7.288069, -46.67902, -16.36927), (8.134782, -46.67902, -15.965409), (8.959199, -46.67902, -15.517787), (9.759059, -46.67902, -15.027633), (10.532169, -46.67902, -14.496288), (11.276413, -46.67902, -13.92521), (11.989748, -46.67902, -13.315965), (12.67022, -46.67902, -12.67022), (13.315965, -46.67902, -11.989748), (13.92521, -46.67902, -11.276413), (14.496288, -46.67902, -10.532169), (15.027633, -46.67902, -9.759059), (15.517787, -46.67902, -8.959199), (15.965409, -46.67902, -8.134782), (16.36927, -46.67902, -7.288069), (16.728266, -46.67902, -6.4213796), (17.041409, -46.67902, -5.5370893), (17.307842, -46.67902, -4.6376224), (17.526838, -46.67902, -3.7254443), (17.697792, -46.67902, -2.8030548), (17.820238, -46.67902, -1.8729825), (17.89384, -46.67902, -0.93777645), (20.336832, -45.677273, 0), (20.308962, -45.677273, 1.0643475), (20.225426, -45.677273, 2.1257777), (20.086452, -45.677273, 3.1813815), (19.892424, -45.677273, 4.2282653), (19.643871, -45.677273, 5.2635593), (19.341476, -45.677273, 6.2844267), (18.986069, -45.677273, 7.288069), (18.57862, -45.677273, 8.271735), (18.12025, -45.677273, 9.232729), (17.612213, -45.677273, 10.168416), (17.055902, -45.677273, 11.076233), (16.452843, -45.677273, 11.95369), (15.804687, -45.677273, 12.798383), (15.113212, -45.677273, 13.607997), (14.380312, -45.677273, 14.380312), (13.607997, -45.677273, 15.113212), (12.798383, -45.677273, 15.804687), (11.95369, -45.677273, 16.452843), (11.076233, -45.677273, 17.055902), (10.168416, -45.677273, 17.612213), (9.232729, -45.677273, 18.12025), (8.271735, -45.677273, 18.57862), (7.288069, -45.677273, 18.986069), (6.2844267, -45.677273, 19.341476), (5.2635593, -45.677273, 19.643871), (4.2282653, -45.677273, 19.892424), (3.1813815, -45.677273, 20.086452), (2.1257777, -45.677273, 20.225426), (1.0643475, -45.677273, 20.308962), (1.2452718e-15, -45.677273, 20.336832), (-1.0643475, -45.677273, 20.308962), (-2.1257777, -45.677273, 20.225426), (-3.1813815, -45.677273, 20.086452), (-4.2282653, -45.677273, 19.892424), (-5.2635593, -45.677273, 19.643871), (-6.2844267, -45.677273, 19.341476), (-7.288069, -45.677273, 18.986069), (-8.271735, -45.677273, 18.57862), (-9.232729, -45.677273, 18.12025), (-10.168416, -45.677273, 17.612213), (-11.076233, -45.677273, 17.055902), (-11.95369, -45.677273, 16.452843), (-12.798383, -45.677273, 15.804687), (-13.607997, -45.677273, 15.113212), (-14.380312, -45.677273, 14.380312), (-15.113212, -45.677273, 13.607997), (-15.804687, -45.677273, 12.798383), (-16.452843, -45.677273, 11.95369), (-17.055902, -45.677273, 11.076233), (-17.612213, -45.677273, 10.168416), (-18.12025, -45.677273, 9.232729), (-18.57862, -45.677273, 8.271735), (-18.986069, -45.677273, 7.288069), (-19.341476, -45.677273, 6.2844267), (-19.643871, -45.677273, 5.2635593), (-19.892424, -45.677273, 4.2282653), (-20.086452, -45.677273, 3.1813815), (-20.225426, -45.677273, 2.1257777), (-20.308962, -45.677273, 1.0643475), (-20.336832, -45.677273, 2.4905437e-15), (-20.308962, -45.677273, -1.0643475), (-20.225426, -45.677273, -2.1257777), (-20.086452, -45.677273, -3.1813815), (-19.892424, -45.677273, -4.2282653), (-19.643871, -45.677273, -5.2635593), (-19.341476, -45.677273, -6.2844267), (-18.986069, -45.677273, -7.288069), (-18.57862, -45.677273, -8.271735), (-18.12025, -45.677273, -9.232729), (-17.612213, -45.677273, -10.168416), (-17.055902, -45.677273, -11.076233), (-16.452843, -45.677273, -11.95369), (-15.804687, -45.677273, -12.798383), (-15.113212, -45.677273, -13.607997), (-14.380312, -45.677273, -14.380312), (-13.607997, -45.677273, -15.113212), (-12.798383, -45.677273, -15.804687), (-11.95369, -45.677273, -16.452843), (-11.076233, -45.677273, -17.055902), (-10.168416, -45.677273, -17.612213), (-9.232729, -45.677273, -18.12025), (-8.271735, -45.677273, -18.57862), (-7.288069, -45.677273, -18.986069), (-6.2844267, -45.677273, -19.341476), (-5.2635593, -45.677273, -19.643871), (-4.2282653, -45.677273, -19.892424), (-3.1813815, -45.677273, -20.086452), (-2.1257777, -45.677273, -20.225426), (-1.0643475, -45.677273, -20.308962), (-3.7358155e-15, -45.677273, -20.336832), (1.0643475, -45.677273, -20.308962), (2.1257777, -45.677273, -20.225426), (3.1813815, -45.677273, -20.086452), (4.2282653, -45.677273, -19.892424), (5.2635593, -45.677273, -19.643871), (6.2844267, -45.677273, -19.341476), (7.288069, -45.677273, -18.986069), (8.271735, -45.677273, -18.57862), (9.232729, -45.677273, -18.12025), (10.168416, -45.677273, -17.612213), (11.076233, -45.677273, -17.055902), (11.95369, -45.677273, -16.452843), (12.798383, -45.677273, -15.804687), (13.607997, -45.677273, -15.113212), (14.380312, -45.677273, -14.380312), (15.113212, -45.677273, -13.607997), (15.804687, -45.677273, -12.798383), (16.452843, -45.677273, -11.95369), (17.055902, -45.677273, -11.076233), (17.612213, -45.677273, -10.168416), (18.12025, -45.677273, -9.232729), (18.57862, -45.677273, -8.271735), (18.986069, -45.677273, -7.288069), (19.341476, -45.677273, -6.2844267), (19.643871, -45.677273, -5.2635593), (19.892424, -45.677273, -4.2282653), (20.086452, -45.677273, -3.1813815), (20.225426, -45.677273, -2.1257777), (20.308962, -45.677273, -1.0643475), (22.699526, -44.550327, 0), (22.668417, -44.550327, 1.1880014), (22.575174, -44.550327, 2.3727465), (22.420055, -44.550327, 3.550988), (22.203485, -44.550327, 4.7194967), (21.926058, -44.550327, 5.8750696), (21.588531, -44.550327, 7.014539), (21.191832, -44.550327, 8.134782), (20.737047, -44.550327, 9.232729), (20.225426, -44.550327, 10.305368), (19.658365, -44.550327, 11.349763), (19.037424, -44.550327, 12.363048), (18.364302, -44.550327, 13.342446), (17.640844, -44.550327, 14.285274), (16.869034, -44.550327, 15.188947), (16.050987, -44.550327, 16.050987), (15.188947, -44.550327, 16.869034), (14.285274, -44.550327, 17.640844), (13.342446, -44.550327, 18.364302), (12.363048, -44.550327, 19.037424), (11.349763, -44.550327, 19.658365), (10.305368, -44.550327, 20.225426), (9.232729, -44.550327, 20.737047), (8.134782, -44.550327, 21.191832), (7.014539, -44.550327, 21.588531), (5.8750696, -44.550327, 21.926058), (4.7194967, -44.550327, 22.203485), (3.550988, -44.550327, 22.420055), (2.3727465, -44.550327, 22.575174), (1.1880014, -44.550327, 22.668417), (1.3899451e-15, -44.550327, 22.699526), (-1.1880014, -44.550327, 22.668417), (-2.3727465, -44.550327, 22.575174), (-3.550988, -44.550327, 22.420055), (-4.7194967, -44.550327, 22.203485), (-5.8750696, -44.550327, 21.926058), (-7.014539, -44.550327, 21.588531), (-8.134782, -44.550327, 21.191832), (-9.232729, -44.550327, 20.737047), (-10.305368, -44.550327, 20.225426), (-11.349763, -44.550327, 19.658365), (-12.363048, -44.550327, 19.037424), (-13.342446, -44.550327, 18.364302), (-14.285274, -44.550327, 17.640844), (-15.188947, -44.550327, 16.869034), (-16.050987, -44.550327, 16.050987), (-16.869034, -44.550327, 15.188947), (-17.640844, -44.550327, 14.285274), (-18.364302, -44.550327, 13.342446), (-19.037424, -44.550327, 12.363048), (-19.658365, -44.550327, 11.349763), (-20.225426, -44.550327, 10.305368), (-20.737047, -44.550327, 9.232729), (-21.191832, -44.550327, 8.134782), (-21.588531, -44.550327, 7.014539), (-21.926058, -44.550327, 5.8750696), (-22.203485, -44.550327, 4.7194967), (-22.420055, -44.550327, 3.550988), (-22.575174, -44.550327, 2.3727465), (-22.668417, -44.550327, 1.1880014), (-22.699526, -44.550327, 2.7798901e-15), (-22.668417, -44.550327, -1.1880014), (-22.575174, -44.550327, -2.3727465), (-22.420055, -44.550327, -3.550988), (-22.203485, -44.550327, -4.7194967), (-21.926058, -44.550327, -5.8750696), (-21.588531, -44.550327, -7.014539), (-21.191832, -44.550327, -8.134782), (-20.737047, -44.550327, -9.232729), (-20.225426, -44.550327, -10.305368), (-19.658365, -44.550327, -11.349763), (-19.037424, -44.550327, -12.363048), (-18.364302, -44.550327, -13.342446), (-17.640844, -44.550327, -14.285274), (-16.869034, -44.550327, -15.188947), (-16.050987, -44.550327, -16.050987), (-15.188947, -44.550327, -16.869034), (-14.285274, -44.550327, -17.640844), (-13.342446, -44.550327, -18.364302), (-12.363048, -44.550327, -19.037424), (-11.349763, -44.550327, -19.658365), (-10.305368, -44.550327, -20.225426), (-9.232729, -44.550327, -20.737047), (-8.134782, -44.550327, -21.191832), (-7.014539, -44.550327, -21.588531), (-5.8750696, -44.550327, -21.926058), (-4.7194967, -44.550327, -22.203485), (-3.550988, -44.550327, -22.420055), (-2.3727465, -44.550327, -22.575174), (-1.1880014, -44.550327, -22.668417), (-4.169835e-15, -44.550327, -22.699526), (1.1880014, -44.550327, -22.668417), (2.3727465, -44.550327, -22.575174), (3.550988, -44.550327, -22.420055), (4.7194967, -44.550327, -22.203485), (5.8750696, -44.550327, -21.926058), (7.014539, -44.550327, -21.588531), (8.134782, -44.550327, -21.191832), (9.232729, -44.550327, -20.737047), (10.305368, -44.550327, -20.225426), (11.349763, -44.550327, -19.658365), (12.363048, -44.550327, -19.037424), (13.342446, -44.550327, -18.364302), (14.285274, -44.550327, -17.640844), (15.188947, -44.550327, -16.869034), (16.050987, -44.550327, -16.050987), (16.869034, -44.550327, -15.188947), (17.640844, -44.550327, -14.285274), (18.364302, -44.550327, -13.342446), (19.037424, -44.550327, -12.363048), (19.658365, -44.550327, -11.349763), (20.225426, -44.550327, -10.305368), (20.737047, -44.550327, -9.232729), (21.191832, -44.550327, -8.134782), (21.588531, -44.550327, -7.014539), (21.926058, -44.550327, -5.8750696), (22.203485, -44.550327, -4.7194967), (22.420055, -44.550327, -3.550988), (22.575174, -44.550327, -2.3727465), (22.668417, -44.550327, -1.1880014), (25, -43.30127, 0), (24.965738, -43.30127, 1.308399), (24.863047, -43.30127, 2.6132116), (24.69221, -43.30127, 3.9108617), (24.45369, -43.30127, 5.197792), (24.148146, -43.30127, 6.470476), (23.776413, -43.30127, 7.725425), (23.33951, -43.30127, 8.959199), (22.838636, -43.30127, 10.168416), (22.275164, -43.30127, 11.349763), (21.650635, -43.30127, 12.5), (20.966764, -43.30127, 13.615976), (20.225426, -43.30127, 14.694632), (19.42865, -43.30127, 15.733009), (18.57862, -43.30127, 16.728266), (17.67767, -43.30127, 17.67767), (16.728266, -43.30127, 18.57862), (15.733009, -43.30127, 19.42865), (14.694632, -43.30127, 20.225426), (13.615976, -43.30127, 20.966764), (12.5, -43.30127, 21.650635), (11.349763, -43.30127, 22.275164), (10.168416, -43.30127, 22.838636), (8.959199, -43.30127, 23.33951), (7.725425, -43.30127, 23.776413), (6.470476, -43.30127, 24.148146), (5.197792, -43.30127, 24.45369), (3.9108617, -43.30127, 24.69221), (2.6132116, -43.30127, 24.863047), (1.308399, -43.30127, 24.965738), (1.5308084e-15, -43.30127, 25), (-1.308399, -43.30127, 24.965738), (-2.6132116, -43.30127, 24.863047), (-3.9108617, -43.30127, 24.69221), (-5.197792, -43.30127, 24.45369), (-6.470476, -43.30127, 24.148146), (-7.725425, -43.30127, 23.776413), (-8.959199, -43.30127, 23.33951), (-10.168416, -43.30127, 22.838636), (-11.349763, -43.30127, 22.275164), (-12.5, -43.30127, 21.650635), (-13.615976, -43.30127, 20.966764), (-14.694632, -43.30127, 20.225426), (-15.733009, -43.30127, 19.42865), (-16.728266, -43.30127, 18.57862), (-17.67767, -43.30127, 17.67767), (-18.57862, -43.30127, 16.728266), (-19.42865, -43.30127, 15.733009), (-20.225426, -43.30127, 14.694632), (-20.966764, -43.30127, 13.615976), (-21.650635, -43.30127, 12.5), (-22.275164, -43.30127, 11.349763), (-22.838636, -43.30127, 10.168416), (-23.33951, -43.30127, 8.959199), (-23.776413, -43.30127, 7.725425), (-24.148146, -43.30127, 6.470476), (-24.45369, -43.30127, 5.197792), (-24.69221, -43.30127, 3.9108617), (-24.863047, -43.30127, 2.6132116), (-24.965738, -43.30127, 1.308399), (-25, -43.30127, 3.0616169e-15), (-24.965738, -43.30127, -1.308399), (-24.863047, -43.30127, -2.6132116), (-24.69221, -43.30127, -3.9108617), (-24.45369, -43.30127, -5.197792), (-24.148146, -43.30127, -6.470476), (-23.776413, -43.30127, -7.725425), (-23.33951, -43.30127, -8.959199), (-22.838636, -43.30127, -10.168416), (-22.275164, -43.30127, -11.349763), (-21.650635, -43.30127, -12.5), (-20.966764, -43.30127, -13.615976), (-20.225426, -43.30127, -14.694632), (-19.42865, -43.30127, -15.733009), (-18.57862, -43.30127, -16.728266), (-17.67767, -43.30127, -17.67767), (-16.728266, -43.30127, -18.57862), (-15.733009, -43.30127, -19.42865), (-14.694632, -43.30127, -20.225426), (-13.615976, -43.30127, -20.966764), (-12.5, -43.30127, -21.650635), (-11.349763, -43.30127, -22.275164), (-10.168416, -43.30127, -22.838636), (-8.959199, -43.30127, -23.33951), (-7.725425, -43.30127, -23.776413), (-6.470476, -43.30127, -24.148146), (-5.197792, -43.30127, -24.45369), (-3.9108617, -43.30127, -24.69221), (-2.6132116, -43.30127, -24.863047), (-1.308399, -43.30127, -24.965738), (-4.5924254e-15, -43.30127, -25), (1.308399, -43.30127, -24.965738), (2.6132116, -43.30127, -24.863047), (3.9108617, -43.30127, -24.69221), (5.197792, -43.30127, -24.45369), (6.470476, -43.30127, -24.148146), (7.725425, -43.30127, -23.776413), (8.959199, -43.30127, -23.33951), (10.168416, -43.30127, -22.838636), (11.349763, -43.30127, -22.275164), (12.5, -43.30127, -21.650635), (13.615976, -43.30127, -20.966764), (14.694632, -43.30127, -20.225426), (15.733009, -43.30127, -19.42865), (16.728266, -43.30127, -18.57862), (17.67767, -43.30127, -17.67767), (18.57862, -43.30127, -16.728266), (19.42865, -43.30127, -15.733009), (20.225426, -43.30127, -14.694632), (20.966764, -43.30127, -13.615976), (21.650635, -43.30127, -12.5), (22.275164, -43.30127, -11.349763), (22.838636, -43.30127, -10.168416), (23.33951, -43.30127, -8.959199), (23.776413, -43.30127, -7.725425), (24.148146, -43.30127, -6.470476), (24.45369, -43.30127, -5.197792), (24.69221, -43.30127, -3.9108617), (24.863047, -43.30127, -2.6132116), (24.965738, -43.30127, -1.308399), (27.231953, -41.93353, 0), (27.194632, -41.93353, 1.4252102), (27.082773, -41.93353, 2.846514), (26.89668, -41.93353, 4.260016), (26.636868, -41.93353, 5.661841), (26.304045, -41.93353, 7.0481477), (25.899126, -41.93353, 8.415136), (25.423218, -41.93353, 9.759059), (24.877626, -41.93353, 11.076233), (24.263847, -41.93353, 12.363048), (23.583563, -41.93353, 13.615976), (22.838636, -41.93353, 14.831584), (22.031113, -41.93353, 16.00654), (21.1632, -41.93353, 17.137623), (20.237284, -41.93353, 18.221733), (19.255898, -41.93353, 19.255898), (18.221733, -41.93353, 20.237284), (17.137623, -41.93353, 21.1632), (16.00654, -41.93353, 22.031113), (14.831584, -41.93353, 22.838636), (13.615976, -41.93353, 23.583563), (12.363048, -41.93353, 24.263847), (11.076233, -41.93353, 24.877626), (9.759059, -41.93353, 25.423218), (8.415136, -41.93353, 25.899126), (7.0481477, -41.93353, 26.304045), (5.661841, -41.93353, 26.636868), (4.260016, -41.93353, 26.89668), (2.846514, -41.93353, 27.082773), (1.4252102, -41.93353, 27.194632), (1.6674762e-15, -41.93353, 27.231953), (-1.4252102, -41.93353, 27.194632), (-2.846514, -41.93353, 27.082773), (-4.260016, -41.93353, 26.89668), (-5.661841, -41.93353, 26.636868), (-7.0481477, -41.93353, 26.304045), (-8.415136, -41.93353, 25.899126), (-9.759059, -41.93353, 25.423218), (-11.076233, -41.93353, 24.877626), (-12.363048, -41.93353, 24.263847), (-13.615976, -41.93353, 23.583563), (-14.831584, -41.93353, 22.838636), (-16.00654, -41.93353, 22.031113), (-17.137623, -41.93353, 21.1632), (-18.221733, -41.93353, 20.237284), (-19.255898, -41.93353, 19.255898), (-20.237284, -41.93353, 18.221733), (-21.1632, -41.93353, 17.137623), (-22.031113, -41.93353, 16.00654), (-22.838636, -41.93353, 14.831584), (-23.583563, -41.93353, 13.615976), (-24.263847, -41.93353, 12.363048), (-24.877626, -41.93353, 11.076233), (-25.423218, -41.93353, 9.759059), (-25.899126, -41.93353, 8.415136), (-26.304045, -41.93353, 7.0481477), (-26.636868, -41.93353, 5.661841), (-26.89668, -41.93353, 4.260016), (-27.082773, -41.93353, 2.846514), (-27.194632, -41.93353, 1.4252102), (-27.231953, -41.93353, 3.3349523e-15), (-27.194632, -41.93353, -1.4252102), (-27.082773, -41.93353, -2.846514), (-26.89668, -41.93353, -4.260016), (-26.636868, -41.93353, -5.661841), (-26.304045, -41.93353, -7.0481477), (-25.899126, -41.93353, -8.415136), (-25.423218, -41.93353, -9.759059), (-24.877626, -41.93353, -11.076233), (-24.263847, -41.93353, -12.363048), (-23.583563, -41.93353, -13.615976), (-22.838636, -41.93353, -14.831584), (-22.031113, -41.93353, -16.00654), (-21.1632, -41.93353, -17.137623), (-20.237284, -41.93353, -18.221733), (-19.255898, -41.93353, -19.255898), (-18.221733, -41.93353, -20.237284), (-17.137623, -41.93353, -21.1632), (-16.00654, -41.93353, -22.031113), (-14.831584, -41.93353, -22.838636), (-13.615976, -41.93353, -23.583563), (-12.363048, -41.93353, -24.263847), (-11.076233, -41.93353, -24.877626), (-9.759059, -41.93353, -25.423218), (-8.415136, -41.93353, -25.899126), (-7.0481477, -41.93353, -26.304045), (-5.661841, -41.93353, -26.636868), (-4.260016, -41.93353, -26.89668), (-2.846514, -41.93353, -27.082773), (-1.4252102, -41.93353, -27.194632), (-5.0024284e-15, -41.93353, -27.231953), (1.4252102, -41.93353, -27.194632), (2.846514, -41.93353, -27.082773), (4.260016, -41.93353, -26.89668), (5.661841, -41.93353, -26.636868), (7.0481477, -41.93353, -26.304045), (8.415136, -41.93353, -25.899126), (9.759059, -41.93353, -25.423218), (11.076233, -41.93353, -24.877626), (12.363048, -41.93353, -24.263847), (13.615976, -41.93353, -23.583563), (14.831584, -41.93353, -22.838636), (16.00654, -41.93353, -22.031113), (17.137623, -41.93353, -21.1632), (18.221733, -41.93353, -20.237284), (19.255898, -41.93353, -19.255898), (20.237284, -41.93353, -18.221733), (21.1632, -41.93353, -17.137623), (22.031113, -41.93353, -16.00654), (22.838636, -41.93353, -14.831584), (23.583563, -41.93353, -13.615976), (24.263847, -41.93353, -12.363048), (24.877626, -41.93353, -11.076233), (25.423218, -41.93353, -9.759059), (25.899126, -41.93353, -8.415136), (26.304045, -41.93353, -7.0481477), (26.636868, -41.93353, -5.661841), (26.89668, -41.93353, -4.260016), (27.082773, -41.93353, -2.846514), (27.194632, -41.93353, -1.4252102), (29.389263, -40.45085, 0), (29.348986, -40.45085, 1.5381151), (29.228266, -40.45085, 3.0720146), (29.027431, -40.45085, 4.5974936), (28.747036, -40.45085, 6.110371), (28.387848, -40.45085, 7.606501), (27.95085, -40.45085, 9.081781), (27.43724, -40.45085, 10.532169), (26.848427, -40.45085, 11.95369), (26.186026, -40.45085, 13.342446), (25.451847, -40.45085, 14.694632), (24.64791, -40.45085, 16.00654), (23.776413, -40.45085, 17.274574), (22.839746, -40.45085, 18.495262), (21.840479, -40.45085, 19.665255), (20.781347, -40.45085, 20.781347), (19.665255, -40.45085, 21.840479), (18.495262, -40.45085, 22.839746), (17.274574, -40.45085, 23.776413), (16.00654, -40.45085, 24.64791), (14.694632, -40.45085, 25.451847), (13.342446, -40.45085, 26.186026), (11.95369, -40.45085, 26.848427), (10.532169, -40.45085, 27.43724), (9.081781, -40.45085, 27.95085), (7.606501, -40.45085, 28.387848), (6.110371, -40.45085, 28.747036), (4.5974936, -40.45085, 29.027431), (3.0720146, -40.45085, 29.228266), (1.5381151, -40.45085, 29.348986), (1.7995734e-15, -40.45085, 29.389263), (-1.5381151, -40.45085, 29.348986), (-3.0720146, -40.45085, 29.228266), (-4.5974936, -40.45085, 29.027431), (-6.110371, -40.45085, 28.747036), (-7.606501, -40.45085, 28.387848), (-9.081781, -40.45085, 27.95085), (-10.532169, -40.45085, 27.43724), (-11.95369, -40.45085, 26.848427), (-13.342446, -40.45085, 26.186026), (-14.694632, -40.45085, 25.451847), (-16.00654, -40.45085, 24.64791), (-17.274574, -40.45085, 23.776413), (-18.495262, -40.45085, 22.839746), (-19.665255, -40.45085, 21.840479), (-20.781347, -40.45085, 20.781347), (-21.840479, -40.45085, 19.665255), (-22.839746, -40.45085, 18.495262), (-23.776413, -40.45085, 17.274574), (-24.64791, -40.45085, 16.00654), (-25.451847, -40.45085, 14.694632), (-26.186026, -40.45085, 13.342446), (-26.848427, -40.45085, 11.95369), (-27.43724, -40.45085, 10.532169), (-27.95085, -40.45085, 9.081781), (-28.387848, -40.45085, 7.606501), (-28.747036, -40.45085, 6.110371), (-29.027431, -40.45085, 4.5974936), (-29.228266, -40.45085, 3.0720146), (-29.348986, -40.45085, 1.5381151), (-29.389263, -40.45085, 3.5991468e-15), (-29.348986, -40.45085, -1.5381151), (-29.228266, -40.45085, -3.0720146), (-29.027431, -40.45085, -4.5974936), (-28.747036, -40.45085, -6.110371), (-28.387848, -40.45085, -7.606501), (-27.95085, -40.45085, -9.081781), (-27.43724, -40.45085, -10.532169), (-26.848427, -40.45085, -11.95369), (-26.186026, -40.45085, -13.342446), (-25.451847, -40.45085, -14.694632), (-24.64791, -40.45085, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.839746, -40.45085, -18.495262), (-21.840479, -40.45085, -19.665255), (-20.781347, -40.45085, -20.781347), (-19.665255, -40.45085, -21.840479), (-18.495262, -40.45085, -22.839746), (-17.274574, -40.45085, -23.776413), (-16.00654, -40.45085, -24.64791), (-14.694632, -40.45085, -25.451847), (-13.342446, -40.45085, -26.186026), (-11.95369, -40.45085, -26.848427), (-10.532169, -40.45085, -27.43724), (-9.081781, -40.45085, -27.95085), (-7.606501, -40.45085, -28.387848), (-6.110371, -40.45085, -28.747036), (-4.5974936, -40.45085, -29.027431), (-3.0720146, -40.45085, -29.228266), (-1.5381151, -40.45085, -29.348986), (-5.39872e-15, -40.45085, -29.389263), (1.5381151, -40.45085, -29.348986), (3.0720146, -40.45085, -29.228266), (4.5974936, -40.45085, -29.027431), (6.110371, -40.45085, -28.747036), (7.606501, -40.45085, -28.387848), (9.081781, -40.45085, -27.95085), (10.532169, -40.45085, -27.43724), (11.95369, -40.45085, -26.848427), (13.342446, -40.45085, -26.186026), (14.694632, -40.45085, -25.451847), (16.00654, -40.45085, -24.64791), (17.274574, -40.45085, -23.776413), (18.495262, -40.45085, -22.839746), (19.665255, -40.45085, -21.840479), (20.781347, -40.45085, -20.781347), (21.840479, -40.45085, -19.665255), (22.839746, -40.45085, -18.495262), (23.776413, -40.45085, -17.274574), (24.64791, -40.45085, -16.00654), (25.451847, -40.45085, -14.694632), (26.186026, -40.45085, -13.342446), (26.848427, -40.45085, -11.95369), (27.43724, -40.45085, -10.532169), (27.95085, -40.45085, -9.081781), (28.387848, -40.45085, -7.606501), (28.747036, -40.45085, -6.110371), (29.027431, -40.45085, -4.5974936), (29.228266, -40.45085, -3.0720146), (29.348986, -40.45085, -1.5381151), (31.466019, -38.8573, 0), (31.422897, -38.8573, 1.6468042), (31.293646, -38.8573, 3.2890947), (31.07862, -38.8573, 4.92237), (30.778412, -38.8573, 6.5421534), (30.39384, -38.8573, 8.144005), (29.925962, -38.8573, 9.723535), (29.37606, -38.8573, 11.276413), (28.74564, -38.8573, 12.798383), (28.036428, -38.8573, 14.285274), (27.250372, -38.8573, 15.733009), (26.389624, -38.8573, 17.137623), (25.456545, -38.8573, 18.495262), (24.45369, -38.8573, 19.802208), (23.38381, -38.8573, 21.054876), (22.249836, -38.8573, 22.249836), (21.054876, -38.8573, 23.38381), (19.802208, -38.8573, 24.45369), (18.495262, -38.8573, 25.456545), (17.137623, -38.8573, 26.389624), (15.733009, -38.8573, 27.250372), (14.285274, -38.8573, 28.036428), (12.798383, -38.8573, 28.74564), (11.276413, -38.8573, 29.37606), (9.723535, -38.8573, 29.925962), (8.144005, -38.8573, 30.39384), (6.5421534, -38.8573, 30.778412), (4.92237, -38.8573, 31.07862), (3.2890947, -38.8573, 31.293646), (1.6468042, -38.8573, 31.422897), (1.926738e-15, -38.8573, 31.466019), (-1.6468042, -38.8573, 31.422897), (-3.2890947, -38.8573, 31.293646), (-4.92237, -38.8573, 31.07862), (-6.5421534, -38.8573, 30.778412), (-8.144005, -38.8573, 30.39384), (-9.723535, -38.8573, 29.925962), (-11.276413, -38.8573, 29.37606), (-12.798383, -38.8573, 28.74564), (-14.285274, -38.8573, 28.036428), (-15.733009, -38.8573, 27.250372), (-17.137623, -38.8573, 26.389624), (-18.495262, -38.8573, 25.456545), (-19.802208, -38.8573, 24.45369), (-21.054876, -38.8573, 23.38381), (-22.249836, -38.8573, 22.249836), (-23.38381, -38.8573, 21.054876), (-24.45369, -38.8573, 19.802208), (-25.456545, -38.8573, 18.495262), (-26.389624, -38.8573, 17.137623), (-27.250372, -38.8573, 15.733009), (-28.036428, -38.8573, 14.285274), (-28.74564, -38.8573, 12.798383), (-29.37606, -38.8573, 11.276413), (-29.925962, -38.8573, 9.723535), (-30.39384, -38.8573, 8.144005), (-30.778412, -38.8573, 6.5421534), (-31.07862, -38.8573, 4.92237), (-31.293646, -38.8573, 3.2890947), (-31.422897, -38.8573, 1.6468042), (-31.466019, -38.8573, 3.853476e-15), (-31.422897, -38.8573, -1.6468042), (-31.293646, -38.8573, -3.2890947), (-31.07862, -38.8573, -4.92237), (-30.778412, -38.8573, -6.5421534), (-30.39384, -38.8573, -8.144005), (-29.925962, -38.8573, -9.723535), (-29.37606, -38.8573, -11.276413), (-28.74564, -38.8573, -12.798383), (-28.036428, -38.8573, -14.285274), (-27.250372, -38.8573, -15.733009), (-26.389624, -38.8573, -17.137623), (-25.456545, -38.8573, -18.495262), (-24.45369, -38.8573, -19.802208), (-23.38381, -38.8573, -21.054876), (-22.249836, -38.8573, -22.249836), (-21.054876, -38.8573, -23.38381), (-19.802208, -38.8573, -24.45369), (-18.495262, -38.8573, -25.456545), (-17.137623, -38.8573, -26.389624), (-15.733009, -38.8573, -27.250372), (-14.285274, -38.8573, -28.036428), (-12.798383, -38.8573, -28.74564), (-11.276413, -38.8573, -29.37606), (-9.723535, -38.8573, -29.925962), (-8.144005, -38.8573, -30.39384), (-6.5421534, -38.8573, -30.778412), (-4.92237, -38.8573, -31.07862), (-3.2890947, -38.8573, -31.293646), (-1.6468042, -38.8573, -31.422897), (-5.780214e-15, -38.8573, -31.466019), (1.6468042, -38.8573, -31.422897), (3.2890947, -38.8573, -31.293646), (4.92237, -38.8573, -31.07862), (6.5421534, -38.8573, -30.778412), (8.144005, -38.8573, -30.39384), (9.723535, -38.8573, -29.925962), (11.276413, -38.8573, -29.37606), (12.798383, -38.8573, -28.74564), (14.285274, -38.8573, -28.036428), (15.733009, -38.8573, -27.250372), (17.137623, -38.8573, -26.389624), (18.495262, -38.8573, -25.456545), (19.802208, -38.8573, -24.45369), (21.054876, -38.8573, -23.38381), (22.249836, -38.8573, -22.249836), (23.38381, -38.8573, -21.054876), (24.45369, -38.8573, -19.802208), (25.456545, -38.8573, -18.495262), (26.389624, -38.8573, -17.137623), (27.250372, -38.8573, -15.733009), (28.036428, -38.8573, -14.285274), (28.74564, -38.8573, -12.798383), (29.37606, -38.8573, -11.276413), (29.925962, -38.8573, -9.723535), (30.39384, -38.8573, -8.144005), (30.778412, -38.8573, -6.5421534), (31.07862, -38.8573, -4.92237), (31.293646, -38.8573, -3.2890947), (31.422897, -38.8573, -1.6468042), (33.45653, -37.15724, 0), (33.41068, -37.15724, 1.7509795), (33.27325, -37.15724, 3.4971597), (33.044624, -37.15724, 5.2337546), (32.725426, -37.15724, 6.9560037), (32.31653, -37.15724, 8.659187), (31.819052, -37.15724, 10.338636), (31.234362, -37.15724, 11.989748), (30.564062, -37.15724, 13.607997), (29.809986, -37.15724, 15.188947), (28.974205, -37.15724, 16.728266), (28.059008, -37.15724, 18.221733), (27.066902, -37.15724, 19.665255), (26.000607, -37.15724, 21.054876), (24.863047, -37.15724, 22.38679), (23.65734, -37.15724, 23.65734), (22.38679, -37.15724, 24.863047), (21.054876, -37.15724, 26.000607), (19.665255, -37.15724, 27.066902), (18.221733, -37.15724, 28.059008), (16.728266, -37.15724, 28.974205), (15.188947, -37.15724, 29.809986), (13.607997, -37.15724, 30.564062), (11.989748, -37.15724, 31.234362), (10.338636, -37.15724, 31.819052), (8.659187, -37.15724, 32.31653), (6.9560037, -37.15724, 32.725426), (5.2337546, -37.15724, 33.044624), (3.4971597, -37.15724, 33.27325), (1.7509795, -37.15724, 33.41068), (2.0486216e-15, -37.15724, 33.45653), (-1.7509795, -37.15724, 33.41068), (-3.4971597, -37.15724, 33.27325), (-5.2337546, -37.15724, 33.044624), (-6.9560037, -37.15724, 32.725426), (-8.659187, -37.15724, 32.31653), (-10.338636, -37.15724, 31.819052), (-11.989748, -37.15724, 31.234362), (-13.607997, -37.15724, 30.564062), (-15.188947, -37.15724, 29.809986), (-16.728266, -37.15724, 28.974205), (-18.221733, -37.15724, 28.059008), (-19.665255, -37.15724, 27.066902), (-21.054876, -37.15724, 26.000607), (-22.38679, -37.15724, 24.863047), (-23.65734, -37.15724, 23.65734), (-24.863047, -37.15724, 22.38679), (-26.000607, -37.15724, 21.054876), (-27.066902, -37.15724, 19.665255), (-28.059008, -37.15724, 18.221733), (-28.974205, -37.15724, 16.728266), (-29.809986, -37.15724, 15.188947), (-30.564062, -37.15724, 13.607997), (-31.234362, -37.15724, 11.989748), (-31.819052, -37.15724, 10.338636), (-32.31653, -37.15724, 8.659187), (-32.725426, -37.15724, 6.9560037), (-33.044624, -37.15724, 5.2337546), (-33.27325, -37.15724, 3.4971597), (-33.41068, -37.15724, 1.7509795), (-33.45653, -37.15724, 4.097243e-15), (-33.41068, -37.15724, -1.7509795), (-33.27325, -37.15724, -3.4971597), (-33.044624, -37.15724, -5.2337546), (-32.725426, -37.15724, -6.9560037), (-32.31653, -37.15724, -8.659187), (-31.819052, -37.15724, -10.338636), (-31.234362, -37.15724, -11.989748), (-30.564062, -37.15724, -13.607997), (-29.809986, -37.15724, -15.188947), (-28.974205, -37.15724, -16.728266), (-28.059008, -37.15724, -18.221733), (-27.066902, -37.15724, -19.665255), (-26.000607, -37.15724, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.65734, -37.15724, -23.65734), (-22.38679, -37.15724, -24.863047), (-21.054876, -37.15724, -26.000607), (-19.665255, -37.15724, -27.066902), (-18.221733, -37.15724, -28.059008), (-16.728266, -37.15724, -28.974205), (-15.188947, -37.15724, -29.809986), (-13.607997, -37.15724, -30.564062), (-11.989748, -37.15724, -31.234362), (-10.338636, -37.15724, -31.819052), (-8.659187, -37.15724, -32.31653), (-6.9560037, -37.15724, -32.725426), (-5.2337546, -37.15724, -33.044624), (-3.4971597, -37.15724, -33.27325), (-1.7509795, -37.15724, -33.41068), (-6.145865e-15, -37.15724, -33.45653), (1.7509795, -37.15724, -33.41068), (3.4971597, -37.15724, -33.27325), (5.2337546, -37.15724, -33.044624), (6.9560037, -37.15724, -32.725426), (8.659187, -37.15724, -32.31653), (10.338636, -37.15724, -31.819052), (11.989748, -37.15724, -31.234362), (13.607997, -37.15724, -30.564062), (15.188947, -37.15724, -29.809986), (16.728266, -37.15724, -28.974205), (18.221733, -37.15724, -28.059008), (19.665255, -37.15724, -27.066902), (21.054876, -37.15724, -26.000607), (22.38679, -37.15724, -24.863047), (23.65734, -37.15724, -23.65734), (24.863047, -37.15724, -22.38679), (26.000607, -37.15724, -21.054876), (27.066902, -37.15724, -19.665255), (28.059008, -37.15724, -18.221733), (28.974205, -37.15724, -16.728266), (29.809986, -37.15724, -15.188947), (30.564062, -37.15724, -13.607997), (31.234362, -37.15724, -11.989748), (31.819052, -37.15724, -10.338636), (32.31653, -37.15724, -8.659187), (32.725426, -37.15724, -6.9560037), (33.044624, -37.15724, -5.2337546), (33.27325, -37.15724, -3.4971597), (33.41068, -37.15724, -1.7509795), (35.35534, -35.35534, 0), (35.306885, -35.35534, 1.8503555), (35.16166, -35.35534, 3.6956394), (34.920055, -35.35534, 5.5307937), (34.58274, -35.35534, 7.350788), (34.150635, -35.35534, 9.150635), (33.624924, -35.35534, 10.925401), (33.007053, -35.35534, 12.67022), (32.29871, -35.35534, 14.380312), (31.501839, -35.35534, 16.050987), (30.618622, -35.35534, 17.67767), (29.651482, -35.35534, 19.255898), (28.60307, -35.35534, 20.781347), (27.47626, -35.35534, 22.249836), (26.274137, -35.35534, 23.65734), (25, -35.35534, 25), (23.65734, -35.35534, 26.274137), (22.249836, -35.35534, 27.47626), (20.781347, -35.35534, 28.60307), (19.255898, -35.35534, 29.651482), (17.67767, -35.35534, 30.618622), (16.050987, -35.35534, 31.501839), (14.380312, -35.35534, 32.29871), (12.67022, -35.35534, 33.007053), (10.925401, -35.35534, 33.624924), (9.150635, -35.35534, 34.150635), (7.350788, -35.35534, 34.58274), (5.5307937, -35.35534, 34.920055), (3.6956394, -35.35534, 35.16166), (1.8503555, -35.35534, 35.306885), (2.1648902e-15, -35.35534, 35.35534), (-1.8503555, -35.35534, 35.306885), (-3.6956394, -35.35534, 35.16166), (-5.5307937, -35.35534, 34.920055), (-7.350788, -35.35534, 34.58274), (-9.150635, -35.35534, 34.150635), (-10.925401, -35.35534, 33.624924), (-12.67022, -35.35534, 33.007053), (-14.380312, -35.35534, 32.29871), (-16.050987, -35.35534, 31.501839), (-17.67767, -35.35534, 30.618622), (-19.255898, -35.35534, 29.651482), (-20.781347, -35.35534, 28.60307), (-22.249836, -35.35534, 27.47626), (-23.65734, -35.35534, 26.274137), (-25, -35.35534, 25), (-26.274137, -35.35534, 23.65734), (-27.47626, -35.35534, 22.249836), (-28.60307, -35.35534, 20.781347), (-29.651482, -35.35534, 19.255898), (-30.618622, -35.35534, 17.67767), (-31.501839, -35.35534, 16.050987), (-32.29871, -35.35534, 14.380312), (-33.007053, -35.35534, 12.67022), (-33.624924, -35.35534, 10.925401), (-34.150635, -35.35534, 9.150635), (-34.58274, -35.35534, 7.350788), (-34.920055, -35.35534, 5.5307937), (-35.16166, -35.35534, 3.6956394), (-35.306885, -35.35534, 1.8503555), (-35.35534, -35.35534, 4.3297804e-15), (-35.306885, -35.35534, -1.8503555), (-35.16166, -35.35534, -3.6956394), (-34.920055, -35.35534, -5.5307937), (-34.58274, -35.35534, -7.350788), (-34.150635, -35.35534, -9.150635), (-33.624924, -35.35534, -10.925401), (-33.007053, -35.35534, -12.67022), (-32.29871, -35.35534, -14.380312), (-31.501839, -35.35534, -16.050987), (-30.618622, -35.35534, -17.67767), (-29.651482, -35.35534, -19.255898), (-28.60307, -35.35534, -20.781347), (-27.47626, -35.35534, -22.249836), (-26.274137, -35.35534, -23.65734), (-25, -35.35534, -25), (-23.65734, -35.35534, -26.274137), (-22.249836, -35.35534, -27.47626), (-20.781347, -35.35534, -28.60307), (-19.255898, -35.35534, -29.651482), (-17.67767, -35.35534, -30.618622), (-16.050987, -35.35534, -31.501839), (-14.380312, -35.35534, -32.29871), (-12.67022, -35.35534, -33.007053), (-10.925401, -35.35534, -33.624924), (-9.150635, -35.35534, -34.150635), (-7.350788, -35.35534, -34.58274), (-5.5307937, -35.35534, -34.920055), (-3.6956394, -35.35534, -35.16166), (-1.8503555, -35.35534, -35.306885), (-6.4946704e-15, -35.35534, -35.35534), (1.8503555, -35.35534, -35.306885), (3.6956394, -35.35534, -35.16166), (5.5307937, -35.35534, -34.920055), (7.350788, -35.35534, -34.58274), (9.150635, -35.35534, -34.150635), (10.925401, -35.35534, -33.624924), (12.67022, -35.35534, -33.007053), (14.380312, -35.35534, -32.29871), (16.050987, -35.35534, -31.501839), (17.67767, -35.35534, -30.618622), (19.255898, -35.35534, -29.651482), (20.781347, -35.35534, -28.60307), (22.249836, -35.35534, -27.47626), (23.65734, -35.35534, -26.274137), (25, -35.35534, -25), (26.274137, -35.35534, -23.65734), (27.47626, -35.35534, -22.249836), (28.60307, -35.35534, -20.781347), (29.651482, -35.35534, -19.255898), (30.618622, -35.35534, -17.67767), (31.501839, -35.35534, -16.050987), (32.29871, -35.35534, -14.380312), (33.007053, -35.35534, -12.67022), (33.624924, -35.35534, -10.925401), (34.150635, -35.35534, -9.150635), (34.58274, -35.35534, -7.350788), (34.920055, -35.35534, -5.5307937), (35.16166, -35.35534, -3.6956394), (35.306885, -35.35534, -1.8503555), (37.15724, -33.45653, 0), (37.10632, -33.45653, 1.9446597), (36.95369, -33.45653, 3.8839893), (36.699776, -33.45653, 5.812673), (36.34527, -33.45653, 7.725425), (35.89114, -33.45653, 9.617002), (35.33864, -33.45653, 11.482219), (34.689274, -33.45653, 13.315965), (33.944828, -33.45653, 15.113212), (33.107346, -33.45653, 16.869034), (32.179115, -33.45653, 18.57862), (31.162685, -33.45653, 20.237284), (30.06084, -33.45653, 21.840479), (28.8766, -33.45653, 23.38381), (27.61321, -33.45653, 24.863047), (26.274137, -33.45653, 26.274137), (24.863047, -33.45653, 27.61321), (23.38381, -33.45653, 28.8766), (21.840479, -33.45653, 30.06084), (20.237284, -33.45653, 31.162685), (18.57862, -33.45653, 32.179115), (16.869034, -33.45653, 33.107346), (15.113212, -33.45653, 33.944828), (13.315965, -33.45653, 34.689274), (11.482219, -33.45653, 35.33864), (9.617002, -33.45653, 35.89114), (7.725425, -33.45653, 36.34527), (5.812673, -33.45653, 36.699776), (3.8839893, -33.45653, 36.95369), (1.9446597, -33.45653, 37.10632), (2.2752247e-15, -33.45653, 37.15724), (-1.9446597, -33.45653, 37.10632), (-3.8839893, -33.45653, 36.95369), (-5.812673, -33.45653, 36.699776), (-7.725425, -33.45653, 36.34527), (-9.617002, -33.45653, 35.89114), (-11.482219, -33.45653, 35.33864), (-13.315965, -33.45653, 34.689274), (-15.113212, -33.45653, 33.944828), (-16.869034, -33.45653, 33.107346), (-18.57862, -33.45653, 32.179115), (-20.237284, -33.45653, 31.162685), (-21.840479, -33.45653, 30.06084), (-23.38381, -33.45653, 28.8766), (-24.863047, -33.45653, 27.61321), (-26.274137, -33.45653, 26.274137), (-27.61321, -33.45653, 24.863047), (-28.8766, -33.45653, 23.38381), (-30.06084, -33.45653, 21.840479), (-31.162685, -33.45653, 20.237284), (-32.179115, -33.45653, 18.57862), (-33.107346, -33.45653, 16.869034), (-33.944828, -33.45653, 15.113212), (-34.689274, -33.45653, 13.315965), (-35.33864, -33.45653, 11.482219), (-35.89114, -33.45653, 9.617002), (-36.34527, -33.45653, 7.725425), (-36.699776, -33.45653, 5.812673), (-36.95369, -33.45653, 3.8839893), (-37.10632, -33.45653, 1.9446597), (-37.15724, -33.45653, 4.5504495e-15), (-37.10632, -33.45653, -1.9446597), (-36.95369, -33.45653, -3.8839893), (-36.699776, -33.45653, -5.812673), (-36.34527, -33.45653, -7.725425), (-35.89114, -33.45653, -9.617002), (-35.33864, -33.45653, -11.482219), (-34.689274, -33.45653, -13.315965), (-33.944828, -33.45653, -15.113212), (-33.107346, -33.45653, -16.869034), (-32.179115, -33.45653, -18.57862), (-31.162685, -33.45653, -20.237284), (-30.06084, -33.45653, -21.840479), (-28.8766, -33.45653, -23.38381), (-27.61321, -33.45653, -24.863047), (-26.274137, -33.45653, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.38381, -33.45653, -28.8766), (-21.840479, -33.45653, -30.06084), (-20.237284, -33.45653, -31.162685), (-18.57862, -33.45653, -32.179115), (-16.869034, -33.45653, -33.107346), (-15.113212, -33.45653, -33.944828), (-13.315965, -33.45653, -34.689274), (-11.482219, -33.45653, -35.33864), (-9.617002, -33.45653, -35.89114), (-7.725425, -33.45653, -36.34527), (-5.812673, -33.45653, -36.699776), (-3.8839893, -33.45653, -36.95369), (-1.9446597, -33.45653, -37.10632), (-6.8256744e-15, -33.45653, -37.15724), (1.9446597, -33.45653, -37.10632), (3.8839893, -33.45653, -36.95369), (5.812673, -33.45653, -36.699776), (7.725425, -33.45653, -36.34527), (9.617002, -33.45653, -35.89114), (11.482219, -33.45653, -35.33864), (13.315965, -33.45653, -34.689274), (15.113212, -33.45653, -33.944828), (16.869034, -33.45653, -33.107346), (18.57862, -33.45653, -32.179115), (20.237284, -33.45653, -31.162685), (21.840479, -33.45653, -30.06084), (23.38381, -33.45653, -28.8766), (24.863047, -33.45653, -27.61321), (26.274137, -33.45653, -26.274137), (27.61321, -33.45653, -24.863047), (28.8766, -33.45653, -23.38381), (30.06084, -33.45653, -21.840479), (31.162685, -33.45653, -20.237284), (32.179115, -33.45653, -18.57862), (33.107346, -33.45653, -16.869034), (33.944828, -33.45653, -15.113212), (34.689274, -33.45653, -13.315965), (35.33864, -33.45653, -11.482219), (35.89114, -33.45653, -9.617002), (36.34527, -33.45653, -7.725425), (36.699776, -33.45653, -5.812673), (36.95369, -33.45653, -3.8839893), (37.10632, -33.45653, -1.9446597), (38.8573, -31.466019, 0), (38.804047, -31.466019, 2.033634), (38.644432, -31.466019, 4.0616937), (38.3789, -31.466019, 6.0786204), (38.00817, -31.466019, 8.078887), (37.533268, -31.466019, 10.057009), (36.955486, -31.466019, 12.0075655), (36.276413, -31.466019, 13.92521), (35.49791, -31.466019, 15.804687), (34.622105, -31.466019, 17.640844), (33.65141, -31.466019, 19.42865), (32.58847, -31.466019, 21.1632), (31.436214, -31.466019, 22.839746), (30.197792, -31.466019, 24.45369), (28.8766, -31.466019, 26.000607), (27.47626, -31.466019, 27.47626), (26.000607, -31.466019, 28.8766), (24.45369, -31.466019, 30.197792), (22.839746, -31.466019, 31.436214), (21.1632, -31.466019, 32.58847), (19.42865, -31.466019, 33.65141), (17.640844, -31.466019, 34.622105), (15.804687, -31.466019, 35.49791), (13.92521, -31.466019, 36.276413), (12.0075655, -31.466019, 36.955486), (10.057009, -31.466019, 37.533268), (8.078887, -31.466019, 38.00817), (6.0786204, -31.466019, 38.3789), (4.0616937, -31.466019, 38.644432), (2.033634, -31.466019, 38.804047), (2.3793234e-15, -31.466019, 38.8573), (-2.033634, -31.466019, 38.804047), (-4.0616937, -31.466019, 38.644432), (-6.0786204, -31.466019, 38.3789), (-8.078887, -31.466019, 38.00817), (-10.057009, -31.466019, 37.533268), (-12.0075655, -31.466019, 36.955486), (-13.92521, -31.466019, 36.276413), (-15.804687, -31.466019, 35.49791), (-17.640844, -31.466019, 34.622105), (-19.42865, -31.466019, 33.65141), (-21.1632, -31.466019, 32.58847), (-22.839746, -31.466019, 31.436214), (-24.45369, -31.466019, 30.197792), (-26.000607, -31.466019, 28.8766), (-27.47626, -31.466019, 27.47626), (-28.8766, -31.466019, 26.000607), (-30.197792, -31.466019, 24.45369), (-31.436214, -31.466019, 22.839746), (-32.58847, -31.466019, 21.1632), (-33.65141, -31.466019, 19.42865), (-34.622105, -31.466019, 17.640844), (-35.49791, -31.466019, 15.804687), (-36.276413, -31.466019, 13.92521), (-36.955486, -31.466019, 12.0075655), (-37.533268, -31.466019, 10.057009), (-38.00817, -31.466019, 8.078887), (-38.3789, -31.466019, 6.0786204), (-38.644432, -31.466019, 4.0616937), (-38.804047, -31.466019, 2.033634), (-38.8573, -31.466019, 4.7586468e-15), (-38.804047, -31.466019, -2.033634), (-38.644432, -31.466019, -4.0616937), (-38.3789, -31.466019, -6.0786204), (-38.00817, -31.466019, -8.078887), (-37.533268, -31.466019, -10.057009), (-36.955486, -31.466019, -12.0075655), (-36.276413, -31.466019, -13.92521), (-35.49791, -31.466019, -15.804687), (-34.622105, -31.466019, -17.640844), (-33.65141, -31.466019, -19.42865), (-32.58847, -31.466019, -21.1632), (-31.436214, -31.466019, -22.839746), (-30.197792, -31.466019, -24.45369), (-28.8766, -31.466019, -26.000607), (-27.47626, -31.466019, -27.47626), (-26.000607, -31.466019, -28.8766), (-24.45369, -31.466019, -30.197792), (-22.839746, -31.466019, -31.436214), (-21.1632, -31.466019, -32.58847), (-19.42865, -31.466019, -33.65141), (-17.640844, -31.466019, -34.622105), (-15.804687, -31.466019, -35.49791), (-13.92521, -31.466019, -36.276413), (-12.0075655, -31.466019, -36.955486), (-10.057009, -31.466019, -37.533268), (-8.078887, -31.466019, -38.00817), (-6.0786204, -31.466019, -38.3789), (-4.0616937, -31.466019, -38.644432), (-2.033634, -31.466019, -38.804047), (-7.1379695e-15, -31.466019, -38.8573), (2.033634, -31.466019, -38.804047), (4.0616937, -31.466019, -38.644432), (6.0786204, -31.466019, -38.3789), (8.078887, -31.466019, -38.00817), (10.057009, -31.466019, -37.533268), (12.0075655, -31.466019, -36.955486), (13.92521, -31.466019, -36.276413), (15.804687, -31.466019, -35.49791), (17.640844, -31.466019, -34.622105), (19.42865, -31.466019, -33.65141), (21.1632, -31.466019, -32.58847), (22.839746, -31.466019, -31.436214), (24.45369, -31.466019, -30.197792), (26.000607, -31.466019, -28.8766), (27.47626, -31.466019, -27.47626), (28.8766, -31.466019, -26.000607), (30.197792, -31.466019, -24.45369), (31.436214, -31.466019, -22.839746), (32.58847, -31.466019, -21.1632), (33.65141, -31.466019, -19.42865), (34.622105, -31.466019, -17.640844), (35.49791, -31.466019, -15.804687), (36.276413, -31.466019, -13.92521), (36.955486, -31.466019, -12.0075655), (37.533268, -31.466019, -10.057009), (38.00817, -31.466019, -8.078887), (38.3789, -31.466019, -6.0786204), (38.644432, -31.466019, -4.0616937), (38.804047, -31.466019, -2.033634), (40.45085, -29.389263, 0), (40.395412, -29.389263, 2.117034), (40.229256, -29.389263, 4.2282653), (39.95283, -29.389263, 6.327907), (39.566902, -29.389263, 8.410205), (39.07252, -29.389263, 10.46945), (38.471043, -29.389263, 12.5), (37.764122, -29.389263, 14.496288), (36.95369, -29.389263, 16.452843), (36.04197, -29.389263, 18.364302), (35.031464, -29.389263, 20.225426), (33.92494, -29.389263, 22.031113), (32.725426, -29.389263, 23.776413), (31.436214, -29.389263, 25.456545), (30.06084, -29.389263, 27.066902), (28.60307, -29.389263, 28.60307), (27.066902, -29.389263, 30.06084), (25.456545, -29.389263, 31.436214), (23.776413, -29.389263, 32.725426), (22.031113, -29.389263, 33.92494), (20.225426, -29.389263, 35.031464), (18.364302, -29.389263, 36.04197), (16.452843, -29.389263, 36.95369), (14.496288, -29.389263, 37.764122), (12.5, -29.389263, 38.471043), (10.46945, -29.389263, 39.07252), (8.410205, -29.389263, 39.566902), (6.327907, -29.389263, 39.95283), (4.2282653, -29.389263, 40.229256), (2.117034, -29.389263, 40.395412), (2.4769e-15, -29.389263, 40.45085), (-2.117034, -29.389263, 40.395412), (-4.2282653, -29.389263, 40.229256), (-6.327907, -29.389263, 39.95283), (-8.410205, -29.389263, 39.566902), (-10.46945, -29.389263, 39.07252), (-12.5, -29.389263, 38.471043), (-14.496288, -29.389263, 37.764122), (-16.452843, -29.389263, 36.95369), (-18.364302, -29.389263, 36.04197), (-20.225426, -29.389263, 35.031464), (-22.031113, -29.389263, 33.92494), (-23.776413, -29.389263, 32.725426), (-25.456545, -29.389263, 31.436214), (-27.066902, -29.389263, 30.06084), (-28.60307, -29.389263, 28.60307), (-30.06084, -29.389263, 27.066902), (-31.436214, -29.389263, 25.456545), (-32.725426, -29.389263, 23.776413), (-33.92494, -29.389263, 22.031113), (-35.031464, -29.389263, 20.225426), (-36.04197, -29.389263, 18.364302), (-36.95369, -29.389263, 16.452843), (-37.764122, -29.389263, 14.496288), (-38.471043, -29.389263, 12.5), (-39.07252, -29.389263, 10.46945), (-39.566902, -29.389263, 8.410205), (-39.95283, -29.389263, 6.327907), (-40.229256, -29.389263, 4.2282653), (-40.395412, -29.389263, 2.117034), (-40.45085, -29.389263, 4.9538e-15), (-40.395412, -29.389263, -2.117034), (-40.229256, -29.389263, -4.2282653), (-39.95283, -29.389263, -6.327907), (-39.566902, -29.389263, -8.410205), (-39.07252, -29.389263, -10.46945), (-38.471043, -29.389263, -12.5), (-37.764122, -29.389263, -14.496288), (-36.95369, -29.389263, -16.452843), (-36.04197, -29.389263, -18.364302), (-35.031464, -29.389263, -20.225426), (-33.92494, -29.389263, -22.031113), (-32.725426, -29.389263, -23.776413), (-31.436214, -29.389263, -25.456545), (-30.06084, -29.389263, -27.066902), (-28.60307, -29.389263, -28.60307), (-27.066902, -29.389263, -30.06084), (-25.456545, -29.389263, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.031113, -29.389263, -33.92494), (-20.225426, -29.389263, -35.031464), (-18.364302, -29.389263, -36.04197), (-16.452843, -29.389263, -36.95369), (-14.496288, -29.389263, -37.764122), (-12.5, -29.389263, -38.471043), (-10.46945, -29.389263, -39.07252), (-8.410205, -29.389263, -39.566902), (-6.327907, -29.389263, -39.95283), (-4.2282653, -29.389263, -40.229256), (-2.117034, -29.389263, -40.395412), (-7.430701e-15, -29.389263, -40.45085), (2.117034, -29.389263, -40.395412), (4.2282653, -29.389263, -40.229256), (6.327907, -29.389263, -39.95283), (8.410205, -29.389263, -39.566902), (10.46945, -29.389263, -39.07252), (12.5, -29.389263, -38.471043), (14.496288, -29.389263, -37.764122), (16.452843, -29.389263, -36.95369), (18.364302, -29.389263, -36.04197), (20.225426, -29.389263, -35.031464), (22.031113, -29.389263, -33.92494), (23.776413, -29.389263, -32.725426), (25.456545, -29.389263, -31.436214), (27.066902, -29.389263, -30.06084), (28.60307, -29.389263, -28.60307), (30.06084, -29.389263, -27.066902), (31.436214, -29.389263, -25.456545), (32.725426, -29.389263, -23.776413), (33.92494, -29.389263, -22.031113), (35.031464, -29.389263, -20.225426), (36.04197, -29.389263, -18.364302), (36.95369, -29.389263, -16.452843), (37.764122, -29.389263, -14.496288), (38.471043, -29.389263, -12.5), (39.07252, -29.389263, -10.46945), (39.566902, -29.389263, -8.410205), (39.95283, -29.389263, -6.327907), (40.229256, -29.389263, -4.2282653), (40.395412, -29.389263, -2.117034), (41.93353, -27.231953, 0), (41.87606, -27.231953, 2.1946313), (41.70381, -27.231953, 4.3832474), (41.417255, -27.231953, 6.5598493), (41.01718, -27.231953, 8.718471), (40.504677, -27.231953, 10.853196), (39.881157, -27.231953, 12.958173), (39.148323, -27.231953, 15.027633), (38.308186, -27.231953, 17.055902), (37.36305, -27.231953, 19.037424), (36.315502, -27.231953, 20.966764), (35.168415, -27.231953, 22.838636), (33.92494, -27.231953, 24.64791), (32.58847, -27.231953, 26.389624), (31.162685, -27.231953, 28.059008), (29.651482, -27.231953, 29.651482), (28.059008, -27.231953, 31.162685), (26.389624, -27.231953, 32.58847), (24.64791, -27.231953, 33.92494), (22.838636, -27.231953, 35.168415), (20.966764, -27.231953, 36.315502), (19.037424, -27.231953, 37.36305), (17.055902, -27.231953, 38.308186), (15.027633, -27.231953, 39.148323), (12.958173, -27.231953, 39.881157), (10.853196, -27.231953, 40.504677), (8.718471, -27.231953, 41.01718), (6.5598493, -27.231953, 41.417255), (4.3832474, -27.231953, 41.70381), (2.1946313, -27.231953, 41.87606), (2.567688e-15, -27.231953, 41.93353), (-2.1946313, -27.231953, 41.87606), (-4.3832474, -27.231953, 41.70381), (-6.5598493, -27.231953, 41.417255), (-8.718471, -27.231953, 41.01718), (-10.853196, -27.231953, 40.504677), (-12.958173, -27.231953, 39.881157), (-15.027633, -27.231953, 39.148323), (-17.055902, -27.231953, 38.308186), (-19.037424, -27.231953, 37.36305), (-20.966764, -27.231953, 36.315502), (-22.838636, -27.231953, 35.168415), (-24.64791, -27.231953, 33.92494), (-26.389624, -27.231953, 32.58847), (-28.059008, -27.231953, 31.162685), (-29.651482, -27.231953, 29.651482), (-31.162685, -27.231953, 28.059008), (-32.58847, -27.231953, 26.389624), (-33.92494, -27.231953, 24.64791), (-35.168415, -27.231953, 22.838636), (-36.315502, -27.231953, 20.966764), (-37.36305, -27.231953, 19.037424), (-38.308186, -27.231953, 17.055902), (-39.148323, -27.231953, 15.027633), (-39.881157, -27.231953, 12.958173), (-40.504677, -27.231953, 10.853196), (-41.01718, -27.231953, 8.718471), (-41.417255, -27.231953, 6.5598493), (-41.70381, -27.231953, 4.3832474), (-41.87606, -27.231953, 2.1946313), (-41.93353, -27.231953, 5.135376e-15), (-41.87606, -27.231953, -2.1946313), (-41.70381, -27.231953, -4.3832474), (-41.417255, -27.231953, -6.5598493), (-41.01718, -27.231953, -8.718471), (-40.504677, -27.231953, -10.853196), (-39.881157, -27.231953, -12.958173), (-39.148323, -27.231953, -15.027633), (-38.308186, -27.231953, -17.055902), (-37.36305, -27.231953, -19.037424), (-36.315502, -27.231953, -20.966764), (-35.168415, -27.231953, -22.838636), (-33.92494, -27.231953, -24.64791), (-32.58847, -27.231953, -26.389624), (-31.162685, -27.231953, -28.059008), (-29.651482, -27.231953, -29.651482), (-28.059008, -27.231953, -31.162685), (-26.389624, -27.231953, -32.58847), (-24.64791, -27.231953, -33.92494), (-22.838636, -27.231953, -35.168415), (-20.966764, -27.231953, -36.315502), (-19.037424, -27.231953, -37.36305), (-17.055902, -27.231953, -38.308186), (-15.027633, -27.231953, -39.148323), (-12.958173, -27.231953, -39.881157), (-10.853196, -27.231953, -40.504677), (-8.718471, -27.231953, -41.01718), (-6.5598493, -27.231953, -41.417255), (-4.3832474, -27.231953, -41.70381), (-2.1946313, -27.231953, -41.87606), (-7.703064e-15, -27.231953, -41.93353), (2.1946313, -27.231953, -41.87606), (4.3832474, -27.231953, -41.70381), (6.5598493, -27.231953, -41.417255), (8.718471, -27.231953, -41.01718), (10.853196, -27.231953, -40.504677), (12.958173, -27.231953, -39.881157), (15.027633, -27.231953, -39.148323), (17.055902, -27.231953, -38.308186), (19.037424, -27.231953, -37.36305), (20.966764, -27.231953, -36.315502), (22.838636, -27.231953, -35.168415), (24.64791, -27.231953, -33.92494), (26.389624, -27.231953, -32.58847), (28.059008, -27.231953, -31.162685), (29.651482, -27.231953, -29.651482), (31.162685, -27.231953, -28.059008), (32.58847, -27.231953, -26.389624), (33.92494, -27.231953, -24.64791), (35.168415, -27.231953, -22.838636), (36.315502, -27.231953, -20.966764), (37.36305, -27.231953, -19.037424), (38.308186, -27.231953, -17.055902), (39.148323, -27.231953, -15.027633), (39.881157, -27.231953, -12.958173), (40.504677, -27.231953, -10.853196), (41.01718, -27.231953, -8.718471), (41.417255, -27.231953, -6.5598493), (41.70381, -27.231953, -4.3832474), (41.87606, -27.231953, -2.1946313), (43.30127, -25, 0), (43.24193, -25, 2.2662134), (43.06406, -25, 4.526215), (42.768158, -25, 6.773811), (42.355034, -25, 9.00284), (41.825813, -25, 11.207193), (41.181953, -25, 13.380828), (40.425217, -25, 15.517787), (39.55768, -25, 17.612213), (38.581715, -25, 19.658365), (37.5, -25, 21.650635), (36.315502, -25, 23.583563), (35.031464, -25, 25.451847), (33.65141, -25, 27.250372), (32.179115, -25, 28.974205), (30.618622, -25, 30.618622), (28.974205, -25, 32.179115), (27.250372, -25, 33.65141), (25.451847, -25, 35.031464), (23.583563, -25, 36.315502), (21.650635, -25, 37.5), (19.658365, -25, 38.581715), (17.612213, -25, 39.55768), (15.517787, -25, 40.425217), (13.380828, -25, 41.181953), (11.207193, -25, 41.825813), (9.00284, -25, 42.355034), (6.773811, -25, 42.768158), (4.526215, -25, 43.06406), (2.2662134, -25, 43.24193), (2.651438e-15, -25, 43.30127), (-2.2662134, -25, 43.24193), (-4.526215, -25, 43.06406), (-6.773811, -25, 42.768158), (-9.00284, -25, 42.355034), (-11.207193, -25, 41.825813), (-13.380828, -25, 41.181953), (-15.517787, -25, 40.425217), (-17.612213, -25, 39.55768), (-19.658365, -25, 38.581715), (-21.650635, -25, 37.5), (-23.583563, -25, 36.315502), (-25.451847, -25, 35.031464), (-27.250372, -25, 33.65141), (-28.974205, -25, 32.179115), (-30.618622, -25, 30.618622), (-32.179115, -25, 28.974205), (-33.65141, -25, 27.250372), (-35.031464, -25, 25.451847), (-36.315502, -25, 23.583563), (-37.5, -25, 21.650635), (-38.581715, -25, 19.658365), (-39.55768, -25, 17.612213), (-40.425217, -25, 15.517787), (-41.181953, -25, 13.380828), (-41.825813, -25, 11.207193), (-42.355034, -25, 9.00284), (-42.768158, -25, 6.773811), (-43.06406, -25, 4.526215), (-43.24193, -25, 2.2662134), (-43.30127, -25, 5.302876e-15), (-43.24193, -25, -2.2662134), (-43.06406, -25, -4.526215), (-42.768158, -25, -6.773811), (-42.355034, -25, -9.00284), (-41.825813, -25, -11.207193), (-41.181953, -25, -13.380828), (-40.425217, -25, -15.517787), (-39.55768, -25, -17.612213), (-38.581715, -25, -19.658365), (-37.5, -25, -21.650635), (-36.315502, -25, -23.583563), (-35.031464, -25, -25.451847), (-33.65141, -25, -27.250372), (-32.179115, -25, -28.974205), (-30.618622, -25, -30.618622), (-28.974205, -25, -32.179115), (-27.250372, -25, -33.65141), (-25.451847, -25, -35.031464), (-23.583563, -25, -36.315502), (-21.650635, -25, -37.5), (-19.658365, -25, -38.581715), (-17.612213, -25, -39.55768), (-15.517787, -25, -40.425217), (-13.380828, -25, -41.181953), (-11.207193, -25, -41.825813), (-9.00284, -25, -42.355034), (-6.773811, -25, -42.768158), (-4.526215, -25, -43.06406), (-2.2662134, -25, -43.24193), (-7.9543145e-15, -25, -43.30127), (2.2662134, -25, -43.24193), (4.526215, -25, -43.06406), (6.773811, -25, -42.768158), (9.00284, -25, -42.355034), (11.207193, -25, -41.825813), (13.380828, -25, -41.181953), (15.517787, -25, -40.425217), (17.612213, -25, -39.55768), (19.658365, -25, -38.581715), (21.650635, -25, -37.5), (23.583563, -25, -36.315502), (25.451847, -25, -35.031464), (27.250372, -25, -33.65141), (28.974205, -25, -32.179115), (30.618622, -25, -30.618622), (32.179115, -25, -28.974205), (33.65141, -25, -27.250372), (35.031464, -25, -25.451847), (36.315502, -25, -23.583563), (37.5, -25, -21.650635), (38.581715, -25, -19.658365), (39.55768, -25, -17.612213), (40.425217, -25, -15.517787), (41.181953, -25, -13.380828), (41.825813, -25, -11.207193), (42.355034, -25, -9.00284), (42.768158, -25, -6.773811), (43.06406, -25, -4.526215), (43.24193, -25, -2.2662134), (44.550327, -22.699526, 0), (44.489273, -22.699526, 2.331584), (44.306274, -22.699526, 4.656777), (44.00184, -22.699526, 6.9692063), (43.576794, -22.699526, 9.262533), (43.03231, -22.699526, 11.530473), (42.369877, -22.699526, 13.766808), (41.591312, -22.699526, 15.965409), (40.69875, -22.699526, 18.12025), (39.69463, -22.699526, 20.225426), (38.581715, -22.699526, 22.275164), (37.36305, -22.699526, 24.263847), (36.04197, -22.699526, 26.186026), (34.622105, -22.699526, 28.036428), (33.107346, -22.699526, 29.809986), (31.501839, -22.699526, 31.501839), (29.809986, -22.699526, 33.107346), (28.036428, -22.699526, 34.622105), (26.186026, -22.699526, 36.04197), (24.263847, -22.699526, 37.36305), (22.275164, -22.699526, 38.581715), (20.225426, -22.699526, 39.69463), (18.12025, -22.699526, 40.69875), (15.965409, -22.699526, 41.591312), (13.766808, -22.699526, 42.369877), (11.530473, -22.699526, 43.03231), (9.262533, -22.699526, 43.576794), (6.9692063, -22.699526, 44.00184), (4.656777, -22.699526, 44.306274), (2.331584, -22.699526, 44.489273), (2.7279206e-15, -22.699526, 44.550327), (-2.331584, -22.699526, 44.489273), (-4.656777, -22.699526, 44.306274), (-6.9692063, -22.699526, 44.00184), (-9.262533, -22.699526, 43.576794), (-11.530473, -22.699526, 43.03231), (-13.766808, -22.699526, 42.369877), (-15.965409, -22.699526, 41.591312), (-18.12025, -22.699526, 40.69875), (-20.225426, -22.699526, 39.69463), (-22.275164, -22.699526, 38.581715), (-24.263847, -22.699526, 37.36305), (-26.186026, -22.699526, 36.04197), (-28.036428, -22.699526, 34.622105), (-29.809986, -22.699526, 33.107346), (-31.501839, -22.699526, 31.501839), (-33.107346, -22.699526, 29.809986), (-34.622105, -22.699526, 28.036428), (-36.04197, -22.699526, 26.186026), (-37.36305, -22.699526, 24.263847), (-38.581715, -22.699526, 22.275164), (-39.69463, -22.699526, 20.225426), (-40.69875, -22.699526, 18.12025), (-41.591312, -22.699526, 15.965409), (-42.369877, -22.699526, 13.766808), (-43.03231, -22.699526, 11.530473), (-43.576794, -22.699526, 9.262533), (-44.00184, -22.699526, 6.9692063), (-44.306274, -22.699526, 4.656777), (-44.489273, -22.699526, 2.331584), (-44.550327, -22.699526, 5.4558413e-15), (-44.489273, -22.699526, -2.331584), (-44.306274, -22.699526, -4.656777), (-44.00184, -22.699526, -6.9692063), (-43.576794, -22.699526, -9.262533), (-43.03231, -22.699526, -11.530473), (-42.369877, -22.699526, -13.766808), (-41.591312, -22.699526, -15.965409), (-40.69875, -22.699526, -18.12025), (-39.69463, -22.699526, -20.225426), (-38.581715, -22.699526, -22.275164), (-37.36305, -22.699526, -24.263847), (-36.04197, -22.699526, -26.186026), (-34.622105, -22.699526, -28.036428), (-33.107346, -22.699526, -29.809986), (-31.501839, -22.699526, -31.501839), (-29.809986, -22.699526, -33.107346), (-28.036428, -22.699526, -34.622105), (-26.186026, -22.699526, -36.04197), (-24.263847, -22.699526, -37.36305), (-22.275164, -22.699526, -38.581715), (-20.225426, -22.699526, -39.69463), (-18.12025, -22.699526, -40.69875), (-15.965409, -22.699526, -41.591312), (-13.766808, -22.699526, -42.369877), (-11.530473, -22.699526, -43.03231), (-9.262533, -22.699526, -43.576794), (-6.9692063, -22.699526, -44.00184), (-4.656777, -22.699526, -44.306274), (-2.331584, -22.699526, -44.489273), (-8.183762e-15, -22.699526, -44.550327), (2.331584, -22.699526, -44.489273), (4.656777, -22.699526, -44.306274), (6.9692063, -22.699526, -44.00184), (9.262533, -22.699526, -43.576794), (11.530473, -22.699526, -43.03231), (13.766808, -22.699526, -42.369877), (15.965409, -22.699526, -41.591312), (18.12025, -22.699526, -40.69875), (20.225426, -22.699526, -39.69463), (22.275164, -22.699526, -38.581715), (24.263847, -22.699526, -37.36305), (26.186026, -22.699526, -36.04197), (28.036428, -22.699526, -34.622105), (29.809986, -22.699526, -33.107346), (31.501839, -22.699526, -31.501839), (33.107346, -22.699526, -29.809986), (34.622105, -22.699526, -28.036428), (36.04197, -22.699526, -26.186026), (37.36305, -22.699526, -24.263847), (38.581715, -22.699526, -22.275164), (39.69463, -22.699526, -20.225426), (40.69875, -22.699526, -18.12025), (41.591312, -22.699526, -15.965409), (42.369877, -22.699526, -13.766808), (43.03231, -22.699526, -11.530473), (43.576794, -22.699526, -9.262533), (44.00184, -22.699526, -6.9692063), (44.306274, -22.699526, -4.656777), (44.489273, -22.699526, -2.331584), (45.677273, -20.336832, 0), (45.614674, -20.336832, 2.3905637), (45.427048, -20.336832, 4.774575), (45.11491, -20.336832, 7.1454997), (44.679115, -20.336832, 9.496839), (44.120857, -20.336832, 11.822148), (43.44167, -20.336832, 14.115053), (42.64341, -20.336832, 16.36927), (41.728264, -20.336832, 18.57862), (40.69875, -20.336832, 20.737047), (39.55768, -20.336832, 22.838636), (38.308186, -20.336832, 24.877626), (36.95369, -20.336832, 26.848427), (35.49791, -20.336832, 28.74564), (33.944828, -20.336832, 30.564062), (32.29871, -20.336832, 32.29871), (30.564062, -20.336832, 33.944828), (28.74564, -20.336832, 35.49791), (26.848427, -20.336832, 36.95369), (24.877626, -20.336832, 38.308186), (22.838636, -20.336832, 39.55768), (20.737047, -20.336832, 40.69875), (18.57862, -20.336832, 41.728264), (16.36927, -20.336832, 42.64341), (14.115053, -20.336832, 43.44167), (11.822148, -20.336832, 44.120857), (9.496839, -20.336832, 44.679115), (7.1454997, -20.336832, 45.11491), (4.774575, -20.336832, 45.427048), (2.3905637, -20.336832, 45.614674), (2.7969263e-15, -20.336832, 45.677273), (-2.3905637, -20.336832, 45.614674), (-4.774575, -20.336832, 45.427048), (-7.1454997, -20.336832, 45.11491), (-9.496839, -20.336832, 44.679115), (-11.822148, -20.336832, 44.120857), (-14.115053, -20.336832, 43.44167), (-16.36927, -20.336832, 42.64341), (-18.57862, -20.336832, 41.728264), (-20.737047, -20.336832, 40.69875), (-22.838636, -20.336832, 39.55768), (-24.877626, -20.336832, 38.308186), (-26.848427, -20.336832, 36.95369), (-28.74564, -20.336832, 35.49791), (-30.564062, -20.336832, 33.944828), (-32.29871, -20.336832, 32.29871), (-33.944828, -20.336832, 30.564062), (-35.49791, -20.336832, 28.74564), (-36.95369, -20.336832, 26.848427), (-38.308186, -20.336832, 24.877626), (-39.55768, -20.336832, 22.838636), (-40.69875, -20.336832, 20.737047), (-41.728264, -20.336832, 18.57862), (-42.64341, -20.336832, 16.36927), (-43.44167, -20.336832, 14.115053), (-44.120857, -20.336832, 11.822148), (-44.679115, -20.336832, 9.496839), (-45.11491, -20.336832, 7.1454997), (-45.427048, -20.336832, 4.774575), (-45.614674, -20.336832, 2.3905637), (-45.677273, -20.336832, 5.5938526e-15), (-45.614674, -20.336832, -2.3905637), (-45.427048, -20.336832, -4.774575), (-45.11491, -20.336832, -7.1454997), (-44.679115, -20.336832, -9.496839), (-44.120857, -20.336832, -11.822148), (-43.44167, -20.336832, -14.115053), (-42.64341, -20.336832, -16.36927), (-41.728264, -20.336832, -18.57862), (-40.69875, -20.336832, -20.737047), (-39.55768, -20.336832, -22.838636), (-38.308186, -20.336832, -24.877626), (-36.95369, -20.336832, -26.848427), (-35.49791, -20.336832, -28.74564), (-33.944828, -20.336832, -30.564062), (-32.29871, -20.336832, -32.29871), (-30.564062, -20.336832, -33.944828), (-28.74564, -20.336832, -35.49791), (-26.848427, -20.336832, -36.95369), (-24.877626, -20.336832, -38.308186), (-22.838636, -20.336832, -39.55768), (-20.737047, -20.336832, -40.69875), (-18.57862, -20.336832, -41.728264), (-16.36927, -20.336832, -42.64341), (-14.115053, -20.336832, -43.44167), (-11.822148, -20.336832, -44.120857), (-9.496839, -20.336832, -44.679115), (-7.1454997, -20.336832, -45.11491), (-4.774575, -20.336832, -45.427048), (-2.3905637, -20.336832, -45.614674), (-8.390779e-15, -20.336832, -45.677273), (2.3905637, -20.336832, -45.614674), (4.774575, -20.336832, -45.427048), (7.1454997, -20.336832, -45.11491), (9.496839, -20.336832, -44.679115), (11.822148, -20.336832, -44.120857), (14.115053, -20.336832, -43.44167), (16.36927, -20.336832, -42.64341), (18.57862, -20.336832, -41.728264), (20.737047, -20.336832, -40.69875), (22.838636, -20.336832, -39.55768), (24.877626, -20.336832, -38.308186), (26.848427, -20.336832, -36.95369), (28.74564, -20.336832, -35.49791), (30.564062, -20.336832, -33.944828), (32.29871, -20.336832, -32.29871), (33.944828, -20.336832, -30.564062), (35.49791, -20.336832, -28.74564), (36.95369, -20.336832, -26.848427), (38.308186, -20.336832, -24.877626), (39.55768, -20.336832, -22.838636), (40.69875, -20.336832, -20.737047), (41.728264, -20.336832, -18.57862), (42.64341, -20.336832, -16.36927), (43.44167, -20.336832, -14.115053), (44.120857, -20.336832, -11.822148), (44.679115, -20.336832, -9.496839), (45.11491, -20.336832, -7.1454997), (45.427048, -20.336832, -4.774575), (45.614674, -20.336832, -2.3905637), (46.67902, -17.918398, 0), (46.615047, -17.918398, 2.4429913), (46.42331, -17.918398, 4.8792863), (46.104324, -17.918398, 7.302208), (45.658974, -17.918398, 9.705114), (45.08847, -17.918398, 12.08142), (44.394386, -17.918398, 14.424611), (43.57862, -17.918398, 16.728266), (42.64341, -17.918398, 18.986069), (41.591312, -17.918398, 21.191832), (40.425217, -17.918398, 23.33951), (39.148323, -17.918398, 25.423218), (37.764122, -17.918398, 27.43724), (36.276413, -17.918398, 29.37606), (34.689274, -17.918398, 31.234362), (33.007053, -17.918398, 33.007053), (31.234362, -17.918398, 34.689274), (29.37606, -17.918398, 36.276413), (27.43724, -17.918398, 37.764122), (25.423218, -17.918398, 39.148323), (23.33951, -17.918398, 40.425217), (21.191832, -17.918398, 41.591312), (18.986069, -17.918398, 42.64341), (16.728266, -17.918398, 43.57862), (14.424611, -17.918398, 44.394386), (12.08142, -17.918398, 45.08847), (9.705114, -17.918398, 45.658974), (7.302208, -17.918398, 46.104324), (4.8792863, -17.918398, 46.42331), (2.4429913, -17.918398, 46.615047), (2.8582657e-15, -17.918398, 46.67902), (-2.4429913, -17.918398, 46.615047), (-4.8792863, -17.918398, 46.42331), (-7.302208, -17.918398, 46.104324), (-9.705114, -17.918398, 45.658974), (-12.08142, -17.918398, 45.08847), (-14.424611, -17.918398, 44.394386), (-16.728266, -17.918398, 43.57862), (-18.986069, -17.918398, 42.64341), (-21.191832, -17.918398, 41.591312), (-23.33951, -17.918398, 40.425217), (-25.423218, -17.918398, 39.148323), (-27.43724, -17.918398, 37.764122), (-29.37606, -17.918398, 36.276413), (-31.234362, -17.918398, 34.689274), (-33.007053, -17.918398, 33.007053), (-34.689274, -17.918398, 31.234362), (-36.276413, -17.918398, 29.37606), (-37.764122, -17.918398, 27.43724), (-39.148323, -17.918398, 25.423218), (-40.425217, -17.918398, 23.33951), (-41.591312, -17.918398, 21.191832), (-42.64341, -17.918398, 18.986069), (-43.57862, -17.918398, 16.728266), (-44.394386, -17.918398, 14.424611), (-45.08847, -17.918398, 12.08142), (-45.658974, -17.918398, 9.705114), (-46.104324, -17.918398, 7.302208), (-46.42331, -17.918398, 4.8792863), (-46.615047, -17.918398, 2.4429913), (-46.67902, -17.918398, 5.7165313e-15), (-46.615047, -17.918398, -2.4429913), (-46.42331, -17.918398, -4.8792863), (-46.104324, -17.918398, -7.302208), (-45.658974, -17.918398, -9.705114), (-45.08847, -17.918398, -12.08142), (-44.394386, -17.918398, -14.424611), (-43.57862, -17.918398, -16.728266), (-42.64341, -17.918398, -18.986069), (-41.591312, -17.918398, -21.191832), (-40.425217, -17.918398, -23.33951), (-39.148323, -17.918398, -25.423218), (-37.764122, -17.918398, -27.43724), (-36.276413, -17.918398, -29.37606), (-34.689274, -17.918398, -31.234362), (-33.007053, -17.918398, -33.007053), (-31.234362, -17.918398, -34.689274), (-29.37606, -17.918398, -36.276413), (-27.43724, -17.918398, -37.764122), (-25.423218, -17.918398, -39.148323), (-23.33951, -17.918398, -40.425217), (-21.191832, -17.918398, -41.591312), (-18.986069, -17.918398, -42.64341), (-16.728266, -17.918398, -43.57862), (-14.424611, -17.918398, -44.394386), (-12.08142, -17.918398, -45.08847), (-9.705114, -17.918398, -45.658974), (-7.302208, -17.918398, -46.104324), (-4.8792863, -17.918398, -46.42331), (-2.4429913, -17.918398, -46.615047), (-8.5747974e-15, -17.918398, -46.67902), (2.4429913, -17.918398, -46.615047), (4.8792863, -17.918398, -46.42331), (7.302208, -17.918398, -46.104324), (9.705114, -17.918398, -45.658974), (12.08142, -17.918398, -45.08847), (14.424611, -17.918398, -44.394386), (16.728266, -17.918398, -43.57862), (18.986069, -17.918398, -42.64341), (21.191832, -17.918398, -41.591312), (23.33951, -17.918398, -40.425217), (25.423218, -17.918398, -39.148323), (27.43724, -17.918398, -37.764122), (29.37606, -17.918398, -36.276413), (31.234362, -17.918398, -34.689274), (33.007053, -17.918398, -33.007053), (34.689274, -17.918398, -31.234362), (36.276413, -17.918398, -29.37606), (37.764122, -17.918398, -27.43724), (39.148323, -17.918398, -25.423218), (40.425217, -17.918398, -23.33951), (41.591312, -17.918398, -21.191832), (42.64341, -17.918398, -18.986069), (43.57862, -17.918398, -16.728266), (44.394386, -17.918398, -14.424611), (45.08847, -17.918398, -12.08142), (45.658974, -17.918398, -9.705114), (46.104324, -17.918398, -7.302208), (46.42331, -17.918398, -4.8792863), (46.615047, -17.918398, -2.4429913), (47.552826, -15.45085, 0), (47.487656, -15.45085, 2.4887226), (47.292328, -15.45085, 4.970624), (46.967373, -15.45085, 7.438901), (46.513683, -15.45085, 9.886788), (45.932503, -15.45085, 12.307577), (45.225426, -15.45085, 14.694632), (44.394386, -15.45085, 17.041409), (43.44167, -15.45085, 19.341476), (42.369877, -15.45085, 21.588531), (41.181953, -15.45085, 23.776413), (39.881157, -15.45085, 25.899126), (38.471043, -15.45085, 27.95085), (36.955486, -15.45085, 29.925962), (35.33864, -15.45085, 31.819052), (33.624924, -15.45085, 33.624924), (31.819052, -15.45085, 35.33864), (29.925962, -15.45085, 36.955486), (27.95085, -15.45085, 38.471043), (25.899126, -15.45085, 39.881157), (23.776413, -15.45085, 41.181953), (21.588531, -15.45085, 42.369877), (19.341476, -15.45085, 43.44167), (17.041409, -15.45085, 44.394386), (14.694632, -15.45085, 45.225426), (12.307577, -15.45085, 45.932503), (9.886788, -15.45085, 46.513683), (7.438901, -15.45085, 46.967373), (4.970624, -15.45085, 47.292328), (2.4887226, -15.45085, 47.487656), (2.9117708e-15, -15.45085, 47.552826), (-2.4887226, -15.45085, 47.487656), (-4.970624, -15.45085, 47.292328), (-7.438901, -15.45085, 46.967373), (-9.886788, -15.45085, 46.513683), (-12.307577, -15.45085, 45.932503), (-14.694632, -15.45085, 45.225426), (-17.041409, -15.45085, 44.394386), (-19.341476, -15.45085, 43.44167), (-21.588531, -15.45085, 42.369877), (-23.776413, -15.45085, 41.181953), (-25.899126, -15.45085, 39.881157), (-27.95085, -15.45085, 38.471043), (-29.925962, -15.45085, 36.955486), (-31.819052, -15.45085, 35.33864), (-33.624924, -15.45085, 33.624924), (-35.33864, -15.45085, 31.819052), (-36.955486, -15.45085, 29.925962), (-38.471043, -15.45085, 27.95085), (-39.881157, -15.45085, 25.899126), (-41.181953, -15.45085, 23.776413), (-42.369877, -15.45085, 21.588531), (-43.44167, -15.45085, 19.341476), (-44.394386, -15.45085, 17.041409), (-45.225426, -15.45085, 14.694632), (-45.932503, -15.45085, 12.307577), (-46.513683, -15.45085, 9.886788), (-46.967373, -15.45085, 7.438901), (-47.292328, -15.45085, 4.970624), (-47.487656, -15.45085, 2.4887226), (-47.552826, -15.45085, 5.8235417e-15), (-47.487656, -15.45085, -2.4887226), (-47.292328, -15.45085, -4.970624), (-46.967373, -15.45085, -7.438901), (-46.513683, -15.45085, -9.886788), (-45.932503, -15.45085, -12.307577), (-45.225426, -15.45085, -14.694632), (-44.394386, -15.45085, -17.041409), (-43.44167, -15.45085, -19.341476), (-42.369877, -15.45085, -21.588531), (-41.181953, -15.45085, -23.776413), (-39.881157, -15.45085, -25.899126), (-38.471043, -15.45085, -27.95085), (-36.955486, -15.45085, -29.925962), (-35.33864, -15.45085, -31.819052), (-33.624924, -15.45085, -33.624924), (-31.819052, -15.45085, -35.33864), (-29.925962, -15.45085, -36.955486), (-27.95085, -15.45085, -38.471043), (-25.899126, -15.45085, -39.881157), (-23.776413, -15.45085, -41.181953), (-21.588531, -15.45085, -42.369877), (-19.341476, -15.45085, -43.44167), (-17.041409, -15.45085, -44.394386), (-14.694632, -15.45085, -45.225426), (-12.307577, -15.45085, -45.932503), (-9.886788, -15.45085, -46.513683), (-7.438901, -15.45085, -46.967373), (-4.970624, -15.45085, -47.292328), (-2.4887226, -15.45085, -47.487656), (-8.735313e-15, -15.45085, -47.552826), (2.4887226, -15.45085, -47.487656), (4.970624, -15.45085, -47.292328), (7.438901, -15.45085, -46.967373), (9.886788, -15.45085, -46.513683), (12.307577, -15.45085, -45.932503), (14.694632, -15.45085, -45.225426), (17.041409, -15.45085, -44.394386), (19.341476, -15.45085, -43.44167), (21.588531, -15.45085, -42.369877), (23.776413, -15.45085, -41.181953), (25.899126, -15.45085, -39.881157), (27.95085, -15.45085, -38.471043), (29.925962, -15.45085, -36.955486), (31.819052, -15.45085, -35.33864), (33.624924, -15.45085, -33.624924), (35.33864, -15.45085, -31.819052), (36.955486, -15.45085, -29.925962), (38.471043, -15.45085, -27.95085), (39.881157, -15.45085, -25.899126), (41.181953, -15.45085, -23.776413), (42.369877, -15.45085, -21.588531), (43.44167, -15.45085, -19.341476), (44.394386, -15.45085, -17.041409), (45.225426, -15.45085, -14.694632), (45.932503, -15.45085, -12.307577), (46.513683, -15.45085, -9.886788), (46.967373, -15.45085, -7.438901), (47.292328, -15.45085, -4.970624), (47.487656, -15.45085, -2.4887226), (48.29629, -12.940952, 0), (48.230103, -12.940952, 2.5276325), (48.03172, -12.940952, 5.048337), (47.701683, -12.940952, 7.5552044), (47.240902, -12.940952, 10.041364), (46.650635, -12.940952, 12.5), (45.932503, -12.940952, 14.924375), (45.08847, -12.940952, 17.307842), (44.120857, -12.940952, 19.643871), (43.03231, -12.940952, 21.926058), (41.825813, -12.940952, 24.148146), (40.504677, -12.940952, 26.304045), (39.07252, -12.940952, 28.387848), (37.533268, -12.940952, 30.39384), (35.89114, -12.940952, 32.31653), (34.150635, -12.940952, 34.150635), (32.31653, -12.940952, 35.89114), (30.39384, -12.940952, 37.533268), (28.387848, -12.940952, 39.07252), (26.304045, -12.940952, 40.504677), (24.148146, -12.940952, 41.825813), (21.926058, -12.940952, 43.03231), (19.643871, -12.940952, 44.120857), (17.307842, -12.940952, 45.08847), (14.924375, -12.940952, 45.932503), (12.5, -12.940952, 46.650635), (10.041364, -12.940952, 47.240902), (7.5552044, -12.940952, 47.701683), (5.048337, -12.940952, 48.03172), (2.5276325, -12.940952, 48.230103), (2.9572948e-15, -12.940952, 48.29629), (-2.5276325, -12.940952, 48.230103), (-5.048337, -12.940952, 48.03172), (-7.5552044, -12.940952, 47.701683), (-10.041364, -12.940952, 47.240902), (-12.5, -12.940952, 46.650635), (-14.924375, -12.940952, 45.932503), (-17.307842, -12.940952, 45.08847), (-19.643871, -12.940952, 44.120857), (-21.926058, -12.940952, 43.03231), (-24.148146, -12.940952, 41.825813), (-26.304045, -12.940952, 40.504677), (-28.387848, -12.940952, 39.07252), (-30.39384, -12.940952, 37.533268), (-32.31653, -12.940952, 35.89114), (-34.150635, -12.940952, 34.150635), (-35.89114, -12.940952, 32.31653), (-37.533268, -12.940952, 30.39384), (-39.07252, -12.940952, 28.387848), (-40.504677, -12.940952, 26.304045), (-41.825813, -12.940952, 24.148146), (-43.03231, -12.940952, 21.926058), (-44.120857, -12.940952, 19.643871), (-45.08847, -12.940952, 17.307842), (-45.932503, -12.940952, 14.924375), (-46.650635, -12.940952, 12.5), (-47.240902, -12.940952, 10.041364), (-47.701683, -12.940952, 7.5552044), (-48.03172, -12.940952, 5.048337), (-48.230103, -12.940952, 2.5276325), (-48.29629, -12.940952, 5.9145897e-15), (-48.230103, -12.940952, -2.5276325), (-48.03172, -12.940952, -5.048337), (-47.701683, -12.940952, -7.5552044), (-47.240902, -12.940952, -10.041364), (-46.650635, -12.940952, -12.5), (-45.932503, -12.940952, -14.924375), (-45.08847, -12.940952, -17.307842), (-44.120857, -12.940952, -19.643871), (-43.03231, -12.940952, -21.926058), (-41.825813, -12.940952, -24.148146), (-40.504677, -12.940952, -26.304045), (-39.07252, -12.940952, -28.387848), (-37.533268, -12.940952, -30.39384), (-35.89114, -12.940952, -32.31653), (-34.150635, -12.940952, -34.150635), (-32.31653, -12.940952, -35.89114), (-30.39384, -12.940952, -37.533268), (-28.387848, -12.940952, -39.07252), (-26.304045, -12.940952, -40.504677), (-24.148146, -12.940952, -41.825813), (-21.926058, -12.940952, -43.03231), (-19.643871, -12.940952, -44.120857), (-17.307842, -12.940952, -45.08847), (-14.924375, -12.940952, -45.932503), (-12.5, -12.940952, -46.650635), (-10.041364, -12.940952, -47.240902), (-7.5552044, -12.940952, -47.701683), (-5.048337, -12.940952, -48.03172), (-2.5276325, -12.940952, -48.230103), (-8.871885e-15, -12.940952, -48.29629), (2.5276325, -12.940952, -48.230103), (5.048337, -12.940952, -48.03172), (7.5552044, -12.940952, -47.701683), (10.041364, -12.940952, -47.240902), (12.5, -12.940952, -46.650635), (14.924375, -12.940952, -45.932503), (17.307842, -12.940952, -45.08847), (19.643871, -12.940952, -44.120857), (21.926058, -12.940952, -43.03231), (24.148146, -12.940952, -41.825813), (26.304045, -12.940952, -40.504677), (28.387848, -12.940952, -39.07252), (30.39384, -12.940952, -37.533268), (32.31653, -12.940952, -35.89114), (34.150635, -12.940952, -34.150635), (35.89114, -12.940952, -32.31653), (37.533268, -12.940952, -30.39384), (39.07252, -12.940952, -28.387848), (40.504677, -12.940952, -26.304045), (41.825813, -12.940952, -24.148146), (43.03231, -12.940952, -21.926058), (44.120857, -12.940952, -19.643871), (45.08847, -12.940952, -17.307842), (45.932503, -12.940952, -14.924375), (46.650635, -12.940952, -12.5), (47.240902, -12.940952, -10.041364), (47.701683, -12.940952, -7.5552044), (48.03172, -12.940952, -5.048337), (48.230103, -12.940952, -2.5276325), (48.90738, -10.395584, 0), (48.840355, -10.395584, 2.5596144), (48.63946, -10.395584, 5.112213), (48.30525, -10.395584, 7.6507998), (47.83864, -10.395584, 10.168416), (47.240902, -10.395584, 12.658161), (46.513683, -10.395584, 15.113212), (45.658974, -10.395584, 17.526838), (44.679115, -10.395584, 19.892424), (43.576794, -10.395584, 22.203485), (42.355034, -10.395584, 24.45369), (41.01718, -10.395584, 26.636868), (39.566902, -10.395584, 28.747036), (38.00817, -10.395584, 30.778412), (36.34527, -10.395584, 32.725426), (34.58274, -10.395584, 34.58274), (32.725426, -10.395584, 36.34527), (30.778412, -10.395584, 38.00817), (28.747036, -10.395584, 39.566902), (26.636868, -10.395584, 41.01718), (24.45369, -10.395584, 42.355034), (22.203485, -10.395584, 43.576794), (19.892424, -10.395584, 44.679115), (17.526838, -10.395584, 45.658974), (15.113212, -10.395584, 46.513683), (12.658161, -10.395584, 47.240902), (10.168416, -10.395584, 47.83864), (7.6507998, -10.395584, 48.30525), (5.112213, -10.395584, 48.63946), (2.5596144, -10.395584, 48.840355), (2.9947134e-15, -10.395584, 48.90738), (-2.5596144, -10.395584, 48.840355), (-5.112213, -10.395584, 48.63946), (-7.6507998, -10.395584, 48.30525), (-10.168416, -10.395584, 47.83864), (-12.658161, -10.395584, 47.240902), (-15.113212, -10.395584, 46.513683), (-17.526838, -10.395584, 45.658974), (-19.892424, -10.395584, 44.679115), (-22.203485, -10.395584, 43.576794), (-24.45369, -10.395584, 42.355034), (-26.636868, -10.395584, 41.01718), (-28.747036, -10.395584, 39.566902), (-30.778412, -10.395584, 38.00817), (-32.725426, -10.395584, 36.34527), (-34.58274, -10.395584, 34.58274), (-36.34527, -10.395584, 32.725426), (-38.00817, -10.395584, 30.778412), (-39.566902, -10.395584, 28.747036), (-41.01718, -10.395584, 26.636868), (-42.355034, -10.395584, 24.45369), (-43.576794, -10.395584, 22.203485), (-44.679115, -10.395584, 19.892424), (-45.658974, -10.395584, 17.526838), (-46.513683, -10.395584, 15.113212), (-47.240902, -10.395584, 12.658161), (-47.83864, -10.395584, 10.168416), (-48.30525, -10.395584, 7.6507998), (-48.63946, -10.395584, 5.112213), (-48.840355, -10.395584, 2.5596144), (-48.90738, -10.395584, 5.9894267e-15), (-48.840355, -10.395584, -2.5596144), (-48.63946, -10.395584, -5.112213), (-48.30525, -10.395584, -7.6507998), (-47.83864, -10.395584, -10.168416), (-47.240902, -10.395584, -12.658161), (-46.513683, -10.395584, -15.113212), (-45.658974, -10.395584, -17.526838), (-44.679115, -10.395584, -19.892424), (-43.576794, -10.395584, -22.203485), (-42.355034, -10.395584, -24.45369), (-41.01718, -10.395584, -26.636868), (-39.566902, -10.395584, -28.747036), (-38.00817, -10.395584, -30.778412), (-36.34527, -10.395584, -32.725426), (-34.58274, -10.395584, -34.58274), (-32.725426, -10.395584, -36.34527), (-30.778412, -10.395584, -38.00817), (-28.747036, -10.395584, -39.566902), (-26.636868, -10.395584, -41.01718), (-24.45369, -10.395584, -42.355034), (-22.203485, -10.395584, -43.576794), (-19.892424, -10.395584, -44.679115), (-17.526838, -10.395584, -45.658974), (-15.113212, -10.395584, -46.513683), (-12.658161, -10.395584, -47.240902), (-10.168416, -10.395584, -47.83864), (-7.6507998, -10.395584, -48.30525), (-5.112213, -10.395584, -48.63946), (-2.5596144, -10.395584, -48.840355), (-8.98414e-15, -10.395584, -48.90738), (2.5596144, -10.395584, -48.840355), (5.112213, -10.395584, -48.63946), (7.6507998, -10.395584, -48.30525), (10.168416, -10.395584, -47.83864), (12.658161, -10.395584, -47.240902), (15.113212, -10.395584, -46.513683), (17.526838, -10.395584, -45.658974), (19.892424, -10.395584, -44.679115), (22.203485, -10.395584, -43.576794), (24.45369, -10.395584, -42.355034), (26.636868, -10.395584, -41.01718), (28.747036, -10.395584, -39.566902), (30.778412, -10.395584, -38.00817), (32.725426, -10.395584, -36.34527), (34.58274, -10.395584, -34.58274), (36.34527, -10.395584, -32.725426), (38.00817, -10.395584, -30.778412), (39.566902, -10.395584, -28.747036), (41.01718, -10.395584, -26.636868), (42.355034, -10.395584, -24.45369), (43.576794, -10.395584, -22.203485), (44.679115, -10.395584, -19.892424), (45.658974, -10.395584, -17.526838), (46.513683, -10.395584, -15.113212), (47.240902, -10.395584, -12.658161), (47.83864, -10.395584, -10.168416), (48.30525, -10.395584, -7.6507998), (48.63946, -10.395584, -5.112213), (48.840355, -10.395584, -2.5596144), (49.38442, -7.8217235, 0), (49.31674, -7.8217235, 2.5845807), (49.113884, -7.8217235, 5.1620774), (48.776413, -7.8217235, 7.725425), (48.30525, -7.8217235, 10.267597), (47.701683, -7.8217235, 12.781628), (46.967373, -7.8217235, 15.260624), (46.104324, -7.8217235, 17.697792), (45.11491, -7.8217235, 20.086452), (44.00184, -7.8217235, 22.420055), (42.768158, -7.8217235, 24.69221), (41.417255, -7.8217235, 26.89668), (39.95283, -7.8217235, 29.027431), (38.3789, -7.8217235, 31.07862), (36.699776, -7.8217235, 33.044624), (34.920055, -7.8217235, 34.920055), (33.044624, -7.8217235, 36.699776), (31.07862, -7.8217235, 38.3789), (29.027431, -7.8217235, 39.95283), (26.89668, -7.8217235, 41.417255), (24.69221, -7.8217235, 42.768158), (22.420055, -7.8217235, 44.00184), (20.086452, -7.8217235, 45.11491), (17.697792, -7.8217235, 46.104324), (15.260624, -7.8217235, 46.967373), (12.781628, -7.8217235, 47.701683), (10.267597, -7.8217235, 48.30525), (7.725425, -7.8217235, 48.776413), (5.1620774, -7.8217235, 49.113884), (2.5845807, -7.8217235, 49.31674), (3.0239235e-15, -7.8217235, 49.38442), (-2.5845807, -7.8217235, 49.31674), (-5.1620774, -7.8217235, 49.113884), (-7.725425, -7.8217235, 48.776413), (-10.267597, -7.8217235, 48.30525), (-12.781628, -7.8217235, 47.701683), (-15.260624, -7.8217235, 46.967373), (-17.697792, -7.8217235, 46.104324), (-20.086452, -7.8217235, 45.11491), (-22.420055, -7.8217235, 44.00184), (-24.69221, -7.8217235, 42.768158), (-26.89668, -7.8217235, 41.417255), (-29.027431, -7.8217235, 39.95283), (-31.07862, -7.8217235, 38.3789), (-33.044624, -7.8217235, 36.699776), (-34.920055, -7.8217235, 34.920055), (-36.699776, -7.8217235, 33.044624), (-38.3789, -7.8217235, 31.07862), (-39.95283, -7.8217235, 29.027431), (-41.417255, -7.8217235, 26.89668), (-42.768158, -7.8217235, 24.69221), (-44.00184, -7.8217235, 22.420055), (-45.11491, -7.8217235, 20.086452), (-46.104324, -7.8217235, 17.697792), (-46.967373, -7.8217235, 15.260624), (-47.701683, -7.8217235, 12.781628), (-48.30525, -7.8217235, 10.267597), (-48.776413, -7.8217235, 7.725425), (-49.113884, -7.8217235, 5.1620774), (-49.31674, -7.8217235, 2.5845807), (-49.38442, -7.8217235, 6.047847e-15), (-49.31674, -7.8217235, -2.5845807), (-49.113884, -7.8217235, -5.1620774), (-48.776413, -7.8217235, -7.725425), (-48.30525, -7.8217235, -10.267597), (-47.701683, -7.8217235, -12.781628), (-46.967373, -7.8217235, -15.260624), (-46.104324, -7.8217235, -17.697792), (-45.11491, -7.8217235, -20.086452), (-44.00184, -7.8217235, -22.420055), (-42.768158, -7.8217235, -24.69221), (-41.417255, -7.8217235, -26.89668), (-39.95283, -7.8217235, -29.027431), (-38.3789, -7.8217235, -31.07862), (-36.699776, -7.8217235, -33.044624), (-34.920055, -7.8217235, -34.920055), (-33.044624, -7.8217235, -36.699776), (-31.07862, -7.8217235, -38.3789), (-29.027431, -7.8217235, -39.95283), (-26.89668, -7.8217235, -41.417255), (-24.69221, -7.8217235, -42.768158), (-22.420055, -7.8217235, -44.00184), (-20.086452, -7.8217235, -45.11491), (-17.697792, -7.8217235, -46.104324), (-15.260624, -7.8217235, -46.967373), (-12.781628, -7.8217235, -47.701683), (-10.267597, -7.8217235, -48.30525), (-7.725425, -7.8217235, -48.776413), (-5.1620774, -7.8217235, -49.113884), (-2.5845807, -7.8217235, -49.31674), (-9.07177e-15, -7.8217235, -49.38442), (2.5845807, -7.8217235, -49.31674), (5.1620774, -7.8217235, -49.113884), (7.725425, -7.8217235, -48.776413), (10.267597, -7.8217235, -48.30525), (12.781628, -7.8217235, -47.701683), (15.260624, -7.8217235, -46.967373), (17.697792, -7.8217235, -46.104324), (20.086452, -7.8217235, -45.11491), (22.420055, -7.8217235, -44.00184), (24.69221, -7.8217235, -42.768158), (26.89668, -7.8217235, -41.417255), (29.027431, -7.8217235, -39.95283), (31.07862, -7.8217235, -38.3789), (33.044624, -7.8217235, -36.699776), (34.920055, -7.8217235, -34.920055), (36.699776, -7.8217235, -33.044624), (38.3789, -7.8217235, -31.07862), (39.95283, -7.8217235, -29.027431), (41.417255, -7.8217235, -26.89668), (42.768158, -7.8217235, -24.69221), (44.00184, -7.8217235, -22.420055), (45.11491, -7.8217235, -20.086452), (46.104324, -7.8217235, -17.697792), (46.967373, -7.8217235, -15.260624), (47.701683, -7.8217235, -12.781628), (48.30525, -7.8217235, -10.267597), (48.776413, -7.8217235, -7.725425), (49.113884, -7.8217235, -5.1620774), (49.31674, -7.8217235, -2.5845807), (49.726093, -5.2264233, 0), (49.657948, -5.2264233, 2.6024628), (49.45369, -5.2264233, 5.197792), (49.113884, -5.2264233, 7.778875), (48.63946, -5.2264233, 10.338636), (48.03172, -5.2264233, 12.87006), (47.292328, -5.2264233, 15.366208), (46.42331, -5.2264233, 17.820238), (45.427048, -5.2264233, 20.225426), (44.306274, -5.2264233, 22.575174), (43.06406, -5.2264233, 24.863047), (41.70381, -5.2264233, 27.082773), (40.229256, -5.2264233, 29.228266), (38.644432, -5.2264233, 31.293646), (36.95369, -5.2264233, 33.27325), (35.16166, -5.2264233, 35.16166), (33.27325, -5.2264233, 36.95369), (31.293646, -5.2264233, 38.644432), (29.228266, -5.2264233, 40.229256), (27.082773, -5.2264233, 41.70381), (24.863047, -5.2264233, 43.06406), (22.575174, -5.2264233, 44.306274), (20.225426, -5.2264233, 45.427048), (17.820238, -5.2264233, 46.42331), (15.366208, -5.2264233, 47.292328), (12.87006, -5.2264233, 48.03172), (10.338636, -5.2264233, 48.63946), (7.778875, -5.2264233, 49.113884), (5.197792, -5.2264233, 49.45369), (2.6024628, -5.2264233, 49.657948), (3.0448452e-15, -5.2264233, 49.726093), (-2.6024628, -5.2264233, 49.657948), (-5.197792, -5.2264233, 49.45369), (-7.778875, -5.2264233, 49.113884), (-10.338636, -5.2264233, 48.63946), (-12.87006, -5.2264233, 48.03172), (-15.366208, -5.2264233, 47.292328), (-17.820238, -5.2264233, 46.42331), (-20.225426, -5.2264233, 45.427048), (-22.575174, -5.2264233, 44.306274), (-24.863047, -5.2264233, 43.06406), (-27.082773, -5.2264233, 41.70381), (-29.228266, -5.2264233, 40.229256), (-31.293646, -5.2264233, 38.644432), (-33.27325, -5.2264233, 36.95369), (-35.16166, -5.2264233, 35.16166), (-36.95369, -5.2264233, 33.27325), (-38.644432, -5.2264233, 31.293646), (-40.229256, -5.2264233, 29.228266), (-41.70381, -5.2264233, 27.082773), (-43.06406, -5.2264233, 24.863047), (-44.306274, -5.2264233, 22.575174), (-45.427048, -5.2264233, 20.225426), (-46.42331, -5.2264233, 17.820238), (-47.292328, -5.2264233, 15.366208), (-48.03172, -5.2264233, 12.87006), (-48.63946, -5.2264233, 10.338636), (-49.113884, -5.2264233, 7.778875), (-49.45369, -5.2264233, 5.197792), (-49.657948, -5.2264233, 2.6024628), (-49.726093, -5.2264233, 6.0896904e-15), (-49.657948, -5.2264233, -2.6024628), (-49.45369, -5.2264233, -5.197792), (-49.113884, -5.2264233, -7.778875), (-48.63946, -5.2264233, -10.338636), (-48.03172, -5.2264233, -12.87006), (-47.292328, -5.2264233, -15.366208), (-46.42331, -5.2264233, -17.820238), (-45.427048, -5.2264233, -20.225426), (-44.306274, -5.2264233, -22.575174), (-43.06406, -5.2264233, -24.863047), (-41.70381, -5.2264233, -27.082773), (-40.229256, -5.2264233, -29.228266), (-38.644432, -5.2264233, -31.293646), (-36.95369, -5.2264233, -33.27325), (-35.16166, -5.2264233, -35.16166), (-33.27325, -5.2264233, -36.95369), (-31.293646, -5.2264233, -38.644432), (-29.228266, -5.2264233, -40.229256), (-27.082773, -5.2264233, -41.70381), (-24.863047, -5.2264233, -43.06406), (-22.575174, -5.2264233, -44.306274), (-20.225426, -5.2264233, -45.427048), (-17.820238, -5.2264233, -46.42331), (-15.366208, -5.2264233, -47.292328), (-12.87006, -5.2264233, -48.03172), (-10.338636, -5.2264233, -48.63946), (-7.778875, -5.2264233, -49.113884), (-5.197792, -5.2264233, -49.45369), (-2.6024628, -5.2264233, -49.657948), (-9.1345354e-15, -5.2264233, -49.726093), (2.6024628, -5.2264233, -49.657948), (5.197792, -5.2264233, -49.45369), (7.778875, -5.2264233, -49.113884), (10.338636, -5.2264233, -48.63946), (12.87006, -5.2264233, -48.03172), (15.366208, -5.2264233, -47.292328), (17.820238, -5.2264233, -46.42331), (20.225426, -5.2264233, -45.427048), (22.575174, -5.2264233, -44.306274), (24.863047, -5.2264233, -43.06406), (27.082773, -5.2264233, -41.70381), (29.228266, -5.2264233, -40.229256), (31.293646, -5.2264233, -38.644432), (33.27325, -5.2264233, -36.95369), (35.16166, -5.2264233, -35.16166), (36.95369, -5.2264233, -33.27325), (38.644432, -5.2264233, -31.293646), (40.229256, -5.2264233, -29.228266), (41.70381, -5.2264233, -27.082773), (43.06406, -5.2264233, -24.863047), (44.306274, -5.2264233, -22.575174), (45.427048, -5.2264233, -20.225426), (46.42331, -5.2264233, -17.820238), (47.292328, -5.2264233, -15.366208), (48.03172, -5.2264233, -12.87006), (48.63946, -5.2264233, -10.338636), (49.113884, -5.2264233, -7.778875), (49.45369, -5.2264233, -5.197792), (49.657948, -5.2264233, -2.6024628), (49.931477, -2.616798, 0), (49.86305, -2.616798, 2.6132116), (49.657948, -2.616798, 5.2192607), (49.31674, -2.616798, 7.8110037), (48.840355, -2.616798, 10.381338), (48.230103, -2.616798, 12.923217), (47.487656, -2.616798, 15.429675), (46.615047, -2.616798, 17.89384), (45.614674, -2.616798, 20.308962), (44.489273, -2.616798, 22.668417), (43.24193, -2.616798, 24.965738), (41.87606, -2.616798, 27.194632), (40.395412, -2.616798, 29.348986), (38.804047, -2.616798, 31.422897), (37.10632, -2.616798, 33.41068), (35.306885, -2.616798, 35.306885), (33.41068, -2.616798, 37.10632), (31.422897, -2.616798, 38.804047), (29.348986, -2.616798, 40.395412), (27.194632, -2.616798, 41.87606), (24.965738, -2.616798, 43.24193), (22.668417, -2.616798, 44.489273), (20.308962, -2.616798, 45.614674), (17.89384, -2.616798, 46.615047), (15.429675, -2.616798, 47.487656), (12.923217, -2.616798, 48.230103), (10.381338, -2.616798, 48.840355), (7.8110037, -2.616798, 49.31674), (5.2192607, -2.616798, 49.657948), (2.6132116, -2.616798, 49.86305), (3.0574211e-15, -2.616798, 49.931477), (-2.6132116, -2.616798, 49.86305), (-5.2192607, -2.616798, 49.657948), (-7.8110037, -2.616798, 49.31674), (-10.381338, -2.616798, 48.840355), (-12.923217, -2.616798, 48.230103), (-15.429675, -2.616798, 47.487656), (-17.89384, -2.616798, 46.615047), (-20.308962, -2.616798, 45.614674), (-22.668417, -2.616798, 44.489273), (-24.965738, -2.616798, 43.24193), (-27.194632, -2.616798, 41.87606), (-29.348986, -2.616798, 40.395412), (-31.422897, -2.616798, 38.804047), (-33.41068, -2.616798, 37.10632), (-35.306885, -2.616798, 35.306885), (-37.10632, -2.616798, 33.41068), (-38.804047, -2.616798, 31.422897), (-40.395412, -2.616798, 29.348986), (-41.87606, -2.616798, 27.194632), (-43.24193, -2.616798, 24.965738), (-44.489273, -2.616798, 22.668417), (-45.614674, -2.616798, 20.308962), (-46.615047, -2.616798, 17.89384), (-47.487656, -2.616798, 15.429675), (-48.230103, -2.616798, 12.923217), (-48.840355, -2.616798, 10.381338), (-49.31674, -2.616798, 7.8110037), (-49.657948, -2.616798, 5.2192607), (-49.86305, -2.616798, 2.6132116), (-49.931477, -2.616798, 6.1148422e-15), (-49.86305, -2.616798, -2.6132116), (-49.657948, -2.616798, -5.2192607), (-49.31674, -2.616798, -7.8110037), (-48.840355, -2.616798, -10.381338), (-48.230103, -2.616798, -12.923217), (-47.487656, -2.616798, -15.429675), (-46.615047, -2.616798, -17.89384), (-45.614674, -2.616798, -20.308962), (-44.489273, -2.616798, -22.668417), (-43.24193, -2.616798, -24.965738), (-41.87606, -2.616798, -27.194632), (-40.395412, -2.616798, -29.348986), (-38.804047, -2.616798, -31.422897), (-37.10632, -2.616798, -33.41068), (-35.306885, -2.616798, -35.306885), (-33.41068, -2.616798, -37.10632), (-31.422897, -2.616798, -38.804047), (-29.348986, -2.616798, -40.395412), (-27.194632, -2.616798, -41.87606), (-24.965738, -2.616798, -43.24193), (-22.668417, -2.616798, -44.489273), (-20.308962, -2.616798, -45.614674), (-17.89384, -2.616798, -46.615047), (-15.429675, -2.616798, -47.487656), (-12.923217, -2.616798, -48.230103), (-10.381338, -2.616798, -48.840355), (-7.8110037, -2.616798, -49.31674), (-5.2192607, -2.616798, -49.657948), (-2.6132116, -2.616798, -49.86305), (-9.172263e-15, -2.616798, -49.931477), (2.6132116, -2.616798, -49.86305), (5.2192607, -2.616798, -49.657948), (7.8110037, -2.616798, -49.31674), (10.381338, -2.616798, -48.840355), (12.923217, -2.616798, -48.230103), (15.429675, -2.616798, -47.487656), (17.89384, -2.616798, -46.615047), (20.308962, -2.616798, -45.614674), (22.668417, -2.616798, -44.489273), (24.965738, -2.616798, -43.24193), (27.194632, -2.616798, -41.87606), (29.348986, -2.616798, -40.395412), (31.422897, -2.616798, -38.804047), (33.41068, -2.616798, -37.10632), (35.306885, -2.616798, -35.306885), (37.10632, -2.616798, -33.41068), (38.804047, -2.616798, -31.422897), (40.395412, -2.616798, -29.348986), (41.87606, -2.616798, -27.194632), (43.24193, -2.616798, -24.965738), (44.489273, -2.616798, -22.668417), (45.614674, -2.616798, -20.308962), (46.615047, -2.616798, -17.89384), (47.487656, -2.616798, -15.429675), (48.230103, -2.616798, -12.923217), (48.840355, -2.616798, -10.381338), (49.31674, -2.616798, -7.8110037), (49.657948, -2.616798, -5.2192607), (49.86305, -2.616798, -2.6132116), (50, 0, 0), (49.931477, 0, 2.616798), (49.726093, 0, 5.2264233), (49.38442, 0, 7.8217235), (48.90738, 0, 10.395584), (48.29629, 0, 12.940952), (47.552826, 0, 15.45085), (46.67902, 0, 17.918398), (45.677273, 0, 20.336832), (44.550327, 0, 22.699526), (43.30127, 0, 25), (41.93353, 0, 27.231953), (40.45085, 0, 29.389263), (38.8573, 0, 31.466019), (37.15724, 0, 33.45653), (35.35534, 0, 35.35534), (33.45653, 0, 37.15724), (31.466019, 0, 38.8573), (29.389263, 0, 40.45085), (27.231953, 0, 41.93353), (25, 0, 43.30127), (22.699526, 0, 44.550327), (20.336832, 0, 45.677273), (17.918398, 0, 46.67902), (15.45085, 0, 47.552826), (12.940952, 0, 48.29629), (10.395584, 0, 48.90738), (7.8217235, 0, 49.38442), (5.2264233, 0, 49.726093), (2.616798, 0, 49.931477), (3.0616169e-15, 0, 50), (-2.616798, 0, 49.931477), (-5.2264233, 0, 49.726093), (-7.8217235, 0, 49.38442), (-10.395584, 0, 48.90738), (-12.940952, 0, 48.29629), (-15.45085, 0, 47.552826), (-17.918398, 0, 46.67902), (-20.336832, 0, 45.677273), (-22.699526, 0, 44.550327), (-25, 0, 43.30127), (-27.231953, 0, 41.93353), (-29.389263, 0, 40.45085), (-31.466019, 0, 38.8573), (-33.45653, 0, 37.15724), (-35.35534, 0, 35.35534), (-37.15724, 0, 33.45653), (-38.8573, 0, 31.466019), (-40.45085, 0, 29.389263), (-41.93353, 0, 27.231953), (-43.30127, 0, 25), (-44.550327, 0, 22.699526), (-45.677273, 0, 20.336832), (-46.67902, 0, 17.918398), (-47.552826, 0, 15.45085), (-48.29629, 0, 12.940952), (-48.90738, 0, 10.395584), (-49.38442, 0, 7.8217235), (-49.726093, 0, 5.2264233), (-49.931477, 0, 2.616798), (-50, 0, 6.1232338e-15), (-49.931477, 0, -2.616798), (-49.726093, 0, -5.2264233), (-49.38442, 0, -7.8217235), (-48.90738, 0, -10.395584), (-48.29629, 0, -12.940952), (-47.552826, 0, -15.45085), (-46.67902, 0, -17.918398), (-45.677273, 0, -20.336832), (-44.550327, 0, -22.699526), (-43.30127, 0, -25), (-41.93353, 0, -27.231953), (-40.45085, 0, -29.389263), (-38.8573, 0, -31.466019), (-37.15724, 0, -33.45653), (-35.35534, 0, -35.35534), (-33.45653, 0, -37.15724), (-31.466019, 0, -38.8573), (-29.389263, 0, -40.45085), (-27.231953, 0, -41.93353), (-25, 0, -43.30127), (-22.699526, 0, -44.550327), (-20.336832, 0, -45.677273), (-17.918398, 0, -46.67902), (-15.45085, 0, -47.552826), (-12.940952, 0, -48.29629), (-10.395584, 0, -48.90738), (-7.8217235, 0, -49.38442), (-5.2264233, 0, -49.726093), (-2.616798, 0, -49.931477), (-9.184851e-15, 0, -50), (2.616798, 0, -49.931477), (5.2264233, 0, -49.726093), (7.8217235, 0, -49.38442), (10.395584, 0, -48.90738), (12.940952, 0, -48.29629), (15.45085, 0, -47.552826), (17.918398, 0, -46.67902), (20.336832, 0, -45.677273), (22.699526, 0, -44.550327), (25, 0, -43.30127), (27.231953, 0, -41.93353), (29.389263, 0, -40.45085), (31.466019, 0, -38.8573), (33.45653, 0, -37.15724), (35.35534, 0, -35.35534), (37.15724, 0, -33.45653), (38.8573, 0, -31.466019), (40.45085, 0, -29.389263), (41.93353, 0, -27.231953), (43.30127, 0, -25), (44.550327, 0, -22.699526), (45.677273, 0, -20.336832), (46.67902, 0, -17.918398), (47.552826, 0, -15.45085), (48.29629, 0, -12.940952), (48.90738, 0, -10.395584), (49.38442, 0, -7.8217235), (49.726093, 0, -5.2264233), (49.931477, 0, -2.616798), (49.931477, 2.616798, 0), (49.86305, 2.616798, 2.6132116), (49.657948, 2.616798, 5.2192607), (49.31674, 2.616798, 7.8110037), (48.840355, 2.616798, 10.381338), (48.230103, 2.616798, 12.923217), (47.487656, 2.616798, 15.429675), (46.615047, 2.616798, 17.89384), (45.614674, 2.616798, 20.308962), (44.489273, 2.616798, 22.668417), (43.24193, 2.616798, 24.965738), (41.87606, 2.616798, 27.194632), (40.395412, 2.616798, 29.348986), (38.804047, 2.616798, 31.422897), (37.10632, 2.616798, 33.41068), (35.306885, 2.616798, 35.306885), (33.41068, 2.616798, 37.10632), (31.422897, 2.616798, 38.804047), (29.348986, 2.616798, 40.395412), (27.194632, 2.616798, 41.87606), (24.965738, 2.616798, 43.24193), (22.668417, 2.616798, 44.489273), (20.308962, 2.616798, 45.614674), (17.89384, 2.616798, 46.615047), (15.429675, 2.616798, 47.487656), (12.923217, 2.616798, 48.230103), (10.381338, 2.616798, 48.840355), (7.8110037, 2.616798, 49.31674), (5.2192607, 2.616798, 49.657948), (2.6132116, 2.616798, 49.86305), (3.0574211e-15, 2.616798, 49.931477), (-2.6132116, 2.616798, 49.86305), (-5.2192607, 2.616798, 49.657948), (-7.8110037, 2.616798, 49.31674), (-10.381338, 2.616798, 48.840355), (-12.923217, 2.616798, 48.230103), (-15.429675, 2.616798, 47.487656), (-17.89384, 2.616798, 46.615047), (-20.308962, 2.616798, 45.614674), (-22.668417, 2.616798, 44.489273), (-24.965738, 2.616798, 43.24193), (-27.194632, 2.616798, 41.87606), (-29.348986, 2.616798, 40.395412), (-31.422897, 2.616798, 38.804047), (-33.41068, 2.616798, 37.10632), (-35.306885, 2.616798, 35.306885), (-37.10632, 2.616798, 33.41068), (-38.804047, 2.616798, 31.422897), (-40.395412, 2.616798, 29.348986), (-41.87606, 2.616798, 27.194632), (-43.24193, 2.616798, 24.965738), (-44.489273, 2.616798, 22.668417), (-45.614674, 2.616798, 20.308962), (-46.615047, 2.616798, 17.89384), (-47.487656, 2.616798, 15.429675), (-48.230103, 2.616798, 12.923217), (-48.840355, 2.616798, 10.381338), (-49.31674, 2.616798, 7.8110037), (-49.657948, 2.616798, 5.2192607), (-49.86305, 2.616798, 2.6132116), (-49.931477, 2.616798, 6.1148422e-15), (-49.86305, 2.616798, -2.6132116), (-49.657948, 2.616798, -5.2192607), (-49.31674, 2.616798, -7.8110037), (-48.840355, 2.616798, -10.381338), (-48.230103, 2.616798, -12.923217), (-47.487656, 2.616798, -15.429675), (-46.615047, 2.616798, -17.89384), (-45.614674, 2.616798, -20.308962), (-44.489273, 2.616798, -22.668417), (-43.24193, 2.616798, -24.965738), (-41.87606, 2.616798, -27.194632), (-40.395412, 2.616798, -29.348986), (-38.804047, 2.616798, -31.422897), (-37.10632, 2.616798, -33.41068), (-35.306885, 2.616798, -35.306885), (-33.41068, 2.616798, -37.10632), (-31.422897, 2.616798, -38.804047), (-29.348986, 2.616798, -40.395412), (-27.194632, 2.616798, -41.87606), (-24.965738, 2.616798, -43.24193), (-22.668417, 2.616798, -44.489273), (-20.308962, 2.616798, -45.614674), (-17.89384, 2.616798, -46.615047), (-15.429675, 2.616798, -47.487656), (-12.923217, 2.616798, -48.230103), (-10.381338, 2.616798, -48.840355), (-7.8110037, 2.616798, -49.31674), (-5.2192607, 2.616798, -49.657948), (-2.6132116, 2.616798, -49.86305), (-9.172263e-15, 2.616798, -49.931477), (2.6132116, 2.616798, -49.86305), (5.2192607, 2.616798, -49.657948), (7.8110037, 2.616798, -49.31674), (10.381338, 2.616798, -48.840355), (12.923217, 2.616798, -48.230103), (15.429675, 2.616798, -47.487656), (17.89384, 2.616798, -46.615047), (20.308962, 2.616798, -45.614674), (22.668417, 2.616798, -44.489273), (24.965738, 2.616798, -43.24193), (27.194632, 2.616798, -41.87606), (29.348986, 2.616798, -40.395412), (31.422897, 2.616798, -38.804047), (33.41068, 2.616798, -37.10632), (35.306885, 2.616798, -35.306885), (37.10632, 2.616798, -33.41068), (38.804047, 2.616798, -31.422897), (40.395412, 2.616798, -29.348986), (41.87606, 2.616798, -27.194632), (43.24193, 2.616798, -24.965738), (44.489273, 2.616798, -22.668417), (45.614674, 2.616798, -20.308962), (46.615047, 2.616798, -17.89384), (47.487656, 2.616798, -15.429675), (48.230103, 2.616798, -12.923217), (48.840355, 2.616798, -10.381338), (49.31674, 2.616798, -7.8110037), (49.657948, 2.616798, -5.2192607), (49.86305, 2.616798, -2.6132116), (49.726093, 5.2264233, 0), (49.657948, 5.2264233, 2.6024628), (49.45369, 5.2264233, 5.197792), (49.113884, 5.2264233, 7.778875), (48.63946, 5.2264233, 10.338636), (48.03172, 5.2264233, 12.87006), (47.292328, 5.2264233, 15.366208), (46.42331, 5.2264233, 17.820238), (45.427048, 5.2264233, 20.225426), (44.306274, 5.2264233, 22.575174), (43.06406, 5.2264233, 24.863047), (41.70381, 5.2264233, 27.082773), (40.229256, 5.2264233, 29.228266), (38.644432, 5.2264233, 31.293646), (36.95369, 5.2264233, 33.27325), (35.16166, 5.2264233, 35.16166), (33.27325, 5.2264233, 36.95369), (31.293646, 5.2264233, 38.644432), (29.228266, 5.2264233, 40.229256), (27.082773, 5.2264233, 41.70381), (24.863047, 5.2264233, 43.06406), (22.575174, 5.2264233, 44.306274), (20.225426, 5.2264233, 45.427048), (17.820238, 5.2264233, 46.42331), (15.366208, 5.2264233, 47.292328), (12.87006, 5.2264233, 48.03172), (10.338636, 5.2264233, 48.63946), (7.778875, 5.2264233, 49.113884), (5.197792, 5.2264233, 49.45369), (2.6024628, 5.2264233, 49.657948), (3.0448452e-15, 5.2264233, 49.726093), (-2.6024628, 5.2264233, 49.657948), (-5.197792, 5.2264233, 49.45369), (-7.778875, 5.2264233, 49.113884), (-10.338636, 5.2264233, 48.63946), (-12.87006, 5.2264233, 48.03172), (-15.366208, 5.2264233, 47.292328), (-17.820238, 5.2264233, 46.42331), (-20.225426, 5.2264233, 45.427048), (-22.575174, 5.2264233, 44.306274), (-24.863047, 5.2264233, 43.06406), (-27.082773, 5.2264233, 41.70381), (-29.228266, 5.2264233, 40.229256), (-31.293646, 5.2264233, 38.644432), (-33.27325, 5.2264233, 36.95369), (-35.16166, 5.2264233, 35.16166), (-36.95369, 5.2264233, 33.27325), (-38.644432, 5.2264233, 31.293646), (-40.229256, 5.2264233, 29.228266), (-41.70381, 5.2264233, 27.082773), (-43.06406, 5.2264233, 24.863047), (-44.306274, 5.2264233, 22.575174), (-45.427048, 5.2264233, 20.225426), (-46.42331, 5.2264233, 17.820238), (-47.292328, 5.2264233, 15.366208), (-48.03172, 5.2264233, 12.87006), (-48.63946, 5.2264233, 10.338636), (-49.113884, 5.2264233, 7.778875), (-49.45369, 5.2264233, 5.197792), (-49.657948, 5.2264233, 2.6024628), (-49.726093, 5.2264233, 6.0896904e-15), (-49.657948, 5.2264233, -2.6024628), (-49.45369, 5.2264233, -5.197792), (-49.113884, 5.2264233, -7.778875), (-48.63946, 5.2264233, -10.338636), (-48.03172, 5.2264233, -12.87006), (-47.292328, 5.2264233, -15.366208), (-46.42331, 5.2264233, -17.820238), (-45.427048, 5.2264233, -20.225426), (-44.306274, 5.2264233, -22.575174), (-43.06406, 5.2264233, -24.863047), (-41.70381, 5.2264233, -27.082773), (-40.229256, 5.2264233, -29.228266), (-38.644432, 5.2264233, -31.293646), (-36.95369, 5.2264233, -33.27325), (-35.16166, 5.2264233, -35.16166), (-33.27325, 5.2264233, -36.95369), (-31.293646, 5.2264233, -38.644432), (-29.228266, 5.2264233, -40.229256), (-27.082773, 5.2264233, -41.70381), (-24.863047, 5.2264233, -43.06406), (-22.575174, 5.2264233, -44.306274), (-20.225426, 5.2264233, -45.427048), (-17.820238, 5.2264233, -46.42331), (-15.366208, 5.2264233, -47.292328), (-12.87006, 5.2264233, -48.03172), (-10.338636, 5.2264233, -48.63946), (-7.778875, 5.2264233, -49.113884), (-5.197792, 5.2264233, -49.45369), (-2.6024628, 5.2264233, -49.657948), (-9.1345354e-15, 5.2264233, -49.726093), (2.6024628, 5.2264233, -49.657948), (5.197792, 5.2264233, -49.45369), (7.778875, 5.2264233, -49.113884), (10.338636, 5.2264233, -48.63946), (12.87006, 5.2264233, -48.03172), (15.366208, 5.2264233, -47.292328), (17.820238, 5.2264233, -46.42331), (20.225426, 5.2264233, -45.427048), (22.575174, 5.2264233, -44.306274), (24.863047, 5.2264233, -43.06406), (27.082773, 5.2264233, -41.70381), (29.228266, 5.2264233, -40.229256), (31.293646, 5.2264233, -38.644432), (33.27325, 5.2264233, -36.95369), (35.16166, 5.2264233, -35.16166), (36.95369, 5.2264233, -33.27325), (38.644432, 5.2264233, -31.293646), (40.229256, 5.2264233, -29.228266), (41.70381, 5.2264233, -27.082773), (43.06406, 5.2264233, -24.863047), (44.306274, 5.2264233, -22.575174), (45.427048, 5.2264233, -20.225426), (46.42331, 5.2264233, -17.820238), (47.292328, 5.2264233, -15.366208), (48.03172, 5.2264233, -12.87006), (48.63946, 5.2264233, -10.338636), (49.113884, 5.2264233, -7.778875), (49.45369, 5.2264233, -5.197792), (49.657948, 5.2264233, -2.6024628), (49.38442, 7.8217235, 0), (49.31674, 7.8217235, 2.5845807), (49.113884, 7.8217235, 5.1620774), (48.776413, 7.8217235, 7.725425), (48.30525, 7.8217235, 10.267597), (47.701683, 7.8217235, 12.781628), (46.967373, 7.8217235, 15.260624), (46.104324, 7.8217235, 17.697792), (45.11491, 7.8217235, 20.086452), (44.00184, 7.8217235, 22.420055), (42.768158, 7.8217235, 24.69221), (41.417255, 7.8217235, 26.89668), (39.95283, 7.8217235, 29.027431), (38.3789, 7.8217235, 31.07862), (36.699776, 7.8217235, 33.044624), (34.920055, 7.8217235, 34.920055), (33.044624, 7.8217235, 36.699776), (31.07862, 7.8217235, 38.3789), (29.027431, 7.8217235, 39.95283), (26.89668, 7.8217235, 41.417255), (24.69221, 7.8217235, 42.768158), (22.420055, 7.8217235, 44.00184), (20.086452, 7.8217235, 45.11491), (17.697792, 7.8217235, 46.104324), (15.260624, 7.8217235, 46.967373), (12.781628, 7.8217235, 47.701683), (10.267597, 7.8217235, 48.30525), (7.725425, 7.8217235, 48.776413), (5.1620774, 7.8217235, 49.113884), (2.5845807, 7.8217235, 49.31674), (3.0239235e-15, 7.8217235, 49.38442), (-2.5845807, 7.8217235, 49.31674), (-5.1620774, 7.8217235, 49.113884), (-7.725425, 7.8217235, 48.776413), (-10.267597, 7.8217235, 48.30525), (-12.781628, 7.8217235, 47.701683), (-15.260624, 7.8217235, 46.967373), (-17.697792, 7.8217235, 46.104324), (-20.086452, 7.8217235, 45.11491), (-22.420055, 7.8217235, 44.00184), (-24.69221, 7.8217235, 42.768158), (-26.89668, 7.8217235, 41.417255), (-29.027431, 7.8217235, 39.95283), (-31.07862, 7.8217235, 38.3789), (-33.044624, 7.8217235, 36.699776), (-34.920055, 7.8217235, 34.920055), (-36.699776, 7.8217235, 33.044624), (-38.3789, 7.8217235, 31.07862), (-39.95283, 7.8217235, 29.027431), (-41.417255, 7.8217235, 26.89668), (-42.768158, 7.8217235, 24.69221), (-44.00184, 7.8217235, 22.420055), (-45.11491, 7.8217235, 20.086452), (-46.104324, 7.8217235, 17.697792), (-46.967373, 7.8217235, 15.260624), (-47.701683, 7.8217235, 12.781628), (-48.30525, 7.8217235, 10.267597), (-48.776413, 7.8217235, 7.725425), (-49.113884, 7.8217235, 5.1620774), (-49.31674, 7.8217235, 2.5845807), (-49.38442, 7.8217235, 6.047847e-15), (-49.31674, 7.8217235, -2.5845807), (-49.113884, 7.8217235, -5.1620774), (-48.776413, 7.8217235, -7.725425), (-48.30525, 7.8217235, -10.267597), (-47.701683, 7.8217235, -12.781628), (-46.967373, 7.8217235, -15.260624), (-46.104324, 7.8217235, -17.697792), (-45.11491, 7.8217235, -20.086452), (-44.00184, 7.8217235, -22.420055), (-42.768158, 7.8217235, -24.69221), (-41.417255, 7.8217235, -26.89668), (-39.95283, 7.8217235, -29.027431), (-38.3789, 7.8217235, -31.07862), (-36.699776, 7.8217235, -33.044624), (-34.920055, 7.8217235, -34.920055), (-33.044624, 7.8217235, -36.699776), (-31.07862, 7.8217235, -38.3789), (-29.027431, 7.8217235, -39.95283), (-26.89668, 7.8217235, -41.417255), (-24.69221, 7.8217235, -42.768158), (-22.420055, 7.8217235, -44.00184), (-20.086452, 7.8217235, -45.11491), (-17.697792, 7.8217235, -46.104324), (-15.260624, 7.8217235, -46.967373), (-12.781628, 7.8217235, -47.701683), (-10.267597, 7.8217235, -48.30525), (-7.725425, 7.8217235, -48.776413), (-5.1620774, 7.8217235, -49.113884), (-2.5845807, 7.8217235, -49.31674), (-9.07177e-15, 7.8217235, -49.38442), (2.5845807, 7.8217235, -49.31674), (5.1620774, 7.8217235, -49.113884), (7.725425, 7.8217235, -48.776413), (10.267597, 7.8217235, -48.30525), (12.781628, 7.8217235, -47.701683), (15.260624, 7.8217235, -46.967373), (17.697792, 7.8217235, -46.104324), (20.086452, 7.8217235, -45.11491), (22.420055, 7.8217235, -44.00184), (24.69221, 7.8217235, -42.768158), (26.89668, 7.8217235, -41.417255), (29.027431, 7.8217235, -39.95283), (31.07862, 7.8217235, -38.3789), (33.044624, 7.8217235, -36.699776), (34.920055, 7.8217235, -34.920055), (36.699776, 7.8217235, -33.044624), (38.3789, 7.8217235, -31.07862), (39.95283, 7.8217235, -29.027431), (41.417255, 7.8217235, -26.89668), (42.768158, 7.8217235, -24.69221), (44.00184, 7.8217235, -22.420055), (45.11491, 7.8217235, -20.086452), (46.104324, 7.8217235, -17.697792), (46.967373, 7.8217235, -15.260624), (47.701683, 7.8217235, -12.781628), (48.30525, 7.8217235, -10.267597), (48.776413, 7.8217235, -7.725425), (49.113884, 7.8217235, -5.1620774), (49.31674, 7.8217235, -2.5845807), (48.90738, 10.395584, 0), (48.840355, 10.395584, 2.5596144), (48.63946, 10.395584, 5.112213), (48.30525, 10.395584, 7.6507998), (47.83864, 10.395584, 10.168416), (47.240902, 10.395584, 12.658161), (46.513683, 10.395584, 15.113212), (45.658974, 10.395584, 17.526838), (44.679115, 10.395584, 19.892424), (43.576794, 10.395584, 22.203485), (42.355034, 10.395584, 24.45369), (41.01718, 10.395584, 26.636868), (39.566902, 10.395584, 28.747036), (38.00817, 10.395584, 30.778412), (36.34527, 10.395584, 32.725426), (34.58274, 10.395584, 34.58274), (32.725426, 10.395584, 36.34527), (30.778412, 10.395584, 38.00817), (28.747036, 10.395584, 39.566902), (26.636868, 10.395584, 41.01718), (24.45369, 10.395584, 42.355034), (22.203485, 10.395584, 43.576794), (19.892424, 10.395584, 44.679115), (17.526838, 10.395584, 45.658974), (15.113212, 10.395584, 46.513683), (12.658161, 10.395584, 47.240902), (10.168416, 10.395584, 47.83864), (7.6507998, 10.395584, 48.30525), (5.112213, 10.395584, 48.63946), (2.5596144, 10.395584, 48.840355), (2.9947134e-15, 10.395584, 48.90738), (-2.5596144, 10.395584, 48.840355), (-5.112213, 10.395584, 48.63946), (-7.6507998, 10.395584, 48.30525), (-10.168416, 10.395584, 47.83864), (-12.658161, 10.395584, 47.240902), (-15.113212, 10.395584, 46.513683), (-17.526838, 10.395584, 45.658974), (-19.892424, 10.395584, 44.679115), (-22.203485, 10.395584, 43.576794), (-24.45369, 10.395584, 42.355034), (-26.636868, 10.395584, 41.01718), (-28.747036, 10.395584, 39.566902), (-30.778412, 10.395584, 38.00817), (-32.725426, 10.395584, 36.34527), (-34.58274, 10.395584, 34.58274), (-36.34527, 10.395584, 32.725426), (-38.00817, 10.395584, 30.778412), (-39.566902, 10.395584, 28.747036), (-41.01718, 10.395584, 26.636868), (-42.355034, 10.395584, 24.45369), (-43.576794, 10.395584, 22.203485), (-44.679115, 10.395584, 19.892424), (-45.658974, 10.395584, 17.526838), (-46.513683, 10.395584, 15.113212), (-47.240902, 10.395584, 12.658161), (-47.83864, 10.395584, 10.168416), (-48.30525, 10.395584, 7.6507998), (-48.63946, 10.395584, 5.112213), (-48.840355, 10.395584, 2.5596144), (-48.90738, 10.395584, 5.9894267e-15), (-48.840355, 10.395584, -2.5596144), (-48.63946, 10.395584, -5.112213), (-48.30525, 10.395584, -7.6507998), (-47.83864, 10.395584, -10.168416), (-47.240902, 10.395584, -12.658161), (-46.513683, 10.395584, -15.113212), (-45.658974, 10.395584, -17.526838), (-44.679115, 10.395584, -19.892424), (-43.576794, 10.395584, -22.203485), (-42.355034, 10.395584, -24.45369), (-41.01718, 10.395584, -26.636868), (-39.566902, 10.395584, -28.747036), (-38.00817, 10.395584, -30.778412), (-36.34527, 10.395584, -32.725426), (-34.58274, 10.395584, -34.58274), (-32.725426, 10.395584, -36.34527), (-30.778412, 10.395584, -38.00817), (-28.747036, 10.395584, -39.566902), (-26.636868, 10.395584, -41.01718), (-24.45369, 10.395584, -42.355034), (-22.203485, 10.395584, -43.576794), (-19.892424, 10.395584, -44.679115), (-17.526838, 10.395584, -45.658974), (-15.113212, 10.395584, -46.513683), (-12.658161, 10.395584, -47.240902), (-10.168416, 10.395584, -47.83864), (-7.6507998, 10.395584, -48.30525), (-5.112213, 10.395584, -48.63946), (-2.5596144, 10.395584, -48.840355), (-8.98414e-15, 10.395584, -48.90738), (2.5596144, 10.395584, -48.840355), (5.112213, 10.395584, -48.63946), (7.6507998, 10.395584, -48.30525), (10.168416, 10.395584, -47.83864), (12.658161, 10.395584, -47.240902), (15.113212, 10.395584, -46.513683), (17.526838, 10.395584, -45.658974), (19.892424, 10.395584, -44.679115), (22.203485, 10.395584, -43.576794), (24.45369, 10.395584, -42.355034), (26.636868, 10.395584, -41.01718), (28.747036, 10.395584, -39.566902), (30.778412, 10.395584, -38.00817), (32.725426, 10.395584, -36.34527), (34.58274, 10.395584, -34.58274), (36.34527, 10.395584, -32.725426), (38.00817, 10.395584, -30.778412), (39.566902, 10.395584, -28.747036), (41.01718, 10.395584, -26.636868), (42.355034, 10.395584, -24.45369), (43.576794, 10.395584, -22.203485), (44.679115, 10.395584, -19.892424), (45.658974, 10.395584, -17.526838), (46.513683, 10.395584, -15.113212), (47.240902, 10.395584, -12.658161), (47.83864, 10.395584, -10.168416), (48.30525, 10.395584, -7.6507998), (48.63946, 10.395584, -5.112213), (48.840355, 10.395584, -2.5596144), (48.29629, 12.940952, 0), (48.230103, 12.940952, 2.5276325), (48.03172, 12.940952, 5.048337), (47.701683, 12.940952, 7.5552044), (47.240902, 12.940952, 10.041364), (46.650635, 12.940952, 12.5), (45.932503, 12.940952, 14.924375), (45.08847, 12.940952, 17.307842), (44.120857, 12.940952, 19.643871), (43.03231, 12.940952, 21.926058), (41.825813, 12.940952, 24.148146), (40.504677, 12.940952, 26.304045), (39.07252, 12.940952, 28.387848), (37.533268, 12.940952, 30.39384), (35.89114, 12.940952, 32.31653), (34.150635, 12.940952, 34.150635), (32.31653, 12.940952, 35.89114), (30.39384, 12.940952, 37.533268), (28.387848, 12.940952, 39.07252), (26.304045, 12.940952, 40.504677), (24.148146, 12.940952, 41.825813), (21.926058, 12.940952, 43.03231), (19.643871, 12.940952, 44.120857), (17.307842, 12.940952, 45.08847), (14.924375, 12.940952, 45.932503), (12.5, 12.940952, 46.650635), (10.041364, 12.940952, 47.240902), (7.5552044, 12.940952, 47.701683), (5.048337, 12.940952, 48.03172), (2.5276325, 12.940952, 48.230103), (2.9572948e-15, 12.940952, 48.29629), (-2.5276325, 12.940952, 48.230103), (-5.048337, 12.940952, 48.03172), (-7.5552044, 12.940952, 47.701683), (-10.041364, 12.940952, 47.240902), (-12.5, 12.940952, 46.650635), (-14.924375, 12.940952, 45.932503), (-17.307842, 12.940952, 45.08847), (-19.643871, 12.940952, 44.120857), (-21.926058, 12.940952, 43.03231), (-24.148146, 12.940952, 41.825813), (-26.304045, 12.940952, 40.504677), (-28.387848, 12.940952, 39.07252), (-30.39384, 12.940952, 37.533268), (-32.31653, 12.940952, 35.89114), (-34.150635, 12.940952, 34.150635), (-35.89114, 12.940952, 32.31653), (-37.533268, 12.940952, 30.39384), (-39.07252, 12.940952, 28.387848), (-40.504677, 12.940952, 26.304045), (-41.825813, 12.940952, 24.148146), (-43.03231, 12.940952, 21.926058), (-44.120857, 12.940952, 19.643871), (-45.08847, 12.940952, 17.307842), (-45.932503, 12.940952, 14.924375), (-46.650635, 12.940952, 12.5), (-47.240902, 12.940952, 10.041364), (-47.701683, 12.940952, 7.5552044), (-48.03172, 12.940952, 5.048337), (-48.230103, 12.940952, 2.5276325), (-48.29629, 12.940952, 5.9145897e-15), (-48.230103, 12.940952, -2.5276325), (-48.03172, 12.940952, -5.048337), (-47.701683, 12.940952, -7.5552044), (-47.240902, 12.940952, -10.041364), (-46.650635, 12.940952, -12.5), (-45.932503, 12.940952, -14.924375), (-45.08847, 12.940952, -17.307842), (-44.120857, 12.940952, -19.643871), (-43.03231, 12.940952, -21.926058), (-41.825813, 12.940952, -24.148146), (-40.504677, 12.940952, -26.304045), (-39.07252, 12.940952, -28.387848), (-37.533268, 12.940952, -30.39384), (-35.89114, 12.940952, -32.31653), (-34.150635, 12.940952, -34.150635), (-32.31653, 12.940952, -35.89114), (-30.39384, 12.940952, -37.533268), (-28.387848, 12.940952, -39.07252), (-26.304045, 12.940952, -40.504677), (-24.148146, 12.940952, -41.825813), (-21.926058, 12.940952, -43.03231), (-19.643871, 12.940952, -44.120857), (-17.307842, 12.940952, -45.08847), (-14.924375, 12.940952, -45.932503), (-12.5, 12.940952, -46.650635), (-10.041364, 12.940952, -47.240902), (-7.5552044, 12.940952, -47.701683), (-5.048337, 12.940952, -48.03172), (-2.5276325, 12.940952, -48.230103), (-8.871885e-15, 12.940952, -48.29629), (2.5276325, 12.940952, -48.230103), (5.048337, 12.940952, -48.03172), (7.5552044, 12.940952, -47.701683), (10.041364, 12.940952, -47.240902), (12.5, 12.940952, -46.650635), (14.924375, 12.940952, -45.932503), (17.307842, 12.940952, -45.08847), (19.643871, 12.940952, -44.120857), (21.926058, 12.940952, -43.03231), (24.148146, 12.940952, -41.825813), (26.304045, 12.940952, -40.504677), (28.387848, 12.940952, -39.07252), (30.39384, 12.940952, -37.533268), (32.31653, 12.940952, -35.89114), (34.150635, 12.940952, -34.150635), (35.89114, 12.940952, -32.31653), (37.533268, 12.940952, -30.39384), (39.07252, 12.940952, -28.387848), (40.504677, 12.940952, -26.304045), (41.825813, 12.940952, -24.148146), (43.03231, 12.940952, -21.926058), (44.120857, 12.940952, -19.643871), (45.08847, 12.940952, -17.307842), (45.932503, 12.940952, -14.924375), (46.650635, 12.940952, -12.5), (47.240902, 12.940952, -10.041364), (47.701683, 12.940952, -7.5552044), (48.03172, 12.940952, -5.048337), (48.230103, 12.940952, -2.5276325), (47.552826, 15.45085, 0), (47.487656, 15.45085, 2.4887226), (47.292328, 15.45085, 4.970624), (46.967373, 15.45085, 7.438901), (46.513683, 15.45085, 9.886788), (45.932503, 15.45085, 12.307577), (45.225426, 15.45085, 14.694632), (44.394386, 15.45085, 17.041409), (43.44167, 15.45085, 19.341476), (42.369877, 15.45085, 21.588531), (41.181953, 15.45085, 23.776413), (39.881157, 15.45085, 25.899126), (38.471043, 15.45085, 27.95085), (36.955486, 15.45085, 29.925962), (35.33864, 15.45085, 31.819052), (33.624924, 15.45085, 33.624924), (31.819052, 15.45085, 35.33864), (29.925962, 15.45085, 36.955486), (27.95085, 15.45085, 38.471043), (25.899126, 15.45085, 39.881157), (23.776413, 15.45085, 41.181953), (21.588531, 15.45085, 42.369877), (19.341476, 15.45085, 43.44167), (17.041409, 15.45085, 44.394386), (14.694632, 15.45085, 45.225426), (12.307577, 15.45085, 45.932503), (9.886788, 15.45085, 46.513683), (7.438901, 15.45085, 46.967373), (4.970624, 15.45085, 47.292328), (2.4887226, 15.45085, 47.487656), (2.9117708e-15, 15.45085, 47.552826), (-2.4887226, 15.45085, 47.487656), (-4.970624, 15.45085, 47.292328), (-7.438901, 15.45085, 46.967373), (-9.886788, 15.45085, 46.513683), (-12.307577, 15.45085, 45.932503), (-14.694632, 15.45085, 45.225426), (-17.041409, 15.45085, 44.394386), (-19.341476, 15.45085, 43.44167), (-21.588531, 15.45085, 42.369877), (-23.776413, 15.45085, 41.181953), (-25.899126, 15.45085, 39.881157), (-27.95085, 15.45085, 38.471043), (-29.925962, 15.45085, 36.955486), (-31.819052, 15.45085, 35.33864), (-33.624924, 15.45085, 33.624924), (-35.33864, 15.45085, 31.819052), (-36.955486, 15.45085, 29.925962), (-38.471043, 15.45085, 27.95085), (-39.881157, 15.45085, 25.899126), (-41.181953, 15.45085, 23.776413), (-42.369877, 15.45085, 21.588531), (-43.44167, 15.45085, 19.341476), (-44.394386, 15.45085, 17.041409), (-45.225426, 15.45085, 14.694632), (-45.932503, 15.45085, 12.307577), (-46.513683, 15.45085, 9.886788), (-46.967373, 15.45085, 7.438901), (-47.292328, 15.45085, 4.970624), (-47.487656, 15.45085, 2.4887226), (-47.552826, 15.45085, 5.8235417e-15), (-47.487656, 15.45085, -2.4887226), (-47.292328, 15.45085, -4.970624), (-46.967373, 15.45085, -7.438901), (-46.513683, 15.45085, -9.886788), (-45.932503, 15.45085, -12.307577), (-45.225426, 15.45085, -14.694632), (-44.394386, 15.45085, -17.041409), (-43.44167, 15.45085, -19.341476), (-42.369877, 15.45085, -21.588531), (-41.181953, 15.45085, -23.776413), (-39.881157, 15.45085, -25.899126), (-38.471043, 15.45085, -27.95085), (-36.955486, 15.45085, -29.925962), (-35.33864, 15.45085, -31.819052), (-33.624924, 15.45085, -33.624924), (-31.819052, 15.45085, -35.33864), (-29.925962, 15.45085, -36.955486), (-27.95085, 15.45085, -38.471043), (-25.899126, 15.45085, -39.881157), (-23.776413, 15.45085, -41.181953), (-21.588531, 15.45085, -42.369877), (-19.341476, 15.45085, -43.44167), (-17.041409, 15.45085, -44.394386), (-14.694632, 15.45085, -45.225426), (-12.307577, 15.45085, -45.932503), (-9.886788, 15.45085, -46.513683), (-7.438901, 15.45085, -46.967373), (-4.970624, 15.45085, -47.292328), (-2.4887226, 15.45085, -47.487656), (-8.735313e-15, 15.45085, -47.552826), (2.4887226, 15.45085, -47.487656), (4.970624, 15.45085, -47.292328), (7.438901, 15.45085, -46.967373), (9.886788, 15.45085, -46.513683), (12.307577, 15.45085, -45.932503), (14.694632, 15.45085, -45.225426), (17.041409, 15.45085, -44.394386), (19.341476, 15.45085, -43.44167), (21.588531, 15.45085, -42.369877), (23.776413, 15.45085, -41.181953), (25.899126, 15.45085, -39.881157), (27.95085, 15.45085, -38.471043), (29.925962, 15.45085, -36.955486), (31.819052, 15.45085, -35.33864), (33.624924, 15.45085, -33.624924), (35.33864, 15.45085, -31.819052), (36.955486, 15.45085, -29.925962), (38.471043, 15.45085, -27.95085), (39.881157, 15.45085, -25.899126), (41.181953, 15.45085, -23.776413), (42.369877, 15.45085, -21.588531), (43.44167, 15.45085, -19.341476), (44.394386, 15.45085, -17.041409), (45.225426, 15.45085, -14.694632), (45.932503, 15.45085, -12.307577), (46.513683, 15.45085, -9.886788), (46.967373, 15.45085, -7.438901), (47.292328, 15.45085, -4.970624), (47.487656, 15.45085, -2.4887226), (46.67902, 17.918398, 0), (46.615047, 17.918398, 2.4429913), (46.42331, 17.918398, 4.8792863), (46.104324, 17.918398, 7.302208), (45.658974, 17.918398, 9.705114), (45.08847, 17.918398, 12.08142), (44.394386, 17.918398, 14.424611), (43.57862, 17.918398, 16.728266), (42.64341, 17.918398, 18.986069), (41.591312, 17.918398, 21.191832), (40.425217, 17.918398, 23.33951), (39.148323, 17.918398, 25.423218), (37.764122, 17.918398, 27.43724), (36.276413, 17.918398, 29.37606), (34.689274, 17.918398, 31.234362), (33.007053, 17.918398, 33.007053), (31.234362, 17.918398, 34.689274), (29.37606, 17.918398, 36.276413), (27.43724, 17.918398, 37.764122), (25.423218, 17.918398, 39.148323), (23.33951, 17.918398, 40.425217), (21.191832, 17.918398, 41.591312), (18.986069, 17.918398, 42.64341), (16.728266, 17.918398, 43.57862), (14.424611, 17.918398, 44.394386), (12.08142, 17.918398, 45.08847), (9.705114, 17.918398, 45.658974), (7.302208, 17.918398, 46.104324), (4.8792863, 17.918398, 46.42331), (2.4429913, 17.918398, 46.615047), (2.8582657e-15, 17.918398, 46.67902), (-2.4429913, 17.918398, 46.615047), (-4.8792863, 17.918398, 46.42331), (-7.302208, 17.918398, 46.104324), (-9.705114, 17.918398, 45.658974), (-12.08142, 17.918398, 45.08847), (-14.424611, 17.918398, 44.394386), (-16.728266, 17.918398, 43.57862), (-18.986069, 17.918398, 42.64341), (-21.191832, 17.918398, 41.591312), (-23.33951, 17.918398, 40.425217), (-25.423218, 17.918398, 39.148323), (-27.43724, 17.918398, 37.764122), (-29.37606, 17.918398, 36.276413), (-31.234362, 17.918398, 34.689274), (-33.007053, 17.918398, 33.007053), (-34.689274, 17.918398, 31.234362), (-36.276413, 17.918398, 29.37606), (-37.764122, 17.918398, 27.43724), (-39.148323, 17.918398, 25.423218), (-40.425217, 17.918398, 23.33951), (-41.591312, 17.918398, 21.191832), (-42.64341, 17.918398, 18.986069), (-43.57862, 17.918398, 16.728266), (-44.394386, 17.918398, 14.424611), (-45.08847, 17.918398, 12.08142), (-45.658974, 17.918398, 9.705114), (-46.104324, 17.918398, 7.302208), (-46.42331, 17.918398, 4.8792863), (-46.615047, 17.918398, 2.4429913), (-46.67902, 17.918398, 5.7165313e-15), (-46.615047, 17.918398, -2.4429913), (-46.42331, 17.918398, -4.8792863), (-46.104324, 17.918398, -7.302208), (-45.658974, 17.918398, -9.705114), (-45.08847, 17.918398, -12.08142), (-44.394386, 17.918398, -14.424611), (-43.57862, 17.918398, -16.728266), (-42.64341, 17.918398, -18.986069), (-41.591312, 17.918398, -21.191832), (-40.425217, 17.918398, -23.33951), (-39.148323, 17.918398, -25.423218), (-37.764122, 17.918398, -27.43724), (-36.276413, 17.918398, -29.37606), (-34.689274, 17.918398, -31.234362), (-33.007053, 17.918398, -33.007053), (-31.234362, 17.918398, -34.689274), (-29.37606, 17.918398, -36.276413), (-27.43724, 17.918398, -37.764122), (-25.423218, 17.918398, -39.148323), (-23.33951, 17.918398, -40.425217), (-21.191832, 17.918398, -41.591312), (-18.986069, 17.918398, -42.64341), (-16.728266, 17.918398, -43.57862), (-14.424611, 17.918398, -44.394386), (-12.08142, 17.918398, -45.08847), (-9.705114, 17.918398, -45.658974), (-7.302208, 17.918398, -46.104324), (-4.8792863, 17.918398, -46.42331), (-2.4429913, 17.918398, -46.615047), (-8.5747974e-15, 17.918398, -46.67902), (2.4429913, 17.918398, -46.615047), (4.8792863, 17.918398, -46.42331), (7.302208, 17.918398, -46.104324), (9.705114, 17.918398, -45.658974), (12.08142, 17.918398, -45.08847), (14.424611, 17.918398, -44.394386), (16.728266, 17.918398, -43.57862), (18.986069, 17.918398, -42.64341), (21.191832, 17.918398, -41.591312), (23.33951, 17.918398, -40.425217), (25.423218, 17.918398, -39.148323), (27.43724, 17.918398, -37.764122), (29.37606, 17.918398, -36.276413), (31.234362, 17.918398, -34.689274), (33.007053, 17.918398, -33.007053), (34.689274, 17.918398, -31.234362), (36.276413, 17.918398, -29.37606), (37.764122, 17.918398, -27.43724), (39.148323, 17.918398, -25.423218), (40.425217, 17.918398, -23.33951), (41.591312, 17.918398, -21.191832), (42.64341, 17.918398, -18.986069), (43.57862, 17.918398, -16.728266), (44.394386, 17.918398, -14.424611), (45.08847, 17.918398, -12.08142), (45.658974, 17.918398, -9.705114), (46.104324, 17.918398, -7.302208), (46.42331, 17.918398, -4.8792863), (46.615047, 17.918398, -2.4429913), (45.677273, 20.336832, 0), (45.614674, 20.336832, 2.3905637), (45.427048, 20.336832, 4.774575), (45.11491, 20.336832, 7.1454997), (44.679115, 20.336832, 9.496839), (44.120857, 20.336832, 11.822148), (43.44167, 20.336832, 14.115053), (42.64341, 20.336832, 16.36927), (41.728264, 20.336832, 18.57862), (40.69875, 20.336832, 20.737047), (39.55768, 20.336832, 22.838636), (38.308186, 20.336832, 24.877626), (36.95369, 20.336832, 26.848427), (35.49791, 20.336832, 28.74564), (33.944828, 20.336832, 30.564062), (32.29871, 20.336832, 32.29871), (30.564062, 20.336832, 33.944828), (28.74564, 20.336832, 35.49791), (26.848427, 20.336832, 36.95369), (24.877626, 20.336832, 38.308186), (22.838636, 20.336832, 39.55768), (20.737047, 20.336832, 40.69875), (18.57862, 20.336832, 41.728264), (16.36927, 20.336832, 42.64341), (14.115053, 20.336832, 43.44167), (11.822148, 20.336832, 44.120857), (9.496839, 20.336832, 44.679115), (7.1454997, 20.336832, 45.11491), (4.774575, 20.336832, 45.427048), (2.3905637, 20.336832, 45.614674), (2.7969263e-15, 20.336832, 45.677273), (-2.3905637, 20.336832, 45.614674), (-4.774575, 20.336832, 45.427048), (-7.1454997, 20.336832, 45.11491), (-9.496839, 20.336832, 44.679115), (-11.822148, 20.336832, 44.120857), (-14.115053, 20.336832, 43.44167), (-16.36927, 20.336832, 42.64341), (-18.57862, 20.336832, 41.728264), (-20.737047, 20.336832, 40.69875), (-22.838636, 20.336832, 39.55768), (-24.877626, 20.336832, 38.308186), (-26.848427, 20.336832, 36.95369), (-28.74564, 20.336832, 35.49791), (-30.564062, 20.336832, 33.944828), (-32.29871, 20.336832, 32.29871), (-33.944828, 20.336832, 30.564062), (-35.49791, 20.336832, 28.74564), (-36.95369, 20.336832, 26.848427), (-38.308186, 20.336832, 24.877626), (-39.55768, 20.336832, 22.838636), (-40.69875, 20.336832, 20.737047), (-41.728264, 20.336832, 18.57862), (-42.64341, 20.336832, 16.36927), (-43.44167, 20.336832, 14.115053), (-44.120857, 20.336832, 11.822148), (-44.679115, 20.336832, 9.496839), (-45.11491, 20.336832, 7.1454997), (-45.427048, 20.336832, 4.774575), (-45.614674, 20.336832, 2.3905637), (-45.677273, 20.336832, 5.5938526e-15), (-45.614674, 20.336832, -2.3905637), (-45.427048, 20.336832, -4.774575), (-45.11491, 20.336832, -7.1454997), (-44.679115, 20.336832, -9.496839), (-44.120857, 20.336832, -11.822148), (-43.44167, 20.336832, -14.115053), (-42.64341, 20.336832, -16.36927), (-41.728264, 20.336832, -18.57862), (-40.69875, 20.336832, -20.737047), (-39.55768, 20.336832, -22.838636), (-38.308186, 20.336832, -24.877626), (-36.95369, 20.336832, -26.848427), (-35.49791, 20.336832, -28.74564), (-33.944828, 20.336832, -30.564062), (-32.29871, 20.336832, -32.29871), (-30.564062, 20.336832, -33.944828), (-28.74564, 20.336832, -35.49791), (-26.848427, 20.336832, -36.95369), (-24.877626, 20.336832, -38.308186), (-22.838636, 20.336832, -39.55768), (-20.737047, 20.336832, -40.69875), (-18.57862, 20.336832, -41.728264), (-16.36927, 20.336832, -42.64341), (-14.115053, 20.336832, -43.44167), (-11.822148, 20.336832, -44.120857), (-9.496839, 20.336832, -44.679115), (-7.1454997, 20.336832, -45.11491), (-4.774575, 20.336832, -45.427048), (-2.3905637, 20.336832, -45.614674), (-8.390779e-15, 20.336832, -45.677273), (2.3905637, 20.336832, -45.614674), (4.774575, 20.336832, -45.427048), (7.1454997, 20.336832, -45.11491), (9.496839, 20.336832, -44.679115), (11.822148, 20.336832, -44.120857), (14.115053, 20.336832, -43.44167), (16.36927, 20.336832, -42.64341), (18.57862, 20.336832, -41.728264), (20.737047, 20.336832, -40.69875), (22.838636, 20.336832, -39.55768), (24.877626, 20.336832, -38.308186), (26.848427, 20.336832, -36.95369), (28.74564, 20.336832, -35.49791), (30.564062, 20.336832, -33.944828), (32.29871, 20.336832, -32.29871), (33.944828, 20.336832, -30.564062), (35.49791, 20.336832, -28.74564), (36.95369, 20.336832, -26.848427), (38.308186, 20.336832, -24.877626), (39.55768, 20.336832, -22.838636), (40.69875, 20.336832, -20.737047), (41.728264, 20.336832, -18.57862), (42.64341, 20.336832, -16.36927), (43.44167, 20.336832, -14.115053), (44.120857, 20.336832, -11.822148), (44.679115, 20.336832, -9.496839), (45.11491, 20.336832, -7.1454997), (45.427048, 20.336832, -4.774575), (45.614674, 20.336832, -2.3905637), (44.550327, 22.699526, 0), (44.489273, 22.699526, 2.331584), (44.306274, 22.699526, 4.656777), (44.00184, 22.699526, 6.9692063), (43.576794, 22.699526, 9.262533), (43.03231, 22.699526, 11.530473), (42.369877, 22.699526, 13.766808), (41.591312, 22.699526, 15.965409), (40.69875, 22.699526, 18.12025), (39.69463, 22.699526, 20.225426), (38.581715, 22.699526, 22.275164), (37.36305, 22.699526, 24.263847), (36.04197, 22.699526, 26.186026), (34.622105, 22.699526, 28.036428), (33.107346, 22.699526, 29.809986), (31.501839, 22.699526, 31.501839), (29.809986, 22.699526, 33.107346), (28.036428, 22.699526, 34.622105), (26.186026, 22.699526, 36.04197), (24.263847, 22.699526, 37.36305), (22.275164, 22.699526, 38.581715), (20.225426, 22.699526, 39.69463), (18.12025, 22.699526, 40.69875), (15.965409, 22.699526, 41.591312), (13.766808, 22.699526, 42.369877), (11.530473, 22.699526, 43.03231), (9.262533, 22.699526, 43.576794), (6.9692063, 22.699526, 44.00184), (4.656777, 22.699526, 44.306274), (2.331584, 22.699526, 44.489273), (2.7279206e-15, 22.699526, 44.550327), (-2.331584, 22.699526, 44.489273), (-4.656777, 22.699526, 44.306274), (-6.9692063, 22.699526, 44.00184), (-9.262533, 22.699526, 43.576794), (-11.530473, 22.699526, 43.03231), (-13.766808, 22.699526, 42.369877), (-15.965409, 22.699526, 41.591312), (-18.12025, 22.699526, 40.69875), (-20.225426, 22.699526, 39.69463), (-22.275164, 22.699526, 38.581715), (-24.263847, 22.699526, 37.36305), (-26.186026, 22.699526, 36.04197), (-28.036428, 22.699526, 34.622105), (-29.809986, 22.699526, 33.107346), (-31.501839, 22.699526, 31.501839), (-33.107346, 22.699526, 29.809986), (-34.622105, 22.699526, 28.036428), (-36.04197, 22.699526, 26.186026), (-37.36305, 22.699526, 24.263847), (-38.581715, 22.699526, 22.275164), (-39.69463, 22.699526, 20.225426), (-40.69875, 22.699526, 18.12025), (-41.591312, 22.699526, 15.965409), (-42.369877, 22.699526, 13.766808), (-43.03231, 22.699526, 11.530473), (-43.576794, 22.699526, 9.262533), (-44.00184, 22.699526, 6.9692063), (-44.306274, 22.699526, 4.656777), (-44.489273, 22.699526, 2.331584), (-44.550327, 22.699526, 5.4558413e-15), (-44.489273, 22.699526, -2.331584), (-44.306274, 22.699526, -4.656777), (-44.00184, 22.699526, -6.9692063), (-43.576794, 22.699526, -9.262533), (-43.03231, 22.699526, -11.530473), (-42.369877, 22.699526, -13.766808), (-41.591312, 22.699526, -15.965409), (-40.69875, 22.699526, -18.12025), (-39.69463, 22.699526, -20.225426), (-38.581715, 22.699526, -22.275164), (-37.36305, 22.699526, -24.263847), (-36.04197, 22.699526, -26.186026), (-34.622105, 22.699526, -28.036428), (-33.107346, 22.699526, -29.809986), (-31.501839, 22.699526, -31.501839), (-29.809986, 22.699526, -33.107346), (-28.036428, 22.699526, -34.622105), (-26.186026, 22.699526, -36.04197), (-24.263847, 22.699526, -37.36305), (-22.275164, 22.699526, -38.581715), (-20.225426, 22.699526, -39.69463), (-18.12025, 22.699526, -40.69875), (-15.965409, 22.699526, -41.591312), (-13.766808, 22.699526, -42.369877), (-11.530473, 22.699526, -43.03231), (-9.262533, 22.699526, -43.576794), (-6.9692063, 22.699526, -44.00184), (-4.656777, 22.699526, -44.306274), (-2.331584, 22.699526, -44.489273), (-8.183762e-15, 22.699526, -44.550327), (2.331584, 22.699526, -44.489273), (4.656777, 22.699526, -44.306274), (6.9692063, 22.699526, -44.00184), (9.262533, 22.699526, -43.576794), (11.530473, 22.699526, -43.03231), (13.766808, 22.699526, -42.369877), (15.965409, 22.699526, -41.591312), (18.12025, 22.699526, -40.69875), (20.225426, 22.699526, -39.69463), (22.275164, 22.699526, -38.581715), (24.263847, 22.699526, -37.36305), (26.186026, 22.699526, -36.04197), (28.036428, 22.699526, -34.622105), (29.809986, 22.699526, -33.107346), (31.501839, 22.699526, -31.501839), (33.107346, 22.699526, -29.809986), (34.622105, 22.699526, -28.036428), (36.04197, 22.699526, -26.186026), (37.36305, 22.699526, -24.263847), (38.581715, 22.699526, -22.275164), (39.69463, 22.699526, -20.225426), (40.69875, 22.699526, -18.12025), (41.591312, 22.699526, -15.965409), (42.369877, 22.699526, -13.766808), (43.03231, 22.699526, -11.530473), (43.576794, 22.699526, -9.262533), (44.00184, 22.699526, -6.9692063), (44.306274, 22.699526, -4.656777), (44.489273, 22.699526, -2.331584), (43.30127, 25, 0), (43.24193, 25, 2.2662134), (43.06406, 25, 4.526215), (42.768158, 25, 6.773811), (42.355034, 25, 9.00284), (41.825813, 25, 11.207193), (41.181953, 25, 13.380828), (40.425217, 25, 15.517787), (39.55768, 25, 17.612213), (38.581715, 25, 19.658365), (37.5, 25, 21.650635), (36.315502, 25, 23.583563), (35.031464, 25, 25.451847), (33.65141, 25, 27.250372), (32.179115, 25, 28.974205), (30.618622, 25, 30.618622), (28.974205, 25, 32.179115), (27.250372, 25, 33.65141), (25.451847, 25, 35.031464), (23.583563, 25, 36.315502), (21.650635, 25, 37.5), (19.658365, 25, 38.581715), (17.612213, 25, 39.55768), (15.517787, 25, 40.425217), (13.380828, 25, 41.181953), (11.207193, 25, 41.825813), (9.00284, 25, 42.355034), (6.773811, 25, 42.768158), (4.526215, 25, 43.06406), (2.2662134, 25, 43.24193), (2.651438e-15, 25, 43.30127), (-2.2662134, 25, 43.24193), (-4.526215, 25, 43.06406), (-6.773811, 25, 42.768158), (-9.00284, 25, 42.355034), (-11.207193, 25, 41.825813), (-13.380828, 25, 41.181953), (-15.517787, 25, 40.425217), (-17.612213, 25, 39.55768), (-19.658365, 25, 38.581715), (-21.650635, 25, 37.5), (-23.583563, 25, 36.315502), (-25.451847, 25, 35.031464), (-27.250372, 25, 33.65141), (-28.974205, 25, 32.179115), (-30.618622, 25, 30.618622), (-32.179115, 25, 28.974205), (-33.65141, 25, 27.250372), (-35.031464, 25, 25.451847), (-36.315502, 25, 23.583563), (-37.5, 25, 21.650635), (-38.581715, 25, 19.658365), (-39.55768, 25, 17.612213), (-40.425217, 25, 15.517787), (-41.181953, 25, 13.380828), (-41.825813, 25, 11.207193), (-42.355034, 25, 9.00284), (-42.768158, 25, 6.773811), (-43.06406, 25, 4.526215), (-43.24193, 25, 2.2662134), (-43.30127, 25, 5.302876e-15), (-43.24193, 25, -2.2662134), (-43.06406, 25, -4.526215), (-42.768158, 25, -6.773811), (-42.355034, 25, -9.00284), (-41.825813, 25, -11.207193), (-41.181953, 25, -13.380828), (-40.425217, 25, -15.517787), (-39.55768, 25, -17.612213), (-38.581715, 25, -19.658365), (-37.5, 25, -21.650635), (-36.315502, 25, -23.583563), (-35.031464, 25, -25.451847), (-33.65141, 25, -27.250372), (-32.179115, 25, -28.974205), (-30.618622, 25, -30.618622), (-28.974205, 25, -32.179115), (-27.250372, 25, -33.65141), (-25.451847, 25, -35.031464), (-23.583563, 25, -36.315502), (-21.650635, 25, -37.5), (-19.658365, 25, -38.581715), (-17.612213, 25, -39.55768), (-15.517787, 25, -40.425217), (-13.380828, 25, -41.181953), (-11.207193, 25, -41.825813), (-9.00284, 25, -42.355034), (-6.773811, 25, -42.768158), (-4.526215, 25, -43.06406), (-2.2662134, 25, -43.24193), (-7.9543145e-15, 25, -43.30127), (2.2662134, 25, -43.24193), (4.526215, 25, -43.06406), (6.773811, 25, -42.768158), (9.00284, 25, -42.355034), (11.207193, 25, -41.825813), (13.380828, 25, -41.181953), (15.517787, 25, -40.425217), (17.612213, 25, -39.55768), (19.658365, 25, -38.581715), (21.650635, 25, -37.5), (23.583563, 25, -36.315502), (25.451847, 25, -35.031464), (27.250372, 25, -33.65141), (28.974205, 25, -32.179115), (30.618622, 25, -30.618622), (32.179115, 25, -28.974205), (33.65141, 25, -27.250372), (35.031464, 25, -25.451847), (36.315502, 25, -23.583563), (37.5, 25, -21.650635), (38.581715, 25, -19.658365), (39.55768, 25, -17.612213), (40.425217, 25, -15.517787), (41.181953, 25, -13.380828), (41.825813, 25, -11.207193), (42.355034, 25, -9.00284), (42.768158, 25, -6.773811), (43.06406, 25, -4.526215), (43.24193, 25, -2.2662134), (41.93353, 27.231953, 0), (41.87606, 27.231953, 2.1946313), (41.70381, 27.231953, 4.3832474), (41.417255, 27.231953, 6.5598493), (41.01718, 27.231953, 8.718471), (40.504677, 27.231953, 10.853196), (39.881157, 27.231953, 12.958173), (39.148323, 27.231953, 15.027633), (38.308186, 27.231953, 17.055902), (37.36305, 27.231953, 19.037424), (36.315502, 27.231953, 20.966764), (35.168415, 27.231953, 22.838636), (33.92494, 27.231953, 24.64791), (32.58847, 27.231953, 26.389624), (31.162685, 27.231953, 28.059008), (29.651482, 27.231953, 29.651482), (28.059008, 27.231953, 31.162685), (26.389624, 27.231953, 32.58847), (24.64791, 27.231953, 33.92494), (22.838636, 27.231953, 35.168415), (20.966764, 27.231953, 36.315502), (19.037424, 27.231953, 37.36305), (17.055902, 27.231953, 38.308186), (15.027633, 27.231953, 39.148323), (12.958173, 27.231953, 39.881157), (10.853196, 27.231953, 40.504677), (8.718471, 27.231953, 41.01718), (6.5598493, 27.231953, 41.417255), (4.3832474, 27.231953, 41.70381), (2.1946313, 27.231953, 41.87606), (2.567688e-15, 27.231953, 41.93353), (-2.1946313, 27.231953, 41.87606), (-4.3832474, 27.231953, 41.70381), (-6.5598493, 27.231953, 41.417255), (-8.718471, 27.231953, 41.01718), (-10.853196, 27.231953, 40.504677), (-12.958173, 27.231953, 39.881157), (-15.027633, 27.231953, 39.148323), (-17.055902, 27.231953, 38.308186), (-19.037424, 27.231953, 37.36305), (-20.966764, 27.231953, 36.315502), (-22.838636, 27.231953, 35.168415), (-24.64791, 27.231953, 33.92494), (-26.389624, 27.231953, 32.58847), (-28.059008, 27.231953, 31.162685), (-29.651482, 27.231953, 29.651482), (-31.162685, 27.231953, 28.059008), (-32.58847, 27.231953, 26.389624), (-33.92494, 27.231953, 24.64791), (-35.168415, 27.231953, 22.838636), (-36.315502, 27.231953, 20.966764), (-37.36305, 27.231953, 19.037424), (-38.308186, 27.231953, 17.055902), (-39.148323, 27.231953, 15.027633), (-39.881157, 27.231953, 12.958173), (-40.504677, 27.231953, 10.853196), (-41.01718, 27.231953, 8.718471), (-41.417255, 27.231953, 6.5598493), (-41.70381, 27.231953, 4.3832474), (-41.87606, 27.231953, 2.1946313), (-41.93353, 27.231953, 5.135376e-15), (-41.87606, 27.231953, -2.1946313), (-41.70381, 27.231953, -4.3832474), (-41.417255, 27.231953, -6.5598493), (-41.01718, 27.231953, -8.718471), (-40.504677, 27.231953, -10.853196), (-39.881157, 27.231953, -12.958173), (-39.148323, 27.231953, -15.027633), (-38.308186, 27.231953, -17.055902), (-37.36305, 27.231953, -19.037424), (-36.315502, 27.231953, -20.966764), (-35.168415, 27.231953, -22.838636), (-33.92494, 27.231953, -24.64791), (-32.58847, 27.231953, -26.389624), (-31.162685, 27.231953, -28.059008), (-29.651482, 27.231953, -29.651482), (-28.059008, 27.231953, -31.162685), (-26.389624, 27.231953, -32.58847), (-24.64791, 27.231953, -33.92494), (-22.838636, 27.231953, -35.168415), (-20.966764, 27.231953, -36.315502), (-19.037424, 27.231953, -37.36305), (-17.055902, 27.231953, -38.308186), (-15.027633, 27.231953, -39.148323), (-12.958173, 27.231953, -39.881157), (-10.853196, 27.231953, -40.504677), (-8.718471, 27.231953, -41.01718), (-6.5598493, 27.231953, -41.417255), (-4.3832474, 27.231953, -41.70381), (-2.1946313, 27.231953, -41.87606), (-7.703064e-15, 27.231953, -41.93353), (2.1946313, 27.231953, -41.87606), (4.3832474, 27.231953, -41.70381), (6.5598493, 27.231953, -41.417255), (8.718471, 27.231953, -41.01718), (10.853196, 27.231953, -40.504677), (12.958173, 27.231953, -39.881157), (15.027633, 27.231953, -39.148323), (17.055902, 27.231953, -38.308186), (19.037424, 27.231953, -37.36305), (20.966764, 27.231953, -36.315502), (22.838636, 27.231953, -35.168415), (24.64791, 27.231953, -33.92494), (26.389624, 27.231953, -32.58847), (28.059008, 27.231953, -31.162685), (29.651482, 27.231953, -29.651482), (31.162685, 27.231953, -28.059008), (32.58847, 27.231953, -26.389624), (33.92494, 27.231953, -24.64791), (35.168415, 27.231953, -22.838636), (36.315502, 27.231953, -20.966764), (37.36305, 27.231953, -19.037424), (38.308186, 27.231953, -17.055902), (39.148323, 27.231953, -15.027633), (39.881157, 27.231953, -12.958173), (40.504677, 27.231953, -10.853196), (41.01718, 27.231953, -8.718471), (41.417255, 27.231953, -6.5598493), (41.70381, 27.231953, -4.3832474), (41.87606, 27.231953, -2.1946313), (40.45085, 29.389263, 0), (40.395412, 29.389263, 2.117034), (40.229256, 29.389263, 4.2282653), (39.95283, 29.389263, 6.327907), (39.566902, 29.389263, 8.410205), (39.07252, 29.389263, 10.46945), (38.471043, 29.389263, 12.5), (37.764122, 29.389263, 14.496288), (36.95369, 29.389263, 16.452843), (36.04197, 29.389263, 18.364302), (35.031464, 29.389263, 20.225426), (33.92494, 29.389263, 22.031113), (32.725426, 29.389263, 23.776413), (31.436214, 29.389263, 25.456545), (30.06084, 29.389263, 27.066902), (28.60307, 29.389263, 28.60307), (27.066902, 29.389263, 30.06084), (25.456545, 29.389263, 31.436214), (23.776413, 29.389263, 32.725426), (22.031113, 29.389263, 33.92494), (20.225426, 29.389263, 35.031464), (18.364302, 29.389263, 36.04197), (16.452843, 29.389263, 36.95369), (14.496288, 29.389263, 37.764122), (12.5, 29.389263, 38.471043), (10.46945, 29.389263, 39.07252), (8.410205, 29.389263, 39.566902), (6.327907, 29.389263, 39.95283), (4.2282653, 29.389263, 40.229256), (2.117034, 29.389263, 40.395412), (2.4769e-15, 29.389263, 40.45085), (-2.117034, 29.389263, 40.395412), (-4.2282653, 29.389263, 40.229256), (-6.327907, 29.389263, 39.95283), (-8.410205, 29.389263, 39.566902), (-10.46945, 29.389263, 39.07252), (-12.5, 29.389263, 38.471043), (-14.496288, 29.389263, 37.764122), (-16.452843, 29.389263, 36.95369), (-18.364302, 29.389263, 36.04197), (-20.225426, 29.389263, 35.031464), (-22.031113, 29.389263, 33.92494), (-23.776413, 29.389263, 32.725426), (-25.456545, 29.389263, 31.436214), (-27.066902, 29.389263, 30.06084), (-28.60307, 29.389263, 28.60307), (-30.06084, 29.389263, 27.066902), (-31.436214, 29.389263, 25.456545), (-32.725426, 29.389263, 23.776413), (-33.92494, 29.389263, 22.031113), (-35.031464, 29.389263, 20.225426), (-36.04197, 29.389263, 18.364302), (-36.95369, 29.389263, 16.452843), (-37.764122, 29.389263, 14.496288), (-38.471043, 29.389263, 12.5), (-39.07252, 29.389263, 10.46945), (-39.566902, 29.389263, 8.410205), (-39.95283, 29.389263, 6.327907), (-40.229256, 29.389263, 4.2282653), (-40.395412, 29.389263, 2.117034), (-40.45085, 29.389263, 4.9538e-15), (-40.395412, 29.389263, -2.117034), (-40.229256, 29.389263, -4.2282653), (-39.95283, 29.389263, -6.327907), (-39.566902, 29.389263, -8.410205), (-39.07252, 29.389263, -10.46945), (-38.471043, 29.389263, -12.5), (-37.764122, 29.389263, -14.496288), (-36.95369, 29.389263, -16.452843), (-36.04197, 29.389263, -18.364302), (-35.031464, 29.389263, -20.225426), (-33.92494, 29.389263, -22.031113), (-32.725426, 29.389263, -23.776413), (-31.436214, 29.389263, -25.456545), (-30.06084, 29.389263, -27.066902), (-28.60307, 29.389263, -28.60307), (-27.066902, 29.389263, -30.06084), (-25.456545, 29.389263, -31.436214), (-23.776413, 29.389263, -32.725426), (-22.031113, 29.389263, -33.92494), (-20.225426, 29.389263, -35.031464), (-18.364302, 29.389263, -36.04197), (-16.452843, 29.389263, -36.95369), (-14.496288, 29.389263, -37.764122), (-12.5, 29.389263, -38.471043), (-10.46945, 29.389263, -39.07252), (-8.410205, 29.389263, -39.566902), (-6.327907, 29.389263, -39.95283), (-4.2282653, 29.389263, -40.229256), (-2.117034, 29.389263, -40.395412), (-7.430701e-15, 29.389263, -40.45085), (2.117034, 29.389263, -40.395412), (4.2282653, 29.389263, -40.229256), (6.327907, 29.389263, -39.95283), (8.410205, 29.389263, -39.566902), (10.46945, 29.389263, -39.07252), (12.5, 29.389263, -38.471043), (14.496288, 29.389263, -37.764122), (16.452843, 29.389263, -36.95369), (18.364302, 29.389263, -36.04197), (20.225426, 29.389263, -35.031464), (22.031113, 29.389263, -33.92494), (23.776413, 29.389263, -32.725426), (25.456545, 29.389263, -31.436214), (27.066902, 29.389263, -30.06084), (28.60307, 29.389263, -28.60307), (30.06084, 29.389263, -27.066902), (31.436214, 29.389263, -25.456545), (32.725426, 29.389263, -23.776413), (33.92494, 29.389263, -22.031113), (35.031464, 29.389263, -20.225426), (36.04197, 29.389263, -18.364302), (36.95369, 29.389263, -16.452843), (37.764122, 29.389263, -14.496288), (38.471043, 29.389263, -12.5), (39.07252, 29.389263, -10.46945), (39.566902, 29.389263, -8.410205), (39.95283, 29.389263, -6.327907), (40.229256, 29.389263, -4.2282653), (40.395412, 29.389263, -2.117034), (38.8573, 31.466019, 0), (38.804047, 31.466019, 2.033634), (38.644432, 31.466019, 4.0616937), (38.3789, 31.466019, 6.0786204), (38.00817, 31.466019, 8.078887), (37.533268, 31.466019, 10.057009), (36.955486, 31.466019, 12.0075655), (36.276413, 31.466019, 13.92521), (35.49791, 31.466019, 15.804687), (34.622105, 31.466019, 17.640844), (33.65141, 31.466019, 19.42865), (32.58847, 31.466019, 21.1632), (31.436214, 31.466019, 22.839746), (30.197792, 31.466019, 24.45369), (28.8766, 31.466019, 26.000607), (27.47626, 31.466019, 27.47626), (26.000607, 31.466019, 28.8766), (24.45369, 31.466019, 30.197792), (22.839746, 31.466019, 31.436214), (21.1632, 31.466019, 32.58847), (19.42865, 31.466019, 33.65141), (17.640844, 31.466019, 34.622105), (15.804687, 31.466019, 35.49791), (13.92521, 31.466019, 36.276413), (12.0075655, 31.466019, 36.955486), (10.057009, 31.466019, 37.533268), (8.078887, 31.466019, 38.00817), (6.0786204, 31.466019, 38.3789), (4.0616937, 31.466019, 38.644432), (2.033634, 31.466019, 38.804047), (2.3793234e-15, 31.466019, 38.8573), (-2.033634, 31.466019, 38.804047), (-4.0616937, 31.466019, 38.644432), (-6.0786204, 31.466019, 38.3789), (-8.078887, 31.466019, 38.00817), (-10.057009, 31.466019, 37.533268), (-12.0075655, 31.466019, 36.955486), (-13.92521, 31.466019, 36.276413), (-15.804687, 31.466019, 35.49791), (-17.640844, 31.466019, 34.622105), (-19.42865, 31.466019, 33.65141), (-21.1632, 31.466019, 32.58847), (-22.839746, 31.466019, 31.436214), (-24.45369, 31.466019, 30.197792), (-26.000607, 31.466019, 28.8766), (-27.47626, 31.466019, 27.47626), (-28.8766, 31.466019, 26.000607), (-30.197792, 31.466019, 24.45369), (-31.436214, 31.466019, 22.839746), (-32.58847, 31.466019, 21.1632), (-33.65141, 31.466019, 19.42865), (-34.622105, 31.466019, 17.640844), (-35.49791, 31.466019, 15.804687), (-36.276413, 31.466019, 13.92521), (-36.955486, 31.466019, 12.0075655), (-37.533268, 31.466019, 10.057009), (-38.00817, 31.466019, 8.078887), (-38.3789, 31.466019, 6.0786204), (-38.644432, 31.466019, 4.0616937), (-38.804047, 31.466019, 2.033634), (-38.8573, 31.466019, 4.7586468e-15), (-38.804047, 31.466019, -2.033634), (-38.644432, 31.466019, -4.0616937), (-38.3789, 31.466019, -6.0786204), (-38.00817, 31.466019, -8.078887), (-37.533268, 31.466019, -10.057009), (-36.955486, 31.466019, -12.0075655), (-36.276413, 31.466019, -13.92521), (-35.49791, 31.466019, -15.804687), (-34.622105, 31.466019, -17.640844), (-33.65141, 31.466019, -19.42865), (-32.58847, 31.466019, -21.1632), (-31.436214, 31.466019, -22.839746), (-30.197792, 31.466019, -24.45369), (-28.8766, 31.466019, -26.000607), (-27.47626, 31.466019, -27.47626), (-26.000607, 31.466019, -28.8766), (-24.45369, 31.466019, -30.197792), (-22.839746, 31.466019, -31.436214), (-21.1632, 31.466019, -32.58847), (-19.42865, 31.466019, -33.65141), (-17.640844, 31.466019, -34.622105), (-15.804687, 31.466019, -35.49791), (-13.92521, 31.466019, -36.276413), (-12.0075655, 31.466019, -36.955486), (-10.057009, 31.466019, -37.533268), (-8.078887, 31.466019, -38.00817), (-6.0786204, 31.466019, -38.3789), (-4.0616937, 31.466019, -38.644432), (-2.033634, 31.466019, -38.804047), (-7.1379695e-15, 31.466019, -38.8573), (2.033634, 31.466019, -38.804047), (4.0616937, 31.466019, -38.644432), (6.0786204, 31.466019, -38.3789), (8.078887, 31.466019, -38.00817), (10.057009, 31.466019, -37.533268), (12.0075655, 31.466019, -36.955486), (13.92521, 31.466019, -36.276413), (15.804687, 31.466019, -35.49791), (17.640844, 31.466019, -34.622105), (19.42865, 31.466019, -33.65141), (21.1632, 31.466019, -32.58847), (22.839746, 31.466019, -31.436214), (24.45369, 31.466019, -30.197792), (26.000607, 31.466019, -28.8766), (27.47626, 31.466019, -27.47626), (28.8766, 31.466019, -26.000607), (30.197792, 31.466019, -24.45369), (31.436214, 31.466019, -22.839746), (32.58847, 31.466019, -21.1632), (33.65141, 31.466019, -19.42865), (34.622105, 31.466019, -17.640844), (35.49791, 31.466019, -15.804687), (36.276413, 31.466019, -13.92521), (36.955486, 31.466019, -12.0075655), (37.533268, 31.466019, -10.057009), (38.00817, 31.466019, -8.078887), (38.3789, 31.466019, -6.0786204), (38.644432, 31.466019, -4.0616937), (38.804047, 31.466019, -2.033634), (37.15724, 33.45653, 0), (37.10632, 33.45653, 1.9446597), (36.95369, 33.45653, 3.8839893), (36.699776, 33.45653, 5.812673), (36.34527, 33.45653, 7.725425), (35.89114, 33.45653, 9.617002), (35.33864, 33.45653, 11.482219), (34.689274, 33.45653, 13.315965), (33.944828, 33.45653, 15.113212), (33.107346, 33.45653, 16.869034), (32.179115, 33.45653, 18.57862), (31.162685, 33.45653, 20.237284), (30.06084, 33.45653, 21.840479), (28.8766, 33.45653, 23.38381), (27.61321, 33.45653, 24.863047), (26.274137, 33.45653, 26.274137), (24.863047, 33.45653, 27.61321), (23.38381, 33.45653, 28.8766), (21.840479, 33.45653, 30.06084), (20.237284, 33.45653, 31.162685), (18.57862, 33.45653, 32.179115), (16.869034, 33.45653, 33.107346), (15.113212, 33.45653, 33.944828), (13.315965, 33.45653, 34.689274), (11.482219, 33.45653, 35.33864), (9.617002, 33.45653, 35.89114), (7.725425, 33.45653, 36.34527), (5.812673, 33.45653, 36.699776), (3.8839893, 33.45653, 36.95369), (1.9446597, 33.45653, 37.10632), (2.2752247e-15, 33.45653, 37.15724), (-1.9446597, 33.45653, 37.10632), (-3.8839893, 33.45653, 36.95369), (-5.812673, 33.45653, 36.699776), (-7.725425, 33.45653, 36.34527), (-9.617002, 33.45653, 35.89114), (-11.482219, 33.45653, 35.33864), (-13.315965, 33.45653, 34.689274), (-15.113212, 33.45653, 33.944828), (-16.869034, 33.45653, 33.107346), (-18.57862, 33.45653, 32.179115), (-20.237284, 33.45653, 31.162685), (-21.840479, 33.45653, 30.06084), (-23.38381, 33.45653, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.274137, 33.45653, 26.274137), (-27.61321, 33.45653, 24.863047), (-28.8766, 33.45653, 23.38381), (-30.06084, 33.45653, 21.840479), (-31.162685, 33.45653, 20.237284), (-32.179115, 33.45653, 18.57862), (-33.107346, 33.45653, 16.869034), (-33.944828, 33.45653, 15.113212), (-34.689274, 33.45653, 13.315965), (-35.33864, 33.45653, 11.482219), (-35.89114, 33.45653, 9.617002), (-36.34527, 33.45653, 7.725425), (-36.699776, 33.45653, 5.812673), (-36.95369, 33.45653, 3.8839893), (-37.10632, 33.45653, 1.9446597), (-37.15724, 33.45653, 4.5504495e-15), (-37.10632, 33.45653, -1.9446597), (-36.95369, 33.45653, -3.8839893), (-36.699776, 33.45653, -5.812673), (-36.34527, 33.45653, -7.725425), (-35.89114, 33.45653, -9.617002), (-35.33864, 33.45653, -11.482219), (-34.689274, 33.45653, -13.315965), (-33.944828, 33.45653, -15.113212), (-33.107346, 33.45653, -16.869034), (-32.179115, 33.45653, -18.57862), (-31.162685, 33.45653, -20.237284), (-30.06084, 33.45653, -21.840479), (-28.8766, 33.45653, -23.38381), (-27.61321, 33.45653, -24.863047), (-26.274137, 33.45653, -26.274137), (-24.863047, 33.45653, -27.61321), (-23.38381, 33.45653, -28.8766), (-21.840479, 33.45653, -30.06084), (-20.237284, 33.45653, -31.162685), (-18.57862, 33.45653, -32.179115), (-16.869034, 33.45653, -33.107346), (-15.113212, 33.45653, -33.944828), (-13.315965, 33.45653, -34.689274), (-11.482219, 33.45653, -35.33864), (-9.617002, 33.45653, -35.89114), (-7.725425, 33.45653, -36.34527), (-5.812673, 33.45653, -36.699776), (-3.8839893, 33.45653, -36.95369), (-1.9446597, 33.45653, -37.10632), (-6.8256744e-15, 33.45653, -37.15724), (1.9446597, 33.45653, -37.10632), (3.8839893, 33.45653, -36.95369), (5.812673, 33.45653, -36.699776), (7.725425, 33.45653, -36.34527), (9.617002, 33.45653, -35.89114), (11.482219, 33.45653, -35.33864), (13.315965, 33.45653, -34.689274), (15.113212, 33.45653, -33.944828), (16.869034, 33.45653, -33.107346), (18.57862, 33.45653, -32.179115), (20.237284, 33.45653, -31.162685), (21.840479, 33.45653, -30.06084), (23.38381, 33.45653, -28.8766), (24.863047, 33.45653, -27.61321), (26.274137, 33.45653, -26.274137), (27.61321, 33.45653, -24.863047), (28.8766, 33.45653, -23.38381), (30.06084, 33.45653, -21.840479), (31.162685, 33.45653, -20.237284), (32.179115, 33.45653, -18.57862), (33.107346, 33.45653, -16.869034), (33.944828, 33.45653, -15.113212), (34.689274, 33.45653, -13.315965), (35.33864, 33.45653, -11.482219), (35.89114, 33.45653, -9.617002), (36.34527, 33.45653, -7.725425), (36.699776, 33.45653, -5.812673), (36.95369, 33.45653, -3.8839893), (37.10632, 33.45653, -1.9446597), (35.35534, 35.35534, 0), (35.306885, 35.35534, 1.8503555), (35.16166, 35.35534, 3.6956394), (34.920055, 35.35534, 5.5307937), (34.58274, 35.35534, 7.350788), (34.150635, 35.35534, 9.150635), (33.624924, 35.35534, 10.925401), (33.007053, 35.35534, 12.67022), (32.29871, 35.35534, 14.380312), (31.501839, 35.35534, 16.050987), (30.618622, 35.35534, 17.67767), (29.651482, 35.35534, 19.255898), (28.60307, 35.35534, 20.781347), (27.47626, 35.35534, 22.249836), (26.274137, 35.35534, 23.65734), (25, 35.35534, 25), (23.65734, 35.35534, 26.274137), (22.249836, 35.35534, 27.47626), (20.781347, 35.35534, 28.60307), (19.255898, 35.35534, 29.651482), (17.67767, 35.35534, 30.618622), (16.050987, 35.35534, 31.501839), (14.380312, 35.35534, 32.29871), (12.67022, 35.35534, 33.007053), (10.925401, 35.35534, 33.624924), (9.150635, 35.35534, 34.150635), (7.350788, 35.35534, 34.58274), (5.5307937, 35.35534, 34.920055), (3.6956394, 35.35534, 35.16166), (1.8503555, 35.35534, 35.306885), (2.1648902e-15, 35.35534, 35.35534), (-1.8503555, 35.35534, 35.306885), (-3.6956394, 35.35534, 35.16166), (-5.5307937, 35.35534, 34.920055), (-7.350788, 35.35534, 34.58274), (-9.150635, 35.35534, 34.150635), (-10.925401, 35.35534, 33.624924), (-12.67022, 35.35534, 33.007053), (-14.380312, 35.35534, 32.29871), (-16.050987, 35.35534, 31.501839), (-17.67767, 35.35534, 30.618622), (-19.255898, 35.35534, 29.651482), (-20.781347, 35.35534, 28.60307), (-22.249836, 35.35534, 27.47626), (-23.65734, 35.35534, 26.274137), (-25, 35.35534, 25), (-26.274137, 35.35534, 23.65734), (-27.47626, 35.35534, 22.249836), (-28.60307, 35.35534, 20.781347), (-29.651482, 35.35534, 19.255898), (-30.618622, 35.35534, 17.67767), (-31.501839, 35.35534, 16.050987), (-32.29871, 35.35534, 14.380312), (-33.007053, 35.35534, 12.67022), (-33.624924, 35.35534, 10.925401), (-34.150635, 35.35534, 9.150635), (-34.58274, 35.35534, 7.350788), (-34.920055, 35.35534, 5.5307937), (-35.16166, 35.35534, 3.6956394), (-35.306885, 35.35534, 1.8503555), (-35.35534, 35.35534, 4.3297804e-15), (-35.306885, 35.35534, -1.8503555), (-35.16166, 35.35534, -3.6956394), (-34.920055, 35.35534, -5.5307937), (-34.58274, 35.35534, -7.350788), (-34.150635, 35.35534, -9.150635), (-33.624924, 35.35534, -10.925401), (-33.007053, 35.35534, -12.67022), (-32.29871, 35.35534, -14.380312), (-31.501839, 35.35534, -16.050987), (-30.618622, 35.35534, -17.67767), (-29.651482, 35.35534, -19.255898), (-28.60307, 35.35534, -20.781347), (-27.47626, 35.35534, -22.249836), (-26.274137, 35.35534, -23.65734), (-25, 35.35534, -25), (-23.65734, 35.35534, -26.274137), (-22.249836, 35.35534, -27.47626), (-20.781347, 35.35534, -28.60307), (-19.255898, 35.35534, -29.651482), (-17.67767, 35.35534, -30.618622), (-16.050987, 35.35534, -31.501839), (-14.380312, 35.35534, -32.29871), (-12.67022, 35.35534, -33.007053), (-10.925401, 35.35534, -33.624924), (-9.150635, 35.35534, -34.150635), (-7.350788, 35.35534, -34.58274), (-5.5307937, 35.35534, -34.920055), (-3.6956394, 35.35534, -35.16166), (-1.8503555, 35.35534, -35.306885), (-6.4946704e-15, 35.35534, -35.35534), (1.8503555, 35.35534, -35.306885), (3.6956394, 35.35534, -35.16166), (5.5307937, 35.35534, -34.920055), (7.350788, 35.35534, -34.58274), (9.150635, 35.35534, -34.150635), (10.925401, 35.35534, -33.624924), (12.67022, 35.35534, -33.007053), (14.380312, 35.35534, -32.29871), (16.050987, 35.35534, -31.501839), (17.67767, 35.35534, -30.618622), (19.255898, 35.35534, -29.651482), (20.781347, 35.35534, -28.60307), (22.249836, 35.35534, -27.47626), (23.65734, 35.35534, -26.274137), (25, 35.35534, -25), (26.274137, 35.35534, -23.65734), (27.47626, 35.35534, -22.249836), (28.60307, 35.35534, -20.781347), (29.651482, 35.35534, -19.255898), (30.618622, 35.35534, -17.67767), (31.501839, 35.35534, -16.050987), (32.29871, 35.35534, -14.380312), (33.007053, 35.35534, -12.67022), (33.624924, 35.35534, -10.925401), (34.150635, 35.35534, -9.150635), (34.58274, 35.35534, -7.350788), (34.920055, 35.35534, -5.5307937), (35.16166, 35.35534, -3.6956394), (35.306885, 35.35534, -1.8503555), (33.45653, 37.15724, 0), (33.41068, 37.15724, 1.7509795), (33.27325, 37.15724, 3.4971597), (33.044624, 37.15724, 5.2337546), (32.725426, 37.15724, 6.9560037), (32.31653, 37.15724, 8.659187), (31.819052, 37.15724, 10.338636), (31.234362, 37.15724, 11.989748), (30.564062, 37.15724, 13.607997), (29.809986, 37.15724, 15.188947), (28.974205, 37.15724, 16.728266), (28.059008, 37.15724, 18.221733), (27.066902, 37.15724, 19.665255), (26.000607, 37.15724, 21.054876), (24.863047, 37.15724, 22.38679), (23.65734, 37.15724, 23.65734), (22.38679, 37.15724, 24.863047), (21.054876, 37.15724, 26.000607), (19.665255, 37.15724, 27.066902), (18.221733, 37.15724, 28.059008), (16.728266, 37.15724, 28.974205), (15.188947, 37.15724, 29.809986), (13.607997, 37.15724, 30.564062), (11.989748, 37.15724, 31.234362), (10.338636, 37.15724, 31.819052), (8.659187, 37.15724, 32.31653), (6.9560037, 37.15724, 32.725426), (5.2337546, 37.15724, 33.044624), (3.4971597, 37.15724, 33.27325), (1.7509795, 37.15724, 33.41068), (2.0486216e-15, 37.15724, 33.45653), (-1.7509795, 37.15724, 33.41068), (-3.4971597, 37.15724, 33.27325), (-5.2337546, 37.15724, 33.044624), (-6.9560037, 37.15724, 32.725426), (-8.659187, 37.15724, 32.31653), (-10.338636, 37.15724, 31.819052), (-11.989748, 37.15724, 31.234362), (-13.607997, 37.15724, 30.564062), (-15.188947, 37.15724, 29.809986), (-16.728266, 37.15724, 28.974205), (-18.221733, 37.15724, 28.059008), (-19.665255, 37.15724, 27.066902), (-21.054876, 37.15724, 26.000607), (-22.38679, 37.15724, 24.863047), (-23.65734, 37.15724, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.000607, 37.15724, 21.054876), (-27.066902, 37.15724, 19.665255), (-28.059008, 37.15724, 18.221733), (-28.974205, 37.15724, 16.728266), (-29.809986, 37.15724, 15.188947), (-30.564062, 37.15724, 13.607997), (-31.234362, 37.15724, 11.989748), (-31.819052, 37.15724, 10.338636), (-32.31653, 37.15724, 8.659187), (-32.725426, 37.15724, 6.9560037), (-33.044624, 37.15724, 5.2337546), (-33.27325, 37.15724, 3.4971597), (-33.41068, 37.15724, 1.7509795), (-33.45653, 37.15724, 4.097243e-15), (-33.41068, 37.15724, -1.7509795), (-33.27325, 37.15724, -3.4971597), (-33.044624, 37.15724, -5.2337546), (-32.725426, 37.15724, -6.9560037), (-32.31653, 37.15724, -8.659187), (-31.819052, 37.15724, -10.338636), (-31.234362, 37.15724, -11.989748), (-30.564062, 37.15724, -13.607997), (-29.809986, 37.15724, -15.188947), (-28.974205, 37.15724, -16.728266), (-28.059008, 37.15724, -18.221733), (-27.066902, 37.15724, -19.665255), (-26.000607, 37.15724, -21.054876), (-24.863047, 37.15724, -22.38679), (-23.65734, 37.15724, -23.65734), (-22.38679, 37.15724, -24.863047), (-21.054876, 37.15724, -26.000607), (-19.665255, 37.15724, -27.066902), (-18.221733, 37.15724, -28.059008), (-16.728266, 37.15724, -28.974205), (-15.188947, 37.15724, -29.809986), (-13.607997, 37.15724, -30.564062), (-11.989748, 37.15724, -31.234362), (-10.338636, 37.15724, -31.819052), (-8.659187, 37.15724, -32.31653), (-6.9560037, 37.15724, -32.725426), (-5.2337546, 37.15724, -33.044624), (-3.4971597, 37.15724, -33.27325), (-1.7509795, 37.15724, -33.41068), (-6.145865e-15, 37.15724, -33.45653), (1.7509795, 37.15724, -33.41068), (3.4971597, 37.15724, -33.27325), (5.2337546, 37.15724, -33.044624), (6.9560037, 37.15724, -32.725426), (8.659187, 37.15724, -32.31653), (10.338636, 37.15724, -31.819052), (11.989748, 37.15724, -31.234362), (13.607997, 37.15724, -30.564062), (15.188947, 37.15724, -29.809986), (16.728266, 37.15724, -28.974205), (18.221733, 37.15724, -28.059008), (19.665255, 37.15724, -27.066902), (21.054876, 37.15724, -26.000607), (22.38679, 37.15724, -24.863047), (23.65734, 37.15724, -23.65734), (24.863047, 37.15724, -22.38679), (26.000607, 37.15724, -21.054876), (27.066902, 37.15724, -19.665255), (28.059008, 37.15724, -18.221733), (28.974205, 37.15724, -16.728266), (29.809986, 37.15724, -15.188947), (30.564062, 37.15724, -13.607997), (31.234362, 37.15724, -11.989748), (31.819052, 37.15724, -10.338636), (32.31653, 37.15724, -8.659187), (32.725426, 37.15724, -6.9560037), (33.044624, 37.15724, -5.2337546), (33.27325, 37.15724, -3.4971597), (33.41068, 37.15724, -1.7509795), (31.466019, 38.8573, 0), (31.422897, 38.8573, 1.6468042), (31.293646, 38.8573, 3.2890947), (31.07862, 38.8573, 4.92237), (30.778412, 38.8573, 6.5421534), (30.39384, 38.8573, 8.144005), (29.925962, 38.8573, 9.723535), (29.37606, 38.8573, 11.276413), (28.74564, 38.8573, 12.798383), (28.036428, 38.8573, 14.285274), (27.250372, 38.8573, 15.733009), (26.389624, 38.8573, 17.137623), (25.456545, 38.8573, 18.495262), (24.45369, 38.8573, 19.802208), (23.38381, 38.8573, 21.054876), (22.249836, 38.8573, 22.249836), (21.054876, 38.8573, 23.38381), (19.802208, 38.8573, 24.45369), (18.495262, 38.8573, 25.456545), (17.137623, 38.8573, 26.389624), (15.733009, 38.8573, 27.250372), (14.285274, 38.8573, 28.036428), (12.798383, 38.8573, 28.74564), (11.276413, 38.8573, 29.37606), (9.723535, 38.8573, 29.925962), (8.144005, 38.8573, 30.39384), (6.5421534, 38.8573, 30.778412), (4.92237, 38.8573, 31.07862), (3.2890947, 38.8573, 31.293646), (1.6468042, 38.8573, 31.422897), (1.926738e-15, 38.8573, 31.466019), (-1.6468042, 38.8573, 31.422897), (-3.2890947, 38.8573, 31.293646), (-4.92237, 38.8573, 31.07862), (-6.5421534, 38.8573, 30.778412), (-8.144005, 38.8573, 30.39384), (-9.723535, 38.8573, 29.925962), (-11.276413, 38.8573, 29.37606), (-12.798383, 38.8573, 28.74564), (-14.285274, 38.8573, 28.036428), (-15.733009, 38.8573, 27.250372), (-17.137623, 38.8573, 26.389624), (-18.495262, 38.8573, 25.456545), (-19.802208, 38.8573, 24.45369), (-21.054876, 38.8573, 23.38381), (-22.249836, 38.8573, 22.249836), (-23.38381, 38.8573, 21.054876), (-24.45369, 38.8573, 19.802208), (-25.456545, 38.8573, 18.495262), (-26.389624, 38.8573, 17.137623), (-27.250372, 38.8573, 15.733009), (-28.036428, 38.8573, 14.285274), (-28.74564, 38.8573, 12.798383), (-29.37606, 38.8573, 11.276413), (-29.925962, 38.8573, 9.723535), (-30.39384, 38.8573, 8.144005), (-30.778412, 38.8573, 6.5421534), (-31.07862, 38.8573, 4.92237), (-31.293646, 38.8573, 3.2890947), (-31.422897, 38.8573, 1.6468042), (-31.466019, 38.8573, 3.853476e-15), (-31.422897, 38.8573, -1.6468042), (-31.293646, 38.8573, -3.2890947), (-31.07862, 38.8573, -4.92237), (-30.778412, 38.8573, -6.5421534), (-30.39384, 38.8573, -8.144005), (-29.925962, 38.8573, -9.723535), (-29.37606, 38.8573, -11.276413), (-28.74564, 38.8573, -12.798383), (-28.036428, 38.8573, -14.285274), (-27.250372, 38.8573, -15.733009), (-26.389624, 38.8573, -17.137623), (-25.456545, 38.8573, -18.495262), (-24.45369, 38.8573, -19.802208), (-23.38381, 38.8573, -21.054876), (-22.249836, 38.8573, -22.249836), (-21.054876, 38.8573, -23.38381), (-19.802208, 38.8573, -24.45369), (-18.495262, 38.8573, -25.456545), (-17.137623, 38.8573, -26.389624), (-15.733009, 38.8573, -27.250372), (-14.285274, 38.8573, -28.036428), (-12.798383, 38.8573, -28.74564), (-11.276413, 38.8573, -29.37606), (-9.723535, 38.8573, -29.925962), (-8.144005, 38.8573, -30.39384), (-6.5421534, 38.8573, -30.778412), (-4.92237, 38.8573, -31.07862), (-3.2890947, 38.8573, -31.293646), (-1.6468042, 38.8573, -31.422897), (-5.780214e-15, 38.8573, -31.466019), (1.6468042, 38.8573, -31.422897), (3.2890947, 38.8573, -31.293646), (4.92237, 38.8573, -31.07862), (6.5421534, 38.8573, -30.778412), (8.144005, 38.8573, -30.39384), (9.723535, 38.8573, -29.925962), (11.276413, 38.8573, -29.37606), (12.798383, 38.8573, -28.74564), (14.285274, 38.8573, -28.036428), (15.733009, 38.8573, -27.250372), (17.137623, 38.8573, -26.389624), (18.495262, 38.8573, -25.456545), (19.802208, 38.8573, -24.45369), (21.054876, 38.8573, -23.38381), (22.249836, 38.8573, -22.249836), (23.38381, 38.8573, -21.054876), (24.45369, 38.8573, -19.802208), (25.456545, 38.8573, -18.495262), (26.389624, 38.8573, -17.137623), (27.250372, 38.8573, -15.733009), (28.036428, 38.8573, -14.285274), (28.74564, 38.8573, -12.798383), (29.37606, 38.8573, -11.276413), (29.925962, 38.8573, -9.723535), (30.39384, 38.8573, -8.144005), (30.778412, 38.8573, -6.5421534), (31.07862, 38.8573, -4.92237), (31.293646, 38.8573, -3.2890947), (31.422897, 38.8573, -1.6468042), (29.389263, 40.45085, 0), (29.348986, 40.45085, 1.5381151), (29.228266, 40.45085, 3.0720146), (29.027431, 40.45085, 4.5974936), (28.747036, 40.45085, 6.110371), (28.387848, 40.45085, 7.606501), (27.95085, 40.45085, 9.081781), (27.43724, 40.45085, 10.532169), (26.848427, 40.45085, 11.95369), (26.186026, 40.45085, 13.342446), (25.451847, 40.45085, 14.694632), (24.64791, 40.45085, 16.00654), (23.776413, 40.45085, 17.274574), (22.839746, 40.45085, 18.495262), (21.840479, 40.45085, 19.665255), (20.781347, 40.45085, 20.781347), (19.665255, 40.45085, 21.840479), (18.495262, 40.45085, 22.839746), (17.274574, 40.45085, 23.776413), (16.00654, 40.45085, 24.64791), (14.694632, 40.45085, 25.451847), (13.342446, 40.45085, 26.186026), (11.95369, 40.45085, 26.848427), (10.532169, 40.45085, 27.43724), (9.081781, 40.45085, 27.95085), (7.606501, 40.45085, 28.387848), (6.110371, 40.45085, 28.747036), (4.5974936, 40.45085, 29.027431), (3.0720146, 40.45085, 29.228266), (1.5381151, 40.45085, 29.348986), (1.7995734e-15, 40.45085, 29.389263), (-1.5381151, 40.45085, 29.348986), (-3.0720146, 40.45085, 29.228266), (-4.5974936, 40.45085, 29.027431), (-6.110371, 40.45085, 28.747036), (-7.606501, 40.45085, 28.387848), (-9.081781, 40.45085, 27.95085), (-10.532169, 40.45085, 27.43724), (-11.95369, 40.45085, 26.848427), (-13.342446, 40.45085, 26.186026), (-14.694632, 40.45085, 25.451847), (-16.00654, 40.45085, 24.64791), (-17.274574, 40.45085, 23.776413), (-18.495262, 40.45085, 22.839746), (-19.665255, 40.45085, 21.840479), (-20.781347, 40.45085, 20.781347), (-21.840479, 40.45085, 19.665255), (-22.839746, 40.45085, 18.495262), (-23.776413, 40.45085, 17.274574), (-24.64791, 40.45085, 16.00654), (-25.451847, 40.45085, 14.694632), (-26.186026, 40.45085, 13.342446), (-26.848427, 40.45085, 11.95369), (-27.43724, 40.45085, 10.532169), (-27.95085, 40.45085, 9.081781), (-28.387848, 40.45085, 7.606501), (-28.747036, 40.45085, 6.110371), (-29.027431, 40.45085, 4.5974936), (-29.228266, 40.45085, 3.0720146), (-29.348986, 40.45085, 1.5381151), (-29.389263, 40.45085, 3.5991468e-15), (-29.348986, 40.45085, -1.5381151), (-29.228266, 40.45085, -3.0720146), (-29.027431, 40.45085, -4.5974936), (-28.747036, 40.45085, -6.110371), (-28.387848, 40.45085, -7.606501), (-27.95085, 40.45085, -9.081781), (-27.43724, 40.45085, -10.532169), (-26.848427, 40.45085, -11.95369), (-26.186026, 40.45085, -13.342446), (-25.451847, 40.45085, -14.694632), (-24.64791, 40.45085, -16.00654), (-23.776413, 40.45085, -17.274574), (-22.839746, 40.45085, -18.495262), (-21.840479, 40.45085, -19.665255), (-20.781347, 40.45085, -20.781347), (-19.665255, 40.45085, -21.840479), (-18.495262, 40.45085, -22.839746), (-17.274574, 40.45085, -23.776413), (-16.00654, 40.45085, -24.64791), (-14.694632, 40.45085, -25.451847), (-13.342446, 40.45085, -26.186026), (-11.95369, 40.45085, -26.848427), (-10.532169, 40.45085, -27.43724), (-9.081781, 40.45085, -27.95085), (-7.606501, 40.45085, -28.387848), (-6.110371, 40.45085, -28.747036), (-4.5974936, 40.45085, -29.027431), (-3.0720146, 40.45085, -29.228266), (-1.5381151, 40.45085, -29.348986), (-5.39872e-15, 40.45085, -29.389263), (1.5381151, 40.45085, -29.348986), (3.0720146, 40.45085, -29.228266), (4.5974936, 40.45085, -29.027431), (6.110371, 40.45085, -28.747036), (7.606501, 40.45085, -28.387848), (9.081781, 40.45085, -27.95085), (10.532169, 40.45085, -27.43724), (11.95369, 40.45085, -26.848427), (13.342446, 40.45085, -26.186026), (14.694632, 40.45085, -25.451847), (16.00654, 40.45085, -24.64791), (17.274574, 40.45085, -23.776413), (18.495262, 40.45085, -22.839746), (19.665255, 40.45085, -21.840479), (20.781347, 40.45085, -20.781347), (21.840479, 40.45085, -19.665255), (22.839746, 40.45085, -18.495262), (23.776413, 40.45085, -17.274574), (24.64791, 40.45085, -16.00654), (25.451847, 40.45085, -14.694632), (26.186026, 40.45085, -13.342446), (26.848427, 40.45085, -11.95369), (27.43724, 40.45085, -10.532169), (27.95085, 40.45085, -9.081781), (28.387848, 40.45085, -7.606501), (28.747036, 40.45085, -6.110371), (29.027431, 40.45085, -4.5974936), (29.228266, 40.45085, -3.0720146), (29.348986, 40.45085, -1.5381151), (27.231953, 41.93353, 0), (27.194632, 41.93353, 1.4252102), (27.082773, 41.93353, 2.846514), (26.89668, 41.93353, 4.260016), (26.636868, 41.93353, 5.661841), (26.304045, 41.93353, 7.0481477), (25.899126, 41.93353, 8.415136), (25.423218, 41.93353, 9.759059), (24.877626, 41.93353, 11.076233), (24.263847, 41.93353, 12.363048), (23.583563, 41.93353, 13.615976), (22.838636, 41.93353, 14.831584), (22.031113, 41.93353, 16.00654), (21.1632, 41.93353, 17.137623), (20.237284, 41.93353, 18.221733), (19.255898, 41.93353, 19.255898), (18.221733, 41.93353, 20.237284), (17.137623, 41.93353, 21.1632), (16.00654, 41.93353, 22.031113), (14.831584, 41.93353, 22.838636), (13.615976, 41.93353, 23.583563), (12.363048, 41.93353, 24.263847), (11.076233, 41.93353, 24.877626), (9.759059, 41.93353, 25.423218), (8.415136, 41.93353, 25.899126), (7.0481477, 41.93353, 26.304045), (5.661841, 41.93353, 26.636868), (4.260016, 41.93353, 26.89668), (2.846514, 41.93353, 27.082773), (1.4252102, 41.93353, 27.194632), (1.6674762e-15, 41.93353, 27.231953), (-1.4252102, 41.93353, 27.194632), (-2.846514, 41.93353, 27.082773), (-4.260016, 41.93353, 26.89668), (-5.661841, 41.93353, 26.636868), (-7.0481477, 41.93353, 26.304045), (-8.415136, 41.93353, 25.899126), (-9.759059, 41.93353, 25.423218), (-11.076233, 41.93353, 24.877626), (-12.363048, 41.93353, 24.263847), (-13.615976, 41.93353, 23.583563), (-14.831584, 41.93353, 22.838636), (-16.00654, 41.93353, 22.031113), (-17.137623, 41.93353, 21.1632), (-18.221733, 41.93353, 20.237284), (-19.255898, 41.93353, 19.255898), (-20.237284, 41.93353, 18.221733), (-21.1632, 41.93353, 17.137623), (-22.031113, 41.93353, 16.00654), (-22.838636, 41.93353, 14.831584), (-23.583563, 41.93353, 13.615976), (-24.263847, 41.93353, 12.363048), (-24.877626, 41.93353, 11.076233), (-25.423218, 41.93353, 9.759059), (-25.899126, 41.93353, 8.415136), (-26.304045, 41.93353, 7.0481477), (-26.636868, 41.93353, 5.661841), (-26.89668, 41.93353, 4.260016), (-27.082773, 41.93353, 2.846514), (-27.194632, 41.93353, 1.4252102), (-27.231953, 41.93353, 3.3349523e-15), (-27.194632, 41.93353, -1.4252102), (-27.082773, 41.93353, -2.846514), (-26.89668, 41.93353, -4.260016), (-26.636868, 41.93353, -5.661841), (-26.304045, 41.93353, -7.0481477), (-25.899126, 41.93353, -8.415136), (-25.423218, 41.93353, -9.759059), (-24.877626, 41.93353, -11.076233), (-24.263847, 41.93353, -12.363048), (-23.583563, 41.93353, -13.615976), (-22.838636, 41.93353, -14.831584), (-22.031113, 41.93353, -16.00654), (-21.1632, 41.93353, -17.137623), (-20.237284, 41.93353, -18.221733), (-19.255898, 41.93353, -19.255898), (-18.221733, 41.93353, -20.237284), (-17.137623, 41.93353, -21.1632), (-16.00654, 41.93353, -22.031113), (-14.831584, 41.93353, -22.838636), (-13.615976, 41.93353, -23.583563), (-12.363048, 41.93353, -24.263847), (-11.076233, 41.93353, -24.877626), (-9.759059, 41.93353, -25.423218), (-8.415136, 41.93353, -25.899126), (-7.0481477, 41.93353, -26.304045), (-5.661841, 41.93353, -26.636868), (-4.260016, 41.93353, -26.89668), (-2.846514, 41.93353, -27.082773), (-1.4252102, 41.93353, -27.194632), (-5.0024284e-15, 41.93353, -27.231953), (1.4252102, 41.93353, -27.194632), (2.846514, 41.93353, -27.082773), (4.260016, 41.93353, -26.89668), (5.661841, 41.93353, -26.636868), (7.0481477, 41.93353, -26.304045), (8.415136, 41.93353, -25.899126), (9.759059, 41.93353, -25.423218), (11.076233, 41.93353, -24.877626), (12.363048, 41.93353, -24.263847), (13.615976, 41.93353, -23.583563), (14.831584, 41.93353, -22.838636), (16.00654, 41.93353, -22.031113), (17.137623, 41.93353, -21.1632), (18.221733, 41.93353, -20.237284), (19.255898, 41.93353, -19.255898), (20.237284, 41.93353, -18.221733), (21.1632, 41.93353, -17.137623), (22.031113, 41.93353, -16.00654), (22.838636, 41.93353, -14.831584), (23.583563, 41.93353, -13.615976), (24.263847, 41.93353, -12.363048), (24.877626, 41.93353, -11.076233), (25.423218, 41.93353, -9.759059), (25.899126, 41.93353, -8.415136), (26.304045, 41.93353, -7.0481477), (26.636868, 41.93353, -5.661841), (26.89668, 41.93353, -4.260016), (27.082773, 41.93353, -2.846514), (27.194632, 41.93353, -1.4252102), (25, 43.30127, 0), (24.965738, 43.30127, 1.308399), (24.863047, 43.30127, 2.6132116), (24.69221, 43.30127, 3.9108617), (24.45369, 43.30127, 5.197792), (24.148146, 43.30127, 6.470476), (23.776413, 43.30127, 7.725425), (23.33951, 43.30127, 8.959199), (22.838636, 43.30127, 10.168416), (22.275164, 43.30127, 11.349763), (21.650635, 43.30127, 12.5), (20.966764, 43.30127, 13.615976), (20.225426, 43.30127, 14.694632), (19.42865, 43.30127, 15.733009), (18.57862, 43.30127, 16.728266), (17.67767, 43.30127, 17.67767), (16.728266, 43.30127, 18.57862), (15.733009, 43.30127, 19.42865), (14.694632, 43.30127, 20.225426), (13.615976, 43.30127, 20.966764), (12.5, 43.30127, 21.650635), (11.349763, 43.30127, 22.275164), (10.168416, 43.30127, 22.838636), (8.959199, 43.30127, 23.33951), (7.725425, 43.30127, 23.776413), (6.470476, 43.30127, 24.148146), (5.197792, 43.30127, 24.45369), (3.9108617, 43.30127, 24.69221), (2.6132116, 43.30127, 24.863047), (1.308399, 43.30127, 24.965738), (1.5308084e-15, 43.30127, 25), (-1.308399, 43.30127, 24.965738), (-2.6132116, 43.30127, 24.863047), (-3.9108617, 43.30127, 24.69221), (-5.197792, 43.30127, 24.45369), (-6.470476, 43.30127, 24.148146), (-7.725425, 43.30127, 23.776413), (-8.959199, 43.30127, 23.33951), (-10.168416, 43.30127, 22.838636), (-11.349763, 43.30127, 22.275164), (-12.5, 43.30127, 21.650635), (-13.615976, 43.30127, 20.966764), (-14.694632, 43.30127, 20.225426), (-15.733009, 43.30127, 19.42865), (-16.728266, 43.30127, 18.57862), (-17.67767, 43.30127, 17.67767), (-18.57862, 43.30127, 16.728266), (-19.42865, 43.30127, 15.733009), (-20.225426, 43.30127, 14.694632), (-20.966764, 43.30127, 13.615976), (-21.650635, 43.30127, 12.5), (-22.275164, 43.30127, 11.349763), (-22.838636, 43.30127, 10.168416), (-23.33951, 43.30127, 8.959199), (-23.776413, 43.30127, 7.725425), (-24.148146, 43.30127, 6.470476), (-24.45369, 43.30127, 5.197792), (-24.69221, 43.30127, 3.9108617), (-24.863047, 43.30127, 2.6132116), (-24.965738, 43.30127, 1.308399), (-25, 43.30127, 3.0616169e-15), (-24.965738, 43.30127, -1.308399), (-24.863047, 43.30127, -2.6132116), (-24.69221, 43.30127, -3.9108617), (-24.45369, 43.30127, -5.197792), (-24.148146, 43.30127, -6.470476), (-23.776413, 43.30127, -7.725425), (-23.33951, 43.30127, -8.959199), (-22.838636, 43.30127, -10.168416), (-22.275164, 43.30127, -11.349763), (-21.650635, 43.30127, -12.5), (-20.966764, 43.30127, -13.615976), (-20.225426, 43.30127, -14.694632), (-19.42865, 43.30127, -15.733009), (-18.57862, 43.30127, -16.728266), (-17.67767, 43.30127, -17.67767), (-16.728266, 43.30127, -18.57862), (-15.733009, 43.30127, -19.42865), (-14.694632, 43.30127, -20.225426), (-13.615976, 43.30127, -20.966764), (-12.5, 43.30127, -21.650635), (-11.349763, 43.30127, -22.275164), (-10.168416, 43.30127, -22.838636), (-8.959199, 43.30127, -23.33951), (-7.725425, 43.30127, -23.776413), (-6.470476, 43.30127, -24.148146), (-5.197792, 43.30127, -24.45369), (-3.9108617, 43.30127, -24.69221), (-2.6132116, 43.30127, -24.863047), (-1.308399, 43.30127, -24.965738), (-4.5924254e-15, 43.30127, -25), (1.308399, 43.30127, -24.965738), (2.6132116, 43.30127, -24.863047), (3.9108617, 43.30127, -24.69221), (5.197792, 43.30127, -24.45369), (6.470476, 43.30127, -24.148146), (7.725425, 43.30127, -23.776413), (8.959199, 43.30127, -23.33951), (10.168416, 43.30127, -22.838636), (11.349763, 43.30127, -22.275164), (12.5, 43.30127, -21.650635), (13.615976, 43.30127, -20.966764), (14.694632, 43.30127, -20.225426), (15.733009, 43.30127, -19.42865), (16.728266, 43.30127, -18.57862), (17.67767, 43.30127, -17.67767), (18.57862, 43.30127, -16.728266), (19.42865, 43.30127, -15.733009), (20.225426, 43.30127, -14.694632), (20.966764, 43.30127, -13.615976), (21.650635, 43.30127, -12.5), (22.275164, 43.30127, -11.349763), (22.838636, 43.30127, -10.168416), (23.33951, 43.30127, -8.959199), (23.776413, 43.30127, -7.725425), (24.148146, 43.30127, -6.470476), (24.45369, 43.30127, -5.197792), (24.69221, 43.30127, -3.9108617), (24.863047, 43.30127, -2.6132116), (24.965738, 43.30127, -1.308399), (22.699526, 44.550327, 0), (22.668417, 44.550327, 1.1880014), (22.575174, 44.550327, 2.3727465), (22.420055, 44.550327, 3.550988), (22.203485, 44.550327, 4.7194967), (21.926058, 44.550327, 5.8750696), (21.588531, 44.550327, 7.014539), (21.191832, 44.550327, 8.134782), (20.737047, 44.550327, 9.232729), (20.225426, 44.550327, 10.305368), (19.658365, 44.550327, 11.349763), (19.037424, 44.550327, 12.363048), (18.364302, 44.550327, 13.342446), (17.640844, 44.550327, 14.285274), (16.869034, 44.550327, 15.188947), (16.050987, 44.550327, 16.050987), (15.188947, 44.550327, 16.869034), (14.285274, 44.550327, 17.640844), (13.342446, 44.550327, 18.364302), (12.363048, 44.550327, 19.037424), (11.349763, 44.550327, 19.658365), (10.305368, 44.550327, 20.225426), (9.232729, 44.550327, 20.737047), (8.134782, 44.550327, 21.191832), (7.014539, 44.550327, 21.588531), (5.8750696, 44.550327, 21.926058), (4.7194967, 44.550327, 22.203485), (3.550988, 44.550327, 22.420055), (2.3727465, 44.550327, 22.575174), (1.1880014, 44.550327, 22.668417), (1.3899451e-15, 44.550327, 22.699526), (-1.1880014, 44.550327, 22.668417), (-2.3727465, 44.550327, 22.575174), (-3.550988, 44.550327, 22.420055), (-4.7194967, 44.550327, 22.203485), (-5.8750696, 44.550327, 21.926058), (-7.014539, 44.550327, 21.588531), (-8.134782, 44.550327, 21.191832), (-9.232729, 44.550327, 20.737047), (-10.305368, 44.550327, 20.225426), (-11.349763, 44.550327, 19.658365), (-12.363048, 44.550327, 19.037424), (-13.342446, 44.550327, 18.364302), (-14.285274, 44.550327, 17.640844), (-15.188947, 44.550327, 16.869034), (-16.050987, 44.550327, 16.050987), (-16.869034, 44.550327, 15.188947), (-17.640844, 44.550327, 14.285274), (-18.364302, 44.550327, 13.342446), (-19.037424, 44.550327, 12.363048), (-19.658365, 44.550327, 11.349763), (-20.225426, 44.550327, 10.305368), (-20.737047, 44.550327, 9.232729), (-21.191832, 44.550327, 8.134782), (-21.588531, 44.550327, 7.014539), (-21.926058, 44.550327, 5.8750696), (-22.203485, 44.550327, 4.7194967), (-22.420055, 44.550327, 3.550988), (-22.575174, 44.550327, 2.3727465), (-22.668417, 44.550327, 1.1880014), (-22.699526, 44.550327, 2.7798901e-15), (-22.668417, 44.550327, -1.1880014), (-22.575174, 44.550327, -2.3727465), (-22.420055, 44.550327, -3.550988), (-22.203485, 44.550327, -4.7194967), (-21.926058, 44.550327, -5.8750696), (-21.588531, 44.550327, -7.014539), (-21.191832, 44.550327, -8.134782), (-20.737047, 44.550327, -9.232729), (-20.225426, 44.550327, -10.305368), (-19.658365, 44.550327, -11.349763), (-19.037424, 44.550327, -12.363048), (-18.364302, 44.550327, -13.342446), (-17.640844, 44.550327, -14.285274), (-16.869034, 44.550327, -15.188947), (-16.050987, 44.550327, -16.050987), (-15.188947, 44.550327, -16.869034), (-14.285274, 44.550327, -17.640844), (-13.342446, 44.550327, -18.364302), (-12.363048, 44.550327, -19.037424), (-11.349763, 44.550327, -19.658365), (-10.305368, 44.550327, -20.225426), (-9.232729, 44.550327, -20.737047), (-8.134782, 44.550327, -21.191832), (-7.014539, 44.550327, -21.588531), (-5.8750696, 44.550327, -21.926058), (-4.7194967, 44.550327, -22.203485), (-3.550988, 44.550327, -22.420055), (-2.3727465, 44.550327, -22.575174), (-1.1880014, 44.550327, -22.668417), (-4.169835e-15, 44.550327, -22.699526), (1.1880014, 44.550327, -22.668417), (2.3727465, 44.550327, -22.575174), (3.550988, 44.550327, -22.420055), (4.7194967, 44.550327, -22.203485), (5.8750696, 44.550327, -21.926058), (7.014539, 44.550327, -21.588531), (8.134782, 44.550327, -21.191832), (9.232729, 44.550327, -20.737047), (10.305368, 44.550327, -20.225426), (11.349763, 44.550327, -19.658365), (12.363048, 44.550327, -19.037424), (13.342446, 44.550327, -18.364302), (14.285274, 44.550327, -17.640844), (15.188947, 44.550327, -16.869034), (16.050987, 44.550327, -16.050987), (16.869034, 44.550327, -15.188947), (17.640844, 44.550327, -14.285274), (18.364302, 44.550327, -13.342446), (19.037424, 44.550327, -12.363048), (19.658365, 44.550327, -11.349763), (20.225426, 44.550327, -10.305368), (20.737047, 44.550327, -9.232729), (21.191832, 44.550327, -8.134782), (21.588531, 44.550327, -7.014539), (21.926058, 44.550327, -5.8750696), (22.203485, 44.550327, -4.7194967), (22.420055, 44.550327, -3.550988), (22.575174, 44.550327, -2.3727465), (22.668417, 44.550327, -1.1880014), (20.336832, 45.677273, 0), (20.308962, 45.677273, 1.0643475), (20.225426, 45.677273, 2.1257777), (20.086452, 45.677273, 3.1813815), (19.892424, 45.677273, 4.2282653), (19.643871, 45.677273, 5.2635593), (19.341476, 45.677273, 6.2844267), (18.986069, 45.677273, 7.288069), (18.57862, 45.677273, 8.271735), (18.12025, 45.677273, 9.232729), (17.612213, 45.677273, 10.168416), (17.055902, 45.677273, 11.076233), (16.452843, 45.677273, 11.95369), (15.804687, 45.677273, 12.798383), (15.113212, 45.677273, 13.607997), (14.380312, 45.677273, 14.380312), (13.607997, 45.677273, 15.113212), (12.798383, 45.677273, 15.804687), (11.95369, 45.677273, 16.452843), (11.076233, 45.677273, 17.055902), (10.168416, 45.677273, 17.612213), (9.232729, 45.677273, 18.12025), (8.271735, 45.677273, 18.57862), (7.288069, 45.677273, 18.986069), (6.2844267, 45.677273, 19.341476), (5.2635593, 45.677273, 19.643871), (4.2282653, 45.677273, 19.892424), (3.1813815, 45.677273, 20.086452), (2.1257777, 45.677273, 20.225426), (1.0643475, 45.677273, 20.308962), (1.2452718e-15, 45.677273, 20.336832), (-1.0643475, 45.677273, 20.308962), (-2.1257777, 45.677273, 20.225426), (-3.1813815, 45.677273, 20.086452), (-4.2282653, 45.677273, 19.892424), (-5.2635593, 45.677273, 19.643871), (-6.2844267, 45.677273, 19.341476), (-7.288069, 45.677273, 18.986069), (-8.271735, 45.677273, 18.57862), (-9.232729, 45.677273, 18.12025), (-10.168416, 45.677273, 17.612213), (-11.076233, 45.677273, 17.055902), (-11.95369, 45.677273, 16.452843), (-12.798383, 45.677273, 15.804687), (-13.607997, 45.677273, 15.113212), (-14.380312, 45.677273, 14.380312), (-15.113212, 45.677273, 13.607997), (-15.804687, 45.677273, 12.798383), (-16.452843, 45.677273, 11.95369), (-17.055902, 45.677273, 11.076233), (-17.612213, 45.677273, 10.168416), (-18.12025, 45.677273, 9.232729), (-18.57862, 45.677273, 8.271735), (-18.986069, 45.677273, 7.288069), (-19.341476, 45.677273, 6.2844267), (-19.643871, 45.677273, 5.2635593), (-19.892424, 45.677273, 4.2282653), (-20.086452, 45.677273, 3.1813815), (-20.225426, 45.677273, 2.1257777), (-20.308962, 45.677273, 1.0643475), (-20.336832, 45.677273, 2.4905437e-15), (-20.308962, 45.677273, -1.0643475), (-20.225426, 45.677273, -2.1257777), (-20.086452, 45.677273, -3.1813815), (-19.892424, 45.677273, -4.2282653), (-19.643871, 45.677273, -5.2635593), (-19.341476, 45.677273, -6.2844267), (-18.986069, 45.677273, -7.288069), (-18.57862, 45.677273, -8.271735), (-18.12025, 45.677273, -9.232729), (-17.612213, 45.677273, -10.168416), (-17.055902, 45.677273, -11.076233), (-16.452843, 45.677273, -11.95369), (-15.804687, 45.677273, -12.798383), (-15.113212, 45.677273, -13.607997), (-14.380312, 45.677273, -14.380312), (-13.607997, 45.677273, -15.113212), (-12.798383, 45.677273, -15.804687), (-11.95369, 45.677273, -16.452843), (-11.076233, 45.677273, -17.055902), (-10.168416, 45.677273, -17.612213), (-9.232729, 45.677273, -18.12025), (-8.271735, 45.677273, -18.57862), (-7.288069, 45.677273, -18.986069), (-6.2844267, 45.677273, -19.341476), (-5.2635593, 45.677273, -19.643871), (-4.2282653, 45.677273, -19.892424), (-3.1813815, 45.677273, -20.086452), (-2.1257777, 45.677273, -20.225426), (-1.0643475, 45.677273, -20.308962), (-3.7358155e-15, 45.677273, -20.336832), (1.0643475, 45.677273, -20.308962), (2.1257777, 45.677273, -20.225426), (3.1813815, 45.677273, -20.086452), (4.2282653, 45.677273, -19.892424), (5.2635593, 45.677273, -19.643871), (6.2844267, 45.677273, -19.341476), (7.288069, 45.677273, -18.986069), (8.271735, 45.677273, -18.57862), (9.232729, 45.677273, -18.12025), (10.168416, 45.677273, -17.612213), (11.076233, 45.677273, -17.055902), (11.95369, 45.677273, -16.452843), (12.798383, 45.677273, -15.804687), (13.607997, 45.677273, -15.113212), (14.380312, 45.677273, -14.380312), (15.113212, 45.677273, -13.607997), (15.804687, 45.677273, -12.798383), (16.452843, 45.677273, -11.95369), (17.055902, 45.677273, -11.076233), (17.612213, 45.677273, -10.168416), (18.12025, 45.677273, -9.232729), (18.57862, 45.677273, -8.271735), (18.986069, 45.677273, -7.288069), (19.341476, 45.677273, -6.2844267), (19.643871, 45.677273, -5.2635593), (19.892424, 45.677273, -4.2282653), (20.086452, 45.677273, -3.1813815), (20.225426, 45.677273, -2.1257777), (20.308962, 45.677273, -1.0643475), (17.918398, 46.67902, 0), (17.89384, 46.67902, 0.93777645), (17.820238, 46.67902, 1.8729825), (17.697792, 46.67902, 2.8030548), (17.526838, 46.67902, 3.7254443), (17.307842, 46.67902, 4.6376224), (17.041409, 46.67902, 5.5370893), (16.728266, 46.67902, 6.4213796), (16.36927, 46.67902, 7.288069), (15.965409, 46.67902, 8.134782), (15.517787, 46.67902, 8.959199), (15.027633, 46.67902, 9.759059), (14.496288, 46.67902, 10.532169), (13.92521, 46.67902, 11.276413), (13.315965, 46.67902, 11.989748), (12.67022, 46.67902, 12.67022), (11.989748, 46.67902, 13.315965), (11.276413, 46.67902, 13.92521), (10.532169, 46.67902, 14.496288), (9.759059, 46.67902, 15.027633), (8.959199, 46.67902, 15.517787), (8.134782, 46.67902, 15.965409), (7.288069, 46.67902, 16.36927), (6.4213796, 46.67902, 16.728266), (5.5370893, 46.67902, 17.041409), (4.6376224, 46.67902, 17.307842), (3.7254443, 46.67902, 17.526838), (2.8030548, 46.67902, 17.697792), (1.8729825, 46.67902, 17.820238), (0.93777645, 46.67902, 17.89384), (1.0971854e-15, 46.67902, 17.918398), (-0.93777645, 46.67902, 17.89384), (-1.8729825, 46.67902, 17.820238), (-2.8030548, 46.67902, 17.697792), (-3.7254443, 46.67902, 17.526838), (-4.6376224, 46.67902, 17.307842), (-5.5370893, 46.67902, 17.041409), (-6.4213796, 46.67902, 16.728266), (-7.288069, 46.67902, 16.36927), (-8.134782, 46.67902, 15.965409), (-8.959199, 46.67902, 15.517787), (-9.759059, 46.67902, 15.027633), (-10.532169, 46.67902, 14.496288), (-11.276413, 46.67902, 13.92521), (-11.989748, 46.67902, 13.315965), (-12.67022, 46.67902, 12.67022), (-13.315965, 46.67902, 11.989748), (-13.92521, 46.67902, 11.276413), (-14.496288, 46.67902, 10.532169), (-15.027633, 46.67902, 9.759059), (-15.517787, 46.67902, 8.959199), (-15.965409, 46.67902, 8.134782), (-16.36927, 46.67902, 7.288069), (-16.728266, 46.67902, 6.4213796), (-17.041409, 46.67902, 5.5370893), (-17.307842, 46.67902, 4.6376224), (-17.526838, 46.67902, 3.7254443), (-17.697792, 46.67902, 2.8030548), (-17.820238, 46.67902, 1.8729825), (-17.89384, 46.67902, 0.93777645), (-17.918398, 46.67902, 2.1943708e-15), (-17.89384, 46.67902, -0.93777645), (-17.820238, 46.67902, -1.8729825), (-17.697792, 46.67902, -2.8030548), (-17.526838, 46.67902, -3.7254443), (-17.307842, 46.67902, -4.6376224), (-17.041409, 46.67902, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-16.36927, 46.67902, -7.288069), (-15.965409, 46.67902, -8.134782), (-15.517787, 46.67902, -8.959199), (-15.027633, 46.67902, -9.759059), (-14.496288, 46.67902, -10.532169), (-13.92521, 46.67902, -11.276413), (-13.315965, 46.67902, -11.989748), (-12.67022, 46.67902, -12.67022), (-11.989748, 46.67902, -13.315965), (-11.276413, 46.67902, -13.92521), (-10.532169, 46.67902, -14.496288), (-9.759059, 46.67902, -15.027633), (-8.959199, 46.67902, -15.517787), (-8.134782, 46.67902, -15.965409), (-7.288069, 46.67902, -16.36927), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 46.67902, -17.041409), (-4.6376224, 46.67902, -17.307842), (-3.7254443, 46.67902, -17.526838), (-2.8030548, 46.67902, -17.697792), (-1.8729825, 46.67902, -17.820238), (-0.93777645, 46.67902, -17.89384), (-3.2915563e-15, 46.67902, -17.918398), (0.93777645, 46.67902, -17.89384), (1.8729825, 46.67902, -17.820238), (2.8030548, 46.67902, -17.697792), (3.7254443, 46.67902, -17.526838), (4.6376224, 46.67902, -17.307842), (5.5370893, 46.67902, -17.041409), (6.4213796, 46.67902, -16.728266), (7.288069, 46.67902, -16.36927), (8.134782, 46.67902, -15.965409), (8.959199, 46.67902, -15.517787), (9.759059, 46.67902, -15.027633), (10.532169, 46.67902, -14.496288), (11.276413, 46.67902, -13.92521), (11.989748, 46.67902, -13.315965), (12.67022, 46.67902, -12.67022), (13.315965, 46.67902, -11.989748), (13.92521, 46.67902, -11.276413), (14.496288, 46.67902, -10.532169), (15.027633, 46.67902, -9.759059), (15.517787, 46.67902, -8.959199), (15.965409, 46.67902, -8.134782), (16.36927, 46.67902, -7.288069), (16.728266, 46.67902, -6.4213796), (17.041409, 46.67902, -5.5370893), (17.307842, 46.67902, -4.6376224), (17.526838, 46.67902, -3.7254443), (17.697792, 46.67902, -2.8030548), (17.820238, 46.67902, -1.8729825), (17.89384, 46.67902, -0.93777645), (15.45085, 47.552826, 0), (15.429675, 47.552826, 0.808635), (15.366208, 47.552826, 1.6150535), (15.260624, 47.552826, 2.4170454), (15.113212, 47.552826, 3.2124124), (14.924375, 47.552826, 3.998974), (14.694632, 47.552826, 4.774575), (14.424611, 47.552826, 5.5370893), (14.115053, 47.552826, 6.2844267), (13.766808, 47.552826, 7.014539), (13.380828, 47.552826, 7.725425), (12.958173, 47.552826, 8.415136), (12.5, 47.552826, 9.081781), (12.0075655, 47.552826, 9.723535), (11.482219, 47.552826, 10.338636), (10.925401, 47.552826, 10.925401), (10.338636, 47.552826, 11.482219), (9.723535, 47.552826, 12.0075655), (9.081781, 47.552826, 12.5), (8.415136, 47.552826, 12.958173), (7.725425, 47.552826, 13.380828), (7.014539, 47.552826, 13.766808), (6.2844267, 47.552826, 14.115053), (5.5370893, 47.552826, 14.424611), (4.774575, 47.552826, 14.694632), (3.998974, 47.552826, 14.924375), (3.2124124, 47.552826, 15.113212), (2.4170454, 47.552826, 15.260624), (1.6150535, 47.552826, 15.366208), (0.808635, 47.552826, 15.429675), (9.460917e-16, 47.552826, 15.45085), (-0.808635, 47.552826, 15.429675), (-1.6150535, 47.552826, 15.366208), (-2.4170454, 47.552826, 15.260624), (-3.2124124, 47.552826, 15.113212), (-3.998974, 47.552826, 14.924375), (-4.774575, 47.552826, 14.694632), (-5.5370893, 47.552826, 14.424611), (-6.2844267, 47.552826, 14.115053), (-7.014539, 47.552826, 13.766808), (-7.725425, 47.552826, 13.380828), (-8.415136, 47.552826, 12.958173), (-9.081781, 47.552826, 12.5), (-9.723535, 47.552826, 12.0075655), (-10.338636, 47.552826, 11.482219), (-10.925401, 47.552826, 10.925401), (-11.482219, 47.552826, 10.338636), (-12.0075655, 47.552826, 9.723535), (-12.5, 47.552826, 9.081781), (-12.958173, 47.552826, 8.415136), (-13.380828, 47.552826, 7.725425), (-13.766808, 47.552826, 7.014539), (-14.115053, 47.552826, 6.2844267), (-14.424611, 47.552826, 5.5370893), (-14.694632, 47.552826, 4.774575), (-14.924375, 47.552826, 3.998974), (-15.113212, 47.552826, 3.2124124), (-15.260624, 47.552826, 2.4170454), (-15.366208, 47.552826, 1.6150535), (-15.429675, 47.552826, 0.808635), (-15.45085, 47.552826, 1.8921833e-15), (-15.429675, 47.552826, -0.808635), (-15.366208, 47.552826, -1.6150535), (-15.260624, 47.552826, -2.4170454), (-15.113212, 47.552826, -3.2124124), (-14.924375, 47.552826, -3.998974), (-14.694632, 47.552826, -4.774575), (-14.424611, 47.552826, -5.5370893), (-14.115053, 47.552826, -6.2844267), (-13.766808, 47.552826, -7.014539), (-13.380828, 47.552826, -7.725425), (-12.958173, 47.552826, -8.415136), (-12.5, 47.552826, -9.081781), (-12.0075655, 47.552826, -9.723535), (-11.482219, 47.552826, -10.338636), (-10.925401, 47.552826, -10.925401), (-10.338636, 47.552826, -11.482219), (-9.723535, 47.552826, -12.0075655), (-9.081781, 47.552826, -12.5), (-8.415136, 47.552826, -12.958173), (-7.725425, 47.552826, -13.380828), (-7.014539, 47.552826, -13.766808), (-6.2844267, 47.552826, -14.115053), (-5.5370893, 47.552826, -14.424611), (-4.774575, 47.552826, -14.694632), (-3.998974, 47.552826, -14.924375), (-3.2124124, 47.552826, -15.113212), (-2.4170454, 47.552826, -15.260624), (-1.6150535, 47.552826, -15.366208), (-0.808635, 47.552826, -15.429675), (-2.838275e-15, 47.552826, -15.45085), (0.808635, 47.552826, -15.429675), (1.6150535, 47.552826, -15.366208), (2.4170454, 47.552826, -15.260624), (3.2124124, 47.552826, -15.113212), (3.998974, 47.552826, -14.924375), (4.774575, 47.552826, -14.694632), (5.5370893, 47.552826, -14.424611), (6.2844267, 47.552826, -14.115053), (7.014539, 47.552826, -13.766808), (7.725425, 47.552826, -13.380828), (8.415136, 47.552826, -12.958173), (9.081781, 47.552826, -12.5), (9.723535, 47.552826, -12.0075655), (10.338636, 47.552826, -11.482219), (10.925401, 47.552826, -10.925401), (11.482219, 47.552826, -10.338636), (12.0075655, 47.552826, -9.723535), (12.5, 47.552826, -9.081781), (12.958173, 47.552826, -8.415136), (13.380828, 47.552826, -7.725425), (13.766808, 47.552826, -7.014539), (14.115053, 47.552826, -6.2844267), (14.424611, 47.552826, -5.5370893), (14.694632, 47.552826, -4.774575), (14.924375, 47.552826, -3.998974), (15.113212, 47.552826, -3.2124124), (15.260624, 47.552826, -2.4170454), (15.366208, 47.552826, -1.6150535), (15.429675, 47.552826, -0.808635), (12.940952, 48.29629, 0), (12.923217, 48.29629, 0.6772771), (12.87006, 48.29629, 1.3526978), (12.781628, 48.29629, 2.024411), (12.658161, 48.29629, 2.6905754), (12.5, 48.29629, 3.349365), (12.307577, 48.29629, 3.998974), (12.08142, 48.29629, 4.6376224), (11.822148, 48.29629, 5.2635593), (11.530473, 48.29629, 5.8750696), (11.207193, 48.29629, 6.470476), (10.853196, 48.29629, 7.0481477), (10.46945, 48.29629, 7.606501), (10.057009, 48.29629, 8.144005), (9.617002, 48.29629, 8.659187), (9.150635, 48.29629, 9.150635), (8.659187, 48.29629, 9.617002), (8.144005, 48.29629, 10.057009), (7.606501, 48.29629, 10.46945), (7.0481477, 48.29629, 10.853196), (6.470476, 48.29629, 11.207193), (5.8750696, 48.29629, 11.530473), (5.2635593, 48.29629, 11.822148), (4.6376224, 48.29629, 12.08142), (3.998974, 48.29629, 12.307577), (3.349365, 48.29629, 12.5), (2.6905754, 48.29629, 12.658161), (2.024411, 48.29629, 12.781628), (1.3526978, 48.29629, 12.87006), (0.6772771, 48.29629, 12.923217), (7.924048e-16, 48.29629, 12.940952), (-0.6772771, 48.29629, 12.923217), (-1.3526978, 48.29629, 12.87006), (-2.024411, 48.29629, 12.781628), (-2.6905754, 48.29629, 12.658161), (-3.349365, 48.29629, 12.5), (-3.998974, 48.29629, 12.307577), (-4.6376224, 48.29629, 12.08142), (-5.2635593, 48.29629, 11.822148), (-5.8750696, 48.29629, 11.530473), (-6.470476, 48.29629, 11.207193), (-7.0481477, 48.29629, 10.853196), (-7.606501, 48.29629, 10.46945), (-8.144005, 48.29629, 10.057009), (-8.659187, 48.29629, 9.617002), (-9.150635, 48.29629, 9.150635), (-9.617002, 48.29629, 8.659187), (-10.057009, 48.29629, 8.144005), (-10.46945, 48.29629, 7.606501), (-10.853196, 48.29629, 7.0481477), (-11.207193, 48.29629, 6.470476), (-11.530473, 48.29629, 5.8750696), (-11.822148, 48.29629, 5.2635593), (-12.08142, 48.29629, 4.6376224), (-12.307577, 48.29629, 3.998974), (-12.5, 48.29629, 3.349365), (-12.658161, 48.29629, 2.6905754), (-12.781628, 48.29629, 2.024411), (-12.87006, 48.29629, 1.3526978), (-12.923217, 48.29629, 0.6772771), (-12.940952, 48.29629, 1.5848095e-15), (-12.923217, 48.29629, -0.6772771), (-12.87006, 48.29629, -1.3526978), (-12.781628, 48.29629, -2.024411), (-12.658161, 48.29629, -2.6905754), (-12.5, 48.29629, -3.349365), (-12.307577, 48.29629, -3.998974), (-12.08142, 48.29629, -4.6376224), (-11.822148, 48.29629, -5.2635593), (-11.530473, 48.29629, -5.8750696), (-11.207193, 48.29629, -6.470476), (-10.853196, 48.29629, -7.0481477), (-10.46945, 48.29629, -7.606501), (-10.057009, 48.29629, -8.144005), (-9.617002, 48.29629, -8.659187), (-9.150635, 48.29629, -9.150635), (-8.659187, 48.29629, -9.617002), (-8.144005, 48.29629, -10.057009), (-7.606501, 48.29629, -10.46945), (-7.0481477, 48.29629, -10.853196), (-6.470476, 48.29629, -11.207193), (-5.8750696, 48.29629, -11.530473), (-5.2635593, 48.29629, -11.822148), (-4.6376224, 48.29629, -12.08142), (-3.998974, 48.29629, -12.307577), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.29629, -12.658161), (-2.024411, 48.29629, -12.781628), (-1.3526978, 48.29629, -12.87006), (-0.6772771, 48.29629, -12.923217), (-2.3772143e-15, 48.29629, -12.940952), (0.6772771, 48.29629, -12.923217), (1.3526978, 48.29629, -12.87006), (2.024411, 48.29629, -12.781628), (2.6905754, 48.29629, -12.658161), (3.349365, 48.29629, -12.5), (3.998974, 48.29629, -12.307577), (4.6376224, 48.29629, -12.08142), (5.2635593, 48.29629, -11.822148), (5.8750696, 48.29629, -11.530473), (6.470476, 48.29629, -11.207193), (7.0481477, 48.29629, -10.853196), (7.606501, 48.29629, -10.46945), (8.144005, 48.29629, -10.057009), (8.659187, 48.29629, -9.617002), (9.150635, 48.29629, -9.150635), (9.617002, 48.29629, -8.659187), (10.057009, 48.29629, -8.144005), (10.46945, 48.29629, -7.606501), (10.853196, 48.29629, -7.0481477), (11.207193, 48.29629, -6.470476), (11.530473, 48.29629, -5.8750696), (11.822148, 48.29629, -5.2635593), (12.08142, 48.29629, -4.6376224), (12.307577, 48.29629, -3.998974), (12.5, 48.29629, -3.349365), (12.658161, 48.29629, -2.6905754), (12.781628, 48.29629, -2.024411), (12.87006, 48.29629, -1.3526978), (12.923217, 48.29629, -0.6772771), (10.395584, 48.90738, 0), (10.381338, 48.90738, 0.54406285), (10.338636, 48.90738, 1.0866345), (10.267597, 48.90738, 1.6262277), (10.168416, 48.90738, 2.1613636), (10.041364, 48.90738, 2.6905754), (9.886788, 48.90738, 3.2124124), (9.705114, 48.90738, 3.7254443), (9.496839, 48.90738, 4.2282653), (9.262533, 48.90738, 4.7194967), (9.00284, 48.90738, 5.197792), (8.718471, 48.90738, 5.661841), (8.410205, 48.90738, 6.110371), (8.078887, 48.90738, 6.5421534), (7.725425, 48.90738, 6.9560037), (7.350788, 48.90738, 7.350788), (6.9560037, 48.90738, 7.725425), (6.5421534, 48.90738, 8.078887), (6.110371, 48.90738, 8.410205), (5.661841, 48.90738, 8.718471), (5.197792, 48.90738, 9.00284), (4.7194967, 48.90738, 9.262533), (4.2282653, 48.90738, 9.496839), (3.7254443, 48.90738, 9.705114), (3.2124124, 48.90738, 9.886788), (2.6905754, 48.90738, 10.041364), (2.1613636, 48.90738, 10.168416), (1.6262277, 48.90738, 10.267597), (1.0866345, 48.90738, 10.338636), (0.54406285, 48.90738, 10.381338), (6.3654595e-16, 48.90738, 10.395584), (-0.54406285, 48.90738, 10.381338), (-1.0866345, 48.90738, 10.338636), (-1.6262277, 48.90738, 10.267597), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.90738, 10.041364), (-3.2124124, 48.90738, 9.886788), (-3.7254443, 48.90738, 9.705114), (-4.2282653, 48.90738, 9.496839), (-4.7194967, 48.90738, 9.262533), (-5.197792, 48.90738, 9.00284), (-5.661841, 48.90738, 8.718471), (-6.110371, 48.90738, 8.410205), (-6.5421534, 48.90738, 8.078887), (-6.9560037, 48.90738, 7.725425), (-7.350788, 48.90738, 7.350788), (-7.725425, 48.90738, 6.9560037), (-8.078887, 48.90738, 6.5421534), (-8.410205, 48.90738, 6.110371), (-8.718471, 48.90738, 5.661841), (-9.00284, 48.90738, 5.197792), (-9.262533, 48.90738, 4.7194967), (-9.496839, 48.90738, 4.2282653), (-9.705114, 48.90738, 3.7254443), (-9.886788, 48.90738, 3.2124124), (-10.041364, 48.90738, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-10.267597, 48.90738, 1.6262277), (-10.338636, 48.90738, 1.0866345), (-10.381338, 48.90738, 0.54406285), (-10.395584, 48.90738, 1.2730919e-15), (-10.381338, 48.90738, -0.54406285), (-10.338636, 48.90738, -1.0866345), (-10.267597, 48.90738, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-10.041364, 48.90738, -2.6905754), (-9.886788, 48.90738, -3.2124124), (-9.705114, 48.90738, -3.7254443), (-9.496839, 48.90738, -4.2282653), (-9.262533, 48.90738, -4.7194967), (-9.00284, 48.90738, -5.197792), (-8.718471, 48.90738, -5.661841), (-8.410205, 48.90738, -6.110371), (-8.078887, 48.90738, -6.5421534), (-7.725425, 48.90738, -6.9560037), (-7.350788, 48.90738, -7.350788), (-6.9560037, 48.90738, -7.725425), (-6.5421534, 48.90738, -8.078887), (-6.110371, 48.90738, -8.410205), (-5.661841, 48.90738, -8.718471), (-5.197792, 48.90738, -9.00284), (-4.7194967, 48.90738, -9.262533), (-4.2282653, 48.90738, -9.496839), (-3.7254443, 48.90738, -9.705114), (-3.2124124, 48.90738, -9.886788), (-2.6905754, 48.90738, -10.041364), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 48.90738, -10.267597), (-1.0866345, 48.90738, -10.338636), (-0.54406285, 48.90738, -10.381338), (-1.909638e-15, 48.90738, -10.395584), (0.54406285, 48.90738, -10.381338), (1.0866345, 48.90738, -10.338636), (1.6262277, 48.90738, -10.267597), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.90738, -10.041364), (3.2124124, 48.90738, -9.886788), (3.7254443, 48.90738, -9.705114), (4.2282653, 48.90738, -9.496839), (4.7194967, 48.90738, -9.262533), (5.197792, 48.90738, -9.00284), (5.661841, 48.90738, -8.718471), (6.110371, 48.90738, -8.410205), (6.5421534, 48.90738, -8.078887), (6.9560037, 48.90738, -7.725425), (7.350788, 48.90738, -7.350788), (7.725425, 48.90738, -6.9560037), (8.078887, 48.90738, -6.5421534), (8.410205, 48.90738, -6.110371), (8.718471, 48.90738, -5.661841), (9.00284, 48.90738, -5.197792), (9.262533, 48.90738, -4.7194967), (9.496839, 48.90738, -4.2282653), (9.705114, 48.90738, -3.7254443), (9.886788, 48.90738, -3.2124124), (10.041364, 48.90738, -2.6905754), (10.168416, 48.90738, -2.1613636), (10.267597, 48.90738, -1.6262277), (10.338636, 48.90738, -1.0866345), (10.381338, 48.90738, -0.54406285), (7.8217235, 49.38442, 0), (7.8110037, 49.38442, 0.40935737), (7.778875, 49.38442, 0.81759274), (7.725425, 49.38442, 1.223587), (7.6507998, 49.38442, 1.6262277), (7.5552044, 49.38442, 2.024411), (7.438901, 49.38442, 2.4170454), (7.302208, 49.38442, 2.8030548), (7.1454997, 49.38442, 3.1813815), (6.9692063, 49.38442, 3.550988), (6.773811, 49.38442, 3.9108617), (6.5598493, 49.38442, 4.260016), (6.327907, 49.38442, 4.5974936), (6.0786204, 49.38442, 4.92237), (5.812673, 49.38442, 5.2337546), (5.5307937, 49.38442, 5.5307937), (5.2337546, 49.38442, 5.812673), (4.92237, 49.38442, 6.0786204), (4.5974936, 49.38442, 6.327907), (4.260016, 49.38442, 6.5598493), (3.9108617, 49.38442, 6.773811), (3.550988, 49.38442, 6.9692063), (3.1813815, 49.38442, 7.1454997), (2.8030548, 49.38442, 7.302208), (2.4170454, 49.38442, 7.438901), (2.024411, 49.38442, 7.5552044), (1.6262277, 49.38442, 7.6507998), (1.223587, 49.38442, 7.725425), (0.81759274, 49.38442, 7.778875), (0.40935737, 49.38442, 7.8110037), (4.789424e-16, 49.38442, 7.8217235), (-0.40935737, 49.38442, 7.8110037), (-0.81759274, 49.38442, 7.778875), (-1.223587, 49.38442, 7.725425), (-1.6262277, 49.38442, 7.6507998), (-2.024411, 49.38442, 7.5552044), (-2.4170454, 49.38442, 7.438901), (-2.8030548, 49.38442, 7.302208), (-3.1813815, 49.38442, 7.1454997), (-3.550988, 49.38442, 6.9692063), (-3.9108617, 49.38442, 6.773811), (-4.260016, 49.38442, 6.5598493), (-4.5974936, 49.38442, 6.327907), (-4.92237, 49.38442, 6.0786204), (-5.2337546, 49.38442, 5.812673), (-5.5307937, 49.38442, 5.5307937), (-5.812673, 49.38442, 5.2337546), (-6.0786204, 49.38442, 4.92237), (-6.327907, 49.38442, 4.5974936), (-6.5598493, 49.38442, 4.260016), (-6.773811, 49.38442, 3.9108617), (-6.9692063, 49.38442, 3.550988), (-7.1454997, 49.38442, 3.1813815), (-7.302208, 49.38442, 2.8030548), (-7.438901, 49.38442, 2.4170454), (-7.5552044, 49.38442, 2.024411), (-7.6507998, 49.38442, 1.6262277), (-7.725425, 49.38442, 1.223587), (-7.778875, 49.38442, 0.81759274), (-7.8110037, 49.38442, 0.40935737), (-7.8217235, 49.38442, 9.578848e-16), (-7.8110037, 49.38442, -0.40935737), (-7.778875, 49.38442, -0.81759274), (-7.725425, 49.38442, -1.223587), (-7.6507998, 49.38442, -1.6262277), (-7.5552044, 49.38442, -2.024411), (-7.438901, 49.38442, -2.4170454), (-7.302208, 49.38442, -2.8030548), (-7.1454997, 49.38442, -3.1813815), (-6.9692063, 49.38442, -3.550988), (-6.773811, 49.38442, -3.9108617), (-6.5598493, 49.38442, -4.260016), (-6.327907, 49.38442, -4.5974936), (-6.0786204, 49.38442, -4.92237), (-5.812673, 49.38442, -5.2337546), (-5.5307937, 49.38442, -5.5307937), (-5.2337546, 49.38442, -5.812673), (-4.92237, 49.38442, -6.0786204), (-4.5974936, 49.38442, -6.327907), (-4.260016, 49.38442, -6.5598493), (-3.9108617, 49.38442, -6.773811), (-3.550988, 49.38442, -6.9692063), (-3.1813815, 49.38442, -7.1454997), (-2.8030548, 49.38442, -7.302208), (-2.4170454, 49.38442, -7.438901), (-2.024411, 49.38442, -7.5552044), (-1.6262277, 49.38442, -7.6507998), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.38442, -7.778875), (-0.40935737, 49.38442, -7.8110037), (-1.4368273e-15, 49.38442, -7.8217235), (0.40935737, 49.38442, -7.8110037), (0.81759274, 49.38442, -7.778875), (1.223587, 49.38442, -7.725425), (1.6262277, 49.38442, -7.6507998), (2.024411, 49.38442, -7.5552044), (2.4170454, 49.38442, -7.438901), (2.8030548, 49.38442, -7.302208), (3.1813815, 49.38442, -7.1454997), (3.550988, 49.38442, -6.9692063), (3.9108617, 49.38442, -6.773811), (4.260016, 49.38442, -6.5598493), (4.5974936, 49.38442, -6.327907), (4.92237, 49.38442, -6.0786204), (5.2337546, 49.38442, -5.812673), (5.5307937, 49.38442, -5.5307937), (5.812673, 49.38442, -5.2337546), (6.0786204, 49.38442, -4.92237), (6.327907, 49.38442, -4.5974936), (6.5598493, 49.38442, -4.260016), (6.773811, 49.38442, -3.9108617), (6.9692063, 49.38442, -3.550988), (7.1454997, 49.38442, -3.1813815), (7.302208, 49.38442, -2.8030548), (7.438901, 49.38442, -2.4170454), (7.5552044, 49.38442, -2.024411), (7.6507998, 49.38442, -1.6262277), (7.725425, 49.38442, -1.223587), (7.778875, 49.38442, -0.81759274), (7.8110037, 49.38442, -0.40935737), (5.2264233, 49.726093, 0), (5.2192607, 49.726093, 0.27352986), (5.197792, 49.726093, 0.54631), (5.1620774, 49.726093, 0.81759274), (5.112213, 49.726093, 1.0866345), (5.048337, 49.726093, 1.3526978), (4.970624, 49.726093, 1.6150535), (4.8792863, 49.726093, 1.8729825), (4.774575, 49.726093, 2.1257777), (4.656777, 49.726093, 2.3727465), (4.526215, 49.726093, 2.6132116), (4.3832474, 49.726093, 2.846514), (4.2282653, 49.726093, 3.0720146), (4.0616937, 49.726093, 3.2890947), (3.8839893, 49.726093, 3.4971597), (3.6956394, 49.726093, 3.6956394), (3.4971597, 49.726093, 3.8839893), (3.2890947, 49.726093, 4.0616937), (3.0720146, 49.726093, 4.2282653), (2.846514, 49.726093, 4.3832474), (2.6132116, 49.726093, 4.526215), (2.3727465, 49.726093, 4.656777), (2.1257777, 49.726093, 4.774575), (1.8729825, 49.726093, 4.8792863), (1.6150535, 49.726093, 4.970624), (1.3526978, 49.726093, 5.048337), (1.0866345, 49.726093, 5.112213), (0.81759274, 49.726093, 5.1620774), (0.54631, 49.726093, 5.197792), (0.27352986, 49.726093, 5.2192607), (3.2002612e-16, 49.726093, 5.2264233), (-0.27352986, 49.726093, 5.2192607), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.726093, 5.1620774), (-1.0866345, 49.726093, 5.112213), (-1.3526978, 49.726093, 5.048337), (-1.6150535, 49.726093, 4.970624), (-1.8729825, 49.726093, 4.8792863), (-2.1257777, 49.726093, 4.774575), (-2.3727465, 49.726093, 4.656777), (-2.6132116, 49.726093, 4.526215), (-2.846514, 49.726093, 4.3832474), (-3.0720146, 49.726093, 4.2282653), (-3.2890947, 49.726093, 4.0616937), (-3.4971597, 49.726093, 3.8839893), (-3.6956394, 49.726093, 3.6956394), (-3.8839893, 49.726093, 3.4971597), (-4.0616937, 49.726093, 3.2890947), (-4.2282653, 49.726093, 3.0720146), (-4.3832474, 49.726093, 2.846514), (-4.526215, 49.726093, 2.6132116), (-4.656777, 49.726093, 2.3727465), (-4.774575, 49.726093, 2.1257777), (-4.8792863, 49.726093, 1.8729825), (-4.970624, 49.726093, 1.6150535), (-5.048337, 49.726093, 1.3526978), (-5.112213, 49.726093, 1.0866345), (-5.1620774, 49.726093, 0.81759274), (-5.197792, 49.726093, 0.54631), (-5.2192607, 49.726093, 0.27352986), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2192607, 49.726093, -0.27352986), (-5.197792, 49.726093, -0.54631), (-5.1620774, 49.726093, -0.81759274), (-5.112213, 49.726093, -1.0866345), (-5.048337, 49.726093, -1.3526978), (-4.970624, 49.726093, -1.6150535), (-4.8792863, 49.726093, -1.8729825), (-4.774575, 49.726093, -2.1257777), (-4.656777, 49.726093, -2.3727465), (-4.526215, 49.726093, -2.6132116), (-4.3832474, 49.726093, -2.846514), (-4.2282653, 49.726093, -3.0720146), (-4.0616937, 49.726093, -3.2890947), (-3.8839893, 49.726093, -3.4971597), (-3.6956394, 49.726093, -3.6956394), (-3.4971597, 49.726093, -3.8839893), (-3.2890947, 49.726093, -4.0616937), (-3.0720146, 49.726093, -4.2282653), (-2.846514, 49.726093, -4.3832474), (-2.6132116, 49.726093, -4.526215), (-2.3727465, 49.726093, -4.656777), (-2.1257777, 49.726093, -4.774575), (-1.8729825, 49.726093, -4.8792863), (-1.6150535, 49.726093, -4.970624), (-1.3526978, 49.726093, -5.048337), (-1.0866345, 49.726093, -5.112213), (-0.81759274, 49.726093, -5.1620774), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.726093, -5.2192607), (-9.600784e-16, 49.726093, -5.2264233), (0.27352986, 49.726093, -5.2192607), (0.54631, 49.726093, -5.197792), (0.81759274, 49.726093, -5.1620774), (1.0866345, 49.726093, -5.112213), (1.3526978, 49.726093, -5.048337), (1.6150535, 49.726093, -4.970624), (1.8729825, 49.726093, -4.8792863), (2.1257777, 49.726093, -4.774575), (2.3727465, 49.726093, -4.656777), (2.6132116, 49.726093, -4.526215), (2.846514, 49.726093, -4.3832474), (3.0720146, 49.726093, -4.2282653), (3.2890947, 49.726093, -4.0616937), (3.4971597, 49.726093, -3.8839893), (3.6956394, 49.726093, -3.6956394), (3.8839893, 49.726093, -3.4971597), (4.0616937, 49.726093, -3.2890947), (4.2282653, 49.726093, -3.0720146), (4.3832474, 49.726093, -2.846514), (4.526215, 49.726093, -2.6132116), (4.656777, 49.726093, -2.3727465), (4.774575, 49.726093, -2.1257777), (4.8792863, 49.726093, -1.8729825), (4.970624, 49.726093, -1.6150535), (5.048337, 49.726093, -1.3526978), (5.112213, 49.726093, -1.0866345), (5.1620774, 49.726093, -0.81759274), (5.197792, 49.726093, -0.54631), (5.2192607, 49.726093, -0.27352986), (2.616798, 49.931477, 0), (2.6132116, 49.931477, 0.13695261), (2.6024628, 49.931477, 0.27352986), (2.5845807, 49.931477, 0.40935737), (2.5596144, 49.931477, 0.54406285), (2.5276325, 49.931477, 0.6772771), (2.4887226, 49.931477, 0.808635), (2.4429913, 49.931477, 0.93777645), (2.3905637, 49.931477, 1.0643475), (2.331584, 49.931477, 1.1880014), (2.2662134, 49.931477, 1.308399), (2.1946313, 49.931477, 1.4252102), (2.117034, 49.931477, 1.5381151), (2.033634, 49.931477, 1.6468042), (1.9446597, 49.931477, 1.7509795), (1.8503555, 49.931477, 1.8503555), (1.7509795, 49.931477, 1.9446597), (1.6468042, 49.931477, 2.033634), (1.5381151, 49.931477, 2.117034), (1.4252102, 49.931477, 2.1946313), (1.308399, 49.931477, 2.2662134), (1.1880014, 49.931477, 2.331584), (1.0643475, 49.931477, 2.3905637), (0.93777645, 49.931477, 2.4429913), (0.808635, 49.931477, 2.4887226), (0.6772771, 49.931477, 2.5276325), (0.54406285, 49.931477, 2.5596144), (0.40935737, 49.931477, 2.5845807), (0.27352986, 49.931477, 2.6024628), (0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.931477, 2.6024628), (-0.40935737, 49.931477, 2.5845807), (-0.54406285, 49.931477, 2.5596144), (-0.6772771, 49.931477, 2.5276325), (-0.808635, 49.931477, 2.4887226), (-0.93777645, 49.931477, 2.4429913), (-1.0643475, 49.931477, 2.3905637), (-1.1880014, 49.931477, 2.331584), (-1.308399, 49.931477, 2.2662134), (-1.4252102, 49.931477, 2.1946313), (-1.5381151, 49.931477, 2.117034), (-1.6468042, 49.931477, 2.033634), (-1.7509795, 49.931477, 1.9446597), (-1.8503555, 49.931477, 1.8503555), (-1.9446597, 49.931477, 1.7509795), (-2.033634, 49.931477, 1.6468042), (-2.117034, 49.931477, 1.5381151), (-2.1946313, 49.931477, 1.4252102), (-2.2662134, 49.931477, 1.308399), (-2.331584, 49.931477, 1.1880014), (-2.3905637, 49.931477, 1.0643475), (-2.4429913, 49.931477, 0.93777645), (-2.4887226, 49.931477, 0.808635), (-2.5276325, 49.931477, 0.6772771), (-2.5596144, 49.931477, 0.54406285), (-2.5845807, 49.931477, 0.40935737), (-2.6024628, 49.931477, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, -0.13695261), (-2.6024628, 49.931477, -0.27352986), (-2.5845807, 49.931477, -0.40935737), (-2.5596144, 49.931477, -0.54406285), (-2.5276325, 49.931477, -0.6772771), (-2.4887226, 49.931477, -0.808635), (-2.4429913, 49.931477, -0.93777645), (-2.3905637, 49.931477, -1.0643475), (-2.331584, 49.931477, -1.1880014), (-2.2662134, 49.931477, -1.308399), (-2.1946313, 49.931477, -1.4252102), (-2.117034, 49.931477, -1.5381151), (-2.033634, 49.931477, -1.6468042), (-1.9446597, 49.931477, -1.7509795), (-1.8503555, 49.931477, -1.8503555), (-1.7509795, 49.931477, -1.9446597), (-1.6468042, 49.931477, -2.033634), (-1.5381151, 49.931477, -2.117034), (-1.4252102, 49.931477, -2.1946313), (-1.308399, 49.931477, -2.2662134), (-1.1880014, 49.931477, -2.331584), (-1.0643475, 49.931477, -2.3905637), (-0.93777645, 49.931477, -2.4429913), (-0.808635, 49.931477, -2.4887226), (-0.6772771, 49.931477, -2.5276325), (-0.54406285, 49.931477, -2.5596144), (-0.40935737, 49.931477, -2.5845807), (-0.27352986, 49.931477, -2.6024628), (-0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.931477, -2.6024628), (0.40935737, 49.931477, -2.5845807), (0.54406285, 49.931477, -2.5596144), (0.6772771, 49.931477, -2.5276325), (0.808635, 49.931477, -2.4887226), (0.93777645, 49.931477, -2.4429913), (1.0643475, 49.931477, -2.3905637), (1.1880014, 49.931477, -2.331584), (1.308399, 49.931477, -2.2662134), (1.4252102, 49.931477, -2.1946313), (1.5381151, 49.931477, -2.117034), (1.6468042, 49.931477, -2.033634), (1.7509795, 49.931477, -1.9446597), (1.8503555, 49.931477, -1.8503555), (1.9446597, 49.931477, -1.7509795), (2.033634, 49.931477, -1.6468042), (2.117034, 49.931477, -1.5381151), (2.1946313, 49.931477, -1.4252102), (2.2662134, 49.931477, -1.308399), (2.331584, 49.931477, -1.1880014), (2.3905637, 49.931477, -1.0643475), (2.4429913, 49.931477, -0.93777645), (2.4887226, 49.931477, -0.808635), (2.5276325, 49.931477, -0.6772771), (2.5596144, 49.931477, -0.54406285), (2.5845807, 49.931477, -0.40935737), (2.6024628, 49.931477, -0.27352986), (2.6132116, 49.931477, -0.13695261), (0, 50, 0)]
float2[] primvars:st = [(0.5, 0), (1, 0.016666668), (0.9916667, 0.016666668), (0.5, 0), (0.9916667, 0.016666668), (0.98333335, 0.016666668), (0.5, 0), (0.98333335, 0.016666668), (0.975, 0.016666668), (0.5, 0), (0.975, 0.016666668), (0.96666664, 0.016666668), (0.5, 0), (0.96666664, 0.016666668), (0.9583333, 0.016666668), (0.5, 0), (0.9583333, 0.016666668), (0.95, 0.016666668), (0.5, 0), (0.95, 0.016666668), (0.94166666, 0.016666668), (0.5, 0), (0.94166666, 0.016666668), (0.93333334, 0.016666668), (0.5, 0), (0.93333334, 0.016666668), (0.925, 0.016666668), (0.5, 0), (0.925, 0.016666668), (0.9166667, 0.016666668), (0.5, 0), (0.9166667, 0.016666668), (0.90833336, 0.016666668), (0.5, 0), (0.90833336, 0.016666668), (0.9, 0.016666668), (0.5, 0), (0.9, 0.016666668), (0.89166665, 0.016666668), (0.5, 0), (0.89166665, 0.016666668), (0.8833333, 0.016666668), (0.5, 0), (0.8833333, 0.016666668), (0.875, 0.016666668), (0.5, 0), (0.875, 0.016666668), (0.8666667, 0.016666668), (0.5, 0), (0.8666667, 0.016666668), (0.85833335, 0.016666668), (0.5, 0), (0.85833335, 0.016666668), (0.85, 0.016666668), (0.5, 0), (0.85, 0.016666668), (0.84166664, 0.016666668), (0.5, 0), (0.84166664, 0.016666668), (0.8333333, 0.016666668), (0.5, 0), (0.8333333, 0.016666668), (0.825, 0.016666668), (0.5, 0), (0.825, 0.016666668), (0.81666666, 0.016666668), (0.5, 0), (0.81666666, 0.016666668), (0.80833334, 0.016666668), (0.5, 0), (0.80833334, 0.016666668), (0.8, 0.016666668), (0.5, 0), (0.8, 0.016666668), (0.7916667, 0.016666668), (0.5, 0), (0.7916667, 0.016666668), (0.78333336, 0.016666668), (0.5, 0), (0.78333336, 0.016666668), (0.775, 0.016666668), (0.5, 0), (0.775, 0.016666668), (0.76666665, 0.016666668), (0.5, 0), (0.76666665, 0.016666668), (0.7583333, 0.016666668), (0.5, 0), (0.7583333, 0.016666668), (0.75, 0.016666668), (0.5, 0), (0.75, 0.016666668), (0.7416667, 0.016666668), (0.5, 0), (0.7416667, 0.016666668), (0.73333335, 0.016666668), (0.5, 0), (0.73333335, 0.016666668), (0.725, 0.016666668), (0.5, 0), (0.725, 0.016666668), (0.71666664, 0.016666668), (0.5, 0), (0.71666664, 0.016666668), (0.7083333, 0.016666668), (0.5, 0), (0.7083333, 0.016666668), (0.7, 0.016666668), (0.5, 0), (0.7, 0.016666668), (0.69166666, 0.016666668), (0.5, 0), (0.69166666, 0.016666668), (0.68333334, 0.016666668), (0.5, 0), (0.68333334, 0.016666668), (0.675, 0.016666668), (0.5, 0), (0.675, 0.016666668), (0.6666667, 0.016666668), (0.5, 0), (0.6666667, 0.016666668), (0.65833336, 0.016666668), (0.5, 0), (0.65833336, 0.016666668), (0.65, 0.016666668), (0.5, 0), (0.65, 0.016666668), (0.64166665, 0.016666668), (0.5, 0), (0.64166665, 0.016666668), (0.6333333, 0.016666668), (0.5, 0), (0.6333333, 0.016666668), (0.625, 0.016666668), (0.5, 0), (0.625, 0.016666668), (0.6166667, 0.016666668), (0.5, 0), (0.6166667, 0.016666668), (0.60833335, 0.016666668), (0.5, 0), (0.60833335, 0.016666668), (0.6, 0.016666668), (0.5, 0), (0.6, 0.016666668), (0.59166664, 0.016666668), (0.5, 0), (0.59166664, 0.016666668), (0.5833333, 0.016666668), (0.5, 0), (0.5833333, 0.016666668), (0.575, 0.016666668), (0.5, 0), (0.575, 0.016666668), (0.56666666, 0.016666668), (0.5, 0), (0.56666666, 0.016666668), (0.55833334, 0.016666668), (0.5, 0), (0.55833334, 0.016666668), (0.55, 0.016666668), (0.5, 0), (0.55, 0.016666668), (0.5416667, 0.016666668), (0.5, 0), (0.5416667, 0.016666668), (0.53333336, 0.016666668), (0.5, 0), (0.53333336, 0.016666668), (0.525, 0.016666668), (0.5, 0), (0.525, 0.016666668), (0.51666665, 0.016666668), (0.5, 0), (0.51666665, 0.016666668), (0.5083333, 0.016666668), (0.5, 0), (0.5083333, 0.016666668), (0.5, 0.016666668), (0.5, 0), (0.5, 0.016666668), (0.49166667, 0.016666668), (0.5, 0), (0.49166667, 0.016666668), (0.48333332, 0.016666668), (0.5, 0), (0.48333332, 0.016666668), (0.475, 0.016666668), (0.5, 0), (0.475, 0.016666668), (0.46666667, 0.016666668), (0.5, 0), (0.46666667, 0.016666668), (0.45833334, 0.016666668), (0.5, 0), (0.45833334, 0.016666668), (0.45, 0.016666668), (0.5, 0), (0.45, 0.016666668), (0.44166666, 0.016666668), (0.5, 0), (0.44166666, 0.016666668), (0.43333334, 0.016666668), (0.5, 0), (0.43333334, 0.016666668), (0.425, 0.016666668), (0.5, 0), (0.425, 0.016666668), (0.41666666, 0.016666668), (0.5, 0), (0.41666666, 0.016666668), (0.40833333, 0.016666668), (0.5, 0), (0.40833333, 0.016666668), (0.4, 0.016666668), (0.5, 0), (0.4, 0.016666668), (0.39166668, 0.016666668), (0.5, 0), (0.39166668, 0.016666668), (0.38333333, 0.016666668), (0.5, 0), (0.38333333, 0.016666668), (0.375, 0.016666668), (0.5, 0), (0.375, 0.016666668), (0.36666667, 0.016666668), (0.5, 0), (0.36666667, 0.016666668), (0.35833332, 0.016666668), (0.5, 0), (0.35833332, 0.016666668), (0.35, 0.016666668), (0.5, 0), (0.35, 0.016666668), (0.34166667, 0.016666668), (0.5, 0), (0.34166667, 0.016666668), (0.33333334, 0.016666668), (0.5, 0), (0.33333334, 0.016666668), (0.325, 0.016666668), (0.5, 0), (0.325, 0.016666668), (0.31666666, 0.016666668), (0.5, 0), (0.31666666, 0.016666668), (0.30833334, 0.016666668), (0.5, 0), (0.30833334, 0.016666668), (0.3, 0.016666668), (0.5, 0), (0.3, 0.016666668), (0.29166666, 0.016666668), (0.5, 0), (0.29166666, 0.016666668), (0.28333333, 0.016666668), (0.5, 0), (0.28333333, 0.016666668), (0.275, 0.016666668), (0.5, 0), (0.275, 0.016666668), (0.26666668, 0.016666668), (0.5, 0), (0.26666668, 0.016666668), (0.25833333, 0.016666668), (0.5, 0), (0.25833333, 0.016666668), (0.25, 0.016666668), (0.5, 0), (0.25, 0.016666668), (0.24166666, 0.016666668), (0.5, 0), (0.24166666, 0.016666668), (0.23333333, 0.016666668), (0.5, 0), (0.23333333, 0.016666668), (0.225, 0.016666668), (0.5, 0), (0.225, 0.016666668), (0.21666667, 0.016666668), (0.5, 0), (0.21666667, 0.016666668), (0.20833333, 0.016666668), (0.5, 0), (0.20833333, 0.016666668), (0.2, 0.016666668), (0.5, 0), (0.2, 0.016666668), (0.19166666, 0.016666668), (0.5, 0), (0.19166666, 0.016666668), (0.18333334, 0.016666668), (0.5, 0), (0.18333334, 0.016666668), (0.175, 0.016666668), (0.5, 0), (0.175, 0.016666668), (0.16666667, 0.016666668), (0.5, 0), (0.16666667, 0.016666668), (0.15833333, 0.016666668), (0.5, 0), (0.15833333, 0.016666668), (0.15, 0.016666668), (0.5, 0), (0.15, 0.016666668), (0.14166667, 0.016666668), (0.5, 0), (0.14166667, 0.016666668), (0.13333334, 0.016666668), (0.5, 0), (0.13333334, 0.016666668), (0.125, 0.016666668), (0.5, 0), (0.125, 0.016666668), (0.11666667, 0.016666668), (0.5, 0), (0.11666667, 0.016666668), (0.108333334, 0.016666668), (0.5, 0), (0.108333334, 0.016666668), (0.1, 0.016666668), (0.5, 0), (0.1, 0.016666668), (0.09166667, 0.016666668), (0.5, 0), (0.09166667, 0.016666668), (0.083333336, 0.016666668), (0.5, 0), (0.083333336, 0.016666668), (0.075, 0.016666668), (0.5, 0), (0.075, 0.016666668), (0.06666667, 0.016666668), (0.5, 0), (0.06666667, 0.016666668), (0.058333334, 0.016666668), (0.5, 0), (0.058333334, 0.016666668), (0.05, 0.016666668), (0.5, 0), (0.05, 0.016666668), (0.041666668, 0.016666668), (0.5, 0), (0.041666668, 0.016666668), (0.033333335, 0.016666668), (0.5, 0), (0.033333335, 0.016666668), (0.025, 0.016666668), (0.5, 0), (0.025, 0.016666668), (0.016666668, 0.016666668), (0.5, 0), (0.016666668, 0.016666668), (0.008333334, 0.016666668), (0.5, 0), (0.008333334, 0.016666668), (0, 0.016666668), (1, 0.016666668), (1, 0.033333335), (0.9916667, 0.033333335), (0.9916667, 0.016666668), (0.9916667, 0.016666668), (0.9916667, 0.033333335), (0.98333335, 0.033333335), (0.98333335, 0.016666668), (0.98333335, 0.016666668), (0.98333335, 0.033333335), (0.975, 0.033333335), (0.975, 0.016666668), (0.975, 0.016666668), (0.975, 0.033333335), (0.96666664, 0.033333335), (0.96666664, 0.016666668), (0.96666664, 0.016666668), (0.96666664, 0.033333335), (0.9583333, 0.033333335), (0.9583333, 0.016666668), (0.9583333, 0.016666668), (0.9583333, 0.033333335), (0.95, 0.033333335), (0.95, 0.016666668), (0.95, 0.016666668), (0.95, 0.033333335), (0.94166666, 0.033333335), (0.94166666, 0.016666668), (0.94166666, 0.016666668), (0.94166666, 0.033333335), (0.93333334, 0.033333335), (0.93333334, 0.016666668), (0.93333334, 0.016666668), (0.93333334, 0.033333335), (0.925, 0.033333335), (0.925, 0.016666668), (0.925, 0.016666668), (0.925, 0.033333335), (0.9166667, 0.033333335), (0.9166667, 0.016666668), (0.9166667, 0.016666668), (0.9166667, 0.033333335), (0.90833336, 0.033333335), (0.90833336, 0.016666668), (0.90833336, 0.016666668), (0.90833336, 0.033333335), (0.9, 0.033333335), (0.9, 0.016666668), (0.9, 0.016666668), (0.9, 0.033333335), (0.89166665, 0.033333335), (0.89166665, 0.016666668), (0.89166665, 0.016666668), (0.89166665, 0.033333335), (0.8833333, 0.033333335), (0.8833333, 0.016666668), (0.8833333, 0.016666668), (0.8833333, 0.033333335), (0.875, 0.033333335), (0.875, 0.016666668), (0.875, 0.016666668), (0.875, 0.033333335), (0.8666667, 0.033333335), (0.8666667, 0.016666668), (0.8666667, 0.016666668), (0.8666667, 0.033333335), (0.85833335, 0.033333335), (0.85833335, 0.016666668), (0.85833335, 0.016666668), (0.85833335, 0.033333335), (0.85, 0.033333335), (0.85, 0.016666668), (0.85, 0.016666668), (0.85, 0.033333335), (0.84166664, 0.033333335), (0.84166664, 0.016666668), (0.84166664, 0.016666668), (0.84166664, 0.033333335), (0.8333333, 0.033333335), (0.8333333, 0.016666668), (0.8333333, 0.016666668), (0.8333333, 0.033333335), (0.825, 0.033333335), (0.825, 0.016666668), (0.825, 0.016666668), (0.825, 0.033333335), (0.81666666, 0.033333335), (0.81666666, 0.016666668), (0.81666666, 0.016666668), (0.81666666, 0.033333335), (0.80833334, 0.033333335), (0.80833334, 0.016666668), (0.80833334, 0.016666668), (0.80833334, 0.033333335), (0.8, 0.033333335), (0.8, 0.016666668), (0.8, 0.016666668), (0.8, 0.033333335), (0.7916667, 0.033333335), (0.7916667, 0.016666668), (0.7916667, 0.016666668), (0.7916667, 0.033333335), (0.78333336, 0.033333335), (0.78333336, 0.016666668), (0.78333336, 0.016666668), (0.78333336, 0.033333335), (0.775, 0.033333335), (0.775, 0.016666668), (0.775, 0.016666668), (0.775, 0.033333335), (0.76666665, 0.033333335), (0.76666665, 0.016666668), (0.76666665, 0.016666668), (0.76666665, 0.033333335), (0.7583333, 0.033333335), (0.7583333, 0.016666668), (0.7583333, 0.016666668), (0.7583333, 0.033333335), (0.75, 0.033333335), (0.75, 0.016666668), (0.75, 0.016666668), (0.75, 0.033333335), (0.7416667, 0.033333335), (0.7416667, 0.016666668), (0.7416667, 0.016666668), (0.7416667, 0.033333335), (0.73333335, 0.033333335), (0.73333335, 0.016666668), (0.73333335, 0.016666668), (0.73333335, 0.033333335), (0.725, 0.033333335), (0.725, 0.016666668), (0.725, 0.016666668), (0.725, 0.033333335), (0.71666664, 0.033333335), (0.71666664, 0.016666668), (0.71666664, 0.016666668), (0.71666664, 0.033333335), (0.7083333, 0.033333335), (0.7083333, 0.016666668), (0.7083333, 0.016666668), (0.7083333, 0.033333335), (0.7, 0.033333335), (0.7, 0.016666668), (0.7, 0.016666668), (0.7, 0.033333335), (0.69166666, 0.033333335), (0.69166666, 0.016666668), (0.69166666, 0.016666668), (0.69166666, 0.033333335), (0.68333334, 0.033333335), (0.68333334, 0.016666668), (0.68333334, 0.016666668), (0.68333334, 0.033333335), (0.675, 0.033333335), (0.675, 0.016666668), (0.675, 0.016666668), (0.675, 0.033333335), (0.6666667, 0.033333335), (0.6666667, 0.016666668), (0.6666667, 0.016666668), (0.6666667, 0.033333335), (0.65833336, 0.033333335), (0.65833336, 0.016666668), (0.65833336, 0.016666668), (0.65833336, 0.033333335), (0.65, 0.033333335), (0.65, 0.016666668), (0.65, 0.016666668), (0.65, 0.033333335), (0.64166665, 0.033333335), (0.64166665, 0.016666668), (0.64166665, 0.016666668), (0.64166665, 0.033333335), (0.6333333, 0.033333335), (0.6333333, 0.016666668), (0.6333333, 0.016666668), (0.6333333, 0.033333335), (0.625, 0.033333335), (0.625, 0.016666668), (0.625, 0.016666668), (0.625, 0.033333335), (0.6166667, 0.033333335), (0.6166667, 0.016666668), (0.6166667, 0.016666668), (0.6166667, 0.033333335), (0.60833335, 0.033333335), (0.60833335, 0.016666668), (0.60833335, 0.016666668), (0.60833335, 0.033333335), (0.6, 0.033333335), (0.6, 0.016666668), (0.6, 0.016666668), (0.6, 0.033333335), (0.59166664, 0.033333335), (0.59166664, 0.016666668), (0.59166664, 0.016666668), (0.59166664, 0.033333335), (0.5833333, 0.033333335), (0.5833333, 0.016666668), (0.5833333, 0.016666668), (0.5833333, 0.033333335), (0.575, 0.033333335), (0.575, 0.016666668), (0.575, 0.016666668), (0.575, 0.033333335), (0.56666666, 0.033333335), (0.56666666, 0.016666668), (0.56666666, 0.016666668), (0.56666666, 0.033333335), (0.55833334, 0.033333335), (0.55833334, 0.016666668), (0.55833334, 0.016666668), (0.55833334, 0.033333335), (0.55, 0.033333335), (0.55, 0.016666668), (0.55, 0.016666668), (0.55, 0.033333335), (0.5416667, 0.033333335), (0.5416667, 0.016666668), (0.5416667, 0.016666668), (0.5416667, 0.033333335), (0.53333336, 0.033333335), (0.53333336, 0.016666668), (0.53333336, 0.016666668), (0.53333336, 0.033333335), (0.525, 0.033333335), (0.525, 0.016666668), (0.525, 0.016666668), (0.525, 0.033333335), (0.51666665, 0.033333335), (0.51666665, 0.016666668), (0.51666665, 0.016666668), (0.51666665, 0.033333335), (0.5083333, 0.033333335), (0.5083333, 0.016666668), (0.5083333, 0.016666668), (0.5083333, 0.033333335), (0.5, 0.033333335), (0.5, 0.016666668), (0.5, 0.016666668), (0.5, 0.033333335), (0.49166667, 0.033333335), (0.49166667, 0.016666668), (0.49166667, 0.016666668), (0.49166667, 0.033333335), (0.48333332, 0.033333335), (0.48333332, 0.016666668), (0.48333332, 0.016666668), (0.48333332, 0.033333335), (0.475, 0.033333335), (0.475, 0.016666668), (0.475, 0.016666668), (0.475, 0.033333335), (0.46666667, 0.033333335), (0.46666667, 0.016666668), (0.46666667, 0.016666668), (0.46666667, 0.033333335), (0.45833334, 0.033333335), (0.45833334, 0.016666668), (0.45833334, 0.016666668), (0.45833334, 0.033333335), (0.45, 0.033333335), (0.45, 0.016666668), (0.45, 0.016666668), (0.45, 0.033333335), (0.44166666, 0.033333335), (0.44166666, 0.016666668), (0.44166666, 0.016666668), (0.44166666, 0.033333335), (0.43333334, 0.033333335), (0.43333334, 0.016666668), (0.43333334, 0.016666668), (0.43333334, 0.033333335), (0.425, 0.033333335), (0.425, 0.016666668), (0.425, 0.016666668), (0.425, 0.033333335), (0.41666666, 0.033333335), (0.41666666, 0.016666668), (0.41666666, 0.016666668), (0.41666666, 0.033333335), (0.40833333, 0.033333335), (0.40833333, 0.016666668), (0.40833333, 0.016666668), (0.40833333, 0.033333335), (0.4, 0.033333335), (0.4, 0.016666668), (0.4, 0.016666668), (0.4, 0.033333335), (0.39166668, 0.033333335), (0.39166668, 0.016666668), (0.39166668, 0.016666668), (0.39166668, 0.033333335), (0.38333333, 0.033333335), (0.38333333, 0.016666668), (0.38333333, 0.016666668), (0.38333333, 0.033333335), (0.375, 0.033333335), (0.375, 0.016666668), (0.375, 0.016666668), (0.375, 0.033333335), (0.36666667, 0.033333335), (0.36666667, 0.016666668), (0.36666667, 0.016666668), (0.36666667, 0.033333335), (0.35833332, 0.033333335), (0.35833332, 0.016666668), (0.35833332, 0.016666668), (0.35833332, 0.033333335), (0.35, 0.033333335), (0.35, 0.016666668), (0.35, 0.016666668), (0.35, 0.033333335), (0.34166667, 0.033333335), (0.34166667, 0.016666668), (0.34166667, 0.016666668), (0.34166667, 0.033333335), (0.33333334, 0.033333335), (0.33333334, 0.016666668), (0.33333334, 0.016666668), (0.33333334, 0.033333335), (0.325, 0.033333335), (0.325, 0.016666668), (0.325, 0.016666668), (0.325, 0.033333335), (0.31666666, 0.033333335), (0.31666666, 0.016666668), (0.31666666, 0.016666668), (0.31666666, 0.033333335), (0.30833334, 0.033333335), (0.30833334, 0.016666668), (0.30833334, 0.016666668), (0.30833334, 0.033333335), (0.3, 0.033333335), (0.3, 0.016666668), (0.3, 0.016666668), (0.3, 0.033333335), (0.29166666, 0.033333335), (0.29166666, 0.016666668), (0.29166666, 0.016666668), (0.29166666, 0.033333335), (0.28333333, 0.033333335), (0.28333333, 0.016666668), (0.28333333, 0.016666668), (0.28333333, 0.033333335), (0.275, 0.033333335), (0.275, 0.016666668), (0.275, 0.016666668), (0.275, 0.033333335), (0.26666668, 0.033333335), (0.26666668, 0.016666668), (0.26666668, 0.016666668), (0.26666668, 0.033333335), (0.25833333, 0.033333335), (0.25833333, 0.016666668), (0.25833333, 0.016666668), (0.25833333, 0.033333335), (0.25, 0.033333335), (0.25, 0.016666668), (0.25, 0.016666668), (0.25, 0.033333335), (0.24166666, 0.033333335), (0.24166666, 0.016666668), (0.24166666, 0.016666668), (0.24166666, 0.033333335), (0.23333333, 0.033333335), (0.23333333, 0.016666668), (0.23333333, 0.016666668), (0.23333333, 0.033333335), (0.225, 0.033333335), (0.225, 0.016666668), (0.225, 0.016666668), (0.225, 0.033333335), (0.21666667, 0.033333335), (0.21666667, 0.016666668), (0.21666667, 0.016666668), (0.21666667, 0.033333335), (0.20833333, 0.033333335), (0.20833333, 0.016666668), (0.20833333, 0.016666668), (0.20833333, 0.033333335), (0.2, 0.033333335), (0.2, 0.016666668), (0.2, 0.016666668), (0.2, 0.033333335), (0.19166666, 0.033333335), (0.19166666, 0.016666668), (0.19166666, 0.016666668), (0.19166666, 0.033333335), (0.18333334, 0.033333335), (0.18333334, 0.016666668), (0.18333334, 0.016666668), (0.18333334, 0.033333335), (0.175, 0.033333335), (0.175, 0.016666668), (0.175, 0.016666668), (0.175, 0.033333335), (0.16666667, 0.033333335), (0.16666667, 0.016666668), (0.16666667, 0.016666668), (0.16666667, 0.033333335), (0.15833333, 0.033333335), (0.15833333, 0.016666668), (0.15833333, 0.016666668), (0.15833333, 0.033333335), (0.15, 0.033333335), (0.15, 0.016666668), (0.15, 0.016666668), (0.15, 0.033333335), (0.14166667, 0.033333335), (0.14166667, 0.016666668), (0.14166667, 0.016666668), (0.14166667, 0.033333335), (0.13333334, 0.033333335), (0.13333334, 0.016666668), (0.13333334, 0.016666668), (0.13333334, 0.033333335), (0.125, 0.033333335), (0.125, 0.016666668), (0.125, 0.016666668), (0.125, 0.033333335), (0.11666667, 0.033333335), (0.11666667, 0.016666668), (0.11666667, 0.016666668), (0.11666667, 0.033333335), (0.108333334, 0.033333335), (0.108333334, 0.016666668), (0.108333334, 0.016666668), (0.108333334, 0.033333335), (0.1, 0.033333335), (0.1, 0.016666668), (0.1, 0.016666668), (0.1, 0.033333335), (0.09166667, 0.033333335), (0.09166667, 0.016666668), (0.09166667, 0.016666668), (0.09166667, 0.033333335), (0.083333336, 0.033333335), (0.083333336, 0.016666668), (0.083333336, 0.016666668), (0.083333336, 0.033333335), (0.075, 0.033333335), (0.075, 0.016666668), (0.075, 0.016666668), (0.075, 0.033333335), (0.06666667, 0.033333335), (0.06666667, 0.016666668), (0.06666667, 0.016666668), (0.06666667, 0.033333335), (0.058333334, 0.033333335), (0.058333334, 0.016666668), (0.058333334, 0.016666668), (0.058333334, 0.033333335), (0.05, 0.033333335), (0.05, 0.016666668), (0.05, 0.016666668), (0.05, 0.033333335), (0.041666668, 0.033333335), (0.041666668, 0.016666668), (0.041666668, 0.016666668), (0.041666668, 0.033333335), (0.033333335, 0.033333335), (0.033333335, 0.016666668), (0.033333335, 0.016666668), (0.033333335, 0.033333335), (0.025, 0.033333335), (0.025, 0.016666668), (0.025, 0.016666668), (0.025, 0.033333335), (0.016666668, 0.033333335), (0.016666668, 0.016666668), (0.016666668, 0.016666668), (0.016666668, 0.033333335), (0.008333334, 0.033333335), (0.008333334, 0.016666668), (0.008333334, 0.016666668), (0.008333334, 0.033333335), (0, 0.033333335), (0, 0.016666668), (1, 0.033333335), (1, 0.05), (0.9916667, 0.05), (0.9916667, 0.033333335), (0.9916667, 0.033333335), (0.9916667, 0.05), (0.98333335, 0.05), (0.98333335, 0.033333335), (0.98333335, 0.033333335), (0.98333335, 0.05), (0.975, 0.05), (0.975, 0.033333335), (0.975, 0.033333335), (0.975, 0.05), (0.96666664, 0.05), (0.96666664, 0.033333335), (0.96666664, 0.033333335), (0.96666664, 0.05), (0.9583333, 0.05), (0.9583333, 0.033333335), (0.9583333, 0.033333335), (0.9583333, 0.05), (0.95, 0.05), (0.95, 0.033333335), (0.95, 0.033333335), (0.95, 0.05), (0.94166666, 0.05), (0.94166666, 0.033333335), (0.94166666, 0.033333335), (0.94166666, 0.05), (0.93333334, 0.05), (0.93333334, 0.033333335), (0.93333334, 0.033333335), (0.93333334, 0.05), (0.925, 0.05), (0.925, 0.033333335), (0.925, 0.033333335), (0.925, 0.05), (0.9166667, 0.05), (0.9166667, 0.033333335), (0.9166667, 0.033333335), (0.9166667, 0.05), (0.90833336, 0.05), (0.90833336, 0.033333335), (0.90833336, 0.033333335), (0.90833336, 0.05), (0.9, 0.05), (0.9, 0.033333335), (0.9, 0.033333335), (0.9, 0.05), (0.89166665, 0.05), (0.89166665, 0.033333335), (0.89166665, 0.033333335), (0.89166665, 0.05), (0.8833333, 0.05), (0.8833333, 0.033333335), (0.8833333, 0.033333335), (0.8833333, 0.05), (0.875, 0.05), (0.875, 0.033333335), (0.875, 0.033333335), (0.875, 0.05), (0.8666667, 0.05), (0.8666667, 0.033333335), (0.8666667, 0.033333335), (0.8666667, 0.05), (0.85833335, 0.05), (0.85833335, 0.033333335), (0.85833335, 0.033333335), (0.85833335, 0.05), (0.85, 0.05), (0.85, 0.033333335), (0.85, 0.033333335), (0.85, 0.05), (0.84166664, 0.05), (0.84166664, 0.033333335), (0.84166664, 0.033333335), (0.84166664, 0.05), (0.8333333, 0.05), (0.8333333, 0.033333335), (0.8333333, 0.033333335), (0.8333333, 0.05), (0.825, 0.05), (0.825, 0.033333335), (0.825, 0.033333335), (0.825, 0.05), (0.81666666, 0.05), (0.81666666, 0.033333335), (0.81666666, 0.033333335), (0.81666666, 0.05), (0.80833334, 0.05), (0.80833334, 0.033333335), (0.80833334, 0.033333335), (0.80833334, 0.05), (0.8, 0.05), (0.8, 0.033333335), (0.8, 0.033333335), (0.8, 0.05), (0.7916667, 0.05), (0.7916667, 0.033333335), (0.7916667, 0.033333335), (0.7916667, 0.05), (0.78333336, 0.05), (0.78333336, 0.033333335), (0.78333336, 0.033333335), (0.78333336, 0.05), (0.775, 0.05), (0.775, 0.033333335), (0.775, 0.033333335), (0.775, 0.05), (0.76666665, 0.05), (0.76666665, 0.033333335), (0.76666665, 0.033333335), (0.76666665, 0.05), (0.7583333, 0.05), (0.7583333, 0.033333335), (0.7583333, 0.033333335), (0.7583333, 0.05), (0.75, 0.05), (0.75, 0.033333335), (0.75, 0.033333335), (0.75, 0.05), (0.7416667, 0.05), (0.7416667, 0.033333335), (0.7416667, 0.033333335), (0.7416667, 0.05), (0.73333335, 0.05), (0.73333335, 0.033333335), (0.73333335, 0.033333335), (0.73333335, 0.05), (0.725, 0.05), (0.725, 0.033333335), (0.725, 0.033333335), (0.725, 0.05), (0.71666664, 0.05), (0.71666664, 0.033333335), (0.71666664, 0.033333335), (0.71666664, 0.05), (0.7083333, 0.05), (0.7083333, 0.033333335), (0.7083333, 0.033333335), (0.7083333, 0.05), (0.7, 0.05), (0.7, 0.033333335), (0.7, 0.033333335), (0.7, 0.05), (0.69166666, 0.05), (0.69166666, 0.033333335), (0.69166666, 0.033333335), (0.69166666, 0.05), (0.68333334, 0.05), (0.68333334, 0.033333335), (0.68333334, 0.033333335), (0.68333334, 0.05), (0.675, 0.05), (0.675, 0.033333335), (0.675, 0.033333335), (0.675, 0.05), (0.6666667, 0.05), (0.6666667, 0.033333335), (0.6666667, 0.033333335), (0.6666667, 0.05), (0.65833336, 0.05), (0.65833336, 0.033333335), (0.65833336, 0.033333335), (0.65833336, 0.05), (0.65, 0.05), (0.65, 0.033333335), (0.65, 0.033333335), (0.65, 0.05), (0.64166665, 0.05), (0.64166665, 0.033333335), (0.64166665, 0.033333335), (0.64166665, 0.05), (0.6333333, 0.05), (0.6333333, 0.033333335), (0.6333333, 0.033333335), (0.6333333, 0.05), (0.625, 0.05), (0.625, 0.033333335), (0.625, 0.033333335), (0.625, 0.05), (0.6166667, 0.05), (0.6166667, 0.033333335), (0.6166667, 0.033333335), (0.6166667, 0.05), (0.60833335, 0.05), (0.60833335, 0.033333335), (0.60833335, 0.033333335), (0.60833335, 0.05), (0.6, 0.05), (0.6, 0.033333335), (0.6, 0.033333335), (0.6, 0.05), (0.59166664, 0.05), (0.59166664, 0.033333335), (0.59166664, 0.033333335), (0.59166664, 0.05), (0.5833333, 0.05), (0.5833333, 0.033333335), (0.5833333, 0.033333335), (0.5833333, 0.05), (0.575, 0.05), (0.575, 0.033333335), (0.575, 0.033333335), (0.575, 0.05), (0.56666666, 0.05), (0.56666666, 0.033333335), (0.56666666, 0.033333335), (0.56666666, 0.05), (0.55833334, 0.05), (0.55833334, 0.033333335), (0.55833334, 0.033333335), (0.55833334, 0.05), (0.55, 0.05), (0.55, 0.033333335), (0.55, 0.033333335), (0.55, 0.05), (0.5416667, 0.05), (0.5416667, 0.033333335), (0.5416667, 0.033333335), (0.5416667, 0.05), (0.53333336, 0.05), (0.53333336, 0.033333335), (0.53333336, 0.033333335), (0.53333336, 0.05), (0.525, 0.05), (0.525, 0.033333335), (0.525, 0.033333335), (0.525, 0.05), (0.51666665, 0.05), (0.51666665, 0.033333335), (0.51666665, 0.033333335), (0.51666665, 0.05), (0.5083333, 0.05), (0.5083333, 0.033333335), (0.5083333, 0.033333335), (0.5083333, 0.05), (0.5, 0.05), (0.5, 0.033333335), (0.5, 0.033333335), (0.5, 0.05), (0.49166667, 0.05), (0.49166667, 0.033333335), (0.49166667, 0.033333335), (0.49166667, 0.05), (0.48333332, 0.05), (0.48333332, 0.033333335), (0.48333332, 0.033333335), (0.48333332, 0.05), (0.475, 0.05), (0.475, 0.033333335), (0.475, 0.033333335), (0.475, 0.05), (0.46666667, 0.05), (0.46666667, 0.033333335), (0.46666667, 0.033333335), (0.46666667, 0.05), (0.45833334, 0.05), (0.45833334, 0.033333335), (0.45833334, 0.033333335), (0.45833334, 0.05), (0.45, 0.05), (0.45, 0.033333335), (0.45, 0.033333335), (0.45, 0.05), (0.44166666, 0.05), (0.44166666, 0.033333335), (0.44166666, 0.033333335), (0.44166666, 0.05), (0.43333334, 0.05), (0.43333334, 0.033333335), (0.43333334, 0.033333335), (0.43333334, 0.05), (0.425, 0.05), (0.425, 0.033333335), (0.425, 0.033333335), (0.425, 0.05), (0.41666666, 0.05), (0.41666666, 0.033333335), (0.41666666, 0.033333335), (0.41666666, 0.05), (0.40833333, 0.05), (0.40833333, 0.033333335), (0.40833333, 0.033333335), (0.40833333, 0.05), (0.4, 0.05), (0.4, 0.033333335), (0.4, 0.033333335), (0.4, 0.05), (0.39166668, 0.05), (0.39166668, 0.033333335), (0.39166668, 0.033333335), (0.39166668, 0.05), (0.38333333, 0.05), (0.38333333, 0.033333335), (0.38333333, 0.033333335), (0.38333333, 0.05), (0.375, 0.05), (0.375, 0.033333335), (0.375, 0.033333335), (0.375, 0.05), (0.36666667, 0.05), (0.36666667, 0.033333335), (0.36666667, 0.033333335), (0.36666667, 0.05), (0.35833332, 0.05), (0.35833332, 0.033333335), (0.35833332, 0.033333335), (0.35833332, 0.05), (0.35, 0.05), (0.35, 0.033333335), (0.35, 0.033333335), (0.35, 0.05), (0.34166667, 0.05), (0.34166667, 0.033333335), (0.34166667, 0.033333335), (0.34166667, 0.05), (0.33333334, 0.05), (0.33333334, 0.033333335), (0.33333334, 0.033333335), (0.33333334, 0.05), (0.325, 0.05), (0.325, 0.033333335), (0.325, 0.033333335), (0.325, 0.05), (0.31666666, 0.05), (0.31666666, 0.033333335), (0.31666666, 0.033333335), (0.31666666, 0.05), (0.30833334, 0.05), (0.30833334, 0.033333335), (0.30833334, 0.033333335), (0.30833334, 0.05), (0.3, 0.05), (0.3, 0.033333335), (0.3, 0.033333335), (0.3, 0.05), (0.29166666, 0.05), (0.29166666, 0.033333335), (0.29166666, 0.033333335), (0.29166666, 0.05), (0.28333333, 0.05), (0.28333333, 0.033333335), (0.28333333, 0.033333335), (0.28333333, 0.05), (0.275, 0.05), (0.275, 0.033333335), (0.275, 0.033333335), (0.275, 0.05), (0.26666668, 0.05), (0.26666668, 0.033333335), (0.26666668, 0.033333335), (0.26666668, 0.05), (0.25833333, 0.05), (0.25833333, 0.033333335), (0.25833333, 0.033333335), (0.25833333, 0.05), (0.25, 0.05), (0.25, 0.033333335), (0.25, 0.033333335), (0.25, 0.05), (0.24166666, 0.05), (0.24166666, 0.033333335), (0.24166666, 0.033333335), (0.24166666, 0.05), (0.23333333, 0.05), (0.23333333, 0.033333335), (0.23333333, 0.033333335), (0.23333333, 0.05), (0.225, 0.05), (0.225, 0.033333335), (0.225, 0.033333335), (0.225, 0.05), (0.21666667, 0.05), (0.21666667, 0.033333335), (0.21666667, 0.033333335), (0.21666667, 0.05), (0.20833333, 0.05), (0.20833333, 0.033333335), (0.20833333, 0.033333335), (0.20833333, 0.05), (0.2, 0.05), (0.2, 0.033333335), (0.2, 0.033333335), (0.2, 0.05), (0.19166666, 0.05), (0.19166666, 0.033333335), (0.19166666, 0.033333335), (0.19166666, 0.05), (0.18333334, 0.05), (0.18333334, 0.033333335), (0.18333334, 0.033333335), (0.18333334, 0.05), (0.175, 0.05), (0.175, 0.033333335), (0.175, 0.033333335), (0.175, 0.05), (0.16666667, 0.05), (0.16666667, 0.033333335), (0.16666667, 0.033333335), (0.16666667, 0.05), (0.15833333, 0.05), (0.15833333, 0.033333335), (0.15833333, 0.033333335), (0.15833333, 0.05), (0.15, 0.05), (0.15, 0.033333335), (0.15, 0.033333335), (0.15, 0.05), (0.14166667, 0.05), (0.14166667, 0.033333335), (0.14166667, 0.033333335), (0.14166667, 0.05), (0.13333334, 0.05), (0.13333334, 0.033333335), (0.13333334, 0.033333335), (0.13333334, 0.05), (0.125, 0.05), (0.125, 0.033333335), (0.125, 0.033333335), (0.125, 0.05), (0.11666667, 0.05), (0.11666667, 0.033333335), (0.11666667, 0.033333335), (0.11666667, 0.05), (0.108333334, 0.05), (0.108333334, 0.033333335), (0.108333334, 0.033333335), (0.108333334, 0.05), (0.1, 0.05), (0.1, 0.033333335), (0.1, 0.033333335), (0.1, 0.05), (0.09166667, 0.05), (0.09166667, 0.033333335), (0.09166667, 0.033333335), (0.09166667, 0.05), (0.083333336, 0.05), (0.083333336, 0.033333335), (0.083333336, 0.033333335), (0.083333336, 0.05), (0.075, 0.05), (0.075, 0.033333335), (0.075, 0.033333335), (0.075, 0.05), (0.06666667, 0.05), (0.06666667, 0.033333335), (0.06666667, 0.033333335), (0.06666667, 0.05), (0.058333334, 0.05), (0.058333334, 0.033333335), (0.058333334, 0.033333335), (0.058333334, 0.05), (0.05, 0.05), (0.05, 0.033333335), (0.05, 0.033333335), (0.05, 0.05), (0.041666668, 0.05), (0.041666668, 0.033333335), (0.041666668, 0.033333335), (0.041666668, 0.05), (0.033333335, 0.05), (0.033333335, 0.033333335), (0.033333335, 0.033333335), (0.033333335, 0.05), (0.025, 0.05), (0.025, 0.033333335), (0.025, 0.033333335), (0.025, 0.05), (0.016666668, 0.05), (0.016666668, 0.033333335), (0.016666668, 0.033333335), (0.016666668, 0.05), (0.008333334, 0.05), (0.008333334, 0.033333335), (0.008333334, 0.033333335), (0.008333334, 0.05), (0, 0.05), (0, 0.033333335), (1, 0.05), (1, 0.06666667), (0.9916667, 0.06666667), (0.9916667, 0.05), (0.9916667, 0.05), (0.9916667, 0.06666667), (0.98333335, 0.06666667), (0.98333335, 0.05), (0.98333335, 0.05), (0.98333335, 0.06666667), (0.975, 0.06666667), (0.975, 0.05), (0.975, 0.05), (0.975, 0.06666667), (0.96666664, 0.06666667), (0.96666664, 0.05), (0.96666664, 0.05), (0.96666664, 0.06666667), (0.9583333, 0.06666667), (0.9583333, 0.05), (0.9583333, 0.05), (0.9583333, 0.06666667), (0.95, 0.06666667), (0.95, 0.05), (0.95, 0.05), (0.95, 0.06666667), (0.94166666, 0.06666667), (0.94166666, 0.05), (0.94166666, 0.05), (0.94166666, 0.06666667), (0.93333334, 0.06666667), (0.93333334, 0.05), (0.93333334, 0.05), (0.93333334, 0.06666667), (0.925, 0.06666667), (0.925, 0.05), (0.925, 0.05), (0.925, 0.06666667), (0.9166667, 0.06666667), (0.9166667, 0.05), (0.9166667, 0.05), (0.9166667, 0.06666667), (0.90833336, 0.06666667), (0.90833336, 0.05), (0.90833336, 0.05), (0.90833336, 0.06666667), (0.9, 0.06666667), (0.9, 0.05), (0.9, 0.05), (0.9, 0.06666667), (0.89166665, 0.06666667), (0.89166665, 0.05), (0.89166665, 0.05), (0.89166665, 0.06666667), (0.8833333, 0.06666667), (0.8833333, 0.05), (0.8833333, 0.05), (0.8833333, 0.06666667), (0.875, 0.06666667), (0.875, 0.05), (0.875, 0.05), (0.875, 0.06666667), (0.8666667, 0.06666667), (0.8666667, 0.05), (0.8666667, 0.05), (0.8666667, 0.06666667), (0.85833335, 0.06666667), (0.85833335, 0.05), (0.85833335, 0.05), (0.85833335, 0.06666667), (0.85, 0.06666667), (0.85, 0.05), (0.85, 0.05), (0.85, 0.06666667), (0.84166664, 0.06666667), (0.84166664, 0.05), (0.84166664, 0.05), (0.84166664, 0.06666667), (0.8333333, 0.06666667), (0.8333333, 0.05), (0.8333333, 0.05), (0.8333333, 0.06666667), (0.825, 0.06666667), (0.825, 0.05), (0.825, 0.05), (0.825, 0.06666667), (0.81666666, 0.06666667), (0.81666666, 0.05), (0.81666666, 0.05), (0.81666666, 0.06666667), (0.80833334, 0.06666667), (0.80833334, 0.05), (0.80833334, 0.05), (0.80833334, 0.06666667), (0.8, 0.06666667), (0.8, 0.05), (0.8, 0.05), (0.8, 0.06666667), (0.7916667, 0.06666667), (0.7916667, 0.05), (0.7916667, 0.05), (0.7916667, 0.06666667), (0.78333336, 0.06666667), (0.78333336, 0.05), (0.78333336, 0.05), (0.78333336, 0.06666667), (0.775, 0.06666667), (0.775, 0.05), (0.775, 0.05), (0.775, 0.06666667), (0.76666665, 0.06666667), (0.76666665, 0.05), (0.76666665, 0.05), (0.76666665, 0.06666667), (0.7583333, 0.06666667), (0.7583333, 0.05), (0.7583333, 0.05), (0.7583333, 0.06666667), (0.75, 0.06666667), (0.75, 0.05), (0.75, 0.05), (0.75, 0.06666667), (0.7416667, 0.06666667), (0.7416667, 0.05), (0.7416667, 0.05), (0.7416667, 0.06666667), (0.73333335, 0.06666667), (0.73333335, 0.05), (0.73333335, 0.05), (0.73333335, 0.06666667), (0.725, 0.06666667), (0.725, 0.05), (0.725, 0.05), (0.725, 0.06666667), (0.71666664, 0.06666667), (0.71666664, 0.05), (0.71666664, 0.05), (0.71666664, 0.06666667), (0.7083333, 0.06666667), (0.7083333, 0.05), (0.7083333, 0.05), (0.7083333, 0.06666667), (0.7, 0.06666667), (0.7, 0.05), (0.7, 0.05), (0.7, 0.06666667), (0.69166666, 0.06666667), (0.69166666, 0.05), (0.69166666, 0.05), (0.69166666, 0.06666667), (0.68333334, 0.06666667), (0.68333334, 0.05), (0.68333334, 0.05), (0.68333334, 0.06666667), (0.675, 0.06666667), (0.675, 0.05), (0.675, 0.05), (0.675, 0.06666667), (0.6666667, 0.06666667), (0.6666667, 0.05), (0.6666667, 0.05), (0.6666667, 0.06666667), (0.65833336, 0.06666667), (0.65833336, 0.05), (0.65833336, 0.05), (0.65833336, 0.06666667), (0.65, 0.06666667), (0.65, 0.05), (0.65, 0.05), (0.65, 0.06666667), (0.64166665, 0.06666667), (0.64166665, 0.05), (0.64166665, 0.05), (0.64166665, 0.06666667), (0.6333333, 0.06666667), (0.6333333, 0.05), (0.6333333, 0.05), (0.6333333, 0.06666667), (0.625, 0.06666667), (0.625, 0.05), (0.625, 0.05), (0.625, 0.06666667), (0.6166667, 0.06666667), (0.6166667, 0.05), (0.6166667, 0.05), (0.6166667, 0.06666667), (0.60833335, 0.06666667), (0.60833335, 0.05), (0.60833335, 0.05), (0.60833335, 0.06666667), (0.6, 0.06666667), (0.6, 0.05), (0.6, 0.05), (0.6, 0.06666667), (0.59166664, 0.06666667), (0.59166664, 0.05), (0.59166664, 0.05), (0.59166664, 0.06666667), (0.5833333, 0.06666667), (0.5833333, 0.05), (0.5833333, 0.05), (0.5833333, 0.06666667), (0.575, 0.06666667), (0.575, 0.05), (0.575, 0.05), (0.575, 0.06666667), (0.56666666, 0.06666667), (0.56666666, 0.05), (0.56666666, 0.05), (0.56666666, 0.06666667), (0.55833334, 0.06666667), (0.55833334, 0.05), (0.55833334, 0.05), (0.55833334, 0.06666667), (0.55, 0.06666667), (0.55, 0.05), (0.55, 0.05), (0.55, 0.06666667), (0.5416667, 0.06666667), (0.5416667, 0.05), (0.5416667, 0.05), (0.5416667, 0.06666667), (0.53333336, 0.06666667), (0.53333336, 0.05), (0.53333336, 0.05), (0.53333336, 0.06666667), (0.525, 0.06666667), (0.525, 0.05), (0.525, 0.05), (0.525, 0.06666667), (0.51666665, 0.06666667), (0.51666665, 0.05), (0.51666665, 0.05), (0.51666665, 0.06666667), (0.5083333, 0.06666667), (0.5083333, 0.05), (0.5083333, 0.05), (0.5083333, 0.06666667), (0.5, 0.06666667), (0.5, 0.05), (0.5, 0.05), (0.5, 0.06666667), (0.49166667, 0.06666667), (0.49166667, 0.05), (0.49166667, 0.05), (0.49166667, 0.06666667), (0.48333332, 0.06666667), (0.48333332, 0.05), (0.48333332, 0.05), (0.48333332, 0.06666667), (0.475, 0.06666667), (0.475, 0.05), (0.475, 0.05), (0.475, 0.06666667), (0.46666667, 0.06666667), (0.46666667, 0.05), (0.46666667, 0.05), (0.46666667, 0.06666667), (0.45833334, 0.06666667), (0.45833334, 0.05), (0.45833334, 0.05), (0.45833334, 0.06666667), (0.45, 0.06666667), (0.45, 0.05), (0.45, 0.05), (0.45, 0.06666667), (0.44166666, 0.06666667), (0.44166666, 0.05), (0.44166666, 0.05), (0.44166666, 0.06666667), (0.43333334, 0.06666667), (0.43333334, 0.05), (0.43333334, 0.05), (0.43333334, 0.06666667), (0.425, 0.06666667), (0.425, 0.05), (0.425, 0.05), (0.425, 0.06666667), (0.41666666, 0.06666667), (0.41666666, 0.05), (0.41666666, 0.05), (0.41666666, 0.06666667), (0.40833333, 0.06666667), (0.40833333, 0.05), (0.40833333, 0.05), (0.40833333, 0.06666667), (0.4, 0.06666667), (0.4, 0.05), (0.4, 0.05), (0.4, 0.06666667), (0.39166668, 0.06666667), (0.39166668, 0.05), (0.39166668, 0.05), (0.39166668, 0.06666667), (0.38333333, 0.06666667), (0.38333333, 0.05), (0.38333333, 0.05), (0.38333333, 0.06666667), (0.375, 0.06666667), (0.375, 0.05), (0.375, 0.05), (0.375, 0.06666667), (0.36666667, 0.06666667), (0.36666667, 0.05), (0.36666667, 0.05), (0.36666667, 0.06666667), (0.35833332, 0.06666667), (0.35833332, 0.05), (0.35833332, 0.05), (0.35833332, 0.06666667), (0.35, 0.06666667), (0.35, 0.05), (0.35, 0.05), (0.35, 0.06666667), (0.34166667, 0.06666667), (0.34166667, 0.05), (0.34166667, 0.05), (0.34166667, 0.06666667), (0.33333334, 0.06666667), (0.33333334, 0.05), (0.33333334, 0.05), (0.33333334, 0.06666667), (0.325, 0.06666667), (0.325, 0.05), (0.325, 0.05), (0.325, 0.06666667), (0.31666666, 0.06666667), (0.31666666, 0.05), (0.31666666, 0.05), (0.31666666, 0.06666667), (0.30833334, 0.06666667), (0.30833334, 0.05), (0.30833334, 0.05), (0.30833334, 0.06666667), (0.3, 0.06666667), (0.3, 0.05), (0.3, 0.05), (0.3, 0.06666667), (0.29166666, 0.06666667), (0.29166666, 0.05), (0.29166666, 0.05), (0.29166666, 0.06666667), (0.28333333, 0.06666667), (0.28333333, 0.05), (0.28333333, 0.05), (0.28333333, 0.06666667), (0.275, 0.06666667), (0.275, 0.05), (0.275, 0.05), (0.275, 0.06666667), (0.26666668, 0.06666667), (0.26666668, 0.05), (0.26666668, 0.05), (0.26666668, 0.06666667), (0.25833333, 0.06666667), (0.25833333, 0.05), (0.25833333, 0.05), (0.25833333, 0.06666667), (0.25, 0.06666667), (0.25, 0.05), (0.25, 0.05), (0.25, 0.06666667), (0.24166666, 0.06666667), (0.24166666, 0.05), (0.24166666, 0.05), (0.24166666, 0.06666667), (0.23333333, 0.06666667), (0.23333333, 0.05), (0.23333333, 0.05), (0.23333333, 0.06666667), (0.225, 0.06666667), (0.225, 0.05), (0.225, 0.05), (0.225, 0.06666667), (0.21666667, 0.06666667), (0.21666667, 0.05), (0.21666667, 0.05), (0.21666667, 0.06666667), (0.20833333, 0.06666667), (0.20833333, 0.05), (0.20833333, 0.05), (0.20833333, 0.06666667), (0.2, 0.06666667), (0.2, 0.05), (0.2, 0.05), (0.2, 0.06666667), (0.19166666, 0.06666667), (0.19166666, 0.05), (0.19166666, 0.05), (0.19166666, 0.06666667), (0.18333334, 0.06666667), (0.18333334, 0.05), (0.18333334, 0.05), (0.18333334, 0.06666667), (0.175, 0.06666667), (0.175, 0.05), (0.175, 0.05), (0.175, 0.06666667), (0.16666667, 0.06666667), (0.16666667, 0.05), (0.16666667, 0.05), (0.16666667, 0.06666667), (0.15833333, 0.06666667), (0.15833333, 0.05), (0.15833333, 0.05), (0.15833333, 0.06666667), (0.15, 0.06666667), (0.15, 0.05), (0.15, 0.05), (0.15, 0.06666667), (0.14166667, 0.06666667), (0.14166667, 0.05), (0.14166667, 0.05), (0.14166667, 0.06666667), (0.13333334, 0.06666667), (0.13333334, 0.05), (0.13333334, 0.05), (0.13333334, 0.06666667), (0.125, 0.06666667), (0.125, 0.05), (0.125, 0.05), (0.125, 0.06666667), (0.11666667, 0.06666667), (0.11666667, 0.05), (0.11666667, 0.05), (0.11666667, 0.06666667), (0.108333334, 0.06666667), (0.108333334, 0.05), (0.108333334, 0.05), (0.108333334, 0.06666667), (0.1, 0.06666667), (0.1, 0.05), (0.1, 0.05), (0.1, 0.06666667), (0.09166667, 0.06666667), (0.09166667, 0.05), (0.09166667, 0.05), (0.09166667, 0.06666667), (0.083333336, 0.06666667), (0.083333336, 0.05), (0.083333336, 0.05), (0.083333336, 0.06666667), (0.075, 0.06666667), (0.075, 0.05), (0.075, 0.05), (0.075, 0.06666667), (0.06666667, 0.06666667), (0.06666667, 0.05), (0.06666667, 0.05), (0.06666667, 0.06666667), (0.058333334, 0.06666667), (0.058333334, 0.05), (0.058333334, 0.05), (0.058333334, 0.06666667), (0.05, 0.06666667), (0.05, 0.05), (0.05, 0.05), (0.05, 0.06666667), (0.041666668, 0.06666667), (0.041666668, 0.05), (0.041666668, 0.05), (0.041666668, 0.06666667), (0.033333335, 0.06666667), (0.033333335, 0.05), (0.033333335, 0.05), (0.033333335, 0.06666667), (0.025, 0.06666667), (0.025, 0.05), (0.025, 0.05), (0.025, 0.06666667), (0.016666668, 0.06666667), (0.016666668, 0.05), (0.016666668, 0.05), (0.016666668, 0.06666667), (0.008333334, 0.06666667), (0.008333334, 0.05), (0.008333334, 0.05), (0.008333334, 0.06666667), (0, 0.06666667), (0, 0.05), (1, 0.06666667), (1, 0.083333336), (0.9916667, 0.083333336), (0.9916667, 0.06666667), (0.9916667, 0.06666667), (0.9916667, 0.083333336), (0.98333335, 0.083333336), (0.98333335, 0.06666667), (0.98333335, 0.06666667), (0.98333335, 0.083333336), (0.975, 0.083333336), (0.975, 0.06666667), (0.975, 0.06666667), (0.975, 0.083333336), (0.96666664, 0.083333336), (0.96666664, 0.06666667), (0.96666664, 0.06666667), (0.96666664, 0.083333336), (0.9583333, 0.083333336), (0.9583333, 0.06666667), (0.9583333, 0.06666667), (0.9583333, 0.083333336), (0.95, 0.083333336), (0.95, 0.06666667), (0.95, 0.06666667), (0.95, 0.083333336), (0.94166666, 0.083333336), (0.94166666, 0.06666667), (0.94166666, 0.06666667), (0.94166666, 0.083333336), (0.93333334, 0.083333336), (0.93333334, 0.06666667), (0.93333334, 0.06666667), (0.93333334, 0.083333336), (0.925, 0.083333336), (0.925, 0.06666667), (0.925, 0.06666667), (0.925, 0.083333336), (0.9166667, 0.083333336), (0.9166667, 0.06666667), (0.9166667, 0.06666667), (0.9166667, 0.083333336), (0.90833336, 0.083333336), (0.90833336, 0.06666667), (0.90833336, 0.06666667), (0.90833336, 0.083333336), (0.9, 0.083333336), (0.9, 0.06666667), (0.9, 0.06666667), (0.9, 0.083333336), (0.89166665, 0.083333336), (0.89166665, 0.06666667), (0.89166665, 0.06666667), (0.89166665, 0.083333336), (0.8833333, 0.083333336), (0.8833333, 0.06666667), (0.8833333, 0.06666667), (0.8833333, 0.083333336), (0.875, 0.083333336), (0.875, 0.06666667), (0.875, 0.06666667), (0.875, 0.083333336), (0.8666667, 0.083333336), (0.8666667, 0.06666667), (0.8666667, 0.06666667), (0.8666667, 0.083333336), (0.85833335, 0.083333336), (0.85833335, 0.06666667), (0.85833335, 0.06666667), (0.85833335, 0.083333336), (0.85, 0.083333336), (0.85, 0.06666667), (0.85, 0.06666667), (0.85, 0.083333336), (0.84166664, 0.083333336), (0.84166664, 0.06666667), (0.84166664, 0.06666667), (0.84166664, 0.083333336), (0.8333333, 0.083333336), (0.8333333, 0.06666667), (0.8333333, 0.06666667), (0.8333333, 0.083333336), (0.825, 0.083333336), (0.825, 0.06666667), (0.825, 0.06666667), (0.825, 0.083333336), (0.81666666, 0.083333336), (0.81666666, 0.06666667), (0.81666666, 0.06666667), (0.81666666, 0.083333336), (0.80833334, 0.083333336), (0.80833334, 0.06666667), (0.80833334, 0.06666667), (0.80833334, 0.083333336), (0.8, 0.083333336), (0.8, 0.06666667), (0.8, 0.06666667), (0.8, 0.083333336), (0.7916667, 0.083333336), (0.7916667, 0.06666667), (0.7916667, 0.06666667), (0.7916667, 0.083333336), (0.78333336, 0.083333336), (0.78333336, 0.06666667), (0.78333336, 0.06666667), (0.78333336, 0.083333336), (0.775, 0.083333336), (0.775, 0.06666667), (0.775, 0.06666667), (0.775, 0.083333336), (0.76666665, 0.083333336), (0.76666665, 0.06666667), (0.76666665, 0.06666667), (0.76666665, 0.083333336), (0.7583333, 0.083333336), (0.7583333, 0.06666667), (0.7583333, 0.06666667), (0.7583333, 0.083333336), (0.75, 0.083333336), (0.75, 0.06666667), (0.75, 0.06666667), (0.75, 0.083333336), (0.7416667, 0.083333336), (0.7416667, 0.06666667), (0.7416667, 0.06666667), (0.7416667, 0.083333336), (0.73333335, 0.083333336), (0.73333335, 0.06666667), (0.73333335, 0.06666667), (0.73333335, 0.083333336), (0.725, 0.083333336), (0.725, 0.06666667), (0.725, 0.06666667), (0.725, 0.083333336), (0.71666664, 0.083333336), (0.71666664, 0.06666667), (0.71666664, 0.06666667), (0.71666664, 0.083333336), (0.7083333, 0.083333336), (0.7083333, 0.06666667), (0.7083333, 0.06666667), (0.7083333, 0.083333336), (0.7, 0.083333336), (0.7, 0.06666667), (0.7, 0.06666667), (0.7, 0.083333336), (0.69166666, 0.083333336), (0.69166666, 0.06666667), (0.69166666, 0.06666667), (0.69166666, 0.083333336), (0.68333334, 0.083333336), (0.68333334, 0.06666667), (0.68333334, 0.06666667), (0.68333334, 0.083333336), (0.675, 0.083333336), (0.675, 0.06666667), (0.675, 0.06666667), (0.675, 0.083333336), (0.6666667, 0.083333336), (0.6666667, 0.06666667), (0.6666667, 0.06666667), (0.6666667, 0.083333336), (0.65833336, 0.083333336), (0.65833336, 0.06666667), (0.65833336, 0.06666667), (0.65833336, 0.083333336), (0.65, 0.083333336), (0.65, 0.06666667), (0.65, 0.06666667), (0.65, 0.083333336), (0.64166665, 0.083333336), (0.64166665, 0.06666667), (0.64166665, 0.06666667), (0.64166665, 0.083333336), (0.6333333, 0.083333336), (0.6333333, 0.06666667), (0.6333333, 0.06666667), (0.6333333, 0.083333336), (0.625, 0.083333336), (0.625, 0.06666667), (0.625, 0.06666667), (0.625, 0.083333336), (0.6166667, 0.083333336), (0.6166667, 0.06666667), (0.6166667, 0.06666667), (0.6166667, 0.083333336), (0.60833335, 0.083333336), (0.60833335, 0.06666667), (0.60833335, 0.06666667), (0.60833335, 0.083333336), (0.6, 0.083333336), (0.6, 0.06666667), (0.6, 0.06666667), (0.6, 0.083333336), (0.59166664, 0.083333336), (0.59166664, 0.06666667), (0.59166664, 0.06666667), (0.59166664, 0.083333336), (0.5833333, 0.083333336), (0.5833333, 0.06666667), (0.5833333, 0.06666667), (0.5833333, 0.083333336), (0.575, 0.083333336), (0.575, 0.06666667), (0.575, 0.06666667), (0.575, 0.083333336), (0.56666666, 0.083333336), (0.56666666, 0.06666667), (0.56666666, 0.06666667), (0.56666666, 0.083333336), (0.55833334, 0.083333336), (0.55833334, 0.06666667), (0.55833334, 0.06666667), (0.55833334, 0.083333336), (0.55, 0.083333336), (0.55, 0.06666667), (0.55, 0.06666667), (0.55, 0.083333336), (0.5416667, 0.083333336), (0.5416667, 0.06666667), (0.5416667, 0.06666667), (0.5416667, 0.083333336), (0.53333336, 0.083333336), (0.53333336, 0.06666667), (0.53333336, 0.06666667), (0.53333336, 0.083333336), (0.525, 0.083333336), (0.525, 0.06666667), (0.525, 0.06666667), (0.525, 0.083333336), (0.51666665, 0.083333336), (0.51666665, 0.06666667), (0.51666665, 0.06666667), (0.51666665, 0.083333336), (0.5083333, 0.083333336), (0.5083333, 0.06666667), (0.5083333, 0.06666667), (0.5083333, 0.083333336), (0.5, 0.083333336), (0.5, 0.06666667), (0.5, 0.06666667), (0.5, 0.083333336), (0.49166667, 0.083333336), (0.49166667, 0.06666667), (0.49166667, 0.06666667), (0.49166667, 0.083333336), (0.48333332, 0.083333336), (0.48333332, 0.06666667), (0.48333332, 0.06666667), (0.48333332, 0.083333336), (0.475, 0.083333336), (0.475, 0.06666667), (0.475, 0.06666667), (0.475, 0.083333336), (0.46666667, 0.083333336), (0.46666667, 0.06666667), (0.46666667, 0.06666667), (0.46666667, 0.083333336), (0.45833334, 0.083333336), (0.45833334, 0.06666667), (0.45833334, 0.06666667), (0.45833334, 0.083333336), (0.45, 0.083333336), (0.45, 0.06666667), (0.45, 0.06666667), (0.45, 0.083333336), (0.44166666, 0.083333336), (0.44166666, 0.06666667), (0.44166666, 0.06666667), (0.44166666, 0.083333336), (0.43333334, 0.083333336), (0.43333334, 0.06666667), (0.43333334, 0.06666667), (0.43333334, 0.083333336), (0.425, 0.083333336), (0.425, 0.06666667), (0.425, 0.06666667), (0.425, 0.083333336), (0.41666666, 0.083333336), (0.41666666, 0.06666667), (0.41666666, 0.06666667), (0.41666666, 0.083333336), (0.40833333, 0.083333336), (0.40833333, 0.06666667), (0.40833333, 0.06666667), (0.40833333, 0.083333336), (0.4, 0.083333336), (0.4, 0.06666667), (0.4, 0.06666667), (0.4, 0.083333336), (0.39166668, 0.083333336), (0.39166668, 0.06666667), (0.39166668, 0.06666667), (0.39166668, 0.083333336), (0.38333333, 0.083333336), (0.38333333, 0.06666667), (0.38333333, 0.06666667), (0.38333333, 0.083333336), (0.375, 0.083333336), (0.375, 0.06666667), (0.375, 0.06666667), (0.375, 0.083333336), (0.36666667, 0.083333336), (0.36666667, 0.06666667), (0.36666667, 0.06666667), (0.36666667, 0.083333336), (0.35833332, 0.083333336), (0.35833332, 0.06666667), (0.35833332, 0.06666667), (0.35833332, 0.083333336), (0.35, 0.083333336), (0.35, 0.06666667), (0.35, 0.06666667), (0.35, 0.083333336), (0.34166667, 0.083333336), (0.34166667, 0.06666667), (0.34166667, 0.06666667), (0.34166667, 0.083333336), (0.33333334, 0.083333336), (0.33333334, 0.06666667), (0.33333334, 0.06666667), (0.33333334, 0.083333336), (0.325, 0.083333336), (0.325, 0.06666667), (0.325, 0.06666667), (0.325, 0.083333336), (0.31666666, 0.083333336), (0.31666666, 0.06666667), (0.31666666, 0.06666667), (0.31666666, 0.083333336), (0.30833334, 0.083333336), (0.30833334, 0.06666667), (0.30833334, 0.06666667), (0.30833334, 0.083333336), (0.3, 0.083333336), (0.3, 0.06666667), (0.3, 0.06666667), (0.3, 0.083333336), (0.29166666, 0.083333336), (0.29166666, 0.06666667), (0.29166666, 0.06666667), (0.29166666, 0.083333336), (0.28333333, 0.083333336), (0.28333333, 0.06666667), (0.28333333, 0.06666667), (0.28333333, 0.083333336), (0.275, 0.083333336), (0.275, 0.06666667), (0.275, 0.06666667), (0.275, 0.083333336), (0.26666668, 0.083333336), (0.26666668, 0.06666667), (0.26666668, 0.06666667), (0.26666668, 0.083333336), (0.25833333, 0.083333336), (0.25833333, 0.06666667), (0.25833333, 0.06666667), (0.25833333, 0.083333336), (0.25, 0.083333336), (0.25, 0.06666667), (0.25, 0.06666667), (0.25, 0.083333336), (0.24166666, 0.083333336), (0.24166666, 0.06666667), (0.24166666, 0.06666667), (0.24166666, 0.083333336), (0.23333333, 0.083333336), (0.23333333, 0.06666667), (0.23333333, 0.06666667), (0.23333333, 0.083333336), (0.225, 0.083333336), (0.225, 0.06666667), (0.225, 0.06666667), (0.225, 0.083333336), (0.21666667, 0.083333336), (0.21666667, 0.06666667), (0.21666667, 0.06666667), (0.21666667, 0.083333336), (0.20833333, 0.083333336), (0.20833333, 0.06666667), (0.20833333, 0.06666667), (0.20833333, 0.083333336), (0.2, 0.083333336), (0.2, 0.06666667), (0.2, 0.06666667), (0.2, 0.083333336), (0.19166666, 0.083333336), (0.19166666, 0.06666667), (0.19166666, 0.06666667), (0.19166666, 0.083333336), (0.18333334, 0.083333336), (0.18333334, 0.06666667), (0.18333334, 0.06666667), (0.18333334, 0.083333336), (0.175, 0.083333336), (0.175, 0.06666667), (0.175, 0.06666667), (0.175, 0.083333336), (0.16666667, 0.083333336), (0.16666667, 0.06666667), (0.16666667, 0.06666667), (0.16666667, 0.083333336), (0.15833333, 0.083333336), (0.15833333, 0.06666667), (0.15833333, 0.06666667), (0.15833333, 0.083333336), (0.15, 0.083333336), (0.15, 0.06666667), (0.15, 0.06666667), (0.15, 0.083333336), (0.14166667, 0.083333336), (0.14166667, 0.06666667), (0.14166667, 0.06666667), (0.14166667, 0.083333336), (0.13333334, 0.083333336), (0.13333334, 0.06666667), (0.13333334, 0.06666667), (0.13333334, 0.083333336), (0.125, 0.083333336), (0.125, 0.06666667), (0.125, 0.06666667), (0.125, 0.083333336), (0.11666667, 0.083333336), (0.11666667, 0.06666667), (0.11666667, 0.06666667), (0.11666667, 0.083333336), (0.108333334, 0.083333336), (0.108333334, 0.06666667), (0.108333334, 0.06666667), (0.108333334, 0.083333336), (0.1, 0.083333336), (0.1, 0.06666667), (0.1, 0.06666667), (0.1, 0.083333336), (0.09166667, 0.083333336), (0.09166667, 0.06666667), (0.09166667, 0.06666667), (0.09166667, 0.083333336), (0.083333336, 0.083333336), (0.083333336, 0.06666667), (0.083333336, 0.06666667), (0.083333336, 0.083333336), (0.075, 0.083333336), (0.075, 0.06666667), (0.075, 0.06666667), (0.075, 0.083333336), (0.06666667, 0.083333336), (0.06666667, 0.06666667), (0.06666667, 0.06666667), (0.06666667, 0.083333336), (0.058333334, 0.083333336), (0.058333334, 0.06666667), (0.058333334, 0.06666667), (0.058333334, 0.083333336), (0.05, 0.083333336), (0.05, 0.06666667), (0.05, 0.06666667), (0.05, 0.083333336), (0.041666668, 0.083333336), (0.041666668, 0.06666667), (0.041666668, 0.06666667), (0.041666668, 0.083333336), (0.033333335, 0.083333336), (0.033333335, 0.06666667), (0.033333335, 0.06666667), (0.033333335, 0.083333336), (0.025, 0.083333336), (0.025, 0.06666667), (0.025, 0.06666667), (0.025, 0.083333336), (0.016666668, 0.083333336), (0.016666668, 0.06666667), (0.016666668, 0.06666667), (0.016666668, 0.083333336), (0.008333334, 0.083333336), (0.008333334, 0.06666667), (0.008333334, 0.06666667), (0.008333334, 0.083333336), (0, 0.083333336), (0, 0.06666667), (1, 0.083333336), (1, 0.1), (0.9916667, 0.1), (0.9916667, 0.083333336), (0.9916667, 0.083333336), (0.9916667, 0.1), (0.98333335, 0.1), (0.98333335, 0.083333336), (0.98333335, 0.083333336), (0.98333335, 0.1), (0.975, 0.1), (0.975, 0.083333336), (0.975, 0.083333336), (0.975, 0.1), (0.96666664, 0.1), (0.96666664, 0.083333336), (0.96666664, 0.083333336), (0.96666664, 0.1), (0.9583333, 0.1), (0.9583333, 0.083333336), (0.9583333, 0.083333336), (0.9583333, 0.1), (0.95, 0.1), (0.95, 0.083333336), (0.95, 0.083333336), (0.95, 0.1), (0.94166666, 0.1), (0.94166666, 0.083333336), (0.94166666, 0.083333336), (0.94166666, 0.1), (0.93333334, 0.1), (0.93333334, 0.083333336), (0.93333334, 0.083333336), (0.93333334, 0.1), (0.925, 0.1), (0.925, 0.083333336), (0.925, 0.083333336), (0.925, 0.1), (0.9166667, 0.1), (0.9166667, 0.083333336), (0.9166667, 0.083333336), (0.9166667, 0.1), (0.90833336, 0.1), (0.90833336, 0.083333336), (0.90833336, 0.083333336), (0.90833336, 0.1), (0.9, 0.1), (0.9, 0.083333336), (0.9, 0.083333336), (0.9, 0.1), (0.89166665, 0.1), (0.89166665, 0.083333336), (0.89166665, 0.083333336), (0.89166665, 0.1), (0.8833333, 0.1), (0.8833333, 0.083333336), (0.8833333, 0.083333336), (0.8833333, 0.1), (0.875, 0.1), (0.875, 0.083333336), (0.875, 0.083333336), (0.875, 0.1), (0.8666667, 0.1), (0.8666667, 0.083333336), (0.8666667, 0.083333336), (0.8666667, 0.1), (0.85833335, 0.1), (0.85833335, 0.083333336), (0.85833335, 0.083333336), (0.85833335, 0.1), (0.85, 0.1), (0.85, 0.083333336), (0.85, 0.083333336), (0.85, 0.1), (0.84166664, 0.1), (0.84166664, 0.083333336), (0.84166664, 0.083333336), (0.84166664, 0.1), (0.8333333, 0.1), (0.8333333, 0.083333336), (0.8333333, 0.083333336), (0.8333333, 0.1), (0.825, 0.1), (0.825, 0.083333336), (0.825, 0.083333336), (0.825, 0.1), (0.81666666, 0.1), (0.81666666, 0.083333336), (0.81666666, 0.083333336), (0.81666666, 0.1), (0.80833334, 0.1), (0.80833334, 0.083333336), (0.80833334, 0.083333336), (0.80833334, 0.1), (0.8, 0.1), (0.8, 0.083333336), (0.8, 0.083333336), (0.8, 0.1), (0.7916667, 0.1), (0.7916667, 0.083333336), (0.7916667, 0.083333336), (0.7916667, 0.1), (0.78333336, 0.1), (0.78333336, 0.083333336), (0.78333336, 0.083333336), (0.78333336, 0.1), (0.775, 0.1), (0.775, 0.083333336), (0.775, 0.083333336), (0.775, 0.1), (0.76666665, 0.1), (0.76666665, 0.083333336), (0.76666665, 0.083333336), (0.76666665, 0.1), (0.7583333, 0.1), (0.7583333, 0.083333336), (0.7583333, 0.083333336), (0.7583333, 0.1), (0.75, 0.1), (0.75, 0.083333336), (0.75, 0.083333336), (0.75, 0.1), (0.7416667, 0.1), (0.7416667, 0.083333336), (0.7416667, 0.083333336), (0.7416667, 0.1), (0.73333335, 0.1), (0.73333335, 0.083333336), (0.73333335, 0.083333336), (0.73333335, 0.1), (0.725, 0.1), (0.725, 0.083333336), (0.725, 0.083333336), (0.725, 0.1), (0.71666664, 0.1), (0.71666664, 0.083333336), (0.71666664, 0.083333336), (0.71666664, 0.1), (0.7083333, 0.1), (0.7083333, 0.083333336), (0.7083333, 0.083333336), (0.7083333, 0.1), (0.7, 0.1), (0.7, 0.083333336), (0.7, 0.083333336), (0.7, 0.1), (0.69166666, 0.1), (0.69166666, 0.083333336), (0.69166666, 0.083333336), (0.69166666, 0.1), (0.68333334, 0.1), (0.68333334, 0.083333336), (0.68333334, 0.083333336), (0.68333334, 0.1), (0.675, 0.1), (0.675, 0.083333336), (0.675, 0.083333336), (0.675, 0.1), (0.6666667, 0.1), (0.6666667, 0.083333336), (0.6666667, 0.083333336), (0.6666667, 0.1), (0.65833336, 0.1), (0.65833336, 0.083333336), (0.65833336, 0.083333336), (0.65833336, 0.1), (0.65, 0.1), (0.65, 0.083333336), (0.65, 0.083333336), (0.65, 0.1), (0.64166665, 0.1), (0.64166665, 0.083333336), (0.64166665, 0.083333336), (0.64166665, 0.1), (0.6333333, 0.1), (0.6333333, 0.083333336), (0.6333333, 0.083333336), (0.6333333, 0.1), (0.625, 0.1), (0.625, 0.083333336), (0.625, 0.083333336), (0.625, 0.1), (0.6166667, 0.1), (0.6166667, 0.083333336), (0.6166667, 0.083333336), (0.6166667, 0.1), (0.60833335, 0.1), (0.60833335, 0.083333336), (0.60833335, 0.083333336), (0.60833335, 0.1), (0.6, 0.1), (0.6, 0.083333336), (0.6, 0.083333336), (0.6, 0.1), (0.59166664, 0.1), (0.59166664, 0.083333336), (0.59166664, 0.083333336), (0.59166664, 0.1), (0.5833333, 0.1), (0.5833333, 0.083333336), (0.5833333, 0.083333336), (0.5833333, 0.1), (0.575, 0.1), (0.575, 0.083333336), (0.575, 0.083333336), (0.575, 0.1), (0.56666666, 0.1), (0.56666666, 0.083333336), (0.56666666, 0.083333336), (0.56666666, 0.1), (0.55833334, 0.1), (0.55833334, 0.083333336), (0.55833334, 0.083333336), (0.55833334, 0.1), (0.55, 0.1), (0.55, 0.083333336), (0.55, 0.083333336), (0.55, 0.1), (0.5416667, 0.1), (0.5416667, 0.083333336), (0.5416667, 0.083333336), (0.5416667, 0.1), (0.53333336, 0.1), (0.53333336, 0.083333336), (0.53333336, 0.083333336), (0.53333336, 0.1), (0.525, 0.1), (0.525, 0.083333336), (0.525, 0.083333336), (0.525, 0.1), (0.51666665, 0.1), (0.51666665, 0.083333336), (0.51666665, 0.083333336), (0.51666665, 0.1), (0.5083333, 0.1), (0.5083333, 0.083333336), (0.5083333, 0.083333336), (0.5083333, 0.1), (0.5, 0.1), (0.5, 0.083333336), (0.5, 0.083333336), (0.5, 0.1), (0.49166667, 0.1), (0.49166667, 0.083333336), (0.49166667, 0.083333336), (0.49166667, 0.1), (0.48333332, 0.1), (0.48333332, 0.083333336), (0.48333332, 0.083333336), (0.48333332, 0.1), (0.475, 0.1), (0.475, 0.083333336), (0.475, 0.083333336), (0.475, 0.1), (0.46666667, 0.1), (0.46666667, 0.083333336), (0.46666667, 0.083333336), (0.46666667, 0.1), (0.45833334, 0.1), (0.45833334, 0.083333336), (0.45833334, 0.083333336), (0.45833334, 0.1), (0.45, 0.1), (0.45, 0.083333336), (0.45, 0.083333336), (0.45, 0.1), (0.44166666, 0.1), (0.44166666, 0.083333336), (0.44166666, 0.083333336), (0.44166666, 0.1), (0.43333334, 0.1), (0.43333334, 0.083333336), (0.43333334, 0.083333336), (0.43333334, 0.1), (0.425, 0.1), (0.425, 0.083333336), (0.425, 0.083333336), (0.425, 0.1), (0.41666666, 0.1), (0.41666666, 0.083333336), (0.41666666, 0.083333336), (0.41666666, 0.1), (0.40833333, 0.1), (0.40833333, 0.083333336), (0.40833333, 0.083333336), (0.40833333, 0.1), (0.4, 0.1), (0.4, 0.083333336), (0.4, 0.083333336), (0.4, 0.1), (0.39166668, 0.1), (0.39166668, 0.083333336), (0.39166668, 0.083333336), (0.39166668, 0.1), (0.38333333, 0.1), (0.38333333, 0.083333336), (0.38333333, 0.083333336), (0.38333333, 0.1), (0.375, 0.1), (0.375, 0.083333336), (0.375, 0.083333336), (0.375, 0.1), (0.36666667, 0.1), (0.36666667, 0.083333336), (0.36666667, 0.083333336), (0.36666667, 0.1), (0.35833332, 0.1), (0.35833332, 0.083333336), (0.35833332, 0.083333336), (0.35833332, 0.1), (0.35, 0.1), (0.35, 0.083333336), (0.35, 0.083333336), (0.35, 0.1), (0.34166667, 0.1), (0.34166667, 0.083333336), (0.34166667, 0.083333336), (0.34166667, 0.1), (0.33333334, 0.1), (0.33333334, 0.083333336), (0.33333334, 0.083333336), (0.33333334, 0.1), (0.325, 0.1), (0.325, 0.083333336), (0.325, 0.083333336), (0.325, 0.1), (0.31666666, 0.1), (0.31666666, 0.083333336), (0.31666666, 0.083333336), (0.31666666, 0.1), (0.30833334, 0.1), (0.30833334, 0.083333336), (0.30833334, 0.083333336), (0.30833334, 0.1), (0.3, 0.1), (0.3, 0.083333336), (0.3, 0.083333336), (0.3, 0.1), (0.29166666, 0.1), (0.29166666, 0.083333336), (0.29166666, 0.083333336), (0.29166666, 0.1), (0.28333333, 0.1), (0.28333333, 0.083333336), (0.28333333, 0.083333336), (0.28333333, 0.1), (0.275, 0.1), (0.275, 0.083333336), (0.275, 0.083333336), (0.275, 0.1), (0.26666668, 0.1), (0.26666668, 0.083333336), (0.26666668, 0.083333336), (0.26666668, 0.1), (0.25833333, 0.1), (0.25833333, 0.083333336), (0.25833333, 0.083333336), (0.25833333, 0.1), (0.25, 0.1), (0.25, 0.083333336), (0.25, 0.083333336), (0.25, 0.1), (0.24166666, 0.1), (0.24166666, 0.083333336), (0.24166666, 0.083333336), (0.24166666, 0.1), (0.23333333, 0.1), (0.23333333, 0.083333336), (0.23333333, 0.083333336), (0.23333333, 0.1), (0.225, 0.1), (0.225, 0.083333336), (0.225, 0.083333336), (0.225, 0.1), (0.21666667, 0.1), (0.21666667, 0.083333336), (0.21666667, 0.083333336), (0.21666667, 0.1), (0.20833333, 0.1), (0.20833333, 0.083333336), (0.20833333, 0.083333336), (0.20833333, 0.1), (0.2, 0.1), (0.2, 0.083333336), (0.2, 0.083333336), (0.2, 0.1), (0.19166666, 0.1), (0.19166666, 0.083333336), (0.19166666, 0.083333336), (0.19166666, 0.1), (0.18333334, 0.1), (0.18333334, 0.083333336), (0.18333334, 0.083333336), (0.18333334, 0.1), (0.175, 0.1), (0.175, 0.083333336), (0.175, 0.083333336), (0.175, 0.1), (0.16666667, 0.1), (0.16666667, 0.083333336), (0.16666667, 0.083333336), (0.16666667, 0.1), (0.15833333, 0.1), (0.15833333, 0.083333336), (0.15833333, 0.083333336), (0.15833333, 0.1), (0.15, 0.1), (0.15, 0.083333336), (0.15, 0.083333336), (0.15, 0.1), (0.14166667, 0.1), (0.14166667, 0.083333336), (0.14166667, 0.083333336), (0.14166667, 0.1), (0.13333334, 0.1), (0.13333334, 0.083333336), (0.13333334, 0.083333336), (0.13333334, 0.1), (0.125, 0.1), (0.125, 0.083333336), (0.125, 0.083333336), (0.125, 0.1), (0.11666667, 0.1), (0.11666667, 0.083333336), (0.11666667, 0.083333336), (0.11666667, 0.1), (0.108333334, 0.1), (0.108333334, 0.083333336), (0.108333334, 0.083333336), (0.108333334, 0.1), (0.1, 0.1), (0.1, 0.083333336), (0.1, 0.083333336), (0.1, 0.1), (0.09166667, 0.1), (0.09166667, 0.083333336), (0.09166667, 0.083333336), (0.09166667, 0.1), (0.083333336, 0.1), (0.083333336, 0.083333336), (0.083333336, 0.083333336), (0.083333336, 0.1), (0.075, 0.1), (0.075, 0.083333336), (0.075, 0.083333336), (0.075, 0.1), (0.06666667, 0.1), (0.06666667, 0.083333336), (0.06666667, 0.083333336), (0.06666667, 0.1), (0.058333334, 0.1), (0.058333334, 0.083333336), (0.058333334, 0.083333336), (0.058333334, 0.1), (0.05, 0.1), (0.05, 0.083333336), (0.05, 0.083333336), (0.05, 0.1), (0.041666668, 0.1), (0.041666668, 0.083333336), (0.041666668, 0.083333336), (0.041666668, 0.1), (0.033333335, 0.1), (0.033333335, 0.083333336), (0.033333335, 0.083333336), (0.033333335, 0.1), (0.025, 0.1), (0.025, 0.083333336), (0.025, 0.083333336), (0.025, 0.1), (0.016666668, 0.1), (0.016666668, 0.083333336), (0.016666668, 0.083333336), (0.016666668, 0.1), (0.008333334, 0.1), (0.008333334, 0.083333336), (0.008333334, 0.083333336), (0.008333334, 0.1), (0, 0.1), (0, 0.083333336), (1, 0.1), (1, 0.11666667), (0.9916667, 0.11666667), (0.9916667, 0.1), (0.9916667, 0.1), (0.9916667, 0.11666667), (0.98333335, 0.11666667), (0.98333335, 0.1), (0.98333335, 0.1), (0.98333335, 0.11666667), (0.975, 0.11666667), (0.975, 0.1), (0.975, 0.1), (0.975, 0.11666667), (0.96666664, 0.11666667), (0.96666664, 0.1), (0.96666664, 0.1), (0.96666664, 0.11666667), (0.9583333, 0.11666667), (0.9583333, 0.1), (0.9583333, 0.1), (0.9583333, 0.11666667), (0.95, 0.11666667), (0.95, 0.1), (0.95, 0.1), (0.95, 0.11666667), (0.94166666, 0.11666667), (0.94166666, 0.1), (0.94166666, 0.1), (0.94166666, 0.11666667), (0.93333334, 0.11666667), (0.93333334, 0.1), (0.93333334, 0.1), (0.93333334, 0.11666667), (0.925, 0.11666667), (0.925, 0.1), (0.925, 0.1), (0.925, 0.11666667), (0.9166667, 0.11666667), (0.9166667, 0.1), (0.9166667, 0.1), (0.9166667, 0.11666667), (0.90833336, 0.11666667), (0.90833336, 0.1), (0.90833336, 0.1), (0.90833336, 0.11666667), (0.9, 0.11666667), (0.9, 0.1), (0.9, 0.1), (0.9, 0.11666667), (0.89166665, 0.11666667), (0.89166665, 0.1), (0.89166665, 0.1), (0.89166665, 0.11666667), (0.8833333, 0.11666667), (0.8833333, 0.1), (0.8833333, 0.1), (0.8833333, 0.11666667), (0.875, 0.11666667), (0.875, 0.1), (0.875, 0.1), (0.875, 0.11666667), (0.8666667, 0.11666667), (0.8666667, 0.1), (0.8666667, 0.1), (0.8666667, 0.11666667), (0.85833335, 0.11666667), (0.85833335, 0.1), (0.85833335, 0.1), (0.85833335, 0.11666667), (0.85, 0.11666667), (0.85, 0.1), (0.85, 0.1), (0.85, 0.11666667), (0.84166664, 0.11666667), (0.84166664, 0.1), (0.84166664, 0.1), (0.84166664, 0.11666667), (0.8333333, 0.11666667), (0.8333333, 0.1), (0.8333333, 0.1), (0.8333333, 0.11666667), (0.825, 0.11666667), (0.825, 0.1), (0.825, 0.1), (0.825, 0.11666667), (0.81666666, 0.11666667), (0.81666666, 0.1), (0.81666666, 0.1), (0.81666666, 0.11666667), (0.80833334, 0.11666667), (0.80833334, 0.1), (0.80833334, 0.1), (0.80833334, 0.11666667), (0.8, 0.11666667), (0.8, 0.1), (0.8, 0.1), (0.8, 0.11666667), (0.7916667, 0.11666667), (0.7916667, 0.1), (0.7916667, 0.1), (0.7916667, 0.11666667), (0.78333336, 0.11666667), (0.78333336, 0.1), (0.78333336, 0.1), (0.78333336, 0.11666667), (0.775, 0.11666667), (0.775, 0.1), (0.775, 0.1), (0.775, 0.11666667), (0.76666665, 0.11666667), (0.76666665, 0.1), (0.76666665, 0.1), (0.76666665, 0.11666667), (0.7583333, 0.11666667), (0.7583333, 0.1), (0.7583333, 0.1), (0.7583333, 0.11666667), (0.75, 0.11666667), (0.75, 0.1), (0.75, 0.1), (0.75, 0.11666667), (0.7416667, 0.11666667), (0.7416667, 0.1), (0.7416667, 0.1), (0.7416667, 0.11666667), (0.73333335, 0.11666667), (0.73333335, 0.1), (0.73333335, 0.1), (0.73333335, 0.11666667), (0.725, 0.11666667), (0.725, 0.1), (0.725, 0.1), (0.725, 0.11666667), (0.71666664, 0.11666667), (0.71666664, 0.1), (0.71666664, 0.1), (0.71666664, 0.11666667), (0.7083333, 0.11666667), (0.7083333, 0.1), (0.7083333, 0.1), (0.7083333, 0.11666667), (0.7, 0.11666667), (0.7, 0.1), (0.7, 0.1), (0.7, 0.11666667), (0.69166666, 0.11666667), (0.69166666, 0.1), (0.69166666, 0.1), (0.69166666, 0.11666667), (0.68333334, 0.11666667), (0.68333334, 0.1), (0.68333334, 0.1), (0.68333334, 0.11666667), (0.675, 0.11666667), (0.675, 0.1), (0.675, 0.1), (0.675, 0.11666667), (0.6666667, 0.11666667), (0.6666667, 0.1), (0.6666667, 0.1), (0.6666667, 0.11666667), (0.65833336, 0.11666667), (0.65833336, 0.1), (0.65833336, 0.1), (0.65833336, 0.11666667), (0.65, 0.11666667), (0.65, 0.1), (0.65, 0.1), (0.65, 0.11666667), (0.64166665, 0.11666667), (0.64166665, 0.1), (0.64166665, 0.1), (0.64166665, 0.11666667), (0.6333333, 0.11666667), (0.6333333, 0.1), (0.6333333, 0.1), (0.6333333, 0.11666667), (0.625, 0.11666667), (0.625, 0.1), (0.625, 0.1), (0.625, 0.11666667), (0.6166667, 0.11666667), (0.6166667, 0.1), (0.6166667, 0.1), (0.6166667, 0.11666667), (0.60833335, 0.11666667), (0.60833335, 0.1), (0.60833335, 0.1), (0.60833335, 0.11666667), (0.6, 0.11666667), (0.6, 0.1), (0.6, 0.1), (0.6, 0.11666667), (0.59166664, 0.11666667), (0.59166664, 0.1), (0.59166664, 0.1), (0.59166664, 0.11666667), (0.5833333, 0.11666667), (0.5833333, 0.1), (0.5833333, 0.1), (0.5833333, 0.11666667), (0.575, 0.11666667), (0.575, 0.1), (0.575, 0.1), (0.575, 0.11666667), (0.56666666, 0.11666667), (0.56666666, 0.1), (0.56666666, 0.1), (0.56666666, 0.11666667), (0.55833334, 0.11666667), (0.55833334, 0.1), (0.55833334, 0.1), (0.55833334, 0.11666667), (0.55, 0.11666667), (0.55, 0.1), (0.55, 0.1), (0.55, 0.11666667), (0.5416667, 0.11666667), (0.5416667, 0.1), (0.5416667, 0.1), (0.5416667, 0.11666667), (0.53333336, 0.11666667), (0.53333336, 0.1), (0.53333336, 0.1), (0.53333336, 0.11666667), (0.525, 0.11666667), (0.525, 0.1), (0.525, 0.1), (0.525, 0.11666667), (0.51666665, 0.11666667), (0.51666665, 0.1), (0.51666665, 0.1), (0.51666665, 0.11666667), (0.5083333, 0.11666667), (0.5083333, 0.1), (0.5083333, 0.1), (0.5083333, 0.11666667), (0.5, 0.11666667), (0.5, 0.1), (0.5, 0.1), (0.5, 0.11666667), (0.49166667, 0.11666667), (0.49166667, 0.1), (0.49166667, 0.1), (0.49166667, 0.11666667), (0.48333332, 0.11666667), (0.48333332, 0.1), (0.48333332, 0.1), (0.48333332, 0.11666667), (0.475, 0.11666667), (0.475, 0.1), (0.475, 0.1), (0.475, 0.11666667), (0.46666667, 0.11666667), (0.46666667, 0.1), (0.46666667, 0.1), (0.46666667, 0.11666667), (0.45833334, 0.11666667), (0.45833334, 0.1), (0.45833334, 0.1), (0.45833334, 0.11666667), (0.45, 0.11666667), (0.45, 0.1), (0.45, 0.1), (0.45, 0.11666667), (0.44166666, 0.11666667), (0.44166666, 0.1), (0.44166666, 0.1), (0.44166666, 0.11666667), (0.43333334, 0.11666667), (0.43333334, 0.1), (0.43333334, 0.1), (0.43333334, 0.11666667), (0.425, 0.11666667), (0.425, 0.1), (0.425, 0.1), (0.425, 0.11666667), (0.41666666, 0.11666667), (0.41666666, 0.1), (0.41666666, 0.1), (0.41666666, 0.11666667), (0.40833333, 0.11666667), (0.40833333, 0.1), (0.40833333, 0.1), (0.40833333, 0.11666667), (0.4, 0.11666667), (0.4, 0.1), (0.4, 0.1), (0.4, 0.11666667), (0.39166668, 0.11666667), (0.39166668, 0.1), (0.39166668, 0.1), (0.39166668, 0.11666667), (0.38333333, 0.11666667), (0.38333333, 0.1), (0.38333333, 0.1), (0.38333333, 0.11666667), (0.375, 0.11666667), (0.375, 0.1), (0.375, 0.1), (0.375, 0.11666667), (0.36666667, 0.11666667), (0.36666667, 0.1), (0.36666667, 0.1), (0.36666667, 0.11666667), (0.35833332, 0.11666667), (0.35833332, 0.1), (0.35833332, 0.1), (0.35833332, 0.11666667), (0.35, 0.11666667), (0.35, 0.1), (0.35, 0.1), (0.35, 0.11666667), (0.34166667, 0.11666667), (0.34166667, 0.1), (0.34166667, 0.1), (0.34166667, 0.11666667), (0.33333334, 0.11666667), (0.33333334, 0.1), (0.33333334, 0.1), (0.33333334, 0.11666667), (0.325, 0.11666667), (0.325, 0.1), (0.325, 0.1), (0.325, 0.11666667), (0.31666666, 0.11666667), (0.31666666, 0.1), (0.31666666, 0.1), (0.31666666, 0.11666667), (0.30833334, 0.11666667), (0.30833334, 0.1), (0.30833334, 0.1), (0.30833334, 0.11666667), (0.3, 0.11666667), (0.3, 0.1), (0.3, 0.1), (0.3, 0.11666667), (0.29166666, 0.11666667), (0.29166666, 0.1), (0.29166666, 0.1), (0.29166666, 0.11666667), (0.28333333, 0.11666667), (0.28333333, 0.1), (0.28333333, 0.1), (0.28333333, 0.11666667), (0.275, 0.11666667), (0.275, 0.1), (0.275, 0.1), (0.275, 0.11666667), (0.26666668, 0.11666667), (0.26666668, 0.1), (0.26666668, 0.1), (0.26666668, 0.11666667), (0.25833333, 0.11666667), (0.25833333, 0.1), (0.25833333, 0.1), (0.25833333, 0.11666667), (0.25, 0.11666667), (0.25, 0.1), (0.25, 0.1), (0.25, 0.11666667), (0.24166666, 0.11666667), (0.24166666, 0.1), (0.24166666, 0.1), (0.24166666, 0.11666667), (0.23333333, 0.11666667), (0.23333333, 0.1), (0.23333333, 0.1), (0.23333333, 0.11666667), (0.225, 0.11666667), (0.225, 0.1), (0.225, 0.1), (0.225, 0.11666667), (0.21666667, 0.11666667), (0.21666667, 0.1), (0.21666667, 0.1), (0.21666667, 0.11666667), (0.20833333, 0.11666667), (0.20833333, 0.1), (0.20833333, 0.1), (0.20833333, 0.11666667), (0.2, 0.11666667), (0.2, 0.1), (0.2, 0.1), (0.2, 0.11666667), (0.19166666, 0.11666667), (0.19166666, 0.1), (0.19166666, 0.1), (0.19166666, 0.11666667), (0.18333334, 0.11666667), (0.18333334, 0.1), (0.18333334, 0.1), (0.18333334, 0.11666667), (0.175, 0.11666667), (0.175, 0.1), (0.175, 0.1), (0.175, 0.11666667), (0.16666667, 0.11666667), (0.16666667, 0.1), (0.16666667, 0.1), (0.16666667, 0.11666667), (0.15833333, 0.11666667), (0.15833333, 0.1), (0.15833333, 0.1), (0.15833333, 0.11666667), (0.15, 0.11666667), (0.15, 0.1), (0.15, 0.1), (0.15, 0.11666667), (0.14166667, 0.11666667), (0.14166667, 0.1), (0.14166667, 0.1), (0.14166667, 0.11666667), (0.13333334, 0.11666667), (0.13333334, 0.1), (0.13333334, 0.1), (0.13333334, 0.11666667), (0.125, 0.11666667), (0.125, 0.1), (0.125, 0.1), (0.125, 0.11666667), (0.11666667, 0.11666667), (0.11666667, 0.1), (0.11666667, 0.1), (0.11666667, 0.11666667), (0.108333334, 0.11666667), (0.108333334, 0.1), (0.108333334, 0.1), (0.108333334, 0.11666667), (0.1, 0.11666667), (0.1, 0.1), (0.1, 0.1), (0.1, 0.11666667), (0.09166667, 0.11666667), (0.09166667, 0.1), (0.09166667, 0.1), (0.09166667, 0.11666667), (0.083333336, 0.11666667), (0.083333336, 0.1), (0.083333336, 0.1), (0.083333336, 0.11666667), (0.075, 0.11666667), (0.075, 0.1), (0.075, 0.1), (0.075, 0.11666667), (0.06666667, 0.11666667), (0.06666667, 0.1), (0.06666667, 0.1), (0.06666667, 0.11666667), (0.058333334, 0.11666667), (0.058333334, 0.1), (0.058333334, 0.1), (0.058333334, 0.11666667), (0.05, 0.11666667), (0.05, 0.1), (0.05, 0.1), (0.05, 0.11666667), (0.041666668, 0.11666667), (0.041666668, 0.1), (0.041666668, 0.1), (0.041666668, 0.11666667), (0.033333335, 0.11666667), (0.033333335, 0.1), (0.033333335, 0.1), (0.033333335, 0.11666667), (0.025, 0.11666667), (0.025, 0.1), (0.025, 0.1), (0.025, 0.11666667), (0.016666668, 0.11666667), (0.016666668, 0.1), (0.016666668, 0.1), (0.016666668, 0.11666667), (0.008333334, 0.11666667), (0.008333334, 0.1), (0.008333334, 0.1), (0.008333334, 0.11666667), (0, 0.11666667), (0, 0.1), (1, 0.11666667), (1, 0.13333334), (0.9916667, 0.13333334), (0.9916667, 0.11666667), (0.9916667, 0.11666667), (0.9916667, 0.13333334), (0.98333335, 0.13333334), (0.98333335, 0.11666667), (0.98333335, 0.11666667), (0.98333335, 0.13333334), (0.975, 0.13333334), (0.975, 0.11666667), (0.975, 0.11666667), (0.975, 0.13333334), (0.96666664, 0.13333334), (0.96666664, 0.11666667), (0.96666664, 0.11666667), (0.96666664, 0.13333334), (0.9583333, 0.13333334), (0.9583333, 0.11666667), (0.9583333, 0.11666667), (0.9583333, 0.13333334), (0.95, 0.13333334), (0.95, 0.11666667), (0.95, 0.11666667), (0.95, 0.13333334), (0.94166666, 0.13333334), (0.94166666, 0.11666667), (0.94166666, 0.11666667), (0.94166666, 0.13333334), (0.93333334, 0.13333334), (0.93333334, 0.11666667), (0.93333334, 0.11666667), (0.93333334, 0.13333334), (0.925, 0.13333334), (0.925, 0.11666667), (0.925, 0.11666667), (0.925, 0.13333334), (0.9166667, 0.13333334), (0.9166667, 0.11666667), (0.9166667, 0.11666667), (0.9166667, 0.13333334), (0.90833336, 0.13333334), (0.90833336, 0.11666667), (0.90833336, 0.11666667), (0.90833336, 0.13333334), (0.9, 0.13333334), (0.9, 0.11666667), (0.9, 0.11666667), (0.9, 0.13333334), (0.89166665, 0.13333334), (0.89166665, 0.11666667), (0.89166665, 0.11666667), (0.89166665, 0.13333334), (0.8833333, 0.13333334), (0.8833333, 0.11666667), (0.8833333, 0.11666667), (0.8833333, 0.13333334), (0.875, 0.13333334), (0.875, 0.11666667), (0.875, 0.11666667), (0.875, 0.13333334), (0.8666667, 0.13333334), (0.8666667, 0.11666667), (0.8666667, 0.11666667), (0.8666667, 0.13333334), (0.85833335, 0.13333334), (0.85833335, 0.11666667), (0.85833335, 0.11666667), (0.85833335, 0.13333334), (0.85, 0.13333334), (0.85, 0.11666667), (0.85, 0.11666667), (0.85, 0.13333334), (0.84166664, 0.13333334), (0.84166664, 0.11666667), (0.84166664, 0.11666667), (0.84166664, 0.13333334), (0.8333333, 0.13333334), (0.8333333, 0.11666667), (0.8333333, 0.11666667), (0.8333333, 0.13333334), (0.825, 0.13333334), (0.825, 0.11666667), (0.825, 0.11666667), (0.825, 0.13333334), (0.81666666, 0.13333334), (0.81666666, 0.11666667), (0.81666666, 0.11666667), (0.81666666, 0.13333334), (0.80833334, 0.13333334), (0.80833334, 0.11666667), (0.80833334, 0.11666667), (0.80833334, 0.13333334), (0.8, 0.13333334), (0.8, 0.11666667), (0.8, 0.11666667), (0.8, 0.13333334), (0.7916667, 0.13333334), (0.7916667, 0.11666667), (0.7916667, 0.11666667), (0.7916667, 0.13333334), (0.78333336, 0.13333334), (0.78333336, 0.11666667), (0.78333336, 0.11666667), (0.78333336, 0.13333334), (0.775, 0.13333334), (0.775, 0.11666667), (0.775, 0.11666667), (0.775, 0.13333334), (0.76666665, 0.13333334), (0.76666665, 0.11666667), (0.76666665, 0.11666667), (0.76666665, 0.13333334), (0.7583333, 0.13333334), (0.7583333, 0.11666667), (0.7583333, 0.11666667), (0.7583333, 0.13333334), (0.75, 0.13333334), (0.75, 0.11666667), (0.75, 0.11666667), (0.75, 0.13333334), (0.7416667, 0.13333334), (0.7416667, 0.11666667), (0.7416667, 0.11666667), (0.7416667, 0.13333334), (0.73333335, 0.13333334), (0.73333335, 0.11666667), (0.73333335, 0.11666667), (0.73333335, 0.13333334), (0.725, 0.13333334), (0.725, 0.11666667), (0.725, 0.11666667), (0.725, 0.13333334), (0.71666664, 0.13333334), (0.71666664, 0.11666667), (0.71666664, 0.11666667), (0.71666664, 0.13333334), (0.7083333, 0.13333334), (0.7083333, 0.11666667), (0.7083333, 0.11666667), (0.7083333, 0.13333334), (0.7, 0.13333334), (0.7, 0.11666667), (0.7, 0.11666667), (0.7, 0.13333334), (0.69166666, 0.13333334), (0.69166666, 0.11666667), (0.69166666, 0.11666667), (0.69166666, 0.13333334), (0.68333334, 0.13333334), (0.68333334, 0.11666667), (0.68333334, 0.11666667), (0.68333334, 0.13333334), (0.675, 0.13333334), (0.675, 0.11666667), (0.675, 0.11666667), (0.675, 0.13333334), (0.6666667, 0.13333334), (0.6666667, 0.11666667), (0.6666667, 0.11666667), (0.6666667, 0.13333334), (0.65833336, 0.13333334), (0.65833336, 0.11666667), (0.65833336, 0.11666667), (0.65833336, 0.13333334), (0.65, 0.13333334), (0.65, 0.11666667), (0.65, 0.11666667), (0.65, 0.13333334), (0.64166665, 0.13333334), (0.64166665, 0.11666667), (0.64166665, 0.11666667), (0.64166665, 0.13333334), (0.6333333, 0.13333334), (0.6333333, 0.11666667), (0.6333333, 0.11666667), (0.6333333, 0.13333334), (0.625, 0.13333334), (0.625, 0.11666667), (0.625, 0.11666667), (0.625, 0.13333334), (0.6166667, 0.13333334), (0.6166667, 0.11666667), (0.6166667, 0.11666667), (0.6166667, 0.13333334), (0.60833335, 0.13333334), (0.60833335, 0.11666667), (0.60833335, 0.11666667), (0.60833335, 0.13333334), (0.6, 0.13333334), (0.6, 0.11666667), (0.6, 0.11666667), (0.6, 0.13333334), (0.59166664, 0.13333334), (0.59166664, 0.11666667), (0.59166664, 0.11666667), (0.59166664, 0.13333334), (0.5833333, 0.13333334), (0.5833333, 0.11666667), (0.5833333, 0.11666667), (0.5833333, 0.13333334), (0.575, 0.13333334), (0.575, 0.11666667), (0.575, 0.11666667), (0.575, 0.13333334), (0.56666666, 0.13333334), (0.56666666, 0.11666667), (0.56666666, 0.11666667), (0.56666666, 0.13333334), (0.55833334, 0.13333334), (0.55833334, 0.11666667), (0.55833334, 0.11666667), (0.55833334, 0.13333334), (0.55, 0.13333334), (0.55, 0.11666667), (0.55, 0.11666667), (0.55, 0.13333334), (0.5416667, 0.13333334), (0.5416667, 0.11666667), (0.5416667, 0.11666667), (0.5416667, 0.13333334), (0.53333336, 0.13333334), (0.53333336, 0.11666667), (0.53333336, 0.11666667), (0.53333336, 0.13333334), (0.525, 0.13333334), (0.525, 0.11666667), (0.525, 0.11666667), (0.525, 0.13333334), (0.51666665, 0.13333334), (0.51666665, 0.11666667), (0.51666665, 0.11666667), (0.51666665, 0.13333334), (0.5083333, 0.13333334), (0.5083333, 0.11666667), (0.5083333, 0.11666667), (0.5083333, 0.13333334), (0.5, 0.13333334), (0.5, 0.11666667), (0.5, 0.11666667), (0.5, 0.13333334), (0.49166667, 0.13333334), (0.49166667, 0.11666667), (0.49166667, 0.11666667), (0.49166667, 0.13333334), (0.48333332, 0.13333334), (0.48333332, 0.11666667), (0.48333332, 0.11666667), (0.48333332, 0.13333334), (0.475, 0.13333334), (0.475, 0.11666667), (0.475, 0.11666667), (0.475, 0.13333334), (0.46666667, 0.13333334), (0.46666667, 0.11666667), (0.46666667, 0.11666667), (0.46666667, 0.13333334), (0.45833334, 0.13333334), (0.45833334, 0.11666667), (0.45833334, 0.11666667), (0.45833334, 0.13333334), (0.45, 0.13333334), (0.45, 0.11666667), (0.45, 0.11666667), (0.45, 0.13333334), (0.44166666, 0.13333334), (0.44166666, 0.11666667), (0.44166666, 0.11666667), (0.44166666, 0.13333334), (0.43333334, 0.13333334), (0.43333334, 0.11666667), (0.43333334, 0.11666667), (0.43333334, 0.13333334), (0.425, 0.13333334), (0.425, 0.11666667), (0.425, 0.11666667), (0.425, 0.13333334), (0.41666666, 0.13333334), (0.41666666, 0.11666667), (0.41666666, 0.11666667), (0.41666666, 0.13333334), (0.40833333, 0.13333334), (0.40833333, 0.11666667), (0.40833333, 0.11666667), (0.40833333, 0.13333334), (0.4, 0.13333334), (0.4, 0.11666667), (0.4, 0.11666667), (0.4, 0.13333334), (0.39166668, 0.13333334), (0.39166668, 0.11666667), (0.39166668, 0.11666667), (0.39166668, 0.13333334), (0.38333333, 0.13333334), (0.38333333, 0.11666667), (0.38333333, 0.11666667), (0.38333333, 0.13333334), (0.375, 0.13333334), (0.375, 0.11666667), (0.375, 0.11666667), (0.375, 0.13333334), (0.36666667, 0.13333334), (0.36666667, 0.11666667), (0.36666667, 0.11666667), (0.36666667, 0.13333334), (0.35833332, 0.13333334), (0.35833332, 0.11666667), (0.35833332, 0.11666667), (0.35833332, 0.13333334), (0.35, 0.13333334), (0.35, 0.11666667), (0.35, 0.11666667), (0.35, 0.13333334), (0.34166667, 0.13333334), (0.34166667, 0.11666667), (0.34166667, 0.11666667), (0.34166667, 0.13333334), (0.33333334, 0.13333334), (0.33333334, 0.11666667), (0.33333334, 0.11666667), (0.33333334, 0.13333334), (0.325, 0.13333334), (0.325, 0.11666667), (0.325, 0.11666667), (0.325, 0.13333334), (0.31666666, 0.13333334), (0.31666666, 0.11666667), (0.31666666, 0.11666667), (0.31666666, 0.13333334), (0.30833334, 0.13333334), (0.30833334, 0.11666667), (0.30833334, 0.11666667), (0.30833334, 0.13333334), (0.3, 0.13333334), (0.3, 0.11666667), (0.3, 0.11666667), (0.3, 0.13333334), (0.29166666, 0.13333334), (0.29166666, 0.11666667), (0.29166666, 0.11666667), (0.29166666, 0.13333334), (0.28333333, 0.13333334), (0.28333333, 0.11666667), (0.28333333, 0.11666667), (0.28333333, 0.13333334), (0.275, 0.13333334), (0.275, 0.11666667), (0.275, 0.11666667), (0.275, 0.13333334), (0.26666668, 0.13333334), (0.26666668, 0.11666667), (0.26666668, 0.11666667), (0.26666668, 0.13333334), (0.25833333, 0.13333334), (0.25833333, 0.11666667), (0.25833333, 0.11666667), (0.25833333, 0.13333334), (0.25, 0.13333334), (0.25, 0.11666667), (0.25, 0.11666667), (0.25, 0.13333334), (0.24166666, 0.13333334), (0.24166666, 0.11666667), (0.24166666, 0.11666667), (0.24166666, 0.13333334), (0.23333333, 0.13333334), (0.23333333, 0.11666667), (0.23333333, 0.11666667), (0.23333333, 0.13333334), (0.225, 0.13333334), (0.225, 0.11666667), (0.225, 0.11666667), (0.225, 0.13333334), (0.21666667, 0.13333334), (0.21666667, 0.11666667), (0.21666667, 0.11666667), (0.21666667, 0.13333334), (0.20833333, 0.13333334), (0.20833333, 0.11666667), (0.20833333, 0.11666667), (0.20833333, 0.13333334), (0.2, 0.13333334), (0.2, 0.11666667), (0.2, 0.11666667), (0.2, 0.13333334), (0.19166666, 0.13333334), (0.19166666, 0.11666667), (0.19166666, 0.11666667), (0.19166666, 0.13333334), (0.18333334, 0.13333334), (0.18333334, 0.11666667), (0.18333334, 0.11666667), (0.18333334, 0.13333334), (0.175, 0.13333334), (0.175, 0.11666667), (0.175, 0.11666667), (0.175, 0.13333334), (0.16666667, 0.13333334), (0.16666667, 0.11666667), (0.16666667, 0.11666667), (0.16666667, 0.13333334), (0.15833333, 0.13333334), (0.15833333, 0.11666667), (0.15833333, 0.11666667), (0.15833333, 0.13333334), (0.15, 0.13333334), (0.15, 0.11666667), (0.15, 0.11666667), (0.15, 0.13333334), (0.14166667, 0.13333334), (0.14166667, 0.11666667), (0.14166667, 0.11666667), (0.14166667, 0.13333334), (0.13333334, 0.13333334), (0.13333334, 0.11666667), (0.13333334, 0.11666667), (0.13333334, 0.13333334), (0.125, 0.13333334), (0.125, 0.11666667), (0.125, 0.11666667), (0.125, 0.13333334), (0.11666667, 0.13333334), (0.11666667, 0.11666667), (0.11666667, 0.11666667), (0.11666667, 0.13333334), (0.108333334, 0.13333334), (0.108333334, 0.11666667), (0.108333334, 0.11666667), (0.108333334, 0.13333334), (0.1, 0.13333334), (0.1, 0.11666667), (0.1, 0.11666667), (0.1, 0.13333334), (0.09166667, 0.13333334), (0.09166667, 0.11666667), (0.09166667, 0.11666667), (0.09166667, 0.13333334), (0.083333336, 0.13333334), (0.083333336, 0.11666667), (0.083333336, 0.11666667), (0.083333336, 0.13333334), (0.075, 0.13333334), (0.075, 0.11666667), (0.075, 0.11666667), (0.075, 0.13333334), (0.06666667, 0.13333334), (0.06666667, 0.11666667), (0.06666667, 0.11666667), (0.06666667, 0.13333334), (0.058333334, 0.13333334), (0.058333334, 0.11666667), (0.058333334, 0.11666667), (0.058333334, 0.13333334), (0.05, 0.13333334), (0.05, 0.11666667), (0.05, 0.11666667), (0.05, 0.13333334), (0.041666668, 0.13333334), (0.041666668, 0.11666667), (0.041666668, 0.11666667), (0.041666668, 0.13333334), (0.033333335, 0.13333334), (0.033333335, 0.11666667), (0.033333335, 0.11666667), (0.033333335, 0.13333334), (0.025, 0.13333334), (0.025, 0.11666667), (0.025, 0.11666667), (0.025, 0.13333334), (0.016666668, 0.13333334), (0.016666668, 0.11666667), (0.016666668, 0.11666667), (0.016666668, 0.13333334), (0.008333334, 0.13333334), (0.008333334, 0.11666667), (0.008333334, 0.11666667), (0.008333334, 0.13333334), (0, 0.13333334), (0, 0.11666667), (1, 0.13333334), (1, 0.15), (0.9916667, 0.15), (0.9916667, 0.13333334), (0.9916667, 0.13333334), (0.9916667, 0.15), (0.98333335, 0.15), (0.98333335, 0.13333334), (0.98333335, 0.13333334), (0.98333335, 0.15), (0.975, 0.15), (0.975, 0.13333334), (0.975, 0.13333334), (0.975, 0.15), (0.96666664, 0.15), (0.96666664, 0.13333334), (0.96666664, 0.13333334), (0.96666664, 0.15), (0.9583333, 0.15), (0.9583333, 0.13333334), (0.9583333, 0.13333334), (0.9583333, 0.15), (0.95, 0.15), (0.95, 0.13333334), (0.95, 0.13333334), (0.95, 0.15), (0.94166666, 0.15), (0.94166666, 0.13333334), (0.94166666, 0.13333334), (0.94166666, 0.15), (0.93333334, 0.15), (0.93333334, 0.13333334), (0.93333334, 0.13333334), (0.93333334, 0.15), (0.925, 0.15), (0.925, 0.13333334), (0.925, 0.13333334), (0.925, 0.15), (0.9166667, 0.15), (0.9166667, 0.13333334), (0.9166667, 0.13333334), (0.9166667, 0.15), (0.90833336, 0.15), (0.90833336, 0.13333334), (0.90833336, 0.13333334), (0.90833336, 0.15), (0.9, 0.15), (0.9, 0.13333334), (0.9, 0.13333334), (0.9, 0.15), (0.89166665, 0.15), (0.89166665, 0.13333334), (0.89166665, 0.13333334), (0.89166665, 0.15), (0.8833333, 0.15), (0.8833333, 0.13333334), (0.8833333, 0.13333334), (0.8833333, 0.15), (0.875, 0.15), (0.875, 0.13333334), (0.875, 0.13333334), (0.875, 0.15), (0.8666667, 0.15), (0.8666667, 0.13333334), (0.8666667, 0.13333334), (0.8666667, 0.15), (0.85833335, 0.15), (0.85833335, 0.13333334), (0.85833335, 0.13333334), (0.85833335, 0.15), (0.85, 0.15), (0.85, 0.13333334), (0.85, 0.13333334), (0.85, 0.15), (0.84166664, 0.15), (0.84166664, 0.13333334), (0.84166664, 0.13333334), (0.84166664, 0.15), (0.8333333, 0.15), (0.8333333, 0.13333334), (0.8333333, 0.13333334), (0.8333333, 0.15), (0.825, 0.15), (0.825, 0.13333334), (0.825, 0.13333334), (0.825, 0.15), (0.81666666, 0.15), (0.81666666, 0.13333334), (0.81666666, 0.13333334), (0.81666666, 0.15), (0.80833334, 0.15), (0.80833334, 0.13333334), (0.80833334, 0.13333334), (0.80833334, 0.15), (0.8, 0.15), (0.8, 0.13333334), (0.8, 0.13333334), (0.8, 0.15), (0.7916667, 0.15), (0.7916667, 0.13333334), (0.7916667, 0.13333334), (0.7916667, 0.15), (0.78333336, 0.15), (0.78333336, 0.13333334), (0.78333336, 0.13333334), (0.78333336, 0.15), (0.775, 0.15), (0.775, 0.13333334), (0.775, 0.13333334), (0.775, 0.15), (0.76666665, 0.15), (0.76666665, 0.13333334), (0.76666665, 0.13333334), (0.76666665, 0.15), (0.7583333, 0.15), (0.7583333, 0.13333334), (0.7583333, 0.13333334), (0.7583333, 0.15), (0.75, 0.15), (0.75, 0.13333334), (0.75, 0.13333334), (0.75, 0.15), (0.7416667, 0.15), (0.7416667, 0.13333334), (0.7416667, 0.13333334), (0.7416667, 0.15), (0.73333335, 0.15), (0.73333335, 0.13333334), (0.73333335, 0.13333334), (0.73333335, 0.15), (0.725, 0.15), (0.725, 0.13333334), (0.725, 0.13333334), (0.725, 0.15), (0.71666664, 0.15), (0.71666664, 0.13333334), (0.71666664, 0.13333334), (0.71666664, 0.15), (0.7083333, 0.15), (0.7083333, 0.13333334), (0.7083333, 0.13333334), (0.7083333, 0.15), (0.7, 0.15), (0.7, 0.13333334), (0.7, 0.13333334), (0.7, 0.15), (0.69166666, 0.15), (0.69166666, 0.13333334), (0.69166666, 0.13333334), (0.69166666, 0.15), (0.68333334, 0.15), (0.68333334, 0.13333334), (0.68333334, 0.13333334), (0.68333334, 0.15), (0.675, 0.15), (0.675, 0.13333334), (0.675, 0.13333334), (0.675, 0.15), (0.6666667, 0.15), (0.6666667, 0.13333334), (0.6666667, 0.13333334), (0.6666667, 0.15), (0.65833336, 0.15), (0.65833336, 0.13333334), (0.65833336, 0.13333334), (0.65833336, 0.15), (0.65, 0.15), (0.65, 0.13333334), (0.65, 0.13333334), (0.65, 0.15), (0.64166665, 0.15), (0.64166665, 0.13333334), (0.64166665, 0.13333334), (0.64166665, 0.15), (0.6333333, 0.15), (0.6333333, 0.13333334), (0.6333333, 0.13333334), (0.6333333, 0.15), (0.625, 0.15), (0.625, 0.13333334), (0.625, 0.13333334), (0.625, 0.15), (0.6166667, 0.15), (0.6166667, 0.13333334), (0.6166667, 0.13333334), (0.6166667, 0.15), (0.60833335, 0.15), (0.60833335, 0.13333334), (0.60833335, 0.13333334), (0.60833335, 0.15), (0.6, 0.15), (0.6, 0.13333334), (0.6, 0.13333334), (0.6, 0.15), (0.59166664, 0.15), (0.59166664, 0.13333334), (0.59166664, 0.13333334), (0.59166664, 0.15), (0.5833333, 0.15), (0.5833333, 0.13333334), (0.5833333, 0.13333334), (0.5833333, 0.15), (0.575, 0.15), (0.575, 0.13333334), (0.575, 0.13333334), (0.575, 0.15), (0.56666666, 0.15), (0.56666666, 0.13333334), (0.56666666, 0.13333334), (0.56666666, 0.15), (0.55833334, 0.15), (0.55833334, 0.13333334), (0.55833334, 0.13333334), (0.55833334, 0.15), (0.55, 0.15), (0.55, 0.13333334), (0.55, 0.13333334), (0.55, 0.15), (0.5416667, 0.15), (0.5416667, 0.13333334), (0.5416667, 0.13333334), (0.5416667, 0.15), (0.53333336, 0.15), (0.53333336, 0.13333334), (0.53333336, 0.13333334), (0.53333336, 0.15), (0.525, 0.15), (0.525, 0.13333334), (0.525, 0.13333334), (0.525, 0.15), (0.51666665, 0.15), (0.51666665, 0.13333334), (0.51666665, 0.13333334), (0.51666665, 0.15), (0.5083333, 0.15), (0.5083333, 0.13333334), (0.5083333, 0.13333334), (0.5083333, 0.15), (0.5, 0.15), (0.5, 0.13333334), (0.5, 0.13333334), (0.5, 0.15), (0.49166667, 0.15), (0.49166667, 0.13333334), (0.49166667, 0.13333334), (0.49166667, 0.15), (0.48333332, 0.15), (0.48333332, 0.13333334), (0.48333332, 0.13333334), (0.48333332, 0.15), (0.475, 0.15), (0.475, 0.13333334), (0.475, 0.13333334), (0.475, 0.15), (0.46666667, 0.15), (0.46666667, 0.13333334), (0.46666667, 0.13333334), (0.46666667, 0.15), (0.45833334, 0.15), (0.45833334, 0.13333334), (0.45833334, 0.13333334), (0.45833334, 0.15), (0.45, 0.15), (0.45, 0.13333334), (0.45, 0.13333334), (0.45, 0.15), (0.44166666, 0.15), (0.44166666, 0.13333334), (0.44166666, 0.13333334), (0.44166666, 0.15), (0.43333334, 0.15), (0.43333334, 0.13333334), (0.43333334, 0.13333334), (0.43333334, 0.15), (0.425, 0.15), (0.425, 0.13333334), (0.425, 0.13333334), (0.425, 0.15), (0.41666666, 0.15), (0.41666666, 0.13333334), (0.41666666, 0.13333334), (0.41666666, 0.15), (0.40833333, 0.15), (0.40833333, 0.13333334), (0.40833333, 0.13333334), (0.40833333, 0.15), (0.4, 0.15), (0.4, 0.13333334), (0.4, 0.13333334), (0.4, 0.15), (0.39166668, 0.15), (0.39166668, 0.13333334), (0.39166668, 0.13333334), (0.39166668, 0.15), (0.38333333, 0.15), (0.38333333, 0.13333334), (0.38333333, 0.13333334), (0.38333333, 0.15), (0.375, 0.15), (0.375, 0.13333334), (0.375, 0.13333334), (0.375, 0.15), (0.36666667, 0.15), (0.36666667, 0.13333334), (0.36666667, 0.13333334), (0.36666667, 0.15), (0.35833332, 0.15), (0.35833332, 0.13333334), (0.35833332, 0.13333334), (0.35833332, 0.15), (0.35, 0.15), (0.35, 0.13333334), (0.35, 0.13333334), (0.35, 0.15), (0.34166667, 0.15), (0.34166667, 0.13333334), (0.34166667, 0.13333334), (0.34166667, 0.15), (0.33333334, 0.15), (0.33333334, 0.13333334), (0.33333334, 0.13333334), (0.33333334, 0.15), (0.325, 0.15), (0.325, 0.13333334), (0.325, 0.13333334), (0.325, 0.15), (0.31666666, 0.15), (0.31666666, 0.13333334), (0.31666666, 0.13333334), (0.31666666, 0.15), (0.30833334, 0.15), (0.30833334, 0.13333334), (0.30833334, 0.13333334), (0.30833334, 0.15), (0.3, 0.15), (0.3, 0.13333334), (0.3, 0.13333334), (0.3, 0.15), (0.29166666, 0.15), (0.29166666, 0.13333334), (0.29166666, 0.13333334), (0.29166666, 0.15), (0.28333333, 0.15), (0.28333333, 0.13333334), (0.28333333, 0.13333334), (0.28333333, 0.15), (0.275, 0.15), (0.275, 0.13333334), (0.275, 0.13333334), (0.275, 0.15), (0.26666668, 0.15), (0.26666668, 0.13333334), (0.26666668, 0.13333334), (0.26666668, 0.15), (0.25833333, 0.15), (0.25833333, 0.13333334), (0.25833333, 0.13333334), (0.25833333, 0.15), (0.25, 0.15), (0.25, 0.13333334), (0.25, 0.13333334), (0.25, 0.15), (0.24166666, 0.15), (0.24166666, 0.13333334), (0.24166666, 0.13333334), (0.24166666, 0.15), (0.23333333, 0.15), (0.23333333, 0.13333334), (0.23333333, 0.13333334), (0.23333333, 0.15), (0.225, 0.15), (0.225, 0.13333334), (0.225, 0.13333334), (0.225, 0.15), (0.21666667, 0.15), (0.21666667, 0.13333334), (0.21666667, 0.13333334), (0.21666667, 0.15), (0.20833333, 0.15), (0.20833333, 0.13333334), (0.20833333, 0.13333334), (0.20833333, 0.15), (0.2, 0.15), (0.2, 0.13333334), (0.2, 0.13333334), (0.2, 0.15), (0.19166666, 0.15), (0.19166666, 0.13333334), (0.19166666, 0.13333334), (0.19166666, 0.15), (0.18333334, 0.15), (0.18333334, 0.13333334), (0.18333334, 0.13333334), (0.18333334, 0.15), (0.175, 0.15), (0.175, 0.13333334), (0.175, 0.13333334), (0.175, 0.15), (0.16666667, 0.15), (0.16666667, 0.13333334), (0.16666667, 0.13333334), (0.16666667, 0.15), (0.15833333, 0.15), (0.15833333, 0.13333334), (0.15833333, 0.13333334), (0.15833333, 0.15), (0.15, 0.15), (0.15, 0.13333334), (0.15, 0.13333334), (0.15, 0.15), (0.14166667, 0.15), (0.14166667, 0.13333334), (0.14166667, 0.13333334), (0.14166667, 0.15), (0.13333334, 0.15), (0.13333334, 0.13333334), (0.13333334, 0.13333334), (0.13333334, 0.15), (0.125, 0.15), (0.125, 0.13333334), (0.125, 0.13333334), (0.125, 0.15), (0.11666667, 0.15), (0.11666667, 0.13333334), (0.11666667, 0.13333334), (0.11666667, 0.15), (0.108333334, 0.15), (0.108333334, 0.13333334), (0.108333334, 0.13333334), (0.108333334, 0.15), (0.1, 0.15), (0.1, 0.13333334), (0.1, 0.13333334), (0.1, 0.15), (0.09166667, 0.15), (0.09166667, 0.13333334), (0.09166667, 0.13333334), (0.09166667, 0.15), (0.083333336, 0.15), (0.083333336, 0.13333334), (0.083333336, 0.13333334), (0.083333336, 0.15), (0.075, 0.15), (0.075, 0.13333334), (0.075, 0.13333334), (0.075, 0.15), (0.06666667, 0.15), (0.06666667, 0.13333334), (0.06666667, 0.13333334), (0.06666667, 0.15), (0.058333334, 0.15), (0.058333334, 0.13333334), (0.058333334, 0.13333334), (0.058333334, 0.15), (0.05, 0.15), (0.05, 0.13333334), (0.05, 0.13333334), (0.05, 0.15), (0.041666668, 0.15), (0.041666668, 0.13333334), (0.041666668, 0.13333334), (0.041666668, 0.15), (0.033333335, 0.15), (0.033333335, 0.13333334), (0.033333335, 0.13333334), (0.033333335, 0.15), (0.025, 0.15), (0.025, 0.13333334), (0.025, 0.13333334), (0.025, 0.15), (0.016666668, 0.15), (0.016666668, 0.13333334), (0.016666668, 0.13333334), (0.016666668, 0.15), (0.008333334, 0.15), (0.008333334, 0.13333334), (0.008333334, 0.13333334), (0.008333334, 0.15), (0, 0.15), (0, 0.13333334), (1, 0.15), (1, 0.16666667), (0.9916667, 0.16666667), (0.9916667, 0.15), (0.9916667, 0.15), (0.9916667, 0.16666667), (0.98333335, 0.16666667), (0.98333335, 0.15), (0.98333335, 0.15), (0.98333335, 0.16666667), (0.975, 0.16666667), (0.975, 0.15), (0.975, 0.15), (0.975, 0.16666667), (0.96666664, 0.16666667), (0.96666664, 0.15), (0.96666664, 0.15), (0.96666664, 0.16666667), (0.9583333, 0.16666667), (0.9583333, 0.15), (0.9583333, 0.15), (0.9583333, 0.16666667), (0.95, 0.16666667), (0.95, 0.15), (0.95, 0.15), (0.95, 0.16666667), (0.94166666, 0.16666667), (0.94166666, 0.15), (0.94166666, 0.15), (0.94166666, 0.16666667), (0.93333334, 0.16666667), (0.93333334, 0.15), (0.93333334, 0.15), (0.93333334, 0.16666667), (0.925, 0.16666667), (0.925, 0.15), (0.925, 0.15), (0.925, 0.16666667), (0.9166667, 0.16666667), (0.9166667, 0.15), (0.9166667, 0.15), (0.9166667, 0.16666667), (0.90833336, 0.16666667), (0.90833336, 0.15), (0.90833336, 0.15), (0.90833336, 0.16666667), (0.9, 0.16666667), (0.9, 0.15), (0.9, 0.15), (0.9, 0.16666667), (0.89166665, 0.16666667), (0.89166665, 0.15), (0.89166665, 0.15), (0.89166665, 0.16666667), (0.8833333, 0.16666667), (0.8833333, 0.15), (0.8833333, 0.15), (0.8833333, 0.16666667), (0.875, 0.16666667), (0.875, 0.15), (0.875, 0.15), (0.875, 0.16666667), (0.8666667, 0.16666667), (0.8666667, 0.15), (0.8666667, 0.15), (0.8666667, 0.16666667), (0.85833335, 0.16666667), (0.85833335, 0.15), (0.85833335, 0.15), (0.85833335, 0.16666667), (0.85, 0.16666667), (0.85, 0.15), (0.85, 0.15), (0.85, 0.16666667), (0.84166664, 0.16666667), (0.84166664, 0.15), (0.84166664, 0.15), (0.84166664, 0.16666667), (0.8333333, 0.16666667), (0.8333333, 0.15), (0.8333333, 0.15), (0.8333333, 0.16666667), (0.825, 0.16666667), (0.825, 0.15), (0.825, 0.15), (0.825, 0.16666667), (0.81666666, 0.16666667), (0.81666666, 0.15), (0.81666666, 0.15), (0.81666666, 0.16666667), (0.80833334, 0.16666667), (0.80833334, 0.15), (0.80833334, 0.15), (0.80833334, 0.16666667), (0.8, 0.16666667), (0.8, 0.15), (0.8, 0.15), (0.8, 0.16666667), (0.7916667, 0.16666667), (0.7916667, 0.15), (0.7916667, 0.15), (0.7916667, 0.16666667), (0.78333336, 0.16666667), (0.78333336, 0.15), (0.78333336, 0.15), (0.78333336, 0.16666667), (0.775, 0.16666667), (0.775, 0.15), (0.775, 0.15), (0.775, 0.16666667), (0.76666665, 0.16666667), (0.76666665, 0.15), (0.76666665, 0.15), (0.76666665, 0.16666667), (0.7583333, 0.16666667), (0.7583333, 0.15), (0.7583333, 0.15), (0.7583333, 0.16666667), (0.75, 0.16666667), (0.75, 0.15), (0.75, 0.15), (0.75, 0.16666667), (0.7416667, 0.16666667), (0.7416667, 0.15), (0.7416667, 0.15), (0.7416667, 0.16666667), (0.73333335, 0.16666667), (0.73333335, 0.15), (0.73333335, 0.15), (0.73333335, 0.16666667), (0.725, 0.16666667), (0.725, 0.15), (0.725, 0.15), (0.725, 0.16666667), (0.71666664, 0.16666667), (0.71666664, 0.15), (0.71666664, 0.15), (0.71666664, 0.16666667), (0.7083333, 0.16666667), (0.7083333, 0.15), (0.7083333, 0.15), (0.7083333, 0.16666667), (0.7, 0.16666667), (0.7, 0.15), (0.7, 0.15), (0.7, 0.16666667), (0.69166666, 0.16666667), (0.69166666, 0.15), (0.69166666, 0.15), (0.69166666, 0.16666667), (0.68333334, 0.16666667), (0.68333334, 0.15), (0.68333334, 0.15), (0.68333334, 0.16666667), (0.675, 0.16666667), (0.675, 0.15), (0.675, 0.15), (0.675, 0.16666667), (0.6666667, 0.16666667), (0.6666667, 0.15), (0.6666667, 0.15), (0.6666667, 0.16666667), (0.65833336, 0.16666667), (0.65833336, 0.15), (0.65833336, 0.15), (0.65833336, 0.16666667), (0.65, 0.16666667), (0.65, 0.15), (0.65, 0.15), (0.65, 0.16666667), (0.64166665, 0.16666667), (0.64166665, 0.15), (0.64166665, 0.15), (0.64166665, 0.16666667), (0.6333333, 0.16666667), (0.6333333, 0.15), (0.6333333, 0.15), (0.6333333, 0.16666667), (0.625, 0.16666667), (0.625, 0.15), (0.625, 0.15), (0.625, 0.16666667), (0.6166667, 0.16666667), (0.6166667, 0.15), (0.6166667, 0.15), (0.6166667, 0.16666667), (0.60833335, 0.16666667), (0.60833335, 0.15), (0.60833335, 0.15), (0.60833335, 0.16666667), (0.6, 0.16666667), (0.6, 0.15), (0.6, 0.15), (0.6, 0.16666667), (0.59166664, 0.16666667), (0.59166664, 0.15), (0.59166664, 0.15), (0.59166664, 0.16666667), (0.5833333, 0.16666667), (0.5833333, 0.15), (0.5833333, 0.15), (0.5833333, 0.16666667), (0.575, 0.16666667), (0.575, 0.15), (0.575, 0.15), (0.575, 0.16666667), (0.56666666, 0.16666667), (0.56666666, 0.15), (0.56666666, 0.15), (0.56666666, 0.16666667), (0.55833334, 0.16666667), (0.55833334, 0.15), (0.55833334, 0.15), (0.55833334, 0.16666667), (0.55, 0.16666667), (0.55, 0.15), (0.55, 0.15), (0.55, 0.16666667), (0.5416667, 0.16666667), (0.5416667, 0.15), (0.5416667, 0.15), (0.5416667, 0.16666667), (0.53333336, 0.16666667), (0.53333336, 0.15), (0.53333336, 0.15), (0.53333336, 0.16666667), (0.525, 0.16666667), (0.525, 0.15), (0.525, 0.15), (0.525, 0.16666667), (0.51666665, 0.16666667), (0.51666665, 0.15), (0.51666665, 0.15), (0.51666665, 0.16666667), (0.5083333, 0.16666667), (0.5083333, 0.15), (0.5083333, 0.15), (0.5083333, 0.16666667), (0.5, 0.16666667), (0.5, 0.15), (0.5, 0.15), (0.5, 0.16666667), (0.49166667, 0.16666667), (0.49166667, 0.15), (0.49166667, 0.15), (0.49166667, 0.16666667), (0.48333332, 0.16666667), (0.48333332, 0.15), (0.48333332, 0.15), (0.48333332, 0.16666667), (0.475, 0.16666667), (0.475, 0.15), (0.475, 0.15), (0.475, 0.16666667), (0.46666667, 0.16666667), (0.46666667, 0.15), (0.46666667, 0.15), (0.46666667, 0.16666667), (0.45833334, 0.16666667), (0.45833334, 0.15), (0.45833334, 0.15), (0.45833334, 0.16666667), (0.45, 0.16666667), (0.45, 0.15), (0.45, 0.15), (0.45, 0.16666667), (0.44166666, 0.16666667), (0.44166666, 0.15), (0.44166666, 0.15), (0.44166666, 0.16666667), (0.43333334, 0.16666667), (0.43333334, 0.15), (0.43333334, 0.15), (0.43333334, 0.16666667), (0.425, 0.16666667), (0.425, 0.15), (0.425, 0.15), (0.425, 0.16666667), (0.41666666, 0.16666667), (0.41666666, 0.15), (0.41666666, 0.15), (0.41666666, 0.16666667), (0.40833333, 0.16666667), (0.40833333, 0.15), (0.40833333, 0.15), (0.40833333, 0.16666667), (0.4, 0.16666667), (0.4, 0.15), (0.4, 0.15), (0.4, 0.16666667), (0.39166668, 0.16666667), (0.39166668, 0.15), (0.39166668, 0.15), (0.39166668, 0.16666667), (0.38333333, 0.16666667), (0.38333333, 0.15), (0.38333333, 0.15), (0.38333333, 0.16666667), (0.375, 0.16666667), (0.375, 0.15), (0.375, 0.15), (0.375, 0.16666667), (0.36666667, 0.16666667), (0.36666667, 0.15), (0.36666667, 0.15), (0.36666667, 0.16666667), (0.35833332, 0.16666667), (0.35833332, 0.15), (0.35833332, 0.15), (0.35833332, 0.16666667), (0.35, 0.16666667), (0.35, 0.15), (0.35, 0.15), (0.35, 0.16666667), (0.34166667, 0.16666667), (0.34166667, 0.15), (0.34166667, 0.15), (0.34166667, 0.16666667), (0.33333334, 0.16666667), (0.33333334, 0.15), (0.33333334, 0.15), (0.33333334, 0.16666667), (0.325, 0.16666667), (0.325, 0.15), (0.325, 0.15), (0.325, 0.16666667), (0.31666666, 0.16666667), (0.31666666, 0.15), (0.31666666, 0.15), (0.31666666, 0.16666667), (0.30833334, 0.16666667), (0.30833334, 0.15), (0.30833334, 0.15), (0.30833334, 0.16666667), (0.3, 0.16666667), (0.3, 0.15), (0.3, 0.15), (0.3, 0.16666667), (0.29166666, 0.16666667), (0.29166666, 0.15), (0.29166666, 0.15), (0.29166666, 0.16666667), (0.28333333, 0.16666667), (0.28333333, 0.15), (0.28333333, 0.15), (0.28333333, 0.16666667), (0.275, 0.16666667), (0.275, 0.15), (0.275, 0.15), (0.275, 0.16666667), (0.26666668, 0.16666667), (0.26666668, 0.15), (0.26666668, 0.15), (0.26666668, 0.16666667), (0.25833333, 0.16666667), (0.25833333, 0.15), (0.25833333, 0.15), (0.25833333, 0.16666667), (0.25, 0.16666667), (0.25, 0.15), (0.25, 0.15), (0.25, 0.16666667), (0.24166666, 0.16666667), (0.24166666, 0.15), (0.24166666, 0.15), (0.24166666, 0.16666667), (0.23333333, 0.16666667), (0.23333333, 0.15), (0.23333333, 0.15), (0.23333333, 0.16666667), (0.225, 0.16666667), (0.225, 0.15), (0.225, 0.15), (0.225, 0.16666667), (0.21666667, 0.16666667), (0.21666667, 0.15), (0.21666667, 0.15), (0.21666667, 0.16666667), (0.20833333, 0.16666667), (0.20833333, 0.15), (0.20833333, 0.15), (0.20833333, 0.16666667), (0.2, 0.16666667), (0.2, 0.15), (0.2, 0.15), (0.2, 0.16666667), (0.19166666, 0.16666667), (0.19166666, 0.15), (0.19166666, 0.15), (0.19166666, 0.16666667), (0.18333334, 0.16666667), (0.18333334, 0.15), (0.18333334, 0.15), (0.18333334, 0.16666667), (0.175, 0.16666667), (0.175, 0.15), (0.175, 0.15), (0.175, 0.16666667), (0.16666667, 0.16666667), (0.16666667, 0.15), (0.16666667, 0.15), (0.16666667, 0.16666667), (0.15833333, 0.16666667), (0.15833333, 0.15), (0.15833333, 0.15), (0.15833333, 0.16666667), (0.15, 0.16666667), (0.15, 0.15), (0.15, 0.15), (0.15, 0.16666667), (0.14166667, 0.16666667), (0.14166667, 0.15), (0.14166667, 0.15), (0.14166667, 0.16666667), (0.13333334, 0.16666667), (0.13333334, 0.15), (0.13333334, 0.15), (0.13333334, 0.16666667), (0.125, 0.16666667), (0.125, 0.15), (0.125, 0.15), (0.125, 0.16666667), (0.11666667, 0.16666667), (0.11666667, 0.15), (0.11666667, 0.15), (0.11666667, 0.16666667), (0.108333334, 0.16666667), (0.108333334, 0.15), (0.108333334, 0.15), (0.108333334, 0.16666667), (0.1, 0.16666667), (0.1, 0.15), (0.1, 0.15), (0.1, 0.16666667), (0.09166667, 0.16666667), (0.09166667, 0.15), (0.09166667, 0.15), (0.09166667, 0.16666667), (0.083333336, 0.16666667), (0.083333336, 0.15), (0.083333336, 0.15), (0.083333336, 0.16666667), (0.075, 0.16666667), (0.075, 0.15), (0.075, 0.15), (0.075, 0.16666667), (0.06666667, 0.16666667), (0.06666667, 0.15), (0.06666667, 0.15), (0.06666667, 0.16666667), (0.058333334, 0.16666667), (0.058333334, 0.15), (0.058333334, 0.15), (0.058333334, 0.16666667), (0.05, 0.16666667), (0.05, 0.15), (0.05, 0.15), (0.05, 0.16666667), (0.041666668, 0.16666667), (0.041666668, 0.15), (0.041666668, 0.15), (0.041666668, 0.16666667), (0.033333335, 0.16666667), (0.033333335, 0.15), (0.033333335, 0.15), (0.033333335, 0.16666667), (0.025, 0.16666667), (0.025, 0.15), (0.025, 0.15), (0.025, 0.16666667), (0.016666668, 0.16666667), (0.016666668, 0.15), (0.016666668, 0.15), (0.016666668, 0.16666667), (0.008333334, 0.16666667), (0.008333334, 0.15), (0.008333334, 0.15), (0.008333334, 0.16666667), (0, 0.16666667), (0, 0.15), (1, 0.16666667), (1, 0.18333334), (0.9916667, 0.18333334), (0.9916667, 0.16666667), (0.9916667, 0.16666667), (0.9916667, 0.18333334), (0.98333335, 0.18333334), (0.98333335, 0.16666667), (0.98333335, 0.16666667), (0.98333335, 0.18333334), (0.975, 0.18333334), (0.975, 0.16666667), (0.975, 0.16666667), (0.975, 0.18333334), (0.96666664, 0.18333334), (0.96666664, 0.16666667), (0.96666664, 0.16666667), (0.96666664, 0.18333334), (0.9583333, 0.18333334), (0.9583333, 0.16666667), (0.9583333, 0.16666667), (0.9583333, 0.18333334), (0.95, 0.18333334), (0.95, 0.16666667), (0.95, 0.16666667), (0.95, 0.18333334), (0.94166666, 0.18333334), (0.94166666, 0.16666667), (0.94166666, 0.16666667), (0.94166666, 0.18333334), (0.93333334, 0.18333334), (0.93333334, 0.16666667), (0.93333334, 0.16666667), (0.93333334, 0.18333334), (0.925, 0.18333334), (0.925, 0.16666667), (0.925, 0.16666667), (0.925, 0.18333334), (0.9166667, 0.18333334), (0.9166667, 0.16666667), (0.9166667, 0.16666667), (0.9166667, 0.18333334), (0.90833336, 0.18333334), (0.90833336, 0.16666667), (0.90833336, 0.16666667), (0.90833336, 0.18333334), (0.9, 0.18333334), (0.9, 0.16666667), (0.9, 0.16666667), (0.9, 0.18333334), (0.89166665, 0.18333334), (0.89166665, 0.16666667), (0.89166665, 0.16666667), (0.89166665, 0.18333334), (0.8833333, 0.18333334), (0.8833333, 0.16666667), (0.8833333, 0.16666667), (0.8833333, 0.18333334), (0.875, 0.18333334), (0.875, 0.16666667), (0.875, 0.16666667), (0.875, 0.18333334), (0.8666667, 0.18333334), (0.8666667, 0.16666667), (0.8666667, 0.16666667), (0.8666667, 0.18333334), (0.85833335, 0.18333334), (0.85833335, 0.16666667), (0.85833335, 0.16666667), (0.85833335, 0.18333334), (0.85, 0.18333334), (0.85, 0.16666667), (0.85, 0.16666667), (0.85, 0.18333334), (0.84166664, 0.18333334), (0.84166664, 0.16666667), (0.84166664, 0.16666667), (0.84166664, 0.18333334), (0.8333333, 0.18333334), (0.8333333, 0.16666667), (0.8333333, 0.16666667), (0.8333333, 0.18333334), (0.825, 0.18333334), (0.825, 0.16666667), (0.825, 0.16666667), (0.825, 0.18333334), (0.81666666, 0.18333334), (0.81666666, 0.16666667), (0.81666666, 0.16666667), (0.81666666, 0.18333334), (0.80833334, 0.18333334), (0.80833334, 0.16666667), (0.80833334, 0.16666667), (0.80833334, 0.18333334), (0.8, 0.18333334), (0.8, 0.16666667), (0.8, 0.16666667), (0.8, 0.18333334), (0.7916667, 0.18333334), (0.7916667, 0.16666667), (0.7916667, 0.16666667), (0.7916667, 0.18333334), (0.78333336, 0.18333334), (0.78333336, 0.16666667), (0.78333336, 0.16666667), (0.78333336, 0.18333334), (0.775, 0.18333334), (0.775, 0.16666667), (0.775, 0.16666667), (0.775, 0.18333334), (0.76666665, 0.18333334), (0.76666665, 0.16666667), (0.76666665, 0.16666667), (0.76666665, 0.18333334), (0.7583333, 0.18333334), (0.7583333, 0.16666667), (0.7583333, 0.16666667), (0.7583333, 0.18333334), (0.75, 0.18333334), (0.75, 0.16666667), (0.75, 0.16666667), (0.75, 0.18333334), (0.7416667, 0.18333334), (0.7416667, 0.16666667), (0.7416667, 0.16666667), (0.7416667, 0.18333334), (0.73333335, 0.18333334), (0.73333335, 0.16666667), (0.73333335, 0.16666667), (0.73333335, 0.18333334), (0.725, 0.18333334), (0.725, 0.16666667), (0.725, 0.16666667), (0.725, 0.18333334), (0.71666664, 0.18333334), (0.71666664, 0.16666667), (0.71666664, 0.16666667), (0.71666664, 0.18333334), (0.7083333, 0.18333334), (0.7083333, 0.16666667), (0.7083333, 0.16666667), (0.7083333, 0.18333334), (0.7, 0.18333334), (0.7, 0.16666667), (0.7, 0.16666667), (0.7, 0.18333334), (0.69166666, 0.18333334), (0.69166666, 0.16666667), (0.69166666, 0.16666667), (0.69166666, 0.18333334), (0.68333334, 0.18333334), (0.68333334, 0.16666667), (0.68333334, 0.16666667), (0.68333334, 0.18333334), (0.675, 0.18333334), (0.675, 0.16666667), (0.675, 0.16666667), (0.675, 0.18333334), (0.6666667, 0.18333334), (0.6666667, 0.16666667), (0.6666667, 0.16666667), (0.6666667, 0.18333334), (0.65833336, 0.18333334), (0.65833336, 0.16666667), (0.65833336, 0.16666667), (0.65833336, 0.18333334), (0.65, 0.18333334), (0.65, 0.16666667), (0.65, 0.16666667), (0.65, 0.18333334), (0.64166665, 0.18333334), (0.64166665, 0.16666667), (0.64166665, 0.16666667), (0.64166665, 0.18333334), (0.6333333, 0.18333334), (0.6333333, 0.16666667), (0.6333333, 0.16666667), (0.6333333, 0.18333334), (0.625, 0.18333334), (0.625, 0.16666667), (0.625, 0.16666667), (0.625, 0.18333334), (0.6166667, 0.18333334), (0.6166667, 0.16666667), (0.6166667, 0.16666667), (0.6166667, 0.18333334), (0.60833335, 0.18333334), (0.60833335, 0.16666667), (0.60833335, 0.16666667), (0.60833335, 0.18333334), (0.6, 0.18333334), (0.6, 0.16666667), (0.6, 0.16666667), (0.6, 0.18333334), (0.59166664, 0.18333334), (0.59166664, 0.16666667), (0.59166664, 0.16666667), (0.59166664, 0.18333334), (0.5833333, 0.18333334), (0.5833333, 0.16666667), (0.5833333, 0.16666667), (0.5833333, 0.18333334), (0.575, 0.18333334), (0.575, 0.16666667), (0.575, 0.16666667), (0.575, 0.18333334), (0.56666666, 0.18333334), (0.56666666, 0.16666667), (0.56666666, 0.16666667), (0.56666666, 0.18333334), (0.55833334, 0.18333334), (0.55833334, 0.16666667), (0.55833334, 0.16666667), (0.55833334, 0.18333334), (0.55, 0.18333334), (0.55, 0.16666667), (0.55, 0.16666667), (0.55, 0.18333334), (0.5416667, 0.18333334), (0.5416667, 0.16666667), (0.5416667, 0.16666667), (0.5416667, 0.18333334), (0.53333336, 0.18333334), (0.53333336, 0.16666667), (0.53333336, 0.16666667), (0.53333336, 0.18333334), (0.525, 0.18333334), (0.525, 0.16666667), (0.525, 0.16666667), (0.525, 0.18333334), (0.51666665, 0.18333334), (0.51666665, 0.16666667), (0.51666665, 0.16666667), (0.51666665, 0.18333334), (0.5083333, 0.18333334), (0.5083333, 0.16666667), (0.5083333, 0.16666667), (0.5083333, 0.18333334), (0.5, 0.18333334), (0.5, 0.16666667), (0.5, 0.16666667), (0.5, 0.18333334), (0.49166667, 0.18333334), (0.49166667, 0.16666667), (0.49166667, 0.16666667), (0.49166667, 0.18333334), (0.48333332, 0.18333334), (0.48333332, 0.16666667), (0.48333332, 0.16666667), (0.48333332, 0.18333334), (0.475, 0.18333334), (0.475, 0.16666667), (0.475, 0.16666667), (0.475, 0.18333334), (0.46666667, 0.18333334), (0.46666667, 0.16666667), (0.46666667, 0.16666667), (0.46666667, 0.18333334), (0.45833334, 0.18333334), (0.45833334, 0.16666667), (0.45833334, 0.16666667), (0.45833334, 0.18333334), (0.45, 0.18333334), (0.45, 0.16666667), (0.45, 0.16666667), (0.45, 0.18333334), (0.44166666, 0.18333334), (0.44166666, 0.16666667), (0.44166666, 0.16666667), (0.44166666, 0.18333334), (0.43333334, 0.18333334), (0.43333334, 0.16666667), (0.43333334, 0.16666667), (0.43333334, 0.18333334), (0.425, 0.18333334), (0.425, 0.16666667), (0.425, 0.16666667), (0.425, 0.18333334), (0.41666666, 0.18333334), (0.41666666, 0.16666667), (0.41666666, 0.16666667), (0.41666666, 0.18333334), (0.40833333, 0.18333334), (0.40833333, 0.16666667), (0.40833333, 0.16666667), (0.40833333, 0.18333334), (0.4, 0.18333334), (0.4, 0.16666667), (0.4, 0.16666667), (0.4, 0.18333334), (0.39166668, 0.18333334), (0.39166668, 0.16666667), (0.39166668, 0.16666667), (0.39166668, 0.18333334), (0.38333333, 0.18333334), (0.38333333, 0.16666667), (0.38333333, 0.16666667), (0.38333333, 0.18333334), (0.375, 0.18333334), (0.375, 0.16666667), (0.375, 0.16666667), (0.375, 0.18333334), (0.36666667, 0.18333334), (0.36666667, 0.16666667), (0.36666667, 0.16666667), (0.36666667, 0.18333334), (0.35833332, 0.18333334), (0.35833332, 0.16666667), (0.35833332, 0.16666667), (0.35833332, 0.18333334), (0.35, 0.18333334), (0.35, 0.16666667), (0.35, 0.16666667), (0.35, 0.18333334), (0.34166667, 0.18333334), (0.34166667, 0.16666667), (0.34166667, 0.16666667), (0.34166667, 0.18333334), (0.33333334, 0.18333334), (0.33333334, 0.16666667), (0.33333334, 0.16666667), (0.33333334, 0.18333334), (0.325, 0.18333334), (0.325, 0.16666667), (0.325, 0.16666667), (0.325, 0.18333334), (0.31666666, 0.18333334), (0.31666666, 0.16666667), (0.31666666, 0.16666667), (0.31666666, 0.18333334), (0.30833334, 0.18333334), (0.30833334, 0.16666667), (0.30833334, 0.16666667), (0.30833334, 0.18333334), (0.3, 0.18333334), (0.3, 0.16666667), (0.3, 0.16666667), (0.3, 0.18333334), (0.29166666, 0.18333334), (0.29166666, 0.16666667), (0.29166666, 0.16666667), (0.29166666, 0.18333334), (0.28333333, 0.18333334), (0.28333333, 0.16666667), (0.28333333, 0.16666667), (0.28333333, 0.18333334), (0.275, 0.18333334), (0.275, 0.16666667), (0.275, 0.16666667), (0.275, 0.18333334), (0.26666668, 0.18333334), (0.26666668, 0.16666667), (0.26666668, 0.16666667), (0.26666668, 0.18333334), (0.25833333, 0.18333334), (0.25833333, 0.16666667), (0.25833333, 0.16666667), (0.25833333, 0.18333334), (0.25, 0.18333334), (0.25, 0.16666667), (0.25, 0.16666667), (0.25, 0.18333334), (0.24166666, 0.18333334), (0.24166666, 0.16666667), (0.24166666, 0.16666667), (0.24166666, 0.18333334), (0.23333333, 0.18333334), (0.23333333, 0.16666667), (0.23333333, 0.16666667), (0.23333333, 0.18333334), (0.225, 0.18333334), (0.225, 0.16666667), (0.225, 0.16666667), (0.225, 0.18333334), (0.21666667, 0.18333334), (0.21666667, 0.16666667), (0.21666667, 0.16666667), (0.21666667, 0.18333334), (0.20833333, 0.18333334), (0.20833333, 0.16666667), (0.20833333, 0.16666667), (0.20833333, 0.18333334), (0.2, 0.18333334), (0.2, 0.16666667), (0.2, 0.16666667), (0.2, 0.18333334), (0.19166666, 0.18333334), (0.19166666, 0.16666667), (0.19166666, 0.16666667), (0.19166666, 0.18333334), (0.18333334, 0.18333334), (0.18333334, 0.16666667), (0.18333334, 0.16666667), (0.18333334, 0.18333334), (0.175, 0.18333334), (0.175, 0.16666667), (0.175, 0.16666667), (0.175, 0.18333334), (0.16666667, 0.18333334), (0.16666667, 0.16666667), (0.16666667, 0.16666667), (0.16666667, 0.18333334), (0.15833333, 0.18333334), (0.15833333, 0.16666667), (0.15833333, 0.16666667), (0.15833333, 0.18333334), (0.15, 0.18333334), (0.15, 0.16666667), (0.15, 0.16666667), (0.15, 0.18333334), (0.14166667, 0.18333334), (0.14166667, 0.16666667), (0.14166667, 0.16666667), (0.14166667, 0.18333334), (0.13333334, 0.18333334), (0.13333334, 0.16666667), (0.13333334, 0.16666667), (0.13333334, 0.18333334), (0.125, 0.18333334), (0.125, 0.16666667), (0.125, 0.16666667), (0.125, 0.18333334), (0.11666667, 0.18333334), (0.11666667, 0.16666667), (0.11666667, 0.16666667), (0.11666667, 0.18333334), (0.108333334, 0.18333334), (0.108333334, 0.16666667), (0.108333334, 0.16666667), (0.108333334, 0.18333334), (0.1, 0.18333334), (0.1, 0.16666667), (0.1, 0.16666667), (0.1, 0.18333334), (0.09166667, 0.18333334), (0.09166667, 0.16666667), (0.09166667, 0.16666667), (0.09166667, 0.18333334), (0.083333336, 0.18333334), (0.083333336, 0.16666667), (0.083333336, 0.16666667), (0.083333336, 0.18333334), (0.075, 0.18333334), (0.075, 0.16666667), (0.075, 0.16666667), (0.075, 0.18333334), (0.06666667, 0.18333334), (0.06666667, 0.16666667), (0.06666667, 0.16666667), (0.06666667, 0.18333334), (0.058333334, 0.18333334), (0.058333334, 0.16666667), (0.058333334, 0.16666667), (0.058333334, 0.18333334), (0.05, 0.18333334), (0.05, 0.16666667), (0.05, 0.16666667), (0.05, 0.18333334), (0.041666668, 0.18333334), (0.041666668, 0.16666667), (0.041666668, 0.16666667), (0.041666668, 0.18333334), (0.033333335, 0.18333334), (0.033333335, 0.16666667), (0.033333335, 0.16666667), (0.033333335, 0.18333334), (0.025, 0.18333334), (0.025, 0.16666667), (0.025, 0.16666667), (0.025, 0.18333334), (0.016666668, 0.18333334), (0.016666668, 0.16666667), (0.016666668, 0.16666667), (0.016666668, 0.18333334), (0.008333334, 0.18333334), (0.008333334, 0.16666667), (0.008333334, 0.16666667), (0.008333334, 0.18333334), (0, 0.18333334), (0, 0.16666667), (1, 0.18333334), (1, 0.2), (0.9916667, 0.2), (0.9916667, 0.18333334), (0.9916667, 0.18333334), (0.9916667, 0.2), (0.98333335, 0.2), (0.98333335, 0.18333334), (0.98333335, 0.18333334), (0.98333335, 0.2), (0.975, 0.2), (0.975, 0.18333334), (0.975, 0.18333334), (0.975, 0.2), (0.96666664, 0.2), (0.96666664, 0.18333334), (0.96666664, 0.18333334), (0.96666664, 0.2), (0.9583333, 0.2), (0.9583333, 0.18333334), (0.9583333, 0.18333334), (0.9583333, 0.2), (0.95, 0.2), (0.95, 0.18333334), (0.95, 0.18333334), (0.95, 0.2), (0.94166666, 0.2), (0.94166666, 0.18333334), (0.94166666, 0.18333334), (0.94166666, 0.2), (0.93333334, 0.2), (0.93333334, 0.18333334), (0.93333334, 0.18333334), (0.93333334, 0.2), (0.925, 0.2), (0.925, 0.18333334), (0.925, 0.18333334), (0.925, 0.2), (0.9166667, 0.2), (0.9166667, 0.18333334), (0.9166667, 0.18333334), (0.9166667, 0.2), (0.90833336, 0.2), (0.90833336, 0.18333334), (0.90833336, 0.18333334), (0.90833336, 0.2), (0.9, 0.2), (0.9, 0.18333334), (0.9, 0.18333334), (0.9, 0.2), (0.89166665, 0.2), (0.89166665, 0.18333334), (0.89166665, 0.18333334), (0.89166665, 0.2), (0.8833333, 0.2), (0.8833333, 0.18333334), (0.8833333, 0.18333334), (0.8833333, 0.2), (0.875, 0.2), (0.875, 0.18333334), (0.875, 0.18333334), (0.875, 0.2), (0.8666667, 0.2), (0.8666667, 0.18333334), (0.8666667, 0.18333334), (0.8666667, 0.2), (0.85833335, 0.2), (0.85833335, 0.18333334), (0.85833335, 0.18333334), (0.85833335, 0.2), (0.85, 0.2), (0.85, 0.18333334), (0.85, 0.18333334), (0.85, 0.2), (0.84166664, 0.2), (0.84166664, 0.18333334), (0.84166664, 0.18333334), (0.84166664, 0.2), (0.8333333, 0.2), (0.8333333, 0.18333334), (0.8333333, 0.18333334), (0.8333333, 0.2), (0.825, 0.2), (0.825, 0.18333334), (0.825, 0.18333334), (0.825, 0.2), (0.81666666, 0.2), (0.81666666, 0.18333334), (0.81666666, 0.18333334), (0.81666666, 0.2), (0.80833334, 0.2), (0.80833334, 0.18333334), (0.80833334, 0.18333334), (0.80833334, 0.2), (0.8, 0.2), (0.8, 0.18333334), (0.8, 0.18333334), (0.8, 0.2), (0.7916667, 0.2), (0.7916667, 0.18333334), (0.7916667, 0.18333334), (0.7916667, 0.2), (0.78333336, 0.2), (0.78333336, 0.18333334), (0.78333336, 0.18333334), (0.78333336, 0.2), (0.775, 0.2), (0.775, 0.18333334), (0.775, 0.18333334), (0.775, 0.2), (0.76666665, 0.2), (0.76666665, 0.18333334), (0.76666665, 0.18333334), (0.76666665, 0.2), (0.7583333, 0.2), (0.7583333, 0.18333334), (0.7583333, 0.18333334), (0.7583333, 0.2), (0.75, 0.2), (0.75, 0.18333334), (0.75, 0.18333334), (0.75, 0.2), (0.7416667, 0.2), (0.7416667, 0.18333334), (0.7416667, 0.18333334), (0.7416667, 0.2), (0.73333335, 0.2), (0.73333335, 0.18333334), (0.73333335, 0.18333334), (0.73333335, 0.2), (0.725, 0.2), (0.725, 0.18333334), (0.725, 0.18333334), (0.725, 0.2), (0.71666664, 0.2), (0.71666664, 0.18333334), (0.71666664, 0.18333334), (0.71666664, 0.2), (0.7083333, 0.2), (0.7083333, 0.18333334), (0.7083333, 0.18333334), (0.7083333, 0.2), (0.7, 0.2), (0.7, 0.18333334), (0.7, 0.18333334), (0.7, 0.2), (0.69166666, 0.2), (0.69166666, 0.18333334), (0.69166666, 0.18333334), (0.69166666, 0.2), (0.68333334, 0.2), (0.68333334, 0.18333334), (0.68333334, 0.18333334), (0.68333334, 0.2), (0.675, 0.2), (0.675, 0.18333334), (0.675, 0.18333334), (0.675, 0.2), (0.6666667, 0.2), (0.6666667, 0.18333334), (0.6666667, 0.18333334), (0.6666667, 0.2), (0.65833336, 0.2), (0.65833336, 0.18333334), (0.65833336, 0.18333334), (0.65833336, 0.2), (0.65, 0.2), (0.65, 0.18333334), (0.65, 0.18333334), (0.65, 0.2), (0.64166665, 0.2), (0.64166665, 0.18333334), (0.64166665, 0.18333334), (0.64166665, 0.2), (0.6333333, 0.2), (0.6333333, 0.18333334), (0.6333333, 0.18333334), (0.6333333, 0.2), (0.625, 0.2), (0.625, 0.18333334), (0.625, 0.18333334), (0.625, 0.2), (0.6166667, 0.2), (0.6166667, 0.18333334), (0.6166667, 0.18333334), (0.6166667, 0.2), (0.60833335, 0.2), (0.60833335, 0.18333334), (0.60833335, 0.18333334), (0.60833335, 0.2), (0.6, 0.2), (0.6, 0.18333334), (0.6, 0.18333334), (0.6, 0.2), (0.59166664, 0.2), (0.59166664, 0.18333334), (0.59166664, 0.18333334), (0.59166664, 0.2), (0.5833333, 0.2), (0.5833333, 0.18333334), (0.5833333, 0.18333334), (0.5833333, 0.2), (0.575, 0.2), (0.575, 0.18333334), (0.575, 0.18333334), (0.575, 0.2), (0.56666666, 0.2), (0.56666666, 0.18333334), (0.56666666, 0.18333334), (0.56666666, 0.2), (0.55833334, 0.2), (0.55833334, 0.18333334), (0.55833334, 0.18333334), (0.55833334, 0.2), (0.55, 0.2), (0.55, 0.18333334), (0.55, 0.18333334), (0.55, 0.2), (0.5416667, 0.2), (0.5416667, 0.18333334), (0.5416667, 0.18333334), (0.5416667, 0.2), (0.53333336, 0.2), (0.53333336, 0.18333334), (0.53333336, 0.18333334), (0.53333336, 0.2), (0.525, 0.2), (0.525, 0.18333334), (0.525, 0.18333334), (0.525, 0.2), (0.51666665, 0.2), (0.51666665, 0.18333334), (0.51666665, 0.18333334), (0.51666665, 0.2), (0.5083333, 0.2), (0.5083333, 0.18333334), (0.5083333, 0.18333334), (0.5083333, 0.2), (0.5, 0.2), (0.5, 0.18333334), (0.5, 0.18333334), (0.5, 0.2), (0.49166667, 0.2), (0.49166667, 0.18333334), (0.49166667, 0.18333334), (0.49166667, 0.2), (0.48333332, 0.2), (0.48333332, 0.18333334), (0.48333332, 0.18333334), (0.48333332, 0.2), (0.475, 0.2), (0.475, 0.18333334), (0.475, 0.18333334), (0.475, 0.2), (0.46666667, 0.2), (0.46666667, 0.18333334), (0.46666667, 0.18333334), (0.46666667, 0.2), (0.45833334, 0.2), (0.45833334, 0.18333334), (0.45833334, 0.18333334), (0.45833334, 0.2), (0.45, 0.2), (0.45, 0.18333334), (0.45, 0.18333334), (0.45, 0.2), (0.44166666, 0.2), (0.44166666, 0.18333334), (0.44166666, 0.18333334), (0.44166666, 0.2), (0.43333334, 0.2), (0.43333334, 0.18333334), (0.43333334, 0.18333334), (0.43333334, 0.2), (0.425, 0.2), (0.425, 0.18333334), (0.425, 0.18333334), (0.425, 0.2), (0.41666666, 0.2), (0.41666666, 0.18333334), (0.41666666, 0.18333334), (0.41666666, 0.2), (0.40833333, 0.2), (0.40833333, 0.18333334), (0.40833333, 0.18333334), (0.40833333, 0.2), (0.4, 0.2), (0.4, 0.18333334), (0.4, 0.18333334), (0.4, 0.2), (0.39166668, 0.2), (0.39166668, 0.18333334), (0.39166668, 0.18333334), (0.39166668, 0.2), (0.38333333, 0.2), (0.38333333, 0.18333334), (0.38333333, 0.18333334), (0.38333333, 0.2), (0.375, 0.2), (0.375, 0.18333334), (0.375, 0.18333334), (0.375, 0.2), (0.36666667, 0.2), (0.36666667, 0.18333334), (0.36666667, 0.18333334), (0.36666667, 0.2), (0.35833332, 0.2), (0.35833332, 0.18333334), (0.35833332, 0.18333334), (0.35833332, 0.2), (0.35, 0.2), (0.35, 0.18333334), (0.35, 0.18333334), (0.35, 0.2), (0.34166667, 0.2), (0.34166667, 0.18333334), (0.34166667, 0.18333334), (0.34166667, 0.2), (0.33333334, 0.2), (0.33333334, 0.18333334), (0.33333334, 0.18333334), (0.33333334, 0.2), (0.325, 0.2), (0.325, 0.18333334), (0.325, 0.18333334), (0.325, 0.2), (0.31666666, 0.2), (0.31666666, 0.18333334), (0.31666666, 0.18333334), (0.31666666, 0.2), (0.30833334, 0.2), (0.30833334, 0.18333334), (0.30833334, 0.18333334), (0.30833334, 0.2), (0.3, 0.2), (0.3, 0.18333334), (0.3, 0.18333334), (0.3, 0.2), (0.29166666, 0.2), (0.29166666, 0.18333334), (0.29166666, 0.18333334), (0.29166666, 0.2), (0.28333333, 0.2), (0.28333333, 0.18333334), (0.28333333, 0.18333334), (0.28333333, 0.2), (0.275, 0.2), (0.275, 0.18333334), (0.275, 0.18333334), (0.275, 0.2), (0.26666668, 0.2), (0.26666668, 0.18333334), (0.26666668, 0.18333334), (0.26666668, 0.2), (0.25833333, 0.2), (0.25833333, 0.18333334), (0.25833333, 0.18333334), (0.25833333, 0.2), (0.25, 0.2), (0.25, 0.18333334), (0.25, 0.18333334), (0.25, 0.2), (0.24166666, 0.2), (0.24166666, 0.18333334), (0.24166666, 0.18333334), (0.24166666, 0.2), (0.23333333, 0.2), (0.23333333, 0.18333334), (0.23333333, 0.18333334), (0.23333333, 0.2), (0.225, 0.2), (0.225, 0.18333334), (0.225, 0.18333334), (0.225, 0.2), (0.21666667, 0.2), (0.21666667, 0.18333334), (0.21666667, 0.18333334), (0.21666667, 0.2), (0.20833333, 0.2), (0.20833333, 0.18333334), (0.20833333, 0.18333334), (0.20833333, 0.2), (0.2, 0.2), (0.2, 0.18333334), (0.2, 0.18333334), (0.2, 0.2), (0.19166666, 0.2), (0.19166666, 0.18333334), (0.19166666, 0.18333334), (0.19166666, 0.2), (0.18333334, 0.2), (0.18333334, 0.18333334), (0.18333334, 0.18333334), (0.18333334, 0.2), (0.175, 0.2), (0.175, 0.18333334), (0.175, 0.18333334), (0.175, 0.2), (0.16666667, 0.2), (0.16666667, 0.18333334), (0.16666667, 0.18333334), (0.16666667, 0.2), (0.15833333, 0.2), (0.15833333, 0.18333334), (0.15833333, 0.18333334), (0.15833333, 0.2), (0.15, 0.2), (0.15, 0.18333334), (0.15, 0.18333334), (0.15, 0.2), (0.14166667, 0.2), (0.14166667, 0.18333334), (0.14166667, 0.18333334), (0.14166667, 0.2), (0.13333334, 0.2), (0.13333334, 0.18333334), (0.13333334, 0.18333334), (0.13333334, 0.2), (0.125, 0.2), (0.125, 0.18333334), (0.125, 0.18333334), (0.125, 0.2), (0.11666667, 0.2), (0.11666667, 0.18333334), (0.11666667, 0.18333334), (0.11666667, 0.2), (0.108333334, 0.2), (0.108333334, 0.18333334), (0.108333334, 0.18333334), (0.108333334, 0.2), (0.1, 0.2), (0.1, 0.18333334), (0.1, 0.18333334), (0.1, 0.2), (0.09166667, 0.2), (0.09166667, 0.18333334), (0.09166667, 0.18333334), (0.09166667, 0.2), (0.083333336, 0.2), (0.083333336, 0.18333334), (0.083333336, 0.18333334), (0.083333336, 0.2), (0.075, 0.2), (0.075, 0.18333334), (0.075, 0.18333334), (0.075, 0.2), (0.06666667, 0.2), (0.06666667, 0.18333334), (0.06666667, 0.18333334), (0.06666667, 0.2), (0.058333334, 0.2), (0.058333334, 0.18333334), (0.058333334, 0.18333334), (0.058333334, 0.2), (0.05, 0.2), (0.05, 0.18333334), (0.05, 0.18333334), (0.05, 0.2), (0.041666668, 0.2), (0.041666668, 0.18333334), (0.041666668, 0.18333334), (0.041666668, 0.2), (0.033333335, 0.2), (0.033333335, 0.18333334), (0.033333335, 0.18333334), (0.033333335, 0.2), (0.025, 0.2), (0.025, 0.18333334), (0.025, 0.18333334), (0.025, 0.2), (0.016666668, 0.2), (0.016666668, 0.18333334), (0.016666668, 0.18333334), (0.016666668, 0.2), (0.008333334, 0.2), (0.008333334, 0.18333334), (0.008333334, 0.18333334), (0.008333334, 0.2), (0, 0.2), (0, 0.18333334), (1, 0.2), (1, 0.21666667), (0.9916667, 0.21666667), (0.9916667, 0.2), (0.9916667, 0.2), (0.9916667, 0.21666667), (0.98333335, 0.21666667), (0.98333335, 0.2), (0.98333335, 0.2), (0.98333335, 0.21666667), (0.975, 0.21666667), (0.975, 0.2), (0.975, 0.2), (0.975, 0.21666667), (0.96666664, 0.21666667), (0.96666664, 0.2), (0.96666664, 0.2), (0.96666664, 0.21666667), (0.9583333, 0.21666667), (0.9583333, 0.2), (0.9583333, 0.2), (0.9583333, 0.21666667), (0.95, 0.21666667), (0.95, 0.2), (0.95, 0.2), (0.95, 0.21666667), (0.94166666, 0.21666667), (0.94166666, 0.2), (0.94166666, 0.2), (0.94166666, 0.21666667), (0.93333334, 0.21666667), (0.93333334, 0.2), (0.93333334, 0.2), (0.93333334, 0.21666667), (0.925, 0.21666667), (0.925, 0.2), (0.925, 0.2), (0.925, 0.21666667), (0.9166667, 0.21666667), (0.9166667, 0.2), (0.9166667, 0.2), (0.9166667, 0.21666667), (0.90833336, 0.21666667), (0.90833336, 0.2), (0.90833336, 0.2), (0.90833336, 0.21666667), (0.9, 0.21666667), (0.9, 0.2), (0.9, 0.2), (0.9, 0.21666667), (0.89166665, 0.21666667), (0.89166665, 0.2), (0.89166665, 0.2), (0.89166665, 0.21666667), (0.8833333, 0.21666667), (0.8833333, 0.2), (0.8833333, 0.2), (0.8833333, 0.21666667), (0.875, 0.21666667), (0.875, 0.2), (0.875, 0.2), (0.875, 0.21666667), (0.8666667, 0.21666667), (0.8666667, 0.2), (0.8666667, 0.2), (0.8666667, 0.21666667), (0.85833335, 0.21666667), (0.85833335, 0.2), (0.85833335, 0.2), (0.85833335, 0.21666667), (0.85, 0.21666667), (0.85, 0.2), (0.85, 0.2), (0.85, 0.21666667), (0.84166664, 0.21666667), (0.84166664, 0.2), (0.84166664, 0.2), (0.84166664, 0.21666667), (0.8333333, 0.21666667), (0.8333333, 0.2), (0.8333333, 0.2), (0.8333333, 0.21666667), (0.825, 0.21666667), (0.825, 0.2), (0.825, 0.2), (0.825, 0.21666667), (0.81666666, 0.21666667), (0.81666666, 0.2), (0.81666666, 0.2), (0.81666666, 0.21666667), (0.80833334, 0.21666667), (0.80833334, 0.2), (0.80833334, 0.2), (0.80833334, 0.21666667), (0.8, 0.21666667), (0.8, 0.2), (0.8, 0.2), (0.8, 0.21666667), (0.7916667, 0.21666667), (0.7916667, 0.2), (0.7916667, 0.2), (0.7916667, 0.21666667), (0.78333336, 0.21666667), (0.78333336, 0.2), (0.78333336, 0.2), (0.78333336, 0.21666667), (0.775, 0.21666667), (0.775, 0.2), (0.775, 0.2), (0.775, 0.21666667), (0.76666665, 0.21666667), (0.76666665, 0.2), (0.76666665, 0.2), (0.76666665, 0.21666667), (0.7583333, 0.21666667), (0.7583333, 0.2), (0.7583333, 0.2), (0.7583333, 0.21666667), (0.75, 0.21666667), (0.75, 0.2), (0.75, 0.2), (0.75, 0.21666667), (0.7416667, 0.21666667), (0.7416667, 0.2), (0.7416667, 0.2), (0.7416667, 0.21666667), (0.73333335, 0.21666667), (0.73333335, 0.2), (0.73333335, 0.2), (0.73333335, 0.21666667), (0.725, 0.21666667), (0.725, 0.2), (0.725, 0.2), (0.725, 0.21666667), (0.71666664, 0.21666667), (0.71666664, 0.2), (0.71666664, 0.2), (0.71666664, 0.21666667), (0.7083333, 0.21666667), (0.7083333, 0.2), (0.7083333, 0.2), (0.7083333, 0.21666667), (0.7, 0.21666667), (0.7, 0.2), (0.7, 0.2), (0.7, 0.21666667), (0.69166666, 0.21666667), (0.69166666, 0.2), (0.69166666, 0.2), (0.69166666, 0.21666667), (0.68333334, 0.21666667), (0.68333334, 0.2), (0.68333334, 0.2), (0.68333334, 0.21666667), (0.675, 0.21666667), (0.675, 0.2), (0.675, 0.2), (0.675, 0.21666667), (0.6666667, 0.21666667), (0.6666667, 0.2), (0.6666667, 0.2), (0.6666667, 0.21666667), (0.65833336, 0.21666667), (0.65833336, 0.2), (0.65833336, 0.2), (0.65833336, 0.21666667), (0.65, 0.21666667), (0.65, 0.2), (0.65, 0.2), (0.65, 0.21666667), (0.64166665, 0.21666667), (0.64166665, 0.2), (0.64166665, 0.2), (0.64166665, 0.21666667), (0.6333333, 0.21666667), (0.6333333, 0.2), (0.6333333, 0.2), (0.6333333, 0.21666667), (0.625, 0.21666667), (0.625, 0.2), (0.625, 0.2), (0.625, 0.21666667), (0.6166667, 0.21666667), (0.6166667, 0.2), (0.6166667, 0.2), (0.6166667, 0.21666667), (0.60833335, 0.21666667), (0.60833335, 0.2), (0.60833335, 0.2), (0.60833335, 0.21666667), (0.6, 0.21666667), (0.6, 0.2), (0.6, 0.2), (0.6, 0.21666667), (0.59166664, 0.21666667), (0.59166664, 0.2), (0.59166664, 0.2), (0.59166664, 0.21666667), (0.5833333, 0.21666667), (0.5833333, 0.2), (0.5833333, 0.2), (0.5833333, 0.21666667), (0.575, 0.21666667), (0.575, 0.2), (0.575, 0.2), (0.575, 0.21666667), (0.56666666, 0.21666667), (0.56666666, 0.2), (0.56666666, 0.2), (0.56666666, 0.21666667), (0.55833334, 0.21666667), (0.55833334, 0.2), (0.55833334, 0.2), (0.55833334, 0.21666667), (0.55, 0.21666667), (0.55, 0.2), (0.55, 0.2), (0.55, 0.21666667), (0.5416667, 0.21666667), (0.5416667, 0.2), (0.5416667, 0.2), (0.5416667, 0.21666667), (0.53333336, 0.21666667), (0.53333336, 0.2), (0.53333336, 0.2), (0.53333336, 0.21666667), (0.525, 0.21666667), (0.525, 0.2), (0.525, 0.2), (0.525, 0.21666667), (0.51666665, 0.21666667), (0.51666665, 0.2), (0.51666665, 0.2), (0.51666665, 0.21666667), (0.5083333, 0.21666667), (0.5083333, 0.2), (0.5083333, 0.2), (0.5083333, 0.21666667), (0.5, 0.21666667), (0.5, 0.2), (0.5, 0.2), (0.5, 0.21666667), (0.49166667, 0.21666667), (0.49166667, 0.2), (0.49166667, 0.2), (0.49166667, 0.21666667), (0.48333332, 0.21666667), (0.48333332, 0.2), (0.48333332, 0.2), (0.48333332, 0.21666667), (0.475, 0.21666667), (0.475, 0.2), (0.475, 0.2), (0.475, 0.21666667), (0.46666667, 0.21666667), (0.46666667, 0.2), (0.46666667, 0.2), (0.46666667, 0.21666667), (0.45833334, 0.21666667), (0.45833334, 0.2), (0.45833334, 0.2), (0.45833334, 0.21666667), (0.45, 0.21666667), (0.45, 0.2), (0.45, 0.2), (0.45, 0.21666667), (0.44166666, 0.21666667), (0.44166666, 0.2), (0.44166666, 0.2), (0.44166666, 0.21666667), (0.43333334, 0.21666667), (0.43333334, 0.2), (0.43333334, 0.2), (0.43333334, 0.21666667), (0.425, 0.21666667), (0.425, 0.2), (0.425, 0.2), (0.425, 0.21666667), (0.41666666, 0.21666667), (0.41666666, 0.2), (0.41666666, 0.2), (0.41666666, 0.21666667), (0.40833333, 0.21666667), (0.40833333, 0.2), (0.40833333, 0.2), (0.40833333, 0.21666667), (0.4, 0.21666667), (0.4, 0.2), (0.4, 0.2), (0.4, 0.21666667), (0.39166668, 0.21666667), (0.39166668, 0.2), (0.39166668, 0.2), (0.39166668, 0.21666667), (0.38333333, 0.21666667), (0.38333333, 0.2), (0.38333333, 0.2), (0.38333333, 0.21666667), (0.375, 0.21666667), (0.375, 0.2), (0.375, 0.2), (0.375, 0.21666667), (0.36666667, 0.21666667), (0.36666667, 0.2), (0.36666667, 0.2), (0.36666667, 0.21666667), (0.35833332, 0.21666667), (0.35833332, 0.2), (0.35833332, 0.2), (0.35833332, 0.21666667), (0.35, 0.21666667), (0.35, 0.2), (0.35, 0.2), (0.35, 0.21666667), (0.34166667, 0.21666667), (0.34166667, 0.2), (0.34166667, 0.2), (0.34166667, 0.21666667), (0.33333334, 0.21666667), (0.33333334, 0.2), (0.33333334, 0.2), (0.33333334, 0.21666667), (0.325, 0.21666667), (0.325, 0.2), (0.325, 0.2), (0.325, 0.21666667), (0.31666666, 0.21666667), (0.31666666, 0.2), (0.31666666, 0.2), (0.31666666, 0.21666667), (0.30833334, 0.21666667), (0.30833334, 0.2), (0.30833334, 0.2), (0.30833334, 0.21666667), (0.3, 0.21666667), (0.3, 0.2), (0.3, 0.2), (0.3, 0.21666667), (0.29166666, 0.21666667), (0.29166666, 0.2), (0.29166666, 0.2), (0.29166666, 0.21666667), (0.28333333, 0.21666667), (0.28333333, 0.2), (0.28333333, 0.2), (0.28333333, 0.21666667), (0.275, 0.21666667), (0.275, 0.2), (0.275, 0.2), (0.275, 0.21666667), (0.26666668, 0.21666667), (0.26666668, 0.2), (0.26666668, 0.2), (0.26666668, 0.21666667), (0.25833333, 0.21666667), (0.25833333, 0.2), (0.25833333, 0.2), (0.25833333, 0.21666667), (0.25, 0.21666667), (0.25, 0.2), (0.25, 0.2), (0.25, 0.21666667), (0.24166666, 0.21666667), (0.24166666, 0.2), (0.24166666, 0.2), (0.24166666, 0.21666667), (0.23333333, 0.21666667), (0.23333333, 0.2), (0.23333333, 0.2), (0.23333333, 0.21666667), (0.225, 0.21666667), (0.225, 0.2), (0.225, 0.2), (0.225, 0.21666667), (0.21666667, 0.21666667), (0.21666667, 0.2), (0.21666667, 0.2), (0.21666667, 0.21666667), (0.20833333, 0.21666667), (0.20833333, 0.2), (0.20833333, 0.2), (0.20833333, 0.21666667), (0.2, 0.21666667), (0.2, 0.2), (0.2, 0.2), (0.2, 0.21666667), (0.19166666, 0.21666667), (0.19166666, 0.2), (0.19166666, 0.2), (0.19166666, 0.21666667), (0.18333334, 0.21666667), (0.18333334, 0.2), (0.18333334, 0.2), (0.18333334, 0.21666667), (0.175, 0.21666667), (0.175, 0.2), (0.175, 0.2), (0.175, 0.21666667), (0.16666667, 0.21666667), (0.16666667, 0.2), (0.16666667, 0.2), (0.16666667, 0.21666667), (0.15833333, 0.21666667), (0.15833333, 0.2), (0.15833333, 0.2), (0.15833333, 0.21666667), (0.15, 0.21666667), (0.15, 0.2), (0.15, 0.2), (0.15, 0.21666667), (0.14166667, 0.21666667), (0.14166667, 0.2), (0.14166667, 0.2), (0.14166667, 0.21666667), (0.13333334, 0.21666667), (0.13333334, 0.2), (0.13333334, 0.2), (0.13333334, 0.21666667), (0.125, 0.21666667), (0.125, 0.2), (0.125, 0.2), (0.125, 0.21666667), (0.11666667, 0.21666667), (0.11666667, 0.2), (0.11666667, 0.2), (0.11666667, 0.21666667), (0.108333334, 0.21666667), (0.108333334, 0.2), (0.108333334, 0.2), (0.108333334, 0.21666667), (0.1, 0.21666667), (0.1, 0.2), (0.1, 0.2), (0.1, 0.21666667), (0.09166667, 0.21666667), (0.09166667, 0.2), (0.09166667, 0.2), (0.09166667, 0.21666667), (0.083333336, 0.21666667), (0.083333336, 0.2), (0.083333336, 0.2), (0.083333336, 0.21666667), (0.075, 0.21666667), (0.075, 0.2), (0.075, 0.2), (0.075, 0.21666667), (0.06666667, 0.21666667), (0.06666667, 0.2), (0.06666667, 0.2), (0.06666667, 0.21666667), (0.058333334, 0.21666667), (0.058333334, 0.2), (0.058333334, 0.2), (0.058333334, 0.21666667), (0.05, 0.21666667), (0.05, 0.2), (0.05, 0.2), (0.05, 0.21666667), (0.041666668, 0.21666667), (0.041666668, 0.2), (0.041666668, 0.2), (0.041666668, 0.21666667), (0.033333335, 0.21666667), (0.033333335, 0.2), (0.033333335, 0.2), (0.033333335, 0.21666667), (0.025, 0.21666667), (0.025, 0.2), (0.025, 0.2), (0.025, 0.21666667), (0.016666668, 0.21666667), (0.016666668, 0.2), (0.016666668, 0.2), (0.016666668, 0.21666667), (0.008333334, 0.21666667), (0.008333334, 0.2), (0.008333334, 0.2), (0.008333334, 0.21666667), (0, 0.21666667), (0, 0.2), (1, 0.21666667), (1, 0.23333333), (0.9916667, 0.23333333), (0.9916667, 0.21666667), (0.9916667, 0.21666667), (0.9916667, 0.23333333), (0.98333335, 0.23333333), (0.98333335, 0.21666667), (0.98333335, 0.21666667), (0.98333335, 0.23333333), (0.975, 0.23333333), (0.975, 0.21666667), (0.975, 0.21666667), (0.975, 0.23333333), (0.96666664, 0.23333333), (0.96666664, 0.21666667), (0.96666664, 0.21666667), (0.96666664, 0.23333333), (0.9583333, 0.23333333), (0.9583333, 0.21666667), (0.9583333, 0.21666667), (0.9583333, 0.23333333), (0.95, 0.23333333), (0.95, 0.21666667), (0.95, 0.21666667), (0.95, 0.23333333), (0.94166666, 0.23333333), (0.94166666, 0.21666667), (0.94166666, 0.21666667), (0.94166666, 0.23333333), (0.93333334, 0.23333333), (0.93333334, 0.21666667), (0.93333334, 0.21666667), (0.93333334, 0.23333333), (0.925, 0.23333333), (0.925, 0.21666667), (0.925, 0.21666667), (0.925, 0.23333333), (0.9166667, 0.23333333), (0.9166667, 0.21666667), (0.9166667, 0.21666667), (0.9166667, 0.23333333), (0.90833336, 0.23333333), (0.90833336, 0.21666667), (0.90833336, 0.21666667), (0.90833336, 0.23333333), (0.9, 0.23333333), (0.9, 0.21666667), (0.9, 0.21666667), (0.9, 0.23333333), (0.89166665, 0.23333333), (0.89166665, 0.21666667), (0.89166665, 0.21666667), (0.89166665, 0.23333333), (0.8833333, 0.23333333), (0.8833333, 0.21666667), (0.8833333, 0.21666667), (0.8833333, 0.23333333), (0.875, 0.23333333), (0.875, 0.21666667), (0.875, 0.21666667), (0.875, 0.23333333), (0.8666667, 0.23333333), (0.8666667, 0.21666667), (0.8666667, 0.21666667), (0.8666667, 0.23333333), (0.85833335, 0.23333333), (0.85833335, 0.21666667), (0.85833335, 0.21666667), (0.85833335, 0.23333333), (0.85, 0.23333333), (0.85, 0.21666667), (0.85, 0.21666667), (0.85, 0.23333333), (0.84166664, 0.23333333), (0.84166664, 0.21666667), (0.84166664, 0.21666667), (0.84166664, 0.23333333), (0.8333333, 0.23333333), (0.8333333, 0.21666667), (0.8333333, 0.21666667), (0.8333333, 0.23333333), (0.825, 0.23333333), (0.825, 0.21666667), (0.825, 0.21666667), (0.825, 0.23333333), (0.81666666, 0.23333333), (0.81666666, 0.21666667), (0.81666666, 0.21666667), (0.81666666, 0.23333333), (0.80833334, 0.23333333), (0.80833334, 0.21666667), (0.80833334, 0.21666667), (0.80833334, 0.23333333), (0.8, 0.23333333), (0.8, 0.21666667), (0.8, 0.21666667), (0.8, 0.23333333), (0.7916667, 0.23333333), (0.7916667, 0.21666667), (0.7916667, 0.21666667), (0.7916667, 0.23333333), (0.78333336, 0.23333333), (0.78333336, 0.21666667), (0.78333336, 0.21666667), (0.78333336, 0.23333333), (0.775, 0.23333333), (0.775, 0.21666667), (0.775, 0.21666667), (0.775, 0.23333333), (0.76666665, 0.23333333), (0.76666665, 0.21666667), (0.76666665, 0.21666667), (0.76666665, 0.23333333), (0.7583333, 0.23333333), (0.7583333, 0.21666667), (0.7583333, 0.21666667), (0.7583333, 0.23333333), (0.75, 0.23333333), (0.75, 0.21666667), (0.75, 0.21666667), (0.75, 0.23333333), (0.7416667, 0.23333333), (0.7416667, 0.21666667), (0.7416667, 0.21666667), (0.7416667, 0.23333333), (0.73333335, 0.23333333), (0.73333335, 0.21666667), (0.73333335, 0.21666667), (0.73333335, 0.23333333), (0.725, 0.23333333), (0.725, 0.21666667), (0.725, 0.21666667), (0.725, 0.23333333), (0.71666664, 0.23333333), (0.71666664, 0.21666667), (0.71666664, 0.21666667), (0.71666664, 0.23333333), (0.7083333, 0.23333333), (0.7083333, 0.21666667), (0.7083333, 0.21666667), (0.7083333, 0.23333333), (0.7, 0.23333333), (0.7, 0.21666667), (0.7, 0.21666667), (0.7, 0.23333333), (0.69166666, 0.23333333), (0.69166666, 0.21666667), (0.69166666, 0.21666667), (0.69166666, 0.23333333), (0.68333334, 0.23333333), (0.68333334, 0.21666667), (0.68333334, 0.21666667), (0.68333334, 0.23333333), (0.675, 0.23333333), (0.675, 0.21666667), (0.675, 0.21666667), (0.675, 0.23333333), (0.6666667, 0.23333333), (0.6666667, 0.21666667), (0.6666667, 0.21666667), (0.6666667, 0.23333333), (0.65833336, 0.23333333), (0.65833336, 0.21666667), (0.65833336, 0.21666667), (0.65833336, 0.23333333), (0.65, 0.23333333), (0.65, 0.21666667), (0.65, 0.21666667), (0.65, 0.23333333), (0.64166665, 0.23333333), (0.64166665, 0.21666667), (0.64166665, 0.21666667), (0.64166665, 0.23333333), (0.6333333, 0.23333333), (0.6333333, 0.21666667), (0.6333333, 0.21666667), (0.6333333, 0.23333333), (0.625, 0.23333333), (0.625, 0.21666667), (0.625, 0.21666667), (0.625, 0.23333333), (0.6166667, 0.23333333), (0.6166667, 0.21666667), (0.6166667, 0.21666667), (0.6166667, 0.23333333), (0.60833335, 0.23333333), (0.60833335, 0.21666667), (0.60833335, 0.21666667), (0.60833335, 0.23333333), (0.6, 0.23333333), (0.6, 0.21666667), (0.6, 0.21666667), (0.6, 0.23333333), (0.59166664, 0.23333333), (0.59166664, 0.21666667), (0.59166664, 0.21666667), (0.59166664, 0.23333333), (0.5833333, 0.23333333), (0.5833333, 0.21666667), (0.5833333, 0.21666667), (0.5833333, 0.23333333), (0.575, 0.23333333), (0.575, 0.21666667), (0.575, 0.21666667), (0.575, 0.23333333), (0.56666666, 0.23333333), (0.56666666, 0.21666667), (0.56666666, 0.21666667), (0.56666666, 0.23333333), (0.55833334, 0.23333333), (0.55833334, 0.21666667), (0.55833334, 0.21666667), (0.55833334, 0.23333333), (0.55, 0.23333333), (0.55, 0.21666667), (0.55, 0.21666667), (0.55, 0.23333333), (0.5416667, 0.23333333), (0.5416667, 0.21666667), (0.5416667, 0.21666667), (0.5416667, 0.23333333), (0.53333336, 0.23333333), (0.53333336, 0.21666667), (0.53333336, 0.21666667), (0.53333336, 0.23333333), (0.525, 0.23333333), (0.525, 0.21666667), (0.525, 0.21666667), (0.525, 0.23333333), (0.51666665, 0.23333333), (0.51666665, 0.21666667), (0.51666665, 0.21666667), (0.51666665, 0.23333333), (0.5083333, 0.23333333), (0.5083333, 0.21666667), (0.5083333, 0.21666667), (0.5083333, 0.23333333), (0.5, 0.23333333), (0.5, 0.21666667), (0.5, 0.21666667), (0.5, 0.23333333), (0.49166667, 0.23333333), (0.49166667, 0.21666667), (0.49166667, 0.21666667), (0.49166667, 0.23333333), (0.48333332, 0.23333333), (0.48333332, 0.21666667), (0.48333332, 0.21666667), (0.48333332, 0.23333333), (0.475, 0.23333333), (0.475, 0.21666667), (0.475, 0.21666667), (0.475, 0.23333333), (0.46666667, 0.23333333), (0.46666667, 0.21666667), (0.46666667, 0.21666667), (0.46666667, 0.23333333), (0.45833334, 0.23333333), (0.45833334, 0.21666667), (0.45833334, 0.21666667), (0.45833334, 0.23333333), (0.45, 0.23333333), (0.45, 0.21666667), (0.45, 0.21666667), (0.45, 0.23333333), (0.44166666, 0.23333333), (0.44166666, 0.21666667), (0.44166666, 0.21666667), (0.44166666, 0.23333333), (0.43333334, 0.23333333), (0.43333334, 0.21666667), (0.43333334, 0.21666667), (0.43333334, 0.23333333), (0.425, 0.23333333), (0.425, 0.21666667), (0.425, 0.21666667), (0.425, 0.23333333), (0.41666666, 0.23333333), (0.41666666, 0.21666667), (0.41666666, 0.21666667), (0.41666666, 0.23333333), (0.40833333, 0.23333333), (0.40833333, 0.21666667), (0.40833333, 0.21666667), (0.40833333, 0.23333333), (0.4, 0.23333333), (0.4, 0.21666667), (0.4, 0.21666667), (0.4, 0.23333333), (0.39166668, 0.23333333), (0.39166668, 0.21666667), (0.39166668, 0.21666667), (0.39166668, 0.23333333), (0.38333333, 0.23333333), (0.38333333, 0.21666667), (0.38333333, 0.21666667), (0.38333333, 0.23333333), (0.375, 0.23333333), (0.375, 0.21666667), (0.375, 0.21666667), (0.375, 0.23333333), (0.36666667, 0.23333333), (0.36666667, 0.21666667), (0.36666667, 0.21666667), (0.36666667, 0.23333333), (0.35833332, 0.23333333), (0.35833332, 0.21666667), (0.35833332, 0.21666667), (0.35833332, 0.23333333), (0.35, 0.23333333), (0.35, 0.21666667), (0.35, 0.21666667), (0.35, 0.23333333), (0.34166667, 0.23333333), (0.34166667, 0.21666667), (0.34166667, 0.21666667), (0.34166667, 0.23333333), (0.33333334, 0.23333333), (0.33333334, 0.21666667), (0.33333334, 0.21666667), (0.33333334, 0.23333333), (0.325, 0.23333333), (0.325, 0.21666667), (0.325, 0.21666667), (0.325, 0.23333333), (0.31666666, 0.23333333), (0.31666666, 0.21666667), (0.31666666, 0.21666667), (0.31666666, 0.23333333), (0.30833334, 0.23333333), (0.30833334, 0.21666667), (0.30833334, 0.21666667), (0.30833334, 0.23333333), (0.3, 0.23333333), (0.3, 0.21666667), (0.3, 0.21666667), (0.3, 0.23333333), (0.29166666, 0.23333333), (0.29166666, 0.21666667), (0.29166666, 0.21666667), (0.29166666, 0.23333333), (0.28333333, 0.23333333), (0.28333333, 0.21666667), (0.28333333, 0.21666667), (0.28333333, 0.23333333), (0.275, 0.23333333), (0.275, 0.21666667), (0.275, 0.21666667), (0.275, 0.23333333), (0.26666668, 0.23333333), (0.26666668, 0.21666667), (0.26666668, 0.21666667), (0.26666668, 0.23333333), (0.25833333, 0.23333333), (0.25833333, 0.21666667), (0.25833333, 0.21666667), (0.25833333, 0.23333333), (0.25, 0.23333333), (0.25, 0.21666667), (0.25, 0.21666667), (0.25, 0.23333333), (0.24166666, 0.23333333), (0.24166666, 0.21666667), (0.24166666, 0.21666667), (0.24166666, 0.23333333), (0.23333333, 0.23333333), (0.23333333, 0.21666667), (0.23333333, 0.21666667), (0.23333333, 0.23333333), (0.225, 0.23333333), (0.225, 0.21666667), (0.225, 0.21666667), (0.225, 0.23333333), (0.21666667, 0.23333333), (0.21666667, 0.21666667), (0.21666667, 0.21666667), (0.21666667, 0.23333333), (0.20833333, 0.23333333), (0.20833333, 0.21666667), (0.20833333, 0.21666667), (0.20833333, 0.23333333), (0.2, 0.23333333), (0.2, 0.21666667), (0.2, 0.21666667), (0.2, 0.23333333), (0.19166666, 0.23333333), (0.19166666, 0.21666667), (0.19166666, 0.21666667), (0.19166666, 0.23333333), (0.18333334, 0.23333333), (0.18333334, 0.21666667), (0.18333334, 0.21666667), (0.18333334, 0.23333333), (0.175, 0.23333333), (0.175, 0.21666667), (0.175, 0.21666667), (0.175, 0.23333333), (0.16666667, 0.23333333), (0.16666667, 0.21666667), (0.16666667, 0.21666667), (0.16666667, 0.23333333), (0.15833333, 0.23333333), (0.15833333, 0.21666667), (0.15833333, 0.21666667), (0.15833333, 0.23333333), (0.15, 0.23333333), (0.15, 0.21666667), (0.15, 0.21666667), (0.15, 0.23333333), (0.14166667, 0.23333333), (0.14166667, 0.21666667), (0.14166667, 0.21666667), (0.14166667, 0.23333333), (0.13333334, 0.23333333), (0.13333334, 0.21666667), (0.13333334, 0.21666667), (0.13333334, 0.23333333), (0.125, 0.23333333), (0.125, 0.21666667), (0.125, 0.21666667), (0.125, 0.23333333), (0.11666667, 0.23333333), (0.11666667, 0.21666667), (0.11666667, 0.21666667), (0.11666667, 0.23333333), (0.108333334, 0.23333333), (0.108333334, 0.21666667), (0.108333334, 0.21666667), (0.108333334, 0.23333333), (0.1, 0.23333333), (0.1, 0.21666667), (0.1, 0.21666667), (0.1, 0.23333333), (0.09166667, 0.23333333), (0.09166667, 0.21666667), (0.09166667, 0.21666667), (0.09166667, 0.23333333), (0.083333336, 0.23333333), (0.083333336, 0.21666667), (0.083333336, 0.21666667), (0.083333336, 0.23333333), (0.075, 0.23333333), (0.075, 0.21666667), (0.075, 0.21666667), (0.075, 0.23333333), (0.06666667, 0.23333333), (0.06666667, 0.21666667), (0.06666667, 0.21666667), (0.06666667, 0.23333333), (0.058333334, 0.23333333), (0.058333334, 0.21666667), (0.058333334, 0.21666667), (0.058333334, 0.23333333), (0.05, 0.23333333), (0.05, 0.21666667), (0.05, 0.21666667), (0.05, 0.23333333), (0.041666668, 0.23333333), (0.041666668, 0.21666667), (0.041666668, 0.21666667), (0.041666668, 0.23333333), (0.033333335, 0.23333333), (0.033333335, 0.21666667), (0.033333335, 0.21666667), (0.033333335, 0.23333333), (0.025, 0.23333333), (0.025, 0.21666667), (0.025, 0.21666667), (0.025, 0.23333333), (0.016666668, 0.23333333), (0.016666668, 0.21666667), (0.016666668, 0.21666667), (0.016666668, 0.23333333), (0.008333334, 0.23333333), (0.008333334, 0.21666667), (0.008333334, 0.21666667), (0.008333334, 0.23333333), (0, 0.23333333), (0, 0.21666667), (1, 0.23333333), (1, 0.25), (0.9916667, 0.25), (0.9916667, 0.23333333), (0.9916667, 0.23333333), (0.9916667, 0.25), (0.98333335, 0.25), (0.98333335, 0.23333333), (0.98333335, 0.23333333), (0.98333335, 0.25), (0.975, 0.25), (0.975, 0.23333333), (0.975, 0.23333333), (0.975, 0.25), (0.96666664, 0.25), (0.96666664, 0.23333333), (0.96666664, 0.23333333), (0.96666664, 0.25), (0.9583333, 0.25), (0.9583333, 0.23333333), (0.9583333, 0.23333333), (0.9583333, 0.25), (0.95, 0.25), (0.95, 0.23333333), (0.95, 0.23333333), (0.95, 0.25), (0.94166666, 0.25), (0.94166666, 0.23333333), (0.94166666, 0.23333333), (0.94166666, 0.25), (0.93333334, 0.25), (0.93333334, 0.23333333), (0.93333334, 0.23333333), (0.93333334, 0.25), (0.925, 0.25), (0.925, 0.23333333), (0.925, 0.23333333), (0.925, 0.25), (0.9166667, 0.25), (0.9166667, 0.23333333), (0.9166667, 0.23333333), (0.9166667, 0.25), (0.90833336, 0.25), (0.90833336, 0.23333333), (0.90833336, 0.23333333), (0.90833336, 0.25), (0.9, 0.25), (0.9, 0.23333333), (0.9, 0.23333333), (0.9, 0.25), (0.89166665, 0.25), (0.89166665, 0.23333333), (0.89166665, 0.23333333), (0.89166665, 0.25), (0.8833333, 0.25), (0.8833333, 0.23333333), (0.8833333, 0.23333333), (0.8833333, 0.25), (0.875, 0.25), (0.875, 0.23333333), (0.875, 0.23333333), (0.875, 0.25), (0.8666667, 0.25), (0.8666667, 0.23333333), (0.8666667, 0.23333333), (0.8666667, 0.25), (0.85833335, 0.25), (0.85833335, 0.23333333), (0.85833335, 0.23333333), (0.85833335, 0.25), (0.85, 0.25), (0.85, 0.23333333), (0.85, 0.23333333), (0.85, 0.25), (0.84166664, 0.25), (0.84166664, 0.23333333), (0.84166664, 0.23333333), (0.84166664, 0.25), (0.8333333, 0.25), (0.8333333, 0.23333333), (0.8333333, 0.23333333), (0.8333333, 0.25), (0.825, 0.25), (0.825, 0.23333333), (0.825, 0.23333333), (0.825, 0.25), (0.81666666, 0.25), (0.81666666, 0.23333333), (0.81666666, 0.23333333), (0.81666666, 0.25), (0.80833334, 0.25), (0.80833334, 0.23333333), (0.80833334, 0.23333333), (0.80833334, 0.25), (0.8, 0.25), (0.8, 0.23333333), (0.8, 0.23333333), (0.8, 0.25), (0.7916667, 0.25), (0.7916667, 0.23333333), (0.7916667, 0.23333333), (0.7916667, 0.25), (0.78333336, 0.25), (0.78333336, 0.23333333), (0.78333336, 0.23333333), (0.78333336, 0.25), (0.775, 0.25), (0.775, 0.23333333), (0.775, 0.23333333), (0.775, 0.25), (0.76666665, 0.25), (0.76666665, 0.23333333), (0.76666665, 0.23333333), (0.76666665, 0.25), (0.7583333, 0.25), (0.7583333, 0.23333333), (0.7583333, 0.23333333), (0.7583333, 0.25), (0.75, 0.25), (0.75, 0.23333333), (0.75, 0.23333333), (0.75, 0.25), (0.7416667, 0.25), (0.7416667, 0.23333333), (0.7416667, 0.23333333), (0.7416667, 0.25), (0.73333335, 0.25), (0.73333335, 0.23333333), (0.73333335, 0.23333333), (0.73333335, 0.25), (0.725, 0.25), (0.725, 0.23333333), (0.725, 0.23333333), (0.725, 0.25), (0.71666664, 0.25), (0.71666664, 0.23333333), (0.71666664, 0.23333333), (0.71666664, 0.25), (0.7083333, 0.25), (0.7083333, 0.23333333), (0.7083333, 0.23333333), (0.7083333, 0.25), (0.7, 0.25), (0.7, 0.23333333), (0.7, 0.23333333), (0.7, 0.25), (0.69166666, 0.25), (0.69166666, 0.23333333), (0.69166666, 0.23333333), (0.69166666, 0.25), (0.68333334, 0.25), (0.68333334, 0.23333333), (0.68333334, 0.23333333), (0.68333334, 0.25), (0.675, 0.25), (0.675, 0.23333333), (0.675, 0.23333333), (0.675, 0.25), (0.6666667, 0.25), (0.6666667, 0.23333333), (0.6666667, 0.23333333), (0.6666667, 0.25), (0.65833336, 0.25), (0.65833336, 0.23333333), (0.65833336, 0.23333333), (0.65833336, 0.25), (0.65, 0.25), (0.65, 0.23333333), (0.65, 0.23333333), (0.65, 0.25), (0.64166665, 0.25), (0.64166665, 0.23333333), (0.64166665, 0.23333333), (0.64166665, 0.25), (0.6333333, 0.25), (0.6333333, 0.23333333), (0.6333333, 0.23333333), (0.6333333, 0.25), (0.625, 0.25), (0.625, 0.23333333), (0.625, 0.23333333), (0.625, 0.25), (0.6166667, 0.25), (0.6166667, 0.23333333), (0.6166667, 0.23333333), (0.6166667, 0.25), (0.60833335, 0.25), (0.60833335, 0.23333333), (0.60833335, 0.23333333), (0.60833335, 0.25), (0.6, 0.25), (0.6, 0.23333333), (0.6, 0.23333333), (0.6, 0.25), (0.59166664, 0.25), (0.59166664, 0.23333333), (0.59166664, 0.23333333), (0.59166664, 0.25), (0.5833333, 0.25), (0.5833333, 0.23333333), (0.5833333, 0.23333333), (0.5833333, 0.25), (0.575, 0.25), (0.575, 0.23333333), (0.575, 0.23333333), (0.575, 0.25), (0.56666666, 0.25), (0.56666666, 0.23333333), (0.56666666, 0.23333333), (0.56666666, 0.25), (0.55833334, 0.25), (0.55833334, 0.23333333), (0.55833334, 0.23333333), (0.55833334, 0.25), (0.55, 0.25), (0.55, 0.23333333), (0.55, 0.23333333), (0.55, 0.25), (0.5416667, 0.25), (0.5416667, 0.23333333), (0.5416667, 0.23333333), (0.5416667, 0.25), (0.53333336, 0.25), (0.53333336, 0.23333333), (0.53333336, 0.23333333), (0.53333336, 0.25), (0.525, 0.25), (0.525, 0.23333333), (0.525, 0.23333333), (0.525, 0.25), (0.51666665, 0.25), (0.51666665, 0.23333333), (0.51666665, 0.23333333), (0.51666665, 0.25), (0.5083333, 0.25), (0.5083333, 0.23333333), (0.5083333, 0.23333333), (0.5083333, 0.25), (0.5, 0.25), (0.5, 0.23333333), (0.5, 0.23333333), (0.5, 0.25), (0.49166667, 0.25), (0.49166667, 0.23333333), (0.49166667, 0.23333333), (0.49166667, 0.25), (0.48333332, 0.25), (0.48333332, 0.23333333), (0.48333332, 0.23333333), (0.48333332, 0.25), (0.475, 0.25), (0.475, 0.23333333), (0.475, 0.23333333), (0.475, 0.25), (0.46666667, 0.25), (0.46666667, 0.23333333), (0.46666667, 0.23333333), (0.46666667, 0.25), (0.45833334, 0.25), (0.45833334, 0.23333333), (0.45833334, 0.23333333), (0.45833334, 0.25), (0.45, 0.25), (0.45, 0.23333333), (0.45, 0.23333333), (0.45, 0.25), (0.44166666, 0.25), (0.44166666, 0.23333333), (0.44166666, 0.23333333), (0.44166666, 0.25), (0.43333334, 0.25), (0.43333334, 0.23333333), (0.43333334, 0.23333333), (0.43333334, 0.25), (0.425, 0.25), (0.425, 0.23333333), (0.425, 0.23333333), (0.425, 0.25), (0.41666666, 0.25), (0.41666666, 0.23333333), (0.41666666, 0.23333333), (0.41666666, 0.25), (0.40833333, 0.25), (0.40833333, 0.23333333), (0.40833333, 0.23333333), (0.40833333, 0.25), (0.4, 0.25), (0.4, 0.23333333), (0.4, 0.23333333), (0.4, 0.25), (0.39166668, 0.25), (0.39166668, 0.23333333), (0.39166668, 0.23333333), (0.39166668, 0.25), (0.38333333, 0.25), (0.38333333, 0.23333333), (0.38333333, 0.23333333), (0.38333333, 0.25), (0.375, 0.25), (0.375, 0.23333333), (0.375, 0.23333333), (0.375, 0.25), (0.36666667, 0.25), (0.36666667, 0.23333333), (0.36666667, 0.23333333), (0.36666667, 0.25), (0.35833332, 0.25), (0.35833332, 0.23333333), (0.35833332, 0.23333333), (0.35833332, 0.25), (0.35, 0.25), (0.35, 0.23333333), (0.35, 0.23333333), (0.35, 0.25), (0.34166667, 0.25), (0.34166667, 0.23333333), (0.34166667, 0.23333333), (0.34166667, 0.25), (0.33333334, 0.25), (0.33333334, 0.23333333), (0.33333334, 0.23333333), (0.33333334, 0.25), (0.325, 0.25), (0.325, 0.23333333), (0.325, 0.23333333), (0.325, 0.25), (0.31666666, 0.25), (0.31666666, 0.23333333), (0.31666666, 0.23333333), (0.31666666, 0.25), (0.30833334, 0.25), (0.30833334, 0.23333333), (0.30833334, 0.23333333), (0.30833334, 0.25), (0.3, 0.25), (0.3, 0.23333333), (0.3, 0.23333333), (0.3, 0.25), (0.29166666, 0.25), (0.29166666, 0.23333333), (0.29166666, 0.23333333), (0.29166666, 0.25), (0.28333333, 0.25), (0.28333333, 0.23333333), (0.28333333, 0.23333333), (0.28333333, 0.25), (0.275, 0.25), (0.275, 0.23333333), (0.275, 0.23333333), (0.275, 0.25), (0.26666668, 0.25), (0.26666668, 0.23333333), (0.26666668, 0.23333333), (0.26666668, 0.25), (0.25833333, 0.25), (0.25833333, 0.23333333), (0.25833333, 0.23333333), (0.25833333, 0.25), (0.25, 0.25), (0.25, 0.23333333), (0.25, 0.23333333), (0.25, 0.25), (0.24166666, 0.25), (0.24166666, 0.23333333), (0.24166666, 0.23333333), (0.24166666, 0.25), (0.23333333, 0.25), (0.23333333, 0.23333333), (0.23333333, 0.23333333), (0.23333333, 0.25), (0.225, 0.25), (0.225, 0.23333333), (0.225, 0.23333333), (0.225, 0.25), (0.21666667, 0.25), (0.21666667, 0.23333333), (0.21666667, 0.23333333), (0.21666667, 0.25), (0.20833333, 0.25), (0.20833333, 0.23333333), (0.20833333, 0.23333333), (0.20833333, 0.25), (0.2, 0.25), (0.2, 0.23333333), (0.2, 0.23333333), (0.2, 0.25), (0.19166666, 0.25), (0.19166666, 0.23333333), (0.19166666, 0.23333333), (0.19166666, 0.25), (0.18333334, 0.25), (0.18333334, 0.23333333), (0.18333334, 0.23333333), (0.18333334, 0.25), (0.175, 0.25), (0.175, 0.23333333), (0.175, 0.23333333), (0.175, 0.25), (0.16666667, 0.25), (0.16666667, 0.23333333), (0.16666667, 0.23333333), (0.16666667, 0.25), (0.15833333, 0.25), (0.15833333, 0.23333333), (0.15833333, 0.23333333), (0.15833333, 0.25), (0.15, 0.25), (0.15, 0.23333333), (0.15, 0.23333333), (0.15, 0.25), (0.14166667, 0.25), (0.14166667, 0.23333333), (0.14166667, 0.23333333), (0.14166667, 0.25), (0.13333334, 0.25), (0.13333334, 0.23333333), (0.13333334, 0.23333333), (0.13333334, 0.25), (0.125, 0.25), (0.125, 0.23333333), (0.125, 0.23333333), (0.125, 0.25), (0.11666667, 0.25), (0.11666667, 0.23333333), (0.11666667, 0.23333333), (0.11666667, 0.25), (0.108333334, 0.25), (0.108333334, 0.23333333), (0.108333334, 0.23333333), (0.108333334, 0.25), (0.1, 0.25), (0.1, 0.23333333), (0.1, 0.23333333), (0.1, 0.25), (0.09166667, 0.25), (0.09166667, 0.23333333), (0.09166667, 0.23333333), (0.09166667, 0.25), (0.083333336, 0.25), (0.083333336, 0.23333333), (0.083333336, 0.23333333), (0.083333336, 0.25), (0.075, 0.25), (0.075, 0.23333333), (0.075, 0.23333333), (0.075, 0.25), (0.06666667, 0.25), (0.06666667, 0.23333333), (0.06666667, 0.23333333), (0.06666667, 0.25), (0.058333334, 0.25), (0.058333334, 0.23333333), (0.058333334, 0.23333333), (0.058333334, 0.25), (0.05, 0.25), (0.05, 0.23333333), (0.05, 0.23333333), (0.05, 0.25), (0.041666668, 0.25), (0.041666668, 0.23333333), (0.041666668, 0.23333333), (0.041666668, 0.25), (0.033333335, 0.25), (0.033333335, 0.23333333), (0.033333335, 0.23333333), (0.033333335, 0.25), (0.025, 0.25), (0.025, 0.23333333), (0.025, 0.23333333), (0.025, 0.25), (0.016666668, 0.25), (0.016666668, 0.23333333), (0.016666668, 0.23333333), (0.016666668, 0.25), (0.008333334, 0.25), (0.008333334, 0.23333333), (0.008333334, 0.23333333), (0.008333334, 0.25), (0, 0.25), (0, 0.23333333), (1, 0.25), (1, 0.26666668), (0.9916667, 0.26666668), (0.9916667, 0.25), (0.9916667, 0.25), (0.9916667, 0.26666668), (0.98333335, 0.26666668), (0.98333335, 0.25), (0.98333335, 0.25), (0.98333335, 0.26666668), (0.975, 0.26666668), (0.975, 0.25), (0.975, 0.25), (0.975, 0.26666668), (0.96666664, 0.26666668), (0.96666664, 0.25), (0.96666664, 0.25), (0.96666664, 0.26666668), (0.9583333, 0.26666668), (0.9583333, 0.25), (0.9583333, 0.25), (0.9583333, 0.26666668), (0.95, 0.26666668), (0.95, 0.25), (0.95, 0.25), (0.95, 0.26666668), (0.94166666, 0.26666668), (0.94166666, 0.25), (0.94166666, 0.25), (0.94166666, 0.26666668), (0.93333334, 0.26666668), (0.93333334, 0.25), (0.93333334, 0.25), (0.93333334, 0.26666668), (0.925, 0.26666668), (0.925, 0.25), (0.925, 0.25), (0.925, 0.26666668), (0.9166667, 0.26666668), (0.9166667, 0.25), (0.9166667, 0.25), (0.9166667, 0.26666668), (0.90833336, 0.26666668), (0.90833336, 0.25), (0.90833336, 0.25), (0.90833336, 0.26666668), (0.9, 0.26666668), (0.9, 0.25), (0.9, 0.25), (0.9, 0.26666668), (0.89166665, 0.26666668), (0.89166665, 0.25), (0.89166665, 0.25), (0.89166665, 0.26666668), (0.8833333, 0.26666668), (0.8833333, 0.25), (0.8833333, 0.25), (0.8833333, 0.26666668), (0.875, 0.26666668), (0.875, 0.25), (0.875, 0.25), (0.875, 0.26666668), (0.8666667, 0.26666668), (0.8666667, 0.25), (0.8666667, 0.25), (0.8666667, 0.26666668), (0.85833335, 0.26666668), (0.85833335, 0.25), (0.85833335, 0.25), (0.85833335, 0.26666668), (0.85, 0.26666668), (0.85, 0.25), (0.85, 0.25), (0.85, 0.26666668), (0.84166664, 0.26666668), (0.84166664, 0.25), (0.84166664, 0.25), (0.84166664, 0.26666668), (0.8333333, 0.26666668), (0.8333333, 0.25), (0.8333333, 0.25), (0.8333333, 0.26666668), (0.825, 0.26666668), (0.825, 0.25), (0.825, 0.25), (0.825, 0.26666668), (0.81666666, 0.26666668), (0.81666666, 0.25), (0.81666666, 0.25), (0.81666666, 0.26666668), (0.80833334, 0.26666668), (0.80833334, 0.25), (0.80833334, 0.25), (0.80833334, 0.26666668), (0.8, 0.26666668), (0.8, 0.25), (0.8, 0.25), (0.8, 0.26666668), (0.7916667, 0.26666668), (0.7916667, 0.25), (0.7916667, 0.25), (0.7916667, 0.26666668), (0.78333336, 0.26666668), (0.78333336, 0.25), (0.78333336, 0.25), (0.78333336, 0.26666668), (0.775, 0.26666668), (0.775, 0.25), (0.775, 0.25), (0.775, 0.26666668), (0.76666665, 0.26666668), (0.76666665, 0.25), (0.76666665, 0.25), (0.76666665, 0.26666668), (0.7583333, 0.26666668), (0.7583333, 0.25), (0.7583333, 0.25), (0.7583333, 0.26666668), (0.75, 0.26666668), (0.75, 0.25), (0.75, 0.25), (0.75, 0.26666668), (0.7416667, 0.26666668), (0.7416667, 0.25), (0.7416667, 0.25), (0.7416667, 0.26666668), (0.73333335, 0.26666668), (0.73333335, 0.25), (0.73333335, 0.25), (0.73333335, 0.26666668), (0.725, 0.26666668), (0.725, 0.25), (0.725, 0.25), (0.725, 0.26666668), (0.71666664, 0.26666668), (0.71666664, 0.25), (0.71666664, 0.25), (0.71666664, 0.26666668), (0.7083333, 0.26666668), (0.7083333, 0.25), (0.7083333, 0.25), (0.7083333, 0.26666668), (0.7, 0.26666668), (0.7, 0.25), (0.7, 0.25), (0.7, 0.26666668), (0.69166666, 0.26666668), (0.69166666, 0.25), (0.69166666, 0.25), (0.69166666, 0.26666668), (0.68333334, 0.26666668), (0.68333334, 0.25), (0.68333334, 0.25), (0.68333334, 0.26666668), (0.675, 0.26666668), (0.675, 0.25), (0.675, 0.25), (0.675, 0.26666668), (0.6666667, 0.26666668), (0.6666667, 0.25), (0.6666667, 0.25), (0.6666667, 0.26666668), (0.65833336, 0.26666668), (0.65833336, 0.25), (0.65833336, 0.25), (0.65833336, 0.26666668), (0.65, 0.26666668), (0.65, 0.25), (0.65, 0.25), (0.65, 0.26666668), (0.64166665, 0.26666668), (0.64166665, 0.25), (0.64166665, 0.25), (0.64166665, 0.26666668), (0.6333333, 0.26666668), (0.6333333, 0.25), (0.6333333, 0.25), (0.6333333, 0.26666668), (0.625, 0.26666668), (0.625, 0.25), (0.625, 0.25), (0.625, 0.26666668), (0.6166667, 0.26666668), (0.6166667, 0.25), (0.6166667, 0.25), (0.6166667, 0.26666668), (0.60833335, 0.26666668), (0.60833335, 0.25), (0.60833335, 0.25), (0.60833335, 0.26666668), (0.6, 0.26666668), (0.6, 0.25), (0.6, 0.25), (0.6, 0.26666668), (0.59166664, 0.26666668), (0.59166664, 0.25), (0.59166664, 0.25), (0.59166664, 0.26666668), (0.5833333, 0.26666668), (0.5833333, 0.25), (0.5833333, 0.25), (0.5833333, 0.26666668), (0.575, 0.26666668), (0.575, 0.25), (0.575, 0.25), (0.575, 0.26666668), (0.56666666, 0.26666668), (0.56666666, 0.25), (0.56666666, 0.25), (0.56666666, 0.26666668), (0.55833334, 0.26666668), (0.55833334, 0.25), (0.55833334, 0.25), (0.55833334, 0.26666668), (0.55, 0.26666668), (0.55, 0.25), (0.55, 0.25), (0.55, 0.26666668), (0.5416667, 0.26666668), (0.5416667, 0.25), (0.5416667, 0.25), (0.5416667, 0.26666668), (0.53333336, 0.26666668), (0.53333336, 0.25), (0.53333336, 0.25), (0.53333336, 0.26666668), (0.525, 0.26666668), (0.525, 0.25), (0.525, 0.25), (0.525, 0.26666668), (0.51666665, 0.26666668), (0.51666665, 0.25), (0.51666665, 0.25), (0.51666665, 0.26666668), (0.5083333, 0.26666668), (0.5083333, 0.25), (0.5083333, 0.25), (0.5083333, 0.26666668), (0.5, 0.26666668), (0.5, 0.25), (0.5, 0.25), (0.5, 0.26666668), (0.49166667, 0.26666668), (0.49166667, 0.25), (0.49166667, 0.25), (0.49166667, 0.26666668), (0.48333332, 0.26666668), (0.48333332, 0.25), (0.48333332, 0.25), (0.48333332, 0.26666668), (0.475, 0.26666668), (0.475, 0.25), (0.475, 0.25), (0.475, 0.26666668), (0.46666667, 0.26666668), (0.46666667, 0.25), (0.46666667, 0.25), (0.46666667, 0.26666668), (0.45833334, 0.26666668), (0.45833334, 0.25), (0.45833334, 0.25), (0.45833334, 0.26666668), (0.45, 0.26666668), (0.45, 0.25), (0.45, 0.25), (0.45, 0.26666668), (0.44166666, 0.26666668), (0.44166666, 0.25), (0.44166666, 0.25), (0.44166666, 0.26666668), (0.43333334, 0.26666668), (0.43333334, 0.25), (0.43333334, 0.25), (0.43333334, 0.26666668), (0.425, 0.26666668), (0.425, 0.25), (0.425, 0.25), (0.425, 0.26666668), (0.41666666, 0.26666668), (0.41666666, 0.25), (0.41666666, 0.25), (0.41666666, 0.26666668), (0.40833333, 0.26666668), (0.40833333, 0.25), (0.40833333, 0.25), (0.40833333, 0.26666668), (0.4, 0.26666668), (0.4, 0.25), (0.4, 0.25), (0.4, 0.26666668), (0.39166668, 0.26666668), (0.39166668, 0.25), (0.39166668, 0.25), (0.39166668, 0.26666668), (0.38333333, 0.26666668), (0.38333333, 0.25), (0.38333333, 0.25), (0.38333333, 0.26666668), (0.375, 0.26666668), (0.375, 0.25), (0.375, 0.25), (0.375, 0.26666668), (0.36666667, 0.26666668), (0.36666667, 0.25), (0.36666667, 0.25), (0.36666667, 0.26666668), (0.35833332, 0.26666668), (0.35833332, 0.25), (0.35833332, 0.25), (0.35833332, 0.26666668), (0.35, 0.26666668), (0.35, 0.25), (0.35, 0.25), (0.35, 0.26666668), (0.34166667, 0.26666668), (0.34166667, 0.25), (0.34166667, 0.25), (0.34166667, 0.26666668), (0.33333334, 0.26666668), (0.33333334, 0.25), (0.33333334, 0.25), (0.33333334, 0.26666668), (0.325, 0.26666668), (0.325, 0.25), (0.325, 0.25), (0.325, 0.26666668), (0.31666666, 0.26666668), (0.31666666, 0.25), (0.31666666, 0.25), (0.31666666, 0.26666668), (0.30833334, 0.26666668), (0.30833334, 0.25), (0.30833334, 0.25), (0.30833334, 0.26666668), (0.3, 0.26666668), (0.3, 0.25), (0.3, 0.25), (0.3, 0.26666668), (0.29166666, 0.26666668), (0.29166666, 0.25), (0.29166666, 0.25), (0.29166666, 0.26666668), (0.28333333, 0.26666668), (0.28333333, 0.25), (0.28333333, 0.25), (0.28333333, 0.26666668), (0.275, 0.26666668), (0.275, 0.25), (0.275, 0.25), (0.275, 0.26666668), (0.26666668, 0.26666668), (0.26666668, 0.25), (0.26666668, 0.25), (0.26666668, 0.26666668), (0.25833333, 0.26666668), (0.25833333, 0.25), (0.25833333, 0.25), (0.25833333, 0.26666668), (0.25, 0.26666668), (0.25, 0.25), (0.25, 0.25), (0.25, 0.26666668), (0.24166666, 0.26666668), (0.24166666, 0.25), (0.24166666, 0.25), (0.24166666, 0.26666668), (0.23333333, 0.26666668), (0.23333333, 0.25), (0.23333333, 0.25), (0.23333333, 0.26666668), (0.225, 0.26666668), (0.225, 0.25), (0.225, 0.25), (0.225, 0.26666668), (0.21666667, 0.26666668), (0.21666667, 0.25), (0.21666667, 0.25), (0.21666667, 0.26666668), (0.20833333, 0.26666668), (0.20833333, 0.25), (0.20833333, 0.25), (0.20833333, 0.26666668), (0.2, 0.26666668), (0.2, 0.25), (0.2, 0.25), (0.2, 0.26666668), (0.19166666, 0.26666668), (0.19166666, 0.25), (0.19166666, 0.25), (0.19166666, 0.26666668), (0.18333334, 0.26666668), (0.18333334, 0.25), (0.18333334, 0.25), (0.18333334, 0.26666668), (0.175, 0.26666668), (0.175, 0.25), (0.175, 0.25), (0.175, 0.26666668), (0.16666667, 0.26666668), (0.16666667, 0.25), (0.16666667, 0.25), (0.16666667, 0.26666668), (0.15833333, 0.26666668), (0.15833333, 0.25), (0.15833333, 0.25), (0.15833333, 0.26666668), (0.15, 0.26666668), (0.15, 0.25), (0.15, 0.25), (0.15, 0.26666668), (0.14166667, 0.26666668), (0.14166667, 0.25), (0.14166667, 0.25), (0.14166667, 0.26666668), (0.13333334, 0.26666668), (0.13333334, 0.25), (0.13333334, 0.25), (0.13333334, 0.26666668), (0.125, 0.26666668), (0.125, 0.25), (0.125, 0.25), (0.125, 0.26666668), (0.11666667, 0.26666668), (0.11666667, 0.25), (0.11666667, 0.25), (0.11666667, 0.26666668), (0.108333334, 0.26666668), (0.108333334, 0.25), (0.108333334, 0.25), (0.108333334, 0.26666668), (0.1, 0.26666668), (0.1, 0.25), (0.1, 0.25), (0.1, 0.26666668), (0.09166667, 0.26666668), (0.09166667, 0.25), (0.09166667, 0.25), (0.09166667, 0.26666668), (0.083333336, 0.26666668), (0.083333336, 0.25), (0.083333336, 0.25), (0.083333336, 0.26666668), (0.075, 0.26666668), (0.075, 0.25), (0.075, 0.25), (0.075, 0.26666668), (0.06666667, 0.26666668), (0.06666667, 0.25), (0.06666667, 0.25), (0.06666667, 0.26666668), (0.058333334, 0.26666668), (0.058333334, 0.25), (0.058333334, 0.25), (0.058333334, 0.26666668), (0.05, 0.26666668), (0.05, 0.25), (0.05, 0.25), (0.05, 0.26666668), (0.041666668, 0.26666668), (0.041666668, 0.25), (0.041666668, 0.25), (0.041666668, 0.26666668), (0.033333335, 0.26666668), (0.033333335, 0.25), (0.033333335, 0.25), (0.033333335, 0.26666668), (0.025, 0.26666668), (0.025, 0.25), (0.025, 0.25), (0.025, 0.26666668), (0.016666668, 0.26666668), (0.016666668, 0.25), (0.016666668, 0.25), (0.016666668, 0.26666668), (0.008333334, 0.26666668), (0.008333334, 0.25), (0.008333334, 0.25), (0.008333334, 0.26666668), (0, 0.26666668), (0, 0.25), (1, 0.26666668), (1, 0.28333333), (0.9916667, 0.28333333), (0.9916667, 0.26666668), (0.9916667, 0.26666668), (0.9916667, 0.28333333), (0.98333335, 0.28333333), (0.98333335, 0.26666668), (0.98333335, 0.26666668), (0.98333335, 0.28333333), (0.975, 0.28333333), (0.975, 0.26666668), (0.975, 0.26666668), (0.975, 0.28333333), (0.96666664, 0.28333333), (0.96666664, 0.26666668), (0.96666664, 0.26666668), (0.96666664, 0.28333333), (0.9583333, 0.28333333), (0.9583333, 0.26666668), (0.9583333, 0.26666668), (0.9583333, 0.28333333), (0.95, 0.28333333), (0.95, 0.26666668), (0.95, 0.26666668), (0.95, 0.28333333), (0.94166666, 0.28333333), (0.94166666, 0.26666668), (0.94166666, 0.26666668), (0.94166666, 0.28333333), (0.93333334, 0.28333333), (0.93333334, 0.26666668), (0.93333334, 0.26666668), (0.93333334, 0.28333333), (0.925, 0.28333333), (0.925, 0.26666668), (0.925, 0.26666668), (0.925, 0.28333333), (0.9166667, 0.28333333), (0.9166667, 0.26666668), (0.9166667, 0.26666668), (0.9166667, 0.28333333), (0.90833336, 0.28333333), (0.90833336, 0.26666668), (0.90833336, 0.26666668), (0.90833336, 0.28333333), (0.9, 0.28333333), (0.9, 0.26666668), (0.9, 0.26666668), (0.9, 0.28333333), (0.89166665, 0.28333333), (0.89166665, 0.26666668), (0.89166665, 0.26666668), (0.89166665, 0.28333333), (0.8833333, 0.28333333), (0.8833333, 0.26666668), (0.8833333, 0.26666668), (0.8833333, 0.28333333), (0.875, 0.28333333), (0.875, 0.26666668), (0.875, 0.26666668), (0.875, 0.28333333), (0.8666667, 0.28333333), (0.8666667, 0.26666668), (0.8666667, 0.26666668), (0.8666667, 0.28333333), (0.85833335, 0.28333333), (0.85833335, 0.26666668), (0.85833335, 0.26666668), (0.85833335, 0.28333333), (0.85, 0.28333333), (0.85, 0.26666668), (0.85, 0.26666668), (0.85, 0.28333333), (0.84166664, 0.28333333), (0.84166664, 0.26666668), (0.84166664, 0.26666668), (0.84166664, 0.28333333), (0.8333333, 0.28333333), (0.8333333, 0.26666668), (0.8333333, 0.26666668), (0.8333333, 0.28333333), (0.825, 0.28333333), (0.825, 0.26666668), (0.825, 0.26666668), (0.825, 0.28333333), (0.81666666, 0.28333333), (0.81666666, 0.26666668), (0.81666666, 0.26666668), (0.81666666, 0.28333333), (0.80833334, 0.28333333), (0.80833334, 0.26666668), (0.80833334, 0.26666668), (0.80833334, 0.28333333), (0.8, 0.28333333), (0.8, 0.26666668), (0.8, 0.26666668), (0.8, 0.28333333), (0.7916667, 0.28333333), (0.7916667, 0.26666668), (0.7916667, 0.26666668), (0.7916667, 0.28333333), (0.78333336, 0.28333333), (0.78333336, 0.26666668), (0.78333336, 0.26666668), (0.78333336, 0.28333333), (0.775, 0.28333333), (0.775, 0.26666668), (0.775, 0.26666668), (0.775, 0.28333333), (0.76666665, 0.28333333), (0.76666665, 0.26666668), (0.76666665, 0.26666668), (0.76666665, 0.28333333), (0.7583333, 0.28333333), (0.7583333, 0.26666668), (0.7583333, 0.26666668), (0.7583333, 0.28333333), (0.75, 0.28333333), (0.75, 0.26666668), (0.75, 0.26666668), (0.75, 0.28333333), (0.7416667, 0.28333333), (0.7416667, 0.26666668), (0.7416667, 0.26666668), (0.7416667, 0.28333333), (0.73333335, 0.28333333), (0.73333335, 0.26666668), (0.73333335, 0.26666668), (0.73333335, 0.28333333), (0.725, 0.28333333), (0.725, 0.26666668), (0.725, 0.26666668), (0.725, 0.28333333), (0.71666664, 0.28333333), (0.71666664, 0.26666668), (0.71666664, 0.26666668), (0.71666664, 0.28333333), (0.7083333, 0.28333333), (0.7083333, 0.26666668), (0.7083333, 0.26666668), (0.7083333, 0.28333333), (0.7, 0.28333333), (0.7, 0.26666668), (0.7, 0.26666668), (0.7, 0.28333333), (0.69166666, 0.28333333), (0.69166666, 0.26666668), (0.69166666, 0.26666668), (0.69166666, 0.28333333), (0.68333334, 0.28333333), (0.68333334, 0.26666668), (0.68333334, 0.26666668), (0.68333334, 0.28333333), (0.675, 0.28333333), (0.675, 0.26666668), (0.675, 0.26666668), (0.675, 0.28333333), (0.6666667, 0.28333333), (0.6666667, 0.26666668), (0.6666667, 0.26666668), (0.6666667, 0.28333333), (0.65833336, 0.28333333), (0.65833336, 0.26666668), (0.65833336, 0.26666668), (0.65833336, 0.28333333), (0.65, 0.28333333), (0.65, 0.26666668), (0.65, 0.26666668), (0.65, 0.28333333), (0.64166665, 0.28333333), (0.64166665, 0.26666668), (0.64166665, 0.26666668), (0.64166665, 0.28333333), (0.6333333, 0.28333333), (0.6333333, 0.26666668), (0.6333333, 0.26666668), (0.6333333, 0.28333333), (0.625, 0.28333333), (0.625, 0.26666668), (0.625, 0.26666668), (0.625, 0.28333333), (0.6166667, 0.28333333), (0.6166667, 0.26666668), (0.6166667, 0.26666668), (0.6166667, 0.28333333), (0.60833335, 0.28333333), (0.60833335, 0.26666668), (0.60833335, 0.26666668), (0.60833335, 0.28333333), (0.6, 0.28333333), (0.6, 0.26666668), (0.6, 0.26666668), (0.6, 0.28333333), (0.59166664, 0.28333333), (0.59166664, 0.26666668), (0.59166664, 0.26666668), (0.59166664, 0.28333333), (0.5833333, 0.28333333), (0.5833333, 0.26666668), (0.5833333, 0.26666668), (0.5833333, 0.28333333), (0.575, 0.28333333), (0.575, 0.26666668), (0.575, 0.26666668), (0.575, 0.28333333), (0.56666666, 0.28333333), (0.56666666, 0.26666668), (0.56666666, 0.26666668), (0.56666666, 0.28333333), (0.55833334, 0.28333333), (0.55833334, 0.26666668), (0.55833334, 0.26666668), (0.55833334, 0.28333333), (0.55, 0.28333333), (0.55, 0.26666668), (0.55, 0.26666668), (0.55, 0.28333333), (0.5416667, 0.28333333), (0.5416667, 0.26666668), (0.5416667, 0.26666668), (0.5416667, 0.28333333), (0.53333336, 0.28333333), (0.53333336, 0.26666668), (0.53333336, 0.26666668), (0.53333336, 0.28333333), (0.525, 0.28333333), (0.525, 0.26666668), (0.525, 0.26666668), (0.525, 0.28333333), (0.51666665, 0.28333333), (0.51666665, 0.26666668), (0.51666665, 0.26666668), (0.51666665, 0.28333333), (0.5083333, 0.28333333), (0.5083333, 0.26666668), (0.5083333, 0.26666668), (0.5083333, 0.28333333), (0.5, 0.28333333), (0.5, 0.26666668), (0.5, 0.26666668), (0.5, 0.28333333), (0.49166667, 0.28333333), (0.49166667, 0.26666668), (0.49166667, 0.26666668), (0.49166667, 0.28333333), (0.48333332, 0.28333333), (0.48333332, 0.26666668), (0.48333332, 0.26666668), (0.48333332, 0.28333333), (0.475, 0.28333333), (0.475, 0.26666668), (0.475, 0.26666668), (0.475, 0.28333333), (0.46666667, 0.28333333), (0.46666667, 0.26666668), (0.46666667, 0.26666668), (0.46666667, 0.28333333), (0.45833334, 0.28333333), (0.45833334, 0.26666668), (0.45833334, 0.26666668), (0.45833334, 0.28333333), (0.45, 0.28333333), (0.45, 0.26666668), (0.45, 0.26666668), (0.45, 0.28333333), (0.44166666, 0.28333333), (0.44166666, 0.26666668), (0.44166666, 0.26666668), (0.44166666, 0.28333333), (0.43333334, 0.28333333), (0.43333334, 0.26666668), (0.43333334, 0.26666668), (0.43333334, 0.28333333), (0.425, 0.28333333), (0.425, 0.26666668), (0.425, 0.26666668), (0.425, 0.28333333), (0.41666666, 0.28333333), (0.41666666, 0.26666668), (0.41666666, 0.26666668), (0.41666666, 0.28333333), (0.40833333, 0.28333333), (0.40833333, 0.26666668), (0.40833333, 0.26666668), (0.40833333, 0.28333333), (0.4, 0.28333333), (0.4, 0.26666668), (0.4, 0.26666668), (0.4, 0.28333333), (0.39166668, 0.28333333), (0.39166668, 0.26666668), (0.39166668, 0.26666668), (0.39166668, 0.28333333), (0.38333333, 0.28333333), (0.38333333, 0.26666668), (0.38333333, 0.26666668), (0.38333333, 0.28333333), (0.375, 0.28333333), (0.375, 0.26666668), (0.375, 0.26666668), (0.375, 0.28333333), (0.36666667, 0.28333333), (0.36666667, 0.26666668), (0.36666667, 0.26666668), (0.36666667, 0.28333333), (0.35833332, 0.28333333), (0.35833332, 0.26666668), (0.35833332, 0.26666668), (0.35833332, 0.28333333), (0.35, 0.28333333), (0.35, 0.26666668), (0.35, 0.26666668), (0.35, 0.28333333), (0.34166667, 0.28333333), (0.34166667, 0.26666668), (0.34166667, 0.26666668), (0.34166667, 0.28333333), (0.33333334, 0.28333333), (0.33333334, 0.26666668), (0.33333334, 0.26666668), (0.33333334, 0.28333333), (0.325, 0.28333333), (0.325, 0.26666668), (0.325, 0.26666668), (0.325, 0.28333333), (0.31666666, 0.28333333), (0.31666666, 0.26666668), (0.31666666, 0.26666668), (0.31666666, 0.28333333), (0.30833334, 0.28333333), (0.30833334, 0.26666668), (0.30833334, 0.26666668), (0.30833334, 0.28333333), (0.3, 0.28333333), (0.3, 0.26666668), (0.3, 0.26666668), (0.3, 0.28333333), (0.29166666, 0.28333333), (0.29166666, 0.26666668), (0.29166666, 0.26666668), (0.29166666, 0.28333333), (0.28333333, 0.28333333), (0.28333333, 0.26666668), (0.28333333, 0.26666668), (0.28333333, 0.28333333), (0.275, 0.28333333), (0.275, 0.26666668), (0.275, 0.26666668), (0.275, 0.28333333), (0.26666668, 0.28333333), (0.26666668, 0.26666668), (0.26666668, 0.26666668), (0.26666668, 0.28333333), (0.25833333, 0.28333333), (0.25833333, 0.26666668), (0.25833333, 0.26666668), (0.25833333, 0.28333333), (0.25, 0.28333333), (0.25, 0.26666668), (0.25, 0.26666668), (0.25, 0.28333333), (0.24166666, 0.28333333), (0.24166666, 0.26666668), (0.24166666, 0.26666668), (0.24166666, 0.28333333), (0.23333333, 0.28333333), (0.23333333, 0.26666668), (0.23333333, 0.26666668), (0.23333333, 0.28333333), (0.225, 0.28333333), (0.225, 0.26666668), (0.225, 0.26666668), (0.225, 0.28333333), (0.21666667, 0.28333333), (0.21666667, 0.26666668), (0.21666667, 0.26666668), (0.21666667, 0.28333333), (0.20833333, 0.28333333), (0.20833333, 0.26666668), (0.20833333, 0.26666668), (0.20833333, 0.28333333), (0.2, 0.28333333), (0.2, 0.26666668), (0.2, 0.26666668), (0.2, 0.28333333), (0.19166666, 0.28333333), (0.19166666, 0.26666668), (0.19166666, 0.26666668), (0.19166666, 0.28333333), (0.18333334, 0.28333333), (0.18333334, 0.26666668), (0.18333334, 0.26666668), (0.18333334, 0.28333333), (0.175, 0.28333333), (0.175, 0.26666668), (0.175, 0.26666668), (0.175, 0.28333333), (0.16666667, 0.28333333), (0.16666667, 0.26666668), (0.16666667, 0.26666668), (0.16666667, 0.28333333), (0.15833333, 0.28333333), (0.15833333, 0.26666668), (0.15833333, 0.26666668), (0.15833333, 0.28333333), (0.15, 0.28333333), (0.15, 0.26666668), (0.15, 0.26666668), (0.15, 0.28333333), (0.14166667, 0.28333333), (0.14166667, 0.26666668), (0.14166667, 0.26666668), (0.14166667, 0.28333333), (0.13333334, 0.28333333), (0.13333334, 0.26666668), (0.13333334, 0.26666668), (0.13333334, 0.28333333), (0.125, 0.28333333), (0.125, 0.26666668), (0.125, 0.26666668), (0.125, 0.28333333), (0.11666667, 0.28333333), (0.11666667, 0.26666668), (0.11666667, 0.26666668), (0.11666667, 0.28333333), (0.108333334, 0.28333333), (0.108333334, 0.26666668), (0.108333334, 0.26666668), (0.108333334, 0.28333333), (0.1, 0.28333333), (0.1, 0.26666668), (0.1, 0.26666668), (0.1, 0.28333333), (0.09166667, 0.28333333), (0.09166667, 0.26666668), (0.09166667, 0.26666668), (0.09166667, 0.28333333), (0.083333336, 0.28333333), (0.083333336, 0.26666668), (0.083333336, 0.26666668), (0.083333336, 0.28333333), (0.075, 0.28333333), (0.075, 0.26666668), (0.075, 0.26666668), (0.075, 0.28333333), (0.06666667, 0.28333333), (0.06666667, 0.26666668), (0.06666667, 0.26666668), (0.06666667, 0.28333333), (0.058333334, 0.28333333), (0.058333334, 0.26666668), (0.058333334, 0.26666668), (0.058333334, 0.28333333), (0.05, 0.28333333), (0.05, 0.26666668), (0.05, 0.26666668), (0.05, 0.28333333), (0.041666668, 0.28333333), (0.041666668, 0.26666668), (0.041666668, 0.26666668), (0.041666668, 0.28333333), (0.033333335, 0.28333333), (0.033333335, 0.26666668), (0.033333335, 0.26666668), (0.033333335, 0.28333333), (0.025, 0.28333333), (0.025, 0.26666668), (0.025, 0.26666668), (0.025, 0.28333333), (0.016666668, 0.28333333), (0.016666668, 0.26666668), (0.016666668, 0.26666668), (0.016666668, 0.28333333), (0.008333334, 0.28333333), (0.008333334, 0.26666668), (0.008333334, 0.26666668), (0.008333334, 0.28333333), (0, 0.28333333), (0, 0.26666668), (1, 0.28333333), (1, 0.3), (0.9916667, 0.3), (0.9916667, 0.28333333), (0.9916667, 0.28333333), (0.9916667, 0.3), (0.98333335, 0.3), (0.98333335, 0.28333333), (0.98333335, 0.28333333), (0.98333335, 0.3), (0.975, 0.3), (0.975, 0.28333333), (0.975, 0.28333333), (0.975, 0.3), (0.96666664, 0.3), (0.96666664, 0.28333333), (0.96666664, 0.28333333), (0.96666664, 0.3), (0.9583333, 0.3), (0.9583333, 0.28333333), (0.9583333, 0.28333333), (0.9583333, 0.3), (0.95, 0.3), (0.95, 0.28333333), (0.95, 0.28333333), (0.95, 0.3), (0.94166666, 0.3), (0.94166666, 0.28333333), (0.94166666, 0.28333333), (0.94166666, 0.3), (0.93333334, 0.3), (0.93333334, 0.28333333), (0.93333334, 0.28333333), (0.93333334, 0.3), (0.925, 0.3), (0.925, 0.28333333), (0.925, 0.28333333), (0.925, 0.3), (0.9166667, 0.3), (0.9166667, 0.28333333), (0.9166667, 0.28333333), (0.9166667, 0.3), (0.90833336, 0.3), (0.90833336, 0.28333333), (0.90833336, 0.28333333), (0.90833336, 0.3), (0.9, 0.3), (0.9, 0.28333333), (0.9, 0.28333333), (0.9, 0.3), (0.89166665, 0.3), (0.89166665, 0.28333333), (0.89166665, 0.28333333), (0.89166665, 0.3), (0.8833333, 0.3), (0.8833333, 0.28333333), (0.8833333, 0.28333333), (0.8833333, 0.3), (0.875, 0.3), (0.875, 0.28333333), (0.875, 0.28333333), (0.875, 0.3), (0.8666667, 0.3), (0.8666667, 0.28333333), (0.8666667, 0.28333333), (0.8666667, 0.3), (0.85833335, 0.3), (0.85833335, 0.28333333), (0.85833335, 0.28333333), (0.85833335, 0.3), (0.85, 0.3), (0.85, 0.28333333), (0.85, 0.28333333), (0.85, 0.3), (0.84166664, 0.3), (0.84166664, 0.28333333), (0.84166664, 0.28333333), (0.84166664, 0.3), (0.8333333, 0.3), (0.8333333, 0.28333333), (0.8333333, 0.28333333), (0.8333333, 0.3), (0.825, 0.3), (0.825, 0.28333333), (0.825, 0.28333333), (0.825, 0.3), (0.81666666, 0.3), (0.81666666, 0.28333333), (0.81666666, 0.28333333), (0.81666666, 0.3), (0.80833334, 0.3), (0.80833334, 0.28333333), (0.80833334, 0.28333333), (0.80833334, 0.3), (0.8, 0.3), (0.8, 0.28333333), (0.8, 0.28333333), (0.8, 0.3), (0.7916667, 0.3), (0.7916667, 0.28333333), (0.7916667, 0.28333333), (0.7916667, 0.3), (0.78333336, 0.3), (0.78333336, 0.28333333), (0.78333336, 0.28333333), (0.78333336, 0.3), (0.775, 0.3), (0.775, 0.28333333), (0.775, 0.28333333), (0.775, 0.3), (0.76666665, 0.3), (0.76666665, 0.28333333), (0.76666665, 0.28333333), (0.76666665, 0.3), (0.7583333, 0.3), (0.7583333, 0.28333333), (0.7583333, 0.28333333), (0.7583333, 0.3), (0.75, 0.3), (0.75, 0.28333333), (0.75, 0.28333333), (0.75, 0.3), (0.7416667, 0.3), (0.7416667, 0.28333333), (0.7416667, 0.28333333), (0.7416667, 0.3), (0.73333335, 0.3), (0.73333335, 0.28333333), (0.73333335, 0.28333333), (0.73333335, 0.3), (0.725, 0.3), (0.725, 0.28333333), (0.725, 0.28333333), (0.725, 0.3), (0.71666664, 0.3), (0.71666664, 0.28333333), (0.71666664, 0.28333333), (0.71666664, 0.3), (0.7083333, 0.3), (0.7083333, 0.28333333), (0.7083333, 0.28333333), (0.7083333, 0.3), (0.7, 0.3), (0.7, 0.28333333), (0.7, 0.28333333), (0.7, 0.3), (0.69166666, 0.3), (0.69166666, 0.28333333), (0.69166666, 0.28333333), (0.69166666, 0.3), (0.68333334, 0.3), (0.68333334, 0.28333333), (0.68333334, 0.28333333), (0.68333334, 0.3), (0.675, 0.3), (0.675, 0.28333333), (0.675, 0.28333333), (0.675, 0.3), (0.6666667, 0.3), (0.6666667, 0.28333333), (0.6666667, 0.28333333), (0.6666667, 0.3), (0.65833336, 0.3), (0.65833336, 0.28333333), (0.65833336, 0.28333333), (0.65833336, 0.3), (0.65, 0.3), (0.65, 0.28333333), (0.65, 0.28333333), (0.65, 0.3), (0.64166665, 0.3), (0.64166665, 0.28333333), (0.64166665, 0.28333333), (0.64166665, 0.3), (0.6333333, 0.3), (0.6333333, 0.28333333), (0.6333333, 0.28333333), (0.6333333, 0.3), (0.625, 0.3), (0.625, 0.28333333), (0.625, 0.28333333), (0.625, 0.3), (0.6166667, 0.3), (0.6166667, 0.28333333), (0.6166667, 0.28333333), (0.6166667, 0.3), (0.60833335, 0.3), (0.60833335, 0.28333333), (0.60833335, 0.28333333), (0.60833335, 0.3), (0.6, 0.3), (0.6, 0.28333333), (0.6, 0.28333333), (0.6, 0.3), (0.59166664, 0.3), (0.59166664, 0.28333333), (0.59166664, 0.28333333), (0.59166664, 0.3), (0.5833333, 0.3), (0.5833333, 0.28333333), (0.5833333, 0.28333333), (0.5833333, 0.3), (0.575, 0.3), (0.575, 0.28333333), (0.575, 0.28333333), (0.575, 0.3), (0.56666666, 0.3), (0.56666666, 0.28333333), (0.56666666, 0.28333333), (0.56666666, 0.3), (0.55833334, 0.3), (0.55833334, 0.28333333), (0.55833334, 0.28333333), (0.55833334, 0.3), (0.55, 0.3), (0.55, 0.28333333), (0.55, 0.28333333), (0.55, 0.3), (0.5416667, 0.3), (0.5416667, 0.28333333), (0.5416667, 0.28333333), (0.5416667, 0.3), (0.53333336, 0.3), (0.53333336, 0.28333333), (0.53333336, 0.28333333), (0.53333336, 0.3), (0.525, 0.3), (0.525, 0.28333333), (0.525, 0.28333333), (0.525, 0.3), (0.51666665, 0.3), (0.51666665, 0.28333333), (0.51666665, 0.28333333), (0.51666665, 0.3), (0.5083333, 0.3), (0.5083333, 0.28333333), (0.5083333, 0.28333333), (0.5083333, 0.3), (0.5, 0.3), (0.5, 0.28333333), (0.5, 0.28333333), (0.5, 0.3), (0.49166667, 0.3), (0.49166667, 0.28333333), (0.49166667, 0.28333333), (0.49166667, 0.3), (0.48333332, 0.3), (0.48333332, 0.28333333), (0.48333332, 0.28333333), (0.48333332, 0.3), (0.475, 0.3), (0.475, 0.28333333), (0.475, 0.28333333), (0.475, 0.3), (0.46666667, 0.3), (0.46666667, 0.28333333), (0.46666667, 0.28333333), (0.46666667, 0.3), (0.45833334, 0.3), (0.45833334, 0.28333333), (0.45833334, 0.28333333), (0.45833334, 0.3), (0.45, 0.3), (0.45, 0.28333333), (0.45, 0.28333333), (0.45, 0.3), (0.44166666, 0.3), (0.44166666, 0.28333333), (0.44166666, 0.28333333), (0.44166666, 0.3), (0.43333334, 0.3), (0.43333334, 0.28333333), (0.43333334, 0.28333333), (0.43333334, 0.3), (0.425, 0.3), (0.425, 0.28333333), (0.425, 0.28333333), (0.425, 0.3), (0.41666666, 0.3), (0.41666666, 0.28333333), (0.41666666, 0.28333333), (0.41666666, 0.3), (0.40833333, 0.3), (0.40833333, 0.28333333), (0.40833333, 0.28333333), (0.40833333, 0.3), (0.4, 0.3), (0.4, 0.28333333), (0.4, 0.28333333), (0.4, 0.3), (0.39166668, 0.3), (0.39166668, 0.28333333), (0.39166668, 0.28333333), (0.39166668, 0.3), (0.38333333, 0.3), (0.38333333, 0.28333333), (0.38333333, 0.28333333), (0.38333333, 0.3), (0.375, 0.3), (0.375, 0.28333333), (0.375, 0.28333333), (0.375, 0.3), (0.36666667, 0.3), (0.36666667, 0.28333333), (0.36666667, 0.28333333), (0.36666667, 0.3), (0.35833332, 0.3), (0.35833332, 0.28333333), (0.35833332, 0.28333333), (0.35833332, 0.3), (0.35, 0.3), (0.35, 0.28333333), (0.35, 0.28333333), (0.35, 0.3), (0.34166667, 0.3), (0.34166667, 0.28333333), (0.34166667, 0.28333333), (0.34166667, 0.3), (0.33333334, 0.3), (0.33333334, 0.28333333), (0.33333334, 0.28333333), (0.33333334, 0.3), (0.325, 0.3), (0.325, 0.28333333), (0.325, 0.28333333), (0.325, 0.3), (0.31666666, 0.3), (0.31666666, 0.28333333), (0.31666666, 0.28333333), (0.31666666, 0.3), (0.30833334, 0.3), (0.30833334, 0.28333333), (0.30833334, 0.28333333), (0.30833334, 0.3), (0.3, 0.3), (0.3, 0.28333333), (0.3, 0.28333333), (0.3, 0.3), (0.29166666, 0.3), (0.29166666, 0.28333333), (0.29166666, 0.28333333), (0.29166666, 0.3), (0.28333333, 0.3), (0.28333333, 0.28333333), (0.28333333, 0.28333333), (0.28333333, 0.3), (0.275, 0.3), (0.275, 0.28333333), (0.275, 0.28333333), (0.275, 0.3), (0.26666668, 0.3), (0.26666668, 0.28333333), (0.26666668, 0.28333333), (0.26666668, 0.3), (0.25833333, 0.3), (0.25833333, 0.28333333), (0.25833333, 0.28333333), (0.25833333, 0.3), (0.25, 0.3), (0.25, 0.28333333), (0.25, 0.28333333), (0.25, 0.3), (0.24166666, 0.3), (0.24166666, 0.28333333), (0.24166666, 0.28333333), (0.24166666, 0.3), (0.23333333, 0.3), (0.23333333, 0.28333333), (0.23333333, 0.28333333), (0.23333333, 0.3), (0.225, 0.3), (0.225, 0.28333333), (0.225, 0.28333333), (0.225, 0.3), (0.21666667, 0.3), (0.21666667, 0.28333333), (0.21666667, 0.28333333), (0.21666667, 0.3), (0.20833333, 0.3), (0.20833333, 0.28333333), (0.20833333, 0.28333333), (0.20833333, 0.3), (0.2, 0.3), (0.2, 0.28333333), (0.2, 0.28333333), (0.2, 0.3), (0.19166666, 0.3), (0.19166666, 0.28333333), (0.19166666, 0.28333333), (0.19166666, 0.3), (0.18333334, 0.3), (0.18333334, 0.28333333), (0.18333334, 0.28333333), (0.18333334, 0.3), (0.175, 0.3), (0.175, 0.28333333), (0.175, 0.28333333), (0.175, 0.3), (0.16666667, 0.3), (0.16666667, 0.28333333), (0.16666667, 0.28333333), (0.16666667, 0.3), (0.15833333, 0.3), (0.15833333, 0.28333333), (0.15833333, 0.28333333), (0.15833333, 0.3), (0.15, 0.3), (0.15, 0.28333333), (0.15, 0.28333333), (0.15, 0.3), (0.14166667, 0.3), (0.14166667, 0.28333333), (0.14166667, 0.28333333), (0.14166667, 0.3), (0.13333334, 0.3), (0.13333334, 0.28333333), (0.13333334, 0.28333333), (0.13333334, 0.3), (0.125, 0.3), (0.125, 0.28333333), (0.125, 0.28333333), (0.125, 0.3), (0.11666667, 0.3), (0.11666667, 0.28333333), (0.11666667, 0.28333333), (0.11666667, 0.3), (0.108333334, 0.3), (0.108333334, 0.28333333), (0.108333334, 0.28333333), (0.108333334, 0.3), (0.1, 0.3), (0.1, 0.28333333), (0.1, 0.28333333), (0.1, 0.3), (0.09166667, 0.3), (0.09166667, 0.28333333), (0.09166667, 0.28333333), (0.09166667, 0.3), (0.083333336, 0.3), (0.083333336, 0.28333333), (0.083333336, 0.28333333), (0.083333336, 0.3), (0.075, 0.3), (0.075, 0.28333333), (0.075, 0.28333333), (0.075, 0.3), (0.06666667, 0.3), (0.06666667, 0.28333333), (0.06666667, 0.28333333), (0.06666667, 0.3), (0.058333334, 0.3), (0.058333334, 0.28333333), (0.058333334, 0.28333333), (0.058333334, 0.3), (0.05, 0.3), (0.05, 0.28333333), (0.05, 0.28333333), (0.05, 0.3), (0.041666668, 0.3), (0.041666668, 0.28333333), (0.041666668, 0.28333333), (0.041666668, 0.3), (0.033333335, 0.3), (0.033333335, 0.28333333), (0.033333335, 0.28333333), (0.033333335, 0.3), (0.025, 0.3), (0.025, 0.28333333), (0.025, 0.28333333), (0.025, 0.3), (0.016666668, 0.3), (0.016666668, 0.28333333), (0.016666668, 0.28333333), (0.016666668, 0.3), (0.008333334, 0.3), (0.008333334, 0.28333333), (0.008333334, 0.28333333), (0.008333334, 0.3), (0, 0.3), (0, 0.28333333), (1, 0.3), (1, 0.31666666), (0.9916667, 0.31666666), (0.9916667, 0.3), (0.9916667, 0.3), (0.9916667, 0.31666666), (0.98333335, 0.31666666), (0.98333335, 0.3), (0.98333335, 0.3), (0.98333335, 0.31666666), (0.975, 0.31666666), (0.975, 0.3), (0.975, 0.3), (0.975, 0.31666666), (0.96666664, 0.31666666), (0.96666664, 0.3), (0.96666664, 0.3), (0.96666664, 0.31666666), (0.9583333, 0.31666666), (0.9583333, 0.3), (0.9583333, 0.3), (0.9583333, 0.31666666), (0.95, 0.31666666), (0.95, 0.3), (0.95, 0.3), (0.95, 0.31666666), (0.94166666, 0.31666666), (0.94166666, 0.3), (0.94166666, 0.3), (0.94166666, 0.31666666), (0.93333334, 0.31666666), (0.93333334, 0.3), (0.93333334, 0.3), (0.93333334, 0.31666666), (0.925, 0.31666666), (0.925, 0.3), (0.925, 0.3), (0.925, 0.31666666), (0.9166667, 0.31666666), (0.9166667, 0.3), (0.9166667, 0.3), (0.9166667, 0.31666666), (0.90833336, 0.31666666), (0.90833336, 0.3), (0.90833336, 0.3), (0.90833336, 0.31666666), (0.9, 0.31666666), (0.9, 0.3), (0.9, 0.3), (0.9, 0.31666666), (0.89166665, 0.31666666), (0.89166665, 0.3), (0.89166665, 0.3), (0.89166665, 0.31666666), (0.8833333, 0.31666666), (0.8833333, 0.3), (0.8833333, 0.3), (0.8833333, 0.31666666), (0.875, 0.31666666), (0.875, 0.3), (0.875, 0.3), (0.875, 0.31666666), (0.8666667, 0.31666666), (0.8666667, 0.3), (0.8666667, 0.3), (0.8666667, 0.31666666), (0.85833335, 0.31666666), (0.85833335, 0.3), (0.85833335, 0.3), (0.85833335, 0.31666666), (0.85, 0.31666666), (0.85, 0.3), (0.85, 0.3), (0.85, 0.31666666), (0.84166664, 0.31666666), (0.84166664, 0.3), (0.84166664, 0.3), (0.84166664, 0.31666666), (0.8333333, 0.31666666), (0.8333333, 0.3), (0.8333333, 0.3), (0.8333333, 0.31666666), (0.825, 0.31666666), (0.825, 0.3), (0.825, 0.3), (0.825, 0.31666666), (0.81666666, 0.31666666), (0.81666666, 0.3), (0.81666666, 0.3), (0.81666666, 0.31666666), (0.80833334, 0.31666666), (0.80833334, 0.3), (0.80833334, 0.3), (0.80833334, 0.31666666), (0.8, 0.31666666), (0.8, 0.3), (0.8, 0.3), (0.8, 0.31666666), (0.7916667, 0.31666666), (0.7916667, 0.3), (0.7916667, 0.3), (0.7916667, 0.31666666), (0.78333336, 0.31666666), (0.78333336, 0.3), (0.78333336, 0.3), (0.78333336, 0.31666666), (0.775, 0.31666666), (0.775, 0.3), (0.775, 0.3), (0.775, 0.31666666), (0.76666665, 0.31666666), (0.76666665, 0.3), (0.76666665, 0.3), (0.76666665, 0.31666666), (0.7583333, 0.31666666), (0.7583333, 0.3), (0.7583333, 0.3), (0.7583333, 0.31666666), (0.75, 0.31666666), (0.75, 0.3), (0.75, 0.3), (0.75, 0.31666666), (0.7416667, 0.31666666), (0.7416667, 0.3), (0.7416667, 0.3), (0.7416667, 0.31666666), (0.73333335, 0.31666666), (0.73333335, 0.3), (0.73333335, 0.3), (0.73333335, 0.31666666), (0.725, 0.31666666), (0.725, 0.3), (0.725, 0.3), (0.725, 0.31666666), (0.71666664, 0.31666666), (0.71666664, 0.3), (0.71666664, 0.3), (0.71666664, 0.31666666), (0.7083333, 0.31666666), (0.7083333, 0.3), (0.7083333, 0.3), (0.7083333, 0.31666666), (0.7, 0.31666666), (0.7, 0.3), (0.7, 0.3), (0.7, 0.31666666), (0.69166666, 0.31666666), (0.69166666, 0.3), (0.69166666, 0.3), (0.69166666, 0.31666666), (0.68333334, 0.31666666), (0.68333334, 0.3), (0.68333334, 0.3), (0.68333334, 0.31666666), (0.675, 0.31666666), (0.675, 0.3), (0.675, 0.3), (0.675, 0.31666666), (0.6666667, 0.31666666), (0.6666667, 0.3), (0.6666667, 0.3), (0.6666667, 0.31666666), (0.65833336, 0.31666666), (0.65833336, 0.3), (0.65833336, 0.3), (0.65833336, 0.31666666), (0.65, 0.31666666), (0.65, 0.3), (0.65, 0.3), (0.65, 0.31666666), (0.64166665, 0.31666666), (0.64166665, 0.3), (0.64166665, 0.3), (0.64166665, 0.31666666), (0.6333333, 0.31666666), (0.6333333, 0.3), (0.6333333, 0.3), (0.6333333, 0.31666666), (0.625, 0.31666666), (0.625, 0.3), (0.625, 0.3), (0.625, 0.31666666), (0.6166667, 0.31666666), (0.6166667, 0.3), (0.6166667, 0.3), (0.6166667, 0.31666666), (0.60833335, 0.31666666), (0.60833335, 0.3), (0.60833335, 0.3), (0.60833335, 0.31666666), (0.6, 0.31666666), (0.6, 0.3), (0.6, 0.3), (0.6, 0.31666666), (0.59166664, 0.31666666), (0.59166664, 0.3), (0.59166664, 0.3), (0.59166664, 0.31666666), (0.5833333, 0.31666666), (0.5833333, 0.3), (0.5833333, 0.3), (0.5833333, 0.31666666), (0.575, 0.31666666), (0.575, 0.3), (0.575, 0.3), (0.575, 0.31666666), (0.56666666, 0.31666666), (0.56666666, 0.3), (0.56666666, 0.3), (0.56666666, 0.31666666), (0.55833334, 0.31666666), (0.55833334, 0.3), (0.55833334, 0.3), (0.55833334, 0.31666666), (0.55, 0.31666666), (0.55, 0.3), (0.55, 0.3), (0.55, 0.31666666), (0.5416667, 0.31666666), (0.5416667, 0.3), (0.5416667, 0.3), (0.5416667, 0.31666666), (0.53333336, 0.31666666), (0.53333336, 0.3), (0.53333336, 0.3), (0.53333336, 0.31666666), (0.525, 0.31666666), (0.525, 0.3), (0.525, 0.3), (0.525, 0.31666666), (0.51666665, 0.31666666), (0.51666665, 0.3), (0.51666665, 0.3), (0.51666665, 0.31666666), (0.5083333, 0.31666666), (0.5083333, 0.3), (0.5083333, 0.3), (0.5083333, 0.31666666), (0.5, 0.31666666), (0.5, 0.3), (0.5, 0.3), (0.5, 0.31666666), (0.49166667, 0.31666666), (0.49166667, 0.3), (0.49166667, 0.3), (0.49166667, 0.31666666), (0.48333332, 0.31666666), (0.48333332, 0.3), (0.48333332, 0.3), (0.48333332, 0.31666666), (0.475, 0.31666666), (0.475, 0.3), (0.475, 0.3), (0.475, 0.31666666), (0.46666667, 0.31666666), (0.46666667, 0.3), (0.46666667, 0.3), (0.46666667, 0.31666666), (0.45833334, 0.31666666), (0.45833334, 0.3), (0.45833334, 0.3), (0.45833334, 0.31666666), (0.45, 0.31666666), (0.45, 0.3), (0.45, 0.3), (0.45, 0.31666666), (0.44166666, 0.31666666), (0.44166666, 0.3), (0.44166666, 0.3), (0.44166666, 0.31666666), (0.43333334, 0.31666666), (0.43333334, 0.3), (0.43333334, 0.3), (0.43333334, 0.31666666), (0.425, 0.31666666), (0.425, 0.3), (0.425, 0.3), (0.425, 0.31666666), (0.41666666, 0.31666666), (0.41666666, 0.3), (0.41666666, 0.3), (0.41666666, 0.31666666), (0.40833333, 0.31666666), (0.40833333, 0.3), (0.40833333, 0.3), (0.40833333, 0.31666666), (0.4, 0.31666666), (0.4, 0.3), (0.4, 0.3), (0.4, 0.31666666), (0.39166668, 0.31666666), (0.39166668, 0.3), (0.39166668, 0.3), (0.39166668, 0.31666666), (0.38333333, 0.31666666), (0.38333333, 0.3), (0.38333333, 0.3), (0.38333333, 0.31666666), (0.375, 0.31666666), (0.375, 0.3), (0.375, 0.3), (0.375, 0.31666666), (0.36666667, 0.31666666), (0.36666667, 0.3), (0.36666667, 0.3), (0.36666667, 0.31666666), (0.35833332, 0.31666666), (0.35833332, 0.3), (0.35833332, 0.3), (0.35833332, 0.31666666), (0.35, 0.31666666), (0.35, 0.3), (0.35, 0.3), (0.35, 0.31666666), (0.34166667, 0.31666666), (0.34166667, 0.3), (0.34166667, 0.3), (0.34166667, 0.31666666), (0.33333334, 0.31666666), (0.33333334, 0.3), (0.33333334, 0.3), (0.33333334, 0.31666666), (0.325, 0.31666666), (0.325, 0.3), (0.325, 0.3), (0.325, 0.31666666), (0.31666666, 0.31666666), (0.31666666, 0.3), (0.31666666, 0.3), (0.31666666, 0.31666666), (0.30833334, 0.31666666), (0.30833334, 0.3), (0.30833334, 0.3), (0.30833334, 0.31666666), (0.3, 0.31666666), (0.3, 0.3), (0.3, 0.3), (0.3, 0.31666666), (0.29166666, 0.31666666), (0.29166666, 0.3), (0.29166666, 0.3), (0.29166666, 0.31666666), (0.28333333, 0.31666666), (0.28333333, 0.3), (0.28333333, 0.3), (0.28333333, 0.31666666), (0.275, 0.31666666), (0.275, 0.3), (0.275, 0.3), (0.275, 0.31666666), (0.26666668, 0.31666666), (0.26666668, 0.3), (0.26666668, 0.3), (0.26666668, 0.31666666), (0.25833333, 0.31666666), (0.25833333, 0.3), (0.25833333, 0.3), (0.25833333, 0.31666666), (0.25, 0.31666666), (0.25, 0.3), (0.25, 0.3), (0.25, 0.31666666), (0.24166666, 0.31666666), (0.24166666, 0.3), (0.24166666, 0.3), (0.24166666, 0.31666666), (0.23333333, 0.31666666), (0.23333333, 0.3), (0.23333333, 0.3), (0.23333333, 0.31666666), (0.225, 0.31666666), (0.225, 0.3), (0.225, 0.3), (0.225, 0.31666666), (0.21666667, 0.31666666), (0.21666667, 0.3), (0.21666667, 0.3), (0.21666667, 0.31666666), (0.20833333, 0.31666666), (0.20833333, 0.3), (0.20833333, 0.3), (0.20833333, 0.31666666), (0.2, 0.31666666), (0.2, 0.3), (0.2, 0.3), (0.2, 0.31666666), (0.19166666, 0.31666666), (0.19166666, 0.3), (0.19166666, 0.3), (0.19166666, 0.31666666), (0.18333334, 0.31666666), (0.18333334, 0.3), (0.18333334, 0.3), (0.18333334, 0.31666666), (0.175, 0.31666666), (0.175, 0.3), (0.175, 0.3), (0.175, 0.31666666), (0.16666667, 0.31666666), (0.16666667, 0.3), (0.16666667, 0.3), (0.16666667, 0.31666666), (0.15833333, 0.31666666), (0.15833333, 0.3), (0.15833333, 0.3), (0.15833333, 0.31666666), (0.15, 0.31666666), (0.15, 0.3), (0.15, 0.3), (0.15, 0.31666666), (0.14166667, 0.31666666), (0.14166667, 0.3), (0.14166667, 0.3), (0.14166667, 0.31666666), (0.13333334, 0.31666666), (0.13333334, 0.3), (0.13333334, 0.3), (0.13333334, 0.31666666), (0.125, 0.31666666), (0.125, 0.3), (0.125, 0.3), (0.125, 0.31666666), (0.11666667, 0.31666666), (0.11666667, 0.3), (0.11666667, 0.3), (0.11666667, 0.31666666), (0.108333334, 0.31666666), (0.108333334, 0.3), (0.108333334, 0.3), (0.108333334, 0.31666666), (0.1, 0.31666666), (0.1, 0.3), (0.1, 0.3), (0.1, 0.31666666), (0.09166667, 0.31666666), (0.09166667, 0.3), (0.09166667, 0.3), (0.09166667, 0.31666666), (0.083333336, 0.31666666), (0.083333336, 0.3), (0.083333336, 0.3), (0.083333336, 0.31666666), (0.075, 0.31666666), (0.075, 0.3), (0.075, 0.3), (0.075, 0.31666666), (0.06666667, 0.31666666), (0.06666667, 0.3), (0.06666667, 0.3), (0.06666667, 0.31666666), (0.058333334, 0.31666666), (0.058333334, 0.3), (0.058333334, 0.3), (0.058333334, 0.31666666), (0.05, 0.31666666), (0.05, 0.3), (0.05, 0.3), (0.05, 0.31666666), (0.041666668, 0.31666666), (0.041666668, 0.3), (0.041666668, 0.3), (0.041666668, 0.31666666), (0.033333335, 0.31666666), (0.033333335, 0.3), (0.033333335, 0.3), (0.033333335, 0.31666666), (0.025, 0.31666666), (0.025, 0.3), (0.025, 0.3), (0.025, 0.31666666), (0.016666668, 0.31666666), (0.016666668, 0.3), (0.016666668, 0.3), (0.016666668, 0.31666666), (0.008333334, 0.31666666), (0.008333334, 0.3), (0.008333334, 0.3), (0.008333334, 0.31666666), (0, 0.31666666), (0, 0.3), (1, 0.31666666), (1, 0.33333334), (0.9916667, 0.33333334), (0.9916667, 0.31666666), (0.9916667, 0.31666666), (0.9916667, 0.33333334), (0.98333335, 0.33333334), (0.98333335, 0.31666666), (0.98333335, 0.31666666), (0.98333335, 0.33333334), (0.975, 0.33333334), (0.975, 0.31666666), (0.975, 0.31666666), (0.975, 0.33333334), (0.96666664, 0.33333334), (0.96666664, 0.31666666), (0.96666664, 0.31666666), (0.96666664, 0.33333334), (0.9583333, 0.33333334), (0.9583333, 0.31666666), (0.9583333, 0.31666666), (0.9583333, 0.33333334), (0.95, 0.33333334), (0.95, 0.31666666), (0.95, 0.31666666), (0.95, 0.33333334), (0.94166666, 0.33333334), (0.94166666, 0.31666666), (0.94166666, 0.31666666), (0.94166666, 0.33333334), (0.93333334, 0.33333334), (0.93333334, 0.31666666), (0.93333334, 0.31666666), (0.93333334, 0.33333334), (0.925, 0.33333334), (0.925, 0.31666666), (0.925, 0.31666666), (0.925, 0.33333334), (0.9166667, 0.33333334), (0.9166667, 0.31666666), (0.9166667, 0.31666666), (0.9166667, 0.33333334), (0.90833336, 0.33333334), (0.90833336, 0.31666666), (0.90833336, 0.31666666), (0.90833336, 0.33333334), (0.9, 0.33333334), (0.9, 0.31666666), (0.9, 0.31666666), (0.9, 0.33333334), (0.89166665, 0.33333334), (0.89166665, 0.31666666), (0.89166665, 0.31666666), (0.89166665, 0.33333334), (0.8833333, 0.33333334), (0.8833333, 0.31666666), (0.8833333, 0.31666666), (0.8833333, 0.33333334), (0.875, 0.33333334), (0.875, 0.31666666), (0.875, 0.31666666), (0.875, 0.33333334), (0.8666667, 0.33333334), (0.8666667, 0.31666666), (0.8666667, 0.31666666), (0.8666667, 0.33333334), (0.85833335, 0.33333334), (0.85833335, 0.31666666), (0.85833335, 0.31666666), (0.85833335, 0.33333334), (0.85, 0.33333334), (0.85, 0.31666666), (0.85, 0.31666666), (0.85, 0.33333334), (0.84166664, 0.33333334), (0.84166664, 0.31666666), (0.84166664, 0.31666666), (0.84166664, 0.33333334), (0.8333333, 0.33333334), (0.8333333, 0.31666666), (0.8333333, 0.31666666), (0.8333333, 0.33333334), (0.825, 0.33333334), (0.825, 0.31666666), (0.825, 0.31666666), (0.825, 0.33333334), (0.81666666, 0.33333334), (0.81666666, 0.31666666), (0.81666666, 0.31666666), (0.81666666, 0.33333334), (0.80833334, 0.33333334), (0.80833334, 0.31666666), (0.80833334, 0.31666666), (0.80833334, 0.33333334), (0.8, 0.33333334), (0.8, 0.31666666), (0.8, 0.31666666), (0.8, 0.33333334), (0.7916667, 0.33333334), (0.7916667, 0.31666666), (0.7916667, 0.31666666), (0.7916667, 0.33333334), (0.78333336, 0.33333334), (0.78333336, 0.31666666), (0.78333336, 0.31666666), (0.78333336, 0.33333334), (0.775, 0.33333334), (0.775, 0.31666666), (0.775, 0.31666666), (0.775, 0.33333334), (0.76666665, 0.33333334), (0.76666665, 0.31666666), (0.76666665, 0.31666666), (0.76666665, 0.33333334), (0.7583333, 0.33333334), (0.7583333, 0.31666666), (0.7583333, 0.31666666), (0.7583333, 0.33333334), (0.75, 0.33333334), (0.75, 0.31666666), (0.75, 0.31666666), (0.75, 0.33333334), (0.7416667, 0.33333334), (0.7416667, 0.31666666), (0.7416667, 0.31666666), (0.7416667, 0.33333334), (0.73333335, 0.33333334), (0.73333335, 0.31666666), (0.73333335, 0.31666666), (0.73333335, 0.33333334), (0.725, 0.33333334), (0.725, 0.31666666), (0.725, 0.31666666), (0.725, 0.33333334), (0.71666664, 0.33333334), (0.71666664, 0.31666666), (0.71666664, 0.31666666), (0.71666664, 0.33333334), (0.7083333, 0.33333334), (0.7083333, 0.31666666), (0.7083333, 0.31666666), (0.7083333, 0.33333334), (0.7, 0.33333334), (0.7, 0.31666666), (0.7, 0.31666666), (0.7, 0.33333334), (0.69166666, 0.33333334), (0.69166666, 0.31666666), (0.69166666, 0.31666666), (0.69166666, 0.33333334), (0.68333334, 0.33333334), (0.68333334, 0.31666666), (0.68333334, 0.31666666), (0.68333334, 0.33333334), (0.675, 0.33333334), (0.675, 0.31666666), (0.675, 0.31666666), (0.675, 0.33333334), (0.6666667, 0.33333334), (0.6666667, 0.31666666), (0.6666667, 0.31666666), (0.6666667, 0.33333334), (0.65833336, 0.33333334), (0.65833336, 0.31666666), (0.65833336, 0.31666666), (0.65833336, 0.33333334), (0.65, 0.33333334), (0.65, 0.31666666), (0.65, 0.31666666), (0.65, 0.33333334), (0.64166665, 0.33333334), (0.64166665, 0.31666666), (0.64166665, 0.31666666), (0.64166665, 0.33333334), (0.6333333, 0.33333334), (0.6333333, 0.31666666), (0.6333333, 0.31666666), (0.6333333, 0.33333334), (0.625, 0.33333334), (0.625, 0.31666666), (0.625, 0.31666666), (0.625, 0.33333334), (0.6166667, 0.33333334), (0.6166667, 0.31666666), (0.6166667, 0.31666666), (0.6166667, 0.33333334), (0.60833335, 0.33333334), (0.60833335, 0.31666666), (0.60833335, 0.31666666), (0.60833335, 0.33333334), (0.6, 0.33333334), (0.6, 0.31666666), (0.6, 0.31666666), (0.6, 0.33333334), (0.59166664, 0.33333334), (0.59166664, 0.31666666), (0.59166664, 0.31666666), (0.59166664, 0.33333334), (0.5833333, 0.33333334), (0.5833333, 0.31666666), (0.5833333, 0.31666666), (0.5833333, 0.33333334), (0.575, 0.33333334), (0.575, 0.31666666), (0.575, 0.31666666), (0.575, 0.33333334), (0.56666666, 0.33333334), (0.56666666, 0.31666666), (0.56666666, 0.31666666), (0.56666666, 0.33333334), (0.55833334, 0.33333334), (0.55833334, 0.31666666), (0.55833334, 0.31666666), (0.55833334, 0.33333334), (0.55, 0.33333334), (0.55, 0.31666666), (0.55, 0.31666666), (0.55, 0.33333334), (0.5416667, 0.33333334), (0.5416667, 0.31666666), (0.5416667, 0.31666666), (0.5416667, 0.33333334), (0.53333336, 0.33333334), (0.53333336, 0.31666666), (0.53333336, 0.31666666), (0.53333336, 0.33333334), (0.525, 0.33333334), (0.525, 0.31666666), (0.525, 0.31666666), (0.525, 0.33333334), (0.51666665, 0.33333334), (0.51666665, 0.31666666), (0.51666665, 0.31666666), (0.51666665, 0.33333334), (0.5083333, 0.33333334), (0.5083333, 0.31666666), (0.5083333, 0.31666666), (0.5083333, 0.33333334), (0.5, 0.33333334), (0.5, 0.31666666), (0.5, 0.31666666), (0.5, 0.33333334), (0.49166667, 0.33333334), (0.49166667, 0.31666666), (0.49166667, 0.31666666), (0.49166667, 0.33333334), (0.48333332, 0.33333334), (0.48333332, 0.31666666), (0.48333332, 0.31666666), (0.48333332, 0.33333334), (0.475, 0.33333334), (0.475, 0.31666666), (0.475, 0.31666666), (0.475, 0.33333334), (0.46666667, 0.33333334), (0.46666667, 0.31666666), (0.46666667, 0.31666666), (0.46666667, 0.33333334), (0.45833334, 0.33333334), (0.45833334, 0.31666666), (0.45833334, 0.31666666), (0.45833334, 0.33333334), (0.45, 0.33333334), (0.45, 0.31666666), (0.45, 0.31666666), (0.45, 0.33333334), (0.44166666, 0.33333334), (0.44166666, 0.31666666), (0.44166666, 0.31666666), (0.44166666, 0.33333334), (0.43333334, 0.33333334), (0.43333334, 0.31666666), (0.43333334, 0.31666666), (0.43333334, 0.33333334), (0.425, 0.33333334), (0.425, 0.31666666), (0.425, 0.31666666), (0.425, 0.33333334), (0.41666666, 0.33333334), (0.41666666, 0.31666666), (0.41666666, 0.31666666), (0.41666666, 0.33333334), (0.40833333, 0.33333334), (0.40833333, 0.31666666), (0.40833333, 0.31666666), (0.40833333, 0.33333334), (0.4, 0.33333334), (0.4, 0.31666666), (0.4, 0.31666666), (0.4, 0.33333334), (0.39166668, 0.33333334), (0.39166668, 0.31666666), (0.39166668, 0.31666666), (0.39166668, 0.33333334), (0.38333333, 0.33333334), (0.38333333, 0.31666666), (0.38333333, 0.31666666), (0.38333333, 0.33333334), (0.375, 0.33333334), (0.375, 0.31666666), (0.375, 0.31666666), (0.375, 0.33333334), (0.36666667, 0.33333334), (0.36666667, 0.31666666), (0.36666667, 0.31666666), (0.36666667, 0.33333334), (0.35833332, 0.33333334), (0.35833332, 0.31666666), (0.35833332, 0.31666666), (0.35833332, 0.33333334), (0.35, 0.33333334), (0.35, 0.31666666), (0.35, 0.31666666), (0.35, 0.33333334), (0.34166667, 0.33333334), (0.34166667, 0.31666666), (0.34166667, 0.31666666), (0.34166667, 0.33333334), (0.33333334, 0.33333334), (0.33333334, 0.31666666), (0.33333334, 0.31666666), (0.33333334, 0.33333334), (0.325, 0.33333334), (0.325, 0.31666666), (0.325, 0.31666666), (0.325, 0.33333334), (0.31666666, 0.33333334), (0.31666666, 0.31666666), (0.31666666, 0.31666666), (0.31666666, 0.33333334), (0.30833334, 0.33333334), (0.30833334, 0.31666666), (0.30833334, 0.31666666), (0.30833334, 0.33333334), (0.3, 0.33333334), (0.3, 0.31666666), (0.3, 0.31666666), (0.3, 0.33333334), (0.29166666, 0.33333334), (0.29166666, 0.31666666), (0.29166666, 0.31666666), (0.29166666, 0.33333334), (0.28333333, 0.33333334), (0.28333333, 0.31666666), (0.28333333, 0.31666666), (0.28333333, 0.33333334), (0.275, 0.33333334), (0.275, 0.31666666), (0.275, 0.31666666), (0.275, 0.33333334), (0.26666668, 0.33333334), (0.26666668, 0.31666666), (0.26666668, 0.31666666), (0.26666668, 0.33333334), (0.25833333, 0.33333334), (0.25833333, 0.31666666), (0.25833333, 0.31666666), (0.25833333, 0.33333334), (0.25, 0.33333334), (0.25, 0.31666666), (0.25, 0.31666666), (0.25, 0.33333334), (0.24166666, 0.33333334), (0.24166666, 0.31666666), (0.24166666, 0.31666666), (0.24166666, 0.33333334), (0.23333333, 0.33333334), (0.23333333, 0.31666666), (0.23333333, 0.31666666), (0.23333333, 0.33333334), (0.225, 0.33333334), (0.225, 0.31666666), (0.225, 0.31666666), (0.225, 0.33333334), (0.21666667, 0.33333334), (0.21666667, 0.31666666), (0.21666667, 0.31666666), (0.21666667, 0.33333334), (0.20833333, 0.33333334), (0.20833333, 0.31666666), (0.20833333, 0.31666666), (0.20833333, 0.33333334), (0.2, 0.33333334), (0.2, 0.31666666), (0.2, 0.31666666), (0.2, 0.33333334), (0.19166666, 0.33333334), (0.19166666, 0.31666666), (0.19166666, 0.31666666), (0.19166666, 0.33333334), (0.18333334, 0.33333334), (0.18333334, 0.31666666), (0.18333334, 0.31666666), (0.18333334, 0.33333334), (0.175, 0.33333334), (0.175, 0.31666666), (0.175, 0.31666666), (0.175, 0.33333334), (0.16666667, 0.33333334), (0.16666667, 0.31666666), (0.16666667, 0.31666666), (0.16666667, 0.33333334), (0.15833333, 0.33333334), (0.15833333, 0.31666666), (0.15833333, 0.31666666), (0.15833333, 0.33333334), (0.15, 0.33333334), (0.15, 0.31666666), (0.15, 0.31666666), (0.15, 0.33333334), (0.14166667, 0.33333334), (0.14166667, 0.31666666), (0.14166667, 0.31666666), (0.14166667, 0.33333334), (0.13333334, 0.33333334), (0.13333334, 0.31666666), (0.13333334, 0.31666666), (0.13333334, 0.33333334), (0.125, 0.33333334), (0.125, 0.31666666), (0.125, 0.31666666), (0.125, 0.33333334), (0.11666667, 0.33333334), (0.11666667, 0.31666666), (0.11666667, 0.31666666), (0.11666667, 0.33333334), (0.108333334, 0.33333334), (0.108333334, 0.31666666), (0.108333334, 0.31666666), (0.108333334, 0.33333334), (0.1, 0.33333334), (0.1, 0.31666666), (0.1, 0.31666666), (0.1, 0.33333334), (0.09166667, 0.33333334), (0.09166667, 0.31666666), (0.09166667, 0.31666666), (0.09166667, 0.33333334), (0.083333336, 0.33333334), (0.083333336, 0.31666666), (0.083333336, 0.31666666), (0.083333336, 0.33333334), (0.075, 0.33333334), (0.075, 0.31666666), (0.075, 0.31666666), (0.075, 0.33333334), (0.06666667, 0.33333334), (0.06666667, 0.31666666), (0.06666667, 0.31666666), (0.06666667, 0.33333334), (0.058333334, 0.33333334), (0.058333334, 0.31666666), (0.058333334, 0.31666666), (0.058333334, 0.33333334), (0.05, 0.33333334), (0.05, 0.31666666), (0.05, 0.31666666), (0.05, 0.33333334), (0.041666668, 0.33333334), (0.041666668, 0.31666666), (0.041666668, 0.31666666), (0.041666668, 0.33333334), (0.033333335, 0.33333334), (0.033333335, 0.31666666), (0.033333335, 0.31666666), (0.033333335, 0.33333334), (0.025, 0.33333334), (0.025, 0.31666666), (0.025, 0.31666666), (0.025, 0.33333334), (0.016666668, 0.33333334), (0.016666668, 0.31666666), (0.016666668, 0.31666666), (0.016666668, 0.33333334), (0.008333334, 0.33333334), (0.008333334, 0.31666666), (0.008333334, 0.31666666), (0.008333334, 0.33333334), (0, 0.33333334), (0, 0.31666666), (1, 0.33333334), (1, 0.35), (0.9916667, 0.35), (0.9916667, 0.33333334), (0.9916667, 0.33333334), (0.9916667, 0.35), (0.98333335, 0.35), (0.98333335, 0.33333334), (0.98333335, 0.33333334), (0.98333335, 0.35), (0.975, 0.35), (0.975, 0.33333334), (0.975, 0.33333334), (0.975, 0.35), (0.96666664, 0.35), (0.96666664, 0.33333334), (0.96666664, 0.33333334), (0.96666664, 0.35), (0.9583333, 0.35), (0.9583333, 0.33333334), (0.9583333, 0.33333334), (0.9583333, 0.35), (0.95, 0.35), (0.95, 0.33333334), (0.95, 0.33333334), (0.95, 0.35), (0.94166666, 0.35), (0.94166666, 0.33333334), (0.94166666, 0.33333334), (0.94166666, 0.35), (0.93333334, 0.35), (0.93333334, 0.33333334), (0.93333334, 0.33333334), (0.93333334, 0.35), (0.925, 0.35), (0.925, 0.33333334), (0.925, 0.33333334), (0.925, 0.35), (0.9166667, 0.35), (0.9166667, 0.33333334), (0.9166667, 0.33333334), (0.9166667, 0.35), (0.90833336, 0.35), (0.90833336, 0.33333334), (0.90833336, 0.33333334), (0.90833336, 0.35), (0.9, 0.35), (0.9, 0.33333334), (0.9, 0.33333334), (0.9, 0.35), (0.89166665, 0.35), (0.89166665, 0.33333334), (0.89166665, 0.33333334), (0.89166665, 0.35), (0.8833333, 0.35), (0.8833333, 0.33333334), (0.8833333, 0.33333334), (0.8833333, 0.35), (0.875, 0.35), (0.875, 0.33333334), (0.875, 0.33333334), (0.875, 0.35), (0.8666667, 0.35), (0.8666667, 0.33333334), (0.8666667, 0.33333334), (0.8666667, 0.35), (0.85833335, 0.35), (0.85833335, 0.33333334), (0.85833335, 0.33333334), (0.85833335, 0.35), (0.85, 0.35), (0.85, 0.33333334), (0.85, 0.33333334), (0.85, 0.35), (0.84166664, 0.35), (0.84166664, 0.33333334), (0.84166664, 0.33333334), (0.84166664, 0.35), (0.8333333, 0.35), (0.8333333, 0.33333334), (0.8333333, 0.33333334), (0.8333333, 0.35), (0.825, 0.35), (0.825, 0.33333334), (0.825, 0.33333334), (0.825, 0.35), (0.81666666, 0.35), (0.81666666, 0.33333334), (0.81666666, 0.33333334), (0.81666666, 0.35), (0.80833334, 0.35), (0.80833334, 0.33333334), (0.80833334, 0.33333334), (0.80833334, 0.35), (0.8, 0.35), (0.8, 0.33333334), (0.8, 0.33333334), (0.8, 0.35), (0.7916667, 0.35), (0.7916667, 0.33333334), (0.7916667, 0.33333334), (0.7916667, 0.35), (0.78333336, 0.35), (0.78333336, 0.33333334), (0.78333336, 0.33333334), (0.78333336, 0.35), (0.775, 0.35), (0.775, 0.33333334), (0.775, 0.33333334), (0.775, 0.35), (0.76666665, 0.35), (0.76666665, 0.33333334), (0.76666665, 0.33333334), (0.76666665, 0.35), (0.7583333, 0.35), (0.7583333, 0.33333334), (0.7583333, 0.33333334), (0.7583333, 0.35), (0.75, 0.35), (0.75, 0.33333334), (0.75, 0.33333334), (0.75, 0.35), (0.7416667, 0.35), (0.7416667, 0.33333334), (0.7416667, 0.33333334), (0.7416667, 0.35), (0.73333335, 0.35), (0.73333335, 0.33333334), (0.73333335, 0.33333334), (0.73333335, 0.35), (0.725, 0.35), (0.725, 0.33333334), (0.725, 0.33333334), (0.725, 0.35), (0.71666664, 0.35), (0.71666664, 0.33333334), (0.71666664, 0.33333334), (0.71666664, 0.35), (0.7083333, 0.35), (0.7083333, 0.33333334), (0.7083333, 0.33333334), (0.7083333, 0.35), (0.7, 0.35), (0.7, 0.33333334), (0.7, 0.33333334), (0.7, 0.35), (0.69166666, 0.35), (0.69166666, 0.33333334), (0.69166666, 0.33333334), (0.69166666, 0.35), (0.68333334, 0.35), (0.68333334, 0.33333334), (0.68333334, 0.33333334), (0.68333334, 0.35), (0.675, 0.35), (0.675, 0.33333334), (0.675, 0.33333334), (0.675, 0.35), (0.6666667, 0.35), (0.6666667, 0.33333334), (0.6666667, 0.33333334), (0.6666667, 0.35), (0.65833336, 0.35), (0.65833336, 0.33333334), (0.65833336, 0.33333334), (0.65833336, 0.35), (0.65, 0.35), (0.65, 0.33333334), (0.65, 0.33333334), (0.65, 0.35), (0.64166665, 0.35), (0.64166665, 0.33333334), (0.64166665, 0.33333334), (0.64166665, 0.35), (0.6333333, 0.35), (0.6333333, 0.33333334), (0.6333333, 0.33333334), (0.6333333, 0.35), (0.625, 0.35), (0.625, 0.33333334), (0.625, 0.33333334), (0.625, 0.35), (0.6166667, 0.35), (0.6166667, 0.33333334), (0.6166667, 0.33333334), (0.6166667, 0.35), (0.60833335, 0.35), (0.60833335, 0.33333334), (0.60833335, 0.33333334), (0.60833335, 0.35), (0.6, 0.35), (0.6, 0.33333334), (0.6, 0.33333334), (0.6, 0.35), (0.59166664, 0.35), (0.59166664, 0.33333334), (0.59166664, 0.33333334), (0.59166664, 0.35), (0.5833333, 0.35), (0.5833333, 0.33333334), (0.5833333, 0.33333334), (0.5833333, 0.35), (0.575, 0.35), (0.575, 0.33333334), (0.575, 0.33333334), (0.575, 0.35), (0.56666666, 0.35), (0.56666666, 0.33333334), (0.56666666, 0.33333334), (0.56666666, 0.35), (0.55833334, 0.35), (0.55833334, 0.33333334), (0.55833334, 0.33333334), (0.55833334, 0.35), (0.55, 0.35), (0.55, 0.33333334), (0.55, 0.33333334), (0.55, 0.35), (0.5416667, 0.35), (0.5416667, 0.33333334), (0.5416667, 0.33333334), (0.5416667, 0.35), (0.53333336, 0.35), (0.53333336, 0.33333334), (0.53333336, 0.33333334), (0.53333336, 0.35), (0.525, 0.35), (0.525, 0.33333334), (0.525, 0.33333334), (0.525, 0.35), (0.51666665, 0.35), (0.51666665, 0.33333334), (0.51666665, 0.33333334), (0.51666665, 0.35), (0.5083333, 0.35), (0.5083333, 0.33333334), (0.5083333, 0.33333334), (0.5083333, 0.35), (0.5, 0.35), (0.5, 0.33333334), (0.5, 0.33333334), (0.5, 0.35), (0.49166667, 0.35), (0.49166667, 0.33333334), (0.49166667, 0.33333334), (0.49166667, 0.35), (0.48333332, 0.35), (0.48333332, 0.33333334), (0.48333332, 0.33333334), (0.48333332, 0.35), (0.475, 0.35), (0.475, 0.33333334), (0.475, 0.33333334), (0.475, 0.35), (0.46666667, 0.35), (0.46666667, 0.33333334), (0.46666667, 0.33333334), (0.46666667, 0.35), (0.45833334, 0.35), (0.45833334, 0.33333334), (0.45833334, 0.33333334), (0.45833334, 0.35), (0.45, 0.35), (0.45, 0.33333334), (0.45, 0.33333334), (0.45, 0.35), (0.44166666, 0.35), (0.44166666, 0.33333334), (0.44166666, 0.33333334), (0.44166666, 0.35), (0.43333334, 0.35), (0.43333334, 0.33333334), (0.43333334, 0.33333334), (0.43333334, 0.35), (0.425, 0.35), (0.425, 0.33333334), (0.425, 0.33333334), (0.425, 0.35), (0.41666666, 0.35), (0.41666666, 0.33333334), (0.41666666, 0.33333334), (0.41666666, 0.35), (0.40833333, 0.35), (0.40833333, 0.33333334), (0.40833333, 0.33333334), (0.40833333, 0.35), (0.4, 0.35), (0.4, 0.33333334), (0.4, 0.33333334), (0.4, 0.35), (0.39166668, 0.35), (0.39166668, 0.33333334), (0.39166668, 0.33333334), (0.39166668, 0.35), (0.38333333, 0.35), (0.38333333, 0.33333334), (0.38333333, 0.33333334), (0.38333333, 0.35), (0.375, 0.35), (0.375, 0.33333334), (0.375, 0.33333334), (0.375, 0.35), (0.36666667, 0.35), (0.36666667, 0.33333334), (0.36666667, 0.33333334), (0.36666667, 0.35), (0.35833332, 0.35), (0.35833332, 0.33333334), (0.35833332, 0.33333334), (0.35833332, 0.35), (0.35, 0.35), (0.35, 0.33333334), (0.35, 0.33333334), (0.35, 0.35), (0.34166667, 0.35), (0.34166667, 0.33333334), (0.34166667, 0.33333334), (0.34166667, 0.35), (0.33333334, 0.35), (0.33333334, 0.33333334), (0.33333334, 0.33333334), (0.33333334, 0.35), (0.325, 0.35), (0.325, 0.33333334), (0.325, 0.33333334), (0.325, 0.35), (0.31666666, 0.35), (0.31666666, 0.33333334), (0.31666666, 0.33333334), (0.31666666, 0.35), (0.30833334, 0.35), (0.30833334, 0.33333334), (0.30833334, 0.33333334), (0.30833334, 0.35), (0.3, 0.35), (0.3, 0.33333334), (0.3, 0.33333334), (0.3, 0.35), (0.29166666, 0.35), (0.29166666, 0.33333334), (0.29166666, 0.33333334), (0.29166666, 0.35), (0.28333333, 0.35), (0.28333333, 0.33333334), (0.28333333, 0.33333334), (0.28333333, 0.35), (0.275, 0.35), (0.275, 0.33333334), (0.275, 0.33333334), (0.275, 0.35), (0.26666668, 0.35), (0.26666668, 0.33333334), (0.26666668, 0.33333334), (0.26666668, 0.35), (0.25833333, 0.35), (0.25833333, 0.33333334), (0.25833333, 0.33333334), (0.25833333, 0.35), (0.25, 0.35), (0.25, 0.33333334), (0.25, 0.33333334), (0.25, 0.35), (0.24166666, 0.35), (0.24166666, 0.33333334), (0.24166666, 0.33333334), (0.24166666, 0.35), (0.23333333, 0.35), (0.23333333, 0.33333334), (0.23333333, 0.33333334), (0.23333333, 0.35), (0.225, 0.35), (0.225, 0.33333334), (0.225, 0.33333334), (0.225, 0.35), (0.21666667, 0.35), (0.21666667, 0.33333334), (0.21666667, 0.33333334), (0.21666667, 0.35), (0.20833333, 0.35), (0.20833333, 0.33333334), (0.20833333, 0.33333334), (0.20833333, 0.35), (0.2, 0.35), (0.2, 0.33333334), (0.2, 0.33333334), (0.2, 0.35), (0.19166666, 0.35), (0.19166666, 0.33333334), (0.19166666, 0.33333334), (0.19166666, 0.35), (0.18333334, 0.35), (0.18333334, 0.33333334), (0.18333334, 0.33333334), (0.18333334, 0.35), (0.175, 0.35), (0.175, 0.33333334), (0.175, 0.33333334), (0.175, 0.35), (0.16666667, 0.35), (0.16666667, 0.33333334), (0.16666667, 0.33333334), (0.16666667, 0.35), (0.15833333, 0.35), (0.15833333, 0.33333334), (0.15833333, 0.33333334), (0.15833333, 0.35), (0.15, 0.35), (0.15, 0.33333334), (0.15, 0.33333334), (0.15, 0.35), (0.14166667, 0.35), (0.14166667, 0.33333334), (0.14166667, 0.33333334), (0.14166667, 0.35), (0.13333334, 0.35), (0.13333334, 0.33333334), (0.13333334, 0.33333334), (0.13333334, 0.35), (0.125, 0.35), (0.125, 0.33333334), (0.125, 0.33333334), (0.125, 0.35), (0.11666667, 0.35), (0.11666667, 0.33333334), (0.11666667, 0.33333334), (0.11666667, 0.35), (0.108333334, 0.35), (0.108333334, 0.33333334), (0.108333334, 0.33333334), (0.108333334, 0.35), (0.1, 0.35), (0.1, 0.33333334), (0.1, 0.33333334), (0.1, 0.35), (0.09166667, 0.35), (0.09166667, 0.33333334), (0.09166667, 0.33333334), (0.09166667, 0.35), (0.083333336, 0.35), (0.083333336, 0.33333334), (0.083333336, 0.33333334), (0.083333336, 0.35), (0.075, 0.35), (0.075, 0.33333334), (0.075, 0.33333334), (0.075, 0.35), (0.06666667, 0.35), (0.06666667, 0.33333334), (0.06666667, 0.33333334), (0.06666667, 0.35), (0.058333334, 0.35), (0.058333334, 0.33333334), (0.058333334, 0.33333334), (0.058333334, 0.35), (0.05, 0.35), (0.05, 0.33333334), (0.05, 0.33333334), (0.05, 0.35), (0.041666668, 0.35), (0.041666668, 0.33333334), (0.041666668, 0.33333334), (0.041666668, 0.35), (0.033333335, 0.35), (0.033333335, 0.33333334), (0.033333335, 0.33333334), (0.033333335, 0.35), (0.025, 0.35), (0.025, 0.33333334), (0.025, 0.33333334), (0.025, 0.35), (0.016666668, 0.35), (0.016666668, 0.33333334), (0.016666668, 0.33333334), (0.016666668, 0.35), (0.008333334, 0.35), (0.008333334, 0.33333334), (0.008333334, 0.33333334), (0.008333334, 0.35), (0, 0.35), (0, 0.33333334), (1, 0.35), (1, 0.36666667), (0.9916667, 0.36666667), (0.9916667, 0.35), (0.9916667, 0.35), (0.9916667, 0.36666667), (0.98333335, 0.36666667), (0.98333335, 0.35), (0.98333335, 0.35), (0.98333335, 0.36666667), (0.975, 0.36666667), (0.975, 0.35), (0.975, 0.35), (0.975, 0.36666667), (0.96666664, 0.36666667), (0.96666664, 0.35), (0.96666664, 0.35), (0.96666664, 0.36666667), (0.9583333, 0.36666667), (0.9583333, 0.35), (0.9583333, 0.35), (0.9583333, 0.36666667), (0.95, 0.36666667), (0.95, 0.35), (0.95, 0.35), (0.95, 0.36666667), (0.94166666, 0.36666667), (0.94166666, 0.35), (0.94166666, 0.35), (0.94166666, 0.36666667), (0.93333334, 0.36666667), (0.93333334, 0.35), (0.93333334, 0.35), (0.93333334, 0.36666667), (0.925, 0.36666667), (0.925, 0.35), (0.925, 0.35), (0.925, 0.36666667), (0.9166667, 0.36666667), (0.9166667, 0.35), (0.9166667, 0.35), (0.9166667, 0.36666667), (0.90833336, 0.36666667), (0.90833336, 0.35), (0.90833336, 0.35), (0.90833336, 0.36666667), (0.9, 0.36666667), (0.9, 0.35), (0.9, 0.35), (0.9, 0.36666667), (0.89166665, 0.36666667), (0.89166665, 0.35), (0.89166665, 0.35), (0.89166665, 0.36666667), (0.8833333, 0.36666667), (0.8833333, 0.35), (0.8833333, 0.35), (0.8833333, 0.36666667), (0.875, 0.36666667), (0.875, 0.35), (0.875, 0.35), (0.875, 0.36666667), (0.8666667, 0.36666667), (0.8666667, 0.35), (0.8666667, 0.35), (0.8666667, 0.36666667), (0.85833335, 0.36666667), (0.85833335, 0.35), (0.85833335, 0.35), (0.85833335, 0.36666667), (0.85, 0.36666667), (0.85, 0.35), (0.85, 0.35), (0.85, 0.36666667), (0.84166664, 0.36666667), (0.84166664, 0.35), (0.84166664, 0.35), (0.84166664, 0.36666667), (0.8333333, 0.36666667), (0.8333333, 0.35), (0.8333333, 0.35), (0.8333333, 0.36666667), (0.825, 0.36666667), (0.825, 0.35), (0.825, 0.35), (0.825, 0.36666667), (0.81666666, 0.36666667), (0.81666666, 0.35), (0.81666666, 0.35), (0.81666666, 0.36666667), (0.80833334, 0.36666667), (0.80833334, 0.35), (0.80833334, 0.35), (0.80833334, 0.36666667), (0.8, 0.36666667), (0.8, 0.35), (0.8, 0.35), (0.8, 0.36666667), (0.7916667, 0.36666667), (0.7916667, 0.35), (0.7916667, 0.35), (0.7916667, 0.36666667), (0.78333336, 0.36666667), (0.78333336, 0.35), (0.78333336, 0.35), (0.78333336, 0.36666667), (0.775, 0.36666667), (0.775, 0.35), (0.775, 0.35), (0.775, 0.36666667), (0.76666665, 0.36666667), (0.76666665, 0.35), (0.76666665, 0.35), (0.76666665, 0.36666667), (0.7583333, 0.36666667), (0.7583333, 0.35), (0.7583333, 0.35), (0.7583333, 0.36666667), (0.75, 0.36666667), (0.75, 0.35), (0.75, 0.35), (0.75, 0.36666667), (0.7416667, 0.36666667), (0.7416667, 0.35), (0.7416667, 0.35), (0.7416667, 0.36666667), (0.73333335, 0.36666667), (0.73333335, 0.35), (0.73333335, 0.35), (0.73333335, 0.36666667), (0.725, 0.36666667), (0.725, 0.35), (0.725, 0.35), (0.725, 0.36666667), (0.71666664, 0.36666667), (0.71666664, 0.35), (0.71666664, 0.35), (0.71666664, 0.36666667), (0.7083333, 0.36666667), (0.7083333, 0.35), (0.7083333, 0.35), (0.7083333, 0.36666667), (0.7, 0.36666667), (0.7, 0.35), (0.7, 0.35), (0.7, 0.36666667), (0.69166666, 0.36666667), (0.69166666, 0.35), (0.69166666, 0.35), (0.69166666, 0.36666667), (0.68333334, 0.36666667), (0.68333334, 0.35), (0.68333334, 0.35), (0.68333334, 0.36666667), (0.675, 0.36666667), (0.675, 0.35), (0.675, 0.35), (0.675, 0.36666667), (0.6666667, 0.36666667), (0.6666667, 0.35), (0.6666667, 0.35), (0.6666667, 0.36666667), (0.65833336, 0.36666667), (0.65833336, 0.35), (0.65833336, 0.35), (0.65833336, 0.36666667), (0.65, 0.36666667), (0.65, 0.35), (0.65, 0.35), (0.65, 0.36666667), (0.64166665, 0.36666667), (0.64166665, 0.35), (0.64166665, 0.35), (0.64166665, 0.36666667), (0.6333333, 0.36666667), (0.6333333, 0.35), (0.6333333, 0.35), (0.6333333, 0.36666667), (0.625, 0.36666667), (0.625, 0.35), (0.625, 0.35), (0.625, 0.36666667), (0.6166667, 0.36666667), (0.6166667, 0.35), (0.6166667, 0.35), (0.6166667, 0.36666667), (0.60833335, 0.36666667), (0.60833335, 0.35), (0.60833335, 0.35), (0.60833335, 0.36666667), (0.6, 0.36666667), (0.6, 0.35), (0.6, 0.35), (0.6, 0.36666667), (0.59166664, 0.36666667), (0.59166664, 0.35), (0.59166664, 0.35), (0.59166664, 0.36666667), (0.5833333, 0.36666667), (0.5833333, 0.35), (0.5833333, 0.35), (0.5833333, 0.36666667), (0.575, 0.36666667), (0.575, 0.35), (0.575, 0.35), (0.575, 0.36666667), (0.56666666, 0.36666667), (0.56666666, 0.35), (0.56666666, 0.35), (0.56666666, 0.36666667), (0.55833334, 0.36666667), (0.55833334, 0.35), (0.55833334, 0.35), (0.55833334, 0.36666667), (0.55, 0.36666667), (0.55, 0.35), (0.55, 0.35), (0.55, 0.36666667), (0.5416667, 0.36666667), (0.5416667, 0.35), (0.5416667, 0.35), (0.5416667, 0.36666667), (0.53333336, 0.36666667), (0.53333336, 0.35), (0.53333336, 0.35), (0.53333336, 0.36666667), (0.525, 0.36666667), (0.525, 0.35), (0.525, 0.35), (0.525, 0.36666667), (0.51666665, 0.36666667), (0.51666665, 0.35), (0.51666665, 0.35), (0.51666665, 0.36666667), (0.5083333, 0.36666667), (0.5083333, 0.35), (0.5083333, 0.35), (0.5083333, 0.36666667), (0.5, 0.36666667), (0.5, 0.35), (0.5, 0.35), (0.5, 0.36666667), (0.49166667, 0.36666667), (0.49166667, 0.35), (0.49166667, 0.35), (0.49166667, 0.36666667), (0.48333332, 0.36666667), (0.48333332, 0.35), (0.48333332, 0.35), (0.48333332, 0.36666667), (0.475, 0.36666667), (0.475, 0.35), (0.475, 0.35), (0.475, 0.36666667), (0.46666667, 0.36666667), (0.46666667, 0.35), (0.46666667, 0.35), (0.46666667, 0.36666667), (0.45833334, 0.36666667), (0.45833334, 0.35), (0.45833334, 0.35), (0.45833334, 0.36666667), (0.45, 0.36666667), (0.45, 0.35), (0.45, 0.35), (0.45, 0.36666667), (0.44166666, 0.36666667), (0.44166666, 0.35), (0.44166666, 0.35), (0.44166666, 0.36666667), (0.43333334, 0.36666667), (0.43333334, 0.35), (0.43333334, 0.35), (0.43333334, 0.36666667), (0.425, 0.36666667), (0.425, 0.35), (0.425, 0.35), (0.425, 0.36666667), (0.41666666, 0.36666667), (0.41666666, 0.35), (0.41666666, 0.35), (0.41666666, 0.36666667), (0.40833333, 0.36666667), (0.40833333, 0.35), (0.40833333, 0.35), (0.40833333, 0.36666667), (0.4, 0.36666667), (0.4, 0.35), (0.4, 0.35), (0.4, 0.36666667), (0.39166668, 0.36666667), (0.39166668, 0.35), (0.39166668, 0.35), (0.39166668, 0.36666667), (0.38333333, 0.36666667), (0.38333333, 0.35), (0.38333333, 0.35), (0.38333333, 0.36666667), (0.375, 0.36666667), (0.375, 0.35), (0.375, 0.35), (0.375, 0.36666667), (0.36666667, 0.36666667), (0.36666667, 0.35), (0.36666667, 0.35), (0.36666667, 0.36666667), (0.35833332, 0.36666667), (0.35833332, 0.35), (0.35833332, 0.35), (0.35833332, 0.36666667), (0.35, 0.36666667), (0.35, 0.35), (0.35, 0.35), (0.35, 0.36666667), (0.34166667, 0.36666667), (0.34166667, 0.35), (0.34166667, 0.35), (0.34166667, 0.36666667), (0.33333334, 0.36666667), (0.33333334, 0.35), (0.33333334, 0.35), (0.33333334, 0.36666667), (0.325, 0.36666667), (0.325, 0.35), (0.325, 0.35), (0.325, 0.36666667), (0.31666666, 0.36666667), (0.31666666, 0.35), (0.31666666, 0.35), (0.31666666, 0.36666667), (0.30833334, 0.36666667), (0.30833334, 0.35), (0.30833334, 0.35), (0.30833334, 0.36666667), (0.3, 0.36666667), (0.3, 0.35), (0.3, 0.35), (0.3, 0.36666667), (0.29166666, 0.36666667), (0.29166666, 0.35), (0.29166666, 0.35), (0.29166666, 0.36666667), (0.28333333, 0.36666667), (0.28333333, 0.35), (0.28333333, 0.35), (0.28333333, 0.36666667), (0.275, 0.36666667), (0.275, 0.35), (0.275, 0.35), (0.275, 0.36666667), (0.26666668, 0.36666667), (0.26666668, 0.35), (0.26666668, 0.35), (0.26666668, 0.36666667), (0.25833333, 0.36666667), (0.25833333, 0.35), (0.25833333, 0.35), (0.25833333, 0.36666667), (0.25, 0.36666667), (0.25, 0.35), (0.25, 0.35), (0.25, 0.36666667), (0.24166666, 0.36666667), (0.24166666, 0.35), (0.24166666, 0.35), (0.24166666, 0.36666667), (0.23333333, 0.36666667), (0.23333333, 0.35), (0.23333333, 0.35), (0.23333333, 0.36666667), (0.225, 0.36666667), (0.225, 0.35), (0.225, 0.35), (0.225, 0.36666667), (0.21666667, 0.36666667), (0.21666667, 0.35), (0.21666667, 0.35), (0.21666667, 0.36666667), (0.20833333, 0.36666667), (0.20833333, 0.35), (0.20833333, 0.35), (0.20833333, 0.36666667), (0.2, 0.36666667), (0.2, 0.35), (0.2, 0.35), (0.2, 0.36666667), (0.19166666, 0.36666667), (0.19166666, 0.35), (0.19166666, 0.35), (0.19166666, 0.36666667), (0.18333334, 0.36666667), (0.18333334, 0.35), (0.18333334, 0.35), (0.18333334, 0.36666667), (0.175, 0.36666667), (0.175, 0.35), (0.175, 0.35), (0.175, 0.36666667), (0.16666667, 0.36666667), (0.16666667, 0.35), (0.16666667, 0.35), (0.16666667, 0.36666667), (0.15833333, 0.36666667), (0.15833333, 0.35), (0.15833333, 0.35), (0.15833333, 0.36666667), (0.15, 0.36666667), (0.15, 0.35), (0.15, 0.35), (0.15, 0.36666667), (0.14166667, 0.36666667), (0.14166667, 0.35), (0.14166667, 0.35), (0.14166667, 0.36666667), (0.13333334, 0.36666667), (0.13333334, 0.35), (0.13333334, 0.35), (0.13333334, 0.36666667), (0.125, 0.36666667), (0.125, 0.35), (0.125, 0.35), (0.125, 0.36666667), (0.11666667, 0.36666667), (0.11666667, 0.35), (0.11666667, 0.35), (0.11666667, 0.36666667), (0.108333334, 0.36666667), (0.108333334, 0.35), (0.108333334, 0.35), (0.108333334, 0.36666667), (0.1, 0.36666667), (0.1, 0.35), (0.1, 0.35), (0.1, 0.36666667), (0.09166667, 0.36666667), (0.09166667, 0.35), (0.09166667, 0.35), (0.09166667, 0.36666667), (0.083333336, 0.36666667), (0.083333336, 0.35), (0.083333336, 0.35), (0.083333336, 0.36666667), (0.075, 0.36666667), (0.075, 0.35), (0.075, 0.35), (0.075, 0.36666667), (0.06666667, 0.36666667), (0.06666667, 0.35), (0.06666667, 0.35), (0.06666667, 0.36666667), (0.058333334, 0.36666667), (0.058333334, 0.35), (0.058333334, 0.35), (0.058333334, 0.36666667), (0.05, 0.36666667), (0.05, 0.35), (0.05, 0.35), (0.05, 0.36666667), (0.041666668, 0.36666667), (0.041666668, 0.35), (0.041666668, 0.35), (0.041666668, 0.36666667), (0.033333335, 0.36666667), (0.033333335, 0.35), (0.033333335, 0.35), (0.033333335, 0.36666667), (0.025, 0.36666667), (0.025, 0.35), (0.025, 0.35), (0.025, 0.36666667), (0.016666668, 0.36666667), (0.016666668, 0.35), (0.016666668, 0.35), (0.016666668, 0.36666667), (0.008333334, 0.36666667), (0.008333334, 0.35), (0.008333334, 0.35), (0.008333334, 0.36666667), (0, 0.36666667), (0, 0.35), (1, 0.36666667), (1, 0.38333333), (0.9916667, 0.38333333), (0.9916667, 0.36666667), (0.9916667, 0.36666667), (0.9916667, 0.38333333), (0.98333335, 0.38333333), (0.98333335, 0.36666667), (0.98333335, 0.36666667), (0.98333335, 0.38333333), (0.975, 0.38333333), (0.975, 0.36666667), (0.975, 0.36666667), (0.975, 0.38333333), (0.96666664, 0.38333333), (0.96666664, 0.36666667), (0.96666664, 0.36666667), (0.96666664, 0.38333333), (0.9583333, 0.38333333), (0.9583333, 0.36666667), (0.9583333, 0.36666667), (0.9583333, 0.38333333), (0.95, 0.38333333), (0.95, 0.36666667), (0.95, 0.36666667), (0.95, 0.38333333), (0.94166666, 0.38333333), (0.94166666, 0.36666667), (0.94166666, 0.36666667), (0.94166666, 0.38333333), (0.93333334, 0.38333333), (0.93333334, 0.36666667), (0.93333334, 0.36666667), (0.93333334, 0.38333333), (0.925, 0.38333333), (0.925, 0.36666667), (0.925, 0.36666667), (0.925, 0.38333333), (0.9166667, 0.38333333), (0.9166667, 0.36666667), (0.9166667, 0.36666667), (0.9166667, 0.38333333), (0.90833336, 0.38333333), (0.90833336, 0.36666667), (0.90833336, 0.36666667), (0.90833336, 0.38333333), (0.9, 0.38333333), (0.9, 0.36666667), (0.9, 0.36666667), (0.9, 0.38333333), (0.89166665, 0.38333333), (0.89166665, 0.36666667), (0.89166665, 0.36666667), (0.89166665, 0.38333333), (0.8833333, 0.38333333), (0.8833333, 0.36666667), (0.8833333, 0.36666667), (0.8833333, 0.38333333), (0.875, 0.38333333), (0.875, 0.36666667), (0.875, 0.36666667), (0.875, 0.38333333), (0.8666667, 0.38333333), (0.8666667, 0.36666667), (0.8666667, 0.36666667), (0.8666667, 0.38333333), (0.85833335, 0.38333333), (0.85833335, 0.36666667), (0.85833335, 0.36666667), (0.85833335, 0.38333333), (0.85, 0.38333333), (0.85, 0.36666667), (0.85, 0.36666667), (0.85, 0.38333333), (0.84166664, 0.38333333), (0.84166664, 0.36666667), (0.84166664, 0.36666667), (0.84166664, 0.38333333), (0.8333333, 0.38333333), (0.8333333, 0.36666667), (0.8333333, 0.36666667), (0.8333333, 0.38333333), (0.825, 0.38333333), (0.825, 0.36666667), (0.825, 0.36666667), (0.825, 0.38333333), (0.81666666, 0.38333333), (0.81666666, 0.36666667), (0.81666666, 0.36666667), (0.81666666, 0.38333333), (0.80833334, 0.38333333), (0.80833334, 0.36666667), (0.80833334, 0.36666667), (0.80833334, 0.38333333), (0.8, 0.38333333), (0.8, 0.36666667), (0.8, 0.36666667), (0.8, 0.38333333), (0.7916667, 0.38333333), (0.7916667, 0.36666667), (0.7916667, 0.36666667), (0.7916667, 0.38333333), (0.78333336, 0.38333333), (0.78333336, 0.36666667), (0.78333336, 0.36666667), (0.78333336, 0.38333333), (0.775, 0.38333333), (0.775, 0.36666667), (0.775, 0.36666667), (0.775, 0.38333333), (0.76666665, 0.38333333), (0.76666665, 0.36666667), (0.76666665, 0.36666667), (0.76666665, 0.38333333), (0.7583333, 0.38333333), (0.7583333, 0.36666667), (0.7583333, 0.36666667), (0.7583333, 0.38333333), (0.75, 0.38333333), (0.75, 0.36666667), (0.75, 0.36666667), (0.75, 0.38333333), (0.7416667, 0.38333333), (0.7416667, 0.36666667), (0.7416667, 0.36666667), (0.7416667, 0.38333333), (0.73333335, 0.38333333), (0.73333335, 0.36666667), (0.73333335, 0.36666667), (0.73333335, 0.38333333), (0.725, 0.38333333), (0.725, 0.36666667), (0.725, 0.36666667), (0.725, 0.38333333), (0.71666664, 0.38333333), (0.71666664, 0.36666667), (0.71666664, 0.36666667), (0.71666664, 0.38333333), (0.7083333, 0.38333333), (0.7083333, 0.36666667), (0.7083333, 0.36666667), (0.7083333, 0.38333333), (0.7, 0.38333333), (0.7, 0.36666667), (0.7, 0.36666667), (0.7, 0.38333333), (0.69166666, 0.38333333), (0.69166666, 0.36666667), (0.69166666, 0.36666667), (0.69166666, 0.38333333), (0.68333334, 0.38333333), (0.68333334, 0.36666667), (0.68333334, 0.36666667), (0.68333334, 0.38333333), (0.675, 0.38333333), (0.675, 0.36666667), (0.675, 0.36666667), (0.675, 0.38333333), (0.6666667, 0.38333333), (0.6666667, 0.36666667), (0.6666667, 0.36666667), (0.6666667, 0.38333333), (0.65833336, 0.38333333), (0.65833336, 0.36666667), (0.65833336, 0.36666667), (0.65833336, 0.38333333), (0.65, 0.38333333), (0.65, 0.36666667), (0.65, 0.36666667), (0.65, 0.38333333), (0.64166665, 0.38333333), (0.64166665, 0.36666667), (0.64166665, 0.36666667), (0.64166665, 0.38333333), (0.6333333, 0.38333333), (0.6333333, 0.36666667), (0.6333333, 0.36666667), (0.6333333, 0.38333333), (0.625, 0.38333333), (0.625, 0.36666667), (0.625, 0.36666667), (0.625, 0.38333333), (0.6166667, 0.38333333), (0.6166667, 0.36666667), (0.6166667, 0.36666667), (0.6166667, 0.38333333), (0.60833335, 0.38333333), (0.60833335, 0.36666667), (0.60833335, 0.36666667), (0.60833335, 0.38333333), (0.6, 0.38333333), (0.6, 0.36666667), (0.6, 0.36666667), (0.6, 0.38333333), (0.59166664, 0.38333333), (0.59166664, 0.36666667), (0.59166664, 0.36666667), (0.59166664, 0.38333333), (0.5833333, 0.38333333), (0.5833333, 0.36666667), (0.5833333, 0.36666667), (0.5833333, 0.38333333), (0.575, 0.38333333), (0.575, 0.36666667), (0.575, 0.36666667), (0.575, 0.38333333), (0.56666666, 0.38333333), (0.56666666, 0.36666667), (0.56666666, 0.36666667), (0.56666666, 0.38333333), (0.55833334, 0.38333333), (0.55833334, 0.36666667), (0.55833334, 0.36666667), (0.55833334, 0.38333333), (0.55, 0.38333333), (0.55, 0.36666667), (0.55, 0.36666667), (0.55, 0.38333333), (0.5416667, 0.38333333), (0.5416667, 0.36666667), (0.5416667, 0.36666667), (0.5416667, 0.38333333), (0.53333336, 0.38333333), (0.53333336, 0.36666667), (0.53333336, 0.36666667), (0.53333336, 0.38333333), (0.525, 0.38333333), (0.525, 0.36666667), (0.525, 0.36666667), (0.525, 0.38333333), (0.51666665, 0.38333333), (0.51666665, 0.36666667), (0.51666665, 0.36666667), (0.51666665, 0.38333333), (0.5083333, 0.38333333), (0.5083333, 0.36666667), (0.5083333, 0.36666667), (0.5083333, 0.38333333), (0.5, 0.38333333), (0.5, 0.36666667), (0.5, 0.36666667), (0.5, 0.38333333), (0.49166667, 0.38333333), (0.49166667, 0.36666667), (0.49166667, 0.36666667), (0.49166667, 0.38333333), (0.48333332, 0.38333333), (0.48333332, 0.36666667), (0.48333332, 0.36666667), (0.48333332, 0.38333333), (0.475, 0.38333333), (0.475, 0.36666667), (0.475, 0.36666667), (0.475, 0.38333333), (0.46666667, 0.38333333), (0.46666667, 0.36666667), (0.46666667, 0.36666667), (0.46666667, 0.38333333), (0.45833334, 0.38333333), (0.45833334, 0.36666667), (0.45833334, 0.36666667), (0.45833334, 0.38333333), (0.45, 0.38333333), (0.45, 0.36666667), (0.45, 0.36666667), (0.45, 0.38333333), (0.44166666, 0.38333333), (0.44166666, 0.36666667), (0.44166666, 0.36666667), (0.44166666, 0.38333333), (0.43333334, 0.38333333), (0.43333334, 0.36666667), (0.43333334, 0.36666667), (0.43333334, 0.38333333), (0.425, 0.38333333), (0.425, 0.36666667), (0.425, 0.36666667), (0.425, 0.38333333), (0.41666666, 0.38333333), (0.41666666, 0.36666667), (0.41666666, 0.36666667), (0.41666666, 0.38333333), (0.40833333, 0.38333333), (0.40833333, 0.36666667), (0.40833333, 0.36666667), (0.40833333, 0.38333333), (0.4, 0.38333333), (0.4, 0.36666667), (0.4, 0.36666667), (0.4, 0.38333333), (0.39166668, 0.38333333), (0.39166668, 0.36666667), (0.39166668, 0.36666667), (0.39166668, 0.38333333), (0.38333333, 0.38333333), (0.38333333, 0.36666667), (0.38333333, 0.36666667), (0.38333333, 0.38333333), (0.375, 0.38333333), (0.375, 0.36666667), (0.375, 0.36666667), (0.375, 0.38333333), (0.36666667, 0.38333333), (0.36666667, 0.36666667), (0.36666667, 0.36666667), (0.36666667, 0.38333333), (0.35833332, 0.38333333), (0.35833332, 0.36666667), (0.35833332, 0.36666667), (0.35833332, 0.38333333), (0.35, 0.38333333), (0.35, 0.36666667), (0.35, 0.36666667), (0.35, 0.38333333), (0.34166667, 0.38333333), (0.34166667, 0.36666667), (0.34166667, 0.36666667), (0.34166667, 0.38333333), (0.33333334, 0.38333333), (0.33333334, 0.36666667), (0.33333334, 0.36666667), (0.33333334, 0.38333333), (0.325, 0.38333333), (0.325, 0.36666667), (0.325, 0.36666667), (0.325, 0.38333333), (0.31666666, 0.38333333), (0.31666666, 0.36666667), (0.31666666, 0.36666667), (0.31666666, 0.38333333), (0.30833334, 0.38333333), (0.30833334, 0.36666667), (0.30833334, 0.36666667), (0.30833334, 0.38333333), (0.3, 0.38333333), (0.3, 0.36666667), (0.3, 0.36666667), (0.3, 0.38333333), (0.29166666, 0.38333333), (0.29166666, 0.36666667), (0.29166666, 0.36666667), (0.29166666, 0.38333333), (0.28333333, 0.38333333), (0.28333333, 0.36666667), (0.28333333, 0.36666667), (0.28333333, 0.38333333), (0.275, 0.38333333), (0.275, 0.36666667), (0.275, 0.36666667), (0.275, 0.38333333), (0.26666668, 0.38333333), (0.26666668, 0.36666667), (0.26666668, 0.36666667), (0.26666668, 0.38333333), (0.25833333, 0.38333333), (0.25833333, 0.36666667), (0.25833333, 0.36666667), (0.25833333, 0.38333333), (0.25, 0.38333333), (0.25, 0.36666667), (0.25, 0.36666667), (0.25, 0.38333333), (0.24166666, 0.38333333), (0.24166666, 0.36666667), (0.24166666, 0.36666667), (0.24166666, 0.38333333), (0.23333333, 0.38333333), (0.23333333, 0.36666667), (0.23333333, 0.36666667), (0.23333333, 0.38333333), (0.225, 0.38333333), (0.225, 0.36666667), (0.225, 0.36666667), (0.225, 0.38333333), (0.21666667, 0.38333333), (0.21666667, 0.36666667), (0.21666667, 0.36666667), (0.21666667, 0.38333333), (0.20833333, 0.38333333), (0.20833333, 0.36666667), (0.20833333, 0.36666667), (0.20833333, 0.38333333), (0.2, 0.38333333), (0.2, 0.36666667), (0.2, 0.36666667), (0.2, 0.38333333), (0.19166666, 0.38333333), (0.19166666, 0.36666667), (0.19166666, 0.36666667), (0.19166666, 0.38333333), (0.18333334, 0.38333333), (0.18333334, 0.36666667), (0.18333334, 0.36666667), (0.18333334, 0.38333333), (0.175, 0.38333333), (0.175, 0.36666667), (0.175, 0.36666667), (0.175, 0.38333333), (0.16666667, 0.38333333), (0.16666667, 0.36666667), (0.16666667, 0.36666667), (0.16666667, 0.38333333), (0.15833333, 0.38333333), (0.15833333, 0.36666667), (0.15833333, 0.36666667), (0.15833333, 0.38333333), (0.15, 0.38333333), (0.15, 0.36666667), (0.15, 0.36666667), (0.15, 0.38333333), (0.14166667, 0.38333333), (0.14166667, 0.36666667), (0.14166667, 0.36666667), (0.14166667, 0.38333333), (0.13333334, 0.38333333), (0.13333334, 0.36666667), (0.13333334, 0.36666667), (0.13333334, 0.38333333), (0.125, 0.38333333), (0.125, 0.36666667), (0.125, 0.36666667), (0.125, 0.38333333), (0.11666667, 0.38333333), (0.11666667, 0.36666667), (0.11666667, 0.36666667), (0.11666667, 0.38333333), (0.108333334, 0.38333333), (0.108333334, 0.36666667), (0.108333334, 0.36666667), (0.108333334, 0.38333333), (0.1, 0.38333333), (0.1, 0.36666667), (0.1, 0.36666667), (0.1, 0.38333333), (0.09166667, 0.38333333), (0.09166667, 0.36666667), (0.09166667, 0.36666667), (0.09166667, 0.38333333), (0.083333336, 0.38333333), (0.083333336, 0.36666667), (0.083333336, 0.36666667), (0.083333336, 0.38333333), (0.075, 0.38333333), (0.075, 0.36666667), (0.075, 0.36666667), (0.075, 0.38333333), (0.06666667, 0.38333333), (0.06666667, 0.36666667), (0.06666667, 0.36666667), (0.06666667, 0.38333333), (0.058333334, 0.38333333), (0.058333334, 0.36666667), (0.058333334, 0.36666667), (0.058333334, 0.38333333), (0.05, 0.38333333), (0.05, 0.36666667), (0.05, 0.36666667), (0.05, 0.38333333), (0.041666668, 0.38333333), (0.041666668, 0.36666667), (0.041666668, 0.36666667), (0.041666668, 0.38333333), (0.033333335, 0.38333333), (0.033333335, 0.36666667), (0.033333335, 0.36666667), (0.033333335, 0.38333333), (0.025, 0.38333333), (0.025, 0.36666667), (0.025, 0.36666667), (0.025, 0.38333333), (0.016666668, 0.38333333), (0.016666668, 0.36666667), (0.016666668, 0.36666667), (0.016666668, 0.38333333), (0.008333334, 0.38333333), (0.008333334, 0.36666667), (0.008333334, 0.36666667), (0.008333334, 0.38333333), (0, 0.38333333), (0, 0.36666667), (1, 0.38333333), (1, 0.4), (0.9916667, 0.4), (0.9916667, 0.38333333), (0.9916667, 0.38333333), (0.9916667, 0.4), (0.98333335, 0.4), (0.98333335, 0.38333333), (0.98333335, 0.38333333), (0.98333335, 0.4), (0.975, 0.4), (0.975, 0.38333333), (0.975, 0.38333333), (0.975, 0.4), (0.96666664, 0.4), (0.96666664, 0.38333333), (0.96666664, 0.38333333), (0.96666664, 0.4), (0.9583333, 0.4), (0.9583333, 0.38333333), (0.9583333, 0.38333333), (0.9583333, 0.4), (0.95, 0.4), (0.95, 0.38333333), (0.95, 0.38333333), (0.95, 0.4), (0.94166666, 0.4), (0.94166666, 0.38333333), (0.94166666, 0.38333333), (0.94166666, 0.4), (0.93333334, 0.4), (0.93333334, 0.38333333), (0.93333334, 0.38333333), (0.93333334, 0.4), (0.925, 0.4), (0.925, 0.38333333), (0.925, 0.38333333), (0.925, 0.4), (0.9166667, 0.4), (0.9166667, 0.38333333), (0.9166667, 0.38333333), (0.9166667, 0.4), (0.90833336, 0.4), (0.90833336, 0.38333333), (0.90833336, 0.38333333), (0.90833336, 0.4), (0.9, 0.4), (0.9, 0.38333333), (0.9, 0.38333333), (0.9, 0.4), (0.89166665, 0.4), (0.89166665, 0.38333333), (0.89166665, 0.38333333), (0.89166665, 0.4), (0.8833333, 0.4), (0.8833333, 0.38333333), (0.8833333, 0.38333333), (0.8833333, 0.4), (0.875, 0.4), (0.875, 0.38333333), (0.875, 0.38333333), (0.875, 0.4), (0.8666667, 0.4), (0.8666667, 0.38333333), (0.8666667, 0.38333333), (0.8666667, 0.4), (0.85833335, 0.4), (0.85833335, 0.38333333), (0.85833335, 0.38333333), (0.85833335, 0.4), (0.85, 0.4), (0.85, 0.38333333), (0.85, 0.38333333), (0.85, 0.4), (0.84166664, 0.4), (0.84166664, 0.38333333), (0.84166664, 0.38333333), (0.84166664, 0.4), (0.8333333, 0.4), (0.8333333, 0.38333333), (0.8333333, 0.38333333), (0.8333333, 0.4), (0.825, 0.4), (0.825, 0.38333333), (0.825, 0.38333333), (0.825, 0.4), (0.81666666, 0.4), (0.81666666, 0.38333333), (0.81666666, 0.38333333), (0.81666666, 0.4), (0.80833334, 0.4), (0.80833334, 0.38333333), (0.80833334, 0.38333333), (0.80833334, 0.4), (0.8, 0.4), (0.8, 0.38333333), (0.8, 0.38333333), (0.8, 0.4), (0.7916667, 0.4), (0.7916667, 0.38333333), (0.7916667, 0.38333333), (0.7916667, 0.4), (0.78333336, 0.4), (0.78333336, 0.38333333), (0.78333336, 0.38333333), (0.78333336, 0.4), (0.775, 0.4), (0.775, 0.38333333), (0.775, 0.38333333), (0.775, 0.4), (0.76666665, 0.4), (0.76666665, 0.38333333), (0.76666665, 0.38333333), (0.76666665, 0.4), (0.7583333, 0.4), (0.7583333, 0.38333333), (0.7583333, 0.38333333), (0.7583333, 0.4), (0.75, 0.4), (0.75, 0.38333333), (0.75, 0.38333333), (0.75, 0.4), (0.7416667, 0.4), (0.7416667, 0.38333333), (0.7416667, 0.38333333), (0.7416667, 0.4), (0.73333335, 0.4), (0.73333335, 0.38333333), (0.73333335, 0.38333333), (0.73333335, 0.4), (0.725, 0.4), (0.725, 0.38333333), (0.725, 0.38333333), (0.725, 0.4), (0.71666664, 0.4), (0.71666664, 0.38333333), (0.71666664, 0.38333333), (0.71666664, 0.4), (0.7083333, 0.4), (0.7083333, 0.38333333), (0.7083333, 0.38333333), (0.7083333, 0.4), (0.7, 0.4), (0.7, 0.38333333), (0.7, 0.38333333), (0.7, 0.4), (0.69166666, 0.4), (0.69166666, 0.38333333), (0.69166666, 0.38333333), (0.69166666, 0.4), (0.68333334, 0.4), (0.68333334, 0.38333333), (0.68333334, 0.38333333), (0.68333334, 0.4), (0.675, 0.4), (0.675, 0.38333333), (0.675, 0.38333333), (0.675, 0.4), (0.6666667, 0.4), (0.6666667, 0.38333333), (0.6666667, 0.38333333), (0.6666667, 0.4), (0.65833336, 0.4), (0.65833336, 0.38333333), (0.65833336, 0.38333333), (0.65833336, 0.4), (0.65, 0.4), (0.65, 0.38333333), (0.65, 0.38333333), (0.65, 0.4), (0.64166665, 0.4), (0.64166665, 0.38333333), (0.64166665, 0.38333333), (0.64166665, 0.4), (0.6333333, 0.4), (0.6333333, 0.38333333), (0.6333333, 0.38333333), (0.6333333, 0.4), (0.625, 0.4), (0.625, 0.38333333), (0.625, 0.38333333), (0.625, 0.4), (0.6166667, 0.4), (0.6166667, 0.38333333), (0.6166667, 0.38333333), (0.6166667, 0.4), (0.60833335, 0.4), (0.60833335, 0.38333333), (0.60833335, 0.38333333), (0.60833335, 0.4), (0.6, 0.4), (0.6, 0.38333333), (0.6, 0.38333333), (0.6, 0.4), (0.59166664, 0.4), (0.59166664, 0.38333333), (0.59166664, 0.38333333), (0.59166664, 0.4), (0.5833333, 0.4), (0.5833333, 0.38333333), (0.5833333, 0.38333333), (0.5833333, 0.4), (0.575, 0.4), (0.575, 0.38333333), (0.575, 0.38333333), (0.575, 0.4), (0.56666666, 0.4), (0.56666666, 0.38333333), (0.56666666, 0.38333333), (0.56666666, 0.4), (0.55833334, 0.4), (0.55833334, 0.38333333), (0.55833334, 0.38333333), (0.55833334, 0.4), (0.55, 0.4), (0.55, 0.38333333), (0.55, 0.38333333), (0.55, 0.4), (0.5416667, 0.4), (0.5416667, 0.38333333), (0.5416667, 0.38333333), (0.5416667, 0.4), (0.53333336, 0.4), (0.53333336, 0.38333333), (0.53333336, 0.38333333), (0.53333336, 0.4), (0.525, 0.4), (0.525, 0.38333333), (0.525, 0.38333333), (0.525, 0.4), (0.51666665, 0.4), (0.51666665, 0.38333333), (0.51666665, 0.38333333), (0.51666665, 0.4), (0.5083333, 0.4), (0.5083333, 0.38333333), (0.5083333, 0.38333333), (0.5083333, 0.4), (0.5, 0.4), (0.5, 0.38333333), (0.5, 0.38333333), (0.5, 0.4), (0.49166667, 0.4), (0.49166667, 0.38333333), (0.49166667, 0.38333333), (0.49166667, 0.4), (0.48333332, 0.4), (0.48333332, 0.38333333), (0.48333332, 0.38333333), (0.48333332, 0.4), (0.475, 0.4), (0.475, 0.38333333), (0.475, 0.38333333), (0.475, 0.4), (0.46666667, 0.4), (0.46666667, 0.38333333), (0.46666667, 0.38333333), (0.46666667, 0.4), (0.45833334, 0.4), (0.45833334, 0.38333333), (0.45833334, 0.38333333), (0.45833334, 0.4), (0.45, 0.4), (0.45, 0.38333333), (0.45, 0.38333333), (0.45, 0.4), (0.44166666, 0.4), (0.44166666, 0.38333333), (0.44166666, 0.38333333), (0.44166666, 0.4), (0.43333334, 0.4), (0.43333334, 0.38333333), (0.43333334, 0.38333333), (0.43333334, 0.4), (0.425, 0.4), (0.425, 0.38333333), (0.425, 0.38333333), (0.425, 0.4), (0.41666666, 0.4), (0.41666666, 0.38333333), (0.41666666, 0.38333333), (0.41666666, 0.4), (0.40833333, 0.4), (0.40833333, 0.38333333), (0.40833333, 0.38333333), (0.40833333, 0.4), (0.4, 0.4), (0.4, 0.38333333), (0.4, 0.38333333), (0.4, 0.4), (0.39166668, 0.4), (0.39166668, 0.38333333), (0.39166668, 0.38333333), (0.39166668, 0.4), (0.38333333, 0.4), (0.38333333, 0.38333333), (0.38333333, 0.38333333), (0.38333333, 0.4), (0.375, 0.4), (0.375, 0.38333333), (0.375, 0.38333333), (0.375, 0.4), (0.36666667, 0.4), (0.36666667, 0.38333333), (0.36666667, 0.38333333), (0.36666667, 0.4), (0.35833332, 0.4), (0.35833332, 0.38333333), (0.35833332, 0.38333333), (0.35833332, 0.4), (0.35, 0.4), (0.35, 0.38333333), (0.35, 0.38333333), (0.35, 0.4), (0.34166667, 0.4), (0.34166667, 0.38333333), (0.34166667, 0.38333333), (0.34166667, 0.4), (0.33333334, 0.4), (0.33333334, 0.38333333), (0.33333334, 0.38333333), (0.33333334, 0.4), (0.325, 0.4), (0.325, 0.38333333), (0.325, 0.38333333), (0.325, 0.4), (0.31666666, 0.4), (0.31666666, 0.38333333), (0.31666666, 0.38333333), (0.31666666, 0.4), (0.30833334, 0.4), (0.30833334, 0.38333333), (0.30833334, 0.38333333), (0.30833334, 0.4), (0.3, 0.4), (0.3, 0.38333333), (0.3, 0.38333333), (0.3, 0.4), (0.29166666, 0.4), (0.29166666, 0.38333333), (0.29166666, 0.38333333), (0.29166666, 0.4), (0.28333333, 0.4), (0.28333333, 0.38333333), (0.28333333, 0.38333333), (0.28333333, 0.4), (0.275, 0.4), (0.275, 0.38333333), (0.275, 0.38333333), (0.275, 0.4), (0.26666668, 0.4), (0.26666668, 0.38333333), (0.26666668, 0.38333333), (0.26666668, 0.4), (0.25833333, 0.4), (0.25833333, 0.38333333), (0.25833333, 0.38333333), (0.25833333, 0.4), (0.25, 0.4), (0.25, 0.38333333), (0.25, 0.38333333), (0.25, 0.4), (0.24166666, 0.4), (0.24166666, 0.38333333), (0.24166666, 0.38333333), (0.24166666, 0.4), (0.23333333, 0.4), (0.23333333, 0.38333333), (0.23333333, 0.38333333), (0.23333333, 0.4), (0.225, 0.4), (0.225, 0.38333333), (0.225, 0.38333333), (0.225, 0.4), (0.21666667, 0.4), (0.21666667, 0.38333333), (0.21666667, 0.38333333), (0.21666667, 0.4), (0.20833333, 0.4), (0.20833333, 0.38333333), (0.20833333, 0.38333333), (0.20833333, 0.4), (0.2, 0.4), (0.2, 0.38333333), (0.2, 0.38333333), (0.2, 0.4), (0.19166666, 0.4), (0.19166666, 0.38333333), (0.19166666, 0.38333333), (0.19166666, 0.4), (0.18333334, 0.4), (0.18333334, 0.38333333), (0.18333334, 0.38333333), (0.18333334, 0.4), (0.175, 0.4), (0.175, 0.38333333), (0.175, 0.38333333), (0.175, 0.4), (0.16666667, 0.4), (0.16666667, 0.38333333), (0.16666667, 0.38333333), (0.16666667, 0.4), (0.15833333, 0.4), (0.15833333, 0.38333333), (0.15833333, 0.38333333), (0.15833333, 0.4), (0.15, 0.4), (0.15, 0.38333333), (0.15, 0.38333333), (0.15, 0.4), (0.14166667, 0.4), (0.14166667, 0.38333333), (0.14166667, 0.38333333), (0.14166667, 0.4), (0.13333334, 0.4), (0.13333334, 0.38333333), (0.13333334, 0.38333333), (0.13333334, 0.4), (0.125, 0.4), (0.125, 0.38333333), (0.125, 0.38333333), (0.125, 0.4), (0.11666667, 0.4), (0.11666667, 0.38333333), (0.11666667, 0.38333333), (0.11666667, 0.4), (0.108333334, 0.4), (0.108333334, 0.38333333), (0.108333334, 0.38333333), (0.108333334, 0.4), (0.1, 0.4), (0.1, 0.38333333), (0.1, 0.38333333), (0.1, 0.4), (0.09166667, 0.4), (0.09166667, 0.38333333), (0.09166667, 0.38333333), (0.09166667, 0.4), (0.083333336, 0.4), (0.083333336, 0.38333333), (0.083333336, 0.38333333), (0.083333336, 0.4), (0.075, 0.4), (0.075, 0.38333333), (0.075, 0.38333333), (0.075, 0.4), (0.06666667, 0.4), (0.06666667, 0.38333333), (0.06666667, 0.38333333), (0.06666667, 0.4), (0.058333334, 0.4), (0.058333334, 0.38333333), (0.058333334, 0.38333333), (0.058333334, 0.4), (0.05, 0.4), (0.05, 0.38333333), (0.05, 0.38333333), (0.05, 0.4), (0.041666668, 0.4), (0.041666668, 0.38333333), (0.041666668, 0.38333333), (0.041666668, 0.4), (0.033333335, 0.4), (0.033333335, 0.38333333), (0.033333335, 0.38333333), (0.033333335, 0.4), (0.025, 0.4), (0.025, 0.38333333), (0.025, 0.38333333), (0.025, 0.4), (0.016666668, 0.4), (0.016666668, 0.38333333), (0.016666668, 0.38333333), (0.016666668, 0.4), (0.008333334, 0.4), (0.008333334, 0.38333333), (0.008333334, 0.38333333), (0.008333334, 0.4), (0, 0.4), (0, 0.38333333), (1, 0.4), (1, 0.41666666), (0.9916667, 0.41666666), (0.9916667, 0.4), (0.9916667, 0.4), (0.9916667, 0.41666666), (0.98333335, 0.41666666), (0.98333335, 0.4), (0.98333335, 0.4), (0.98333335, 0.41666666), (0.975, 0.41666666), (0.975, 0.4), (0.975, 0.4), (0.975, 0.41666666), (0.96666664, 0.41666666), (0.96666664, 0.4), (0.96666664, 0.4), (0.96666664, 0.41666666), (0.9583333, 0.41666666), (0.9583333, 0.4), (0.9583333, 0.4), (0.9583333, 0.41666666), (0.95, 0.41666666), (0.95, 0.4), (0.95, 0.4), (0.95, 0.41666666), (0.94166666, 0.41666666), (0.94166666, 0.4), (0.94166666, 0.4), (0.94166666, 0.41666666), (0.93333334, 0.41666666), (0.93333334, 0.4), (0.93333334, 0.4), (0.93333334, 0.41666666), (0.925, 0.41666666), (0.925, 0.4), (0.925, 0.4), (0.925, 0.41666666), (0.9166667, 0.41666666), (0.9166667, 0.4), (0.9166667, 0.4), (0.9166667, 0.41666666), (0.90833336, 0.41666666), (0.90833336, 0.4), (0.90833336, 0.4), (0.90833336, 0.41666666), (0.9, 0.41666666), (0.9, 0.4), (0.9, 0.4), (0.9, 0.41666666), (0.89166665, 0.41666666), (0.89166665, 0.4), (0.89166665, 0.4), (0.89166665, 0.41666666), (0.8833333, 0.41666666), (0.8833333, 0.4), (0.8833333, 0.4), (0.8833333, 0.41666666), (0.875, 0.41666666), (0.875, 0.4), (0.875, 0.4), (0.875, 0.41666666), (0.8666667, 0.41666666), (0.8666667, 0.4), (0.8666667, 0.4), (0.8666667, 0.41666666), (0.85833335, 0.41666666), (0.85833335, 0.4), (0.85833335, 0.4), (0.85833335, 0.41666666), (0.85, 0.41666666), (0.85, 0.4), (0.85, 0.4), (0.85, 0.41666666), (0.84166664, 0.41666666), (0.84166664, 0.4), (0.84166664, 0.4), (0.84166664, 0.41666666), (0.8333333, 0.41666666), (0.8333333, 0.4), (0.8333333, 0.4), (0.8333333, 0.41666666), (0.825, 0.41666666), (0.825, 0.4), (0.825, 0.4), (0.825, 0.41666666), (0.81666666, 0.41666666), (0.81666666, 0.4), (0.81666666, 0.4), (0.81666666, 0.41666666), (0.80833334, 0.41666666), (0.80833334, 0.4), (0.80833334, 0.4), (0.80833334, 0.41666666), (0.8, 0.41666666), (0.8, 0.4), (0.8, 0.4), (0.8, 0.41666666), (0.7916667, 0.41666666), (0.7916667, 0.4), (0.7916667, 0.4), (0.7916667, 0.41666666), (0.78333336, 0.41666666), (0.78333336, 0.4), (0.78333336, 0.4), (0.78333336, 0.41666666), (0.775, 0.41666666), (0.775, 0.4), (0.775, 0.4), (0.775, 0.41666666), (0.76666665, 0.41666666), (0.76666665, 0.4), (0.76666665, 0.4), (0.76666665, 0.41666666), (0.7583333, 0.41666666), (0.7583333, 0.4), (0.7583333, 0.4), (0.7583333, 0.41666666), (0.75, 0.41666666), (0.75, 0.4), (0.75, 0.4), (0.75, 0.41666666), (0.7416667, 0.41666666), (0.7416667, 0.4), (0.7416667, 0.4), (0.7416667, 0.41666666), (0.73333335, 0.41666666), (0.73333335, 0.4), (0.73333335, 0.4), (0.73333335, 0.41666666), (0.725, 0.41666666), (0.725, 0.4), (0.725, 0.4), (0.725, 0.41666666), (0.71666664, 0.41666666), (0.71666664, 0.4), (0.71666664, 0.4), (0.71666664, 0.41666666), (0.7083333, 0.41666666), (0.7083333, 0.4), (0.7083333, 0.4), (0.7083333, 0.41666666), (0.7, 0.41666666), (0.7, 0.4), (0.7, 0.4), (0.7, 0.41666666), (0.69166666, 0.41666666), (0.69166666, 0.4), (0.69166666, 0.4), (0.69166666, 0.41666666), (0.68333334, 0.41666666), (0.68333334, 0.4), (0.68333334, 0.4), (0.68333334, 0.41666666), (0.675, 0.41666666), (0.675, 0.4), (0.675, 0.4), (0.675, 0.41666666), (0.6666667, 0.41666666), (0.6666667, 0.4), (0.6666667, 0.4), (0.6666667, 0.41666666), (0.65833336, 0.41666666), (0.65833336, 0.4), (0.65833336, 0.4), (0.65833336, 0.41666666), (0.65, 0.41666666), (0.65, 0.4), (0.65, 0.4), (0.65, 0.41666666), (0.64166665, 0.41666666), (0.64166665, 0.4), (0.64166665, 0.4), (0.64166665, 0.41666666), (0.6333333, 0.41666666), (0.6333333, 0.4), (0.6333333, 0.4), (0.6333333, 0.41666666), (0.625, 0.41666666), (0.625, 0.4), (0.625, 0.4), (0.625, 0.41666666), (0.6166667, 0.41666666), (0.6166667, 0.4), (0.6166667, 0.4), (0.6166667, 0.41666666), (0.60833335, 0.41666666), (0.60833335, 0.4), (0.60833335, 0.4), (0.60833335, 0.41666666), (0.6, 0.41666666), (0.6, 0.4), (0.6, 0.4), (0.6, 0.41666666), (0.59166664, 0.41666666), (0.59166664, 0.4), (0.59166664, 0.4), (0.59166664, 0.41666666), (0.5833333, 0.41666666), (0.5833333, 0.4), (0.5833333, 0.4), (0.5833333, 0.41666666), (0.575, 0.41666666), (0.575, 0.4), (0.575, 0.4), (0.575, 0.41666666), (0.56666666, 0.41666666), (0.56666666, 0.4), (0.56666666, 0.4), (0.56666666, 0.41666666), (0.55833334, 0.41666666), (0.55833334, 0.4), (0.55833334, 0.4), (0.55833334, 0.41666666), (0.55, 0.41666666), (0.55, 0.4), (0.55, 0.4), (0.55, 0.41666666), (0.5416667, 0.41666666), (0.5416667, 0.4), (0.5416667, 0.4), (0.5416667, 0.41666666), (0.53333336, 0.41666666), (0.53333336, 0.4), (0.53333336, 0.4), (0.53333336, 0.41666666), (0.525, 0.41666666), (0.525, 0.4), (0.525, 0.4), (0.525, 0.41666666), (0.51666665, 0.41666666), (0.51666665, 0.4), (0.51666665, 0.4), (0.51666665, 0.41666666), (0.5083333, 0.41666666), (0.5083333, 0.4), (0.5083333, 0.4), (0.5083333, 0.41666666), (0.5, 0.41666666), (0.5, 0.4), (0.5, 0.4), (0.5, 0.41666666), (0.49166667, 0.41666666), (0.49166667, 0.4), (0.49166667, 0.4), (0.49166667, 0.41666666), (0.48333332, 0.41666666), (0.48333332, 0.4), (0.48333332, 0.4), (0.48333332, 0.41666666), (0.475, 0.41666666), (0.475, 0.4), (0.475, 0.4), (0.475, 0.41666666), (0.46666667, 0.41666666), (0.46666667, 0.4), (0.46666667, 0.4), (0.46666667, 0.41666666), (0.45833334, 0.41666666), (0.45833334, 0.4), (0.45833334, 0.4), (0.45833334, 0.41666666), (0.45, 0.41666666), (0.45, 0.4), (0.45, 0.4), (0.45, 0.41666666), (0.44166666, 0.41666666), (0.44166666, 0.4), (0.44166666, 0.4), (0.44166666, 0.41666666), (0.43333334, 0.41666666), (0.43333334, 0.4), (0.43333334, 0.4), (0.43333334, 0.41666666), (0.425, 0.41666666), (0.425, 0.4), (0.425, 0.4), (0.425, 0.41666666), (0.41666666, 0.41666666), (0.41666666, 0.4), (0.41666666, 0.4), (0.41666666, 0.41666666), (0.40833333, 0.41666666), (0.40833333, 0.4), (0.40833333, 0.4), (0.40833333, 0.41666666), (0.4, 0.41666666), (0.4, 0.4), (0.4, 0.4), (0.4, 0.41666666), (0.39166668, 0.41666666), (0.39166668, 0.4), (0.39166668, 0.4), (0.39166668, 0.41666666), (0.38333333, 0.41666666), (0.38333333, 0.4), (0.38333333, 0.4), (0.38333333, 0.41666666), (0.375, 0.41666666), (0.375, 0.4), (0.375, 0.4), (0.375, 0.41666666), (0.36666667, 0.41666666), (0.36666667, 0.4), (0.36666667, 0.4), (0.36666667, 0.41666666), (0.35833332, 0.41666666), (0.35833332, 0.4), (0.35833332, 0.4), (0.35833332, 0.41666666), (0.35, 0.41666666), (0.35, 0.4), (0.35, 0.4), (0.35, 0.41666666), (0.34166667, 0.41666666), (0.34166667, 0.4), (0.34166667, 0.4), (0.34166667, 0.41666666), (0.33333334, 0.41666666), (0.33333334, 0.4), (0.33333334, 0.4), (0.33333334, 0.41666666), (0.325, 0.41666666), (0.325, 0.4), (0.325, 0.4), (0.325, 0.41666666), (0.31666666, 0.41666666), (0.31666666, 0.4), (0.31666666, 0.4), (0.31666666, 0.41666666), (0.30833334, 0.41666666), (0.30833334, 0.4), (0.30833334, 0.4), (0.30833334, 0.41666666), (0.3, 0.41666666), (0.3, 0.4), (0.3, 0.4), (0.3, 0.41666666), (0.29166666, 0.41666666), (0.29166666, 0.4), (0.29166666, 0.4), (0.29166666, 0.41666666), (0.28333333, 0.41666666), (0.28333333, 0.4), (0.28333333, 0.4), (0.28333333, 0.41666666), (0.275, 0.41666666), (0.275, 0.4), (0.275, 0.4), (0.275, 0.41666666), (0.26666668, 0.41666666), (0.26666668, 0.4), (0.26666668, 0.4), (0.26666668, 0.41666666), (0.25833333, 0.41666666), (0.25833333, 0.4), (0.25833333, 0.4), (0.25833333, 0.41666666), (0.25, 0.41666666), (0.25, 0.4), (0.25, 0.4), (0.25, 0.41666666), (0.24166666, 0.41666666), (0.24166666, 0.4), (0.24166666, 0.4), (0.24166666, 0.41666666), (0.23333333, 0.41666666), (0.23333333, 0.4), (0.23333333, 0.4), (0.23333333, 0.41666666), (0.225, 0.41666666), (0.225, 0.4), (0.225, 0.4), (0.225, 0.41666666), (0.21666667, 0.41666666), (0.21666667, 0.4), (0.21666667, 0.4), (0.21666667, 0.41666666), (0.20833333, 0.41666666), (0.20833333, 0.4), (0.20833333, 0.4), (0.20833333, 0.41666666), (0.2, 0.41666666), (0.2, 0.4), (0.2, 0.4), (0.2, 0.41666666), (0.19166666, 0.41666666), (0.19166666, 0.4), (0.19166666, 0.4), (0.19166666, 0.41666666), (0.18333334, 0.41666666), (0.18333334, 0.4), (0.18333334, 0.4), (0.18333334, 0.41666666), (0.175, 0.41666666), (0.175, 0.4), (0.175, 0.4), (0.175, 0.41666666), (0.16666667, 0.41666666), (0.16666667, 0.4), (0.16666667, 0.4), (0.16666667, 0.41666666), (0.15833333, 0.41666666), (0.15833333, 0.4), (0.15833333, 0.4), (0.15833333, 0.41666666), (0.15, 0.41666666), (0.15, 0.4), (0.15, 0.4), (0.15, 0.41666666), (0.14166667, 0.41666666), (0.14166667, 0.4), (0.14166667, 0.4), (0.14166667, 0.41666666), (0.13333334, 0.41666666), (0.13333334, 0.4), (0.13333334, 0.4), (0.13333334, 0.41666666), (0.125, 0.41666666), (0.125, 0.4), (0.125, 0.4), (0.125, 0.41666666), (0.11666667, 0.41666666), (0.11666667, 0.4), (0.11666667, 0.4), (0.11666667, 0.41666666), (0.108333334, 0.41666666), (0.108333334, 0.4), (0.108333334, 0.4), (0.108333334, 0.41666666), (0.1, 0.41666666), (0.1, 0.4), (0.1, 0.4), (0.1, 0.41666666), (0.09166667, 0.41666666), (0.09166667, 0.4), (0.09166667, 0.4), (0.09166667, 0.41666666), (0.083333336, 0.41666666), (0.083333336, 0.4), (0.083333336, 0.4), (0.083333336, 0.41666666), (0.075, 0.41666666), (0.075, 0.4), (0.075, 0.4), (0.075, 0.41666666), (0.06666667, 0.41666666), (0.06666667, 0.4), (0.06666667, 0.4), (0.06666667, 0.41666666), (0.058333334, 0.41666666), (0.058333334, 0.4), (0.058333334, 0.4), (0.058333334, 0.41666666), (0.05, 0.41666666), (0.05, 0.4), (0.05, 0.4), (0.05, 0.41666666), (0.041666668, 0.41666666), (0.041666668, 0.4), (0.041666668, 0.4), (0.041666668, 0.41666666), (0.033333335, 0.41666666), (0.033333335, 0.4), (0.033333335, 0.4), (0.033333335, 0.41666666), (0.025, 0.41666666), (0.025, 0.4), (0.025, 0.4), (0.025, 0.41666666), (0.016666668, 0.41666666), (0.016666668, 0.4), (0.016666668, 0.4), (0.016666668, 0.41666666), (0.008333334, 0.41666666), (0.008333334, 0.4), (0.008333334, 0.4), (0.008333334, 0.41666666), (0, 0.41666666), (0, 0.4), (1, 0.41666666), (1, 0.43333334), (0.9916667, 0.43333334), (0.9916667, 0.41666666), (0.9916667, 0.41666666), (0.9916667, 0.43333334), (0.98333335, 0.43333334), (0.98333335, 0.41666666), (0.98333335, 0.41666666), (0.98333335, 0.43333334), (0.975, 0.43333334), (0.975, 0.41666666), (0.975, 0.41666666), (0.975, 0.43333334), (0.96666664, 0.43333334), (0.96666664, 0.41666666), (0.96666664, 0.41666666), (0.96666664, 0.43333334), (0.9583333, 0.43333334), (0.9583333, 0.41666666), (0.9583333, 0.41666666), (0.9583333, 0.43333334), (0.95, 0.43333334), (0.95, 0.41666666), (0.95, 0.41666666), (0.95, 0.43333334), (0.94166666, 0.43333334), (0.94166666, 0.41666666), (0.94166666, 0.41666666), (0.94166666, 0.43333334), (0.93333334, 0.43333334), (0.93333334, 0.41666666), (0.93333334, 0.41666666), (0.93333334, 0.43333334), (0.925, 0.43333334), (0.925, 0.41666666), (0.925, 0.41666666), (0.925, 0.43333334), (0.9166667, 0.43333334), (0.9166667, 0.41666666), (0.9166667, 0.41666666), (0.9166667, 0.43333334), (0.90833336, 0.43333334), (0.90833336, 0.41666666), (0.90833336, 0.41666666), (0.90833336, 0.43333334), (0.9, 0.43333334), (0.9, 0.41666666), (0.9, 0.41666666), (0.9, 0.43333334), (0.89166665, 0.43333334), (0.89166665, 0.41666666), (0.89166665, 0.41666666), (0.89166665, 0.43333334), (0.8833333, 0.43333334), (0.8833333, 0.41666666), (0.8833333, 0.41666666), (0.8833333, 0.43333334), (0.875, 0.43333334), (0.875, 0.41666666), (0.875, 0.41666666), (0.875, 0.43333334), (0.8666667, 0.43333334), (0.8666667, 0.41666666), (0.8666667, 0.41666666), (0.8666667, 0.43333334), (0.85833335, 0.43333334), (0.85833335, 0.41666666), (0.85833335, 0.41666666), (0.85833335, 0.43333334), (0.85, 0.43333334), (0.85, 0.41666666), (0.85, 0.41666666), (0.85, 0.43333334), (0.84166664, 0.43333334), (0.84166664, 0.41666666), (0.84166664, 0.41666666), (0.84166664, 0.43333334), (0.8333333, 0.43333334), (0.8333333, 0.41666666), (0.8333333, 0.41666666), (0.8333333, 0.43333334), (0.825, 0.43333334), (0.825, 0.41666666), (0.825, 0.41666666), (0.825, 0.43333334), (0.81666666, 0.43333334), (0.81666666, 0.41666666), (0.81666666, 0.41666666), (0.81666666, 0.43333334), (0.80833334, 0.43333334), (0.80833334, 0.41666666), (0.80833334, 0.41666666), (0.80833334, 0.43333334), (0.8, 0.43333334), (0.8, 0.41666666), (0.8, 0.41666666), (0.8, 0.43333334), (0.7916667, 0.43333334), (0.7916667, 0.41666666), (0.7916667, 0.41666666), (0.7916667, 0.43333334), (0.78333336, 0.43333334), (0.78333336, 0.41666666), (0.78333336, 0.41666666), (0.78333336, 0.43333334), (0.775, 0.43333334), (0.775, 0.41666666), (0.775, 0.41666666), (0.775, 0.43333334), (0.76666665, 0.43333334), (0.76666665, 0.41666666), (0.76666665, 0.41666666), (0.76666665, 0.43333334), (0.7583333, 0.43333334), (0.7583333, 0.41666666), (0.7583333, 0.41666666), (0.7583333, 0.43333334), (0.75, 0.43333334), (0.75, 0.41666666), (0.75, 0.41666666), (0.75, 0.43333334), (0.7416667, 0.43333334), (0.7416667, 0.41666666), (0.7416667, 0.41666666), (0.7416667, 0.43333334), (0.73333335, 0.43333334), (0.73333335, 0.41666666), (0.73333335, 0.41666666), (0.73333335, 0.43333334), (0.725, 0.43333334), (0.725, 0.41666666), (0.725, 0.41666666), (0.725, 0.43333334), (0.71666664, 0.43333334), (0.71666664, 0.41666666), (0.71666664, 0.41666666), (0.71666664, 0.43333334), (0.7083333, 0.43333334), (0.7083333, 0.41666666), (0.7083333, 0.41666666), (0.7083333, 0.43333334), (0.7, 0.43333334), (0.7, 0.41666666), (0.7, 0.41666666), (0.7, 0.43333334), (0.69166666, 0.43333334), (0.69166666, 0.41666666), (0.69166666, 0.41666666), (0.69166666, 0.43333334), (0.68333334, 0.43333334), (0.68333334, 0.41666666), (0.68333334, 0.41666666), (0.68333334, 0.43333334), (0.675, 0.43333334), (0.675, 0.41666666), (0.675, 0.41666666), (0.675, 0.43333334), (0.6666667, 0.43333334), (0.6666667, 0.41666666), (0.6666667, 0.41666666), (0.6666667, 0.43333334), (0.65833336, 0.43333334), (0.65833336, 0.41666666), (0.65833336, 0.41666666), (0.65833336, 0.43333334), (0.65, 0.43333334), (0.65, 0.41666666), (0.65, 0.41666666), (0.65, 0.43333334), (0.64166665, 0.43333334), (0.64166665, 0.41666666), (0.64166665, 0.41666666), (0.64166665, 0.43333334), (0.6333333, 0.43333334), (0.6333333, 0.41666666), (0.6333333, 0.41666666), (0.6333333, 0.43333334), (0.625, 0.43333334), (0.625, 0.41666666), (0.625, 0.41666666), (0.625, 0.43333334), (0.6166667, 0.43333334), (0.6166667, 0.41666666), (0.6166667, 0.41666666), (0.6166667, 0.43333334), (0.60833335, 0.43333334), (0.60833335, 0.41666666), (0.60833335, 0.41666666), (0.60833335, 0.43333334), (0.6, 0.43333334), (0.6, 0.41666666), (0.6, 0.41666666), (0.6, 0.43333334), (0.59166664, 0.43333334), (0.59166664, 0.41666666), (0.59166664, 0.41666666), (0.59166664, 0.43333334), (0.5833333, 0.43333334), (0.5833333, 0.41666666), (0.5833333, 0.41666666), (0.5833333, 0.43333334), (0.575, 0.43333334), (0.575, 0.41666666), (0.575, 0.41666666), (0.575, 0.43333334), (0.56666666, 0.43333334), (0.56666666, 0.41666666), (0.56666666, 0.41666666), (0.56666666, 0.43333334), (0.55833334, 0.43333334), (0.55833334, 0.41666666), (0.55833334, 0.41666666), (0.55833334, 0.43333334), (0.55, 0.43333334), (0.55, 0.41666666), (0.55, 0.41666666), (0.55, 0.43333334), (0.5416667, 0.43333334), (0.5416667, 0.41666666), (0.5416667, 0.41666666), (0.5416667, 0.43333334), (0.53333336, 0.43333334), (0.53333336, 0.41666666), (0.53333336, 0.41666666), (0.53333336, 0.43333334), (0.525, 0.43333334), (0.525, 0.41666666), (0.525, 0.41666666), (0.525, 0.43333334), (0.51666665, 0.43333334), (0.51666665, 0.41666666), (0.51666665, 0.41666666), (0.51666665, 0.43333334), (0.5083333, 0.43333334), (0.5083333, 0.41666666), (0.5083333, 0.41666666), (0.5083333, 0.43333334), (0.5, 0.43333334), (0.5, 0.41666666), (0.5, 0.41666666), (0.5, 0.43333334), (0.49166667, 0.43333334), (0.49166667, 0.41666666), (0.49166667, 0.41666666), (0.49166667, 0.43333334), (0.48333332, 0.43333334), (0.48333332, 0.41666666), (0.48333332, 0.41666666), (0.48333332, 0.43333334), (0.475, 0.43333334), (0.475, 0.41666666), (0.475, 0.41666666), (0.475, 0.43333334), (0.46666667, 0.43333334), (0.46666667, 0.41666666), (0.46666667, 0.41666666), (0.46666667, 0.43333334), (0.45833334, 0.43333334), (0.45833334, 0.41666666), (0.45833334, 0.41666666), (0.45833334, 0.43333334), (0.45, 0.43333334), (0.45, 0.41666666), (0.45, 0.41666666), (0.45, 0.43333334), (0.44166666, 0.43333334), (0.44166666, 0.41666666), (0.44166666, 0.41666666), (0.44166666, 0.43333334), (0.43333334, 0.43333334), (0.43333334, 0.41666666), (0.43333334, 0.41666666), (0.43333334, 0.43333334), (0.425, 0.43333334), (0.425, 0.41666666), (0.425, 0.41666666), (0.425, 0.43333334), (0.41666666, 0.43333334), (0.41666666, 0.41666666), (0.41666666, 0.41666666), (0.41666666, 0.43333334), (0.40833333, 0.43333334), (0.40833333, 0.41666666), (0.40833333, 0.41666666), (0.40833333, 0.43333334), (0.4, 0.43333334), (0.4, 0.41666666), (0.4, 0.41666666), (0.4, 0.43333334), (0.39166668, 0.43333334), (0.39166668, 0.41666666), (0.39166668, 0.41666666), (0.39166668, 0.43333334), (0.38333333, 0.43333334), (0.38333333, 0.41666666), (0.38333333, 0.41666666), (0.38333333, 0.43333334), (0.375, 0.43333334), (0.375, 0.41666666), (0.375, 0.41666666), (0.375, 0.43333334), (0.36666667, 0.43333334), (0.36666667, 0.41666666), (0.36666667, 0.41666666), (0.36666667, 0.43333334), (0.35833332, 0.43333334), (0.35833332, 0.41666666), (0.35833332, 0.41666666), (0.35833332, 0.43333334), (0.35, 0.43333334), (0.35, 0.41666666), (0.35, 0.41666666), (0.35, 0.43333334), (0.34166667, 0.43333334), (0.34166667, 0.41666666), (0.34166667, 0.41666666), (0.34166667, 0.43333334), (0.33333334, 0.43333334), (0.33333334, 0.41666666), (0.33333334, 0.41666666), (0.33333334, 0.43333334), (0.325, 0.43333334), (0.325, 0.41666666), (0.325, 0.41666666), (0.325, 0.43333334), (0.31666666, 0.43333334), (0.31666666, 0.41666666), (0.31666666, 0.41666666), (0.31666666, 0.43333334), (0.30833334, 0.43333334), (0.30833334, 0.41666666), (0.30833334, 0.41666666), (0.30833334, 0.43333334), (0.3, 0.43333334), (0.3, 0.41666666), (0.3, 0.41666666), (0.3, 0.43333334), (0.29166666, 0.43333334), (0.29166666, 0.41666666), (0.29166666, 0.41666666), (0.29166666, 0.43333334), (0.28333333, 0.43333334), (0.28333333, 0.41666666), (0.28333333, 0.41666666), (0.28333333, 0.43333334), (0.275, 0.43333334), (0.275, 0.41666666), (0.275, 0.41666666), (0.275, 0.43333334), (0.26666668, 0.43333334), (0.26666668, 0.41666666), (0.26666668, 0.41666666), (0.26666668, 0.43333334), (0.25833333, 0.43333334), (0.25833333, 0.41666666), (0.25833333, 0.41666666), (0.25833333, 0.43333334), (0.25, 0.43333334), (0.25, 0.41666666), (0.25, 0.41666666), (0.25, 0.43333334), (0.24166666, 0.43333334), (0.24166666, 0.41666666), (0.24166666, 0.41666666), (0.24166666, 0.43333334), (0.23333333, 0.43333334), (0.23333333, 0.41666666), (0.23333333, 0.41666666), (0.23333333, 0.43333334), (0.225, 0.43333334), (0.225, 0.41666666), (0.225, 0.41666666), (0.225, 0.43333334), (0.21666667, 0.43333334), (0.21666667, 0.41666666), (0.21666667, 0.41666666), (0.21666667, 0.43333334), (0.20833333, 0.43333334), (0.20833333, 0.41666666), (0.20833333, 0.41666666), (0.20833333, 0.43333334), (0.2, 0.43333334), (0.2, 0.41666666), (0.2, 0.41666666), (0.2, 0.43333334), (0.19166666, 0.43333334), (0.19166666, 0.41666666), (0.19166666, 0.41666666), (0.19166666, 0.43333334), (0.18333334, 0.43333334), (0.18333334, 0.41666666), (0.18333334, 0.41666666), (0.18333334, 0.43333334), (0.175, 0.43333334), (0.175, 0.41666666), (0.175, 0.41666666), (0.175, 0.43333334), (0.16666667, 0.43333334), (0.16666667, 0.41666666), (0.16666667, 0.41666666), (0.16666667, 0.43333334), (0.15833333, 0.43333334), (0.15833333, 0.41666666), (0.15833333, 0.41666666), (0.15833333, 0.43333334), (0.15, 0.43333334), (0.15, 0.41666666), (0.15, 0.41666666), (0.15, 0.43333334), (0.14166667, 0.43333334), (0.14166667, 0.41666666), (0.14166667, 0.41666666), (0.14166667, 0.43333334), (0.13333334, 0.43333334), (0.13333334, 0.41666666), (0.13333334, 0.41666666), (0.13333334, 0.43333334), (0.125, 0.43333334), (0.125, 0.41666666), (0.125, 0.41666666), (0.125, 0.43333334), (0.11666667, 0.43333334), (0.11666667, 0.41666666), (0.11666667, 0.41666666), (0.11666667, 0.43333334), (0.108333334, 0.43333334), (0.108333334, 0.41666666), (0.108333334, 0.41666666), (0.108333334, 0.43333334), (0.1, 0.43333334), (0.1, 0.41666666), (0.1, 0.41666666), (0.1, 0.43333334), (0.09166667, 0.43333334), (0.09166667, 0.41666666), (0.09166667, 0.41666666), (0.09166667, 0.43333334), (0.083333336, 0.43333334), (0.083333336, 0.41666666), (0.083333336, 0.41666666), (0.083333336, 0.43333334), (0.075, 0.43333334), (0.075, 0.41666666), (0.075, 0.41666666), (0.075, 0.43333334), (0.06666667, 0.43333334), (0.06666667, 0.41666666), (0.06666667, 0.41666666), (0.06666667, 0.43333334), (0.058333334, 0.43333334), (0.058333334, 0.41666666), (0.058333334, 0.41666666), (0.058333334, 0.43333334), (0.05, 0.43333334), (0.05, 0.41666666), (0.05, 0.41666666), (0.05, 0.43333334), (0.041666668, 0.43333334), (0.041666668, 0.41666666), (0.041666668, 0.41666666), (0.041666668, 0.43333334), (0.033333335, 0.43333334), (0.033333335, 0.41666666), (0.033333335, 0.41666666), (0.033333335, 0.43333334), (0.025, 0.43333334), (0.025, 0.41666666), (0.025, 0.41666666), (0.025, 0.43333334), (0.016666668, 0.43333334), (0.016666668, 0.41666666), (0.016666668, 0.41666666), (0.016666668, 0.43333334), (0.008333334, 0.43333334), (0.008333334, 0.41666666), (0.008333334, 0.41666666), (0.008333334, 0.43333334), (0, 0.43333334), (0, 0.41666666), (1, 0.43333334), (1, 0.45), (0.9916667, 0.45), (0.9916667, 0.43333334), (0.9916667, 0.43333334), (0.9916667, 0.45), (0.98333335, 0.45), (0.98333335, 0.43333334), (0.98333335, 0.43333334), (0.98333335, 0.45), (0.975, 0.45), (0.975, 0.43333334), (0.975, 0.43333334), (0.975, 0.45), (0.96666664, 0.45), (0.96666664, 0.43333334), (0.96666664, 0.43333334), (0.96666664, 0.45), (0.9583333, 0.45), (0.9583333, 0.43333334), (0.9583333, 0.43333334), (0.9583333, 0.45), (0.95, 0.45), (0.95, 0.43333334), (0.95, 0.43333334), (0.95, 0.45), (0.94166666, 0.45), (0.94166666, 0.43333334), (0.94166666, 0.43333334), (0.94166666, 0.45), (0.93333334, 0.45), (0.93333334, 0.43333334), (0.93333334, 0.43333334), (0.93333334, 0.45), (0.925, 0.45), (0.925, 0.43333334), (0.925, 0.43333334), (0.925, 0.45), (0.9166667, 0.45), (0.9166667, 0.43333334), (0.9166667, 0.43333334), (0.9166667, 0.45), (0.90833336, 0.45), (0.90833336, 0.43333334), (0.90833336, 0.43333334), (0.90833336, 0.45), (0.9, 0.45), (0.9, 0.43333334), (0.9, 0.43333334), (0.9, 0.45), (0.89166665, 0.45), (0.89166665, 0.43333334), (0.89166665, 0.43333334), (0.89166665, 0.45), (0.8833333, 0.45), (0.8833333, 0.43333334), (0.8833333, 0.43333334), (0.8833333, 0.45), (0.875, 0.45), (0.875, 0.43333334), (0.875, 0.43333334), (0.875, 0.45), (0.8666667, 0.45), (0.8666667, 0.43333334), (0.8666667, 0.43333334), (0.8666667, 0.45), (0.85833335, 0.45), (0.85833335, 0.43333334), (0.85833335, 0.43333334), (0.85833335, 0.45), (0.85, 0.45), (0.85, 0.43333334), (0.85, 0.43333334), (0.85, 0.45), (0.84166664, 0.45), (0.84166664, 0.43333334), (0.84166664, 0.43333334), (0.84166664, 0.45), (0.8333333, 0.45), (0.8333333, 0.43333334), (0.8333333, 0.43333334), (0.8333333, 0.45), (0.825, 0.45), (0.825, 0.43333334), (0.825, 0.43333334), (0.825, 0.45), (0.81666666, 0.45), (0.81666666, 0.43333334), (0.81666666, 0.43333334), (0.81666666, 0.45), (0.80833334, 0.45), (0.80833334, 0.43333334), (0.80833334, 0.43333334), (0.80833334, 0.45), (0.8, 0.45), (0.8, 0.43333334), (0.8, 0.43333334), (0.8, 0.45), (0.7916667, 0.45), (0.7916667, 0.43333334), (0.7916667, 0.43333334), (0.7916667, 0.45), (0.78333336, 0.45), (0.78333336, 0.43333334), (0.78333336, 0.43333334), (0.78333336, 0.45), (0.775, 0.45), (0.775, 0.43333334), (0.775, 0.43333334), (0.775, 0.45), (0.76666665, 0.45), (0.76666665, 0.43333334), (0.76666665, 0.43333334), (0.76666665, 0.45), (0.7583333, 0.45), (0.7583333, 0.43333334), (0.7583333, 0.43333334), (0.7583333, 0.45), (0.75, 0.45), (0.75, 0.43333334), (0.75, 0.43333334), (0.75, 0.45), (0.7416667, 0.45), (0.7416667, 0.43333334), (0.7416667, 0.43333334), (0.7416667, 0.45), (0.73333335, 0.45), (0.73333335, 0.43333334), (0.73333335, 0.43333334), (0.73333335, 0.45), (0.725, 0.45), (0.725, 0.43333334), (0.725, 0.43333334), (0.725, 0.45), (0.71666664, 0.45), (0.71666664, 0.43333334), (0.71666664, 0.43333334), (0.71666664, 0.45), (0.7083333, 0.45), (0.7083333, 0.43333334), (0.7083333, 0.43333334), (0.7083333, 0.45), (0.7, 0.45), (0.7, 0.43333334), (0.7, 0.43333334), (0.7, 0.45), (0.69166666, 0.45), (0.69166666, 0.43333334), (0.69166666, 0.43333334), (0.69166666, 0.45), (0.68333334, 0.45), (0.68333334, 0.43333334), (0.68333334, 0.43333334), (0.68333334, 0.45), (0.675, 0.45), (0.675, 0.43333334), (0.675, 0.43333334), (0.675, 0.45), (0.6666667, 0.45), (0.6666667, 0.43333334), (0.6666667, 0.43333334), (0.6666667, 0.45), (0.65833336, 0.45), (0.65833336, 0.43333334), (0.65833336, 0.43333334), (0.65833336, 0.45), (0.65, 0.45), (0.65, 0.43333334), (0.65, 0.43333334), (0.65, 0.45), (0.64166665, 0.45), (0.64166665, 0.43333334), (0.64166665, 0.43333334), (0.64166665, 0.45), (0.6333333, 0.45), (0.6333333, 0.43333334), (0.6333333, 0.43333334), (0.6333333, 0.45), (0.625, 0.45), (0.625, 0.43333334), (0.625, 0.43333334), (0.625, 0.45), (0.6166667, 0.45), (0.6166667, 0.43333334), (0.6166667, 0.43333334), (0.6166667, 0.45), (0.60833335, 0.45), (0.60833335, 0.43333334), (0.60833335, 0.43333334), (0.60833335, 0.45), (0.6, 0.45), (0.6, 0.43333334), (0.6, 0.43333334), (0.6, 0.45), (0.59166664, 0.45), (0.59166664, 0.43333334), (0.59166664, 0.43333334), (0.59166664, 0.45), (0.5833333, 0.45), (0.5833333, 0.43333334), (0.5833333, 0.43333334), (0.5833333, 0.45), (0.575, 0.45), (0.575, 0.43333334), (0.575, 0.43333334), (0.575, 0.45), (0.56666666, 0.45), (0.56666666, 0.43333334), (0.56666666, 0.43333334), (0.56666666, 0.45), (0.55833334, 0.45), (0.55833334, 0.43333334), (0.55833334, 0.43333334), (0.55833334, 0.45), (0.55, 0.45), (0.55, 0.43333334), (0.55, 0.43333334), (0.55, 0.45), (0.5416667, 0.45), (0.5416667, 0.43333334), (0.5416667, 0.43333334), (0.5416667, 0.45), (0.53333336, 0.45), (0.53333336, 0.43333334), (0.53333336, 0.43333334), (0.53333336, 0.45), (0.525, 0.45), (0.525, 0.43333334), (0.525, 0.43333334), (0.525, 0.45), (0.51666665, 0.45), (0.51666665, 0.43333334), (0.51666665, 0.43333334), (0.51666665, 0.45), (0.5083333, 0.45), (0.5083333, 0.43333334), (0.5083333, 0.43333334), (0.5083333, 0.45), (0.5, 0.45), (0.5, 0.43333334), (0.5, 0.43333334), (0.5, 0.45), (0.49166667, 0.45), (0.49166667, 0.43333334), (0.49166667, 0.43333334), (0.49166667, 0.45), (0.48333332, 0.45), (0.48333332, 0.43333334), (0.48333332, 0.43333334), (0.48333332, 0.45), (0.475, 0.45), (0.475, 0.43333334), (0.475, 0.43333334), (0.475, 0.45), (0.46666667, 0.45), (0.46666667, 0.43333334), (0.46666667, 0.43333334), (0.46666667, 0.45), (0.45833334, 0.45), (0.45833334, 0.43333334), (0.45833334, 0.43333334), (0.45833334, 0.45), (0.45, 0.45), (0.45, 0.43333334), (0.45, 0.43333334), (0.45, 0.45), (0.44166666, 0.45), (0.44166666, 0.43333334), (0.44166666, 0.43333334), (0.44166666, 0.45), (0.43333334, 0.45), (0.43333334, 0.43333334), (0.43333334, 0.43333334), (0.43333334, 0.45), (0.425, 0.45), (0.425, 0.43333334), (0.425, 0.43333334), (0.425, 0.45), (0.41666666, 0.45), (0.41666666, 0.43333334), (0.41666666, 0.43333334), (0.41666666, 0.45), (0.40833333, 0.45), (0.40833333, 0.43333334), (0.40833333, 0.43333334), (0.40833333, 0.45), (0.4, 0.45), (0.4, 0.43333334), (0.4, 0.43333334), (0.4, 0.45), (0.39166668, 0.45), (0.39166668, 0.43333334), (0.39166668, 0.43333334), (0.39166668, 0.45), (0.38333333, 0.45), (0.38333333, 0.43333334), (0.38333333, 0.43333334), (0.38333333, 0.45), (0.375, 0.45), (0.375, 0.43333334), (0.375, 0.43333334), (0.375, 0.45), (0.36666667, 0.45), (0.36666667, 0.43333334), (0.36666667, 0.43333334), (0.36666667, 0.45), (0.35833332, 0.45), (0.35833332, 0.43333334), (0.35833332, 0.43333334), (0.35833332, 0.45), (0.35, 0.45), (0.35, 0.43333334), (0.35, 0.43333334), (0.35, 0.45), (0.34166667, 0.45), (0.34166667, 0.43333334), (0.34166667, 0.43333334), (0.34166667, 0.45), (0.33333334, 0.45), (0.33333334, 0.43333334), (0.33333334, 0.43333334), (0.33333334, 0.45), (0.325, 0.45), (0.325, 0.43333334), (0.325, 0.43333334), (0.325, 0.45), (0.31666666, 0.45), (0.31666666, 0.43333334), (0.31666666, 0.43333334), (0.31666666, 0.45), (0.30833334, 0.45), (0.30833334, 0.43333334), (0.30833334, 0.43333334), (0.30833334, 0.45), (0.3, 0.45), (0.3, 0.43333334), (0.3, 0.43333334), (0.3, 0.45), (0.29166666, 0.45), (0.29166666, 0.43333334), (0.29166666, 0.43333334), (0.29166666, 0.45), (0.28333333, 0.45), (0.28333333, 0.43333334), (0.28333333, 0.43333334), (0.28333333, 0.45), (0.275, 0.45), (0.275, 0.43333334), (0.275, 0.43333334), (0.275, 0.45), (0.26666668, 0.45), (0.26666668, 0.43333334), (0.26666668, 0.43333334), (0.26666668, 0.45), (0.25833333, 0.45), (0.25833333, 0.43333334), (0.25833333, 0.43333334), (0.25833333, 0.45), (0.25, 0.45), (0.25, 0.43333334), (0.25, 0.43333334), (0.25, 0.45), (0.24166666, 0.45), (0.24166666, 0.43333334), (0.24166666, 0.43333334), (0.24166666, 0.45), (0.23333333, 0.45), (0.23333333, 0.43333334), (0.23333333, 0.43333334), (0.23333333, 0.45), (0.225, 0.45), (0.225, 0.43333334), (0.225, 0.43333334), (0.225, 0.45), (0.21666667, 0.45), (0.21666667, 0.43333334), (0.21666667, 0.43333334), (0.21666667, 0.45), (0.20833333, 0.45), (0.20833333, 0.43333334), (0.20833333, 0.43333334), (0.20833333, 0.45), (0.2, 0.45), (0.2, 0.43333334), (0.2, 0.43333334), (0.2, 0.45), (0.19166666, 0.45), (0.19166666, 0.43333334), (0.19166666, 0.43333334), (0.19166666, 0.45), (0.18333334, 0.45), (0.18333334, 0.43333334), (0.18333334, 0.43333334), (0.18333334, 0.45), (0.175, 0.45), (0.175, 0.43333334), (0.175, 0.43333334), (0.175, 0.45), (0.16666667, 0.45), (0.16666667, 0.43333334), (0.16666667, 0.43333334), (0.16666667, 0.45), (0.15833333, 0.45), (0.15833333, 0.43333334), (0.15833333, 0.43333334), (0.15833333, 0.45), (0.15, 0.45), (0.15, 0.43333334), (0.15, 0.43333334), (0.15, 0.45), (0.14166667, 0.45), (0.14166667, 0.43333334), (0.14166667, 0.43333334), (0.14166667, 0.45), (0.13333334, 0.45), (0.13333334, 0.43333334), (0.13333334, 0.43333334), (0.13333334, 0.45), (0.125, 0.45), (0.125, 0.43333334), (0.125, 0.43333334), (0.125, 0.45), (0.11666667, 0.45), (0.11666667, 0.43333334), (0.11666667, 0.43333334), (0.11666667, 0.45), (0.108333334, 0.45), (0.108333334, 0.43333334), (0.108333334, 0.43333334), (0.108333334, 0.45), (0.1, 0.45), (0.1, 0.43333334), (0.1, 0.43333334), (0.1, 0.45), (0.09166667, 0.45), (0.09166667, 0.43333334), (0.09166667, 0.43333334), (0.09166667, 0.45), (0.083333336, 0.45), (0.083333336, 0.43333334), (0.083333336, 0.43333334), (0.083333336, 0.45), (0.075, 0.45), (0.075, 0.43333334), (0.075, 0.43333334), (0.075, 0.45), (0.06666667, 0.45), (0.06666667, 0.43333334), (0.06666667, 0.43333334), (0.06666667, 0.45), (0.058333334, 0.45), (0.058333334, 0.43333334), (0.058333334, 0.43333334), (0.058333334, 0.45), (0.05, 0.45), (0.05, 0.43333334), (0.05, 0.43333334), (0.05, 0.45), (0.041666668, 0.45), (0.041666668, 0.43333334), (0.041666668, 0.43333334), (0.041666668, 0.45), (0.033333335, 0.45), (0.033333335, 0.43333334), (0.033333335, 0.43333334), (0.033333335, 0.45), (0.025, 0.45), (0.025, 0.43333334), (0.025, 0.43333334), (0.025, 0.45), (0.016666668, 0.45), (0.016666668, 0.43333334), (0.016666668, 0.43333334), (0.016666668, 0.45), (0.008333334, 0.45), (0.008333334, 0.43333334), (0.008333334, 0.43333334), (0.008333334, 0.45), (0, 0.45), (0, 0.43333334), (1, 0.45), (1, 0.46666667), (0.9916667, 0.46666667), (0.9916667, 0.45), (0.9916667, 0.45), (0.9916667, 0.46666667), (0.98333335, 0.46666667), (0.98333335, 0.45), (0.98333335, 0.45), (0.98333335, 0.46666667), (0.975, 0.46666667), (0.975, 0.45), (0.975, 0.45), (0.975, 0.46666667), (0.96666664, 0.46666667), (0.96666664, 0.45), (0.96666664, 0.45), (0.96666664, 0.46666667), (0.9583333, 0.46666667), (0.9583333, 0.45), (0.9583333, 0.45), (0.9583333, 0.46666667), (0.95, 0.46666667), (0.95, 0.45), (0.95, 0.45), (0.95, 0.46666667), (0.94166666, 0.46666667), (0.94166666, 0.45), (0.94166666, 0.45), (0.94166666, 0.46666667), (0.93333334, 0.46666667), (0.93333334, 0.45), (0.93333334, 0.45), (0.93333334, 0.46666667), (0.925, 0.46666667), (0.925, 0.45), (0.925, 0.45), (0.925, 0.46666667), (0.9166667, 0.46666667), (0.9166667, 0.45), (0.9166667, 0.45), (0.9166667, 0.46666667), (0.90833336, 0.46666667), (0.90833336, 0.45), (0.90833336, 0.45), (0.90833336, 0.46666667), (0.9, 0.46666667), (0.9, 0.45), (0.9, 0.45), (0.9, 0.46666667), (0.89166665, 0.46666667), (0.89166665, 0.45), (0.89166665, 0.45), (0.89166665, 0.46666667), (0.8833333, 0.46666667), (0.8833333, 0.45), (0.8833333, 0.45), (0.8833333, 0.46666667), (0.875, 0.46666667), (0.875, 0.45), (0.875, 0.45), (0.875, 0.46666667), (0.8666667, 0.46666667), (0.8666667, 0.45), (0.8666667, 0.45), (0.8666667, 0.46666667), (0.85833335, 0.46666667), (0.85833335, 0.45), (0.85833335, 0.45), (0.85833335, 0.46666667), (0.85, 0.46666667), (0.85, 0.45), (0.85, 0.45), (0.85, 0.46666667), (0.84166664, 0.46666667), (0.84166664, 0.45), (0.84166664, 0.45), (0.84166664, 0.46666667), (0.8333333, 0.46666667), (0.8333333, 0.45), (0.8333333, 0.45), (0.8333333, 0.46666667), (0.825, 0.46666667), (0.825, 0.45), (0.825, 0.45), (0.825, 0.46666667), (0.81666666, 0.46666667), (0.81666666, 0.45), (0.81666666, 0.45), (0.81666666, 0.46666667), (0.80833334, 0.46666667), (0.80833334, 0.45), (0.80833334, 0.45), (0.80833334, 0.46666667), (0.8, 0.46666667), (0.8, 0.45), (0.8, 0.45), (0.8, 0.46666667), (0.7916667, 0.46666667), (0.7916667, 0.45), (0.7916667, 0.45), (0.7916667, 0.46666667), (0.78333336, 0.46666667), (0.78333336, 0.45), (0.78333336, 0.45), (0.78333336, 0.46666667), (0.775, 0.46666667), (0.775, 0.45), (0.775, 0.45), (0.775, 0.46666667), (0.76666665, 0.46666667), (0.76666665, 0.45), (0.76666665, 0.45), (0.76666665, 0.46666667), (0.7583333, 0.46666667), (0.7583333, 0.45), (0.7583333, 0.45), (0.7583333, 0.46666667), (0.75, 0.46666667), (0.75, 0.45), (0.75, 0.45), (0.75, 0.46666667), (0.7416667, 0.46666667), (0.7416667, 0.45), (0.7416667, 0.45), (0.7416667, 0.46666667), (0.73333335, 0.46666667), (0.73333335, 0.45), (0.73333335, 0.45), (0.73333335, 0.46666667), (0.725, 0.46666667), (0.725, 0.45), (0.725, 0.45), (0.725, 0.46666667), (0.71666664, 0.46666667), (0.71666664, 0.45), (0.71666664, 0.45), (0.71666664, 0.46666667), (0.7083333, 0.46666667), (0.7083333, 0.45), (0.7083333, 0.45), (0.7083333, 0.46666667), (0.7, 0.46666667), (0.7, 0.45), (0.7, 0.45), (0.7, 0.46666667), (0.69166666, 0.46666667), (0.69166666, 0.45), (0.69166666, 0.45), (0.69166666, 0.46666667), (0.68333334, 0.46666667), (0.68333334, 0.45), (0.68333334, 0.45), (0.68333334, 0.46666667), (0.675, 0.46666667), (0.675, 0.45), (0.675, 0.45), (0.675, 0.46666667), (0.6666667, 0.46666667), (0.6666667, 0.45), (0.6666667, 0.45), (0.6666667, 0.46666667), (0.65833336, 0.46666667), (0.65833336, 0.45), (0.65833336, 0.45), (0.65833336, 0.46666667), (0.65, 0.46666667), (0.65, 0.45), (0.65, 0.45), (0.65, 0.46666667), (0.64166665, 0.46666667), (0.64166665, 0.45), (0.64166665, 0.45), (0.64166665, 0.46666667), (0.6333333, 0.46666667), (0.6333333, 0.45), (0.6333333, 0.45), (0.6333333, 0.46666667), (0.625, 0.46666667), (0.625, 0.45), (0.625, 0.45), (0.625, 0.46666667), (0.6166667, 0.46666667), (0.6166667, 0.45), (0.6166667, 0.45), (0.6166667, 0.46666667), (0.60833335, 0.46666667), (0.60833335, 0.45), (0.60833335, 0.45), (0.60833335, 0.46666667), (0.6, 0.46666667), (0.6, 0.45), (0.6, 0.45), (0.6, 0.46666667), (0.59166664, 0.46666667), (0.59166664, 0.45), (0.59166664, 0.45), (0.59166664, 0.46666667), (0.5833333, 0.46666667), (0.5833333, 0.45), (0.5833333, 0.45), (0.5833333, 0.46666667), (0.575, 0.46666667), (0.575, 0.45), (0.575, 0.45), (0.575, 0.46666667), (0.56666666, 0.46666667), (0.56666666, 0.45), (0.56666666, 0.45), (0.56666666, 0.46666667), (0.55833334, 0.46666667), (0.55833334, 0.45), (0.55833334, 0.45), (0.55833334, 0.46666667), (0.55, 0.46666667), (0.55, 0.45), (0.55, 0.45), (0.55, 0.46666667), (0.5416667, 0.46666667), (0.5416667, 0.45), (0.5416667, 0.45), (0.5416667, 0.46666667), (0.53333336, 0.46666667), (0.53333336, 0.45), (0.53333336, 0.45), (0.53333336, 0.46666667), (0.525, 0.46666667), (0.525, 0.45), (0.525, 0.45), (0.525, 0.46666667), (0.51666665, 0.46666667), (0.51666665, 0.45), (0.51666665, 0.45), (0.51666665, 0.46666667), (0.5083333, 0.46666667), (0.5083333, 0.45), (0.5083333, 0.45), (0.5083333, 0.46666667), (0.5, 0.46666667), (0.5, 0.45), (0.5, 0.45), (0.5, 0.46666667), (0.49166667, 0.46666667), (0.49166667, 0.45), (0.49166667, 0.45), (0.49166667, 0.46666667), (0.48333332, 0.46666667), (0.48333332, 0.45), (0.48333332, 0.45), (0.48333332, 0.46666667), (0.475, 0.46666667), (0.475, 0.45), (0.475, 0.45), (0.475, 0.46666667), (0.46666667, 0.46666667), (0.46666667, 0.45), (0.46666667, 0.45), (0.46666667, 0.46666667), (0.45833334, 0.46666667), (0.45833334, 0.45), (0.45833334, 0.45), (0.45833334, 0.46666667), (0.45, 0.46666667), (0.45, 0.45), (0.45, 0.45), (0.45, 0.46666667), (0.44166666, 0.46666667), (0.44166666, 0.45), (0.44166666, 0.45), (0.44166666, 0.46666667), (0.43333334, 0.46666667), (0.43333334, 0.45), (0.43333334, 0.45), (0.43333334, 0.46666667), (0.425, 0.46666667), (0.425, 0.45), (0.425, 0.45), (0.425, 0.46666667), (0.41666666, 0.46666667), (0.41666666, 0.45), (0.41666666, 0.45), (0.41666666, 0.46666667), (0.40833333, 0.46666667), (0.40833333, 0.45), (0.40833333, 0.45), (0.40833333, 0.46666667), (0.4, 0.46666667), (0.4, 0.45), (0.4, 0.45), (0.4, 0.46666667), (0.39166668, 0.46666667), (0.39166668, 0.45), (0.39166668, 0.45), (0.39166668, 0.46666667), (0.38333333, 0.46666667), (0.38333333, 0.45), (0.38333333, 0.45), (0.38333333, 0.46666667), (0.375, 0.46666667), (0.375, 0.45), (0.375, 0.45), (0.375, 0.46666667), (0.36666667, 0.46666667), (0.36666667, 0.45), (0.36666667, 0.45), (0.36666667, 0.46666667), (0.35833332, 0.46666667), (0.35833332, 0.45), (0.35833332, 0.45), (0.35833332, 0.46666667), (0.35, 0.46666667), (0.35, 0.45), (0.35, 0.45), (0.35, 0.46666667), (0.34166667, 0.46666667), (0.34166667, 0.45), (0.34166667, 0.45), (0.34166667, 0.46666667), (0.33333334, 0.46666667), (0.33333334, 0.45), (0.33333334, 0.45), (0.33333334, 0.46666667), (0.325, 0.46666667), (0.325, 0.45), (0.325, 0.45), (0.325, 0.46666667), (0.31666666, 0.46666667), (0.31666666, 0.45), (0.31666666, 0.45), (0.31666666, 0.46666667), (0.30833334, 0.46666667), (0.30833334, 0.45), (0.30833334, 0.45), (0.30833334, 0.46666667), (0.3, 0.46666667), (0.3, 0.45), (0.3, 0.45), (0.3, 0.46666667), (0.29166666, 0.46666667), (0.29166666, 0.45), (0.29166666, 0.45), (0.29166666, 0.46666667), (0.28333333, 0.46666667), (0.28333333, 0.45), (0.28333333, 0.45), (0.28333333, 0.46666667), (0.275, 0.46666667), (0.275, 0.45), (0.275, 0.45), (0.275, 0.46666667), (0.26666668, 0.46666667), (0.26666668, 0.45), (0.26666668, 0.45), (0.26666668, 0.46666667), (0.25833333, 0.46666667), (0.25833333, 0.45), (0.25833333, 0.45), (0.25833333, 0.46666667), (0.25, 0.46666667), (0.25, 0.45), (0.25, 0.45), (0.25, 0.46666667), (0.24166666, 0.46666667), (0.24166666, 0.45), (0.24166666, 0.45), (0.24166666, 0.46666667), (0.23333333, 0.46666667), (0.23333333, 0.45), (0.23333333, 0.45), (0.23333333, 0.46666667), (0.225, 0.46666667), (0.225, 0.45), (0.225, 0.45), (0.225, 0.46666667), (0.21666667, 0.46666667), (0.21666667, 0.45), (0.21666667, 0.45), (0.21666667, 0.46666667), (0.20833333, 0.46666667), (0.20833333, 0.45), (0.20833333, 0.45), (0.20833333, 0.46666667), (0.2, 0.46666667), (0.2, 0.45), (0.2, 0.45), (0.2, 0.46666667), (0.19166666, 0.46666667), (0.19166666, 0.45), (0.19166666, 0.45), (0.19166666, 0.46666667), (0.18333334, 0.46666667), (0.18333334, 0.45), (0.18333334, 0.45), (0.18333334, 0.46666667), (0.175, 0.46666667), (0.175, 0.45), (0.175, 0.45), (0.175, 0.46666667), (0.16666667, 0.46666667), (0.16666667, 0.45), (0.16666667, 0.45), (0.16666667, 0.46666667), (0.15833333, 0.46666667), (0.15833333, 0.45), (0.15833333, 0.45), (0.15833333, 0.46666667), (0.15, 0.46666667), (0.15, 0.45), (0.15, 0.45), (0.15, 0.46666667), (0.14166667, 0.46666667), (0.14166667, 0.45), (0.14166667, 0.45), (0.14166667, 0.46666667), (0.13333334, 0.46666667), (0.13333334, 0.45), (0.13333334, 0.45), (0.13333334, 0.46666667), (0.125, 0.46666667), (0.125, 0.45), (0.125, 0.45), (0.125, 0.46666667), (0.11666667, 0.46666667), (0.11666667, 0.45), (0.11666667, 0.45), (0.11666667, 0.46666667), (0.108333334, 0.46666667), (0.108333334, 0.45), (0.108333334, 0.45), (0.108333334, 0.46666667), (0.1, 0.46666667), (0.1, 0.45), (0.1, 0.45), (0.1, 0.46666667), (0.09166667, 0.46666667), (0.09166667, 0.45), (0.09166667, 0.45), (0.09166667, 0.46666667), (0.083333336, 0.46666667), (0.083333336, 0.45), (0.083333336, 0.45), (0.083333336, 0.46666667), (0.075, 0.46666667), (0.075, 0.45), (0.075, 0.45), (0.075, 0.46666667), (0.06666667, 0.46666667), (0.06666667, 0.45), (0.06666667, 0.45), (0.06666667, 0.46666667), (0.058333334, 0.46666667), (0.058333334, 0.45), (0.058333334, 0.45), (0.058333334, 0.46666667), (0.05, 0.46666667), (0.05, 0.45), (0.05, 0.45), (0.05, 0.46666667), (0.041666668, 0.46666667), (0.041666668, 0.45), (0.041666668, 0.45), (0.041666668, 0.46666667), (0.033333335, 0.46666667), (0.033333335, 0.45), (0.033333335, 0.45), (0.033333335, 0.46666667), (0.025, 0.46666667), (0.025, 0.45), (0.025, 0.45), (0.025, 0.46666667), (0.016666668, 0.46666667), (0.016666668, 0.45), (0.016666668, 0.45), (0.016666668, 0.46666667), (0.008333334, 0.46666667), (0.008333334, 0.45), (0.008333334, 0.45), (0.008333334, 0.46666667), (0, 0.46666667), (0, 0.45), (1, 0.46666667), (1, 0.48333332), (0.9916667, 0.48333332), (0.9916667, 0.46666667), (0.9916667, 0.46666667), (0.9916667, 0.48333332), (0.98333335, 0.48333332), (0.98333335, 0.46666667), (0.98333335, 0.46666667), (0.98333335, 0.48333332), (0.975, 0.48333332), (0.975, 0.46666667), (0.975, 0.46666667), (0.975, 0.48333332), (0.96666664, 0.48333332), (0.96666664, 0.46666667), (0.96666664, 0.46666667), (0.96666664, 0.48333332), (0.9583333, 0.48333332), (0.9583333, 0.46666667), (0.9583333, 0.46666667), (0.9583333, 0.48333332), (0.95, 0.48333332), (0.95, 0.46666667), (0.95, 0.46666667), (0.95, 0.48333332), (0.94166666, 0.48333332), (0.94166666, 0.46666667), (0.94166666, 0.46666667), (0.94166666, 0.48333332), (0.93333334, 0.48333332), (0.93333334, 0.46666667), (0.93333334, 0.46666667), (0.93333334, 0.48333332), (0.925, 0.48333332), (0.925, 0.46666667), (0.925, 0.46666667), (0.925, 0.48333332), (0.9166667, 0.48333332), (0.9166667, 0.46666667), (0.9166667, 0.46666667), (0.9166667, 0.48333332), (0.90833336, 0.48333332), (0.90833336, 0.46666667), (0.90833336, 0.46666667), (0.90833336, 0.48333332), (0.9, 0.48333332), (0.9, 0.46666667), (0.9, 0.46666667), (0.9, 0.48333332), (0.89166665, 0.48333332), (0.89166665, 0.46666667), (0.89166665, 0.46666667), (0.89166665, 0.48333332), (0.8833333, 0.48333332), (0.8833333, 0.46666667), (0.8833333, 0.46666667), (0.8833333, 0.48333332), (0.875, 0.48333332), (0.875, 0.46666667), (0.875, 0.46666667), (0.875, 0.48333332), (0.8666667, 0.48333332), (0.8666667, 0.46666667), (0.8666667, 0.46666667), (0.8666667, 0.48333332), (0.85833335, 0.48333332), (0.85833335, 0.46666667), (0.85833335, 0.46666667), (0.85833335, 0.48333332), (0.85, 0.48333332), (0.85, 0.46666667), (0.85, 0.46666667), (0.85, 0.48333332), (0.84166664, 0.48333332), (0.84166664, 0.46666667), (0.84166664, 0.46666667), (0.84166664, 0.48333332), (0.8333333, 0.48333332), (0.8333333, 0.46666667), (0.8333333, 0.46666667), (0.8333333, 0.48333332), (0.825, 0.48333332), (0.825, 0.46666667), (0.825, 0.46666667), (0.825, 0.48333332), (0.81666666, 0.48333332), (0.81666666, 0.46666667), (0.81666666, 0.46666667), (0.81666666, 0.48333332), (0.80833334, 0.48333332), (0.80833334, 0.46666667), (0.80833334, 0.46666667), (0.80833334, 0.48333332), (0.8, 0.48333332), (0.8, 0.46666667), (0.8, 0.46666667), (0.8, 0.48333332), (0.7916667, 0.48333332), (0.7916667, 0.46666667), (0.7916667, 0.46666667), (0.7916667, 0.48333332), (0.78333336, 0.48333332), (0.78333336, 0.46666667), (0.78333336, 0.46666667), (0.78333336, 0.48333332), (0.775, 0.48333332), (0.775, 0.46666667), (0.775, 0.46666667), (0.775, 0.48333332), (0.76666665, 0.48333332), (0.76666665, 0.46666667), (0.76666665, 0.46666667), (0.76666665, 0.48333332), (0.7583333, 0.48333332), (0.7583333, 0.46666667), (0.7583333, 0.46666667), (0.7583333, 0.48333332), (0.75, 0.48333332), (0.75, 0.46666667), (0.75, 0.46666667), (0.75, 0.48333332), (0.7416667, 0.48333332), (0.7416667, 0.46666667), (0.7416667, 0.46666667), (0.7416667, 0.48333332), (0.73333335, 0.48333332), (0.73333335, 0.46666667), (0.73333335, 0.46666667), (0.73333335, 0.48333332), (0.725, 0.48333332), (0.725, 0.46666667), (0.725, 0.46666667), (0.725, 0.48333332), (0.71666664, 0.48333332), (0.71666664, 0.46666667), (0.71666664, 0.46666667), (0.71666664, 0.48333332), (0.7083333, 0.48333332), (0.7083333, 0.46666667), (0.7083333, 0.46666667), (0.7083333, 0.48333332), (0.7, 0.48333332), (0.7, 0.46666667), (0.7, 0.46666667), (0.7, 0.48333332), (0.69166666, 0.48333332), (0.69166666, 0.46666667), (0.69166666, 0.46666667), (0.69166666, 0.48333332), (0.68333334, 0.48333332), (0.68333334, 0.46666667), (0.68333334, 0.46666667), (0.68333334, 0.48333332), (0.675, 0.48333332), (0.675, 0.46666667), (0.675, 0.46666667), (0.675, 0.48333332), (0.6666667, 0.48333332), (0.6666667, 0.46666667), (0.6666667, 0.46666667), (0.6666667, 0.48333332), (0.65833336, 0.48333332), (0.65833336, 0.46666667), (0.65833336, 0.46666667), (0.65833336, 0.48333332), (0.65, 0.48333332), (0.65, 0.46666667), (0.65, 0.46666667), (0.65, 0.48333332), (0.64166665, 0.48333332), (0.64166665, 0.46666667), (0.64166665, 0.46666667), (0.64166665, 0.48333332), (0.6333333, 0.48333332), (0.6333333, 0.46666667), (0.6333333, 0.46666667), (0.6333333, 0.48333332), (0.625, 0.48333332), (0.625, 0.46666667), (0.625, 0.46666667), (0.625, 0.48333332), (0.6166667, 0.48333332), (0.6166667, 0.46666667), (0.6166667, 0.46666667), (0.6166667, 0.48333332), (0.60833335, 0.48333332), (0.60833335, 0.46666667), (0.60833335, 0.46666667), (0.60833335, 0.48333332), (0.6, 0.48333332), (0.6, 0.46666667), (0.6, 0.46666667), (0.6, 0.48333332), (0.59166664, 0.48333332), (0.59166664, 0.46666667), (0.59166664, 0.46666667), (0.59166664, 0.48333332), (0.5833333, 0.48333332), (0.5833333, 0.46666667), (0.5833333, 0.46666667), (0.5833333, 0.48333332), (0.575, 0.48333332), (0.575, 0.46666667), (0.575, 0.46666667), (0.575, 0.48333332), (0.56666666, 0.48333332), (0.56666666, 0.46666667), (0.56666666, 0.46666667), (0.56666666, 0.48333332), (0.55833334, 0.48333332), (0.55833334, 0.46666667), (0.55833334, 0.46666667), (0.55833334, 0.48333332), (0.55, 0.48333332), (0.55, 0.46666667), (0.55, 0.46666667), (0.55, 0.48333332), (0.5416667, 0.48333332), (0.5416667, 0.46666667), (0.5416667, 0.46666667), (0.5416667, 0.48333332), (0.53333336, 0.48333332), (0.53333336, 0.46666667), (0.53333336, 0.46666667), (0.53333336, 0.48333332), (0.525, 0.48333332), (0.525, 0.46666667), (0.525, 0.46666667), (0.525, 0.48333332), (0.51666665, 0.48333332), (0.51666665, 0.46666667), (0.51666665, 0.46666667), (0.51666665, 0.48333332), (0.5083333, 0.48333332), (0.5083333, 0.46666667), (0.5083333, 0.46666667), (0.5083333, 0.48333332), (0.5, 0.48333332), (0.5, 0.46666667), (0.5, 0.46666667), (0.5, 0.48333332), (0.49166667, 0.48333332), (0.49166667, 0.46666667), (0.49166667, 0.46666667), (0.49166667, 0.48333332), (0.48333332, 0.48333332), (0.48333332, 0.46666667), (0.48333332, 0.46666667), (0.48333332, 0.48333332), (0.475, 0.48333332), (0.475, 0.46666667), (0.475, 0.46666667), (0.475, 0.48333332), (0.46666667, 0.48333332), (0.46666667, 0.46666667), (0.46666667, 0.46666667), (0.46666667, 0.48333332), (0.45833334, 0.48333332), (0.45833334, 0.46666667), (0.45833334, 0.46666667), (0.45833334, 0.48333332), (0.45, 0.48333332), (0.45, 0.46666667), (0.45, 0.46666667), (0.45, 0.48333332), (0.44166666, 0.48333332), (0.44166666, 0.46666667), (0.44166666, 0.46666667), (0.44166666, 0.48333332), (0.43333334, 0.48333332), (0.43333334, 0.46666667), (0.43333334, 0.46666667), (0.43333334, 0.48333332), (0.425, 0.48333332), (0.425, 0.46666667), (0.425, 0.46666667), (0.425, 0.48333332), (0.41666666, 0.48333332), (0.41666666, 0.46666667), (0.41666666, 0.46666667), (0.41666666, 0.48333332), (0.40833333, 0.48333332), (0.40833333, 0.46666667), (0.40833333, 0.46666667), (0.40833333, 0.48333332), (0.4, 0.48333332), (0.4, 0.46666667), (0.4, 0.46666667), (0.4, 0.48333332), (0.39166668, 0.48333332), (0.39166668, 0.46666667), (0.39166668, 0.46666667), (0.39166668, 0.48333332), (0.38333333, 0.48333332), (0.38333333, 0.46666667), (0.38333333, 0.46666667), (0.38333333, 0.48333332), (0.375, 0.48333332), (0.375, 0.46666667), (0.375, 0.46666667), (0.375, 0.48333332), (0.36666667, 0.48333332), (0.36666667, 0.46666667), (0.36666667, 0.46666667), (0.36666667, 0.48333332), (0.35833332, 0.48333332), (0.35833332, 0.46666667), (0.35833332, 0.46666667), (0.35833332, 0.48333332), (0.35, 0.48333332), (0.35, 0.46666667), (0.35, 0.46666667), (0.35, 0.48333332), (0.34166667, 0.48333332), (0.34166667, 0.46666667), (0.34166667, 0.46666667), (0.34166667, 0.48333332), (0.33333334, 0.48333332), (0.33333334, 0.46666667), (0.33333334, 0.46666667), (0.33333334, 0.48333332), (0.325, 0.48333332), (0.325, 0.46666667), (0.325, 0.46666667), (0.325, 0.48333332), (0.31666666, 0.48333332), (0.31666666, 0.46666667), (0.31666666, 0.46666667), (0.31666666, 0.48333332), (0.30833334, 0.48333332), (0.30833334, 0.46666667), (0.30833334, 0.46666667), (0.30833334, 0.48333332), (0.3, 0.48333332), (0.3, 0.46666667), (0.3, 0.46666667), (0.3, 0.48333332), (0.29166666, 0.48333332), (0.29166666, 0.46666667), (0.29166666, 0.46666667), (0.29166666, 0.48333332), (0.28333333, 0.48333332), (0.28333333, 0.46666667), (0.28333333, 0.46666667), (0.28333333, 0.48333332), (0.275, 0.48333332), (0.275, 0.46666667), (0.275, 0.46666667), (0.275, 0.48333332), (0.26666668, 0.48333332), (0.26666668, 0.46666667), (0.26666668, 0.46666667), (0.26666668, 0.48333332), (0.25833333, 0.48333332), (0.25833333, 0.46666667), (0.25833333, 0.46666667), (0.25833333, 0.48333332), (0.25, 0.48333332), (0.25, 0.46666667), (0.25, 0.46666667), (0.25, 0.48333332), (0.24166666, 0.48333332), (0.24166666, 0.46666667), (0.24166666, 0.46666667), (0.24166666, 0.48333332), (0.23333333, 0.48333332), (0.23333333, 0.46666667), (0.23333333, 0.46666667), (0.23333333, 0.48333332), (0.225, 0.48333332), (0.225, 0.46666667), (0.225, 0.46666667), (0.225, 0.48333332), (0.21666667, 0.48333332), (0.21666667, 0.46666667), (0.21666667, 0.46666667), (0.21666667, 0.48333332), (0.20833333, 0.48333332), (0.20833333, 0.46666667), (0.20833333, 0.46666667), (0.20833333, 0.48333332), (0.2, 0.48333332), (0.2, 0.46666667), (0.2, 0.46666667), (0.2, 0.48333332), (0.19166666, 0.48333332), (0.19166666, 0.46666667), (0.19166666, 0.46666667), (0.19166666, 0.48333332), (0.18333334, 0.48333332), (0.18333334, 0.46666667), (0.18333334, 0.46666667), (0.18333334, 0.48333332), (0.175, 0.48333332), (0.175, 0.46666667), (0.175, 0.46666667), (0.175, 0.48333332), (0.16666667, 0.48333332), (0.16666667, 0.46666667), (0.16666667, 0.46666667), (0.16666667, 0.48333332), (0.15833333, 0.48333332), (0.15833333, 0.46666667), (0.15833333, 0.46666667), (0.15833333, 0.48333332), (0.15, 0.48333332), (0.15, 0.46666667), (0.15, 0.46666667), (0.15, 0.48333332), (0.14166667, 0.48333332), (0.14166667, 0.46666667), (0.14166667, 0.46666667), (0.14166667, 0.48333332), (0.13333334, 0.48333332), (0.13333334, 0.46666667), (0.13333334, 0.46666667), (0.13333334, 0.48333332), (0.125, 0.48333332), (0.125, 0.46666667), (0.125, 0.46666667), (0.125, 0.48333332), (0.11666667, 0.48333332), (0.11666667, 0.46666667), (0.11666667, 0.46666667), (0.11666667, 0.48333332), (0.108333334, 0.48333332), (0.108333334, 0.46666667), (0.108333334, 0.46666667), (0.108333334, 0.48333332), (0.1, 0.48333332), (0.1, 0.46666667), (0.1, 0.46666667), (0.1, 0.48333332), (0.09166667, 0.48333332), (0.09166667, 0.46666667), (0.09166667, 0.46666667), (0.09166667, 0.48333332), (0.083333336, 0.48333332), (0.083333336, 0.46666667), (0.083333336, 0.46666667), (0.083333336, 0.48333332), (0.075, 0.48333332), (0.075, 0.46666667), (0.075, 0.46666667), (0.075, 0.48333332), (0.06666667, 0.48333332), (0.06666667, 0.46666667), (0.06666667, 0.46666667), (0.06666667, 0.48333332), (0.058333334, 0.48333332), (0.058333334, 0.46666667), (0.058333334, 0.46666667), (0.058333334, 0.48333332), (0.05, 0.48333332), (0.05, 0.46666667), (0.05, 0.46666667), (0.05, 0.48333332), (0.041666668, 0.48333332), (0.041666668, 0.46666667), (0.041666668, 0.46666667), (0.041666668, 0.48333332), (0.033333335, 0.48333332), (0.033333335, 0.46666667), (0.033333335, 0.46666667), (0.033333335, 0.48333332), (0.025, 0.48333332), (0.025, 0.46666667), (0.025, 0.46666667), (0.025, 0.48333332), (0.016666668, 0.48333332), (0.016666668, 0.46666667), (0.016666668, 0.46666667), (0.016666668, 0.48333332), (0.008333334, 0.48333332), (0.008333334, 0.46666667), (0.008333334, 0.46666667), (0.008333334, 0.48333332), (0, 0.48333332), (0, 0.46666667), (1, 0.48333332), (1, 0.5), (0.9916667, 0.5), (0.9916667, 0.48333332), (0.9916667, 0.48333332), (0.9916667, 0.5), (0.98333335, 0.5), (0.98333335, 0.48333332), (0.98333335, 0.48333332), (0.98333335, 0.5), (0.975, 0.5), (0.975, 0.48333332), (0.975, 0.48333332), (0.975, 0.5), (0.96666664, 0.5), (0.96666664, 0.48333332), (0.96666664, 0.48333332), (0.96666664, 0.5), (0.9583333, 0.5), (0.9583333, 0.48333332), (0.9583333, 0.48333332), (0.9583333, 0.5), (0.95, 0.5), (0.95, 0.48333332), (0.95, 0.48333332), (0.95, 0.5), (0.94166666, 0.5), (0.94166666, 0.48333332), (0.94166666, 0.48333332), (0.94166666, 0.5), (0.93333334, 0.5), (0.93333334, 0.48333332), (0.93333334, 0.48333332), (0.93333334, 0.5), (0.925, 0.5), (0.925, 0.48333332), (0.925, 0.48333332), (0.925, 0.5), (0.9166667, 0.5), (0.9166667, 0.48333332), (0.9166667, 0.48333332), (0.9166667, 0.5), (0.90833336, 0.5), (0.90833336, 0.48333332), (0.90833336, 0.48333332), (0.90833336, 0.5), (0.9, 0.5), (0.9, 0.48333332), (0.9, 0.48333332), (0.9, 0.5), (0.89166665, 0.5), (0.89166665, 0.48333332), (0.89166665, 0.48333332), (0.89166665, 0.5), (0.8833333, 0.5), (0.8833333, 0.48333332), (0.8833333, 0.48333332), (0.8833333, 0.5), (0.875, 0.5), (0.875, 0.48333332), (0.875, 0.48333332), (0.875, 0.5), (0.8666667, 0.5), (0.8666667, 0.48333332), (0.8666667, 0.48333332), (0.8666667, 0.5), (0.85833335, 0.5), (0.85833335, 0.48333332), (0.85833335, 0.48333332), (0.85833335, 0.5), (0.85, 0.5), (0.85, 0.48333332), (0.85, 0.48333332), (0.85, 0.5), (0.84166664, 0.5), (0.84166664, 0.48333332), (0.84166664, 0.48333332), (0.84166664, 0.5), (0.8333333, 0.5), (0.8333333, 0.48333332), (0.8333333, 0.48333332), (0.8333333, 0.5), (0.825, 0.5), (0.825, 0.48333332), (0.825, 0.48333332), (0.825, 0.5), (0.81666666, 0.5), (0.81666666, 0.48333332), (0.81666666, 0.48333332), (0.81666666, 0.5), (0.80833334, 0.5), (0.80833334, 0.48333332), (0.80833334, 0.48333332), (0.80833334, 0.5), (0.8, 0.5), (0.8, 0.48333332), (0.8, 0.48333332), (0.8, 0.5), (0.7916667, 0.5), (0.7916667, 0.48333332), (0.7916667, 0.48333332), (0.7916667, 0.5), (0.78333336, 0.5), (0.78333336, 0.48333332), (0.78333336, 0.48333332), (0.78333336, 0.5), (0.775, 0.5), (0.775, 0.48333332), (0.775, 0.48333332), (0.775, 0.5), (0.76666665, 0.5), (0.76666665, 0.48333332), (0.76666665, 0.48333332), (0.76666665, 0.5), (0.7583333, 0.5), (0.7583333, 0.48333332), (0.7583333, 0.48333332), (0.7583333, 0.5), (0.75, 0.5), (0.75, 0.48333332), (0.75, 0.48333332), (0.75, 0.5), (0.7416667, 0.5), (0.7416667, 0.48333332), (0.7416667, 0.48333332), (0.7416667, 0.5), (0.73333335, 0.5), (0.73333335, 0.48333332), (0.73333335, 0.48333332), (0.73333335, 0.5), (0.725, 0.5), (0.725, 0.48333332), (0.725, 0.48333332), (0.725, 0.5), (0.71666664, 0.5), (0.71666664, 0.48333332), (0.71666664, 0.48333332), (0.71666664, 0.5), (0.7083333, 0.5), (0.7083333, 0.48333332), (0.7083333, 0.48333332), (0.7083333, 0.5), (0.7, 0.5), (0.7, 0.48333332), (0.7, 0.48333332), (0.7, 0.5), (0.69166666, 0.5), (0.69166666, 0.48333332), (0.69166666, 0.48333332), (0.69166666, 0.5), (0.68333334, 0.5), (0.68333334, 0.48333332), (0.68333334, 0.48333332), (0.68333334, 0.5), (0.675, 0.5), (0.675, 0.48333332), (0.675, 0.48333332), (0.675, 0.5), (0.6666667, 0.5), (0.6666667, 0.48333332), (0.6666667, 0.48333332), (0.6666667, 0.5), (0.65833336, 0.5), (0.65833336, 0.48333332), (0.65833336, 0.48333332), (0.65833336, 0.5), (0.65, 0.5), (0.65, 0.48333332), (0.65, 0.48333332), (0.65, 0.5), (0.64166665, 0.5), (0.64166665, 0.48333332), (0.64166665, 0.48333332), (0.64166665, 0.5), (0.6333333, 0.5), (0.6333333, 0.48333332), (0.6333333, 0.48333332), (0.6333333, 0.5), (0.625, 0.5), (0.625, 0.48333332), (0.625, 0.48333332), (0.625, 0.5), (0.6166667, 0.5), (0.6166667, 0.48333332), (0.6166667, 0.48333332), (0.6166667, 0.5), (0.60833335, 0.5), (0.60833335, 0.48333332), (0.60833335, 0.48333332), (0.60833335, 0.5), (0.6, 0.5), (0.6, 0.48333332), (0.6, 0.48333332), (0.6, 0.5), (0.59166664, 0.5), (0.59166664, 0.48333332), (0.59166664, 0.48333332), (0.59166664, 0.5), (0.5833333, 0.5), (0.5833333, 0.48333332), (0.5833333, 0.48333332), (0.5833333, 0.5), (0.575, 0.5), (0.575, 0.48333332), (0.575, 0.48333332), (0.575, 0.5), (0.56666666, 0.5), (0.56666666, 0.48333332), (0.56666666, 0.48333332), (0.56666666, 0.5), (0.55833334, 0.5), (0.55833334, 0.48333332), (0.55833334, 0.48333332), (0.55833334, 0.5), (0.55, 0.5), (0.55, 0.48333332), (0.55, 0.48333332), (0.55, 0.5), (0.5416667, 0.5), (0.5416667, 0.48333332), (0.5416667, 0.48333332), (0.5416667, 0.5), (0.53333336, 0.5), (0.53333336, 0.48333332), (0.53333336, 0.48333332), (0.53333336, 0.5), (0.525, 0.5), (0.525, 0.48333332), (0.525, 0.48333332), (0.525, 0.5), (0.51666665, 0.5), (0.51666665, 0.48333332), (0.51666665, 0.48333332), (0.51666665, 0.5), (0.5083333, 0.5), (0.5083333, 0.48333332), (0.5083333, 0.48333332), (0.5083333, 0.5), (0.5, 0.5), (0.5, 0.48333332), (0.5, 0.48333332), (0.5, 0.5), (0.49166667, 0.5), (0.49166667, 0.48333332), (0.49166667, 0.48333332), (0.49166667, 0.5), (0.48333332, 0.5), (0.48333332, 0.48333332), (0.48333332, 0.48333332), (0.48333332, 0.5), (0.475, 0.5), (0.475, 0.48333332), (0.475, 0.48333332), (0.475, 0.5), (0.46666667, 0.5), (0.46666667, 0.48333332), (0.46666667, 0.48333332), (0.46666667, 0.5), (0.45833334, 0.5), (0.45833334, 0.48333332), (0.45833334, 0.48333332), (0.45833334, 0.5), (0.45, 0.5), (0.45, 0.48333332), (0.45, 0.48333332), (0.45, 0.5), (0.44166666, 0.5), (0.44166666, 0.48333332), (0.44166666, 0.48333332), (0.44166666, 0.5), (0.43333334, 0.5), (0.43333334, 0.48333332), (0.43333334, 0.48333332), (0.43333334, 0.5), (0.425, 0.5), (0.425, 0.48333332), (0.425, 0.48333332), (0.425, 0.5), (0.41666666, 0.5), (0.41666666, 0.48333332), (0.41666666, 0.48333332), (0.41666666, 0.5), (0.40833333, 0.5), (0.40833333, 0.48333332), (0.40833333, 0.48333332), (0.40833333, 0.5), (0.4, 0.5), (0.4, 0.48333332), (0.4, 0.48333332), (0.4, 0.5), (0.39166668, 0.5), (0.39166668, 0.48333332), (0.39166668, 0.48333332), (0.39166668, 0.5), (0.38333333, 0.5), (0.38333333, 0.48333332), (0.38333333, 0.48333332), (0.38333333, 0.5), (0.375, 0.5), (0.375, 0.48333332), (0.375, 0.48333332), (0.375, 0.5), (0.36666667, 0.5), (0.36666667, 0.48333332), (0.36666667, 0.48333332), (0.36666667, 0.5), (0.35833332, 0.5), (0.35833332, 0.48333332), (0.35833332, 0.48333332), (0.35833332, 0.5), (0.35, 0.5), (0.35, 0.48333332), (0.35, 0.48333332), (0.35, 0.5), (0.34166667, 0.5), (0.34166667, 0.48333332), (0.34166667, 0.48333332), (0.34166667, 0.5), (0.33333334, 0.5), (0.33333334, 0.48333332), (0.33333334, 0.48333332), (0.33333334, 0.5), (0.325, 0.5), (0.325, 0.48333332), (0.325, 0.48333332), (0.325, 0.5), (0.31666666, 0.5), (0.31666666, 0.48333332), (0.31666666, 0.48333332), (0.31666666, 0.5), (0.30833334, 0.5), (0.30833334, 0.48333332), (0.30833334, 0.48333332), (0.30833334, 0.5), (0.3, 0.5), (0.3, 0.48333332), (0.3, 0.48333332), (0.3, 0.5), (0.29166666, 0.5), (0.29166666, 0.48333332), (0.29166666, 0.48333332), (0.29166666, 0.5), (0.28333333, 0.5), (0.28333333, 0.48333332), (0.28333333, 0.48333332), (0.28333333, 0.5), (0.275, 0.5), (0.275, 0.48333332), (0.275, 0.48333332), (0.275, 0.5), (0.26666668, 0.5), (0.26666668, 0.48333332), (0.26666668, 0.48333332), (0.26666668, 0.5), (0.25833333, 0.5), (0.25833333, 0.48333332), (0.25833333, 0.48333332), (0.25833333, 0.5), (0.25, 0.5), (0.25, 0.48333332), (0.25, 0.48333332), (0.25, 0.5), (0.24166666, 0.5), (0.24166666, 0.48333332), (0.24166666, 0.48333332), (0.24166666, 0.5), (0.23333333, 0.5), (0.23333333, 0.48333332), (0.23333333, 0.48333332), (0.23333333, 0.5), (0.225, 0.5), (0.225, 0.48333332), (0.225, 0.48333332), (0.225, 0.5), (0.21666667, 0.5), (0.21666667, 0.48333332), (0.21666667, 0.48333332), (0.21666667, 0.5), (0.20833333, 0.5), (0.20833333, 0.48333332), (0.20833333, 0.48333332), (0.20833333, 0.5), (0.2, 0.5), (0.2, 0.48333332), (0.2, 0.48333332), (0.2, 0.5), (0.19166666, 0.5), (0.19166666, 0.48333332), (0.19166666, 0.48333332), (0.19166666, 0.5), (0.18333334, 0.5), (0.18333334, 0.48333332), (0.18333334, 0.48333332), (0.18333334, 0.5), (0.175, 0.5), (0.175, 0.48333332), (0.175, 0.48333332), (0.175, 0.5), (0.16666667, 0.5), (0.16666667, 0.48333332), (0.16666667, 0.48333332), (0.16666667, 0.5), (0.15833333, 0.5), (0.15833333, 0.48333332), (0.15833333, 0.48333332), (0.15833333, 0.5), (0.15, 0.5), (0.15, 0.48333332), (0.15, 0.48333332), (0.15, 0.5), (0.14166667, 0.5), (0.14166667, 0.48333332), (0.14166667, 0.48333332), (0.14166667, 0.5), (0.13333334, 0.5), (0.13333334, 0.48333332), (0.13333334, 0.48333332), (0.13333334, 0.5), (0.125, 0.5), (0.125, 0.48333332), (0.125, 0.48333332), (0.125, 0.5), (0.11666667, 0.5), (0.11666667, 0.48333332), (0.11666667, 0.48333332), (0.11666667, 0.5), (0.108333334, 0.5), (0.108333334, 0.48333332), (0.108333334, 0.48333332), (0.108333334, 0.5), (0.1, 0.5), (0.1, 0.48333332), (0.1, 0.48333332), (0.1, 0.5), (0.09166667, 0.5), (0.09166667, 0.48333332), (0.09166667, 0.48333332), (0.09166667, 0.5), (0.083333336, 0.5), (0.083333336, 0.48333332), (0.083333336, 0.48333332), (0.083333336, 0.5), (0.075, 0.5), (0.075, 0.48333332), (0.075, 0.48333332), (0.075, 0.5), (0.06666667, 0.5), (0.06666667, 0.48333332), (0.06666667, 0.48333332), (0.06666667, 0.5), (0.058333334, 0.5), (0.058333334, 0.48333332), (0.058333334, 0.48333332), (0.058333334, 0.5), (0.05, 0.5), (0.05, 0.48333332), (0.05, 0.48333332), (0.05, 0.5), (0.041666668, 0.5), (0.041666668, 0.48333332), (0.041666668, 0.48333332), (0.041666668, 0.5), (0.033333335, 0.5), (0.033333335, 0.48333332), (0.033333335, 0.48333332), (0.033333335, 0.5), (0.025, 0.5), (0.025, 0.48333332), (0.025, 0.48333332), (0.025, 0.5), (0.016666668, 0.5), (0.016666668, 0.48333332), (0.016666668, 0.48333332), (0.016666668, 0.5), (0.008333334, 0.5), (0.008333334, 0.48333332), (0.008333334, 0.48333332), (0.008333334, 0.5), (0, 0.5), (0, 0.48333332), (1, 0.5), (1, 0.51666665), (0.9916667, 0.51666665), (0.9916667, 0.5), (0.9916667, 0.5), (0.9916667, 0.51666665), (0.98333335, 0.51666665), (0.98333335, 0.5), (0.98333335, 0.5), (0.98333335, 0.51666665), (0.975, 0.51666665), (0.975, 0.5), (0.975, 0.5), (0.975, 0.51666665), (0.96666664, 0.51666665), (0.96666664, 0.5), (0.96666664, 0.5), (0.96666664, 0.51666665), (0.9583333, 0.51666665), (0.9583333, 0.5), (0.9583333, 0.5), (0.9583333, 0.51666665), (0.95, 0.51666665), (0.95, 0.5), (0.95, 0.5), (0.95, 0.51666665), (0.94166666, 0.51666665), (0.94166666, 0.5), (0.94166666, 0.5), (0.94166666, 0.51666665), (0.93333334, 0.51666665), (0.93333334, 0.5), (0.93333334, 0.5), (0.93333334, 0.51666665), (0.925, 0.51666665), (0.925, 0.5), (0.925, 0.5), (0.925, 0.51666665), (0.9166667, 0.51666665), (0.9166667, 0.5), (0.9166667, 0.5), (0.9166667, 0.51666665), (0.90833336, 0.51666665), (0.90833336, 0.5), (0.90833336, 0.5), (0.90833336, 0.51666665), (0.9, 0.51666665), (0.9, 0.5), (0.9, 0.5), (0.9, 0.51666665), (0.89166665, 0.51666665), (0.89166665, 0.5), (0.89166665, 0.5), (0.89166665, 0.51666665), (0.8833333, 0.51666665), (0.8833333, 0.5), (0.8833333, 0.5), (0.8833333, 0.51666665), (0.875, 0.51666665), (0.875, 0.5), (0.875, 0.5), (0.875, 0.51666665), (0.8666667, 0.51666665), (0.8666667, 0.5), (0.8666667, 0.5), (0.8666667, 0.51666665), (0.85833335, 0.51666665), (0.85833335, 0.5), (0.85833335, 0.5), (0.85833335, 0.51666665), (0.85, 0.51666665), (0.85, 0.5), (0.85, 0.5), (0.85, 0.51666665), (0.84166664, 0.51666665), (0.84166664, 0.5), (0.84166664, 0.5), (0.84166664, 0.51666665), (0.8333333, 0.51666665), (0.8333333, 0.5), (0.8333333, 0.5), (0.8333333, 0.51666665), (0.825, 0.51666665), (0.825, 0.5), (0.825, 0.5), (0.825, 0.51666665), (0.81666666, 0.51666665), (0.81666666, 0.5), (0.81666666, 0.5), (0.81666666, 0.51666665), (0.80833334, 0.51666665), (0.80833334, 0.5), (0.80833334, 0.5), (0.80833334, 0.51666665), (0.8, 0.51666665), (0.8, 0.5), (0.8, 0.5), (0.8, 0.51666665), (0.7916667, 0.51666665), (0.7916667, 0.5), (0.7916667, 0.5), (0.7916667, 0.51666665), (0.78333336, 0.51666665), (0.78333336, 0.5), (0.78333336, 0.5), (0.78333336, 0.51666665), (0.775, 0.51666665), (0.775, 0.5), (0.775, 0.5), (0.775, 0.51666665), (0.76666665, 0.51666665), (0.76666665, 0.5), (0.76666665, 0.5), (0.76666665, 0.51666665), (0.7583333, 0.51666665), (0.7583333, 0.5), (0.7583333, 0.5), (0.7583333, 0.51666665), (0.75, 0.51666665), (0.75, 0.5), (0.75, 0.5), (0.75, 0.51666665), (0.7416667, 0.51666665), (0.7416667, 0.5), (0.7416667, 0.5), (0.7416667, 0.51666665), (0.73333335, 0.51666665), (0.73333335, 0.5), (0.73333335, 0.5), (0.73333335, 0.51666665), (0.725, 0.51666665), (0.725, 0.5), (0.725, 0.5), (0.725, 0.51666665), (0.71666664, 0.51666665), (0.71666664, 0.5), (0.71666664, 0.5), (0.71666664, 0.51666665), (0.7083333, 0.51666665), (0.7083333, 0.5), (0.7083333, 0.5), (0.7083333, 0.51666665), (0.7, 0.51666665), (0.7, 0.5), (0.7, 0.5), (0.7, 0.51666665), (0.69166666, 0.51666665), (0.69166666, 0.5), (0.69166666, 0.5), (0.69166666, 0.51666665), (0.68333334, 0.51666665), (0.68333334, 0.5), (0.68333334, 0.5), (0.68333334, 0.51666665), (0.675, 0.51666665), (0.675, 0.5), (0.675, 0.5), (0.675, 0.51666665), (0.6666667, 0.51666665), (0.6666667, 0.5), (0.6666667, 0.5), (0.6666667, 0.51666665), (0.65833336, 0.51666665), (0.65833336, 0.5), (0.65833336, 0.5), (0.65833336, 0.51666665), (0.65, 0.51666665), (0.65, 0.5), (0.65, 0.5), (0.65, 0.51666665), (0.64166665, 0.51666665), (0.64166665, 0.5), (0.64166665, 0.5), (0.64166665, 0.51666665), (0.6333333, 0.51666665), (0.6333333, 0.5), (0.6333333, 0.5), (0.6333333, 0.51666665), (0.625, 0.51666665), (0.625, 0.5), (0.625, 0.5), (0.625, 0.51666665), (0.6166667, 0.51666665), (0.6166667, 0.5), (0.6166667, 0.5), (0.6166667, 0.51666665), (0.60833335, 0.51666665), (0.60833335, 0.5), (0.60833335, 0.5), (0.60833335, 0.51666665), (0.6, 0.51666665), (0.6, 0.5), (0.6, 0.5), (0.6, 0.51666665), (0.59166664, 0.51666665), (0.59166664, 0.5), (0.59166664, 0.5), (0.59166664, 0.51666665), (0.5833333, 0.51666665), (0.5833333, 0.5), (0.5833333, 0.5), (0.5833333, 0.51666665), (0.575, 0.51666665), (0.575, 0.5), (0.575, 0.5), (0.575, 0.51666665), (0.56666666, 0.51666665), (0.56666666, 0.5), (0.56666666, 0.5), (0.56666666, 0.51666665), (0.55833334, 0.51666665), (0.55833334, 0.5), (0.55833334, 0.5), (0.55833334, 0.51666665), (0.55, 0.51666665), (0.55, 0.5), (0.55, 0.5), (0.55, 0.51666665), (0.5416667, 0.51666665), (0.5416667, 0.5), (0.5416667, 0.5), (0.5416667, 0.51666665), (0.53333336, 0.51666665), (0.53333336, 0.5), (0.53333336, 0.5), (0.53333336, 0.51666665), (0.525, 0.51666665), (0.525, 0.5), (0.525, 0.5), (0.525, 0.51666665), (0.51666665, 0.51666665), (0.51666665, 0.5), (0.51666665, 0.5), (0.51666665, 0.51666665), (0.5083333, 0.51666665), (0.5083333, 0.5), (0.5083333, 0.5), (0.5083333, 0.51666665), (0.5, 0.51666665), (0.5, 0.5), (0.5, 0.5), (0.5, 0.51666665), (0.49166667, 0.51666665), (0.49166667, 0.5), (0.49166667, 0.5), (0.49166667, 0.51666665), (0.48333332, 0.51666665), (0.48333332, 0.5), (0.48333332, 0.5), (0.48333332, 0.51666665), (0.475, 0.51666665), (0.475, 0.5), (0.475, 0.5), (0.475, 0.51666665), (0.46666667, 0.51666665), (0.46666667, 0.5), (0.46666667, 0.5), (0.46666667, 0.51666665), (0.45833334, 0.51666665), (0.45833334, 0.5), (0.45833334, 0.5), (0.45833334, 0.51666665), (0.45, 0.51666665), (0.45, 0.5), (0.45, 0.5), (0.45, 0.51666665), (0.44166666, 0.51666665), (0.44166666, 0.5), (0.44166666, 0.5), (0.44166666, 0.51666665), (0.43333334, 0.51666665), (0.43333334, 0.5), (0.43333334, 0.5), (0.43333334, 0.51666665), (0.425, 0.51666665), (0.425, 0.5), (0.425, 0.5), (0.425, 0.51666665), (0.41666666, 0.51666665), (0.41666666, 0.5), (0.41666666, 0.5), (0.41666666, 0.51666665), (0.40833333, 0.51666665), (0.40833333, 0.5), (0.40833333, 0.5), (0.40833333, 0.51666665), (0.4, 0.51666665), (0.4, 0.5), (0.4, 0.5), (0.4, 0.51666665), (0.39166668, 0.51666665), (0.39166668, 0.5), (0.39166668, 0.5), (0.39166668, 0.51666665), (0.38333333, 0.51666665), (0.38333333, 0.5), (0.38333333, 0.5), (0.38333333, 0.51666665), (0.375, 0.51666665), (0.375, 0.5), (0.375, 0.5), (0.375, 0.51666665), (0.36666667, 0.51666665), (0.36666667, 0.5), (0.36666667, 0.5), (0.36666667, 0.51666665), (0.35833332, 0.51666665), (0.35833332, 0.5), (0.35833332, 0.5), (0.35833332, 0.51666665), (0.35, 0.51666665), (0.35, 0.5), (0.35, 0.5), (0.35, 0.51666665), (0.34166667, 0.51666665), (0.34166667, 0.5), (0.34166667, 0.5), (0.34166667, 0.51666665), (0.33333334, 0.51666665), (0.33333334, 0.5), (0.33333334, 0.5), (0.33333334, 0.51666665), (0.325, 0.51666665), (0.325, 0.5), (0.325, 0.5), (0.325, 0.51666665), (0.31666666, 0.51666665), (0.31666666, 0.5), (0.31666666, 0.5), (0.31666666, 0.51666665), (0.30833334, 0.51666665), (0.30833334, 0.5), (0.30833334, 0.5), (0.30833334, 0.51666665), (0.3, 0.51666665), (0.3, 0.5), (0.3, 0.5), (0.3, 0.51666665), (0.29166666, 0.51666665), (0.29166666, 0.5), (0.29166666, 0.5), (0.29166666, 0.51666665), (0.28333333, 0.51666665), (0.28333333, 0.5), (0.28333333, 0.5), (0.28333333, 0.51666665), (0.275, 0.51666665), (0.275, 0.5), (0.275, 0.5), (0.275, 0.51666665), (0.26666668, 0.51666665), (0.26666668, 0.5), (0.26666668, 0.5), (0.26666668, 0.51666665), (0.25833333, 0.51666665), (0.25833333, 0.5), (0.25833333, 0.5), (0.25833333, 0.51666665), (0.25, 0.51666665), (0.25, 0.5), (0.25, 0.5), (0.25, 0.51666665), (0.24166666, 0.51666665), (0.24166666, 0.5), (0.24166666, 0.5), (0.24166666, 0.51666665), (0.23333333, 0.51666665), (0.23333333, 0.5), (0.23333333, 0.5), (0.23333333, 0.51666665), (0.225, 0.51666665), (0.225, 0.5), (0.225, 0.5), (0.225, 0.51666665), (0.21666667, 0.51666665), (0.21666667, 0.5), (0.21666667, 0.5), (0.21666667, 0.51666665), (0.20833333, 0.51666665), (0.20833333, 0.5), (0.20833333, 0.5), (0.20833333, 0.51666665), (0.2, 0.51666665), (0.2, 0.5), (0.2, 0.5), (0.2, 0.51666665), (0.19166666, 0.51666665), (0.19166666, 0.5), (0.19166666, 0.5), (0.19166666, 0.51666665), (0.18333334, 0.51666665), (0.18333334, 0.5), (0.18333334, 0.5), (0.18333334, 0.51666665), (0.175, 0.51666665), (0.175, 0.5), (0.175, 0.5), (0.175, 0.51666665), (0.16666667, 0.51666665), (0.16666667, 0.5), (0.16666667, 0.5), (0.16666667, 0.51666665), (0.15833333, 0.51666665), (0.15833333, 0.5), (0.15833333, 0.5), (0.15833333, 0.51666665), (0.15, 0.51666665), (0.15, 0.5), (0.15, 0.5), (0.15, 0.51666665), (0.14166667, 0.51666665), (0.14166667, 0.5), (0.14166667, 0.5), (0.14166667, 0.51666665), (0.13333334, 0.51666665), (0.13333334, 0.5), (0.13333334, 0.5), (0.13333334, 0.51666665), (0.125, 0.51666665), (0.125, 0.5), (0.125, 0.5), (0.125, 0.51666665), (0.11666667, 0.51666665), (0.11666667, 0.5), (0.11666667, 0.5), (0.11666667, 0.51666665), (0.108333334, 0.51666665), (0.108333334, 0.5), (0.108333334, 0.5), (0.108333334, 0.51666665), (0.1, 0.51666665), (0.1, 0.5), (0.1, 0.5), (0.1, 0.51666665), (0.09166667, 0.51666665), (0.09166667, 0.5), (0.09166667, 0.5), (0.09166667, 0.51666665), (0.083333336, 0.51666665), (0.083333336, 0.5), (0.083333336, 0.5), (0.083333336, 0.51666665), (0.075, 0.51666665), (0.075, 0.5), (0.075, 0.5), (0.075, 0.51666665), (0.06666667, 0.51666665), (0.06666667, 0.5), (0.06666667, 0.5), (0.06666667, 0.51666665), (0.058333334, 0.51666665), (0.058333334, 0.5), (0.058333334, 0.5), (0.058333334, 0.51666665), (0.05, 0.51666665), (0.05, 0.5), (0.05, 0.5), (0.05, 0.51666665), (0.041666668, 0.51666665), (0.041666668, 0.5), (0.041666668, 0.5), (0.041666668, 0.51666665), (0.033333335, 0.51666665), (0.033333335, 0.5), (0.033333335, 0.5), (0.033333335, 0.51666665), (0.025, 0.51666665), (0.025, 0.5), (0.025, 0.5), (0.025, 0.51666665), (0.016666668, 0.51666665), (0.016666668, 0.5), (0.016666668, 0.5), (0.016666668, 0.51666665), (0.008333334, 0.51666665), (0.008333334, 0.5), (0.008333334, 0.5), (0.008333334, 0.51666665), (0, 0.51666665), (0, 0.5), (1, 0.51666665), (1, 0.53333336), (0.9916667, 0.53333336), (0.9916667, 0.51666665), (0.9916667, 0.51666665), (0.9916667, 0.53333336), (0.98333335, 0.53333336), (0.98333335, 0.51666665), (0.98333335, 0.51666665), (0.98333335, 0.53333336), (0.975, 0.53333336), (0.975, 0.51666665), (0.975, 0.51666665), (0.975, 0.53333336), (0.96666664, 0.53333336), (0.96666664, 0.51666665), (0.96666664, 0.51666665), (0.96666664, 0.53333336), (0.9583333, 0.53333336), (0.9583333, 0.51666665), (0.9583333, 0.51666665), (0.9583333, 0.53333336), (0.95, 0.53333336), (0.95, 0.51666665), (0.95, 0.51666665), (0.95, 0.53333336), (0.94166666, 0.53333336), (0.94166666, 0.51666665), (0.94166666, 0.51666665), (0.94166666, 0.53333336), (0.93333334, 0.53333336), (0.93333334, 0.51666665), (0.93333334, 0.51666665), (0.93333334, 0.53333336), (0.925, 0.53333336), (0.925, 0.51666665), (0.925, 0.51666665), (0.925, 0.53333336), (0.9166667, 0.53333336), (0.9166667, 0.51666665), (0.9166667, 0.51666665), (0.9166667, 0.53333336), (0.90833336, 0.53333336), (0.90833336, 0.51666665), (0.90833336, 0.51666665), (0.90833336, 0.53333336), (0.9, 0.53333336), (0.9, 0.51666665), (0.9, 0.51666665), (0.9, 0.53333336), (0.89166665, 0.53333336), (0.89166665, 0.51666665), (0.89166665, 0.51666665), (0.89166665, 0.53333336), (0.8833333, 0.53333336), (0.8833333, 0.51666665), (0.8833333, 0.51666665), (0.8833333, 0.53333336), (0.875, 0.53333336), (0.875, 0.51666665), (0.875, 0.51666665), (0.875, 0.53333336), (0.8666667, 0.53333336), (0.8666667, 0.51666665), (0.8666667, 0.51666665), (0.8666667, 0.53333336), (0.85833335, 0.53333336), (0.85833335, 0.51666665), (0.85833335, 0.51666665), (0.85833335, 0.53333336), (0.85, 0.53333336), (0.85, 0.51666665), (0.85, 0.51666665), (0.85, 0.53333336), (0.84166664, 0.53333336), (0.84166664, 0.51666665), (0.84166664, 0.51666665), (0.84166664, 0.53333336), (0.8333333, 0.53333336), (0.8333333, 0.51666665), (0.8333333, 0.51666665), (0.8333333, 0.53333336), (0.825, 0.53333336), (0.825, 0.51666665), (0.825, 0.51666665), (0.825, 0.53333336), (0.81666666, 0.53333336), (0.81666666, 0.51666665), (0.81666666, 0.51666665), (0.81666666, 0.53333336), (0.80833334, 0.53333336), (0.80833334, 0.51666665), (0.80833334, 0.51666665), (0.80833334, 0.53333336), (0.8, 0.53333336), (0.8, 0.51666665), (0.8, 0.51666665), (0.8, 0.53333336), (0.7916667, 0.53333336), (0.7916667, 0.51666665), (0.7916667, 0.51666665), (0.7916667, 0.53333336), (0.78333336, 0.53333336), (0.78333336, 0.51666665), (0.78333336, 0.51666665), (0.78333336, 0.53333336), (0.775, 0.53333336), (0.775, 0.51666665), (0.775, 0.51666665), (0.775, 0.53333336), (0.76666665, 0.53333336), (0.76666665, 0.51666665), (0.76666665, 0.51666665), (0.76666665, 0.53333336), (0.7583333, 0.53333336), (0.7583333, 0.51666665), (0.7583333, 0.51666665), (0.7583333, 0.53333336), (0.75, 0.53333336), (0.75, 0.51666665), (0.75, 0.51666665), (0.75, 0.53333336), (0.7416667, 0.53333336), (0.7416667, 0.51666665), (0.7416667, 0.51666665), (0.7416667, 0.53333336), (0.73333335, 0.53333336), (0.73333335, 0.51666665), (0.73333335, 0.51666665), (0.73333335, 0.53333336), (0.725, 0.53333336), (0.725, 0.51666665), (0.725, 0.51666665), (0.725, 0.53333336), (0.71666664, 0.53333336), (0.71666664, 0.51666665), (0.71666664, 0.51666665), (0.71666664, 0.53333336), (0.7083333, 0.53333336), (0.7083333, 0.51666665), (0.7083333, 0.51666665), (0.7083333, 0.53333336), (0.7, 0.53333336), (0.7, 0.51666665), (0.7, 0.51666665), (0.7, 0.53333336), (0.69166666, 0.53333336), (0.69166666, 0.51666665), (0.69166666, 0.51666665), (0.69166666, 0.53333336), (0.68333334, 0.53333336), (0.68333334, 0.51666665), (0.68333334, 0.51666665), (0.68333334, 0.53333336), (0.675, 0.53333336), (0.675, 0.51666665), (0.675, 0.51666665), (0.675, 0.53333336), (0.6666667, 0.53333336), (0.6666667, 0.51666665), (0.6666667, 0.51666665), (0.6666667, 0.53333336), (0.65833336, 0.53333336), (0.65833336, 0.51666665), (0.65833336, 0.51666665), (0.65833336, 0.53333336), (0.65, 0.53333336), (0.65, 0.51666665), (0.65, 0.51666665), (0.65, 0.53333336), (0.64166665, 0.53333336), (0.64166665, 0.51666665), (0.64166665, 0.51666665), (0.64166665, 0.53333336), (0.6333333, 0.53333336), (0.6333333, 0.51666665), (0.6333333, 0.51666665), (0.6333333, 0.53333336), (0.625, 0.53333336), (0.625, 0.51666665), (0.625, 0.51666665), (0.625, 0.53333336), (0.6166667, 0.53333336), (0.6166667, 0.51666665), (0.6166667, 0.51666665), (0.6166667, 0.53333336), (0.60833335, 0.53333336), (0.60833335, 0.51666665), (0.60833335, 0.51666665), (0.60833335, 0.53333336), (0.6, 0.53333336), (0.6, 0.51666665), (0.6, 0.51666665), (0.6, 0.53333336), (0.59166664, 0.53333336), (0.59166664, 0.51666665), (0.59166664, 0.51666665), (0.59166664, 0.53333336), (0.5833333, 0.53333336), (0.5833333, 0.51666665), (0.5833333, 0.51666665), (0.5833333, 0.53333336), (0.575, 0.53333336), (0.575, 0.51666665), (0.575, 0.51666665), (0.575, 0.53333336), (0.56666666, 0.53333336), (0.56666666, 0.51666665), (0.56666666, 0.51666665), (0.56666666, 0.53333336), (0.55833334, 0.53333336), (0.55833334, 0.51666665), (0.55833334, 0.51666665), (0.55833334, 0.53333336), (0.55, 0.53333336), (0.55, 0.51666665), (0.55, 0.51666665), (0.55, 0.53333336), (0.5416667, 0.53333336), (0.5416667, 0.51666665), (0.5416667, 0.51666665), (0.5416667, 0.53333336), (0.53333336, 0.53333336), (0.53333336, 0.51666665), (0.53333336, 0.51666665), (0.53333336, 0.53333336), (0.525, 0.53333336), (0.525, 0.51666665), (0.525, 0.51666665), (0.525, 0.53333336), (0.51666665, 0.53333336), (0.51666665, 0.51666665), (0.51666665, 0.51666665), (0.51666665, 0.53333336), (0.5083333, 0.53333336), (0.5083333, 0.51666665), (0.5083333, 0.51666665), (0.5083333, 0.53333336), (0.5, 0.53333336), (0.5, 0.51666665), (0.5, 0.51666665), (0.5, 0.53333336), (0.49166667, 0.53333336), (0.49166667, 0.51666665), (0.49166667, 0.51666665), (0.49166667, 0.53333336), (0.48333332, 0.53333336), (0.48333332, 0.51666665), (0.48333332, 0.51666665), (0.48333332, 0.53333336), (0.475, 0.53333336), (0.475, 0.51666665), (0.475, 0.51666665), (0.475, 0.53333336), (0.46666667, 0.53333336), (0.46666667, 0.51666665), (0.46666667, 0.51666665), (0.46666667, 0.53333336), (0.45833334, 0.53333336), (0.45833334, 0.51666665), (0.45833334, 0.51666665), (0.45833334, 0.53333336), (0.45, 0.53333336), (0.45, 0.51666665), (0.45, 0.51666665), (0.45, 0.53333336), (0.44166666, 0.53333336), (0.44166666, 0.51666665), (0.44166666, 0.51666665), (0.44166666, 0.53333336), (0.43333334, 0.53333336), (0.43333334, 0.51666665), (0.43333334, 0.51666665), (0.43333334, 0.53333336), (0.425, 0.53333336), (0.425, 0.51666665), (0.425, 0.51666665), (0.425, 0.53333336), (0.41666666, 0.53333336), (0.41666666, 0.51666665), (0.41666666, 0.51666665), (0.41666666, 0.53333336), (0.40833333, 0.53333336), (0.40833333, 0.51666665), (0.40833333, 0.51666665), (0.40833333, 0.53333336), (0.4, 0.53333336), (0.4, 0.51666665), (0.4, 0.51666665), (0.4, 0.53333336), (0.39166668, 0.53333336), (0.39166668, 0.51666665), (0.39166668, 0.51666665), (0.39166668, 0.53333336), (0.38333333, 0.53333336), (0.38333333, 0.51666665), (0.38333333, 0.51666665), (0.38333333, 0.53333336), (0.375, 0.53333336), (0.375, 0.51666665), (0.375, 0.51666665), (0.375, 0.53333336), (0.36666667, 0.53333336), (0.36666667, 0.51666665), (0.36666667, 0.51666665), (0.36666667, 0.53333336), (0.35833332, 0.53333336), (0.35833332, 0.51666665), (0.35833332, 0.51666665), (0.35833332, 0.53333336), (0.35, 0.53333336), (0.35, 0.51666665), (0.35, 0.51666665), (0.35, 0.53333336), (0.34166667, 0.53333336), (0.34166667, 0.51666665), (0.34166667, 0.51666665), (0.34166667, 0.53333336), (0.33333334, 0.53333336), (0.33333334, 0.51666665), (0.33333334, 0.51666665), (0.33333334, 0.53333336), (0.325, 0.53333336), (0.325, 0.51666665), (0.325, 0.51666665), (0.325, 0.53333336), (0.31666666, 0.53333336), (0.31666666, 0.51666665), (0.31666666, 0.51666665), (0.31666666, 0.53333336), (0.30833334, 0.53333336), (0.30833334, 0.51666665), (0.30833334, 0.51666665), (0.30833334, 0.53333336), (0.3, 0.53333336), (0.3, 0.51666665), (0.3, 0.51666665), (0.3, 0.53333336), (0.29166666, 0.53333336), (0.29166666, 0.51666665), (0.29166666, 0.51666665), (0.29166666, 0.53333336), (0.28333333, 0.53333336), (0.28333333, 0.51666665), (0.28333333, 0.51666665), (0.28333333, 0.53333336), (0.275, 0.53333336), (0.275, 0.51666665), (0.275, 0.51666665), (0.275, 0.53333336), (0.26666668, 0.53333336), (0.26666668, 0.51666665), (0.26666668, 0.51666665), (0.26666668, 0.53333336), (0.25833333, 0.53333336), (0.25833333, 0.51666665), (0.25833333, 0.51666665), (0.25833333, 0.53333336), (0.25, 0.53333336), (0.25, 0.51666665), (0.25, 0.51666665), (0.25, 0.53333336), (0.24166666, 0.53333336), (0.24166666, 0.51666665), (0.24166666, 0.51666665), (0.24166666, 0.53333336), (0.23333333, 0.53333336), (0.23333333, 0.51666665), (0.23333333, 0.51666665), (0.23333333, 0.53333336), (0.225, 0.53333336), (0.225, 0.51666665), (0.225, 0.51666665), (0.225, 0.53333336), (0.21666667, 0.53333336), (0.21666667, 0.51666665), (0.21666667, 0.51666665), (0.21666667, 0.53333336), (0.20833333, 0.53333336), (0.20833333, 0.51666665), (0.20833333, 0.51666665), (0.20833333, 0.53333336), (0.2, 0.53333336), (0.2, 0.51666665), (0.2, 0.51666665), (0.2, 0.53333336), (0.19166666, 0.53333336), (0.19166666, 0.51666665), (0.19166666, 0.51666665), (0.19166666, 0.53333336), (0.18333334, 0.53333336), (0.18333334, 0.51666665), (0.18333334, 0.51666665), (0.18333334, 0.53333336), (0.175, 0.53333336), (0.175, 0.51666665), (0.175, 0.51666665), (0.175, 0.53333336), (0.16666667, 0.53333336), (0.16666667, 0.51666665), (0.16666667, 0.51666665), (0.16666667, 0.53333336), (0.15833333, 0.53333336), (0.15833333, 0.51666665), (0.15833333, 0.51666665), (0.15833333, 0.53333336), (0.15, 0.53333336), (0.15, 0.51666665), (0.15, 0.51666665), (0.15, 0.53333336), (0.14166667, 0.53333336), (0.14166667, 0.51666665), (0.14166667, 0.51666665), (0.14166667, 0.53333336), (0.13333334, 0.53333336), (0.13333334, 0.51666665), (0.13333334, 0.51666665), (0.13333334, 0.53333336), (0.125, 0.53333336), (0.125, 0.51666665), (0.125, 0.51666665), (0.125, 0.53333336), (0.11666667, 0.53333336), (0.11666667, 0.51666665), (0.11666667, 0.51666665), (0.11666667, 0.53333336), (0.108333334, 0.53333336), (0.108333334, 0.51666665), (0.108333334, 0.51666665), (0.108333334, 0.53333336), (0.1, 0.53333336), (0.1, 0.51666665), (0.1, 0.51666665), (0.1, 0.53333336), (0.09166667, 0.53333336), (0.09166667, 0.51666665), (0.09166667, 0.51666665), (0.09166667, 0.53333336), (0.083333336, 0.53333336), (0.083333336, 0.51666665), (0.083333336, 0.51666665), (0.083333336, 0.53333336), (0.075, 0.53333336), (0.075, 0.51666665), (0.075, 0.51666665), (0.075, 0.53333336), (0.06666667, 0.53333336), (0.06666667, 0.51666665), (0.06666667, 0.51666665), (0.06666667, 0.53333336), (0.058333334, 0.53333336), (0.058333334, 0.51666665), (0.058333334, 0.51666665), (0.058333334, 0.53333336), (0.05, 0.53333336), (0.05, 0.51666665), (0.05, 0.51666665), (0.05, 0.53333336), (0.041666668, 0.53333336), (0.041666668, 0.51666665), (0.041666668, 0.51666665), (0.041666668, 0.53333336), (0.033333335, 0.53333336), (0.033333335, 0.51666665), (0.033333335, 0.51666665), (0.033333335, 0.53333336), (0.025, 0.53333336), (0.025, 0.51666665), (0.025, 0.51666665), (0.025, 0.53333336), (0.016666668, 0.53333336), (0.016666668, 0.51666665), (0.016666668, 0.51666665), (0.016666668, 0.53333336), (0.008333334, 0.53333336), (0.008333334, 0.51666665), (0.008333334, 0.51666665), (0.008333334, 0.53333336), (0, 0.53333336), (0, 0.51666665), (1, 0.53333336), (1, 0.55), (0.9916667, 0.55), (0.9916667, 0.53333336), (0.9916667, 0.53333336), (0.9916667, 0.55), (0.98333335, 0.55), (0.98333335, 0.53333336), (0.98333335, 0.53333336), (0.98333335, 0.55), (0.975, 0.55), (0.975, 0.53333336), (0.975, 0.53333336), (0.975, 0.55), (0.96666664, 0.55), (0.96666664, 0.53333336), (0.96666664, 0.53333336), (0.96666664, 0.55), (0.9583333, 0.55), (0.9583333, 0.53333336), (0.9583333, 0.53333336), (0.9583333, 0.55), (0.95, 0.55), (0.95, 0.53333336), (0.95, 0.53333336), (0.95, 0.55), (0.94166666, 0.55), (0.94166666, 0.53333336), (0.94166666, 0.53333336), (0.94166666, 0.55), (0.93333334, 0.55), (0.93333334, 0.53333336), (0.93333334, 0.53333336), (0.93333334, 0.55), (0.925, 0.55), (0.925, 0.53333336), (0.925, 0.53333336), (0.925, 0.55), (0.9166667, 0.55), (0.9166667, 0.53333336), (0.9166667, 0.53333336), (0.9166667, 0.55), (0.90833336, 0.55), (0.90833336, 0.53333336), (0.90833336, 0.53333336), (0.90833336, 0.55), (0.9, 0.55), (0.9, 0.53333336), (0.9, 0.53333336), (0.9, 0.55), (0.89166665, 0.55), (0.89166665, 0.53333336), (0.89166665, 0.53333336), (0.89166665, 0.55), (0.8833333, 0.55), (0.8833333, 0.53333336), (0.8833333, 0.53333336), (0.8833333, 0.55), (0.875, 0.55), (0.875, 0.53333336), (0.875, 0.53333336), (0.875, 0.55), (0.8666667, 0.55), (0.8666667, 0.53333336), (0.8666667, 0.53333336), (0.8666667, 0.55), (0.85833335, 0.55), (0.85833335, 0.53333336), (0.85833335, 0.53333336), (0.85833335, 0.55), (0.85, 0.55), (0.85, 0.53333336), (0.85, 0.53333336), (0.85, 0.55), (0.84166664, 0.55), (0.84166664, 0.53333336), (0.84166664, 0.53333336), (0.84166664, 0.55), (0.8333333, 0.55), (0.8333333, 0.53333336), (0.8333333, 0.53333336), (0.8333333, 0.55), (0.825, 0.55), (0.825, 0.53333336), (0.825, 0.53333336), (0.825, 0.55), (0.81666666, 0.55), (0.81666666, 0.53333336), (0.81666666, 0.53333336), (0.81666666, 0.55), (0.80833334, 0.55), (0.80833334, 0.53333336), (0.80833334, 0.53333336), (0.80833334, 0.55), (0.8, 0.55), (0.8, 0.53333336), (0.8, 0.53333336), (0.8, 0.55), (0.7916667, 0.55), (0.7916667, 0.53333336), (0.7916667, 0.53333336), (0.7916667, 0.55), (0.78333336, 0.55), (0.78333336, 0.53333336), (0.78333336, 0.53333336), (0.78333336, 0.55), (0.775, 0.55), (0.775, 0.53333336), (0.775, 0.53333336), (0.775, 0.55), (0.76666665, 0.55), (0.76666665, 0.53333336), (0.76666665, 0.53333336), (0.76666665, 0.55), (0.7583333, 0.55), (0.7583333, 0.53333336), (0.7583333, 0.53333336), (0.7583333, 0.55), (0.75, 0.55), (0.75, 0.53333336), (0.75, 0.53333336), (0.75, 0.55), (0.7416667, 0.55), (0.7416667, 0.53333336), (0.7416667, 0.53333336), (0.7416667, 0.55), (0.73333335, 0.55), (0.73333335, 0.53333336), (0.73333335, 0.53333336), (0.73333335, 0.55), (0.725, 0.55), (0.725, 0.53333336), (0.725, 0.53333336), (0.725, 0.55), (0.71666664, 0.55), (0.71666664, 0.53333336), (0.71666664, 0.53333336), (0.71666664, 0.55), (0.7083333, 0.55), (0.7083333, 0.53333336), (0.7083333, 0.53333336), (0.7083333, 0.55), (0.7, 0.55), (0.7, 0.53333336), (0.7, 0.53333336), (0.7, 0.55), (0.69166666, 0.55), (0.69166666, 0.53333336), (0.69166666, 0.53333336), (0.69166666, 0.55), (0.68333334, 0.55), (0.68333334, 0.53333336), (0.68333334, 0.53333336), (0.68333334, 0.55), (0.675, 0.55), (0.675, 0.53333336), (0.675, 0.53333336), (0.675, 0.55), (0.6666667, 0.55), (0.6666667, 0.53333336), (0.6666667, 0.53333336), (0.6666667, 0.55), (0.65833336, 0.55), (0.65833336, 0.53333336), (0.65833336, 0.53333336), (0.65833336, 0.55), (0.65, 0.55), (0.65, 0.53333336), (0.65, 0.53333336), (0.65, 0.55), (0.64166665, 0.55), (0.64166665, 0.53333336), (0.64166665, 0.53333336), (0.64166665, 0.55), (0.6333333, 0.55), (0.6333333, 0.53333336), (0.6333333, 0.53333336), (0.6333333, 0.55), (0.625, 0.55), (0.625, 0.53333336), (0.625, 0.53333336), (0.625, 0.55), (0.6166667, 0.55), (0.6166667, 0.53333336), (0.6166667, 0.53333336), (0.6166667, 0.55), (0.60833335, 0.55), (0.60833335, 0.53333336), (0.60833335, 0.53333336), (0.60833335, 0.55), (0.6, 0.55), (0.6, 0.53333336), (0.6, 0.53333336), (0.6, 0.55), (0.59166664, 0.55), (0.59166664, 0.53333336), (0.59166664, 0.53333336), (0.59166664, 0.55), (0.5833333, 0.55), (0.5833333, 0.53333336), (0.5833333, 0.53333336), (0.5833333, 0.55), (0.575, 0.55), (0.575, 0.53333336), (0.575, 0.53333336), (0.575, 0.55), (0.56666666, 0.55), (0.56666666, 0.53333336), (0.56666666, 0.53333336), (0.56666666, 0.55), (0.55833334, 0.55), (0.55833334, 0.53333336), (0.55833334, 0.53333336), (0.55833334, 0.55), (0.55, 0.55), (0.55, 0.53333336), (0.55, 0.53333336), (0.55, 0.55), (0.5416667, 0.55), (0.5416667, 0.53333336), (0.5416667, 0.53333336), (0.5416667, 0.55), (0.53333336, 0.55), (0.53333336, 0.53333336), (0.53333336, 0.53333336), (0.53333336, 0.55), (0.525, 0.55), (0.525, 0.53333336), (0.525, 0.53333336), (0.525, 0.55), (0.51666665, 0.55), (0.51666665, 0.53333336), (0.51666665, 0.53333336), (0.51666665, 0.55), (0.5083333, 0.55), (0.5083333, 0.53333336), (0.5083333, 0.53333336), (0.5083333, 0.55), (0.5, 0.55), (0.5, 0.53333336), (0.5, 0.53333336), (0.5, 0.55), (0.49166667, 0.55), (0.49166667, 0.53333336), (0.49166667, 0.53333336), (0.49166667, 0.55), (0.48333332, 0.55), (0.48333332, 0.53333336), (0.48333332, 0.53333336), (0.48333332, 0.55), (0.475, 0.55), (0.475, 0.53333336), (0.475, 0.53333336), (0.475, 0.55), (0.46666667, 0.55), (0.46666667, 0.53333336), (0.46666667, 0.53333336), (0.46666667, 0.55), (0.45833334, 0.55), (0.45833334, 0.53333336), (0.45833334, 0.53333336), (0.45833334, 0.55), (0.45, 0.55), (0.45, 0.53333336), (0.45, 0.53333336), (0.45, 0.55), (0.44166666, 0.55), (0.44166666, 0.53333336), (0.44166666, 0.53333336), (0.44166666, 0.55), (0.43333334, 0.55), (0.43333334, 0.53333336), (0.43333334, 0.53333336), (0.43333334, 0.55), (0.425, 0.55), (0.425, 0.53333336), (0.425, 0.53333336), (0.425, 0.55), (0.41666666, 0.55), (0.41666666, 0.53333336), (0.41666666, 0.53333336), (0.41666666, 0.55), (0.40833333, 0.55), (0.40833333, 0.53333336), (0.40833333, 0.53333336), (0.40833333, 0.55), (0.4, 0.55), (0.4, 0.53333336), (0.4, 0.53333336), (0.4, 0.55), (0.39166668, 0.55), (0.39166668, 0.53333336), (0.39166668, 0.53333336), (0.39166668, 0.55), (0.38333333, 0.55), (0.38333333, 0.53333336), (0.38333333, 0.53333336), (0.38333333, 0.55), (0.375, 0.55), (0.375, 0.53333336), (0.375, 0.53333336), (0.375, 0.55), (0.36666667, 0.55), (0.36666667, 0.53333336), (0.36666667, 0.53333336), (0.36666667, 0.55), (0.35833332, 0.55), (0.35833332, 0.53333336), (0.35833332, 0.53333336), (0.35833332, 0.55), (0.35, 0.55), (0.35, 0.53333336), (0.35, 0.53333336), (0.35, 0.55), (0.34166667, 0.55), (0.34166667, 0.53333336), (0.34166667, 0.53333336), (0.34166667, 0.55), (0.33333334, 0.55), (0.33333334, 0.53333336), (0.33333334, 0.53333336), (0.33333334, 0.55), (0.325, 0.55), (0.325, 0.53333336), (0.325, 0.53333336), (0.325, 0.55), (0.31666666, 0.55), (0.31666666, 0.53333336), (0.31666666, 0.53333336), (0.31666666, 0.55), (0.30833334, 0.55), (0.30833334, 0.53333336), (0.30833334, 0.53333336), (0.30833334, 0.55), (0.3, 0.55), (0.3, 0.53333336), (0.3, 0.53333336), (0.3, 0.55), (0.29166666, 0.55), (0.29166666, 0.53333336), (0.29166666, 0.53333336), (0.29166666, 0.55), (0.28333333, 0.55), (0.28333333, 0.53333336), (0.28333333, 0.53333336), (0.28333333, 0.55), (0.275, 0.55), (0.275, 0.53333336), (0.275, 0.53333336), (0.275, 0.55), (0.26666668, 0.55), (0.26666668, 0.53333336), (0.26666668, 0.53333336), (0.26666668, 0.55), (0.25833333, 0.55), (0.25833333, 0.53333336), (0.25833333, 0.53333336), (0.25833333, 0.55), (0.25, 0.55), (0.25, 0.53333336), (0.25, 0.53333336), (0.25, 0.55), (0.24166666, 0.55), (0.24166666, 0.53333336), (0.24166666, 0.53333336), (0.24166666, 0.55), (0.23333333, 0.55), (0.23333333, 0.53333336), (0.23333333, 0.53333336), (0.23333333, 0.55), (0.225, 0.55), (0.225, 0.53333336), (0.225, 0.53333336), (0.225, 0.55), (0.21666667, 0.55), (0.21666667, 0.53333336), (0.21666667, 0.53333336), (0.21666667, 0.55), (0.20833333, 0.55), (0.20833333, 0.53333336), (0.20833333, 0.53333336), (0.20833333, 0.55), (0.2, 0.55), (0.2, 0.53333336), (0.2, 0.53333336), (0.2, 0.55), (0.19166666, 0.55), (0.19166666, 0.53333336), (0.19166666, 0.53333336), (0.19166666, 0.55), (0.18333334, 0.55), (0.18333334, 0.53333336), (0.18333334, 0.53333336), (0.18333334, 0.55), (0.175, 0.55), (0.175, 0.53333336), (0.175, 0.53333336), (0.175, 0.55), (0.16666667, 0.55), (0.16666667, 0.53333336), (0.16666667, 0.53333336), (0.16666667, 0.55), (0.15833333, 0.55), (0.15833333, 0.53333336), (0.15833333, 0.53333336), (0.15833333, 0.55), (0.15, 0.55), (0.15, 0.53333336), (0.15, 0.53333336), (0.15, 0.55), (0.14166667, 0.55), (0.14166667, 0.53333336), (0.14166667, 0.53333336), (0.14166667, 0.55), (0.13333334, 0.55), (0.13333334, 0.53333336), (0.13333334, 0.53333336), (0.13333334, 0.55), (0.125, 0.55), (0.125, 0.53333336), (0.125, 0.53333336), (0.125, 0.55), (0.11666667, 0.55), (0.11666667, 0.53333336), (0.11666667, 0.53333336), (0.11666667, 0.55), (0.108333334, 0.55), (0.108333334, 0.53333336), (0.108333334, 0.53333336), (0.108333334, 0.55), (0.1, 0.55), (0.1, 0.53333336), (0.1, 0.53333336), (0.1, 0.55), (0.09166667, 0.55), (0.09166667, 0.53333336), (0.09166667, 0.53333336), (0.09166667, 0.55), (0.083333336, 0.55), (0.083333336, 0.53333336), (0.083333336, 0.53333336), (0.083333336, 0.55), (0.075, 0.55), (0.075, 0.53333336), (0.075, 0.53333336), (0.075, 0.55), (0.06666667, 0.55), (0.06666667, 0.53333336), (0.06666667, 0.53333336), (0.06666667, 0.55), (0.058333334, 0.55), (0.058333334, 0.53333336), (0.058333334, 0.53333336), (0.058333334, 0.55), (0.05, 0.55), (0.05, 0.53333336), (0.05, 0.53333336), (0.05, 0.55), (0.041666668, 0.55), (0.041666668, 0.53333336), (0.041666668, 0.53333336), (0.041666668, 0.55), (0.033333335, 0.55), (0.033333335, 0.53333336), (0.033333335, 0.53333336), (0.033333335, 0.55), (0.025, 0.55), (0.025, 0.53333336), (0.025, 0.53333336), (0.025, 0.55), (0.016666668, 0.55), (0.016666668, 0.53333336), (0.016666668, 0.53333336), (0.016666668, 0.55), (0.008333334, 0.55), (0.008333334, 0.53333336), (0.008333334, 0.53333336), (0.008333334, 0.55), (0, 0.55), (0, 0.53333336), (1, 0.55), (1, 0.56666666), (0.9916667, 0.56666666), (0.9916667, 0.55), (0.9916667, 0.55), (0.9916667, 0.56666666), (0.98333335, 0.56666666), (0.98333335, 0.55), (0.98333335, 0.55), (0.98333335, 0.56666666), (0.975, 0.56666666), (0.975, 0.55), (0.975, 0.55), (0.975, 0.56666666), (0.96666664, 0.56666666), (0.96666664, 0.55), (0.96666664, 0.55), (0.96666664, 0.56666666), (0.9583333, 0.56666666), (0.9583333, 0.55), (0.9583333, 0.55), (0.9583333, 0.56666666), (0.95, 0.56666666), (0.95, 0.55), (0.95, 0.55), (0.95, 0.56666666), (0.94166666, 0.56666666), (0.94166666, 0.55), (0.94166666, 0.55), (0.94166666, 0.56666666), (0.93333334, 0.56666666), (0.93333334, 0.55), (0.93333334, 0.55), (0.93333334, 0.56666666), (0.925, 0.56666666), (0.925, 0.55), (0.925, 0.55), (0.925, 0.56666666), (0.9166667, 0.56666666), (0.9166667, 0.55), (0.9166667, 0.55), (0.9166667, 0.56666666), (0.90833336, 0.56666666), (0.90833336, 0.55), (0.90833336, 0.55), (0.90833336, 0.56666666), (0.9, 0.56666666), (0.9, 0.55), (0.9, 0.55), (0.9, 0.56666666), (0.89166665, 0.56666666), (0.89166665, 0.55), (0.89166665, 0.55), (0.89166665, 0.56666666), (0.8833333, 0.56666666), (0.8833333, 0.55), (0.8833333, 0.55), (0.8833333, 0.56666666), (0.875, 0.56666666), (0.875, 0.55), (0.875, 0.55), (0.875, 0.56666666), (0.8666667, 0.56666666), (0.8666667, 0.55), (0.8666667, 0.55), (0.8666667, 0.56666666), (0.85833335, 0.56666666), (0.85833335, 0.55), (0.85833335, 0.55), (0.85833335, 0.56666666), (0.85, 0.56666666), (0.85, 0.55), (0.85, 0.55), (0.85, 0.56666666), (0.84166664, 0.56666666), (0.84166664, 0.55), (0.84166664, 0.55), (0.84166664, 0.56666666), (0.8333333, 0.56666666), (0.8333333, 0.55), (0.8333333, 0.55), (0.8333333, 0.56666666), (0.825, 0.56666666), (0.825, 0.55), (0.825, 0.55), (0.825, 0.56666666), (0.81666666, 0.56666666), (0.81666666, 0.55), (0.81666666, 0.55), (0.81666666, 0.56666666), (0.80833334, 0.56666666), (0.80833334, 0.55), (0.80833334, 0.55), (0.80833334, 0.56666666), (0.8, 0.56666666), (0.8, 0.55), (0.8, 0.55), (0.8, 0.56666666), (0.7916667, 0.56666666), (0.7916667, 0.55), (0.7916667, 0.55), (0.7916667, 0.56666666), (0.78333336, 0.56666666), (0.78333336, 0.55), (0.78333336, 0.55), (0.78333336, 0.56666666), (0.775, 0.56666666), (0.775, 0.55), (0.775, 0.55), (0.775, 0.56666666), (0.76666665, 0.56666666), (0.76666665, 0.55), (0.76666665, 0.55), (0.76666665, 0.56666666), (0.7583333, 0.56666666), (0.7583333, 0.55), (0.7583333, 0.55), (0.7583333, 0.56666666), (0.75, 0.56666666), (0.75, 0.55), (0.75, 0.55), (0.75, 0.56666666), (0.7416667, 0.56666666), (0.7416667, 0.55), (0.7416667, 0.55), (0.7416667, 0.56666666), (0.73333335, 0.56666666), (0.73333335, 0.55), (0.73333335, 0.55), (0.73333335, 0.56666666), (0.725, 0.56666666), (0.725, 0.55), (0.725, 0.55), (0.725, 0.56666666), (0.71666664, 0.56666666), (0.71666664, 0.55), (0.71666664, 0.55), (0.71666664, 0.56666666), (0.7083333, 0.56666666), (0.7083333, 0.55), (0.7083333, 0.55), (0.7083333, 0.56666666), (0.7, 0.56666666), (0.7, 0.55), (0.7, 0.55), (0.7, 0.56666666), (0.69166666, 0.56666666), (0.69166666, 0.55), (0.69166666, 0.55), (0.69166666, 0.56666666), (0.68333334, 0.56666666), (0.68333334, 0.55), (0.68333334, 0.55), (0.68333334, 0.56666666), (0.675, 0.56666666), (0.675, 0.55), (0.675, 0.55), (0.675, 0.56666666), (0.6666667, 0.56666666), (0.6666667, 0.55), (0.6666667, 0.55), (0.6666667, 0.56666666), (0.65833336, 0.56666666), (0.65833336, 0.55), (0.65833336, 0.55), (0.65833336, 0.56666666), (0.65, 0.56666666), (0.65, 0.55), (0.65, 0.55), (0.65, 0.56666666), (0.64166665, 0.56666666), (0.64166665, 0.55), (0.64166665, 0.55), (0.64166665, 0.56666666), (0.6333333, 0.56666666), (0.6333333, 0.55), (0.6333333, 0.55), (0.6333333, 0.56666666), (0.625, 0.56666666), (0.625, 0.55), (0.625, 0.55), (0.625, 0.56666666), (0.6166667, 0.56666666), (0.6166667, 0.55), (0.6166667, 0.55), (0.6166667, 0.56666666), (0.60833335, 0.56666666), (0.60833335, 0.55), (0.60833335, 0.55), (0.60833335, 0.56666666), (0.6, 0.56666666), (0.6, 0.55), (0.6, 0.55), (0.6, 0.56666666), (0.59166664, 0.56666666), (0.59166664, 0.55), (0.59166664, 0.55), (0.59166664, 0.56666666), (0.5833333, 0.56666666), (0.5833333, 0.55), (0.5833333, 0.55), (0.5833333, 0.56666666), (0.575, 0.56666666), (0.575, 0.55), (0.575, 0.55), (0.575, 0.56666666), (0.56666666, 0.56666666), (0.56666666, 0.55), (0.56666666, 0.55), (0.56666666, 0.56666666), (0.55833334, 0.56666666), (0.55833334, 0.55), (0.55833334, 0.55), (0.55833334, 0.56666666), (0.55, 0.56666666), (0.55, 0.55), (0.55, 0.55), (0.55, 0.56666666), (0.5416667, 0.56666666), (0.5416667, 0.55), (0.5416667, 0.55), (0.5416667, 0.56666666), (0.53333336, 0.56666666), (0.53333336, 0.55), (0.53333336, 0.55), (0.53333336, 0.56666666), (0.525, 0.56666666), (0.525, 0.55), (0.525, 0.55), (0.525, 0.56666666), (0.51666665, 0.56666666), (0.51666665, 0.55), (0.51666665, 0.55), (0.51666665, 0.56666666), (0.5083333, 0.56666666), (0.5083333, 0.55), (0.5083333, 0.55), (0.5083333, 0.56666666), (0.5, 0.56666666), (0.5, 0.55), (0.5, 0.55), (0.5, 0.56666666), (0.49166667, 0.56666666), (0.49166667, 0.55), (0.49166667, 0.55), (0.49166667, 0.56666666), (0.48333332, 0.56666666), (0.48333332, 0.55), (0.48333332, 0.55), (0.48333332, 0.56666666), (0.475, 0.56666666), (0.475, 0.55), (0.475, 0.55), (0.475, 0.56666666), (0.46666667, 0.56666666), (0.46666667, 0.55), (0.46666667, 0.55), (0.46666667, 0.56666666), (0.45833334, 0.56666666), (0.45833334, 0.55), (0.45833334, 0.55), (0.45833334, 0.56666666), (0.45, 0.56666666), (0.45, 0.55), (0.45, 0.55), (0.45, 0.56666666), (0.44166666, 0.56666666), (0.44166666, 0.55), (0.44166666, 0.55), (0.44166666, 0.56666666), (0.43333334, 0.56666666), (0.43333334, 0.55), (0.43333334, 0.55), (0.43333334, 0.56666666), (0.425, 0.56666666), (0.425, 0.55), (0.425, 0.55), (0.425, 0.56666666), (0.41666666, 0.56666666), (0.41666666, 0.55), (0.41666666, 0.55), (0.41666666, 0.56666666), (0.40833333, 0.56666666), (0.40833333, 0.55), (0.40833333, 0.55), (0.40833333, 0.56666666), (0.4, 0.56666666), (0.4, 0.55), (0.4, 0.55), (0.4, 0.56666666), (0.39166668, 0.56666666), (0.39166668, 0.55), (0.39166668, 0.55), (0.39166668, 0.56666666), (0.38333333, 0.56666666), (0.38333333, 0.55), (0.38333333, 0.55), (0.38333333, 0.56666666), (0.375, 0.56666666), (0.375, 0.55), (0.375, 0.55), (0.375, 0.56666666), (0.36666667, 0.56666666), (0.36666667, 0.55), (0.36666667, 0.55), (0.36666667, 0.56666666), (0.35833332, 0.56666666), (0.35833332, 0.55), (0.35833332, 0.55), (0.35833332, 0.56666666), (0.35, 0.56666666), (0.35, 0.55), (0.35, 0.55), (0.35, 0.56666666), (0.34166667, 0.56666666), (0.34166667, 0.55), (0.34166667, 0.55), (0.34166667, 0.56666666), (0.33333334, 0.56666666), (0.33333334, 0.55), (0.33333334, 0.55), (0.33333334, 0.56666666), (0.325, 0.56666666), (0.325, 0.55), (0.325, 0.55), (0.325, 0.56666666), (0.31666666, 0.56666666), (0.31666666, 0.55), (0.31666666, 0.55), (0.31666666, 0.56666666), (0.30833334, 0.56666666), (0.30833334, 0.55), (0.30833334, 0.55), (0.30833334, 0.56666666), (0.3, 0.56666666), (0.3, 0.55), (0.3, 0.55), (0.3, 0.56666666), (0.29166666, 0.56666666), (0.29166666, 0.55), (0.29166666, 0.55), (0.29166666, 0.56666666), (0.28333333, 0.56666666), (0.28333333, 0.55), (0.28333333, 0.55), (0.28333333, 0.56666666), (0.275, 0.56666666), (0.275, 0.55), (0.275, 0.55), (0.275, 0.56666666), (0.26666668, 0.56666666), (0.26666668, 0.55), (0.26666668, 0.55), (0.26666668, 0.56666666), (0.25833333, 0.56666666), (0.25833333, 0.55), (0.25833333, 0.55), (0.25833333, 0.56666666), (0.25, 0.56666666), (0.25, 0.55), (0.25, 0.55), (0.25, 0.56666666), (0.24166666, 0.56666666), (0.24166666, 0.55), (0.24166666, 0.55), (0.24166666, 0.56666666), (0.23333333, 0.56666666), (0.23333333, 0.55), (0.23333333, 0.55), (0.23333333, 0.56666666), (0.225, 0.56666666), (0.225, 0.55), (0.225, 0.55), (0.225, 0.56666666), (0.21666667, 0.56666666), (0.21666667, 0.55), (0.21666667, 0.55), (0.21666667, 0.56666666), (0.20833333, 0.56666666), (0.20833333, 0.55), (0.20833333, 0.55), (0.20833333, 0.56666666), (0.2, 0.56666666), (0.2, 0.55), (0.2, 0.55), (0.2, 0.56666666), (0.19166666, 0.56666666), (0.19166666, 0.55), (0.19166666, 0.55), (0.19166666, 0.56666666), (0.18333334, 0.56666666), (0.18333334, 0.55), (0.18333334, 0.55), (0.18333334, 0.56666666), (0.175, 0.56666666), (0.175, 0.55), (0.175, 0.55), (0.175, 0.56666666), (0.16666667, 0.56666666), (0.16666667, 0.55), (0.16666667, 0.55), (0.16666667, 0.56666666), (0.15833333, 0.56666666), (0.15833333, 0.55), (0.15833333, 0.55), (0.15833333, 0.56666666), (0.15, 0.56666666), (0.15, 0.55), (0.15, 0.55), (0.15, 0.56666666), (0.14166667, 0.56666666), (0.14166667, 0.55), (0.14166667, 0.55), (0.14166667, 0.56666666), (0.13333334, 0.56666666), (0.13333334, 0.55), (0.13333334, 0.55), (0.13333334, 0.56666666), (0.125, 0.56666666), (0.125, 0.55), (0.125, 0.55), (0.125, 0.56666666), (0.11666667, 0.56666666), (0.11666667, 0.55), (0.11666667, 0.55), (0.11666667, 0.56666666), (0.108333334, 0.56666666), (0.108333334, 0.55), (0.108333334, 0.55), (0.108333334, 0.56666666), (0.1, 0.56666666), (0.1, 0.55), (0.1, 0.55), (0.1, 0.56666666), (0.09166667, 0.56666666), (0.09166667, 0.55), (0.09166667, 0.55), (0.09166667, 0.56666666), (0.083333336, 0.56666666), (0.083333336, 0.55), (0.083333336, 0.55), (0.083333336, 0.56666666), (0.075, 0.56666666), (0.075, 0.55), (0.075, 0.55), (0.075, 0.56666666), (0.06666667, 0.56666666), (0.06666667, 0.55), (0.06666667, 0.55), (0.06666667, 0.56666666), (0.058333334, 0.56666666), (0.058333334, 0.55), (0.058333334, 0.55), (0.058333334, 0.56666666), (0.05, 0.56666666), (0.05, 0.55), (0.05, 0.55), (0.05, 0.56666666), (0.041666668, 0.56666666), (0.041666668, 0.55), (0.041666668, 0.55), (0.041666668, 0.56666666), (0.033333335, 0.56666666), (0.033333335, 0.55), (0.033333335, 0.55), (0.033333335, 0.56666666), (0.025, 0.56666666), (0.025, 0.55), (0.025, 0.55), (0.025, 0.56666666), (0.016666668, 0.56666666), (0.016666668, 0.55), (0.016666668, 0.55), (0.016666668, 0.56666666), (0.008333334, 0.56666666), (0.008333334, 0.55), (0.008333334, 0.55), (0.008333334, 0.56666666), (0, 0.56666666), (0, 0.55), (1, 0.56666666), (1, 0.5833333), (0.9916667, 0.5833333), (0.9916667, 0.56666666), (0.9916667, 0.56666666), (0.9916667, 0.5833333), (0.98333335, 0.5833333), (0.98333335, 0.56666666), (0.98333335, 0.56666666), (0.98333335, 0.5833333), (0.975, 0.5833333), (0.975, 0.56666666), (0.975, 0.56666666), (0.975, 0.5833333), (0.96666664, 0.5833333), (0.96666664, 0.56666666), (0.96666664, 0.56666666), (0.96666664, 0.5833333), (0.9583333, 0.5833333), (0.9583333, 0.56666666), (0.9583333, 0.56666666), (0.9583333, 0.5833333), (0.95, 0.5833333), (0.95, 0.56666666), (0.95, 0.56666666), (0.95, 0.5833333), (0.94166666, 0.5833333), (0.94166666, 0.56666666), (0.94166666, 0.56666666), (0.94166666, 0.5833333), (0.93333334, 0.5833333), (0.93333334, 0.56666666), (0.93333334, 0.56666666), (0.93333334, 0.5833333), (0.925, 0.5833333), (0.925, 0.56666666), (0.925, 0.56666666), (0.925, 0.5833333), (0.9166667, 0.5833333), (0.9166667, 0.56666666), (0.9166667, 0.56666666), (0.9166667, 0.5833333), (0.90833336, 0.5833333), (0.90833336, 0.56666666), (0.90833336, 0.56666666), (0.90833336, 0.5833333), (0.9, 0.5833333), (0.9, 0.56666666), (0.9, 0.56666666), (0.9, 0.5833333), (0.89166665, 0.5833333), (0.89166665, 0.56666666), (0.89166665, 0.56666666), (0.89166665, 0.5833333), (0.8833333, 0.5833333), (0.8833333, 0.56666666), (0.8833333, 0.56666666), (0.8833333, 0.5833333), (0.875, 0.5833333), (0.875, 0.56666666), (0.875, 0.56666666), (0.875, 0.5833333), (0.8666667, 0.5833333), (0.8666667, 0.56666666), (0.8666667, 0.56666666), (0.8666667, 0.5833333), (0.85833335, 0.5833333), (0.85833335, 0.56666666), (0.85833335, 0.56666666), (0.85833335, 0.5833333), (0.85, 0.5833333), (0.85, 0.56666666), (0.85, 0.56666666), (0.85, 0.5833333), (0.84166664, 0.5833333), (0.84166664, 0.56666666), (0.84166664, 0.56666666), (0.84166664, 0.5833333), (0.8333333, 0.5833333), (0.8333333, 0.56666666), (0.8333333, 0.56666666), (0.8333333, 0.5833333), (0.825, 0.5833333), (0.825, 0.56666666), (0.825, 0.56666666), (0.825, 0.5833333), (0.81666666, 0.5833333), (0.81666666, 0.56666666), (0.81666666, 0.56666666), (0.81666666, 0.5833333), (0.80833334, 0.5833333), (0.80833334, 0.56666666), (0.80833334, 0.56666666), (0.80833334, 0.5833333), (0.8, 0.5833333), (0.8, 0.56666666), (0.8, 0.56666666), (0.8, 0.5833333), (0.7916667, 0.5833333), (0.7916667, 0.56666666), (0.7916667, 0.56666666), (0.7916667, 0.5833333), (0.78333336, 0.5833333), (0.78333336, 0.56666666), (0.78333336, 0.56666666), (0.78333336, 0.5833333), (0.775, 0.5833333), (0.775, 0.56666666), (0.775, 0.56666666), (0.775, 0.5833333), (0.76666665, 0.5833333), (0.76666665, 0.56666666), (0.76666665, 0.56666666), (0.76666665, 0.5833333), (0.7583333, 0.5833333), (0.7583333, 0.56666666), (0.7583333, 0.56666666), (0.7583333, 0.5833333), (0.75, 0.5833333), (0.75, 0.56666666), (0.75, 0.56666666), (0.75, 0.5833333), (0.7416667, 0.5833333), (0.7416667, 0.56666666), (0.7416667, 0.56666666), (0.7416667, 0.5833333), (0.73333335, 0.5833333), (0.73333335, 0.56666666), (0.73333335, 0.56666666), (0.73333335, 0.5833333), (0.725, 0.5833333), (0.725, 0.56666666), (0.725, 0.56666666), (0.725, 0.5833333), (0.71666664, 0.5833333), (0.71666664, 0.56666666), (0.71666664, 0.56666666), (0.71666664, 0.5833333), (0.7083333, 0.5833333), (0.7083333, 0.56666666), (0.7083333, 0.56666666), (0.7083333, 0.5833333), (0.7, 0.5833333), (0.7, 0.56666666), (0.7, 0.56666666), (0.7, 0.5833333), (0.69166666, 0.5833333), (0.69166666, 0.56666666), (0.69166666, 0.56666666), (0.69166666, 0.5833333), (0.68333334, 0.5833333), (0.68333334, 0.56666666), (0.68333334, 0.56666666), (0.68333334, 0.5833333), (0.675, 0.5833333), (0.675, 0.56666666), (0.675, 0.56666666), (0.675, 0.5833333), (0.6666667, 0.5833333), (0.6666667, 0.56666666), (0.6666667, 0.56666666), (0.6666667, 0.5833333), (0.65833336, 0.5833333), (0.65833336, 0.56666666), (0.65833336, 0.56666666), (0.65833336, 0.5833333), (0.65, 0.5833333), (0.65, 0.56666666), (0.65, 0.56666666), (0.65, 0.5833333), (0.64166665, 0.5833333), (0.64166665, 0.56666666), (0.64166665, 0.56666666), (0.64166665, 0.5833333), (0.6333333, 0.5833333), (0.6333333, 0.56666666), (0.6333333, 0.56666666), (0.6333333, 0.5833333), (0.625, 0.5833333), (0.625, 0.56666666), (0.625, 0.56666666), (0.625, 0.5833333), (0.6166667, 0.5833333), (0.6166667, 0.56666666), (0.6166667, 0.56666666), (0.6166667, 0.5833333), (0.60833335, 0.5833333), (0.60833335, 0.56666666), (0.60833335, 0.56666666), (0.60833335, 0.5833333), (0.6, 0.5833333), (0.6, 0.56666666), (0.6, 0.56666666), (0.6, 0.5833333), (0.59166664, 0.5833333), (0.59166664, 0.56666666), (0.59166664, 0.56666666), (0.59166664, 0.5833333), (0.5833333, 0.5833333), (0.5833333, 0.56666666), (0.5833333, 0.56666666), (0.5833333, 0.5833333), (0.575, 0.5833333), (0.575, 0.56666666), (0.575, 0.56666666), (0.575, 0.5833333), (0.56666666, 0.5833333), (0.56666666, 0.56666666), (0.56666666, 0.56666666), (0.56666666, 0.5833333), (0.55833334, 0.5833333), (0.55833334, 0.56666666), (0.55833334, 0.56666666), (0.55833334, 0.5833333), (0.55, 0.5833333), (0.55, 0.56666666), (0.55, 0.56666666), (0.55, 0.5833333), (0.5416667, 0.5833333), (0.5416667, 0.56666666), (0.5416667, 0.56666666), (0.5416667, 0.5833333), (0.53333336, 0.5833333), (0.53333336, 0.56666666), (0.53333336, 0.56666666), (0.53333336, 0.5833333), (0.525, 0.5833333), (0.525, 0.56666666), (0.525, 0.56666666), (0.525, 0.5833333), (0.51666665, 0.5833333), (0.51666665, 0.56666666), (0.51666665, 0.56666666), (0.51666665, 0.5833333), (0.5083333, 0.5833333), (0.5083333, 0.56666666), (0.5083333, 0.56666666), (0.5083333, 0.5833333), (0.5, 0.5833333), (0.5, 0.56666666), (0.5, 0.56666666), (0.5, 0.5833333), (0.49166667, 0.5833333), (0.49166667, 0.56666666), (0.49166667, 0.56666666), (0.49166667, 0.5833333), (0.48333332, 0.5833333), (0.48333332, 0.56666666), (0.48333332, 0.56666666), (0.48333332, 0.5833333), (0.475, 0.5833333), (0.475, 0.56666666), (0.475, 0.56666666), (0.475, 0.5833333), (0.46666667, 0.5833333), (0.46666667, 0.56666666), (0.46666667, 0.56666666), (0.46666667, 0.5833333), (0.45833334, 0.5833333), (0.45833334, 0.56666666), (0.45833334, 0.56666666), (0.45833334, 0.5833333), (0.45, 0.5833333), (0.45, 0.56666666), (0.45, 0.56666666), (0.45, 0.5833333), (0.44166666, 0.5833333), (0.44166666, 0.56666666), (0.44166666, 0.56666666), (0.44166666, 0.5833333), (0.43333334, 0.5833333), (0.43333334, 0.56666666), (0.43333334, 0.56666666), (0.43333334, 0.5833333), (0.425, 0.5833333), (0.425, 0.56666666), (0.425, 0.56666666), (0.425, 0.5833333), (0.41666666, 0.5833333), (0.41666666, 0.56666666), (0.41666666, 0.56666666), (0.41666666, 0.5833333), (0.40833333, 0.5833333), (0.40833333, 0.56666666), (0.40833333, 0.56666666), (0.40833333, 0.5833333), (0.4, 0.5833333), (0.4, 0.56666666), (0.4, 0.56666666), (0.4, 0.5833333), (0.39166668, 0.5833333), (0.39166668, 0.56666666), (0.39166668, 0.56666666), (0.39166668, 0.5833333), (0.38333333, 0.5833333), (0.38333333, 0.56666666), (0.38333333, 0.56666666), (0.38333333, 0.5833333), (0.375, 0.5833333), (0.375, 0.56666666), (0.375, 0.56666666), (0.375, 0.5833333), (0.36666667, 0.5833333), (0.36666667, 0.56666666), (0.36666667, 0.56666666), (0.36666667, 0.5833333), (0.35833332, 0.5833333), (0.35833332, 0.56666666), (0.35833332, 0.56666666), (0.35833332, 0.5833333), (0.35, 0.5833333), (0.35, 0.56666666), (0.35, 0.56666666), (0.35, 0.5833333), (0.34166667, 0.5833333), (0.34166667, 0.56666666), (0.34166667, 0.56666666), (0.34166667, 0.5833333), (0.33333334, 0.5833333), (0.33333334, 0.56666666), (0.33333334, 0.56666666), (0.33333334, 0.5833333), (0.325, 0.5833333), (0.325, 0.56666666), (0.325, 0.56666666), (0.325, 0.5833333), (0.31666666, 0.5833333), (0.31666666, 0.56666666), (0.31666666, 0.56666666), (0.31666666, 0.5833333), (0.30833334, 0.5833333), (0.30833334, 0.56666666), (0.30833334, 0.56666666), (0.30833334, 0.5833333), (0.3, 0.5833333), (0.3, 0.56666666), (0.3, 0.56666666), (0.3, 0.5833333), (0.29166666, 0.5833333), (0.29166666, 0.56666666), (0.29166666, 0.56666666), (0.29166666, 0.5833333), (0.28333333, 0.5833333), (0.28333333, 0.56666666), (0.28333333, 0.56666666), (0.28333333, 0.5833333), (0.275, 0.5833333), (0.275, 0.56666666), (0.275, 0.56666666), (0.275, 0.5833333), (0.26666668, 0.5833333), (0.26666668, 0.56666666), (0.26666668, 0.56666666), (0.26666668, 0.5833333), (0.25833333, 0.5833333), (0.25833333, 0.56666666), (0.25833333, 0.56666666), (0.25833333, 0.5833333), (0.25, 0.5833333), (0.25, 0.56666666), (0.25, 0.56666666), (0.25, 0.5833333), (0.24166666, 0.5833333), (0.24166666, 0.56666666), (0.24166666, 0.56666666), (0.24166666, 0.5833333), (0.23333333, 0.5833333), (0.23333333, 0.56666666), (0.23333333, 0.56666666), (0.23333333, 0.5833333), (0.225, 0.5833333), (0.225, 0.56666666), (0.225, 0.56666666), (0.225, 0.5833333), (0.21666667, 0.5833333), (0.21666667, 0.56666666), (0.21666667, 0.56666666), (0.21666667, 0.5833333), (0.20833333, 0.5833333), (0.20833333, 0.56666666), (0.20833333, 0.56666666), (0.20833333, 0.5833333), (0.2, 0.5833333), (0.2, 0.56666666), (0.2, 0.56666666), (0.2, 0.5833333), (0.19166666, 0.5833333), (0.19166666, 0.56666666), (0.19166666, 0.56666666), (0.19166666, 0.5833333), (0.18333334, 0.5833333), (0.18333334, 0.56666666), (0.18333334, 0.56666666), (0.18333334, 0.5833333), (0.175, 0.5833333), (0.175, 0.56666666), (0.175, 0.56666666), (0.175, 0.5833333), (0.16666667, 0.5833333), (0.16666667, 0.56666666), (0.16666667, 0.56666666), (0.16666667, 0.5833333), (0.15833333, 0.5833333), (0.15833333, 0.56666666), (0.15833333, 0.56666666), (0.15833333, 0.5833333), (0.15, 0.5833333), (0.15, 0.56666666), (0.15, 0.56666666), (0.15, 0.5833333), (0.14166667, 0.5833333), (0.14166667, 0.56666666), (0.14166667, 0.56666666), (0.14166667, 0.5833333), (0.13333334, 0.5833333), (0.13333334, 0.56666666), (0.13333334, 0.56666666), (0.13333334, 0.5833333), (0.125, 0.5833333), (0.125, 0.56666666), (0.125, 0.56666666), (0.125, 0.5833333), (0.11666667, 0.5833333), (0.11666667, 0.56666666), (0.11666667, 0.56666666), (0.11666667, 0.5833333), (0.108333334, 0.5833333), (0.108333334, 0.56666666), (0.108333334, 0.56666666), (0.108333334, 0.5833333), (0.1, 0.5833333), (0.1, 0.56666666), (0.1, 0.56666666), (0.1, 0.5833333), (0.09166667, 0.5833333), (0.09166667, 0.56666666), (0.09166667, 0.56666666), (0.09166667, 0.5833333), (0.083333336, 0.5833333), (0.083333336, 0.56666666), (0.083333336, 0.56666666), (0.083333336, 0.5833333), (0.075, 0.5833333), (0.075, 0.56666666), (0.075, 0.56666666), (0.075, 0.5833333), (0.06666667, 0.5833333), (0.06666667, 0.56666666), (0.06666667, 0.56666666), (0.06666667, 0.5833333), (0.058333334, 0.5833333), (0.058333334, 0.56666666), (0.058333334, 0.56666666), (0.058333334, 0.5833333), (0.05, 0.5833333), (0.05, 0.56666666), (0.05, 0.56666666), (0.05, 0.5833333), (0.041666668, 0.5833333), (0.041666668, 0.56666666), (0.041666668, 0.56666666), (0.041666668, 0.5833333), (0.033333335, 0.5833333), (0.033333335, 0.56666666), (0.033333335, 0.56666666), (0.033333335, 0.5833333), (0.025, 0.5833333), (0.025, 0.56666666), (0.025, 0.56666666), (0.025, 0.5833333), (0.016666668, 0.5833333), (0.016666668, 0.56666666), (0.016666668, 0.56666666), (0.016666668, 0.5833333), (0.008333334, 0.5833333), (0.008333334, 0.56666666), (0.008333334, 0.56666666), (0.008333334, 0.5833333), (0, 0.5833333), (0, 0.56666666), (1, 0.5833333), (1, 0.6), (0.9916667, 0.6), (0.9916667, 0.5833333), (0.9916667, 0.5833333), (0.9916667, 0.6), (0.98333335, 0.6), (0.98333335, 0.5833333), (0.98333335, 0.5833333), (0.98333335, 0.6), (0.975, 0.6), (0.975, 0.5833333), (0.975, 0.5833333), (0.975, 0.6), (0.96666664, 0.6), (0.96666664, 0.5833333), (0.96666664, 0.5833333), (0.96666664, 0.6), (0.9583333, 0.6), (0.9583333, 0.5833333), (0.9583333, 0.5833333), (0.9583333, 0.6), (0.95, 0.6), (0.95, 0.5833333), (0.95, 0.5833333), (0.95, 0.6), (0.94166666, 0.6), (0.94166666, 0.5833333), (0.94166666, 0.5833333), (0.94166666, 0.6), (0.93333334, 0.6), (0.93333334, 0.5833333), (0.93333334, 0.5833333), (0.93333334, 0.6), (0.925, 0.6), (0.925, 0.5833333), (0.925, 0.5833333), (0.925, 0.6), (0.9166667, 0.6), (0.9166667, 0.5833333), (0.9166667, 0.5833333), (0.9166667, 0.6), (0.90833336, 0.6), (0.90833336, 0.5833333), (0.90833336, 0.5833333), (0.90833336, 0.6), (0.9, 0.6), (0.9, 0.5833333), (0.9, 0.5833333), (0.9, 0.6), (0.89166665, 0.6), (0.89166665, 0.5833333), (0.89166665, 0.5833333), (0.89166665, 0.6), (0.8833333, 0.6), (0.8833333, 0.5833333), (0.8833333, 0.5833333), (0.8833333, 0.6), (0.875, 0.6), (0.875, 0.5833333), (0.875, 0.5833333), (0.875, 0.6), (0.8666667, 0.6), (0.8666667, 0.5833333), (0.8666667, 0.5833333), (0.8666667, 0.6), (0.85833335, 0.6), (0.85833335, 0.5833333), (0.85833335, 0.5833333), (0.85833335, 0.6), (0.85, 0.6), (0.85, 0.5833333), (0.85, 0.5833333), (0.85, 0.6), (0.84166664, 0.6), (0.84166664, 0.5833333), (0.84166664, 0.5833333), (0.84166664, 0.6), (0.8333333, 0.6), (0.8333333, 0.5833333), (0.8333333, 0.5833333), (0.8333333, 0.6), (0.825, 0.6), (0.825, 0.5833333), (0.825, 0.5833333), (0.825, 0.6), (0.81666666, 0.6), (0.81666666, 0.5833333), (0.81666666, 0.5833333), (0.81666666, 0.6), (0.80833334, 0.6), (0.80833334, 0.5833333), (0.80833334, 0.5833333), (0.80833334, 0.6), (0.8, 0.6), (0.8, 0.5833333), (0.8, 0.5833333), (0.8, 0.6), (0.7916667, 0.6), (0.7916667, 0.5833333), (0.7916667, 0.5833333), (0.7916667, 0.6), (0.78333336, 0.6), (0.78333336, 0.5833333), (0.78333336, 0.5833333), (0.78333336, 0.6), (0.775, 0.6), (0.775, 0.5833333), (0.775, 0.5833333), (0.775, 0.6), (0.76666665, 0.6), (0.76666665, 0.5833333), (0.76666665, 0.5833333), (0.76666665, 0.6), (0.7583333, 0.6), (0.7583333, 0.5833333), (0.7583333, 0.5833333), (0.7583333, 0.6), (0.75, 0.6), (0.75, 0.5833333), (0.75, 0.5833333), (0.75, 0.6), (0.7416667, 0.6), (0.7416667, 0.5833333), (0.7416667, 0.5833333), (0.7416667, 0.6), (0.73333335, 0.6), (0.73333335, 0.5833333), (0.73333335, 0.5833333), (0.73333335, 0.6), (0.725, 0.6), (0.725, 0.5833333), (0.725, 0.5833333), (0.725, 0.6), (0.71666664, 0.6), (0.71666664, 0.5833333), (0.71666664, 0.5833333), (0.71666664, 0.6), (0.7083333, 0.6), (0.7083333, 0.5833333), (0.7083333, 0.5833333), (0.7083333, 0.6), (0.7, 0.6), (0.7, 0.5833333), (0.7, 0.5833333), (0.7, 0.6), (0.69166666, 0.6), (0.69166666, 0.5833333), (0.69166666, 0.5833333), (0.69166666, 0.6), (0.68333334, 0.6), (0.68333334, 0.5833333), (0.68333334, 0.5833333), (0.68333334, 0.6), (0.675, 0.6), (0.675, 0.5833333), (0.675, 0.5833333), (0.675, 0.6), (0.6666667, 0.6), (0.6666667, 0.5833333), (0.6666667, 0.5833333), (0.6666667, 0.6), (0.65833336, 0.6), (0.65833336, 0.5833333), (0.65833336, 0.5833333), (0.65833336, 0.6), (0.65, 0.6), (0.65, 0.5833333), (0.65, 0.5833333), (0.65, 0.6), (0.64166665, 0.6), (0.64166665, 0.5833333), (0.64166665, 0.5833333), (0.64166665, 0.6), (0.6333333, 0.6), (0.6333333, 0.5833333), (0.6333333, 0.5833333), (0.6333333, 0.6), (0.625, 0.6), (0.625, 0.5833333), (0.625, 0.5833333), (0.625, 0.6), (0.6166667, 0.6), (0.6166667, 0.5833333), (0.6166667, 0.5833333), (0.6166667, 0.6), (0.60833335, 0.6), (0.60833335, 0.5833333), (0.60833335, 0.5833333), (0.60833335, 0.6), (0.6, 0.6), (0.6, 0.5833333), (0.6, 0.5833333), (0.6, 0.6), (0.59166664, 0.6), (0.59166664, 0.5833333), (0.59166664, 0.5833333), (0.59166664, 0.6), (0.5833333, 0.6), (0.5833333, 0.5833333), (0.5833333, 0.5833333), (0.5833333, 0.6), (0.575, 0.6), (0.575, 0.5833333), (0.575, 0.5833333), (0.575, 0.6), (0.56666666, 0.6), (0.56666666, 0.5833333), (0.56666666, 0.5833333), (0.56666666, 0.6), (0.55833334, 0.6), (0.55833334, 0.5833333), (0.55833334, 0.5833333), (0.55833334, 0.6), (0.55, 0.6), (0.55, 0.5833333), (0.55, 0.5833333), (0.55, 0.6), (0.5416667, 0.6), (0.5416667, 0.5833333), (0.5416667, 0.5833333), (0.5416667, 0.6), (0.53333336, 0.6), (0.53333336, 0.5833333), (0.53333336, 0.5833333), (0.53333336, 0.6), (0.525, 0.6), (0.525, 0.5833333), (0.525, 0.5833333), (0.525, 0.6), (0.51666665, 0.6), (0.51666665, 0.5833333), (0.51666665, 0.5833333), (0.51666665, 0.6), (0.5083333, 0.6), (0.5083333, 0.5833333), (0.5083333, 0.5833333), (0.5083333, 0.6), (0.5, 0.6), (0.5, 0.5833333), (0.5, 0.5833333), (0.5, 0.6), (0.49166667, 0.6), (0.49166667, 0.5833333), (0.49166667, 0.5833333), (0.49166667, 0.6), (0.48333332, 0.6), (0.48333332, 0.5833333), (0.48333332, 0.5833333), (0.48333332, 0.6), (0.475, 0.6), (0.475, 0.5833333), (0.475, 0.5833333), (0.475, 0.6), (0.46666667, 0.6), (0.46666667, 0.5833333), (0.46666667, 0.5833333), (0.46666667, 0.6), (0.45833334, 0.6), (0.45833334, 0.5833333), (0.45833334, 0.5833333), (0.45833334, 0.6), (0.45, 0.6), (0.45, 0.5833333), (0.45, 0.5833333), (0.45, 0.6), (0.44166666, 0.6), (0.44166666, 0.5833333), (0.44166666, 0.5833333), (0.44166666, 0.6), (0.43333334, 0.6), (0.43333334, 0.5833333), (0.43333334, 0.5833333), (0.43333334, 0.6), (0.425, 0.6), (0.425, 0.5833333), (0.425, 0.5833333), (0.425, 0.6), (0.41666666, 0.6), (0.41666666, 0.5833333), (0.41666666, 0.5833333), (0.41666666, 0.6), (0.40833333, 0.6), (0.40833333, 0.5833333), (0.40833333, 0.5833333), (0.40833333, 0.6), (0.4, 0.6), (0.4, 0.5833333), (0.4, 0.5833333), (0.4, 0.6), (0.39166668, 0.6), (0.39166668, 0.5833333), (0.39166668, 0.5833333), (0.39166668, 0.6), (0.38333333, 0.6), (0.38333333, 0.5833333), (0.38333333, 0.5833333), (0.38333333, 0.6), (0.375, 0.6), (0.375, 0.5833333), (0.375, 0.5833333), (0.375, 0.6), (0.36666667, 0.6), (0.36666667, 0.5833333), (0.36666667, 0.5833333), (0.36666667, 0.6), (0.35833332, 0.6), (0.35833332, 0.5833333), (0.35833332, 0.5833333), (0.35833332, 0.6), (0.35, 0.6), (0.35, 0.5833333), (0.35, 0.5833333), (0.35, 0.6), (0.34166667, 0.6), (0.34166667, 0.5833333), (0.34166667, 0.5833333), (0.34166667, 0.6), (0.33333334, 0.6), (0.33333334, 0.5833333), (0.33333334, 0.5833333), (0.33333334, 0.6), (0.325, 0.6), (0.325, 0.5833333), (0.325, 0.5833333), (0.325, 0.6), (0.31666666, 0.6), (0.31666666, 0.5833333), (0.31666666, 0.5833333), (0.31666666, 0.6), (0.30833334, 0.6), (0.30833334, 0.5833333), (0.30833334, 0.5833333), (0.30833334, 0.6), (0.3, 0.6), (0.3, 0.5833333), (0.3, 0.5833333), (0.3, 0.6), (0.29166666, 0.6), (0.29166666, 0.5833333), (0.29166666, 0.5833333), (0.29166666, 0.6), (0.28333333, 0.6), (0.28333333, 0.5833333), (0.28333333, 0.5833333), (0.28333333, 0.6), (0.275, 0.6), (0.275, 0.5833333), (0.275, 0.5833333), (0.275, 0.6), (0.26666668, 0.6), (0.26666668, 0.5833333), (0.26666668, 0.5833333), (0.26666668, 0.6), (0.25833333, 0.6), (0.25833333, 0.5833333), (0.25833333, 0.5833333), (0.25833333, 0.6), (0.25, 0.6), (0.25, 0.5833333), (0.25, 0.5833333), (0.25, 0.6), (0.24166666, 0.6), (0.24166666, 0.5833333), (0.24166666, 0.5833333), (0.24166666, 0.6), (0.23333333, 0.6), (0.23333333, 0.5833333), (0.23333333, 0.5833333), (0.23333333, 0.6), (0.225, 0.6), (0.225, 0.5833333), (0.225, 0.5833333), (0.225, 0.6), (0.21666667, 0.6), (0.21666667, 0.5833333), (0.21666667, 0.5833333), (0.21666667, 0.6), (0.20833333, 0.6), (0.20833333, 0.5833333), (0.20833333, 0.5833333), (0.20833333, 0.6), (0.2, 0.6), (0.2, 0.5833333), (0.2, 0.5833333), (0.2, 0.6), (0.19166666, 0.6), (0.19166666, 0.5833333), (0.19166666, 0.5833333), (0.19166666, 0.6), (0.18333334, 0.6), (0.18333334, 0.5833333), (0.18333334, 0.5833333), (0.18333334, 0.6), (0.175, 0.6), (0.175, 0.5833333), (0.175, 0.5833333), (0.175, 0.6), (0.16666667, 0.6), (0.16666667, 0.5833333), (0.16666667, 0.5833333), (0.16666667, 0.6), (0.15833333, 0.6), (0.15833333, 0.5833333), (0.15833333, 0.5833333), (0.15833333, 0.6), (0.15, 0.6), (0.15, 0.5833333), (0.15, 0.5833333), (0.15, 0.6), (0.14166667, 0.6), (0.14166667, 0.5833333), (0.14166667, 0.5833333), (0.14166667, 0.6), (0.13333334, 0.6), (0.13333334, 0.5833333), (0.13333334, 0.5833333), (0.13333334, 0.6), (0.125, 0.6), (0.125, 0.5833333), (0.125, 0.5833333), (0.125, 0.6), (0.11666667, 0.6), (0.11666667, 0.5833333), (0.11666667, 0.5833333), (0.11666667, 0.6), (0.108333334, 0.6), (0.108333334, 0.5833333), (0.108333334, 0.5833333), (0.108333334, 0.6), (0.1, 0.6), (0.1, 0.5833333), (0.1, 0.5833333), (0.1, 0.6), (0.09166667, 0.6), (0.09166667, 0.5833333), (0.09166667, 0.5833333), (0.09166667, 0.6), (0.083333336, 0.6), (0.083333336, 0.5833333), (0.083333336, 0.5833333), (0.083333336, 0.6), (0.075, 0.6), (0.075, 0.5833333), (0.075, 0.5833333), (0.075, 0.6), (0.06666667, 0.6), (0.06666667, 0.5833333), (0.06666667, 0.5833333), (0.06666667, 0.6), (0.058333334, 0.6), (0.058333334, 0.5833333), (0.058333334, 0.5833333), (0.058333334, 0.6), (0.05, 0.6), (0.05, 0.5833333), (0.05, 0.5833333), (0.05, 0.6), (0.041666668, 0.6), (0.041666668, 0.5833333), (0.041666668, 0.5833333), (0.041666668, 0.6), (0.033333335, 0.6), (0.033333335, 0.5833333), (0.033333335, 0.5833333), (0.033333335, 0.6), (0.025, 0.6), (0.025, 0.5833333), (0.025, 0.5833333), (0.025, 0.6), (0.016666668, 0.6), (0.016666668, 0.5833333), (0.016666668, 0.5833333), (0.016666668, 0.6), (0.008333334, 0.6), (0.008333334, 0.5833333), (0.008333334, 0.5833333), (0.008333334, 0.6), (0, 0.6), (0, 0.5833333), (1, 0.6), (1, 0.6166667), (0.9916667, 0.6166667), (0.9916667, 0.6), (0.9916667, 0.6), (0.9916667, 0.6166667), (0.98333335, 0.6166667), (0.98333335, 0.6), (0.98333335, 0.6), (0.98333335, 0.6166667), (0.975, 0.6166667), (0.975, 0.6), (0.975, 0.6), (0.975, 0.6166667), (0.96666664, 0.6166667), (0.96666664, 0.6), (0.96666664, 0.6), (0.96666664, 0.6166667), (0.9583333, 0.6166667), (0.9583333, 0.6), (0.9583333, 0.6), (0.9583333, 0.6166667), (0.95, 0.6166667), (0.95, 0.6), (0.95, 0.6), (0.95, 0.6166667), (0.94166666, 0.6166667), (0.94166666, 0.6), (0.94166666, 0.6), (0.94166666, 0.6166667), (0.93333334, 0.6166667), (0.93333334, 0.6), (0.93333334, 0.6), (0.93333334, 0.6166667), (0.925, 0.6166667), (0.925, 0.6), (0.925, 0.6), (0.925, 0.6166667), (0.9166667, 0.6166667), (0.9166667, 0.6), (0.9166667, 0.6), (0.9166667, 0.6166667), (0.90833336, 0.6166667), (0.90833336, 0.6), (0.90833336, 0.6), (0.90833336, 0.6166667), (0.9, 0.6166667), (0.9, 0.6), (0.9, 0.6), (0.9, 0.6166667), (0.89166665, 0.6166667), (0.89166665, 0.6), (0.89166665, 0.6), (0.89166665, 0.6166667), (0.8833333, 0.6166667), (0.8833333, 0.6), (0.8833333, 0.6), (0.8833333, 0.6166667), (0.875, 0.6166667), (0.875, 0.6), (0.875, 0.6), (0.875, 0.6166667), (0.8666667, 0.6166667), (0.8666667, 0.6), (0.8666667, 0.6), (0.8666667, 0.6166667), (0.85833335, 0.6166667), (0.85833335, 0.6), (0.85833335, 0.6), (0.85833335, 0.6166667), (0.85, 0.6166667), (0.85, 0.6), (0.85, 0.6), (0.85, 0.6166667), (0.84166664, 0.6166667), (0.84166664, 0.6), (0.84166664, 0.6), (0.84166664, 0.6166667), (0.8333333, 0.6166667), (0.8333333, 0.6), (0.8333333, 0.6), (0.8333333, 0.6166667), (0.825, 0.6166667), (0.825, 0.6), (0.825, 0.6), (0.825, 0.6166667), (0.81666666, 0.6166667), (0.81666666, 0.6), (0.81666666, 0.6), (0.81666666, 0.6166667), (0.80833334, 0.6166667), (0.80833334, 0.6), (0.80833334, 0.6), (0.80833334, 0.6166667), (0.8, 0.6166667), (0.8, 0.6), (0.8, 0.6), (0.8, 0.6166667), (0.7916667, 0.6166667), (0.7916667, 0.6), (0.7916667, 0.6), (0.7916667, 0.6166667), (0.78333336, 0.6166667), (0.78333336, 0.6), (0.78333336, 0.6), (0.78333336, 0.6166667), (0.775, 0.6166667), (0.775, 0.6), (0.775, 0.6), (0.775, 0.6166667), (0.76666665, 0.6166667), (0.76666665, 0.6), (0.76666665, 0.6), (0.76666665, 0.6166667), (0.7583333, 0.6166667), (0.7583333, 0.6), (0.7583333, 0.6), (0.7583333, 0.6166667), (0.75, 0.6166667), (0.75, 0.6), (0.75, 0.6), (0.75, 0.6166667), (0.7416667, 0.6166667), (0.7416667, 0.6), (0.7416667, 0.6), (0.7416667, 0.6166667), (0.73333335, 0.6166667), (0.73333335, 0.6), (0.73333335, 0.6), (0.73333335, 0.6166667), (0.725, 0.6166667), (0.725, 0.6), (0.725, 0.6), (0.725, 0.6166667), (0.71666664, 0.6166667), (0.71666664, 0.6), (0.71666664, 0.6), (0.71666664, 0.6166667), (0.7083333, 0.6166667), (0.7083333, 0.6), (0.7083333, 0.6), (0.7083333, 0.6166667), (0.7, 0.6166667), (0.7, 0.6), (0.7, 0.6), (0.7, 0.6166667), (0.69166666, 0.6166667), (0.69166666, 0.6), (0.69166666, 0.6), (0.69166666, 0.6166667), (0.68333334, 0.6166667), (0.68333334, 0.6), (0.68333334, 0.6), (0.68333334, 0.6166667), (0.675, 0.6166667), (0.675, 0.6), (0.675, 0.6), (0.675, 0.6166667), (0.6666667, 0.6166667), (0.6666667, 0.6), (0.6666667, 0.6), (0.6666667, 0.6166667), (0.65833336, 0.6166667), (0.65833336, 0.6), (0.65833336, 0.6), (0.65833336, 0.6166667), (0.65, 0.6166667), (0.65, 0.6), (0.65, 0.6), (0.65, 0.6166667), (0.64166665, 0.6166667), (0.64166665, 0.6), (0.64166665, 0.6), (0.64166665, 0.6166667), (0.6333333, 0.6166667), (0.6333333, 0.6), (0.6333333, 0.6), (0.6333333, 0.6166667), (0.625, 0.6166667), (0.625, 0.6), (0.625, 0.6), (0.625, 0.6166667), (0.6166667, 0.6166667), (0.6166667, 0.6), (0.6166667, 0.6), (0.6166667, 0.6166667), (0.60833335, 0.6166667), (0.60833335, 0.6), (0.60833335, 0.6), (0.60833335, 0.6166667), (0.6, 0.6166667), (0.6, 0.6), (0.6, 0.6), (0.6, 0.6166667), (0.59166664, 0.6166667), (0.59166664, 0.6), (0.59166664, 0.6), (0.59166664, 0.6166667), (0.5833333, 0.6166667), (0.5833333, 0.6), (0.5833333, 0.6), (0.5833333, 0.6166667), (0.575, 0.6166667), (0.575, 0.6), (0.575, 0.6), (0.575, 0.6166667), (0.56666666, 0.6166667), (0.56666666, 0.6), (0.56666666, 0.6), (0.56666666, 0.6166667), (0.55833334, 0.6166667), (0.55833334, 0.6), (0.55833334, 0.6), (0.55833334, 0.6166667), (0.55, 0.6166667), (0.55, 0.6), (0.55, 0.6), (0.55, 0.6166667), (0.5416667, 0.6166667), (0.5416667, 0.6), (0.5416667, 0.6), (0.5416667, 0.6166667), (0.53333336, 0.6166667), (0.53333336, 0.6), (0.53333336, 0.6), (0.53333336, 0.6166667), (0.525, 0.6166667), (0.525, 0.6), (0.525, 0.6), (0.525, 0.6166667), (0.51666665, 0.6166667), (0.51666665, 0.6), (0.51666665, 0.6), (0.51666665, 0.6166667), (0.5083333, 0.6166667), (0.5083333, 0.6), (0.5083333, 0.6), (0.5083333, 0.6166667), (0.5, 0.6166667), (0.5, 0.6), (0.5, 0.6), (0.5, 0.6166667), (0.49166667, 0.6166667), (0.49166667, 0.6), (0.49166667, 0.6), (0.49166667, 0.6166667), (0.48333332, 0.6166667), (0.48333332, 0.6), (0.48333332, 0.6), (0.48333332, 0.6166667), (0.475, 0.6166667), (0.475, 0.6), (0.475, 0.6), (0.475, 0.6166667), (0.46666667, 0.6166667), (0.46666667, 0.6), (0.46666667, 0.6), (0.46666667, 0.6166667), (0.45833334, 0.6166667), (0.45833334, 0.6), (0.45833334, 0.6), (0.45833334, 0.6166667), (0.45, 0.6166667), (0.45, 0.6), (0.45, 0.6), (0.45, 0.6166667), (0.44166666, 0.6166667), (0.44166666, 0.6), (0.44166666, 0.6), (0.44166666, 0.6166667), (0.43333334, 0.6166667), (0.43333334, 0.6), (0.43333334, 0.6), (0.43333334, 0.6166667), (0.425, 0.6166667), (0.425, 0.6), (0.425, 0.6), (0.425, 0.6166667), (0.41666666, 0.6166667), (0.41666666, 0.6), (0.41666666, 0.6), (0.41666666, 0.6166667), (0.40833333, 0.6166667), (0.40833333, 0.6), (0.40833333, 0.6), (0.40833333, 0.6166667), (0.4, 0.6166667), (0.4, 0.6), (0.4, 0.6), (0.4, 0.6166667), (0.39166668, 0.6166667), (0.39166668, 0.6), (0.39166668, 0.6), (0.39166668, 0.6166667), (0.38333333, 0.6166667), (0.38333333, 0.6), (0.38333333, 0.6), (0.38333333, 0.6166667), (0.375, 0.6166667), (0.375, 0.6), (0.375, 0.6), (0.375, 0.6166667), (0.36666667, 0.6166667), (0.36666667, 0.6), (0.36666667, 0.6), (0.36666667, 0.6166667), (0.35833332, 0.6166667), (0.35833332, 0.6), (0.35833332, 0.6), (0.35833332, 0.6166667), (0.35, 0.6166667), (0.35, 0.6), (0.35, 0.6), (0.35, 0.6166667), (0.34166667, 0.6166667), (0.34166667, 0.6), (0.34166667, 0.6), (0.34166667, 0.6166667), (0.33333334, 0.6166667), (0.33333334, 0.6), (0.33333334, 0.6), (0.33333334, 0.6166667), (0.325, 0.6166667), (0.325, 0.6), (0.325, 0.6), (0.325, 0.6166667), (0.31666666, 0.6166667), (0.31666666, 0.6), (0.31666666, 0.6), (0.31666666, 0.6166667), (0.30833334, 0.6166667), (0.30833334, 0.6), (0.30833334, 0.6), (0.30833334, 0.6166667), (0.3, 0.6166667), (0.3, 0.6), (0.3, 0.6), (0.3, 0.6166667), (0.29166666, 0.6166667), (0.29166666, 0.6), (0.29166666, 0.6), (0.29166666, 0.6166667), (0.28333333, 0.6166667), (0.28333333, 0.6), (0.28333333, 0.6), (0.28333333, 0.6166667), (0.275, 0.6166667), (0.275, 0.6), (0.275, 0.6), (0.275, 0.6166667), (0.26666668, 0.6166667), (0.26666668, 0.6), (0.26666668, 0.6), (0.26666668, 0.6166667), (0.25833333, 0.6166667), (0.25833333, 0.6), (0.25833333, 0.6), (0.25833333, 0.6166667), (0.25, 0.6166667), (0.25, 0.6), (0.25, 0.6), (0.25, 0.6166667), (0.24166666, 0.6166667), (0.24166666, 0.6), (0.24166666, 0.6), (0.24166666, 0.6166667), (0.23333333, 0.6166667), (0.23333333, 0.6), (0.23333333, 0.6), (0.23333333, 0.6166667), (0.225, 0.6166667), (0.225, 0.6), (0.225, 0.6), (0.225, 0.6166667), (0.21666667, 0.6166667), (0.21666667, 0.6), (0.21666667, 0.6), (0.21666667, 0.6166667), (0.20833333, 0.6166667), (0.20833333, 0.6), (0.20833333, 0.6), (0.20833333, 0.6166667), (0.2, 0.6166667), (0.2, 0.6), (0.2, 0.6), (0.2, 0.6166667), (0.19166666, 0.6166667), (0.19166666, 0.6), (0.19166666, 0.6), (0.19166666, 0.6166667), (0.18333334, 0.6166667), (0.18333334, 0.6), (0.18333334, 0.6), (0.18333334, 0.6166667), (0.175, 0.6166667), (0.175, 0.6), (0.175, 0.6), (0.175, 0.6166667), (0.16666667, 0.6166667), (0.16666667, 0.6), (0.16666667, 0.6), (0.16666667, 0.6166667), (0.15833333, 0.6166667), (0.15833333, 0.6), (0.15833333, 0.6), (0.15833333, 0.6166667), (0.15, 0.6166667), (0.15, 0.6), (0.15, 0.6), (0.15, 0.6166667), (0.14166667, 0.6166667), (0.14166667, 0.6), (0.14166667, 0.6), (0.14166667, 0.6166667), (0.13333334, 0.6166667), (0.13333334, 0.6), (0.13333334, 0.6), (0.13333334, 0.6166667), (0.125, 0.6166667), (0.125, 0.6), (0.125, 0.6), (0.125, 0.6166667), (0.11666667, 0.6166667), (0.11666667, 0.6), (0.11666667, 0.6), (0.11666667, 0.6166667), (0.108333334, 0.6166667), (0.108333334, 0.6), (0.108333334, 0.6), (0.108333334, 0.6166667), (0.1, 0.6166667), (0.1, 0.6), (0.1, 0.6), (0.1, 0.6166667), (0.09166667, 0.6166667), (0.09166667, 0.6), (0.09166667, 0.6), (0.09166667, 0.6166667), (0.083333336, 0.6166667), (0.083333336, 0.6), (0.083333336, 0.6), (0.083333336, 0.6166667), (0.075, 0.6166667), (0.075, 0.6), (0.075, 0.6), (0.075, 0.6166667), (0.06666667, 0.6166667), (0.06666667, 0.6), (0.06666667, 0.6), (0.06666667, 0.6166667), (0.058333334, 0.6166667), (0.058333334, 0.6), (0.058333334, 0.6), (0.058333334, 0.6166667), (0.05, 0.6166667), (0.05, 0.6), (0.05, 0.6), (0.05, 0.6166667), (0.041666668, 0.6166667), (0.041666668, 0.6), (0.041666668, 0.6), (0.041666668, 0.6166667), (0.033333335, 0.6166667), (0.033333335, 0.6), (0.033333335, 0.6), (0.033333335, 0.6166667), (0.025, 0.6166667), (0.025, 0.6), (0.025, 0.6), (0.025, 0.6166667), (0.016666668, 0.6166667), (0.016666668, 0.6), (0.016666668, 0.6), (0.016666668, 0.6166667), (0.008333334, 0.6166667), (0.008333334, 0.6), (0.008333334, 0.6), (0.008333334, 0.6166667), (0, 0.6166667), (0, 0.6), (1, 0.6166667), (1, 0.6333333), (0.9916667, 0.6333333), (0.9916667, 0.6166667), (0.9916667, 0.6166667), (0.9916667, 0.6333333), (0.98333335, 0.6333333), (0.98333335, 0.6166667), (0.98333335, 0.6166667), (0.98333335, 0.6333333), (0.975, 0.6333333), (0.975, 0.6166667), (0.975, 0.6166667), (0.975, 0.6333333), (0.96666664, 0.6333333), (0.96666664, 0.6166667), (0.96666664, 0.6166667), (0.96666664, 0.6333333), (0.9583333, 0.6333333), (0.9583333, 0.6166667), (0.9583333, 0.6166667), (0.9583333, 0.6333333), (0.95, 0.6333333), (0.95, 0.6166667), (0.95, 0.6166667), (0.95, 0.6333333), (0.94166666, 0.6333333), (0.94166666, 0.6166667), (0.94166666, 0.6166667), (0.94166666, 0.6333333), (0.93333334, 0.6333333), (0.93333334, 0.6166667), (0.93333334, 0.6166667), (0.93333334, 0.6333333), (0.925, 0.6333333), (0.925, 0.6166667), (0.925, 0.6166667), (0.925, 0.6333333), (0.9166667, 0.6333333), (0.9166667, 0.6166667), (0.9166667, 0.6166667), (0.9166667, 0.6333333), (0.90833336, 0.6333333), (0.90833336, 0.6166667), (0.90833336, 0.6166667), (0.90833336, 0.6333333), (0.9, 0.6333333), (0.9, 0.6166667), (0.9, 0.6166667), (0.9, 0.6333333), (0.89166665, 0.6333333), (0.89166665, 0.6166667), (0.89166665, 0.6166667), (0.89166665, 0.6333333), (0.8833333, 0.6333333), (0.8833333, 0.6166667), (0.8833333, 0.6166667), (0.8833333, 0.6333333), (0.875, 0.6333333), (0.875, 0.6166667), (0.875, 0.6166667), (0.875, 0.6333333), (0.8666667, 0.6333333), (0.8666667, 0.6166667), (0.8666667, 0.6166667), (0.8666667, 0.6333333), (0.85833335, 0.6333333), (0.85833335, 0.6166667), (0.85833335, 0.6166667), (0.85833335, 0.6333333), (0.85, 0.6333333), (0.85, 0.6166667), (0.85, 0.6166667), (0.85, 0.6333333), (0.84166664, 0.6333333), (0.84166664, 0.6166667), (0.84166664, 0.6166667), (0.84166664, 0.6333333), (0.8333333, 0.6333333), (0.8333333, 0.6166667), (0.8333333, 0.6166667), (0.8333333, 0.6333333), (0.825, 0.6333333), (0.825, 0.6166667), (0.825, 0.6166667), (0.825, 0.6333333), (0.81666666, 0.6333333), (0.81666666, 0.6166667), (0.81666666, 0.6166667), (0.81666666, 0.6333333), (0.80833334, 0.6333333), (0.80833334, 0.6166667), (0.80833334, 0.6166667), (0.80833334, 0.6333333), (0.8, 0.6333333), (0.8, 0.6166667), (0.8, 0.6166667), (0.8, 0.6333333), (0.7916667, 0.6333333), (0.7916667, 0.6166667), (0.7916667, 0.6166667), (0.7916667, 0.6333333), (0.78333336, 0.6333333), (0.78333336, 0.6166667), (0.78333336, 0.6166667), (0.78333336, 0.6333333), (0.775, 0.6333333), (0.775, 0.6166667), (0.775, 0.6166667), (0.775, 0.6333333), (0.76666665, 0.6333333), (0.76666665, 0.6166667), (0.76666665, 0.6166667), (0.76666665, 0.6333333), (0.7583333, 0.6333333), (0.7583333, 0.6166667), (0.7583333, 0.6166667), (0.7583333, 0.6333333), (0.75, 0.6333333), (0.75, 0.6166667), (0.75, 0.6166667), (0.75, 0.6333333), (0.7416667, 0.6333333), (0.7416667, 0.6166667), (0.7416667, 0.6166667), (0.7416667, 0.6333333), (0.73333335, 0.6333333), (0.73333335, 0.6166667), (0.73333335, 0.6166667), (0.73333335, 0.6333333), (0.725, 0.6333333), (0.725, 0.6166667), (0.725, 0.6166667), (0.725, 0.6333333), (0.71666664, 0.6333333), (0.71666664, 0.6166667), (0.71666664, 0.6166667), (0.71666664, 0.6333333), (0.7083333, 0.6333333), (0.7083333, 0.6166667), (0.7083333, 0.6166667), (0.7083333, 0.6333333), (0.7, 0.6333333), (0.7, 0.6166667), (0.7, 0.6166667), (0.7, 0.6333333), (0.69166666, 0.6333333), (0.69166666, 0.6166667), (0.69166666, 0.6166667), (0.69166666, 0.6333333), (0.68333334, 0.6333333), (0.68333334, 0.6166667), (0.68333334, 0.6166667), (0.68333334, 0.6333333), (0.675, 0.6333333), (0.675, 0.6166667), (0.675, 0.6166667), (0.675, 0.6333333), (0.6666667, 0.6333333), (0.6666667, 0.6166667), (0.6666667, 0.6166667), (0.6666667, 0.6333333), (0.65833336, 0.6333333), (0.65833336, 0.6166667), (0.65833336, 0.6166667), (0.65833336, 0.6333333), (0.65, 0.6333333), (0.65, 0.6166667), (0.65, 0.6166667), (0.65, 0.6333333), (0.64166665, 0.6333333), (0.64166665, 0.6166667), (0.64166665, 0.6166667), (0.64166665, 0.6333333), (0.6333333, 0.6333333), (0.6333333, 0.6166667), (0.6333333, 0.6166667), (0.6333333, 0.6333333), (0.625, 0.6333333), (0.625, 0.6166667), (0.625, 0.6166667), (0.625, 0.6333333), (0.6166667, 0.6333333), (0.6166667, 0.6166667), (0.6166667, 0.6166667), (0.6166667, 0.6333333), (0.60833335, 0.6333333), (0.60833335, 0.6166667), (0.60833335, 0.6166667), (0.60833335, 0.6333333), (0.6, 0.6333333), (0.6, 0.6166667), (0.6, 0.6166667), (0.6, 0.6333333), (0.59166664, 0.6333333), (0.59166664, 0.6166667), (0.59166664, 0.6166667), (0.59166664, 0.6333333), (0.5833333, 0.6333333), (0.5833333, 0.6166667), (0.5833333, 0.6166667), (0.5833333, 0.6333333), (0.575, 0.6333333), (0.575, 0.6166667), (0.575, 0.6166667), (0.575, 0.6333333), (0.56666666, 0.6333333), (0.56666666, 0.6166667), (0.56666666, 0.6166667), (0.56666666, 0.6333333), (0.55833334, 0.6333333), (0.55833334, 0.6166667), (0.55833334, 0.6166667), (0.55833334, 0.6333333), (0.55, 0.6333333), (0.55, 0.6166667), (0.55, 0.6166667), (0.55, 0.6333333), (0.5416667, 0.6333333), (0.5416667, 0.6166667), (0.5416667, 0.6166667), (0.5416667, 0.6333333), (0.53333336, 0.6333333), (0.53333336, 0.6166667), (0.53333336, 0.6166667), (0.53333336, 0.6333333), (0.525, 0.6333333), (0.525, 0.6166667), (0.525, 0.6166667), (0.525, 0.6333333), (0.51666665, 0.6333333), (0.51666665, 0.6166667), (0.51666665, 0.6166667), (0.51666665, 0.6333333), (0.5083333, 0.6333333), (0.5083333, 0.6166667), (0.5083333, 0.6166667), (0.5083333, 0.6333333), (0.5, 0.6333333), (0.5, 0.6166667), (0.5, 0.6166667), (0.5, 0.6333333), (0.49166667, 0.6333333), (0.49166667, 0.6166667), (0.49166667, 0.6166667), (0.49166667, 0.6333333), (0.48333332, 0.6333333), (0.48333332, 0.6166667), (0.48333332, 0.6166667), (0.48333332, 0.6333333), (0.475, 0.6333333), (0.475, 0.6166667), (0.475, 0.6166667), (0.475, 0.6333333), (0.46666667, 0.6333333), (0.46666667, 0.6166667), (0.46666667, 0.6166667), (0.46666667, 0.6333333), (0.45833334, 0.6333333), (0.45833334, 0.6166667), (0.45833334, 0.6166667), (0.45833334, 0.6333333), (0.45, 0.6333333), (0.45, 0.6166667), (0.45, 0.6166667), (0.45, 0.6333333), (0.44166666, 0.6333333), (0.44166666, 0.6166667), (0.44166666, 0.6166667), (0.44166666, 0.6333333), (0.43333334, 0.6333333), (0.43333334, 0.6166667), (0.43333334, 0.6166667), (0.43333334, 0.6333333), (0.425, 0.6333333), (0.425, 0.6166667), (0.425, 0.6166667), (0.425, 0.6333333), (0.41666666, 0.6333333), (0.41666666, 0.6166667), (0.41666666, 0.6166667), (0.41666666, 0.6333333), (0.40833333, 0.6333333), (0.40833333, 0.6166667), (0.40833333, 0.6166667), (0.40833333, 0.6333333), (0.4, 0.6333333), (0.4, 0.6166667), (0.4, 0.6166667), (0.4, 0.6333333), (0.39166668, 0.6333333), (0.39166668, 0.6166667), (0.39166668, 0.6166667), (0.39166668, 0.6333333), (0.38333333, 0.6333333), (0.38333333, 0.6166667), (0.38333333, 0.6166667), (0.38333333, 0.6333333), (0.375, 0.6333333), (0.375, 0.6166667), (0.375, 0.6166667), (0.375, 0.6333333), (0.36666667, 0.6333333), (0.36666667, 0.6166667), (0.36666667, 0.6166667), (0.36666667, 0.6333333), (0.35833332, 0.6333333), (0.35833332, 0.6166667), (0.35833332, 0.6166667), (0.35833332, 0.6333333), (0.35, 0.6333333), (0.35, 0.6166667), (0.35, 0.6166667), (0.35, 0.6333333), (0.34166667, 0.6333333), (0.34166667, 0.6166667), (0.34166667, 0.6166667), (0.34166667, 0.6333333), (0.33333334, 0.6333333), (0.33333334, 0.6166667), (0.33333334, 0.6166667), (0.33333334, 0.6333333), (0.325, 0.6333333), (0.325, 0.6166667), (0.325, 0.6166667), (0.325, 0.6333333), (0.31666666, 0.6333333), (0.31666666, 0.6166667), (0.31666666, 0.6166667), (0.31666666, 0.6333333), (0.30833334, 0.6333333), (0.30833334, 0.6166667), (0.30833334, 0.6166667), (0.30833334, 0.6333333), (0.3, 0.6333333), (0.3, 0.6166667), (0.3, 0.6166667), (0.3, 0.6333333), (0.29166666, 0.6333333), (0.29166666, 0.6166667), (0.29166666, 0.6166667), (0.29166666, 0.6333333), (0.28333333, 0.6333333), (0.28333333, 0.6166667), (0.28333333, 0.6166667), (0.28333333, 0.6333333), (0.275, 0.6333333), (0.275, 0.6166667), (0.275, 0.6166667), (0.275, 0.6333333), (0.26666668, 0.6333333), (0.26666668, 0.6166667), (0.26666668, 0.6166667), (0.26666668, 0.6333333), (0.25833333, 0.6333333), (0.25833333, 0.6166667), (0.25833333, 0.6166667), (0.25833333, 0.6333333), (0.25, 0.6333333), (0.25, 0.6166667), (0.25, 0.6166667), (0.25, 0.6333333), (0.24166666, 0.6333333), (0.24166666, 0.6166667), (0.24166666, 0.6166667), (0.24166666, 0.6333333), (0.23333333, 0.6333333), (0.23333333, 0.6166667), (0.23333333, 0.6166667), (0.23333333, 0.6333333), (0.225, 0.6333333), (0.225, 0.6166667), (0.225, 0.6166667), (0.225, 0.6333333), (0.21666667, 0.6333333), (0.21666667, 0.6166667), (0.21666667, 0.6166667), (0.21666667, 0.6333333), (0.20833333, 0.6333333), (0.20833333, 0.6166667), (0.20833333, 0.6166667), (0.20833333, 0.6333333), (0.2, 0.6333333), (0.2, 0.6166667), (0.2, 0.6166667), (0.2, 0.6333333), (0.19166666, 0.6333333), (0.19166666, 0.6166667), (0.19166666, 0.6166667), (0.19166666, 0.6333333), (0.18333334, 0.6333333), (0.18333334, 0.6166667), (0.18333334, 0.6166667), (0.18333334, 0.6333333), (0.175, 0.6333333), (0.175, 0.6166667), (0.175, 0.6166667), (0.175, 0.6333333), (0.16666667, 0.6333333), (0.16666667, 0.6166667), (0.16666667, 0.6166667), (0.16666667, 0.6333333), (0.15833333, 0.6333333), (0.15833333, 0.6166667), (0.15833333, 0.6166667), (0.15833333, 0.6333333), (0.15, 0.6333333), (0.15, 0.6166667), (0.15, 0.6166667), (0.15, 0.6333333), (0.14166667, 0.6333333), (0.14166667, 0.6166667), (0.14166667, 0.6166667), (0.14166667, 0.6333333), (0.13333334, 0.6333333), (0.13333334, 0.6166667), (0.13333334, 0.6166667), (0.13333334, 0.6333333), (0.125, 0.6333333), (0.125, 0.6166667), (0.125, 0.6166667), (0.125, 0.6333333), (0.11666667, 0.6333333), (0.11666667, 0.6166667), (0.11666667, 0.6166667), (0.11666667, 0.6333333), (0.108333334, 0.6333333), (0.108333334, 0.6166667), (0.108333334, 0.6166667), (0.108333334, 0.6333333), (0.1, 0.6333333), (0.1, 0.6166667), (0.1, 0.6166667), (0.1, 0.6333333), (0.09166667, 0.6333333), (0.09166667, 0.6166667), (0.09166667, 0.6166667), (0.09166667, 0.6333333), (0.083333336, 0.6333333), (0.083333336, 0.6166667), (0.083333336, 0.6166667), (0.083333336, 0.6333333), (0.075, 0.6333333), (0.075, 0.6166667), (0.075, 0.6166667), (0.075, 0.6333333), (0.06666667, 0.6333333), (0.06666667, 0.6166667), (0.06666667, 0.6166667), (0.06666667, 0.6333333), (0.058333334, 0.6333333), (0.058333334, 0.6166667), (0.058333334, 0.6166667), (0.058333334, 0.6333333), (0.05, 0.6333333), (0.05, 0.6166667), (0.05, 0.6166667), (0.05, 0.6333333), (0.041666668, 0.6333333), (0.041666668, 0.6166667), (0.041666668, 0.6166667), (0.041666668, 0.6333333), (0.033333335, 0.6333333), (0.033333335, 0.6166667), (0.033333335, 0.6166667), (0.033333335, 0.6333333), (0.025, 0.6333333), (0.025, 0.6166667), (0.025, 0.6166667), (0.025, 0.6333333), (0.016666668, 0.6333333), (0.016666668, 0.6166667), (0.016666668, 0.6166667), (0.016666668, 0.6333333), (0.008333334, 0.6333333), (0.008333334, 0.6166667), (0.008333334, 0.6166667), (0.008333334, 0.6333333), (0, 0.6333333), (0, 0.6166667), (1, 0.6333333), (1, 0.65), (0.9916667, 0.65), (0.9916667, 0.6333333), (0.9916667, 0.6333333), (0.9916667, 0.65), (0.98333335, 0.65), (0.98333335, 0.6333333), (0.98333335, 0.6333333), (0.98333335, 0.65), (0.975, 0.65), (0.975, 0.6333333), (0.975, 0.6333333), (0.975, 0.65), (0.96666664, 0.65), (0.96666664, 0.6333333), (0.96666664, 0.6333333), (0.96666664, 0.65), (0.9583333, 0.65), (0.9583333, 0.6333333), (0.9583333, 0.6333333), (0.9583333, 0.65), (0.95, 0.65), (0.95, 0.6333333), (0.95, 0.6333333), (0.95, 0.65), (0.94166666, 0.65), (0.94166666, 0.6333333), (0.94166666, 0.6333333), (0.94166666, 0.65), (0.93333334, 0.65), (0.93333334, 0.6333333), (0.93333334, 0.6333333), (0.93333334, 0.65), (0.925, 0.65), (0.925, 0.6333333), (0.925, 0.6333333), (0.925, 0.65), (0.9166667, 0.65), (0.9166667, 0.6333333), (0.9166667, 0.6333333), (0.9166667, 0.65), (0.90833336, 0.65), (0.90833336, 0.6333333), (0.90833336, 0.6333333), (0.90833336, 0.65), (0.9, 0.65), (0.9, 0.6333333), (0.9, 0.6333333), (0.9, 0.65), (0.89166665, 0.65), (0.89166665, 0.6333333), (0.89166665, 0.6333333), (0.89166665, 0.65), (0.8833333, 0.65), (0.8833333, 0.6333333), (0.8833333, 0.6333333), (0.8833333, 0.65), (0.875, 0.65), (0.875, 0.6333333), (0.875, 0.6333333), (0.875, 0.65), (0.8666667, 0.65), (0.8666667, 0.6333333), (0.8666667, 0.6333333), (0.8666667, 0.65), (0.85833335, 0.65), (0.85833335, 0.6333333), (0.85833335, 0.6333333), (0.85833335, 0.65), (0.85, 0.65), (0.85, 0.6333333), (0.85, 0.6333333), (0.85, 0.65), (0.84166664, 0.65), (0.84166664, 0.6333333), (0.84166664, 0.6333333), (0.84166664, 0.65), (0.8333333, 0.65), (0.8333333, 0.6333333), (0.8333333, 0.6333333), (0.8333333, 0.65), (0.825, 0.65), (0.825, 0.6333333), (0.825, 0.6333333), (0.825, 0.65), (0.81666666, 0.65), (0.81666666, 0.6333333), (0.81666666, 0.6333333), (0.81666666, 0.65), (0.80833334, 0.65), (0.80833334, 0.6333333), (0.80833334, 0.6333333), (0.80833334, 0.65), (0.8, 0.65), (0.8, 0.6333333), (0.8, 0.6333333), (0.8, 0.65), (0.7916667, 0.65), (0.7916667, 0.6333333), (0.7916667, 0.6333333), (0.7916667, 0.65), (0.78333336, 0.65), (0.78333336, 0.6333333), (0.78333336, 0.6333333), (0.78333336, 0.65), (0.775, 0.65), (0.775, 0.6333333), (0.775, 0.6333333), (0.775, 0.65), (0.76666665, 0.65), (0.76666665, 0.6333333), (0.76666665, 0.6333333), (0.76666665, 0.65), (0.7583333, 0.65), (0.7583333, 0.6333333), (0.7583333, 0.6333333), (0.7583333, 0.65), (0.75, 0.65), (0.75, 0.6333333), (0.75, 0.6333333), (0.75, 0.65), (0.7416667, 0.65), (0.7416667, 0.6333333), (0.7416667, 0.6333333), (0.7416667, 0.65), (0.73333335, 0.65), (0.73333335, 0.6333333), (0.73333335, 0.6333333), (0.73333335, 0.65), (0.725, 0.65), (0.725, 0.6333333), (0.725, 0.6333333), (0.725, 0.65), (0.71666664, 0.65), (0.71666664, 0.6333333), (0.71666664, 0.6333333), (0.71666664, 0.65), (0.7083333, 0.65), (0.7083333, 0.6333333), (0.7083333, 0.6333333), (0.7083333, 0.65), (0.7, 0.65), (0.7, 0.6333333), (0.7, 0.6333333), (0.7, 0.65), (0.69166666, 0.65), (0.69166666, 0.6333333), (0.69166666, 0.6333333), (0.69166666, 0.65), (0.68333334, 0.65), (0.68333334, 0.6333333), (0.68333334, 0.6333333), (0.68333334, 0.65), (0.675, 0.65), (0.675, 0.6333333), (0.675, 0.6333333), (0.675, 0.65), (0.6666667, 0.65), (0.6666667, 0.6333333), (0.6666667, 0.6333333), (0.6666667, 0.65), (0.65833336, 0.65), (0.65833336, 0.6333333), (0.65833336, 0.6333333), (0.65833336, 0.65), (0.65, 0.65), (0.65, 0.6333333), (0.65, 0.6333333), (0.65, 0.65), (0.64166665, 0.65), (0.64166665, 0.6333333), (0.64166665, 0.6333333), (0.64166665, 0.65), (0.6333333, 0.65), (0.6333333, 0.6333333), (0.6333333, 0.6333333), (0.6333333, 0.65), (0.625, 0.65), (0.625, 0.6333333), (0.625, 0.6333333), (0.625, 0.65), (0.6166667, 0.65), (0.6166667, 0.6333333), (0.6166667, 0.6333333), (0.6166667, 0.65), (0.60833335, 0.65), (0.60833335, 0.6333333), (0.60833335, 0.6333333), (0.60833335, 0.65), (0.6, 0.65), (0.6, 0.6333333), (0.6, 0.6333333), (0.6, 0.65), (0.59166664, 0.65), (0.59166664, 0.6333333), (0.59166664, 0.6333333), (0.59166664, 0.65), (0.5833333, 0.65), (0.5833333, 0.6333333), (0.5833333, 0.6333333), (0.5833333, 0.65), (0.575, 0.65), (0.575, 0.6333333), (0.575, 0.6333333), (0.575, 0.65), (0.56666666, 0.65), (0.56666666, 0.6333333), (0.56666666, 0.6333333), (0.56666666, 0.65), (0.55833334, 0.65), (0.55833334, 0.6333333), (0.55833334, 0.6333333), (0.55833334, 0.65), (0.55, 0.65), (0.55, 0.6333333), (0.55, 0.6333333), (0.55, 0.65), (0.5416667, 0.65), (0.5416667, 0.6333333), (0.5416667, 0.6333333), (0.5416667, 0.65), (0.53333336, 0.65), (0.53333336, 0.6333333), (0.53333336, 0.6333333), (0.53333336, 0.65), (0.525, 0.65), (0.525, 0.6333333), (0.525, 0.6333333), (0.525, 0.65), (0.51666665, 0.65), (0.51666665, 0.6333333), (0.51666665, 0.6333333), (0.51666665, 0.65), (0.5083333, 0.65), (0.5083333, 0.6333333), (0.5083333, 0.6333333), (0.5083333, 0.65), (0.5, 0.65), (0.5, 0.6333333), (0.5, 0.6333333), (0.5, 0.65), (0.49166667, 0.65), (0.49166667, 0.6333333), (0.49166667, 0.6333333), (0.49166667, 0.65), (0.48333332, 0.65), (0.48333332, 0.6333333), (0.48333332, 0.6333333), (0.48333332, 0.65), (0.475, 0.65), (0.475, 0.6333333), (0.475, 0.6333333), (0.475, 0.65), (0.46666667, 0.65), (0.46666667, 0.6333333), (0.46666667, 0.6333333), (0.46666667, 0.65), (0.45833334, 0.65), (0.45833334, 0.6333333), (0.45833334, 0.6333333), (0.45833334, 0.65), (0.45, 0.65), (0.45, 0.6333333), (0.45, 0.6333333), (0.45, 0.65), (0.44166666, 0.65), (0.44166666, 0.6333333), (0.44166666, 0.6333333), (0.44166666, 0.65), (0.43333334, 0.65), (0.43333334, 0.6333333), (0.43333334, 0.6333333), (0.43333334, 0.65), (0.425, 0.65), (0.425, 0.6333333), (0.425, 0.6333333), (0.425, 0.65), (0.41666666, 0.65), (0.41666666, 0.6333333), (0.41666666, 0.6333333), (0.41666666, 0.65), (0.40833333, 0.65), (0.40833333, 0.6333333), (0.40833333, 0.6333333), (0.40833333, 0.65), (0.4, 0.65), (0.4, 0.6333333), (0.4, 0.6333333), (0.4, 0.65), (0.39166668, 0.65), (0.39166668, 0.6333333), (0.39166668, 0.6333333), (0.39166668, 0.65), (0.38333333, 0.65), (0.38333333, 0.6333333), (0.38333333, 0.6333333), (0.38333333, 0.65), (0.375, 0.65), (0.375, 0.6333333), (0.375, 0.6333333), (0.375, 0.65), (0.36666667, 0.65), (0.36666667, 0.6333333), (0.36666667, 0.6333333), (0.36666667, 0.65), (0.35833332, 0.65), (0.35833332, 0.6333333), (0.35833332, 0.6333333), (0.35833332, 0.65), (0.35, 0.65), (0.35, 0.6333333), (0.35, 0.6333333), (0.35, 0.65), (0.34166667, 0.65), (0.34166667, 0.6333333), (0.34166667, 0.6333333), (0.34166667, 0.65), (0.33333334, 0.65), (0.33333334, 0.6333333), (0.33333334, 0.6333333), (0.33333334, 0.65), (0.325, 0.65), (0.325, 0.6333333), (0.325, 0.6333333), (0.325, 0.65), (0.31666666, 0.65), (0.31666666, 0.6333333), (0.31666666, 0.6333333), (0.31666666, 0.65), (0.30833334, 0.65), (0.30833334, 0.6333333), (0.30833334, 0.6333333), (0.30833334, 0.65), (0.3, 0.65), (0.3, 0.6333333), (0.3, 0.6333333), (0.3, 0.65), (0.29166666, 0.65), (0.29166666, 0.6333333), (0.29166666, 0.6333333), (0.29166666, 0.65), (0.28333333, 0.65), (0.28333333, 0.6333333), (0.28333333, 0.6333333), (0.28333333, 0.65), (0.275, 0.65), (0.275, 0.6333333), (0.275, 0.6333333), (0.275, 0.65), (0.26666668, 0.65), (0.26666668, 0.6333333), (0.26666668, 0.6333333), (0.26666668, 0.65), (0.25833333, 0.65), (0.25833333, 0.6333333), (0.25833333, 0.6333333), (0.25833333, 0.65), (0.25, 0.65), (0.25, 0.6333333), (0.25, 0.6333333), (0.25, 0.65), (0.24166666, 0.65), (0.24166666, 0.6333333), (0.24166666, 0.6333333), (0.24166666, 0.65), (0.23333333, 0.65), (0.23333333, 0.6333333), (0.23333333, 0.6333333), (0.23333333, 0.65), (0.225, 0.65), (0.225, 0.6333333), (0.225, 0.6333333), (0.225, 0.65), (0.21666667, 0.65), (0.21666667, 0.6333333), (0.21666667, 0.6333333), (0.21666667, 0.65), (0.20833333, 0.65), (0.20833333, 0.6333333), (0.20833333, 0.6333333), (0.20833333, 0.65), (0.2, 0.65), (0.2, 0.6333333), (0.2, 0.6333333), (0.2, 0.65), (0.19166666, 0.65), (0.19166666, 0.6333333), (0.19166666, 0.6333333), (0.19166666, 0.65), (0.18333334, 0.65), (0.18333334, 0.6333333), (0.18333334, 0.6333333), (0.18333334, 0.65), (0.175, 0.65), (0.175, 0.6333333), (0.175, 0.6333333), (0.175, 0.65), (0.16666667, 0.65), (0.16666667, 0.6333333), (0.16666667, 0.6333333), (0.16666667, 0.65), (0.15833333, 0.65), (0.15833333, 0.6333333), (0.15833333, 0.6333333), (0.15833333, 0.65), (0.15, 0.65), (0.15, 0.6333333), (0.15, 0.6333333), (0.15, 0.65), (0.14166667, 0.65), (0.14166667, 0.6333333), (0.14166667, 0.6333333), (0.14166667, 0.65), (0.13333334, 0.65), (0.13333334, 0.6333333), (0.13333334, 0.6333333), (0.13333334, 0.65), (0.125, 0.65), (0.125, 0.6333333), (0.125, 0.6333333), (0.125, 0.65), (0.11666667, 0.65), (0.11666667, 0.6333333), (0.11666667, 0.6333333), (0.11666667, 0.65), (0.108333334, 0.65), (0.108333334, 0.6333333), (0.108333334, 0.6333333), (0.108333334, 0.65), (0.1, 0.65), (0.1, 0.6333333), (0.1, 0.6333333), (0.1, 0.65), (0.09166667, 0.65), (0.09166667, 0.6333333), (0.09166667, 0.6333333), (0.09166667, 0.65), (0.083333336, 0.65), (0.083333336, 0.6333333), (0.083333336, 0.6333333), (0.083333336, 0.65), (0.075, 0.65), (0.075, 0.6333333), (0.075, 0.6333333), (0.075, 0.65), (0.06666667, 0.65), (0.06666667, 0.6333333), (0.06666667, 0.6333333), (0.06666667, 0.65), (0.058333334, 0.65), (0.058333334, 0.6333333), (0.058333334, 0.6333333), (0.058333334, 0.65), (0.05, 0.65), (0.05, 0.6333333), (0.05, 0.6333333), (0.05, 0.65), (0.041666668, 0.65), (0.041666668, 0.6333333), (0.041666668, 0.6333333), (0.041666668, 0.65), (0.033333335, 0.65), (0.033333335, 0.6333333), (0.033333335, 0.6333333), (0.033333335, 0.65), (0.025, 0.65), (0.025, 0.6333333), (0.025, 0.6333333), (0.025, 0.65), (0.016666668, 0.65), (0.016666668, 0.6333333), (0.016666668, 0.6333333), (0.016666668, 0.65), (0.008333334, 0.65), (0.008333334, 0.6333333), (0.008333334, 0.6333333), (0.008333334, 0.65), (0, 0.65), (0, 0.6333333), (1, 0.65), (1, 0.6666667), (0.9916667, 0.6666667), (0.9916667, 0.65), (0.9916667, 0.65), (0.9916667, 0.6666667), (0.98333335, 0.6666667), (0.98333335, 0.65), (0.98333335, 0.65), (0.98333335, 0.6666667), (0.975, 0.6666667), (0.975, 0.65), (0.975, 0.65), (0.975, 0.6666667), (0.96666664, 0.6666667), (0.96666664, 0.65), (0.96666664, 0.65), (0.96666664, 0.6666667), (0.9583333, 0.6666667), (0.9583333, 0.65), (0.9583333, 0.65), (0.9583333, 0.6666667), (0.95, 0.6666667), (0.95, 0.65), (0.95, 0.65), (0.95, 0.6666667), (0.94166666, 0.6666667), (0.94166666, 0.65), (0.94166666, 0.65), (0.94166666, 0.6666667), (0.93333334, 0.6666667), (0.93333334, 0.65), (0.93333334, 0.65), (0.93333334, 0.6666667), (0.925, 0.6666667), (0.925, 0.65), (0.925, 0.65), (0.925, 0.6666667), (0.9166667, 0.6666667), (0.9166667, 0.65), (0.9166667, 0.65), (0.9166667, 0.6666667), (0.90833336, 0.6666667), (0.90833336, 0.65), (0.90833336, 0.65), (0.90833336, 0.6666667), (0.9, 0.6666667), (0.9, 0.65), (0.9, 0.65), (0.9, 0.6666667), (0.89166665, 0.6666667), (0.89166665, 0.65), (0.89166665, 0.65), (0.89166665, 0.6666667), (0.8833333, 0.6666667), (0.8833333, 0.65), (0.8833333, 0.65), (0.8833333, 0.6666667), (0.875, 0.6666667), (0.875, 0.65), (0.875, 0.65), (0.875, 0.6666667), (0.8666667, 0.6666667), (0.8666667, 0.65), (0.8666667, 0.65), (0.8666667, 0.6666667), (0.85833335, 0.6666667), (0.85833335, 0.65), (0.85833335, 0.65), (0.85833335, 0.6666667), (0.85, 0.6666667), (0.85, 0.65), (0.85, 0.65), (0.85, 0.6666667), (0.84166664, 0.6666667), (0.84166664, 0.65), (0.84166664, 0.65), (0.84166664, 0.6666667), (0.8333333, 0.6666667), (0.8333333, 0.65), (0.8333333, 0.65), (0.8333333, 0.6666667), (0.825, 0.6666667), (0.825, 0.65), (0.825, 0.65), (0.825, 0.6666667), (0.81666666, 0.6666667), (0.81666666, 0.65), (0.81666666, 0.65), (0.81666666, 0.6666667), (0.80833334, 0.6666667), (0.80833334, 0.65), (0.80833334, 0.65), (0.80833334, 0.6666667), (0.8, 0.6666667), (0.8, 0.65), (0.8, 0.65), (0.8, 0.6666667), (0.7916667, 0.6666667), (0.7916667, 0.65), (0.7916667, 0.65), (0.7916667, 0.6666667), (0.78333336, 0.6666667), (0.78333336, 0.65), (0.78333336, 0.65), (0.78333336, 0.6666667), (0.775, 0.6666667), (0.775, 0.65), (0.775, 0.65), (0.775, 0.6666667), (0.76666665, 0.6666667), (0.76666665, 0.65), (0.76666665, 0.65), (0.76666665, 0.6666667), (0.7583333, 0.6666667), (0.7583333, 0.65), (0.7583333, 0.65), (0.7583333, 0.6666667), (0.75, 0.6666667), (0.75, 0.65), (0.75, 0.65), (0.75, 0.6666667), (0.7416667, 0.6666667), (0.7416667, 0.65), (0.7416667, 0.65), (0.7416667, 0.6666667), (0.73333335, 0.6666667), (0.73333335, 0.65), (0.73333335, 0.65), (0.73333335, 0.6666667), (0.725, 0.6666667), (0.725, 0.65), (0.725, 0.65), (0.725, 0.6666667), (0.71666664, 0.6666667), (0.71666664, 0.65), (0.71666664, 0.65), (0.71666664, 0.6666667), (0.7083333, 0.6666667), (0.7083333, 0.65), (0.7083333, 0.65), (0.7083333, 0.6666667), (0.7, 0.6666667), (0.7, 0.65), (0.7, 0.65), (0.7, 0.6666667), (0.69166666, 0.6666667), (0.69166666, 0.65), (0.69166666, 0.65), (0.69166666, 0.6666667), (0.68333334, 0.6666667), (0.68333334, 0.65), (0.68333334, 0.65), (0.68333334, 0.6666667), (0.675, 0.6666667), (0.675, 0.65), (0.675, 0.65), (0.675, 0.6666667), (0.6666667, 0.6666667), (0.6666667, 0.65), (0.6666667, 0.65), (0.6666667, 0.6666667), (0.65833336, 0.6666667), (0.65833336, 0.65), (0.65833336, 0.65), (0.65833336, 0.6666667), (0.65, 0.6666667), (0.65, 0.65), (0.65, 0.65), (0.65, 0.6666667), (0.64166665, 0.6666667), (0.64166665, 0.65), (0.64166665, 0.65), (0.64166665, 0.6666667), (0.6333333, 0.6666667), (0.6333333, 0.65), (0.6333333, 0.65), (0.6333333, 0.6666667), (0.625, 0.6666667), (0.625, 0.65), (0.625, 0.65), (0.625, 0.6666667), (0.6166667, 0.6666667), (0.6166667, 0.65), (0.6166667, 0.65), (0.6166667, 0.6666667), (0.60833335, 0.6666667), (0.60833335, 0.65), (0.60833335, 0.65), (0.60833335, 0.6666667), (0.6, 0.6666667), (0.6, 0.65), (0.6, 0.65), (0.6, 0.6666667), (0.59166664, 0.6666667), (0.59166664, 0.65), (0.59166664, 0.65), (0.59166664, 0.6666667), (0.5833333, 0.6666667), (0.5833333, 0.65), (0.5833333, 0.65), (0.5833333, 0.6666667), (0.575, 0.6666667), (0.575, 0.65), (0.575, 0.65), (0.575, 0.6666667), (0.56666666, 0.6666667), (0.56666666, 0.65), (0.56666666, 0.65), (0.56666666, 0.6666667), (0.55833334, 0.6666667), (0.55833334, 0.65), (0.55833334, 0.65), (0.55833334, 0.6666667), (0.55, 0.6666667), (0.55, 0.65), (0.55, 0.65), (0.55, 0.6666667), (0.5416667, 0.6666667), (0.5416667, 0.65), (0.5416667, 0.65), (0.5416667, 0.6666667), (0.53333336, 0.6666667), (0.53333336, 0.65), (0.53333336, 0.65), (0.53333336, 0.6666667), (0.525, 0.6666667), (0.525, 0.65), (0.525, 0.65), (0.525, 0.6666667), (0.51666665, 0.6666667), (0.51666665, 0.65), (0.51666665, 0.65), (0.51666665, 0.6666667), (0.5083333, 0.6666667), (0.5083333, 0.65), (0.5083333, 0.65), (0.5083333, 0.6666667), (0.5, 0.6666667), (0.5, 0.65), (0.5, 0.65), (0.5, 0.6666667), (0.49166667, 0.6666667), (0.49166667, 0.65), (0.49166667, 0.65), (0.49166667, 0.6666667), (0.48333332, 0.6666667), (0.48333332, 0.65), (0.48333332, 0.65), (0.48333332, 0.6666667), (0.475, 0.6666667), (0.475, 0.65), (0.475, 0.65), (0.475, 0.6666667), (0.46666667, 0.6666667), (0.46666667, 0.65), (0.46666667, 0.65), (0.46666667, 0.6666667), (0.45833334, 0.6666667), (0.45833334, 0.65), (0.45833334, 0.65), (0.45833334, 0.6666667), (0.45, 0.6666667), (0.45, 0.65), (0.45, 0.65), (0.45, 0.6666667), (0.44166666, 0.6666667), (0.44166666, 0.65), (0.44166666, 0.65), (0.44166666, 0.6666667), (0.43333334, 0.6666667), (0.43333334, 0.65), (0.43333334, 0.65), (0.43333334, 0.6666667), (0.425, 0.6666667), (0.425, 0.65), (0.425, 0.65), (0.425, 0.6666667), (0.41666666, 0.6666667), (0.41666666, 0.65), (0.41666666, 0.65), (0.41666666, 0.6666667), (0.40833333, 0.6666667), (0.40833333, 0.65), (0.40833333, 0.65), (0.40833333, 0.6666667), (0.4, 0.6666667), (0.4, 0.65), (0.4, 0.65), (0.4, 0.6666667), (0.39166668, 0.6666667), (0.39166668, 0.65), (0.39166668, 0.65), (0.39166668, 0.6666667), (0.38333333, 0.6666667), (0.38333333, 0.65), (0.38333333, 0.65), (0.38333333, 0.6666667), (0.375, 0.6666667), (0.375, 0.65), (0.375, 0.65), (0.375, 0.6666667), (0.36666667, 0.6666667), (0.36666667, 0.65), (0.36666667, 0.65), (0.36666667, 0.6666667), (0.35833332, 0.6666667), (0.35833332, 0.65), (0.35833332, 0.65), (0.35833332, 0.6666667), (0.35, 0.6666667), (0.35, 0.65), (0.35, 0.65), (0.35, 0.6666667), (0.34166667, 0.6666667), (0.34166667, 0.65), (0.34166667, 0.65), (0.34166667, 0.6666667), (0.33333334, 0.6666667), (0.33333334, 0.65), (0.33333334, 0.65), (0.33333334, 0.6666667), (0.325, 0.6666667), (0.325, 0.65), (0.325, 0.65), (0.325, 0.6666667), (0.31666666, 0.6666667), (0.31666666, 0.65), (0.31666666, 0.65), (0.31666666, 0.6666667), (0.30833334, 0.6666667), (0.30833334, 0.65), (0.30833334, 0.65), (0.30833334, 0.6666667), (0.3, 0.6666667), (0.3, 0.65), (0.3, 0.65), (0.3, 0.6666667), (0.29166666, 0.6666667), (0.29166666, 0.65), (0.29166666, 0.65), (0.29166666, 0.6666667), (0.28333333, 0.6666667), (0.28333333, 0.65), (0.28333333, 0.65), (0.28333333, 0.6666667), (0.275, 0.6666667), (0.275, 0.65), (0.275, 0.65), (0.275, 0.6666667), (0.26666668, 0.6666667), (0.26666668, 0.65), (0.26666668, 0.65), (0.26666668, 0.6666667), (0.25833333, 0.6666667), (0.25833333, 0.65), (0.25833333, 0.65), (0.25833333, 0.6666667), (0.25, 0.6666667), (0.25, 0.65), (0.25, 0.65), (0.25, 0.6666667), (0.24166666, 0.6666667), (0.24166666, 0.65), (0.24166666, 0.65), (0.24166666, 0.6666667), (0.23333333, 0.6666667), (0.23333333, 0.65), (0.23333333, 0.65), (0.23333333, 0.6666667), (0.225, 0.6666667), (0.225, 0.65), (0.225, 0.65), (0.225, 0.6666667), (0.21666667, 0.6666667), (0.21666667, 0.65), (0.21666667, 0.65), (0.21666667, 0.6666667), (0.20833333, 0.6666667), (0.20833333, 0.65), (0.20833333, 0.65), (0.20833333, 0.6666667), (0.2, 0.6666667), (0.2, 0.65), (0.2, 0.65), (0.2, 0.6666667), (0.19166666, 0.6666667), (0.19166666, 0.65), (0.19166666, 0.65), (0.19166666, 0.6666667), (0.18333334, 0.6666667), (0.18333334, 0.65), (0.18333334, 0.65), (0.18333334, 0.6666667), (0.175, 0.6666667), (0.175, 0.65), (0.175, 0.65), (0.175, 0.6666667), (0.16666667, 0.6666667), (0.16666667, 0.65), (0.16666667, 0.65), (0.16666667, 0.6666667), (0.15833333, 0.6666667), (0.15833333, 0.65), (0.15833333, 0.65), (0.15833333, 0.6666667), (0.15, 0.6666667), (0.15, 0.65), (0.15, 0.65), (0.15, 0.6666667), (0.14166667, 0.6666667), (0.14166667, 0.65), (0.14166667, 0.65), (0.14166667, 0.6666667), (0.13333334, 0.6666667), (0.13333334, 0.65), (0.13333334, 0.65), (0.13333334, 0.6666667), (0.125, 0.6666667), (0.125, 0.65), (0.125, 0.65), (0.125, 0.6666667), (0.11666667, 0.6666667), (0.11666667, 0.65), (0.11666667, 0.65), (0.11666667, 0.6666667), (0.108333334, 0.6666667), (0.108333334, 0.65), (0.108333334, 0.65), (0.108333334, 0.6666667), (0.1, 0.6666667), (0.1, 0.65), (0.1, 0.65), (0.1, 0.6666667), (0.09166667, 0.6666667), (0.09166667, 0.65), (0.09166667, 0.65), (0.09166667, 0.6666667), (0.083333336, 0.6666667), (0.083333336, 0.65), (0.083333336, 0.65), (0.083333336, 0.6666667), (0.075, 0.6666667), (0.075, 0.65), (0.075, 0.65), (0.075, 0.6666667), (0.06666667, 0.6666667), (0.06666667, 0.65), (0.06666667, 0.65), (0.06666667, 0.6666667), (0.058333334, 0.6666667), (0.058333334, 0.65), (0.058333334, 0.65), (0.058333334, 0.6666667), (0.05, 0.6666667), (0.05, 0.65), (0.05, 0.65), (0.05, 0.6666667), (0.041666668, 0.6666667), (0.041666668, 0.65), (0.041666668, 0.65), (0.041666668, 0.6666667), (0.033333335, 0.6666667), (0.033333335, 0.65), (0.033333335, 0.65), (0.033333335, 0.6666667), (0.025, 0.6666667), (0.025, 0.65), (0.025, 0.65), (0.025, 0.6666667), (0.016666668, 0.6666667), (0.016666668, 0.65), (0.016666668, 0.65), (0.016666668, 0.6666667), (0.008333334, 0.6666667), (0.008333334, 0.65), (0.008333334, 0.65), (0.008333334, 0.6666667), (0, 0.6666667), (0, 0.65), (1, 0.6666667), (1, 0.68333334), (0.9916667, 0.68333334), (0.9916667, 0.6666667), (0.9916667, 0.6666667), (0.9916667, 0.68333334), (0.98333335, 0.68333334), (0.98333335, 0.6666667), (0.98333335, 0.6666667), (0.98333335, 0.68333334), (0.975, 0.68333334), (0.975, 0.6666667), (0.975, 0.6666667), (0.975, 0.68333334), (0.96666664, 0.68333334), (0.96666664, 0.6666667), (0.96666664, 0.6666667), (0.96666664, 0.68333334), (0.9583333, 0.68333334), (0.9583333, 0.6666667), (0.9583333, 0.6666667), (0.9583333, 0.68333334), (0.95, 0.68333334), (0.95, 0.6666667), (0.95, 0.6666667), (0.95, 0.68333334), (0.94166666, 0.68333334), (0.94166666, 0.6666667), (0.94166666, 0.6666667), (0.94166666, 0.68333334), (0.93333334, 0.68333334), (0.93333334, 0.6666667), (0.93333334, 0.6666667), (0.93333334, 0.68333334), (0.925, 0.68333334), (0.925, 0.6666667), (0.925, 0.6666667), (0.925, 0.68333334), (0.9166667, 0.68333334), (0.9166667, 0.6666667), (0.9166667, 0.6666667), (0.9166667, 0.68333334), (0.90833336, 0.68333334), (0.90833336, 0.6666667), (0.90833336, 0.6666667), (0.90833336, 0.68333334), (0.9, 0.68333334), (0.9, 0.6666667), (0.9, 0.6666667), (0.9, 0.68333334), (0.89166665, 0.68333334), (0.89166665, 0.6666667), (0.89166665, 0.6666667), (0.89166665, 0.68333334), (0.8833333, 0.68333334), (0.8833333, 0.6666667), (0.8833333, 0.6666667), (0.8833333, 0.68333334), (0.875, 0.68333334), (0.875, 0.6666667), (0.875, 0.6666667), (0.875, 0.68333334), (0.8666667, 0.68333334), (0.8666667, 0.6666667), (0.8666667, 0.6666667), (0.8666667, 0.68333334), (0.85833335, 0.68333334), (0.85833335, 0.6666667), (0.85833335, 0.6666667), (0.85833335, 0.68333334), (0.85, 0.68333334), (0.85, 0.6666667), (0.85, 0.6666667), (0.85, 0.68333334), (0.84166664, 0.68333334), (0.84166664, 0.6666667), (0.84166664, 0.6666667), (0.84166664, 0.68333334), (0.8333333, 0.68333334), (0.8333333, 0.6666667), (0.8333333, 0.6666667), (0.8333333, 0.68333334), (0.825, 0.68333334), (0.825, 0.6666667), (0.825, 0.6666667), (0.825, 0.68333334), (0.81666666, 0.68333334), (0.81666666, 0.6666667), (0.81666666, 0.6666667), (0.81666666, 0.68333334), (0.80833334, 0.68333334), (0.80833334, 0.6666667), (0.80833334, 0.6666667), (0.80833334, 0.68333334), (0.8, 0.68333334), (0.8, 0.6666667), (0.8, 0.6666667), (0.8, 0.68333334), (0.7916667, 0.68333334), (0.7916667, 0.6666667), (0.7916667, 0.6666667), (0.7916667, 0.68333334), (0.78333336, 0.68333334), (0.78333336, 0.6666667), (0.78333336, 0.6666667), (0.78333336, 0.68333334), (0.775, 0.68333334), (0.775, 0.6666667), (0.775, 0.6666667), (0.775, 0.68333334), (0.76666665, 0.68333334), (0.76666665, 0.6666667), (0.76666665, 0.6666667), (0.76666665, 0.68333334), (0.7583333, 0.68333334), (0.7583333, 0.6666667), (0.7583333, 0.6666667), (0.7583333, 0.68333334), (0.75, 0.68333334), (0.75, 0.6666667), (0.75, 0.6666667), (0.75, 0.68333334), (0.7416667, 0.68333334), (0.7416667, 0.6666667), (0.7416667, 0.6666667), (0.7416667, 0.68333334), (0.73333335, 0.68333334), (0.73333335, 0.6666667), (0.73333335, 0.6666667), (0.73333335, 0.68333334), (0.725, 0.68333334), (0.725, 0.6666667), (0.725, 0.6666667), (0.725, 0.68333334), (0.71666664, 0.68333334), (0.71666664, 0.6666667), (0.71666664, 0.6666667), (0.71666664, 0.68333334), (0.7083333, 0.68333334), (0.7083333, 0.6666667), (0.7083333, 0.6666667), (0.7083333, 0.68333334), (0.7, 0.68333334), (0.7, 0.6666667), (0.7, 0.6666667), (0.7, 0.68333334), (0.69166666, 0.68333334), (0.69166666, 0.6666667), (0.69166666, 0.6666667), (0.69166666, 0.68333334), (0.68333334, 0.68333334), (0.68333334, 0.6666667), (0.68333334, 0.6666667), (0.68333334, 0.68333334), (0.675, 0.68333334), (0.675, 0.6666667), (0.675, 0.6666667), (0.675, 0.68333334), (0.6666667, 0.68333334), (0.6666667, 0.6666667), (0.6666667, 0.6666667), (0.6666667, 0.68333334), (0.65833336, 0.68333334), (0.65833336, 0.6666667), (0.65833336, 0.6666667), (0.65833336, 0.68333334), (0.65, 0.68333334), (0.65, 0.6666667), (0.65, 0.6666667), (0.65, 0.68333334), (0.64166665, 0.68333334), (0.64166665, 0.6666667), (0.64166665, 0.6666667), (0.64166665, 0.68333334), (0.6333333, 0.68333334), (0.6333333, 0.6666667), (0.6333333, 0.6666667), (0.6333333, 0.68333334), (0.625, 0.68333334), (0.625, 0.6666667), (0.625, 0.6666667), (0.625, 0.68333334), (0.6166667, 0.68333334), (0.6166667, 0.6666667), (0.6166667, 0.6666667), (0.6166667, 0.68333334), (0.60833335, 0.68333334), (0.60833335, 0.6666667), (0.60833335, 0.6666667), (0.60833335, 0.68333334), (0.6, 0.68333334), (0.6, 0.6666667), (0.6, 0.6666667), (0.6, 0.68333334), (0.59166664, 0.68333334), (0.59166664, 0.6666667), (0.59166664, 0.6666667), (0.59166664, 0.68333334), (0.5833333, 0.68333334), (0.5833333, 0.6666667), (0.5833333, 0.6666667), (0.5833333, 0.68333334), (0.575, 0.68333334), (0.575, 0.6666667), (0.575, 0.6666667), (0.575, 0.68333334), (0.56666666, 0.68333334), (0.56666666, 0.6666667), (0.56666666, 0.6666667), (0.56666666, 0.68333334), (0.55833334, 0.68333334), (0.55833334, 0.6666667), (0.55833334, 0.6666667), (0.55833334, 0.68333334), (0.55, 0.68333334), (0.55, 0.6666667), (0.55, 0.6666667), (0.55, 0.68333334), (0.5416667, 0.68333334), (0.5416667, 0.6666667), (0.5416667, 0.6666667), (0.5416667, 0.68333334), (0.53333336, 0.68333334), (0.53333336, 0.6666667), (0.53333336, 0.6666667), (0.53333336, 0.68333334), (0.525, 0.68333334), (0.525, 0.6666667), (0.525, 0.6666667), (0.525, 0.68333334), (0.51666665, 0.68333334), (0.51666665, 0.6666667), (0.51666665, 0.6666667), (0.51666665, 0.68333334), (0.5083333, 0.68333334), (0.5083333, 0.6666667), (0.5083333, 0.6666667), (0.5083333, 0.68333334), (0.5, 0.68333334), (0.5, 0.6666667), (0.5, 0.6666667), (0.5, 0.68333334), (0.49166667, 0.68333334), (0.49166667, 0.6666667), (0.49166667, 0.6666667), (0.49166667, 0.68333334), (0.48333332, 0.68333334), (0.48333332, 0.6666667), (0.48333332, 0.6666667), (0.48333332, 0.68333334), (0.475, 0.68333334), (0.475, 0.6666667), (0.475, 0.6666667), (0.475, 0.68333334), (0.46666667, 0.68333334), (0.46666667, 0.6666667), (0.46666667, 0.6666667), (0.46666667, 0.68333334), (0.45833334, 0.68333334), (0.45833334, 0.6666667), (0.45833334, 0.6666667), (0.45833334, 0.68333334), (0.45, 0.68333334), (0.45, 0.6666667), (0.45, 0.6666667), (0.45, 0.68333334), (0.44166666, 0.68333334), (0.44166666, 0.6666667), (0.44166666, 0.6666667), (0.44166666, 0.68333334), (0.43333334, 0.68333334), (0.43333334, 0.6666667), (0.43333334, 0.6666667), (0.43333334, 0.68333334), (0.425, 0.68333334), (0.425, 0.6666667), (0.425, 0.6666667), (0.425, 0.68333334), (0.41666666, 0.68333334), (0.41666666, 0.6666667), (0.41666666, 0.6666667), (0.41666666, 0.68333334), (0.40833333, 0.68333334), (0.40833333, 0.6666667), (0.40833333, 0.6666667), (0.40833333, 0.68333334), (0.4, 0.68333334), (0.4, 0.6666667), (0.4, 0.6666667), (0.4, 0.68333334), (0.39166668, 0.68333334), (0.39166668, 0.6666667), (0.39166668, 0.6666667), (0.39166668, 0.68333334), (0.38333333, 0.68333334), (0.38333333, 0.6666667), (0.38333333, 0.6666667), (0.38333333, 0.68333334), (0.375, 0.68333334), (0.375, 0.6666667), (0.375, 0.6666667), (0.375, 0.68333334), (0.36666667, 0.68333334), (0.36666667, 0.6666667), (0.36666667, 0.6666667), (0.36666667, 0.68333334), (0.35833332, 0.68333334), (0.35833332, 0.6666667), (0.35833332, 0.6666667), (0.35833332, 0.68333334), (0.35, 0.68333334), (0.35, 0.6666667), (0.35, 0.6666667), (0.35, 0.68333334), (0.34166667, 0.68333334), (0.34166667, 0.6666667), (0.34166667, 0.6666667), (0.34166667, 0.68333334), (0.33333334, 0.68333334), (0.33333334, 0.6666667), (0.33333334, 0.6666667), (0.33333334, 0.68333334), (0.325, 0.68333334), (0.325, 0.6666667), (0.325, 0.6666667), (0.325, 0.68333334), (0.31666666, 0.68333334), (0.31666666, 0.6666667), (0.31666666, 0.6666667), (0.31666666, 0.68333334), (0.30833334, 0.68333334), (0.30833334, 0.6666667), (0.30833334, 0.6666667), (0.30833334, 0.68333334), (0.3, 0.68333334), (0.3, 0.6666667), (0.3, 0.6666667), (0.3, 0.68333334), (0.29166666, 0.68333334), (0.29166666, 0.6666667), (0.29166666, 0.6666667), (0.29166666, 0.68333334), (0.28333333, 0.68333334), (0.28333333, 0.6666667), (0.28333333, 0.6666667), (0.28333333, 0.68333334), (0.275, 0.68333334), (0.275, 0.6666667), (0.275, 0.6666667), (0.275, 0.68333334), (0.26666668, 0.68333334), (0.26666668, 0.6666667), (0.26666668, 0.6666667), (0.26666668, 0.68333334), (0.25833333, 0.68333334), (0.25833333, 0.6666667), (0.25833333, 0.6666667), (0.25833333, 0.68333334), (0.25, 0.68333334), (0.25, 0.6666667), (0.25, 0.6666667), (0.25, 0.68333334), (0.24166666, 0.68333334), (0.24166666, 0.6666667), (0.24166666, 0.6666667), (0.24166666, 0.68333334), (0.23333333, 0.68333334), (0.23333333, 0.6666667), (0.23333333, 0.6666667), (0.23333333, 0.68333334), (0.225, 0.68333334), (0.225, 0.6666667), (0.225, 0.6666667), (0.225, 0.68333334), (0.21666667, 0.68333334), (0.21666667, 0.6666667), (0.21666667, 0.6666667), (0.21666667, 0.68333334), (0.20833333, 0.68333334), (0.20833333, 0.6666667), (0.20833333, 0.6666667), (0.20833333, 0.68333334), (0.2, 0.68333334), (0.2, 0.6666667), (0.2, 0.6666667), (0.2, 0.68333334), (0.19166666, 0.68333334), (0.19166666, 0.6666667), (0.19166666, 0.6666667), (0.19166666, 0.68333334), (0.18333334, 0.68333334), (0.18333334, 0.6666667), (0.18333334, 0.6666667), (0.18333334, 0.68333334), (0.175, 0.68333334), (0.175, 0.6666667), (0.175, 0.6666667), (0.175, 0.68333334), (0.16666667, 0.68333334), (0.16666667, 0.6666667), (0.16666667, 0.6666667), (0.16666667, 0.68333334), (0.15833333, 0.68333334), (0.15833333, 0.6666667), (0.15833333, 0.6666667), (0.15833333, 0.68333334), (0.15, 0.68333334), (0.15, 0.6666667), (0.15, 0.6666667), (0.15, 0.68333334), (0.14166667, 0.68333334), (0.14166667, 0.6666667), (0.14166667, 0.6666667), (0.14166667, 0.68333334), (0.13333334, 0.68333334), (0.13333334, 0.6666667), (0.13333334, 0.6666667), (0.13333334, 0.68333334), (0.125, 0.68333334), (0.125, 0.6666667), (0.125, 0.6666667), (0.125, 0.68333334), (0.11666667, 0.68333334), (0.11666667, 0.6666667), (0.11666667, 0.6666667), (0.11666667, 0.68333334), (0.108333334, 0.68333334), (0.108333334, 0.6666667), (0.108333334, 0.6666667), (0.108333334, 0.68333334), (0.1, 0.68333334), (0.1, 0.6666667), (0.1, 0.6666667), (0.1, 0.68333334), (0.09166667, 0.68333334), (0.09166667, 0.6666667), (0.09166667, 0.6666667), (0.09166667, 0.68333334), (0.083333336, 0.68333334), (0.083333336, 0.6666667), (0.083333336, 0.6666667), (0.083333336, 0.68333334), (0.075, 0.68333334), (0.075, 0.6666667), (0.075, 0.6666667), (0.075, 0.68333334), (0.06666667, 0.68333334), (0.06666667, 0.6666667), (0.06666667, 0.6666667), (0.06666667, 0.68333334), (0.058333334, 0.68333334), (0.058333334, 0.6666667), (0.058333334, 0.6666667), (0.058333334, 0.68333334), (0.05, 0.68333334), (0.05, 0.6666667), (0.05, 0.6666667), (0.05, 0.68333334), (0.041666668, 0.68333334), (0.041666668, 0.6666667), (0.041666668, 0.6666667), (0.041666668, 0.68333334), (0.033333335, 0.68333334), (0.033333335, 0.6666667), (0.033333335, 0.6666667), (0.033333335, 0.68333334), (0.025, 0.68333334), (0.025, 0.6666667), (0.025, 0.6666667), (0.025, 0.68333334), (0.016666668, 0.68333334), (0.016666668, 0.6666667), (0.016666668, 0.6666667), (0.016666668, 0.68333334), (0.008333334, 0.68333334), (0.008333334, 0.6666667), (0.008333334, 0.6666667), (0.008333334, 0.68333334), (0, 0.68333334), (0, 0.6666667), (1, 0.68333334), (1, 0.7), (0.9916667, 0.7), (0.9916667, 0.68333334), (0.9916667, 0.68333334), (0.9916667, 0.7), (0.98333335, 0.7), (0.98333335, 0.68333334), (0.98333335, 0.68333334), (0.98333335, 0.7), (0.975, 0.7), (0.975, 0.68333334), (0.975, 0.68333334), (0.975, 0.7), (0.96666664, 0.7), (0.96666664, 0.68333334), (0.96666664, 0.68333334), (0.96666664, 0.7), (0.9583333, 0.7), (0.9583333, 0.68333334), (0.9583333, 0.68333334), (0.9583333, 0.7), (0.95, 0.7), (0.95, 0.68333334), (0.95, 0.68333334), (0.95, 0.7), (0.94166666, 0.7), (0.94166666, 0.68333334), (0.94166666, 0.68333334), (0.94166666, 0.7), (0.93333334, 0.7), (0.93333334, 0.68333334), (0.93333334, 0.68333334), (0.93333334, 0.7), (0.925, 0.7), (0.925, 0.68333334), (0.925, 0.68333334), (0.925, 0.7), (0.9166667, 0.7), (0.9166667, 0.68333334), (0.9166667, 0.68333334), (0.9166667, 0.7), (0.90833336, 0.7), (0.90833336, 0.68333334), (0.90833336, 0.68333334), (0.90833336, 0.7), (0.9, 0.7), (0.9, 0.68333334), (0.9, 0.68333334), (0.9, 0.7), (0.89166665, 0.7), (0.89166665, 0.68333334), (0.89166665, 0.68333334), (0.89166665, 0.7), (0.8833333, 0.7), (0.8833333, 0.68333334), (0.8833333, 0.68333334), (0.8833333, 0.7), (0.875, 0.7), (0.875, 0.68333334), (0.875, 0.68333334), (0.875, 0.7), (0.8666667, 0.7), (0.8666667, 0.68333334), (0.8666667, 0.68333334), (0.8666667, 0.7), (0.85833335, 0.7), (0.85833335, 0.68333334), (0.85833335, 0.68333334), (0.85833335, 0.7), (0.85, 0.7), (0.85, 0.68333334), (0.85, 0.68333334), (0.85, 0.7), (0.84166664, 0.7), (0.84166664, 0.68333334), (0.84166664, 0.68333334), (0.84166664, 0.7), (0.8333333, 0.7), (0.8333333, 0.68333334), (0.8333333, 0.68333334), (0.8333333, 0.7), (0.825, 0.7), (0.825, 0.68333334), (0.825, 0.68333334), (0.825, 0.7), (0.81666666, 0.7), (0.81666666, 0.68333334), (0.81666666, 0.68333334), (0.81666666, 0.7), (0.80833334, 0.7), (0.80833334, 0.68333334), (0.80833334, 0.68333334), (0.80833334, 0.7), (0.8, 0.7), (0.8, 0.68333334), (0.8, 0.68333334), (0.8, 0.7), (0.7916667, 0.7), (0.7916667, 0.68333334), (0.7916667, 0.68333334), (0.7916667, 0.7), (0.78333336, 0.7), (0.78333336, 0.68333334), (0.78333336, 0.68333334), (0.78333336, 0.7), (0.775, 0.7), (0.775, 0.68333334), (0.775, 0.68333334), (0.775, 0.7), (0.76666665, 0.7), (0.76666665, 0.68333334), (0.76666665, 0.68333334), (0.76666665, 0.7), (0.7583333, 0.7), (0.7583333, 0.68333334), (0.7583333, 0.68333334), (0.7583333, 0.7), (0.75, 0.7), (0.75, 0.68333334), (0.75, 0.68333334), (0.75, 0.7), (0.7416667, 0.7), (0.7416667, 0.68333334), (0.7416667, 0.68333334), (0.7416667, 0.7), (0.73333335, 0.7), (0.73333335, 0.68333334), (0.73333335, 0.68333334), (0.73333335, 0.7), (0.725, 0.7), (0.725, 0.68333334), (0.725, 0.68333334), (0.725, 0.7), (0.71666664, 0.7), (0.71666664, 0.68333334), (0.71666664, 0.68333334), (0.71666664, 0.7), (0.7083333, 0.7), (0.7083333, 0.68333334), (0.7083333, 0.68333334), (0.7083333, 0.7), (0.7, 0.7), (0.7, 0.68333334), (0.7, 0.68333334), (0.7, 0.7), (0.69166666, 0.7), (0.69166666, 0.68333334), (0.69166666, 0.68333334), (0.69166666, 0.7), (0.68333334, 0.7), (0.68333334, 0.68333334), (0.68333334, 0.68333334), (0.68333334, 0.7), (0.675, 0.7), (0.675, 0.68333334), (0.675, 0.68333334), (0.675, 0.7), (0.6666667, 0.7), (0.6666667, 0.68333334), (0.6666667, 0.68333334), (0.6666667, 0.7), (0.65833336, 0.7), (0.65833336, 0.68333334), (0.65833336, 0.68333334), (0.65833336, 0.7), (0.65, 0.7), (0.65, 0.68333334), (0.65, 0.68333334), (0.65, 0.7), (0.64166665, 0.7), (0.64166665, 0.68333334), (0.64166665, 0.68333334), (0.64166665, 0.7), (0.6333333, 0.7), (0.6333333, 0.68333334), (0.6333333, 0.68333334), (0.6333333, 0.7), (0.625, 0.7), (0.625, 0.68333334), (0.625, 0.68333334), (0.625, 0.7), (0.6166667, 0.7), (0.6166667, 0.68333334), (0.6166667, 0.68333334), (0.6166667, 0.7), (0.60833335, 0.7), (0.60833335, 0.68333334), (0.60833335, 0.68333334), (0.60833335, 0.7), (0.6, 0.7), (0.6, 0.68333334), (0.6, 0.68333334), (0.6, 0.7), (0.59166664, 0.7), (0.59166664, 0.68333334), (0.59166664, 0.68333334), (0.59166664, 0.7), (0.5833333, 0.7), (0.5833333, 0.68333334), (0.5833333, 0.68333334), (0.5833333, 0.7), (0.575, 0.7), (0.575, 0.68333334), (0.575, 0.68333334), (0.575, 0.7), (0.56666666, 0.7), (0.56666666, 0.68333334), (0.56666666, 0.68333334), (0.56666666, 0.7), (0.55833334, 0.7), (0.55833334, 0.68333334), (0.55833334, 0.68333334), (0.55833334, 0.7), (0.55, 0.7), (0.55, 0.68333334), (0.55, 0.68333334), (0.55, 0.7), (0.5416667, 0.7), (0.5416667, 0.68333334), (0.5416667, 0.68333334), (0.5416667, 0.7), (0.53333336, 0.7), (0.53333336, 0.68333334), (0.53333336, 0.68333334), (0.53333336, 0.7), (0.525, 0.7), (0.525, 0.68333334), (0.525, 0.68333334), (0.525, 0.7), (0.51666665, 0.7), (0.51666665, 0.68333334), (0.51666665, 0.68333334), (0.51666665, 0.7), (0.5083333, 0.7), (0.5083333, 0.68333334), (0.5083333, 0.68333334), (0.5083333, 0.7), (0.5, 0.7), (0.5, 0.68333334), (0.5, 0.68333334), (0.5, 0.7), (0.49166667, 0.7), (0.49166667, 0.68333334), (0.49166667, 0.68333334), (0.49166667, 0.7), (0.48333332, 0.7), (0.48333332, 0.68333334), (0.48333332, 0.68333334), (0.48333332, 0.7), (0.475, 0.7), (0.475, 0.68333334), (0.475, 0.68333334), (0.475, 0.7), (0.46666667, 0.7), (0.46666667, 0.68333334), (0.46666667, 0.68333334), (0.46666667, 0.7), (0.45833334, 0.7), (0.45833334, 0.68333334), (0.45833334, 0.68333334), (0.45833334, 0.7), (0.45, 0.7), (0.45, 0.68333334), (0.45, 0.68333334), (0.45, 0.7), (0.44166666, 0.7), (0.44166666, 0.68333334), (0.44166666, 0.68333334), (0.44166666, 0.7), (0.43333334, 0.7), (0.43333334, 0.68333334), (0.43333334, 0.68333334), (0.43333334, 0.7), (0.425, 0.7), (0.425, 0.68333334), (0.425, 0.68333334), (0.425, 0.7), (0.41666666, 0.7), (0.41666666, 0.68333334), (0.41666666, 0.68333334), (0.41666666, 0.7), (0.40833333, 0.7), (0.40833333, 0.68333334), (0.40833333, 0.68333334), (0.40833333, 0.7), (0.4, 0.7), (0.4, 0.68333334), (0.4, 0.68333334), (0.4, 0.7), (0.39166668, 0.7), (0.39166668, 0.68333334), (0.39166668, 0.68333334), (0.39166668, 0.7), (0.38333333, 0.7), (0.38333333, 0.68333334), (0.38333333, 0.68333334), (0.38333333, 0.7), (0.375, 0.7), (0.375, 0.68333334), (0.375, 0.68333334), (0.375, 0.7), (0.36666667, 0.7), (0.36666667, 0.68333334), (0.36666667, 0.68333334), (0.36666667, 0.7), (0.35833332, 0.7), (0.35833332, 0.68333334), (0.35833332, 0.68333334), (0.35833332, 0.7), (0.35, 0.7), (0.35, 0.68333334), (0.35, 0.68333334), (0.35, 0.7), (0.34166667, 0.7), (0.34166667, 0.68333334), (0.34166667, 0.68333334), (0.34166667, 0.7), (0.33333334, 0.7), (0.33333334, 0.68333334), (0.33333334, 0.68333334), (0.33333334, 0.7), (0.325, 0.7), (0.325, 0.68333334), (0.325, 0.68333334), (0.325, 0.7), (0.31666666, 0.7), (0.31666666, 0.68333334), (0.31666666, 0.68333334), (0.31666666, 0.7), (0.30833334, 0.7), (0.30833334, 0.68333334), (0.30833334, 0.68333334), (0.30833334, 0.7), (0.3, 0.7), (0.3, 0.68333334), (0.3, 0.68333334), (0.3, 0.7), (0.29166666, 0.7), (0.29166666, 0.68333334), (0.29166666, 0.68333334), (0.29166666, 0.7), (0.28333333, 0.7), (0.28333333, 0.68333334), (0.28333333, 0.68333334), (0.28333333, 0.7), (0.275, 0.7), (0.275, 0.68333334), (0.275, 0.68333334), (0.275, 0.7), (0.26666668, 0.7), (0.26666668, 0.68333334), (0.26666668, 0.68333334), (0.26666668, 0.7), (0.25833333, 0.7), (0.25833333, 0.68333334), (0.25833333, 0.68333334), (0.25833333, 0.7), (0.25, 0.7), (0.25, 0.68333334), (0.25, 0.68333334), (0.25, 0.7), (0.24166666, 0.7), (0.24166666, 0.68333334), (0.24166666, 0.68333334), (0.24166666, 0.7), (0.23333333, 0.7), (0.23333333, 0.68333334), (0.23333333, 0.68333334), (0.23333333, 0.7), (0.225, 0.7), (0.225, 0.68333334), (0.225, 0.68333334), (0.225, 0.7), (0.21666667, 0.7), (0.21666667, 0.68333334), (0.21666667, 0.68333334), (0.21666667, 0.7), (0.20833333, 0.7), (0.20833333, 0.68333334), (0.20833333, 0.68333334), (0.20833333, 0.7), (0.2, 0.7), (0.2, 0.68333334), (0.2, 0.68333334), (0.2, 0.7), (0.19166666, 0.7), (0.19166666, 0.68333334), (0.19166666, 0.68333334), (0.19166666, 0.7), (0.18333334, 0.7), (0.18333334, 0.68333334), (0.18333334, 0.68333334), (0.18333334, 0.7), (0.175, 0.7), (0.175, 0.68333334), (0.175, 0.68333334), (0.175, 0.7), (0.16666667, 0.7), (0.16666667, 0.68333334), (0.16666667, 0.68333334), (0.16666667, 0.7), (0.15833333, 0.7), (0.15833333, 0.68333334), (0.15833333, 0.68333334), (0.15833333, 0.7), (0.15, 0.7), (0.15, 0.68333334), (0.15, 0.68333334), (0.15, 0.7), (0.14166667, 0.7), (0.14166667, 0.68333334), (0.14166667, 0.68333334), (0.14166667, 0.7), (0.13333334, 0.7), (0.13333334, 0.68333334), (0.13333334, 0.68333334), (0.13333334, 0.7), (0.125, 0.7), (0.125, 0.68333334), (0.125, 0.68333334), (0.125, 0.7), (0.11666667, 0.7), (0.11666667, 0.68333334), (0.11666667, 0.68333334), (0.11666667, 0.7), (0.108333334, 0.7), (0.108333334, 0.68333334), (0.108333334, 0.68333334), (0.108333334, 0.7), (0.1, 0.7), (0.1, 0.68333334), (0.1, 0.68333334), (0.1, 0.7), (0.09166667, 0.7), (0.09166667, 0.68333334), (0.09166667, 0.68333334), (0.09166667, 0.7), (0.083333336, 0.7), (0.083333336, 0.68333334), (0.083333336, 0.68333334), (0.083333336, 0.7), (0.075, 0.7), (0.075, 0.68333334), (0.075, 0.68333334), (0.075, 0.7), (0.06666667, 0.7), (0.06666667, 0.68333334), (0.06666667, 0.68333334), (0.06666667, 0.7), (0.058333334, 0.7), (0.058333334, 0.68333334), (0.058333334, 0.68333334), (0.058333334, 0.7), (0.05, 0.7), (0.05, 0.68333334), (0.05, 0.68333334), (0.05, 0.7), (0.041666668, 0.7), (0.041666668, 0.68333334), (0.041666668, 0.68333334), (0.041666668, 0.7), (0.033333335, 0.7), (0.033333335, 0.68333334), (0.033333335, 0.68333334), (0.033333335, 0.7), (0.025, 0.7), (0.025, 0.68333334), (0.025, 0.68333334), (0.025, 0.7), (0.016666668, 0.7), (0.016666668, 0.68333334), (0.016666668, 0.68333334), (0.016666668, 0.7), (0.008333334, 0.7), (0.008333334, 0.68333334), (0.008333334, 0.68333334), (0.008333334, 0.7), (0, 0.7), (0, 0.68333334), (1, 0.7), (1, 0.71666664), (0.9916667, 0.71666664), (0.9916667, 0.7), (0.9916667, 0.7), (0.9916667, 0.71666664), (0.98333335, 0.71666664), (0.98333335, 0.7), (0.98333335, 0.7), (0.98333335, 0.71666664), (0.975, 0.71666664), (0.975, 0.7), (0.975, 0.7), (0.975, 0.71666664), (0.96666664, 0.71666664), (0.96666664, 0.7), (0.96666664, 0.7), (0.96666664, 0.71666664), (0.9583333, 0.71666664), (0.9583333, 0.7), (0.9583333, 0.7), (0.9583333, 0.71666664), (0.95, 0.71666664), (0.95, 0.7), (0.95, 0.7), (0.95, 0.71666664), (0.94166666, 0.71666664), (0.94166666, 0.7), (0.94166666, 0.7), (0.94166666, 0.71666664), (0.93333334, 0.71666664), (0.93333334, 0.7), (0.93333334, 0.7), (0.93333334, 0.71666664), (0.925, 0.71666664), (0.925, 0.7), (0.925, 0.7), (0.925, 0.71666664), (0.9166667, 0.71666664), (0.9166667, 0.7), (0.9166667, 0.7), (0.9166667, 0.71666664), (0.90833336, 0.71666664), (0.90833336, 0.7), (0.90833336, 0.7), (0.90833336, 0.71666664), (0.9, 0.71666664), (0.9, 0.7), (0.9, 0.7), (0.9, 0.71666664), (0.89166665, 0.71666664), (0.89166665, 0.7), (0.89166665, 0.7), (0.89166665, 0.71666664), (0.8833333, 0.71666664), (0.8833333, 0.7), (0.8833333, 0.7), (0.8833333, 0.71666664), (0.875, 0.71666664), (0.875, 0.7), (0.875, 0.7), (0.875, 0.71666664), (0.8666667, 0.71666664), (0.8666667, 0.7), (0.8666667, 0.7), (0.8666667, 0.71666664), (0.85833335, 0.71666664), (0.85833335, 0.7), (0.85833335, 0.7), (0.85833335, 0.71666664), (0.85, 0.71666664), (0.85, 0.7), (0.85, 0.7), (0.85, 0.71666664), (0.84166664, 0.71666664), (0.84166664, 0.7), (0.84166664, 0.7), (0.84166664, 0.71666664), (0.8333333, 0.71666664), (0.8333333, 0.7), (0.8333333, 0.7), (0.8333333, 0.71666664), (0.825, 0.71666664), (0.825, 0.7), (0.825, 0.7), (0.825, 0.71666664), (0.81666666, 0.71666664), (0.81666666, 0.7), (0.81666666, 0.7), (0.81666666, 0.71666664), (0.80833334, 0.71666664), (0.80833334, 0.7), (0.80833334, 0.7), (0.80833334, 0.71666664), (0.8, 0.71666664), (0.8, 0.7), (0.8, 0.7), (0.8, 0.71666664), (0.7916667, 0.71666664), (0.7916667, 0.7), (0.7916667, 0.7), (0.7916667, 0.71666664), (0.78333336, 0.71666664), (0.78333336, 0.7), (0.78333336, 0.7), (0.78333336, 0.71666664), (0.775, 0.71666664), (0.775, 0.7), (0.775, 0.7), (0.775, 0.71666664), (0.76666665, 0.71666664), (0.76666665, 0.7), (0.76666665, 0.7), (0.76666665, 0.71666664), (0.7583333, 0.71666664), (0.7583333, 0.7), (0.7583333, 0.7), (0.7583333, 0.71666664), (0.75, 0.71666664), (0.75, 0.7), (0.75, 0.7), (0.75, 0.71666664), (0.7416667, 0.71666664), (0.7416667, 0.7), (0.7416667, 0.7), (0.7416667, 0.71666664), (0.73333335, 0.71666664), (0.73333335, 0.7), (0.73333335, 0.7), (0.73333335, 0.71666664), (0.725, 0.71666664), (0.725, 0.7), (0.725, 0.7), (0.725, 0.71666664), (0.71666664, 0.71666664), (0.71666664, 0.7), (0.71666664, 0.7), (0.71666664, 0.71666664), (0.7083333, 0.71666664), (0.7083333, 0.7), (0.7083333, 0.7), (0.7083333, 0.71666664), (0.7, 0.71666664), (0.7, 0.7), (0.7, 0.7), (0.7, 0.71666664), (0.69166666, 0.71666664), (0.69166666, 0.7), (0.69166666, 0.7), (0.69166666, 0.71666664), (0.68333334, 0.71666664), (0.68333334, 0.7), (0.68333334, 0.7), (0.68333334, 0.71666664), (0.675, 0.71666664), (0.675, 0.7), (0.675, 0.7), (0.675, 0.71666664), (0.6666667, 0.71666664), (0.6666667, 0.7), (0.6666667, 0.7), (0.6666667, 0.71666664), (0.65833336, 0.71666664), (0.65833336, 0.7), (0.65833336, 0.7), (0.65833336, 0.71666664), (0.65, 0.71666664), (0.65, 0.7), (0.65, 0.7), (0.65, 0.71666664), (0.64166665, 0.71666664), (0.64166665, 0.7), (0.64166665, 0.7), (0.64166665, 0.71666664), (0.6333333, 0.71666664), (0.6333333, 0.7), (0.6333333, 0.7), (0.6333333, 0.71666664), (0.625, 0.71666664), (0.625, 0.7), (0.625, 0.7), (0.625, 0.71666664), (0.6166667, 0.71666664), (0.6166667, 0.7), (0.6166667, 0.7), (0.6166667, 0.71666664), (0.60833335, 0.71666664), (0.60833335, 0.7), (0.60833335, 0.7), (0.60833335, 0.71666664), (0.6, 0.71666664), (0.6, 0.7), (0.6, 0.7), (0.6, 0.71666664), (0.59166664, 0.71666664), (0.59166664, 0.7), (0.59166664, 0.7), (0.59166664, 0.71666664), (0.5833333, 0.71666664), (0.5833333, 0.7), (0.5833333, 0.7), (0.5833333, 0.71666664), (0.575, 0.71666664), (0.575, 0.7), (0.575, 0.7), (0.575, 0.71666664), (0.56666666, 0.71666664), (0.56666666, 0.7), (0.56666666, 0.7), (0.56666666, 0.71666664), (0.55833334, 0.71666664), (0.55833334, 0.7), (0.55833334, 0.7), (0.55833334, 0.71666664), (0.55, 0.71666664), (0.55, 0.7), (0.55, 0.7), (0.55, 0.71666664), (0.5416667, 0.71666664), (0.5416667, 0.7), (0.5416667, 0.7), (0.5416667, 0.71666664), (0.53333336, 0.71666664), (0.53333336, 0.7), (0.53333336, 0.7), (0.53333336, 0.71666664), (0.525, 0.71666664), (0.525, 0.7), (0.525, 0.7), (0.525, 0.71666664), (0.51666665, 0.71666664), (0.51666665, 0.7), (0.51666665, 0.7), (0.51666665, 0.71666664), (0.5083333, 0.71666664), (0.5083333, 0.7), (0.5083333, 0.7), (0.5083333, 0.71666664), (0.5, 0.71666664), (0.5, 0.7), (0.5, 0.7), (0.5, 0.71666664), (0.49166667, 0.71666664), (0.49166667, 0.7), (0.49166667, 0.7), (0.49166667, 0.71666664), (0.48333332, 0.71666664), (0.48333332, 0.7), (0.48333332, 0.7), (0.48333332, 0.71666664), (0.475, 0.71666664), (0.475, 0.7), (0.475, 0.7), (0.475, 0.71666664), (0.46666667, 0.71666664), (0.46666667, 0.7), (0.46666667, 0.7), (0.46666667, 0.71666664), (0.45833334, 0.71666664), (0.45833334, 0.7), (0.45833334, 0.7), (0.45833334, 0.71666664), (0.45, 0.71666664), (0.45, 0.7), (0.45, 0.7), (0.45, 0.71666664), (0.44166666, 0.71666664), (0.44166666, 0.7), (0.44166666, 0.7), (0.44166666, 0.71666664), (0.43333334, 0.71666664), (0.43333334, 0.7), (0.43333334, 0.7), (0.43333334, 0.71666664), (0.425, 0.71666664), (0.425, 0.7), (0.425, 0.7), (0.425, 0.71666664), (0.41666666, 0.71666664), (0.41666666, 0.7), (0.41666666, 0.7), (0.41666666, 0.71666664), (0.40833333, 0.71666664), (0.40833333, 0.7), (0.40833333, 0.7), (0.40833333, 0.71666664), (0.4, 0.71666664), (0.4, 0.7), (0.4, 0.7), (0.4, 0.71666664), (0.39166668, 0.71666664), (0.39166668, 0.7), (0.39166668, 0.7), (0.39166668, 0.71666664), (0.38333333, 0.71666664), (0.38333333, 0.7), (0.38333333, 0.7), (0.38333333, 0.71666664), (0.375, 0.71666664), (0.375, 0.7), (0.375, 0.7), (0.375, 0.71666664), (0.36666667, 0.71666664), (0.36666667, 0.7), (0.36666667, 0.7), (0.36666667, 0.71666664), (0.35833332, 0.71666664), (0.35833332, 0.7), (0.35833332, 0.7), (0.35833332, 0.71666664), (0.35, 0.71666664), (0.35, 0.7), (0.35, 0.7), (0.35, 0.71666664), (0.34166667, 0.71666664), (0.34166667, 0.7), (0.34166667, 0.7), (0.34166667, 0.71666664), (0.33333334, 0.71666664), (0.33333334, 0.7), (0.33333334, 0.7), (0.33333334, 0.71666664), (0.325, 0.71666664), (0.325, 0.7), (0.325, 0.7), (0.325, 0.71666664), (0.31666666, 0.71666664), (0.31666666, 0.7), (0.31666666, 0.7), (0.31666666, 0.71666664), (0.30833334, 0.71666664), (0.30833334, 0.7), (0.30833334, 0.7), (0.30833334, 0.71666664), (0.3, 0.71666664), (0.3, 0.7), (0.3, 0.7), (0.3, 0.71666664), (0.29166666, 0.71666664), (0.29166666, 0.7), (0.29166666, 0.7), (0.29166666, 0.71666664), (0.28333333, 0.71666664), (0.28333333, 0.7), (0.28333333, 0.7), (0.28333333, 0.71666664), (0.275, 0.71666664), (0.275, 0.7), (0.275, 0.7), (0.275, 0.71666664), (0.26666668, 0.71666664), (0.26666668, 0.7), (0.26666668, 0.7), (0.26666668, 0.71666664), (0.25833333, 0.71666664), (0.25833333, 0.7), (0.25833333, 0.7), (0.25833333, 0.71666664), (0.25, 0.71666664), (0.25, 0.7), (0.25, 0.7), (0.25, 0.71666664), (0.24166666, 0.71666664), (0.24166666, 0.7), (0.24166666, 0.7), (0.24166666, 0.71666664), (0.23333333, 0.71666664), (0.23333333, 0.7), (0.23333333, 0.7), (0.23333333, 0.71666664), (0.225, 0.71666664), (0.225, 0.7), (0.225, 0.7), (0.225, 0.71666664), (0.21666667, 0.71666664), (0.21666667, 0.7), (0.21666667, 0.7), (0.21666667, 0.71666664), (0.20833333, 0.71666664), (0.20833333, 0.7), (0.20833333, 0.7), (0.20833333, 0.71666664), (0.2, 0.71666664), (0.2, 0.7), (0.2, 0.7), (0.2, 0.71666664), (0.19166666, 0.71666664), (0.19166666, 0.7), (0.19166666, 0.7), (0.19166666, 0.71666664), (0.18333334, 0.71666664), (0.18333334, 0.7), (0.18333334, 0.7), (0.18333334, 0.71666664), (0.175, 0.71666664), (0.175, 0.7), (0.175, 0.7), (0.175, 0.71666664), (0.16666667, 0.71666664), (0.16666667, 0.7), (0.16666667, 0.7), (0.16666667, 0.71666664), (0.15833333, 0.71666664), (0.15833333, 0.7), (0.15833333, 0.7), (0.15833333, 0.71666664), (0.15, 0.71666664), (0.15, 0.7), (0.15, 0.7), (0.15, 0.71666664), (0.14166667, 0.71666664), (0.14166667, 0.7), (0.14166667, 0.7), (0.14166667, 0.71666664), (0.13333334, 0.71666664), (0.13333334, 0.7), (0.13333334, 0.7), (0.13333334, 0.71666664), (0.125, 0.71666664), (0.125, 0.7), (0.125, 0.7), (0.125, 0.71666664), (0.11666667, 0.71666664), (0.11666667, 0.7), (0.11666667, 0.7), (0.11666667, 0.71666664), (0.108333334, 0.71666664), (0.108333334, 0.7), (0.108333334, 0.7), (0.108333334, 0.71666664), (0.1, 0.71666664), (0.1, 0.7), (0.1, 0.7), (0.1, 0.71666664), (0.09166667, 0.71666664), (0.09166667, 0.7), (0.09166667, 0.7), (0.09166667, 0.71666664), (0.083333336, 0.71666664), (0.083333336, 0.7), (0.083333336, 0.7), (0.083333336, 0.71666664), (0.075, 0.71666664), (0.075, 0.7), (0.075, 0.7), (0.075, 0.71666664), (0.06666667, 0.71666664), (0.06666667, 0.7), (0.06666667, 0.7), (0.06666667, 0.71666664), (0.058333334, 0.71666664), (0.058333334, 0.7), (0.058333334, 0.7), (0.058333334, 0.71666664), (0.05, 0.71666664), (0.05, 0.7), (0.05, 0.7), (0.05, 0.71666664), (0.041666668, 0.71666664), (0.041666668, 0.7), (0.041666668, 0.7), (0.041666668, 0.71666664), (0.033333335, 0.71666664), (0.033333335, 0.7), (0.033333335, 0.7), (0.033333335, 0.71666664), (0.025, 0.71666664), (0.025, 0.7), (0.025, 0.7), (0.025, 0.71666664), (0.016666668, 0.71666664), (0.016666668, 0.7), (0.016666668, 0.7), (0.016666668, 0.71666664), (0.008333334, 0.71666664), (0.008333334, 0.7), (0.008333334, 0.7), (0.008333334, 0.71666664), (0, 0.71666664), (0, 0.7), (1, 0.71666664), (1, 0.73333335), (0.9916667, 0.73333335), (0.9916667, 0.71666664), (0.9916667, 0.71666664), (0.9916667, 0.73333335), (0.98333335, 0.73333335), (0.98333335, 0.71666664), (0.98333335, 0.71666664), (0.98333335, 0.73333335), (0.975, 0.73333335), (0.975, 0.71666664), (0.975, 0.71666664), (0.975, 0.73333335), (0.96666664, 0.73333335), (0.96666664, 0.71666664), (0.96666664, 0.71666664), (0.96666664, 0.73333335), (0.9583333, 0.73333335), (0.9583333, 0.71666664), (0.9583333, 0.71666664), (0.9583333, 0.73333335), (0.95, 0.73333335), (0.95, 0.71666664), (0.95, 0.71666664), (0.95, 0.73333335), (0.94166666, 0.73333335), (0.94166666, 0.71666664), (0.94166666, 0.71666664), (0.94166666, 0.73333335), (0.93333334, 0.73333335), (0.93333334, 0.71666664), (0.93333334, 0.71666664), (0.93333334, 0.73333335), (0.925, 0.73333335), (0.925, 0.71666664), (0.925, 0.71666664), (0.925, 0.73333335), (0.9166667, 0.73333335), (0.9166667, 0.71666664), (0.9166667, 0.71666664), (0.9166667, 0.73333335), (0.90833336, 0.73333335), (0.90833336, 0.71666664), (0.90833336, 0.71666664), (0.90833336, 0.73333335), (0.9, 0.73333335), (0.9, 0.71666664), (0.9, 0.71666664), (0.9, 0.73333335), (0.89166665, 0.73333335), (0.89166665, 0.71666664), (0.89166665, 0.71666664), (0.89166665, 0.73333335), (0.8833333, 0.73333335), (0.8833333, 0.71666664), (0.8833333, 0.71666664), (0.8833333, 0.73333335), (0.875, 0.73333335), (0.875, 0.71666664), (0.875, 0.71666664), (0.875, 0.73333335), (0.8666667, 0.73333335), (0.8666667, 0.71666664), (0.8666667, 0.71666664), (0.8666667, 0.73333335), (0.85833335, 0.73333335), (0.85833335, 0.71666664), (0.85833335, 0.71666664), (0.85833335, 0.73333335), (0.85, 0.73333335), (0.85, 0.71666664), (0.85, 0.71666664), (0.85, 0.73333335), (0.84166664, 0.73333335), (0.84166664, 0.71666664), (0.84166664, 0.71666664), (0.84166664, 0.73333335), (0.8333333, 0.73333335), (0.8333333, 0.71666664), (0.8333333, 0.71666664), (0.8333333, 0.73333335), (0.825, 0.73333335), (0.825, 0.71666664), (0.825, 0.71666664), (0.825, 0.73333335), (0.81666666, 0.73333335), (0.81666666, 0.71666664), (0.81666666, 0.71666664), (0.81666666, 0.73333335), (0.80833334, 0.73333335), (0.80833334, 0.71666664), (0.80833334, 0.71666664), (0.80833334, 0.73333335), (0.8, 0.73333335), (0.8, 0.71666664), (0.8, 0.71666664), (0.8, 0.73333335), (0.7916667, 0.73333335), (0.7916667, 0.71666664), (0.7916667, 0.71666664), (0.7916667, 0.73333335), (0.78333336, 0.73333335), (0.78333336, 0.71666664), (0.78333336, 0.71666664), (0.78333336, 0.73333335), (0.775, 0.73333335), (0.775, 0.71666664), (0.775, 0.71666664), (0.775, 0.73333335), (0.76666665, 0.73333335), (0.76666665, 0.71666664), (0.76666665, 0.71666664), (0.76666665, 0.73333335), (0.7583333, 0.73333335), (0.7583333, 0.71666664), (0.7583333, 0.71666664), (0.7583333, 0.73333335), (0.75, 0.73333335), (0.75, 0.71666664), (0.75, 0.71666664), (0.75, 0.73333335), (0.7416667, 0.73333335), (0.7416667, 0.71666664), (0.7416667, 0.71666664), (0.7416667, 0.73333335), (0.73333335, 0.73333335), (0.73333335, 0.71666664), (0.73333335, 0.71666664), (0.73333335, 0.73333335), (0.725, 0.73333335), (0.725, 0.71666664), (0.725, 0.71666664), (0.725, 0.73333335), (0.71666664, 0.73333335), (0.71666664, 0.71666664), (0.71666664, 0.71666664), (0.71666664, 0.73333335), (0.7083333, 0.73333335), (0.7083333, 0.71666664), (0.7083333, 0.71666664), (0.7083333, 0.73333335), (0.7, 0.73333335), (0.7, 0.71666664), (0.7, 0.71666664), (0.7, 0.73333335), (0.69166666, 0.73333335), (0.69166666, 0.71666664), (0.69166666, 0.71666664), (0.69166666, 0.73333335), (0.68333334, 0.73333335), (0.68333334, 0.71666664), (0.68333334, 0.71666664), (0.68333334, 0.73333335), (0.675, 0.73333335), (0.675, 0.71666664), (0.675, 0.71666664), (0.675, 0.73333335), (0.6666667, 0.73333335), (0.6666667, 0.71666664), (0.6666667, 0.71666664), (0.6666667, 0.73333335), (0.65833336, 0.73333335), (0.65833336, 0.71666664), (0.65833336, 0.71666664), (0.65833336, 0.73333335), (0.65, 0.73333335), (0.65, 0.71666664), (0.65, 0.71666664), (0.65, 0.73333335), (0.64166665, 0.73333335), (0.64166665, 0.71666664), (0.64166665, 0.71666664), (0.64166665, 0.73333335), (0.6333333, 0.73333335), (0.6333333, 0.71666664), (0.6333333, 0.71666664), (0.6333333, 0.73333335), (0.625, 0.73333335), (0.625, 0.71666664), (0.625, 0.71666664), (0.625, 0.73333335), (0.6166667, 0.73333335), (0.6166667, 0.71666664), (0.6166667, 0.71666664), (0.6166667, 0.73333335), (0.60833335, 0.73333335), (0.60833335, 0.71666664), (0.60833335, 0.71666664), (0.60833335, 0.73333335), (0.6, 0.73333335), (0.6, 0.71666664), (0.6, 0.71666664), (0.6, 0.73333335), (0.59166664, 0.73333335), (0.59166664, 0.71666664), (0.59166664, 0.71666664), (0.59166664, 0.73333335), (0.5833333, 0.73333335), (0.5833333, 0.71666664), (0.5833333, 0.71666664), (0.5833333, 0.73333335), (0.575, 0.73333335), (0.575, 0.71666664), (0.575, 0.71666664), (0.575, 0.73333335), (0.56666666, 0.73333335), (0.56666666, 0.71666664), (0.56666666, 0.71666664), (0.56666666, 0.73333335), (0.55833334, 0.73333335), (0.55833334, 0.71666664), (0.55833334, 0.71666664), (0.55833334, 0.73333335), (0.55, 0.73333335), (0.55, 0.71666664), (0.55, 0.71666664), (0.55, 0.73333335), (0.5416667, 0.73333335), (0.5416667, 0.71666664), (0.5416667, 0.71666664), (0.5416667, 0.73333335), (0.53333336, 0.73333335), (0.53333336, 0.71666664), (0.53333336, 0.71666664), (0.53333336, 0.73333335), (0.525, 0.73333335), (0.525, 0.71666664), (0.525, 0.71666664), (0.525, 0.73333335), (0.51666665, 0.73333335), (0.51666665, 0.71666664), (0.51666665, 0.71666664), (0.51666665, 0.73333335), (0.5083333, 0.73333335), (0.5083333, 0.71666664), (0.5083333, 0.71666664), (0.5083333, 0.73333335), (0.5, 0.73333335), (0.5, 0.71666664), (0.5, 0.71666664), (0.5, 0.73333335), (0.49166667, 0.73333335), (0.49166667, 0.71666664), (0.49166667, 0.71666664), (0.49166667, 0.73333335), (0.48333332, 0.73333335), (0.48333332, 0.71666664), (0.48333332, 0.71666664), (0.48333332, 0.73333335), (0.475, 0.73333335), (0.475, 0.71666664), (0.475, 0.71666664), (0.475, 0.73333335), (0.46666667, 0.73333335), (0.46666667, 0.71666664), (0.46666667, 0.71666664), (0.46666667, 0.73333335), (0.45833334, 0.73333335), (0.45833334, 0.71666664), (0.45833334, 0.71666664), (0.45833334, 0.73333335), (0.45, 0.73333335), (0.45, 0.71666664), (0.45, 0.71666664), (0.45, 0.73333335), (0.44166666, 0.73333335), (0.44166666, 0.71666664), (0.44166666, 0.71666664), (0.44166666, 0.73333335), (0.43333334, 0.73333335), (0.43333334, 0.71666664), (0.43333334, 0.71666664), (0.43333334, 0.73333335), (0.425, 0.73333335), (0.425, 0.71666664), (0.425, 0.71666664), (0.425, 0.73333335), (0.41666666, 0.73333335), (0.41666666, 0.71666664), (0.41666666, 0.71666664), (0.41666666, 0.73333335), (0.40833333, 0.73333335), (0.40833333, 0.71666664), (0.40833333, 0.71666664), (0.40833333, 0.73333335), (0.4, 0.73333335), (0.4, 0.71666664), (0.4, 0.71666664), (0.4, 0.73333335), (0.39166668, 0.73333335), (0.39166668, 0.71666664), (0.39166668, 0.71666664), (0.39166668, 0.73333335), (0.38333333, 0.73333335), (0.38333333, 0.71666664), (0.38333333, 0.71666664), (0.38333333, 0.73333335), (0.375, 0.73333335), (0.375, 0.71666664), (0.375, 0.71666664), (0.375, 0.73333335), (0.36666667, 0.73333335), (0.36666667, 0.71666664), (0.36666667, 0.71666664), (0.36666667, 0.73333335), (0.35833332, 0.73333335), (0.35833332, 0.71666664), (0.35833332, 0.71666664), (0.35833332, 0.73333335), (0.35, 0.73333335), (0.35, 0.71666664), (0.35, 0.71666664), (0.35, 0.73333335), (0.34166667, 0.73333335), (0.34166667, 0.71666664), (0.34166667, 0.71666664), (0.34166667, 0.73333335), (0.33333334, 0.73333335), (0.33333334, 0.71666664), (0.33333334, 0.71666664), (0.33333334, 0.73333335), (0.325, 0.73333335), (0.325, 0.71666664), (0.325, 0.71666664), (0.325, 0.73333335), (0.31666666, 0.73333335), (0.31666666, 0.71666664), (0.31666666, 0.71666664), (0.31666666, 0.73333335), (0.30833334, 0.73333335), (0.30833334, 0.71666664), (0.30833334, 0.71666664), (0.30833334, 0.73333335), (0.3, 0.73333335), (0.3, 0.71666664), (0.3, 0.71666664), (0.3, 0.73333335), (0.29166666, 0.73333335), (0.29166666, 0.71666664), (0.29166666, 0.71666664), (0.29166666, 0.73333335), (0.28333333, 0.73333335), (0.28333333, 0.71666664), (0.28333333, 0.71666664), (0.28333333, 0.73333335), (0.275, 0.73333335), (0.275, 0.71666664), (0.275, 0.71666664), (0.275, 0.73333335), (0.26666668, 0.73333335), (0.26666668, 0.71666664), (0.26666668, 0.71666664), (0.26666668, 0.73333335), (0.25833333, 0.73333335), (0.25833333, 0.71666664), (0.25833333, 0.71666664), (0.25833333, 0.73333335), (0.25, 0.73333335), (0.25, 0.71666664), (0.25, 0.71666664), (0.25, 0.73333335), (0.24166666, 0.73333335), (0.24166666, 0.71666664), (0.24166666, 0.71666664), (0.24166666, 0.73333335), (0.23333333, 0.73333335), (0.23333333, 0.71666664), (0.23333333, 0.71666664), (0.23333333, 0.73333335), (0.225, 0.73333335), (0.225, 0.71666664), (0.225, 0.71666664), (0.225, 0.73333335), (0.21666667, 0.73333335), (0.21666667, 0.71666664), (0.21666667, 0.71666664), (0.21666667, 0.73333335), (0.20833333, 0.73333335), (0.20833333, 0.71666664), (0.20833333, 0.71666664), (0.20833333, 0.73333335), (0.2, 0.73333335), (0.2, 0.71666664), (0.2, 0.71666664), (0.2, 0.73333335), (0.19166666, 0.73333335), (0.19166666, 0.71666664), (0.19166666, 0.71666664), (0.19166666, 0.73333335), (0.18333334, 0.73333335), (0.18333334, 0.71666664), (0.18333334, 0.71666664), (0.18333334, 0.73333335), (0.175, 0.73333335), (0.175, 0.71666664), (0.175, 0.71666664), (0.175, 0.73333335), (0.16666667, 0.73333335), (0.16666667, 0.71666664), (0.16666667, 0.71666664), (0.16666667, 0.73333335), (0.15833333, 0.73333335), (0.15833333, 0.71666664), (0.15833333, 0.71666664), (0.15833333, 0.73333335), (0.15, 0.73333335), (0.15, 0.71666664), (0.15, 0.71666664), (0.15, 0.73333335), (0.14166667, 0.73333335), (0.14166667, 0.71666664), (0.14166667, 0.71666664), (0.14166667, 0.73333335), (0.13333334, 0.73333335), (0.13333334, 0.71666664), (0.13333334, 0.71666664), (0.13333334, 0.73333335), (0.125, 0.73333335), (0.125, 0.71666664), (0.125, 0.71666664), (0.125, 0.73333335), (0.11666667, 0.73333335), (0.11666667, 0.71666664), (0.11666667, 0.71666664), (0.11666667, 0.73333335), (0.108333334, 0.73333335), (0.108333334, 0.71666664), (0.108333334, 0.71666664), (0.108333334, 0.73333335), (0.1, 0.73333335), (0.1, 0.71666664), (0.1, 0.71666664), (0.1, 0.73333335), (0.09166667, 0.73333335), (0.09166667, 0.71666664), (0.09166667, 0.71666664), (0.09166667, 0.73333335), (0.083333336, 0.73333335), (0.083333336, 0.71666664), (0.083333336, 0.71666664), (0.083333336, 0.73333335), (0.075, 0.73333335), (0.075, 0.71666664), (0.075, 0.71666664), (0.075, 0.73333335), (0.06666667, 0.73333335), (0.06666667, 0.71666664), (0.06666667, 0.71666664), (0.06666667, 0.73333335), (0.058333334, 0.73333335), (0.058333334, 0.71666664), (0.058333334, 0.71666664), (0.058333334, 0.73333335), (0.05, 0.73333335), (0.05, 0.71666664), (0.05, 0.71666664), (0.05, 0.73333335), (0.041666668, 0.73333335), (0.041666668, 0.71666664), (0.041666668, 0.71666664), (0.041666668, 0.73333335), (0.033333335, 0.73333335), (0.033333335, 0.71666664), (0.033333335, 0.71666664), (0.033333335, 0.73333335), (0.025, 0.73333335), (0.025, 0.71666664), (0.025, 0.71666664), (0.025, 0.73333335), (0.016666668, 0.73333335), (0.016666668, 0.71666664), (0.016666668, 0.71666664), (0.016666668, 0.73333335), (0.008333334, 0.73333335), (0.008333334, 0.71666664), (0.008333334, 0.71666664), (0.008333334, 0.73333335), (0, 0.73333335), (0, 0.71666664), (1, 0.73333335), (1, 0.75), (0.9916667, 0.75), (0.9916667, 0.73333335), (0.9916667, 0.73333335), (0.9916667, 0.75), (0.98333335, 0.75), (0.98333335, 0.73333335), (0.98333335, 0.73333335), (0.98333335, 0.75), (0.975, 0.75), (0.975, 0.73333335), (0.975, 0.73333335), (0.975, 0.75), (0.96666664, 0.75), (0.96666664, 0.73333335), (0.96666664, 0.73333335), (0.96666664, 0.75), (0.9583333, 0.75), (0.9583333, 0.73333335), (0.9583333, 0.73333335), (0.9583333, 0.75), (0.95, 0.75), (0.95, 0.73333335), (0.95, 0.73333335), (0.95, 0.75), (0.94166666, 0.75), (0.94166666, 0.73333335), (0.94166666, 0.73333335), (0.94166666, 0.75), (0.93333334, 0.75), (0.93333334, 0.73333335), (0.93333334, 0.73333335), (0.93333334, 0.75), (0.925, 0.75), (0.925, 0.73333335), (0.925, 0.73333335), (0.925, 0.75), (0.9166667, 0.75), (0.9166667, 0.73333335), (0.9166667, 0.73333335), (0.9166667, 0.75), (0.90833336, 0.75), (0.90833336, 0.73333335), (0.90833336, 0.73333335), (0.90833336, 0.75), (0.9, 0.75), (0.9, 0.73333335), (0.9, 0.73333335), (0.9, 0.75), (0.89166665, 0.75), (0.89166665, 0.73333335), (0.89166665, 0.73333335), (0.89166665, 0.75), (0.8833333, 0.75), (0.8833333, 0.73333335), (0.8833333, 0.73333335), (0.8833333, 0.75), (0.875, 0.75), (0.875, 0.73333335), (0.875, 0.73333335), (0.875, 0.75), (0.8666667, 0.75), (0.8666667, 0.73333335), (0.8666667, 0.73333335), (0.8666667, 0.75), (0.85833335, 0.75), (0.85833335, 0.73333335), (0.85833335, 0.73333335), (0.85833335, 0.75), (0.85, 0.75), (0.85, 0.73333335), (0.85, 0.73333335), (0.85, 0.75), (0.84166664, 0.75), (0.84166664, 0.73333335), (0.84166664, 0.73333335), (0.84166664, 0.75), (0.8333333, 0.75), (0.8333333, 0.73333335), (0.8333333, 0.73333335), (0.8333333, 0.75), (0.825, 0.75), (0.825, 0.73333335), (0.825, 0.73333335), (0.825, 0.75), (0.81666666, 0.75), (0.81666666, 0.73333335), (0.81666666, 0.73333335), (0.81666666, 0.75), (0.80833334, 0.75), (0.80833334, 0.73333335), (0.80833334, 0.73333335), (0.80833334, 0.75), (0.8, 0.75), (0.8, 0.73333335), (0.8, 0.73333335), (0.8, 0.75), (0.7916667, 0.75), (0.7916667, 0.73333335), (0.7916667, 0.73333335), (0.7916667, 0.75), (0.78333336, 0.75), (0.78333336, 0.73333335), (0.78333336, 0.73333335), (0.78333336, 0.75), (0.775, 0.75), (0.775, 0.73333335), (0.775, 0.73333335), (0.775, 0.75), (0.76666665, 0.75), (0.76666665, 0.73333335), (0.76666665, 0.73333335), (0.76666665, 0.75), (0.7583333, 0.75), (0.7583333, 0.73333335), (0.7583333, 0.73333335), (0.7583333, 0.75), (0.75, 0.75), (0.75, 0.73333335), (0.75, 0.73333335), (0.75, 0.75), (0.7416667, 0.75), (0.7416667, 0.73333335), (0.7416667, 0.73333335), (0.7416667, 0.75), (0.73333335, 0.75), (0.73333335, 0.73333335), (0.73333335, 0.73333335), (0.73333335, 0.75), (0.725, 0.75), (0.725, 0.73333335), (0.725, 0.73333335), (0.725, 0.75), (0.71666664, 0.75), (0.71666664, 0.73333335), (0.71666664, 0.73333335), (0.71666664, 0.75), (0.7083333, 0.75), (0.7083333, 0.73333335), (0.7083333, 0.73333335), (0.7083333, 0.75), (0.7, 0.75), (0.7, 0.73333335), (0.7, 0.73333335), (0.7, 0.75), (0.69166666, 0.75), (0.69166666, 0.73333335), (0.69166666, 0.73333335), (0.69166666, 0.75), (0.68333334, 0.75), (0.68333334, 0.73333335), (0.68333334, 0.73333335), (0.68333334, 0.75), (0.675, 0.75), (0.675, 0.73333335), (0.675, 0.73333335), (0.675, 0.75), (0.6666667, 0.75), (0.6666667, 0.73333335), (0.6666667, 0.73333335), (0.6666667, 0.75), (0.65833336, 0.75), (0.65833336, 0.73333335), (0.65833336, 0.73333335), (0.65833336, 0.75), (0.65, 0.75), (0.65, 0.73333335), (0.65, 0.73333335), (0.65, 0.75), (0.64166665, 0.75), (0.64166665, 0.73333335), (0.64166665, 0.73333335), (0.64166665, 0.75), (0.6333333, 0.75), (0.6333333, 0.73333335), (0.6333333, 0.73333335), (0.6333333, 0.75), (0.625, 0.75), (0.625, 0.73333335), (0.625, 0.73333335), (0.625, 0.75), (0.6166667, 0.75), (0.6166667, 0.73333335), (0.6166667, 0.73333335), (0.6166667, 0.75), (0.60833335, 0.75), (0.60833335, 0.73333335), (0.60833335, 0.73333335), (0.60833335, 0.75), (0.6, 0.75), (0.6, 0.73333335), (0.6, 0.73333335), (0.6, 0.75), (0.59166664, 0.75), (0.59166664, 0.73333335), (0.59166664, 0.73333335), (0.59166664, 0.75), (0.5833333, 0.75), (0.5833333, 0.73333335), (0.5833333, 0.73333335), (0.5833333, 0.75), (0.575, 0.75), (0.575, 0.73333335), (0.575, 0.73333335), (0.575, 0.75), (0.56666666, 0.75), (0.56666666, 0.73333335), (0.56666666, 0.73333335), (0.56666666, 0.75), (0.55833334, 0.75), (0.55833334, 0.73333335), (0.55833334, 0.73333335), (0.55833334, 0.75), (0.55, 0.75), (0.55, 0.73333335), (0.55, 0.73333335), (0.55, 0.75), (0.5416667, 0.75), (0.5416667, 0.73333335), (0.5416667, 0.73333335), (0.5416667, 0.75), (0.53333336, 0.75), (0.53333336, 0.73333335), (0.53333336, 0.73333335), (0.53333336, 0.75), (0.525, 0.75), (0.525, 0.73333335), (0.525, 0.73333335), (0.525, 0.75), (0.51666665, 0.75), (0.51666665, 0.73333335), (0.51666665, 0.73333335), (0.51666665, 0.75), (0.5083333, 0.75), (0.5083333, 0.73333335), (0.5083333, 0.73333335), (0.5083333, 0.75), (0.5, 0.75), (0.5, 0.73333335), (0.5, 0.73333335), (0.5, 0.75), (0.49166667, 0.75), (0.49166667, 0.73333335), (0.49166667, 0.73333335), (0.49166667, 0.75), (0.48333332, 0.75), (0.48333332, 0.73333335), (0.48333332, 0.73333335), (0.48333332, 0.75), (0.475, 0.75), (0.475, 0.73333335), (0.475, 0.73333335), (0.475, 0.75), (0.46666667, 0.75), (0.46666667, 0.73333335), (0.46666667, 0.73333335), (0.46666667, 0.75), (0.45833334, 0.75), (0.45833334, 0.73333335), (0.45833334, 0.73333335), (0.45833334, 0.75), (0.45, 0.75), (0.45, 0.73333335), (0.45, 0.73333335), (0.45, 0.75), (0.44166666, 0.75), (0.44166666, 0.73333335), (0.44166666, 0.73333335), (0.44166666, 0.75), (0.43333334, 0.75), (0.43333334, 0.73333335), (0.43333334, 0.73333335), (0.43333334, 0.75), (0.425, 0.75), (0.425, 0.73333335), (0.425, 0.73333335), (0.425, 0.75), (0.41666666, 0.75), (0.41666666, 0.73333335), (0.41666666, 0.73333335), (0.41666666, 0.75), (0.40833333, 0.75), (0.40833333, 0.73333335), (0.40833333, 0.73333335), (0.40833333, 0.75), (0.4, 0.75), (0.4, 0.73333335), (0.4, 0.73333335), (0.4, 0.75), (0.39166668, 0.75), (0.39166668, 0.73333335), (0.39166668, 0.73333335), (0.39166668, 0.75), (0.38333333, 0.75), (0.38333333, 0.73333335), (0.38333333, 0.73333335), (0.38333333, 0.75), (0.375, 0.75), (0.375, 0.73333335), (0.375, 0.73333335), (0.375, 0.75), (0.36666667, 0.75), (0.36666667, 0.73333335), (0.36666667, 0.73333335), (0.36666667, 0.75), (0.35833332, 0.75), (0.35833332, 0.73333335), (0.35833332, 0.73333335), (0.35833332, 0.75), (0.35, 0.75), (0.35, 0.73333335), (0.35, 0.73333335), (0.35, 0.75), (0.34166667, 0.75), (0.34166667, 0.73333335), (0.34166667, 0.73333335), (0.34166667, 0.75), (0.33333334, 0.75), (0.33333334, 0.73333335), (0.33333334, 0.73333335), (0.33333334, 0.75), (0.325, 0.75), (0.325, 0.73333335), (0.325, 0.73333335), (0.325, 0.75), (0.31666666, 0.75), (0.31666666, 0.73333335), (0.31666666, 0.73333335), (0.31666666, 0.75), (0.30833334, 0.75), (0.30833334, 0.73333335), (0.30833334, 0.73333335), (0.30833334, 0.75), (0.3, 0.75), (0.3, 0.73333335), (0.3, 0.73333335), (0.3, 0.75), (0.29166666, 0.75), (0.29166666, 0.73333335), (0.29166666, 0.73333335), (0.29166666, 0.75), (0.28333333, 0.75), (0.28333333, 0.73333335), (0.28333333, 0.73333335), (0.28333333, 0.75), (0.275, 0.75), (0.275, 0.73333335), (0.275, 0.73333335), (0.275, 0.75), (0.26666668, 0.75), (0.26666668, 0.73333335), (0.26666668, 0.73333335), (0.26666668, 0.75), (0.25833333, 0.75), (0.25833333, 0.73333335), (0.25833333, 0.73333335), (0.25833333, 0.75), (0.25, 0.75), (0.25, 0.73333335), (0.25, 0.73333335), (0.25, 0.75), (0.24166666, 0.75), (0.24166666, 0.73333335), (0.24166666, 0.73333335), (0.24166666, 0.75), (0.23333333, 0.75), (0.23333333, 0.73333335), (0.23333333, 0.73333335), (0.23333333, 0.75), (0.225, 0.75), (0.225, 0.73333335), (0.225, 0.73333335), (0.225, 0.75), (0.21666667, 0.75), (0.21666667, 0.73333335), (0.21666667, 0.73333335), (0.21666667, 0.75), (0.20833333, 0.75), (0.20833333, 0.73333335), (0.20833333, 0.73333335), (0.20833333, 0.75), (0.2, 0.75), (0.2, 0.73333335), (0.2, 0.73333335), (0.2, 0.75), (0.19166666, 0.75), (0.19166666, 0.73333335), (0.19166666, 0.73333335), (0.19166666, 0.75), (0.18333334, 0.75), (0.18333334, 0.73333335), (0.18333334, 0.73333335), (0.18333334, 0.75), (0.175, 0.75), (0.175, 0.73333335), (0.175, 0.73333335), (0.175, 0.75), (0.16666667, 0.75), (0.16666667, 0.73333335), (0.16666667, 0.73333335), (0.16666667, 0.75), (0.15833333, 0.75), (0.15833333, 0.73333335), (0.15833333, 0.73333335), (0.15833333, 0.75), (0.15, 0.75), (0.15, 0.73333335), (0.15, 0.73333335), (0.15, 0.75), (0.14166667, 0.75), (0.14166667, 0.73333335), (0.14166667, 0.73333335), (0.14166667, 0.75), (0.13333334, 0.75), (0.13333334, 0.73333335), (0.13333334, 0.73333335), (0.13333334, 0.75), (0.125, 0.75), (0.125, 0.73333335), (0.125, 0.73333335), (0.125, 0.75), (0.11666667, 0.75), (0.11666667, 0.73333335), (0.11666667, 0.73333335), (0.11666667, 0.75), (0.108333334, 0.75), (0.108333334, 0.73333335), (0.108333334, 0.73333335), (0.108333334, 0.75), (0.1, 0.75), (0.1, 0.73333335), (0.1, 0.73333335), (0.1, 0.75), (0.09166667, 0.75), (0.09166667, 0.73333335), (0.09166667, 0.73333335), (0.09166667, 0.75), (0.083333336, 0.75), (0.083333336, 0.73333335), (0.083333336, 0.73333335), (0.083333336, 0.75), (0.075, 0.75), (0.075, 0.73333335), (0.075, 0.73333335), (0.075, 0.75), (0.06666667, 0.75), (0.06666667, 0.73333335), (0.06666667, 0.73333335), (0.06666667, 0.75), (0.058333334, 0.75), (0.058333334, 0.73333335), (0.058333334, 0.73333335), (0.058333334, 0.75), (0.05, 0.75), (0.05, 0.73333335), (0.05, 0.73333335), (0.05, 0.75), (0.041666668, 0.75), (0.041666668, 0.73333335), (0.041666668, 0.73333335), (0.041666668, 0.75), (0.033333335, 0.75), (0.033333335, 0.73333335), (0.033333335, 0.73333335), (0.033333335, 0.75), (0.025, 0.75), (0.025, 0.73333335), (0.025, 0.73333335), (0.025, 0.75), (0.016666668, 0.75), (0.016666668, 0.73333335), (0.016666668, 0.73333335), (0.016666668, 0.75), (0.008333334, 0.75), (0.008333334, 0.73333335), (0.008333334, 0.73333335), (0.008333334, 0.75), (0, 0.75), (0, 0.73333335), (1, 0.75), (1, 0.76666665), (0.9916667, 0.76666665), (0.9916667, 0.75), (0.9916667, 0.75), (0.9916667, 0.76666665), (0.98333335, 0.76666665), (0.98333335, 0.75), (0.98333335, 0.75), (0.98333335, 0.76666665), (0.975, 0.76666665), (0.975, 0.75), (0.975, 0.75), (0.975, 0.76666665), (0.96666664, 0.76666665), (0.96666664, 0.75), (0.96666664, 0.75), (0.96666664, 0.76666665), (0.9583333, 0.76666665), (0.9583333, 0.75), (0.9583333, 0.75), (0.9583333, 0.76666665), (0.95, 0.76666665), (0.95, 0.75), (0.95, 0.75), (0.95, 0.76666665), (0.94166666, 0.76666665), (0.94166666, 0.75), (0.94166666, 0.75), (0.94166666, 0.76666665), (0.93333334, 0.76666665), (0.93333334, 0.75), (0.93333334, 0.75), (0.93333334, 0.76666665), (0.925, 0.76666665), (0.925, 0.75), (0.925, 0.75), (0.925, 0.76666665), (0.9166667, 0.76666665), (0.9166667, 0.75), (0.9166667, 0.75), (0.9166667, 0.76666665), (0.90833336, 0.76666665), (0.90833336, 0.75), (0.90833336, 0.75), (0.90833336, 0.76666665), (0.9, 0.76666665), (0.9, 0.75), (0.9, 0.75), (0.9, 0.76666665), (0.89166665, 0.76666665), (0.89166665, 0.75), (0.89166665, 0.75), (0.89166665, 0.76666665), (0.8833333, 0.76666665), (0.8833333, 0.75), (0.8833333, 0.75), (0.8833333, 0.76666665), (0.875, 0.76666665), (0.875, 0.75), (0.875, 0.75), (0.875, 0.76666665), (0.8666667, 0.76666665), (0.8666667, 0.75), (0.8666667, 0.75), (0.8666667, 0.76666665), (0.85833335, 0.76666665), (0.85833335, 0.75), (0.85833335, 0.75), (0.85833335, 0.76666665), (0.85, 0.76666665), (0.85, 0.75), (0.85, 0.75), (0.85, 0.76666665), (0.84166664, 0.76666665), (0.84166664, 0.75), (0.84166664, 0.75), (0.84166664, 0.76666665), (0.8333333, 0.76666665), (0.8333333, 0.75), (0.8333333, 0.75), (0.8333333, 0.76666665), (0.825, 0.76666665), (0.825, 0.75), (0.825, 0.75), (0.825, 0.76666665), (0.81666666, 0.76666665), (0.81666666, 0.75), (0.81666666, 0.75), (0.81666666, 0.76666665), (0.80833334, 0.76666665), (0.80833334, 0.75), (0.80833334, 0.75), (0.80833334, 0.76666665), (0.8, 0.76666665), (0.8, 0.75), (0.8, 0.75), (0.8, 0.76666665), (0.7916667, 0.76666665), (0.7916667, 0.75), (0.7916667, 0.75), (0.7916667, 0.76666665), (0.78333336, 0.76666665), (0.78333336, 0.75), (0.78333336, 0.75), (0.78333336, 0.76666665), (0.775, 0.76666665), (0.775, 0.75), (0.775, 0.75), (0.775, 0.76666665), (0.76666665, 0.76666665), (0.76666665, 0.75), (0.76666665, 0.75), (0.76666665, 0.76666665), (0.7583333, 0.76666665), (0.7583333, 0.75), (0.7583333, 0.75), (0.7583333, 0.76666665), (0.75, 0.76666665), (0.75, 0.75), (0.75, 0.75), (0.75, 0.76666665), (0.7416667, 0.76666665), (0.7416667, 0.75), (0.7416667, 0.75), (0.7416667, 0.76666665), (0.73333335, 0.76666665), (0.73333335, 0.75), (0.73333335, 0.75), (0.73333335, 0.76666665), (0.725, 0.76666665), (0.725, 0.75), (0.725, 0.75), (0.725, 0.76666665), (0.71666664, 0.76666665), (0.71666664, 0.75), (0.71666664, 0.75), (0.71666664, 0.76666665), (0.7083333, 0.76666665), (0.7083333, 0.75), (0.7083333, 0.75), (0.7083333, 0.76666665), (0.7, 0.76666665), (0.7, 0.75), (0.7, 0.75), (0.7, 0.76666665), (0.69166666, 0.76666665), (0.69166666, 0.75), (0.69166666, 0.75), (0.69166666, 0.76666665), (0.68333334, 0.76666665), (0.68333334, 0.75), (0.68333334, 0.75), (0.68333334, 0.76666665), (0.675, 0.76666665), (0.675, 0.75), (0.675, 0.75), (0.675, 0.76666665), (0.6666667, 0.76666665), (0.6666667, 0.75), (0.6666667, 0.75), (0.6666667, 0.76666665), (0.65833336, 0.76666665), (0.65833336, 0.75), (0.65833336, 0.75), (0.65833336, 0.76666665), (0.65, 0.76666665), (0.65, 0.75), (0.65, 0.75), (0.65, 0.76666665), (0.64166665, 0.76666665), (0.64166665, 0.75), (0.64166665, 0.75), (0.64166665, 0.76666665), (0.6333333, 0.76666665), (0.6333333, 0.75), (0.6333333, 0.75), (0.6333333, 0.76666665), (0.625, 0.76666665), (0.625, 0.75), (0.625, 0.75), (0.625, 0.76666665), (0.6166667, 0.76666665), (0.6166667, 0.75), (0.6166667, 0.75), (0.6166667, 0.76666665), (0.60833335, 0.76666665), (0.60833335, 0.75), (0.60833335, 0.75), (0.60833335, 0.76666665), (0.6, 0.76666665), (0.6, 0.75), (0.6, 0.75), (0.6, 0.76666665), (0.59166664, 0.76666665), (0.59166664, 0.75), (0.59166664, 0.75), (0.59166664, 0.76666665), (0.5833333, 0.76666665), (0.5833333, 0.75), (0.5833333, 0.75), (0.5833333, 0.76666665), (0.575, 0.76666665), (0.575, 0.75), (0.575, 0.75), (0.575, 0.76666665), (0.56666666, 0.76666665), (0.56666666, 0.75), (0.56666666, 0.75), (0.56666666, 0.76666665), (0.55833334, 0.76666665), (0.55833334, 0.75), (0.55833334, 0.75), (0.55833334, 0.76666665), (0.55, 0.76666665), (0.55, 0.75), (0.55, 0.75), (0.55, 0.76666665), (0.5416667, 0.76666665), (0.5416667, 0.75), (0.5416667, 0.75), (0.5416667, 0.76666665), (0.53333336, 0.76666665), (0.53333336, 0.75), (0.53333336, 0.75), (0.53333336, 0.76666665), (0.525, 0.76666665), (0.525, 0.75), (0.525, 0.75), (0.525, 0.76666665), (0.51666665, 0.76666665), (0.51666665, 0.75), (0.51666665, 0.75), (0.51666665, 0.76666665), (0.5083333, 0.76666665), (0.5083333, 0.75), (0.5083333, 0.75), (0.5083333, 0.76666665), (0.5, 0.76666665), (0.5, 0.75), (0.5, 0.75), (0.5, 0.76666665), (0.49166667, 0.76666665), (0.49166667, 0.75), (0.49166667, 0.75), (0.49166667, 0.76666665), (0.48333332, 0.76666665), (0.48333332, 0.75), (0.48333332, 0.75), (0.48333332, 0.76666665), (0.475, 0.76666665), (0.475, 0.75), (0.475, 0.75), (0.475, 0.76666665), (0.46666667, 0.76666665), (0.46666667, 0.75), (0.46666667, 0.75), (0.46666667, 0.76666665), (0.45833334, 0.76666665), (0.45833334, 0.75), (0.45833334, 0.75), (0.45833334, 0.76666665), (0.45, 0.76666665), (0.45, 0.75), (0.45, 0.75), (0.45, 0.76666665), (0.44166666, 0.76666665), (0.44166666, 0.75), (0.44166666, 0.75), (0.44166666, 0.76666665), (0.43333334, 0.76666665), (0.43333334, 0.75), (0.43333334, 0.75), (0.43333334, 0.76666665), (0.425, 0.76666665), (0.425, 0.75), (0.425, 0.75), (0.425, 0.76666665), (0.41666666, 0.76666665), (0.41666666, 0.75), (0.41666666, 0.75), (0.41666666, 0.76666665), (0.40833333, 0.76666665), (0.40833333, 0.75), (0.40833333, 0.75), (0.40833333, 0.76666665), (0.4, 0.76666665), (0.4, 0.75), (0.4, 0.75), (0.4, 0.76666665), (0.39166668, 0.76666665), (0.39166668, 0.75), (0.39166668, 0.75), (0.39166668, 0.76666665), (0.38333333, 0.76666665), (0.38333333, 0.75), (0.38333333, 0.75), (0.38333333, 0.76666665), (0.375, 0.76666665), (0.375, 0.75), (0.375, 0.75), (0.375, 0.76666665), (0.36666667, 0.76666665), (0.36666667, 0.75), (0.36666667, 0.75), (0.36666667, 0.76666665), (0.35833332, 0.76666665), (0.35833332, 0.75), (0.35833332, 0.75), (0.35833332, 0.76666665), (0.35, 0.76666665), (0.35, 0.75), (0.35, 0.75), (0.35, 0.76666665), (0.34166667, 0.76666665), (0.34166667, 0.75), (0.34166667, 0.75), (0.34166667, 0.76666665), (0.33333334, 0.76666665), (0.33333334, 0.75), (0.33333334, 0.75), (0.33333334, 0.76666665), (0.325, 0.76666665), (0.325, 0.75), (0.325, 0.75), (0.325, 0.76666665), (0.31666666, 0.76666665), (0.31666666, 0.75), (0.31666666, 0.75), (0.31666666, 0.76666665), (0.30833334, 0.76666665), (0.30833334, 0.75), (0.30833334, 0.75), (0.30833334, 0.76666665), (0.3, 0.76666665), (0.3, 0.75), (0.3, 0.75), (0.3, 0.76666665), (0.29166666, 0.76666665), (0.29166666, 0.75), (0.29166666, 0.75), (0.29166666, 0.76666665), (0.28333333, 0.76666665), (0.28333333, 0.75), (0.28333333, 0.75), (0.28333333, 0.76666665), (0.275, 0.76666665), (0.275, 0.75), (0.275, 0.75), (0.275, 0.76666665), (0.26666668, 0.76666665), (0.26666668, 0.75), (0.26666668, 0.75), (0.26666668, 0.76666665), (0.25833333, 0.76666665), (0.25833333, 0.75), (0.25833333, 0.75), (0.25833333, 0.76666665), (0.25, 0.76666665), (0.25, 0.75), (0.25, 0.75), (0.25, 0.76666665), (0.24166666, 0.76666665), (0.24166666, 0.75), (0.24166666, 0.75), (0.24166666, 0.76666665), (0.23333333, 0.76666665), (0.23333333, 0.75), (0.23333333, 0.75), (0.23333333, 0.76666665), (0.225, 0.76666665), (0.225, 0.75), (0.225, 0.75), (0.225, 0.76666665), (0.21666667, 0.76666665), (0.21666667, 0.75), (0.21666667, 0.75), (0.21666667, 0.76666665), (0.20833333, 0.76666665), (0.20833333, 0.75), (0.20833333, 0.75), (0.20833333, 0.76666665), (0.2, 0.76666665), (0.2, 0.75), (0.2, 0.75), (0.2, 0.76666665), (0.19166666, 0.76666665), (0.19166666, 0.75), (0.19166666, 0.75), (0.19166666, 0.76666665), (0.18333334, 0.76666665), (0.18333334, 0.75), (0.18333334, 0.75), (0.18333334, 0.76666665), (0.175, 0.76666665), (0.175, 0.75), (0.175, 0.75), (0.175, 0.76666665), (0.16666667, 0.76666665), (0.16666667, 0.75), (0.16666667, 0.75), (0.16666667, 0.76666665), (0.15833333, 0.76666665), (0.15833333, 0.75), (0.15833333, 0.75), (0.15833333, 0.76666665), (0.15, 0.76666665), (0.15, 0.75), (0.15, 0.75), (0.15, 0.76666665), (0.14166667, 0.76666665), (0.14166667, 0.75), (0.14166667, 0.75), (0.14166667, 0.76666665), (0.13333334, 0.76666665), (0.13333334, 0.75), (0.13333334, 0.75), (0.13333334, 0.76666665), (0.125, 0.76666665), (0.125, 0.75), (0.125, 0.75), (0.125, 0.76666665), (0.11666667, 0.76666665), (0.11666667, 0.75), (0.11666667, 0.75), (0.11666667, 0.76666665), (0.108333334, 0.76666665), (0.108333334, 0.75), (0.108333334, 0.75), (0.108333334, 0.76666665), (0.1, 0.76666665), (0.1, 0.75), (0.1, 0.75), (0.1, 0.76666665), (0.09166667, 0.76666665), (0.09166667, 0.75), (0.09166667, 0.75), (0.09166667, 0.76666665), (0.083333336, 0.76666665), (0.083333336, 0.75), (0.083333336, 0.75), (0.083333336, 0.76666665), (0.075, 0.76666665), (0.075, 0.75), (0.075, 0.75), (0.075, 0.76666665), (0.06666667, 0.76666665), (0.06666667, 0.75), (0.06666667, 0.75), (0.06666667, 0.76666665), (0.058333334, 0.76666665), (0.058333334, 0.75), (0.058333334, 0.75), (0.058333334, 0.76666665), (0.05, 0.76666665), (0.05, 0.75), (0.05, 0.75), (0.05, 0.76666665), (0.041666668, 0.76666665), (0.041666668, 0.75), (0.041666668, 0.75), (0.041666668, 0.76666665), (0.033333335, 0.76666665), (0.033333335, 0.75), (0.033333335, 0.75), (0.033333335, 0.76666665), (0.025, 0.76666665), (0.025, 0.75), (0.025, 0.75), (0.025, 0.76666665), (0.016666668, 0.76666665), (0.016666668, 0.75), (0.016666668, 0.75), (0.016666668, 0.76666665), (0.008333334, 0.76666665), (0.008333334, 0.75), (0.008333334, 0.75), (0.008333334, 0.76666665), (0, 0.76666665), (0, 0.75), (1, 0.76666665), (1, 0.78333336), (0.9916667, 0.78333336), (0.9916667, 0.76666665), (0.9916667, 0.76666665), (0.9916667, 0.78333336), (0.98333335, 0.78333336), (0.98333335, 0.76666665), (0.98333335, 0.76666665), (0.98333335, 0.78333336), (0.975, 0.78333336), (0.975, 0.76666665), (0.975, 0.76666665), (0.975, 0.78333336), (0.96666664, 0.78333336), (0.96666664, 0.76666665), (0.96666664, 0.76666665), (0.96666664, 0.78333336), (0.9583333, 0.78333336), (0.9583333, 0.76666665), (0.9583333, 0.76666665), (0.9583333, 0.78333336), (0.95, 0.78333336), (0.95, 0.76666665), (0.95, 0.76666665), (0.95, 0.78333336), (0.94166666, 0.78333336), (0.94166666, 0.76666665), (0.94166666, 0.76666665), (0.94166666, 0.78333336), (0.93333334, 0.78333336), (0.93333334, 0.76666665), (0.93333334, 0.76666665), (0.93333334, 0.78333336), (0.925, 0.78333336), (0.925, 0.76666665), (0.925, 0.76666665), (0.925, 0.78333336), (0.9166667, 0.78333336), (0.9166667, 0.76666665), (0.9166667, 0.76666665), (0.9166667, 0.78333336), (0.90833336, 0.78333336), (0.90833336, 0.76666665), (0.90833336, 0.76666665), (0.90833336, 0.78333336), (0.9, 0.78333336), (0.9, 0.76666665), (0.9, 0.76666665), (0.9, 0.78333336), (0.89166665, 0.78333336), (0.89166665, 0.76666665), (0.89166665, 0.76666665), (0.89166665, 0.78333336), (0.8833333, 0.78333336), (0.8833333, 0.76666665), (0.8833333, 0.76666665), (0.8833333, 0.78333336), (0.875, 0.78333336), (0.875, 0.76666665), (0.875, 0.76666665), (0.875, 0.78333336), (0.8666667, 0.78333336), (0.8666667, 0.76666665), (0.8666667, 0.76666665), (0.8666667, 0.78333336), (0.85833335, 0.78333336), (0.85833335, 0.76666665), (0.85833335, 0.76666665), (0.85833335, 0.78333336), (0.85, 0.78333336), (0.85, 0.76666665), (0.85, 0.76666665), (0.85, 0.78333336), (0.84166664, 0.78333336), (0.84166664, 0.76666665), (0.84166664, 0.76666665), (0.84166664, 0.78333336), (0.8333333, 0.78333336), (0.8333333, 0.76666665), (0.8333333, 0.76666665), (0.8333333, 0.78333336), (0.825, 0.78333336), (0.825, 0.76666665), (0.825, 0.76666665), (0.825, 0.78333336), (0.81666666, 0.78333336), (0.81666666, 0.76666665), (0.81666666, 0.76666665), (0.81666666, 0.78333336), (0.80833334, 0.78333336), (0.80833334, 0.76666665), (0.80833334, 0.76666665), (0.80833334, 0.78333336), (0.8, 0.78333336), (0.8, 0.76666665), (0.8, 0.76666665), (0.8, 0.78333336), (0.7916667, 0.78333336), (0.7916667, 0.76666665), (0.7916667, 0.76666665), (0.7916667, 0.78333336), (0.78333336, 0.78333336), (0.78333336, 0.76666665), (0.78333336, 0.76666665), (0.78333336, 0.78333336), (0.775, 0.78333336), (0.775, 0.76666665), (0.775, 0.76666665), (0.775, 0.78333336), (0.76666665, 0.78333336), (0.76666665, 0.76666665), (0.76666665, 0.76666665), (0.76666665, 0.78333336), (0.7583333, 0.78333336), (0.7583333, 0.76666665), (0.7583333, 0.76666665), (0.7583333, 0.78333336), (0.75, 0.78333336), (0.75, 0.76666665), (0.75, 0.76666665), (0.75, 0.78333336), (0.7416667, 0.78333336), (0.7416667, 0.76666665), (0.7416667, 0.76666665), (0.7416667, 0.78333336), (0.73333335, 0.78333336), (0.73333335, 0.76666665), (0.73333335, 0.76666665), (0.73333335, 0.78333336), (0.725, 0.78333336), (0.725, 0.76666665), (0.725, 0.76666665), (0.725, 0.78333336), (0.71666664, 0.78333336), (0.71666664, 0.76666665), (0.71666664, 0.76666665), (0.71666664, 0.78333336), (0.7083333, 0.78333336), (0.7083333, 0.76666665), (0.7083333, 0.76666665), (0.7083333, 0.78333336), (0.7, 0.78333336), (0.7, 0.76666665), (0.7, 0.76666665), (0.7, 0.78333336), (0.69166666, 0.78333336), (0.69166666, 0.76666665), (0.69166666, 0.76666665), (0.69166666, 0.78333336), (0.68333334, 0.78333336), (0.68333334, 0.76666665), (0.68333334, 0.76666665), (0.68333334, 0.78333336), (0.675, 0.78333336), (0.675, 0.76666665), (0.675, 0.76666665), (0.675, 0.78333336), (0.6666667, 0.78333336), (0.6666667, 0.76666665), (0.6666667, 0.76666665), (0.6666667, 0.78333336), (0.65833336, 0.78333336), (0.65833336, 0.76666665), (0.65833336, 0.76666665), (0.65833336, 0.78333336), (0.65, 0.78333336), (0.65, 0.76666665), (0.65, 0.76666665), (0.65, 0.78333336), (0.64166665, 0.78333336), (0.64166665, 0.76666665), (0.64166665, 0.76666665), (0.64166665, 0.78333336), (0.6333333, 0.78333336), (0.6333333, 0.76666665), (0.6333333, 0.76666665), (0.6333333, 0.78333336), (0.625, 0.78333336), (0.625, 0.76666665), (0.625, 0.76666665), (0.625, 0.78333336), (0.6166667, 0.78333336), (0.6166667, 0.76666665), (0.6166667, 0.76666665), (0.6166667, 0.78333336), (0.60833335, 0.78333336), (0.60833335, 0.76666665), (0.60833335, 0.76666665), (0.60833335, 0.78333336), (0.6, 0.78333336), (0.6, 0.76666665), (0.6, 0.76666665), (0.6, 0.78333336), (0.59166664, 0.78333336), (0.59166664, 0.76666665), (0.59166664, 0.76666665), (0.59166664, 0.78333336), (0.5833333, 0.78333336), (0.5833333, 0.76666665), (0.5833333, 0.76666665), (0.5833333, 0.78333336), (0.575, 0.78333336), (0.575, 0.76666665), (0.575, 0.76666665), (0.575, 0.78333336), (0.56666666, 0.78333336), (0.56666666, 0.76666665), (0.56666666, 0.76666665), (0.56666666, 0.78333336), (0.55833334, 0.78333336), (0.55833334, 0.76666665), (0.55833334, 0.76666665), (0.55833334, 0.78333336), (0.55, 0.78333336), (0.55, 0.76666665), (0.55, 0.76666665), (0.55, 0.78333336), (0.5416667, 0.78333336), (0.5416667, 0.76666665), (0.5416667, 0.76666665), (0.5416667, 0.78333336), (0.53333336, 0.78333336), (0.53333336, 0.76666665), (0.53333336, 0.76666665), (0.53333336, 0.78333336), (0.525, 0.78333336), (0.525, 0.76666665), (0.525, 0.76666665), (0.525, 0.78333336), (0.51666665, 0.78333336), (0.51666665, 0.76666665), (0.51666665, 0.76666665), (0.51666665, 0.78333336), (0.5083333, 0.78333336), (0.5083333, 0.76666665), (0.5083333, 0.76666665), (0.5083333, 0.78333336), (0.5, 0.78333336), (0.5, 0.76666665), (0.5, 0.76666665), (0.5, 0.78333336), (0.49166667, 0.78333336), (0.49166667, 0.76666665), (0.49166667, 0.76666665), (0.49166667, 0.78333336), (0.48333332, 0.78333336), (0.48333332, 0.76666665), (0.48333332, 0.76666665), (0.48333332, 0.78333336), (0.475, 0.78333336), (0.475, 0.76666665), (0.475, 0.76666665), (0.475, 0.78333336), (0.46666667, 0.78333336), (0.46666667, 0.76666665), (0.46666667, 0.76666665), (0.46666667, 0.78333336), (0.45833334, 0.78333336), (0.45833334, 0.76666665), (0.45833334, 0.76666665), (0.45833334, 0.78333336), (0.45, 0.78333336), (0.45, 0.76666665), (0.45, 0.76666665), (0.45, 0.78333336), (0.44166666, 0.78333336), (0.44166666, 0.76666665), (0.44166666, 0.76666665), (0.44166666, 0.78333336), (0.43333334, 0.78333336), (0.43333334, 0.76666665), (0.43333334, 0.76666665), (0.43333334, 0.78333336), (0.425, 0.78333336), (0.425, 0.76666665), (0.425, 0.76666665), (0.425, 0.78333336), (0.41666666, 0.78333336), (0.41666666, 0.76666665), (0.41666666, 0.76666665), (0.41666666, 0.78333336), (0.40833333, 0.78333336), (0.40833333, 0.76666665), (0.40833333, 0.76666665), (0.40833333, 0.78333336), (0.4, 0.78333336), (0.4, 0.76666665), (0.4, 0.76666665), (0.4, 0.78333336), (0.39166668, 0.78333336), (0.39166668, 0.76666665), (0.39166668, 0.76666665), (0.39166668, 0.78333336), (0.38333333, 0.78333336), (0.38333333, 0.76666665), (0.38333333, 0.76666665), (0.38333333, 0.78333336), (0.375, 0.78333336), (0.375, 0.76666665), (0.375, 0.76666665), (0.375, 0.78333336), (0.36666667, 0.78333336), (0.36666667, 0.76666665), (0.36666667, 0.76666665), (0.36666667, 0.78333336), (0.35833332, 0.78333336), (0.35833332, 0.76666665), (0.35833332, 0.76666665), (0.35833332, 0.78333336), (0.35, 0.78333336), (0.35, 0.76666665), (0.35, 0.76666665), (0.35, 0.78333336), (0.34166667, 0.78333336), (0.34166667, 0.76666665), (0.34166667, 0.76666665), (0.34166667, 0.78333336), (0.33333334, 0.78333336), (0.33333334, 0.76666665), (0.33333334, 0.76666665), (0.33333334, 0.78333336), (0.325, 0.78333336), (0.325, 0.76666665), (0.325, 0.76666665), (0.325, 0.78333336), (0.31666666, 0.78333336), (0.31666666, 0.76666665), (0.31666666, 0.76666665), (0.31666666, 0.78333336), (0.30833334, 0.78333336), (0.30833334, 0.76666665), (0.30833334, 0.76666665), (0.30833334, 0.78333336), (0.3, 0.78333336), (0.3, 0.76666665), (0.3, 0.76666665), (0.3, 0.78333336), (0.29166666, 0.78333336), (0.29166666, 0.76666665), (0.29166666, 0.76666665), (0.29166666, 0.78333336), (0.28333333, 0.78333336), (0.28333333, 0.76666665), (0.28333333, 0.76666665), (0.28333333, 0.78333336), (0.275, 0.78333336), (0.275, 0.76666665), (0.275, 0.76666665), (0.275, 0.78333336), (0.26666668, 0.78333336), (0.26666668, 0.76666665), (0.26666668, 0.76666665), (0.26666668, 0.78333336), (0.25833333, 0.78333336), (0.25833333, 0.76666665), (0.25833333, 0.76666665), (0.25833333, 0.78333336), (0.25, 0.78333336), (0.25, 0.76666665), (0.25, 0.76666665), (0.25, 0.78333336), (0.24166666, 0.78333336), (0.24166666, 0.76666665), (0.24166666, 0.76666665), (0.24166666, 0.78333336), (0.23333333, 0.78333336), (0.23333333, 0.76666665), (0.23333333, 0.76666665), (0.23333333, 0.78333336), (0.225, 0.78333336), (0.225, 0.76666665), (0.225, 0.76666665), (0.225, 0.78333336), (0.21666667, 0.78333336), (0.21666667, 0.76666665), (0.21666667, 0.76666665), (0.21666667, 0.78333336), (0.20833333, 0.78333336), (0.20833333, 0.76666665), (0.20833333, 0.76666665), (0.20833333, 0.78333336), (0.2, 0.78333336), (0.2, 0.76666665), (0.2, 0.76666665), (0.2, 0.78333336), (0.19166666, 0.78333336), (0.19166666, 0.76666665), (0.19166666, 0.76666665), (0.19166666, 0.78333336), (0.18333334, 0.78333336), (0.18333334, 0.76666665), (0.18333334, 0.76666665), (0.18333334, 0.78333336), (0.175, 0.78333336), (0.175, 0.76666665), (0.175, 0.76666665), (0.175, 0.78333336), (0.16666667, 0.78333336), (0.16666667, 0.76666665), (0.16666667, 0.76666665), (0.16666667, 0.78333336), (0.15833333, 0.78333336), (0.15833333, 0.76666665), (0.15833333, 0.76666665), (0.15833333, 0.78333336), (0.15, 0.78333336), (0.15, 0.76666665), (0.15, 0.76666665), (0.15, 0.78333336), (0.14166667, 0.78333336), (0.14166667, 0.76666665), (0.14166667, 0.76666665), (0.14166667, 0.78333336), (0.13333334, 0.78333336), (0.13333334, 0.76666665), (0.13333334, 0.76666665), (0.13333334, 0.78333336), (0.125, 0.78333336), (0.125, 0.76666665), (0.125, 0.76666665), (0.125, 0.78333336), (0.11666667, 0.78333336), (0.11666667, 0.76666665), (0.11666667, 0.76666665), (0.11666667, 0.78333336), (0.108333334, 0.78333336), (0.108333334, 0.76666665), (0.108333334, 0.76666665), (0.108333334, 0.78333336), (0.1, 0.78333336), (0.1, 0.76666665), (0.1, 0.76666665), (0.1, 0.78333336), (0.09166667, 0.78333336), (0.09166667, 0.76666665), (0.09166667, 0.76666665), (0.09166667, 0.78333336), (0.083333336, 0.78333336), (0.083333336, 0.76666665), (0.083333336, 0.76666665), (0.083333336, 0.78333336), (0.075, 0.78333336), (0.075, 0.76666665), (0.075, 0.76666665), (0.075, 0.78333336), (0.06666667, 0.78333336), (0.06666667, 0.76666665), (0.06666667, 0.76666665), (0.06666667, 0.78333336), (0.058333334, 0.78333336), (0.058333334, 0.76666665), (0.058333334, 0.76666665), (0.058333334, 0.78333336), (0.05, 0.78333336), (0.05, 0.76666665), (0.05, 0.76666665), (0.05, 0.78333336), (0.041666668, 0.78333336), (0.041666668, 0.76666665), (0.041666668, 0.76666665), (0.041666668, 0.78333336), (0.033333335, 0.78333336), (0.033333335, 0.76666665), (0.033333335, 0.76666665), (0.033333335, 0.78333336), (0.025, 0.78333336), (0.025, 0.76666665), (0.025, 0.76666665), (0.025, 0.78333336), (0.016666668, 0.78333336), (0.016666668, 0.76666665), (0.016666668, 0.76666665), (0.016666668, 0.78333336), (0.008333334, 0.78333336), (0.008333334, 0.76666665), (0.008333334, 0.76666665), (0.008333334, 0.78333336), (0, 0.78333336), (0, 0.76666665), (1, 0.78333336), (1, 0.8), (0.9916667, 0.8), (0.9916667, 0.78333336), (0.9916667, 0.78333336), (0.9916667, 0.8), (0.98333335, 0.8), (0.98333335, 0.78333336), (0.98333335, 0.78333336), (0.98333335, 0.8), (0.975, 0.8), (0.975, 0.78333336), (0.975, 0.78333336), (0.975, 0.8), (0.96666664, 0.8), (0.96666664, 0.78333336), (0.96666664, 0.78333336), (0.96666664, 0.8), (0.9583333, 0.8), (0.9583333, 0.78333336), (0.9583333, 0.78333336), (0.9583333, 0.8), (0.95, 0.8), (0.95, 0.78333336), (0.95, 0.78333336), (0.95, 0.8), (0.94166666, 0.8), (0.94166666, 0.78333336), (0.94166666, 0.78333336), (0.94166666, 0.8), (0.93333334, 0.8), (0.93333334, 0.78333336), (0.93333334, 0.78333336), (0.93333334, 0.8), (0.925, 0.8), (0.925, 0.78333336), (0.925, 0.78333336), (0.925, 0.8), (0.9166667, 0.8), (0.9166667, 0.78333336), (0.9166667, 0.78333336), (0.9166667, 0.8), (0.90833336, 0.8), (0.90833336, 0.78333336), (0.90833336, 0.78333336), (0.90833336, 0.8), (0.9, 0.8), (0.9, 0.78333336), (0.9, 0.78333336), (0.9, 0.8), (0.89166665, 0.8), (0.89166665, 0.78333336), (0.89166665, 0.78333336), (0.89166665, 0.8), (0.8833333, 0.8), (0.8833333, 0.78333336), (0.8833333, 0.78333336), (0.8833333, 0.8), (0.875, 0.8), (0.875, 0.78333336), (0.875, 0.78333336), (0.875, 0.8), (0.8666667, 0.8), (0.8666667, 0.78333336), (0.8666667, 0.78333336), (0.8666667, 0.8), (0.85833335, 0.8), (0.85833335, 0.78333336), (0.85833335, 0.78333336), (0.85833335, 0.8), (0.85, 0.8), (0.85, 0.78333336), (0.85, 0.78333336), (0.85, 0.8), (0.84166664, 0.8), (0.84166664, 0.78333336), (0.84166664, 0.78333336), (0.84166664, 0.8), (0.8333333, 0.8), (0.8333333, 0.78333336), (0.8333333, 0.78333336), (0.8333333, 0.8), (0.825, 0.8), (0.825, 0.78333336), (0.825, 0.78333336), (0.825, 0.8), (0.81666666, 0.8), (0.81666666, 0.78333336), (0.81666666, 0.78333336), (0.81666666, 0.8), (0.80833334, 0.8), (0.80833334, 0.78333336), (0.80833334, 0.78333336), (0.80833334, 0.8), (0.8, 0.8), (0.8, 0.78333336), (0.8, 0.78333336), (0.8, 0.8), (0.7916667, 0.8), (0.7916667, 0.78333336), (0.7916667, 0.78333336), (0.7916667, 0.8), (0.78333336, 0.8), (0.78333336, 0.78333336), (0.78333336, 0.78333336), (0.78333336, 0.8), (0.775, 0.8), (0.775, 0.78333336), (0.775, 0.78333336), (0.775, 0.8), (0.76666665, 0.8), (0.76666665, 0.78333336), (0.76666665, 0.78333336), (0.76666665, 0.8), (0.7583333, 0.8), (0.7583333, 0.78333336), (0.7583333, 0.78333336), (0.7583333, 0.8), (0.75, 0.8), (0.75, 0.78333336), (0.75, 0.78333336), (0.75, 0.8), (0.7416667, 0.8), (0.7416667, 0.78333336), (0.7416667, 0.78333336), (0.7416667, 0.8), (0.73333335, 0.8), (0.73333335, 0.78333336), (0.73333335, 0.78333336), (0.73333335, 0.8), (0.725, 0.8), (0.725, 0.78333336), (0.725, 0.78333336), (0.725, 0.8), (0.71666664, 0.8), (0.71666664, 0.78333336), (0.71666664, 0.78333336), (0.71666664, 0.8), (0.7083333, 0.8), (0.7083333, 0.78333336), (0.7083333, 0.78333336), (0.7083333, 0.8), (0.7, 0.8), (0.7, 0.78333336), (0.7, 0.78333336), (0.7, 0.8), (0.69166666, 0.8), (0.69166666, 0.78333336), (0.69166666, 0.78333336), (0.69166666, 0.8), (0.68333334, 0.8), (0.68333334, 0.78333336), (0.68333334, 0.78333336), (0.68333334, 0.8), (0.675, 0.8), (0.675, 0.78333336), (0.675, 0.78333336), (0.675, 0.8), (0.6666667, 0.8), (0.6666667, 0.78333336), (0.6666667, 0.78333336), (0.6666667, 0.8), (0.65833336, 0.8), (0.65833336, 0.78333336), (0.65833336, 0.78333336), (0.65833336, 0.8), (0.65, 0.8), (0.65, 0.78333336), (0.65, 0.78333336), (0.65, 0.8), (0.64166665, 0.8), (0.64166665, 0.78333336), (0.64166665, 0.78333336), (0.64166665, 0.8), (0.6333333, 0.8), (0.6333333, 0.78333336), (0.6333333, 0.78333336), (0.6333333, 0.8), (0.625, 0.8), (0.625, 0.78333336), (0.625, 0.78333336), (0.625, 0.8), (0.6166667, 0.8), (0.6166667, 0.78333336), (0.6166667, 0.78333336), (0.6166667, 0.8), (0.60833335, 0.8), (0.60833335, 0.78333336), (0.60833335, 0.78333336), (0.60833335, 0.8), (0.6, 0.8), (0.6, 0.78333336), (0.6, 0.78333336), (0.6, 0.8), (0.59166664, 0.8), (0.59166664, 0.78333336), (0.59166664, 0.78333336), (0.59166664, 0.8), (0.5833333, 0.8), (0.5833333, 0.78333336), (0.5833333, 0.78333336), (0.5833333, 0.8), (0.575, 0.8), (0.575, 0.78333336), (0.575, 0.78333336), (0.575, 0.8), (0.56666666, 0.8), (0.56666666, 0.78333336), (0.56666666, 0.78333336), (0.56666666, 0.8), (0.55833334, 0.8), (0.55833334, 0.78333336), (0.55833334, 0.78333336), (0.55833334, 0.8), (0.55, 0.8), (0.55, 0.78333336), (0.55, 0.78333336), (0.55, 0.8), (0.5416667, 0.8), (0.5416667, 0.78333336), (0.5416667, 0.78333336), (0.5416667, 0.8), (0.53333336, 0.8), (0.53333336, 0.78333336), (0.53333336, 0.78333336), (0.53333336, 0.8), (0.525, 0.8), (0.525, 0.78333336), (0.525, 0.78333336), (0.525, 0.8), (0.51666665, 0.8), (0.51666665, 0.78333336), (0.51666665, 0.78333336), (0.51666665, 0.8), (0.5083333, 0.8), (0.5083333, 0.78333336), (0.5083333, 0.78333336), (0.5083333, 0.8), (0.5, 0.8), (0.5, 0.78333336), (0.5, 0.78333336), (0.5, 0.8), (0.49166667, 0.8), (0.49166667, 0.78333336), (0.49166667, 0.78333336), (0.49166667, 0.8), (0.48333332, 0.8), (0.48333332, 0.78333336), (0.48333332, 0.78333336), (0.48333332, 0.8), (0.475, 0.8), (0.475, 0.78333336), (0.475, 0.78333336), (0.475, 0.8), (0.46666667, 0.8), (0.46666667, 0.78333336), (0.46666667, 0.78333336), (0.46666667, 0.8), (0.45833334, 0.8), (0.45833334, 0.78333336), (0.45833334, 0.78333336), (0.45833334, 0.8), (0.45, 0.8), (0.45, 0.78333336), (0.45, 0.78333336), (0.45, 0.8), (0.44166666, 0.8), (0.44166666, 0.78333336), (0.44166666, 0.78333336), (0.44166666, 0.8), (0.43333334, 0.8), (0.43333334, 0.78333336), (0.43333334, 0.78333336), (0.43333334, 0.8), (0.425, 0.8), (0.425, 0.78333336), (0.425, 0.78333336), (0.425, 0.8), (0.41666666, 0.8), (0.41666666, 0.78333336), (0.41666666, 0.78333336), (0.41666666, 0.8), (0.40833333, 0.8), (0.40833333, 0.78333336), (0.40833333, 0.78333336), (0.40833333, 0.8), (0.4, 0.8), (0.4, 0.78333336), (0.4, 0.78333336), (0.4, 0.8), (0.39166668, 0.8), (0.39166668, 0.78333336), (0.39166668, 0.78333336), (0.39166668, 0.8), (0.38333333, 0.8), (0.38333333, 0.78333336), (0.38333333, 0.78333336), (0.38333333, 0.8), (0.375, 0.8), (0.375, 0.78333336), (0.375, 0.78333336), (0.375, 0.8), (0.36666667, 0.8), (0.36666667, 0.78333336), (0.36666667, 0.78333336), (0.36666667, 0.8), (0.35833332, 0.8), (0.35833332, 0.78333336), (0.35833332, 0.78333336), (0.35833332, 0.8), (0.35, 0.8), (0.35, 0.78333336), (0.35, 0.78333336), (0.35, 0.8), (0.34166667, 0.8), (0.34166667, 0.78333336), (0.34166667, 0.78333336), (0.34166667, 0.8), (0.33333334, 0.8), (0.33333334, 0.78333336), (0.33333334, 0.78333336), (0.33333334, 0.8), (0.325, 0.8), (0.325, 0.78333336), (0.325, 0.78333336), (0.325, 0.8), (0.31666666, 0.8), (0.31666666, 0.78333336), (0.31666666, 0.78333336), (0.31666666, 0.8), (0.30833334, 0.8), (0.30833334, 0.78333336), (0.30833334, 0.78333336), (0.30833334, 0.8), (0.3, 0.8), (0.3, 0.78333336), (0.3, 0.78333336), (0.3, 0.8), (0.29166666, 0.8), (0.29166666, 0.78333336), (0.29166666, 0.78333336), (0.29166666, 0.8), (0.28333333, 0.8), (0.28333333, 0.78333336), (0.28333333, 0.78333336), (0.28333333, 0.8), (0.275, 0.8), (0.275, 0.78333336), (0.275, 0.78333336), (0.275, 0.8), (0.26666668, 0.8), (0.26666668, 0.78333336), (0.26666668, 0.78333336), (0.26666668, 0.8), (0.25833333, 0.8), (0.25833333, 0.78333336), (0.25833333, 0.78333336), (0.25833333, 0.8), (0.25, 0.8), (0.25, 0.78333336), (0.25, 0.78333336), (0.25, 0.8), (0.24166666, 0.8), (0.24166666, 0.78333336), (0.24166666, 0.78333336), (0.24166666, 0.8), (0.23333333, 0.8), (0.23333333, 0.78333336), (0.23333333, 0.78333336), (0.23333333, 0.8), (0.225, 0.8), (0.225, 0.78333336), (0.225, 0.78333336), (0.225, 0.8), (0.21666667, 0.8), (0.21666667, 0.78333336), (0.21666667, 0.78333336), (0.21666667, 0.8), (0.20833333, 0.8), (0.20833333, 0.78333336), (0.20833333, 0.78333336), (0.20833333, 0.8), (0.2, 0.8), (0.2, 0.78333336), (0.2, 0.78333336), (0.2, 0.8), (0.19166666, 0.8), (0.19166666, 0.78333336), (0.19166666, 0.78333336), (0.19166666, 0.8), (0.18333334, 0.8), (0.18333334, 0.78333336), (0.18333334, 0.78333336), (0.18333334, 0.8), (0.175, 0.8), (0.175, 0.78333336), (0.175, 0.78333336), (0.175, 0.8), (0.16666667, 0.8), (0.16666667, 0.78333336), (0.16666667, 0.78333336), (0.16666667, 0.8), (0.15833333, 0.8), (0.15833333, 0.78333336), (0.15833333, 0.78333336), (0.15833333, 0.8), (0.15, 0.8), (0.15, 0.78333336), (0.15, 0.78333336), (0.15, 0.8), (0.14166667, 0.8), (0.14166667, 0.78333336), (0.14166667, 0.78333336), (0.14166667, 0.8), (0.13333334, 0.8), (0.13333334, 0.78333336), (0.13333334, 0.78333336), (0.13333334, 0.8), (0.125, 0.8), (0.125, 0.78333336), (0.125, 0.78333336), (0.125, 0.8), (0.11666667, 0.8), (0.11666667, 0.78333336), (0.11666667, 0.78333336), (0.11666667, 0.8), (0.108333334, 0.8), (0.108333334, 0.78333336), (0.108333334, 0.78333336), (0.108333334, 0.8), (0.1, 0.8), (0.1, 0.78333336), (0.1, 0.78333336), (0.1, 0.8), (0.09166667, 0.8), (0.09166667, 0.78333336), (0.09166667, 0.78333336), (0.09166667, 0.8), (0.083333336, 0.8), (0.083333336, 0.78333336), (0.083333336, 0.78333336), (0.083333336, 0.8), (0.075, 0.8), (0.075, 0.78333336), (0.075, 0.78333336), (0.075, 0.8), (0.06666667, 0.8), (0.06666667, 0.78333336), (0.06666667, 0.78333336), (0.06666667, 0.8), (0.058333334, 0.8), (0.058333334, 0.78333336), (0.058333334, 0.78333336), (0.058333334, 0.8), (0.05, 0.8), (0.05, 0.78333336), (0.05, 0.78333336), (0.05, 0.8), (0.041666668, 0.8), (0.041666668, 0.78333336), (0.041666668, 0.78333336), (0.041666668, 0.8), (0.033333335, 0.8), (0.033333335, 0.78333336), (0.033333335, 0.78333336), (0.033333335, 0.8), (0.025, 0.8), (0.025, 0.78333336), (0.025, 0.78333336), (0.025, 0.8), (0.016666668, 0.8), (0.016666668, 0.78333336), (0.016666668, 0.78333336), (0.016666668, 0.8), (0.008333334, 0.8), (0.008333334, 0.78333336), (0.008333334, 0.78333336), (0.008333334, 0.8), (0, 0.8), (0, 0.78333336), (1, 0.8), (1, 0.81666666), (0.9916667, 0.81666666), (0.9916667, 0.8), (0.9916667, 0.8), (0.9916667, 0.81666666), (0.98333335, 0.81666666), (0.98333335, 0.8), (0.98333335, 0.8), (0.98333335, 0.81666666), (0.975, 0.81666666), (0.975, 0.8), (0.975, 0.8), (0.975, 0.81666666), (0.96666664, 0.81666666), (0.96666664, 0.8), (0.96666664, 0.8), (0.96666664, 0.81666666), (0.9583333, 0.81666666), (0.9583333, 0.8), (0.9583333, 0.8), (0.9583333, 0.81666666), (0.95, 0.81666666), (0.95, 0.8), (0.95, 0.8), (0.95, 0.81666666), (0.94166666, 0.81666666), (0.94166666, 0.8), (0.94166666, 0.8), (0.94166666, 0.81666666), (0.93333334, 0.81666666), (0.93333334, 0.8), (0.93333334, 0.8), (0.93333334, 0.81666666), (0.925, 0.81666666), (0.925, 0.8), (0.925, 0.8), (0.925, 0.81666666), (0.9166667, 0.81666666), (0.9166667, 0.8), (0.9166667, 0.8), (0.9166667, 0.81666666), (0.90833336, 0.81666666), (0.90833336, 0.8), (0.90833336, 0.8), (0.90833336, 0.81666666), (0.9, 0.81666666), (0.9, 0.8), (0.9, 0.8), (0.9, 0.81666666), (0.89166665, 0.81666666), (0.89166665, 0.8), (0.89166665, 0.8), (0.89166665, 0.81666666), (0.8833333, 0.81666666), (0.8833333, 0.8), (0.8833333, 0.8), (0.8833333, 0.81666666), (0.875, 0.81666666), (0.875, 0.8), (0.875, 0.8), (0.875, 0.81666666), (0.8666667, 0.81666666), (0.8666667, 0.8), (0.8666667, 0.8), (0.8666667, 0.81666666), (0.85833335, 0.81666666), (0.85833335, 0.8), (0.85833335, 0.8), (0.85833335, 0.81666666), (0.85, 0.81666666), (0.85, 0.8), (0.85, 0.8), (0.85, 0.81666666), (0.84166664, 0.81666666), (0.84166664, 0.8), (0.84166664, 0.8), (0.84166664, 0.81666666), (0.8333333, 0.81666666), (0.8333333, 0.8), (0.8333333, 0.8), (0.8333333, 0.81666666), (0.825, 0.81666666), (0.825, 0.8), (0.825, 0.8), (0.825, 0.81666666), (0.81666666, 0.81666666), (0.81666666, 0.8), (0.81666666, 0.8), (0.81666666, 0.81666666), (0.80833334, 0.81666666), (0.80833334, 0.8), (0.80833334, 0.8), (0.80833334, 0.81666666), (0.8, 0.81666666), (0.8, 0.8), (0.8, 0.8), (0.8, 0.81666666), (0.7916667, 0.81666666), (0.7916667, 0.8), (0.7916667, 0.8), (0.7916667, 0.81666666), (0.78333336, 0.81666666), (0.78333336, 0.8), (0.78333336, 0.8), (0.78333336, 0.81666666), (0.775, 0.81666666), (0.775, 0.8), (0.775, 0.8), (0.775, 0.81666666), (0.76666665, 0.81666666), (0.76666665, 0.8), (0.76666665, 0.8), (0.76666665, 0.81666666), (0.7583333, 0.81666666), (0.7583333, 0.8), (0.7583333, 0.8), (0.7583333, 0.81666666), (0.75, 0.81666666), (0.75, 0.8), (0.75, 0.8), (0.75, 0.81666666), (0.7416667, 0.81666666), (0.7416667, 0.8), (0.7416667, 0.8), (0.7416667, 0.81666666), (0.73333335, 0.81666666), (0.73333335, 0.8), (0.73333335, 0.8), (0.73333335, 0.81666666), (0.725, 0.81666666), (0.725, 0.8), (0.725, 0.8), (0.725, 0.81666666), (0.71666664, 0.81666666), (0.71666664, 0.8), (0.71666664, 0.8), (0.71666664, 0.81666666), (0.7083333, 0.81666666), (0.7083333, 0.8), (0.7083333, 0.8), (0.7083333, 0.81666666), (0.7, 0.81666666), (0.7, 0.8), (0.7, 0.8), (0.7, 0.81666666), (0.69166666, 0.81666666), (0.69166666, 0.8), (0.69166666, 0.8), (0.69166666, 0.81666666), (0.68333334, 0.81666666), (0.68333334, 0.8), (0.68333334, 0.8), (0.68333334, 0.81666666), (0.675, 0.81666666), (0.675, 0.8), (0.675, 0.8), (0.675, 0.81666666), (0.6666667, 0.81666666), (0.6666667, 0.8), (0.6666667, 0.8), (0.6666667, 0.81666666), (0.65833336, 0.81666666), (0.65833336, 0.8), (0.65833336, 0.8), (0.65833336, 0.81666666), (0.65, 0.81666666), (0.65, 0.8), (0.65, 0.8), (0.65, 0.81666666), (0.64166665, 0.81666666), (0.64166665, 0.8), (0.64166665, 0.8), (0.64166665, 0.81666666), (0.6333333, 0.81666666), (0.6333333, 0.8), (0.6333333, 0.8), (0.6333333, 0.81666666), (0.625, 0.81666666), (0.625, 0.8), (0.625, 0.8), (0.625, 0.81666666), (0.6166667, 0.81666666), (0.6166667, 0.8), (0.6166667, 0.8), (0.6166667, 0.81666666), (0.60833335, 0.81666666), (0.60833335, 0.8), (0.60833335, 0.8), (0.60833335, 0.81666666), (0.6, 0.81666666), (0.6, 0.8), (0.6, 0.8), (0.6, 0.81666666), (0.59166664, 0.81666666), (0.59166664, 0.8), (0.59166664, 0.8), (0.59166664, 0.81666666), (0.5833333, 0.81666666), (0.5833333, 0.8), (0.5833333, 0.8), (0.5833333, 0.81666666), (0.575, 0.81666666), (0.575, 0.8), (0.575, 0.8), (0.575, 0.81666666), (0.56666666, 0.81666666), (0.56666666, 0.8), (0.56666666, 0.8), (0.56666666, 0.81666666), (0.55833334, 0.81666666), (0.55833334, 0.8), (0.55833334, 0.8), (0.55833334, 0.81666666), (0.55, 0.81666666), (0.55, 0.8), (0.55, 0.8), (0.55, 0.81666666), (0.5416667, 0.81666666), (0.5416667, 0.8), (0.5416667, 0.8), (0.5416667, 0.81666666), (0.53333336, 0.81666666), (0.53333336, 0.8), (0.53333336, 0.8), (0.53333336, 0.81666666), (0.525, 0.81666666), (0.525, 0.8), (0.525, 0.8), (0.525, 0.81666666), (0.51666665, 0.81666666), (0.51666665, 0.8), (0.51666665, 0.8), (0.51666665, 0.81666666), (0.5083333, 0.81666666), (0.5083333, 0.8), (0.5083333, 0.8), (0.5083333, 0.81666666), (0.5, 0.81666666), (0.5, 0.8), (0.5, 0.8), (0.5, 0.81666666), (0.49166667, 0.81666666), (0.49166667, 0.8), (0.49166667, 0.8), (0.49166667, 0.81666666), (0.48333332, 0.81666666), (0.48333332, 0.8), (0.48333332, 0.8), (0.48333332, 0.81666666), (0.475, 0.81666666), (0.475, 0.8), (0.475, 0.8), (0.475, 0.81666666), (0.46666667, 0.81666666), (0.46666667, 0.8), (0.46666667, 0.8), (0.46666667, 0.81666666), (0.45833334, 0.81666666), (0.45833334, 0.8), (0.45833334, 0.8), (0.45833334, 0.81666666), (0.45, 0.81666666), (0.45, 0.8), (0.45, 0.8), (0.45, 0.81666666), (0.44166666, 0.81666666), (0.44166666, 0.8), (0.44166666, 0.8), (0.44166666, 0.81666666), (0.43333334, 0.81666666), (0.43333334, 0.8), (0.43333334, 0.8), (0.43333334, 0.81666666), (0.425, 0.81666666), (0.425, 0.8), (0.425, 0.8), (0.425, 0.81666666), (0.41666666, 0.81666666), (0.41666666, 0.8), (0.41666666, 0.8), (0.41666666, 0.81666666), (0.40833333, 0.81666666), (0.40833333, 0.8), (0.40833333, 0.8), (0.40833333, 0.81666666), (0.4, 0.81666666), (0.4, 0.8), (0.4, 0.8), (0.4, 0.81666666), (0.39166668, 0.81666666), (0.39166668, 0.8), (0.39166668, 0.8), (0.39166668, 0.81666666), (0.38333333, 0.81666666), (0.38333333, 0.8), (0.38333333, 0.8), (0.38333333, 0.81666666), (0.375, 0.81666666), (0.375, 0.8), (0.375, 0.8), (0.375, 0.81666666), (0.36666667, 0.81666666), (0.36666667, 0.8), (0.36666667, 0.8), (0.36666667, 0.81666666), (0.35833332, 0.81666666), (0.35833332, 0.8), (0.35833332, 0.8), (0.35833332, 0.81666666), (0.35, 0.81666666), (0.35, 0.8), (0.35, 0.8), (0.35, 0.81666666), (0.34166667, 0.81666666), (0.34166667, 0.8), (0.34166667, 0.8), (0.34166667, 0.81666666), (0.33333334, 0.81666666), (0.33333334, 0.8), (0.33333334, 0.8), (0.33333334, 0.81666666), (0.325, 0.81666666), (0.325, 0.8), (0.325, 0.8), (0.325, 0.81666666), (0.31666666, 0.81666666), (0.31666666, 0.8), (0.31666666, 0.8), (0.31666666, 0.81666666), (0.30833334, 0.81666666), (0.30833334, 0.8), (0.30833334, 0.8), (0.30833334, 0.81666666), (0.3, 0.81666666), (0.3, 0.8), (0.3, 0.8), (0.3, 0.81666666), (0.29166666, 0.81666666), (0.29166666, 0.8), (0.29166666, 0.8), (0.29166666, 0.81666666), (0.28333333, 0.81666666), (0.28333333, 0.8), (0.28333333, 0.8), (0.28333333, 0.81666666), (0.275, 0.81666666), (0.275, 0.8), (0.275, 0.8), (0.275, 0.81666666), (0.26666668, 0.81666666), (0.26666668, 0.8), (0.26666668, 0.8), (0.26666668, 0.81666666), (0.25833333, 0.81666666), (0.25833333, 0.8), (0.25833333, 0.8), (0.25833333, 0.81666666), (0.25, 0.81666666), (0.25, 0.8), (0.25, 0.8), (0.25, 0.81666666), (0.24166666, 0.81666666), (0.24166666, 0.8), (0.24166666, 0.8), (0.24166666, 0.81666666), (0.23333333, 0.81666666), (0.23333333, 0.8), (0.23333333, 0.8), (0.23333333, 0.81666666), (0.225, 0.81666666), (0.225, 0.8), (0.225, 0.8), (0.225, 0.81666666), (0.21666667, 0.81666666), (0.21666667, 0.8), (0.21666667, 0.8), (0.21666667, 0.81666666), (0.20833333, 0.81666666), (0.20833333, 0.8), (0.20833333, 0.8), (0.20833333, 0.81666666), (0.2, 0.81666666), (0.2, 0.8), (0.2, 0.8), (0.2, 0.81666666), (0.19166666, 0.81666666), (0.19166666, 0.8), (0.19166666, 0.8), (0.19166666, 0.81666666), (0.18333334, 0.81666666), (0.18333334, 0.8), (0.18333334, 0.8), (0.18333334, 0.81666666), (0.175, 0.81666666), (0.175, 0.8), (0.175, 0.8), (0.175, 0.81666666), (0.16666667, 0.81666666), (0.16666667, 0.8), (0.16666667, 0.8), (0.16666667, 0.81666666), (0.15833333, 0.81666666), (0.15833333, 0.8), (0.15833333, 0.8), (0.15833333, 0.81666666), (0.15, 0.81666666), (0.15, 0.8), (0.15, 0.8), (0.15, 0.81666666), (0.14166667, 0.81666666), (0.14166667, 0.8), (0.14166667, 0.8), (0.14166667, 0.81666666), (0.13333334, 0.81666666), (0.13333334, 0.8), (0.13333334, 0.8), (0.13333334, 0.81666666), (0.125, 0.81666666), (0.125, 0.8), (0.125, 0.8), (0.125, 0.81666666), (0.11666667, 0.81666666), (0.11666667, 0.8), (0.11666667, 0.8), (0.11666667, 0.81666666), (0.108333334, 0.81666666), (0.108333334, 0.8), (0.108333334, 0.8), (0.108333334, 0.81666666), (0.1, 0.81666666), (0.1, 0.8), (0.1, 0.8), (0.1, 0.81666666), (0.09166667, 0.81666666), (0.09166667, 0.8), (0.09166667, 0.8), (0.09166667, 0.81666666), (0.083333336, 0.81666666), (0.083333336, 0.8), (0.083333336, 0.8), (0.083333336, 0.81666666), (0.075, 0.81666666), (0.075, 0.8), (0.075, 0.8), (0.075, 0.81666666), (0.06666667, 0.81666666), (0.06666667, 0.8), (0.06666667, 0.8), (0.06666667, 0.81666666), (0.058333334, 0.81666666), (0.058333334, 0.8), (0.058333334, 0.8), (0.058333334, 0.81666666), (0.05, 0.81666666), (0.05, 0.8), (0.05, 0.8), (0.05, 0.81666666), (0.041666668, 0.81666666), (0.041666668, 0.8), (0.041666668, 0.8), (0.041666668, 0.81666666), (0.033333335, 0.81666666), (0.033333335, 0.8), (0.033333335, 0.8), (0.033333335, 0.81666666), (0.025, 0.81666666), (0.025, 0.8), (0.025, 0.8), (0.025, 0.81666666), (0.016666668, 0.81666666), (0.016666668, 0.8), (0.016666668, 0.8), (0.016666668, 0.81666666), (0.008333334, 0.81666666), (0.008333334, 0.8), (0.008333334, 0.8), (0.008333334, 0.81666666), (0, 0.81666666), (0, 0.8), (1, 0.81666666), (1, 0.8333333), (0.9916667, 0.8333333), (0.9916667, 0.81666666), (0.9916667, 0.81666666), (0.9916667, 0.8333333), (0.98333335, 0.8333333), (0.98333335, 0.81666666), (0.98333335, 0.81666666), (0.98333335, 0.8333333), (0.975, 0.8333333), (0.975, 0.81666666), (0.975, 0.81666666), (0.975, 0.8333333), (0.96666664, 0.8333333), (0.96666664, 0.81666666), (0.96666664, 0.81666666), (0.96666664, 0.8333333), (0.9583333, 0.8333333), (0.9583333, 0.81666666), (0.9583333, 0.81666666), (0.9583333, 0.8333333), (0.95, 0.8333333), (0.95, 0.81666666), (0.95, 0.81666666), (0.95, 0.8333333), (0.94166666, 0.8333333), (0.94166666, 0.81666666), (0.94166666, 0.81666666), (0.94166666, 0.8333333), (0.93333334, 0.8333333), (0.93333334, 0.81666666), (0.93333334, 0.81666666), (0.93333334, 0.8333333), (0.925, 0.8333333), (0.925, 0.81666666), (0.925, 0.81666666), (0.925, 0.8333333), (0.9166667, 0.8333333), (0.9166667, 0.81666666), (0.9166667, 0.81666666), (0.9166667, 0.8333333), (0.90833336, 0.8333333), (0.90833336, 0.81666666), (0.90833336, 0.81666666), (0.90833336, 0.8333333), (0.9, 0.8333333), (0.9, 0.81666666), (0.9, 0.81666666), (0.9, 0.8333333), (0.89166665, 0.8333333), (0.89166665, 0.81666666), (0.89166665, 0.81666666), (0.89166665, 0.8333333), (0.8833333, 0.8333333), (0.8833333, 0.81666666), (0.8833333, 0.81666666), (0.8833333, 0.8333333), (0.875, 0.8333333), (0.875, 0.81666666), (0.875, 0.81666666), (0.875, 0.8333333), (0.8666667, 0.8333333), (0.8666667, 0.81666666), (0.8666667, 0.81666666), (0.8666667, 0.8333333), (0.85833335, 0.8333333), (0.85833335, 0.81666666), (0.85833335, 0.81666666), (0.85833335, 0.8333333), (0.85, 0.8333333), (0.85, 0.81666666), (0.85, 0.81666666), (0.85, 0.8333333), (0.84166664, 0.8333333), (0.84166664, 0.81666666), (0.84166664, 0.81666666), (0.84166664, 0.8333333), (0.8333333, 0.8333333), (0.8333333, 0.81666666), (0.8333333, 0.81666666), (0.8333333, 0.8333333), (0.825, 0.8333333), (0.825, 0.81666666), (0.825, 0.81666666), (0.825, 0.8333333), (0.81666666, 0.8333333), (0.81666666, 0.81666666), (0.81666666, 0.81666666), (0.81666666, 0.8333333), (0.80833334, 0.8333333), (0.80833334, 0.81666666), (0.80833334, 0.81666666), (0.80833334, 0.8333333), (0.8, 0.8333333), (0.8, 0.81666666), (0.8, 0.81666666), (0.8, 0.8333333), (0.7916667, 0.8333333), (0.7916667, 0.81666666), (0.7916667, 0.81666666), (0.7916667, 0.8333333), (0.78333336, 0.8333333), (0.78333336, 0.81666666), (0.78333336, 0.81666666), (0.78333336, 0.8333333), (0.775, 0.8333333), (0.775, 0.81666666), (0.775, 0.81666666), (0.775, 0.8333333), (0.76666665, 0.8333333), (0.76666665, 0.81666666), (0.76666665, 0.81666666), (0.76666665, 0.8333333), (0.7583333, 0.8333333), (0.7583333, 0.81666666), (0.7583333, 0.81666666), (0.7583333, 0.8333333), (0.75, 0.8333333), (0.75, 0.81666666), (0.75, 0.81666666), (0.75, 0.8333333), (0.7416667, 0.8333333), (0.7416667, 0.81666666), (0.7416667, 0.81666666), (0.7416667, 0.8333333), (0.73333335, 0.8333333), (0.73333335, 0.81666666), (0.73333335, 0.81666666), (0.73333335, 0.8333333), (0.725, 0.8333333), (0.725, 0.81666666), (0.725, 0.81666666), (0.725, 0.8333333), (0.71666664, 0.8333333), (0.71666664, 0.81666666), (0.71666664, 0.81666666), (0.71666664, 0.8333333), (0.7083333, 0.8333333), (0.7083333, 0.81666666), (0.7083333, 0.81666666), (0.7083333, 0.8333333), (0.7, 0.8333333), (0.7, 0.81666666), (0.7, 0.81666666), (0.7, 0.8333333), (0.69166666, 0.8333333), (0.69166666, 0.81666666), (0.69166666, 0.81666666), (0.69166666, 0.8333333), (0.68333334, 0.8333333), (0.68333334, 0.81666666), (0.68333334, 0.81666666), (0.68333334, 0.8333333), (0.675, 0.8333333), (0.675, 0.81666666), (0.675, 0.81666666), (0.675, 0.8333333), (0.6666667, 0.8333333), (0.6666667, 0.81666666), (0.6666667, 0.81666666), (0.6666667, 0.8333333), (0.65833336, 0.8333333), (0.65833336, 0.81666666), (0.65833336, 0.81666666), (0.65833336, 0.8333333), (0.65, 0.8333333), (0.65, 0.81666666), (0.65, 0.81666666), (0.65, 0.8333333), (0.64166665, 0.8333333), (0.64166665, 0.81666666), (0.64166665, 0.81666666), (0.64166665, 0.8333333), (0.6333333, 0.8333333), (0.6333333, 0.81666666), (0.6333333, 0.81666666), (0.6333333, 0.8333333), (0.625, 0.8333333), (0.625, 0.81666666), (0.625, 0.81666666), (0.625, 0.8333333), (0.6166667, 0.8333333), (0.6166667, 0.81666666), (0.6166667, 0.81666666), (0.6166667, 0.8333333), (0.60833335, 0.8333333), (0.60833335, 0.81666666), (0.60833335, 0.81666666), (0.60833335, 0.8333333), (0.6, 0.8333333), (0.6, 0.81666666), (0.6, 0.81666666), (0.6, 0.8333333), (0.59166664, 0.8333333), (0.59166664, 0.81666666), (0.59166664, 0.81666666), (0.59166664, 0.8333333), (0.5833333, 0.8333333), (0.5833333, 0.81666666), (0.5833333, 0.81666666), (0.5833333, 0.8333333), (0.575, 0.8333333), (0.575, 0.81666666), (0.575, 0.81666666), (0.575, 0.8333333), (0.56666666, 0.8333333), (0.56666666, 0.81666666), (0.56666666, 0.81666666), (0.56666666, 0.8333333), (0.55833334, 0.8333333), (0.55833334, 0.81666666), (0.55833334, 0.81666666), (0.55833334, 0.8333333), (0.55, 0.8333333), (0.55, 0.81666666), (0.55, 0.81666666), (0.55, 0.8333333), (0.5416667, 0.8333333), (0.5416667, 0.81666666), (0.5416667, 0.81666666), (0.5416667, 0.8333333), (0.53333336, 0.8333333), (0.53333336, 0.81666666), (0.53333336, 0.81666666), (0.53333336, 0.8333333), (0.525, 0.8333333), (0.525, 0.81666666), (0.525, 0.81666666), (0.525, 0.8333333), (0.51666665, 0.8333333), (0.51666665, 0.81666666), (0.51666665, 0.81666666), (0.51666665, 0.8333333), (0.5083333, 0.8333333), (0.5083333, 0.81666666), (0.5083333, 0.81666666), (0.5083333, 0.8333333), (0.5, 0.8333333), (0.5, 0.81666666), (0.5, 0.81666666), (0.5, 0.8333333), (0.49166667, 0.8333333), (0.49166667, 0.81666666), (0.49166667, 0.81666666), (0.49166667, 0.8333333), (0.48333332, 0.8333333), (0.48333332, 0.81666666), (0.48333332, 0.81666666), (0.48333332, 0.8333333), (0.475, 0.8333333), (0.475, 0.81666666), (0.475, 0.81666666), (0.475, 0.8333333), (0.46666667, 0.8333333), (0.46666667, 0.81666666), (0.46666667, 0.81666666), (0.46666667, 0.8333333), (0.45833334, 0.8333333), (0.45833334, 0.81666666), (0.45833334, 0.81666666), (0.45833334, 0.8333333), (0.45, 0.8333333), (0.45, 0.81666666), (0.45, 0.81666666), (0.45, 0.8333333), (0.44166666, 0.8333333), (0.44166666, 0.81666666), (0.44166666, 0.81666666), (0.44166666, 0.8333333), (0.43333334, 0.8333333), (0.43333334, 0.81666666), (0.43333334, 0.81666666), (0.43333334, 0.8333333), (0.425, 0.8333333), (0.425, 0.81666666), (0.425, 0.81666666), (0.425, 0.8333333), (0.41666666, 0.8333333), (0.41666666, 0.81666666), (0.41666666, 0.81666666), (0.41666666, 0.8333333), (0.40833333, 0.8333333), (0.40833333, 0.81666666), (0.40833333, 0.81666666), (0.40833333, 0.8333333), (0.4, 0.8333333), (0.4, 0.81666666), (0.4, 0.81666666), (0.4, 0.8333333), (0.39166668, 0.8333333), (0.39166668, 0.81666666), (0.39166668, 0.81666666), (0.39166668, 0.8333333), (0.38333333, 0.8333333), (0.38333333, 0.81666666), (0.38333333, 0.81666666), (0.38333333, 0.8333333), (0.375, 0.8333333), (0.375, 0.81666666), (0.375, 0.81666666), (0.375, 0.8333333), (0.36666667, 0.8333333), (0.36666667, 0.81666666), (0.36666667, 0.81666666), (0.36666667, 0.8333333), (0.35833332, 0.8333333), (0.35833332, 0.81666666), (0.35833332, 0.81666666), (0.35833332, 0.8333333), (0.35, 0.8333333), (0.35, 0.81666666), (0.35, 0.81666666), (0.35, 0.8333333), (0.34166667, 0.8333333), (0.34166667, 0.81666666), (0.34166667, 0.81666666), (0.34166667, 0.8333333), (0.33333334, 0.8333333), (0.33333334, 0.81666666), (0.33333334, 0.81666666), (0.33333334, 0.8333333), (0.325, 0.8333333), (0.325, 0.81666666), (0.325, 0.81666666), (0.325, 0.8333333), (0.31666666, 0.8333333), (0.31666666, 0.81666666), (0.31666666, 0.81666666), (0.31666666, 0.8333333), (0.30833334, 0.8333333), (0.30833334, 0.81666666), (0.30833334, 0.81666666), (0.30833334, 0.8333333), (0.3, 0.8333333), (0.3, 0.81666666), (0.3, 0.81666666), (0.3, 0.8333333), (0.29166666, 0.8333333), (0.29166666, 0.81666666), (0.29166666, 0.81666666), (0.29166666, 0.8333333), (0.28333333, 0.8333333), (0.28333333, 0.81666666), (0.28333333, 0.81666666), (0.28333333, 0.8333333), (0.275, 0.8333333), (0.275, 0.81666666), (0.275, 0.81666666), (0.275, 0.8333333), (0.26666668, 0.8333333), (0.26666668, 0.81666666), (0.26666668, 0.81666666), (0.26666668, 0.8333333), (0.25833333, 0.8333333), (0.25833333, 0.81666666), (0.25833333, 0.81666666), (0.25833333, 0.8333333), (0.25, 0.8333333), (0.25, 0.81666666), (0.25, 0.81666666), (0.25, 0.8333333), (0.24166666, 0.8333333), (0.24166666, 0.81666666), (0.24166666, 0.81666666), (0.24166666, 0.8333333), (0.23333333, 0.8333333), (0.23333333, 0.81666666), (0.23333333, 0.81666666), (0.23333333, 0.8333333), (0.225, 0.8333333), (0.225, 0.81666666), (0.225, 0.81666666), (0.225, 0.8333333), (0.21666667, 0.8333333), (0.21666667, 0.81666666), (0.21666667, 0.81666666), (0.21666667, 0.8333333), (0.20833333, 0.8333333), (0.20833333, 0.81666666), (0.20833333, 0.81666666), (0.20833333, 0.8333333), (0.2, 0.8333333), (0.2, 0.81666666), (0.2, 0.81666666), (0.2, 0.8333333), (0.19166666, 0.8333333), (0.19166666, 0.81666666), (0.19166666, 0.81666666), (0.19166666, 0.8333333), (0.18333334, 0.8333333), (0.18333334, 0.81666666), (0.18333334, 0.81666666), (0.18333334, 0.8333333), (0.175, 0.8333333), (0.175, 0.81666666), (0.175, 0.81666666), (0.175, 0.8333333), (0.16666667, 0.8333333), (0.16666667, 0.81666666), (0.16666667, 0.81666666), (0.16666667, 0.8333333), (0.15833333, 0.8333333), (0.15833333, 0.81666666), (0.15833333, 0.81666666), (0.15833333, 0.8333333), (0.15, 0.8333333), (0.15, 0.81666666), (0.15, 0.81666666), (0.15, 0.8333333), (0.14166667, 0.8333333), (0.14166667, 0.81666666), (0.14166667, 0.81666666), (0.14166667, 0.8333333), (0.13333334, 0.8333333), (0.13333334, 0.81666666), (0.13333334, 0.81666666), (0.13333334, 0.8333333), (0.125, 0.8333333), (0.125, 0.81666666), (0.125, 0.81666666), (0.125, 0.8333333), (0.11666667, 0.8333333), (0.11666667, 0.81666666), (0.11666667, 0.81666666), (0.11666667, 0.8333333), (0.108333334, 0.8333333), (0.108333334, 0.81666666), (0.108333334, 0.81666666), (0.108333334, 0.8333333), (0.1, 0.8333333), (0.1, 0.81666666), (0.1, 0.81666666), (0.1, 0.8333333), (0.09166667, 0.8333333), (0.09166667, 0.81666666), (0.09166667, 0.81666666), (0.09166667, 0.8333333), (0.083333336, 0.8333333), (0.083333336, 0.81666666), (0.083333336, 0.81666666), (0.083333336, 0.8333333), (0.075, 0.8333333), (0.075, 0.81666666), (0.075, 0.81666666), (0.075, 0.8333333), (0.06666667, 0.8333333), (0.06666667, 0.81666666), (0.06666667, 0.81666666), (0.06666667, 0.8333333), (0.058333334, 0.8333333), (0.058333334, 0.81666666), (0.058333334, 0.81666666), (0.058333334, 0.8333333), (0.05, 0.8333333), (0.05, 0.81666666), (0.05, 0.81666666), (0.05, 0.8333333), (0.041666668, 0.8333333), (0.041666668, 0.81666666), (0.041666668, 0.81666666), (0.041666668, 0.8333333), (0.033333335, 0.8333333), (0.033333335, 0.81666666), (0.033333335, 0.81666666), (0.033333335, 0.8333333), (0.025, 0.8333333), (0.025, 0.81666666), (0.025, 0.81666666), (0.025, 0.8333333), (0.016666668, 0.8333333), (0.016666668, 0.81666666), (0.016666668, 0.81666666), (0.016666668, 0.8333333), (0.008333334, 0.8333333), (0.008333334, 0.81666666), (0.008333334, 0.81666666), (0.008333334, 0.8333333), (0, 0.8333333), (0, 0.81666666), (1, 0.8333333), (1, 0.85), (0.9916667, 0.85), (0.9916667, 0.8333333), (0.9916667, 0.8333333), (0.9916667, 0.85), (0.98333335, 0.85), (0.98333335, 0.8333333), (0.98333335, 0.8333333), (0.98333335, 0.85), (0.975, 0.85), (0.975, 0.8333333), (0.975, 0.8333333), (0.975, 0.85), (0.96666664, 0.85), (0.96666664, 0.8333333), (0.96666664, 0.8333333), (0.96666664, 0.85), (0.9583333, 0.85), (0.9583333, 0.8333333), (0.9583333, 0.8333333), (0.9583333, 0.85), (0.95, 0.85), (0.95, 0.8333333), (0.95, 0.8333333), (0.95, 0.85), (0.94166666, 0.85), (0.94166666, 0.8333333), (0.94166666, 0.8333333), (0.94166666, 0.85), (0.93333334, 0.85), (0.93333334, 0.8333333), (0.93333334, 0.8333333), (0.93333334, 0.85), (0.925, 0.85), (0.925, 0.8333333), (0.925, 0.8333333), (0.925, 0.85), (0.9166667, 0.85), (0.9166667, 0.8333333), (0.9166667, 0.8333333), (0.9166667, 0.85), (0.90833336, 0.85), (0.90833336, 0.8333333), (0.90833336, 0.8333333), (0.90833336, 0.85), (0.9, 0.85), (0.9, 0.8333333), (0.9, 0.8333333), (0.9, 0.85), (0.89166665, 0.85), (0.89166665, 0.8333333), (0.89166665, 0.8333333), (0.89166665, 0.85), (0.8833333, 0.85), (0.8833333, 0.8333333), (0.8833333, 0.8333333), (0.8833333, 0.85), (0.875, 0.85), (0.875, 0.8333333), (0.875, 0.8333333), (0.875, 0.85), (0.8666667, 0.85), (0.8666667, 0.8333333), (0.8666667, 0.8333333), (0.8666667, 0.85), (0.85833335, 0.85), (0.85833335, 0.8333333), (0.85833335, 0.8333333), (0.85833335, 0.85), (0.85, 0.85), (0.85, 0.8333333), (0.85, 0.8333333), (0.85, 0.85), (0.84166664, 0.85), (0.84166664, 0.8333333), (0.84166664, 0.8333333), (0.84166664, 0.85), (0.8333333, 0.85), (0.8333333, 0.8333333), (0.8333333, 0.8333333), (0.8333333, 0.85), (0.825, 0.85), (0.825, 0.8333333), (0.825, 0.8333333), (0.825, 0.85), (0.81666666, 0.85), (0.81666666, 0.8333333), (0.81666666, 0.8333333), (0.81666666, 0.85), (0.80833334, 0.85), (0.80833334, 0.8333333), (0.80833334, 0.8333333), (0.80833334, 0.85), (0.8, 0.85), (0.8, 0.8333333), (0.8, 0.8333333), (0.8, 0.85), (0.7916667, 0.85), (0.7916667, 0.8333333), (0.7916667, 0.8333333), (0.7916667, 0.85), (0.78333336, 0.85), (0.78333336, 0.8333333), (0.78333336, 0.8333333), (0.78333336, 0.85), (0.775, 0.85), (0.775, 0.8333333), (0.775, 0.8333333), (0.775, 0.85), (0.76666665, 0.85), (0.76666665, 0.8333333), (0.76666665, 0.8333333), (0.76666665, 0.85), (0.7583333, 0.85), (0.7583333, 0.8333333), (0.7583333, 0.8333333), (0.7583333, 0.85), (0.75, 0.85), (0.75, 0.8333333), (0.75, 0.8333333), (0.75, 0.85), (0.7416667, 0.85), (0.7416667, 0.8333333), (0.7416667, 0.8333333), (0.7416667, 0.85), (0.73333335, 0.85), (0.73333335, 0.8333333), (0.73333335, 0.8333333), (0.73333335, 0.85), (0.725, 0.85), (0.725, 0.8333333), (0.725, 0.8333333), (0.725, 0.85), (0.71666664, 0.85), (0.71666664, 0.8333333), (0.71666664, 0.8333333), (0.71666664, 0.85), (0.7083333, 0.85), (0.7083333, 0.8333333), (0.7083333, 0.8333333), (0.7083333, 0.85), (0.7, 0.85), (0.7, 0.8333333), (0.7, 0.8333333), (0.7, 0.85), (0.69166666, 0.85), (0.69166666, 0.8333333), (0.69166666, 0.8333333), (0.69166666, 0.85), (0.68333334, 0.85), (0.68333334, 0.8333333), (0.68333334, 0.8333333), (0.68333334, 0.85), (0.675, 0.85), (0.675, 0.8333333), (0.675, 0.8333333), (0.675, 0.85), (0.6666667, 0.85), (0.6666667, 0.8333333), (0.6666667, 0.8333333), (0.6666667, 0.85), (0.65833336, 0.85), (0.65833336, 0.8333333), (0.65833336, 0.8333333), (0.65833336, 0.85), (0.65, 0.85), (0.65, 0.8333333), (0.65, 0.8333333), (0.65, 0.85), (0.64166665, 0.85), (0.64166665, 0.8333333), (0.64166665, 0.8333333), (0.64166665, 0.85), (0.6333333, 0.85), (0.6333333, 0.8333333), (0.6333333, 0.8333333), (0.6333333, 0.85), (0.625, 0.85), (0.625, 0.8333333), (0.625, 0.8333333), (0.625, 0.85), (0.6166667, 0.85), (0.6166667, 0.8333333), (0.6166667, 0.8333333), (0.6166667, 0.85), (0.60833335, 0.85), (0.60833335, 0.8333333), (0.60833335, 0.8333333), (0.60833335, 0.85), (0.6, 0.85), (0.6, 0.8333333), (0.6, 0.8333333), (0.6, 0.85), (0.59166664, 0.85), (0.59166664, 0.8333333), (0.59166664, 0.8333333), (0.59166664, 0.85), (0.5833333, 0.85), (0.5833333, 0.8333333), (0.5833333, 0.8333333), (0.5833333, 0.85), (0.575, 0.85), (0.575, 0.8333333), (0.575, 0.8333333), (0.575, 0.85), (0.56666666, 0.85), (0.56666666, 0.8333333), (0.56666666, 0.8333333), (0.56666666, 0.85), (0.55833334, 0.85), (0.55833334, 0.8333333), (0.55833334, 0.8333333), (0.55833334, 0.85), (0.55, 0.85), (0.55, 0.8333333), (0.55, 0.8333333), (0.55, 0.85), (0.5416667, 0.85), (0.5416667, 0.8333333), (0.5416667, 0.8333333), (0.5416667, 0.85), (0.53333336, 0.85), (0.53333336, 0.8333333), (0.53333336, 0.8333333), (0.53333336, 0.85), (0.525, 0.85), (0.525, 0.8333333), (0.525, 0.8333333), (0.525, 0.85), (0.51666665, 0.85), (0.51666665, 0.8333333), (0.51666665, 0.8333333), (0.51666665, 0.85), (0.5083333, 0.85), (0.5083333, 0.8333333), (0.5083333, 0.8333333), (0.5083333, 0.85), (0.5, 0.85), (0.5, 0.8333333), (0.5, 0.8333333), (0.5, 0.85), (0.49166667, 0.85), (0.49166667, 0.8333333), (0.49166667, 0.8333333), (0.49166667, 0.85), (0.48333332, 0.85), (0.48333332, 0.8333333), (0.48333332, 0.8333333), (0.48333332, 0.85), (0.475, 0.85), (0.475, 0.8333333), (0.475, 0.8333333), (0.475, 0.85), (0.46666667, 0.85), (0.46666667, 0.8333333), (0.46666667, 0.8333333), (0.46666667, 0.85), (0.45833334, 0.85), (0.45833334, 0.8333333), (0.45833334, 0.8333333), (0.45833334, 0.85), (0.45, 0.85), (0.45, 0.8333333), (0.45, 0.8333333), (0.45, 0.85), (0.44166666, 0.85), (0.44166666, 0.8333333), (0.44166666, 0.8333333), (0.44166666, 0.85), (0.43333334, 0.85), (0.43333334, 0.8333333), (0.43333334, 0.8333333), (0.43333334, 0.85), (0.425, 0.85), (0.425, 0.8333333), (0.425, 0.8333333), (0.425, 0.85), (0.41666666, 0.85), (0.41666666, 0.8333333), (0.41666666, 0.8333333), (0.41666666, 0.85), (0.40833333, 0.85), (0.40833333, 0.8333333), (0.40833333, 0.8333333), (0.40833333, 0.85), (0.4, 0.85), (0.4, 0.8333333), (0.4, 0.8333333), (0.4, 0.85), (0.39166668, 0.85), (0.39166668, 0.8333333), (0.39166668, 0.8333333), (0.39166668, 0.85), (0.38333333, 0.85), (0.38333333, 0.8333333), (0.38333333, 0.8333333), (0.38333333, 0.85), (0.375, 0.85), (0.375, 0.8333333), (0.375, 0.8333333), (0.375, 0.85), (0.36666667, 0.85), (0.36666667, 0.8333333), (0.36666667, 0.8333333), (0.36666667, 0.85), (0.35833332, 0.85), (0.35833332, 0.8333333), (0.35833332, 0.8333333), (0.35833332, 0.85), (0.35, 0.85), (0.35, 0.8333333), (0.35, 0.8333333), (0.35, 0.85), (0.34166667, 0.85), (0.34166667, 0.8333333), (0.34166667, 0.8333333), (0.34166667, 0.85), (0.33333334, 0.85), (0.33333334, 0.8333333), (0.33333334, 0.8333333), (0.33333334, 0.85), (0.325, 0.85), (0.325, 0.8333333), (0.325, 0.8333333), (0.325, 0.85), (0.31666666, 0.85), (0.31666666, 0.8333333), (0.31666666, 0.8333333), (0.31666666, 0.85), (0.30833334, 0.85), (0.30833334, 0.8333333), (0.30833334, 0.8333333), (0.30833334, 0.85), (0.3, 0.85), (0.3, 0.8333333), (0.3, 0.8333333), (0.3, 0.85), (0.29166666, 0.85), (0.29166666, 0.8333333), (0.29166666, 0.8333333), (0.29166666, 0.85), (0.28333333, 0.85), (0.28333333, 0.8333333), (0.28333333, 0.8333333), (0.28333333, 0.85), (0.275, 0.85), (0.275, 0.8333333), (0.275, 0.8333333), (0.275, 0.85), (0.26666668, 0.85), (0.26666668, 0.8333333), (0.26666668, 0.8333333), (0.26666668, 0.85), (0.25833333, 0.85), (0.25833333, 0.8333333), (0.25833333, 0.8333333), (0.25833333, 0.85), (0.25, 0.85), (0.25, 0.8333333), (0.25, 0.8333333), (0.25, 0.85), (0.24166666, 0.85), (0.24166666, 0.8333333), (0.24166666, 0.8333333), (0.24166666, 0.85), (0.23333333, 0.85), (0.23333333, 0.8333333), (0.23333333, 0.8333333), (0.23333333, 0.85), (0.225, 0.85), (0.225, 0.8333333), (0.225, 0.8333333), (0.225, 0.85), (0.21666667, 0.85), (0.21666667, 0.8333333), (0.21666667, 0.8333333), (0.21666667, 0.85), (0.20833333, 0.85), (0.20833333, 0.8333333), (0.20833333, 0.8333333), (0.20833333, 0.85), (0.2, 0.85), (0.2, 0.8333333), (0.2, 0.8333333), (0.2, 0.85), (0.19166666, 0.85), (0.19166666, 0.8333333), (0.19166666, 0.8333333), (0.19166666, 0.85), (0.18333334, 0.85), (0.18333334, 0.8333333), (0.18333334, 0.8333333), (0.18333334, 0.85), (0.175, 0.85), (0.175, 0.8333333), (0.175, 0.8333333), (0.175, 0.85), (0.16666667, 0.85), (0.16666667, 0.8333333), (0.16666667, 0.8333333), (0.16666667, 0.85), (0.15833333, 0.85), (0.15833333, 0.8333333), (0.15833333, 0.8333333), (0.15833333, 0.85), (0.15, 0.85), (0.15, 0.8333333), (0.15, 0.8333333), (0.15, 0.85), (0.14166667, 0.85), (0.14166667, 0.8333333), (0.14166667, 0.8333333), (0.14166667, 0.85), (0.13333334, 0.85), (0.13333334, 0.8333333), (0.13333334, 0.8333333), (0.13333334, 0.85), (0.125, 0.85), (0.125, 0.8333333), (0.125, 0.8333333), (0.125, 0.85), (0.11666667, 0.85), (0.11666667, 0.8333333), (0.11666667, 0.8333333), (0.11666667, 0.85), (0.108333334, 0.85), (0.108333334, 0.8333333), (0.108333334, 0.8333333), (0.108333334, 0.85), (0.1, 0.85), (0.1, 0.8333333), (0.1, 0.8333333), (0.1, 0.85), (0.09166667, 0.85), (0.09166667, 0.8333333), (0.09166667, 0.8333333), (0.09166667, 0.85), (0.083333336, 0.85), (0.083333336, 0.8333333), (0.083333336, 0.8333333), (0.083333336, 0.85), (0.075, 0.85), (0.075, 0.8333333), (0.075, 0.8333333), (0.075, 0.85), (0.06666667, 0.85), (0.06666667, 0.8333333), (0.06666667, 0.8333333), (0.06666667, 0.85), (0.058333334, 0.85), (0.058333334, 0.8333333), (0.058333334, 0.8333333), (0.058333334, 0.85), (0.05, 0.85), (0.05, 0.8333333), (0.05, 0.8333333), (0.05, 0.85), (0.041666668, 0.85), (0.041666668, 0.8333333), (0.041666668, 0.8333333), (0.041666668, 0.85), (0.033333335, 0.85), (0.033333335, 0.8333333), (0.033333335, 0.8333333), (0.033333335, 0.85), (0.025, 0.85), (0.025, 0.8333333), (0.025, 0.8333333), (0.025, 0.85), (0.016666668, 0.85), (0.016666668, 0.8333333), (0.016666668, 0.8333333), (0.016666668, 0.85), (0.008333334, 0.85), (0.008333334, 0.8333333), (0.008333334, 0.8333333), (0.008333334, 0.85), (0, 0.85), (0, 0.8333333), (1, 0.85), (1, 0.8666667), (0.9916667, 0.8666667), (0.9916667, 0.85), (0.9916667, 0.85), (0.9916667, 0.8666667), (0.98333335, 0.8666667), (0.98333335, 0.85), (0.98333335, 0.85), (0.98333335, 0.8666667), (0.975, 0.8666667), (0.975, 0.85), (0.975, 0.85), (0.975, 0.8666667), (0.96666664, 0.8666667), (0.96666664, 0.85), (0.96666664, 0.85), (0.96666664, 0.8666667), (0.9583333, 0.8666667), (0.9583333, 0.85), (0.9583333, 0.85), (0.9583333, 0.8666667), (0.95, 0.8666667), (0.95, 0.85), (0.95, 0.85), (0.95, 0.8666667), (0.94166666, 0.8666667), (0.94166666, 0.85), (0.94166666, 0.85), (0.94166666, 0.8666667), (0.93333334, 0.8666667), (0.93333334, 0.85), (0.93333334, 0.85), (0.93333334, 0.8666667), (0.925, 0.8666667), (0.925, 0.85), (0.925, 0.85), (0.925, 0.8666667), (0.9166667, 0.8666667), (0.9166667, 0.85), (0.9166667, 0.85), (0.9166667, 0.8666667), (0.90833336, 0.8666667), (0.90833336, 0.85), (0.90833336, 0.85), (0.90833336, 0.8666667), (0.9, 0.8666667), (0.9, 0.85), (0.9, 0.85), (0.9, 0.8666667), (0.89166665, 0.8666667), (0.89166665, 0.85), (0.89166665, 0.85), (0.89166665, 0.8666667), (0.8833333, 0.8666667), (0.8833333, 0.85), (0.8833333, 0.85), (0.8833333, 0.8666667), (0.875, 0.8666667), (0.875, 0.85), (0.875, 0.85), (0.875, 0.8666667), (0.8666667, 0.8666667), (0.8666667, 0.85), (0.8666667, 0.85), (0.8666667, 0.8666667), (0.85833335, 0.8666667), (0.85833335, 0.85), (0.85833335, 0.85), (0.85833335, 0.8666667), (0.85, 0.8666667), (0.85, 0.85), (0.85, 0.85), (0.85, 0.8666667), (0.84166664, 0.8666667), (0.84166664, 0.85), (0.84166664, 0.85), (0.84166664, 0.8666667), (0.8333333, 0.8666667), (0.8333333, 0.85), (0.8333333, 0.85), (0.8333333, 0.8666667), (0.825, 0.8666667), (0.825, 0.85), (0.825, 0.85), (0.825, 0.8666667), (0.81666666, 0.8666667), (0.81666666, 0.85), (0.81666666, 0.85), (0.81666666, 0.8666667), (0.80833334, 0.8666667), (0.80833334, 0.85), (0.80833334, 0.85), (0.80833334, 0.8666667), (0.8, 0.8666667), (0.8, 0.85), (0.8, 0.85), (0.8, 0.8666667), (0.7916667, 0.8666667), (0.7916667, 0.85), (0.7916667, 0.85), (0.7916667, 0.8666667), (0.78333336, 0.8666667), (0.78333336, 0.85), (0.78333336, 0.85), (0.78333336, 0.8666667), (0.775, 0.8666667), (0.775, 0.85), (0.775, 0.85), (0.775, 0.8666667), (0.76666665, 0.8666667), (0.76666665, 0.85), (0.76666665, 0.85), (0.76666665, 0.8666667), (0.7583333, 0.8666667), (0.7583333, 0.85), (0.7583333, 0.85), (0.7583333, 0.8666667), (0.75, 0.8666667), (0.75, 0.85), (0.75, 0.85), (0.75, 0.8666667), (0.7416667, 0.8666667), (0.7416667, 0.85), (0.7416667, 0.85), (0.7416667, 0.8666667), (0.73333335, 0.8666667), (0.73333335, 0.85), (0.73333335, 0.85), (0.73333335, 0.8666667), (0.725, 0.8666667), (0.725, 0.85), (0.725, 0.85), (0.725, 0.8666667), (0.71666664, 0.8666667), (0.71666664, 0.85), (0.71666664, 0.85), (0.71666664, 0.8666667), (0.7083333, 0.8666667), (0.7083333, 0.85), (0.7083333, 0.85), (0.7083333, 0.8666667), (0.7, 0.8666667), (0.7, 0.85), (0.7, 0.85), (0.7, 0.8666667), (0.69166666, 0.8666667), (0.69166666, 0.85), (0.69166666, 0.85), (0.69166666, 0.8666667), (0.68333334, 0.8666667), (0.68333334, 0.85), (0.68333334, 0.85), (0.68333334, 0.8666667), (0.675, 0.8666667), (0.675, 0.85), (0.675, 0.85), (0.675, 0.8666667), (0.6666667, 0.8666667), (0.6666667, 0.85), (0.6666667, 0.85), (0.6666667, 0.8666667), (0.65833336, 0.8666667), (0.65833336, 0.85), (0.65833336, 0.85), (0.65833336, 0.8666667), (0.65, 0.8666667), (0.65, 0.85), (0.65, 0.85), (0.65, 0.8666667), (0.64166665, 0.8666667), (0.64166665, 0.85), (0.64166665, 0.85), (0.64166665, 0.8666667), (0.6333333, 0.8666667), (0.6333333, 0.85), (0.6333333, 0.85), (0.6333333, 0.8666667), (0.625, 0.8666667), (0.625, 0.85), (0.625, 0.85), (0.625, 0.8666667), (0.6166667, 0.8666667), (0.6166667, 0.85), (0.6166667, 0.85), (0.6166667, 0.8666667), (0.60833335, 0.8666667), (0.60833335, 0.85), (0.60833335, 0.85), (0.60833335, 0.8666667), (0.6, 0.8666667), (0.6, 0.85), (0.6, 0.85), (0.6, 0.8666667), (0.59166664, 0.8666667), (0.59166664, 0.85), (0.59166664, 0.85), (0.59166664, 0.8666667), (0.5833333, 0.8666667), (0.5833333, 0.85), (0.5833333, 0.85), (0.5833333, 0.8666667), (0.575, 0.8666667), (0.575, 0.85), (0.575, 0.85), (0.575, 0.8666667), (0.56666666, 0.8666667), (0.56666666, 0.85), (0.56666666, 0.85), (0.56666666, 0.8666667), (0.55833334, 0.8666667), (0.55833334, 0.85), (0.55833334, 0.85), (0.55833334, 0.8666667), (0.55, 0.8666667), (0.55, 0.85), (0.55, 0.85), (0.55, 0.8666667), (0.5416667, 0.8666667), (0.5416667, 0.85), (0.5416667, 0.85), (0.5416667, 0.8666667), (0.53333336, 0.8666667), (0.53333336, 0.85), (0.53333336, 0.85), (0.53333336, 0.8666667), (0.525, 0.8666667), (0.525, 0.85), (0.525, 0.85), (0.525, 0.8666667), (0.51666665, 0.8666667), (0.51666665, 0.85), (0.51666665, 0.85), (0.51666665, 0.8666667), (0.5083333, 0.8666667), (0.5083333, 0.85), (0.5083333, 0.85), (0.5083333, 0.8666667), (0.5, 0.8666667), (0.5, 0.85), (0.5, 0.85), (0.5, 0.8666667), (0.49166667, 0.8666667), (0.49166667, 0.85), (0.49166667, 0.85), (0.49166667, 0.8666667), (0.48333332, 0.8666667), (0.48333332, 0.85), (0.48333332, 0.85), (0.48333332, 0.8666667), (0.475, 0.8666667), (0.475, 0.85), (0.475, 0.85), (0.475, 0.8666667), (0.46666667, 0.8666667), (0.46666667, 0.85), (0.46666667, 0.85), (0.46666667, 0.8666667), (0.45833334, 0.8666667), (0.45833334, 0.85), (0.45833334, 0.85), (0.45833334, 0.8666667), (0.45, 0.8666667), (0.45, 0.85), (0.45, 0.85), (0.45, 0.8666667), (0.44166666, 0.8666667), (0.44166666, 0.85), (0.44166666, 0.85), (0.44166666, 0.8666667), (0.43333334, 0.8666667), (0.43333334, 0.85), (0.43333334, 0.85), (0.43333334, 0.8666667), (0.425, 0.8666667), (0.425, 0.85), (0.425, 0.85), (0.425, 0.8666667), (0.41666666, 0.8666667), (0.41666666, 0.85), (0.41666666, 0.85), (0.41666666, 0.8666667), (0.40833333, 0.8666667), (0.40833333, 0.85), (0.40833333, 0.85), (0.40833333, 0.8666667), (0.4, 0.8666667), (0.4, 0.85), (0.4, 0.85), (0.4, 0.8666667), (0.39166668, 0.8666667), (0.39166668, 0.85), (0.39166668, 0.85), (0.39166668, 0.8666667), (0.38333333, 0.8666667), (0.38333333, 0.85), (0.38333333, 0.85), (0.38333333, 0.8666667), (0.375, 0.8666667), (0.375, 0.85), (0.375, 0.85), (0.375, 0.8666667), (0.36666667, 0.8666667), (0.36666667, 0.85), (0.36666667, 0.85), (0.36666667, 0.8666667), (0.35833332, 0.8666667), (0.35833332, 0.85), (0.35833332, 0.85), (0.35833332, 0.8666667), (0.35, 0.8666667), (0.35, 0.85), (0.35, 0.85), (0.35, 0.8666667), (0.34166667, 0.8666667), (0.34166667, 0.85), (0.34166667, 0.85), (0.34166667, 0.8666667), (0.33333334, 0.8666667), (0.33333334, 0.85), (0.33333334, 0.85), (0.33333334, 0.8666667), (0.325, 0.8666667), (0.325, 0.85), (0.325, 0.85), (0.325, 0.8666667), (0.31666666, 0.8666667), (0.31666666, 0.85), (0.31666666, 0.85), (0.31666666, 0.8666667), (0.30833334, 0.8666667), (0.30833334, 0.85), (0.30833334, 0.85), (0.30833334, 0.8666667), (0.3, 0.8666667), (0.3, 0.85), (0.3, 0.85), (0.3, 0.8666667), (0.29166666, 0.8666667), (0.29166666, 0.85), (0.29166666, 0.85), (0.29166666, 0.8666667), (0.28333333, 0.8666667), (0.28333333, 0.85), (0.28333333, 0.85), (0.28333333, 0.8666667), (0.275, 0.8666667), (0.275, 0.85), (0.275, 0.85), (0.275, 0.8666667), (0.26666668, 0.8666667), (0.26666668, 0.85), (0.26666668, 0.85), (0.26666668, 0.8666667), (0.25833333, 0.8666667), (0.25833333, 0.85), (0.25833333, 0.85), (0.25833333, 0.8666667), (0.25, 0.8666667), (0.25, 0.85), (0.25, 0.85), (0.25, 0.8666667), (0.24166666, 0.8666667), (0.24166666, 0.85), (0.24166666, 0.85), (0.24166666, 0.8666667), (0.23333333, 0.8666667), (0.23333333, 0.85), (0.23333333, 0.85), (0.23333333, 0.8666667), (0.225, 0.8666667), (0.225, 0.85), (0.225, 0.85), (0.225, 0.8666667), (0.21666667, 0.8666667), (0.21666667, 0.85), (0.21666667, 0.85), (0.21666667, 0.8666667), (0.20833333, 0.8666667), (0.20833333, 0.85), (0.20833333, 0.85), (0.20833333, 0.8666667), (0.2, 0.8666667), (0.2, 0.85), (0.2, 0.85), (0.2, 0.8666667), (0.19166666, 0.8666667), (0.19166666, 0.85), (0.19166666, 0.85), (0.19166666, 0.8666667), (0.18333334, 0.8666667), (0.18333334, 0.85), (0.18333334, 0.85), (0.18333334, 0.8666667), (0.175, 0.8666667), (0.175, 0.85), (0.175, 0.85), (0.175, 0.8666667), (0.16666667, 0.8666667), (0.16666667, 0.85), (0.16666667, 0.85), (0.16666667, 0.8666667), (0.15833333, 0.8666667), (0.15833333, 0.85), (0.15833333, 0.85), (0.15833333, 0.8666667), (0.15, 0.8666667), (0.15, 0.85), (0.15, 0.85), (0.15, 0.8666667), (0.14166667, 0.8666667), (0.14166667, 0.85), (0.14166667, 0.85), (0.14166667, 0.8666667), (0.13333334, 0.8666667), (0.13333334, 0.85), (0.13333334, 0.85), (0.13333334, 0.8666667), (0.125, 0.8666667), (0.125, 0.85), (0.125, 0.85), (0.125, 0.8666667), (0.11666667, 0.8666667), (0.11666667, 0.85), (0.11666667, 0.85), (0.11666667, 0.8666667), (0.108333334, 0.8666667), (0.108333334, 0.85), (0.108333334, 0.85), (0.108333334, 0.8666667), (0.1, 0.8666667), (0.1, 0.85), (0.1, 0.85), (0.1, 0.8666667), (0.09166667, 0.8666667), (0.09166667, 0.85), (0.09166667, 0.85), (0.09166667, 0.8666667), (0.083333336, 0.8666667), (0.083333336, 0.85), (0.083333336, 0.85), (0.083333336, 0.8666667), (0.075, 0.8666667), (0.075, 0.85), (0.075, 0.85), (0.075, 0.8666667), (0.06666667, 0.8666667), (0.06666667, 0.85), (0.06666667, 0.85), (0.06666667, 0.8666667), (0.058333334, 0.8666667), (0.058333334, 0.85), (0.058333334, 0.85), (0.058333334, 0.8666667), (0.05, 0.8666667), (0.05, 0.85), (0.05, 0.85), (0.05, 0.8666667), (0.041666668, 0.8666667), (0.041666668, 0.85), (0.041666668, 0.85), (0.041666668, 0.8666667), (0.033333335, 0.8666667), (0.033333335, 0.85), (0.033333335, 0.85), (0.033333335, 0.8666667), (0.025, 0.8666667), (0.025, 0.85), (0.025, 0.85), (0.025, 0.8666667), (0.016666668, 0.8666667), (0.016666668, 0.85), (0.016666668, 0.85), (0.016666668, 0.8666667), (0.008333334, 0.8666667), (0.008333334, 0.85), (0.008333334, 0.85), (0.008333334, 0.8666667), (0, 0.8666667), (0, 0.85), (1, 0.8666667), (1, 0.8833333), (0.9916667, 0.8833333), (0.9916667, 0.8666667), (0.9916667, 0.8666667), (0.9916667, 0.8833333), (0.98333335, 0.8833333), (0.98333335, 0.8666667), (0.98333335, 0.8666667), (0.98333335, 0.8833333), (0.975, 0.8833333), (0.975, 0.8666667), (0.975, 0.8666667), (0.975, 0.8833333), (0.96666664, 0.8833333), (0.96666664, 0.8666667), (0.96666664, 0.8666667), (0.96666664, 0.8833333), (0.9583333, 0.8833333), (0.9583333, 0.8666667), (0.9583333, 0.8666667), (0.9583333, 0.8833333), (0.95, 0.8833333), (0.95, 0.8666667), (0.95, 0.8666667), (0.95, 0.8833333), (0.94166666, 0.8833333), (0.94166666, 0.8666667), (0.94166666, 0.8666667), (0.94166666, 0.8833333), (0.93333334, 0.8833333), (0.93333334, 0.8666667), (0.93333334, 0.8666667), (0.93333334, 0.8833333), (0.925, 0.8833333), (0.925, 0.8666667), (0.925, 0.8666667), (0.925, 0.8833333), (0.9166667, 0.8833333), (0.9166667, 0.8666667), (0.9166667, 0.8666667), (0.9166667, 0.8833333), (0.90833336, 0.8833333), (0.90833336, 0.8666667), (0.90833336, 0.8666667), (0.90833336, 0.8833333), (0.9, 0.8833333), (0.9, 0.8666667), (0.9, 0.8666667), (0.9, 0.8833333), (0.89166665, 0.8833333), (0.89166665, 0.8666667), (0.89166665, 0.8666667), (0.89166665, 0.8833333), (0.8833333, 0.8833333), (0.8833333, 0.8666667), (0.8833333, 0.8666667), (0.8833333, 0.8833333), (0.875, 0.8833333), (0.875, 0.8666667), (0.875, 0.8666667), (0.875, 0.8833333), (0.8666667, 0.8833333), (0.8666667, 0.8666667), (0.8666667, 0.8666667), (0.8666667, 0.8833333), (0.85833335, 0.8833333), (0.85833335, 0.8666667), (0.85833335, 0.8666667), (0.85833335, 0.8833333), (0.85, 0.8833333), (0.85, 0.8666667), (0.85, 0.8666667), (0.85, 0.8833333), (0.84166664, 0.8833333), (0.84166664, 0.8666667), (0.84166664, 0.8666667), (0.84166664, 0.8833333), (0.8333333, 0.8833333), (0.8333333, 0.8666667), (0.8333333, 0.8666667), (0.8333333, 0.8833333), (0.825, 0.8833333), (0.825, 0.8666667), (0.825, 0.8666667), (0.825, 0.8833333), (0.81666666, 0.8833333), (0.81666666, 0.8666667), (0.81666666, 0.8666667), (0.81666666, 0.8833333), (0.80833334, 0.8833333), (0.80833334, 0.8666667), (0.80833334, 0.8666667), (0.80833334, 0.8833333), (0.8, 0.8833333), (0.8, 0.8666667), (0.8, 0.8666667), (0.8, 0.8833333), (0.7916667, 0.8833333), (0.7916667, 0.8666667), (0.7916667, 0.8666667), (0.7916667, 0.8833333), (0.78333336, 0.8833333), (0.78333336, 0.8666667), (0.78333336, 0.8666667), (0.78333336, 0.8833333), (0.775, 0.8833333), (0.775, 0.8666667), (0.775, 0.8666667), (0.775, 0.8833333), (0.76666665, 0.8833333), (0.76666665, 0.8666667), (0.76666665, 0.8666667), (0.76666665, 0.8833333), (0.7583333, 0.8833333), (0.7583333, 0.8666667), (0.7583333, 0.8666667), (0.7583333, 0.8833333), (0.75, 0.8833333), (0.75, 0.8666667), (0.75, 0.8666667), (0.75, 0.8833333), (0.7416667, 0.8833333), (0.7416667, 0.8666667), (0.7416667, 0.8666667), (0.7416667, 0.8833333), (0.73333335, 0.8833333), (0.73333335, 0.8666667), (0.73333335, 0.8666667), (0.73333335, 0.8833333), (0.725, 0.8833333), (0.725, 0.8666667), (0.725, 0.8666667), (0.725, 0.8833333), (0.71666664, 0.8833333), (0.71666664, 0.8666667), (0.71666664, 0.8666667), (0.71666664, 0.8833333), (0.7083333, 0.8833333), (0.7083333, 0.8666667), (0.7083333, 0.8666667), (0.7083333, 0.8833333), (0.7, 0.8833333), (0.7, 0.8666667), (0.7, 0.8666667), (0.7, 0.8833333), (0.69166666, 0.8833333), (0.69166666, 0.8666667), (0.69166666, 0.8666667), (0.69166666, 0.8833333), (0.68333334, 0.8833333), (0.68333334, 0.8666667), (0.68333334, 0.8666667), (0.68333334, 0.8833333), (0.675, 0.8833333), (0.675, 0.8666667), (0.675, 0.8666667), (0.675, 0.8833333), (0.6666667, 0.8833333), (0.6666667, 0.8666667), (0.6666667, 0.8666667), (0.6666667, 0.8833333), (0.65833336, 0.8833333), (0.65833336, 0.8666667), (0.65833336, 0.8666667), (0.65833336, 0.8833333), (0.65, 0.8833333), (0.65, 0.8666667), (0.65, 0.8666667), (0.65, 0.8833333), (0.64166665, 0.8833333), (0.64166665, 0.8666667), (0.64166665, 0.8666667), (0.64166665, 0.8833333), (0.6333333, 0.8833333), (0.6333333, 0.8666667), (0.6333333, 0.8666667), (0.6333333, 0.8833333), (0.625, 0.8833333), (0.625, 0.8666667), (0.625, 0.8666667), (0.625, 0.8833333), (0.6166667, 0.8833333), (0.6166667, 0.8666667), (0.6166667, 0.8666667), (0.6166667, 0.8833333), (0.60833335, 0.8833333), (0.60833335, 0.8666667), (0.60833335, 0.8666667), (0.60833335, 0.8833333), (0.6, 0.8833333), (0.6, 0.8666667), (0.6, 0.8666667), (0.6, 0.8833333), (0.59166664, 0.8833333), (0.59166664, 0.8666667), (0.59166664, 0.8666667), (0.59166664, 0.8833333), (0.5833333, 0.8833333), (0.5833333, 0.8666667), (0.5833333, 0.8666667), (0.5833333, 0.8833333), (0.575, 0.8833333), (0.575, 0.8666667), (0.575, 0.8666667), (0.575, 0.8833333), (0.56666666, 0.8833333), (0.56666666, 0.8666667), (0.56666666, 0.8666667), (0.56666666, 0.8833333), (0.55833334, 0.8833333), (0.55833334, 0.8666667), (0.55833334, 0.8666667), (0.55833334, 0.8833333), (0.55, 0.8833333), (0.55, 0.8666667), (0.55, 0.8666667), (0.55, 0.8833333), (0.5416667, 0.8833333), (0.5416667, 0.8666667), (0.5416667, 0.8666667), (0.5416667, 0.8833333), (0.53333336, 0.8833333), (0.53333336, 0.8666667), (0.53333336, 0.8666667), (0.53333336, 0.8833333), (0.525, 0.8833333), (0.525, 0.8666667), (0.525, 0.8666667), (0.525, 0.8833333), (0.51666665, 0.8833333), (0.51666665, 0.8666667), (0.51666665, 0.8666667), (0.51666665, 0.8833333), (0.5083333, 0.8833333), (0.5083333, 0.8666667), (0.5083333, 0.8666667), (0.5083333, 0.8833333), (0.5, 0.8833333), (0.5, 0.8666667), (0.5, 0.8666667), (0.5, 0.8833333), (0.49166667, 0.8833333), (0.49166667, 0.8666667), (0.49166667, 0.8666667), (0.49166667, 0.8833333), (0.48333332, 0.8833333), (0.48333332, 0.8666667), (0.48333332, 0.8666667), (0.48333332, 0.8833333), (0.475, 0.8833333), (0.475, 0.8666667), (0.475, 0.8666667), (0.475, 0.8833333), (0.46666667, 0.8833333), (0.46666667, 0.8666667), (0.46666667, 0.8666667), (0.46666667, 0.8833333), (0.45833334, 0.8833333), (0.45833334, 0.8666667), (0.45833334, 0.8666667), (0.45833334, 0.8833333), (0.45, 0.8833333), (0.45, 0.8666667), (0.45, 0.8666667), (0.45, 0.8833333), (0.44166666, 0.8833333), (0.44166666, 0.8666667), (0.44166666, 0.8666667), (0.44166666, 0.8833333), (0.43333334, 0.8833333), (0.43333334, 0.8666667), (0.43333334, 0.8666667), (0.43333334, 0.8833333), (0.425, 0.8833333), (0.425, 0.8666667), (0.425, 0.8666667), (0.425, 0.8833333), (0.41666666, 0.8833333), (0.41666666, 0.8666667), (0.41666666, 0.8666667), (0.41666666, 0.8833333), (0.40833333, 0.8833333), (0.40833333, 0.8666667), (0.40833333, 0.8666667), (0.40833333, 0.8833333), (0.4, 0.8833333), (0.4, 0.8666667), (0.4, 0.8666667), (0.4, 0.8833333), (0.39166668, 0.8833333), (0.39166668, 0.8666667), (0.39166668, 0.8666667), (0.39166668, 0.8833333), (0.38333333, 0.8833333), (0.38333333, 0.8666667), (0.38333333, 0.8666667), (0.38333333, 0.8833333), (0.375, 0.8833333), (0.375, 0.8666667), (0.375, 0.8666667), (0.375, 0.8833333), (0.36666667, 0.8833333), (0.36666667, 0.8666667), (0.36666667, 0.8666667), (0.36666667, 0.8833333), (0.35833332, 0.8833333), (0.35833332, 0.8666667), (0.35833332, 0.8666667), (0.35833332, 0.8833333), (0.35, 0.8833333), (0.35, 0.8666667), (0.35, 0.8666667), (0.35, 0.8833333), (0.34166667, 0.8833333), (0.34166667, 0.8666667), (0.34166667, 0.8666667), (0.34166667, 0.8833333), (0.33333334, 0.8833333), (0.33333334, 0.8666667), (0.33333334, 0.8666667), (0.33333334, 0.8833333), (0.325, 0.8833333), (0.325, 0.8666667), (0.325, 0.8666667), (0.325, 0.8833333), (0.31666666, 0.8833333), (0.31666666, 0.8666667), (0.31666666, 0.8666667), (0.31666666, 0.8833333), (0.30833334, 0.8833333), (0.30833334, 0.8666667), (0.30833334, 0.8666667), (0.30833334, 0.8833333), (0.3, 0.8833333), (0.3, 0.8666667), (0.3, 0.8666667), (0.3, 0.8833333), (0.29166666, 0.8833333), (0.29166666, 0.8666667), (0.29166666, 0.8666667), (0.29166666, 0.8833333), (0.28333333, 0.8833333), (0.28333333, 0.8666667), (0.28333333, 0.8666667), (0.28333333, 0.8833333), (0.275, 0.8833333), (0.275, 0.8666667), (0.275, 0.8666667), (0.275, 0.8833333), (0.26666668, 0.8833333), (0.26666668, 0.8666667), (0.26666668, 0.8666667), (0.26666668, 0.8833333), (0.25833333, 0.8833333), (0.25833333, 0.8666667), (0.25833333, 0.8666667), (0.25833333, 0.8833333), (0.25, 0.8833333), (0.25, 0.8666667), (0.25, 0.8666667), (0.25, 0.8833333), (0.24166666, 0.8833333), (0.24166666, 0.8666667), (0.24166666, 0.8666667), (0.24166666, 0.8833333), (0.23333333, 0.8833333), (0.23333333, 0.8666667), (0.23333333, 0.8666667), (0.23333333, 0.8833333), (0.225, 0.8833333), (0.225, 0.8666667), (0.225, 0.8666667), (0.225, 0.8833333), (0.21666667, 0.8833333), (0.21666667, 0.8666667), (0.21666667, 0.8666667), (0.21666667, 0.8833333), (0.20833333, 0.8833333), (0.20833333, 0.8666667), (0.20833333, 0.8666667), (0.20833333, 0.8833333), (0.2, 0.8833333), (0.2, 0.8666667), (0.2, 0.8666667), (0.2, 0.8833333), (0.19166666, 0.8833333), (0.19166666, 0.8666667), (0.19166666, 0.8666667), (0.19166666, 0.8833333), (0.18333334, 0.8833333), (0.18333334, 0.8666667), (0.18333334, 0.8666667), (0.18333334, 0.8833333), (0.175, 0.8833333), (0.175, 0.8666667), (0.175, 0.8666667), (0.175, 0.8833333), (0.16666667, 0.8833333), (0.16666667, 0.8666667), (0.16666667, 0.8666667), (0.16666667, 0.8833333), (0.15833333, 0.8833333), (0.15833333, 0.8666667), (0.15833333, 0.8666667), (0.15833333, 0.8833333), (0.15, 0.8833333), (0.15, 0.8666667), (0.15, 0.8666667), (0.15, 0.8833333), (0.14166667, 0.8833333), (0.14166667, 0.8666667), (0.14166667, 0.8666667), (0.14166667, 0.8833333), (0.13333334, 0.8833333), (0.13333334, 0.8666667), (0.13333334, 0.8666667), (0.13333334, 0.8833333), (0.125, 0.8833333), (0.125, 0.8666667), (0.125, 0.8666667), (0.125, 0.8833333), (0.11666667, 0.8833333), (0.11666667, 0.8666667), (0.11666667, 0.8666667), (0.11666667, 0.8833333), (0.108333334, 0.8833333), (0.108333334, 0.8666667), (0.108333334, 0.8666667), (0.108333334, 0.8833333), (0.1, 0.8833333), (0.1, 0.8666667), (0.1, 0.8666667), (0.1, 0.8833333), (0.09166667, 0.8833333), (0.09166667, 0.8666667), (0.09166667, 0.8666667), (0.09166667, 0.8833333), (0.083333336, 0.8833333), (0.083333336, 0.8666667), (0.083333336, 0.8666667), (0.083333336, 0.8833333), (0.075, 0.8833333), (0.075, 0.8666667), (0.075, 0.8666667), (0.075, 0.8833333), (0.06666667, 0.8833333), (0.06666667, 0.8666667), (0.06666667, 0.8666667), (0.06666667, 0.8833333), (0.058333334, 0.8833333), (0.058333334, 0.8666667), (0.058333334, 0.8666667), (0.058333334, 0.8833333), (0.05, 0.8833333), (0.05, 0.8666667), (0.05, 0.8666667), (0.05, 0.8833333), (0.041666668, 0.8833333), (0.041666668, 0.8666667), (0.041666668, 0.8666667), (0.041666668, 0.8833333), (0.033333335, 0.8833333), (0.033333335, 0.8666667), (0.033333335, 0.8666667), (0.033333335, 0.8833333), (0.025, 0.8833333), (0.025, 0.8666667), (0.025, 0.8666667), (0.025, 0.8833333), (0.016666668, 0.8833333), (0.016666668, 0.8666667), (0.016666668, 0.8666667), (0.016666668, 0.8833333), (0.008333334, 0.8833333), (0.008333334, 0.8666667), (0.008333334, 0.8666667), (0.008333334, 0.8833333), (0, 0.8833333), (0, 0.8666667), (1, 0.8833333), (1, 0.9), (0.9916667, 0.9), (0.9916667, 0.8833333), (0.9916667, 0.8833333), (0.9916667, 0.9), (0.98333335, 0.9), (0.98333335, 0.8833333), (0.98333335, 0.8833333), (0.98333335, 0.9), (0.975, 0.9), (0.975, 0.8833333), (0.975, 0.8833333), (0.975, 0.9), (0.96666664, 0.9), (0.96666664, 0.8833333), (0.96666664, 0.8833333), (0.96666664, 0.9), (0.9583333, 0.9), (0.9583333, 0.8833333), (0.9583333, 0.8833333), (0.9583333, 0.9), (0.95, 0.9), (0.95, 0.8833333), (0.95, 0.8833333), (0.95, 0.9), (0.94166666, 0.9), (0.94166666, 0.8833333), (0.94166666, 0.8833333), (0.94166666, 0.9), (0.93333334, 0.9), (0.93333334, 0.8833333), (0.93333334, 0.8833333), (0.93333334, 0.9), (0.925, 0.9), (0.925, 0.8833333), (0.925, 0.8833333), (0.925, 0.9), (0.9166667, 0.9), (0.9166667, 0.8833333), (0.9166667, 0.8833333), (0.9166667, 0.9), (0.90833336, 0.9), (0.90833336, 0.8833333), (0.90833336, 0.8833333), (0.90833336, 0.9), (0.9, 0.9), (0.9, 0.8833333), (0.9, 0.8833333), (0.9, 0.9), (0.89166665, 0.9), (0.89166665, 0.8833333), (0.89166665, 0.8833333), (0.89166665, 0.9), (0.8833333, 0.9), (0.8833333, 0.8833333), (0.8833333, 0.8833333), (0.8833333, 0.9), (0.875, 0.9), (0.875, 0.8833333), (0.875, 0.8833333), (0.875, 0.9), (0.8666667, 0.9), (0.8666667, 0.8833333), (0.8666667, 0.8833333), (0.8666667, 0.9), (0.85833335, 0.9), (0.85833335, 0.8833333), (0.85833335, 0.8833333), (0.85833335, 0.9), (0.85, 0.9), (0.85, 0.8833333), (0.85, 0.8833333), (0.85, 0.9), (0.84166664, 0.9), (0.84166664, 0.8833333), (0.84166664, 0.8833333), (0.84166664, 0.9), (0.8333333, 0.9), (0.8333333, 0.8833333), (0.8333333, 0.8833333), (0.8333333, 0.9), (0.825, 0.9), (0.825, 0.8833333), (0.825, 0.8833333), (0.825, 0.9), (0.81666666, 0.9), (0.81666666, 0.8833333), (0.81666666, 0.8833333), (0.81666666, 0.9), (0.80833334, 0.9), (0.80833334, 0.8833333), (0.80833334, 0.8833333), (0.80833334, 0.9), (0.8, 0.9), (0.8, 0.8833333), (0.8, 0.8833333), (0.8, 0.9), (0.7916667, 0.9), (0.7916667, 0.8833333), (0.7916667, 0.8833333), (0.7916667, 0.9), (0.78333336, 0.9), (0.78333336, 0.8833333), (0.78333336, 0.8833333), (0.78333336, 0.9), (0.775, 0.9), (0.775, 0.8833333), (0.775, 0.8833333), (0.775, 0.9), (0.76666665, 0.9), (0.76666665, 0.8833333), (0.76666665, 0.8833333), (0.76666665, 0.9), (0.7583333, 0.9), (0.7583333, 0.8833333), (0.7583333, 0.8833333), (0.7583333, 0.9), (0.75, 0.9), (0.75, 0.8833333), (0.75, 0.8833333), (0.75, 0.9), (0.7416667, 0.9), (0.7416667, 0.8833333), (0.7416667, 0.8833333), (0.7416667, 0.9), (0.73333335, 0.9), (0.73333335, 0.8833333), (0.73333335, 0.8833333), (0.73333335, 0.9), (0.725, 0.9), (0.725, 0.8833333), (0.725, 0.8833333), (0.725, 0.9), (0.71666664, 0.9), (0.71666664, 0.8833333), (0.71666664, 0.8833333), (0.71666664, 0.9), (0.7083333, 0.9), (0.7083333, 0.8833333), (0.7083333, 0.8833333), (0.7083333, 0.9), (0.7, 0.9), (0.7, 0.8833333), (0.7, 0.8833333), (0.7, 0.9), (0.69166666, 0.9), (0.69166666, 0.8833333), (0.69166666, 0.8833333), (0.69166666, 0.9), (0.68333334, 0.9), (0.68333334, 0.8833333), (0.68333334, 0.8833333), (0.68333334, 0.9), (0.675, 0.9), (0.675, 0.8833333), (0.675, 0.8833333), (0.675, 0.9), (0.6666667, 0.9), (0.6666667, 0.8833333), (0.6666667, 0.8833333), (0.6666667, 0.9), (0.65833336, 0.9), (0.65833336, 0.8833333), (0.65833336, 0.8833333), (0.65833336, 0.9), (0.65, 0.9), (0.65, 0.8833333), (0.65, 0.8833333), (0.65, 0.9), (0.64166665, 0.9), (0.64166665, 0.8833333), (0.64166665, 0.8833333), (0.64166665, 0.9), (0.6333333, 0.9), (0.6333333, 0.8833333), (0.6333333, 0.8833333), (0.6333333, 0.9), (0.625, 0.9), (0.625, 0.8833333), (0.625, 0.8833333), (0.625, 0.9), (0.6166667, 0.9), (0.6166667, 0.8833333), (0.6166667, 0.8833333), (0.6166667, 0.9), (0.60833335, 0.9), (0.60833335, 0.8833333), (0.60833335, 0.8833333), (0.60833335, 0.9), (0.6, 0.9), (0.6, 0.8833333), (0.6, 0.8833333), (0.6, 0.9), (0.59166664, 0.9), (0.59166664, 0.8833333), (0.59166664, 0.8833333), (0.59166664, 0.9), (0.5833333, 0.9), (0.5833333, 0.8833333), (0.5833333, 0.8833333), (0.5833333, 0.9), (0.575, 0.9), (0.575, 0.8833333), (0.575, 0.8833333), (0.575, 0.9), (0.56666666, 0.9), (0.56666666, 0.8833333), (0.56666666, 0.8833333), (0.56666666, 0.9), (0.55833334, 0.9), (0.55833334, 0.8833333), (0.55833334, 0.8833333), (0.55833334, 0.9), (0.55, 0.9), (0.55, 0.8833333), (0.55, 0.8833333), (0.55, 0.9), (0.5416667, 0.9), (0.5416667, 0.8833333), (0.5416667, 0.8833333), (0.5416667, 0.9), (0.53333336, 0.9), (0.53333336, 0.8833333), (0.53333336, 0.8833333), (0.53333336, 0.9), (0.525, 0.9), (0.525, 0.8833333), (0.525, 0.8833333), (0.525, 0.9), (0.51666665, 0.9), (0.51666665, 0.8833333), (0.51666665, 0.8833333), (0.51666665, 0.9), (0.5083333, 0.9), (0.5083333, 0.8833333), (0.5083333, 0.8833333), (0.5083333, 0.9), (0.5, 0.9), (0.5, 0.8833333), (0.5, 0.8833333), (0.5, 0.9), (0.49166667, 0.9), (0.49166667, 0.8833333), (0.49166667, 0.8833333), (0.49166667, 0.9), (0.48333332, 0.9), (0.48333332, 0.8833333), (0.48333332, 0.8833333), (0.48333332, 0.9), (0.475, 0.9), (0.475, 0.8833333), (0.475, 0.8833333), (0.475, 0.9), (0.46666667, 0.9), (0.46666667, 0.8833333), (0.46666667, 0.8833333), (0.46666667, 0.9), (0.45833334, 0.9), (0.45833334, 0.8833333), (0.45833334, 0.8833333), (0.45833334, 0.9), (0.45, 0.9), (0.45, 0.8833333), (0.45, 0.8833333), (0.45, 0.9), (0.44166666, 0.9), (0.44166666, 0.8833333), (0.44166666, 0.8833333), (0.44166666, 0.9), (0.43333334, 0.9), (0.43333334, 0.8833333), (0.43333334, 0.8833333), (0.43333334, 0.9), (0.425, 0.9), (0.425, 0.8833333), (0.425, 0.8833333), (0.425, 0.9), (0.41666666, 0.9), (0.41666666, 0.8833333), (0.41666666, 0.8833333), (0.41666666, 0.9), (0.40833333, 0.9), (0.40833333, 0.8833333), (0.40833333, 0.8833333), (0.40833333, 0.9), (0.4, 0.9), (0.4, 0.8833333), (0.4, 0.8833333), (0.4, 0.9), (0.39166668, 0.9), (0.39166668, 0.8833333), (0.39166668, 0.8833333), (0.39166668, 0.9), (0.38333333, 0.9), (0.38333333, 0.8833333), (0.38333333, 0.8833333), (0.38333333, 0.9), (0.375, 0.9), (0.375, 0.8833333), (0.375, 0.8833333), (0.375, 0.9), (0.36666667, 0.9), (0.36666667, 0.8833333), (0.36666667, 0.8833333), (0.36666667, 0.9), (0.35833332, 0.9), (0.35833332, 0.8833333), (0.35833332, 0.8833333), (0.35833332, 0.9), (0.35, 0.9), (0.35, 0.8833333), (0.35, 0.8833333), (0.35, 0.9), (0.34166667, 0.9), (0.34166667, 0.8833333), (0.34166667, 0.8833333), (0.34166667, 0.9), (0.33333334, 0.9), (0.33333334, 0.8833333), (0.33333334, 0.8833333), (0.33333334, 0.9), (0.325, 0.9), (0.325, 0.8833333), (0.325, 0.8833333), (0.325, 0.9), (0.31666666, 0.9), (0.31666666, 0.8833333), (0.31666666, 0.8833333), (0.31666666, 0.9), (0.30833334, 0.9), (0.30833334, 0.8833333), (0.30833334, 0.8833333), (0.30833334, 0.9), (0.3, 0.9), (0.3, 0.8833333), (0.3, 0.8833333), (0.3, 0.9), (0.29166666, 0.9), (0.29166666, 0.8833333), (0.29166666, 0.8833333), (0.29166666, 0.9), (0.28333333, 0.9), (0.28333333, 0.8833333), (0.28333333, 0.8833333), (0.28333333, 0.9), (0.275, 0.9), (0.275, 0.8833333), (0.275, 0.8833333), (0.275, 0.9), (0.26666668, 0.9), (0.26666668, 0.8833333), (0.26666668, 0.8833333), (0.26666668, 0.9), (0.25833333, 0.9), (0.25833333, 0.8833333), (0.25833333, 0.8833333), (0.25833333, 0.9), (0.25, 0.9), (0.25, 0.8833333), (0.25, 0.8833333), (0.25, 0.9), (0.24166666, 0.9), (0.24166666, 0.8833333), (0.24166666, 0.8833333), (0.24166666, 0.9), (0.23333333, 0.9), (0.23333333, 0.8833333), (0.23333333, 0.8833333), (0.23333333, 0.9), (0.225, 0.9), (0.225, 0.8833333), (0.225, 0.8833333), (0.225, 0.9), (0.21666667, 0.9), (0.21666667, 0.8833333), (0.21666667, 0.8833333), (0.21666667, 0.9), (0.20833333, 0.9), (0.20833333, 0.8833333), (0.20833333, 0.8833333), (0.20833333, 0.9), (0.2, 0.9), (0.2, 0.8833333), (0.2, 0.8833333), (0.2, 0.9), (0.19166666, 0.9), (0.19166666, 0.8833333), (0.19166666, 0.8833333), (0.19166666, 0.9), (0.18333334, 0.9), (0.18333334, 0.8833333), (0.18333334, 0.8833333), (0.18333334, 0.9), (0.175, 0.9), (0.175, 0.8833333), (0.175, 0.8833333), (0.175, 0.9), (0.16666667, 0.9), (0.16666667, 0.8833333), (0.16666667, 0.8833333), (0.16666667, 0.9), (0.15833333, 0.9), (0.15833333, 0.8833333), (0.15833333, 0.8833333), (0.15833333, 0.9), (0.15, 0.9), (0.15, 0.8833333), (0.15, 0.8833333), (0.15, 0.9), (0.14166667, 0.9), (0.14166667, 0.8833333), (0.14166667, 0.8833333), (0.14166667, 0.9), (0.13333334, 0.9), (0.13333334, 0.8833333), (0.13333334, 0.8833333), (0.13333334, 0.9), (0.125, 0.9), (0.125, 0.8833333), (0.125, 0.8833333), (0.125, 0.9), (0.11666667, 0.9), (0.11666667, 0.8833333), (0.11666667, 0.8833333), (0.11666667, 0.9), (0.108333334, 0.9), (0.108333334, 0.8833333), (0.108333334, 0.8833333), (0.108333334, 0.9), (0.1, 0.9), (0.1, 0.8833333), (0.1, 0.8833333), (0.1, 0.9), (0.09166667, 0.9), (0.09166667, 0.8833333), (0.09166667, 0.8833333), (0.09166667, 0.9), (0.083333336, 0.9), (0.083333336, 0.8833333), (0.083333336, 0.8833333), (0.083333336, 0.9), (0.075, 0.9), (0.075, 0.8833333), (0.075, 0.8833333), (0.075, 0.9), (0.06666667, 0.9), (0.06666667, 0.8833333), (0.06666667, 0.8833333), (0.06666667, 0.9), (0.058333334, 0.9), (0.058333334, 0.8833333), (0.058333334, 0.8833333), (0.058333334, 0.9), (0.05, 0.9), (0.05, 0.8833333), (0.05, 0.8833333), (0.05, 0.9), (0.041666668, 0.9), (0.041666668, 0.8833333), (0.041666668, 0.8833333), (0.041666668, 0.9), (0.033333335, 0.9), (0.033333335, 0.8833333), (0.033333335, 0.8833333), (0.033333335, 0.9), (0.025, 0.9), (0.025, 0.8833333), (0.025, 0.8833333), (0.025, 0.9), (0.016666668, 0.9), (0.016666668, 0.8833333), (0.016666668, 0.8833333), (0.016666668, 0.9), (0.008333334, 0.9), (0.008333334, 0.8833333), (0.008333334, 0.8833333), (0.008333334, 0.9), (0, 0.9), (0, 0.8833333), (1, 0.9), (1, 0.9166667), (0.9916667, 0.9166667), (0.9916667, 0.9), (0.9916667, 0.9), (0.9916667, 0.9166667), (0.98333335, 0.9166667), (0.98333335, 0.9), (0.98333335, 0.9), (0.98333335, 0.9166667), (0.975, 0.9166667), (0.975, 0.9), (0.975, 0.9), (0.975, 0.9166667), (0.96666664, 0.9166667), (0.96666664, 0.9), (0.96666664, 0.9), (0.96666664, 0.9166667), (0.9583333, 0.9166667), (0.9583333, 0.9), (0.9583333, 0.9), (0.9583333, 0.9166667), (0.95, 0.9166667), (0.95, 0.9), (0.95, 0.9), (0.95, 0.9166667), (0.94166666, 0.9166667), (0.94166666, 0.9), (0.94166666, 0.9), (0.94166666, 0.9166667), (0.93333334, 0.9166667), (0.93333334, 0.9), (0.93333334, 0.9), (0.93333334, 0.9166667), (0.925, 0.9166667), (0.925, 0.9), (0.925, 0.9), (0.925, 0.9166667), (0.9166667, 0.9166667), (0.9166667, 0.9), (0.9166667, 0.9), (0.9166667, 0.9166667), (0.90833336, 0.9166667), (0.90833336, 0.9), (0.90833336, 0.9), (0.90833336, 0.9166667), (0.9, 0.9166667), (0.9, 0.9), (0.9, 0.9), (0.9, 0.9166667), (0.89166665, 0.9166667), (0.89166665, 0.9), (0.89166665, 0.9), (0.89166665, 0.9166667), (0.8833333, 0.9166667), (0.8833333, 0.9), (0.8833333, 0.9), (0.8833333, 0.9166667), (0.875, 0.9166667), (0.875, 0.9), (0.875, 0.9), (0.875, 0.9166667), (0.8666667, 0.9166667), (0.8666667, 0.9), (0.8666667, 0.9), (0.8666667, 0.9166667), (0.85833335, 0.9166667), (0.85833335, 0.9), (0.85833335, 0.9), (0.85833335, 0.9166667), (0.85, 0.9166667), (0.85, 0.9), (0.85, 0.9), (0.85, 0.9166667), (0.84166664, 0.9166667), (0.84166664, 0.9), (0.84166664, 0.9), (0.84166664, 0.9166667), (0.8333333, 0.9166667), (0.8333333, 0.9), (0.8333333, 0.9), (0.8333333, 0.9166667), (0.825, 0.9166667), (0.825, 0.9), (0.825, 0.9), (0.825, 0.9166667), (0.81666666, 0.9166667), (0.81666666, 0.9), (0.81666666, 0.9), (0.81666666, 0.9166667), (0.80833334, 0.9166667), (0.80833334, 0.9), (0.80833334, 0.9), (0.80833334, 0.9166667), (0.8, 0.9166667), (0.8, 0.9), (0.8, 0.9), (0.8, 0.9166667), (0.7916667, 0.9166667), (0.7916667, 0.9), (0.7916667, 0.9), (0.7916667, 0.9166667), (0.78333336, 0.9166667), (0.78333336, 0.9), (0.78333336, 0.9), (0.78333336, 0.9166667), (0.775, 0.9166667), (0.775, 0.9), (0.775, 0.9), (0.775, 0.9166667), (0.76666665, 0.9166667), (0.76666665, 0.9), (0.76666665, 0.9), (0.76666665, 0.9166667), (0.7583333, 0.9166667), (0.7583333, 0.9), (0.7583333, 0.9), (0.7583333, 0.9166667), (0.75, 0.9166667), (0.75, 0.9), (0.75, 0.9), (0.75, 0.9166667), (0.7416667, 0.9166667), (0.7416667, 0.9), (0.7416667, 0.9), (0.7416667, 0.9166667), (0.73333335, 0.9166667), (0.73333335, 0.9), (0.73333335, 0.9), (0.73333335, 0.9166667), (0.725, 0.9166667), (0.725, 0.9), (0.725, 0.9), (0.725, 0.9166667), (0.71666664, 0.9166667), (0.71666664, 0.9), (0.71666664, 0.9), (0.71666664, 0.9166667), (0.7083333, 0.9166667), (0.7083333, 0.9), (0.7083333, 0.9), (0.7083333, 0.9166667), (0.7, 0.9166667), (0.7, 0.9), (0.7, 0.9), (0.7, 0.9166667), (0.69166666, 0.9166667), (0.69166666, 0.9), (0.69166666, 0.9), (0.69166666, 0.9166667), (0.68333334, 0.9166667), (0.68333334, 0.9), (0.68333334, 0.9), (0.68333334, 0.9166667), (0.675, 0.9166667), (0.675, 0.9), (0.675, 0.9), (0.675, 0.9166667), (0.6666667, 0.9166667), (0.6666667, 0.9), (0.6666667, 0.9), (0.6666667, 0.9166667), (0.65833336, 0.9166667), (0.65833336, 0.9), (0.65833336, 0.9), (0.65833336, 0.9166667), (0.65, 0.9166667), (0.65, 0.9), (0.65, 0.9), (0.65, 0.9166667), (0.64166665, 0.9166667), (0.64166665, 0.9), (0.64166665, 0.9), (0.64166665, 0.9166667), (0.6333333, 0.9166667), (0.6333333, 0.9), (0.6333333, 0.9), (0.6333333, 0.9166667), (0.625, 0.9166667), (0.625, 0.9), (0.625, 0.9), (0.625, 0.9166667), (0.6166667, 0.9166667), (0.6166667, 0.9), (0.6166667, 0.9), (0.6166667, 0.9166667), (0.60833335, 0.9166667), (0.60833335, 0.9), (0.60833335, 0.9), (0.60833335, 0.9166667), (0.6, 0.9166667), (0.6, 0.9), (0.6, 0.9), (0.6, 0.9166667), (0.59166664, 0.9166667), (0.59166664, 0.9), (0.59166664, 0.9), (0.59166664, 0.9166667), (0.5833333, 0.9166667), (0.5833333, 0.9), (0.5833333, 0.9), (0.5833333, 0.9166667), (0.575, 0.9166667), (0.575, 0.9), (0.575, 0.9), (0.575, 0.9166667), (0.56666666, 0.9166667), (0.56666666, 0.9), (0.56666666, 0.9), (0.56666666, 0.9166667), (0.55833334, 0.9166667), (0.55833334, 0.9), (0.55833334, 0.9), (0.55833334, 0.9166667), (0.55, 0.9166667), (0.55, 0.9), (0.55, 0.9), (0.55, 0.9166667), (0.5416667, 0.9166667), (0.5416667, 0.9), (0.5416667, 0.9), (0.5416667, 0.9166667), (0.53333336, 0.9166667), (0.53333336, 0.9), (0.53333336, 0.9), (0.53333336, 0.9166667), (0.525, 0.9166667), (0.525, 0.9), (0.525, 0.9), (0.525, 0.9166667), (0.51666665, 0.9166667), (0.51666665, 0.9), (0.51666665, 0.9), (0.51666665, 0.9166667), (0.5083333, 0.9166667), (0.5083333, 0.9), (0.5083333, 0.9), (0.5083333, 0.9166667), (0.5, 0.9166667), (0.5, 0.9), (0.5, 0.9), (0.5, 0.9166667), (0.49166667, 0.9166667), (0.49166667, 0.9), (0.49166667, 0.9), (0.49166667, 0.9166667), (0.48333332, 0.9166667), (0.48333332, 0.9), (0.48333332, 0.9), (0.48333332, 0.9166667), (0.475, 0.9166667), (0.475, 0.9), (0.475, 0.9), (0.475, 0.9166667), (0.46666667, 0.9166667), (0.46666667, 0.9), (0.46666667, 0.9), (0.46666667, 0.9166667), (0.45833334, 0.9166667), (0.45833334, 0.9), (0.45833334, 0.9), (0.45833334, 0.9166667), (0.45, 0.9166667), (0.45, 0.9), (0.45, 0.9), (0.45, 0.9166667), (0.44166666, 0.9166667), (0.44166666, 0.9), (0.44166666, 0.9), (0.44166666, 0.9166667), (0.43333334, 0.9166667), (0.43333334, 0.9), (0.43333334, 0.9), (0.43333334, 0.9166667), (0.425, 0.9166667), (0.425, 0.9), (0.425, 0.9), (0.425, 0.9166667), (0.41666666, 0.9166667), (0.41666666, 0.9), (0.41666666, 0.9), (0.41666666, 0.9166667), (0.40833333, 0.9166667), (0.40833333, 0.9), (0.40833333, 0.9), (0.40833333, 0.9166667), (0.4, 0.9166667), (0.4, 0.9), (0.4, 0.9), (0.4, 0.9166667), (0.39166668, 0.9166667), (0.39166668, 0.9), (0.39166668, 0.9), (0.39166668, 0.9166667), (0.38333333, 0.9166667), (0.38333333, 0.9), (0.38333333, 0.9), (0.38333333, 0.9166667), (0.375, 0.9166667), (0.375, 0.9), (0.375, 0.9), (0.375, 0.9166667), (0.36666667, 0.9166667), (0.36666667, 0.9), (0.36666667, 0.9), (0.36666667, 0.9166667), (0.35833332, 0.9166667), (0.35833332, 0.9), (0.35833332, 0.9), (0.35833332, 0.9166667), (0.35, 0.9166667), (0.35, 0.9), (0.35, 0.9), (0.35, 0.9166667), (0.34166667, 0.9166667), (0.34166667, 0.9), (0.34166667, 0.9), (0.34166667, 0.9166667), (0.33333334, 0.9166667), (0.33333334, 0.9), (0.33333334, 0.9), (0.33333334, 0.9166667), (0.325, 0.9166667), (0.325, 0.9), (0.325, 0.9), (0.325, 0.9166667), (0.31666666, 0.9166667), (0.31666666, 0.9), (0.31666666, 0.9), (0.31666666, 0.9166667), (0.30833334, 0.9166667), (0.30833334, 0.9), (0.30833334, 0.9), (0.30833334, 0.9166667), (0.3, 0.9166667), (0.3, 0.9), (0.3, 0.9), (0.3, 0.9166667), (0.29166666, 0.9166667), (0.29166666, 0.9), (0.29166666, 0.9), (0.29166666, 0.9166667), (0.28333333, 0.9166667), (0.28333333, 0.9), (0.28333333, 0.9), (0.28333333, 0.9166667), (0.275, 0.9166667), (0.275, 0.9), (0.275, 0.9), (0.275, 0.9166667), (0.26666668, 0.9166667), (0.26666668, 0.9), (0.26666668, 0.9), (0.26666668, 0.9166667), (0.25833333, 0.9166667), (0.25833333, 0.9), (0.25833333, 0.9), (0.25833333, 0.9166667), (0.25, 0.9166667), (0.25, 0.9), (0.25, 0.9), (0.25, 0.9166667), (0.24166666, 0.9166667), (0.24166666, 0.9), (0.24166666, 0.9), (0.24166666, 0.9166667), (0.23333333, 0.9166667), (0.23333333, 0.9), (0.23333333, 0.9), (0.23333333, 0.9166667), (0.225, 0.9166667), (0.225, 0.9), (0.225, 0.9), (0.225, 0.9166667), (0.21666667, 0.9166667), (0.21666667, 0.9), (0.21666667, 0.9), (0.21666667, 0.9166667), (0.20833333, 0.9166667), (0.20833333, 0.9), (0.20833333, 0.9), (0.20833333, 0.9166667), (0.2, 0.9166667), (0.2, 0.9), (0.2, 0.9), (0.2, 0.9166667), (0.19166666, 0.9166667), (0.19166666, 0.9), (0.19166666, 0.9), (0.19166666, 0.9166667), (0.18333334, 0.9166667), (0.18333334, 0.9), (0.18333334, 0.9), (0.18333334, 0.9166667), (0.175, 0.9166667), (0.175, 0.9), (0.175, 0.9), (0.175, 0.9166667), (0.16666667, 0.9166667), (0.16666667, 0.9), (0.16666667, 0.9), (0.16666667, 0.9166667), (0.15833333, 0.9166667), (0.15833333, 0.9), (0.15833333, 0.9), (0.15833333, 0.9166667), (0.15, 0.9166667), (0.15, 0.9), (0.15, 0.9), (0.15, 0.9166667), (0.14166667, 0.9166667), (0.14166667, 0.9), (0.14166667, 0.9), (0.14166667, 0.9166667), (0.13333334, 0.9166667), (0.13333334, 0.9), (0.13333334, 0.9), (0.13333334, 0.9166667), (0.125, 0.9166667), (0.125, 0.9), (0.125, 0.9), (0.125, 0.9166667), (0.11666667, 0.9166667), (0.11666667, 0.9), (0.11666667, 0.9), (0.11666667, 0.9166667), (0.108333334, 0.9166667), (0.108333334, 0.9), (0.108333334, 0.9), (0.108333334, 0.9166667), (0.1, 0.9166667), (0.1, 0.9), (0.1, 0.9), (0.1, 0.9166667), (0.09166667, 0.9166667), (0.09166667, 0.9), (0.09166667, 0.9), (0.09166667, 0.9166667), (0.083333336, 0.9166667), (0.083333336, 0.9), (0.083333336, 0.9), (0.083333336, 0.9166667), (0.075, 0.9166667), (0.075, 0.9), (0.075, 0.9), (0.075, 0.9166667), (0.06666667, 0.9166667), (0.06666667, 0.9), (0.06666667, 0.9), (0.06666667, 0.9166667), (0.058333334, 0.9166667), (0.058333334, 0.9), (0.058333334, 0.9), (0.058333334, 0.9166667), (0.05, 0.9166667), (0.05, 0.9), (0.05, 0.9), (0.05, 0.9166667), (0.041666668, 0.9166667), (0.041666668, 0.9), (0.041666668, 0.9), (0.041666668, 0.9166667), (0.033333335, 0.9166667), (0.033333335, 0.9), (0.033333335, 0.9), (0.033333335, 0.9166667), (0.025, 0.9166667), (0.025, 0.9), (0.025, 0.9), (0.025, 0.9166667), (0.016666668, 0.9166667), (0.016666668, 0.9), (0.016666668, 0.9), (0.016666668, 0.9166667), (0.008333334, 0.9166667), (0.008333334, 0.9), (0.008333334, 0.9), (0.008333334, 0.9166667), (0, 0.9166667), (0, 0.9), (1, 0.9166667), (1, 0.93333334), (0.9916667, 0.93333334), (0.9916667, 0.9166667), (0.9916667, 0.9166667), (0.9916667, 0.93333334), (0.98333335, 0.93333334), (0.98333335, 0.9166667), (0.98333335, 0.9166667), (0.98333335, 0.93333334), (0.975, 0.93333334), (0.975, 0.9166667), (0.975, 0.9166667), (0.975, 0.93333334), (0.96666664, 0.93333334), (0.96666664, 0.9166667), (0.96666664, 0.9166667), (0.96666664, 0.93333334), (0.9583333, 0.93333334), (0.9583333, 0.9166667), (0.9583333, 0.9166667), (0.9583333, 0.93333334), (0.95, 0.93333334), (0.95, 0.9166667), (0.95, 0.9166667), (0.95, 0.93333334), (0.94166666, 0.93333334), (0.94166666, 0.9166667), (0.94166666, 0.9166667), (0.94166666, 0.93333334), (0.93333334, 0.93333334), (0.93333334, 0.9166667), (0.93333334, 0.9166667), (0.93333334, 0.93333334), (0.925, 0.93333334), (0.925, 0.9166667), (0.925, 0.9166667), (0.925, 0.93333334), (0.9166667, 0.93333334), (0.9166667, 0.9166667), (0.9166667, 0.9166667), (0.9166667, 0.93333334), (0.90833336, 0.93333334), (0.90833336, 0.9166667), (0.90833336, 0.9166667), (0.90833336, 0.93333334), (0.9, 0.93333334), (0.9, 0.9166667), (0.9, 0.9166667), (0.9, 0.93333334), (0.89166665, 0.93333334), (0.89166665, 0.9166667), (0.89166665, 0.9166667), (0.89166665, 0.93333334), (0.8833333, 0.93333334), (0.8833333, 0.9166667), (0.8833333, 0.9166667), (0.8833333, 0.93333334), (0.875, 0.93333334), (0.875, 0.9166667), (0.875, 0.9166667), (0.875, 0.93333334), (0.8666667, 0.93333334), (0.8666667, 0.9166667), (0.8666667, 0.9166667), (0.8666667, 0.93333334), (0.85833335, 0.93333334), (0.85833335, 0.9166667), (0.85833335, 0.9166667), (0.85833335, 0.93333334), (0.85, 0.93333334), (0.85, 0.9166667), (0.85, 0.9166667), (0.85, 0.93333334), (0.84166664, 0.93333334), (0.84166664, 0.9166667), (0.84166664, 0.9166667), (0.84166664, 0.93333334), (0.8333333, 0.93333334), (0.8333333, 0.9166667), (0.8333333, 0.9166667), (0.8333333, 0.93333334), (0.825, 0.93333334), (0.825, 0.9166667), (0.825, 0.9166667), (0.825, 0.93333334), (0.81666666, 0.93333334), (0.81666666, 0.9166667), (0.81666666, 0.9166667), (0.81666666, 0.93333334), (0.80833334, 0.93333334), (0.80833334, 0.9166667), (0.80833334, 0.9166667), (0.80833334, 0.93333334), (0.8, 0.93333334), (0.8, 0.9166667), (0.8, 0.9166667), (0.8, 0.93333334), (0.7916667, 0.93333334), (0.7916667, 0.9166667), (0.7916667, 0.9166667), (0.7916667, 0.93333334), (0.78333336, 0.93333334), (0.78333336, 0.9166667), (0.78333336, 0.9166667), (0.78333336, 0.93333334), (0.775, 0.93333334), (0.775, 0.9166667), (0.775, 0.9166667), (0.775, 0.93333334), (0.76666665, 0.93333334), (0.76666665, 0.9166667), (0.76666665, 0.9166667), (0.76666665, 0.93333334), (0.7583333, 0.93333334), (0.7583333, 0.9166667), (0.7583333, 0.9166667), (0.7583333, 0.93333334), (0.75, 0.93333334), (0.75, 0.9166667), (0.75, 0.9166667), (0.75, 0.93333334), (0.7416667, 0.93333334), (0.7416667, 0.9166667), (0.7416667, 0.9166667), (0.7416667, 0.93333334), (0.73333335, 0.93333334), (0.73333335, 0.9166667), (0.73333335, 0.9166667), (0.73333335, 0.93333334), (0.725, 0.93333334), (0.725, 0.9166667), (0.725, 0.9166667), (0.725, 0.93333334), (0.71666664, 0.93333334), (0.71666664, 0.9166667), (0.71666664, 0.9166667), (0.71666664, 0.93333334), (0.7083333, 0.93333334), (0.7083333, 0.9166667), (0.7083333, 0.9166667), (0.7083333, 0.93333334), (0.7, 0.93333334), (0.7, 0.9166667), (0.7, 0.9166667), (0.7, 0.93333334), (0.69166666, 0.93333334), (0.69166666, 0.9166667), (0.69166666, 0.9166667), (0.69166666, 0.93333334), (0.68333334, 0.93333334), (0.68333334, 0.9166667), (0.68333334, 0.9166667), (0.68333334, 0.93333334), (0.675, 0.93333334), (0.675, 0.9166667), (0.675, 0.9166667), (0.675, 0.93333334), (0.6666667, 0.93333334), (0.6666667, 0.9166667), (0.6666667, 0.9166667), (0.6666667, 0.93333334), (0.65833336, 0.93333334), (0.65833336, 0.9166667), (0.65833336, 0.9166667), (0.65833336, 0.93333334), (0.65, 0.93333334), (0.65, 0.9166667), (0.65, 0.9166667), (0.65, 0.93333334), (0.64166665, 0.93333334), (0.64166665, 0.9166667), (0.64166665, 0.9166667), (0.64166665, 0.93333334), (0.6333333, 0.93333334), (0.6333333, 0.9166667), (0.6333333, 0.9166667), (0.6333333, 0.93333334), (0.625, 0.93333334), (0.625, 0.9166667), (0.625, 0.9166667), (0.625, 0.93333334), (0.6166667, 0.93333334), (0.6166667, 0.9166667), (0.6166667, 0.9166667), (0.6166667, 0.93333334), (0.60833335, 0.93333334), (0.60833335, 0.9166667), (0.60833335, 0.9166667), (0.60833335, 0.93333334), (0.6, 0.93333334), (0.6, 0.9166667), (0.6, 0.9166667), (0.6, 0.93333334), (0.59166664, 0.93333334), (0.59166664, 0.9166667), (0.59166664, 0.9166667), (0.59166664, 0.93333334), (0.5833333, 0.93333334), (0.5833333, 0.9166667), (0.5833333, 0.9166667), (0.5833333, 0.93333334), (0.575, 0.93333334), (0.575, 0.9166667), (0.575, 0.9166667), (0.575, 0.93333334), (0.56666666, 0.93333334), (0.56666666, 0.9166667), (0.56666666, 0.9166667), (0.56666666, 0.93333334), (0.55833334, 0.93333334), (0.55833334, 0.9166667), (0.55833334, 0.9166667), (0.55833334, 0.93333334), (0.55, 0.93333334), (0.55, 0.9166667), (0.55, 0.9166667), (0.55, 0.93333334), (0.5416667, 0.93333334), (0.5416667, 0.9166667), (0.5416667, 0.9166667), (0.5416667, 0.93333334), (0.53333336, 0.93333334), (0.53333336, 0.9166667), (0.53333336, 0.9166667), (0.53333336, 0.93333334), (0.525, 0.93333334), (0.525, 0.9166667), (0.525, 0.9166667), (0.525, 0.93333334), (0.51666665, 0.93333334), (0.51666665, 0.9166667), (0.51666665, 0.9166667), (0.51666665, 0.93333334), (0.5083333, 0.93333334), (0.5083333, 0.9166667), (0.5083333, 0.9166667), (0.5083333, 0.93333334), (0.5, 0.93333334), (0.5, 0.9166667), (0.5, 0.9166667), (0.5, 0.93333334), (0.49166667, 0.93333334), (0.49166667, 0.9166667), (0.49166667, 0.9166667), (0.49166667, 0.93333334), (0.48333332, 0.93333334), (0.48333332, 0.9166667), (0.48333332, 0.9166667), (0.48333332, 0.93333334), (0.475, 0.93333334), (0.475, 0.9166667), (0.475, 0.9166667), (0.475, 0.93333334), (0.46666667, 0.93333334), (0.46666667, 0.9166667), (0.46666667, 0.9166667), (0.46666667, 0.93333334), (0.45833334, 0.93333334), (0.45833334, 0.9166667), (0.45833334, 0.9166667), (0.45833334, 0.93333334), (0.45, 0.93333334), (0.45, 0.9166667), (0.45, 0.9166667), (0.45, 0.93333334), (0.44166666, 0.93333334), (0.44166666, 0.9166667), (0.44166666, 0.9166667), (0.44166666, 0.93333334), (0.43333334, 0.93333334), (0.43333334, 0.9166667), (0.43333334, 0.9166667), (0.43333334, 0.93333334), (0.425, 0.93333334), (0.425, 0.9166667), (0.425, 0.9166667), (0.425, 0.93333334), (0.41666666, 0.93333334), (0.41666666, 0.9166667), (0.41666666, 0.9166667), (0.41666666, 0.93333334), (0.40833333, 0.93333334), (0.40833333, 0.9166667), (0.40833333, 0.9166667), (0.40833333, 0.93333334), (0.4, 0.93333334), (0.4, 0.9166667), (0.4, 0.9166667), (0.4, 0.93333334), (0.39166668, 0.93333334), (0.39166668, 0.9166667), (0.39166668, 0.9166667), (0.39166668, 0.93333334), (0.38333333, 0.93333334), (0.38333333, 0.9166667), (0.38333333, 0.9166667), (0.38333333, 0.93333334), (0.375, 0.93333334), (0.375, 0.9166667), (0.375, 0.9166667), (0.375, 0.93333334), (0.36666667, 0.93333334), (0.36666667, 0.9166667), (0.36666667, 0.9166667), (0.36666667, 0.93333334), (0.35833332, 0.93333334), (0.35833332, 0.9166667), (0.35833332, 0.9166667), (0.35833332, 0.93333334), (0.35, 0.93333334), (0.35, 0.9166667), (0.35, 0.9166667), (0.35, 0.93333334), (0.34166667, 0.93333334), (0.34166667, 0.9166667), (0.34166667, 0.9166667), (0.34166667, 0.93333334), (0.33333334, 0.93333334), (0.33333334, 0.9166667), (0.33333334, 0.9166667), (0.33333334, 0.93333334), (0.325, 0.93333334), (0.325, 0.9166667), (0.325, 0.9166667), (0.325, 0.93333334), (0.31666666, 0.93333334), (0.31666666, 0.9166667), (0.31666666, 0.9166667), (0.31666666, 0.93333334), (0.30833334, 0.93333334), (0.30833334, 0.9166667), (0.30833334, 0.9166667), (0.30833334, 0.93333334), (0.3, 0.93333334), (0.3, 0.9166667), (0.3, 0.9166667), (0.3, 0.93333334), (0.29166666, 0.93333334), (0.29166666, 0.9166667), (0.29166666, 0.9166667), (0.29166666, 0.93333334), (0.28333333, 0.93333334), (0.28333333, 0.9166667), (0.28333333, 0.9166667), (0.28333333, 0.93333334), (0.275, 0.93333334), (0.275, 0.9166667), (0.275, 0.9166667), (0.275, 0.93333334), (0.26666668, 0.93333334), (0.26666668, 0.9166667), (0.26666668, 0.9166667), (0.26666668, 0.93333334), (0.25833333, 0.93333334), (0.25833333, 0.9166667), (0.25833333, 0.9166667), (0.25833333, 0.93333334), (0.25, 0.93333334), (0.25, 0.9166667), (0.25, 0.9166667), (0.25, 0.93333334), (0.24166666, 0.93333334), (0.24166666, 0.9166667), (0.24166666, 0.9166667), (0.24166666, 0.93333334), (0.23333333, 0.93333334), (0.23333333, 0.9166667), (0.23333333, 0.9166667), (0.23333333, 0.93333334), (0.225, 0.93333334), (0.225, 0.9166667), (0.225, 0.9166667), (0.225, 0.93333334), (0.21666667, 0.93333334), (0.21666667, 0.9166667), (0.21666667, 0.9166667), (0.21666667, 0.93333334), (0.20833333, 0.93333334), (0.20833333, 0.9166667), (0.20833333, 0.9166667), (0.20833333, 0.93333334), (0.2, 0.93333334), (0.2, 0.9166667), (0.2, 0.9166667), (0.2, 0.93333334), (0.19166666, 0.93333334), (0.19166666, 0.9166667), (0.19166666, 0.9166667), (0.19166666, 0.93333334), (0.18333334, 0.93333334), (0.18333334, 0.9166667), (0.18333334, 0.9166667), (0.18333334, 0.93333334), (0.175, 0.93333334), (0.175, 0.9166667), (0.175, 0.9166667), (0.175, 0.93333334), (0.16666667, 0.93333334), (0.16666667, 0.9166667), (0.16666667, 0.9166667), (0.16666667, 0.93333334), (0.15833333, 0.93333334), (0.15833333, 0.9166667), (0.15833333, 0.9166667), (0.15833333, 0.93333334), (0.15, 0.93333334), (0.15, 0.9166667), (0.15, 0.9166667), (0.15, 0.93333334), (0.14166667, 0.93333334), (0.14166667, 0.9166667), (0.14166667, 0.9166667), (0.14166667, 0.93333334), (0.13333334, 0.93333334), (0.13333334, 0.9166667), (0.13333334, 0.9166667), (0.13333334, 0.93333334), (0.125, 0.93333334), (0.125, 0.9166667), (0.125, 0.9166667), (0.125, 0.93333334), (0.11666667, 0.93333334), (0.11666667, 0.9166667), (0.11666667, 0.9166667), (0.11666667, 0.93333334), (0.108333334, 0.93333334), (0.108333334, 0.9166667), (0.108333334, 0.9166667), (0.108333334, 0.93333334), (0.1, 0.93333334), (0.1, 0.9166667), (0.1, 0.9166667), (0.1, 0.93333334), (0.09166667, 0.93333334), (0.09166667, 0.9166667), (0.09166667, 0.9166667), (0.09166667, 0.93333334), (0.083333336, 0.93333334), (0.083333336, 0.9166667), (0.083333336, 0.9166667), (0.083333336, 0.93333334), (0.075, 0.93333334), (0.075, 0.9166667), (0.075, 0.9166667), (0.075, 0.93333334), (0.06666667, 0.93333334), (0.06666667, 0.9166667), (0.06666667, 0.9166667), (0.06666667, 0.93333334), (0.058333334, 0.93333334), (0.058333334, 0.9166667), (0.058333334, 0.9166667), (0.058333334, 0.93333334), (0.05, 0.93333334), (0.05, 0.9166667), (0.05, 0.9166667), (0.05, 0.93333334), (0.041666668, 0.93333334), (0.041666668, 0.9166667), (0.041666668, 0.9166667), (0.041666668, 0.93333334), (0.033333335, 0.93333334), (0.033333335, 0.9166667), (0.033333335, 0.9166667), (0.033333335, 0.93333334), (0.025, 0.93333334), (0.025, 0.9166667), (0.025, 0.9166667), (0.025, 0.93333334), (0.016666668, 0.93333334), (0.016666668, 0.9166667), (0.016666668, 0.9166667), (0.016666668, 0.93333334), (0.008333334, 0.93333334), (0.008333334, 0.9166667), (0.008333334, 0.9166667), (0.008333334, 0.93333334), (0, 0.93333334), (0, 0.9166667), (1, 0.93333334), (1, 0.95), (0.9916667, 0.95), (0.9916667, 0.93333334), (0.9916667, 0.93333334), (0.9916667, 0.95), (0.98333335, 0.95), (0.98333335, 0.93333334), (0.98333335, 0.93333334), (0.98333335, 0.95), (0.975, 0.95), (0.975, 0.93333334), (0.975, 0.93333334), (0.975, 0.95), (0.96666664, 0.95), (0.96666664, 0.93333334), (0.96666664, 0.93333334), (0.96666664, 0.95), (0.9583333, 0.95), (0.9583333, 0.93333334), (0.9583333, 0.93333334), (0.9583333, 0.95), (0.95, 0.95), (0.95, 0.93333334), (0.95, 0.93333334), (0.95, 0.95), (0.94166666, 0.95), (0.94166666, 0.93333334), (0.94166666, 0.93333334), (0.94166666, 0.95), (0.93333334, 0.95), (0.93333334, 0.93333334), (0.93333334, 0.93333334), (0.93333334, 0.95), (0.925, 0.95), (0.925, 0.93333334), (0.925, 0.93333334), (0.925, 0.95), (0.9166667, 0.95), (0.9166667, 0.93333334), (0.9166667, 0.93333334), (0.9166667, 0.95), (0.90833336, 0.95), (0.90833336, 0.93333334), (0.90833336, 0.93333334), (0.90833336, 0.95), (0.9, 0.95), (0.9, 0.93333334), (0.9, 0.93333334), (0.9, 0.95), (0.89166665, 0.95), (0.89166665, 0.93333334), (0.89166665, 0.93333334), (0.89166665, 0.95), (0.8833333, 0.95), (0.8833333, 0.93333334), (0.8833333, 0.93333334), (0.8833333, 0.95), (0.875, 0.95), (0.875, 0.93333334), (0.875, 0.93333334), (0.875, 0.95), (0.8666667, 0.95), (0.8666667, 0.93333334), (0.8666667, 0.93333334), (0.8666667, 0.95), (0.85833335, 0.95), (0.85833335, 0.93333334), (0.85833335, 0.93333334), (0.85833335, 0.95), (0.85, 0.95), (0.85, 0.93333334), (0.85, 0.93333334), (0.85, 0.95), (0.84166664, 0.95), (0.84166664, 0.93333334), (0.84166664, 0.93333334), (0.84166664, 0.95), (0.8333333, 0.95), (0.8333333, 0.93333334), (0.8333333, 0.93333334), (0.8333333, 0.95), (0.825, 0.95), (0.825, 0.93333334), (0.825, 0.93333334), (0.825, 0.95), (0.81666666, 0.95), (0.81666666, 0.93333334), (0.81666666, 0.93333334), (0.81666666, 0.95), (0.80833334, 0.95), (0.80833334, 0.93333334), (0.80833334, 0.93333334), (0.80833334, 0.95), (0.8, 0.95), (0.8, 0.93333334), (0.8, 0.93333334), (0.8, 0.95), (0.7916667, 0.95), (0.7916667, 0.93333334), (0.7916667, 0.93333334), (0.7916667, 0.95), (0.78333336, 0.95), (0.78333336, 0.93333334), (0.78333336, 0.93333334), (0.78333336, 0.95), (0.775, 0.95), (0.775, 0.93333334), (0.775, 0.93333334), (0.775, 0.95), (0.76666665, 0.95), (0.76666665, 0.93333334), (0.76666665, 0.93333334), (0.76666665, 0.95), (0.7583333, 0.95), (0.7583333, 0.93333334), (0.7583333, 0.93333334), (0.7583333, 0.95), (0.75, 0.95), (0.75, 0.93333334), (0.75, 0.93333334), (0.75, 0.95), (0.7416667, 0.95), (0.7416667, 0.93333334), (0.7416667, 0.93333334), (0.7416667, 0.95), (0.73333335, 0.95), (0.73333335, 0.93333334), (0.73333335, 0.93333334), (0.73333335, 0.95), (0.725, 0.95), (0.725, 0.93333334), (0.725, 0.93333334), (0.725, 0.95), (0.71666664, 0.95), (0.71666664, 0.93333334), (0.71666664, 0.93333334), (0.71666664, 0.95), (0.7083333, 0.95), (0.7083333, 0.93333334), (0.7083333, 0.93333334), (0.7083333, 0.95), (0.7, 0.95), (0.7, 0.93333334), (0.7, 0.93333334), (0.7, 0.95), (0.69166666, 0.95), (0.69166666, 0.93333334), (0.69166666, 0.93333334), (0.69166666, 0.95), (0.68333334, 0.95), (0.68333334, 0.93333334), (0.68333334, 0.93333334), (0.68333334, 0.95), (0.675, 0.95), (0.675, 0.93333334), (0.675, 0.93333334), (0.675, 0.95), (0.6666667, 0.95), (0.6666667, 0.93333334), (0.6666667, 0.93333334), (0.6666667, 0.95), (0.65833336, 0.95), (0.65833336, 0.93333334), (0.65833336, 0.93333334), (0.65833336, 0.95), (0.65, 0.95), (0.65, 0.93333334), (0.65, 0.93333334), (0.65, 0.95), (0.64166665, 0.95), (0.64166665, 0.93333334), (0.64166665, 0.93333334), (0.64166665, 0.95), (0.6333333, 0.95), (0.6333333, 0.93333334), (0.6333333, 0.93333334), (0.6333333, 0.95), (0.625, 0.95), (0.625, 0.93333334), (0.625, 0.93333334), (0.625, 0.95), (0.6166667, 0.95), (0.6166667, 0.93333334), (0.6166667, 0.93333334), (0.6166667, 0.95), (0.60833335, 0.95), (0.60833335, 0.93333334), (0.60833335, 0.93333334), (0.60833335, 0.95), (0.6, 0.95), (0.6, 0.93333334), (0.6, 0.93333334), (0.6, 0.95), (0.59166664, 0.95), (0.59166664, 0.93333334), (0.59166664, 0.93333334), (0.59166664, 0.95), (0.5833333, 0.95), (0.5833333, 0.93333334), (0.5833333, 0.93333334), (0.5833333, 0.95), (0.575, 0.95), (0.575, 0.93333334), (0.575, 0.93333334), (0.575, 0.95), (0.56666666, 0.95), (0.56666666, 0.93333334), (0.56666666, 0.93333334), (0.56666666, 0.95), (0.55833334, 0.95), (0.55833334, 0.93333334), (0.55833334, 0.93333334), (0.55833334, 0.95), (0.55, 0.95), (0.55, 0.93333334), (0.55, 0.93333334), (0.55, 0.95), (0.5416667, 0.95), (0.5416667, 0.93333334), (0.5416667, 0.93333334), (0.5416667, 0.95), (0.53333336, 0.95), (0.53333336, 0.93333334), (0.53333336, 0.93333334), (0.53333336, 0.95), (0.525, 0.95), (0.525, 0.93333334), (0.525, 0.93333334), (0.525, 0.95), (0.51666665, 0.95), (0.51666665, 0.93333334), (0.51666665, 0.93333334), (0.51666665, 0.95), (0.5083333, 0.95), (0.5083333, 0.93333334), (0.5083333, 0.93333334), (0.5083333, 0.95), (0.5, 0.95), (0.5, 0.93333334), (0.5, 0.93333334), (0.5, 0.95), (0.49166667, 0.95), (0.49166667, 0.93333334), (0.49166667, 0.93333334), (0.49166667, 0.95), (0.48333332, 0.95), (0.48333332, 0.93333334), (0.48333332, 0.93333334), (0.48333332, 0.95), (0.475, 0.95), (0.475, 0.93333334), (0.475, 0.93333334), (0.475, 0.95), (0.46666667, 0.95), (0.46666667, 0.93333334), (0.46666667, 0.93333334), (0.46666667, 0.95), (0.45833334, 0.95), (0.45833334, 0.93333334), (0.45833334, 0.93333334), (0.45833334, 0.95), (0.45, 0.95), (0.45, 0.93333334), (0.45, 0.93333334), (0.45, 0.95), (0.44166666, 0.95), (0.44166666, 0.93333334), (0.44166666, 0.93333334), (0.44166666, 0.95), (0.43333334, 0.95), (0.43333334, 0.93333334), (0.43333334, 0.93333334), (0.43333334, 0.95), (0.425, 0.95), (0.425, 0.93333334), (0.425, 0.93333334), (0.425, 0.95), (0.41666666, 0.95), (0.41666666, 0.93333334), (0.41666666, 0.93333334), (0.41666666, 0.95), (0.40833333, 0.95), (0.40833333, 0.93333334), (0.40833333, 0.93333334), (0.40833333, 0.95), (0.4, 0.95), (0.4, 0.93333334), (0.4, 0.93333334), (0.4, 0.95), (0.39166668, 0.95), (0.39166668, 0.93333334), (0.39166668, 0.93333334), (0.39166668, 0.95), (0.38333333, 0.95), (0.38333333, 0.93333334), (0.38333333, 0.93333334), (0.38333333, 0.95), (0.375, 0.95), (0.375, 0.93333334), (0.375, 0.93333334), (0.375, 0.95), (0.36666667, 0.95), (0.36666667, 0.93333334), (0.36666667, 0.93333334), (0.36666667, 0.95), (0.35833332, 0.95), (0.35833332, 0.93333334), (0.35833332, 0.93333334), (0.35833332, 0.95), (0.35, 0.95), (0.35, 0.93333334), (0.35, 0.93333334), (0.35, 0.95), (0.34166667, 0.95), (0.34166667, 0.93333334), (0.34166667, 0.93333334), (0.34166667, 0.95), (0.33333334, 0.95), (0.33333334, 0.93333334), (0.33333334, 0.93333334), (0.33333334, 0.95), (0.325, 0.95), (0.325, 0.93333334), (0.325, 0.93333334), (0.325, 0.95), (0.31666666, 0.95), (0.31666666, 0.93333334), (0.31666666, 0.93333334), (0.31666666, 0.95), (0.30833334, 0.95), (0.30833334, 0.93333334), (0.30833334, 0.93333334), (0.30833334, 0.95), (0.3, 0.95), (0.3, 0.93333334), (0.3, 0.93333334), (0.3, 0.95), (0.29166666, 0.95), (0.29166666, 0.93333334), (0.29166666, 0.93333334), (0.29166666, 0.95), (0.28333333, 0.95), (0.28333333, 0.93333334), (0.28333333, 0.93333334), (0.28333333, 0.95), (0.275, 0.95), (0.275, 0.93333334), (0.275, 0.93333334), (0.275, 0.95), (0.26666668, 0.95), (0.26666668, 0.93333334), (0.26666668, 0.93333334), (0.26666668, 0.95), (0.25833333, 0.95), (0.25833333, 0.93333334), (0.25833333, 0.93333334), (0.25833333, 0.95), (0.25, 0.95), (0.25, 0.93333334), (0.25, 0.93333334), (0.25, 0.95), (0.24166666, 0.95), (0.24166666, 0.93333334), (0.24166666, 0.93333334), (0.24166666, 0.95), (0.23333333, 0.95), (0.23333333, 0.93333334), (0.23333333, 0.93333334), (0.23333333, 0.95), (0.225, 0.95), (0.225, 0.93333334), (0.225, 0.93333334), (0.225, 0.95), (0.21666667, 0.95), (0.21666667, 0.93333334), (0.21666667, 0.93333334), (0.21666667, 0.95), (0.20833333, 0.95), (0.20833333, 0.93333334), (0.20833333, 0.93333334), (0.20833333, 0.95), (0.2, 0.95), (0.2, 0.93333334), (0.2, 0.93333334), (0.2, 0.95), (0.19166666, 0.95), (0.19166666, 0.93333334), (0.19166666, 0.93333334), (0.19166666, 0.95), (0.18333334, 0.95), (0.18333334, 0.93333334), (0.18333334, 0.93333334), (0.18333334, 0.95), (0.175, 0.95), (0.175, 0.93333334), (0.175, 0.93333334), (0.175, 0.95), (0.16666667, 0.95), (0.16666667, 0.93333334), (0.16666667, 0.93333334), (0.16666667, 0.95), (0.15833333, 0.95), (0.15833333, 0.93333334), (0.15833333, 0.93333334), (0.15833333, 0.95), (0.15, 0.95), (0.15, 0.93333334), (0.15, 0.93333334), (0.15, 0.95), (0.14166667, 0.95), (0.14166667, 0.93333334), (0.14166667, 0.93333334), (0.14166667, 0.95), (0.13333334, 0.95), (0.13333334, 0.93333334), (0.13333334, 0.93333334), (0.13333334, 0.95), (0.125, 0.95), (0.125, 0.93333334), (0.125, 0.93333334), (0.125, 0.95), (0.11666667, 0.95), (0.11666667, 0.93333334), (0.11666667, 0.93333334), (0.11666667, 0.95), (0.108333334, 0.95), (0.108333334, 0.93333334), (0.108333334, 0.93333334), (0.108333334, 0.95), (0.1, 0.95), (0.1, 0.93333334), (0.1, 0.93333334), (0.1, 0.95), (0.09166667, 0.95), (0.09166667, 0.93333334), (0.09166667, 0.93333334), (0.09166667, 0.95), (0.083333336, 0.95), (0.083333336, 0.93333334), (0.083333336, 0.93333334), (0.083333336, 0.95), (0.075, 0.95), (0.075, 0.93333334), (0.075, 0.93333334), (0.075, 0.95), (0.06666667, 0.95), (0.06666667, 0.93333334), (0.06666667, 0.93333334), (0.06666667, 0.95), (0.058333334, 0.95), (0.058333334, 0.93333334), (0.058333334, 0.93333334), (0.058333334, 0.95), (0.05, 0.95), (0.05, 0.93333334), (0.05, 0.93333334), (0.05, 0.95), (0.041666668, 0.95), (0.041666668, 0.93333334), (0.041666668, 0.93333334), (0.041666668, 0.95), (0.033333335, 0.95), (0.033333335, 0.93333334), (0.033333335, 0.93333334), (0.033333335, 0.95), (0.025, 0.95), (0.025, 0.93333334), (0.025, 0.93333334), (0.025, 0.95), (0.016666668, 0.95), (0.016666668, 0.93333334), (0.016666668, 0.93333334), (0.016666668, 0.95), (0.008333334, 0.95), (0.008333334, 0.93333334), (0.008333334, 0.93333334), (0.008333334, 0.95), (0, 0.95), (0, 0.93333334), (1, 0.95), (1, 0.96666664), (0.9916667, 0.96666664), (0.9916667, 0.95), (0.9916667, 0.95), (0.9916667, 0.96666664), (0.98333335, 0.96666664), (0.98333335, 0.95), (0.98333335, 0.95), (0.98333335, 0.96666664), (0.975, 0.96666664), (0.975, 0.95), (0.975, 0.95), (0.975, 0.96666664), (0.96666664, 0.96666664), (0.96666664, 0.95), (0.96666664, 0.95), (0.96666664, 0.96666664), (0.9583333, 0.96666664), (0.9583333, 0.95), (0.9583333, 0.95), (0.9583333, 0.96666664), (0.95, 0.96666664), (0.95, 0.95), (0.95, 0.95), (0.95, 0.96666664), (0.94166666, 0.96666664), (0.94166666, 0.95), (0.94166666, 0.95), (0.94166666, 0.96666664), (0.93333334, 0.96666664), (0.93333334, 0.95), (0.93333334, 0.95), (0.93333334, 0.96666664), (0.925, 0.96666664), (0.925, 0.95), (0.925, 0.95), (0.925, 0.96666664), (0.9166667, 0.96666664), (0.9166667, 0.95), (0.9166667, 0.95), (0.9166667, 0.96666664), (0.90833336, 0.96666664), (0.90833336, 0.95), (0.90833336, 0.95), (0.90833336, 0.96666664), (0.9, 0.96666664), (0.9, 0.95), (0.9, 0.95), (0.9, 0.96666664), (0.89166665, 0.96666664), (0.89166665, 0.95), (0.89166665, 0.95), (0.89166665, 0.96666664), (0.8833333, 0.96666664), (0.8833333, 0.95), (0.8833333, 0.95), (0.8833333, 0.96666664), (0.875, 0.96666664), (0.875, 0.95), (0.875, 0.95), (0.875, 0.96666664), (0.8666667, 0.96666664), (0.8666667, 0.95), (0.8666667, 0.95), (0.8666667, 0.96666664), (0.85833335, 0.96666664), (0.85833335, 0.95), (0.85833335, 0.95), (0.85833335, 0.96666664), (0.85, 0.96666664), (0.85, 0.95), (0.85, 0.95), (0.85, 0.96666664), (0.84166664, 0.96666664), (0.84166664, 0.95), (0.84166664, 0.95), (0.84166664, 0.96666664), (0.8333333, 0.96666664), (0.8333333, 0.95), (0.8333333, 0.95), (0.8333333, 0.96666664), (0.825, 0.96666664), (0.825, 0.95), (0.825, 0.95), (0.825, 0.96666664), (0.81666666, 0.96666664), (0.81666666, 0.95), (0.81666666, 0.95), (0.81666666, 0.96666664), (0.80833334, 0.96666664), (0.80833334, 0.95), (0.80833334, 0.95), (0.80833334, 0.96666664), (0.8, 0.96666664), (0.8, 0.95), (0.8, 0.95), (0.8, 0.96666664), (0.7916667, 0.96666664), (0.7916667, 0.95), (0.7916667, 0.95), (0.7916667, 0.96666664), (0.78333336, 0.96666664), (0.78333336, 0.95), (0.78333336, 0.95), (0.78333336, 0.96666664), (0.775, 0.96666664), (0.775, 0.95), (0.775, 0.95), (0.775, 0.96666664), (0.76666665, 0.96666664), (0.76666665, 0.95), (0.76666665, 0.95), (0.76666665, 0.96666664), (0.7583333, 0.96666664), (0.7583333, 0.95), (0.7583333, 0.95), (0.7583333, 0.96666664), (0.75, 0.96666664), (0.75, 0.95), (0.75, 0.95), (0.75, 0.96666664), (0.7416667, 0.96666664), (0.7416667, 0.95), (0.7416667, 0.95), (0.7416667, 0.96666664), (0.73333335, 0.96666664), (0.73333335, 0.95), (0.73333335, 0.95), (0.73333335, 0.96666664), (0.725, 0.96666664), (0.725, 0.95), (0.725, 0.95), (0.725, 0.96666664), (0.71666664, 0.96666664), (0.71666664, 0.95), (0.71666664, 0.95), (0.71666664, 0.96666664), (0.7083333, 0.96666664), (0.7083333, 0.95), (0.7083333, 0.95), (0.7083333, 0.96666664), (0.7, 0.96666664), (0.7, 0.95), (0.7, 0.95), (0.7, 0.96666664), (0.69166666, 0.96666664), (0.69166666, 0.95), (0.69166666, 0.95), (0.69166666, 0.96666664), (0.68333334, 0.96666664), (0.68333334, 0.95), (0.68333334, 0.95), (0.68333334, 0.96666664), (0.675, 0.96666664), (0.675, 0.95), (0.675, 0.95), (0.675, 0.96666664), (0.6666667, 0.96666664), (0.6666667, 0.95), (0.6666667, 0.95), (0.6666667, 0.96666664), (0.65833336, 0.96666664), (0.65833336, 0.95), (0.65833336, 0.95), (0.65833336, 0.96666664), (0.65, 0.96666664), (0.65, 0.95), (0.65, 0.95), (0.65, 0.96666664), (0.64166665, 0.96666664), (0.64166665, 0.95), (0.64166665, 0.95), (0.64166665, 0.96666664), (0.6333333, 0.96666664), (0.6333333, 0.95), (0.6333333, 0.95), (0.6333333, 0.96666664), (0.625, 0.96666664), (0.625, 0.95), (0.625, 0.95), (0.625, 0.96666664), (0.6166667, 0.96666664), (0.6166667, 0.95), (0.6166667, 0.95), (0.6166667, 0.96666664), (0.60833335, 0.96666664), (0.60833335, 0.95), (0.60833335, 0.95), (0.60833335, 0.96666664), (0.6, 0.96666664), (0.6, 0.95), (0.6, 0.95), (0.6, 0.96666664), (0.59166664, 0.96666664), (0.59166664, 0.95), (0.59166664, 0.95), (0.59166664, 0.96666664), (0.5833333, 0.96666664), (0.5833333, 0.95), (0.5833333, 0.95), (0.5833333, 0.96666664), (0.575, 0.96666664), (0.575, 0.95), (0.575, 0.95), (0.575, 0.96666664), (0.56666666, 0.96666664), (0.56666666, 0.95), (0.56666666, 0.95), (0.56666666, 0.96666664), (0.55833334, 0.96666664), (0.55833334, 0.95), (0.55833334, 0.95), (0.55833334, 0.96666664), (0.55, 0.96666664), (0.55, 0.95), (0.55, 0.95), (0.55, 0.96666664), (0.5416667, 0.96666664), (0.5416667, 0.95), (0.5416667, 0.95), (0.5416667, 0.96666664), (0.53333336, 0.96666664), (0.53333336, 0.95), (0.53333336, 0.95), (0.53333336, 0.96666664), (0.525, 0.96666664), (0.525, 0.95), (0.525, 0.95), (0.525, 0.96666664), (0.51666665, 0.96666664), (0.51666665, 0.95), (0.51666665, 0.95), (0.51666665, 0.96666664), (0.5083333, 0.96666664), (0.5083333, 0.95), (0.5083333, 0.95), (0.5083333, 0.96666664), (0.5, 0.96666664), (0.5, 0.95), (0.5, 0.95), (0.5, 0.96666664), (0.49166667, 0.96666664), (0.49166667, 0.95), (0.49166667, 0.95), (0.49166667, 0.96666664), (0.48333332, 0.96666664), (0.48333332, 0.95), (0.48333332, 0.95), (0.48333332, 0.96666664), (0.475, 0.96666664), (0.475, 0.95), (0.475, 0.95), (0.475, 0.96666664), (0.46666667, 0.96666664), (0.46666667, 0.95), (0.46666667, 0.95), (0.46666667, 0.96666664), (0.45833334, 0.96666664), (0.45833334, 0.95), (0.45833334, 0.95), (0.45833334, 0.96666664), (0.45, 0.96666664), (0.45, 0.95), (0.45, 0.95), (0.45, 0.96666664), (0.44166666, 0.96666664), (0.44166666, 0.95), (0.44166666, 0.95), (0.44166666, 0.96666664), (0.43333334, 0.96666664), (0.43333334, 0.95), (0.43333334, 0.95), (0.43333334, 0.96666664), (0.425, 0.96666664), (0.425, 0.95), (0.425, 0.95), (0.425, 0.96666664), (0.41666666, 0.96666664), (0.41666666, 0.95), (0.41666666, 0.95), (0.41666666, 0.96666664), (0.40833333, 0.96666664), (0.40833333, 0.95), (0.40833333, 0.95), (0.40833333, 0.96666664), (0.4, 0.96666664), (0.4, 0.95), (0.4, 0.95), (0.4, 0.96666664), (0.39166668, 0.96666664), (0.39166668, 0.95), (0.39166668, 0.95), (0.39166668, 0.96666664), (0.38333333, 0.96666664), (0.38333333, 0.95), (0.38333333, 0.95), (0.38333333, 0.96666664), (0.375, 0.96666664), (0.375, 0.95), (0.375, 0.95), (0.375, 0.96666664), (0.36666667, 0.96666664), (0.36666667, 0.95), (0.36666667, 0.95), (0.36666667, 0.96666664), (0.35833332, 0.96666664), (0.35833332, 0.95), (0.35833332, 0.95), (0.35833332, 0.96666664), (0.35, 0.96666664), (0.35, 0.95), (0.35, 0.95), (0.35, 0.96666664), (0.34166667, 0.96666664), (0.34166667, 0.95), (0.34166667, 0.95), (0.34166667, 0.96666664), (0.33333334, 0.96666664), (0.33333334, 0.95), (0.33333334, 0.95), (0.33333334, 0.96666664), (0.325, 0.96666664), (0.325, 0.95), (0.325, 0.95), (0.325, 0.96666664), (0.31666666, 0.96666664), (0.31666666, 0.95), (0.31666666, 0.95), (0.31666666, 0.96666664), (0.30833334, 0.96666664), (0.30833334, 0.95), (0.30833334, 0.95), (0.30833334, 0.96666664), (0.3, 0.96666664), (0.3, 0.95), (0.3, 0.95), (0.3, 0.96666664), (0.29166666, 0.96666664), (0.29166666, 0.95), (0.29166666, 0.95), (0.29166666, 0.96666664), (0.28333333, 0.96666664), (0.28333333, 0.95), (0.28333333, 0.95), (0.28333333, 0.96666664), (0.275, 0.96666664), (0.275, 0.95), (0.275, 0.95), (0.275, 0.96666664), (0.26666668, 0.96666664), (0.26666668, 0.95), (0.26666668, 0.95), (0.26666668, 0.96666664), (0.25833333, 0.96666664), (0.25833333, 0.95), (0.25833333, 0.95), (0.25833333, 0.96666664), (0.25, 0.96666664), (0.25, 0.95), (0.25, 0.95), (0.25, 0.96666664), (0.24166666, 0.96666664), (0.24166666, 0.95), (0.24166666, 0.95), (0.24166666, 0.96666664), (0.23333333, 0.96666664), (0.23333333, 0.95), (0.23333333, 0.95), (0.23333333, 0.96666664), (0.225, 0.96666664), (0.225, 0.95), (0.225, 0.95), (0.225, 0.96666664), (0.21666667, 0.96666664), (0.21666667, 0.95), (0.21666667, 0.95), (0.21666667, 0.96666664), (0.20833333, 0.96666664), (0.20833333, 0.95), (0.20833333, 0.95), (0.20833333, 0.96666664), (0.2, 0.96666664), (0.2, 0.95), (0.2, 0.95), (0.2, 0.96666664), (0.19166666, 0.96666664), (0.19166666, 0.95), (0.19166666, 0.95), (0.19166666, 0.96666664), (0.18333334, 0.96666664), (0.18333334, 0.95), (0.18333334, 0.95), (0.18333334, 0.96666664), (0.175, 0.96666664), (0.175, 0.95), (0.175, 0.95), (0.175, 0.96666664), (0.16666667, 0.96666664), (0.16666667, 0.95), (0.16666667, 0.95), (0.16666667, 0.96666664), (0.15833333, 0.96666664), (0.15833333, 0.95), (0.15833333, 0.95), (0.15833333, 0.96666664), (0.15, 0.96666664), (0.15, 0.95), (0.15, 0.95), (0.15, 0.96666664), (0.14166667, 0.96666664), (0.14166667, 0.95), (0.14166667, 0.95), (0.14166667, 0.96666664), (0.13333334, 0.96666664), (0.13333334, 0.95), (0.13333334, 0.95), (0.13333334, 0.96666664), (0.125, 0.96666664), (0.125, 0.95), (0.125, 0.95), (0.125, 0.96666664), (0.11666667, 0.96666664), (0.11666667, 0.95), (0.11666667, 0.95), (0.11666667, 0.96666664), (0.108333334, 0.96666664), (0.108333334, 0.95), (0.108333334, 0.95), (0.108333334, 0.96666664), (0.1, 0.96666664), (0.1, 0.95), (0.1, 0.95), (0.1, 0.96666664), (0.09166667, 0.96666664), (0.09166667, 0.95), (0.09166667, 0.95), (0.09166667, 0.96666664), (0.083333336, 0.96666664), (0.083333336, 0.95), (0.083333336, 0.95), (0.083333336, 0.96666664), (0.075, 0.96666664), (0.075, 0.95), (0.075, 0.95), (0.075, 0.96666664), (0.06666667, 0.96666664), (0.06666667, 0.95), (0.06666667, 0.95), (0.06666667, 0.96666664), (0.058333334, 0.96666664), (0.058333334, 0.95), (0.058333334, 0.95), (0.058333334, 0.96666664), (0.05, 0.96666664), (0.05, 0.95), (0.05, 0.95), (0.05, 0.96666664), (0.041666668, 0.96666664), (0.041666668, 0.95), (0.041666668, 0.95), (0.041666668, 0.96666664), (0.033333335, 0.96666664), (0.033333335, 0.95), (0.033333335, 0.95), (0.033333335, 0.96666664), (0.025, 0.96666664), (0.025, 0.95), (0.025, 0.95), (0.025, 0.96666664), (0.016666668, 0.96666664), (0.016666668, 0.95), (0.016666668, 0.95), (0.016666668, 0.96666664), (0.008333334, 0.96666664), (0.008333334, 0.95), (0.008333334, 0.95), (0.008333334, 0.96666664), (0, 0.96666664), (0, 0.95), (1, 0.96666664), (1, 0.98333335), (0.9916667, 0.98333335), (0.9916667, 0.96666664), (0.9916667, 0.96666664), (0.9916667, 0.98333335), (0.98333335, 0.98333335), (0.98333335, 0.96666664), (0.98333335, 0.96666664), (0.98333335, 0.98333335), (0.975, 0.98333335), (0.975, 0.96666664), (0.975, 0.96666664), (0.975, 0.98333335), (0.96666664, 0.98333335), (0.96666664, 0.96666664), (0.96666664, 0.96666664), (0.96666664, 0.98333335), (0.9583333, 0.98333335), (0.9583333, 0.96666664), (0.9583333, 0.96666664), (0.9583333, 0.98333335), (0.95, 0.98333335), (0.95, 0.96666664), (0.95, 0.96666664), (0.95, 0.98333335), (0.94166666, 0.98333335), (0.94166666, 0.96666664), (0.94166666, 0.96666664), (0.94166666, 0.98333335), (0.93333334, 0.98333335), (0.93333334, 0.96666664), (0.93333334, 0.96666664), (0.93333334, 0.98333335), (0.925, 0.98333335), (0.925, 0.96666664), (0.925, 0.96666664), (0.925, 0.98333335), (0.9166667, 0.98333335), (0.9166667, 0.96666664), (0.9166667, 0.96666664), (0.9166667, 0.98333335), (0.90833336, 0.98333335), (0.90833336, 0.96666664), (0.90833336, 0.96666664), (0.90833336, 0.98333335), (0.9, 0.98333335), (0.9, 0.96666664), (0.9, 0.96666664), (0.9, 0.98333335), (0.89166665, 0.98333335), (0.89166665, 0.96666664), (0.89166665, 0.96666664), (0.89166665, 0.98333335), (0.8833333, 0.98333335), (0.8833333, 0.96666664), (0.8833333, 0.96666664), (0.8833333, 0.98333335), (0.875, 0.98333335), (0.875, 0.96666664), (0.875, 0.96666664), (0.875, 0.98333335), (0.8666667, 0.98333335), (0.8666667, 0.96666664), (0.8666667, 0.96666664), (0.8666667, 0.98333335), (0.85833335, 0.98333335), (0.85833335, 0.96666664), (0.85833335, 0.96666664), (0.85833335, 0.98333335), (0.85, 0.98333335), (0.85, 0.96666664), (0.85, 0.96666664), (0.85, 0.98333335), (0.84166664, 0.98333335), (0.84166664, 0.96666664), (0.84166664, 0.96666664), (0.84166664, 0.98333335), (0.8333333, 0.98333335), (0.8333333, 0.96666664), (0.8333333, 0.96666664), (0.8333333, 0.98333335), (0.825, 0.98333335), (0.825, 0.96666664), (0.825, 0.96666664), (0.825, 0.98333335), (0.81666666, 0.98333335), (0.81666666, 0.96666664), (0.81666666, 0.96666664), (0.81666666, 0.98333335), (0.80833334, 0.98333335), (0.80833334, 0.96666664), (0.80833334, 0.96666664), (0.80833334, 0.98333335), (0.8, 0.98333335), (0.8, 0.96666664), (0.8, 0.96666664), (0.8, 0.98333335), (0.7916667, 0.98333335), (0.7916667, 0.96666664), (0.7916667, 0.96666664), (0.7916667, 0.98333335), (0.78333336, 0.98333335), (0.78333336, 0.96666664), (0.78333336, 0.96666664), (0.78333336, 0.98333335), (0.775, 0.98333335), (0.775, 0.96666664), (0.775, 0.96666664), (0.775, 0.98333335), (0.76666665, 0.98333335), (0.76666665, 0.96666664), (0.76666665, 0.96666664), (0.76666665, 0.98333335), (0.7583333, 0.98333335), (0.7583333, 0.96666664), (0.7583333, 0.96666664), (0.7583333, 0.98333335), (0.75, 0.98333335), (0.75, 0.96666664), (0.75, 0.96666664), (0.75, 0.98333335), (0.7416667, 0.98333335), (0.7416667, 0.96666664), (0.7416667, 0.96666664), (0.7416667, 0.98333335), (0.73333335, 0.98333335), (0.73333335, 0.96666664), (0.73333335, 0.96666664), (0.73333335, 0.98333335), (0.725, 0.98333335), (0.725, 0.96666664), (0.725, 0.96666664), (0.725, 0.98333335), (0.71666664, 0.98333335), (0.71666664, 0.96666664), (0.71666664, 0.96666664), (0.71666664, 0.98333335), (0.7083333, 0.98333335), (0.7083333, 0.96666664), (0.7083333, 0.96666664), (0.7083333, 0.98333335), (0.7, 0.98333335), (0.7, 0.96666664), (0.7, 0.96666664), (0.7, 0.98333335), (0.69166666, 0.98333335), (0.69166666, 0.96666664), (0.69166666, 0.96666664), (0.69166666, 0.98333335), (0.68333334, 0.98333335), (0.68333334, 0.96666664), (0.68333334, 0.96666664), (0.68333334, 0.98333335), (0.675, 0.98333335), (0.675, 0.96666664), (0.675, 0.96666664), (0.675, 0.98333335), (0.6666667, 0.98333335), (0.6666667, 0.96666664), (0.6666667, 0.96666664), (0.6666667, 0.98333335), (0.65833336, 0.98333335), (0.65833336, 0.96666664), (0.65833336, 0.96666664), (0.65833336, 0.98333335), (0.65, 0.98333335), (0.65, 0.96666664), (0.65, 0.96666664), (0.65, 0.98333335), (0.64166665, 0.98333335), (0.64166665, 0.96666664), (0.64166665, 0.96666664), (0.64166665, 0.98333335), (0.6333333, 0.98333335), (0.6333333, 0.96666664), (0.6333333, 0.96666664), (0.6333333, 0.98333335), (0.625, 0.98333335), (0.625, 0.96666664), (0.625, 0.96666664), (0.625, 0.98333335), (0.6166667, 0.98333335), (0.6166667, 0.96666664), (0.6166667, 0.96666664), (0.6166667, 0.98333335), (0.60833335, 0.98333335), (0.60833335, 0.96666664), (0.60833335, 0.96666664), (0.60833335, 0.98333335), (0.6, 0.98333335), (0.6, 0.96666664), (0.6, 0.96666664), (0.6, 0.98333335), (0.59166664, 0.98333335), (0.59166664, 0.96666664), (0.59166664, 0.96666664), (0.59166664, 0.98333335), (0.5833333, 0.98333335), (0.5833333, 0.96666664), (0.5833333, 0.96666664), (0.5833333, 0.98333335), (0.575, 0.98333335), (0.575, 0.96666664), (0.575, 0.96666664), (0.575, 0.98333335), (0.56666666, 0.98333335), (0.56666666, 0.96666664), (0.56666666, 0.96666664), (0.56666666, 0.98333335), (0.55833334, 0.98333335), (0.55833334, 0.96666664), (0.55833334, 0.96666664), (0.55833334, 0.98333335), (0.55, 0.98333335), (0.55, 0.96666664), (0.55, 0.96666664), (0.55, 0.98333335), (0.5416667, 0.98333335), (0.5416667, 0.96666664), (0.5416667, 0.96666664), (0.5416667, 0.98333335), (0.53333336, 0.98333335), (0.53333336, 0.96666664), (0.53333336, 0.96666664), (0.53333336, 0.98333335), (0.525, 0.98333335), (0.525, 0.96666664), (0.525, 0.96666664), (0.525, 0.98333335), (0.51666665, 0.98333335), (0.51666665, 0.96666664), (0.51666665, 0.96666664), (0.51666665, 0.98333335), (0.5083333, 0.98333335), (0.5083333, 0.96666664), (0.5083333, 0.96666664), (0.5083333, 0.98333335), (0.5, 0.98333335), (0.5, 0.96666664), (0.5, 0.96666664), (0.5, 0.98333335), (0.49166667, 0.98333335), (0.49166667, 0.96666664), (0.49166667, 0.96666664), (0.49166667, 0.98333335), (0.48333332, 0.98333335), (0.48333332, 0.96666664), (0.48333332, 0.96666664), (0.48333332, 0.98333335), (0.475, 0.98333335), (0.475, 0.96666664), (0.475, 0.96666664), (0.475, 0.98333335), (0.46666667, 0.98333335), (0.46666667, 0.96666664), (0.46666667, 0.96666664), (0.46666667, 0.98333335), (0.45833334, 0.98333335), (0.45833334, 0.96666664), (0.45833334, 0.96666664), (0.45833334, 0.98333335), (0.45, 0.98333335), (0.45, 0.96666664), (0.45, 0.96666664), (0.45, 0.98333335), (0.44166666, 0.98333335), (0.44166666, 0.96666664), (0.44166666, 0.96666664), (0.44166666, 0.98333335), (0.43333334, 0.98333335), (0.43333334, 0.96666664), (0.43333334, 0.96666664), (0.43333334, 0.98333335), (0.425, 0.98333335), (0.425, 0.96666664), (0.425, 0.96666664), (0.425, 0.98333335), (0.41666666, 0.98333335), (0.41666666, 0.96666664), (0.41666666, 0.96666664), (0.41666666, 0.98333335), (0.40833333, 0.98333335), (0.40833333, 0.96666664), (0.40833333, 0.96666664), (0.40833333, 0.98333335), (0.4, 0.98333335), (0.4, 0.96666664), (0.4, 0.96666664), (0.4, 0.98333335), (0.39166668, 0.98333335), (0.39166668, 0.96666664), (0.39166668, 0.96666664), (0.39166668, 0.98333335), (0.38333333, 0.98333335), (0.38333333, 0.96666664), (0.38333333, 0.96666664), (0.38333333, 0.98333335), (0.375, 0.98333335), (0.375, 0.96666664), (0.375, 0.96666664), (0.375, 0.98333335), (0.36666667, 0.98333335), (0.36666667, 0.96666664), (0.36666667, 0.96666664), (0.36666667, 0.98333335), (0.35833332, 0.98333335), (0.35833332, 0.96666664), (0.35833332, 0.96666664), (0.35833332, 0.98333335), (0.35, 0.98333335), (0.35, 0.96666664), (0.35, 0.96666664), (0.35, 0.98333335), (0.34166667, 0.98333335), (0.34166667, 0.96666664), (0.34166667, 0.96666664), (0.34166667, 0.98333335), (0.33333334, 0.98333335), (0.33333334, 0.96666664), (0.33333334, 0.96666664), (0.33333334, 0.98333335), (0.325, 0.98333335), (0.325, 0.96666664), (0.325, 0.96666664), (0.325, 0.98333335), (0.31666666, 0.98333335), (0.31666666, 0.96666664), (0.31666666, 0.96666664), (0.31666666, 0.98333335), (0.30833334, 0.98333335), (0.30833334, 0.96666664), (0.30833334, 0.96666664), (0.30833334, 0.98333335), (0.3, 0.98333335), (0.3, 0.96666664), (0.3, 0.96666664), (0.3, 0.98333335), (0.29166666, 0.98333335), (0.29166666, 0.96666664), (0.29166666, 0.96666664), (0.29166666, 0.98333335), (0.28333333, 0.98333335), (0.28333333, 0.96666664), (0.28333333, 0.96666664), (0.28333333, 0.98333335), (0.275, 0.98333335), (0.275, 0.96666664), (0.275, 0.96666664), (0.275, 0.98333335), (0.26666668, 0.98333335), (0.26666668, 0.96666664), (0.26666668, 0.96666664), (0.26666668, 0.98333335), (0.25833333, 0.98333335), (0.25833333, 0.96666664), (0.25833333, 0.96666664), (0.25833333, 0.98333335), (0.25, 0.98333335), (0.25, 0.96666664), (0.25, 0.96666664), (0.25, 0.98333335), (0.24166666, 0.98333335), (0.24166666, 0.96666664), (0.24166666, 0.96666664), (0.24166666, 0.98333335), (0.23333333, 0.98333335), (0.23333333, 0.96666664), (0.23333333, 0.96666664), (0.23333333, 0.98333335), (0.225, 0.98333335), (0.225, 0.96666664), (0.225, 0.96666664), (0.225, 0.98333335), (0.21666667, 0.98333335), (0.21666667, 0.96666664), (0.21666667, 0.96666664), (0.21666667, 0.98333335), (0.20833333, 0.98333335), (0.20833333, 0.96666664), (0.20833333, 0.96666664), (0.20833333, 0.98333335), (0.2, 0.98333335), (0.2, 0.96666664), (0.2, 0.96666664), (0.2, 0.98333335), (0.19166666, 0.98333335), (0.19166666, 0.96666664), (0.19166666, 0.96666664), (0.19166666, 0.98333335), (0.18333334, 0.98333335), (0.18333334, 0.96666664), (0.18333334, 0.96666664), (0.18333334, 0.98333335), (0.175, 0.98333335), (0.175, 0.96666664), (0.175, 0.96666664), (0.175, 0.98333335), (0.16666667, 0.98333335), (0.16666667, 0.96666664), (0.16666667, 0.96666664), (0.16666667, 0.98333335), (0.15833333, 0.98333335), (0.15833333, 0.96666664), (0.15833333, 0.96666664), (0.15833333, 0.98333335), (0.15, 0.98333335), (0.15, 0.96666664), (0.15, 0.96666664), (0.15, 0.98333335), (0.14166667, 0.98333335), (0.14166667, 0.96666664), (0.14166667, 0.96666664), (0.14166667, 0.98333335), (0.13333334, 0.98333335), (0.13333334, 0.96666664), (0.13333334, 0.96666664), (0.13333334, 0.98333335), (0.125, 0.98333335), (0.125, 0.96666664), (0.125, 0.96666664), (0.125, 0.98333335), (0.11666667, 0.98333335), (0.11666667, 0.96666664), (0.11666667, 0.96666664), (0.11666667, 0.98333335), (0.108333334, 0.98333335), (0.108333334, 0.96666664), (0.108333334, 0.96666664), (0.108333334, 0.98333335), (0.1, 0.98333335), (0.1, 0.96666664), (0.1, 0.96666664), (0.1, 0.98333335), (0.09166667, 0.98333335), (0.09166667, 0.96666664), (0.09166667, 0.96666664), (0.09166667, 0.98333335), (0.083333336, 0.98333335), (0.083333336, 0.96666664), (0.083333336, 0.96666664), (0.083333336, 0.98333335), (0.075, 0.98333335), (0.075, 0.96666664), (0.075, 0.96666664), (0.075, 0.98333335), (0.06666667, 0.98333335), (0.06666667, 0.96666664), (0.06666667, 0.96666664), (0.06666667, 0.98333335), (0.058333334, 0.98333335), (0.058333334, 0.96666664), (0.058333334, 0.96666664), (0.058333334, 0.98333335), (0.05, 0.98333335), (0.05, 0.96666664), (0.05, 0.96666664), (0.05, 0.98333335), (0.041666668, 0.98333335), (0.041666668, 0.96666664), (0.041666668, 0.96666664), (0.041666668, 0.98333335), (0.033333335, 0.98333335), (0.033333335, 0.96666664), (0.033333335, 0.96666664), (0.033333335, 0.98333335), (0.025, 0.98333335), (0.025, 0.96666664), (0.025, 0.96666664), (0.025, 0.98333335), (0.016666668, 0.98333335), (0.016666668, 0.96666664), (0.016666668, 0.96666664), (0.016666668, 0.98333335), (0.008333334, 0.98333335), (0.008333334, 0.96666664), (0.008333334, 0.96666664), (0.008333334, 0.98333335), (0, 0.98333335), (0, 0.96666664), (0.5, 1), (0.9916667, 0.98333335), (1, 0.98333335), (0.5, 1), (0.98333335, 0.98333335), (0.9916667, 0.98333335), (0.5, 1), (0.975, 0.98333335), (0.98333335, 0.98333335), (0.5, 1), (0.96666664, 0.98333335), (0.975, 0.98333335), (0.5, 1), (0.9583333, 0.98333335), (0.96666664, 0.98333335), (0.5, 1), (0.95, 0.98333335), (0.9583333, 0.98333335), (0.5, 1), (0.94166666, 0.98333335), (0.95, 0.98333335), (0.5, 1), (0.93333334, 0.98333335), (0.94166666, 0.98333335), (0.5, 1), (0.925, 0.98333335), (0.93333334, 0.98333335), (0.5, 1), (0.9166667, 0.98333335), (0.925, 0.98333335), (0.5, 1), (0.90833336, 0.98333335), (0.9166667, 0.98333335), (0.5, 1), (0.9, 0.98333335), (0.90833336, 0.98333335), (0.5, 1), (0.89166665, 0.98333335), (0.9, 0.98333335), (0.5, 1), (0.8833333, 0.98333335), (0.89166665, 0.98333335), (0.5, 1), (0.875, 0.98333335), (0.8833333, 0.98333335), (0.5, 1), (0.8666667, 0.98333335), (0.875, 0.98333335), (0.5, 1), (0.85833335, 0.98333335), (0.8666667, 0.98333335), (0.5, 1), (0.85, 0.98333335), (0.85833335, 0.98333335), (0.5, 1), (0.84166664, 0.98333335), (0.85, 0.98333335), (0.5, 1), (0.8333333, 0.98333335), (0.84166664, 0.98333335), (0.5, 1), (0.825, 0.98333335), (0.8333333, 0.98333335), (0.5, 1), (0.81666666, 0.98333335), (0.825, 0.98333335), (0.5, 1), (0.80833334, 0.98333335), (0.81666666, 0.98333335), (0.5, 1), (0.8, 0.98333335), (0.80833334, 0.98333335), (0.5, 1), (0.7916667, 0.98333335), (0.8, 0.98333335), (0.5, 1), (0.78333336, 0.98333335), (0.7916667, 0.98333335), (0.5, 1), (0.775, 0.98333335), (0.78333336, 0.98333335), (0.5, 1), (0.76666665, 0.98333335), (0.775, 0.98333335), (0.5, 1), (0.7583333, 0.98333335), (0.76666665, 0.98333335), (0.5, 1), (0.75, 0.98333335), (0.7583333, 0.98333335), (0.5, 1), (0.7416667, 0.98333335), (0.75, 0.98333335), (0.5, 1), (0.73333335, 0.98333335), (0.7416667, 0.98333335), (0.5, 1), (0.725, 0.98333335), (0.73333335, 0.98333335), (0.5, 1), (0.71666664, 0.98333335), (0.725, 0.98333335), (0.5, 1), (0.7083333, 0.98333335), (0.71666664, 0.98333335), (0.5, 1), (0.7, 0.98333335), (0.7083333, 0.98333335), (0.5, 1), (0.69166666, 0.98333335), (0.7, 0.98333335), (0.5, 1), (0.68333334, 0.98333335), (0.69166666, 0.98333335), (0.5, 1), (0.675, 0.98333335), (0.68333334, 0.98333335), (0.5, 1), (0.6666667, 0.98333335), (0.675, 0.98333335), (0.5, 1), (0.65833336, 0.98333335), (0.6666667, 0.98333335), (0.5, 1), (0.65, 0.98333335), (0.65833336, 0.98333335), (0.5, 1), (0.64166665, 0.98333335), (0.65, 0.98333335), (0.5, 1), (0.6333333, 0.98333335), (0.64166665, 0.98333335), (0.5, 1), (0.625, 0.98333335), (0.6333333, 0.98333335), (0.5, 1), (0.6166667, 0.98333335), (0.625, 0.98333335), (0.5, 1), (0.60833335, 0.98333335), (0.6166667, 0.98333335), (0.5, 1), (0.6, 0.98333335), (0.60833335, 0.98333335), (0.5, 1), (0.59166664, 0.98333335), (0.6, 0.98333335), (0.5, 1), (0.5833333, 0.98333335), (0.59166664, 0.98333335), (0.5, 1), (0.575, 0.98333335), (0.5833333, 0.98333335), (0.5, 1), (0.56666666, 0.98333335), (0.575, 0.98333335), (0.5, 1), (0.55833334, 0.98333335), (0.56666666, 0.98333335), (0.5, 1), (0.55, 0.98333335), (0.55833334, 0.98333335), (0.5, 1), (0.5416667, 0.98333335), (0.55, 0.98333335), (0.5, 1), (0.53333336, 0.98333335), (0.5416667, 0.98333335), (0.5, 1), (0.525, 0.98333335), (0.53333336, 0.98333335), (0.5, 1), (0.51666665, 0.98333335), (0.525, 0.98333335), (0.5, 1), (0.5083333, 0.98333335), (0.51666665, 0.98333335), (0.5, 1), (0.5, 0.98333335), (0.5083333, 0.98333335), (0.5, 1), (0.49166667, 0.98333335), (0.5, 0.98333335), (0.5, 1), (0.48333332, 0.98333335), (0.49166667, 0.98333335), (0.5, 1), (0.475, 0.98333335), (0.48333332, 0.98333335), (0.5, 1), (0.46666667, 0.98333335), (0.475, 0.98333335), (0.5, 1), (0.45833334, 0.98333335), (0.46666667, 0.98333335), (0.5, 1), (0.45, 0.98333335), (0.45833334, 0.98333335), (0.5, 1), (0.44166666, 0.98333335), (0.45, 0.98333335), (0.5, 1), (0.43333334, 0.98333335), (0.44166666, 0.98333335), (0.5, 1), (0.425, 0.98333335), (0.43333334, 0.98333335), (0.5, 1), (0.41666666, 0.98333335), (0.425, 0.98333335), (0.5, 1), (0.40833333, 0.98333335), (0.41666666, 0.98333335), (0.5, 1), (0.4, 0.98333335), (0.40833333, 0.98333335), (0.5, 1), (0.39166668, 0.98333335), (0.4, 0.98333335), (0.5, 1), (0.38333333, 0.98333335), (0.39166668, 0.98333335), (0.5, 1), (0.375, 0.98333335), (0.38333333, 0.98333335), (0.5, 1), (0.36666667, 0.98333335), (0.375, 0.98333335), (0.5, 1), (0.35833332, 0.98333335), (0.36666667, 0.98333335), (0.5, 1), (0.35, 0.98333335), (0.35833332, 0.98333335), (0.5, 1), (0.34166667, 0.98333335), (0.35, 0.98333335), (0.5, 1), (0.33333334, 0.98333335), (0.34166667, 0.98333335), (0.5, 1), (0.325, 0.98333335), (0.33333334, 0.98333335), (0.5, 1), (0.31666666, 0.98333335), (0.325, 0.98333335), (0.5, 1), (0.30833334, 0.98333335), (0.31666666, 0.98333335), (0.5, 1), (0.3, 0.98333335), (0.30833334, 0.98333335), (0.5, 1), (0.29166666, 0.98333335), (0.3, 0.98333335), (0.5, 1), (0.28333333, 0.98333335), (0.29166666, 0.98333335), (0.5, 1), (0.275, 0.98333335), (0.28333333, 0.98333335), (0.5, 1), (0.26666668, 0.98333335), (0.275, 0.98333335), (0.5, 1), (0.25833333, 0.98333335), (0.26666668, 0.98333335), (0.5, 1), (0.25, 0.98333335), (0.25833333, 0.98333335), (0.5, 1), (0.24166666, 0.98333335), (0.25, 0.98333335), (0.5, 1), (0.23333333, 0.98333335), (0.24166666, 0.98333335), (0.5, 1), (0.225, 0.98333335), (0.23333333, 0.98333335), (0.5, 1), (0.21666667, 0.98333335), (0.225, 0.98333335), (0.5, 1), (0.20833333, 0.98333335), (0.21666667, 0.98333335), (0.5, 1), (0.2, 0.98333335), (0.20833333, 0.98333335), (0.5, 1), (0.19166666, 0.98333335), (0.2, 0.98333335), (0.5, 1), (0.18333334, 0.98333335), (0.19166666, 0.98333335), (0.5, 1), (0.175, 0.98333335), (0.18333334, 0.98333335), (0.5, 1), (0.16666667, 0.98333335), (0.175, 0.98333335), (0.5, 1), (0.15833333, 0.98333335), (0.16666667, 0.98333335), (0.5, 1), (0.15, 0.98333335), (0.15833333, 0.98333335), (0.5, 1), (0.14166667, 0.98333335), (0.15, 0.98333335), (0.5, 1), (0.13333334, 0.98333335), (0.14166667, 0.98333335), (0.5, 1), (0.125, 0.98333335), (0.13333334, 0.98333335), (0.5, 1), (0.11666667, 0.98333335), (0.125, 0.98333335), (0.5, 1), (0.108333334, 0.98333335), (0.11666667, 0.98333335), (0.5, 1), (0.1, 0.98333335), (0.108333334, 0.98333335), (0.5, 1), (0.09166667, 0.98333335), (0.1, 0.98333335), (0.5, 1), (0.083333336, 0.98333335), (0.09166667, 0.98333335), (0.5, 1), (0.075, 0.98333335), (0.083333336, 0.98333335), (0.5, 1), (0.06666667, 0.98333335), (0.075, 0.98333335), (0.5, 1), (0.058333334, 0.98333335), (0.06666667, 0.98333335), (0.5, 1), (0.05, 0.98333335), (0.058333334, 0.98333335), (0.5, 1), (0.041666668, 0.98333335), (0.05, 0.98333335), (0.5, 1), (0.033333335, 0.98333335), (0.041666668, 0.98333335), (0.5, 1), (0.025, 0.98333335), (0.033333335, 0.98333335), (0.5, 1), (0.016666668, 0.98333335), (0.025, 0.98333335), (0.5, 1), (0.008333334, 0.98333335), (0.016666668, 0.98333335), (0.5, 1), (0, 0.98333335), (0.008333334, 0.98333335)] (
interpolation = "faceVarying"
)
uniform token subdivisionScheme = "none"
double3 xformOp:rotateXYZ = (0, 0, 0)
double3 xformOp:scale = (1, 1, 1)
double3 xformOp:translate = (-99.643063, -6.830078, 106.473142)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
def Mesh "Cylinder"
{
int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 64, 65, 66, 64, 66, 67, 64, 67, 68, 64, 68, 69, 64, 69, 70, 64, 70, 71, 64, 71, 72, 64, 72, 73, 64, 73, 74, 64, 74, 75, 64, 75, 76, 64, 76, 77, 64, 77, 78, 64, 78, 79, 64, 79, 80, 64, 80, 81, 64, 81, 82, 64, 82, 83, 64, 83, 84, 64, 84, 85, 64, 85, 86, 64, 86, 87, 64, 87, 88, 64, 88, 89, 64, 89, 90, 64, 90, 91, 64, 91, 92, 64, 92, 93, 64, 93, 94, 64, 94, 95, 64, 95, 96, 64, 96, 65, 97, 99, 98, 97, 100, 99, 97, 101, 100, 97, 102, 101, 97, 103, 102, 97, 104, 103, 97, 105, 104, 97, 106, 105, 97, 107, 106, 97, 108, 107, 97, 109, 108, 97, 110, 109, 97, 111, 110, 97, 112, 111, 97, 113, 112, 97, 114, 113, 97, 115, 114, 97, 116, 115, 97, 117, 116, 97, 118, 117, 97, 119, 118, 97, 120, 119, 97, 121, 120, 97, 122, 121, 97, 123, 122, 97, 124, 123, 97, 125, 124, 97, 126, 125, 97, 127, 126, 97, 128, 127, 97, 129, 128, 97, 98, 129]
rel material:binding = </World/Looks/OmniPBR> (
bindMaterialAs = "weakerThanDescendants"
)
normal3f[] normals = [(50, 0, 0), (50, 0, 0), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (50, 0, 0), (50, 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), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] (
interpolation = "faceVarying"
)
point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754516), (46.193977, -50, 19.134172), (41.573483, -50, 27.778511), (35.35534, -50, 35.35534), (27.778511, -50, 41.573483), (19.134172, -50, 46.193977), (9.754516, -50, 49.039265), (3.0616169e-15, -50, 50), (-9.754516, -50, 49.039265), (-19.134172, -50, 46.193977), (-27.778511, -50, 41.573483), (-35.35534, -50, 35.35534), (-41.573483, -50, 27.778511), (-46.193977, -50, 19.134172), (-49.039265, -50, 9.754516), (-50, -50, 6.1232338e-15), (-49.039265, -50, -9.754516), (-46.193977, -50, -19.134172), (-41.573483, -50, -27.778511), (-35.35534, -50, -35.35534), (-27.778511, -50, -41.573483), (-19.134172, -50, -46.193977), (-9.754516, -50, -49.039265), (-9.184851e-15, -50, -50), (9.754516, -50, -49.039265), (19.134172, -50, -46.193977), (27.778511, -50, -41.573483), (35.35534, -50, -35.35534), (41.573483, -50, -27.778511), (46.193977, -50, -19.134172), (49.039265, -50, -9.754516), (50, 50, 0), (49.039265, 50, 9.754516), (46.193977, 50, 19.134172), (41.573483, 50, 27.778511), (35.35534, 50, 35.35534), (27.778511, 50, 41.573483), (19.134172, 50, 46.193977), (9.754516, 50, 49.039265), (3.0616169e-15, 50, 50), (-9.754516, 50, 49.039265), (-19.134172, 50, 46.193977), (-27.778511, 50, 41.573483), (-35.35534, 50, 35.35534), (-41.573483, 50, 27.778511), (-46.193977, 50, 19.134172), (-49.039265, 50, 9.754516), (-50, 50, 6.1232338e-15), (-49.039265, 50, -9.754516), (-46.193977, 50, -19.134172), (-41.573483, 50, -27.778511), (-35.35534, 50, -35.35534), (-27.778511, 50, -41.573483), (-19.134172, 50, -46.193977), (-9.754516, 50, -49.039265), (-9.184851e-15, 50, -50), (9.754516, 50, -49.039265), (19.134172, 50, -46.193977), (27.778511, 50, -41.573483), (35.35534, 50, -35.35534), (41.573483, 50, -27.778511), (46.193977, 50, -19.134172), (49.039265, 50, -9.754516), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754516), (46.193977, -50, 19.134172), (41.573483, -50, 27.778511), (35.35534, -50, 35.35534), (27.778511, -50, 41.573483), (19.134172, -50, 46.193977), (9.754516, -50, 49.039265), (3.0616169e-15, -50, 50), (-9.754516, -50, 49.039265), (-19.134172, -50, 46.193977), (-27.778511, -50, 41.573483), (-35.35534, -50, 35.35534), (-41.573483, -50, 27.778511), (-46.193977, -50, 19.134172), (-49.039265, -50, 9.754516), (-50, -50, 6.1232338e-15), (-49.039265, -50, -9.754516), (-46.193977, -50, -19.134172), (-41.573483, -50, -27.778511), (-35.35534, -50, -35.35534), (-27.778511, -50, -41.573483), (-19.134172, -50, -46.193977), (-9.754516, -50, -49.039265), (-9.184851e-15, -50, -50), (9.754516, -50, -49.039265), (19.134172, -50, -46.193977), (27.778511, -50, -41.573483), (35.35534, -50, -35.35534), (41.573483, -50, -27.778511), (46.193977, -50, -19.134172), (49.039265, -50, -9.754516), (0, 50, 0), (50, 50, 0), (49.039265, 50, 9.754516), (46.193977, 50, 19.134172), (41.573483, 50, 27.778511), (35.35534, 50, 35.35534), (27.778511, 50, 41.573483), (19.134172, 50, 46.193977), (9.754516, 50, 49.039265), (3.0616169e-15, 50, 50), (-9.754516, 50, 49.039265), (-19.134172, 50, 46.193977), (-27.778511, 50, 41.573483), (-35.35534, 50, 35.35534), (-41.573483, 50, 27.778511), (-46.193977, 50, 19.134172), (-49.039265, 50, 9.754516), (-50, 50, 6.1232338e-15), (-49.039265, 50, -9.754516), (-46.193977, 50, -19.134172), (-41.573483, 50, -27.778511), (-35.35534, 50, -35.35534), (-27.778511, 50, -41.573483), (-19.134172, 50, -46.193977), (-9.754516, 50, -49.039265), (-9.184851e-15, 50, -50), (9.754516, 50, -49.039265), (19.134172, 50, -46.193977), (27.778511, 50, -41.573483), (35.35534, 50, -35.35534), (41.573483, 50, -27.778511), (46.193977, 50, -19.134172), (49.039265, 50, -9.754516)]
float2[] primvars:st = [(1, 0), (1, 1), (0.96875, 1), (0.96875, 0), (0.96875, 0), (0.96875, 1), (0.9375, 1), (0.9375, 0), (0.9375, 0), (0.9375, 1), (0.90625, 1), (0.90625, 0), (0.90625, 0), (0.90625, 1), (0.875, 1), (0.875, 0), (0.875, 0), (0.875, 1), (0.84375, 1), (0.84375, 0), (0.84375, 0), (0.84375, 1), (0.8125, 1), (0.8125, 0), (0.8125, 0), (0.8125, 1), (0.78125, 1), (0.78125, 0), (0.78125, 0), (0.78125, 1), (0.75, 1), (0.75, 0), (0.75, 0), (0.75, 1), (0.71875, 1), (0.71875, 0), (0.71875, 0), (0.71875, 1), (0.6875, 1), (0.6875, 0), (0.6875, 0), (0.6875, 1), (0.65625, 1), (0.65625, 0), (0.65625, 0), (0.65625, 1), (0.625, 1), (0.625, 0), (0.625, 0), (0.625, 1), (0.59375, 1), (0.59375, 0), (0.59375, 0), (0.59375, 1), (0.5625, 1), (0.5625, 0), (0.5625, 0), (0.5625, 1), (0.53125, 1), (0.53125, 0), (0.53125, 0), (0.53125, 1), (0.5, 1), (0.5, 0), (0.5, 0), (0.5, 1), (0.46875, 1), (0.46875, 0), (0.46875, 0), (0.46875, 1), (0.4375, 1), (0.4375, 0), (0.4375, 0), (0.4375, 1), (0.40625, 1), (0.40625, 0), (0.40625, 0), (0.40625, 1), (0.375, 1), (0.375, 0), (0.375, 0), (0.375, 1), (0.34375, 1), (0.34375, 0), (0.34375, 0), (0.34375, 1), (0.3125, 1), (0.3125, 0), (0.3125, 0), (0.3125, 1), (0.28125, 1), (0.28125, 0), (0.28125, 0), (0.28125, 1), (0.25, 1), (0.25, 0), (0.25, 0), (0.25, 1), (0.21875, 1), (0.21875, 0), (0.21875, 0), (0.21875, 1), (0.1875, 1), (0.1875, 0), (0.1875, 0), (0.1875, 1), (0.15625, 1), (0.15625, 0), (0.15625, 0), (0.15625, 1), (0.125, 1), (0.125, 0), (0.125, 0), (0.125, 1), (0.09375, 1), (0.09375, 0), (0.09375, 0), (0.09375, 1), (0.0625, 1), (0.0625, 0), (0.0625, 0), (0.0625, 1), (0.03125, 1), (0.03125, 0), (0.03125, 0), (0.03125, 1), (0, 1), (0, 0), (0.5, 0.5), (1, 0.5), (0.9903926, 0.59754515), (0.5, 0.5), (0.9903926, 0.59754515), (0.96193975, 0.6913417), (0.5, 0.5), (0.96193975, 0.6913417), (0.9157348, 0.7777851), (0.5, 0.5), (0.9157348, 0.7777851), (0.8535534, 0.8535534), (0.5, 0.5), (0.8535534, 0.8535534), (0.7777851, 0.9157348), (0.5, 0.5), (0.7777851, 0.9157348), (0.6913417, 0.96193975), (0.5, 0.5), (0.6913417, 0.96193975), (0.59754515, 0.9903926), (0.5, 0.5), (0.59754515, 0.9903926), (0.5, 1), (0.5, 0.5), (0.5, 1), (0.40245485, 0.9903926), (0.5, 0.5), (0.40245485, 0.9903926), (0.30865827, 0.96193975), (0.5, 0.5), (0.30865827, 0.96193975), (0.22221488, 0.9157348), (0.5, 0.5), (0.22221488, 0.9157348), (0.14644662, 0.8535534), (0.5, 0.5), (0.14644662, 0.8535534), (0.084265195, 0.7777851), (0.5, 0.5), (0.084265195, 0.7777851), (0.038060233, 0.6913417), (0.5, 0.5), (0.038060233, 0.6913417), (0.00960736, 0.59754515), (0.5, 0.5), (0.00960736, 0.59754515), (0, 0.5), (0.5, 0.5), (0, 0.5), (0.00960736, 0.40245485), (0.5, 0.5), (0.00960736, 0.40245485), (0.038060233, 0.30865827), (0.5, 0.5), (0.038060233, 0.30865827), (0.084265195, 0.22221488), (0.5, 0.5), (0.084265195, 0.22221488), (0.14644662, 0.14644662), (0.5, 0.5), (0.14644662, 0.14644662), (0.22221488, 0.084265195), (0.5, 0.5), (0.22221488, 0.084265195), (0.30865827, 0.038060233), (0.5, 0.5), (0.30865827, 0.038060233), (0.40245485, 0.00960736), (0.5, 0.5), (0.40245485, 0.00960736), (0.5, 0), (0.5, 0.5), (0.5, 0), (0.59754515, 0.00960736), (0.5, 0.5), (0.59754515, 0.00960736), (0.6913417, 0.038060233), (0.5, 0.5), (0.6913417, 0.038060233), (0.7777851, 0.084265195), (0.5, 0.5), (0.7777851, 0.084265195), (0.8535534, 0.14644662), (0.5, 0.5), (0.8535534, 0.14644662), (0.9157348, 0.22221488), (0.5, 0.5), (0.9157348, 0.22221488), (0.96193975, 0.30865827), (0.5, 0.5), (0.96193975, 0.30865827), (0.9903926, 0.40245485), (0.5, 0.5), (0.9903926, 0.40245485), (1, 0.5), (0.5, 0.5), (0.00960736, 0.59754515), (0, 0.5), (0.5, 0.5), (0.038060233, 0.6913417), (0.00960736, 0.59754515), (0.5, 0.5), (0.084265195, 0.7777851), (0.038060233, 0.6913417), (0.5, 0.5), (0.14644662, 0.8535534), (0.084265195, 0.7777851), (0.5, 0.5), (0.22221488, 0.9157348), (0.14644662, 0.8535534), (0.5, 0.5), (0.30865827, 0.96193975), (0.22221488, 0.9157348), (0.5, 0.5), (0.40245485, 0.9903926), (0.30865827, 0.96193975), (0.5, 0.5), (0.5, 1), (0.40245485, 0.9903926), (0.5, 0.5), (0.59754515, 0.9903926), (0.5, 1), (0.5, 0.5), (0.6913417, 0.96193975), (0.59754515, 0.9903926), (0.5, 0.5), (0.7777851, 0.9157348), (0.6913417, 0.96193975), (0.5, 0.5), (0.8535534, 0.8535534), (0.7777851, 0.9157348), (0.5, 0.5), (0.9157348, 0.7777851), (0.8535534, 0.8535534), (0.5, 0.5), (0.96193975, 0.6913417), (0.9157348, 0.7777851), (0.5, 0.5), (0.9903926, 0.59754515), (0.96193975, 0.6913417), (0.5, 0.5), (1, 0.5), (0.9903926, 0.59754515), (0.5, 0.5), (0.9903926, 0.40245485), (1, 0.5), (0.5, 0.5), (0.96193975, 0.30865827), (0.9903926, 0.40245485), (0.5, 0.5), (0.9157348, 0.22221488), (0.96193975, 0.30865827), (0.5, 0.5), (0.8535534, 0.14644662), (0.9157348, 0.22221488), (0.5, 0.5), (0.7777851, 0.084265195), (0.8535534, 0.14644662), (0.5, 0.5), (0.6913417, 0.038060233), (0.7777851, 0.084265195), (0.5, 0.5), (0.59754515, 0.00960736), (0.6913417, 0.038060233), (0.5, 0.5), (0.5, 0), (0.59754515, 0.00960736), (0.5, 0.5), (0.40245485, 0.00960736), (0.5, 0), (0.5, 0.5), (0.30865827, 0.038060233), (0.40245485, 0.00960736), (0.5, 0.5), (0.22221488, 0.084265195), (0.30865827, 0.038060233), (0.5, 0.5), (0.14644662, 0.14644662), (0.22221488, 0.084265195), (0.5, 0.5), (0.084265195, 0.22221488), (0.14644662, 0.14644662), (0.5, 0.5), (0.038060233, 0.30865827), (0.084265195, 0.22221488), (0.5, 0.5), (0.00960736, 0.40245485), (0.038060233, 0.30865827), (0.5, 0.5), (0, 0.5), (0.00960736, 0.40245485)] (
interpolation = "faceVarying"
)
uniform token subdivisionScheme = "none"
double3 xformOp:rotateXYZ = (0, 0, 0)
double3 xformOp:scale = (1, 1, 1)
double3 xformOp:translate = (-196.80092, -17.644369, 214.445289)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
def Scope "Looks"
{
def Material "OmniPBR"
{
token outputs:mdl:displacement.connect = </World/Looks/OmniPBR/Shader.outputs:out>
token outputs:mdl:surface.connect = </World/Looks/OmniPBR/Shader.outputs:out>
token outputs:mdl:volume.connect = </World/Looks/OmniPBR/Shader.outputs:out>
def Shader "Shader"
{
uniform token info:implementationSource = "sourceAsset"
uniform asset info:mdl:sourceAsset = @OmniPBR.mdl@
uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR"
token outputs:out
}
}
def Material "OmniGlass"
{
token outputs:mdl:displacement.connect = </World/Looks/OmniGlass/Shader.outputs:out>
token outputs:mdl:surface.connect = </World/Looks/OmniGlass/Shader.outputs:out>
token outputs:mdl:volume.connect = </World/Looks/OmniGlass/Shader.outputs:out>
def Shader "Shader"
{
uniform token info:implementationSource = "sourceAsset"
uniform asset info:mdl:sourceAsset = @OmniGlass.mdl@
uniform token info:mdl:sourceAsset:subIdentifier = "OmniGlass"
token outputs:out
}
}
def Material "OmniSurface_Plastic"
{
token outputs:mdl:displacement.connect = </World/Looks/OmniSurface_Plastic/Shader.outputs:out>
token outputs:mdl:surface.connect = </World/Looks/OmniSurface_Plastic/Shader.outputs:out>
token outputs:mdl:volume.connect = </World/Looks/OmniSurface_Plastic/Shader.outputs:out>
def Shader "Shader"
{
uniform token info:implementationSource = "sourceAsset"
uniform asset info:mdl:sourceAsset = @OmniSurfacePresets.mdl@
uniform token info:mdl:sourceAsset:subIdentifier = "OmniSurface_Plastic"
token outputs:out
}
}
}
}
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/setting_menu_container.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ["SettingMenuContainer"]
from omni.kit.viewport.menubar.core import (
IconMenuDelegate,
SliderMenuDelegate,
CheckboxMenuDelegate,
SettingModel,
SettingModelWithDefaultValue,
ViewportMenuContainer,
FloatArraySettingColorMenuItem,
menu_is_tearable,
)
from .menu_item.settings_renderer_menu_item import SettingsRendererMenuItem
from .menu_item.settings_transform_manipulator import SettingsTransformManipulator
from .style import UI_STYLE
import carb
import carb.settings
import omni.ui as ui
from omni.ui import color as cl
from typing import Any, Dict, List, Union
from functools import partial
class ViewportSetting:
def __init__(self, key: str, default: Any, set_default: bool = True, read_incoming: bool = False):
settings = carb.settings.get_settings()
if read_incoming:
incoming_default = settings.get(key)
if incoming_default is not None:
default = incoming_default
self.key = key
self.default = default
if set_default:
settings.set_default(self.key, self.default)
def reset(self, settings):
settings.set(self.key, self.default)
class SelectionColorSetting(ViewportSetting):
OUTLINE = "/persistent/app/viewport/outline/color"
INTERSECTION = "/persistent/app/viewport/outline/intersection/color"
def __init__(self, default: Any):
super().__init__(self.OUTLINE, default, False)
self.index = 1020
def reset(self, settings):
float_array = settings.get(self.key)
float_array = float_array[0 : self.index] + self.default + float_array[self.index + len(self.default) :]
carb.settings.get_settings().set(self.OUTLINE, float_array)
carb.settings.get_settings().set(self.INTERSECTION, self.default)
class VIEWPORT_SETTINGS:
NAVIGATION_SPEED = ViewportSetting("/persistent/app/viewport/camMoveVelocity", 5.0)
NAVIGATION_SPEED_MULTAMOUNT = ViewportSetting("/persistent/app/viewport/camVelocityScalerMultAmount", 1.1)
SHOW_SPEED_ON_START = ViewportSetting("/persistent/app/viewport/camShowSpeedOnStart", True)
ADAPTIVE_SPEED = ViewportSetting("/persistent/app/viewport/camVelocityCOINormalization", 0.0)
GAMEPAD_CONTROL = ViewportSetting("/persistent/app/omniverse/gamepadCameraControl", True)
CAMERA_STOP_ON_UP = ViewportSetting("/persistent/app/viewport/camStopOnMouseUp", True)
CAM_UPDATE_CLAMPING = ViewportSetting("/ext/omni.kit.manipulator.camera/clampUpdates", 0.15, read_incoming=True)
INERTIA_ENABLED = ViewportSetting("/persistent/app/viewport/camInertiaEnabled", False)
INERTIA_ANOUNT = ViewportSetting("/persistent/app/viewport/camInertiaAmount", 0.55)
ROTATION_SMOOTH_ENABLED = ViewportSetting("/persistent/app/viewport/camRotSmoothEnabled", True)
ROTATION_SMOOTH_SCALE = ViewportSetting("/persistent/app/viewport/camRotSmoothScale", 20.0)
ROTATION_SMOOTH_ALWAYS = ViewportSetting("/persistent/app/viewport/camRotSmoothAlways", False)
GESTURE_ENABLED = ViewportSetting("/persistent/app/viewport/camGestureEnabled", False)
GESTURE_TIME = ViewportSetting("/persistent/app/viewport/camGestureTime", 0.12)
GESTURE_RADIUS = ViewportSetting("/persistent/app/viewport/camGestureRadius", 20)
SELECTION_LINE_WIDTH = ViewportSetting("/persistent/app/viewport/outline/width", 2)
GRID_LINE_WIDTH = ViewportSetting("/persistent/app/viewport/grid/lineWidth", 1)
GRID_SCALE = ViewportSetting("/persistent/app/viewport/grid/scale", 100.0)
GRID_FADE = ViewportSetting("/persistent/app/viewport/grid/lineFadeOutStartDistance", 10.0)
GIZMO_LINE_WIDTH = ViewportSetting("/persistent/app/viewport/gizmo/lineWidth", 1.0)
GIZMO_SCALE_ENABLED = ViewportSetting("/persistent/app/viewport/gizmo/constantScaleEnabled", True)
GIZMO_SCALE = ViewportSetting("/persistent/app/viewport/gizmo/constantScale", 10.0)
GIZMO_GLOBAL_SCALE = ViewportSetting("/persistent/app/viewport/gizmo/scale", 1.0)
GIZMO_MIN_FADEOUT = ViewportSetting("/persistent/app/viewport/gizmo/minFadeOut", 1.0)
GIZMO_MAX_FADEOUT = ViewportSetting("/persistent/app/viewport/gizmo/maxFadeOut", 50)
UI_BACKGROUND_OPACITY = ViewportSetting("/persistent/app/viewport/ui/background/opacity", 1.0)
UI_BRIGHTNESS = ViewportSetting("/persistent/app/viewport/ui/brightness", 0.84)
OBJECT_CENTRIC = ViewportSetting("/persistent/app/viewport/objectCentricNavigation", 0)
DOUBLE_CLICK_COI = ViewportSetting("/persistent/app/viewport/coiDoubleClick", False)
BBOX_LINE_COLOR = ViewportSetting("/persistent/app/viewport/boundingBoxes/lineColor", [0.886, 0.447, 0.447])
GRID_LINE_COLOR = ViewportSetting("/persistent/app/viewport/grid/lineColor", [0.3, 0.3, 0.3])
OUTLINE_COLOR = SelectionColorSetting([1.0, 0.6, 0.0, 1.0])
LOOK_SPEED_HORIZ = ViewportSetting("/persistent/exts/omni.kit.manipulator.camera/lookSpeed/0", 180.0)
LOOK_SPEED_VERT = ViewportSetting("/persistent/exts/omni.kit.manipulator.camera/lookSpeed/1", 90.0)
TUMBLE_SPEED = ViewportSetting("/persistent/exts/omni.kit.manipulator.camera/tumbleSpeed", 360.0)
ZOOM_SPEED = ViewportSetting("/persistent/exts/omni.kit.manipulator.camera/moveSpeed/2", 1.0)
FLY_IGNORE_VIEW_DIRECTION = ViewportSetting("/persistent/exts/omni.kit.manipulator.camera/flyViewLock", False)
class ViewportSettingModel(SettingModelWithDefaultValue):
def __init__(self, viewport_setting: ViewportSetting, draggable: bool = False):
super().__init__(viewport_setting.key, viewport_setting.default, draggable=draggable)
CAM_VELOCITY_MIN = "/persistent/app/viewport/camVelocityMin"
CAM_VELOCITY_MAX = "/persistent/app/viewport/camVelocityMax"
CAM_VELOCITY_SCALER_MIN = "/persistent/app/viewport/camVelocityScalerMin"
CAM_VELOCITY_SCALER_MAX = "/persistent/app/viewport/camVelocityScalerMax"
SETTING_UI_BRIGHTNESS_MIN = "/app/viewport/ui/minBrightness"
SETTING_UI_BRIGHTNESS_MAX = "/app/viewport/ui/maxBrightness"
BRIGHTNESS_VALUE_RANGE_MIN = 0.25
BRIGHTNESS_VALUE_RANGE_MAX = 1.0
OUTLINE_COLOR_INDEX = 1020
class SelectionColorMenuItem(FloatArraySettingColorMenuItem):
def __init__(self):
setting = VIEWPORT_SETTINGS.OUTLINE_COLOR
super().__init__(
setting.key, setting.default, name="Selection Color", start_index=setting.index, has_reset=True
)
def on_color_changed(self, colors: List[float]) -> None:
# Set the default exterior color
super().on_color_changed(colors)
# Set the interior intersection color too
carb.settings.get_settings().set(VIEWPORT_SETTINGS.OUTLINE_COLOR.INTERSECTION, colors)
class BoundingColorMenuItem(FloatArraySettingColorMenuItem):
def __init__(self):
setting = VIEWPORT_SETTINGS.BBOX_LINE_COLOR
super().__init__(setting.key, setting.default, name="Bounding Box Color", has_reset=True)
class GridColorMenuItem(FloatArraySettingColorMenuItem):
def __init__(self):
setting = VIEWPORT_SETTINGS.GRID_LINE_COLOR
super().__init__(setting.key, setting.default, name="Grid Color", has_reset=True)
class MenuContext:
def __init__(self):
self.__renderer_menu_item: Union[SettingsRendererMenuItem, None] = None
self.__settings = carb.settings.get_settings()
self.__carb_subscriptions = []
@property
def settings(self):
return self.__settings
@property
def renderer_menu_item(self) -> Union[SettingsRendererMenuItem, None]:
return self.__renderer_menu_item
@renderer_menu_item.setter
def renderer_menu_item(self, render_menu_item: Union[SettingsRendererMenuItem, None]) -> None:
if self.__renderer_menu_item:
self.__renderer_menu_item.destroy()
self.__renderer_menu_item = render_menu_item
def add_carb_subscription(self, carb_sub: carb.settings.SubscriptionId):
self.__carb_subscriptions.append(carb_sub)
def destroy(self):
self.renderer_menu_item = None
for sub in self.__carb_subscriptions:
sub.unsubscribe()
self.__carb_subscriptions = []
class SettingMenuContainer(ViewportMenuContainer):
"""The menu with the viewport settings"""
def __init__(self):
super().__init__(
name="Settings",
delegate=IconMenuDelegate("Settings"),
visible_setting_path="/exts/omni.kit.viewport.menubar.settings/visible",
order_setting_path="/exts/omni.kit.viewport.menubar.settings/order",
style=UI_STYLE,
)
self.__menu_context: Dict[str, MenuContext] = {}
settings = carb.settings.get_settings()
settings.set_default(CAM_VELOCITY_MIN, 0.01)
settings.set_default(CAM_VELOCITY_MAX, 50)
settings.set_default(CAM_VELOCITY_SCALER_MIN, 1)
settings.set_default(CAM_VELOCITY_SCALER_MAX, 10)
def destroy(self):
for menu_ctx in self.__menu_context.values():
menu_ctx.destroy()
self.__menu_context = {}
super().destroy()
def build_fn(self, factory: Dict):
ui.Menu(self.name, delegate=self._delegate, on_build_fn=partial(self._build_menu, factory), style=self._style)
def _build_menu(self, factory: Dict) -> None:
viewport_api = factory.get("viewport_api")
if not viewport_api:
return
viewport_api_id = viewport_api.id
menu_ctx = self.__menu_context.get(viewport_api_id)
if menu_ctx:
menu_ctx.destroy()
menu_ctx = MenuContext()
self.__menu_context[viewport_api_id] = menu_ctx
ui.Menu(
"Navigation",
on_build_fn=lambda: self.__build_navigation_menu_items(menu_ctx),
tearable=menu_is_tearable("omni.kit.viewport.menubar.settings.Navigation"),
)
ui.Menu(
"Selection",
on_build_fn=lambda: self.__build_selection_menu_items(menu_ctx),
tearable=menu_is_tearable("omni.kit.viewport.menubar.settings.Selection"),
)
ui.Menu(
"Grid",
on_build_fn=lambda: self.__build_grid_menu_items(menu_ctx),
tearable=menu_is_tearable("omni.kit.viewport.menubar.settings.Grid"),
)
ui.Menu(
"Gizmos",
on_build_fn=lambda: self.__build_gizmo_menu_items(menu_ctx),
tearable=menu_is_tearable("omni.kit.viewport.menubar.settings.Gizmos"),
)
menu_ctx.renderer_menu_item = SettingsRendererMenuItem(
"Viewport", factory=factory, tearable=menu_is_tearable("omni.kit.viewport.menubar.settings.Viewport")
)
ui.Menu(
"Viewport UI",
on_build_fn=lambda: self.__build_ui_menu_items(menu_ctx),
tearable=menu_is_tearable("omni.kit.viewport.menubar.settings.ViewportUI"),
)
SettingsTransformManipulator(
"Manipulator Transform",
factory=factory,
tearable=menu_is_tearable("omni.kit.viewport.menubar.settings.ManipulatorTransform"),
)
ui.Separator()
ui.MenuItem(
"Reset To Defaults",
hide_on_click=False,
triggered_fn=lambda vid=viewport_api_id: self.__reset_settings(vid),
)
ui.Separator()
ui.MenuItem("Preferences", hide_on_click=False, triggered_fn=self._show_viewport_preference)
def __build_navigation_menu_items(self, menu_ctx: MenuContext) -> None:
settings = carb.settings.get_settings()
ui.MenuItem(
"Navigation Speed",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.NAVIGATION_SPEED, draggable=True),
min=settings.get(CAM_VELOCITY_MIN),
max=settings.get(CAM_VELOCITY_MAX),
tooltip="Set the Fly Mode navigation speed",
has_reset=True,
),
)
ui.MenuItem(
"Navigation Speed Scalar",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.NAVIGATION_SPEED_MULTAMOUNT, draggable=True),
min=settings.get(CAM_VELOCITY_SCALER_MIN),
max=settings.get(CAM_VELOCITY_SCALER_MAX),
tooltip="Change the Fly Mode navigation speed by this amount",
has_reset=True,
),
)
ui.MenuItem(
"Lock Navigation Height",
hide_on_click=False,
delegate=CheckboxMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.FLY_IGNORE_VIEW_DIRECTION),
tooltip="Whether forward/backward and up/down movements ignore camera-view direction (similar to left/right strafe)",
has_reset=True,
)
)
ui.MenuItem(
"Gamepad Camera Control",
hide_on_click=False,
delegate=CheckboxMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.GAMEPAD_CONTROL),
tooltip="Enable gamepad navigation for this Viewport",
has_reset=True,
),
)
ui.Separator()
ui.MenuItem(
"Object Centric Navigation",
hide_on_click=False,
delegate=CheckboxMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.OBJECT_CENTRIC),
tooltip="Set camera's center of interest to center of object under mouse when camera manipulation begins",
has_reset=True,
),
)
ui.MenuItem(
"Double Click Sets Interest",
hide_on_click=False,
delegate=CheckboxMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.DOUBLE_CLICK_COI),
tooltip="Double click will set the center of interest to the object under mouse." +
"\nEnabling this may make click-to-select less responsive.",
has_reset=True,
)
)
ui.Separator()
self.__build_advanced_navigation_items(menu_ctx)
ui.Separator()
self.__build_navigation_speed_items(menu_ctx)
self.__build_debug_settings(menu_ctx)
def __build_navigation_speed_items(self, menu_ctx: MenuContext):
ui.MenuItem(
"Look Speed Horizontal",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.LOOK_SPEED_HORIZ, draggable=True),
min=0,
max=360,
step=1,
tooltip="Set the Look Mode navigation speed as degrees rotated over a drag across the Viepwort horizonatally.",
has_reset=True,
),
)
ui.MenuItem(
"Look Speed Vertical",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.LOOK_SPEED_VERT, draggable=True),
min=0,
max=180,
step=1,
tooltip="Set the Look Mode navigation speed as degrees rotated over a drag across the Viepwort vertically.",
has_reset=True,
),
)
ui.MenuItem(
"Tumble Speed",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.TUMBLE_SPEED, draggable=True),
min=0,
max=720,
step=1,
tooltip="Set the Tumble Mode navigation speed as degrees rotated over a drag across the Viepwort.",
has_reset=True,
),
)
ui.MenuItem(
"Zoom Speed",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.ZOOM_SPEED, draggable=True),
min=0,
max=2,
tooltip="Set the Zoom Mode navigation speed",
has_reset=True,
),
)
def __build_advanced_navigation_items(self, menu_ctx: MenuContext):
settings = menu_ctx.settings
inertia_enable_model = ViewportSettingModel(VIEWPORT_SETTINGS.INERTIA_ENABLED)
ui.MenuItem(
"Inertia Mode",
hide_on_click=False,
delegate=CheckboxMenuDelegate(
model=inertia_enable_model,
tooltip="Enable advanced settings to control camera inertia and gestures for mouse manipulation",
has_reset=True,
),
)
inertia_menu_item = ui.MenuItem(
"Camera Inertia",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.INERTIA_ANOUNT, draggable=True),
tooltip="Seconds the inertia is active for",
min=0.0,
max=4.0,
has_reset=True,
),
)
# Show an entry for enabling disabling inertia on all modes if this value is set
inertia_modes = settings.get("/exts/omni.kit.manipulator.camera/inertiaModesEnabled")
inertia_modes_menu_item = None
if inertia_modes:
# Odd setting to control inertai always, but its what View was using, so preserve as it is persistant
legacy_all_interia_model = ViewportSettingModel(VIEWPORT_SETTINGS.ROTATION_SMOOTH_ALWAYS)
inertia_modes_menu_item = ui.MenuItem(
"Inertia For Other Movements",
hide_on_click=False,
delegate=CheckboxMenuDelegate(
model=legacy_all_interia_model,
tooltip="Apply inertia to other camera movements or only WASD navigation",
has_reset=True,
),
)
def _toggle_inertia_always(model: ui.AbstractValueModel):
if model.as_bool:
# Allow a user specified preference to enable ceratin modes only, otherwise default to all
inertia_modes = settings.get("/app/viewport/inertiaModesEnabled")
inertia_modes = inertia_modes or [1, 1, 1, 1]
else:
inertia_modes = [1, 0, 0, 0]
settings.set("/exts/omni.kit.manipulator.camera/inertiaModesEnabled", inertia_modes)
_toggle_inertia_always(legacy_all_interia_model)
menu_ctx.add_carb_subscription(
legacy_all_interia_model.subscribe_value_changed_fn(_toggle_inertia_always)
)
def __on_inertial_changed(model: ui.AbstractValueModel):
inertia_enabled = model.as_bool
inertia_menu_item.visible = inertia_enabled
if inertia_modes_menu_item:
inertia_modes_menu_item.visible = inertia_enabled
# Sync the state now
__on_inertial_changed(inertia_enable_model)
menu_ctx.add_carb_subscription(
inertia_enable_model.subscribe_value_changed_fn(__on_inertial_changed)
)
def __build_debug_settings(self, menu_ctx: MenuContext):
settings = menu_ctx.settings
_added_initial_separator = False
def add_initial_separator():
nonlocal _added_initial_separator
if not _added_initial_separator:
_added_initial_separator = True
ui.Separator()
if settings.get("/exts/omni.kit.viewport.menubar.settings/show/camera/clamping"):
add_initial_separator()
ui.MenuItem(
"Animation clamp",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.CAM_UPDATE_CLAMPING),
tooltip="Clamp animation to this maximum number of seconds",
min=0.0001,
max=1.0,
has_reset=True,
),
)
def __build_selection_menu_items(self, menu_ctx: MenuContext):
SelectionColorMenuItem()
ui.MenuItem(
"Selection Line Width",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.SELECTION_LINE_WIDTH, draggable=True),
min=1,
max=15,
slider_class=ui.IntSlider,
has_reset=True,
),
)
BoundingColorMenuItem()
def __build_grid_menu_items(self, menu_ctx: MenuContext):
GridColorMenuItem()
ui.MenuItem(
"Grid Line Width",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.GRID_LINE_WIDTH, draggable=True),
min=1,
max=10,
slider_class=ui.IntSlider,
has_reset=True,
),
)
ui.MenuItem(
"Grid Size",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.GRID_SCALE, draggable=True),
min=1.0,
max=1000.0,
has_reset=True,
),
)
fadeout_model = ViewportSettingModel(VIEWPORT_SETTINGS.GRID_FADE, draggable=True)
def __on_fadeout_changed(model: ui.AbstractValueModel):
carb.settings.get_settings().set("/persistent/app/viewport/grid/lineFadeOutEndDistance", model.as_float * 4)
ui.MenuItem(
"Grid Fade",
hide_on_click=False,
delegate=SliderMenuDelegate(model=fadeout_model, min=0.5, max=50.0, has_reset=True),
)
menu_ctx.add_carb_subscription(
fadeout_model.subscribe_value_changed_fn(__on_fadeout_changed)
)
def __build_ui_menu_items(self, menu_ctx: MenuContext):
def __ui_background_opacity_changed(model: ui.AbstractValueModel) -> None:
alpha = int(model.as_float * 255)
name = "viewport_menubar_background"
color = cl._find(name)
color = (color & 0x00FFFFFF) + (alpha << 24)
cl._store(name, color)
ui_background_opacity_model = ViewportSettingModel(VIEWPORT_SETTINGS.UI_BACKGROUND_OPACITY, draggable=True)
ui.MenuItem(
"UI Background Opacity",
hide_on_click=False,
delegate=SliderMenuDelegate(model=ui_background_opacity_model, min=0.0, max=1.0, has_reset=True),
)
__ui_background_opacity_changed(ui_background_opacity_model)
settings = carb.settings.get_settings()
min_brightness = settings.get(SETTING_UI_BRIGHTNESS_MIN)
max_brightness = settings.get(SETTING_UI_BRIGHTNESS_MAX)
def __ui_brightness_changed(model: ui.AbstractValueModel) -> None:
def __gray_to_color(gray: int):
return 0xFF000000 + (gray << 16) + (gray << 8) + gray
value = (model.as_float - BRIGHTNESS_VALUE_RANGE_MIN) / (
BRIGHTNESS_VALUE_RANGE_MAX - BRIGHTNESS_VALUE_RANGE_MIN
)
light_gray = int(value * 255)
color = __gray_to_color(light_gray)
cl._store("viewport_menubar_light", color)
medium_gray = int(light_gray * 0.539)
color = __gray_to_color(medium_gray)
cl._store("viewport_menubar_medium", color)
ui_brightness_model = ViewportSettingModel(VIEWPORT_SETTINGS.UI_BRIGHTNESS, draggable=True)
ui.MenuItem(
"UI Control Brightness",
hide_on_click=False,
delegate=SliderMenuDelegate(model=ui_brightness_model, min=min_brightness, max=max_brightness, has_reset=True),
)
__ui_brightness_changed(ui_brightness_model)
menu_ctx.add_carb_subscription(
ui_background_opacity_model.subscribe_value_changed_fn(__ui_background_opacity_changed)
)
menu_ctx.add_carb_subscription(
ui_brightness_model.subscribe_value_changed_fn(__ui_brightness_changed)
)
def __build_gizmo_menu_items(self, menu_ctx: MenuContext):
ui.MenuItem(
"Gizmo Line Width",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.GIZMO_LINE_WIDTH, draggable=True),
min=1.0,
max=25.0,
has_reset=True,
),
)
scale_enabled_model = ViewportSettingModel(VIEWPORT_SETTINGS.GIZMO_SCALE_ENABLED)
ui.MenuItem(
"Gizmo Constant Scale Enabled",
hide_on_click=False,
delegate=CheckboxMenuDelegate(model=scale_enabled_model, has_reset=True),
)
constant_scale_menu_item = ui.MenuItem(
"Gizmo Constant Scale",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.GIZMO_SCALE, draggable=True),
min=0.5,
max=100.0,
has_reset=True,
),
)
global_scale_menu_item = ui.MenuItem(
"Gizmo Camera Scale" if scale_enabled_model.as_bool else "Gizmo Global Scale",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.GIZMO_GLOBAL_SCALE, draggable=True),
min=0.01,
max=4.0,
has_reset=True,
),
)
def __on_gizmo_enabled_changed(model: SettingModel):
is_constant_scale = model.as_bool
constant_scale_menu_item.visible = is_constant_scale
global_scale_menu_item.text = "Gizmo Camera Scale" if is_constant_scale else "Gizmo Global Scale"
__on_gizmo_enabled_changed(scale_enabled_model)
menu_ctx.add_carb_subscription(
scale_enabled_model.subscribe_value_changed_fn(__on_gizmo_enabled_changed)
)
ui.MenuItem(
"Gizmo Min FadeOut",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.GIZMO_MIN_FADEOUT, draggable=True),
min=1.0,
max=1000.0,
has_reset=True,
),
)
ui.MenuItem(
"Gizmo Max FadeOut",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=ViewportSettingModel(VIEWPORT_SETTINGS.GIZMO_MAX_FADEOUT, draggable=True),
min=1.0,
max=1000.0,
has_reset=True,
),
)
def __reset_settings(self, viewport_api_id: str):
settings = carb.settings.get_settings()
for value in VIEWPORT_SETTINGS.__dict__.values():
if isinstance(value, ViewportSetting):
value.reset(settings)
# Only reset renderer settings of current viewport
menu_ctx = self.__menu_context.get(viewport_api_id)
renderer_menu_item = menu_ctx.renderer_menu_item if menu_ctx else None
if renderer_menu_item:
renderer_menu_item.reset()
def _show_viewport_preference(self) -> None:
try:
import omni.kit.window.preferences as preferences
import asyncio
async def focus_async():
pref_window = ui.Workspace.get_window("Preferences")
if pref_window:
pref_window.focus()
PAGE_TITLE = "Viewport"
inst = preferences.get_instance()
if not inst:
carb.log_error("Preferences extension is not loaded yet")
return
pages = preferences.get_page_list()
for page in pages:
if page.get_title() == PAGE_TITLE:
inst.select_page(page)
# Show the Window
inst.show_preferences_window()
# Force the tab to be the active/focused tab (this currently needs to be done in async)
asyncio.ensure_future(focus_async())
return page
else:
carb.log_error("Viewport Preferences page not found!")
except ImportError:
carb.log_error("omni.kit.window.preferences not enabled!")
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/style.py | from omni.ui import color as cl
from omni.ui import constant as fl
from pathlib import Path
CURRENT_PATH = Path(__file__).parent
ICON_PATH = CURRENT_PATH.parent.parent.parent.parent.parent.joinpath("data").joinpath("icons")
UI_STYLE = {
"Menu.Item.Icon::Settings": {"image_url": f"{ICON_PATH}/viewport_settings.svg"},
"ResolutionLink": {"background_color": 0, "margin": 0, "padding": 2},
"ResolutionLink.Image": {"image_url": f"{ICON_PATH}/link_dark.svg", "margin": 0},
"ResolutionLink.Image:checked": {"image_url": f"{ICON_PATH}/link.svg"},
"ComboBox::ratio": {"background_color": 0x0, "padding": 4, "margin": 0},
"Menu.Item.Button::save": {"padding": 0, "margin": 0, "background_color": 0},
"Menu.Item.Button.Image::save": {"image_url": f"{ICON_PATH}/save.svg", "color": cl.viewport_menubar_light},
"Menu.Item.Button.Image::save:checked": {"color": cl.shade(cl("#0697cd"))},
"Ratio.Background": {"background_color": 0xFF444444, "border_color": 0xFFA1701B, "border_width": 1},
"Resolution.Text": {"color": cl.input_hint},
"Resolution.Name": {"color": cl.viewport_menubar_light},
"Resolution.Del": {"image_url": f"{ICON_PATH}/delete.svg"},
}
cl.save_background = cl.shade(cl("#1F2123"))
cl.input_hint = cl.shade(cl('#5A5A5A'))
SAVE_WINDOW_STYLE = {
"Window": {"secondary_background_color": 0x0},
"Titlebar.Background": {"background_color": cl.save_background},
"Input.Hint": {"color": cl.input_hint},
"Image::close": {"image_url": f"{ICON_PATH}/close.svg"},
"Button": {"background_color": cl.save_background},
}
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/extension.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ["ViewportSettingsMenuBarExtension"]
from .setting_menu_container import SettingMenuContainer
import omni.ext
class ViewportSettingsMenuBarExtension(omni.ext.IExt):
"""The Entry Point for the Viewport Settings in Viewport Menu Bar"""
def on_startup(self, ext_id):
self._settings_menu = SettingMenuContainer()
def on_shutdown(self):
self._settings_menu.destroy()
self._settings_menu = None
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/__init__.py | from .extension import *
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/menu_item/settings_transform_manipulator.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ["SettingsTransformManipulator"]
from omni.kit.viewport.menubar.core import (
CheckboxMenuDelegate,
ComboBoxMenuDelegate,
SliderMenuDelegate,
SettingComboBoxModel,
ComboBoxItem,
SettingModelWithDefaultValue,
ResetHelper,
)
import omni.ui as ui
import carb.settings
from typing import Any, Dict, Tuple, List, Optional, Union
from functools import partial
SETTING_SCALE = "/persistent/exts/omni.kit.manipulator.transform/manipulator/scaleMultiplier"
SETTING_FREE_ROTATION_ENABLED = "/persistent/exts/omni.kit.manipulator.transform/manipulator/freeRotationEnabled"
SETTING_FREE_ROTATION_TYPE = "/persistent/exts/omni.kit.manipulator.transform/manipulator/freeRotationType"
SETTING_INTERSECTION_THICKNESS = "/persistent/exts/omni.kit.manipulator.transform/manipulator/intersectionThickness"
FREE_ROTATION_TYPE_CLAMPED = "Clamped"
FREE_ROTATION_TYPE_CONTINUOUS = "Continuous"
MENU_WIDTH = 350
class _ManipulatorRotationTypeModel(SettingComboBoxModel, ResetHelper):
def __init__(self):
types = [FREE_ROTATION_TYPE_CLAMPED, FREE_ROTATION_TYPE_CONTINUOUS]
super().__init__(SETTING_FREE_ROTATION_TYPE, types)
def _on_current_item_changed(self, item: ComboBoxItem) -> None:
super()._on_current_item_changed(item)
self._update_reset_button()
def get_default(self):
return FREE_ROTATION_TYPE_CLAMPED
def get_value(self):
settings = carb.settings.get_settings()
return settings.get(SETTING_FREE_ROTATION_TYPE)
def restore_default(self) -> None:
current_index = self.current_index
if current_index:
current = current_index.as_int
items = self.get_item_children(None)
# Early exit if the model is already correct
if items[current].value == FREE_ROTATION_TYPE_CLAMPED:
return
# Iterate all items, and select the first match to the real value
for index, item in enumerate(items):
if item.value == FREE_ROTATION_TYPE_CLAMPED:
current_index.set_value(index)
return
class SettingsTransformManipulator(ui.Menu):
"""The menu with the transform manipulator settings"""
def __init__(self, text: str = "", factory: Dict = {}, **kwargs):
settings = carb.settings.get_settings()
settings.set_default_float(SETTING_SCALE, 1.4)
settings.set_default_bool(SETTING_FREE_ROTATION_ENABLED, True)
settings.set_default_string(SETTING_FREE_ROTATION_TYPE, FREE_ROTATION_TYPE_CLAMPED)
settings.set_default_float(SETTING_INTERSECTION_THICKNESS, 10.0)
super().__init__(text, on_build_fn=partial(self.build_fn, factory), **kwargs)
def build_fn(self, factory: Dict):
model = SettingModelWithDefaultValue(SETTING_SCALE, 1.4, draggable=True)
ui.MenuItem(
"Transform Manipulator Scale",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=model,
width=MENU_WIDTH,
min=0.0,
max=25.0,
has_reset=True,
),
)
model = SettingModelWithDefaultValue(SETTING_FREE_ROTATION_ENABLED, True, draggable=True)
ui.MenuItem(
"Enable Free Rotation",
hide_on_click=False,
delegate=CheckboxMenuDelegate(
model=model,
width=MENU_WIDTH,
has_reset=True,
),
)
model = _ManipulatorRotationTypeModel()
ui.MenuItem(
"Free Rotation Type",
hide_on_click=False,
delegate=ComboBoxMenuDelegate(
model=model,
width=MENU_WIDTH,
has_reset=True,
),
)
model = SettingModelWithDefaultValue(SETTING_INTERSECTION_THICKNESS, 10.0, True)
ui.MenuItem(
"Manipulator Intersection Thickness",
hide_on_click=False,
delegate=SliderMenuDelegate(
model=model,
width=MENU_WIDTH,
min=1.0,
max=50.0,
has_reset=True,
),
)
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/menu_item/settings_renderer_menu_item.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ["SettingsRendererMenuItem"]
from .custom_resolution.custom_resolution_menu_item import CustomResolutionMenuItem
from .resolution_collection.model import ComboBoxResolutionModel
from .resolution_collection.menu import ResolutionCollectionMenu
from omni.kit.viewport.menubar.core import (
ViewportMenuItem,
CheckboxMenuDelegate,
ComboBoxMenuDelegate,
ComboBoxModel,
SettingComboBoxModel,
ComboBoxItem,
ResetHelper,
RadioMenuCollection,
)
import omni.ui as ui
import omni.kit.app
import carb
from pxr import Sdf
from typing import Any, Dict, Tuple, List, Optional, Union
from functools import partial
SETTING_APERTURE = "/app/hydra/aperture/conform"
SETTING_RENDER_SCALE_LIST = "/app/renderer/resolution/multiplierList"
def _resolve_viewport_setting(viewport_id: str, setting_name: str, isettings: carb.settings.ISettings,
legacy_key: Union[str, None] = None):
# Resolve a default Viewport setting from the most specific to the most general
# /app/viewport/Viewport/Viewport0/setting => Startup value for this specific Viewport
# /app/viewport/defaults/setting => Startup value targetting all Viewports
# Next check if a non-persitent viewport-specific default exists via toml / start-up settings
dflt_setting_key = f"/app/viewport/{viewport_id}/{setting_name}"
pers_setting_key = "/persistent" + dflt_setting_key
# 1. Get the persistant per-viewport value that is saved (may be non-existant)
cur_value = isettings.get(pers_setting_key)
# 2. Get the per-viewport default that the setting should restore to
dflt_value = isettings.get(f"/app/viewport/{viewport_id}/{setting_name}")
# 3. If there is no per-viewport default, try to restore to a value for all Viewports
if dflt_value is None:
dflt_value = isettings.get(f"/app/viewport/defaults/{setting_name}")
# 4. If still no value to restore to, check for a legacy setting that represnts this
if dflt_value is None:
if legacy_key:
dflt_value = isettings.get(legacy_key)
elif setting_name == "resolution":
width = isettings.get("/app/renderer/resolution/width")
height = isettings.get("/app/renderer/resolution/height")
if (width is not None) and (height is not None):
# When either width or height is 0 or less, Viewport will be set to use UI size
if (width > 0) and (height > 0):
dflt_value = (width, height)
if dflt_value is None:
dflt_value = (0, 0)
if cur_value is None:
cur_value = dflt_value
return (
(pers_setting_key, cur_value),
(dflt_setting_key, dflt_value)
)
class _ViewportResolutionSetter:
"""Simple class that forwards resolution menu item changes to the proper underlying object"""
def __init__(self, factory_dict: dict, fill_viewport: bool):
self.__factory_dict = factory_dict
# Set the Viewport's fill_frame to False as we are controlling it fully
viewport_api = self.viewport_api
if viewport_api and viewport_api.fill_frame:
viewport_api.fill_frame = False
viewport_widget = self.viewport_widget
if viewport_widget:
viewport_widget.expand_viewport = fill_viewport
@property
def viewport_api(self):
return self.__factory_dict.get("viewport_api")
@property
def viewport_widget(self):
return self.__factory_dict.get("layer_provider").viewport_widget
@property
def fill_frame(self) -> bool:
return self.viewport_widget.fill_frame
@property
def fill_viewport(self) -> bool:
return self.viewport_widget.expand_viewport
@fill_viewport.setter
def fill_viewport(self, value: bool):
self.viewport_widget.expand_viewport = value
def set_resolution(self, resolution) -> None:
self.viewport_widget.set_resolution(resolution)
@property
def full_resolution(self) -> Tuple[float, float]:
return self.viewport_widget.full_resolution
class _ComboBoxResolutionScaleModel(SettingComboBoxModel, ResetHelper):
"""The resolution scale model has all the resolution scales and sets the viewport resolution scale"""
def __init__(self, viewport_api, resolution_scale_setting, settings):
self.__viewport_api = viewport_api
# Get the list of available multipliers or a default
values = settings.get(SETTING_RENDER_SCALE_LIST) or [2.0, 1.0, 0.666666666666, 0.5, 0.333333333333, 0.25]
# Check if the legacy per-app multiplier is set and use that if it is
default = resolution_scale_setting[1][1]
self.__default = default if default and default > 0 else 1.0
current_value = resolution_scale_setting[0][1]
# Push current_value into resolution_scale if not set to it already
if (current_value is not None) and (current_value > 0) and (current_value != self.__viewport_api.resolution_scale):
self.__viewport_api.resolution_scale = current_value
SettingComboBoxModel.__init__(
self,
# Set the key to set to to the persistent per-viewport key
setting_path=resolution_scale_setting[0][0],
texts=[str(int(value * 100)) + "%" for value in values],
values=values,
# This is passed to avoid defaulting the per-viewport persistent key to a value so that changes to the
# setting when not adjusted/saved will pick up the new default
current_value=self.__viewport_api.resolution_scale,
)
ResetHelper.__init__(self)
def _on_current_item_changed(self, item: ComboBoxItem) -> None:
super()._on_current_item_changed(item)
self.__viewport_api.resolution_scale = item.value
self._update_reset_button()
# for ResetHelper
def get_default(self):
return self.__default
def restore_default(self) -> None:
if self.__default is not None:
current_index = self.current_index
if current_index:
current = current_index.as_int
items = self.get_item_children(None)
# Early exit if the model is already correct
if items[current].value == self.__default:
return
# Iterate all items, and select the first match to the real value
for index, item in enumerate(items):
if item.value == self.__default:
current_index.set_value(index)
return
def get_value(self):
return self.__viewport_api.resolution_scale
class _ComboBoxApertureFitModel(ComboBoxModel):
"""The aperture model"""
def __init__(self, viewport_api, settings):
self.__viewport_api = viewport_api
values = [0, 1, 2, 3, 4]
texts = ["Match Vertical", "Match Horizontal", "Fit", "Crop", "Stretch"]
current_value = settings.get(SETTING_APERTURE) or 1
super().__init__(texts, values=values, current_value=current_value)
def _on_current_item_changed(self, item: ComboBoxItem) -> None:
# TODO: Add to Python bindings for UsdContext or HydraTexture
# self.__viewport_api.set_aperture_conform_policy(item.value)
pass
class _FillViewportModel(ui.AbstractValueModel, ResetHelper):
def __init__(self, resolution_setter, fill_viewport_settings, isettings: carb.settings.ISettings):
self.__resolution_setter = resolution_setter
# Get the default value that this item should reset/restore to
self.__default = bool(fill_viewport_settings[1][1])
self.__saved_value = self.__default
# This is the per-viewport persistent path this item will save to
self.__setting_path = fill_viewport_settings[0][0]
ui.AbstractValueModel.__init__(self)
ResetHelper.__init__(self)
self.__sub_model = self.subscribe_value_changed_fn(self.__on_value_changed)
self.__sub_setting = isettings.subscribe_to_node_change_events(self.__setting_path, self.__on_setting_changed)
def destroy(self):
self.__sub_model = None
if self.__sub_setting:
carb.settings.get_settings().unsubscribe_to_change_events(self.__sub_setting)
self.__sub_setting = None
def get_value_as_bool(self) -> bool:
return self.__resolution_setter.fill_viewport
def set_value(self, value: bool, save_restore: bool = False):
value = bool(value)
if save_restore:
if value:
value = self.__saved_value
else:
self.__saved_value = self.get_value_as_bool()
if value != self.get_value_as_bool():
self.__resolution_setter.fill_viewport = value
self._value_changed()
# for ResetHelper
def get_default(self):
return self.__default
def restore_default(self) -> None:
self.set_value(self.__default)
def get_value(self):
return self.get_value_as_bool()
def __on_setting_changed(self, *args, **kwargs):
if self.__sub_model:
self.set_value(carb.settings.get_settings().get(self.__setting_path))
def __on_value_changed(self, model: ui.AbstractValueModel):
# Use self.__sub_setting as a signal to process change in carb subscription
settings = carb.settings.get_settings()
model_sub, self.__sub_model = self.__sub_model, None
try:
value = model.as_bool
if bool(settings.get(self.__setting_path)) != value:
settings.set(self.__setting_path, value)
self._update_reset_button()
finally:
# Make sure to put the subscription back
self.__sub_model = model_sub
class SettingsRendererMenuItem(ui.Menu):
"""The menu with the viewport settings"""
def __init__(self, text: str = "", factory: Dict = {}, **kwargs):
self.__resolution_model: Union[ComboBoxResolutionModel, None] = None
self.__render_scale_model: Union[_ComboBoxResolutionScaleModel, None] = None
self.__fill_viewport_model: Union[_FillViewportModel, None] = None
self.__custom_menu_item: Union[CustomResolutionMenuItem, None] = None
self.__viewport_api_id: Union[str, None] = None
super().__init__(text, on_build_fn=partial(self.build_fn, factory), **kwargs)
def build_fn(self, factory: Dict):
# Create the model and the delegate here, not in __init__ to make the
# objects unique per viewport.
viewport_api = factory["viewport_api"]
viewport_api_id = viewport_api.id
isettings = carb.settings.get_settings()
self.__viewport_api_id = viewport_api_id
resolution_settings = _resolve_viewport_setting(viewport_api_id, "resolution", isettings)
fill_viewport_settings = _resolve_viewport_setting(viewport_api_id, "fillViewport", isettings)
resolution_scale_settings = _resolve_viewport_setting(viewport_api_id, "resolutionScale", isettings)
resolution_delegate = _ViewportResolutionSetter(factory, fill_viewport_settings[0][1])
self.__resolution_model = ComboBoxResolutionModel(resolution_delegate, resolution_settings, isettings)
ResolutionCollectionMenu("Render Resolution", self.__resolution_model)
self.__custom_menu_item = CustomResolutionMenuItem(self.__resolution_model, resolution_delegate)
self.__custom_menu_item.resolution = resolution_delegate.full_resolution
self.__render_scale_model = _ComboBoxResolutionScaleModel(viewport_api, resolution_scale_settings, isettings)
ui.MenuItem(
"Render Scale",
delegate=ComboBoxMenuDelegate(model=self.__render_scale_model, has_reset=True),
hide_on_click=False
)
# Requires Python bindings to set this through to the renderer
# ui.MenuItem(
# "Aperture Policy",
# delegate=ComboBoxMenuDelegate(model=_ComboBoxApertureFitModel(viewport_api, settings)),
# hide_on_click=False,
# )
self.__fill_viewport_model = _FillViewportModel(resolution_delegate, fill_viewport_settings, isettings)
self.__fill_viewport_item = ui.MenuItem(
"Fill Viewport",
delegate=CheckboxMenuDelegate(model=self.__fill_viewport_model, width=310, has_reset=True),
hide_on_click=False,
)
# Watch for an index change to disable / enable 'Fill Viewport' checkbox
self.__sub_resolution_index = self.__resolution_model.current_index.subscribe_value_changed_fn(
self.__on_resolution_index_changed
)
# Viewport can be changed externally, watch for any resolution changes to sync back into our models
self.__sub_render_settings = viewport_api.subscribe_to_render_settings_change(
self.__on_render_settings_changed
)
def __del__(self):
self.destroy()
def destroy(self):
self.__sub_render_settings = None
self.__sub_resolution_index = None
if self.__resolution_model:
self.__resolution_model.destroy()
self.__resolution_model = None
if self.__render_scale_model:
self.__render_scale_model.destroy()
self.__render_scale_model = None
if self.__fill_viewport_model:
self.__fill_viewport_model.destroy()
self.__fill_viewport_model = None
super().destroy()
def reset(self) -> None:
# When _default_resolution is None, them fill-frame is default on, off otherwise
if self.__fill_viewport_model:
self.__fill_viewport_model.restore_default()
# Restore resolution scale based on setting
if self.__render_scale_model:
self.__render_scale_model.restore_default()
# Restore resolution scale based on setting
if self.__resolution_model:
self.__resolution_model.restore_default()
def __sync_model(self, combo_model: ComboBoxModel, value: Any, select_first: bool = False):
current_index = combo_model.current_index
# Special case for forcing "Viewport" selection to be checked
if select_first:
if current_index.as_int != 0:
current_index.set_value(0)
return
items = combo_model.get_item_children(None)
if items and items[current_index.as_int].value != value:
# Iterate all items, and select the first match to the real value
index_custom = -1
for index, item in enumerate(items):
if item.value == value:
current_index.set_value(index)
return
if item.model.as_string == "Custom":
index_custom = index
if index_custom != -1:
current_index.set_value(index_custom)
def __on_resolution_index_changed(self, index_model: ui.SimpleIntModel) -> None:
# Enable or disable the 'Fill Viewport' option based on whether using Widget size for render resolution
# XXX: Changing visibility causes the menu to resize, which isn't great
index = index_model.as_int
fill_enabled = index != 0 if index_model else False
if fill_enabled != self.__fill_viewport_item.delegate.enabled:
self.__fill_viewport_model.set_value(fill_enabled, True)
self.__fill_viewport_item.delegate.enabled = fill_enabled
# When fillViewport is turned off, try to restore to last resolution
if not fill_enabled:
resolution = carb.settings.get_settings().get(f"/persistent/app/viewport/{self.__viewport_api_id}/resolution")
if resolution:
self.__sync_model(self.__resolution_model, tuple(resolution))
items = self.__resolution_model.get_item_children(None)
if index >= 0 and index < len(items):
item = items[index]
self.__custom_menu_item.resolution = item.value
def __on_render_settings_changed(self, camera_path: Sdf.Path, resolution: Tuple[int, int], viewport_api):
full_resolution = viewport_api.full_resolution
if self.__custom_menu_item.resolution != full_resolution:
# Update the custom_menu_item resolution entry boxes.
self.__custom_menu_item.resolution = full_resolution
# Sync the resolution to any existing settings (accounting for "Viewport" special case)
self.__sync_model(self.__resolution_model, full_resolution, self.__resolution_model.fill_frame)
# Sync the resolution scale menu item
self.__sync_model(self.__render_scale_model, viewport_api.resolution_scale)
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/menu_item/resolution_collection/model.py | import asyncio
import carb.settings
import omni.kit.app
from omni.kit.viewport.menubar.core import ComboBoxItem, SettingComboBoxModel, ResetHelper
from typing import Tuple, List, Optional
SETTING_RESOLUTION_LIST = "/app/renderer/resolution/list"
SETTING_CUSTOM_RESOLUTION_LIST = "/persistent/app/renderer/resolution/custom/list"
NAME_RESOLUTIONS = {
"Icon": (512, 512),
"Square": (1024, 1024),
"SD": (1280, 960),
"HD720P": (1280, 720),
"HD1080P": (1920, 1080),
"2K": (2048, 1080),
"1440P": (2560, 1440),
"UHD": (3840, 2160),
"Ultra Wide": (3440, 1440),
"Super Ultra Wide": (3840, 1440),
"5K Wide": (5120, 2880),
}
class ResolutionComboBoxItem(ComboBoxItem):
def __init__(self, resolution: Tuple[int, int], name: Optional[str] = None, custom: bool = False ) -> None:
self.resolution = resolution
self.name = name if name else self.get_name_from_resolution(resolution)
text = f"{resolution[0]}x{resolution[1]}" if self.is_valid_resolution() else self.name
self.custom = custom
super().__init__(text, resolution if resolution else "")
def get_name_from_resolution(self, resolution: Tuple[int, int]) -> str:
for name in NAME_RESOLUTIONS:
if NAME_RESOLUTIONS[name] == resolution:
return name
return ""
def is_valid_resolution(self):
return self.resolution and self.resolution[0] > 0 and self.resolution[1] > 0
class ComboBoxResolutionModel(SettingComboBoxModel, ResetHelper):
"""The resolution model has all the resolutions and sets the viewport resolution"""
def __init__(self, resolution_setter, resolution_setting, settings):
# Parse the incoming resolution list via settings
self.__resolution_setter = resolution_setter
# Set the default restore to value based on the resolved default pref-key
self.__default = resolution_setting[1][1]
self.__default = tuple(self.__default) if self.__default else (0, 0)
self.__custom_items: List[ResolutionComboBoxItem] = []
# XXX: For test-suite which passes None!
full_resolution = resolution_setter.full_resolution if resolution_setter else (0, 0)
values = None
try:
sttg_values = settings.get(SETTING_RESOLUTION_LIST)
if sttg_values is not None:
num_values = len(sttg_values)
if num_values > 0 and num_values % 2 == 0:
values = [(sttg_values[i*2 + 0], sttg_values[i*2 + 1]) for i in range(int(num_values / 2))]
else:
raise RuntimeError(f"Resolution list has invalid length of {num_values}")
except Exception as e:
import traceback
carb.log_error(f"{e}")
carb.log_error(f"{traceback.format_exc()}")
if values is None:
values = [(3840, 2160), (2560, 1440), (2048, 1080), (1920, 1080), (1280, 720), (1024, 1024), (512, 512)]
SettingComboBoxModel.__init__(
self,
# Set the key to set to to the persistent per-viewport key
setting_path=resolution_setting[0][0],
# Filled in below
texts=[],
values=[],
# Set the current value to the resolved persistent per-viewport value
# This is passed to avoid defaulting the per-viewport persitent key to a value so that changes to the
# setting when not adjusted/saved will pick up the new default
current_value=full_resolution,
)
ResetHelper.__init__(self)
self._items.append(ResolutionComboBoxItem((0, 0), name="Viewport"))
for value in values:
self._items.append(ResolutionComboBoxItem(value))
# Separator
self._items.append(ResolutionComboBoxItem(None))
self._items.append(ResolutionComboBoxItem((-1, -1), "Custom"))
# Custom is the last one
self.__index_custom = len(self._items) - 1
current = self._get_current_index_by_value(full_resolution)
self.current_index.set_value(current)
self.__update_setting = omni.kit.app.SettingChangeSubscription(SETTING_CUSTOM_RESOLUTION_LIST, self.__on_custom_change)
self.__on_custom_change(None, carb.settings.ChangeEventType.CHANGED)
def destroy(self):
self.__update_setting = None
self.__resolution_setter = None
self.__custom_items = []
def _on_current_item_changed(self, item: ResolutionComboBoxItem) -> None:
value = item.value
if value[0] >= 0 and value[1] >= 0:
super()._on_current_item_changed(item)
if self.__resolution_setter:
self.__resolution_setter.set_resolution(value)
self._update_reset_button()
def get_item_children(self, item) -> List[ResolutionComboBoxItem]:
#return super().get_item_children(item)
if item is None:
items = []
items.extend(self._items)
items.extend(self.__custom_items)
return items
else:
return []
# for ResetHelper
def get_default(self):
return self.__default
def restore_default(self) -> None:
if self.__default is None:
return
current_index = self.current_index
if current_index:
current = current_index.as_int
items = self.get_item_children(None)
# Early exit if the model is already correct
if items[current].value == self.__default:
return
# Iterate all items, and select the first match to the real value
for index, item in enumerate(items):
if item.value == self.__default:
current_index.set_value(index)
return
current_index.set_value(3)
def get_value(self) -> Optional[Tuple[int, int]]:
if self.__resolution_setter:
return self.__resolution_setter.full_resolution
return None
def is_custom(self, resolution: Tuple[int, int]) -> bool:
for custom in self.__custom_items:
if custom.value == resolution:
return True
return False
@property
def fill_frame(self) -> bool:
return self.__resolution_setter.fill_frame if self.__resolution_setter else False
def __on_custom_change(self, value, event_type) -> None:
async def __refresh_custom():
# It is strange that sometimes it is triggered with not all fields updated.
# Update a frame to make sure full information filled
await omni.kit.app.get_app().next_update_async()
self.__custom_items = []
custom_list = carb.settings.get_settings().get(SETTING_CUSTOM_RESOLUTION_LIST) or []
if custom_list:
# Separator
self.__custom_items.append(ResolutionComboBoxItem(None))
for custom in custom_list:
name = custom.pop("name", "")
width = custom.pop("width", -1)
height = custom.pop("height", -1)
if name and width > 0 and height > 0:
self.__custom_items.append(ResolutionComboBoxItem((width, height), name=name, custom=True))
self._item_changed(None)
if self.__resolution_setter:
current = self._get_current_index_by_value(self.__resolution_setter.full_resolution, default=self.__index_custom)
self.current_index.set_value(current)
asyncio.ensure_future(__refresh_custom())
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/menu_item/resolution_collection/menu.py | from .model import ResolutionComboBoxItem, ComboBoxResolutionModel
import carb.settings
import omni.ui as ui
from omni.kit.viewport.menubar.core import RadioMenuCollection, ViewportMenuDelegate, AbstractWidgetMenuDelegate
import math
from typing import List, Union
import weakref
SETTING_CUSTOM_RESOLUTION_LIST = "/persistent/app/renderer/resolution/custom/list"
DEFAULT_RATIOS = {
"16:9": float(16)/9,
"1:1": 1,
"32:9": float(32)/9,
"4:3": float(4)/3,
"21:9": float(21)/9,
}
class ResolutionCollectionDelegate(AbstractWidgetMenuDelegate):
def __init__(self, model: ComboBoxResolutionModel):
# don't use content_clipping as submenu hovering becomes inconsistent
super().__init__(model=model, has_reset=True, content_clipping=False)
self.__resolution_label: Union[ui.Label, None] = None
index_model = model.get_item_value_model(None, 0)
self.__sub_index_change = index_model.subscribe_value_changed_fn(
lambda m, this=weakref.proxy(self): this.__on_index_changed(m)
)
def destroy(self):
self.__sub_index_change = None
def build_widget(self, item: ui.MenuHelper):
ui.Spacer(width=4)
ui.Label(item.text, width=0)
ui.Spacer()
self.__resolution_label = ui.Label(self.__get_current_resolution(), width=70)
def __get_current_resolution(self):
index = self._model.get_item_value_model(None, 0).as_int
items: List[ResolutionComboBoxItem] = self._model.get_item_children(None)
if index >= 0 and index < len(items):
return items[index].name
else:
return "Unknown"
def __on_index_changed(self, model: ui.SimpleIntModel) -> None:
if self.__resolution_label:
self.__resolution_label.text = self.__get_current_resolution()
class ResolutionCollectionMenu(RadioMenuCollection):
ITEM_HEIGHT = 20
def __init__(self, text: str, model: ComboBoxResolutionModel):
super().__init__(
text,
model,
delegate = ResolutionCollectionDelegate(model),
)
self.__custom_menu_items = {}
def build_menu_item(self, item: ResolutionComboBoxItem) -> ui.MenuItem:
if item.resolution is None:
return ui.Separator(
delegate=ui.MenuDelegate(
on_build_item=lambda _: ui.Line(
height=0, alignment=ui.Alignment.V_CENTER, style_type_name_override="Menu.Separator"
)
)
)
else:
menu_item = ui.MenuItem(
item.name,
delegate = ViewportMenuDelegate(build_custom_widgets=lambda d, m, i=item: self.__build_resolution_menuitem_widgets(i))
)
if item.custom:
self.__custom_menu_items[item.name] = menu_item
return menu_item
def __build_resolution_menuitem_widgets(self, item: ResolutionComboBoxItem):
if item.is_valid_resolution():
ui.Spacer()
ui.Spacer(width=20)
ui.Label(item.model.as_string, width=80, style_type_name_override="Resolution.Text")
with ui.HStack(width=60):
ratio = float(item.resolution[0]) / item.resolution[1]
width = self.ITEM_HEIGHT * ratio
with ui.ZStack(width=width):
ui.Rectangle(style_type_name_override="Ratio.Background")
ui.Label(self.get_ratio_text(ratio), alignment=ui.Alignment.CENTER, style_type_name_override="Ratio.Text")
ui.Spacer()
if item.custom:
with ui.VStack(content_clipping=1, width=0):
ui.Image(width=20, style_type_name_override="Resolution.Del", mouse_pressed_fn=lambda x, y, b, f, i=item: self.__delete_resolution(i))
else:
ui.Spacer(width=20)
def get_ratio_text(self, ratio: float):
found = [key for (key, value) in DEFAULT_RATIOS.items() if math.isclose(value, ratio, rel_tol=1e-2)]
if found:
return found[0]
else:
return f"{ratio: .2f}:1"
def __delete_resolution(self, item: ResolutionComboBoxItem):
settings = carb.settings.get_settings()
custom_list = settings.get(SETTING_CUSTOM_RESOLUTION_LIST) or []
for custom in custom_list:
name = custom["name"]
if name == item.name:
custom_list.remove(custom)
settings.set(SETTING_CUSTOM_RESOLUTION_LIST, custom_list)
if item.name in self.__custom_menu_items:
self.__custom_menu_items[item.name].visible = False
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/menu_item/custom_resolution/save_window.py | import omni.ui as ui
from typing import Tuple, Callable
from ...style import SAVE_WINDOW_STYLE
class SaveWindow(ui.Window):
"""
Window to save custom resolution.
"""
PADDING = 8
def __init__(self, resolution: Tuple[int, int], on_save_fn: Callable[[str, Tuple[int, int]], bool]):
self.name_model = ui.SimpleStringModel()
self.__resolution = resolution
self.__on_save_fn = on_save_fn
flags = ui.WINDOW_FLAGS_NO_TITLE_BAR | ui.WINDOW_FLAGS_NO_RESIZE | ui.WINDOW_FLAGS_NO_MOVE | ui.WINDOW_FLAGS_MODAL
super().__init__(f"###Resoluiton Save", width=400, height=180, flags=flags, auto_resize=False, padding_x=0, padding_y=0)
self.frame.set_style(SAVE_WINDOW_STYLE)
self.frame.set_build_fn(self.__build_ui)
def __del__(self):
self.__sub_begin_edit = None
self.destroy()
def __build_ui(self):
with self.frame:
with ui.VStack(height=0):
self._build_titlebar()
ui.Spacer(height=30)
self._build_input()
ui.Spacer(height=30)
self._build_buttons()
ui.Spacer(height=15)
def _build_titlebar(self):
with ui.ZStack(height=0):
ui.Rectangle(style_tyle_name_override="Titlebar.Background")
with ui.VStack():
ui.Spacer(height=self.PADDING)
with ui.HStack():
ui.Spacer(width=self.PADDING)
ui.Label("Save Custom Viewport Resolution", width=0, style_type_name_override="Titlebar.Title")
ui.Spacer()
ui.Image(width=20, height=20, mouse_released_fn=lambda x, y, b, f: self.__on_cancel(), name="close")
ui.Spacer(width=self.PADDING)
ui.Spacer(height=self.PADDING)
def _build_input(self):
with ui.HStack():
ui.Spacer()
with ui.ZStack(width=160):
name_input = ui.StringField(self.name_model)
hint_label = ui.Label("Type Name", style_type_name_override="Input.Hint")
ui.Spacer(width=20)
ui.Label(f"{self.__resolution[0]} x {self.__resolution[1]}")
ui.Spacer()
name_input.focus_keyboard()
def __hide_hint():
hint_label.visible = False
self.__sub_begin_edit = self.name_model.subscribe_begin_edit_fn(lambda m: __hide_hint())
def _build_buttons(self):
with ui.HStack():
ui.Spacer()
ui.Button("Save", width=80, clicked_fn=self.__on_save)
ui.Spacer(width=20)
ui.Button("Cancel", width=80, clicked_fn=self.__on_cancel)
ui.Spacer()
def __on_save(self) -> None:
if self.__on_save_fn(self.name_model.as_string, self.__resolution):
self.visible = False
def __on_cancel(self) -> None:
self.visible = False
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/menu_item/custom_resolution/custom_resolution_menu_item.py | import omni.ui as ui
from typing import Tuple
from .custom_resolution_delegate import CustomResolutionDelegate
class CustomResolutionMenuItem(ui.MenuItem):
"""
Menu item to edit/save custom resolution.
"""
def __init__(self, res_model, res_setter):
self.__delegate = CustomResolutionDelegate(res_model, res_setter)
ui.MenuItem(
"Custom Resolution",
delegate=self.__delegate,
hide_on_click=False,
)
super().__init__("Custom Resolution")
def destroy(self):
self.__delegate.destroy()
@property
def resolution(self) -> Tuple[int, int]:
return self.__delegate.resolution
@resolution.setter
def resolution(self, res: Tuple[int, int]) -> None:
self.__delegate.resolution = res
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/menu_item/custom_resolution/custom_resolution_delegate.py | from omni.kit.viewport.menubar.core import AbstractWidgetMenuDelegate
import omni.ui as ui
import omni.kit.app
from .save_window import SaveWindow
import carb.settings
from typing import List, Optional, Callable, Tuple
import weakref
import math
import asyncio
SETTING_CUSTOM_RESOLUTION_LIST = "/persistent/app/renderer/resolution/custom/list"
SETTING_MIN_RESOLUTION = "/exts/omni.kit.viewport.menubar.settings/min_resolution"
class RatioItem(ui.AbstractItem):
def __init__(self, text: str, value: float) -> None:
super().__init__()
self.model = ui.SimpleStringModel(text)
self.value = value
class RatioModel(ui.AbstractItemModel):
"""
The model used for ratio combobox
"""
def __init__(self):
super().__init__()
# List items
self.__default_items = [
RatioItem("16:9", 16.0/9),
RatioItem("4:3", 4.0/3),
RatioItem("1:1", 1.0)
]
self.__custom_item: Optional[RatioItem] = None
# Current value
self.current_index = ui.SimpleIntModel(-1)
self._sub = self.current_index.subscribe_value_changed_fn(
lambda _, this=weakref.proxy(self): this.__on_index_changed()
)
def destroy(self):
self._sub = None
self.current_index = None
@property
def ratio(self) -> float:
items = self.get_item_children(None)
return items[self.current_index.as_int].value
@ratio.setter
def ratio(self, value: float) -> None:
found = [index for (index, item) in enumerate(self.__default_items) if math.isclose(item.value, value, rel_tol=1e-2)]
if found:
self.__custom_item = None
self.current_index.set_value(found[0])
self._item_changed(None)
else:
ratio_text = f"{value: .2f}:1"
self.__custom_item = RatioItem(ratio_text, value)
self.current_index.set_value(0)
self._item_changed(None)
def subscribe_ratio_changed_fn(self, on_ratio_changed_fn: Callable[[float], None]):
def __on_sub_index_changed(this, callback):
current_index = this.current_index.as_int
items = this.get_item_children(None)
callback(items[current_index].value)
return self.current_index.subscribe_value_changed_fn(
lambda _, this=weakref.proxy(self), callback=on_ratio_changed_fn: __on_sub_index_changed(this, callback)
)
def get_item_children(self, item) -> List[RatioItem]:
items = []
if self.__custom_item:
items.append(self.__custom_item)
items.extend(self.__default_items)
return items
def get_item_value_model(self, item, column_id):
if item is None:
return self.current_index
return item.model
def __on_index_changed(self):
self._item_changed(None)
class CustomResolutionDelegate(AbstractWidgetMenuDelegate):
"""
Delegate to edit/save custom resoltion.
"""
def __init__(self, resolution_model, resolution_setter):
super().__init__(width=310, has_reset=False)
self.__resolution_model = resolution_model
self.__resolution_setter = resolution_setter
self.__link_button: Optional[ui.Button] = None
self.__save_button: Optional[ui.Button] = None
self.__save_window: Optional[SaveWindow] = None
self.__settings = carb.settings.get_settings()
(self.__resolution_min_width, self.__resolution_min_height) = self.__settings.get(SETTING_MIN_RESOLUTION) or [64, 64]
self.width_model = ui.SimpleIntModel(1920)
self.__sub_width_begin_edit = self.width_model.subscribe_begin_edit_fn(lambda _: self.__on_begin_edit())
self.__sub_width_end_edit = self.width_model.subscribe_end_edit_fn(lambda _: self.__on_width_end_edit())
self.height_model = ui.SimpleIntModel(1080)
self.__sub_height_begin_edit = self.height_model.subscribe_begin_edit_fn(lambda _: self.__on_begin_edit())
self.__sub_height_end_edit = self.height_model.subscribe_end_edit_fn(lambda _: self.__on_height_end_edit())
self.ratio_model = RatioModel()
self.__sub_ratio_change = None
self.__subscribe_ratio_change()
def destroy(self):
self.__sub_ratio_change = None
self.__sub_width_begin_edit = None
self.__sub_width_end_edit = None
self.__sub_height_begin_edit = None
self.__sub_height_end_edit = None
@property
def resolution(self) -> Tuple[int, int]:
return (self.width_model.as_int, self.height_model.as_int)
@resolution.setter
def resolution(self, res: Tuple[int, int]) -> None:
if res[0] == -1 and res[1] == -1:
# "Custom" selected
self.__update_save_image_state()
elif res[0] > 0 and res[1] > 0:
if self.width_model.as_int == res[0] and self.height_model.as_int == res[1]:
return
was_r_subscibed = self.__subscribe_ratio_change(enable=False)
self.ratio_model.ratio = res[0] / res[1]
self.width_model.set_value(res[0])
self.height_model.set_value(res[1])
self.__subscribe_ratio_change(enable=was_r_subscibed)
self.__update_save_image_state()
def build_widget(self, item: ui.MenuHelper):
with ui.VStack(spacing=0):
ui.Spacer(height=0, spacing=4)
with ui.HStack():
ui.Spacer(width=8)
ui.IntField(self.width_model, width=60, height=20)
ui.Spacer(width=10)
self.__link_button = ui.Button(
width=35,
image_height=20,
image_width=24,
checked=True,
clicked_fn=self.__on_link_clicked,
style_type_name_override="ResolutionLink",
)
ui.Spacer(width=10)
ui.IntField(self.height_model, width=60, height=20)
ui.Spacer(width=10)
ui.ComboBox(self.ratio_model, name="ratio")
ui.Spacer(width=10)
with ui.VStack(width=0, content_clipping=True):
self.__save_button = ui.Button(
style_type_name_override="Menu.Item.Button",
name="save",
width=20,
height=20,
image_width=20,
image_height=20,
clicked_fn=self.__save
)
ui.Spacer(width=4)
with ui.HStack():
ui.Spacer(width=8)
ui.Label("Width", alignment=ui.Alignment.LEFT, width=60)
ui.Spacer(width=54)
ui.Label("Height", alignment=ui.Alignment.LEFT, width=60)
ui.Spacer()
def __on_width_changed(self, model):
width = model.as_int
if width < self.__resolution_min_width:
self.__post_resolution_warning()
model.set_value(self.__resolution_min_width)
width = model.as_int
if self.__link_button:
if self.__link_button.checked:
height = int(width/self.ratio_model.ratio)
if height < self.__resolution_min_height:
# Height is too small, change width to match the min height
self.__post_resolution_warning()
height = self.__resolution_min_height
width = int(height * self.ratio_model.ratio)
model.set_value(width)
if height != self.height_model.as_int:
self.height_model.set_value(height)
else:
self.ratio_model.ratio = float(width) / self.height_model.as_int
self.__set_render_resolution(self.resolution)
self.__update_save_image_state()
def __on_height_changed(self, model):
height = model.as_int
if height < self.__resolution_min_height:
self.__post_resolution_warning()
model.set_value(self.__resolution_min_height)
height = model.as_int
if self.__link_button:
if self.__link_button.checked:
width = int(height * self.ratio_model.ratio)
if width < self.__resolution_min_width:
# Width is too small, change height to match min width
self.__post_resolution_warning()
width = self.__resolution_min_width
height = int(width / self.ratio_model.ratio)
model.set_value(height)
if width != self.width_model.as_int:
self.width_model.set_value(width)
else:
self.ratio_model.ratio = float(self.width_model.as_int) / height
self.__set_render_resolution(self.resolution)
self.__update_save_image_state()
def __on_ratio_changed(self, ratio: float):
height = int(self.width_model.as_int/self.ratio_model.ratio)
if height != self.height_model.as_int:
self.height_model.set_value(height)
self.__set_render_resolution(self.resolution)
self.__update_save_image_state()
def __on_link_clicked(self):
self.__link_button.checked = not self.__link_button.checked
def __subscribe_ratio_change(self, enable: bool = True) -> bool:
was_subscribed = self.__sub_ratio_change is not None
if enable:
if not was_subscribed:
self.__sub_ratio_change = self.ratio_model.subscribe_ratio_changed_fn(self.__on_ratio_changed)
elif was_subscribed:
self.__sub_ratio_change = None
return was_subscribed
def __save(self):
if self.__save_button.checked:
if self.__save_window:
self.__save_window = None
self.__save_window = SaveWindow(self.resolution, self.__on_save_resolution)
def __update_save_image_state(self):
if not self.__save_button:
return
for item in self.__resolution_model.get_item_children(None):
if self.resolution == item.value:
self.__save_button.checked = False
break
else:
self.__save_button.checked = True
def __on_save_resolution(self, new_name: str, resolution: Tuple[int, int]) -> bool:
custom_list = self.__settings.get(SETTING_CUSTOM_RESOLUTION_LIST) or []
for custom in custom_list:
name = custom["name"]
if name == new_name:
carb.log_warn("f{new_name} already exists!")
return False
custom_list.append(
{
"name": new_name,
"width": resolution[0],
"height": resolution[1]
}
)
self.__settings.set(SETTING_CUSTOM_RESOLUTION_LIST, custom_list)
self.__save_button.checked = False
return True
def __set_render_resolution(self, resolution: Tuple[int, int]):
async def __delay_async(res: Tuple[int, int]):
# Delay a frame to make sure current changes from UI are saved
await omni.kit.app.get_app().next_update_async()
self.__resolution_setter.set_resolution(res)
asyncio.ensure_future(__delay_async(resolution))
def __on_begin_edit(self):
self.__saved_width = self.width_model.as_int
self.__saved_height = self.height_model.as_int
def __on_width_end_edit(self):
if self.width_model.as_int <= 0:
self.width_model.set_value(self.__saved_width)
self.__on_width_changed(self.width_model)
def __on_height_end_edit(self):
if self.height_model.as_int <= 0:
self.height_model.set_value(self.__saved_height)
self.__on_height_changed(self.height_model)
def __post_resolution_warning(self):
try:
import omni.kit.notification_manager as nm
nm.post_notification(f"Resolution cannot be lower than {self.__resolution_min_width}x{self.__resolution_min_height}", status=nm.NotificationStatus.WARNING)
except ImportError:
carb.log_warn(f"Resolution cannot be lower than {self.__resolution_min_width}x{self.__resolution_min_height}") |
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/tests/test_custom_resolution.py | import carb.settings
import omni.kit.test
from ..menu_item.resolution_collection.model import ComboBoxResolutionModel, ResolutionComboBoxItem
SETTING_CUSTOM_RESOLUTION_LIST = "/persistent/app/renderer/resolution/custom/list"
class TestCustomResolution(omni.kit.test.AsyncTestCase):
async def setUp(self):
self.__settings = carb.settings.get_settings()
# Useles fake data that needs to go to ComboBoxResolutionModel
resolution_setter = None
resolution_settings = (("setting", (0,0)), ("setting", (0,0)))
self.__model = ComboBoxResolutionModel(None, resolution_settings, self.__settings)
super().setUp()
async def tearDown(self):
self.__settings.set(SETTING_CUSTOM_RESOLUTION_LIST, [])
super().tearDown()
async def test_custom_resolutions(self):
items = self.__model.get_item_children(None)
num_items = len(items)
self.__settings.set(SETTING_CUSTOM_RESOLUTION_LIST, [{"name": "test", "width": 100, "height": 200}])
for _ in range(2):
await omni.kit.app.get_app().next_update_async()
items = self.__model.get_item_children(None)
self.assertEqual(num_items + 2, len(items))
new_item: ResolutionComboBoxItem = items[-1]
self.assertEqual(new_item.name, "test")
self.assertEqual(new_item.resolution, (100, 200))
self.assertTrue(new_item.custom)
self.__settings.set(SETTING_CUSTOM_RESOLUTION_LIST, [])
for _ in range(2):
await omni.kit.app.get_app().next_update_async()
items = self.__model.get_item_children(None)
self.assertEqual(num_items, len(items))
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/tests/__init__.py | from .test_ui import *
from .test_custom_resolution import *
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/omni/kit/viewport/menubar/settings/tests/test_ui.py | import omni.kit.test
from re import I
from omni.ui.tests.test_base import OmniUiTest
import omni.kit.ui_test as ui_test
from omni.kit.ui_test import Vec2
import omni.usd
import omni.kit.app
from omni.kit.test.teamcity import is_running_in_teamcity
from pathlib import Path
import carb.input
import asyncio
import unittest
import sys
CURRENT_PATH = Path(__file__).parent
TEST_DATA_PATH = CURRENT_PATH.parent.parent.parent.parent.parent.parent.joinpath("data").joinpath("tests")
TEST_WIDTH, TEST_HEIGHT = 600, 600
class TestSettingMenuWindow(OmniUiTest):
async def setUp(self):
self._golden_img_dir = TEST_DATA_PATH.absolute().joinpath("golden_img").absolute()
await self.create_test_area(width=TEST_WIDTH, height=TEST_HEIGHT)
await omni.kit.app.get_app().next_update_async()
async def test_navigation(self):
await self.__show_subitem("menubar_setting_navigation.png", 86)
async def test_selection(self):
await self.__show_subitem("menubar_setting_selection.png", 106)
async def test_grid(self):
await self.__show_subitem("menubar_setting_grid.png", 126)
async def test_gizmo(self):
await self.__show_subitem("menubar_setting_gizmo.png", 146)
@unittest.skipIf(
(sys.platform == "linux" and is_running_in_teamcity()),
"OM-64377: Delegate for RadioMenuCollection does not work in Linux",
)
async def test_viewport(self):
await self.__show_subitem("menubar_setting_viewport.png", 166)
async def test_viewport_ui(self):
await self.__show_subitem("menubar_setting_viewport_ui.png", 186)
async def test_viewport_manipulate(self):
await self.__show_subitem("menubar_setting_viewport_manipulator.png", 206)
async def test_reset_item(self):
settings = carb.settings.get_settings()
cam_vel = settings.get("/persistent/app/viewport/camMoveVelocity")
in_enabled = settings.get("/persistent/app/viewport/camInertiaEnabled")
settings.set("/persistent/app/viewport/camMoveVelocity", cam_vel * 2)
settings.set("/persistent/app/viewport/camInertiaEnabled", not in_enabled)
try:
await self.__do_ui_test(ui_test.emulate_mouse_click, 225)
self.assertEqual(settings.get("/persistent/app/viewport/camMoveVelocity"), cam_vel)
self.assertEqual(settings.get("/persistent/app/viewport/camInertiaEnabled"), in_enabled)
finally:
settings.set("/persistent/app/viewport/camMoveVelocity", cam_vel)
settings.set("/persistent/app/viewport/camInertiaEnabled", in_enabled)
async def __show_subitem(self, golden_img_name: str, y: int) -> None:
async def gloden_compare():
await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name=golden_img_name)
await self.__do_ui_test(gloden_compare, y)
async def __do_ui_test(self, test_operation, y: int, frame_wait: int = 3) -> None:
# Enable mouse input
app = omni.kit.app.get_app()
app_window = omni.appwindow.get_default_app_window()
for device in [carb.input.DeviceType.MOUSE]:
app_window.set_input_blocking_state(device, None)
try:
await ui_test.emulate_mouse_move(Vec2(20, 46), human_delay_speed=4)
await ui_test.emulate_mouse_click()
await ui_test.emulate_mouse_move(Vec2(20, y))
for _ in range(frame_wait):
await app.next_update_async()
await test_operation()
finally:
for _ in range(frame_wait):
await app.next_update_async()
await ui_test.emulate_mouse_move(Vec2(300, 26))
await ui_test.emulate_mouse_click()
for _ in range(frame_wait):
await app.next_update_async()
|
omniverse-code/kit/exts/omni.kit.viewport.menubar.settings/docs/index.rst | omni.kit.viewport.menubar.settings
###################################
Viewport MenuBar Settings
.. toctree::
:maxdepth: 1
README
CHANGELOG
.. automodule:: omni.kit.viewport.menubar.settings
:platform: Windows-x86_64, Linux-x86_64
:members:
:undoc-members:
:show-inheritance:
:imported-members:
|
omniverse-code/kit/exts/omni.kit.window.status_bar/PACKAGE-LICENSES/omni.kit.window.status_bar-LICENSE.md | Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related documentation without an express
license agreement from NVIDIA CORPORATION is strictly prohibited. |
omniverse-code/kit/exts/omni.kit.window.status_bar/config/extension.toml | [package]
version = "0.1.5"
title = "Status Bar"
changelog = "docs/CHANGELOG.md"
[dependencies]
"omni.usd" = {}
"omni.ui" = {}
"omni.kit.mainwindow" = { optional=true }
[[native.plugin]]
path = "bin/*.plugin"
recursive = false
# That will make tests auto-discoverable by test_runner:
[[python.module]]
name = "omni.kit.window.status_bar.tests"
[[test]]
args = [
"--/app/window/dpiScaleOverride=1.0",
"--/app/window/scaleToMonitor=false",
"--no-window"
]
dependencies = [
"omni.kit.renderer.capture",
"omni.ui",
]
|
omniverse-code/kit/exts/omni.kit.window.status_bar/omni/kit/window/status_bar/tests/test_status_bar.py | ## Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved.
##
## NVIDIA CORPORATION and its licensors retain all intellectual property
## and proprietary rights in and to this software, related documentation
## and any modifications thereto. Any use, reproduction, disclosure or
## distribution of this software and related documentation without an express
## license agreement from NVIDIA CORPORATION is strictly prohibited.
##
import omni.kit.test
from omni.ui.tests.test_base import OmniUiTest
import carb
import asyncio
class TestStatusBar(OmniUiTest):
# Before running each test
async def setUp(self):
self.name_progress = carb.events.type_from_string("omni.kit.window.status_bar@progress")
self.name_activity = carb.events.type_from_string("omni.kit.window.status_bar@activity")
self.message_bus = omni.kit.app.get_app().get_message_bus_event_stream()
self.message_bus.push(self.name_activity, payload={"text": ""})
self.message_bus.push(self.name_progress, payload={"progress": "-1"})
# After running each test
async def tearDown(self):
pass
async def test_general(self):
await self.create_test_area(256, 64)
async def log():
# Delayed log because self.finalize_test logs things
carb.log_warn("StatusBar test")
asyncio.ensure_future(log())
await self.finalize_test()
async def test_activity(self):
await self.create_test_area(512, 64)
async def log():
# Delayed log because self.finalize_test logs things
carb.log_warn("StatusBar test")
# Test activity name with spaces URL-encoded
self.message_bus.push(self.name_activity, payload={"text": "MFC%20For%20NvidiaAnimated.usd"})
self.message_bus.push(self.name_progress, payload={"progress": "0.2"})
asyncio.ensure_future(log())
await self.finalize_test()
|
omniverse-code/kit/exts/omni.kit.window.status_bar/omni/kit/window/status_bar/tests/__init__.py | ## Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved.
##
## NVIDIA CORPORATION and its licensors retain all intellectual property
## and proprietary rights in and to this software, related documentation
## and any modifications thereto. Any use, reproduction, disclosure or
## distribution of this software and related documentation without an express
## license agreement from NVIDIA CORPORATION is strictly prohibited.
##
from .test_status_bar import TestStatusBar
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/PACKAGE-LICENSES/omni.kit.primitive.mesh-LICENSE.md | Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related documentation without an express
license agreement from NVIDIA CORPORATION is strictly prohibited. |
omniverse-code/kit/exts/omni.kit.primitive.mesh/config/extension.toml | [package]
# Semantic Versioning is used: https://semver.org/
version = "1.0.8"
# Lists people or organizations that are considered the "authors" of the package.
authors = ["NVIDIA"]
category = "Internal"
# The title and description fields are primarly for displaying extension info in UI
title = "Kit Mesh Primitives Generator"
description="Generators for basic mesh geometry."
# Keywords for the extension
keywords = ["kit", "mesh primitive"]
# URL of the extension source repository.
repository = ""
# Location of change log file in target (final) folder of extension, relative to the root.
# More info on writing changelog: https://keepachangelog.com/en/1.0.0/
changelog = "docs/CHANGELOG.md"
# Preview image. Folder named "data" automatically goes in git lfs (see .gitattributes file).
preview_image = "data/preview.png"
[dependencies]
"omni.kit.commands" = {}
"omni.usd" = {}
"omni.ui" = {optional = true}
"omni.kit.menu.utils" = {optional = true}
"omni.kit.usd.layers" = {}
"omni.kit.actions.core" = {}
[[python.module]]
name = "omni.kit.primitive.mesh"
[[test]]
timeout=300
args = [
"--/app/file/ignoreUnsavedOnExit=true",
"--/app/asyncRendering=false",
"--/app/window/dpiScaleOverride=1.0",
"--/app/window/scaleToMonitor=false",
"--no-window"
]
dependencies = [
"omni.hydra.pxr",
"omni.kit.commands",
"omni.kit.renderer.capture",
"omni.kit.mainwindow",
"omni.kit.test",
"omni.ui",
"omni.kit.menu.utils"
]
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/extension.py | __all__ = ["PrimitiveMeshExtension"]
import omni
from .mesh_actions import register_actions, deregister_actions
from pxr import Usd
class PrimitiveMeshExtension(omni.ext.IExt):
def __init__(self):
super().__init__()
def on_startup(self, ext_id):
self._ext_name = omni.ext.get_extension_name(ext_id)
self._mesh_generator = None
try:
from .generator import MeshGenerator
self._mesh_generator = MeshGenerator()
self._mesh_generator.register_menu()
except ImportError:
pass
register_actions(self._ext_name, PrimitiveMeshExtension, lambda: self._mesh_generator)
def on_shutdown(self):
deregister_actions(self._ext_name)
if self._mesh_generator:
self._mesh_generator.destroy()
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/__init__.py | from .evaluators import get_geometry_mesh_prim_list, AbstractShapeEvaluator
from .command import CreateMeshPrimCommand, CreateMeshPrimWithDefaultXformCommand
from .extension import PrimitiveMeshExtension
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/mesh_actions.py | import omni.usd
import omni.kit.commands
import omni.kit.actions.core
from .evaluators import get_geometry_mesh_prim_list
def register_actions(extension_id, cls, get_self_fn):
def create_mesh_prim(prim_type):
usd_context = omni.usd.get_context()
with omni.kit.usd.layers.active_authoring_layer_context(usd_context):
omni.kit.commands.execute("CreateMeshPrimWithDefaultXform", prim_type=prim_type, above_ground=True)
# actions
for prim in get_geometry_mesh_prim_list():
omni.kit.actions.core.get_action_registry().register_action(
extension_id,
f"create_mesh_prim_{prim.lower()}",
lambda p=prim: create_mesh_prim(p),
display_name=f"Create Mesh Prim {prim}",
description=f"Create Mesh Prim {prim}",
tag="Create Mesh Prim",
)
if get_self_fn() is not None:
omni.kit.actions.core.get_action_registry().register_action(
extension_id,
"show_setting_window",
get_self_fn().show_setting_window,
display_name="Show Settings Window",
description="Show Settings Window",
tag="Show Settings Window",
)
def deregister_actions(extension_id):
action_registry = omni.kit.actions.core.get_action_registry()
action_registry.deregister_all_actions_for_extension(extension_id)
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/generator.py | import carb.settings
import omni
import omni.kit
from omni import ui
from .evaluators import _get_all_evaluators, get_geometry_mesh_prim_list
from omni.kit.menu.utils import MenuItemDescription, remove_menu_items, add_menu_items
class MeshGenerator:
def __init__(self):
self._settings = carb.settings.get_settings()
self._window = None
self._mesh_setting_ui = {}
self._current_setting_index = 0
self._mesh_menu_list = []
def destroy(self):
self._window = None
remove_menu_items(self._mesh_menu_list, "Create")
def register_menu(self):
sub_menu = []
for prim in get_geometry_mesh_prim_list():
sub_menu.append(MenuItemDescription(name=prim, onclick_action=("omni.kit.primitive.mesh", f"create_mesh_prim_{prim.lower()}")))
sub_menu.append(MenuItemDescription())
sub_menu.append(MenuItemDescription(name="Settings", onclick_action=("omni.kit.primitive.mesh", "show_setting_window")))
self._mesh_menu_list = [
MenuItemDescription(name="Mesh", glyph="menu_prim.svg", sub_menu=sub_menu)
]
add_menu_items(self._mesh_menu_list, "Create")
def on_primitive_type_selected(self, model, item):
names = get_geometry_mesh_prim_list()
old_mesh_name = names[self._current_setting_index]
if old_mesh_name in self._mesh_setting_ui:
self._mesh_setting_ui[old_mesh_name].visible = False
idx = model.get_item_value_model().as_int
mesh_name = names[idx]
if mesh_name in self._mesh_setting_ui:
self._mesh_setting_ui[old_mesh_name].visible = False
self._mesh_setting_ui[mesh_name].visible = True
self._current_setting_index = idx
def show_setting_window(self):
flags = ui.WINDOW_FLAGS_NO_COLLAPSE | ui.WINDOW_FLAGS_NO_SCROLLBAR
if not self._window:
self._window = ui.Window(
"Mesh Generation Settings",
ui.DockPreference.DISABLED,
width=400,
height=260,
flags=flags,
padding_x=0,
padding_y=0,
)
with self._window.frame:
with ui.VStack(height=0):
ui.Spacer(width=0, height=20)
with ui.HStack(height=0):
ui.Spacer(width=20, height=0)
ui.Label("Primitive Type", name="text", height=0)
model = ui.ComboBox(0, *get_geometry_mesh_prim_list(), name="primitive_type").model
model.add_item_changed_fn(self.on_primitive_type_selected)
ui.Spacer(width=20, height=0)
ui.Spacer(width=0, height=10)
ui.Separator(height=0, name="text")
ui.Spacer(width=0, height=10)
with ui.ZStack(height=0):
mesh_names = get_geometry_mesh_prim_list()
for i in range(len(mesh_names)):
mesh_name = mesh_names[i]
stack = ui.VStack(spacing=0)
self._mesh_setting_ui[mesh_name] = stack
with stack:
ui.Spacer(height=20)
evaluator_class = _get_all_evaluators()[mesh_name]
evaluator_class.build_setting_ui()
ui.Spacer(height=5)
if i != 0:
stack.visible = False
ui.Spacer(width=0, height=20)
with ui.HStack(height=0):
ui.Spacer()
ui.Button(
"Create",
alignment=ui.Alignment.H_CENTER,
name="create",
width=120,
height=0,
mouse_pressed_fn=lambda *args: self._create_shape(),
)
ui.Button(
"Reset Settings",
alignment=ui.Alignment.H_CENTER,
name="reset",
width=120,
height=0,
mouse_pressed_fn=lambda *args: self._reset_settings(),
)
ui.Spacer()
self._current_setting_index = 0
self._window.visible = True
def _create_shape(self):
names = get_geometry_mesh_prim_list()
mesh_type = names[self._current_setting_index]
usd_context = omni.usd.get_context()
with omni.kit.usd.layers.active_authoring_layer_context(usd_context):
omni.kit.commands.execute("CreateMeshPrimWithDefaultXform", prim_type=mesh_type, above_ground=True)
def _reset_settings(self):
names = get_geometry_mesh_prim_list()
mesh_type = names[self._current_setting_index]
evaluator_class = _get_all_evaluators()[mesh_type]
evaluator_class.reset_setting()
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/command.py | __all__ = ["CreateMeshPrimWithDefaultXformCommand", "CreateMeshPrimCommand"]
import omni
import carb.settings
from pxr import UsdGeom, Usd, Vt, Kind, Sdf, Gf
from .evaluators import _get_all_evaluators
PERSISTENT_SETTINGS_PREFIX = "/persistent"
class CreateMeshPrimWithDefaultXformCommand(omni.kit.commands.Command):
def __init__(self, prim_type: str, **kwargs):
"""
Creates primitive.
Args:
prim_type (str): It supports Plane/Sphere/Cone/Cylinder/Disk/Torus/Cube.
kwargs:
object_origin (Gf.Vec3f): Position of mesh center in stage units.
u_patches (int): The number of patches to tessellate U direction.
v_patches (int): The number of patches to tessellate V direction.
w_patches (int): The number of patches to tessellate W direction.
It only works for Cone/Cylinder/Cube.
half_scale (float): Half size of mesh in centimeters. Default is None, which means it's controlled by settings.
u_verts_scale (int): Tessellation Level of U. It's a multiplier of u_patches.
v_verts_scale (int): Tessellation Level of V. It's a multiplier of v_patches.
w_verts_scale (int): Tessellation Level of W. It's a multiplier of w_patches.
It only works for Cone/Cylinder/Cube.
For Cone/Cylinder, it's to tessellate the caps.
For Cube, it's to tessellate along z-axis.
above_ground (bool): It will offset the center of mesh above the ground plane if it's True,
False otherwise. It's False by default. This param only works when param object_origin is not given.
Otherwise, it will be ignored.
"""
self._prim_type = prim_type[0:1].upper() + prim_type[1:].lower()
self._usd_context = omni.usd.get_context(kwargs.get("context_name", ""))
self._selection = self._usd_context.get_selection()
self._stage = self._usd_context.get_stage()
self._settings = carb.settings.get_settings()
self._default_path = kwargs.get("prim_path", None)
self._select_new_prim = kwargs.get("select_new_prim", True)
self._prepend_default_prim = kwargs.get("prepend_default_prim", True)
self._above_round = kwargs.get("above_ground", False)
self._attributes = {**kwargs}
# Supported mesh types should have an associated evaluator class
self._evaluator_class = _get_all_evaluators()[prim_type]
assert isinstance(self._evaluator_class, type)
def do(self):
self._prim_path = None
if self._default_path:
path = omni.usd.get_stage_next_free_path(self._stage, self._default_path, self._prepend_default_prim)
else:
path = omni.usd.get_stage_next_free_path(self._stage, "/" + self._prim_type, self._prepend_default_prim)
mesh = UsdGeom.Mesh.Define(self._stage, path)
prim = mesh.GetPrim()
defaultXformOpType = self._settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpType")
defaultRotationOrder = self._settings.get(
PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultRotationOrder"
)
defaultXformOpOrder = self._settings.get(
PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpOrder"
)
defaultXformPrecision = self._settings.get(
PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpPrecision"
)
vec3_type = Sdf.ValueTypeNames.Double3 if defaultXformPrecision == "Double" else Sdf.ValueTypeNames.Float3
quat_type = Sdf.ValueTypeNames.Quatd if defaultXformPrecision == "Double" else Sdf.ValueTypeNames.Quatf
up_axis = UsdGeom.GetStageUpAxis(self._stage)
self._attributes["up_axis"] = up_axis
half_scale = self._attributes.get("half_scale", None)
if half_scale is None or half_scale <= 0.0:
half_scale = self._evaluator_class.get_default_half_scale()
object_origin = self._attributes.get("object_origin", None)
if object_origin is None and self._above_round:
# To move the mesh above the ground.
if self._prim_type != "Disk" and self._prim_type != "Plane":
if self._prim_type != "Torus":
offset = half_scale
else:
# The tube of torus is half of the half_scale.
offset = half_scale / 2.0
# Scale it to make sure it matches stage units.
units = UsdGeom.GetStageMetersPerUnit(mesh.GetPrim().GetStage())
if Gf.IsClose(units, 0.0, 1e-6):
units = 0.01
scale = 0.01 / units
offset = offset * scale
if up_axis == "Y":
object_origin = Gf.Vec3f(0.0, offset, 0.0)
else:
object_origin = Gf.Vec3f(0.0, 0.0, offset)
else:
object_origin = Gf.Vec3f(0.0)
elif isinstance(object_origin, list):
object_origin = Gf.Vec3f(*object_origin)
else:
object_origin = Gf.Vec3f(0.0)
default_translate = Gf.Vec3d(object_origin) if defaultXformPrecision == "Double" else object_origin
default_euler = Gf.Vec3d(0.0, 0.0, 0.0) if defaultXformPrecision == "Double" else Gf.Vec3f(0.0, 0.0, 0.0)
default_scale = Gf.Vec3d(1.0, 1.0, 1.0) if defaultXformPrecision == "Double" else Gf.Vec3f(1.0, 1.0, 1.0)
default_orient = (
Gf.Quatd(1.0, Gf.Vec3d(0.0, 0.0, 0.0))
if defaultXformPrecision == "Double"
else Gf.Quatf(1.0, Gf.Vec3f(0.0, 0.0, 0.0))
)
mat4_type = Sdf.ValueTypeNames.Matrix4d # there is no Matrix4f in SdfValueTypeNames
if defaultXformOpType == "Scale, Rotate, Translate":
attr_translate = prim.CreateAttribute("xformOp:translate", vec3_type, False)
attr_translate.Set(default_translate)
attr_rotate_name = "xformOp:rotate" + defaultRotationOrder
attr_rotate = prim.CreateAttribute(attr_rotate_name, vec3_type, False)
attr_rotate.Set(default_euler)
attr_scale = prim.CreateAttribute("xformOp:scale", vec3_type, False)
attr_scale.Set(default_scale)
attr_order = prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.TokenArray, False)
attr_order.Set(["xformOp:translate", attr_rotate_name, "xformOp:scale"])
if defaultXformOpType == "Scale, Orient, Translate":
attr_translate = prim.CreateAttribute("xformOp:translate", vec3_type, False)
attr_translate.Set(default_translate)
attr_rotate = prim.CreateAttribute("xformOp:orient", quat_type, False)
attr_rotate.Set(default_orient)
attr_scale = prim.CreateAttribute("xformOp:scale", vec3_type, False)
attr_scale.Set(default_scale)
attr_order = prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.TokenArray, False)
attr_order.Set(["xformOp:translate", "xformOp:orient", "xformOp:scale"])
if defaultXformOpType == "Transform":
attr_matrix = prim.CreateAttribute("xformOp:transform", mat4_type, False)
attr_matrix.Set(Gf.Matrix4d(1.0))
attr_order = prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.TokenArray, False)
attr_order.Set(["xformOp:transform"])
self._prim_path = path
if self._select_new_prim:
self._selection.set_prim_path_selected(path, True, False, True, True)
self._define_mesh(mesh)
return self._prim_path
def undo(self):
if self._prim_path:
self._stage.RemovePrim(self._prim_path)
def _define_mesh(self, mesh):
evaluator = self._evaluator_class(self._attributes)
points = []
normals = []
sts = []
point_indices = []
face_vertex_counts = []
points, normals, sts, point_indices, face_vertex_counts = evaluator.eval(**self._attributes)
units = UsdGeom.GetStageMetersPerUnit(mesh.GetPrim().GetStage())
if Gf.IsClose(units, 0.0, 1e-6):
units = 0.01
# Scale points to make sure it's already in centimeters
scale = 0.01 / units
points = [point * scale for point in points]
mesh.GetPointsAttr().Set(Vt.Vec3fArray(points))
mesh.GetNormalsAttr().Set(Vt.Vec3fArray(normals))
mesh.GetFaceVertexIndicesAttr().Set(point_indices)
mesh.GetFaceVertexCountsAttr().Set(face_vertex_counts)
mesh.SetNormalsInterpolation("faceVarying")
prim = mesh.GetPrim()
# https://github.com/PixarAnimationStudios/USD/commit/592b4d39edf5daf0534d467e970c95462a65d44b
# UsdGeom.Imageable.CreatePrimvar deprecated in v19.03 and removed in v22.08
sts_primvar = UsdGeom.PrimvarsAPI(prim).CreatePrimvar("st", Sdf.ValueTypeNames.TexCoord2fArray)
sts_primvar.SetInterpolation("faceVarying")
sts_primvar.Set(Vt.Vec2fArray(sts))
mesh.CreateSubdivisionSchemeAttr("none")
attr = prim.GetAttribute(UsdGeom.Tokens.extent)
if attr:
bounds = UsdGeom.Boundable.ComputeExtentFromPlugins(UsdGeom.Boundable(prim), Usd.TimeCode.Default())
if bounds:
attr.Set(bounds)
# set the new prim as the active selection
if self._select_new_prim:
self._selection.set_selected_prim_paths([prim.GetPath().pathString], False)
# For back compatibility.
class CreateMeshPrimCommand(CreateMeshPrimWithDefaultXformCommand):
def __init__(self, prim_type: str, **kwargs):
super().__init__(prim_type, **kwargs)
omni.kit.commands.register(CreateMeshPrimCommand)
omni.kit.commands.register(CreateMeshPrimWithDefaultXformCommand)
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/cone.py | import math
from .utils import (
get_int_setting, build_int_slider, modify_winding_order,
transform_point, inverse_u, inverse_v, generate_disk
)
from .abstract_shape_evaluator import AbstractShapeEvaluator
from pxr import Gf
from typing import List, Tuple
class ConeEvaluator(AbstractShapeEvaluator):
SETTING_OBJECT_HALF_SCALE = "/persistent/app/mesh_generator/shapes/cone/object_half_scale"
SETTING_U_SCALE = "/persistent/app/mesh_generator/shapes/cone/u_scale"
SETTING_V_SCALE = "/persistent/app/mesh_generator/shapes/cone/v_scale"
SETTING_W_SCALE = "/persistent/app/mesh_generator/shapes/cone/w_scale"
def __init__(self, attributes: dict):
super().__init__(attributes)
self.radius = 1.0
self.height = 2.0
# The sequence must be kept in the same as generate_circle_points
# in the u direction to share points with the cap.
def _eval(self, up_axis, u, v) -> Tuple[Gf.Vec3f, Gf.Vec3f]:
theta = u * 2.0 * math.pi
x = (1 - v) * math.cos(theta)
h = v * self.height - 1
if up_axis == "Y":
z = (1 - v) * math.sin(theta)
point = Gf.Vec3f(x, h, z)
dpdu = Gf.Vec3f(-2.0 * math.pi * z, 0.0, 2.0 * math.pi * x)
dpdv = Gf.Vec3f(-x / (1 - v), self.height, -z / (1 - v))
normal = dpdv ^ dpdu
normal = normal.GetNormalized()
else:
y = (1 - v) * math.sin(theta)
point = Gf.Vec3f(x, y, h)
dpdu = Gf.Vec3f(-2.0 * math.pi * y, 2.0 * math.pi * x, 0)
dpdv = Gf.Vec3f(-x / (1 - v), -y / (1 - v), self.height)
normal = dpdu ^ dpdv
normal = normal.GetNormalized()
return point, normal
def eval(self, **kwargs):
half_scale = kwargs.get("half_scale", None)
if half_scale is None or half_scale <= 0:
half_scale = self.get_default_half_scale()
num_u_verts_scale = kwargs.get("u_verts_scale", None)
if num_u_verts_scale is None or num_u_verts_scale <= 0:
num_u_verts_scale = get_int_setting(ConeEvaluator.SETTING_U_SCALE, 1)
num_v_verts_scale = kwargs.get("v_verts_scale", None)
if num_v_verts_scale is None or num_v_verts_scale <= 0:
num_v_verts_scale = get_int_setting(ConeEvaluator.SETTING_V_SCALE, 3)
num_w_verts_scale = kwargs.get("w_verts_scale", None)
if num_w_verts_scale is None or num_w_verts_scale <= 0:
num_w_verts_scale = get_int_setting(ConeEvaluator.SETTING_W_SCALE, 1)
num_u_verts_scale = max(num_u_verts_scale, 1)
num_v_verts_scale = max(num_v_verts_scale, 1)
num_w_verts_scale = max(num_w_verts_scale, 1)
up_axis = kwargs.get("up_axis", "Y")
origin = Gf.Vec3f(0.0)
u_patches = kwargs.get("u_patches", 64)
v_patches = kwargs.get("v_patches", 1)
w_patches = kwargs.get("w_patches", 1)
u_patches = u_patches * num_u_verts_scale
v_patches = v_patches * num_v_verts_scale
w_patches = w_patches * num_w_verts_scale
u_patches = max(int(u_patches), 3)
v_patches = max(int(v_patches), 1)
w_patches = max(int(w_patches), 1)
accuracy = 0.00001
u_delta = 1.0 / u_patches
v_delta = (1.0 - accuracy) / v_patches
num_u_verts = u_patches
num_v_verts = v_patches + 1
points: List[Gf.Vec3f] = []
point_normals: List[Gf.Vec3f] = []
normals: List[Gf.Vec3f] = []
sts: List[Gf.Vec2f] = []
face_indices: List[int] = []
face_vertex_counts: List[int] = []
for j in range(num_v_verts):
for i in range(num_u_verts):
u = i * u_delta
v = j * v_delta
point, normal = self._eval(up_axis, u, v)
point = transform_point(point, origin, half_scale)
points.append(point)
point_normals.append(normal)
def calc_index(i, j):
i = i if i < num_u_verts else 0
base_index = j * num_u_verts
point_index = base_index + i
return point_index
def get_uv(i, j):
u = 1 - i * u_delta if i < num_u_verts else 0.0
v = j * v_delta if j != num_v_verts - 1 else 1.0
return Gf.Vec2f(u, v)
for j in range(v_patches):
for i in range(u_patches):
vindex00 = calc_index(i, j)
vindex10 = calc_index(i + 1, j)
vindex11 = calc_index(i + 1, j + 1)
vindex01 = calc_index(i, j + 1)
uv00 = get_uv(i, j)
uv10 = get_uv(i + 1, j)
uv11 = get_uv(i + 1, j + 1)
uv01 = get_uv(i, j + 1)
# Right-hand order
if up_axis == "Y":
sts.extend([uv00, uv01, uv11, uv10])
face_indices.extend((vindex00, vindex01, vindex11, vindex10))
normals.extend(
[
point_normals[vindex00],
point_normals[vindex01],
point_normals[vindex11],
point_normals[vindex10],
]
)
else:
sts.extend([inverse_u(uv00), inverse_u(uv10), inverse_u(uv11), inverse_u(uv01)])
face_indices.extend((vindex00, vindex10, vindex11, vindex01))
normals.extend(
[
point_normals[vindex00],
point_normals[vindex10],
point_normals[vindex11],
point_normals[vindex01],
]
)
face_vertex_counts.append(4)
# Add hat
if up_axis == "Y":
bottom_center_point = Gf.Vec3f(0, -1, 0)
top_center_point = Gf.Vec3f(0, 1 - accuracy, 0)
else:
bottom_center_point = Gf.Vec3f(0, 0, -1)
top_center_point = Gf.Vec3f(0, 0, 1 - accuracy)
def add_hat(center_point, rim_points_start_index, w_patches, invert_wind_order=False):
bt_points, _, bt_sts, bt_face_indices, bt_face_vertex_counts = generate_disk(
center_point, u_patches, w_patches, origin, half_scale, up_axis
)
# Total points before adding hat
total_points = len(points)
# Skips shared points
points.extend(bt_points[num_u_verts:])
if invert_wind_order:
modify_winding_order(bt_face_vertex_counts, bt_sts)
for st in bt_sts:
sts.append(inverse_v(st))
else:
sts.extend(bt_sts)
face_vertex_counts.extend(bt_face_vertex_counts)
normals.extend([center_point] * len(bt_face_indices))
# Remapping cap points
for i, index in enumerate(bt_face_indices):
if index >= num_u_verts:
bt_face_indices[i] += total_points - num_u_verts
else:
bt_face_indices[i] += rim_points_start_index
if invert_wind_order:
modify_winding_order(bt_face_vertex_counts, bt_face_indices)
face_indices.extend(bt_face_indices)
# Add top hat to close shape
top_hat_start_index = len(points) - num_u_verts
add_hat(top_center_point, top_hat_start_index, 1)
# Add bottom hat to close shape
add_hat(bottom_center_point, 0, w_patches, True)
return points, normals, sts, face_indices, face_vertex_counts
@staticmethod
def build_setting_ui():
from omni import ui
ConeEvaluator._half_scale_slider = build_int_slider(
"Object Half Scale", ConeEvaluator.SETTING_OBJECT_HALF_SCALE, 50, 10, 1000
)
ui.Spacer(height=5)
ConeEvaluator._u_scale_slider = build_int_slider(
"U Verts Scale", ConeEvaluator.SETTING_U_SCALE, 1, 1, 10,
"Tessellation Level in Horizontal Direction"
)
ui.Spacer(height=5)
ConeEvaluator._v_scale_slider = build_int_slider(
"V Verts Scale", ConeEvaluator.SETTING_V_SCALE, 1, 1, 10, "Tessellation Level in Vertical Direction"
)
ui.Spacer(height=5)
ConeEvaluator._w_scale_slider = build_int_slider(
"W Verts Scale", ConeEvaluator.SETTING_W_SCALE, 1, 1, 10, "Tessellation Level of Bottom Cap"
)
@staticmethod
def reset_setting():
ConeEvaluator._half_scale_slider.set_value(ConeEvaluator.get_default_half_scale())
ConeEvaluator._u_scale_slider.set_value(1)
ConeEvaluator._v_scale_slider.set_value(1)
ConeEvaluator._w_scale_slider.set_value(1)
@staticmethod
def get_default_half_scale():
half_scale = get_int_setting(ConeEvaluator.SETTING_OBJECT_HALF_SCALE, 50)
return half_scale
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/__init__.py | __all__ = ["get_geometry_mesh_prim_list", "AbstractShapeEvaluator"]
import re
from .abstract_shape_evaluator import AbstractShapeEvaluator
from .cone import ConeEvaluator
from .disk import DiskEvaluator
from .cube import CubeEvaluator
from .cylinder import CylinderEvaluator
from .sphere import SphereEvaluator
from .torus import TorusEvaluator
from .plane import PlaneEvaluator
_all_evaluators = {}
def _get_all_evaluators():
global _all_evaluators
if not _all_evaluators:
evaluator_classes = list(filter(lambda x: re.search(r".+Evaluator$", x), globals().keys()))
evaluator_classes.remove(AbstractShapeEvaluator.__name__)
for evaluator in evaluator_classes:
name = re.sub(r"(.*)Evaluator$", r"\1", evaluator)
_all_evaluators[name] = globals()[f"{name}Evaluator"]
return _all_evaluators
def get_geometry_mesh_prim_list():
names = list(_get_all_evaluators().keys())
names.sort()
return names
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/abstract_shape_evaluator.py | from typing import List, Tuple
from pxr import Gf
class AbstractShapeEvaluator: # pragma: no cover
def __init__(self, attributes: dict):
self._attributes = attributes
def eval(self, **kwargs) -> Tuple[
List[Gf.Vec3f], List[Gf.Vec3f],
List[Gf.Vec2f], List[int], List[int]
]:
"""It must be implemented to return tuple
[points, normals, uvs, face_indices, face_vertex_counts], where:
* points and normals are array of Gf.Vec3f.
* uvs are array of Gf.Vec2f that represents uv coordinates.
* face_indexes are array of int that represents face indices.
* face_vertex_counts are array of int that represents vertex count per face.
* Normals and uvs must be face varying.
"""
raise NotImplementedError("Eval must be implemented for this shape.")
@staticmethod
def build_setting_ui():
pass
@staticmethod
def reset_setting():
pass
@staticmethod
def get_default_half_scale():
return 50
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/utils.py | import math
import carb.settings
from pxr import Gf
from typing import List, Tuple
from numbers import Number
def _save_settings(model, setting):
value = model.get_value_as_int()
carb.settings.get_settings().set(setting, value)
def build_int_slider(name, setting, default_value, min_value, max_value, tooltip=None):
from omni import ui
layout = ui.HStack(height=0)
with layout:
ui.Spacer(width=20, height=0)
ui.Label(name, height=0, name="text")
model = ui.IntSlider(name="text", min=min_value, max=max_value, height=0, aligment=ui.Alignment.LEFT).model
value = get_int_setting(setting, default_value)
model.set_value(value)
ui.Spacer(width=20, height=0)
model.add_value_changed_fn(lambda m: _save_settings(m, setting))
if tooltip:
layout.set_tooltip(tooltip)
return model
def inverse_u(uv) -> Gf.Vec2f:
return Gf.Vec2f(1 - uv[0], uv[1])
def inverse_v(uv) -> Gf.Vec2f:
return Gf.Vec2f(uv[0], 1 - uv[1])
def inverse_uv(uv) -> Gf.Vec2f:
return Gf.Vec2f(1 - uv[0], 1 - uv[1])
def transform_point(point: Gf.Vec3f, origin: Gf.Vec3f, half_scale: float) -> Gf.Vec3f:
return half_scale * point + origin
def generate_circle_points(
up_axis, num_points, delta, center_point=Gf.Vec3f(0.0)
) -> Tuple[List[Gf.Vec3f], List[Gf.Vec2f]]:
points: List[Gf.Vec3f] = []
point_sts: List[Gf.Vec2f] = []
for i in range(num_points):
theta = i * delta * math.pi * 2
if up_axis == "Y":
point = Gf.Vec3f(math.cos(theta), 0.0, math.sin(theta))
st = Gf.Vec2f(1.0 - point[0] / 2.0, (1.0 + point[2]) / 2.0)
else:
point = Gf.Vec3f(math.cos(theta), math.sin(theta), 0.0)
st = Gf.Vec2f((1.0 - point[0]) / 2.0, (1.0 + point[1]) / 2.0)
point_sts.append(st)
points.append(point + center_point)
return points, point_sts
def get_int_setting(key, default_value):
settings = carb.settings.get_settings()
settings.set_default(key, default_value)
value = settings.get_as_int(key)
return value
def generate_disk(
center_point: Gf.Vec3f, u_patches: int, v_patches: int,
origin: Gf.Vec3f, half_scale: float, up_axis="Y"
) -> Tuple[List[Gf.Vec3f], List[Gf.Vec3f], List[Gf.Vec2f], List[int], List[int]]:
u_delta = 1.0 / u_patches
v_delta = 1.0 / v_patches
num_u_verts = u_patches
num_v_verts = v_patches + 1
points: List[Gf.Vec3f] = []
normals: List[Gf.Vec3f] = []
sts: List[Gf.Vec2f] = []
face_indices: List[int] = []
face_vertex_counts: List[int] = []
center_point = transform_point(center_point, origin, half_scale)
circle_points, _ = generate_circle_points(up_axis, u_patches, 1.0 / u_patches)
for i in range(num_v_verts - 1):
v = v_delta * i
for j in range(num_u_verts):
point = transform_point(circle_points[j], (0, 0, 0), half_scale * (1 - v))
points.append(point + center_point)
# Center point
points.append(center_point)
def calc_index(i, j):
ii = i if i < num_u_verts else 0
base_index = j * num_u_verts
if j == num_v_verts - 1:
return base_index
else:
return base_index + ii
def get_uv(i, j):
vindex = calc_index(i, j)
# Ensure all axis to be [-1, 1]
point = (points[vindex] - origin) / half_scale
if up_axis == "Y":
st = (Gf.Vec2f(-point[0], -point[2]) + Gf.Vec2f(1, 1)) / 2
else:
st = (Gf.Vec2f(point[0], point[1]) + Gf.Vec2f(1)) / 2
return st
# Generating quads or triangles of the center
for j in range(v_patches):
for i in range(u_patches):
vindex00 = calc_index(i, j)
vindex10 = calc_index(i + 1, j)
vindex11 = calc_index(i + 1, j + 1)
vindex01 = calc_index(i, j + 1)
uv00 = get_uv(i, j)
uv10 = get_uv(i + 1, j)
uv11 = get_uv(i + 1, j + 1)
uv01 = get_uv(i, j + 1)
# Right-hand order
if up_axis == "Y":
if vindex11 == vindex01:
sts.extend([inverse_u(uv00), inverse_u(uv01), inverse_u(uv10)])
face_indices.extend((vindex00, vindex01, vindex10))
else:
sts.extend([inverse_u(uv00), inverse_u(uv01), inverse_u(uv11), inverse_u(uv10)])
face_indices.extend((vindex00, vindex01, vindex11, vindex10))
normal = Gf.Vec3f(0.0, 1.0, 0.0)
else:
if vindex11 == vindex01:
sts.extend([uv00, uv10, uv01])
face_indices.extend((vindex00, vindex10, vindex01))
else:
sts.extend([uv00, uv10, uv11, uv01])
face_indices.extend((vindex00, vindex10, vindex11, vindex01))
normal = Gf.Vec3f(0.0, 0.0, 1.0)
if vindex11 == vindex01:
face_vertex_counts.append(3)
normals.extend([normal] * 3)
else:
face_vertex_counts.append(4)
normals.extend([normal] * 4)
return points, normals, sts, face_indices, face_vertex_counts
def generate_plane(origin, half_scale, u_patches, v_patches, up_axis):
if isinstance(half_scale, Number):
[w, h, d] = half_scale, half_scale, half_scale
else:
[w, h, d] = half_scale
[x, y, z] = origin[0], origin[1], origin[2]
num_u_verts = u_patches + 1
num_v_verts = v_patches + 1
points = []
normals = []
sts = []
face_indices = []
face_vertex_counts = []
u_delta = 1.0 / u_patches
v_delta = 1.0 / v_patches
if up_axis == "Y":
w_delta = 2.0 * w * u_delta
h_delta = 2.0 * d * v_delta
bottom_left = Gf.Vec3f(x - w, y, z - d)
for i in range(num_v_verts):
for j in range(num_u_verts):
point = bottom_left + Gf.Vec3f(j * w_delta, 0.0, i * h_delta)
points.append(point)
elif up_axis == "Z":
w_delta = 2.0 * w / u_patches
h_delta = 2.0 * h / v_patches
bottom_left = Gf.Vec3f(x - w, y - h, z)
for i in range(num_v_verts):
for j in range(num_u_verts):
point = bottom_left + Gf.Vec3f(j * w_delta, i * h_delta, 0.0)
points.append(point)
else: # X up
w_delta = 2.0 * h / u_patches
h_delta = 2.0 * d / v_patches
bottom_left = Gf.Vec3f(x, y - h, z - d)
for i in range(num_v_verts):
for j in range(num_u_verts):
point = bottom_left + Gf.Vec3f(0, j * w_delta, i * h_delta)
points.append(point)
def calc_index(i, j):
ii = i if i < num_u_verts else 0
jj = j if j < num_v_verts else 0
return jj * num_u_verts + ii
def get_uv(i, j):
u = i * u_delta if i < num_u_verts else 1.0
if up_axis == "Y":
v = 1 - j * v_delta if j < num_v_verts else 0.0
else:
v = j * v_delta if j < num_v_verts else 1.0
return Gf.Vec2f(u, v)
# Generating quads
for j in range(v_patches):
for i in range(u_patches):
vindex00 = calc_index(i, j)
vindex10 = calc_index(i + 1, j)
vindex11 = calc_index(i + 1, j + 1)
vindex01 = calc_index(i, j + 1)
uv00 = get_uv(i, j)
uv10 = get_uv(i + 1, j)
uv11 = get_uv(i + 1, j + 1)
uv01 = get_uv(i, j + 1)
# Right-hand order
if up_axis == "Y":
sts.extend([uv00, uv01, uv11, uv10])
face_indices.extend((vindex00, vindex01, vindex11, vindex10))
normal = Gf.Vec3f(0.0, 1.0, 0.0)
elif up_axis == "Z":
sts.extend([uv00, uv10, uv11, uv01])
face_indices.extend((vindex00, vindex10, vindex11, vindex01))
normal = Gf.Vec3f(0.0, 0.0, 1.0)
else: # X
sts.extend([uv00, uv01, uv11, uv10])
face_indices.extend((vindex00, vindex01, vindex11, vindex10))
normal = Gf.Vec3f(0.0, 1.0, 0.0)
face_vertex_counts.append(4)
normals.extend([normal] * 4)
return points, normals, sts, face_indices, face_vertex_counts
def modify_winding_order(face_counts, face_indices):
total = 0
for count in face_counts:
if count >= 3:
start = total + 1
end = total + count
face_indices[start:end] = face_indices[start:end][::-1]
total += count
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/plane.py | from .utils import get_int_setting, build_int_slider, inverse_u, generate_plane
from .abstract_shape_evaluator import AbstractShapeEvaluator
from pxr import Gf
class PlaneEvaluator(AbstractShapeEvaluator):
SETTING_OBJECT_HALF_SCALE = "/persistent/app/mesh_generator/shapes/plane/object_half_scale"
SETTING_U_SCALE = "/persistent/app/mesh_generator/shapes/plane/u_scale"
SETTING_V_SCALE = "/persistent/app/mesh_generator/shapes/plane/v_scale"
def __init__(self, attributes: dict):
super().__init__(attributes)
def eval(self, **kwargs):
half_scale = kwargs.get("half_scale", None)
if half_scale is None or half_scale <= 0:
half_scale = self.get_default_half_scale()
num_u_verts_scale = kwargs.get("u_verts_scale", None)
if num_u_verts_scale is None or num_u_verts_scale <= 0:
num_u_verts_scale = get_int_setting(PlaneEvaluator.SETTING_U_SCALE, 1)
num_v_verts_scale = kwargs.get("v_verts_scale", None)
if num_v_verts_scale is None or num_v_verts_scale <= 0:
num_v_verts_scale = get_int_setting(PlaneEvaluator.SETTING_V_SCALE, 1)
up_axis = kwargs.get("up_axis", "Y")
origin = Gf.Vec3f(0.0)
half_scale = [half_scale, half_scale, half_scale]
u_patches = kwargs.get("u_patches", 1)
v_patches = kwargs.get("v_patches", 1)
u_patches = u_patches * num_u_verts_scale
v_patches = v_patches * num_v_verts_scale
u_patches = max(int(u_patches), 1)
v_patches = max(int(v_patches), 1)
return generate_plane(origin, half_scale, u_patches, v_patches, up_axis)
@staticmethod
def build_setting_ui():
from omni import ui
PlaneEvaluator._half_scale_slider = build_int_slider(
"Object Half Scale", PlaneEvaluator.SETTING_OBJECT_HALF_SCALE, 50, 10, 1000
)
ui.Spacer(height=5)
PlaneEvaluator._u_scale_slider = build_int_slider("U Verts Scale", PlaneEvaluator.SETTING_U_SCALE, 1, 1, 10)
ui.Spacer(height=5)
PlaneEvaluator._v_scale_slider = build_int_slider("V Verts Scale", PlaneEvaluator.SETTING_V_SCALE, 1, 1, 10)
@staticmethod
def reset_setting():
PlaneEvaluator._half_scale_slider.set_value(PlaneEvaluator.get_default_half_scale())
PlaneEvaluator._u_scale_slider.set_value(1)
PlaneEvaluator._v_scale_slider.set_value(1)
@staticmethod
def get_default_half_scale():
half_scale = get_int_setting(PlaneEvaluator.SETTING_OBJECT_HALF_SCALE, 50)
return half_scale
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/cylinder.py | from .utils import (
get_int_setting, build_int_slider, modify_winding_order,
generate_circle_points, transform_point, inverse_u, inverse_v, generate_disk
)
from .abstract_shape_evaluator import AbstractShapeEvaluator
from pxr import Gf
from typing import List
class CylinderEvaluator(AbstractShapeEvaluator):
SETTING_OBJECT_HALF_SCALE = "/persistent/app/mesh_generator/shapes/cylinder/object_half_scale"
SETTING_U_SCALE = "/persistent/app/mesh_generator/shapes/cylinder/u_scale"
SETTING_V_SCALE = "/persistent/app/mesh_generator/shapes/cylinder/v_scale"
SETTING_W_SCALE = "/persistent/app/mesh_generator/shapes/cylinder/w_scale"
def __init__(self, attributes: dict):
super().__init__(attributes)
def eval(self, **kwargs):
half_scale = kwargs.get("half_scale", None)
if half_scale is None or half_scale <= 0:
half_scale = self.get_default_half_scale()
num_u_verts_scale = kwargs.get("u_verts_scale", None)
if num_u_verts_scale is None or num_u_verts_scale <= 0:
num_u_verts_scale = get_int_setting(CylinderEvaluator.SETTING_U_SCALE, 1)
num_v_verts_scale = kwargs.get("v_verts_scale", None)
if num_v_verts_scale is None or num_v_verts_scale <= 0:
num_v_verts_scale = get_int_setting(CylinderEvaluator.SETTING_V_SCALE, 1)
num_w_verts_scale = kwargs.get("w_verts_scale", None)
if num_w_verts_scale is None or num_w_verts_scale <= 0:
num_w_verts_scale = get_int_setting(CylinderEvaluator.SETTING_W_SCALE, 1)
up_axis = kwargs.get("up_axis", "Y")
origin = Gf.Vec3f(0.0)
u_patches = kwargs.get("u_patches", 32)
v_patches = kwargs.get("v_patches", 1)
w_patches = kwargs.get("w_patches", 1)
u_patches = u_patches * num_u_verts_scale
v_patches = v_patches * num_v_verts_scale
w_patches = w_patches * num_w_verts_scale
u_patches = max(int(u_patches), 3)
v_patches = max(int(v_patches), 1)
w_patches = max(int(w_patches), 1)
u_delta = 1.0 / (u_patches if u_patches != 0 else 1)
v_delta = 1.0 / (v_patches if v_patches != 0 else 1)
# open meshes need an extra vert on the end to create the last patch
# closed meshes reuse the vert at index 0 to close their final patch
num_u_verts = u_patches
num_v_verts = v_patches + 1
points: List[Gf.Vec3f] = []
normals: List[Gf.Vec3f] = []
sts: List[Gf.Vec2f] = []
face_indices: List[int] = []
face_vertex_counts: List[int] = []
# generate circle points
circle_points, _ = generate_circle_points(up_axis, num_u_verts, u_delta)
for j in range(num_v_verts):
for i in range(num_u_verts):
v = j * v_delta
point = circle_points[i]
if up_axis == "Y":
point[1] = 2.0 * (v - 0.5)
else:
point[2] = 2.0 * (v - 0.5)
point = transform_point(point, origin, half_scale)
points.append(point)
def calc_index(i, j):
ii = i if i < num_u_verts else 0
jj = j if j < num_v_verts else 0
return jj * num_u_verts + ii
def get_uv(i, j):
u = 1 - i * u_delta if i < num_u_verts else 0.0
v = j * v_delta if j < num_v_verts else 1.0
return Gf.Vec2f(u, v)
for j in range(v_patches):
for i in range(u_patches):
vindex00 = calc_index(i, j)
vindex10 = calc_index(i + 1, j)
vindex11 = calc_index(i + 1, j + 1)
vindex01 = calc_index(i, j + 1)
uv00 = get_uv(i, j)
uv10 = get_uv(i + 1, j)
uv11 = get_uv(i + 1, j + 1)
uv01 = get_uv(i, j + 1)
p00 = points[vindex00]
p10 = points[vindex10]
p11 = points[vindex11]
p01 = points[vindex01]
# Right-hand order
if up_axis == "Y":
sts.extend([uv00, uv01, uv11, uv10])
face_indices.extend((vindex00, vindex01, vindex11, vindex10))
normals.append(Gf.Vec3f(p00[0], 0, p00[2]))
normals.append(Gf.Vec3f(p01[0], 0, p01[2]))
normals.append(Gf.Vec3f(p11[0], 0, p11[2]))
normals.append(Gf.Vec3f(p10[0], 0, p10[2]))
else:
sts.extend([inverse_u(uv00), inverse_u(uv10), inverse_u(uv11), inverse_u(uv01)])
face_indices.extend((vindex00, vindex10, vindex11, vindex01))
normals.append(Gf.Vec3f(p00[0], p00[1], 0))
normals.append(Gf.Vec3f(p10[0], p10[1], 0))
normals.append(Gf.Vec3f(p11[0], p11[1], 0))
normals.append(Gf.Vec3f(p01[0], p01[1], 0))
face_vertex_counts.append(4)
# Add hat
if up_axis == "Y":
bottom_center_point = Gf.Vec3f(0, -1, 0)
top_center_point = Gf.Vec3f(0, 1, 0)
else:
bottom_center_point = Gf.Vec3f(0, 0, -1)
top_center_point = Gf.Vec3f(0, 0, 1)
def add_hat(center_point, rim_points_start_index, w_patches, invert_wind_order=False):
bt_points, _, bt_sts, bt_face_indices, bt_face_vertex_counts = generate_disk(
center_point, u_patches, w_patches, origin, half_scale, up_axis
)
total_points = len(points)
# Skips shared points
points.extend(bt_points[num_u_verts:])
if invert_wind_order:
modify_winding_order(bt_face_vertex_counts, bt_sts)
for st in bt_sts:
sts.append(inverse_v(st))
else:
sts.extend(bt_sts)
face_vertex_counts.extend(bt_face_vertex_counts)
normals.extend([center_point] * len(bt_face_indices))
# Remapping cap points
for i, index in enumerate(bt_face_indices):
if index >= num_u_verts:
bt_face_indices[i] += total_points - num_u_verts
else:
bt_face_indices[i] += rim_points_start_index
if invert_wind_order:
modify_winding_order(bt_face_vertex_counts, bt_face_indices)
face_indices.extend(bt_face_indices)
top_hat_start_index = len(points) - num_u_verts
# Add bottom hat to close shape
add_hat(bottom_center_point, 0, w_patches, True)
# Add top hat to close shape
add_hat(top_center_point, top_hat_start_index, w_patches)
return points, normals, sts, face_indices, face_vertex_counts
@staticmethod
def build_setting_ui():
from omni import ui
CylinderEvaluator._half_scale_slider = build_int_slider(
"Object Half Scale", CylinderEvaluator.SETTING_OBJECT_HALF_SCALE, 50, 10, 1000
)
ui.Spacer(height=5)
CylinderEvaluator._u_scale_slider = build_int_slider(
"U Verts Scale", CylinderEvaluator.SETTING_U_SCALE, 1, 1, 10,
"Tessellation Level in Horizontal Direction"
)
ui.Spacer(height=5)
CylinderEvaluator._v_scale_slider = build_int_slider(
"V Verts Scale", CylinderEvaluator.SETTING_V_SCALE, 1, 1, 10,
"Tessellation Level in Vertical Direction"
)
ui.Spacer(height=5)
CylinderEvaluator._w_scale_slider = build_int_slider(
"W Verts Scale", CylinderEvaluator.SETTING_W_SCALE, 1, 1, 10,
"Tessellation Level of Bottom and Top Caps"
)
@staticmethod
def reset_setting():
CylinderEvaluator._half_scale_slider.set_value(CylinderEvaluator.get_default_half_scale())
CylinderEvaluator._u_scale_slider.set_value(1)
CylinderEvaluator._v_scale_slider.set_value(1)
CylinderEvaluator._w_scale_slider.set_value(1)
@staticmethod
def get_default_half_scale():
half_scale = get_int_setting(CylinderEvaluator.SETTING_OBJECT_HALF_SCALE, 50)
return half_scale
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/sphere.py | import math
from .utils import get_int_setting, build_int_slider
from .utils import transform_point
from .abstract_shape_evaluator import AbstractShapeEvaluator
from pxr import Gf
class SphereEvaluator(AbstractShapeEvaluator):
SETTING_OBJECT_HALF_SCALE = "/persistent/app/mesh_generator/shapes/shpere/object_half_scale"
SETTING_U_SCALE = "/persistent/app/mesh_generator/shapes/sphere/u_scale"
SETTING_V_SCALE = "/persistent/app/mesh_generator/shapes/sphere/v_scale"
def __init__(self, attributes: dict):
super().__init__(attributes)
def _eval(self, u, v, up_axis):
theta = u * 2.0 * math.pi
phi = (v - 0.5) * math.pi
cos_phi = math.cos(phi)
if up_axis == "Y":
x = cos_phi * math.cos(theta)
y = math.sin(phi)
z = cos_phi * math.sin(theta)
else:
x = cos_phi * math.cos(theta)
y = cos_phi * math.sin(theta)
z = math.sin(phi)
return Gf.Vec3f(x, y, z)
def eval(self, **kwargs):
half_scale = kwargs.get("half_scale", None)
if half_scale is None or half_scale <= 0:
half_scale = self.get_default_half_scale()
num_u_verts_scale = kwargs.get("u_verts_scale", None)
if num_u_verts_scale is None or num_u_verts_scale <= 0:
num_u_verts_scale = get_int_setting(SphereEvaluator.SETTING_U_SCALE, 1)
num_v_verts_scale = kwargs.get("v_verts_scale", None)
if num_v_verts_scale is None or num_v_verts_scale <= 0:
num_v_verts_scale = get_int_setting(SphereEvaluator.SETTING_V_SCALE, 1)
up_axis = kwargs.get("up_axis", "Y")
origin = Gf.Vec3f(0.0)
u_patches = kwargs.get("u_patches", 32)
v_patches = kwargs.get("v_patches", 16)
num_u_verts_scale = max(num_u_verts_scale, 1)
num_v_verts_scale = max(num_v_verts_scale, 1)
u_patches = u_patches * num_u_verts_scale
v_patches = v_patches * num_v_verts_scale
u_patches = max(int(u_patches), 3)
v_patches = max(int(v_patches), 2)
u_delta = 1.0 / u_patches
v_delta = 1.0 / v_patches
num_u_verts = u_patches
num_v_verts = v_patches + 1
points = []
normals = []
sts = []
face_indices = []
face_vertex_counts = []
if up_axis == "Y":
bottom_point = Gf.Vec3f(0.0, -1.0, 0.0)
else:
bottom_point = Gf.Vec3f(0.0, 0.0, -1.0)
point = transform_point(bottom_point, origin, half_scale)
points.append(point)
for j in range(1, num_v_verts - 1):
v = j * v_delta
for i in range(num_u_verts):
u = i * u_delta
point = self._eval(u, v, up_axis)
point = transform_point(point, origin, half_scale)
points.append(Gf.Vec3f(point))
if up_axis == "Y":
top_point = Gf.Vec3f(0.0, 1.0, 0.0)
else:
top_point = Gf.Vec3f(0.0, 0.0, 1.0)
point = transform_point(top_point, origin, half_scale)
points.append(point)
def calc_index(i, j):
if j == 0:
return 0
elif j == num_v_verts - 1:
return len(points) - 1
else:
i = i if i < num_u_verts else 0
return (j - 1) * num_u_verts + i + 1
def get_uv(i, j):
if up_axis == "Y":
u = 1 - i * u_delta
v = j * v_delta
else:
u = i * u_delta
v = j * v_delta
return Gf.Vec2f(u, v)
# Generate body
for j in range(v_patches):
for i in range(u_patches):
# Index 0 is the bottom hat point
vindex00 = calc_index(i, j)
vindex10 = calc_index(i + 1, j)
vindex11 = calc_index(i + 1, j + 1)
vindex01 = calc_index(i, j + 1)
st00 = get_uv(i, j)
st10 = get_uv(i + 1, j)
st11 = get_uv(i + 1, j + 1)
st01 = get_uv(i, j + 1)
p0 = points[vindex00]
p1 = points[vindex10]
p2 = points[vindex11]
p3 = points[vindex01]
# Use face varying uv
if up_axis == "Y":
if vindex11 == vindex01:
sts.extend([st00, st01, st10])
face_indices.extend((vindex00, vindex01, vindex10))
face_vertex_counts.append(3)
normals.extend([p0, p3, p1])
elif vindex00 == vindex10:
sts.extend([st00, st01, st11])
face_indices.extend((vindex00, vindex01, vindex11))
face_vertex_counts.append(3)
normals.extend([p0, p3, p2])
else:
sts.extend([st00, st01, st11, st10])
face_indices.extend((vindex00, vindex01, vindex11, vindex10))
face_vertex_counts.append(4)
normals.extend([p0, p3, p2, p1])
else:
if vindex11 == vindex01:
sts.extend([st00, st10, st01])
face_indices.extend((vindex00, vindex10, vindex01))
face_vertex_counts.append(3)
normals.extend([p0, p1, p3])
elif vindex00 == vindex10:
sts.extend([st00, st11, st01])
face_indices.extend((vindex00, vindex11, vindex01))
face_vertex_counts.append(3)
normals.extend([p0, p2, p3])
else:
sts.extend([st00, st10, st11, st01])
face_indices.extend((vindex00, vindex10, vindex11, vindex01))
face_vertex_counts.append(4)
normals.extend([p0, p1, p2, p3])
return points, normals, sts, face_indices, face_vertex_counts
@staticmethod
def build_setting_ui():
from omni import ui
SphereEvaluator._half_scale_slider = build_int_slider(
"Object Half Scale", SphereEvaluator.SETTING_OBJECT_HALF_SCALE, 50, 10, 1000
)
ui.Spacer(height=5)
SphereEvaluator._u_scale_slider = build_int_slider(
"U Verts Scale", SphereEvaluator.SETTING_U_SCALE, 1, 1, 10
)
ui.Spacer(height=5)
SphereEvaluator._v_scale_slider = build_int_slider(
"V Verts Scale", SphereEvaluator.SETTING_V_SCALE, 1, 1, 10
)
@staticmethod
def reset_setting():
SphereEvaluator._half_scale_slider.set_value(SphereEvaluator.get_default_half_scale())
SphereEvaluator._u_scale_slider.set_value(1)
SphereEvaluator._v_scale_slider.set_value(1)
@staticmethod
def get_default_half_scale():
half_scale = get_int_setting(SphereEvaluator.SETTING_OBJECT_HALF_SCALE, 50)
return half_scale
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/cube.py | from .utils import get_int_setting, build_int_slider, generate_plane, modify_winding_order
from .abstract_shape_evaluator import AbstractShapeEvaluator
from pxr import Gf
class CubeEvaluator(AbstractShapeEvaluator):
SETTING_OBJECT_HALF_SCALE = "/persistent/app/mesh_generator/shapes/cube/object_half_scale"
SETTING_U_SCALE = "/persistent/app/mesh_generator/shapes/cube/u_scale"
SETTING_V_SCALE = "/persistent/app/mesh_generator/shapes/cube/v_scale"
SETTING_W_SCALE = "/persistent/app/mesh_generator/shapes/cube/w_scale"
def __init__(self, attributes: dict):
super().__init__(attributes)
def eval(self, **kwargs):
half_scale = kwargs.get("half_scale", None)
if half_scale is None or half_scale <= 0:
half_scale = self.get_default_half_scale()
num_u_verts_scale = kwargs.get("u_verts_scale", None)
if num_u_verts_scale is None or num_u_verts_scale <= 0:
num_u_verts_scale = get_int_setting(CubeEvaluator.SETTING_U_SCALE, 1)
num_v_verts_scale = kwargs.get("v_verts_scale", None)
if num_v_verts_scale is None or num_v_verts_scale <= 0:
num_v_verts_scale = get_int_setting(CubeEvaluator.SETTING_V_SCALE, 1)
num_w_verts_scale = kwargs.get("w_verts_scale", None)
if num_w_verts_scale is None or num_w_verts_scale <= 0:
num_w_verts_scale = get_int_setting(CubeEvaluator.SETTING_W_SCALE, 1)
up_axis = kwargs.get("up_axis", "Y")
origin = Gf.Vec3f(0.0)
u_patches = kwargs.get("u_patches", 1)
v_patches = kwargs.get("v_patches", 1)
w_patches = kwargs.get("w_patches", 1)
u_patches = u_patches * num_u_verts_scale
v_patches = v_patches * num_v_verts_scale
w_patches = w_patches * num_w_verts_scale
u_patches = max(int(u_patches), 1)
v_patches = max(int(v_patches), 1)
w_patches = max(int(w_patches), 1)
[x, y, z] = origin
(
xy_plane_points, xy_plane_normals, xy_plane_sts,
xy_plane_face_indices, xy_plane_face_vertex_counts
) = generate_plane(Gf.Vec3f(x, y, z + half_scale), half_scale, u_patches, v_patches, "Z")
(
xz_plane_points, xz_plane_normals, xz_plane_sts,
xz_plane_face_indices, xz_plane_face_vertex_counts
) = generate_plane(Gf.Vec3f(x, y - half_scale, z), half_scale, u_patches, w_patches, "Y")
(
yz_plane_points, yz_plane_normals, yz_plane_sts,
yz_plane_face_indices, yz_plane_face_vertex_counts
) = generate_plane(Gf.Vec3f(x - half_scale, y, z), half_scale, v_patches, w_patches, "X")
points = []
normals = []
sts = []
face_indices = []
face_vertex_counts = []
# XY planes
points.extend(xy_plane_points)
normals.extend([Gf.Vec3f(0, 0, 1)] * len(xy_plane_normals))
sts.extend(xy_plane_sts)
face_indices.extend(xy_plane_face_indices)
face_vertex_counts.extend(xy_plane_face_vertex_counts)
total_indices = len(points)
plane_points = [point + Gf.Vec3f(0, 0, -2.0 * half_scale) for point in xy_plane_points]
points.extend(plane_points)
normals.extend([Gf.Vec3f(0, 0, -1)] * len(xy_plane_normals))
modify_winding_order(xy_plane_face_vertex_counts, xy_plane_sts)
plane_sts = [Gf.Vec2f(1 - st[0], st[1]) for st in xy_plane_sts]
sts.extend(plane_sts)
plane_face_indices = [index + total_indices for index in xy_plane_face_indices]
modify_winding_order(xy_plane_face_vertex_counts, plane_face_indices)
face_indices.extend(plane_face_indices)
face_vertex_counts.extend(xy_plane_face_vertex_counts)
# xz planes
total_indices = len(points)
plane_points = [point + Gf.Vec3f(0, 2.0 * half_scale, 0) for point in xz_plane_points]
points.extend(plane_points)
normals.extend([Gf.Vec3f(0, 1, 0)] * len(xz_plane_normals))
sts.extend(xz_plane_sts)
plane_face_indices = [index + total_indices for index in xz_plane_face_indices]
face_indices.extend(plane_face_indices)
face_vertex_counts.extend(xz_plane_face_vertex_counts)
total_indices = len(points)
points.extend(xz_plane_points)
normals.extend([Gf.Vec3f(0, -1, 0)] * len(xz_plane_normals))
modify_winding_order(xz_plane_face_vertex_counts, xz_plane_sts)
plane_sts = [Gf.Vec2f(st[0], 1 - st[1]) for st in xz_plane_sts]
sts.extend(plane_sts)
plane_face_indices = [index + total_indices for index in xz_plane_face_indices]
modify_winding_order(xz_plane_face_vertex_counts, plane_face_indices)
face_indices.extend(plane_face_indices)
face_vertex_counts.extend(xz_plane_face_vertex_counts)
# yz planes
total_indices = len(points)
points.extend(yz_plane_points)
normals.extend([Gf.Vec3f(-1, 0, 0)] * len(yz_plane_normals))
plane_sts = [Gf.Vec2f(st[1], st[0]) for st in yz_plane_sts]
sts.extend(plane_sts)
plane_face_indices = [index + total_indices for index in yz_plane_face_indices]
face_indices.extend(plane_face_indices)
face_vertex_counts.extend(yz_plane_face_vertex_counts)
total_indices = len(points)
plane_points = [point + Gf.Vec3f(2.0 * half_scale, 0, 0) for point in yz_plane_points]
points.extend(plane_points)
normals.extend([Gf.Vec3f(1, 0, 0)] * len(yz_plane_normals))
modify_winding_order(yz_plane_face_vertex_counts, yz_plane_sts)
plane_sts = [Gf.Vec2f(1 - st[1], st[0]) for st in yz_plane_sts]
sts.extend(plane_sts)
plane_face_indices = [index + total_indices for index in yz_plane_face_indices]
modify_winding_order(yz_plane_face_vertex_counts, plane_face_indices)
face_indices.extend(plane_face_indices)
face_vertex_counts.extend(yz_plane_face_vertex_counts)
# Welds the edges of cube
keep = [True] * len(points)
index_remap = [-1] * len(points)
keep_points = []
for i in range(0, len(points)):
if not keep[i]:
continue
keep_points.append(points[i])
index_remap[i] = len(keep_points) - 1
for j in range(i + 1, len(points)):
if Gf.IsClose(points[j], points[i], 1e-6):
keep[j] = False
index_remap[j] = len(keep_points) - 1
for i in range(len(face_indices)):
face_indices[i] = index_remap[face_indices[i]]
return keep_points, normals, sts, face_indices, face_vertex_counts
@staticmethod
def build_setting_ui():
from omni import ui
CubeEvaluator._half_scale_slider = build_int_slider(
"Object Half Scale", CubeEvaluator.SETTING_OBJECT_HALF_SCALE, 50, 10, 1000
)
ui.Spacer(height=5)
CubeEvaluator._u_scale_slider = build_int_slider(
"U Verts Scale", CubeEvaluator.SETTING_U_SCALE, 1, 1, 10,
"Tessellation Level along X Axis"
)
ui.Spacer(height=5)
CubeEvaluator._v_scale_slider = build_int_slider(
"V Verts Scale", CubeEvaluator.SETTING_V_SCALE, 1, 1, 10,
"Tessellation Level along Y Axis"
)
ui.Spacer(height=5)
CubeEvaluator._w_scale_slider = build_int_slider(
"W Verts Scale", CubeEvaluator.SETTING_W_SCALE, 1, 1, 10,
"Tessellation Level along Z Axis"
)
@staticmethod
def reset_setting():
CubeEvaluator._half_scale_slider.set_value(CubeEvaluator.get_default_half_scale())
CubeEvaluator._u_scale_slider.set_value(1)
CubeEvaluator._v_scale_slider.set_value(1)
CubeEvaluator._w_scale_slider.set_value(1)
@staticmethod
def get_default_half_scale():
half_scale = get_int_setting(CubeEvaluator.SETTING_OBJECT_HALF_SCALE, 50)
return half_scale
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/disk.py | from .utils import get_int_setting, build_int_slider
from .utils import generate_disk
from .abstract_shape_evaluator import AbstractShapeEvaluator
from pxr import Gf
class DiskEvaluator(AbstractShapeEvaluator):
SETTING_OBJECT_HALF_SCALE = "/persistent/app/mesh_generator/shapes/disk/object_half_scale"
SETTING_U_SCALE = "/persistent/app/mesh_generator/shapes/disk/u_scale"
SETTING_V_SCALE = "/persistent/app/mesh_generator/shapes/disk/v_scale"
def __init__(self, attributes: dict):
super().__init__(attributes)
def eval(self, **kwargs):
half_scale = kwargs.get("half_scale", None)
if half_scale is None or half_scale <= 0:
half_scale = self.get_default_half_scale()
num_u_verts_scale = kwargs.get("u_verts_scale", None)
if num_u_verts_scale is None or num_u_verts_scale <= 0:
num_u_verts_scale = get_int_setting(DiskEvaluator.SETTING_U_SCALE, 1)
num_v_verts_scale = kwargs.get("v_verts_scale", None)
if num_v_verts_scale is None or num_v_verts_scale <= 0:
num_v_verts_scale = get_int_setting(DiskEvaluator.SETTING_V_SCALE, 1)
up_axis = kwargs.get("up_axis", "Y")
origin = Gf.Vec3f(0.0)
# Disk will be approximated by quads composed from inner circle
# to outer circle. The parameter `u_patches` means the segments
# of circle. And v_patches means the number of segments (circles)
# in radius direction.
u_patches = kwargs.get("u_patches", 32)
v_patches = kwargs.get("v_patches", 1)
num_u_verts_scale = max(num_u_verts_scale, 1)
num_v_verts_scale = max(num_v_verts_scale, 1)
u_patches = u_patches * num_u_verts_scale
v_patches = v_patches * num_v_verts_scale
u_patches = max(int(u_patches), 3)
v_patches = max(int(v_patches), 1)
center_point = Gf.Vec3f(0.0)
return generate_disk(center_point, u_patches, v_patches, origin, half_scale, up_axis)
@staticmethod
def build_setting_ui():
from omni import ui
DiskEvaluator._half_scale_slider = build_int_slider(
"Object Half Scale", DiskEvaluator.SETTING_OBJECT_HALF_SCALE, 50, 10, 1000
)
ui.Spacer(height=5)
DiskEvaluator._u_scale_slider = build_int_slider("U Verts Scale", DiskEvaluator.SETTING_U_SCALE, 1, 1, 10)
ui.Spacer(height=5)
DiskEvaluator._v_scale_slider = build_int_slider("V Verts Scale", DiskEvaluator.SETTING_V_SCALE, 1, 1, 10)
@staticmethod
def reset_setting():
DiskEvaluator._half_scale_slider.set_value(DiskEvaluator.get_default_half_scale())
DiskEvaluator._u_scale_slider.set_value(1)
DiskEvaluator._v_scale_slider.set_value(1)
@staticmethod
def get_default_half_scale():
half_scale = get_int_setting(DiskEvaluator.SETTING_OBJECT_HALF_SCALE, 50)
return half_scale
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/evaluators/torus.py | import math
from .utils import get_int_setting, build_int_slider
from .utils import transform_point
from .abstract_shape_evaluator import AbstractShapeEvaluator
from pxr import Gf
class TorusEvaluator(AbstractShapeEvaluator):
SETTING_OBJECT_HALF_SCALE = "/persistent/app/mesh_generator/shapes/torus/object_half_scale"
SETTING_U_SCALE = "/persistent/app/mesh_generator/shapes/torus/u_scale"
SETTING_V_SCALE = "/persistent/app/mesh_generator/shapes/torus/v_scale"
def __init__(self, attributes: dict):
super().__init__(attributes)
self.hole_radius = 1.0
self.tube_radius = 0.5
def _eval(self, up_axis, u, v):
theta = u * 2.0 * math.pi
phi = v * 2.0 * math.pi - 0.5 * math.pi
rad_cos_phi = self.tube_radius * math.cos(phi)
cos_theta = math.cos(theta)
sin_phi = math.sin(phi)
sin_theta = math.sin(theta)
x = (self.hole_radius + rad_cos_phi) * cos_theta
nx = self.hole_radius * cos_theta
if up_axis == "Y":
y = self.tube_radius * sin_phi
z = (self.hole_radius + rad_cos_phi) * sin_theta
ny = 0
nz = self.hole_radius * sin_theta
else:
y = (self.hole_radius + rad_cos_phi) * sin_theta
z = self.tube_radius * sin_phi
ny = self.hole_radius * sin_theta
nz = 0
point = Gf.Vec3f(x, y, z)
# construct the normal by creating a vector from the center point of the tube to the surface
normal = Gf.Vec3f(x - nx, y - ny, z - nz)
normal = normal.GetNormalized()
return point, normal
def eval(self, **kwargs):
half_scale = kwargs.get("half_scale", None)
if half_scale is None or half_scale <= 0:
half_scale = self.get_default_half_scale()
num_u_verts_scale = kwargs.get("u_verts_scale", None)
if num_u_verts_scale is None or num_u_verts_scale <= 0:
num_u_verts_scale = get_int_setting(TorusEvaluator.SETTING_U_SCALE, 1)
num_v_verts_scale = kwargs.get("v_verts_scale", None)
if num_v_verts_scale is None or num_v_verts_scale <= 0:
num_v_verts_scale = get_int_setting(TorusEvaluator.SETTING_V_SCALE, 1)
up_axis = kwargs.get("up_axis", "Y")
origin = Gf.Vec3f(0.0)
u_patches = kwargs.get("u_patches", 32)
v_patches = kwargs.get("v_patches", 32)
num_u_verts_scale = max(num_u_verts_scale, 1)
num_v_verts_scale = max(num_v_verts_scale, 1)
u_patches = u_patches * num_u_verts_scale
v_patches = v_patches * num_v_verts_scale
u_patches = max(int(u_patches), 3)
v_patches = max(int(v_patches), 3)
u_delta = 1.0 / u_patches
v_delta = 1.0 / v_patches
num_u_verts = u_patches
num_v_verts = v_patches
points = []
point_normals = []
sts = []
face_indices = []
face_vertex_counts = []
for j in range(num_v_verts):
v = j * v_delta
for i in range(num_u_verts):
u = i * u_delta
point, point_normal = self._eval(up_axis, u, v)
point = transform_point(point, origin, half_scale)
points.append(point)
point_normals.append(point_normal)
def calc_index(i, j):
ii = i if i < num_u_verts else 0
jj = j if j < num_v_verts else 0
return jj * num_u_verts + ii
def get_uv(i, j):
if up_axis == "Y":
u = 1 - i * u_delta if i < num_u_verts else 0.0
else:
u = i * u_delta if i < num_u_verts else 1.0
v = j * v_delta if j < num_v_verts else 1.0
return Gf.Vec2f(u, v)
# Last patch from last vert to first vert to close shape
normals = []
for j in range(v_patches):
for i in range(u_patches):
vindex00 = calc_index(i, j)
vindex10 = calc_index(i + 1, j)
vindex11 = calc_index(i + 1, j + 1)
vindex01 = calc_index(i, j + 1)
# Use face varying uv
face_vertex_counts.append(4)
if up_axis == "Y":
sts.append(get_uv(i, j))
sts.append(get_uv(i, j + 1))
sts.append(get_uv(i + 1, j + 1))
sts.append(get_uv(i + 1, j))
face_indices.extend((vindex00, vindex01, vindex11, vindex10))
normals.extend(
[
point_normals[vindex00],
point_normals[vindex01],
point_normals[vindex11],
point_normals[vindex10],
]
)
else:
sts.append(get_uv(i, j))
sts.append(get_uv(i + 1, j))
sts.append(get_uv(i + 1, j + 1))
sts.append(get_uv(i, j + 1))
face_indices.extend((vindex00, vindex10, vindex11, vindex01))
normals.extend(
[
point_normals[vindex00],
point_normals[vindex10],
point_normals[vindex11],
point_normals[vindex01],
]
)
return points, normals, sts, face_indices, face_vertex_counts
@staticmethod
def build_setting_ui():
from omni import ui
TorusEvaluator._half_scale_slider = build_int_slider(
"Object Half Scale", TorusEvaluator.SETTING_OBJECT_HALF_SCALE, 50, 10, 1000
)
ui.Spacer(height=5)
TorusEvaluator._u_scale_slider = build_int_slider("U Verts Scale", TorusEvaluator.SETTING_U_SCALE, 1, 1, 10)
ui.Spacer(height=5)
TorusEvaluator._v_scale_slider = build_int_slider("V Verts Scale", TorusEvaluator.SETTING_V_SCALE, 1, 1, 10)
@staticmethod
def reset_setting():
TorusEvaluator._half_scale_slider.set_value(TorusEvaluator.get_default_half_scale())
TorusEvaluator._u_scale_slider.set_value(1)
TorusEvaluator._v_scale_slider.set_value(1)
@staticmethod
def get_default_half_scale():
half_scale = get_int_setting(TorusEvaluator.SETTING_OBJECT_HALF_SCALE, 50)
return half_scale
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/tests/__init__.py | from .test_mesh_prims import *
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/omni/kit/primitive/mesh/tests/test_mesh_prims.py | import omni.kit.test
import omni.usd
import omni.kit.app
import omni.kit.primitive.mesh
import omni.kit.commands
import omni.kit.actions.core
from pathlib import Path
from pxr import Gf, Kind, Sdf, Usd, UsdGeom, UsdShade
EXTENSION_FOLDER_PATH = Path(omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__))
TEST_DATA_PATH = EXTENSION_FOLDER_PATH.joinpath("data/tests")
# NOTE: those tests belong to omni.kit.primitive.mesh extension.
class TestMeshPrims(omni.kit.test.AsyncTestCase):
async def test_tessellation_params(self):
test_data = {
"Cube": [
{
"params": {"half_scale": 100, "u_verts_scale": 2, "v_verts_scale": 1, "w_verts_scale": 1},
},
{
"params": {"half_scale": 200, "u_verts_scale": 2, "v_verts_scale": 2, "w_verts_scale": 1},
},
{
"params": {"half_scale": 400, "u_verts_scale": 2, "v_verts_scale": 2, "w_verts_scale": 2},
},
{
"params": {
"half_scale": 100, "u_verts_scale": 1, "v_verts_scale": 1, "w_verts_scale": 1,
"u_patches": 2, "v_patches": 2, "w_patches": 2
},
},
],
"Cone": [
{
"params": {"half_scale": 100, "u_verts_scale": 2, "v_verts_scale": 1, "w_verts_scale": 1},
},
{
"params": {"half_scale": 200, "u_verts_scale": 2, "v_verts_scale": 2, "w_verts_scale": 1},
},
{
"params": {"half_scale": 400, "u_verts_scale": 2, "v_verts_scale": 2, "w_verts_scale": 2},
},
{
"params": {
"half_scale": 100, "u_verts_scale": 1, "v_verts_scale": 1, "w_verts_scale": 1,
"u_patches": 2, "v_patches": 2, "w_patches": 2
},
},
],
"Cylinder": [
{
"params": {"half_scale": 100, "u_verts_scale": 2, "v_verts_scale": 1, "w_verts_scale": 1},
},
{
"params": {"half_scale": 200, "u_verts_scale": 2, "v_verts_scale": 2, "w_verts_scale": 1},
},
{
"params": {"half_scale": 400, "u_verts_scale": 2, "v_verts_scale": 2, "w_verts_scale": 2},
},
{
"params": {
"half_scale": 100, "u_verts_scale": 1, "v_verts_scale": 1, "w_verts_scale": 1,
"u_patches": 2, "v_patches": 2, "w_patches": 2
},
},
],
"Disk": [
{
"params": {"half_scale": 100, "u_verts_scale": 2, "v_verts_scale": 1},
},
{
"params": {"half_scale": 200, "u_verts_scale": 2, "v_verts_scale": 2},
},
{
"params": {
"half_scale": 100, "u_verts_scale": 1, "v_verts_scale": 1,
"u_patches": 2, "v_patches": 2
},
},
],
"Plane": [
{
"params": {"half_scale": 100, "u_verts_scale": 2, "v_verts_scale": 1},
},
{
"params": {"half_scale": 200, "u_verts_scale": 2, "v_verts_scale": 2},
},
{
"params": {
"half_scale": 100, "u_verts_scale": 1, "v_verts_scale": 1,
"u_patches": 2, "v_patches": 2
},
},
],
"Sphere": [
{
"params": {"half_scale": 100, "u_verts_scale": 2, "v_verts_scale": 1},
},
{
"params": {"half_scale": 200, "u_verts_scale": 2, "v_verts_scale": 2},
},
{
"params": {
"half_scale": 100, "u_verts_scale": 1, "v_verts_scale": 1,
"u_patches": 2, "v_patches": 2
},
},
],
"Torus": [
{
"params": {"half_scale": 100, "u_verts_scale": 2, "v_verts_scale": 1},
},
{
"params": {"half_scale": 200, "u_verts_scale": 2, "v_verts_scale": 2},
},
{
"params": {
"half_scale": 100, "u_verts_scale": 1, "v_verts_scale": 1,
"u_patches": 2, "v_patches": 2
},
},
],
}
golden_file = TEST_DATA_PATH.joinpath("golden.usd")
golden_stage = Usd.Stage.Open(str(golden_file))
self.assertTrue(golden_stage)
await omni.usd.get_context().new_stage_async()
stage = omni.usd.get_context().get_stage()
for prim_type, test_cases in test_data.items():
for test_case in test_cases:
params = test_case["params"]
result, path = omni.kit.commands.execute(
"CreateMeshPrim", prim_type=prim_type, above_ground=True, **params
)
self.assertTrue(result)
mesh_prim = stage.GetPrimAtPath(path)
self.assertTrue(mesh_prim)
golden_prim = golden_stage.GetPrimAtPath(path)
self.assertTrue(golden_prim)
property_names = mesh_prim.GetPropertyNames()
golden_property_names = golden_prim.GetPropertyNames()
self.assertEqual(property_names, golden_property_names)
path = Sdf.Path(path)
for property_name in property_names:
property_path = path.AppendProperty(property_name)
prop = mesh_prim.GetPropertyAtPath(property_path)
golden_prop = golden_prim.GetPropertyAtPath(property_path)
# Skips relationship
if hasattr(prop, "GetTypeName"):
self.assertTrue(prop.GetTypeName(), golden_prop.GetTypeName())
self.assertEqual(prop.Get(), golden_prop.Get())
async def test_mesh_prims(self):
"""Test all mesh generator prims."""
for y_axis in [True, False]:
await omni.usd.get_context().new_stage_async()
stage = omni.usd.get_context().get_stage()
axis = UsdGeom.Tokens.y if y_axis else UsdGeom.Tokens.z
UsdGeom.SetStageUpAxis(stage, axis)
for prim_type in omni.kit.primitive.mesh.get_geometry_mesh_prim_list():
result, path = omni.kit.commands.execute("CreateMeshPrim", prim_type=prim_type, above_ground=True)
self.assertTrue(result)
def check_exist():
prim = stage.GetPrimAtPath(path)
attr = prim.GetAttribute(UsdGeom.Tokens.extent)
self.assertTrue(attr and attr.Get())
self.assertTrue(prim)
self.assertTrue(prim.IsA(UsdGeom.Mesh))
self.assertTrue(prim.IsA(UsdGeom.Xformable))
mesh_prim = UsdGeom.Mesh(prim)
points = mesh_prim.GetPointsAttr().Get()
face_indices = mesh_prim.GetFaceVertexIndicesAttr().Get()
normals = mesh_prim.GetNormalsAttr().Get()
face_counts = mesh_prim.GetFaceVertexCountsAttr().Get()
total = 0
for face_count in face_counts:
total += face_count
unique_indices = set(face_indices)
self.assertTrue(len(points) == len(unique_indices))
self.assertTrue(total == len(normals))
self.assertTrue(total == len(face_indices))
def check_does_not_exist():
self.assertFalse(stage.GetPrimAtPath(path))
check_exist()
omni.kit.undo.undo()
check_does_not_exist()
omni.kit.undo.redo()
check_exist()
omni.kit.undo.undo()
check_does_not_exist()
async def test_meshes_creation_from_menu(self):
import omni.kit.ui_test as ui_test
await omni.usd.get_context().new_stage_async()
stage = omni.usd.get_context().get_stage()
for prim_type in omni.kit.primitive.mesh.get_geometry_mesh_prim_list():
await ui_test.menu_click(f"Create/Mesh/{prim_type.capitalize()}")
path = f"/{prim_type}"
def check_exist():
prim = stage.GetPrimAtPath(path)
self.assertTrue(prim)
def check_does_not_exist():
self.assertFalse(stage.GetPrimAtPath(path))
check_exist()
omni.kit.undo.undo()
check_does_not_exist()
omni.kit.undo.redo()
check_exist()
omni.kit.undo.undo()
check_does_not_exist()
async def test_mesh_settings(self):
import omni.kit.ui_test as ui_test
await omni.usd.get_context().new_stage_async()
stage = omni.usd.get_context().get_stage()
await ui_test.menu_click("Create/Mesh/Settings")
window = ui_test.find("Mesh Generation Settings")
self.assertTrue(window)
await window.focus()
primitive_type_combobox = window.find("**/ComboBox[*].name=='primitive_type'")
self.assertTrue(primitive_type_combobox)
create_button = window.find("**/Button[*].name=='create'")
self.assertTrue(create_button)
model = primitive_type_combobox.model
value_model = model.get_item_value_model()
for i, prim_type in enumerate(omni.kit.primitive.mesh.get_geometry_mesh_prim_list()):
value_model.set_value(i)
await omni.kit.app.get_app().next_update_async()
await omni.kit.app.get_app().next_update_async()
await create_button.click()
path = f"/{prim_type}"
self.assertTrue(stage.GetPrimAtPath(path))
async def test_actions(self):
await omni.usd.get_context().new_stage_async()
stage = omni.usd.get_context().get_stage()
for prim_type in omni.kit.primitive.mesh.get_geometry_mesh_prim_list():
omni.kit.actions.core.execute_action(
"omni.kit.primitive.mesh",
f"create_mesh_prim_{prim_type.lower()}"
)
path = f"/{prim_type}"
def check_exist():
prim = stage.GetPrimAtPath(path)
self.assertTrue(prim)
def check_does_not_exist():
self.assertFalse(stage.GetPrimAtPath(path))
check_exist()
omni.kit.undo.undo()
check_does_not_exist()
omni.kit.undo.redo()
check_exist()
omni.kit.undo.undo()
check_does_not_exist()
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/docs/CHANGELOG.md | # Changelog
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [1.0.8] - 2022-11-25
### Changes
- Improve mesh primitives for physx needs.
- Make sure cone and cylinder are watertight.
- Fix normal issues at the tip of Cone.
- Add more tessellation settings for caps of cone and cylinder.
- Add more tessellation settings for cube to tesselate cube with axis.
## [1.0.7] - 2022-11-22
### Changes
- Fix to avoid crash at shutdown when loading optional slice
## [1.0.6] - 2022-11-22
### Changes
- Make UI dpendency optional
## [1.0.5] - 2022-11-12
### Changes
- Export extent attr for mesh.
## [1.0.4] - 2022-11-11
### Changes
- Clean up dependencies.
## [1.0.3] - 2022-10-25
### Changes
- Added prepend_default_prim parameters to CreateMeshPrimWithDefaultXformCommand
## [1.0.2] - 2022-08-12
### Changes
- Added select_new_prim & prim_path parameters to CreateMeshPrimWithDefaultXformCommand
## [1.0.1] - 2022-06-08
### Changes
- Updated menus to use actions.
## [1.0.0] - 2020-09-09
### Changes
- Supports cube, cone, cylinder, disk, plane, sphere, torus generation.
- Supports subdivision of meshes.
|
omniverse-code/kit/exts/omni.kit.primitive.mesh/docs/index.rst | omni.kit.primitive.mesh: omni.kit.mesh_generator
#################################################
Python Extension Mesh Generator
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/animation.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['AnimationEventStream']
import carb
import omni.kit.app
import traceback
from typing import Any, Callable
class AnimationEventStream:
__g_instance = None
@staticmethod
def get_instance():
if AnimationEventStream.__g_instance is None:
AnimationEventStream.__g_instance = [AnimationEventStream(), 1]
else:
AnimationEventStream.__g_instance[1] = AnimationEventStream.__g_instance[1] + 1
return AnimationEventStream.__g_instance[0]
def __init__(self):
self.__event_sub = None
self.__callbacks = {}
def __del__(self):
self.destroy()
def destroy(self):
if AnimationEventStream.__g_instance and AnimationEventStream.__g_instance[0] == self:
AnimationEventStream.__g_instance[1] = AnimationEventStream.__g_instance[1] - 1
if AnimationEventStream.__g_instance[1] > 0:
return
AnimationEventStream.__g_instance = None
self.__event_sub = None
self.__callbacks = {}
def __on_event(self, e: carb.events.IEvent):
dt = e.payload['dt']
for _, callbacks in self.__callbacks.items():
for cb_fn in callbacks:
try:
cb_fn(dt)
except Exception:
carb.log_error(traceback.format_exc())
def __init(self):
if self.__event_sub:
return
self.__event_sub = omni.kit.app.get_app().get_update_event_stream().create_subscription_to_pop(
self.__on_event,
name="omni.kit.manipulator.camera.AnimationEventStream",
order=omni.kit.app.UPDATE_ORDER_PYTHON_ASYNC_FUTURE_END_UPDATE
)
def add_animation(self, animation_fn: Callable, key: Any, remove_others: bool = True):
if remove_others:
self.__callbacks[key] = [animation_fn]
else:
prev_fns = self.__callbacks.get(key) or []
if prev_fns:
prev_fns.append(animation_fn)
else:
self.__callbacks[key] = [animation_fn]
self.__init()
def remove_animation(self, key: Any, animation_fn: Callable = None):
if animation_fn:
prev_fns = self.__callbacks.get(key)
if prev_fns:
try:
prev_fns.remove(animation_fn)
except ValueError:
pass
else:
prev_fns = None
if not prev_fns:
try:
del self.__callbacks[key]
except KeyError:
pass
if not self.__callbacks:
self.__event_sub = None
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/viewport_camera_manipulator.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
from .model import CameraManipulatorModel, _flatten_matrix, _optional_bool, _optional_int
from .usd_camera_manipulator import (
UsdCameraManipulator,
KIT_COI_ATTRIBUTE,
KIT_LOOKTHROUGH_ATTRIBUTE,
KIT_CAMERA_LOCK_ATTRIBUTE,
_compute_local_transform
)
from omni.ui import scene as sc
from pxr import Usd, UsdGeom, Sdf, Gf
import carb
import math
__all__ = ['ViewportCameraManipulator']
# More advanced implementation for a Viewport that can use picked objects and -look through- arbitrary scene items
#
def _check_for_camera_forwarding(imageable: UsdGeom.Imageable):
# Look for the relationship setup via LookAtCommand
prim = imageable.GetPrim()
look_through = prim.GetRelationship(KIT_LOOKTHROUGH_ATTRIBUTE).GetForwardedTargets()
if look_through:
stage = prim.GetStage()
# Loop over all targets (should really be only one) and see if we can get a valid UsdGeom.Imageable
for target in look_through:
target_prim = stage.GetPrimAtPath(target)
if not target_prim:
continue
target_imageable = UsdGeom.Imageable(target_prim)
if target_imageable:
return target_imageable
carb.log_warn(f'{prim.GetPath()} was set up for look-thorugh, but no valid prim was found for targets: {look_through}')
return imageable
def _setup_center_of_interest(model: sc.AbstractManipulatorModel, prim: Usd.Prim, time: Usd.TimeCode,
object_centric: int = 0, viewport_api=None, mouse=None):
def get_center_of_interest():
coi_attr = prim.GetAttribute(KIT_COI_ATTRIBUTE)
if not coi_attr or not coi_attr.IsAuthored():
# Use UsdGeomCamera.focusDistance is present
distance = 0
fcs_dist = prim.GetAttribute('focusDistance')
if fcs_dist and fcs_dist.IsAuthored():
distance = fcs_dist.Get(time)
# distance 0 is invalid, so create the atribute based on length from origin
if not fcs_dist or distance == 0:
origin = Gf.Matrix4d(*model.get_as_floats('initial_transform')).Transform((0, 0, 0))
distance = origin.GetLength()
coi_attr = prim.CreateAttribute(KIT_COI_ATTRIBUTE, Sdf.ValueTypeNames.Vector3d, True, Sdf.VariabilityUniform)
coi_attr.Set(Gf.Vec3d(0, 0, -distance))
# Make sure COI isn't ridiculously low
coi_val = coi_attr.Get()
length = coi_val.GetLength()
if length < 0.000001 or not math.isfinite(length):
coi_val = Gf.Vec3d(0, 0, -100)
return coi_val
def query_completed(path, pos, *args):
# Reset center-of-interest if there's an obect and world-space position
if path and pos:
# Convert carb value to Gf.Vec3d
pos = Gf.Vec3d(pos.x, pos.y, pos.z)
# Object centric 1 will use the object-center, so replace pos with the UsdGeom.Imageable's (0, 0, 0) coord
if object_centric == 1:
picked_prim = prim.GetStage().GetPrimAtPath(path)
imageable = UsdGeom.Imageable(picked_prim) if picked_prim else None
if imageable:
pos = imageable.ComputeLocalToWorldTransform(time).Transform(Gf.Vec3d(0, 0, 0))
if math.isfinite(pos[0]) and math.isfinite(pos[1]) and math.isfinite(pos[2]):
inv_xform = Gf.Matrix4d(*model.get_as_floats('transform')).GetInverse()
coi = inv_xform.Transform(pos)
model.set_floats('center_of_interest_picked', [pos[0], pos[1], pos[2]])
# Also need to trigger a recomputation of ndc_speed based on our new center of interest
coi_item = model.get_item('center_of_interest')
model.set_floats(coi_item, [coi[0], coi[1], coi[2]])
model._item_changed(coi_item)
# Re-enable all movement that we previouly disabled
model.set_ints('disable_pan', [disable_pan])
model.set_ints('disable_tumble', [disable_tumble])
model.set_ints('disable_look', [disable_look])
model.set_ints('disable_zoom', [disable_zoom])
coi = get_center_of_interest()
model.set_floats('center_of_interest', [coi[0], coi[1], coi[2]])
if object_centric != 0:
# Map the NDC co-ordinates to a viewport's texture-space
mouse, viewport_api = viewport_api.map_ndc_to_texture_pixel(mouse)
if (mouse is None) or (viewport_api is None):
object_centric = 0
if object_centric == 0:
model.set_floats('center_of_interest_picked', [])
return
# Block all movement until the query completes
disable_pan = _optional_bool(model, 'disable_pan')
disable_tumble = _optional_bool(model, 'disable_tumble')
disable_look = _optional_bool(model, 'disable_look')
disable_zoom = _optional_bool(model, 'disable_zoom')
model.set_ints('disable_pan', [1])
model.set_ints('disable_tumble', [1])
model.set_ints('disable_look', [1])
model.set_ints('disable_zoom', [1])
# Start the query
viewport_api.request_query(mouse, query_completed)
class ViewportCameraManipulator(UsdCameraManipulator):
def __init__(self, viewport_api, bindings: dict = None, *args, **kwargs):
super().__init__(bindings, viewport_api.usd_context_name)
self.__viewport_api = viewport_api
# def view_changed(*args):
# return
# from .gesturebase import set_frame_delivered
# set_frame_delivered(True)
# self.__vc_change = viewport_api.subscribe_to_frame_change(view_changed)
def _on_began(self, model: CameraManipulatorModel, mouse):
# We need a viewport and a stage to start. If either are missing disable any further processing.
viewport_api = self.__viewport_api
stage = viewport_api.stage if viewport_api else None
settings = carb.settings.get_settings()
# Store the viewport_id in the model for use later if necessary
model.set_ints('viewport_id', [viewport_api.id if viewport_api else 0])
if not stage:
# TODO: Could we forward this to adjust the viewport_api->omni.scene.ui ?
model.set_ints('disable_tumble', [1])
model.set_ints('disable_look', [1])
model.set_ints('disable_pan', [1])
model.set_ints('disable_zoom', [1])
model.set_ints('disable_fly', [1])
return
cam_path = viewport_api.camera_path
if hasattr(model, '_set_animation_key'):
model._set_animation_key(cam_path)
time = viewport_api.time
cam_prim = stage.GetPrimAtPath(cam_path)
cam_imageable = UsdGeom.Imageable(cam_prim)
camera = UsdGeom.Camera(cam_prim) if cam_imageable else None
if not cam_imageable or not cam_imageable.GetPrim().IsValid():
raise RuntimeError('ViewportCameraManipulator with an invalid UsdGeom.Imageable or Usd.Prim')
# Push the viewport's projection into the model
projection = _flatten_matrix(viewport_api.projection)
model.set_floats('projection', projection)
# Check if we should actaully keep camera at identity and forward our movements to another object
target_imageable = _check_for_camera_forwarding(cam_imageable)
local_xform, parent_xform = _compute_local_transform(target_imageable, time)
model.set_floats('initial_transform', _flatten_matrix(local_xform))
model.set_floats('transform', _flatten_matrix(local_xform))
# Setup the model if the camera is orthographic (where for Usd we must edit apertures)
# We do this before center-of-interest query to get disabled-state pushed into the model
if camera:
orthographic = int(camera.GetProjectionAttr().Get(time) == 'orthographic')
if orthographic:
model.set_floats('initial_aperture', [camera.GetHorizontalApertureAttr().Get(time),
camera.GetVerticalApertureAttr().Get(time)])
else:
orthographic = int(projection[15] == 1 if projection else False)
model.set_floats('initial_aperture', [])
up_axis = UsdGeom.GetStageUpAxis(stage)
if up_axis == UsdGeom.Tokens.x:
up_axis = Gf.Vec3d(1, 0, 0)
elif up_axis == UsdGeom.Tokens.y:
up_axis = Gf.Vec3d(0, 1, 0)
elif up_axis == UsdGeom.Tokens.z:
up_axis = Gf.Vec3d(0, 0, 1)
if not bool(settings.get("exts/omni.kit.manipulator.camera/forceStageUp")):
up_axis = parent_xform.TransformDir(up_axis).GetNormalized()
model.set_floats('up_axis', [up_axis[0], up_axis[1], up_axis[2]])
# Disable undo for implict cameras. This might be better handled with custom meta-data / attribute long term
disable_undo = cam_path.pathString in ['/OmniverseKit_Persp', '/OmniverseKit_Front', '/OmniverseKit_Right', '/OmniverseKit_Top']
model.set_ints('disable_undo', [int(disable_undo)])
# Test whether this camera is locked
cam_lock = cam_prim.GetAttribute(KIT_CAMERA_LOCK_ATTRIBUTE)
if cam_lock and cam_lock.Get():
model.set_ints('disable_tumble', [1])
model.set_ints('disable_look', [1])
model.set_ints('disable_pan', [1])
model.set_ints('disable_zoom', [1])
model.set_ints('disable_fly', [1])
else:
model.set_ints('orthographic', [orthographic])
model.set_ints('disable_tumble', [orthographic])
model.set_ints('disable_look', [orthographic])
model.set_ints('disable_pan', [0])
model.set_ints('disable_zoom', [0])
model.set_ints('disable_fly', [0])
# Extract the camera's center of interest, from a property or world-space query
# model.set_ints('object_centric_movement', [1])
object_centric = settings.get('/exts/omni.kit.manipulator.camera/objectCentric/type') or 0
object_centric = _optional_int(self.model, 'object_centric_movement', object_centric)
_setup_center_of_interest(model, target_imageable.GetPrim(), time, object_centric, viewport_api, mouse)
# Setup the model for command execution on key-framed data
had_transform_at_key = False
if not time.IsDefault():
xformable = UsdGeom.Xformable(target_imageable)
if xformable:
for xformOp in xformable.GetOrderedXformOps():
had_transform_at_key = time in xformOp.GetTimeSamples()
if had_transform_at_key:
break
model.set_ints('had_transform_at_key', [had_transform_at_key])
# Set the pan/zoom speed equivalent to the world space travel of the mouse
model.set_floats('world_speed', [1, 1, 1])
# Make a full drag across the viewport equal to a 180 tumble
uv_space = viewport_api.map_ndc_to_texture((1, 1))[0]
model.set_floats('rotation_speed', [((v * 2.0) - 1.0) for v in uv_space] + [1])
# Tell the USD manipulator the context and prim to operate on
self._set_context(viewport_api.usd_context_name, target_imageable.GetPath())
def destroy(self):
self.__vc_change = None
self.__viewport_api = None
super().destroy()
import omni.kit.app
import time
class ZoomEvents:
__instances = set()
@staticmethod
def get_instance(viewport_api):
instance = None
for inst in ZoomEvents.__instances:
if inst.__viewport_api == viewport_api:
instance = inst
break
if instance is None:
instance = ZoomEvents(viewport_api)
ZoomEvents.__instances.add(instance)
else:
instance.__mark_time()
return instance
def __init__(self, viewport_api):
self.__viewport_api = viewport_api
self.__mouse = [0, 0]
self.__manipulator = ViewportCameraManipulator(viewport_api, bindings={'ZoomGesture': 'LeftButton'})
self.__manipulator.on_build()
self.__zoom_gesture = self.__manipulator._screen.gestures[0]
self.__zoom_gesture._disable_flight()
self.__zoom_gesture.on_began(self.__mouse)
# 1030
if hasattr(omni.kit.app, 'UPDATE_ORDER_PYTHON_ASYNC_FUTURE_END_UPDATE'):
update_order = omni.kit.app.UPDATE_ORDER_PYTHON_ASYNC_FUTURE_END_UPDATE
else:
update_order = 50
self.__event_sub = omni.kit.app.get_app().get_update_event_stream().create_subscription_to_pop(
self.__on_event, name="omni.kit.manipulator.camera.ZoomEvents", order=update_order
)
def update(self, x, y):
self.__mark_time()
coi = Gf.Vec3d(*self.__manipulator.model.get_as_floats('center_of_interest'))
scale = math.log10(max(10, coi.GetLength())) / 40
self.__mouse = (self.__mouse[0] + x * scale, self.__mouse[1] + y * scale)
self.__zoom_gesture.on_changed(self.__mouse)
self.__mark_time()
def __mark_time(self):
self.__last_time = time.time()
def __time_since_last(self):
return time.time() - self.__last_time
def __on_event(self, e: carb.events.IEvent):
delta = self.__time_since_last()
if delta > 0.1:
self.destroy()
def destroy(self):
self.__event_sub = None
self.__zoom_gesture.on_ended()
self.__manipulator.destroy()
try:
ZoomEvents.__instances.remove(self)
except KeyError:
pass
# Helper function to do single a zoom-operation, from a scroll-wheel for example
def _zoom_operation(x, y, viewport_api):
if not viewport_api:
return None
instance = ZoomEvents.get_instance(viewport_api)
instance.update(x, y)
return True
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/__init__.py | # Expose these for easier import via from omni.kit.manipulator.camera import XXX
from .manipulator import SceneViewCameraManipulator, CameraManipulatorBase, adjust_center_of_interest
from .usd_camera_manipulator import UsdCameraManipulator
from .viewport_camera_manipulator import ViewportCameraManipulator
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/flight_mode.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['FlightModeKeyboard', 'get_keyboard_input']
from .model import CameraManipulatorModel, _accumulate_values, _optional_floats
from omni.ui import scene as sc
import omni.appwindow
from pxr import Gf
import carb
import carb.input
class FlightModeValues:
def __init__(self):
self.__xyz_values = (
[0, 0, 0],
[0, 0, 0],
[0, 0, 0],
)
def update(self, i0, i1, value) -> bool:
self.__xyz_values[i0][i1] = value
total = 0
for values in self.__xyz_values:
values[2] = values[1] - values[0]
total += values[2] != 0
return total != 0
@property
def value(self):
return (
self.__xyz_values[0][2],
self.__xyz_values[1][2],
self.__xyz_values[2][2]
)
class FlightModeKeyboard:
__g_char_map = None
@staticmethod
def get_char_map():
if not FlightModeKeyboard.__g_char_map:
key_char_map = {
'w': (2, 0),
's': (2, 1),
'a': (0, 0),
'd': (0, 1),
'q': (1, 0),
'e': (1, 1),
}
carb_key_map = {eval(f'carb.input.KeyboardInput.{ascii_val.upper()}'): index for ascii_val, index in key_char_map.items()}
FlightModeKeyboard.__g_char_map = carb_key_map
for k, v in FlightModeKeyboard.__g_char_map.items():
yield k, v
def __init__(self):
self.__input = None
self.__model = None
self.__stop_events = False
self.__keyboard_sub = None
self.__initial_speed = None
self.__current_adjusted_speed = 1
def init(self, model, iinput, mouse, mouse_button, app_window) -> None:
self.__model = model
if self.__input is None:
self.__input = iinput
self.__keyboard = app_window.get_keyboard()
self.__keyboard_sub = iinput.subscribe_to_keyboard_events(self.__keyboard, self.__on_key)
self.__mouse = mouse
# XXX: This isn't working
# self.__mouse_sub = iinput.subscribe_to_mouse_events(mouse, self.__on_mouse)
# So just query the state on key-down
self.__mouse_button = mouse_button
self.__key_index = {k: v for k, v in FlightModeKeyboard.get_char_map()}
self.__values = FlightModeValues()
# Setup for modifier keys adjusting speed
self.__settings = carb.settings.get_settings()
# Shift or Control can modify flight speed, get the current state
self.__setup_speed_modifiers()
# Need to update all input key states on start
for key, index in self.__key_index.items():
# Read the key and update the value. Update has to occur whether key is down or not as numeric field
# might have text focus; causing carbonite not to deliver __on_key messages
key_val = self.__input.get_keyboard_value(self.__keyboard, key)
self.__values.update(*index, 1 if key_val else 0)
# Record whether a previous invocation had started external events
prev_stop = self.__stop_events
# Test if any interesting key-pair result in a value
key_down = any(self.__values.value)
# If a key is no longer down, it may have not gotten to __on_key subscription if a numeric entry id focused
# In that case there is no more key down so kill any external trigger
if prev_stop and not key_down:
prev_stop = False
self.__model._stop_external_events()
self.__stop_events = key_down or prev_stop
self.__model.set_floats('fly', self.__values.value)
if self.__stop_events:
self.__model._start_external_events(True)
def _cancel(self) -> bool:
return self.__input.get_mouse_value(self.__mouse, self.__mouse_button) == 0 if self.__input else True
@property
def active(self) -> bool:
"""Returns if Flight mode is active or not"""
return bool(self.__stop_events)
def __adjust_speed_modifiers(self, cur_speed_mod: float, prev_speed_mod: float):
# Get the current state from
initial_speed = self.__settings.get('/persistent/app/viewport/camMoveVelocity') or 1
# Undo any previos speed modification based on key state
if prev_speed_mod and prev_speed_mod != 1:
initial_speed /= prev_speed_mod
# Store the unadjusted values for restoration later (camMoveVelocity may change underneath modifiers)
self.__initial_speed = initial_speed
# Set the new speed if it is different
cur_speed = initial_speed * cur_speed_mod
self.__settings.set('/persistent/app/viewport/camMoveVelocity', cur_speed)
def __setup_speed_modifiers(self):
# Default to legacy value of modifying speed by doubling / halving
self.__speed_modifier_amount = self.__settings.get('/exts/omni.kit.manipulator.camera/flightMode/keyModifierAmount')
if not self.__speed_modifier_amount:
return
# Store the current_adjusted_speed as inital_speed
prev_speed_mod = self.__current_adjusted_speed
cur_speed_mod = prev_speed_mod
# Scan the input keys that modify speed and adjust current_adjusted_speed
if self.__input.get_keyboard_value(self.__keyboard, carb.input.KeyboardInput.LEFT_SHIFT):
cur_speed_mod *= self.__speed_modifier_amount
if self.__input.get_keyboard_value(self.__keyboard, carb.input.KeyboardInput.LEFT_CONTROL):
if self.__speed_modifier_amount != 0:
cur_speed_mod /= self.__speed_modifier_amount
# Store new speed into proper place
if prev_speed_mod != cur_speed_mod:
self.__current_adjusted_speed = cur_speed_mod
self.__adjust_speed_modifiers(cur_speed_mod, prev_speed_mod)
def __process_speed_modifier(self, key: carb.input.KeyboardEventType, is_down: bool):
if not self.__speed_modifier_amount:
return
def speed_adjustment(increase: bool):
return self.__speed_modifier_amount if increase else (1 / self.__speed_modifier_amount)
prev_speed_mod = self.__current_adjusted_speed
cur_speed_mod = prev_speed_mod
if key == carb.input.KeyboardInput.LEFT_SHIFT:
cur_speed_mod *= speed_adjustment(is_down)
if key == carb.input.KeyboardInput.LEFT_CONTROL:
cur_speed_mod *= speed_adjustment(not is_down)
if prev_speed_mod != cur_speed_mod:
self.__current_adjusted_speed = cur_speed_mod
self.__adjust_speed_modifiers(cur_speed_mod, prev_speed_mod)
return True
return False
def __on_key(self, e) -> bool:
index, value, speed_changed = None, None, False
event_type = e.type
KeyboardEventType = carb.input.KeyboardEventType
if event_type == KeyboardEventType.KEY_PRESS or event_type == KeyboardEventType.KEY_REPEAT:
index, value = self.__key_index.get(e.input), 1
if event_type == KeyboardEventType.KEY_PRESS:
speed_changed = self.__process_speed_modifier(e.input, True)
elif event_type == KeyboardEventType.KEY_RELEASE:
index, value = self.__key_index.get(e.input), 0
speed_changed = self.__process_speed_modifier(e.input, False)
# If not a navigation key, pass it on to another handler (unless it was a speed-moficiation key).
if not index:
return not speed_changed
canceled = self._cancel()
if canceled:
value = 0
has_data = self.__values.update(*index, value)
if hasattr(self.__model, '_start_external_events'):
if has_data:
self.__stop_events = True
self.__model._start_external_events(True)
elif self.__stop_events:
self.__stop_events = False
self.__model._stop_external_events(True)
self.__model.set_floats('fly', self.__values.value)
# self.__model._item_changed(None)
if canceled:
self.destroy()
return False
def end(self):
self.destroy()
return None
def __del__(self):
self.destroy()
def destroy(self) -> None:
if self.__initial_speed is not None:
self.__settings.set('/persistent/app/viewport/camMoveVelocity', self.__initial_speed)
self.__initial_speed = None
self.__current_adjusted_speed = 1
if self.__model:
self.__model.set_floats('fly', None)
if self.__stop_events:
self.__model._stop_external_events()
if self.__keyboard_sub:
self.__input.unsubscribe_to_keyboard_events(self.__keyboard, self.__keyboard_sub)
self.__keyboard_sub = None
self.__keyboard = None
# if self.__mouse_sub:
# self.__input.unsubscribe_to_mouse_events(self.__mouse, self.__mouse_sub)
# self.__mouse_sub = None
self.__mouse = None
self.__input = None
self.__values = None
self.__key_index = None
def get_keyboard_input(model, walk_through: FlightModeKeyboard = None, end_with_mouse_ended: bool = False, mouse_button=carb.input.MouseInput.RIGHT_BUTTON):
iinput = carb.input.acquire_input_interface()
app_window = omni.appwindow.get_default_app_window()
mouse = app_window.get_mouse()
mouse_value = iinput.get_mouse_value(mouse, mouse_button)
if mouse_value:
if walk_through is None:
walk_through = FlightModeKeyboard()
walk_through.init(model, iinput, mouse, mouse_button, app_window)
elif walk_through and end_with_mouse_ended:
walk_through.destroy()
walk_through = None
return walk_through
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/math.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['TransformAccumulator']
from pxr import Gf
class TransformAccumulator:
def __init__(self, initial_xform: Gf.Matrix4d):
self.__inverse_xform = initial_xform.GetInverse() if initial_xform else None
def get_rotation_axis(self, up_axis: Gf.Vec3d):
if up_axis:
return self.__inverse_xform.TransformDir(up_axis)
else:
return self.__inverse_xform.TransformDir(Gf.Vec3d(0, 1, 0))
def get_translation(self, amount: Gf.Vec3d):
return Gf.Matrix4d().SetTranslate(amount)
def get_tumble(self, degrees: Gf.Vec3d, center_of_interest: Gf.Vec3d, up_axis: Gf.Vec3d):
# Rotate around proper scene axis
rotate_axis = self.get_rotation_axis(up_axis)
# Move to center_of_interest, rotate and move back
# No need for identity, all SetXXX methods will do that for us
translate = Gf.Matrix4d().SetTranslate(-center_of_interest)
# X-Y in ui/mouse are swapped so x-move is rotate around Y, and Y-move is rotate around X
rotate_x = Gf.Matrix4d().SetRotate(Gf.Rotation(Gf.Vec3d(1, 0, 0), degrees[1]))
rotate_y = Gf.Matrix4d().SetRotate(Gf.Rotation(rotate_axis, degrees[0]))
return translate * rotate_x * rotate_y * translate.GetInverse()
def get_look(self, degrees: Gf.Vec3d, up_axis: Gf.Vec3d):
# Rotate around proper scene axis
rotate_axis = self.get_rotation_axis(up_axis)
# X-Y in ui/mouse are swapped so x-move is rotate around Y, and Y-move is rotate around X
rotate_x = Gf.Matrix4d().SetRotate(Gf.Rotation(Gf.Vec3d(1, 0, 0), degrees[1]))
rotate_y = Gf.Matrix4d().SetRotate(Gf.Rotation(rotate_axis, degrees[0]))
return rotate_x * rotate_y
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/usd_camera_manipulator.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
from .manipulator import CameraManipulatorBase, adjust_center_of_interest
from .model import _optional_bool, _flatten_matrix
from omni.kit import commands, undo
import omni.usd
from pxr import Usd, UsdGeom, Sdf, Tf, Gf
import carb.profiler
import carb.settings
import math
from typing import List
__all__ = ['UsdCameraManipulator']
KIT_COI_ATTRIBUTE = 'omni:kit:centerOfInterest'
KIT_LOOKTHROUGH_ATTRIBUTE = 'omni:kit:viewport:lookThrough:target'
KIT_CAMERA_LOCK_ATTRIBUTE = 'omni:kit:cameraLock'
def _get_context_stage(usd_context_name: str):
return omni.usd.get_context(usd_context_name).get_stage()
def _compute_local_transform(imageable: UsdGeom.Imageable, time: Usd.TimeCode):
# xformable = UsdGeom.Xformable(imageable)
# if xformable:
# return xformable.GetLocalTransformation(time)
world_xform = imageable.ComputeLocalToWorldTransform(time)
parent_xform = imageable.ComputeParentToWorldTransform(time)
parent_ixform = parent_xform.GetInverse()
return (world_xform * parent_ixform), parent_ixform
class SRTDecomposer:
def __init__(self, prim: Usd.Prim, time: Usd.TimeCode = None):
if time is None:
time = Usd.TimeCode.Default()
xform_srt = omni.usd.get_local_transform_SRT(prim, time)
xform_srt = (Gf.Vec3d(xform_srt[0]), Gf.Vec3d(xform_srt[1]), Gf.Vec3i(xform_srt[2]), Gf.Vec3d(xform_srt[3]))
self.__start_scale, self.__start_rotation_euler, self.__start_rotation_order, self.__start_translation = xform_srt
self.__current_scale, self.__current_rotation_euler, self.__current_rotation_order, self.__current_translation = xform_srt
@staticmethod
def __repeat(t: float, length: float) -> float:
return t - (math.floor(t / length) * length)
@staticmethod
def __generate_compatible_euler_angles(euler: Gf.Vec3d, rotation_order: Gf.Vec3i) -> List[Gf.Vec3d]:
equal_eulers = [euler]
mid_order = rotation_order[1]
equal = Gf.Vec3d()
for i in range(3):
if i == mid_order:
equal[i] = 180 - euler[i]
else:
equal[i] = euler[i] + 180
equal_eulers.append(equal)
for i in range(3):
equal[i] -= 360
equal_eulers.append(equal)
return equal_eulers
@staticmethod
def __find_best_euler_angles(old_rot_vec: Gf.Vec3d, new_rot_vec: Gf.Vec3d, rotation_order: Gf.Vec3i) -> Gf.Vec3d:
equal_eulers = SRTDecomposer.__generate_compatible_euler_angles(new_rot_vec, rotation_order)
nearest_euler = None
for euler in equal_eulers:
for i in range(3):
euler[i] = SRTDecomposer.__repeat(euler[i] - old_rot_vec[i] + 180.0, 360.0) + old_rot_vec[i] - 180.0
if nearest_euler is None:
nearest_euler = euler
else:
distance_1 = (nearest_euler - old_rot_vec).GetLength()
distance_2 = (euler - old_rot_vec).GetLength()
if distance_2 < distance_1:
nearest_euler = euler
return nearest_euler
def update(self, xform: Gf.Matrix4d):
# Extract new translation
self.__current_translation = xform.ExtractTranslation()
# Extract new euler rotation
ro = self.__start_rotation_order
old_s_mtx = Gf.Matrix4d().SetScale(self.__start_scale)
old_t_mtx = Gf.Matrix4d().SetTranslate(self.__start_translation)
rot_new = (old_s_mtx.GetInverse() * xform * old_t_mtx.GetInverse()).ExtractRotation()
axes = [Gf.Vec3d.XAxis(), Gf.Vec3d.YAxis(), Gf.Vec3d.ZAxis()]
decomp_rot = rot_new.Decompose(axes[ro[2]], axes[ro[1]], axes[ro[0]])
index_order = Gf.Vec3i()
for i in range(3):
index_order[ro[i]] = 2 - i
new_rot_vec = Gf.Vec3d(decomp_rot[index_order[0]], decomp_rot[index_order[1]], decomp_rot[index_order[2]])
new_rot_vec = self.__find_best_euler_angles(self.__start_rotation_euler, new_rot_vec, self.__start_rotation_order)
self.__current_rotation_euler = new_rot_vec
# Because this is a camera manipulation, we purposefully ignore scale and rotation order changes
# They remain constant across the interaction.
return self
@property
def translation(self):
return self.__current_translation
@property
def rotation(self):
return self.__current_rotation_euler
@property
def start_translation(self):
return self.__start_translation
@property
def start_rotation(self):
self.__start_rotation_euler
class ExternalUsdCameraChange():
def __init__(self, time: Usd.TimeCode):
self.__tf_listener = None
self.__usd_context_name, self.__prim_path = None, None
self.__updates_paused = False
self.__kill_external_animation = None
self.__time = time
def __del__(self):
self.destroy()
def update(self, model, usd_context_name: str, prim_path: Sdf.Path):
self.__kill_external_animation = getattr(model, '_kill_external_animation', None)
if self.__kill_external_animation is None:
return
self.__prim_path = prim_path
if usd_context_name != self.__usd_context_name:
self.__usd_context_name = usd_context_name
if self.__tf_listener:
self.__tf_listener.Revoke()
self.__tf_listener = None
if not self.__tf_listener:
try:
stage = _get_context_stage(self.__usd_context_name)
if stage:
self.__tf_listener = Tf.Notice.Register(Usd.Notice.ObjectsChanged, self.__object_changed, stage)
except ImportError:
pass
def destroy(self):
if self.__tf_listener:
self.__tf_listener.Revoke()
self.__tf_listener = None
self.__usd_context_name, self.__prim_path = None, None
self.__kill_external_animation = None
@carb.profiler.profile
def __object_changed(self, notice, sender):
if self.__updates_paused:
return
if not sender or sender != _get_context_stage(self.__usd_context_name):
return
for p in notice.GetChangedInfoOnlyPaths():
if (p.IsPropertyPath()
and p.GetPrimPath() == self.__prim_path
and UsdGeom.Xformable.IsTransformationAffectedByAttrNamed(p.name)):
xformable = UsdGeom.Xformable(sender.GetPrimAtPath(self.__prim_path))
xform = _flatten_matrix(xformable.GetLocalTransformation(self.__time)) if xformable else None
self.__kill_external_animation(True, xform)
break
def pause_tracking(self):
self.__updates_paused = True
def start_tracking(self):
self.__updates_paused = False
# Base Usd implementation that will set model back to Usd data via kit-commands
class UsdCameraManipulator(CameraManipulatorBase):
def __init__(self, bindings: dict = None, usd_context_name: str = '', prim_path: Sdf.Path = None, *args, **kwargs):
self.__usd_context_name, self.__prim_path = None, None
self.__external_change_tracker = None
super().__init__(bindings, *args, **kwargs)
self._set_context(usd_context_name, prim_path)
def _set_context(self, usd_context_name: str, prim_path: Sdf.Path):
self.__usd_context_name = usd_context_name
self.__prim_path = prim_path
self.__srt_decompose = None
if prim_path and carb.settings.get_settings().get('/persistent/app/camera/controllerUseSRT'):
stage = _get_context_stage(self.__usd_context_name)
if stage:
prim = stage.GetPrimAtPath(prim_path)
if prim:
model = self.model
time = model.get_as_floats('time') if model else None
time = Usd.TimeCode(time[0]) if time else Usd.TimeCode.Default()
self.__srt_decompose = SRTDecomposer(prim)
def _on_began(self, model, *args, **kwargs):
super()._on_began(model, *args, **kwargs)
stage = _get_context_stage(self.__usd_context_name)
if not stage:
# TODO: Could we forward this to adjust the viewport_api->omni.scene.ui ?
model.set_ints('disable_tumble', [1])
model.set_ints('disable_look', [1])
model.set_ints('disable_pan', [1])
model.set_ints('disable_zoom', [1])
model.set_ints('disable_fly', [1])
return
cam_prim = stage.GetPrimAtPath(self.__prim_path)
cam_imageable = UsdGeom.Imageable(cam_prim) if bool(cam_prim) else None
if not cam_imageable or not cam_imageable.GetPrim().IsValid():
raise RuntimeError('ViewportCameraManipulator with an invalid UsdGeom.Imageable or Usd.Prim')
# Check if we should actaully keep camera at identity and forward our movements to another object
local_xform, parent_xform = _compute_local_transform(cam_imageable, Usd.TimeCode.Default())
model.set_floats('initial_transform', _flatten_matrix(local_xform))
model.set_floats('transform', _flatten_matrix(local_xform))
up_axis = UsdGeom.GetStageUpAxis(stage)
if up_axis == UsdGeom.Tokens.x:
up_axis = Gf.Vec3d(1, 0, 0)
elif up_axis == UsdGeom.Tokens.y:
up_axis = Gf.Vec3d(0, 1, 0)
elif up_axis == UsdGeom.Tokens.z:
up_axis = Gf.Vec3d(0, 0, 1)
if not bool(carb.settings.get_settings().get("exts/omni.kit.manipulator.camera/forceStageUp")):
up_axis = parent_xform.TransformDir(up_axis).GetNormalized()
model.set_floats('up_axis', [up_axis[0], up_axis[1], up_axis[2]])
@carb.profiler.profile
def __vp1_cooperation(self, prim_path, time, usd_context_name: str, center_of_interest_end):
try:
from omni.kit import viewport_legacy
vp1_iface = viewport_legacy.get_viewport_interface()
final_transform, coi_world, pos_world, cam_path = None, None, None, None
for vp1_handle in vp1_iface.get_instance_list():
vp1_window = vp1_iface.get_viewport_window(vp1_handle)
if not vp1_window or (vp1_window.get_usd_context_name() != usd_context_name):
continue
if not final_transform:
# Save the path's string represnetation
cam_path = prim_path.pathString
# We need to calculate world-space transform for VP-1, important for nested camera's
# TODO: UsdBBoxCache.ComputeWorldBound in compute_path_world_transform doesn't seem to work for non-geometry:
# final_transform = omni.usd.get_context(usd_context_name).compute_path_world_transform(cam_path)
# final_transform = Gf.Matrix4d(*final_transform)
final_transform = UsdGeom.Imageable(prim_path).ComputeLocalToWorldTransform(time)
# center_of_interest_end is adjusted and returned for VP-2
center_of_interest_end = Gf.Vec3d(0, 0, -center_of_interest_end.GetLength())
# Pass world center-of-interest to VP-1 set_camera_target
coi_world = final_transform.Transform(center_of_interest_end)
# Pass world position to VP-1 set_camera_position
pos_world = final_transform.Transform(Gf.Vec3d(0, 0, 0))
# False for first call to set target only, True for second to trigger radius re-calculation
# This isn't particuarly efficient; but 'has to be' for now due to some Viewport-1 internals
vp1_window.set_camera_target(cam_path, coi_world[0], coi_world[1], coi_world[2], False)
vp1_window.set_camera_position(cam_path, pos_world[0], pos_world[1], pos_world[2], True)
except Exception:
pass
return center_of_interest_end
@carb.profiler.profile
def on_model_updated(self, item):
# Handle case of inertia being applied though a new stage-open
usd_context_name = self.__usd_context_name
if usd_context_name is None or _get_context_stage(usd_context_name) is None:
return
model = self.model
prim_path = self.__prim_path
time = model.get_as_floats('time')
time = Usd.TimeCode(time[0]) if time else Usd.TimeCode.Default()
undoable = False
def run_command(cmd_name, **kwargs):
carb.profiler.begin(1, cmd_name)
if undoable:
commands.execute(cmd_name, **kwargs)
else:
commands.create(cmd_name, **kwargs).do()
carb.profiler.end(1)
try:
if item == model.get_item('transform'):
if self.__external_change_tracker:
self.__external_change_tracker.update(model, usd_context_name, prim_path)
self.__external_change_tracker.pause_tracking()
# We are undoable on the final event if undo hasn't been disabled on the model
undoable = _optional_bool(self.model, 'interaction_ended') and not _optional_bool(self.model, 'disable_undo')
if undoable:
undo.begin_group()
final_transform = Gf.Matrix4d(*model.get_as_floats('transform'))
initial_transform = model.get_as_floats('initial_transform')
initial_transform = Gf.Matrix4d(*initial_transform) if initial_transform else initial_transform
had_transform_at_key = _optional_bool(self.model, 'had_transform_at_key')
if self.__srt_decompose:
srt_deompose = self.__srt_decompose.update(final_transform)
run_command(
'TransformPrimSRTCommand',
path=prim_path,
new_translation=srt_deompose.translation,
new_rotation_euler=srt_deompose.rotation,
# new_scale=srt_deompose.scale,
# new_rotation_order=srt_deompose.rotation_order,
old_translation=srt_deompose.start_translation,
old_rotation_euler=srt_deompose.start_rotation,
# old_rotation_order=srt_deompose.start_rotation_order,
# old_scale=srt_deompose.start_scale,
time_code=time,
had_transform_at_key=had_transform_at_key,
usd_context_name=usd_context_name
)
else:
run_command(
'TransformPrimCommand',
path=prim_path,
new_transform_matrix=final_transform,
old_transform_matrix=initial_transform,
time_code=time,
had_transform_at_key=had_transform_at_key,
usd_context_name=usd_context_name
)
center_of_interest_start, center_of_interest_end = adjust_center_of_interest(model, initial_transform, final_transform)
if center_of_interest_start and center_of_interest_end:
# See if we need to adjust center-of-interest to cooperate with Viewport-1, which can only do a 1 dimensional version
center_of_interest_end = self.__vp1_cooperation(prim_path, time, usd_context_name, center_of_interest_end)
run_command(
'ChangePropertyCommand',
prop_path=prim_path.AppendProperty(KIT_COI_ATTRIBUTE),
value=center_of_interest_end,
prev=center_of_interest_start,
usd_context_name=usd_context_name
)
elif item == model.get_item('current_aperture'):
# We are undoable on the final event if undo hasn't been disabled on the model
undoable = _optional_bool(self.model, 'interaction_ended') and not _optional_bool(self.model, 'disable_undo')
if undoable:
undo.begin_group()
initial_aperture = model.get_as_floats('initial_aperture')
current_aperture = model.get_as_floats('current_aperture')
prop_names = ('horizontalAperture', 'verticalAperture')
for initial_value, current_value, prop_name in zip(initial_aperture, current_aperture, prop_names):
run_command(
'ChangePropertyCommand',
prop_path=prim_path.AppendProperty(prop_name),
value=current_value,
prev=initial_value,
timecode=time,
usd_context_name=usd_context_name
)
elif item == model.get_item('interaction_animating'):
interaction_animating = model.get_as_ints(item)
if interaction_animating and interaction_animating[0]:
if not self.__external_change_tracker:
self.__external_change_tracker = ExternalUsdCameraChange(time)
self.__external_change_tracker.update(model, usd_context_name, prim_path)
self.__external_change_tracker.pause_tracking()
elif self.__external_change_tracker:
self.__external_change_tracker.destroy()
self.__external_change_tracker = None
finally:
if undoable:
undo.end_group()
if self.__external_change_tracker:
self.__external_change_tracker.start_tracking()
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/model.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['CameraManipulatorModel']
from omni.ui import scene as sc
from pxr import Gf
from typing import Any, Callable, List, Sequence, Union
from .math import TransformAccumulator
from .animation import AnimationEventStream
import time
import carb.profiler
import carb.settings
ALMOST_ZERO = 1.e-4
def _flatten_matrix(matrix: Gf.Matrix4d):
return [matrix[0][0], matrix[0][1], matrix[0][2], matrix[0][3],
matrix[1][0], matrix[1][1], matrix[1][2], matrix[1][3],
matrix[2][0], matrix[2][1], matrix[2][2], matrix[2][3],
matrix[3][0], matrix[3][1], matrix[3][2], matrix[3][3]]
def _optional_floats(model: sc.AbstractManipulatorModel, item: str, default_value: Sequence[float] = None):
item = model.get_item(item)
if item:
values = model.get_as_floats(item)
if values:
return values
return default_value
def _optional_float(model: sc.AbstractManipulatorModel, item: str, default_value: float = 0):
item = model.get_item(item)
if item:
values = model.get_as_floats(item)
if values:
return values[0]
return default_value
def _optional_int(model: sc.AbstractManipulatorModel, item: str, default_value: int = 0):
item = model.get_item(item)
if item:
values = model.get_as_ints(item)
if values:
return values[0]
return default_value
def _optional_bool(model: sc.AbstractManipulatorModel, item: str, default_value: bool = False):
return _optional_int(model, item, default_value)
def _accumulate_values(model: sc.AbstractManipulatorModel, name: str, x: float, y: float, z: float):
item = model.get_item(name)
if item:
values = model.get_as_floats(item)
model.set_floats(item, [values[0] + x, values[1] + y, values[2] + z] if values else [x, y, z])
return item
def _scalar_or_vector(value: Sequence[float]):
acceleration_len = len(value)
if acceleration_len == 1:
return Gf.Vec3d(value[0], value[0], value[0])
if acceleration_len == 2:
return Gf.Vec3d(value[0], value[1], 1)
return Gf.Vec3d(value[0], value[1], value[2])
class ModelState:
def __reduce_value(self, vec: Gf.Vec3d):
if vec and (vec[0] == 0 and vec[1] == 0 and vec[2] == 0):
return None
return vec
def __expand_value(self, vec: Gf.Vec3d, alpha: float):
if vec:
vec = tuple(v * alpha for v in vec)
if vec[0] != 0 or vec[1] != 0 or vec[2] != 0:
return vec
return None
def __init__(self, tumble: Gf.Vec3d = None, look: Gf.Vec3d = None, move: Gf.Vec3d = None, fly: Gf.Vec3d = None):
self.__tumble = self.__reduce_value(tumble)
self.__look = self.__reduce_value(look)
self.__move = self.__reduce_value(move)
self.__fly = self.__reduce_value(fly)
def any_values(self):
return self.__tumble or self.__look or self.__move or self.__fly
def apply_alpha(self, alpha: float):
return (self.__expand_value(self.__tumble, alpha),
self.__expand_value(self.__look, alpha),
self.__expand_value(self.__move, alpha),
self.__expand_value(self.__fly, alpha))
@property
def tumble(self):
return self.__tumble
@property
def look(self):
return self.__look
@property
def move(self):
return self.__move
@property
def fly(self):
return self.__fly
class Velocity:
def __init__(self, acceleration: Sequence[float], dampening: Sequence[float] = (10,), clamp_dt: float = 0.15):
self.__velocity = Gf.Vec3d(0, 0, 0)
self.__acceleration_rate = _scalar_or_vector(acceleration)
self.__dampening = _scalar_or_vector(dampening)
self.__clamp_dt = clamp_dt
def apply(self, value: Gf.Vec3d, dt: float, alpha: float = 1):
### XXX: We're not locked to anything and event can come in spuriously
### So clamp the max delta-time to a value (if this is to high, it can introduces lag)
if (dt > 0) and (dt > self.__clamp_dt):
dt = self.__clamp_dt
if value:
acceleration = Gf.CompMult(value, self.__acceleration_rate) * alpha
self.__velocity += acceleration * dt
damp_factor = tuple(max(min(v * dt, 0.75), 0) for v in self.__dampening)
self.__velocity += Gf.CompMult(-self.__velocity, Gf.Vec3d(*damp_factor))
if Gf.Dot(self.__velocity, self.__velocity) < ALMOST_ZERO:
self.__velocity = Gf.Vec3d(0, 0, 0)
return self.__velocity * dt
@staticmethod
def create(model: sc.AbstractManipulatorModel, mode: str, clamp_dt: float = 0.15):
acceleration = _optional_floats(model, f'{mode}_acceleration')
if acceleration is None:
return None
dampening = _optional_floats(model, f'{mode}_dampening')
return Velocity(acceleration, dampening or (10, 10, 10), clamp_dt)
class Decay:
def __init__(self):
pass
def apply(self, value: Gf.Vec3d, dt: float, alpha: float = 1):
return value * alpha if value else None
class CameraManipulatorModel(sc.AbstractManipulatorModel):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.__settings = carb.settings.get_settings()
self.__items = {
# 'view': (sc.AbstractManipulatorItem(), 16),
'projection': (sc.AbstractManipulatorItem(), 16),
'transform': (sc.AbstractManipulatorItem(), 16),
'orthographic': (sc.AbstractManipulatorItem(), 1),
'center_of_interest': (sc.AbstractManipulatorItem(), 3),
# Accumulated movement
'move': (sc.AbstractManipulatorItem(), 3),
'tumble': (sc.AbstractManipulatorItem(), 3),
'look': (sc.AbstractManipulatorItem(), 3),
'fly': (sc.AbstractManipulatorItem(), 3),
# Optional speed for world (pan, truck) and rotation (tumble, look) operation
# Can be set individually for x, y, z or as a scalar
'world_speed': (sc.AbstractManipulatorItem(), (3, 1)),
'move_speed': (sc.AbstractManipulatorItem(), (3, 1)),
'rotation_speed': (sc.AbstractManipulatorItem(), (3, 1)),
'tumble_speed': (sc.AbstractManipulatorItem(), (3, 1)),
'look_speed': (sc.AbstractManipulatorItem(), (3, 1)),
'fly_speed': (sc.AbstractManipulatorItem(), (3, 1)),
# Inertia enabled, and amoint of second to apply it for
'inertia_enabled': (sc.AbstractManipulatorItem(), 1),
'inertia_seconds': (sc.AbstractManipulatorItem(), 1),
# Power of ineratia decay (for an ease-out) 0 and 1 are linear
'inertia_decay': (sc.AbstractManipulatorItem(), 1),
# Acceleration and dampening values
'tumble_acceleration': (sc.AbstractManipulatorItem(), (3, 1)),
'look_acceleration': (sc.AbstractManipulatorItem(), (3, 1)),
'move_acceleration': (sc.AbstractManipulatorItem(), (3, 1)),
'fly_acceleration': (sc.AbstractManipulatorItem(), (3, 1)),
'tumble_dampening': (sc.AbstractManipulatorItem(), (3, 1)),
'look_dampening': (sc.AbstractManipulatorItem(), (3, 1)),
'move_dampening': (sc.AbstractManipulatorItem(), (3, 1)),
'fly_dampening': (sc.AbstractManipulatorItem(), (3, 1)),
'fly_mode_lock_view': (sc.AbstractManipulatorItem(), 1),
# Decimal precision of rotation operations
'rotation_precision': (sc.AbstractManipulatorItem(), 1),
# Mapping of units from input to world
'ndc_scale': (sc.AbstractManipulatorItem(), 3),
# Optional int-as-bool items
'disable_pan': (sc.AbstractManipulatorItem(), 1),
'disable_tumble': (sc.AbstractManipulatorItem(), 1),
'disable_look': (sc.AbstractManipulatorItem(), 1),
'disable_zoom': (sc.AbstractManipulatorItem(), 1),
'disable_fly': (sc.AbstractManipulatorItem(), 1),
'disable_undo': (sc.AbstractManipulatorItem(), 1),
'object_centric_movement': (sc.AbstractManipulatorItem(), 1),
'viewport_id': (sc.AbstractManipulatorItem(), 1),
# USD specific concepts
'up_axis': (sc.AbstractManipulatorItem(), 3),
'current_aperture': (sc.AbstractManipulatorItem(), 2),
'initial_aperture': (sc.AbstractManipulatorItem(), 2),
'had_transform_at_key': (sc.AbstractManipulatorItem(), 1),
'time': (sc.AbstractManipulatorItem(), 1),
# Internal signal for final application of the changes, use disable_undo for user-control
'interaction_ended': (sc.AbstractManipulatorItem(), 1), # Signal that undo should be applied
'interaction_active': (sc.AbstractManipulatorItem(), 1), # Signal that a gesture is manipualting camera
'interaction_animating': (sc.AbstractManipulatorItem(), 1), # Signal that an animation is manipulating camera
'center_of_interest_start': (sc.AbstractManipulatorItem(), 3),
'center_of_interest_picked': (sc.AbstractManipulatorItem(), 3),
'adjust_center_of_interest': (sc.AbstractManipulatorItem(), 1),
'initial_transform': (sc.AbstractManipulatorItem(), 16),
}
self.__values = {item: [] for item, _ in self.__items.values()}
self.__values[self.__items.get('look_speed')[0]] = [1, 0.5]
self.__values[self.__items.get('fly_speed')[0]] = [1]
self.__values[self.__items.get('inertia_seconds')[0]] = [0.5]
self.__values[self.__items.get('inertia_enabled')[0]] = [0]
# self.__values[self.__items.get('interaction_active')[0]] = [0]
# self.__values[self.__items.get('interaction_animating')[0]] = [0]
self.__settings_changed_subs = []
def read_inertia_setting(mode: str, setting_scale: float):
global_speed_key = f'/persistent/exts/omni.kit.manipulator.camera/{mode}Speed'
subscribe = self.__settings.subscribe_to_tree_change_events
self.__settings_changed_subs.append(
subscribe(global_speed_key,
lambda *args, **kwargs: self.__speed_setting_changed(*args, **kwargs,
mode=mode, setting_scale=setting_scale)),
)
self.__speed_setting_changed(None, None, carb.settings.ChangeEventType.CHANGED, mode, setting_scale)
accel = self.__settings.get(f'/exts/omni.kit.manipulator.camera/{mode}Acceleration')
damp = self.__settings.get(f'/exts/omni.kit.manipulator.camera/{mode}Dampening')
if accel is None or damp is None:
if accel is None and damp is not None:
pass
elif damp is None and accel is not None:
pass
return
self.__values[self.__items.get(f'{mode}_acceleration')[0]] = [accel]
self.__values[self.__items.get(f'{mode}_dampening')[0]] = [damp]
read_inertia_setting('fly', 1)
read_inertia_setting('look', 180)
read_inertia_setting('move', 1)
read_inertia_setting('tumble', 360)
self.__settings_changed_subs.append(
self.__settings.subscribe_to_node_change_events('/persistent/exts/omni.kit.manipulator.camera/flyViewLock',
self.__fly_mode_lock_view_changed)
)
self.__fly_mode_lock_view_changed(None, carb.settings.ChangeEventType.CHANGED)
self.__animation_key = id(self)
self.__flight_inertia_active = False
self.__last_applied = None
# Faster access for key-values looked up during animation
self.__move = self.__items.get('move')[0]
self.__tumble = self.__items.get('tumble')[0]
self.__look = self.__items.get('look')[0]
self.__fly = self.__items.get('fly')[0]
self.__transform = self.__items.get('transform')[0]
self.__projection = self.__items.get('projection')[0]
self.__center_of_interest = self.__items.get('center_of_interest')[0]
self.__adjust_center_of_interest = self.__items.get('adjust_center_of_interest')[0]
self.__inertia_enabled = self.__items.get('inertia_enabled')[0]
self.__inertia_seconds = self.__items.get('inertia_seconds')[0]
self.__tumble_velocity = None
self.__look_velocity = None
self.__move_velocity = None
self.__fly_velocity = None
self.__intertia_state = None
self.__anim_stream = None
self.__anim_stopped = 0
self.__mode = None
def __speed_setting_changed(self, tree_item: carb.dictionary.Item, changed_item: carb.dictionary.Item,
event_type: carb.settings.ChangeEventType, mode: str, setting_scale: float = 1):
if tree_item is None:
speed = self.__settings.get(f'/persistent/exts/omni.kit.manipulator.camera/{mode}Speed')
else:
speed = tree_item.get_dict()
if speed:
if (not isinstance(speed, tuple)) and (not isinstance(speed, list)):
speed = [speed]
self.__values[self.__items.get(f'{mode}_speed')[0]] = [float(x) / setting_scale for x in speed]
def __fly_mode_lock_view_changed(self, changed_item: carb.dictionary.Item, event_type: carb.settings.ChangeEventType):
model_key = self.__items.get('fly_mode_lock_view')[0]
setting_key = '/persistent/exts/omni.kit.manipulator.camera/flyViewLock'
self.__values[model_key] = [self.__settings.get(setting_key)]
def __del__(self):
self.destroy()
def destroy(self):
self.__destroy_animation()
if self.__settings and self.__settings_changed_subs:
for subscription in self.__settings_changed_subs:
self.__settings.unsubscribe_to_change_events(subscription)
self.__settings_changed_subs = None
self.__settings = None
def __destroy_animation(self):
if self.__anim_stream:
self.__anim_stream.destroy()
self.__anim_stream = None
self.__mark_animating(0)
def __validate_arguments(self, name: Union[str, sc.AbstractManipulatorItem],
values: Sequence[Union[int, float]] = None) -> sc.AbstractManipulatorItem:
if isinstance(name, sc.AbstractManipulatorItem):
return name
item, expected_len = self.__items.get(name, (None, None))
if item is None:
raise KeyError(f"CameraManipulatorModel doesn't understand values of {name}")
if values and (len(values) != expected_len):
if (not isinstance(expected_len, tuple)) or (not len(values) in expected_len):
raise ValueError(f"CameraManipulatorModel {name} takes {expected_len} values, got {len(values)}")
return item
def get_item(self, name: str) -> sc.AbstractManipulatorItem():
return self.__items.get(name, (None, None))[0]
def set_ints(self, item: Union[str, sc.AbstractManipulatorItem], values: Sequence[int]):
item = self.__validate_arguments(item, values)
self.__values[item] = values
def set_floats(self, item: Union[str, sc.AbstractManipulatorItem], values: Sequence[int]):
item = self.__validate_arguments(item, values)
self.__values[item] = values
def get_as_ints(self, item: Union[str, sc.AbstractManipulatorItem]) -> List[int]:
item = self.__validate_arguments(item)
return self.__values[item]
def get_as_floats(self, item: Union[str, sc.AbstractManipulatorItem]) -> List[float]:
item = self.__validate_arguments(item)
return self.__values[item]
@carb.profiler.profile
def _item_changed(self, item: Union[str, sc.AbstractManipulatorItem], delta_time: float = None, alpha: float = None):
# item == None is the signal to push all model values into a final matrix at 'transform'
if item is not None:
if not isinstance(item, sc.AbstractManipulatorItem):
item = self.__items.get(item)
item = item[0] if item else None
# Either of these adjust the pixel-to-world mapping
if item == self.__center_of_interest or item == self.__projection:
self.calculate_pixel_to_world(Gf.Vec3d(self.get_as_floats(self.__center_of_interest)))
super()._item_changed(item)
return
if self.__anim_stream and delta_time is None:
# If this is the end of an interaction (mouse up), return and let animation/inertia continue as is.
if _optional_int(self, 'interaction_ended', 0) or (self.__intertia_state is None):
return
# If inertia is active, look values should be passed through; so as camera is drifting the look-rotation
# is still applied. If there is no look applied, then inertia is killed for any other movement.
look = self.get_as_floats(self.__look) if self.__flight_inertia_active else None
if look:
# Destroy the look-velocity correction; otherwise look wil lag as camera drifts through inertia
self.__look_velocity = None
else:
self._kill_external_animation(False)
return
tumble, look, move, fly = None, None, None, None
if item is None or item == self.__tumble:
tumble = self.get_as_floats(self.__tumble)
if tumble:
tumble = Gf.Vec3d(*tumble)
self.set_floats(self.__tumble, None)
if item is None or item == self.__look:
look = self.get_as_floats(self.__look)
if look:
look = Gf.Vec3d(*look)
self.set_floats(self.__look, None)
if item is None or item == self.__move:
move = self.get_as_floats(self.__move)
if move:
move = Gf.Vec3d(*move)
self.set_floats(self.__move, None)
if item is None or item == self.__fly:
fly = self.get_as_floats(self.__fly)
if fly:
fly = Gf.Vec3d(*fly)
fly_speed = _optional_floats(self, 'fly_speed')
if fly_speed:
if len(fly_speed) == 1:
fly_speed = Gf.Vec3d(fly_speed[0], fly_speed[0], fly_speed[0])
else:
fly_speed = Gf.Vec3d(*fly_speed)
# Flight speed is multiplied by 5 for VP-1 compatability
fly = Gf.CompMult(fly, fly_speed * 5)
self.__last_applied = ModelState(tumble, look, move, fly)
if (delta_time is not None) or self.__last_applied.any_values():
self._apply_state(self.__last_applied, delta_time, alpha)
else:
super()._item_changed(item)
def calculate_pixel_to_world(self, pos):
projection = Gf.Matrix4d(*self.get_as_floats(self.__projection))
top_left, bot_right = self._calculate_pixel_to_world(pos, projection, projection.GetInverse())
x = top_left[0] - bot_right[0]
y = top_left[1] - bot_right[1]
# For NDC-z we don't want to use the clip range which could be huge
# So avergae the X-Y scales instead
self.set_floats('ndc_scale', [x, y, (x + y) * 0.5])
def _calculate_pixel_to_world(self, pos, projection, inv_projection):
ndc = projection.Transform(pos)
top_left = inv_projection.Transform(Gf.Vec3d(-1, -1, ndc[2]))
bot_right = inv_projection.Transform(Gf.Vec3d(1, 1, ndc[2]))
return (top_left, bot_right)
def _set_animation_key(self, key: str):
self.__animation_key = key
def _start_external_events(self, flight_mode: bool = False):
# If flight mode is already doing inertia, do nothing.
# This is for the case where right-click for WASD navigation end with a mouse up and global inertia is enabled.
if self.__flight_inertia_active and not flight_mode:
return False
# Quick check that inertia is enabled for any mode other than flight
if not flight_mode:
inertia_modes = self.__settings.get('/exts/omni.kit.manipulator.camera/inertiaModesEnabled')
len_inertia_enabled = len(inertia_modes) if inertia_modes else 0
if len_inertia_enabled == 0:
return
if len_inertia_enabled == 1:
self.__inertia_modes = [inertia_modes[0], 0, 0, 0]
elif len_inertia_enabled == 2:
self.__inertia_modes = [inertia_modes[0], inertia_modes[1], 0, 0]
elif len_inertia_enabled == 3:
self.__inertia_modes = [inertia_modes[0], inertia_modes[1], inertia_modes[2], 0]
else:
self.__inertia_modes = inertia_modes
else:
self.__inertia_modes = [1, 0, 1, 0]
# Setup the animation state
self.__anim_stopped = 0
self.__intertia_state = None
self.__flight_inertia_active = flight_mode
# Pull more infor from inertai settings fro what is to be created
create_tumble = self.__inertia_modes[1]
create_look = flight_mode or self.__inertia_modes[2]
create_move = self.__inertia_modes[3]
create_fly = flight_mode
if self.__anim_stream:
# Handle case where key was down, then lifted, then pushed again by recreating look_velocity / flight correction.
create_tumble = create_tumble and not self.__tumble_velocity
create_look = create_look and not self.__look_velocity
create_move = create_move and not self.__move_velocity
create_fly = False
clamp_dt = self.__settings.get('/ext/omni.kit.manipulator.camera/clampUpdates') or 0.15
if create_look:
self.__look_velocity = Velocity.create(self, 'look', clamp_dt)
if create_tumble:
self.__tumble_velocity = Velocity.create(self, 'tumble', clamp_dt)
if create_move:
self.__move_velocity = Velocity.create(self, 'move', clamp_dt)
if create_fly:
self.__fly_velocity = Velocity.create(self, 'fly', clamp_dt)
# If any velocities are valid, then setup an animation to apply it.
if self.__tumble_velocity or self.__look_velocity or self.__move_velocity or self.__fly_velocity:
# Only set up the animation in flight-mode, let _stop_external_events set it up otherwise
if flight_mode and not self.__anim_stream:
self.__anim_stream = AnimationEventStream.get_instance()
self.__anim_stream.add_animation(self._apply_state_tick, self.__animation_key)
return True
if self.__anim_stream:
anim_stream, self.__anim_stream = self.__anim_stream, None
anim_stream.destroy()
return False
def _stop_external_events(self, flight_mode: bool = False):
# Setup animation for inertia in non-flight mode
if not flight_mode and not self.__anim_stream:
tumble, look, move = None, None, None
if self.__last_applied and (self.__tumble_velocity or self.__look_velocity or self.__move_velocity or self.__fly_velocity):
if self.__tumble_velocity and self.__inertia_modes[1]:
tumble = self.__last_applied.tumble
if self.__look_velocity and self.__inertia_modes[2]:
look = self.__last_applied.look
if self.__move_velocity and self.__inertia_modes[3]:
move = self.__last_applied.move
if tumble or look or move:
self.__last_applied = ModelState(tumble, look, move, self.__last_applied.fly)
self.__anim_stream = AnimationEventStream.get_instance()
self.__anim_stream.add_animation(self._apply_state_tick, self.__animation_key)
else:
self.__tumble_velocity = None
self.__look_velocity = None
self.__move_velocity = None
self.__fly_velocity = None
self.__intertia_state = None
return
self.__anim_stopped = time.time()
self.__intertia_state = self.__last_applied
self.__mark_animating(1)
def __mark_animating(self, interaction_animating: int):
item, _ = self.__items.get('interaction_animating', (None, None))
self.set_ints(item, [interaction_animating])
super()._item_changed(item)
def _apply_state_time(self, dt: float, apply_fn: Callable):
alpha = 1
if self.__anim_stopped:
now = time.time()
inertia_enabled = _optional_int(self, 'inertia_enabled', 0)
inertia_seconds = _optional_float(self, 'inertia_seconds', 0)
if inertia_enabled and inertia_seconds > 0:
alpha = 1.0 - ((now - self.__anim_stopped) / inertia_seconds)
if alpha > ALMOST_ZERO:
decay = self.__settings.get('/exts/omni.kit.manipulator.camera/inertiaDecay')
decay = _optional_int(self, 'inertia_decay', decay)
alpha = pow(alpha, decay) if decay else 1
else:
alpha = 0
else:
alpha = 0
if alpha == 0:
if self.__anim_stream:
anim_stream, self.__anim_stream = self.__anim_stream, None
anim_stream.destroy()
self.set_ints('interaction_ended', [1])
apply_fn(dt * alpha, 1)
if alpha == 0:
self.set_ints('interaction_ended', [0])
self.__mark_animating(0)
self.__tumble_velocity = None
self.__look_velocity = None
self.__move_velocity = None
self.__fly_velocity = None
self.__intertia_state = None
self.__flight_inertia_active = False
return False
return True
def _apply_state_tick(self, dt: float = None):
keep_anim = True
istate = self.__intertia_state
if istate:
if self.__flight_inertia_active:
# See _item_changed, but during an inertia move, look should still be applied (but without any velocity)
look = self.get_as_floats(self.__look)
if look:
self.set_floats(self.__look, None)
state = ModelState(None, look, None, istate.fly)
else:
tumble = (self.get_as_floats(self.__tumble) or istate.tumble) if self.__inertia_modes[1] else None
look = (self.get_as_floats(self.__look) or istate.look) if self.__inertia_modes[2] else None
move = (self.get_as_floats(self.__move) or istate.move) if self.__inertia_modes[3] else None
state = ModelState(tumble, look, move)
keep_anim = self._apply_state_time(dt, lambda dt, alpha: self._apply_state(state, dt, alpha))
else:
keep_anim = self._apply_state_time(dt, lambda dt, alpha: self._item_changed(None, dt, alpha))
if not keep_anim and self.__anim_stream:
self.__destroy_animation()
def _kill_external_animation(self, kill_stream: bool = True, initial_transform = None):
if kill_stream:
self.__destroy_animation()
# self._stop_external_events()
self.__tumble_velocity = None
self.__look_velocity = None
self.__move_velocity = None
self.__fly_velocity = None
self.__intertia_state = None
self.__flight_inertia_active = False
# Reset internal transform if provided
if initial_transform:
self.set_floats('transform', initial_transform)
self.set_floats('initial_transform', initial_transform)
@carb.profiler.profile
def _apply_state(self, state: ModelState, dt: float = None, alpha: float = None):
up_axis = _optional_floats(self, 'up_axis')
rotation_precision = _optional_int(self, 'rotation_precision', 5)
last_transform = Gf.Matrix4d(*self.get_as_floats(self.__transform))
xforms = TransformAccumulator(last_transform)
center_of_interest = None
tumble = state.tumble
if self.__tumble_velocity:
tumble = self.__tumble_velocity.apply(tumble, dt, alpha)
if tumble:
center_of_interest = Gf.Vec3d(*self.get_as_floats(self.__center_of_interest))
tumble = Gf.Vec3d(round(tumble[0], rotation_precision), round(tumble[1], rotation_precision), round(tumble[2], rotation_precision))
final_xf = xforms.get_tumble(tumble, center_of_interest, up_axis)
else:
final_xf = Gf.Matrix4d(1)
look = state.look
if self.__look_velocity:
look = self.__look_velocity.apply(look, dt, alpha)
if look:
look = Gf.Vec3d(round(look[0], rotation_precision), round(look[1], rotation_precision), round(look[2], rotation_precision))
final_xf = final_xf * xforms.get_look(look, up_axis)
move = state.move
if self.__move_velocity:
move = self.__move_velocity.apply(move, dt, alpha)
if move:
final_xf = xforms.get_translation(move) * final_xf
adjust_coi = move[2] != 0
else:
adjust_coi = False
fly = None if _optional_int(self, 'disable_fly', 0) else state.fly
if self.__fly_velocity:
fly = self.__fly_velocity.apply(fly, dt, alpha)
if fly:
if _optional_bool(self, 'fly_mode_lock_view', False):
decomp_rot = last_transform.ExtractRotation().Decompose(Gf.Vec3d.ZAxis(), Gf.Vec3d.YAxis(), Gf.Vec3d.XAxis())
rot_z = Gf.Rotation(Gf.Vec3d.ZAxis(), decomp_rot[0])
rot_y = Gf.Rotation(Gf.Vec3d.YAxis(), decomp_rot[1])
rot_x = Gf.Rotation(Gf.Vec3d.XAxis(), decomp_rot[2])
last_transform_tr = Gf.Matrix4d().SetTranslate(last_transform.ExtractTranslation())
last_transform_rt_0 = Gf.Matrix4d().SetRotate(rot_x)
last_transform_rt_1 = Gf.Matrix4d().SetRotate(rot_y * rot_z)
if up_axis[2]:
fly[1], fly[2] = -fly[2], fly[1]
elif Gf.Dot(Gf.Vec3d.ZAxis(), last_transform.TransformDir((0, 0, 1))) < 0:
fly[1], fly[2] = -fly[1], -fly[2]
flight_xf = xforms.get_translation(fly)
last_transform = last_transform_rt_0 * flight_xf * last_transform_rt_1 * last_transform_tr
else:
final_xf = xforms.get_translation(fly) * final_xf
transform = final_xf * last_transform
# If zooming out in Z, adjust the center-of-interest and pixel-to-world in 'ndc_scale'
self.set_ints(self.__adjust_center_of_interest, [adjust_coi])
if adjust_coi:
center_of_interest = center_of_interest or Gf.Vec3d(*self.get_as_floats(self.__center_of_interest))
coi = Gf.Matrix4d(*self.get_as_floats('initial_transform')).Transform(center_of_interest)
coi = transform.GetInverse().Transform(coi)
self.calculate_pixel_to_world(coi)
self.set_floats(self.__transform, _flatten_matrix(transform))
super()._item_changed(self.__transform)
def _broadcast_mode(self, mode: str):
if mode == self.__mode:
return
viewport_id = _optional_int(self, 'viewport_id', None)
if viewport_id is None:
return
# Send a signal that contains the viewport_id and mode (carb requires a homogenous array, so as strings)
self.__settings.set("/exts/omni.kit.manipulator.camera/viewportMode", [str(viewport_id), mode])
self.__mode = mode
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/manipulator.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['CameraManipulatorBase', 'adjust_center_of_interest']
from omni.ui import scene as sc
from .gestures import build_gestures
from .model import CameraManipulatorModel, _optional_bool, _flatten_matrix
from pxr import Gf
# Common math to adjust the center-of-interest
def adjust_center_of_interest(model: CameraManipulatorModel, initial_transform: Gf.Matrix4d, final_transform: Gf.Matrix4d):
# Adjust the center-of-interest if requested.
# For object-centric movement we always adjust it if an object was hit
object_centric = _optional_bool(model, 'object_centric_movement')
coi_picked = model.get_as_floats('center_of_interest_picked') if object_centric else False
adjust_center_of_interest = (object_centric and coi_picked) or _optional_bool(model, 'adjust_center_of_interest')
if not adjust_center_of_interest:
return None, None
# When adjusting the center of interest we'll operate on a direction and length (in camera-space)
# Which helps to not introduce -drift- as we jump through the different spaces to update it.
# Final camera position
world_cam_pos = final_transform.Transform(Gf.Vec3d(0, 0, 0))
# center_of_interest_start is in camera-space
center_of_interest_start = Gf.Vec3d(*model.get_as_floats('center_of_interest_start'))
# Save the direction
center_of_interest_dir = center_of_interest_start.GetNormalized()
if coi_picked:
# Keep original center-of-interest direction, but adjust its length to the picked position
world_coi = Gf.Vec3d(coi_picked[0], coi_picked[1], coi_picked[2])
# TODO: Setting to keep subsequent movement focused on screen-center or move it to the object.
if False:
# Save the center-of-interest to the hit-point by adjusting direction
center_of_interest_dir = final_transform.GetInverse().Transform(world_coi).GetNormalized()
else:
# Move center-of-interest to world space at initial transform
world_coi = initial_transform.Transform(center_of_interest_start)
# Now get the length between final camera-position and the world-space-coi,
# and apply that to the direction.
center_of_interest_end = center_of_interest_dir * (world_cam_pos - world_coi).GetLength()
return center_of_interest_start, center_of_interest_end
# Base class, resposible for building up the gestures
class CameraManipulatorBase(sc.Manipulator):
def __init__(self, bindings: dict = None, model: sc.AbstractManipulatorModel = None, *args, **kwargs):
super().__init__(*args, **kwargs)
self._screen = None
# Provide some defaults
self.model = model or CameraManipulatorModel()
self.bindings = bindings
# Provide a slot for a user to fill in with a GestureManager but don't use anything by default
self.manager = None
self.gestures = []
self.__transform = None
self.__gamepad = None
def _on_began(self, model: CameraManipulatorModel, *args, **kwargs):
pass
def on_build(self):
# Need to hold a reference to this or the sc.Screen would be destroyed when out of scope
self.__transform = sc.Transform()
with self.__transform:
self._screen = sc.Screen(gestures=self.gestures or build_gestures(self.model, self.bindings, self.manager, self._on_began))
def destroy(self):
if self.__gamepad:
self.__gamepad.destroy()
self.__gamepad = None
if self.__transform:
self.__transform.clear()
self.__transform = None
self._screen = None
if hasattr(self.model, 'destroy'):
self.model.destroy()
@property
def gamepad_enabled(self) -> bool:
return self.__gamepad is not None
@gamepad_enabled.setter
def gamepad_enabled(self, value: bool):
if value:
if not self.__gamepad:
from .gamepad import GamePadController
self.__gamepad = GamePadController(self)
elif self.__gamepad:
self.__gamepad.destroy()
self.__gamepad = None
# We have all the imoorts already, so provide a simple omni.ui.scene camera manipulator that one can use.
# Takes an omni.ui.scene view and center-of-interest and applies model changes to that view
class SceneViewCameraManipulator(CameraManipulatorBase):
def __init__(self, center_of_interest, *args, **kwargs):
super().__init__(*args, **kwargs)
self.__center_of_interest = center_of_interest
def _on_began(self, model: CameraManipulatorModel, mouse):
model.set_floats('center_of_interest', [self.__center_of_interest[0], self.__center_of_interest[1], self.__center_of_interest[2]])
if _optional_bool(model, 'orthographic'):
model.set_ints('disable_tumble', [1])
model.set_ints('disable_look', [1])
def on_model_updated(self, item):
model = self.model
if item == model.get_item('transform'):
final_transform = Gf.Matrix4d(*model.get_as_floats(item))
initial_transform = Gf.Matrix4d(*model.get_as_floats('initial_transform'))
# Adjust our center-of-interest
coi_start, coi_end = adjust_center_of_interest(model, initial_transform, final_transform)
if coi_end:
self.__center_of_interest = coi_end
# omni.ui.scene.SceneView.CameraModel expects 'view', but we operate on 'transform'
# The following will push our transform changes into the SceneView.model.view
sv_model = self.scene_view.model
view = sv_model.get_item('view')
sv_model.set_floats(view, _flatten_matrix(final_transform.GetInverse()))
sv_model._item_changed(view)
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/gesturebase.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['CameraGestureBase']
from omni.ui import scene as sc
from .model import _accumulate_values, _optional_bool, _optional_floats, _flatten_matrix
from .flight_mode import get_keyboard_input
import carb.settings
from pxr import Gf
import time
from typing import Callable, Sequence
# Base class for camera transform manipulation/gesture
#
class CameraGestureBase(sc.DragGesture):
def __init__(self, model: sc.AbstractManipulatorModel, configure_model: Callable = None, name: str = None, *args, **kwargs):
super().__init__(*args, **kwargs)
self.name = name if name else self.__class__.__name__
self.model = model
# XXX: Need a manipulator on_began method
self.__configure_model = configure_model
self.__prev_mouse = None
self.__prev_mouse_time = None
self.__keyboard = None
self.__fly_active = None
def destroy(self):
self.model = None
self._disable_flight()
super().destroy()
@property
def center_of_interest(self):
return Gf.Vec3d(self.model.get_as_floats('center_of_interest'))
@property
def initial_transform(self):
return Gf.Matrix4d(*self.model.get_as_floats('initial_transform'))
@property
def last_transform(self):
return Gf.Matrix4d(*self.model.get_as_floats('transform'))
@property
def projection(self):
return Gf.Matrix4d(*self.model.get_as_floats('projection'))
@property
def orthographic(self):
return _optional_bool(self.model, 'orthographic')
@property
def disable_pan(self):
return _optional_bool(self.model, 'disable_pan')
@property
def disable_tumble(self):
return _optional_bool(self.model, 'disable_tumble')
@property
def disable_look(self):
return _optional_bool(self.model, 'disable_look')
@property
def disable_zoom(self):
return _optional_bool(self.model, 'disable_zoom')
@property
def intertia(self):
inertia = _optional_bool(self.model, 'inertia_enabled')
if not inertia:
return 0
inertia = _optional_floats(self.model, 'inertia_seconds')
return inertia[0] if inertia else 0
@property
def up_axis(self):
# Assume Y-up if not specified
return _optional_bool(self.model, 'up_axis', 1)
@staticmethod
def __conform_speed(values):
if values:
vlen = len(values)
if vlen == 1:
return (values[0], values[0], values[0])
if vlen == 2:
return (values[0], values[1], 0)
return values
return (1, 1, 1)
def get_rotation_speed(self, secondary):
model = self.model
rotation_speed = self.__conform_speed(_optional_floats(model, 'rotation_speed'))
secondary_speed = self.__conform_speed(_optional_floats(model, secondary))
return (rotation_speed[0] * secondary_speed[0],
rotation_speed[1] * secondary_speed[1],
rotation_speed[2] * secondary_speed[2])
@property
def tumble_speed(self):
return self.get_rotation_speed('tumble_speed')
@property
def look_speed(self):
return self.get_rotation_speed('look_speed')
@property
def move_speed(self):
return self.__conform_speed(_optional_floats(self.model, 'move_speed'))
@property
def world_speed(self):
model = self.model
ndc_scale = self.__conform_speed(_optional_floats(model, 'ndc_scale'))
world_speed = self.__conform_speed(_optional_floats(model, 'world_speed'))
return Gf.CompMult(world_speed, ndc_scale)
def _disable_flight(self):
if self.__keyboard:
self.__keyboard.destroy()
def _setup_keyboard(self, model, exit_mode: bool) -> bool:
"""Setup keyboard and return whether the manipualtor mode (fly) was broadcast to consumers"""
self.__keyboard = get_keyboard_input(model, self.__keyboard)
if self.__keyboard:
# If the keyboard is active, broadcast that fly mode has been entered
if self.__keyboard.active:
self.__fly_active = True
model._broadcast_mode("fly")
return True
# Check if fly mode was exited
if self.__fly_active:
exit_mode = self.name.replace('Gesture', '').lower() if exit_mode else ""
model._broadcast_mode(exit_mode)
return True
return False
# omni.ui.scene Gesture interface
# We absract on top of this due to asynchronous picking, in that we
# don't want a gesture to begin until the object/world-space query has completed
# This 'delay' could be a setting, but will wind up 'snapping' from the transition
# from a Camera's centerOfInterest to the new world-space position
def on_began(self, mouse: Sequence[float] = None):
model = self.model
# Setup flight mode and possibly broadcast that mode to any consumers
was_brodcast = self._setup_keyboard(model, False)
# If fly mode was not broadcast, then brodcast this gesture's mode
if not was_brodcast:
# LookGesture => look
manip_mode = self.name.replace('Gesture', '').lower()
model._broadcast_mode(manip_mode)
mouse = mouse if mouse else self.sender.gesture_payload.mouse
if self.__configure_model:
self.__configure_model(model, mouse)
self.__prev_mouse = mouse
xf = model.get_as_floats('transform')
if xf:
# Save an imutable copy of transform for undoable end-event
model.set_floats('initial_transform', xf.copy())
coi = model.get_as_floats('center_of_interest')
if coi:
# Save an imutable copy of center_of_interest for end adjustment if desired (avoiding space conversions)
model.set_floats('center_of_interest_start', coi.copy())
model._item_changed('center_of_interest')
model.set_ints('interaction_active', [1])
def on_changed(self, mouse: Sequence[float] = None):
self._setup_keyboard(self.model, True)
self.__last_change = time.time()
cur_mouse = mouse if mouse else self.sender.gesture_payload.mouse
mouse_moved = (cur_mouse[0] - self.__prev_mouse[0], cur_mouse[1] - self.__prev_mouse[1])
# if (mouse_moved[0] != 0) or (mouse_moved[1] != 0):
self.__prev_mouse = cur_mouse
self.on_mouse_move(mouse_moved)
def on_ended(self):
model = self.model
final_position = True
# Brodcast that the camera manipulationmode is now none
model._broadcast_mode("")
if self.__keyboard:
self.__keyboard = self.__keyboard.end()
final_position = self.__keyboard is None
self.__prev_mouse = None
self.__prev_mouse_time = None
if final_position:
if model._start_external_events(False):
model._stop_external_events(False)
self.__apply_as_undoable()
model.set_ints('adjust_center_of_interest', [])
model.set_floats('current_aperture', [])
model.set_ints('interaction_active', [0])
# model.set_floats('center_of_interest_start', [])
# model.set_floats('center_of_interest_picked', [])
def dirty_items(self, model: sc.AbstractManipulatorModel):
model = self.model
cur_item = model.get_item('transform')
if model.get_as_floats('initial_transform') != model.get_as_floats(cur_item):
return [cur_item]
def __apply_as_undoable(self):
model = self.model
dirty_items = self.dirty_items(model)
if dirty_items:
model.set_ints('interaction_ended', [1])
try:
for item in dirty_items:
model._item_changed(item)
except:
raise
finally:
model.set_ints('interaction_ended', [0])
def _accumulate_values(self, key: str, x: float, y: float, z: float):
item = _accumulate_values(self.model, key, x, y, z)
if item:
self.model._item_changed(None if self.__keyboard else item)
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/gamepad.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
from .model import _accumulate_values
import omni.kit.app
from omni.ui import scene as sc
import carb
import asyncio
from typing import Dict, List, Sequence, Set
# Setting per action mode (i.e):
# /exts/omni.kit.manipulator.camera/gamePad/fly/deadZone
# /exts/omni.kit.manipulator.camera/gamePad/look/deadZone
ACTION_MODE_SETTING_KEYS = {"scale", "deadZone"}
ACTION_MODE_SETTING_ROOT = "/exts/omni.kit.manipulator.camera/gamePad"
# Setting per action trigger (i.e):
# /exts/omni.kit.manipulator.camera/gamePad/button/a/scale
ACTION_TRIGGER_SETTING_KEYS = {"scale"}
__all__ = ['GamePadController']
class ValueMapper:
def __init__(self, mode: str, trigger: str, index: int, sub_index: int):
self.__mode: str = mode
self.__trigger: str = trigger
self.__index: int = index
self.__sub_index = sub_index
@property
def mode(self) -> str:
return self.__mode
@property
def trigger(self) -> str:
return self.__trigger
@property
def index(self) -> int:
return self.__index
@property
def sub_index(self) -> int:
return self.__sub_index
class ModeSettings:
def __init__(self, action_mode: str, settings: carb.settings.ISettings):
self.__scale: float = 1.0
self.__dead_zone: float = 1e-04
self.__action_mode = action_mode
self.__setting_subs: Sequence[carb.settings.SubscriptionId] = []
for setting_key in ACTION_MODE_SETTING_KEYS:
sp = self.__get_setting_path(setting_key)
self.__setting_subs.append(
settings.subscribe_to_node_change_events(sp, lambda *args, k=setting_key: self.__setting_changed(*args, setting_key=k))
)
self.__setting_changed(None, carb.settings.ChangeEventType.CHANGED, setting_key=setting_key)
def __del__(self):
self.destroy()
def __get_setting_path(self, setting_key: str):
return f"{ACTION_MODE_SETTING_ROOT}/{self.__action_mode}/{setting_key}"
def __setting_changed(self, item: carb.dictionary.Item, event_type: carb.settings.ChangeEventType, setting_key: str):
if event_type == carb.settings.ChangeEventType.CHANGED:
setting_path = self.__get_setting_path(setting_key)
if setting_key == "scale":
self.__scale = carb.settings.get_settings().get(setting_path)
if self.__scale is None:
self.__scale = 1.0
elif setting_key == "deadZone":
# Use absolute value, no negative dead-zones and clamp to 1.0
dead_zone = carb.settings.get_settings().get(setting_path)
self.__dead_zone = min(abs(dead_zone) or 1e-04, 1.0) if (dead_zone is not None) else 0.0
def destroy(self, settings: carb.settings.ISettings = None):
settings = settings or carb.settings.get_settings()
for setting_sub in self.__setting_subs:
settings.unsubscribe_to_change_events(setting_sub)
self.__setting_subs = tuple()
def get_value(self, value: float, axis_idx: int) -> float:
# Legacy implementation, which scales input value into new range fitted by dead_zone
value = (value - self.__dead_zone) / (1.0 - self.__dead_zone)
value = max(0, min(1, value))
scale = self.__scale
return value * scale
# Somewhat simpler version that doesn't scale input by dead-zone
if abs(value) > self.__dead_zone:
return value * scale
return 0
def _limit_camera_velocity(value: float, settings: carb.settings.ISettings, context_name: str):
cam_limit = settings.get('/exts/omni.kit.viewport.window/cameraSpeedLimit')
if context_name in cam_limit:
vel_min = settings.get('/persistent/app/viewport/camVelocityMin')
if vel_min is not None:
value = max(vel_min, value)
vel_max = settings.get('/persistent/app/viewport/camVelocityMax')
if vel_max is not None:
value = min(vel_max, value)
return value
def _adjust_flight_speed(xyz_value: Sequence[float]):
y = xyz_value[1]
if y == 0.0:
return
import math
settings = carb.settings.get_settings()
value = settings.get('/persistent/app/viewport/camMoveVelocity') or 1
scaler = settings.get('/persistent/app/viewport/camVelocityScalerMultAmount') or 1.1
scaler = 1.0 + (max(scaler, 1.0 + 1e-8) - 1.0) * abs(y)
if y < 0:
value = value / scaler
elif y > 0:
value = value * scaler
if math.isfinite(value) and (value > 1e-8):
value = _limit_camera_velocity(value, settings, 'gamepad')
settings.set('/persistent/app/viewport/camMoveVelocity', value)
class GamePadController:
def __init__(self, manipulator: sc.Manipulator):
self.__manipulator: sc.Manipulator = manipulator
self.__gp_event_sub: Dict[carb.input.Gamepad, int] = {}
self.__compressed_events: Dict[int, float] = {}
self.__action_modes: Dict[str, List[float]] = {}
self.__app_event_sub: carb.events.ISubscription = None
self.__mode_settings: Dict[str, ModeSettings] = {}
self.__value_actions: Dict[carb.input.GamepadInput, ValueMapper] = {}
self.__setting_subs: Sequence[carb.settings.SubscriptionId] = []
# Some button presses need synthetic events because unlike keyboard input, carb gamepad doesn't repeat.
# event 1 left presssed: value = 0.5
# event 2 right pressed: value = 0.5
# these should cancel, but there is no notification of left event until it changes from 0.5
# This is all handled in __gamepad_event
trigger_synth = {carb.input.GamepadInput.RIGHT_TRIGGER, carb.input.GamepadInput.LEFT_TRIGGER}
shoulder_synth = {carb.input.GamepadInput.RIGHT_SHOULDER, carb.input.GamepadInput.LEFT_SHOULDER}
self.__synthetic_state_init = {
carb.input.GamepadInput.RIGHT_TRIGGER: trigger_synth,
carb.input.GamepadInput.LEFT_TRIGGER: trigger_synth,
carb.input.GamepadInput.RIGHT_SHOULDER: shoulder_synth,
carb.input.GamepadInput.LEFT_SHOULDER: shoulder_synth,
}
self.__synthetic_state = self.__synthetic_state_init.copy()
self.__init_gamepad_action(None, carb.settings.ChangeEventType.CHANGED)
self.__gp_connect_sub = self._iinput.subscribe_to_gamepad_connection_events(self.__gamepad_connection)
def __init_gamepad_action(self, item: carb.dictionary.Item, event_type: carb.settings.ChangeEventType):
if event_type != carb.settings.ChangeEventType.CHANGED:
return
self.__value_actions: Dict[carb.input.GamepadInput, ValueMapper] = {}
settings = carb.settings.get_settings()
create_subs = not bool(self.__setting_subs)
gamepad_action_paths = []
gamepad_input_names = ["rightStick", "leftStick", "dPad", "trigger", "shoulder", "button/a", "button/b", "button/x", "button/y"]
for gamepad_input in gamepad_input_names:
action_setting_path = f"{ACTION_MODE_SETTING_ROOT}/{gamepad_input}/action"
gamepad_action_paths.append(action_setting_path)
if create_subs:
self.__setting_subs.append(
settings.subscribe_to_node_change_events(action_setting_path, self.__init_gamepad_action)
)
# TODO: Maybe need more configuable/robust action mapping
def action_mapping_4(action_mode: str):
action_modes = action_mode.split(".")
if len(action_modes) != 1:
carb.log_error(f"Action mapping '{action_mode}' for quad input is invalid, using '{action_modes[0]}'")
action_mode = action_modes[0]
if action_mode == "look":
return action_mode, (0, 1), (0, 1, 0, 1)
return action_mode, (0, 2), (1, 0, 1, 0)
def action_mapping_2(action_mode: str):
action_modes = action_mode.split(".")
if len(action_modes) != 2:
action_modes = (action_modes[0], "x")
carb.log_error(f"Action mapping '{action_mode}' for dual input is invalid, using '{action_modes[0]}.x'")
axis = {'x': 0, 'y': 1, 'z': 2}.get(action_modes[1], 0)
return action_modes[0], axis, (0, 1)
def action_mapping_1(action_mode: str):
action_modes = action_mode.split(".")
if len(action_modes) != 2:
action_modes = (action_modes[0], "x")
carb.log_error(f"Action mapping '{action_mode}' for dual input is invalid, using '{action_modes[0]}.x'")
axis = {'x': 0, 'y': 1, 'z': 2}.get(action_modes[1], 0)
return action_modes[0], axis, 0
# Go through the list of named events and setup the action based on it's value
right_stick_action = settings.get(gamepad_action_paths[0])
if right_stick_action:
right_stick_action, axis, sub_idx = action_mapping_4(right_stick_action)
self.__value_actions[carb.input.GamepadInput.RIGHT_STICK_LEFT] = ValueMapper(right_stick_action, gamepad_input_names[0], axis[0], sub_idx[0])
self.__value_actions[carb.input.GamepadInput.RIGHT_STICK_RIGHT] = ValueMapper(right_stick_action, gamepad_input_names[0], axis[0], sub_idx[1])
self.__value_actions[carb.input.GamepadInput.RIGHT_STICK_UP] = ValueMapper(right_stick_action, gamepad_input_names[0], axis[1], sub_idx[2])
self.__value_actions[carb.input.GamepadInput.RIGHT_STICK_DOWN] = ValueMapper(right_stick_action, gamepad_input_names[0], axis[1], sub_idx[3])
left_stick_action = settings.get(gamepad_action_paths[1])
if left_stick_action:
left_stick_action, axis, sub_idx = action_mapping_4(left_stick_action)
self.__value_actions[carb.input.GamepadInput.LEFT_STICK_LEFT] = ValueMapper(left_stick_action, gamepad_input_names[1], axis[0], sub_idx[0])
self.__value_actions[carb.input.GamepadInput.LEFT_STICK_RIGHT] = ValueMapper(left_stick_action, gamepad_input_names[1], axis[0], sub_idx[1])
self.__value_actions[carb.input.GamepadInput.LEFT_STICK_UP] = ValueMapper(left_stick_action, gamepad_input_names[1], axis[1], sub_idx[2])
self.__value_actions[carb.input.GamepadInput.LEFT_STICK_DOWN] = ValueMapper(left_stick_action, gamepad_input_names[1], axis[1], sub_idx[3])
dpad_action = settings.get(gamepad_action_paths[2])
if dpad_action:
dpad_action, axis, sub_idx = action_mapping_4(dpad_action)
self.__value_actions[carb.input.GamepadInput.DPAD_LEFT] = ValueMapper(dpad_action, gamepad_input_names[2], axis[0], sub_idx[0])
self.__value_actions[carb.input.GamepadInput.DPAD_RIGHT] = ValueMapper(dpad_action, gamepad_input_names[2], axis[0], sub_idx[1])
self.__value_actions[carb.input.GamepadInput.DPAD_UP] = ValueMapper(dpad_action, gamepad_input_names[2], axis[1], sub_idx[2])
self.__value_actions[carb.input.GamepadInput.DPAD_DOWN] = ValueMapper(dpad_action, gamepad_input_names[2], axis[1], sub_idx[3])
trigger_action = settings.get(gamepad_action_paths[3])
if trigger_action:
trigger_action, axis, sub_idx = action_mapping_2(trigger_action)
self.__value_actions[carb.input.GamepadInput.RIGHT_TRIGGER] = ValueMapper(trigger_action, gamepad_input_names[3], axis, sub_idx[0])
self.__value_actions[carb.input.GamepadInput.LEFT_TRIGGER] = ValueMapper(trigger_action, gamepad_input_names[3], axis, sub_idx[1])
shoulder_action = settings.get(gamepad_action_paths[4])
if shoulder_action:
shoulder_action, axis, sub_idx = action_mapping_2(shoulder_action)
self.__value_actions[carb.input.GamepadInput.RIGHT_SHOULDER] = ValueMapper(shoulder_action, gamepad_input_names[4], axis, sub_idx[0])
self.__value_actions[carb.input.GamepadInput.LEFT_SHOULDER] = ValueMapper(shoulder_action, gamepad_input_names[4], axis, sub_idx[1])
button_action = settings.get(gamepad_action_paths[5])
if button_action:
button_action, axis, sub_idx = action_mapping_1(button_action)
self.__value_actions[carb.input.GamepadInput.A] = ValueMapper(button_action, gamepad_input_names[5], axis, sub_idx)
button_action = settings.get(gamepad_action_paths[6])
if button_action:
button_action, axis, sub_idx = action_mapping_1(button_action)
self.__value_actions[carb.input.GamepadInput.B] = ValueMapper(button_action, gamepad_input_names[6], axis, sub_idx)
button_action = settings.get(gamepad_action_paths[7])
if button_action:
button_action, axis, sub_idx = action_mapping_1(button_action)
self.__value_actions[carb.input.GamepadInput.X] = ValueMapper(button_action, gamepad_input_names[7], axis, sub_idx)
button_action = settings.get(gamepad_action_paths[8])
if button_action:
button_action, axis, sub_idx = action_mapping_1(button_action)
self.__value_actions[carb.input.GamepadInput.Y] = ValueMapper(button_action, gamepad_input_names[8], axis, sub_idx)
for value_mapper in self.__value_actions.values():
action_mode = value_mapper.mode
if self.__mode_settings.get(action_mode) is None:
self.__mode_settings[action_mode] = ModeSettings(action_mode, settings)
action_trigger = value_mapper.trigger
if self.__mode_settings.get(action_trigger) is None:
self.__mode_settings[action_trigger] = ModeSettings(action_trigger, settings)
def __del__(self):
self.destroy()
@property
def _iinput(self):
return carb.input.acquire_input_interface()
async def __apply_events(self):
# Grab the events to apply and reset the state to empty
events, self.__compressed_events = self.__compressed_events, {}
# Reset the synthetic state
self.__synthetic_state = self.__synthetic_state_init.copy()
if not events:
return
manipulator = self.__manipulator
if not manipulator:
return
model = manipulator.model
manipulator._on_began(model, None)
# Map the action to +/- values per x, y, z components
action_modes: Dict[str, Dict[int, List[float]]] = {}
for input, value in events.items():
action = self.__value_actions.get(input)
if not action:
continue
# Must exists, KeyError otherwise
mode_seting = self.__mode_settings[action.mode]
trigger_setting = self.__mode_settings[action.trigger]
# Get the dict for this action storing +/- values per x, y, z
pos_neg_value_dict = action_modes.get(action.mode) or {}
# Get the +/- values for the x, y, z component
pos_neg_values = pos_neg_value_dict.get(action.index) or [0, 0]
# Scale the value by the action's scaling factor
value = mode_seting.get_value(value, action.index)
# Scale the value by the trigger's scaling factor
value = trigger_setting.get_value(value, action.index)
# Store the +/- value into the proper slot '+' into 0, '-' into 1
pos_neg_values[action.sub_index] += value
# Store back into the dict mapping x, y, z to +/- values
pos_neg_value_dict[action.index] = pos_neg_values
# Store back into the dict storing the +/- values per x, y, z into the action
action_modes[action.mode] = pos_neg_value_dict
# Collapse the +/- values per individual action and x, y, z into a single total
for action_mode, pos_neg_value_dict in action_modes.items():
# Some components may not have been touched but need to preserve last value
xyz_value = self.__action_modes.get(action_mode) or [0, 0, 0]
for xyz_index, pos_neg_value in pos_neg_value_dict.items():
xyz_value[xyz_index] = pos_neg_value[0] - pos_neg_value[1]
# Apply model speed to anything but fly (that is handled by model itself)
if action_mode != "fly":
model_speed = model.get_item(f"{action_mode}_speed")
if model_speed is not None:
model_speed = model.get_as_floats(model_speed)
if model_speed is not None:
for i in range(len(model_speed)):
xyz_value[i] *= model_speed[i]
# Store the final values
self.__action_modes[action_mode] = xyz_value
# Prune any actions that now do nothing (has 0 for x, y, and z)
self.__action_modes = {
action_mode: xyz_value for action_mode, xyz_value in self.__action_modes.items() if (xyz_value[0] or xyz_value[1] or xyz_value[2])
}
has_data: bool = bool(self.__action_modes)
if has_data:
self.__apply_gamepad_state()
if hasattr(model, '_start_external_events'):
if has_data:
self.___start_external_events(model)
else:
self.__stop_external_events(model)
def ___start_external_events(self, model):
if self.__app_event_sub:
return
_broadcast_mode = getattr(model, '_broadcast_mode', None)
if _broadcast_mode:
_broadcast_mode("gamepad")
self.__app_event_sub = omni.kit.app.get_app().get_update_event_stream().create_subscription_to_pop(
self.__apply_gamepad_state,
name=f"omni.kit.manipulator.camera.GamePadController.{id(self)}",
# order=omni.kit.app.UPDATE_ORDER_PYTHON_ASYNC_FUTURE_END_UPDATE
)
model._start_external_events(True)
def __stop_external_events(self, model):
if self.__app_event_sub:
_broadcast_mode = getattr(model, '_broadcast_mode', None)
if _broadcast_mode:
_broadcast_mode("")
self.__app_event_sub = None
self.__action_modes = {}
model._stop_external_events(True)
def __apply_gamepad_state(self, *args, **kwargs):
manipulator = self.__manipulator
model = manipulator.model
# manipulator._on_began(model, None)
for action_mode, xyz_value in self.__action_modes.items():
if action_mode == "fly":
model.set_floats("fly", xyz_value)
continue
elif action_mode == "speed":
_adjust_flight_speed(xyz_value)
continue
item = _accumulate_values(model, action_mode, xyz_value[0], xyz_value[1], xyz_value[2])
if item:
model._item_changed(item)
def __gamepad_event(self, event: carb.input.GamepadEvent):
event_input = event.input
self.__compressed_events[event_input] = event.value
# Gamepad does not get repeat events, so on certain button presses there needs to be a 'synthetic' event
# that represents the inverse-key (left/right) based on its last/current state.
synth_state = self.__synthetic_state.get(event.input)
if synth_state:
for synth_input in synth_state:
del self.__synthetic_state[synth_input]
if synth_input != event_input:
self.__compressed_events[synth_input] = self._iinput.get_gamepad_value(event.gamepad, synth_input)
asyncio.ensure_future(self.__apply_events())
def __gamepad_connection(self, event: carb.input.GamepadConnectionEvent):
e_type = event.type
e_gamepad = event.gamepad
if e_type == carb.input.GamepadConnectionEventType.DISCONNECTED:
e_gamepad_sub = self.__gp_event_sub.get(e_gamepad)
if e_gamepad_sub:
self._iinput.unsubscribe_to_gamepad_events(e_gamepad, e_gamepad_sub)
del self.__gp_event_sub[e_gamepad]
pass
elif e_type == carb.input.GamepadConnectionEventType.CONNECTED:
if self.__gp_event_sub.get(e_gamepad):
carb.log_error("Gamepad connected event, but already subscribed")
return
gp_event_sub = self._iinput.subscribe_to_gamepad_events(e_gamepad, self.__gamepad_event)
if gp_event_sub:
self.__gp_event_sub[e_gamepad] = gp_event_sub
def destroy(self):
iinput = self._iinput
settings = carb.settings.get_settings()
# Remove gamepad connected subscriptions
if self.__gp_connect_sub:
iinput.unsubscribe_to_gamepad_connection_events(self.__gp_connect_sub)
self.__gp_connect_sub = None
# Remove gamepad event subscriptions
for gamepad, gamepad_sub in self.__gp_event_sub.items():
iinput.unsubscribe_to_gamepad_events(gamepad, gamepad_sub)
self.__gp_event_sub = {}
# Remove any pending state on the model
model = self.__manipulator.model if self.__manipulator else None
if model:
self.__stop_external_events(model)
self.__manipulator = None
# Remove any settings subscriptions
for setting_sub in self.__setting_subs:
settings.unsubscribe_to_change_events(setting_sub)
self.__setting_subs = []
# Destroy any mode/action specific settings
for action_mode, mode_settings in self.__mode_settings.items():
mode_settings.destroy(settings)
self.__mode_settings = {}
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/gestures.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['build_gestures', 'PanGesture', 'TumbleGesture', 'LookGesture', 'ZoomGesture']
from omni.ui import scene as sc
from .gesturebase import CameraGestureBase
from pxr import Gf
import carb
from typing import Callable
kDefaultKeyBindings = {
'PanGesture': 'Any MiddleButton',
'TumbleGesture': 'Alt LeftButton',
'ZoomGesture': 'Alt RightButton',
'LookGesture': 'RightButton'
}
def build_gestures(model: sc.AbstractManipulatorModel,
bindings: dict = None,
manager: sc.GestureManager = None,
configure_model: Callable = None):
def _parse_binding(binding_str: str):
keys = binding_str.split(' ')
button = {
'LeftButton': 0,
'RightButton': 1,
'MiddleButton': 2
}.get(keys.pop())
modifiers = 0
for mod_str in keys:
mod_bit = {
'Shift': carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT,
'Ctrl': carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL,
'Alt': carb.input.KEYBOARD_MODIFIER_FLAG_ALT,
'Super': carb.input.KEYBOARD_MODIFIER_FLAG_SUPER,
'Any': 0xffffffff,
}.get(mod_str)
if not mod_bit:
raise RuntimeError(f'Unparseable binding: {binding_str}')
modifiers = modifiers | mod_bit
return (button, modifiers)
if not bindings:
bindings = kDefaultKeyBindings
gestures = []
for gesture, binding in bindings.items():
instantiator = globals().get(gesture)
if not instantiator:
carb.log_warn(f'Gesture "{gesture}" was not found for key-binding: "{binding}"')
continue
button, modifers = _parse_binding(binding)
gestures.append(instantiator(model, configure_model, mouse_button=button, modifiers=modifers, manager=manager))
return gestures
class PanGesture(CameraGestureBase):
def on_mouse_move(self, mouse_moved):
if self.disable_pan:
return
world_speed = self.world_speed
move_speed = self.move_speed
self._accumulate_values('move', mouse_moved[0] * 0.5 * world_speed[0] * move_speed[0],
mouse_moved[1] * 0.5 * world_speed[1] * move_speed[1],
0)
class TumbleGesture(CameraGestureBase):
def on_mouse_move(self, mouse_moved):
if self.disable_tumble:
return
# Mouse moved is [-1,1], so make a full drag scross the viewport a 180 tumble
speed = self.tumble_speed
self._accumulate_values('tumble', mouse_moved[0] * speed[0] * -90,
mouse_moved[1] * speed[1] * 90,
0)
class LookGesture(CameraGestureBase):
def on_mouse_move(self, mouse_moved):
if self.disable_look:
return
# Mouse moved is [-1,1], so make a full drag scross the viewport a 180 look
speed = self.look_speed
self._accumulate_values('look', mouse_moved[0] * speed[0] * -90,
mouse_moved[1] * speed[1] * 90,
0)
class OrthoZoomAperture():
def __init__(self, model: sc.AbstractManipulatorModel, apertures):
self.__values = apertures.copy()
def apply(self, model: sc.AbstractManipulatorModel, distance: float):
# TODO ortho-speed
for i in range(2):
self.__values[i] -= distance * 2
model.set_floats('current_aperture', self.__values)
model._item_changed(model.get_item('current_aperture'))
def dirty_items(self, model: sc.AbstractManipulatorModel):
cur_ap = model.get_item('current_aperture')
if model.get_as_floats('initial_aperture') != model.get_as_floats(cur_ap):
return [cur_ap]
class OrthoZoomProjection():
def __init__(self, model: sc.AbstractManipulatorModel, projection):
self.__projection = projection.copy()
def apply(self, model: sc.AbstractManipulatorModel, distance: float):
# TODO ortho-speed
distance /= 3.0
rml = (2.0 / self.__projection[0])
tmb = (2.0 / self.__projection[5])
aspect = tmb / rml
rpl = rml * -self.__projection[12]
tpb = tmb * self.__projection[13]
rml -= distance
tmb -= distance * aspect
rpl += distance
tpb += distance
self.__projection[0] = 2.0 / rml
self.__projection[5] = 2.0 / tmb
#self.__projection[12] = -rpl / rml
#self.__projection[13] = tpb / tmb
model.set_floats('projection', self.__projection)
# Trigger recomputation of ndc_speed
model._item_changed(model.get_item('projection'))
def dirty_items(self, model: sc.AbstractManipulatorModel):
proj = model.get_item('projection')
return [proj]
if model.get_as_floats('projection') != model.get_as_floats(proj):
return [proj]
class ZoomGesture(CameraGestureBase):
def dirty_items(self, model: sc.AbstractManipulatorModel):
return super().dirty_items(model) if not self.__orth_zoom else self.__orth_zoom.dirty_items(model)
def __setup_ortho_zoom(self):
apertures = self.model.get_as_floats('initial_aperture')
if apertures:
self.__orth_zoom = OrthoZoomAperture(self.model, apertures)
return True
projection = self.model.get_as_floats('projection')
if projection:
self.__orth_zoom = OrthoZoomProjection(self.model, projection)
return True
carb.log_warn("Orthographic zoom needs a projection or aperture")
return False
def on_began(self, *args, **kwargs):
super().on_began(*args, **kwargs)
# Setup an orthographic movement (aperture adjustment) if needed
self.__orth_zoom = False
if self.orthographic:
self.__setup_ortho_zoom()
# self.model.set_ints('adjust_center_of_interest', [1])
# Zoom into center of view or mouse interest
self.__direction = Gf.Vec3d(self.center_of_interest.GetNormalized()) if False else None
def on_mouse_move(self, mouse_moved):
if self.disable_zoom:
return
# Compute length/radius from gesture start
distance = (mouse_moved[0] + mouse_moved[1]) * self.world_speed.GetLength() * 1.41421356
distance *= self.move_speed[2]
if self.__orth_zoom:
self.__orth_zoom.apply(self.model, distance)
return
# Zoom into view-enter or current mouse/world interest
direction = self.__direction if self.__direction else Gf.Vec3d(self.center_of_interest.GetNormalized())
amount = direction * distance
self._accumulate_values('move', amount[0], amount[1], amount[2])
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/tests/test_manipulator_camera.py | # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['TestManipulatorCamera', 'TestFlightMode']
from omni.ui.tests.test_base import OmniUiTest
from pathlib import Path
from omni.ui import scene as sc
from omni.ui import color as cl
import carb
import omni.kit
import omni.kit.app
import omni.ui as ui
from pxr import Gf
from omni.kit.manipulator.camera.manipulator import CameraManipulatorBase, SceneViewCameraManipulator, adjust_center_of_interest
import omni.kit.ui_test as ui_test
from carb.input import MouseEventType, KeyboardEventType, KeyboardInput
CURRENT_PATH = Path(carb.tokens.get_tokens_interface().resolve("${omni.kit.manipulator.camera}/data"))
TEST_WIDTH, TEST_HEIGHT = 500, 500
TEST_UI_CENTER = ui_test.Vec2(TEST_WIDTH / 2, TEST_HEIGHT / 2)
def _flatten_matrix(matrix: Gf.Matrix4d):
return [matrix[0][0], matrix[0][1], matrix[0][2], matrix[0][3],
matrix[1][0], matrix[1][1], matrix[1][2], matrix[1][3],
matrix[2][0], matrix[2][1], matrix[2][2], matrix[2][3],
matrix[3][0], matrix[3][1], matrix[3][2], matrix[3][3]]
class SimpleGrid():
def __init__(self, lineCount: float = 100, lineStep: float = 10, thicknes: float = 1, color: ui.color = ui.color(0.25)):
self.__transform = ui.scene.Transform()
with self.__transform:
for i in range(lineCount * 2 + 1):
ui.scene.Line(
((i - lineCount) * lineStep, 0, -lineCount * lineStep),
((i - lineCount) * lineStep, 0, lineCount * lineStep),
color=color, thickness=thicknes,
)
ui.scene.Line(
(-lineCount * lineStep, 0, (i - lineCount) * lineStep),
(lineCount * lineStep, 0, (i - lineCount) * lineStep),
color=color, thickness=thicknes,
)
class SimpleOrigin():
def __init__(self, length: float = 5, thickness: float = 4):
origin = (0, 0, 0)
with ui.scene.Transform():
ui.scene.Line(origin, (length, 0, 0), color=ui.color.red, thickness=thickness)
ui.scene.Line(origin, (0, length, 0), color=ui.color.green, thickness=thickness)
ui.scene.Line(origin, (0, 0, length), color=ui.color.blue, thickness=thickness)
# Create a few scenes with different camera-maniupulators (a general ui.scene manip and one that allows ortho-tumble )
class SimpleScene:
def __init__(self, ortho: bool = False, custom: bool = False, *args, **kwargs):
self.__scene_view = ui.scene.SceneView(*args, **kwargs)
if ortho:
view = [-1, 0, 0, 0, 0, 0, 0.9999999999999998, 0, 0, 0.9999999999999998, 0, 0, 0, 0, -1000, 1]
projection = [0.008, 0, 0, 0, 0, 0.008, 0, 0, 0, 0, -2.000002000002e-06, 0, 0, 0, -1.000002000002, 1]
else:
view = [0.7071067811865476, -0.40557978767263897, 0.5792279653395693, 0, -2.775557561562892e-17, 0.8191520442889919, 0.5735764363510462, 0, -0.7071067811865477, -0.4055797876726389, 0.5792279653395692, 0, 6.838973831690966e-14, -3.996234471857009, -866.0161835150924, 1.0000000000000002]
projection = [4.7602203407949375, 0, 0, 0, 0, 8.483787309173106, 0, 0, 0, 0, -1.000002000002, -1, 0, 0, -2.000002000002, 0]
view = Gf.Matrix4d(*view)
center_of_interest = [0, 0, -view.Transform((0, 0, 0)).GetLength()]
with self.__scene_view.scene:
self.items = [SimpleGrid(), ui.scene.Arc(100, axis=1, wireframe=True), SimpleOrigin()]
with ui.scene.Transform(transform = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1000, 0, 1000, 1]):
self.items.append(ui.scene.Arc(100, axis=1, wireframe=True, color=ui.color.green))
with ui.scene.Transform(transform = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -260, 0, 260, 1]):
self.items.append(ui.scene.Arc(100, axis=1, wireframe=True, color=ui.color.blue))
if custom:
self.items.append(CameraManipulatorBase())
else:
self.items.append(SceneViewCameraManipulator(center_of_interest))
# Push the start values into the CameraManipulator
self.setup_camera_model(self.items[-1].model, view, projection, center_of_interest, ortho)
def setup_camera_model(self, cam_model, view, projection, center_of_interest, ortho):
cam_model.set_floats('transform', _flatten_matrix(view.GetInverse()))
cam_model.set_floats('projection', projection)
cam_model.set_floats('center_of_interest', [0, 0, -view.Transform((0, 0, 0)).GetLength()])
if ortho:
cam_model.set_ints('orthographic', [ortho])
# Setup up the subscription to the CameraModel so changes here get pushed to SceneView
self.model_changed_sub = cam_model.subscribe_item_changed_fn(self.model_changed)
# And push the view and projection into the SceneView.model
cam_model._item_changed(cam_model.get_item('transform'))
cam_model._item_changed(cam_model.get_item('projection'))
def model_changed(self, model, item):
if item == model.get_item('transform'):
transform = Gf.Matrix4d(*model.get_as_floats(item))
# Signal that this this is the final change block, adjust our center-of-interest then
interaction_ended = model.get_as_ints('interaction_ended')
if interaction_ended and interaction_ended[0]:
transform = Gf.Matrix4d(*model.get_as_floats(item))
# Adjust the center-of-interest if requested (zoom out in perspective does this)
initial_transform = Gf.Matrix4d(*model.get_as_floats('initial_transform'))
coi_start, coi_end = adjust_center_of_interest(model, initial_transform, transform)
if coi_end:
model.set_floats('center_of_interest', [coi_end[0], coi_end[1], coi_end[2]])
# Push the start values into the SceneView
self.__scene_view.model.set_floats('view', _flatten_matrix(transform.GetInverse()))
elif item == model.get_item('projection'):
self.__scene_view.model.set_floats('projection', model.get_as_floats('projection'))
@property
def scene(self):
return self.__scene_view.scene
@property
def model(self):
return self.__scene_view.model
async def wait_human_delay(delay=1):
await ui_test.human_delay(delay)
class TestManipulatorCamera(OmniUiTest):
# Before running each test
async def setUp(self):
await super().setUp()
self._golden_img_dir = CURRENT_PATH.absolute().resolve().joinpath("tests")
# After running each test
async def tearDown(self):
self._golden_img_dir = None
await super().tearDown()
async def create_test_view(self, name: str, ortho: bool = False, custom: bool = False):
window = await self.create_test_window(width=TEST_WIDTH, height=TEST_HEIGHT, block_devices=False)
with window.frame:
scene_view = SimpleScene(ortho, custom)
return (window, scene_view)
async def _test_perspective_camera(self):
objects = await self.create_test_view('Perspective')
await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name='test_perspective_camera.png')
async def _test_orthographic_camera(self):
objects = await self.create_test_view('Orthographic', True)
await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name='test_orthographic_camera.png')
async def _test_custom_camera(self):
objects = await self.create_test_view('Custom Orthographic', True, True)
await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name='test_custom_camera.png')
async def _test_mouse_across_screen(self, mouse_down, mouse_up):
objects = await self.create_test_view('WASD Movement')
mouse_begin = ui_test.Vec2(0, TEST_UI_CENTER.y)
mouse_end = ui_test.Vec2(TEST_WIDTH , TEST_UI_CENTER.y)
await ui_test.input.emulate_mouse(MouseEventType.MOVE, mouse_begin)
await wait_human_delay()
try:
await ui_test.input.emulate_mouse(mouse_down, mouse_begin)
await ui_test.input.emulate_mouse_slow_move(mouse_begin, mouse_end)
await wait_human_delay()
finally:
await ui_test.input.emulate_mouse(mouse_up, mouse_end)
await wait_human_delay()
return objects
async def test_pan_across_screen(self):
"""Test pan across X is a full move across NDC by default"""
objects = await self._test_mouse_across_screen(MouseEventType.MIDDLE_BUTTON_DOWN, MouseEventType.MIDDLE_BUTTON_UP)
await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name='test_pan_across_screen.png')
async def test_look_across_screen(self):
"""Test look rotation across X is 180 degrees by default"""
objects = await self._test_mouse_across_screen(MouseEventType.RIGHT_BUTTON_DOWN, MouseEventType.RIGHT_BUTTON_UP)
await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name='test_look_across_screen.png')
class TestFlightMode(OmniUiTest):
async def create_test_view(self, name: str, custom=False, ortho: bool = False):
window = await self.create_test_window(width=TEST_WIDTH, height=TEST_HEIGHT, block_devices=False)
with window.frame:
simple_scene = SimpleScene()
return (window, simple_scene)
def get_translation(self, model):
matrix = model.view
return (matrix[12], matrix[13], matrix[14])
async def do_key_press(self, key: KeyboardInput, operation = None):
try:
await ui_test.input.emulate_keyboard(KeyboardEventType.KEY_PRESS, key)
await wait_human_delay()
if operation:
operation()
finally:
await ui_test.input.emulate_keyboard(KeyboardEventType.KEY_RELEASE, key)
await wait_human_delay()
async def test_movement(self):
"""Test flight movement via WASD keyboard."""
window, simple_scene = await self.create_test_view('WASD Movement')
model = simple_scene.model
await ui_test.input.emulate_mouse(MouseEventType.MOVE, TEST_UI_CENTER)
await wait_human_delay()
start_pos = self.get_translation(model)
try:
await ui_test.input.emulate_mouse(MouseEventType.RIGHT_BUTTON_DOWN, TEST_UI_CENTER)
await wait_human_delay()
await self.do_key_press(KeyboardInput.W)
after_w = self.get_translation(model)
# W should have moved Z forward
self.assertAlmostEqual(after_w[0], start_pos[0], places=5)
self.assertAlmostEqual(after_w[1], start_pos[1], places=5)
self.assertTrue(after_w[2] > start_pos[2])
await self.do_key_press(KeyboardInput.A)
after_wa = self.get_translation(model)
# A should have moved X left
self.assertTrue(after_wa[0] > after_w[0])
self.assertAlmostEqual(after_wa[1], after_w[1], places=5)
self.assertAlmostEqual(after_wa[2], after_w[2], places=5)
await self.do_key_press(KeyboardInput.S)
after_was = self.get_translation(model)
# S should have moved Z back
self.assertAlmostEqual(after_was[0], after_wa[0], places=5)
self.assertAlmostEqual(after_was[1], after_wa[1], places=5)
self.assertTrue(after_was[2] < after_wa[2])
await self.do_key_press(KeyboardInput.D)
after_wasd = self.get_translation(model)
# D should have moved X right
self.assertTrue(after_wasd[0] < after_was[0])
self.assertAlmostEqual(after_wasd[1], after_was[1], places=5)
self.assertAlmostEqual(after_wasd[2], after_was[2], places=5)
# Test disabling flight-mode in the model would stop keyboard from doing anything
before_wasd = self.get_translation(model)
simple_scene.items[-1].model.set_ints('disable_fly', [1])
await self.do_key_press(KeyboardInput.W)
await self.do_key_press(KeyboardInput.A)
await self.do_key_press(KeyboardInput.S)
await self.do_key_press(KeyboardInput.D)
await wait_human_delay()
after_wasd = self.get_translation(model)
simple_scene.items[-1].model.set_ints('disable_fly', [0])
self.assertTrue(Gf.IsClose(before_wasd, after_wasd, 1e-5))
finally:
await ui_test.input.emulate_mouse(MouseEventType.RIGHT_BUTTON_UP)
await wait_human_delay()
async def _test_speed_modifier(self, value_a, value_b):
vel_key = '/persistent/app/viewport/camMoveVelocity'
mod_amount_key = '/exts/omni.kit.manipulator.camera/flightMode/keyModifierAmount'
settings = carb.settings.get_settings()
window, simple_scene = await self.create_test_view('WASD Movement')
model = simple_scene.model
settings.set(vel_key, 5)
await ui_test.input.emulate_mouse(MouseEventType.MOVE, TEST_UI_CENTER)
await wait_human_delay()
def compare_velocity(velocity):
vel_value = settings.get(vel_key)
self.assertEqual(vel_value, velocity)
try:
compare_velocity(5)
await ui_test.input.emulate_mouse(MouseEventType.RIGHT_BUTTON_DOWN, TEST_UI_CENTER)
# By default Shift should double speed
await self.do_key_press(KeyboardInput.LEFT_SHIFT, lambda: compare_velocity(value_a))
# By default Shift should halve speed
await self.do_key_press(KeyboardInput.LEFT_CONTROL, lambda: compare_velocity(value_b))
await ui_test.input.emulate_mouse(MouseEventType.RIGHT_BUTTON_UP)
await wait_human_delay()
compare_velocity(5)
finally:
settings.set(vel_key, 5)
settings.set(mod_amount_key, 2)
await ui_test.input.emulate_mouse(MouseEventType.RIGHT_BUTTON_UP)
await wait_human_delay()
async def test_speed_modifier_a(self):
"""Test default flight speed adjustement: 2x"""
await self._test_speed_modifier(10, 2.5)
async def test_speed_modifier_b(self):
"""Test custom flight speed adjustement: 4x"""
carb.settings.get_settings().set('/exts/omni.kit.manipulator.camera/flightMode/keyModifierAmount', 4)
await self._test_speed_modifier(20, 1.25)
async def test_speed_modifier_c(self):
"""Test custom flight speed adjustement: 0x"""
# Test when set to 0
carb.settings.get_settings().set('/exts/omni.kit.manipulator.camera/flightMode/keyModifierAmount', 0)
await self._test_speed_modifier(5, 5)
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/tests/test_manipulator_usd.py | ## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
##
## NVIDIA CORPORATION and its licensors retain all intellectual property
## and proprietary rights in and to this software, related documentation
## and any modifications thereto. Any use, reproduction, disclosure or
## distribution of this software and related documentation without an express
## license agreement from NVIDIA CORPORATION is strictly prohibited.
##
__all__ = ['TestManipulatorUSDCamera']
from omni.kit.manipulator.camera.usd_camera_manipulator import UsdCameraManipulator
from omni.kit.manipulator.camera.model import CameraManipulatorModel, _flatten_matrix
import omni.usd
import omni.kit.test
import carb.settings
from pxr import Gf, Sdf, UsdGeom
from pathlib import Path
from typing import List, Sequence
import sys
import unittest
TESTS_PATH = Path(carb.tokens.get_tokens_interface().resolve("${omni.kit.manipulator.camera}/data")).absolute().resolve()
USD_FILES = TESTS_PATH.joinpath("tests", "usd")
class TestManipulatorUSDCamera(omni.kit.test.AsyncTestCase):
# Before running each test
async def setUp(self):
await omni.usd.get_context().new_stage_async()
self.stage = omni.usd.get_context().get_stage()
super().setUp()
# After running each test
async def tearDown(self):
super().tearDown()
def __reset_initial_xf(self, usd_manip, initial_transform_item, prim):
# Reset the initial transform to the current transform
matrix = omni.usd.get_world_transform_matrix(prim)
usd_manip.model.set_floats(initial_transform_item, _flatten_matrix(matrix))
# This synthesizes the start of a new event
usd_manip._set_context('', prim.GetPath())
def __setup_usdmanip_tumble_test(self, prim_path: Sdf.Path):
usd_manip = UsdCameraManipulator(prim_path=prim_path)
usd_manip.model = CameraManipulatorModel()
usd_manip._on_began(usd_manip.model)
cam_prim = self.stage.GetPrimAtPath(prim_path)
self.assertTrue(bool(cam_prim))
initial_transform_item = usd_manip.model.get_item('initial_transform')
tumble_item = usd_manip.model.get_item('tumble')
transform_item = usd_manip.model.get_item('transform')
self.__reset_initial_xf(usd_manip, initial_transform_item, cam_prim)
usd_manip.model.set_floats(transform_item, _flatten_matrix(Gf.Matrix4d(1)))
usd_manip.on_model_updated(transform_item)
return (usd_manip, cam_prim, initial_transform_item, tumble_item)
async def __test_tumble_camera(self, prim_path: Sdf.Path, rotations: List[Sequence[float]], epsilon: float = 1.0e-5):
(usd_manip, cam_prim,
initial_transform_item, tumble_item) = self.__setup_usdmanip_tumble_test(prim_path)
rotateYXZ = cam_prim.GetAttribute('xformOp:rotateYXZ')
self.assertIsNotNone(rotateYXZ)
cur_rot = Gf.Vec3d(rotateYXZ.Get())
self.assertTrue(Gf.IsClose(cur_rot, Gf.Vec3d(0, 0, 0), epsilon))
is_linux = sys.platform.startswith('linux')
for index, rotation in enumerate(rotations):
usd_manip.model.set_floats(tumble_item, [-90, 0, 0])
usd_manip.model._item_changed(tumble_item)
self.__reset_initial_xf(usd_manip, initial_transform_item, cam_prim)
cur_rot = Gf.Vec3d(rotateYXZ.Get())
is_equal = Gf.IsClose(cur_rot, Gf.Vec3d(rotation), epsilon)
if is_equal:
continue
# Linux and Windows are returning different results for some rotations that are essentially equivalent
is_equal = True
for current, expected in zip(cur_rot, rotation):
if not Gf.IsClose(current, expected, epsilon):
expected = abs(expected)
is_equal = (expected == 180) or (expected == 360)
if not is_equal:
break
self.assertTrue(is_equal,
msg=f"Rotation values differ: current: {cur_rot}, expected: {rotation}")
async def __test_camera_YXZ_edit(self, rotations: List[Sequence[float]]):
camera = UsdGeom.Camera.Define(self.stage, '/Camera')
cam_prim = camera.GetPrim()
cam_prim.CreateAttribute('omni:kit:centerOfInterest', Sdf.ValueTypeNames.Vector3d,
True, Sdf.VariabilityUniform).Set(Gf.Vec3d(0, 0, -10))
await self.__test_tumble_camera(cam_prim.GetPath(), rotations)
async def test_camera_rotate(self):
'''Test rotation values in USD (with controllerUseSRT set to False)'''
await self.__test_camera_YXZ_edit([
(0, -90, 0),
(0, 180, 0),
(0, 90, 0),
(0, 0, 0)
])
async def test_camera_rotate_SRT(self):
'''Test rotation accumulation in USD with controllerUseSRT set to True'''
settings = carb.settings.get_settings()
try:
settings.set('/persistent/app/camera/controllerUseSRT', True)
await self.__test_camera_YXZ_edit([
(0, -90, 0),
(0, -180, 0),
(0, -270, 0),
(0, -360, 0)
])
finally:
settings.destroy_item('/persistent/app/camera/controllerUseSRT')
async def test_camera_yup_in_zup(self):
'''Test Viewport rotation of a camera from a y-up layer, referenced in a z-up stage'''
await omni.usd.get_context().open_stage_async(str(USD_FILES.joinpath('yup_in_zup.usda')))
self.stage = omni.usd.get_context().get_stage()
await self.__test_tumble_camera(Sdf.Path('/World/yup_ref/Camera'),
[
(0, -90, 0),
(0, 180, 0),
(0, 90, 0),
(0, 0, 0)
]
)
async def test_camera_zup_in_yup(self):
'''Test Viewport rotation of a camera from a z-up layer, referenced in a y-up stage'''
await omni.usd.get_context().open_stage_async(str(USD_FILES.joinpath('zup_in_yup.usda')))
self.stage = omni.usd.get_context().get_stage()
await self.__test_tumble_camera(Sdf.Path('/World/zup_ref/Camera'),
[
(0, 0, -90),
(0, 0, 180),
(0, 0, 90),
(0, 0, 0)
]
)
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/tests/__init__.py | # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
from .test_manipulator_camera import *
from .test_manipulator_gamepad import *
from .test_manipulator_usd import *
from .test_viewport_manipulator import *
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/tests/test_manipulator_gamepad.py | # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['TestManipulatorGamepad']
import omni.kit.test
from omni.kit.manipulator.camera.manipulator import CameraManipulatorBase, SceneViewCameraManipulator, adjust_center_of_interest
import omni.ui as ui
from omni.ui import scene as sc
from omni.ui.tests.test_base import OmniUiTest
import omni.kit.ui_test as ui_test
import carb
from carb.input import GamepadInput
from pxr import Gf
from functools import partial
TEST_WIDTH, TEST_HEIGHT = 500, 500
def _flatten_matrix(matrix: Gf.Matrix4d):
return [matrix[0][0], matrix[0][1], matrix[0][2], matrix[0][3],
matrix[1][0], matrix[1][1], matrix[1][2], matrix[1][3],
matrix[2][0], matrix[2][1], matrix[2][2], matrix[2][3],
matrix[3][0], matrix[3][1], matrix[3][2], matrix[3][3]]
class SimpleGrid():
def __init__(self, lineCount: float = 100, lineStep: float = 10, thicknes: float = 1, color: ui.color = ui.color(0.25)):
self.__transform = ui.scene.Transform()
with self.__transform:
for i in range(lineCount * 2 + 1):
ui.scene.Line(
((i - lineCount) * lineStep, 0, -lineCount * lineStep),
((i - lineCount) * lineStep, 0, lineCount * lineStep),
color=color, thickness=thicknes,
)
ui.scene.Line(
(-lineCount * lineStep, 0, (i - lineCount) * lineStep),
(lineCount * lineStep, 0, (i - lineCount) * lineStep),
color=color, thickness=thicknes,
)
class SimpleOrigin():
def __init__(self, length: float = 5, thickness: float = 4):
origin = (0, 0, 0)
with ui.scene.Transform():
ui.scene.Line(origin, (length, 0, 0), color=ui.color.red, thickness=thickness)
ui.scene.Line(origin, (0, length, 0), color=ui.color.green, thickness=thickness)
ui.scene.Line(origin, (0, 0, length), color=ui.color.blue, thickness=thickness)
# Create a few scenes with different camera-maniupulators (a general ui.scene manip and one that allows ortho-tumble )
class SimpleScene:
def __init__(self, ortho: bool = False, custom: bool = False, *args, **kwargs):
self.__scene_view = ui.scene.SceneView(*args, **kwargs)
if ortho:
view = [-1, 0, 0, 0, 0, 0, 0.9999999999999998, 0, 0, 0.9999999999999998, 0, 0, 0, 0, -1000, 1]
projection = [0.008, 0, 0, 0, 0, 0.008, 0, 0, 0, 0, -2.000002000002e-06, 0, 0, 0, -1.000002000002, 1]
else:
view = [0.7071067811865476, -0.40557978767263897, 0.5792279653395693, 0, -2.775557561562892e-17, 0.8191520442889919, 0.5735764363510462, 0, -0.7071067811865477, -0.4055797876726389, 0.5792279653395692, 0, 6.838973831690966e-14, -3.996234471857009, -866.0161835150924, 1.0000000000000002]
projection = [4.7602203407949375, 0, 0, 0, 0, 8.483787309173106, 0, 0, 0, 0, -1.000002000002, -1, 0, 0, -2.000002000002, 0]
view = Gf.Matrix4d(*view)
center_of_interest = [0, 0, -view.Transform((0, 0, 0)).GetLength()]
with self.__scene_view.scene:
self.items = [SimpleGrid(), ui.scene.Arc(100, axis=1, wireframe=True), SimpleOrigin()]
with ui.scene.Transform(transform = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1000, 0, 1000, 1]):
self.items.append(ui.scene.Arc(100, axis=1, wireframe=True, color=ui.color.green))
with ui.scene.Transform(transform = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -260, 0, 260, 1]):
self.items.append(ui.scene.Arc(100, axis=1, wireframe=True, color=ui.color.blue))
if custom:
self.items.append(CameraManipulatorBase())
else:
self.items.append(SceneViewCameraManipulator(center_of_interest))
# Push the start values into the CameraManipulator
self.setup_camera_model(self.items[-1].model, view, projection, center_of_interest, ortho)
def __del__(self):
self.destroy()
def destroy(self):
for item in self.items:
if hasattr(item, 'destroy'):
item.destroy()
self.items = None
if self.__scene_view:
self.__scene_view.destroy()
self.__scene_view = None
def setup_camera_model(self, cam_model, view, projection, center_of_interest, ortho):
cam_model.set_floats('transform', _flatten_matrix(view.GetInverse()))
cam_model.set_floats('projection', projection)
cam_model.set_floats('center_of_interest', [0, 0, -view.Transform((0, 0, 0)).GetLength()])
if ortho:
cam_model.set_ints('orthographic', [ortho])
# Setup up the subscription to the CameraModel so changes here get pushed to SceneView
self.model_changed_sub = cam_model.subscribe_item_changed_fn(self.model_changed)
# And push the view and projection into the SceneView.model
cam_model._item_changed(cam_model.get_item('transform'))
cam_model._item_changed(cam_model.get_item('projection'))
def model_changed(self, model, item):
if item == model.get_item('transform'):
transform = Gf.Matrix4d(*model.get_as_floats(item))
# Signal that this this is the final change block, adjust our center-of-interest then
interaction_ended = model.get_as_ints('interaction_ended')
if interaction_ended and interaction_ended[0]:
transform = Gf.Matrix4d(*model.get_as_floats(item))
# Adjust the center-of-interest if requested (zoom out in perspective does this)
initial_transform = Gf.Matrix4d(*model.get_as_floats('initial_transform'))
coi_start, coi_end = adjust_center_of_interest(model, initial_transform, transform)
if coi_end:
model.set_floats('center_of_interest', [coi_end[0], coi_end[1], coi_end[2]])
# Push the start values into the SceneView
self.model.set_floats('view', _flatten_matrix(transform.GetInverse()))
elif item == model.get_item('projection'):
self.model.set_floats('projection', model.get_as_floats('projection'))
@property
def scene(self):
return self.__scene_view.scene
@property
def model(self):
return self.__scene_view.model
@property
def camera_maipulator(self):
return self.items[-1]
async def wait_human_delay(delay=1):
await ui_test.human_delay(delay)
def get_translation(model):
matrix = model.get_as_floats('view')
return (matrix[12], matrix[13], matrix[14])
class TestManipulatorGamepad(OmniUiTest):
async def create_test_view(self, name: str, custom=False, ortho: bool = False):
window = await self.create_test_window(width=TEST_WIDTH, height=TEST_HEIGHT, block_devices=False)
with window.frame:
simple_scene = SimpleScene()
return (window, simple_scene)
async def test_gamepad_initilization(self):
"""Test gamepad controller setup and destrution via carb.input."""
window, simple_scene = await self.create_test_view('Gamepad Movement')
simple_scene.camera_maipulator.gamepad_enabled = False
self.assertFalse(simple_scene.camera_maipulator.gamepad_enabled)
simple_scene.camera_maipulator.gamepad_enabled = True
self.assertTrue(simple_scene.camera_maipulator.gamepad_enabled)
simple_scene.camera_maipulator.gamepad_enabled = False
self.assertFalse(simple_scene.camera_maipulator.gamepad_enabled)
simple_scene.destroy()
async def test_gamepad_connection(self):
"""Test gamepad controller connection and disconnection doesn't throw"""
window, simple_scene = await self.create_test_view('Gamepad Movement')
simple_scene.camera_maipulator.gamepad_enabled = True
self.assertTrue(simple_scene.camera_maipulator.gamepad_enabled)
game_pad, game_pad_connected = None, False
input_provider = carb.input.acquire_input_provider()
try:
game_pad = input_provider.create_gamepad("Fake Gamepad for test", "00000000-00000000-0000-0000")
self.assertIsNotNone(game_pad)
input_provider.set_gamepad_connected(game_pad, True)
game_pad_connected = True
await wait_human_delay(5)
input_provider.set_gamepad_connected(game_pad, False)
game_pad_connected = False
await wait_human_delay(5)
finally:
if game_pad is not None:
if game_pad_connected:
input_provider.set_gamepad_connected(game_pad, False)
input_provider.destroy_gamepad(game_pad)
simple_scene.destroy()
async def test_gamepad_movement(self):
"""Test gamepad controller functionality"""
window, simple_scene = await self.create_test_view('Gamepad Movement')
self.assertIsNotNone(simple_scene.model)
simple_scene.camera_maipulator.gamepad_enabled = True
self.assertTrue(simple_scene.camera_maipulator.gamepad_enabled)
game_pad, game_pad_connected = None, False
input_provider = carb.input.acquire_input_provider()
try:
game_pad = input_provider.create_gamepad("Fake Gamepad for test", "00000000-00000000-0000-0000")
self.assertIsNotNone(game_pad)
input_provider.set_gamepad_connected(game_pad, True)
game_pad_connected = True
await wait_human_delay(5)
def test_moved_left(m_a, m_b):
tr_a = (m_a[12], m_a[13], m_a[14])
tr_b = (m_b[12], m_b[13], m_b[14])
self.assertTrue(tr_b[0] > tr_a[0])
self.assertTrue(Gf.IsClose(tr_a[1], tr_b[1], 1.0e-5))
self.assertTrue(Gf.IsClose(tr_a[2], tr_b[2], 1.0e-5))
def test_moved_right(m_a, m_b):
tr_a = (m_a[12], m_a[13], m_a[14])
tr_b = (m_b[12], m_b[13], m_b[14])
self.assertTrue(tr_b[0] < tr_a[0])
self.assertTrue(Gf.IsClose(tr_a[1], tr_b[1], 1.0e-5))
self.assertTrue(Gf.IsClose(tr_a[2], tr_b[2], 1.0e-5))
def test_moved_up(m_a, m_b):
tr_a = (m_a[12], m_a[13], m_a[14])
tr_b = (m_b[12], m_b[13], m_b[14])
self.assertTrue(Gf.IsClose(tr_a[0], tr_b[0], 1.0e-5))
self.assertTrue(tr_a[1] > tr_b[1])
self.assertTrue(Gf.IsClose(tr_a[2], tr_b[2], 1.0e-5))
def test_moved_down(m_a, m_b):
tr_a = (m_a[12], m_a[13], m_a[14])
tr_b = (m_b[12], m_b[13], m_b[14])
self.assertTrue(Gf.IsClose(tr_a[0], tr_b[0], 1.0e-5))
self.assertTrue(tr_a[1] < tr_b[1])
self.assertTrue(Gf.IsClose(tr_a[2], tr_b[2], 1.0e-5))
def test_moved_forward(m_a, m_b):
tr_a = (m_a[12], m_a[13], m_a[14])
tr_b = (m_b[12], m_b[13], m_b[14])
self.assertTrue(Gf.IsClose(tr_a[0], tr_b[0], 1.0e-5))
self.assertTrue(Gf.IsClose(tr_a[1], tr_b[1], 1.0e-5))
self.assertTrue(tr_a[2] < tr_b[2])
def test_moved_backward(m_a, m_b):
tr_a = (m_a[12], m_a[13], m_a[14])
tr_b = (m_b[12], m_b[13], m_b[14])
self.assertTrue(Gf.IsClose(tr_a[0], tr_b[0], 1.0e-5))
self.assertTrue(Gf.IsClose(tr_a[1], tr_b[1], 1.0e-5))
self.assertTrue(tr_a[2] > tr_b[2])
def test_no_move(m_a, m_b):
tr_a = (m_a[12], m_a[13], m_a[14])
tr_b = (m_b[12], m_b[13], m_b[14])
self.assertTrue(Gf.IsClose(tr_a, tr_b, 1.0e-5))
async def test_gamepad_input(input_dict, event_delay=15):
prev_m = simple_scene.model.get_as_floats('view').copy()
for input, test_fn in input_dict.items():
input_provider.buffer_gamepad_event(game_pad, input, 1.0)
await wait_human_delay(event_delay)
input_provider.buffer_gamepad_event(game_pad, input, 0.0)
await wait_human_delay(event_delay)
cur_m = simple_scene.model.get_as_floats('view').copy()
test_fn(prev_m, cur_m)
prev_m = cur_m
await test_gamepad_input({
GamepadInput.LEFT_STICK_LEFT: test_moved_left,
GamepadInput.LEFT_STICK_RIGHT: test_moved_right,
GamepadInput.LEFT_STICK_UP: test_moved_forward,
GamepadInput.LEFT_STICK_DOWN: test_moved_backward
})
await test_gamepad_input({
GamepadInput.DPAD_LEFT: test_moved_left,
GamepadInput.DPAD_RIGHT: test_moved_right,
GamepadInput.DPAD_UP: test_moved_forward,
GamepadInput.DPAD_DOWN: test_moved_backward
})
await test_gamepad_input({
GamepadInput.LEFT_TRIGGER: test_moved_down,
GamepadInput.RIGHT_TRIGGER: test_moved_up,
})
await test_gamepad_input({
GamepadInput.LEFT_SHOULDER: test_moved_left,
GamepadInput.RIGHT_SHOULDER: test_moved_right,
})
def test_rot_x(is_greater: bool, m_a, m_b):
rt_a = Gf.Matrix4d(*m_a).ExtractRotation().Decompose(Gf.Vec3d.XAxis(), Gf.Vec3d.YAxis(), Gf.Vec3d.ZAxis())
rt_b = Gf.Matrix4d(*m_b).ExtractRotation().Decompose(Gf.Vec3d.XAxis(), Gf.Vec3d.YAxis(), Gf.Vec3d.ZAxis())
self.assertEqual(rt_a[0] > rt_b[0], is_greater)
self.assertTrue(Gf.IsClose(rt_a[1], rt_a[1], 1.0e-3))
self.assertTrue(Gf.IsClose(rt_a[2], rt_a[2], 1.0e-3))
def test_rot_y(is_greater: bool, m_a, m_b):
rt_a = Gf.Matrix4d(*m_a).ExtractRotation().Decompose(Gf.Vec3d.XAxis(), Gf.Vec3d.YAxis(), Gf.Vec3d.ZAxis())
rt_b = Gf.Matrix4d(*m_b).ExtractRotation().Decompose(Gf.Vec3d.XAxis(), Gf.Vec3d.YAxis(), Gf.Vec3d.ZAxis())
self.assertTrue(Gf.IsClose(rt_a[0], rt_a[0], 1.0e-3))
self.assertEqual(rt_a[1] > rt_b[1], is_greater)
self.assertTrue(Gf.IsClose(rt_a[2], rt_a[2], 1.0e-3))
await test_gamepad_input({
GamepadInput.RIGHT_STICK_LEFT: partial(test_rot_y, True),
GamepadInput.RIGHT_STICK_RIGHT: partial(test_rot_y, False),
GamepadInput.RIGHT_STICK_UP: partial(test_rot_x, True),
GamepadInput.RIGHT_STICK_DOWN: partial(test_rot_x, False),
})
# Test disabling flight-mode in the model would stop gamepad from doing anything
simple_scene.items[-1].model.set_ints('disable_fly', [1])
await test_gamepad_input({
GamepadInput.LEFT_STICK_LEFT: test_no_move,
GamepadInput.LEFT_STICK_RIGHT: test_no_move,
GamepadInput.LEFT_STICK_UP: test_no_move,
GamepadInput.LEFT_STICK_DOWN: test_no_move
})
await test_gamepad_input({
GamepadInput.DPAD_LEFT: test_no_move,
GamepadInput.DPAD_RIGHT: test_no_move,
GamepadInput.DPAD_UP: test_no_move,
GamepadInput.DPAD_DOWN: test_no_move
})
simple_scene.items[-1].model.set_ints('disable_fly', [0])
await wait_human_delay(5)
finally:
if game_pad is not None:
if game_pad_connected:
input_provider.set_gamepad_connected(game_pad, False)
input_provider.destroy_gamepad(game_pad)
simple_scene.destroy()
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/omni/kit/manipulator/camera/tests/test_viewport_manipulator.py | ## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
##
## NVIDIA CORPORATION and its licensors retain all intellectual property
## and proprietary rights in and to this software, related documentation
## and any modifications thereto. Any use, reproduction, disclosure or
## distribution of this software and related documentation without an express
## license agreement from NVIDIA CORPORATION is strictly prohibited.
##
__all__ = ['TestViewportCamera']
import omni.kit.app
import omni.kit.ui_test as ui_test
from carb.input import MouseEventType, KeyboardEventType, KeyboardInput
from pxr import Gf, Sdf, UsdGeom
TEST_GUTTER = 10
TEST_WIDTH, TEST_HEIGHT = 500, 500
TEST_UI_CENTER = ui_test.Vec2(TEST_WIDTH / 2, TEST_HEIGHT / 2)
TEST_UI_LEFT = ui_test.Vec2(TEST_GUTTER, TEST_UI_CENTER.y)
TEST_UI_RIGHT = ui_test.Vec2(TEST_WIDTH - TEST_GUTTER, TEST_UI_CENTER.y)
TEST_UI_TOP = ui_test.Vec2(TEST_UI_CENTER.x, TEST_GUTTER)
TEST_UI_BOTTOM = ui_test.Vec2(TEST_UI_CENTER.x, TEST_HEIGHT - TEST_GUTTER)
class TestViewportCamera(omni.kit.test.AsyncTestCase):
# Before running each test
async def setUp(self):
from omni.kit.viewport.utility import get_active_viewport
self.viewport = get_active_viewport()
await self.viewport.usd_context.new_stage_async()
self.stage = self.viewport.stage
self.camera = UsdGeom.Xformable(self.stage.GetPrimAtPath(self.viewport.camera_path))
# Disable locking to render results, as there are no render-results
self.viewport.lock_to_render_result = False
super().setUp()
await self.wait_n_updates()
# After running each test
async def tearDown(self):
super().tearDown()
async def wait_n_updates(self, n_frames: int = 3):
app = omni.kit.app.get_app()
for _ in range(n_frames):
await app.next_update_async()
async def __do_mouse_interaction(self,
mouse_down: MouseEventType,
start: ui_test.Vec2,
end: ui_test.Vec2,
mouse_up: MouseEventType,
modifier: KeyboardInput | None = None):
if modifier:
await ui_test.input.emulate_keyboard(KeyboardEventType.KEY_PRESS, modifier)
await ui_test.human_delay()
else:
await self.wait_n_updates(10)
await ui_test.input.emulate_mouse(MouseEventType.MOVE, start)
await ui_test.input.emulate_mouse(mouse_down, start)
await ui_test.input.emulate_mouse_slow_move(start, end)
await ui_test.input.emulate_mouse(mouse_up, end)
if modifier:
await ui_test.input.emulate_keyboard(KeyboardEventType.KEY_RELEASE, modifier)
await ui_test.human_delay()
else:
await self.wait_n_updates()
def assertIsClose(self, a, b):
self.assertTrue(Gf.IsClose(a, b, 0.1))
def assertRotationIsClose(self, a, b):
self.assertTrue(Gf.IsClose(a.GetReal(), b.GetReal(), 0.1))
self.assertTrue(Gf.IsClose(a.GetImaginary(), b.GetImaginary(), 0.1))
@property
def camera_position(self):
return self.camera.GetLocalTransformation(self.viewport.time).ExtractTranslation()
@property
def camera_rotation(self):
return self.camera.GetLocalTransformation(self.viewport.time).ExtractRotation().GetQuaternion()
async def test_viewport_scroll(self, is_locked: bool = False):
"""Test scrollwheel with a Viewport"""
test_pos = [
Gf.Vec3d(500, 500, 500),
Gf.Vec3d(1007.76, 1007.76, 1007.76),
Gf.Vec3d(555.97, 555.97, 555.97),
]
if is_locked:
test_pos = [test_pos[0]] * len(test_pos)
await ui_test.input.emulate_mouse_move_and_click(TEST_UI_CENTER)
self.assertIsClose(self.camera_position, test_pos[0])
await ui_test.input.emulate_mouse_scroll(ui_test.Vec2(0, -2500))
await self.wait_n_updates(100)
self.assertIsClose(self.camera_position, test_pos[1])
await ui_test.input.emulate_mouse_scroll(ui_test.Vec2(0, 1000))
await self.wait_n_updates(100)
self.assertIsClose(self.camera_position, test_pos[2])
async def test_viewport_pan(self, is_locked: bool = False):
"""Test panning across a Viewport"""
test_pos = [
Gf.Vec3d(500, 500, 500),
Gf.Vec3d(1189.86, 500, -189.86),
Gf.Vec3d(699.14, 101.7, 699.14),
]
if is_locked:
test_pos = [test_pos[0]] * len(test_pos)
self.assertIsClose(self.camera_position, test_pos[0])
await self.__do_mouse_interaction(MouseEventType.MIDDLE_BUTTON_DOWN,
TEST_UI_RIGHT, TEST_UI_LEFT,
MouseEventType.MIDDLE_BUTTON_UP)
self.assertIsClose(self.camera_position, test_pos[1])
await self.__do_mouse_interaction(MouseEventType.MIDDLE_BUTTON_DOWN,
TEST_UI_LEFT, TEST_UI_RIGHT,
MouseEventType.MIDDLE_BUTTON_UP)
self.assertIsClose(self.camera_position, test_pos[0])
await self.__do_mouse_interaction(MouseEventType.MIDDLE_BUTTON_DOWN,
TEST_UI_CENTER, TEST_UI_TOP,
MouseEventType.MIDDLE_BUTTON_UP)
self.assertIsClose(self.camera_position, test_pos[2])
await self.__do_mouse_interaction(MouseEventType.MIDDLE_BUTTON_DOWN,
TEST_UI_CENTER, TEST_UI_BOTTOM,
MouseEventType.MIDDLE_BUTTON_UP)
self.assertIsClose(self.camera_position, test_pos[0])
async def test_viewport_look(self, is_locked: bool = False):
"""Test panning across a Viewport"""
test_rot = [
Gf.Quaternion(0.88, Gf.Vec3d(-0.27, 0.36, 0.11)),
Gf.Quaternion(-0.33, Gf.Vec3d(0.10, 0.89, 0.28)),
Gf.Quaternion(0.86, Gf.Vec3d(0.33, 0.35, -0.13)),
]
if is_locked:
test_rot = [test_rot[0]] * len(test_rot)
self.assertRotationIsClose(self.camera_rotation, test_rot[0])
await self.__do_mouse_interaction(MouseEventType.RIGHT_BUTTON_DOWN,
TEST_UI_RIGHT, TEST_UI_LEFT,
MouseEventType.RIGHT_BUTTON_UP)
self.assertRotationIsClose(self.camera_rotation, test_rot[1])
await self.__do_mouse_interaction(MouseEventType.RIGHT_BUTTON_DOWN,
TEST_UI_LEFT, TEST_UI_RIGHT,
MouseEventType.RIGHT_BUTTON_UP)
self.assertRotationIsClose(self.camera_rotation, test_rot[0])
await self.__do_mouse_interaction(MouseEventType.RIGHT_BUTTON_DOWN,
TEST_UI_CENTER, TEST_UI_TOP,
MouseEventType.RIGHT_BUTTON_UP)
self.assertRotationIsClose(self.camera_rotation, test_rot[2])
await self.__do_mouse_interaction(MouseEventType.RIGHT_BUTTON_DOWN,
TEST_UI_CENTER, TEST_UI_BOTTOM,
MouseEventType.RIGHT_BUTTON_UP)
self.assertRotationIsClose(self.camera_rotation, test_rot[0])
async def __test_viewport_orbit_modifer_not_working(self, is_locked: bool = False):
"""Test orbit across a Viewport"""
test_rot = [
Gf.Quaternion(0.88, Gf.Vec3d(-0.27, 0.36, 0.11)),
Gf.Quaternion(-0.33, Gf.Vec3d(0.10, 0.89, 0.28)),
Gf.Quaternion(0.86, Gf.Vec3d(0.33, 0.35, -0.13)),
]
if is_locked:
test_rot = [test_rot[0]] * len(test_rot)
await ui_test.input.emulate_mouse_move_and_click(TEST_UI_CENTER)
self.assertRotationIsClose(self.camera_rotation, test_rot[0])
await self.__do_mouse_interaction(MouseEventType.LEFT_BUTTON_DOWN,
TEST_UI_RIGHT, TEST_UI_LEFT,
MouseEventType.LEFT_BUTTON_UP,
KeyboardInput.LEFT_ALT)
self.assertRotationIsClose(self.camera_rotation, test_rot[1])
await self.__do_mouse_interaction(MouseEventType.LEFT_BUTTON_DOWN,
TEST_UI_LEFT, TEST_UI_RIGHT,
MouseEventType.LEFT_BUTTON_UP,
KeyboardInput.LEFT_ALT)
self.assertRotationIsClose(self.camera_rotation, test_rot[0])
await self.__do_mouse_interaction(MouseEventType.LEFT_BUTTON_DOWN,
TEST_UI_CENTER, TEST_UI_TOP,
MouseEventType.LEFT_BUTTON_UP,
KeyboardInput.LEFT_ALT)
self.assertRotationIsClose(self.camera_rotation, test_rot[2])
await self.__do_mouse_interaction(MouseEventType.LEFT_BUTTON_DOWN,
TEST_UI_CENTER, TEST_UI_BOTTOM,
MouseEventType.LEFT_BUTTON_UP,
KeyboardInput.LEFT_ALT)
self.assertRotationIsClose(self.camera_rotation, test_rot[0])
async def test_viewport_lock(self):
"""Test the lock attribute blocks navigation"""
self.camera.GetPrim().CreateAttribute("omni:kit:cameraLock", Sdf.ValueTypeNames.Bool, True).Set(True)
await self.test_viewport_pan(is_locked=True)
await self.test_viewport_look(is_locked=True)
await self.test_viewport_scroll(is_locked=True)
|
omniverse-code/kit/exts/omni.kit.manipulator.camera/docs/index.rst | omni.kit.manipulator.camera
###########################
Camera Manipultors for omni.ui.scene
.. toctree::
:maxdepth: 1
README
CHANGELOG
.. automodule:: omni.kit.manipulator.camera
:platform: Windows-x86_64, Linux-x86_64
:members:
:undoc-members:
:show-inheritance:
:imported-members:
|
omniverse-code/kit/exts/omni.kit.window.tests/PACKAGE-LICENSES/omni.kit.window.tests-LICENSE.md | Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related documentation without an express
license agreement from NVIDIA CORPORATION is strictly prohibited. |
omniverse-code/kit/exts/omni.kit.window.tests/config/extension.toml | [package]
# Semantic Versioning is used: https://semver.org/
version = "0.1.0"
# Lists people or organizations that are considered the "authors" of the package.
authors = ["NVIDIA"]
# The title and description fields are primarily for displaying extension info in UI
title = "Kit Tests Window"
description="Window to list/run all found python tests."
# URL of the extension source repository.
repository = ""
# One of categories for UI.
category = "Internal"
# Keywords for the extension
keywords = ["kit"]
# https://keepachangelog.com/en/1.0.0/
changelog="docs/CHANGELOG.md"
[dependencies]
"omni.ui" = {}
"omni.kit.test" = {}
"omni.kit.commands" = {}
[[python.module]]
name = "omni.kit.window.tests"
[[test]]
args = ["--/exts/omni.kit.window.tests/openWindow=1"]
stdoutFailPatterns.exclude = []
waiver = "Old UI, hard to test" # This window works well, but really needs an update on omni.ui. That will enable using ui_test to test.
[settings]
# Open window by default
exts."omni.kit.window.tests".openWindow = false
|
omniverse-code/kit/exts/omni.kit.window.tests/omni/kit/window/_test_runner_window.py | """Implementation of the manager of the Test Runner window.
Exports only TestRunnerWindow: The object managing the window, a singleton. Instatiate it to create the window.
Limitations:
- When tests are running and extensions are disabled then enabled as part of it any tests owned by the disabled
extensions are removed and not restored.
Toolbar Interactions - what happens when each control on the toolbar is used:
Run Selected: Gather the list of all selected tests and run them one at a time until completion (disabled when
no tests exist)
Select All: Add all tests to the selection list (disabled when all tests are currently selected)
Deselect All: Remove all tests from the selection list (disabled when no tests are currently selected)
Filter: Text that full tests names must match before being displayed
Load Tests...: Reload the set of available tests from one of the plug-in options
Properties: Display the settings in a separate window
Note that all tests displayed must come from an enabled extension. To add tests on currently disabled extensions you
would just enable the extension and the test list will be repopulated from the new set of enabled extensions. Similarly
if you disable an extension its tests will be removed from the list.
Individual Test Interactions - what happens when each per-test control is used:
Checkbox: Adds or removes the test from the selection list
Run: Run the one test and modify its icon to indicate test state
Soak: Run the one test 1,000 times and modify its icon to indicate test state
Open: Open the source file of the test script for the test
(Final icon is updated to depict the state of the test - not run, running, successful, failed)
TODO: Fix the text file processing to show potential missing extensions
TODO: Add in editing of the user settings in the window
# --------------------------------------------------------------------------------------------------------------
# def _edit_filter_settings(self):
# # Emit the UI commands required to edit the filters defined in the user settings
# from carb.settings import get_settings
# include_tests = get_settings().get("/exts/omni.kit.test/includeTests")
# exclude_tests = get_settings().get("/exts/omni.kit.test/excludeTests")
"""
from __future__ import annotations
import asyncio
from contextlib import suppress
from enum import auto, Enum
import fnmatch
from functools import partial
import logging
from pathlib import Path
import sys
import unittest
import carb
import carb.settings
import omni.ext
import omni.kit.test
import omni.kit.commands
import omni.kit.app
import omni.kit.ui
from omni.kit.test import TestRunStatus
from omni.kit.test import TestPopulator
from omni.kit.test import TestPopulateAll
from omni.kit.test import TestPopulateDisabled
from omni.kit.test import DEFAULT_POPULATOR_NAME
from omni.kit.window.properties import TestingPropertiesWindow
import omni.ui as ui
__all__ = ["TestRunnerWindow"]
# Size constants
_BUTTON_HEIGHT = 24
# ==============================================================================================================
# Local logger for dumping debug information about the test runner window operation.
# By default it is off but it can be enabled in the extension setup.
_LOG = logging.getLogger("test_runner_window")
# ==============================================================================================================
class _TestUiEntry:
"""UI Data for a single test in the test runner"""
def __init__(self, test: unittest.TestCase, file_path: str):
"""Initialize the entry with the given test"""
self.test: unittest.TestCase = test # Test this entry manages
self.checkbox: ui.Checkbox = None # Selection checkbox for this test
self.sub_checked: ui.Subscription = None # Subscription to the checkbox change
self.label_stack: ui.HStack = None # Container stack for the test module and name
self.run_button: ui.Button = None # Button for running the test
self.soak_button: ui.Button = None # Button for running the test 1000 times
self.open_button: ui.Button = None # Button for opening the file containing the test
self.file_path: Path = file_path # Path to the file containing the test
self.status: TestRunStatus = TestRunStatus.UNKNOWN # Current test status
self.status_label: ui.Label = None # Icon label indicating the test status
def destroy(self):
"""Destroy the test entry; mostly to avoid leaking caused by dangling callbacks"""
with suppress(AttributeError):
self.sub_checked = None
self.checkbox = None
with suppress(AttributeError):
self.run_button.set_clicked_fn(None)
self.run_button = None
with suppress(AttributeError):
self.soak_button.set_clicked_fn(None)
self.soak_button = None
with suppress(AttributeError):
self.open_button.set_clicked_fn(None)
self.open_button = None
def __del__(self):
"""Ensure the destroy is always called - it's safe to call it multiple times"""
self.destroy()
# ==============================================================================================================
class _Buttons(Enum):
"""Index for all of the buttons created in the toolbar"""
RUN = auto() # Run all selected tests
SELECT_ALL = auto() # Select every listed test
DESELECT_ALL = auto() # Deselect every listed test
PROPERTIES = auto() # Open the properties window
LOAD_MENU = auto() # Open the menu for loading a test list
# ==============================================================================================================
class _TestUiPopulator:
"""Base class for the objects used to populate the initial list of tests, before filtering."""
def __init__(self, populator: TestPopulator):
"""Set up the populator with the important information it needs for getting tests from some location
Args:
name: Name of the populator, which can be used for a menu
description: Verbose description of the populator, which can be used for the tooltip of the menu item
doing_what: Parameter to the descriptive waiting sentence "Rebuilding after {doing_what}..."
source: Source type this populator implements
"""
self.populator = populator
self._cached_tests: list[_TestUiEntry] = []
# --------------------------------------------------------------------------------------------------------------
@property
def name(self) -> str:
"""The name of the populator"""
return self.populator.name
@property
def description(self) -> str:
"""The description of the populator"""
return self.populator.description
@property
def tests(self) -> list[_TestUiEntry]:
"""The list of test UI entries gleaned from the raw test list supplied by the populator implementation"""
if not self._cached_tests:
_LOG.info("Translating %d unit tests into a _TestUiEntry list", len(self.populator.tests))
self._cached_tests = {}
for test in self.populator.tests:
try:
file_path = sys.modules[test.__module__].__file__
except KeyError:
# if the module is not enabled the test does not belong in the list
continue
entry = _TestUiEntry(test, file_path)
self._cached_tests[test.id()] = entry
return self._cached_tests
# --------------------------------------------------------------------------------------------------------------
def clear(self):
"""Remove the cache so that it can be rebuilt on demand, usually if the contents might have changed"""
self._cached_tests = {}
# --------------------------------------------------------------------------------------------------------------
def destroy(self):
"""Opportunity to clean up any allocated resources"""
self._cached_tests = {}
self.populator.destroy()
# --------------------------------------------------------------------------------------------------------------
def get_tests(self, call_when_done: callable):
"""Main method for retrieving the list of tests that the populator provides.
When the tests are available invoke the callback with the test list.
call_when_done(_TestUiPopulator, canceled: bool)
"""
def __create_cache(canceled: bool = False):
call_when_done(self, canceled)
if not self._cached_tests:
self.populator.get_tests(__create_cache)
else:
call_when_done(self)
# ==============================================================================================================
class TestRunnerWindow:
"""Managers the window containing the test runner
Members:
_buttons: Dictionary of _Buttons:ui.Button for all of the toolbar buttons
_change_sub: Subscription to the extension list change event
_count: Temporary variable to count number of iterations during test soak
_filter_begin_edit_sub: Subscription to the start of editing the filter text field
_filter_end_edit_sub: Subscription to the end of editing the filter text field
_filter_hint: Label widget holding the overlay text for the filter text field
_filter_regex: Expression on which to filter the list of source tests
_filter: StringField widget holding the filter text
_is_running_tests: Are the selected tests currently running?
_load_menu: UI Widget containing the menu used for loading the test list
_properties_window: The temporary dialog that displays the test running properties set by the user
_refresh_task: Async task to refresh the test status values as they are completed
_status_label: Text to show in the label in the toolbar that shows test counts
_test_frame: UI Widget encompassing the frame containing the list of tests to run
_test_list_source_rc: RadioCollection containing the test source choices
_test_populators: Dictionary of name:_TestUiPopulator used to populate the full list of tests in the window
_tests: Dictionary of (ID, Checkbox) corresponding to all visible tests
_tests_selected: Number of tests in the dictionary currently selected. This is maintained on the fly to avoid
an O(N^2) update problem when monitoring checkbox changes and updating the SelectAll buttons
_toolbar_frame: UI Widget encompassing the set of tools at the top of the window
_ui_status_label: UI Widget containing the label displaying test runner status
_window: UI Widget of the toolbar window
"""
# Location of the window in the larger UI element path space
WINDOW_NAME = "Test Runner"
MENU_PATH = f"Window/{WINDOW_NAME}"
_POPULATORS = [TestPopulateAll(), TestPopulateDisabled()]
WINDOW_MANAGER = None
# --------------------------------------------------------------------------------------------------------------
# API for adding and removing custom populators of the test list
@classmethod
def add_populator(cls, new_populator: TestPopulator):
"""Adds the new populator to the available list, raising ValueError if there already is one with that name"""
if new_populator in cls._POPULATORS:
raise ValueError(f"Tried to add the same populator twice '{new_populator.name}'")
cls._POPULATORS.append(new_populator)
# Updating the window allows dynamic adding and removal of populator types
if cls.WINDOW_MANAGER is not None:
cls.WINDOW_MANAGER._test_populators[new_populator.name] = _TestUiPopulator(new_populator) # noqa: PLW0212
cls.WINDOW_MANAGER._toolbar_frame.rebuild() # noqa: PLW0212
@classmethod
def remove_populator(cls, populator_to_remove: str):
"""Removes the populator with the given name, raising KeyError if it does not exist"""
to_remove = None
for populator in cls._POPULATORS:
if populator.name == populator_to_remove:
to_remove = populator
break
if to_remove is None:
raise KeyError(f"Trying to remove populator named {populator_to_remove} before adding it")
# Updating the window allows dynamic adding and removal of populator types
if cls.WINDOW_MANAGER is not None:
del cls.WINDOW_MANAGER._test_populators[populator_to_remove] # pylint: disable=protected-access
cls.WINDOW_MANAGER._toolbar_frame.rebuild() # pylint: disable=protected-access
cls._POPULATORS.remove(to_remove)
def __init__(self, start_open: bool):
"""Set up the window and open it if the setting to always open it is enabled"""
TestRunnerWindow.WINDOW_MANAGER = self
self._buttons: dict[_Buttons, ui.Button] = {}
self._change_sub: carb.Subscription = None
self._count: int = 0
self._filter_begin_edit_sub: carb.Subscription = None
self._filter_end_edit_sub: carb.Subscription = None
self._filter_hint: ui.Label = None
self._filter_regex: str = ""
self._filter: ui.StringField = None
self._is_running_tests: bool = False
self._load_menu: ui.Menu = None
self._test_file_path: Path = None
self._properties_window: TestingPropertiesWindow = None
self._refresh_task: asyncio.Task = None
self._test_frame: ui.ScrollingFrame = None
self._status_label: str = "Checking for tests..."
self._test_list_source_rc: ui.RadioCollection = None
self._tests: dict[str, ui.CheckBox] = {}
self._tests_selected: int = 0
self._test_populators = {
populator.name: _TestUiPopulator(populator) for populator in self._POPULATORS
}
self._test_populator: TestPopulator = None
self._toolbar_frame: ui.Frame = None
self._ui_status_label: ui.Label = None
_LOG.info("Initializing the main window")
manager = omni.kit.app.get_app().get_extension_manager()
self._change_sub = manager.get_change_event_stream().create_subscription_to_pop(
self.on_extensions_changed, name="test_runner extensions change event"
)
self._window = ui.Window(
self.WINDOW_NAME,
menu_path=self.MENU_PATH,
width=1200,
height=800,
dockPreference=ui.DockPreference.RIGHT_TOP,
visibility_changed_fn=self._visibility_changed,
width_changed_fn=self._width_changed,
)
with self._window.frame:
with ui.VStack():
self._toolbar_frame = ui.Frame(height=_BUTTON_HEIGHT + 4)
self._toolbar_frame.set_build_fn(self._build_toolbar_frame)
with self._toolbar_frame:
self._build_toolbar_frame()
self._test_frame = ui.ScrollingFrame(
vertical_scrollbar_policy=ui.ScrollBarPolicy.SCROLLBAR_ALWAYS_ON,
horizontal_scrollbar_policy=ui.ScrollBarPolicy.SCROLLBAR_AS_NEEDED,
)
self._test_frame.set_build_fn(self._build_test_frame)
# Populate the initial test list
self._populate_test_entries(self._test_populators[DEFAULT_POPULATOR_NAME])
self._window.visible = start_open
# --------------------------------------------------------------------------------------------------------------
def destroy(self):
"""Detach all subscriptions and destroy the window elements to avoid dangling callbacks and UI elements"""
_LOG.info("Destroying the main window {")
self.WINDOW_MANAGER = None
if self._window is not None:
self._window.visible = False
# Remove the callbacks first
for _button_id, button in self._buttons.items():
button.set_clicked_fn(None)
self._buttons = {}
for populator in self._test_populators.values():
populator.destroy()
self._test_populators = None
# Remove the widget elements before removing the window itself
self._clean_refresh_task()
self._change_sub = None
self._count = 0
self._filter = None
self._filter_begin_edit_sub = None
self._filter_end_edit_sub = None
self._filter_hint = None
self._filter_regex = ""
self._load_menu = None
self._ui_status_label = None
self._status_label = None
self._test_list_source_rc = None
self._test_populator = None
self._tests = {}
self._tests_selected = 0
if self._properties_window is not None:
self._properties_window.destroy()
del self._properties_window
self._properties_window = None
if self._toolbar_frame is not None:
self._toolbar_frame.set_build_fn(None)
del self._toolbar_frame
self._toolbar_frame = None
if self._test_frame is not None:
self._test_frame.set_build_fn(None)
del self._test_frame
self._test_frame = None
if self._window is not None:
self._window.set_visibility_changed_fn(None)
self._window.set_width_changed_fn(None)
self._window.frame.set_build_fn(None)
del self._window
self._window = None
# --------------------------------------------------------------------------------------------------------------
@property
def visible(self) -> bool:
return self._window.visible if self._window is not None else False
@visible.setter
def visible(self, visible: bool):
if self._window is not None:
self._window.visible = visible
elif visible:
raise ValueError("Tried to change visibility after window was destroyed")
def _visibility_changed(self, visible: bool):
"""Update the menu with the visibility state"""
_LOG.info("Window visibility changed to %s", visible)
editor_menu = omni.kit.ui.EditorMenu()
editor_menu.set_value(self.MENU_PATH, visible)
# --------------------------------------------------------------------------------------------------------------
def _width_changed(self, new_width: float):
"""Update the sizing of the test frame when the window size changes"""
_LOG.info("Window width changed to %f", new_width)
if self._test_frame is not None:
self._resize_test_frame(new_width)
# --------------------------------------------------------------------------------------------------------------
def on_extensions_changed(self, *_):
"""Callback executed when the known extensions may have changed."""
# Protect calls to _LOG since if it's this extension being disabled it may not exist
if self._is_running_tests:
if _LOG is not None:
_LOG.info("Extension changes ignored while tests are running as it could be part of the tests")
else:
if _LOG is not None:
_LOG.info("Extensions were changed, tests are rebuilding")
for populator in self._test_populators.values():
populator.clear()
self._refresh_after_tests_complete(load_tests=True, cause="extensions changed")
# --------------------------------------------------------------------------------------------------------------
def _refresh_after_tests_complete(self, load_tests: bool, cause: str, new_populator: TestPopulator = None):
"""Refresh the window information after the tests finish running.
If load_tests is True then reconstruct all of the tests from the current test source selected.
If cause is not empty then place a temporary message in the test pane to indicate a rebuild is happening.
If a new_populator is specified then it will replace the existing one if its population step succeeds,
otherwise the original will remain.
"""
async def _delayed_refresh():
try:
# Busy wait until the tests are done running
slept = 0.0
while self._is_running_tests:
_LOG.debug("....sleep(%f)", slept)
slept += 0.2
await asyncio.sleep(0.2)
# Refresh the test information
_LOG.info("Delayed refresh triggered with load_tests=%s", load_tests)
if cause:
self._ui_status_label.text = f"Rebuilding after {cause}..."
await omni.kit.app.get_app().next_update_async()
if load_tests:
_LOG.info("...repopulating the test list")
self._populate_test_entries(new_populator)
else:
_LOG.info("...rebuilding the test frame")
with self._test_frame:
self._build_test_frame()
except asyncio.CancelledError:
pass
except Exception as error: # pylint: disable=broad-except
carb.log_warn(f"Failed to refresh content of window.tests. Error: '{error}' {type(error)}.")
self._clean_refresh_task()
self._refresh_task = asyncio.ensure_future(_delayed_refresh())
# --------------------------------------------------------------------------------------------------------------
def _update_toolbar_status(self):
"""Update the state of the elements in the toolbar, avoiding a full rebuild when values change"""
filtered_tests = self._filtered_tests()
_LOG.info("Refreshing the toolbar status for %d tests", len(filtered_tests))
any_on = self._tests_selected > 0
any_off = self._tests_selected < len(filtered_tests)
_LOG.info(" RUN=%s, SELECT_ALL=%s, DESELECT_ALL=%s", any_on, any_off, any_on)
self._buttons[_Buttons.RUN].enabled = any_on
self._buttons[_Buttons.SELECT_ALL].enabled = any_off
self._buttons[_Buttons.DESELECT_ALL].enabled = any_on
_LOG.info("Reset status to '%s'", self._status_label)
self._ui_status_label.text = self._status_label
# --------------------------------------------------------------------------------------------------------------
def _build_toolbar_frame(self):
"""Emit the UI commands required to build the toolbar that appears at the top of the window"""
_LOG.info("Rebuilding the toolbar frame")
# Defining the toolbar callbacks at the top of this method because they are so small
def on_run(*_):
_LOG.info("Hit the Run button")
tests = [entry.test for entry in self._tests.values() if entry.checkbox.model.as_bool]
self._run_tests(tests)
def on_select_all(*_):
_LOG.info("Hit the Select All button")
filtered_tests = self._filtered_tests()
for entry in filtered_tests.values():
entry.checkbox.model.set_value(True)
self._tests_selected = len(filtered_tests)
self._update_toolbar_status()
def on_deselect_all(*_):
_LOG.info("Hit the Deselect All button")
filtered_tests = self._filtered_tests()
for entry in filtered_tests.values():
entry.checkbox.model.set_value(False)
self._tests_selected = 0
self._update_toolbar_status()
def _on_filter_begin_edit(model: ui.AbstractValueModel):
self._filter_hint.visible = False
def _on_filter_end_edit(model: ui.AbstractValueModel):
if len(model.get_value_as_string()) == 0:
self._filter_hint.visible = True
self._filter_regex = ""
else:
self._filter_regex = f"*{model.get_value_as_string()}*"
_LOG.info("Reset filter to '%s'", self._filter_regex)
self._refresh_after_tests_complete(load_tests=False, cause="filter changed")
def on_properties(*_):
_LOG.info("Hit the Properties button")
if self._properties_window is None:
self._properties_window = TestingPropertiesWindow()
self._properties_window.show()
# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
with ui.HStack(height=_BUTTON_HEIGHT + 4, style={"Button.Label:disabled": {"color": 0xFF606060}}):
self._buttons[_Buttons.RUN] = ui.Button(
"Run Selected", clicked_fn=on_run, width=ui.Percent(10), style={"border_radius": 5.0})
self._buttons[_Buttons.SELECT_ALL] = ui.Button(
"Select All", clicked_fn=on_select_all, width=ui.Percent(10), style={"border_radius": 5.0})
self._buttons[_Buttons.DESELECT_ALL] = ui.Button(
"Deselect All", clicked_fn=on_deselect_all, width=ui.Percent(10), style={"border_radius": 5.0})
with ui.ZStack(width=ui.Percent(20)):
ui.Spacer(width=ui.Pixel(10))
# Trick required to give the string field a greyed out "hint" as to what should be typed in it
self._filter = ui.StringField(height=_BUTTON_HEIGHT)
self._filter_hint = ui.Label(
" Filter (*, ?)", alignment=ui.Alignment.LEFT_CENTER, style={"color": 0xFF3F3F3F}
)
if self._filter_regex:
self._filter.model.set_value(self._filter_regex[1:-1])
self._filter_hint.visible = False
self._filter_begin_edit_sub = self._filter.model.subscribe_begin_edit_fn(_on_filter_begin_edit)
self._filter_end_edit_sub = self._filter.model.subscribe_value_changed_fn(_on_filter_end_edit)
with ui.HStack(height=0, width=ui.Percent(20)):
ui.Spacer(width=ui.Pixel(3))
def __on_flag_set(populator):
_LOG.info("Invoking load menu with %s", populator)
self._load_menu = None
self._refresh_after_tests_complete(
load_tests=True,
cause=f"selecting populator '{populator.name}'",
new_populator=populator
)
def __show_load_menu(mouse_x: int, mouse_y: int, mouse_button: int, modifier: int):
_LOG.info("Invoked load menu at %d,%d - B%d/%d", mouse_x, mouse_y, mouse_button, modifier)
widget = self._buttons[_Buttons.LOAD_MENU]
self._load_menu = ui.Menu()
with self._load_menu:
for populator_name in sorted(self._test_populators.keys()):
populator = self._test_populators[populator_name]
ui.MenuItem(
populator.name,
triggered_fn=partial(__on_flag_set, populator),
checkable=True,
checked=(
self._test_populator is not None and (populator.name == self._test_populator.name)
),
)
self._load_menu.show_at(
(int)(widget.screen_position_x),
(int)(widget.screen_position_y + widget.computed_content_height)
)
self._buttons[_Buttons.LOAD_MENU] = ui.Button(
"Load Tests From...",
height=_BUTTON_HEIGHT + 4,
width=0,
mouse_released_fn=__show_load_menu,
style={"border_radius": 5.0},
)
with ui.HStack(width=ui.Percent(10)):
self._buttons[_Buttons.PROPERTIES] = ui.Button(
"Properties",
clicked_fn=on_properties,
style={"border_radius": 5.0},
)
ui.Spacer(width=ui.Pixel(10))
with ui.HStack(height=_BUTTON_HEIGHT + 4, width=ui.Percent(15)):
self._ui_status_label = ui.Label("Initializing tests...")
# --------------------------------------------------------------------------------------------------------------
def _space_for_test_labels(self, full_width: float) -> float:
"""Returns the number of pixels available for the test labels in the test frame, for manual resizing"""
label_space = full_width - 20 - 45 - 50 - 50 - 30 - 5 * 3
# Arbitrary "minimum readable" limit
if label_space < 200:
_LOG.info("Label space went below the threshold of 200 to %f, clipping it to 200", label_space)
label_space = 200
return label_space
# --------------------------------------------------------------------------------------------------------------
def _resize_test_frame(self, new_size: float):
"""Reset the manually computed size for all of the elements in the test frame. Avoids full rebuild."""
label_space = self._space_for_test_labels(new_size)
_LOG.info("Resizing test frame with %d pixels of %d for labels", label_space, new_size)
for _test_id, entry in self._tests.items():
if entry.label_stack is None:
continue
entry.label_stack.width = ui.Pixel(int(label_space))
# --------------------------------------------------------------------------------------------------------------
def _filtered_tests(self) -> dict[str, ui.CheckBox]:
return {
test_id: entry for test_id, entry in self._tests.items()
if (not self._filter_regex) or fnmatch.fnmatch(test_id.lower(), self._filter_regex.lower())
}
# --------------------------------------------------------------------------------------------------------------
def _build_test_frame(self):
"""Emit the UI commands required to populate the test frame with the list of visible tests"""
_LOG.info("Rebuilding the test frame with %d tests", len(self._tests))
# Compute the space available for the test names by taking the total frame width and subtracting the size
# used by the checkbox, run button, soak button, open button, and status icon, plus spacing between them
label_space = self._space_for_test_labels(self._window.frame.computed_width)
with ui.VStack():
ui.Spacer(height=ui.Pixel(10))
filtered_tests = self._filtered_tests()
for test_id, entry in filtered_tests.items():
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Test-specific callbacks
def on_checked(check_model: ui.AbstractValueModel):
filtered_tests = self._filtered_tests()
if check_model.as_bool:
self._tests_selected += 1
if self._tests_selected in (1, len(filtered_tests)):
self._update_toolbar_status()
else:
self._tests_selected -= 1
if self._tests_selected in (0, len(filtered_tests) - 1):
self._update_toolbar_status()
def on_run_test(*_, test: unittest.TestCase = entry.test):
self._run_tests([test])
def on_soak_test(*_, test: unittest.TestCase = entry.test):
self._run_tests([test], repeats=1000)
def on_open(*_, path: str = entry.file_path):
import webbrowser
webbrowser.open(path)
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Test row
entry.hstack = ui.HStack(spacing=2, height=0, width=ui.Percent(100))
with entry.hstack:
entry.checkbox = ui.CheckBox(
value=False,
on_changed_fn=on_checked,
style={"margin_height": 2},
width=20,
)
entry.sub_checked = entry.checkbox.model.subscribe_value_changed_fn(on_checked)
test_class, test_method = test_id.rsplit(".", 1)
entry.label_stack = ui.HStack(width=label_space)
with entry.label_stack:
entry.label1 = ui.Label(
test_class,
tooltip=entry.file_path,
elided_text=True,
alignment=ui.Alignment.LEFT_TOP,
width=ui.Fraction(2),
)
entry.label2 = ui.Label(
test_method,
tooltip=test_method,
elided_text=True,
alignment=ui.Alignment.LEFT_TOP,
width=ui.Fraction(1),
)
entry.run_button = ui.Button("Run", clicked_fn=on_run_test, width=45)
entry.soak_button = ui.Button("Soak", clicked_fn=on_soak_test, width=50)
entry.open_button = ui.Button("Open", clicked_fn=on_open, width=50)
entry.status_label = ui.Label("", width=30)
entry.status = TestRunStatus.UNKNOWN
self._refresh_test_status(test_id)
tests_available = len(self._tests)
tests_used = len(filtered_tests)
if self._test_populator is not None:
self._status_label = f"Showing {tests_used} of {tests_available} test(s) from {self._test_populator.name}"
else:
self._status_label = f"Showing {tests_used} of {tests_available} test(s) with no populator"
self._update_toolbar_status()
# --------------------------------------------------------------------------------------------------------------
def _refresh_test_status(self, test_id: str):
_LOG.debug("Refresh status of test %s to %s", test_id, self._tests[test_id].status)
status = self._tests[test_id].status
status_to_svg = {
TestRunStatus.UNKNOWN: "${glyphs}/question.svg",
TestRunStatus.RUNNING: "${glyphs}/spinner.svg",
TestRunStatus.FAILED: "${glyphs}/exclamation.svg",
TestRunStatus.PASSED: "${glyphs}/check_solid.svg",
}
status_to_color = {
TestRunStatus.UNKNOWN: 0xFFFFFFFF,
TestRunStatus.RUNNING: 0xFFFF7D7D,
TestRunStatus.PASSED: 0xFF00FF00,
TestRunStatus.FAILED: 0xFF0000FF,
}
code = ui.get_custom_glyph_code(status_to_svg.get(status, ""))
label = self._tests[test_id].status_label
label.text = f"{code}"
label.set_style({"color": status_to_color[status]})
# --------------------------------------------------------------------------------------------------------------
def _set_test_status(self, test_id: str, status: TestRunStatus):
_LOG.info("Setting status of test '%s' to %s", test_id, status)
try:
self._tests[test_id].status = status
self._refresh_test_status(test_id)
except KeyError:
_LOG.warning("...could not find test %s in the list", test_id)
# --------------------------------------------------------------------------------------------------------------
def _set_is_running(self, running: bool):
_LOG.info("Change running state to %s", running)
self._is_running_tests = running
self._buttons[_Buttons.RUN].enabled = not running
if running:
self._ui_status_label.text = "Running Tests..."
else:
self._ui_status_label.text = ""
# -------------------------------------------------------------------------------------------------------------
def _populate_test_entries(self, new_populator: TestPopulator = None):
"""Repopulate the test entry information based on the current filtered source test list.
If a new_populator is specified then set the current one to it if the population succeeded, otherwise retain
the original.
"""
async def __populate():
_LOG.info("Retrieving the tests from the populator")
def __repopulate(populator: _TestUiPopulator, canceled: bool = False):
if canceled:
_LOG.info("...test retrieval was canceled")
self._test_frame.enabled = True
else:
self._tests_selected = 0
self._tests = populator.tests
if new_populator is not None:
self._test_populator = new_populator
_LOG.info("...triggering the test frame rebuild after repopulation")
self._test_frame.enabled = True
self._test_frame.rebuild()
self._test_frame.enabled = False
if new_populator is not None:
new_populator.get_tests(__repopulate)
elif self._test_populator is not None:
self._test_populator.get_tests(__repopulate)
asyncio.ensure_future(__populate())
# --------------------------------------------------------------------------------------------------------------
def _run_tests(self, tests, repeats=0, ignore_running=False):
"""Find all of the selected tests and execute them all asynchronously"""
_LOG.info("Running the tests with a repeat of %d", repeats)
if self._is_running_tests and not ignore_running:
_LOG.info("...skipping, already running the tests")
return
def on_finish(runner):
if self._count > 0:
self._count -= 1
print(f"\n\n\n\n{'-'*40} Iteration {self._count} {'-'*40}\n\n")
self._run_tests(tests, self._count, ignore_running=True)
return
self._set_is_running(False)
def on_status_report(test_id, status, **_):
self._set_test_status(test_id, status)
self._count = repeats
self._set_is_running(True)
for t in tests:
self._set_test_status(t.id(), TestRunStatus.UNKNOWN)
omni.kit.test.run_tests(tests, on_finish, on_status_report)
# --------------------------------------------------------------------------------------------------------------
def _clean_refresh_task(self):
"""Clean up the refresh task, canceling it if it is in progress first"""
with suppress(asyncio.CancelledError, AttributeError):
self._refresh_task.cancel()
self._refresh_task = None
|
omniverse-code/kit/exts/omni.kit.window.tests/omni/kit/window/tests.py | """Implementation of the extension containing the Test Runner window."""
import logging
import sys
import carb
import omni.ext
from omni.kit.ui import EditorMenu
# Cannot do relative imports here due to the way the omni.kit.window import space is duplicated in multiple extensions
from omni.kit.window._test_runner_window import _LOG
from omni.kit.window._test_runner_window import TestRunnerWindow
# ==============================================================================================================
class Extension(omni.ext.IExt):
"""The extension manager that handles the life span of the test runner window"""
def __init__(self):
self._test_runner_window = None
self._menu_item = None
super().__init__()
def _show_window(self, menu: str, value: bool):
if self._test_runner_window is None:
self._test_runner_window = TestRunnerWindow(value)
else:
self._test_runner_window.visible = value
def on_startup(self):
_LOG.disabled = True # Set to False to dump out debugging information for the extension
if not _LOG.disabled:
_handler = logging.StreamHandler(sys.stdout)
_handler.setFormatter(logging.Formatter("TestRunner: %(levelname)s: %(message)s"))
_LOG.addHandler(_handler)
_LOG.setLevel(logging.INFO)
_LOG.info("Starting up the test runner extension")
open_window = carb.settings.get_settings().get("/exts/omni.kit.window.tests/openWindow")
self._menu_item = EditorMenu.add_item(TestRunnerWindow.MENU_PATH, self._show_window, toggle=True, value=open_window)
if open_window:
self._show_window(TestRunnerWindow.MENU_PATH, True)
def on_shutdown(self):
"""Cleanup the constructed elements"""
_LOG.info("Shutting down the test runner extension")
if self._test_runner_window is not None:
_LOG.info("Destroying the test runner window")
self._test_runner_window.visible = False
self._test_runner_window.destroy()
self._test_runner_window = None
EditorMenu.remove_item(TestRunnerWindow.MENU_PATH)
handler_list = _LOG.handlers
for handler in handler_list:
_LOG.removeHandler(handler)
self._menu_item = None
|
omniverse-code/kit/exts/omni.kit.window.tests/omni/kit/window/properties.py | import carb
import carb.settings
import omni.kit.app
import omni.ui as ui
HUMAN_DELAY_SETTING = "/exts/omni.kit.ui_test/humanDelay"
class TestingPropertiesWindow:
def __init__(self):
self._window = ui.Window("Testing Properties", width=400, height=200, flags=ui.WINDOW_FLAGS_NO_DOCKING)
self._window.visible = False
def destroy(self):
self._window = None
def show(self):
if not self._window.visible:
self._window.visible = True
self.refresh()
def refresh(self):
with self._window.frame:
with ui.VStack(height=0):
settings = carb.settings.get_settings()
ui.Spacer(height=10)
ui.Label("Test Settings:", style={"color": 0xFFB7F222, "font_size": 16})
ui.Spacer(height=5)
for key in ["/exts/omni.kit.test/includeTests", "/exts/omni.kit.test/excludeTests"]:
value = settings.get(key)
ui.Label(f"{key}: {value}")
ui.Spacer(height=5)
# Setting specific to UI tests
manager = omni.kit.app.get_app().get_extension_manager()
if manager.is_extension_enabled("omni.kit.ui_test"):
ui.Spacer(height=10)
ui.Label("UI Test (omni.kit.ui_test) Settings:", style={"color": 0xFFB7F222, "font_size": 16})
ui.Spacer(height=5)
with ui.HStack(height=0):
ui.Label("UI Test Delay (s)")
delay_widget = ui.FloatDrag(min=0, max=1000000)
delay_widget.model.set_value(settings.get_as_float(HUMAN_DELAY_SETTING))
delay_widget.model.add_value_changed_fn(
lambda m: settings.set(HUMAN_DELAY_SETTING, m.get_value_as_float())
)
|
omniverse-code/kit/exts/omni.kit.window.tests/docs/CHANGELOG.md | # CHANGELOG
## [0.1.0] - 2020-10-29
- Ported old version to extensions 2.0
|
omniverse-code/kit/exts/omni.kit.window.tests/docs/index.rst | omni.kit.window.tests
###########################
.. toctree::
:maxdepth: 1
CHANGELOG
|
omniverse-code/kit/exts/omni.kit.exec.core/omni/kit/exec/core/unstable/__init__.py | """Python Module Initialization for omni.kit.exec.core"""
from ._omni_kit_exec_core_unstable import *
from .scripts.extension import _PublicExtension
|
omniverse-code/kit/exts/omni.kit.exec.core/omni/kit/exec/core/unstable/_omni_kit_exec_core_unstable.pyi | from __future__ import annotations
import omni.kit.exec.core.unstable._omni_kit_exec_core_unstable
import typing
__all__ = [
"dump_graph_topology"
]
def dump_graph_topology(fileName: str) -> None:
"""
Write the default execution controller's corresponding execution graph topology out as a GraphViz file.
"""
|
omniverse-code/kit/exts/omni.kit.exec.core/omni/kit/exec/core/unstable/scripts/extension.py | """Support required by the Carbonite extension loader"""
import omni.ext
class _PublicExtension(omni.ext.IExt):
"""Object that tracks the lifetime of the Python part of the extension loading"""
def on_startup(self):
"""Set up initial conditions for the Python part of the extension"""
def on_shutdown(self):
"""Shutting down this part of the extension prepares it for hot reload"""
|
omniverse-code/kit/exts/omni.kit.widget.prompt/PACKAGE-LICENSES/omni.kit.widget.prompt-LICENSE.md | Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related documentation without an express
license agreement from NVIDIA CORPORATION is strictly prohibited. |
omniverse-code/kit/exts/omni.kit.widget.prompt/config/extension.toml | [package]
title = "Prompt dialog for omni.ui widgets"
category = "Internal"
description = "Prompt dialog for use with omni.ui widgets"
version = "1.0.5"
authors = ["NVIDIA"]
repository = ""
keywords = ["widget"]
changelog = "docs/CHANGELOG.md"
preview_image = "data/preview.png"
icon = "data/icon.png"
[dependencies]
"omni.ui" = {}
[[python.module]]
name = "omni.kit.widget.prompt"
[[test]]
args = [
"--/app/asyncRendering=false",
"--/app/window/dpiScaleOverride=1.0",
"--/app/window/scaleToMonitor=false",
"--no-window"
]
dependencies = [
"omni.kit.commands",
"omni.kit.selection",
"omni.kit.renderer.capture",
"omni.kit.mainwindow",
"omni.kit.ui_test"
]
stdoutFailPatterns.include = []
stdoutFailPatterns.exclude = []
|
omniverse-code/kit/exts/omni.kit.widget.prompt/omni/kit/widget/prompt/extension.py | import omni.ext
from .prompt import PromptManager
class PromptExtension(omni.ext.IExt):
def on_startup(self):
PromptManager.on_startup()
def on_shutdown(self):
PromptManager.on_shutdown()
|
omniverse-code/kit/exts/omni.kit.widget.prompt/omni/kit/widget/prompt/__init__.py | # Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
from .prompt import Prompt, PromptManager, PromptButtonInfo
from .extension import PromptExtension
|
omniverse-code/kit/exts/omni.kit.widget.prompt/omni/kit/widget/prompt/prompt.py | from typing import Callable, List
import carb
import carb.input
import omni
import uuid
class PromptButtonInfo:
def __init__(self, name: str, on_button_clicked_fn: Callable[[], None] = None):
self._name = name
self._on_button_clicked_fn = on_button_clicked_fn
@property
def name(self):
return self._name
@property
def on_button_clicked_fn(self):
return self._on_button_clicked_fn
class PromptManager:
_prompts = set([])
@staticmethod
def on_startup():
pass
@staticmethod
def on_shutdown():
all_prompts = PromptManager._prompts
PromptManager._prompts = set([])
for prompt in all_prompts:
prompt.destroy()
@staticmethod
def query_prompt_by_title(title: str):
for prompt in PromptManager._prompts:
if prompt._title == title:
return prompt
return None
@staticmethod
def add_prompt(prompt):
if prompt not in PromptManager._prompts:
PromptManager._prompts.add(prompt)
@staticmethod
def remove_prompt(prompt):
if prompt in PromptManager._prompts:
PromptManager._prompts.remove(prompt)
@staticmethod
def post_simple_prompt(
title: str, message: str,
ok_button_info: PromptButtonInfo = PromptButtonInfo("OK", None),
cancel_button_info: PromptButtonInfo = None,
middle_button_info: PromptButtonInfo = None,
middle_2_button_info: PromptButtonInfo = None,
on_window_closed_fn: Callable[[], None] = None,
modal=True,
shortcut_keys=True,
standalone=True,
no_title_bar=False,
width=None,
height=None,
callback_addons: List = [],
):
"""When standalone is true, it will hide all other managed prompts in this manager."""
def unwrap_button_info(button_info: PromptButtonInfo):
if button_info:
return button_info.name, button_info.on_button_clicked_fn
else:
return None, None
ok_button_text, ok_button_fn = unwrap_button_info(ok_button_info)
cancel_button_text, cancel_button_fn = unwrap_button_info(cancel_button_info)
middle_button_text, middle_button_fn = unwrap_button_info(middle_button_info)
middle_2_button_text, middle_2_button_fn = unwrap_button_info(middle_2_button_info)
if standalone:
prompts = PromptManager._prompts
PromptManager._prompts = set([])
for prompt in prompts:
prompt.destroy()
prompt = Prompt(
title, message, ok_button_text=ok_button_text,
cancel_button_text=cancel_button_text, middle_button_text=middle_button_text,
middle_2_button_text=middle_2_button_text, ok_button_fn=ok_button_fn,
cancel_button_fn=cancel_button_fn, middle_button_fn=middle_button_fn,
middle_2_button_fn=middle_2_button_fn, modal=modal,
on_closed_fn=on_window_closed_fn, shortcut_keys=shortcut_keys,
no_title_bar=no_title_bar, width=width, height=height, callback_addons=callback_addons
)
prompt.show()
return prompt
class Prompt:
"""Pop up a prompt window that asks the user a simple question with up to four buttons for answers.
Callbacks are executed for each button press, as well as when the window is closed manually.
"""
def __init__(
self,
title,
text,
ok_button_text="OK",
cancel_button_text=None,
middle_button_text=None,
middle_2_button_text=None,
ok_button_fn=None,
cancel_button_fn=None,
middle_button_fn=None,
middle_2_button_fn=None,
modal=False,
on_closed_fn=None,
shortcut_keys=True,
no_title_bar=False,
width=None,
height=None,
callback_addons: List = []
):
"""Initialize the callbacks and window information
Args:
title: Text appearing in the titlebar of the window
text: Text of the question being posed to the user
ok_button_text: Text for the first button
cancel_button_text: Text for the last button
middle_button_text: Text for the middle button
middle_button_2_text: Text for the second middle button
ok_button_fn: Function executed when the first button is pressed
cancel_button_fn: Function executed when the last button is pressed
middle_button_fn: Function executed when the middle button is pressed
middle_2_button_fn: Function executed when the second middle button is pressed
modal: True if the window is modal, shutting down other UI until an answer is received
on_closed_fn: Function executed when the window is closed without hitting a button
shortcut_keys: If it can be confirmed or hidden with shortcut keys like Enter or ESC.
no_title_bar: If it needs to show title bar.
width: The specified width. By default, it will use the computed width.
height: The specified height. By default, it will use the computed height.
callback_addons: Addon widgets which is appended in the prompt window. By default, it is empty
"""
self._title = title
self._text = text
self._cancel_button_text = cancel_button_text
self._cancel_button_fn = cancel_button_fn
self._ok_button_fn = ok_button_fn
self._ok_button_text = ok_button_text
self._middle_button_text = middle_button_text
self._middle_button_fn = middle_button_fn
self._middle_2_button_text = middle_2_button_text
self._middle_2_button_fn = middle_2_button_fn
self._modal = modal
self._on_closed_fn = on_closed_fn
self._button_clicked = False
self._shortcut_keys = shortcut_keys
self._no_title_bar = no_title_bar
self._width = width
self._height = height
self._callback_addons = callback_addons
self._key_functions = {
int(carb.input.KeyboardInput.ENTER): self._on_ok_button_fn,
int(carb.input.KeyboardInput.ESCAPE): self._on_cancel_button_fn
}
self._buttons = []
self._build_ui()
def __del__(self):
self.destroy()
def destroy(self):
for button in self._buttons:
button.set_clicked_fn(None)
self._buttons.clear()
self.hide()
if self._window:
self._window.set_visibility_changed_fn(None)
self._window = None
def __enter__(self):
"""Called on entering a 'with' loop"""
self.show()
return self
def __exit__(self, type, value, trace):
"""Called on exiting a 'with' loop"""
self.hide()
@property
def visible(self):
return self.is_visible()
@visible.setter
def visible(self, value):
if value:
self.show()
else:
self.hide()
def show(self):
"""Make the prompt window visible"""
if not self._window:
self._build_ui()
self._window.visible = True
self._button_clicked = False
PromptManager.add_prompt(self)
def hide(self):
"""Make the prompt window invisible"""
if self._window:
self._window.visible = False
PromptManager.remove_prompt(self)
def is_visible(self):
"""Returns True if the prompt is currently visible"""
return self._window and self._window.visible
def set_text(self, text):
"""Set a new question label"""
self._text_label.text = text
def set_confirm_fn(self, on_ok_button_clicked):
"""Define a new callback for when the first (okay) button is clicked"""
self._ok_button_fn = on_ok_button_clicked
def set_cancel_fn(self, on_cancel_button_clicked):
"""Define a new callback for when the third (cancel) button is clicked"""
self._cancel_button_fn = on_cancel_button_clicked
def set_middle_button_fn(self, on_middle_button_clicked):
"""Define a new callback for when the second (middle) button is clicked"""
self._middle_button_fn = on_middle_button_clicked
def set_middle_2_button_fn(self, on_middle_2_button_clicked):
self._middle_2_button_fn = on_middle_2_button_clicked
def set_on_closed_fn(self, on_on_closed):
"""Define a new callback for when the window is closed without pressing a button"""
self._on_closed_fn = on_on_closed
def _on_visibility_changed(self, new_visibility: bool):
"""Callback executed when visibility of the window closes"""
if not new_visibility:
if not self._button_clicked and self._on_closed_fn is not None:
self._on_closed_fn()
self.hide()
def _on_ok_button_fn(self):
"""Callback executed when the first (okay) button is pressed"""
self._button_clicked = True
self.hide()
if self._ok_button_fn:
self._ok_button_fn()
def _on_cancel_button_fn(self):
"""Callback executed when the third (cancel) button is pressed"""
self._button_clicked = True
self.hide()
if self._cancel_button_fn:
self._cancel_button_fn()
def _on_middle_button_fn(self):
"""Callback executed when the second (middle) button is pressed"""
self._button_clicked = True
self.hide()
if self._middle_button_fn:
self._middle_button_fn()
def _on_closed_fn(self):
"""Callback executed when the window is closed without pressing a button"""
self._button_clicked = True
self.hide()
if self._on_closed_fn:
self._on_closed_fn()
def _on_middle_2_button_fn(self):
self._button_clicked = True
self.hide()
if self._middle_2_button_fn:
self._middle_2_button_fn()
def _on_key_pressed_fn(self, key, mod, pressed):
if not pressed or not self._shortcut_keys:
return
func = self._key_functions.get(key)
if func:
func()
def _build_ui(self):
"""Construct the window based on the current parameters"""
num_buttons = 0
if self._ok_button_text:
num_buttons += 1
if self._cancel_button_text:
num_buttons += 1
if self._middle_button_text:
num_buttons += 1
if self._middle_2_button_text:
num_buttons += 1
button_width = 120
spacer_width = 60
if self._width:
window_width = self._width
else:
window_width = button_width * num_buttons + spacer_width * 2
if window_width < 400:
window_width = 400
if self._height:
window_height = self._height
else:
window_height = 0
if self._title:
window_id = self._title
else:
# Generates unique id for this window to make sure all prompts are unique.
window_id = f"##{str(uuid.uuid1())}"
self._window = omni.ui.Window(
window_id, visible=False, height=window_height, width=window_width,
dockPreference=omni.ui.DockPreference.DISABLED,
visibility_changed_fn=self._on_visibility_changed,
)
self._window.flags = (
omni.ui.WINDOW_FLAGS_NO_COLLAPSE | omni.ui.WINDOW_FLAGS_NO_SCROLLBAR |
omni.ui.WINDOW_FLAGS_NO_RESIZE | omni.ui.WINDOW_FLAGS_NO_MOVE
)
self._window.set_key_pressed_fn(self._on_key_pressed_fn)
if self._no_title_bar:
self._window.flags = self._window.flags | omni.ui.WINDOW_FLAGS_NO_TITLE_BAR
if self._modal:
self._window.flags = self._window.flags | omni.ui.WINDOW_FLAGS_MODAL
num_buttons = 0
if self._ok_button_text:
num_buttons += 1
if self._cancel_button_text:
num_buttons += 1
if self._middle_button_text:
num_buttons += 1
if self._middle_2_button_text:
num_buttons += 1
button_width = 120
with self._window.frame:
with omni.ui.VStack(height=0):
omni.ui.Spacer(width=0, height=10)
with omni.ui.HStack(height=0):
omni.ui.Spacer(width=40)
self._text_label = omni.ui.Label(
self._text, word_wrap=True, width=self._window.width - 80, height=0, name="prompt_text"
)
omni.ui.Spacer(width=40)
omni.ui.Spacer(width=0, height=10)
with omni.ui.HStack(height=0):
omni.ui.Spacer(height=0)
if self._ok_button_text:
ok_button = omni.ui.Button(self._ok_button_text, name="confirm_button", width=button_width, height=0)
ok_button.set_clicked_fn(self._on_ok_button_fn)
self._buttons.append(ok_button)
if self._middle_button_text:
middle_button = omni.ui.Button(self._middle_button_text, name="middle_button", width=button_width, height=0)
middle_button.set_clicked_fn(self._on_middle_button_fn)
self._buttons.append(middle_button)
if self._middle_2_button_text:
middle_2_button = omni.ui.Button(self._middle_2_button_text, name="middle_2_button", width=button_width, height=0)
middle_2_button.set_clicked_fn(self._on_middle_2_button_fn)
self._buttons.append(middle_2_button)
if self._cancel_button_text:
cancel_button = omni.ui.Button(self._cancel_button_text, name="cancel_button", width=button_width, height=0)
cancel_button.set_clicked_fn(self._on_cancel_button_fn)
self._buttons.append(cancel_button)
omni.ui.Spacer(height=0)
omni.ui.Spacer(width=0, height=10)
for callback in self._callback_addons:
if callback and callable(callback):
callback()
|
omniverse-code/kit/exts/omni.kit.widget.prompt/omni/kit/widget/prompt/tests/__init__.py | # Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
from .test_prompt import TestPrompt |
omniverse-code/kit/exts/omni.kit.widget.prompt/omni/kit/widget/prompt/tests/test_prompt.py | import omni.kit.test
import omni.kit.ui_test as ui_test
from functools import partial
from omni.kit.widget.prompt import Prompt, PromptManager, PromptButtonInfo
class TestPrompt(omni.kit.test.AsyncTestCase):
async def setUp(self):
PromptManager.on_shutdown()
async def _wait(self, frames=5):
for i in range(frames):
await omni.kit.app.get_app().next_update_async()
async def test_show_prompt_and_button_clicks(self):
value = ""
def f(text):
nonlocal value
value = text
button_names = ["left", "right", "middle", "middle_2"]
prompt = Prompt(
"title", "information text", *button_names,
ok_button_fn=partial(f, button_names[0]), cancel_button_fn=partial(f, button_names[1]),
middle_button_fn=partial(f, button_names[2]), middle_2_button_fn=partial(f, button_names[3])
)
for button_name in button_names:
prompt.show()
self.assertTrue(prompt.visible)
await ui_test.find("title").focus()
label = ui_test.find("title//Frame/**/Label[*].text=='information text'")
self.assertTrue(label)
button = ui_test.find(f"title//Frame/**/Button[*].text=='{button_name}'")
self.assertTrue(button)
await button.click()
self.assertEqual(value, button_name)
self.assertFalse(prompt.visible)
self.assertFalse(prompt.is_visible())
prompt.destroy()
async def test_set_buttons_fn(self):
value = ""
def f(text):
nonlocal value
value = text
button_names = ["left", "right", "middle", "middle_2"]
prompt = Prompt("title", "test", *button_names)
prompt.set_confirm_fn(partial(f, button_names[0]))
prompt.set_cancel_fn(partial(f, button_names[1]))
prompt.set_middle_button_fn(partial(f, button_names[2]))
prompt.set_middle_2_button_fn(partial(f, button_names[3]))
prompt.set_on_closed_fn(partial(f, "closed"))
for button_name in button_names:
prompt.show()
self.assertTrue(prompt.visible)
await ui_test.find("title").focus()
label = ui_test.find("title//Frame/**/Label[*].text=='test'")
self.assertTrue(label)
button = ui_test.find(f"title//Frame/**/Button[*].text=='{button_name}'")
self.assertTrue(button)
await button.click()
self.assertEqual(value, button_name)
self.assertFalse(prompt.visible)
self.assertFalse(prompt.is_visible())
prompt.show()
prompt.hide()
self.assertEqual(value, "closed")
prompt.destroy()
async def test_hide_prompt(self):
value = ""
def f(text):
nonlocal value
value = text
prompt = Prompt("title", "hide dialog", on_closed_fn=partial(f, "closed"))
prompt.show()
self.assertTrue(prompt.visible)
prompt.hide()
self.assertEqual(value, "closed")
self.assertFalse(prompt.visible)
prompt.show()
self.assertTrue(prompt.visible)
prompt.visible = False
self.assertFalse(prompt.visible)
async def test_set_text(self):
prompt = Prompt("test", "test")
prompt.show()
prompt.set_text("set text")
await ui_test.find("test").focus()
label = ui_test.find("test//Frame/**/Label[*].text=='set text'")
self.assertTrue(label)
async def test_prompt_manager(self):
value = ""
def f(text):
nonlocal value
value = text
n = ["1left", "1right", "1middle", "1middle_2"]
prompt = PromptManager.post_simple_prompt(
"title", "test",
ok_button_info=PromptButtonInfo(n[0], partial(f, n[0])),
cancel_button_info=PromptButtonInfo(n[1], partial(f, n[1])),
middle_button_info=PromptButtonInfo(n[2], partial(f, n[2])),
middle_2_button_info=PromptButtonInfo(n[3], partial(f, n[3])),
on_window_closed_fn=partial(f, "closed")
)
for button_name in n:
prompt.show()
self.assertTrue(prompt.visible)
await ui_test.find("title").focus()
label = ui_test.find("title//Frame/**/Label[*].text=='test'")
self.assertTrue(label)
button = ui_test.find(f"title//Frame/**/Button[*].text=='{button_name}'")
self.assertTrue(button)
await button.click()
self.assertEqual(value, button_name)
self.assertFalse(prompt.visible)
self.assertFalse(prompt.is_visible())
prompt.show()
prompt.hide()
self.assertEqual(value, "closed")
prompt.destroy()
|
omniverse-code/kit/exts/omni.kit.widget.prompt/docs/CHANGELOG.md | # Changelog
Omniverse Kit Prompt Dialog
## [1.0.5] - 2023-01-19
### Fixed
- Generates unique id when title is not provided for prompt.
## [1.0.4] - 2022-12-07
### Fixed
- Missing import (OM-75466).
## [1.0.3] - 2022-11-21
### Changed
- Adjust button size.
## [1.0.2] - 2022-06-15
### Changed
- Add prompt manager to simplify prompt notifications.
## [1.0.1] - 2022-03-01
### Changed
- Add unittests.
## [1.0.0] - 2021-02-24
### Added
- Prompt Dialog
|
omniverse-code/kit/exts/omni.kit.viewport.utility/PACKAGE-LICENSES/omni.kit.viewport.utility-LICENSE.md | Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related documentation without an express
license agreement from NVIDIA CORPORATION is strictly prohibited. |
omniverse-code/kit/exts/omni.kit.viewport.utility/config/extension.toml | [package]
# Semantic Versioning is used: https://semver.org/
version = "1.0.14"
# Lists people or organizations that are considered the "authors" of the package.
authors = ["NVIDIA"]
# The title and description fields are primarly for displaying extension info in UI
title = "Viewport Utility"
description="Utility functions to access [active] Viewport information"
# URL of the extension source repository.
repository = ""
# Keywords for the extension
keywords = ["kit", "viewport", "utility"]
# Location of change log file in target (final) folder of extension, relative to the root.
# More info on writing changelog: https://keepachangelog.com/en/1.0.0/
changelog="docs/CHANGELOG.rst"
# Path (relative to the root) or content of readme markdown file for UI.
readme = "docs/README.md"
# Icon is shown in Extensions window, it is recommended to be square, of size 256x256.
icon = "data/icon.png"
category = "Viewport"
[dependencies]
"omni.kit.viewport.window" = { optional = true } # Viewport-Next
"omni.kit.window.viewport" = { optional = true } # Viewport-Legacy
"omni.ui" = { optional = true } # Required for Viewport-Legacy adapter
# Main python module this extension provides, it will be publicly available as "import omni.kit.viewport.registry".
[[python.module]]
name = "omni.kit.viewport.utility"
[settings]
# exts."omni.kit.viewport.registry".xxx = ""
[[test]]
args = [
"--/renderer/enabled=pxr",
"--/renderer/active=pxr",
"--/pxr/rendermode=HdStormRendererPlugin",
"--/renderer/multiGpu/enabled=false",
"--/renderer/multiGpu/autoEnable=false", # Disable mGPU with PXR due to OM-51026, OM-53611
"--/renderer/multiGpu/maxGpuCount=1",
"--/app/asyncRendering=false",
"--/app/window/dpiScaleOverride=1.0",
"--/app/window/scaleToMonitor=false",
"--/app/window/hideUi=true",
"--/app/renderer/resolution/width=500",
"--/app/renderer/resolution/height=500",
"--/app/window/width=500",
"--/app/window/height=500",
"--/app/viewport/forceHideFps=true",
"--no-window"
]
dependencies = [
"omni.ui",
"omni.kit.mainwindow",
"omni.kit.test_helpers_gfx",
"omni.kit.ui_test",
"omni.kit.manipulator.selection",
"omni.hydra.pxr",
"omni.kit.window.viewport",
"omni.kit.context_menu"
]
stdoutFailPatterns.exclude = [
"*HydraRenderer failed to render this frame*", # Can drop a frame or two rendering with OpenGL interop
]
[documentation]
pages = [
"docs/Overview.md",
"docs/CHANGELOG.md",
]
|
omniverse-code/kit/exts/omni.kit.viewport.utility/omni/kit/viewport/utility/__init__.py | # Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = [
'frame_viewport_prims',
'frame_viewport_selection',
'get_viewport_from_window_name',
'get_active_viewport',
'get_active_viewport_window'
'get_active_viewport_and_window',
'get_viewport_window_camera_path',
'get_viewport_window_camera_string',
'get_active_viewport_camera_path',
'get_active_viewport_camera_string',
'get_num_viewports',
'capture_viewport_to_file',
'capture_viewport_to_buffer',
'post_viewport_message',
'toggle_global_visibility',
'create_drop_helper',
'disable_selection',
'get_ground_plane_info'
]
import asyncio
import carb
from pxr import Gf, Sdf
from typing import Callable, List, Optional, Tuple
_g_is_viewport_next = None
def _is_viewport_next(self):
global _g_is_viewport_next
if _g_is_viewport_next is None:
vp_window_name = carb.settings.get_settings().get('/exts/omni.kit.viewport.window/startup/windowName')
_g_is_viewport_next = vp_window_name and (vp_window_name == 'Viewport')
return _g_is_viewport_next
def _get_default_viewport_window_name(window_name: str = None):
if window_name:
return window_name
return carb.settings.get_settings().get('/exts/omni.kit.viewport.window/startup/windowName') or 'Viewport'
def get_viewport_from_window_name(window_name: str = None):
'''Return the first Viewport that is held inside a specific Window name.'''
window_name = _get_default_viewport_window_name(window_name)
try:
from omni.kit.viewport.window import get_viewport_window_instances
# Get every ViewportWindow, regardless of UsdContext it is attached to
for window in get_viewport_window_instances(None):
if window.title == window_name:
return window.viewport_api
except ImportError:
pass
try:
import omni.kit.viewport_legacy as vp_legacy
vp_iface = vp_legacy.get_viewport_interface()
viewport_handle = vp_iface.get_instance(window_name)
if viewport_handle:
vp_window = vp_iface.get_viewport_window(viewport_handle)
if vp_window:
from .legacy_viewport_api import LegacyViewportAPI
return LegacyViewportAPI(vp_iface.get_viewport_window_name(viewport_handle))
except ImportError:
pass
return None
def get_active_viewport_and_window(usd_context_name: str = '', wrap_legacy: bool = True, window_name: str = None):
'''Return the active Viewport for a given UsdContext and the name of the Window it is inside of.'''
default_window_name = _get_default_viewport_window_name(window_name)
try:
from omni.kit.viewport.window import get_viewport_window_instances, ViewportWindow
# If no windowname provided, see if the ViewportWindow already knows what is active
if window_name is None:
active_window = ViewportWindow.active_window
if active_window:
# Have an active Window, need to make sure UsdContext name matches (or passed None to avoid the match)
viewport_api = active_window.viewport_api
if (usd_context_name is None) or (usd_context_name == viewport_api.usd_context_name):
return (viewport_api, active_window)
active_window = None
# Get all ViewportWindows attached the UsdContext with this name
for window in get_viewport_window_instances(usd_context_name):
# If matching by name, check that first ignoring whether focused or not (multiple Windows cannot have same name)
window_title = window.title
if window_name and window_name != window_title:
continue
# If this Window is focused, then return it
if window.focused:
active_window = window
break
# Save the first encountered Window as he fallback 'default' Window
if window_title == default_window_name:
active_window = window
elif active_window is None:
active_window = window
if active_window:
return (active_window.viewport_api, active_window)
except ImportError:
pass
try:
import omni.kit.viewport_legacy as vp_legacy
vp_iface = vp_legacy.get_viewport_interface()
instance_list = vp_iface.get_instance_list()
if instance_list:
first_context_match = None
for viewport_handle in vp_iface.get_instance_list():
vp_window = vp_iface.get_viewport_window(viewport_handle)
if not vp_window:
continue
# If matching by name, check that first ignoring whether focused or not (multiple Windows cannot have same name)
window_title = vp_iface.get_viewport_window_name(viewport_handle)
if window_name and window_name != vp_iface.get_viewport_window_name(viewport_handle):
continue
# Filter by UsdContext name, where None means any UsdContext
if (usd_context_name is not None) and (usd_context_name != vp_window.get_usd_context_name()):
continue
if vp_window.is_focused():
first_context_match = viewport_handle
break
elif window_title == default_window_name:
first_context_match = viewport_handle
elif first_context_match is None:
first_context_match = viewport_handle
# If there was a match on UsdContext name (but not focused), return the first one
if first_context_match is not None:
vp_window = vp_iface.get_viewport_window(first_context_match)
if vp_window:
from .legacy_viewport_api import LegacyViewportAPI
window_name = vp_iface.get_viewport_window_name(first_context_match)
viewport_api = LegacyViewportAPI(vp_iface.get_viewport_window_name(first_context_match))
if wrap_legacy:
from .legacy_viewport_window import LegacyViewportWindow
vp_window = LegacyViewportWindow(window_name, viewport_api)
return (viewport_api, vp_window)
except ImportError:
pass
return (None, None)
def get_active_viewport_window(window_name: str = None, wrap_legacy: bool = True, usd_context_name: str = ''):
'''Return the active Viewport for a given UsdContext.'''
return get_active_viewport_and_window(usd_context_name, wrap_legacy, window_name)[1]
def get_active_viewport(usd_context_name: str = ''):
'''Return the active Viewport for a given UsdContext.'''
return get_active_viewport_and_window(usd_context_name, False)[0]
def get_viewport_window_camera_path(window_name: str = None) -> Sdf.Path:
'''Return a Sdf.Path to the camera used by the active Viewport in a named Window.'''
viewport_api = get_viewport_from_window_name(window_name)
return viewport_api.camera_path if viewport_api else None
def get_viewport_window_camera_string(window_name: str = None) -> str:
'''Return a string path to the camera used by the active Viewport in a named Window.'''
viewport_api = get_viewport_from_window_name(window_name)
return viewport_api.camera_path.pathString if viewport_api else None
def get_active_viewport_camera_path(usd_context_name: str = '') -> Sdf.Path:
'''Return a Sdf.Path to the camera used by the active Viewport for a specific UsdContext.'''
viewport_api = get_active_viewport(usd_context_name)
return viewport_api.camera_path if viewport_api else None
def get_active_viewport_camera_string(usd_context_name: str = '') -> str:
'''Return a string path to the camera used by the active Viewport for a specific UsdContext.'''
viewport_api = get_active_viewport(usd_context_name)
return viewport_api.camera_path.pathString if viewport_api else None
def get_available_aovs_for_viewport(viewport_api):
if hasattr(viewport_api, 'legacy_window'):
viewport_handle = viewport_api.frame_info.get('viewport_handle')
asyncio.ensure_future(viewport_api.usd_context.next_frame_async(viewport_handle))
return viewport_api.legacy_window.get_aov_list()
carb.log_error('Available AOVs not implemented')
return []
def add_aov_to_viewport(viewport_api, aov_name: str):
if hasattr(viewport_api, 'legacy_window'):
return viewport_api.legacy_window.add_aov(aov_name)
from pxr import Usd, UsdRender
from omni.usd import editor
stage = viewport_api.stage
render_product_path = viewport_api.render_product_path
with Usd.EditContext(stage, stage.GetSessionLayer()):
render_prod_prim = stage.GetPrimAtPath(render_product_path)
if not render_prod_prim:
raise RuntimeError(f'Invalid renderProduct "{render_product_path}"')
render_var_prim_path = Sdf.Path(f'/Render/Vars/{aov_name}')
render_var_prim = stage.GetPrimAtPath(render_var_prim_path)
if not render_var_prim:
render_var_prim = stage.DefinePrim(render_var_prim_path)
if not render_var_prim:
raise RuntimeError(f'Cannot create renderVar "{render_var_prim_path}"')
render_var_prim.CreateAttribute("sourceName", Sdf.ValueTypeNames.String).Set(aov_name)
render_prod_var_rel = render_prod_prim.GetRelationship('orderedVars')
if not render_prod_var_rel:
render_prod_prim.CreateRelationship('orderedVars')
if not render_prod_var_rel:
raise RuntimeError(f'cannot set orderedVars relationship for renderProduct "{render_product_path}"')
render_prod_var_rel.AddTarget(render_var_prim_path)
editor.set_hide_in_stage_window(render_var_prim, True)
editor.set_no_delete(render_var_prim, True)
return True
def post_viewport_message(viewport_api_or_window, message: str, message_id: str = None):
if hasattr(viewport_api_or_window, 'legacy_window'):
viewport_api_or_window.legacy_window.post_toast(message)
return
if hasattr(viewport_api_or_window, '_post_toast_message'):
viewport_api_or_window._post_toast_message(message, message_id)
return
try:
from omni.kit.viewport.window import get_viewport_window_instances
for window in get_viewport_window_instances(viewport_api_or_window.usd_context_name):
if window.viewport_api.id == viewport_api_or_window.id:
window._post_toast_message(message, message_id)
return
except (ImportError, AttributeError):
pass
class _CaptureHelper:
def __init__(self, legacy_window, is_hdr: bool, file_path: str = None, render_product_path: str = None, on_capture_fn: Callable = None, format_desc: dict = None):
import omni.renderer_capture
self.__future = asyncio.Future()
self.__renderer = omni.renderer_capture.acquire_renderer_capture_interface()
if render_product_path:
self.__future.set_result(True)
self.__renderer.capture_next_frame_using_render_product(viewport_handle=legacy_window.get_id(), filepath=file_path, render_product=render_product_path)
return
self.__is_hdr = is_hdr
self.__legacy_window = legacy_window
self.__file_path = file_path
self.__on_capture_fn = on_capture_fn
self.__format_desc = format_desc
event_stream = legacy_window.get_ui_draw_event_stream()
self.__capture_sub = event_stream.create_subscription_to_pop(self.capture_function, name='omni.kit.viewport.utility.capture_viewport')
def capture_function(self, *args):
self.__capture_sub = None
legacy_window, self.__legacy_window = self.__legacy_window, None
renderer, self.__renderer = self.__renderer, None
if self.__is_hdr:
viewport_rp_resource = legacy_window.get_drawable_hdr_resource()
else:
viewport_rp_resource = legacy_window.get_drawable_ldr_resource()
if self.__on_capture_fn:
def _interecept_capture(*args, **kwargs):
try:
self.__on_capture_fn(*args, **kwargs)
finally:
if not self.__future.done():
self.__future.set_result(True)
renderer.capture_next_frame_rp_resource_callback(_interecept_capture, resource=viewport_rp_resource)
elif self.__file_path:
if not self.__future.done():
self.__future.set_result(True)
if self.__format_desc:
if hasattr(renderer, 'capture_next_frame_rp_resource_to_file'):
renderer.capture_next_frame_rp_resource_to_file(filepath=self.__file_path,
resource=viewport_rp_resource,
format_desc=self.__format_desc)
return
carb.log_error('Format description provided to capture, but not honored')
renderer.capture_next_frame_rp_resource(filepath=self.__file_path, resource=viewport_rp_resource)
async def wait_for_result(self, completion_frames: int = 2):
await self.__future
import omni.kit.app
app = omni.kit.app.get_app()
while completion_frames:
await app.next_update_async()
completion_frames = completion_frames - 1
return self.__future.result()
def capture_viewport_to_buffer(viewport_api, on_capture_fn: Callable, is_hdr: bool = False):
'''Capture the provided viewport and send it to a callback.'''
if hasattr(viewport_api, 'legacy_window'):
return _CaptureHelper(viewport_api.legacy_window, is_hdr=is_hdr, on_capture_fn=on_capture_fn)
from omni.kit.widget.viewport.capture import ByteCapture
return viewport_api.schedule_capture(ByteCapture(on_capture_fn, aov_name='HdrColor' if is_hdr else 'LdrColor'))
def capture_viewport_to_file(viewport_api, file_path: str = None, is_hdr: bool = False, render_product_path: str = None, format_desc: dict = None):
'''Capture the provided viewport to a file.'''
file_path = str(file_path)
if hasattr(viewport_api, 'legacy_window'):
return _CaptureHelper(viewport_api.legacy_window, is_hdr=is_hdr, file_path=file_path,
render_product_path=render_product_path, format_desc=format_desc)
from omni.kit.widget.viewport.capture import MultiAOVFileCapture
class HdrCaptureHelper(MultiAOVFileCapture):
def __init__(self, file_path: str, is_hdr: bool, format_desc: dict = None):
super().__init__(['HdrColor' if is_hdr else 'LdrColor'], [file_path])
# Setup RenderProduct for Hdr
def __del__(self):
# Setdown RenderProduct for Hdr
pass
def capture_aov(self, file_path, aov):
if render_product_path:
self.save_product_to_file(file_path, render_product_path)
else:
self.save_aov_to_file(file_path, aov, format_desc=format_desc)
return viewport_api.schedule_capture(HdrCaptureHelper(file_path, is_hdr))
def get_num_viewports(usd_context_name: str = None):
num_viewports = 0
try:
from omni.kit.viewport.window import get_viewport_window_instances
num_viewports += sum(1 for _ in get_viewport_window_instances(usd_context_name))
except ImportError:
pass
try:
import omni.kit.viewport_legacy as vp_legacy
vp_iface = vp_legacy.get_viewport_interface()
for viewport_handle in vp_iface.get_instance_list():
if usd_context_name and (usd_context_name != vp_iface.get_viewport_window(viewport_handle).get_usd_context_name()):
continue
num_viewports += 1
except ImportError:
pass
return num_viewports
def create_viewport_window(name: str = None, usd_context_name: str = '', width: int = 1280, height: int = 720, position_x: int = 0, position_y: int = 0, camera_path: Sdf.Path = None, **kwargs):
window = None
try:
from omni.kit.viewport.window import get_viewport_window_instances, ViewportWindow
if name is None:
name = f"Viewport {get_num_viewports()}"
window = ViewportWindow(name, usd_context_name, width=width, height=height, **kwargs)
return window
except ImportError:
pass
if window is None:
try:
import omni.kit.viewport_legacy as vp_legacy
from .legacy_viewport_window import LegacyViewportWindow
vp_iface = vp_legacy.get_viewport_interface()
vp_handle = vp_iface.create_instance()
assigned_name = vp_iface.get_viewport_window_name(vp_handle)
if name and (name != assigned_name):
carb.log_warn('omni.kit.viewport_legacy does not support explicit Window names, using assigned name "{assigned_name}"')
window = LegacyViewportWindow(assigned_name, **kwargs)
window.width = width
window.height = height
except ImportError:
pass
if window:
window.setPosition(position_x, position_y)
if camera_path:
window.viewport_api.camera_path = camera_path
return window
class ViewportPrimReferencePoint:
BOUND_BOX_CENTER = 0
BOUND_BOX_LEFT = 1
BOUND_BOX_RIGHT = 2
BOUND_BOX_TOP = 3
BOUND_BOX_BOTTOM = 4
def get_ui_position_for_prim(viewport_window, prim_path: str, alignment: ViewportPrimReferencePoint = ViewportPrimReferencePoint.BOUND_BOX_CENTER, force_legacy_api: bool = False):
if isinstance(viewport_window, str):
window_name = str(viewport_window)
viewport_window = get_active_viewport_window(window_name=window_name)
if viewport_window is None:
carb.log_error('No ViewportWindow found with name "{window_name}"')
return (0, 0), False
# XXX: omni.ui constants needed
import omni.ui
dpi = omni.ui.Workspace.get_dpi_scale()
if dpi <= 0.0:
dpi = 1
# XXX: kit default dock splitter size (4)
dock_splitter_size = 4 * dpi
tab_bar_height = 0
if viewport_window.dock_tab_bar_visible or not (viewport_window.flags & omni.ui.WINDOW_FLAGS_NO_TITLE_BAR):
tab_bar_height = 22 * dpi
# Force legacy Viewport code path if requested
if force_legacy_api and hasattr(viewport_window, 'legacy_window'):
import omni.ui
import omni.kit.viewport_legacy as vp_legacy
legacy_window = viewport_window.legacy_window
alignment = {
ViewportPrimReferencePoint.BOUND_BOX_LEFT: vp_legacy.ViewportPrimReferencePoint.BOUND_BOX_LEFT,
ViewportPrimReferencePoint.BOUND_BOX_RIGHT: vp_legacy.ViewportPrimReferencePoint.BOUND_BOX_RIGHT,
ViewportPrimReferencePoint.BOUND_BOX_TOP: vp_legacy.ViewportPrimReferencePoint.BOUND_BOX_TOP,
ViewportPrimReferencePoint.BOUND_BOX_BOTTOM: vp_legacy.ViewportPrimReferencePoint.BOUND_BOX_BOTTOM,
}.get(alignment, vp_legacy.ViewportPrimReferencePoint.BOUND_BOX_CENTER)
success, x, y, z = legacy_window.get_prim_clipping_pos(str(prim_path), alignment)
if not success:
return (0, 0), False
# Changing xy to match the window coord system.
x = (x + 1.0) / 2.0 # x to [0, 1]
y = 1 - (y + 1.0) / 2.0 # y to [0, 1] and reverse its direction.
min_x, min_y, max_x, max_y = legacy_window.get_viewport_rect()
prim_window_pos_x = (max_x - min_x) * x + min_x - dock_splitter_size
prim_window_pos_y = (max_y - min_y) * y + min_y - tab_bar_height - dock_splitter_size
else:
from pxr import UsdGeom, Gf
viewport_api = viewport_window.viewport_api
usd_context = viewport_window.viewport_api.usd_context
stage = usd_context.get_stage()
usd_prim = stage.GetPrimAtPath(prim_path) if stage else False
if usd_prim:
xformable_prim = UsdGeom.Xformable(usd_prim)
else:
xformable_prim = None
if (not stage) or (not xformable_prim):
return (0, 0), False
# Get bounding box from prim
aabb_min, aabb_max = usd_context.compute_path_world_bounding_box(str(prim_path))
gf_range = Gf.Range3d(Gf.Vec3d(aabb_min[0], aabb_min[1], aabb_min[2]), Gf.Vec3d(aabb_max[0], aabb_max[1], aabb_max[2]))
if gf_range.IsEmpty():
# May be empty (UsdGeom.Xform for example), so build a scene-scaled constant box
world_units = UsdGeom.GetStageMetersPerUnit(stage)
if Gf.IsClose(world_units, 0.0, 1e-6):
world_units = 0.01
# XXX: compute_path_world_transform is identity in this case
if False:
world_xform = Gf.Matrix4d(*usd_context.compute_path_world_transform(str(prim_path)))
else:
import omni.timeline
time = omni.timeline.get_timeline_interface().get_current_time() * stage.GetTimeCodesPerSecond()
world_xform = xformable_prim.ComputeLocalToWorldTransform(time)
ref_position = world_xform.ExtractTranslation()
extent = Gf.Vec3d(0.2 / world_units) # 20cm by default
gf_range.SetMin(ref_position - extent)
gf_range.SetMax(ref_position + extent)
# Computes the extent in clipping pos
mvp = viewport_api.world_to_ndc
min_x, min_y, min_z = 2.0, 2.0, 2.0
max_x, max_y, max_z = -2.0, -2.0, -2.0
for i in range(8):
corner = gf_range.GetCorner(i)
pos = mvp.Transform(corner)
min_x = min(min_x, pos[0])
min_y = min(min_y, pos[1])
min_z = min(min_z, pos[2])
max_x = max(max_x, pos[0])
max_y = max(max_y, pos[1])
max_z = max(max_z, pos[2])
min_point = Gf.Vec3d(min_x, min_y, min_z)
max_point = Gf.Vec3d(max_x, max_y, max_z)
mid_point = (min_point + max_point) / 2
# Map to reference point in screen space
if alignment == ViewportPrimReferencePoint.BOUND_BOX_LEFT:
ndc_pos = mid_point - Gf.Vec3d((max_x - min_x) / 2, 0, 0)
elif alignment == ViewportPrimReferencePoint.BOUND_BOX_RIGHT:
ndc_pos = mid_point + Gf.Vec3d((max_x - min_x) / 2, 0, 0)
elif alignment == ViewportPrimReferencePoint.BOUND_BOX_TOP:
ndc_pos = mid_point + Gf.Vec3d(0, (max_y - min_y) / 2, 0)
elif alignment == ViewportPrimReferencePoint.BOUND_BOX_BOTTOM:
ndc_pos = mid_point - Gf.Vec3d(0, (max_y - min_y) / 2, 0)
else:
ndc_pos = mid_point
# Make sure its not clipped
if (ndc_pos[2] < 0) or (ndc_pos[0] < -1) or (ndc_pos[0] > 1) or (ndc_pos[1] < -1) or (ndc_pos[1] > 1):
return (0, 0), False
'''
XXX: Simpler world calculation
world_pos = gf_range.GetMidpoint()
dir_sel = (0, 1)
up_axis = UsdGeom.GetStageUpAxis(stage)
if up_axis == UsdGeom.Tokens.z:
dir_sel = (0, 2)
if up_axis == UsdGeom.Tokens.x:
dir_sel = (2, 1)
if alignment == ViewportPrimReferencePoint.BOUND_BOX_LEFT:
world_pos[dir_sel[0]] = gf_range.GetMin()[dir_sel[0]]
elif alignment == ViewportPrimReferencePoint.BOUND_BOX_RIGHT:
world_pos[dir_sel[0]] = gf_range.GetMax()[dir_sel[0]]
elif alignment == ViewportPrimReferencePoint.BOUND_BOX_TOP:
world_pos[dir_sel[1]] = gf_range.GetMax()[dir_sel[1]]
elif alignment == ViewportPrimReferencePoint.BOUND_BOX_BOTTOM:
world_pos[dir_sel[1]] = gf_range.GetMin()[dir_sel[1]]
ndc_pos = viewport_api.world_to_ndc.Transform(world_pos)
'''
x = (ndc_pos[0] + 1.0) / 2.0 # x to [0, 1]
y = 1 - (ndc_pos[1] + 1.0) / 2.0 # y to [0, 1] and reverse its direction.
frame = viewport_window.frame
prim_window_pos_x = dpi * (frame.screen_position_x + x * frame.computed_width) - dock_splitter_size
prim_window_pos_y = dpi * (frame.screen_position_y + y * frame.computed_height) - tab_bar_height - dock_splitter_size
return (prim_window_pos_x, prim_window_pos_y), True
def frame_viewport_prims(viewport_api=None, prims: List[str] = None):
if not prims:
return False
return __frame_viewport_objects(viewport_api, prims=prims, force_legacy_api=False)
def frame_viewport_selection(viewport_api=None, force_legacy_api: bool = False):
return __frame_viewport_objects(viewport_api, prims=None, force_legacy_api=force_legacy_api)
def __frame_viewport_objects(viewport_api=None, prims: Optional[List[str]] = None, force_legacy_api: bool = False):
if not viewport_api:
viewport_api = get_active_viewport()
if not viewport_api:
return False
if force_legacy_api and hasattr(viewport_api, "legacy_window"):
viewport_api.legacy_window.focus_on_selected()
return
# This is new CODE
if prims is None:
# Get current selection
prims = viewport_api.usd_context.get_selection().get_selected_prim_paths()
# Pass None to underlying command to signal "frame all" if selection is empty
prims = prims if prims else None
stage = viewport_api.stage
cam_path = viewport_api.camera_path
if not stage or not cam_path:
return False
cam_prim = stage.GetPrimAtPath(cam_path)
if not cam_prim:
return False
import omni.kit.undo
import omni.kit.commands
from pxr import UsdGeom
look_through = None
# Loop over all targets (should really be only one) and see if we can get a valid UsdGeom.Imageable
for target in cam_prim.GetRelationship('omni:kit:viewport:lookThrough:target').GetForwardedTargets():
target_prim = stage.GetPrimAtPath(target)
if not target_prim:
continue
if UsdGeom.Imageable(target_prim):
look_through = target_prim
break
try:
omni.kit.undo.begin_group()
resolution = viewport_api.resolution
omni.kit.commands.execute(
'FramePrimsCommand',
prim_to_move=cam_path if not look_through else look_through.GetPath(),
prims_to_frame=prims,
time_code=viewport_api.time,
usd_context_name=viewport_api.usd_context_name,
aspect_ratio=resolution[0] / resolution[1]
)
finally:
omni.kit.undo.end_group()
return True
def toggle_global_visibility(force_legacy_api: bool = False):
# Forward to omni.kit.viewport.actions and propogate an errors so caller should update code
carb.log_warn("omni.kit.viewport.utility.toggle_global_visibility is deprecated, use omni.kit.viewport.actions.toggle_global_visibility")
import omni.kit.actions.core
action_registry = omni.kit.actions.core.get_action_registry()
action_registry.get_action("omni.kit.viewport.actions", "toggle_global_visibility").execute()
async def next_viewport_frame_async(viewport, n_frames: int = 0):
"""
Waits until frames have been delivered to the Viewport.
Args:
viewport: the Viewport to wait for a frame on.
n_frames: the number of rendered frames to wait for.
"""
import omni.kit.app
app = omni.kit.app.get_app()
# Make sure at least one frame has been delivered
viewport_handle = viewport.frame_info.get('viewport_handle')
while viewport_handle is None:
await app.next_update_async()
viewport_handle = viewport.frame_info.get('viewport_handle')
# Now wait for any additional frames
usd_context = viewport.usd_context
while n_frames:
await usd_context.next_frame_async(viewport_handle)
n_frames = n_frames - 1
def create_drop_helper(*args, **kwargs):
try:
from omni.kit.viewport.window.dragdrop.legacy import create_drop_helper
return create_drop_helper(*args, **kwargs)
except (ImportError, ModuleNotFoundError):
try:
import omni.kit.viewport_legacy as vp_legacy
return vp_legacy.get_viewport_interface().create_drop_helper(*args, **kwargs)
except (ImportError, ModuleNotFoundError):
pass
class _DisableViewportWindowLayer:
def __init__(self, viewport_or_window, layers_and_categories):
self.__layers = []
# Find the omni.ui.Window for this Viewport to disable selection manipulator
viewport_window = None
from omni.kit.viewport.window import ViewportWindow, get_viewport_window_instances
if not isinstance(viewport_or_window, ViewportWindow):
viewport_id = viewport_or_window.id
for window_instance in get_viewport_window_instances(viewport_or_window.usd_context_name):
viewport_window_viewport = window_instance.viewport_api
if viewport_window_viewport.id == viewport_id:
viewport_window = window_instance
break
else:
viewport_window = viewport_or_window
if viewport_window:
for layer, category in layers_and_categories:
found_layer = viewport_window._find_viewport_layer(layer, category)
if found_layer:
self.__layers.append((found_layer, found_layer.visible))
found_layer.visible = False
def __del__(self):
for layer, visible in self.__layers:
layer.visible = visible
self.__layers = tuple()
def disable_selection(viewport_or_window, disable_click: bool = True):
'''Disable selection rect and possible the single click selection on a Viewport or ViewportWindow.
Returns an object that resets selection when it goes out of scope.'''
# First check if the Viewport is a legacy Viewport
from .legacy_viewport_window import LegacyViewportWindow
legacy_window = None
if hasattr(viewport_or_window, 'legacy_window'):
legacy_window = viewport_or_window.legacy_window
elif isinstance(viewport_or_window, LegacyViewportWindow):
legacy_window = viewport_or_window.legacy_window
if legacy_window:
class LegacySelectionState:
def __init__(self, viewport_window, disable_click):
self.__viewport_window = viewport_window
self.__restore_picking = viewport_window.is_enabled_picking()
if disable_click:
self.__viewport_window.set_enabled_picking(False)
self.__viewport_window.disable_selection_rect(True)
def __del__(self):
self.__viewport_window.set_enabled_picking(self.__restore_picking)
return LegacySelectionState(legacy_window, disable_click)
disable_items = [('Selection', 'manipulator')]
if disable_click:
disable_items.append(('ObjectClick', 'manipulator'))
return _DisableViewportWindowLayer(viewport_or_window, disable_items)
def disable_context_menu(viewport_or_window=None):
'''Disable context menu on a Viewport or ViewportWindow.
Returns an object that resets context menu visibility when it goes out of scope.'''
if viewport_or_window:
# Check if the Viewport is a legacy Viewport, s can only operate on all Viewportwindows in that case
from .legacy_viewport_window import LegacyViewportWindow
if hasattr(viewport_or_window, 'legacy_window') or isinstance(viewport_or_window, LegacyViewportWindow):
carb.log_warn("Cannot disable context menu on an individual Viewport, disabling it for all")
viewport_or_window = None
if viewport_or_window is None:
class _DisableAllContextMenus:
def __init__(self):
# When setting is initially unset, then context menu is enabled
self.__settings = carb.settings.get_settings()
enabled = self.__settings.get('/exts/omni.kit.window.viewport/showContextMenu')
self.__settings.set('/exts/omni.kit.window.viewport/showContextMenu', False)
self.__restore = enabled if (enabled is not None) else True
def __del__(self):
self.__settings.set('/exts/omni.kit.window.viewport/showContextMenu', self.__restore)
return _DisableAllContextMenus()
return _DisableViewportWindowLayer(viewport_or_window, [('ContextMenu', 'manipulator')])
def get_ground_plane_info(viewport, ortho_special: bool = True) -> Tuple[Gf.Vec3d, List[str]]:
"""For a given Viewport returns a tuple representing the ground plane.
@param viewport: ViewportAPI to use for ground plane info
@param ortho_special: bool Use an alternate ground plane for orthographic cameras that are looking down a single axis
@return: A tuple of type (normal: Gf.Vec3d, planes: List[str]), where planes is a list of axis' occupied (x, y, z)
"""
stage = viewport.stage
cam_path = viewport.camera_path
from pxr import UsdGeom
up_axis = UsdGeom.GetStageUpAxis(stage) if stage else UsdGeom.Tokens.y
if up_axis == UsdGeom.Tokens.y:
normal = Gf.Vec3d.YAxis()
planes = ['x', 'z']
elif up_axis == UsdGeom.Tokens.z:
normal = Gf.Vec3d.ZAxis()
planes = ['x', 'y']
else:
normal = Gf.Vec3d.XAxis()
planes = ['y', 'z']
if ortho_special:
cam_prim = stage.GetPrimAtPath(cam_path) if stage else None
if cam_prim:
usd_camera = UsdGeom.Camera(cam_prim)
if usd_camera and usd_camera.GetProjectionAttr().Get(viewport.time) == UsdGeom.Tokens.orthographic:
orthoEpsilon = 0.0001
viewNormal = viewport.transform.TransformDir(Gf.Vec3d(0, 0, -1))
if Gf.IsClose(abs(viewNormal[1]), 1.0, orthoEpsilon):
normal = Gf.Vec3d.YAxis()
planes = ['x', 'z']
elif Gf.IsClose(abs(viewNormal[2]), 1.0, orthoEpsilon):
normal = Gf.Vec3d.ZAxis()
planes = ['x', 'y']
elif Gf.IsClose(abs(viewNormal[0]), 1.0, orthoEpsilon):
normal = Gf.Vec3d.XAxis()
planes = ['y', 'z']
return normal, planes
|
omniverse-code/kit/exts/omni.kit.viewport.utility/omni/kit/viewport/utility/legacy_viewport_window.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['LegacyViewportWindow']
import omni.ui
import carb
import weakref
# Wrap a legacy viewport Window in an object that poses as a new omni.kit.viewport.window.ViewportWindow (omni.ui.Window) class
class LegacyViewportWindow(omni.ui.Window):
def __init__(self, window_name: str, viewport_api = None, **kwargs):
kwargs.update({
'window_flags': omni.ui.WINDOW_FLAGS_NO_SCROLLBAR | omni.ui.WINDOW_FLAGS_NO_TITLE_BAR | omni.ui.WINDOW_FLAGS_NO_RESIZE
})
super().__init__(window_name, **kwargs)
self.__z_stack = None
with self.frame:
self.__z_stack = omni.ui.ZStack()
self.__window_name = window_name
if not viewport_api:
from .legacy_viewport_api import LegacyViewportAPI
viewport_api = LegacyViewportAPI(window_name)
self.__viewport_api = viewport_api
self.__added_frames = {}
@property
def name(self):
return self.__window_name
@property
def viewport_api(self):
return weakref.proxy(self.__viewport_api)
def get_frame(self, name: str):
frame = self.__added_frames.get(name)
if frame is None:
with self.__z_stack:
frame = omni.ui.Frame(horizontal_clipping=True)
self.__added_frames[name] = frame
return frame
@property
def legacy_window(self):
return self.__get_legacy_window()
@property
def width(self):
return super().width
@property
def height(self):
return super().height
@width.setter
def width(self, width: float):
width = int(width)
legacy_window = self.legacy_window
if legacy_window:
legacy_window.set_window_size(width, int(self.height))
super(LegacyViewportWindow, self.__class__).width.fset(self, width)
@height.setter
def height(self, height: float):
height = int(height)
legacy_window = self.legacy_window
if legacy_window:
legacy_window.set_window_size(int(self.width), height)
super(LegacyViewportWindow, self.__class__).height.fset(self, height)
@property
def position_x(self):
pos_x = super().position_x
# Workaround omni.ui reporting massive position_y unless laid out ?
return pos_x if pos_x != 340282346638528859811704183484516925440 else 0
@property
def position_y(self):
pos_y = super().position_y
# Workaround omni.ui reporting massive position_y unless laid out ?
return pos_y if pos_y != 340282346638528859811704183484516925440 else 0
@position_x.setter
def position_x(self, position_x: float):
position_x = int(position_x)
legacy_window = self.legacy_window
if legacy_window:
legacy_window.set_window_pos(position_x, int(self.position_y))
super(LegacyViewportWindow, self.__class__).position_x.fset(self, position_x)
@position_y.setter
def position_y(self, position_y: float):
position_y = int(position_y)
legacy_window = self.legacy_window
if legacy_window:
legacy_window.set_window_pos(int(self.position_x), position_y)
super(LegacyViewportWindow, self.__class__).position_y.fset(self, position_y)
def setPosition(self, x: float, y: float):
return self.set_position(x, y)
def set_position(self, x: float, y: float):
x, y = int(x), int(y)
legacy_window = self.legacy_window
if legacy_window:
legacy_window.set_window_pos(x, y)
super().setPosition(x, y)
@property
def visible(self):
legacy_window = self.legacy_window
if legacy_window:
return legacy_window.is_visible()
return super().visible
@visible.setter
def visible(self, visible: bool):
visible = bool(visible)
legacy_window = self.legacy_window
if legacy_window:
legacy_window.set_visible(visible)
super(LegacyViewportWindow, self.__class__).visible.fset(self, visible)
def __del__(self):
self.destroy()
def destroy(self):
self.__viewport_api = None
if self.__z_stack:
self.__z_stack.clear()
self.__z_stack.destroy()
self.__z_stack = None
if self.__added_frames:
for name, frame in self.__added_frames.items():
try:
frame.destroy()
except Exception:
import traceback
carb.log_error(f"Error destroying {self.__window_name}. Traceback:\n{traceback.format_exc()}")
self.__added_frames = None
super().destroy()
def _post_toast_message(self, message: str, message_id: str = None):
legacy_window = self.legacy_window
if legacy_window:
return legacy_window.post_toast(message)
def __get_legacy_window(self):
import omni.kit.viewport_legacy as vp_legacy
vp_iface = vp_legacy.get_viewport_interface()
viewport_handle = vp_iface.get_instance(self.__window_name)
return vp_iface.get_viewport_window(viewport_handle)
|
omniverse-code/kit/exts/omni.kit.viewport.utility/omni/kit/viewport/utility/camera_state.py | # Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['ViewportCameraState']
from pxr import Gf, Sdf, Usd, UsdGeom
class ViewportCameraState:
def __init__(self, camera_path: str = None, viewport = None, time: Usd.TimeCode = None, force_legacy_api: bool = False):
if viewport is None:
from omni.kit.viewport.utility import get_active_viewport
viewport = get_active_viewport()
if viewport is None:
raise RuntimeError('No default or provided Viewport')
self.__viewport_api = viewport
self.__camera_path = str(camera_path if camera_path else viewport.camera_path)
self.__time = Usd.TimeCode.Default() if time is None else time
self.__legacy_window = viewport.legacy_window if (force_legacy_api and hasattr(viewport, 'legacy_window')) else None
def get_world_camera_up(self, stage) -> Gf.Vec3d:
up_axis = UsdGeom.GetStageUpAxis(stage) if stage else UsdGeom.Tokens.y
if up_axis == UsdGeom.Tokens.y:
return Gf.Vec3d(0, 1, 0)
if up_axis == UsdGeom.Tokens.z:
return Gf.Vec3d(0, 0, 1)
if up_axis == UsdGeom.Tokens.x:
return Gf.Vec3d(1, 0, 0)
return Gf.Vec3d(0, 1, 0)
@property
def usd_camera(self) -> Usd.Prim:
camera_prim = self.__viewport_api.stage.GetPrimAtPath(self.__camera_path)
usd_camera = UsdGeom.Camera(camera_prim) if camera_prim else None
if usd_camera:
return usd_camera
raise RuntimeError(f'"{self.__camera_path}" is not a valid Usd.Prim or UsdGeom.Camera')
@property
def position_world(self):
if self.__legacy_window:
success, x, y, z = self.__legacy_window.get_camera_position(self.__camera_path)
if success:
return Gf.Vec3d(x, y, z)
return self.usd_camera.ComputeLocalToWorldTransform(self.__time).Transform(Gf.Vec3d(0, 0, 0))
@property
def target_world(self):
if self.__legacy_window:
success, x, y, z = self.__legacy_window.get_camera_target(self.__camera_path)
if success:
return Gf.Vec3d(x, y, z)
local_coi = self.usd_camera.GetPrim().GetAttribute('omni:kit:centerOfInterest').Get(self.__time)
return self.usd_camera.ComputeLocalToWorldTransform(self.__time).Transform(local_coi)
def set_position_world(self, world_position: Gf.Vec3d, rotate: bool):
if self.__legacy_window:
self.__legacy_window.set_camera_position(self.__camera_path, world_position[0], world_position[1], world_position[2], rotate)
return
usd_camera = self.usd_camera
world_xform = usd_camera.ComputeLocalToWorldTransform(self.__time)
parent_xform = usd_camera.ComputeParentToWorldTransform(self.__time)
iparent_xform = parent_xform.GetInverse()
initial_local_xform = world_xform * iparent_xform
pos_in_parent = iparent_xform.Transform(world_position)
if rotate:
cam_prim = usd_camera.GetPrim()
coi_attr = cam_prim.GetAttribute('omni:kit:centerOfInterest')
prev_local_coi = coi_attr.Get(self.__time)
coi_in_parent = iparent_xform.Transform(world_xform.Transform(prev_local_coi))
cam_up = self.get_world_camera_up(cam_prim.GetStage())
new_local_transform = Gf.Matrix4d(1).SetLookAt(pos_in_parent, coi_in_parent, cam_up).GetInverse()
else:
coi_attr, prev_local_coi = None, None
new_local_transform = Gf.Matrix4d(initial_local_xform)
new_local_transform = new_local_transform.SetTranslateOnly(pos_in_parent)
import omni.kit.commands
omni.kit.commands.create(
'TransformPrimCommand',
path=self.__camera_path,
new_transform_matrix=new_local_transform,
old_transform_matrix=initial_local_xform,
time_code=self.__time,
usd_context_name=self.__viewport_api.usd_context_name
).do()
if coi_attr and prev_local_coi:
prev_world_coi = world_xform.Transform(prev_local_coi)
new_local_coi = (new_local_transform * parent_xform).GetInverse().Transform(prev_world_coi)
omni.kit.commands.create(
'ChangePropertyCommand',
prop_path=coi_attr.GetPath(),
value=new_local_coi,
prev=prev_local_coi,
timecode=self.__time,
usd_context_name=self.__viewport_api.usd_context_name,
type_to_create_if_not_exist=Sdf.ValueTypeNames.Vector3d
).do()
def set_target_world(self, world_target: Gf.Vec3d, rotate: bool):
if self.__legacy_window:
self.__legacy_window.set_camera_target(self.__camera_path, world_target[0], world_target[1], world_target[2], rotate)
return
usd_camera = self.usd_camera
world_xform = usd_camera.ComputeLocalToWorldTransform(self.__time)
parent_xform = usd_camera.ComputeParentToWorldTransform(self.__time)
iparent_xform = parent_xform.GetInverse()
initial_local_xform = world_xform * iparent_xform
cam_prim = usd_camera.GetPrim()
coi_attr = cam_prim.GetAttribute('omni:kit:centerOfInterest')
prev_local_coi = coi_attr.Get(self.__time)
pos_in_parent = iparent_xform.Transform(initial_local_xform.Transform(Gf.Vec3d(0, 0, 0)))
if rotate:
# Rotate camera to look at new target, leaving it where it is
cam_up = self.get_world_camera_up(cam_prim.GetStage())
coi_in_parent = iparent_xform.Transform(world_target)
new_local_transform = Gf.Matrix4d(1).SetLookAt(pos_in_parent, coi_in_parent, cam_up).GetInverse()
new_local_coi = (new_local_transform * parent_xform).GetInverse().Transform(world_target)
else:
# Camera keeps orientation and distance relative to target
# Calculate movement of center-of-interest in parent's space
target_move = iparent_xform.Transform(world_target) - iparent_xform.Transform(world_xform.Transform(prev_local_coi))
# Copy the camera's local transform
new_local_transform = Gf.Matrix4d(initial_local_xform)
# And move it by the delta
new_local_transform.SetTranslateOnly(pos_in_parent + target_move)
import omni.kit.commands
if rotate:
omni.kit.commands.create(
'ChangePropertyCommand',
prop_path=coi_attr.GetPath(),
value=new_local_coi,
prev=prev_local_coi,
timecode=self.__time,
usd_context_name=self.__viewport_api.usd_context_name,
type_to_create_if_not_exist=Sdf.ValueTypeNames.Vector3d
).do()
omni.kit.commands.create(
'TransformPrimCommand',
path=self.__camera_path,
new_transform_matrix=new_local_transform,
old_transform_matrix=initial_local_xform,
time_code=self.__time,
usd_context_name=self.__viewport_api.usd_context_name
).do()
|
omniverse-code/kit/exts/omni.kit.viewport.utility/omni/kit/viewport/utility/legacy_viewport_api.py | # Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
__all__ = ['LegacyViewportAPI']
import carb
import omni.ui
import omni.usd
import omni.timeline
import omni.kit.app
from pxr import Gf, Sdf, Usd, UsdGeom, CameraUtil
from typing import Callable, List, Tuple, Sequence
# Wrap a legacy viewport Window in an object that poses as a new ViewportAPI
class LegacyViewportAPI:
def __init__(self, window_name: str):
self.__window_name = window_name
self.__settings = carb.settings.get_settings()
# All legacy Viewports are locked to timeline time
self.__timeline = None
self.__saved_resolution = None
self.__fill_frame = None
@property
def camera_path(self) -> Sdf.Path:
'''Return an Sdf.Path to the active rendering camera'''
path_str = self.legacy_window.get_active_camera()
return Sdf.Path(path_str) if path_str else Sdf.Path()
@camera_path.setter
def camera_path(self, camera_path: Sdf.Path):
'''Set the active rendering camera from an Sdf.Path'''
self.legacy_window.set_active_camera(str(camera_path))
@property
def render_product_path(self) -> str:
'''Return a string to the UsdRender.Product used by the Viewport'''
return self.legacy_window.get_render_product_path()
@render_product_path.setter
def render_product_path(self, product_path: str):
'''Set the UsdRender.Product used by the Viewport with a string'''
self.legacy_window.set_render_product_path(str(product_path))
@property
def resolution(self) -> Tuple[float]:
'''Return a tuple of (resolution_x, resolution_y) this Viewport is rendering at.'''
# Legacy Viewport applies scale internally, so returned value accounts for scale factor.
return self.legacy_window.get_texture_resolution()
@resolution.setter
def resolution(self, value: Tuple[float]):
'''Set the resolution to render with (resolution_x, resolution_y).'''
# Legacy Viewport applies scale internally based on single carb setting, so just use that
self.legacy_window.set_texture_resolution(value[0], value[1])
@property
def resolution_scale(self) -> float:
'''Get the scaling factor for the Viewport's render resolution.'''
# Legacy Viewport applies scale internally based on single carb setting, so just use that or fallback to 1
return self.__settings.get("/app/renderer/resolution/multiplier") or 1.0
@resolution_scale.setter
def resolution_scale(self, value: float):
'''Set the scaling factor for the Viewport's render resolution.'''
value = float(value)
if value <= 0:
raise ValueError("Viewport resolution scale must be greater than 0.")
self.__settings.set("/app/renderer/resolution/multiplier", value)
@property
def full_resolution(self) -> Tuple[float]:
'''Return a tuple of the full (full_resolution_x, full_resolution_y) this Viewport is rendering at, not accounting for scale.'''
# Legacy Viewport applies scale internally, so undo any scaling factor
resolution = self.resolution
resolution_scale = self.resolution_scale
return (resolution[0] / resolution_scale, resolution[1] / resolution_scale)
# Legacy methods that we also support
def get_active_camera(self) -> Sdf.Path:
'''Return an Sdf.Path to the active rendering camera'''
return self.camera_path
def set_active_camera(self, camera_path: Sdf.Path):
'''Set the active rendering camera from an Sdf.Path'''
self.camera_path = camera_path
def get_render_product_path(self) -> str:
'''Return a string to the UsdRender.Product used by the Viewport'''
return self.render_product_path
def set_render_product_path(self, product_path: str):
'''Set the UsdRender.Product used by the Viewport with a string'''
self.render_product_path = product_path
def get_texture_resolution(self) -> Tuple[float]:
'''Return a tuple of (resolution_x, resolution_y)'''
return self.resolution
def set_texture_resolution(self, value: Tuple[float]):
'''Set the resolution to render with (resolution_x, resolution_y)'''
self.resolution = value
def get_texture_resolution_scale(self) -> float:
'''Get the scaling factor for the Viewport's render resolution.'''
return self.resolution_scale
def set_texture_resolution_scale(self, value: float):
'''Set the scaling factor for the Viewport's render resolution.'''
self.resolution_scale = value
def get_full_texture_resolution(self) -> Tuple[float]:
'''Return a tuple of (full_resolution_x, full_resolution_y)'''
return self.full_resolution
@property
def fill_frame(self) -> bool:
if self.__fill_frame is None:
settings = carb.settings.get_settings()
width, height = settings.get('/app/renderer/resolution/width') or 0, settings.get('/app/renderer/resolution/height') or 0
self.__fill_frame = (width <= 0) or (height <= 0)
return self.__fill_frame
@fill_frame.setter
def fill_frame(self, value: bool):
settings = carb.settings.get_settings()
legacy_window = self.legacy_window
self.__fill_frame = bool(value)
if self.__fill_frame:
self.__saved_resolution = legacy_window.get_texture_resolution()
legacy_window.set_texture_resolution(-1, -1)
settings.set('/app/renderer/resolution/width', -1)
settings.set('/app/renderer/resolution/height', -1)
else:
if self.__saved_resolution is None:
width, height = settings.get('/app/renderer/resolution/width') or 0, settings.get('/app/renderer/resolution/height') or 0
self.__saved_resolution = (width, height) if (width > 0 and height > 0) else (1280, 720)
legacy_window.set_texture_resolution(self.__saved_resolution[0], self.__saved_resolution[1])
@property
def fps(self) -> float:
'''Return the frames-per-second this Viewport is running at'''
return self.legacy_window.get_fps()
@property
def id(self):
'''Return a hashable value for the Viewport'''
return self.legacy_window.get_id()
@property
def frame_info(self):
return { 'viewport_handle' : self.legacy_window.get_id() }
@property
def usd_context_name(self) -> str:
'''Return the name of the omni.usd.UsdContext this Viewport is attached to'''
return self.legacy_window.get_usd_context_name()
@property
def usd_context(self):
'''Return the omni.usd.UsdContext this Viewport is attached to'''
return omni.usd.get_context(self.usd_context_name)
@property
def stage(self):
'''Return the Usd.Stage of the omni.usd.UsdContext this Viewport is attached to'''
return self.usd_context.get_stage()
@property
def projection(self):
'''Return the projection of the UsdCamera in terms of the ui element it sits in.'''
# Check if there are cached values from the ScenView subscriptions
legacy_subs = _LegacySceneView.get(self.__window_name)
if legacy_subs:
projection = legacy_subs.projection
if projection:
return projection
# Get the info from USD
stage = self.stage
cam_prim = stage.GetPrimAtPath(self.camera_path) if stage else None
if cam_prim:
usd_camera = UsdGeom.Camera(cam_prim)
if usd_camera:
image_aspect, canvas_aspect = self._aspect_ratios
return self._conform_projection(self._conform_policy(), usd_camera, image_aspect, canvas_aspect)
return Gf.Matrix4d(1)
@property
def transform(self) -> Gf.Matrix4d:
'''Return the world-space transform of the UsdGeom.Camera being used to render'''
# Check if there are cached values from the ScenView subscriptions
legacy_subs = _LegacySceneView.get(self.__window_name)
if legacy_subs:
view = legacy_subs.view
if view:
return view.GetInverse()
# Get the info from USD
stage = self.stage
cam_prim = stage.GetPrimAtPath(self.camera_path) if stage else None
if cam_prim:
imageable = UsdGeom.Imageable(cam_prim)
if imageable:
return imageable.ComputeLocalToWorldTransform(self.time)
return Gf.Matrix4d(1)
@property
def view(self) -> Gf.Matrix4d:
'''Return the inverse of the world-space transform of the UsdGeom.Camera being used to render'''
# Check if there are cached values from the ScenView subscriptions
legacy_subs = _LegacySceneView.get(self.__window_name)
if legacy_subs:
view = legacy_subs.view
if view:
return view
# Get the info from USD
return self.transform.GetInverse()
@property
def world_to_ndc(self):
return self.view * self.projection
@property
def ndc_to_world(self):
return self.world_to_ndc.GetInverse()
@property
def time(self) -> Usd.TimeCode:
'''Return the Usd.TimeCode this Viewport is using'''
if self.__timeline is None:
self.__timeline = omni.timeline.get_timeline_interface()
time = self.__timeline.get_current_time()
return Usd.TimeCode(omni.usd.get_frame_time_code(time, self.stage.GetTimeCodesPerSecond()))
def map_ndc_to_texture(self, mouse: Sequence[float]):
image_aspect, canvas_aspect = self._aspect_ratios
if image_aspect < canvas_aspect:
ratios = (image_aspect / canvas_aspect, 1)
else:
ratios = (1, canvas_aspect / image_aspect)
# Move into viewport's NDC-space: [-1, 1] bound by viewport
mouse = (mouse[0] / ratios[0], mouse[1] / ratios[1])
# Move from NDC space to texture-space [-1, 1] to [0, 1]
def check_bounds(coord): return coord >= -1 and coord <= 1
return tuple((x + 1.0) * 0.5 for x in mouse), self if (check_bounds(mouse[0]) and check_bounds(mouse[1])) else None
def map_ndc_to_texture_pixel(self, mouse: Sequence[float]):
# Move into viewport's uv-space: [0, 1]
mouse, viewport = self.map_ndc_to_texture(mouse)
# Then scale by resolution flipping-y
resolution = self.resolution
return (int(mouse[0] * resolution[0]), int((1.0 - mouse[1]) * resolution[1])), viewport
def request_query(self, pixel: Sequence[int], callback: Callable, *args):
# TODO: This can't be made 100% compatible without changes to legacy Viewport
# New Viewport will query based on a pixel co-ordinate, regardless of mouse-state; with object and world-space-position
# Legacy Viewport will invoke callback on mouse-click only; with world-space-position info only
self.legacy_window.query_next_picked_world_position(lambda pos: callback(True, pos) if pos else callback(False, None))
carb.log_warn("request_query not full implemented, will only receive a position from a Viewport click")
@property
def hydra_engine(self) -> str:
'''Get the name of the active omni.hydra.engine for this Viewport'''
return self.legacy_window.get_active_hydra_engine()
@hydra_engine.setter
def hydra_engine(self, hd_engine: str) -> str:
'''Set the name of the active omni.hydra.engine for this Viewport'''
return self.set_hd_engine(hd_engine)
@property
def render_mode(self):
'''Get the render-mode for the active omni.hydra.engine used in this Viewport'''
hd_engine = self.hydra_engine
if bool(hd_engine):
return self.__settings.get(self.__render_mode_setting(hd_engine))
@render_mode.setter
def render_mode(self, render_mode: str):
'''Set the render-mode for the active omni.hydra.engine used in this Viewport'''
hd_engine = self.hydra_engine
if bool(hd_engine):
self.__settings.set_string(self.__render_mode_setting(hd_engine), str(render_mode))
def set_hd_engine(self, hd_engine: str, render_mode: str = None):
'''Set the active omni.hydra.engine for this Viewport, and optionally its render-mode'''
# self.__settings.set_string("/renderer/active", hd_engine)
if bool(hd_engine) and bool(render_mode):
self.__settings.set_string(self.__render_mode_setting(hd_engine), render_mode)
self.legacy_window.set_active_hydra_engine(hd_engine)
async def wait_for_rendered_frames(self, additional_frames: int = 0) -> bool:
'''Asynchrnously wait until the renderer has delivered an image'''
app = omni.kit.app.get_app_interface()
legacy_window = self.legacy_window
if legacy_window:
viewport_ldr_rp = None
while viewport_ldr_rp is None:
await app.next_update_async()
viewport_ldr_rp = legacy_window.get_drawable_ldr_resource()
while additional_frames > 0:
additional_frames = additional_frames - 1
await app.next_update_async()
return True
def add_scene_view(self, scene_view):
window_name = self.__window_name
legacy_subs = _LegacySceneView.get(self.__window_name, self.legacy_window)
if not legacy_subs:
raise RuntimeError('Could not create _LegacySceneView subscriptions')
legacy_subs.add_scene_view(scene_view, self.projection, self.view)
def remove_scene_view(self, scene_view):
if not scene_view:
raise RuntimeError('Provided scene_view is invalid')
_LegacySceneView.remove_scene_view_for_window(self.__window_name, scene_view)
### Everything below is NOT part of the new Viewport-API
@property
def legacy_window(self):
'''Expose the underlying legacy viewport for access if needed (not a real ViewportAPI method)'''
import omni.kit.viewport_legacy as vp_legacy
vp_iface = vp_legacy.get_viewport_interface()
return vp_iface.get_viewport_window(vp_iface.get_instance(self.__window_name))
@property
def _aspect_ratios(self) -> Tuple[float]:
return _LegacySceneView.aspect_ratios(self.__window_name, self.legacy_window)
def _conform_projection(self, policy, camera: UsdGeom.Camera, image_aspect: float, canvas_aspect: float, projection: Sequence[float] = None):
'''For the given camera (or possible incoming projection) return a projection matrix that matches the rendered image
but keeps NDC co-ordinates for the texture bound to [-1, 1]'''
if projection is None:
# If no projection is provided, conform the camera based on settings
# This wil adjust apertures on the gf_camera
gf_camera = camera.GetCamera(self.time)
if policy == CameraUtil.DontConform:
# For DontConform, still have to conform for the final canvas
if image_aspect < canvas_aspect:
gf_camera.horizontalAperture = gf_camera.horizontalAperture * (canvas_aspect / image_aspect)
else:
gf_camera.verticalAperture = gf_camera.verticalAperture * (image_aspect / canvas_aspect)
else:
CameraUtil.ConformWindow(gf_camera, policy, image_aspect)
projection = gf_camera.frustum.ComputeProjectionMatrix()
else:
projection = Gf.Matrix4d(*projection)
# projection now has the rendered image projection
# Conform again based on canvas size so projection extends with the Viewport sits in the UI
if image_aspect < canvas_aspect:
policy2 = CameraUtil.MatchVertically
else:
policy2 = CameraUtil.MatchHorizontally
if policy != CameraUtil.DontConform:
projection = CameraUtil.ConformedWindow(projection, policy2, canvas_aspect)
return projection
def _conform_policy(self):
conform_setting = self.__settings.get("/app/hydra/aperture/conform")
if (conform_setting is None) or (conform_setting == 1) or (conform_setting == 'horizontal'):
return CameraUtil.MatchHorizontally
if (conform_setting == 0) or (conform_setting == 'vertical'):
return CameraUtil.MatchVertically
if (conform_setting == 2) or (conform_setting == 'fit'):
return CameraUtil.Fit
if (conform_setting == 3) or (conform_setting == 'crop'):
return CameraUtil.Crop
if (conform_setting == 4) or (conform_setting == 'stretch'):
return CameraUtil.DontConform
return CameraUtil.MatchHorizontally
def __render_mode_setting(self, hd_engine: str) -> str:
return f'/{hd_engine}/rendermode' if hd_engine != 'iray' else '/rtx/iray/rendermode'
class _LegacySceneView:
__g_legacy_subs = {}
@staticmethod
def aspect_ratios(window_name: str, legacy_window):
canvas_aspect = 1
viewport_window = omni.ui.Workspace.get_window(window_name)
if viewport_window:
# XXX: Why do some windows have no frame !?
if hasattr(viewport_window, 'frame'):
canvas = viewport_window.frame
canvas_size = (canvas.computed_width, canvas.computed_height)
else:
canvas_size = (1, 1)
canvas_aspect = canvas_size[0] / canvas_size[1] if canvas_size[1] else 1
resolution = legacy_window.get_texture_resolution()
image_aspect = resolution[0] / resolution[1] if resolution[1] else 1
return image_aspect, canvas_aspect
@staticmethod
def get(window_name: str, legacy_window = None):
legacy_subs = _LegacySceneView.__g_legacy_subs.get(window_name)
if legacy_subs is None and legacy_window:
legacy_subs = _LegacySceneView(window_name, legacy_window)
_LegacySceneView.__g_legacy_subs[window_name] = legacy_subs
return legacy_subs
@staticmethod
def remove_scene_view_for_window(window_name: str, scene_view):
if not scene_view:
raise RuntimeError('Provided scene_view is invalid')
legacy_subs = _LegacySceneView.__g_legacy_subs.get(window_name)
if not legacy_subs:
raise RuntimeError('Removing a SceneView for Viewport that is not trakcing any')
if legacy_subs.remove_scene_view(scene_view):
return
legacy_subs.destroy()
del _LegacySceneView.__g_legacy_subs[window_name]
def __init__(self, window_name: str, legacy_window):
self.__window_name = window_name
self.__draw_sub, self.__update_sub = None, None
self.__scene_views = []
self.__projection = None
self.__view = None
events = legacy_window.get_ui_draw_event_stream()
self.__draw_sub = events.create_subscription_to_pop(self.__on_draw, name=f'omni.kit.viewport.utility.LegacyViewportAPI.{window_name}.draw')
events = omni.kit.app.get_app().get_update_event_stream()
self.__update_sub = events.create_subscription_to_pop(self.__on_update, name='omni.kit.viewport.utility.LegacyViewportAPI.{window_name}.update')
@property
def projection(self) -> Gf.Matrix4d:
# Return a copy as the reference would be mutable
return Gf.Matrix4d(self.__projection) if self.__projection else None
@property
def view(self) -> Gf.Matrix4d:
# Return a copy as the reference would be mutable
return Gf.Matrix4d(self.__view) if self.__view else None
def __del__(self):
self.destroy()
def destroy(self):
self.__scene_views = []
if self.__draw_sub:
self.__draw_sub = None
if self.__update_sub:
self.__update_sub = None
self.__save_position = None
self.__scene_views = []
@staticmethod
def _flatten_matrix(m: Gf.Matrix4d) -> List[float]:
m0, m1, m2, m3 = m[0], m[1], m[2], m[3]
return [m0[0], m0[1], m0[2], m0[3], m1[0], m1[1], m1[2], m1[3], m2[0], m2[1], m2[2], m2[3], m3[0], m3[1], m3[2], m3[3]]
def __get_legacy_window(self):
import omni.kit.viewport_legacy as vp_legacy
vp_iface = vp_legacy.get_viewport_interface()
window_name = self.__window_name
viewport_handle = vp_iface.get_instance(window_name)
viewport_window = vp_iface.get_viewport_window(viewport_handle)
if not viewport_window:
self.destroy()
del _LegacySceneView.__g_legacy_subs[window_name]
return window_name, viewport_window
def __on_update(self, *args):
window_name, legacy_window = self.__get_legacy_window()
visible = legacy_window.is_visible() if legacy_window else False
viewport_window = omni.ui.Workspace.get_window(window_name)
if viewport_window and (visible != viewport_window.visible):
pruned_views = []
for sv in self.__scene_views:
scene_view = sv()
if scene_view:
scene_view.visible = visible
pruned_views.append(sv)
self.__scene_views = pruned_views
omni.ui.Workspace.show_window(window_name, visible)
# viewport_window.visible = visible
# if not visible:
# self.__save_position = viewport_window.position_x, viewport_window.position_y
# viewport_window.position_x = omni.ui.Workspace.get_main_window_width()
# viewport_window.position_y = omni.ui.Workspace.get_main_window_height()
# elif self.__save_position:
# viewport_window.position_x = self.__save_position[0]
# viewport_window.position_y = self.__save_position[1]
# self.__save_position = None
def __on_draw(self, event, *args):
vm = event.payload["viewMatrix"]
pm = event.payload["projMatrix"]
# Conform the Projection to the layout of the texture in the Window
window_name, legacy_window = self.__get_legacy_window()
image_aspect, canvas_aspect = _LegacySceneView.aspect_ratios(window_name, legacy_window)
if image_aspect < canvas_aspect:
policy = CameraUtil.MatchVertically
else:
policy = CameraUtil.MatchHorizontally
proj_matrix = Gf.Matrix4d(pm[0], pm[1], pm[2], pm[3], pm[4], pm[5], pm[6], pm[7], pm[8], pm[9], pm[10], pm[11], pm[12], pm[13], pm[14], pm[15])
# Fix up RTX projection Matrix for omni.ui.scene...ultimately this should be passed without any compensation
if pm[15] == 0.0:
proj_matrix = Gf.Matrix4d(1.0, 0.0, -0.0, 0.0, 0.0, 1.0, 0.0, -0.0, -0.0, 0.0, 1.0, -1.0, 0.0, -0.0, 0.0, -2.0) * proj_matrix
proj_matrix = CameraUtil.ConformedWindow(proj_matrix, policy, canvas_aspect)
# Cache these for lokkup later
self.__projection = proj_matrix
self.__view = Gf.Matrix4d(vm[0], vm[1], vm[2], vm[3], vm[4], vm[5], vm[6], vm[7], vm[8], vm[9], vm[10], vm[11], vm[12], vm[13], vm[14], vm[15])
# Flatten into list for model
pm = _LegacySceneView._flatten_matrix(proj_matrix)
pruned_views = []
for sv in self.__scene_views:
scene_view = sv()
if scene_view:
model = scene_view.model
model.set_floats("projection", pm)
model.set_floats("view", vm)
pruned_views.append(sv)
self.__scene_views = pruned_views
def add_scene_view(self, scene_view, projection: Gf.Matrix4d, view: Gf.Matrix4d):
# Sync the model once now
model = scene_view.model
model.set_floats("projection", _LegacySceneView._flatten_matrix(projection))
model.set_floats("view", _LegacySceneView._flatten_matrix(view))
# And save it for subsequent synchrnoizations
import weakref
self.__scene_views.append(weakref.ref(scene_view))
def remove_scene_view(self, scene_view) -> bool:
for sv in self.__scene_views:
if sv() == scene_view:
self.__scene_views.remove(sv)
break
# Return whether this sub is needed anymore
return True if self.__scene_views else False
|
omniverse-code/kit/exts/omni.kit.viewport.utility/omni/kit/viewport/utility/tests/capture.py | ## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
##
## NVIDIA CORPORATION and its licensors retain all intellectual property
## and proprietary rights in and to this software, related documentation
## and any modifications thereto. Any use, reproduction, disclosure or
## distribution of this software and related documentation without an express
## license agreement from NVIDIA CORPORATION is strictly prohibited.
##
__all__ = [
'DEFAULT_THRESHOLD',
'capture_viewport_and_compare'
]
import carb
import omni.kit.app
import omni.renderer_capture
from omni.kit.test_helpers_gfx import compare, CompareError
from omni.kit.test.teamcity import teamcity_log_fail, teamcity_publish_image_artifact
import pathlib
import traceback
DEFAULT_THRESHOLD = 10.0
def viewport_capture(image_name: str, output_img_dir: str, viewport=None, use_log: bool = True):
"""
Captures a Viewport texture into a file.
Args:
image_name: the image name of the image and golden image.
output_img_dir: the directory path that the capture will be saved to.
golden_img_dir: the directory path that stores the golden image. Leave it to None to use default dir.
use_log: whether to log the comparison image path
"""
from omni.kit.viewport.utility import get_active_viewport, capture_viewport_to_file
image1 = str(pathlib.Path(output_img_dir).joinpath(image_name))
if use_log:
carb.log_info(f"[tests.compare] Capturing {image1}")
if viewport is None:
viewport = get_active_viewport()
return capture_viewport_to_file(viewport, file_path=image1)
def finalize_capture_and_compare(image_name: str, output_img_dir: str, golden_img_dir: str, threshold: float = DEFAULT_THRESHOLD):
"""
Finalizes capture and compares it with the golden image.
Args:
image_name: the image name of the image and golden image.
threshold: the max threshold to collect TC artifacts.
output_img_dir: the directory path that the capture will be saved to.
golden_img_dir: the directory path that stores the golden image. Leave it to None to use default dir.
Returns:
A value that indicates the maximum difference between pixels. 0 is no difference
in the range [0-255].
"""
image1 = pathlib.Path(output_img_dir).joinpath(image_name)
image2 = pathlib.Path(golden_img_dir).joinpath(image_name)
image_diffmap_name = f"{pathlib.Path(image_name).stem}.diffmap.png"
image_diffmap = pathlib.Path(output_img_dir).joinpath(image_diffmap_name)
carb.log_info(f"[tests.compare] Comparing {image1} to {image2}")
try:
diff = compare(image1, image2, image_diffmap)
if diff >= threshold:
# TODO pass specific test name here instead of omni.rtx.tests
teamcity_log_fail("omni.rtx.tests", f"Reference image {image_name} differ from golden.")
teamcity_publish_image_artifact(image2, "golden", "Reference")
teamcity_publish_image_artifact(image1, "results", "Generated")
teamcity_publish_image_artifact(image_diffmap, "results", "Diff")
return diff
except CompareError as e:
carb.log_error(f"[tests.compare] Failed to compare images for {image_name}. Error: {e}")
exc = traceback.format_exc()
carb.log_error(f"[tests.compare] Traceback:\n{exc}")
async def capture_viewport_and_wait(image_name: str, output_img_dir: str, viewport = None):
viewport_capture(image_name, output_img_dir, viewport)
app = omni.kit.app.get_app()
capure_iface = omni.renderer_capture.acquire_renderer_capture_interface()
for i in range(3):
capure_iface.wait_async_capture()
await app.next_update_async()
async def capture_viewport_and_compare(image_name: str, output_img_dir: str, golden_img_dir: str, threshold: float = DEFAULT_THRESHOLD, viewport = None, test_caller: str = None):
"""
Captures frame and compares it with the golden image.
Args:
image_name: the image name of the image and golden image.
golden_img_dir: the directory path that stores the golden image. Leave it to None to use default dir.
threshold: the max threshold to collect TC artifacts.
viewport: the viewport to capture or None for the active Viewport
Returns:
A value that indicates the maximum difference between pixels. 0 is no difference
in the range [0-255].
"""
await capture_viewport_and_wait(image_name=image_name, output_img_dir=output_img_dir, viewport=viewport)
diff = finalize_capture_and_compare(image_name=image_name, output_img_dir=output_img_dir, golden_img_dir=golden_img_dir, threshold=threshold)
if diff is not None and diff < DEFAULT_THRESHOLD:
return True, ''
carb.log_warn(f"[{image_name}] the generated image has difference {diff}")
if test_caller is None:
import os.path
test_caller = os.path.splitext(image_name)[0]
return False, f"The image for test '{test_caller}' doesn't match the golden one. Difference of {diff} is is not less than threshold of {threshold}."
|
omniverse-code/kit/exts/omni.kit.viewport.utility/omni/kit/viewport/utility/tests/__init__.py | ## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
##
## NVIDIA CORPORATION and its licensors retain all intellectual property
## and proprietary rights in and to this software, related documentation
## and any modifications thereto. Any use, reproduction, disclosure or
## distribution of this software and related documentation without an express
## license agreement from NVIDIA CORPORATION is strictly prohibited.
##
from .capture import *
from .test_suite import *
async def setup_viewport_test_window(resolution_x: int, resolution_y: int, position_x: int = 0, position_y: int = 0):
from omni.kit.viewport.utility import get_active_viewport_window
viewport_window = get_active_viewport_window()
if viewport_window:
viewport_window.position_x = position_x
viewport_window.position_y = position_y
viewport_window.width = resolution_x
viewport_window.height = resolution_y
viewport_window.viewport_api.resolution = (resolution_x, resolution_y)
return viewport_window
|
omniverse-code/kit/exts/omni.kit.viewport.utility/omni/kit/viewport/utility/tests/test_suite.py | ## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
##
## NVIDIA CORPORATION and its licensors retain all intellectual property
## and proprietary rights in and to this software, related documentation
## and any modifications thereto. Any use, reproduction, disclosure or
## distribution of this software and related documentation without an express
## license agreement from NVIDIA CORPORATION is strictly prohibited.
##
__all__ = ['TestViewportUtility']
import omni.kit.test
from omni.kit.test import AsyncTestCase
import omni.kit.viewport.utility
import omni.kit.renderer_capture
import omni.kit.app
import omni.usd
import omni.ui as ui
from pathlib import Path
from pxr import Gf, UsdGeom, Sdf, Usd
TEST_OUTPUT = Path(omni.kit.test.get_test_output_path()).resolve().absolute()
TEST_WIDTH, TEST_HEIGHT = (500, 500)
class TestViewportUtility(AsyncTestCase):
# Before running each test
async def setUp(self):
super().setUp()
await omni.usd.get_context().new_stage_async()
async def tearDown(self):
super().tearDown()
# Legacy Viewport needs some time to adopt the resolution changes
async def wait_for_resolution_change(self, viewport_api):
await omni.kit.viewport.utility.next_viewport_frame_async(viewport_api)
for i in range(3):
await omni.kit.app.get_app().next_update_async()
async def test_get_viewport_from_window_name(self):
'''Test getting a default Viewport from a Window without a name'''
viewport_window = omni.kit.viewport.utility.get_viewport_from_window_name()
self.assertIsNotNone(viewport_window)
async def test_get_viewport_from_window_name_with_name(self):
'''Test getting a default Viewport from a Window name'''
viewport_window = omni.kit.viewport.utility.get_viewport_from_window_name(window_name='Viewport')
self.assertIsNotNone(viewport_window)
async def test_get_active_viewport(self):
'''Test getting a default Viewport'''
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
viewport_api = omni.kit.viewport.utility.get_active_viewport(usd_context_name='')
self.assertIsNotNone(viewport_api)
async def test_get_viewport_from_non_existant_window_name_with_name(self):
'''Test getting a non-existent Viewport via Window name'''
viewport_window = omni.kit.viewport.utility.get_viewport_from_window_name(window_name='NotExisting')
self.assertIsNone(viewport_window)
async def test_get_non_existant_viewport(self):
'''Test getting a non-existent Viewport via UsdContext name'''
viewport_api = omni.kit.viewport.utility.get_active_viewport(usd_context_name='NotExisting')
self.assertIsNone(viewport_api)
async def test_get_camera_path_api(self):
'''Test camera access API'''
# Test camera-path as an Sdf.Path
cam_path = omni.kit.viewport.utility.get_viewport_window_camera_path()
self.assertTrue(bool(cam_path))
self.assertTrue(isinstance(cam_path, Sdf.Path))
cam_path = omni.kit.viewport.utility.get_viewport_window_camera_path(window_name='Viewport')
self.assertTrue(bool(cam_path))
self.assertTrue(isinstance(cam_path, Sdf.Path))
cam_path = omni.kit.viewport.utility.get_viewport_window_camera_path(window_name='NO_Viewport')
self.assertIsNone(cam_path)
cam_path = omni.kit.viewport.utility.get_active_viewport_camera_path()
self.assertTrue(bool(cam_path))
self.assertTrue(isinstance(cam_path, Sdf.Path))
cam_path = omni.kit.viewport.utility.get_active_viewport_camera_path(usd_context_name='')
self.assertTrue(bool(cam_path))
self.assertTrue(isinstance(cam_path, Sdf.Path))
cam_path = omni.kit.viewport.utility.get_active_viewport_camera_path(usd_context_name='DoesntExist')
self.assertIsNone(cam_path)
# Test camera-path as a string
cam_path_str = omni.kit.viewport.utility.get_viewport_window_camera_string()
self.assertTrue(bool(cam_path_str))
self.assertTrue(isinstance(cam_path_str, str))
cam_path_str = omni.kit.viewport.utility.get_viewport_window_camera_string(window_name='Viewport')
self.assertTrue(bool(cam_path_str))
self.assertTrue(isinstance(cam_path_str, str))
cam_path_str = omni.kit.viewport.utility.get_viewport_window_camera_string(window_name='NO_Viewport')
self.assertIsNone(cam_path_str)
cam_path_str = omni.kit.viewport.utility.get_active_viewport_camera_string()
self.assertTrue(bool(cam_path_str))
self.assertTrue(isinstance(cam_path_str, str))
cam_path_str = omni.kit.viewport.utility.get_active_viewport_camera_string(usd_context_name='')
self.assertTrue(bool(cam_path_str))
self.assertTrue(isinstance(cam_path_str, str))
cam_path_str = omni.kit.viewport.utility.get_active_viewport_camera_string(usd_context_name='DoesntExist')
self.assertIsNone(cam_path_str)
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
# Test property and method accessors are equal
self.assertEqual(viewport_api.get_active_camera(), viewport_api.camera_path)
async def test_setup_viewport_test_window(self):
'''Test the test-suite utility setup_viewport_test_window'''
from omni.kit.viewport.utility.tests import setup_viewport_test_window
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
resolution = viewport_api.resolution
# Test the keywords arguments for the function
await setup_viewport_test_window(resolution_x=128, resolution_y=128, position_x=10, position_y=10)
# Test the arguments for the function and restore Viewport resolution
await setup_viewport_test_window(resolution[0], resolution[1], 0, 0)
async def test_viewport_resolution(self):
'''Test the test-suite utility setup_viewport_test_window'''
from omni.kit.viewport.utility.tests import setup_viewport_test_window
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
# Legacy Viewport needs some time to adopt the resolution changes
try:
resolution = viewport_api.resolution
self.assertIsNotNone(resolution)
full_resolution = viewport_api.full_resolution
self.assertEqual(resolution, full_resolution)
resolution_scale = viewport_api.resolution_scale
# Resolution scale factor should be 1 by default
self.assertEqual(resolution_scale, 1.0)
viewport_api.resolution_scale = 0.5
await self.wait_for_resolution_change(viewport_api)
# Resolution scale factor should stick
self.assertEqual(viewport_api.resolution_scale, 0.5)
# Full resolution should still be the same
self.assertEqual(viewport_api.full_resolution, full_resolution)
# New resolution should now be half of the original
self.assertEqual(viewport_api.resolution, (resolution[0] * 0.5, resolution[1] * 0.5))
finally:
viewport_api.resolution_scale = 1.0
self.assertEqual(viewport_api.resolution_scale, 1.0)
async def test_testsuite_capture_helpers(self):
'''Test the API exposed to assist other extensions testing/capturing Viewport'''
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
from omni.kit.viewport.utility.tests.capture import viewport_capture, capture_viewport_and_wait
# Test keyword arguments with an explicit Viewport
await capture_viewport_and_wait(image_name='test_testsuite_capture_helper_01', output_img_dir=str(TEST_OUTPUT), viewport = viewport_api)
# Test arguments with an implicit Viewport
await capture_viewport_and_wait('test_testsuite_capture_helper_02', str(TEST_OUTPUT))
async def test_legacy_as_new_api(self):
'''Test the new API against a new or legacy Viewport'''
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
self.assertEqual(viewport_api.camera_path.pathString, '/OmniverseKit_Persp')
# Test camera property setter
viewport_api.camera_path = '/OmniverseKit_Top'
self.assertEqual(viewport_api.camera_path.pathString, '/OmniverseKit_Top')
# Test camera method setter
viewport_api.set_active_camera('/OmniverseKit_Persp')
resolution = viewport_api.resolution
self.assertIsNotNone(resolution)
# Test access via legacy method-name
self.assertEqual(resolution, viewport_api.get_texture_resolution())
# Test setting via property
viewport_api.resolution = (128, 128)
await self.wait_for_resolution_change(viewport_api)
self.assertEqual(viewport_api.resolution, (128, 128))
# Test setting via method
viewport_api.set_texture_resolution((256, 256))
await self.wait_for_resolution_change(viewport_api)
self.assertEqual(viewport_api.get_texture_resolution(), (256, 256))
# Test matrix access
self.assertIsNotNone(viewport_api.projection)
self.assertIsNotNone(viewport_api.transform)
self.assertIsNotNone(viewport_api.view)
# Test world-NDC matrix convertor access
self.assertIsNotNone(viewport_api.world_to_ndc)
self.assertIsNotNone(viewport_api.ndc_to_world)
# Test UsdContext and Stage access
self.assertIsNotNone(viewport_api.usd_context_name)
self.assertIsNotNone(viewport_api.usd_context)
self.assertIsNotNone(viewport_api.stage)
render_product_path = viewport_api.render_product_path
self.assertIsNotNone(render_product_path)
# Test access via legacy method-name
self.assertEqual(render_product_path, viewport_api.get_render_product_path())
# Test setting via property
viewport_api.render_product_path = render_product_path
# Test setting via method
viewport_api.set_render_product_path(render_product_path)
# Should have an id property
self.assertIsNotNone(viewport_api.id)
# Should have a frame_info dictionary
self.assertIsNotNone(viewport_api.frame_info)
# Test the NDC to texture-uv mapping API
uv, valid = viewport_api.map_ndc_to_texture((0, 0))
self.assertTrue(bool(valid))
self.assertEqual(uv, (0.5, 0.5))
# Test the NDC to texture-pixel mapping API
pixel, valid = viewport_api.map_ndc_to_texture_pixel((0, 0))
self.assertTrue(bool(valid))
# Test API to set fill-frame resolution
self.assertFalse(viewport_api.fill_frame)
viewport_api.fill_frame = True
await self.wait_for_resolution_change(viewport_api)
self.assertTrue(viewport_api.fill_frame)
viewport_api.fill_frame = False
await self.wait_for_resolution_change(viewport_api)
self.assertFalse(viewport_api.fill_frame)
async def test_viewport_window_api(self):
'''Test the legacy API exposure into the omni.ui window wrapper'''
viewport_window = omni.kit.viewport.utility.get_active_viewport_window()
self.assertIsNotNone(viewport_window)
# Test the get_frame API
frame_1 = viewport_window.get_frame('omni.kit.viewport.utility.test_frame_1')
self.assertIsNotNone(frame_1)
frame_2 = viewport_window.get_frame('omni.kit.viewport.utility.test_frame_1')
self.assertEqual(frame_1, frame_2)
frame_3 = viewport_window.get_frame('omni.kit.viewport.utility.test_frame_3')
self.assertNotEqual(frame_1, frame_3)
# Test setting visible attribute on Window
viewport_window.visible = True
self.assertTrue(viewport_window.visible)
# Test utility function for legacy usage only
if viewport_window and hasattr(viewport_window.viewport_api, 'legacy_window'):
viewport_window.setPosition(0, 0)
viewport_window.set_position(0, 0)
async def test_toggle_global_visibility(self):
"""Test the expected setting change for omni.kit.viewport.utility.toggle_global_visibility"""
import carb
settings = carb.settings.get_settings()
viewport_api = omni.kit.viewport.utility.get_active_viewport()
if hasattr(viewport_api, 'legacy_window'):
def collect_settings(settings):
return settings.get('/persistent/app/viewport/displayOptions')
else:
def collect_settings(settings):
setting_keys = [
"/persistent/app/viewport/Viewport/Viewport0/guide/grid/visible",
"/persistent/app/viewport/Viewport/Viewport0/hud/deviceMemory/visible",
"/persistent/app/viewport/Viewport/Viewport0/hud/hostMemory/visible",
"/persistent/app/viewport/Viewport/Viewport0/hud/renderFPS/visible",
"/persistent/app/viewport/Viewport/Viewport0/hud/renderProgress/visible",
"/persistent/app/viewport/Viewport/Viewport0/hud/renderResolution/visible",
"/persistent/app/viewport/Viewport/Viewport0/scene/cameras/visible",
"/persistent/app/viewport/Viewport/Viewport0/scene/lights/visible",
"/persistent/app/viewport/Viewport/Viewport0/scene/skeletons/visible",
]
return {k: settings.get(k) for k in setting_keys}
omni.kit.viewport.utility.toggle_global_visibility()
options_1 = collect_settings(settings)
omni.kit.viewport.utility.toggle_global_visibility()
options_2 = collect_settings(settings)
self.assertNotEqual(options_1, options_2)
omni.kit.viewport.utility.toggle_global_visibility()
options_3 = collect_settings(settings)
self.assertEqual(options_1, options_3)
omni.kit.viewport.utility.toggle_global_visibility()
options_4 = collect_settings(settings)
self.assertEqual(options_2, options_4)
async def test_ui_scene_view_model_sync(self):
'''Test API to autmoatically set view and projection on a SceneView model'''
class ModelPoser:
def __init__(model_self):
model_self.set_items = set()
def get_item(model_self, name: str):
if name == 'view' or name == 'projection':
return name
self.assertTrue(False)
def set_floats(model_self, item, floats):
self.assertEqual(len(floats), 16)
self.assertTrue(item == model_self.get_item(item))
model_self.set_items.add(item)
class SceneViewPoser:
def __init__(model_self):
model_self.model = ModelPoser()
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
scene_view = SceneViewPoser()
# Test add_scene_view API
viewport_api.add_scene_view(scene_view)
# Test both view and projection have been set into
self.assertTrue('view' in scene_view.model.set_items)
self.assertTrue('projection' in scene_view.model.set_items)
# Test remove_scene_view API
viewport_api.remove_scene_view(scene_view)
async def test_legacy_drag_drop_helper(self):
pickable = False
add_outline = False
def on_drop_accepted_fn(url):
pass
def on_drop_fn(url, prim_path, unused_viewport_name, usd_context_name):
pass
def on_pick_fn(payload, prim_path, usd_context_name):
pass
dd_from_args = omni.kit.viewport.utility.create_drop_helper(
pickable, add_outline, on_drop_accepted_fn, on_drop_fn, on_pick_fn
)
self.assertIsNotNone(dd_from_args)
dd_from_kw = omni.kit.viewport.utility.create_drop_helper(
pickable=pickable, add_outline=add_outline, on_drop_accepted_fn=on_drop_accepted_fn, on_drop_fn=on_drop_fn, on_pick_fn=on_pick_fn
)
self.assertIsNotNone(dd_from_kw)
async def test_capture_file(self):
'''Test the capture_viewport_to_file capture to a file'''
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertTrue(bool(viewport_api))
# Make sure renderer is rendering images (also a good place to up the coverage %)
await omni.kit.viewport.utility.next_viewport_frame_async(viewport_api)
file = TEST_OUTPUT.joinpath('capture_01.png')
cap_obj = omni.kit.viewport.utility.capture_viewport_to_file(viewport_api, file_path=str(file))
# API should return an object we can await on
self.assertIsNotNone(cap_obj)
# Test that we can in fact wait on that object
result = await cap_obj.wait_for_result(completion_frames=30)
self.assertTrue(result)
# File should exists by now
omni.kit.renderer_capture.acquire_renderer_capture_interface().wait_async_capture()
self.assertTrue(file.exists())
async def test_capture_file_with_exr_compression(self):
'''Test the capture_viewport_to_file capture to a file'''
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertTrue(bool(viewport_api))
# Make sure renderer is rendering images (also a good place to up the coverage %)
await omni.kit.viewport.utility.next_viewport_frame_async(viewport_api)
format_desc = {}
format_desc["format"] = "exr"
format_desc["compression"] = "b44"
file = TEST_OUTPUT.joinpath(f'capture_{format_desc["compression"]}.{format_desc["format"]}')
cap_obj = omni.kit.viewport.utility.capture_viewport_to_file(viewport_api, file_path=str(file), format_desc=format_desc)
# API should return an object we can await on
self.assertIsNotNone(cap_obj)
# Test that we can in fact wait on that object
result = await cap_obj.wait_for_result(completion_frames=30)
self.assertTrue(result)
# File should exists by now
omni.kit.renderer_capture.acquire_renderer_capture_interface().wait_async_capture()
self.assertTrue(file.exists())
async def test_capture_file_str_convert(self):
'''Test the capture_viewport_to_file capture to a file when passed an path-like object'''
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertTrue(bool(viewport_api))
# Make sure renderer is rendering images (also a good place to up the coverage %)
await omni.kit.viewport.utility.next_viewport_frame_async(viewport_api)
file = TEST_OUTPUT.joinpath('capture_02.png')
cap_obj = omni.kit.viewport.utility.capture_viewport_to_file(viewport_api, file_path=file)
# API should return an object we can await on
self.assertIsNotNone(cap_obj)
# Test that we can in fact wait on that object
result = await cap_obj.wait_for_result(completion_frames=15)
self.assertTrue(result)
# File should exists by now
# self.assertTrue(file.exists())
async def test_capture_to_buffer(self):
'''Test the capture_viewport_to_file capture to a callback function'''
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertTrue(bool(viewport_api))
# Make sure renderer is rendering images (also a good place to up the coverage %)
await omni.kit.viewport.utility.next_viewport_frame_async(viewport_api)
callback_called = False
def capture_callback(*args, **kwargs):
nonlocal callback_called
callback_called = True
cap_obj = omni.kit.viewport.utility.capture_viewport_to_buffer(viewport_api, capture_callback)
# API should return an object we can await on
self.assertIsNotNone(cap_obj)
# Test that we can in fact wait on that object
result = await cap_obj.wait_for_result()
self.assertTrue(result)
# Callback should have been called
self.assertTrue(callback_called)
async def test_new_viewport_api(self):
'''Test the ability to create a new Viewport and retrieve the number of Viewports open'''
num_vp_1 = omni.kit.viewport.utility.get_num_viewports()
self.assertEqual(num_vp_1, 1)
# Test Window creation, but that would require a renderer other than Storm which can only be created once
# Which would make the tests run slower and in L2
# new_window = omni.kit.viewport.utility.create_viewport_window('TEST WINDOW', width=128, height=128, camera_path='/OmniverseKit_Top')
# self.assertEqual(new_window.viewport_api.camera_path.pathString, '/OmniverseKit_Top')
# num_vp_2 = omni.kit.viewport.utility.get_num_viewports()
# self.assertEqual(num_vp_2, 2)
async def test_post_toast_api(self):
# Post a message with a Viewport only
viewport_api = omni.kit.viewport.utility.get_active_viewport()
omni.kit.viewport.utility.post_viewport_message(viewport_api, "Message from ViewportAPI")
# Post a message with the same API, but a Window
viewport_window = omni.kit.viewport.utility.get_active_viewport_window()
omni.kit.viewport.utility.post_viewport_message(viewport_window, "Message from ViewportWindow")
# Post a message with the same API, but with a method
viewport_window._post_toast_message("Message from ViewportWindow method")
async def test_disable_picking(self):
'''Test ability to disable picking on a Viewport or ViewportWindow'''
from omni.kit import ui_test
viewport_window = omni.kit.viewport.utility.get_active_viewport_window()
self.assertIsNotNone(viewport_window)
# viewport_window.position_x = 0
# viewport_window.position_y = 0
# viewport_window.width = TEST_WIDTH
# viewport_window.height = TEST_HEIGHT
viewport_api = viewport_window.viewport_api
self.assertIsNotNone(viewport_api)
usd_cube = UsdGeom.Cube.Define(viewport_window.viewport_api.stage, "/cube")
usd_cube.GetSizeAttr().Set(100)
await omni.kit.viewport.utility.next_viewport_frame_async(viewport_api)
async def test_selection_rect(wait_frames: int = 5):
selection = viewport_api.usd_context.get_selection()
self.assertIsNotNone(selection)
selection.set_selected_prim_paths([], False)
selected_prims = selection.get_selected_prim_paths()
self.assertFalse(bool(selected_prims))
for _ in range(wait_frames):
await omni.kit.app.get_app().next_update_async()
await ui_test.emulate_mouse_drag_and_drop(ui_test.Vec2(100, 100), ui_test.Vec2(400, 400))
for _ in range(wait_frames):
await omni.kit.app.get_app().next_update_async()
return selection.get_selected_prim_paths()
# Test initial selection works as expected
selection = await test_selection_rect()
self.assertTrue(len(selection) == 1)
self.assertTrue(selection[0] == '/cube')
# Test disabling selection on the Window leads to no selection
picking_disabled = omni.kit.viewport.utility.disable_selection(viewport_window)
selection = await test_selection_rect()
self.assertTrue(len(selection) == 0)
del picking_disabled
# Test restore of selection works as expected
selection = await test_selection_rect()
self.assertTrue(len(selection) == 1)
self.assertTrue(selection[0] == '/cube')
# Test disabling selection on the Viewport leads to no selection
picking_disabled = omni.kit.viewport.utility.disable_selection(viewport_api)
selection = await test_selection_rect()
self.assertTrue(len(selection) == 0)
del picking_disabled
async def test_frame_viewport(self):
time = Usd.TimeCode.Default()
def set_camera(cam_path: str, camera_pos=None, target_pos=None):
from omni.kit.viewport.utility.camera_state import ViewportCameraState
camera_state = ViewportCameraState(cam_path)
camera_state.set_position_world(camera_pos, True)
camera_state.set_target_world(target_pos, True)
def test_camera_position(cam_path: str, expected_pos: Gf.Vec3d):
prim = viewport_api.stage.GetPrimAtPath(cam_path)
camera = UsdGeom.Camera(prim) if prim else None
world_xform = camera.ComputeLocalToWorldTransform(time)
world_pos = world_xform.Transform(Gf.Vec3d(0, 0, 0))
for w_pos, ex_pos in zip(world_pos, expected_pos):
self.assertAlmostEqual(float(w_pos), float(ex_pos), 4)
viewport_window = omni.kit.viewport.utility.get_active_viewport_window()
self.assertIsNotNone(viewport_window)
viewport_api = viewport_window.viewport_api
usd_cube1 = UsdGeom.Cube.Define(viewport_window.viewport_api.stage, "/cube1")
#usd_cube1.GetSizeAttr().Set(10)
usd_cube1_xformable = UsdGeom.Xformable(usd_cube1.GetPrim())
usd_cube1_xformable.AddTranslateOp()
attr = usd_cube1.GetPrim().GetAttribute("xformOp:translate")
attr.Set((200, 800, 4))
usd_cube2 = UsdGeom.Cube.Define(viewport_window.viewport_api.stage, "/cube2")
#usd_cube2.GetSizeAttr().Set(100)
await omni.kit.viewport.utility.next_viewport_frame_async(viewport_api)
selection = viewport_api.usd_context.get_selection()
self.assertIsNotNone(selection)
camera_path = '/OmniverseKit_Persp'
test_camera_position(camera_path, Gf.Vec3d(500, 500, 500))
# select cube1
selection.set_selected_prim_paths(["/cube1"], True)
# frame to the selection
omni.kit.viewport.utility.frame_viewport_selection(viewport_api=viewport_api)
# test
test_camera_position(camera_path, Gf.Vec3d(202.49306, 802.49306, 6.49306))
# select cube2
selection.set_selected_prim_paths(["/cube2"], True)
# frame to the selection
omni.kit.viewport.utility.frame_viewport_selection(viewport_api=viewport_api)
# test
test_camera_position(camera_path, Gf.Vec3d(2.49306, 2.49306, 2.49306))
# unselect
selection.set_selected_prim_paths([], True)
# reset camera position
set_camera(camera_path, (500, 500, 500), (0, 0, 0))
test_camera_position(camera_path, Gf.Vec3d(500, 500, 500))
# frame. Because nothing is selected, it should frame to all.
omni.kit.viewport.utility.frame_viewport_selection(viewport_api=viewport_api)
test_camera_position(camera_path, Gf.Vec3d(522.65586, 822.65585, 424.65586))
# unselect
selection.set_selected_prim_paths([], True)
# reset camera position
set_camera(camera_path, (500, 500, 500), (0, 0, 0))
test_camera_position(camera_path, Gf.Vec3d(500, 500, 500))
# no frame on cube2 without to select it
omni.kit.viewport.utility.frame_viewport_prims(viewport_api=viewport_api, prims=["/cube2"])
# should be the same as when we select
test_camera_position(camera_path, Gf.Vec3d(2.49306, 2.49306, 2.49306))
# reset camera position
set_camera(camera_path, (500, 500, 500), (0, 0, 0))
test_camera_position(camera_path, Gf.Vec3d(500, 500, 500))
# try on cube1
omni.kit.viewport.utility.frame_viewport_prims(viewport_api=viewport_api, prims=["/cube1"])
test_camera_position(camera_path, Gf.Vec3d(202.49306, 802.49306, 6.49306))
# call frame on prims with no list given
omni.kit.viewport.utility.frame_viewport_prims(viewport_api=viewport_api)
# camera should not move
test_camera_position(camera_path, Gf.Vec3d(202.49306, 802.49306, 6.49306))
async def test_disable_context_menu(self):
'''Test ability to disable context-menu on a Viewport or ViewportWindow'''
from omni.kit import ui_test
ctx_menu_wait = 50
#
# Initial checks about assumption that objects are reachable and that no context manu is visible
#
ui_viewport = ui_test.find("Viewport")
self.assertIsNotNone(ui_viewport)
self.assertIsNone(ui.Menu.get_current())
#
# Test context-menu is working by default
#
await ui_viewport.right_click(human_delay_speed=ctx_menu_wait)
self.assertIsNotNone(ui.Menu.get_current())
#
# Test disabling context-menu with a ViewportWindow
#
viewport_window = omni.kit.viewport.utility.get_active_viewport_window()
self.assertIsNotNone(viewport_window)
context_menu_disabled = omni.kit.viewport.utility.disable_context_menu(viewport_window)
await ui_viewport.right_click(human_delay_speed=ctx_menu_wait)
self.assertIsNone(ui.Menu.get_current())
del context_menu_disabled
# Context menu should work again
await ui_viewport.right_click(human_delay_speed=ctx_menu_wait)
self.assertIsNotNone(ui.Menu.get_current())
#
# Test disabling context-menu with a Viewport instance
#
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
context_menu_disabled = omni.kit.viewport.utility.disable_context_menu(viewport_api)
await ui_viewport.right_click(human_delay_speed=ctx_menu_wait)
self.assertIsNone(ui.Menu.get_current())
del context_menu_disabled
# Context menu should work again
await ui_viewport.right_click(human_delay_speed=ctx_menu_wait)
self.assertIsNotNone(ui.Menu.get_current())
#
# Test disabling context-menu globally
#
context_menu_disabled = omni.kit.viewport.utility.disable_context_menu()
await ui_viewport.right_click(human_delay_speed=ctx_menu_wait)
self.assertIsNone(ui.Menu.get_current())
del context_menu_disabled
# Context menu should work again
await ui_viewport.right_click(human_delay_speed=ctx_menu_wait)
self.assertIsNotNone(ui.Menu.get_current())
async def testget_ground_plane_info(self):
'''Test results from get_ground_plane_info'''
viewport_api = omni.kit.viewport.utility.get_active_viewport()
self.assertIsNotNone(viewport_api)
async def get_camera_ground_plane(path: str, ortho_special: bool = True, wait_frames: int = 3):
app = omni.kit.app.get_app()
viewport_api.camera_path = path
for _ in range(wait_frames):
await omni.kit.app.get_app().next_update_async()
return omni.kit.viewport.utility.get_ground_plane_info(viewport_api, ortho_special)
def test_results(results, normal, planes):
self.assertTrue(Gf.IsClose(results[0], normal, 1e-5))
self.assertEqual(results[1], planes)
# Test ground plane info against Y-up stage
UsdGeom.SetStageUpAxis(viewport_api.stage, UsdGeom.Tokens.y)
persp_info = await get_camera_ground_plane('/OmniverseKit_Persp')
front_info = await get_camera_ground_plane('/OmniverseKit_Front')
top_info = await get_camera_ground_plane('/OmniverseKit_Top')
right_info = await get_camera_ground_plane('/OmniverseKit_Right')
right_info_world = await get_camera_ground_plane('/OmniverseKit_Right', False)
test_results(persp_info, Gf.Vec3d(0, 1, 0), ['x', 'z'])
test_results(front_info, Gf.Vec3d(0, 0, 1), ['x', 'y'])
test_results(top_info, Gf.Vec3d(0, 1, 0), ['x', 'z'])
test_results(right_info, Gf.Vec3d(1, 0, 0), ['y', 'z'])
test_results(right_info_world, Gf.Vec3d(0, 1, 0), ['x', 'z'])
# Test ground plane info against Z-up stage
UsdGeom.SetStageUpAxis(viewport_api.stage, UsdGeom.Tokens.z)
persp_info = await get_camera_ground_plane('/OmniverseKit_Persp')
front_info = await get_camera_ground_plane('/OmniverseKit_Front')
top_info = await get_camera_ground_plane('/OmniverseKit_Top')
right_info = await get_camera_ground_plane('/OmniverseKit_Right')
right_info_world = await get_camera_ground_plane('/OmniverseKit_Right', False)
test_results(persp_info, Gf.Vec3d(0, 0, 1), ['x', 'y'])
test_results(front_info, Gf.Vec3d(1, 0, 0), ['y', 'z'])
test_results(top_info, Gf.Vec3d(0, 0, 1), ['x', 'y'])
test_results(right_info, Gf.Vec3d(0, 1, 0), ['x', 'z'])
test_results(right_info_world, Gf.Vec3d(0, 0, 1), ['x', 'y'])
|
omniverse-code/kit/exts/omni.kit.viewport.utility/docs/CHANGELOG.md | # CHANGELOG
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [1.0.14] - 2023-01-25
### Added
- get_ground_plane_info API call.
## [1.0.13] - 2022-12-09
### Added
- Be able to pass a prim path to focus on
## [1.0.12] - 2022-10-17
### Added
- disable_context_menu API to disable contet menu for single or all Viewport.
- Support legacy global disabling of context-menu by carb-setting.
- Ability to also disable object-click (or not) when disabling selection-rect.
### Fixed
- A few typos.
## [1.0.11] - 2022-09-27
### Added
- Use new ViewportWindow.active_window API.
### Fixed
- Possibly import error from omni.usd.editor
## [1.0.10] - 2022-09-10
### Added
- disable_selection API to disable Viewport selection.
## [1.0.9] - 2022-08-25
### Fixed
- Convert to Gf.Camera at Viewport time.
## [1.0.8] - 2022-08-22
### Added
- Re-enable possibility of more than one Viewport.
## [1.0.7] - 2022-08-10
### Added
- Ability to specify format_desc dictionary to new capture-file API.
## [1.0.6] - 2022-07-28
### Added
- Accept a ViewportWindow or ViewportAPI for toast-message API.
- Add _post_toast_message method to LegacyViewportWindow
## [1.0.5] - 2022-07-06
### Added
- Add resolution and scaling API to mirror new Viewport
## [1.0.4] - 2022-06-22
### Added
- Add capture_viewport_to_buffer function
### Changed
- Return an object from capture_viewport_to_file and capture_viewport_to_buffer.
- Get test-suite coverage above 70%.
### Fixed
- Query of fill_frame atribute after toggling with legacy Viewport
## [1.0.3] - 2022-06-16
### Added
- Add create_drop_helper function
## [1.0.2] - 2022-05-25
### Added
- Add framing and toggle-visibility function for edit menu.
## [1.0.1] - 2022-05-25
### Added
- Fix issue with usage durring startup with only Legacy viewport
## [1.0.0] - 2022-04-29
### Added
- Initial release
|
omniverse-code/kit/exts/omni.kit.viewport.utility/docs/README.md | # Overview
Utility functions to access [active] Viewport information
|
omniverse-code/kit/exts/omni.kit.viewport.utility/docs/Overview.md | # Overview
Utility functions to access [active] Viewport information
|
omniverse-code/kit/exts/omni.kit.example.toolbar_button/PACKAGE-LICENSES/omni.kit.example.toolbar_button-LICENSE.md | Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related documentation without an express
license agreement from NVIDIA CORPORATION is strictly prohibited. |
omniverse-code/kit/exts/omni.kit.example.toolbar_button/config/extension.toml | [package]
# Semantic Versioning is used: https://semver.org/
version = "0.1.0"
# Lists people or organizations that are considered the "authors" of the package.
authors = ["NVIDIA"]
# The title and description fields are primarly for displaying extension info in UI
title = "Kit Toolbar Button Example"
desciption="Extension to demostrate how to add and remove custom button to Omniverse Kit Toolbar."
category = "Example"
# URL of the extension source repository.
repository = ""
# Keywords for the extension
keywords = ["kit", "example"]
# Location of change log file in target (final) folder of extension, relative to the root.
# More info on writing changelog: https://keepachangelog.com/en/1.0.0/
changelog = "docs/CHANGELOG.md"
# We only depend on testing framework currently:
[dependencies]
"omni.ui" = {}
"omni.kit.window.toolbar" = {}
# Main python module this extension provides, it will be publicly available as "import omni.example.hello".
[[python.module]]
name = "omni.kit.example.toolbar_button"
[[test]]
waiver = "an example extension" |
omniverse-code/kit/exts/omni.kit.example.toolbar_button/omni/kit/example/toolbar_button/__init__.py | from .toolbar_button import *
|
omniverse-code/kit/exts/omni.kit.example.toolbar_button/omni/kit/example/toolbar_button/toolbar_button.py | # Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
import carb
import omni.ext
import omni.kit.app
import omni.kit.window.toolbar
import omni.ui
import os
from carb.input import KeyboardInput as Key
from omni.kit.widget.toolbar import SimpleToolButton, WidgetGroup
class ExampleSimpleToolButton(SimpleToolButton):
"""
Example of how to use SimpleToolButton
"""
def __init__(self, icon_path):
super().__init__(
name="example_simple",
tooltip="Example Simple ToolButton",
icon_path=f"{icon_path}/plus.svg",
icon_checked_path=f"{icon_path}/plus.svg",
hotkey=Key.L,
toggled_fn=lambda c: carb.log_warn(f"Example button toggled {c}"),
)
class ExampleToolButtonGroup(WidgetGroup):
"""
Example of how to create two ToolButton in one WidgetGroup
"""
def __init__(self, icon_path):
super().__init__()
self._icon_path = icon_path
def clean(self):
super().clean()
def get_style(self):
style = {
"Button.Image::example1": {"image_url": f"{self._icon_path}/plus.svg"},
"Button.Image::example1:checked": {"image_url": f"{self._icon_path}/minus.svg"},
"Button.Image::example2": {"image_url": f"{self._icon_path}/minus.svg"},
"Button.Image::example2:checked": {"image_url": f"{self._icon_path}/plus.svg"},
}
return style
def create(self, default_size):
def on_clicked():
# example of getting a button by name from toolbar
toolbar = omni.kit.window.toolbar.get_instance()
button = toolbar.get_widget("scale_op")
if button is not None:
button.enabled = not button.enabled
button1 = omni.ui.ToolButton(
name="example1",
tooltip="Example Button 1",
width=default_size,
height=default_size,
mouse_pressed_fn=lambda x, y, b, _: on_clicked(),
)
button2 = omni.ui.ToolButton(
name="example2", tooltip="Example Button 2", width=default_size, height=default_size
)
# return a dictionary of name -> widget if you want to expose it to other widget_group
return {"example1": button1, "example2": button2}
class ToolbarButtonExample(omni.ext.IExt):
def on_startup(self, ext_id):
ext_path = omni.kit.app.get_app().get_extension_manager().get_extension_path(ext_id)
icon_path = os.path.join(ext_path, "icons")
self._toolbar = omni.kit.window.toolbar.get_instance()
self._widget_simple = ExampleSimpleToolButton(icon_path)
self._widget = ExampleToolButtonGroup(icon_path)
self._toolbar.add_widget(self._widget, -100)
self._toolbar.add_widget(self._widget_simple, -200)
def on_shutdown(self):
self._toolbar.remove_widget(self._widget)
self._toolbar.remove_widget(self._widget_simple)
self._widget.clean()
self._widget = None
self._widget_simple.clean()
self._widget_simple = None
self._toolbar = None
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.