{
  "format": "subfork.graph/1",
  "definition": {
    "version": "0.1.0",
    "name": "Seismic Depth Field",
    "description": "USGS earthquake records become a graph-authored 3D depth field: magnitude bands, exaggerated depth, geographic reference grid and inspectable source rows. No custom renderer or embedded scripts.",
    "nodes": [
      {
        "node_instance_id": "feed",
        "node_id": "n_fetch_url",
        "node_version": "1.0.0",
        "title": "USGS / M2.5+ past seven days",
        "params": {
          "url": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojson",
          "method": "GET",
          "max_response_bytes": 1000000
        },
        "exposed_inputs": [],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "json"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "features",
        "node_id": "n_json_path",
        "node_version": "1.0.0",
        "title": "Earthquake features",
        "params": {
          "path": "features"
        },
        "exposed_inputs": [
          "value"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "value"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "metadata",
        "node_id": "n_json_path",
        "node_version": "1.0.0",
        "title": "Source snapshot metadata",
        "params": {
          "path": "metadata"
        },
        "exposed_inputs": [
          "value"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "value"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "records",
        "node_id": "n_map_fields",
        "node_version": "1.0.0",
        "title": "Location, magnitude and provenance",
        "params": {
          "mapping": {
            "id": "id",
            "place": "properties.place",
            "magnitude": "properties.mag",
            "time_ms": "properties.time",
            "url": "properties.url",
            "longitude": "geometry.coordinates.0",
            "latitude": "geometry.coordinates.1",
            "depth_km": "geometry.coordinates.2"
          }
        },
        "exposed_inputs": [
          "value"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "valid_longitude_gte",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "longitude >= -180",
        "params": {
          "field": "longitude",
          "operation": "gte",
          "equals": -180
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "valid_longitude_lte",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "longitude <= 180",
        "params": {
          "field": "longitude",
          "operation": "lte",
          "equals": 180
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "valid_latitude_gte",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "latitude >= -90",
        "params": {
          "field": "latitude",
          "operation": "gte",
          "equals": -90
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "valid_latitude_lte",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "latitude <= 90",
        "params": {
          "field": "latitude",
          "operation": "lte",
          "equals": 90
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "valid_depth_km_gte",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "depth_km >= -10",
        "params": {
          "field": "depth_km",
          "operation": "gte",
          "equals": -10
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "valid_depth_km_lte",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "depth_km <= 800",
        "params": {
          "field": "depth_km",
          "operation": "lte",
          "equals": 800
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "valid_magnitude_gte",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "magnitude >= 2.5",
        "params": {
          "field": "magnitude",
          "operation": "gte",
          "equals": 2.5
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "valid_magnitude_lte",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "magnitude <= 10",
        "params": {
          "field": "magnitude",
          "operation": "lte",
          "equals": 10
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "latest",
        "node_id": "n_sort_rows",
        "node_version": "1.0.0",
        "title": "Newest first",
        "params": {
          "field": "time_ms",
          "direction": "desc"
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "sample",
        "node_id": "n_limit",
        "node_version": "1.0.0",
        "title": "At most 1000 recent events",
        "params": {
          "count": 1000
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "coordinate_x",
        "node_id": "n_compute_field",
        "node_version": "1.0.0",
        "title": "x: longitude x 0.03",
        "params": {
          "source_field": "longitude",
          "destination_field": "x",
          "operation": "multiply",
          "operand": 0.03
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "coordinate_y",
        "node_id": "n_compute_field",
        "node_version": "1.0.0",
        "title": "y: depth_km x -0.008",
        "params": {
          "source_field": "depth_km",
          "destination_field": "y",
          "operation": "multiply",
          "operand": -0.008
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "coordinate_z",
        "node_id": "n_compute_field",
        "node_version": "1.0.0",
        "title": "z: latitude x -0.03",
        "params": {
          "source_field": "latitude",
          "destination_field": "z",
          "operation": "multiply",
          "operand": -0.03
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "small_min",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "M2.5 to <4 / lower bound",
        "params": {
          "field": "magnitude",
          "operation": "gte",
          "equals": 2.5
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "small_rows",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "M2.5 to <4 / upper bound",
        "params": {
          "field": "magnitude",
          "operation": "lt",
          "equals": 4
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "small_geometry",
        "node_id": "n_scene_geometry",
        "node_version": "1.0.0",
        "title": "M2.5 to <4 / positions",
        "params": {
          "kind": "points"
        },
        "exposed_inputs": [
          "positions"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "geometry"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "small_material",
        "node_id": "n_scene_material",
        "node_version": "1.0.0",
        "title": "M2.5 to <4 / color and size",
        "params": {
          "color": "#6ccfc1",
          "size": 0.085
        },
        "exposed_inputs": [],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "material"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "small_object",
        "node_id": "n_scene_object",
        "node_version": "1.0.0",
        "title": "M2.5 to <4 / earthquakes",
        "params": {},
        "exposed_inputs": [
          "geometry",
          "material"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "object"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "medium_min",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "M4 to <5 / lower bound",
        "params": {
          "field": "magnitude",
          "operation": "gte",
          "equals": 4
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "medium_rows",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "M4 to <5 / upper bound",
        "params": {
          "field": "magnitude",
          "operation": "lt",
          "equals": 5
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "medium_geometry",
        "node_id": "n_scene_geometry",
        "node_version": "1.0.0",
        "title": "M4 to <5 / positions",
        "params": {
          "kind": "points"
        },
        "exposed_inputs": [
          "positions"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "geometry"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "medium_material",
        "node_id": "n_scene_material",
        "node_version": "1.0.0",
        "title": "M4 to <5 / color and size",
        "params": {
          "color": "#efbc67",
          "size": 0.15
        },
        "exposed_inputs": [],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "material"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "medium_object",
        "node_id": "n_scene_object",
        "node_version": "1.0.0",
        "title": "M4 to <5 / earthquakes",
        "params": {},
        "exposed_inputs": [
          "geometry",
          "material"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "object"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "large_min",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "M5+ / lower bound",
        "params": {
          "field": "magnitude",
          "operation": "gte",
          "equals": 5
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "large_rows",
        "node_id": "n_filter_rows",
        "node_version": "1.0.0",
        "title": "M5+ / upper bound",
        "params": {
          "field": "magnitude",
          "operation": "lt",
          "equals": 10.1
        },
        "exposed_inputs": [
          "items"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "items"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "large_geometry",
        "node_id": "n_scene_geometry",
        "node_version": "1.0.0",
        "title": "M5+ / positions",
        "params": {
          "kind": "points"
        },
        "exposed_inputs": [
          "positions"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "geometry"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "large_material",
        "node_id": "n_scene_material",
        "node_version": "1.0.0",
        "title": "M5+ / color and size",
        "params": {
          "color": "#f47d73",
          "size": 0.24
        },
        "exposed_inputs": [],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "material"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "large_object",
        "node_id": "n_scene_object",
        "node_version": "1.0.0",
        "title": "M5+ / earthquakes",
        "params": {},
        "exposed_inputs": [
          "geometry",
          "material"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "object"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "grid",
        "node_id": "n_scene_geometry",
        "node_version": "1.0.0",
        "title": "Surface grid / 200 km depth guides",
        "params": {
          "kind": "points",
          "positions": [
            [
              -5.3999999999999995,
              0,
              2.6999999999999997
            ],
            [
              -5.3999999999999995,
              0,
              2.61
            ],
            [
              -5.3999999999999995,
              0,
              2.52
            ],
            [
              -5.3999999999999995,
              0,
              2.4299999999999997
            ],
            [
              -5.3999999999999995,
              0,
              2.34
            ],
            [
              -5.3999999999999995,
              0,
              2.25
            ],
            [
              -5.3999999999999995,
              0,
              2.16
            ],
            [
              -5.3999999999999995,
              0,
              2.07
            ],
            [
              -5.3999999999999995,
              0,
              1.98
            ],
            [
              -5.3999999999999995,
              0,
              1.89
            ],
            [
              -5.3999999999999995,
              0,
              1.7999999999999998
            ],
            [
              -5.3999999999999995,
              0,
              1.71
            ],
            [
              -5.3999999999999995,
              0,
              1.6199999999999999
            ],
            [
              -5.3999999999999995,
              0,
              1.53
            ],
            [
              -5.3999999999999995,
              0,
              1.44
            ],
            [
              -5.3999999999999995,
              0,
              1.3499999999999999
            ],
            [
              -5.3999999999999995,
              0,
              1.26
            ],
            [
              -5.3999999999999995,
              0,
              1.17
            ],
            [
              -5.3999999999999995,
              0,
              1.08
            ],
            [
              -5.3999999999999995,
              0,
              0.99
            ],
            [
              -5.3999999999999995,
              0,
              0.8999999999999999
            ],
            [
              -5.3999999999999995,
              0,
              0.8099999999999999
            ],
            [
              -5.3999999999999995,
              0,
              0.72
            ],
            [
              -5.3999999999999995,
              0,
              0.63
            ],
            [
              -5.3999999999999995,
              0,
              0.54
            ],
            [
              -5.3999999999999995,
              0,
              0.44999999999999996
            ],
            [
              -5.3999999999999995,
              0,
              0.36
            ],
            [
              -5.3999999999999995,
              0,
              0.27
            ],
            [
              -5.3999999999999995,
              0,
              0.18
            ],
            [
              -5.3999999999999995,
              0,
              0.09
            ],
            [
              -5.3999999999999995,
              0,
              0
            ],
            [
              -5.3999999999999995,
              0,
              -0.09
            ],
            [
              -5.3999999999999995,
              0,
              -0.18
            ],
            [
              -5.3999999999999995,
              0,
              -0.27
            ],
            [
              -5.3999999999999995,
              0,
              -0.36
            ],
            [
              -5.3999999999999995,
              0,
              -0.44999999999999996
            ],
            [
              -5.3999999999999995,
              0,
              -0.54
            ],
            [
              -5.3999999999999995,
              0,
              -0.63
            ],
            [
              -5.3999999999999995,
              0,
              -0.72
            ],
            [
              -5.3999999999999995,
              0,
              -0.8099999999999999
            ],
            [
              -5.3999999999999995,
              0,
              -0.8999999999999999
            ],
            [
              -5.3999999999999995,
              0,
              -0.99
            ],
            [
              -5.3999999999999995,
              0,
              -1.08
            ],
            [
              -5.3999999999999995,
              0,
              -1.17
            ],
            [
              -5.3999999999999995,
              0,
              -1.26
            ],
            [
              -5.3999999999999995,
              0,
              -1.3499999999999999
            ],
            [
              -5.3999999999999995,
              0,
              -1.44
            ],
            [
              -5.3999999999999995,
              0,
              -1.53
            ],
            [
              -5.3999999999999995,
              0,
              -1.6199999999999999
            ],
            [
              -5.3999999999999995,
              0,
              -1.71
            ],
            [
              -5.3999999999999995,
              0,
              -1.7999999999999998
            ],
            [
              -5.3999999999999995,
              0,
              -1.89
            ],
            [
              -5.3999999999999995,
              0,
              -1.98
            ],
            [
              -5.3999999999999995,
              0,
              -2.07
            ],
            [
              -5.3999999999999995,
              0,
              -2.16
            ],
            [
              -5.3999999999999995,
              0,
              -2.25
            ],
            [
              -5.3999999999999995,
              0,
              -2.34
            ],
            [
              -5.3999999999999995,
              0,
              -2.4299999999999997
            ],
            [
              -5.3999999999999995,
              0,
              -2.52
            ],
            [
              -5.3999999999999995,
              0,
              -2.61
            ],
            [
              -5.3999999999999995,
              0,
              -2.6999999999999997
            ],
            [
              -4.5,
              0,
              2.6999999999999997
            ],
            [
              -4.5,
              0,
              2.61
            ],
            [
              -4.5,
              0,
              2.52
            ],
            [
              -4.5,
              0,
              2.4299999999999997
            ],
            [
              -4.5,
              0,
              2.34
            ],
            [
              -4.5,
              0,
              2.25
            ],
            [
              -4.5,
              0,
              2.16
            ],
            [
              -4.5,
              0,
              2.07
            ],
            [
              -4.5,
              0,
              1.98
            ],
            [
              -4.5,
              0,
              1.89
            ],
            [
              -4.5,
              0,
              1.7999999999999998
            ],
            [
              -4.5,
              0,
              1.71
            ],
            [
              -4.5,
              0,
              1.6199999999999999
            ],
            [
              -4.5,
              0,
              1.53
            ],
            [
              -4.5,
              0,
              1.44
            ],
            [
              -4.5,
              0,
              1.3499999999999999
            ],
            [
              -4.5,
              0,
              1.26
            ],
            [
              -4.5,
              0,
              1.17
            ],
            [
              -4.5,
              0,
              1.08
            ],
            [
              -4.5,
              0,
              0.99
            ],
            [
              -4.5,
              0,
              0.8999999999999999
            ],
            [
              -4.5,
              0,
              0.8099999999999999
            ],
            [
              -4.5,
              0,
              0.72
            ],
            [
              -4.5,
              0,
              0.63
            ],
            [
              -4.5,
              0,
              0.54
            ],
            [
              -4.5,
              0,
              0.44999999999999996
            ],
            [
              -4.5,
              0,
              0.36
            ],
            [
              -4.5,
              0,
              0.27
            ],
            [
              -4.5,
              0,
              0.18
            ],
            [
              -4.5,
              0,
              0.09
            ],
            [
              -4.5,
              0,
              0
            ],
            [
              -4.5,
              0,
              -0.09
            ],
            [
              -4.5,
              0,
              -0.18
            ],
            [
              -4.5,
              0,
              -0.27
            ],
            [
              -4.5,
              0,
              -0.36
            ],
            [
              -4.5,
              0,
              -0.44999999999999996
            ],
            [
              -4.5,
              0,
              -0.54
            ],
            [
              -4.5,
              0,
              -0.63
            ],
            [
              -4.5,
              0,
              -0.72
            ],
            [
              -4.5,
              0,
              -0.8099999999999999
            ],
            [
              -4.5,
              0,
              -0.8999999999999999
            ],
            [
              -4.5,
              0,
              -0.99
            ],
            [
              -4.5,
              0,
              -1.08
            ],
            [
              -4.5,
              0,
              -1.17
            ],
            [
              -4.5,
              0,
              -1.26
            ],
            [
              -4.5,
              0,
              -1.3499999999999999
            ],
            [
              -4.5,
              0,
              -1.44
            ],
            [
              -4.5,
              0,
              -1.53
            ],
            [
              -4.5,
              0,
              -1.6199999999999999
            ],
            [
              -4.5,
              0,
              -1.71
            ],
            [
              -4.5,
              0,
              -1.7999999999999998
            ],
            [
              -4.5,
              0,
              -1.89
            ],
            [
              -4.5,
              0,
              -1.98
            ],
            [
              -4.5,
              0,
              -2.07
            ],
            [
              -4.5,
              0,
              -2.16
            ],
            [
              -4.5,
              0,
              -2.25
            ],
            [
              -4.5,
              0,
              -2.34
            ],
            [
              -4.5,
              0,
              -2.4299999999999997
            ],
            [
              -4.5,
              0,
              -2.52
            ],
            [
              -4.5,
              0,
              -2.61
            ],
            [
              -4.5,
              0,
              -2.6999999999999997
            ],
            [
              -3.5999999999999996,
              0,
              2.6999999999999997
            ],
            [
              -3.5999999999999996,
              0,
              2.61
            ],
            [
              -3.5999999999999996,
              0,
              2.52
            ],
            [
              -3.5999999999999996,
              0,
              2.4299999999999997
            ],
            [
              -3.5999999999999996,
              0,
              2.34
            ],
            [
              -3.5999999999999996,
              0,
              2.25
            ],
            [
              -3.5999999999999996,
              0,
              2.16
            ],
            [
              -3.5999999999999996,
              0,
              2.07
            ],
            [
              -3.5999999999999996,
              0,
              1.98
            ],
            [
              -3.5999999999999996,
              0,
              1.89
            ],
            [
              -3.5999999999999996,
              0,
              1.7999999999999998
            ],
            [
              -3.5999999999999996,
              0,
              1.71
            ],
            [
              -3.5999999999999996,
              0,
              1.6199999999999999
            ],
            [
              -3.5999999999999996,
              0,
              1.53
            ],
            [
              -3.5999999999999996,
              0,
              1.44
            ],
            [
              -3.5999999999999996,
              0,
              1.3499999999999999
            ],
            [
              -3.5999999999999996,
              0,
              1.26
            ],
            [
              -3.5999999999999996,
              0,
              1.17
            ],
            [
              -3.5999999999999996,
              0,
              1.08
            ],
            [
              -3.5999999999999996,
              0,
              0.99
            ],
            [
              -3.5999999999999996,
              0,
              0.8999999999999999
            ],
            [
              -3.5999999999999996,
              0,
              0.8099999999999999
            ],
            [
              -3.5999999999999996,
              0,
              0.72
            ],
            [
              -3.5999999999999996,
              0,
              0.63
            ],
            [
              -3.5999999999999996,
              0,
              0.54
            ],
            [
              -3.5999999999999996,
              0,
              0.44999999999999996
            ],
            [
              -3.5999999999999996,
              0,
              0.36
            ],
            [
              -3.5999999999999996,
              0,
              0.27
            ],
            [
              -3.5999999999999996,
              0,
              0.18
            ],
            [
              -3.5999999999999996,
              0,
              0.09
            ],
            [
              -3.5999999999999996,
              0,
              0
            ],
            [
              -3.5999999999999996,
              0,
              -0.09
            ],
            [
              -3.5999999999999996,
              0,
              -0.18
            ],
            [
              -3.5999999999999996,
              0,
              -0.27
            ],
            [
              -3.5999999999999996,
              0,
              -0.36
            ],
            [
              -3.5999999999999996,
              0,
              -0.44999999999999996
            ],
            [
              -3.5999999999999996,
              0,
              -0.54
            ],
            [
              -3.5999999999999996,
              0,
              -0.63
            ],
            [
              -3.5999999999999996,
              0,
              -0.72
            ],
            [
              -3.5999999999999996,
              0,
              -0.8099999999999999
            ],
            [
              -3.5999999999999996,
              0,
              -0.8999999999999999
            ],
            [
              -3.5999999999999996,
              0,
              -0.99
            ],
            [
              -3.5999999999999996,
              0,
              -1.08
            ],
            [
              -3.5999999999999996,
              0,
              -1.17
            ],
            [
              -3.5999999999999996,
              0,
              -1.26
            ],
            [
              -3.5999999999999996,
              0,
              -1.3499999999999999
            ],
            [
              -3.5999999999999996,
              0,
              -1.44
            ],
            [
              -3.5999999999999996,
              0,
              -1.53
            ],
            [
              -3.5999999999999996,
              0,
              -1.6199999999999999
            ],
            [
              -3.5999999999999996,
              0,
              -1.71
            ],
            [
              -3.5999999999999996,
              0,
              -1.7999999999999998
            ],
            [
              -3.5999999999999996,
              0,
              -1.89
            ],
            [
              -3.5999999999999996,
              0,
              -1.98
            ],
            [
              -3.5999999999999996,
              0,
              -2.07
            ],
            [
              -3.5999999999999996,
              0,
              -2.16
            ],
            [
              -3.5999999999999996,
              0,
              -2.25
            ],
            [
              -3.5999999999999996,
              0,
              -2.34
            ],
            [
              -3.5999999999999996,
              0,
              -2.4299999999999997
            ],
            [
              -3.5999999999999996,
              0,
              -2.52
            ],
            [
              -3.5999999999999996,
              0,
              -2.61
            ],
            [
              -3.5999999999999996,
              0,
              -2.6999999999999997
            ],
            [
              -2.6999999999999997,
              0,
              2.6999999999999997
            ],
            [
              -2.6999999999999997,
              0,
              2.61
            ],
            [
              -2.6999999999999997,
              0,
              2.52
            ],
            [
              -2.6999999999999997,
              0,
              2.4299999999999997
            ],
            [
              -2.6999999999999997,
              0,
              2.34
            ],
            [
              -2.6999999999999997,
              0,
              2.25
            ],
            [
              -2.6999999999999997,
              0,
              2.16
            ],
            [
              -2.6999999999999997,
              0,
              2.07
            ],
            [
              -2.6999999999999997,
              0,
              1.98
            ],
            [
              -2.6999999999999997,
              0,
              1.89
            ],
            [
              -2.6999999999999997,
              0,
              1.7999999999999998
            ],
            [
              -2.6999999999999997,
              0,
              1.71
            ],
            [
              -2.6999999999999997,
              0,
              1.6199999999999999
            ],
            [
              -2.6999999999999997,
              0,
              1.53
            ],
            [
              -2.6999999999999997,
              0,
              1.44
            ],
            [
              -2.6999999999999997,
              0,
              1.3499999999999999
            ],
            [
              -2.6999999999999997,
              0,
              1.26
            ],
            [
              -2.6999999999999997,
              0,
              1.17
            ],
            [
              -2.6999999999999997,
              0,
              1.08
            ],
            [
              -2.6999999999999997,
              0,
              0.99
            ],
            [
              -2.6999999999999997,
              0,
              0.8999999999999999
            ],
            [
              -2.6999999999999997,
              0,
              0.8099999999999999
            ],
            [
              -2.6999999999999997,
              0,
              0.72
            ],
            [
              -2.6999999999999997,
              0,
              0.63
            ],
            [
              -2.6999999999999997,
              0,
              0.54
            ],
            [
              -2.6999999999999997,
              0,
              0.44999999999999996
            ],
            [
              -2.6999999999999997,
              0,
              0.36
            ],
            [
              -2.6999999999999997,
              0,
              0.27
            ],
            [
              -2.6999999999999997,
              0,
              0.18
            ],
            [
              -2.6999999999999997,
              0,
              0.09
            ],
            [
              -2.6999999999999997,
              0,
              0
            ],
            [
              -2.6999999999999997,
              0,
              -0.09
            ],
            [
              -2.6999999999999997,
              0,
              -0.18
            ],
            [
              -2.6999999999999997,
              0,
              -0.27
            ],
            [
              -2.6999999999999997,
              0,
              -0.36
            ],
            [
              -2.6999999999999997,
              0,
              -0.44999999999999996
            ],
            [
              -2.6999999999999997,
              0,
              -0.54
            ],
            [
              -2.6999999999999997,
              0,
              -0.63
            ],
            [
              -2.6999999999999997,
              0,
              -0.72
            ],
            [
              -2.6999999999999997,
              0,
              -0.8099999999999999
            ],
            [
              -2.6999999999999997,
              0,
              -0.8999999999999999
            ],
            [
              -2.6999999999999997,
              0,
              -0.99
            ],
            [
              -2.6999999999999997,
              0,
              -1.08
            ],
            [
              -2.6999999999999997,
              0,
              -1.17
            ],
            [
              -2.6999999999999997,
              0,
              -1.26
            ],
            [
              -2.6999999999999997,
              0,
              -1.3499999999999999
            ],
            [
              -2.6999999999999997,
              0,
              -1.44
            ],
            [
              -2.6999999999999997,
              0,
              -1.53
            ],
            [
              -2.6999999999999997,
              0,
              -1.6199999999999999
            ],
            [
              -2.6999999999999997,
              0,
              -1.71
            ],
            [
              -2.6999999999999997,
              0,
              -1.7999999999999998
            ],
            [
              -2.6999999999999997,
              0,
              -1.89
            ],
            [
              -2.6999999999999997,
              0,
              -1.98
            ],
            [
              -2.6999999999999997,
              0,
              -2.07
            ],
            [
              -2.6999999999999997,
              0,
              -2.16
            ],
            [
              -2.6999999999999997,
              0,
              -2.25
            ],
            [
              -2.6999999999999997,
              0,
              -2.34
            ],
            [
              -2.6999999999999997,
              0,
              -2.4299999999999997
            ],
            [
              -2.6999999999999997,
              0,
              -2.52
            ],
            [
              -2.6999999999999997,
              0,
              -2.61
            ],
            [
              -2.6999999999999997,
              0,
              -2.6999999999999997
            ],
            [
              -1.7999999999999998,
              0,
              2.6999999999999997
            ],
            [
              -1.7999999999999998,
              0,
              2.61
            ],
            [
              -1.7999999999999998,
              0,
              2.52
            ],
            [
              -1.7999999999999998,
              0,
              2.4299999999999997
            ],
            [
              -1.7999999999999998,
              0,
              2.34
            ],
            [
              -1.7999999999999998,
              0,
              2.25
            ],
            [
              -1.7999999999999998,
              0,
              2.16
            ],
            [
              -1.7999999999999998,
              0,
              2.07
            ],
            [
              -1.7999999999999998,
              0,
              1.98
            ],
            [
              -1.7999999999999998,
              0,
              1.89
            ],
            [
              -1.7999999999999998,
              0,
              1.7999999999999998
            ],
            [
              -1.7999999999999998,
              0,
              1.71
            ],
            [
              -1.7999999999999998,
              0,
              1.6199999999999999
            ],
            [
              -1.7999999999999998,
              0,
              1.53
            ],
            [
              -1.7999999999999998,
              0,
              1.44
            ],
            [
              -1.7999999999999998,
              0,
              1.3499999999999999
            ],
            [
              -1.7999999999999998,
              0,
              1.26
            ],
            [
              -1.7999999999999998,
              0,
              1.17
            ],
            [
              -1.7999999999999998,
              0,
              1.08
            ],
            [
              -1.7999999999999998,
              0,
              0.99
            ],
            [
              -1.7999999999999998,
              0,
              0.8999999999999999
            ],
            [
              -1.7999999999999998,
              0,
              0.8099999999999999
            ],
            [
              -1.7999999999999998,
              0,
              0.72
            ],
            [
              -1.7999999999999998,
              0,
              0.63
            ],
            [
              -1.7999999999999998,
              0,
              0.54
            ],
            [
              -1.7999999999999998,
              0,
              0.44999999999999996
            ],
            [
              -1.7999999999999998,
              0,
              0.36
            ],
            [
              -1.7999999999999998,
              0,
              0.27
            ],
            [
              -1.7999999999999998,
              0,
              0.18
            ],
            [
              -1.7999999999999998,
              0,
              0.09
            ],
            [
              -1.7999999999999998,
              0,
              0
            ],
            [
              -1.7999999999999998,
              0,
              -0.09
            ],
            [
              -1.7999999999999998,
              0,
              -0.18
            ],
            [
              -1.7999999999999998,
              0,
              -0.27
            ],
            [
              -1.7999999999999998,
              0,
              -0.36
            ],
            [
              -1.7999999999999998,
              0,
              -0.44999999999999996
            ],
            [
              -1.7999999999999998,
              0,
              -0.54
            ],
            [
              -1.7999999999999998,
              0,
              -0.63
            ],
            [
              -1.7999999999999998,
              0,
              -0.72
            ],
            [
              -1.7999999999999998,
              0,
              -0.8099999999999999
            ],
            [
              -1.7999999999999998,
              0,
              -0.8999999999999999
            ],
            [
              -1.7999999999999998,
              0,
              -0.99
            ],
            [
              -1.7999999999999998,
              0,
              -1.08
            ],
            [
              -1.7999999999999998,
              0,
              -1.17
            ],
            [
              -1.7999999999999998,
              0,
              -1.26
            ],
            [
              -1.7999999999999998,
              0,
              -1.3499999999999999
            ],
            [
              -1.7999999999999998,
              0,
              -1.44
            ],
            [
              -1.7999999999999998,
              0,
              -1.53
            ],
            [
              -1.7999999999999998,
              0,
              -1.6199999999999999
            ],
            [
              -1.7999999999999998,
              0,
              -1.71
            ],
            [
              -1.7999999999999998,
              0,
              -1.7999999999999998
            ],
            [
              -1.7999999999999998,
              0,
              -1.89
            ],
            [
              -1.7999999999999998,
              0,
              -1.98
            ],
            [
              -1.7999999999999998,
              0,
              -2.07
            ],
            [
              -1.7999999999999998,
              0,
              -2.16
            ],
            [
              -1.7999999999999998,
              0,
              -2.25
            ],
            [
              -1.7999999999999998,
              0,
              -2.34
            ],
            [
              -1.7999999999999998,
              0,
              -2.4299999999999997
            ],
            [
              -1.7999999999999998,
              0,
              -2.52
            ],
            [
              -1.7999999999999998,
              0,
              -2.61
            ],
            [
              -1.7999999999999998,
              0,
              -2.6999999999999997
            ],
            [
              -0.8999999999999999,
              0,
              2.6999999999999997
            ],
            [
              -0.8999999999999999,
              0,
              2.61
            ],
            [
              -0.8999999999999999,
              0,
              2.52
            ],
            [
              -0.8999999999999999,
              0,
              2.4299999999999997
            ],
            [
              -0.8999999999999999,
              0,
              2.34
            ],
            [
              -0.8999999999999999,
              0,
              2.25
            ],
            [
              -0.8999999999999999,
              0,
              2.16
            ],
            [
              -0.8999999999999999,
              0,
              2.07
            ],
            [
              -0.8999999999999999,
              0,
              1.98
            ],
            [
              -0.8999999999999999,
              0,
              1.89
            ],
            [
              -0.8999999999999999,
              0,
              1.7999999999999998
            ],
            [
              -0.8999999999999999,
              0,
              1.71
            ],
            [
              -0.8999999999999999,
              0,
              1.6199999999999999
            ],
            [
              -0.8999999999999999,
              0,
              1.53
            ],
            [
              -0.8999999999999999,
              0,
              1.44
            ],
            [
              -0.8999999999999999,
              0,
              1.3499999999999999
            ],
            [
              -0.8999999999999999,
              0,
              1.26
            ],
            [
              -0.8999999999999999,
              0,
              1.17
            ],
            [
              -0.8999999999999999,
              0,
              1.08
            ],
            [
              -0.8999999999999999,
              0,
              0.99
            ],
            [
              -0.8999999999999999,
              0,
              0.8999999999999999
            ],
            [
              -0.8999999999999999,
              0,
              0.8099999999999999
            ],
            [
              -0.8999999999999999,
              0,
              0.72
            ],
            [
              -0.8999999999999999,
              0,
              0.63
            ],
            [
              -0.8999999999999999,
              0,
              0.54
            ],
            [
              -0.8999999999999999,
              0,
              0.44999999999999996
            ],
            [
              -0.8999999999999999,
              0,
              0.36
            ],
            [
              -0.8999999999999999,
              0,
              0.27
            ],
            [
              -0.8999999999999999,
              0,
              0.18
            ],
            [
              -0.8999999999999999,
              0,
              0.09
            ],
            [
              -0.8999999999999999,
              0,
              0
            ],
            [
              -0.8999999999999999,
              0,
              -0.09
            ],
            [
              -0.8999999999999999,
              0,
              -0.18
            ],
            [
              -0.8999999999999999,
              0,
              -0.27
            ],
            [
              -0.8999999999999999,
              0,
              -0.36
            ],
            [
              -0.8999999999999999,
              0,
              -0.44999999999999996
            ],
            [
              -0.8999999999999999,
              0,
              -0.54
            ],
            [
              -0.8999999999999999,
              0,
              -0.63
            ],
            [
              -0.8999999999999999,
              0,
              -0.72
            ],
            [
              -0.8999999999999999,
              0,
              -0.8099999999999999
            ],
            [
              -0.8999999999999999,
              0,
              -0.8999999999999999
            ],
            [
              -0.8999999999999999,
              0,
              -0.99
            ],
            [
              -0.8999999999999999,
              0,
              -1.08
            ],
            [
              -0.8999999999999999,
              0,
              -1.17
            ],
            [
              -0.8999999999999999,
              0,
              -1.26
            ],
            [
              -0.8999999999999999,
              0,
              -1.3499999999999999
            ],
            [
              -0.8999999999999999,
              0,
              -1.44
            ],
            [
              -0.8999999999999999,
              0,
              -1.53
            ],
            [
              -0.8999999999999999,
              0,
              -1.6199999999999999
            ],
            [
              -0.8999999999999999,
              0,
              -1.71
            ],
            [
              -0.8999999999999999,
              0,
              -1.7999999999999998
            ],
            [
              -0.8999999999999999,
              0,
              -1.89
            ],
            [
              -0.8999999999999999,
              0,
              -1.98
            ],
            [
              -0.8999999999999999,
              0,
              -2.07
            ],
            [
              -0.8999999999999999,
              0,
              -2.16
            ],
            [
              -0.8999999999999999,
              0,
              -2.25
            ],
            [
              -0.8999999999999999,
              0,
              -2.34
            ],
            [
              -0.8999999999999999,
              0,
              -2.4299999999999997
            ],
            [
              -0.8999999999999999,
              0,
              -2.52
            ],
            [
              -0.8999999999999999,
              0,
              -2.61
            ],
            [
              -0.8999999999999999,
              0,
              -2.6999999999999997
            ],
            [
              0,
              0,
              2.6999999999999997
            ],
            [
              0,
              0,
              2.61
            ],
            [
              0,
              0,
              2.52
            ],
            [
              0,
              0,
              2.4299999999999997
            ],
            [
              0,
              0,
              2.34
            ],
            [
              0,
              0,
              2.25
            ],
            [
              0,
              0,
              2.16
            ],
            [
              0,
              0,
              2.07
            ],
            [
              0,
              0,
              1.98
            ],
            [
              0,
              0,
              1.89
            ],
            [
              0,
              0,
              1.7999999999999998
            ],
            [
              0,
              0,
              1.71
            ],
            [
              0,
              0,
              1.6199999999999999
            ],
            [
              0,
              0,
              1.53
            ],
            [
              0,
              0,
              1.44
            ],
            [
              0,
              0,
              1.3499999999999999
            ],
            [
              0,
              0,
              1.26
            ],
            [
              0,
              0,
              1.17
            ],
            [
              0,
              0,
              1.08
            ],
            [
              0,
              0,
              0.99
            ],
            [
              0,
              0,
              0.8999999999999999
            ],
            [
              0,
              0,
              0.8099999999999999
            ],
            [
              0,
              0,
              0.72
            ],
            [
              0,
              0,
              0.63
            ],
            [
              0,
              0,
              0.54
            ],
            [
              0,
              0,
              0.44999999999999996
            ],
            [
              0,
              0,
              0.36
            ],
            [
              0,
              0,
              0.27
            ],
            [
              0,
              0,
              0.18
            ],
            [
              0,
              0,
              0.09
            ],
            [
              0,
              0,
              0
            ],
            [
              0,
              0,
              -0.09
            ],
            [
              0,
              0,
              -0.18
            ],
            [
              0,
              0,
              -0.27
            ],
            [
              0,
              0,
              -0.36
            ],
            [
              0,
              0,
              -0.44999999999999996
            ],
            [
              0,
              0,
              -0.54
            ],
            [
              0,
              0,
              -0.63
            ],
            [
              0,
              0,
              -0.72
            ],
            [
              0,
              0,
              -0.8099999999999999
            ],
            [
              0,
              0,
              -0.8999999999999999
            ],
            [
              0,
              0,
              -0.99
            ],
            [
              0,
              0,
              -1.08
            ],
            [
              0,
              0,
              -1.17
            ],
            [
              0,
              0,
              -1.26
            ],
            [
              0,
              0,
              -1.3499999999999999
            ],
            [
              0,
              0,
              -1.44
            ],
            [
              0,
              0,
              -1.53
            ],
            [
              0,
              0,
              -1.6199999999999999
            ],
            [
              0,
              0,
              -1.71
            ],
            [
              0,
              0,
              -1.7999999999999998
            ],
            [
              0,
              0,
              -1.89
            ],
            [
              0,
              0,
              -1.98
            ],
            [
              0,
              0,
              -2.07
            ],
            [
              0,
              0,
              -2.16
            ],
            [
              0,
              0,
              -2.25
            ],
            [
              0,
              0,
              -2.34
            ],
            [
              0,
              0,
              -2.4299999999999997
            ],
            [
              0,
              0,
              -2.52
            ],
            [
              0,
              0,
              -2.61
            ],
            [
              0,
              0,
              -2.6999999999999997
            ],
            [
              0.8999999999999999,
              0,
              2.6999999999999997
            ],
            [
              0.8999999999999999,
              0,
              2.61
            ],
            [
              0.8999999999999999,
              0,
              2.52
            ],
            [
              0.8999999999999999,
              0,
              2.4299999999999997
            ],
            [
              0.8999999999999999,
              0,
              2.34
            ],
            [
              0.8999999999999999,
              0,
              2.25
            ],
            [
              0.8999999999999999,
              0,
              2.16
            ],
            [
              0.8999999999999999,
              0,
              2.07
            ],
            [
              0.8999999999999999,
              0,
              1.98
            ],
            [
              0.8999999999999999,
              0,
              1.89
            ],
            [
              0.8999999999999999,
              0,
              1.7999999999999998
            ],
            [
              0.8999999999999999,
              0,
              1.71
            ],
            [
              0.8999999999999999,
              0,
              1.6199999999999999
            ],
            [
              0.8999999999999999,
              0,
              1.53
            ],
            [
              0.8999999999999999,
              0,
              1.44
            ],
            [
              0.8999999999999999,
              0,
              1.3499999999999999
            ],
            [
              0.8999999999999999,
              0,
              1.26
            ],
            [
              0.8999999999999999,
              0,
              1.17
            ],
            [
              0.8999999999999999,
              0,
              1.08
            ],
            [
              0.8999999999999999,
              0,
              0.99
            ],
            [
              0.8999999999999999,
              0,
              0.8999999999999999
            ],
            [
              0.8999999999999999,
              0,
              0.8099999999999999
            ],
            [
              0.8999999999999999,
              0,
              0.72
            ],
            [
              0.8999999999999999,
              0,
              0.63
            ],
            [
              0.8999999999999999,
              0,
              0.54
            ],
            [
              0.8999999999999999,
              0,
              0.44999999999999996
            ],
            [
              0.8999999999999999,
              0,
              0.36
            ],
            [
              0.8999999999999999,
              0,
              0.27
            ],
            [
              0.8999999999999999,
              0,
              0.18
            ],
            [
              0.8999999999999999,
              0,
              0.09
            ],
            [
              0.8999999999999999,
              0,
              0
            ],
            [
              0.8999999999999999,
              0,
              -0.09
            ],
            [
              0.8999999999999999,
              0,
              -0.18
            ],
            [
              0.8999999999999999,
              0,
              -0.27
            ],
            [
              0.8999999999999999,
              0,
              -0.36
            ],
            [
              0.8999999999999999,
              0,
              -0.44999999999999996
            ],
            [
              0.8999999999999999,
              0,
              -0.54
            ],
            [
              0.8999999999999999,
              0,
              -0.63
            ],
            [
              0.8999999999999999,
              0,
              -0.72
            ],
            [
              0.8999999999999999,
              0,
              -0.8099999999999999
            ],
            [
              0.8999999999999999,
              0,
              -0.8999999999999999
            ],
            [
              0.8999999999999999,
              0,
              -0.99
            ],
            [
              0.8999999999999999,
              0,
              -1.08
            ],
            [
              0.8999999999999999,
              0,
              -1.17
            ],
            [
              0.8999999999999999,
              0,
              -1.26
            ],
            [
              0.8999999999999999,
              0,
              -1.3499999999999999
            ],
            [
              0.8999999999999999,
              0,
              -1.44
            ],
            [
              0.8999999999999999,
              0,
              -1.53
            ],
            [
              0.8999999999999999,
              0,
              -1.6199999999999999
            ],
            [
              0.8999999999999999,
              0,
              -1.71
            ],
            [
              0.8999999999999999,
              0,
              -1.7999999999999998
            ],
            [
              0.8999999999999999,
              0,
              -1.89
            ],
            [
              0.8999999999999999,
              0,
              -1.98
            ],
            [
              0.8999999999999999,
              0,
              -2.07
            ],
            [
              0.8999999999999999,
              0,
              -2.16
            ],
            [
              0.8999999999999999,
              0,
              -2.25
            ],
            [
              0.8999999999999999,
              0,
              -2.34
            ],
            [
              0.8999999999999999,
              0,
              -2.4299999999999997
            ],
            [
              0.8999999999999999,
              0,
              -2.52
            ],
            [
              0.8999999999999999,
              0,
              -2.61
            ],
            [
              0.8999999999999999,
              0,
              -2.6999999999999997
            ],
            [
              1.7999999999999998,
              0,
              2.6999999999999997
            ],
            [
              1.7999999999999998,
              0,
              2.61
            ],
            [
              1.7999999999999998,
              0,
              2.52
            ],
            [
              1.7999999999999998,
              0,
              2.4299999999999997
            ],
            [
              1.7999999999999998,
              0,
              2.34
            ],
            [
              1.7999999999999998,
              0,
              2.25
            ],
            [
              1.7999999999999998,
              0,
              2.16
            ],
            [
              1.7999999999999998,
              0,
              2.07
            ],
            [
              1.7999999999999998,
              0,
              1.98
            ],
            [
              1.7999999999999998,
              0,
              1.89
            ],
            [
              1.7999999999999998,
              0,
              1.7999999999999998
            ],
            [
              1.7999999999999998,
              0,
              1.71
            ],
            [
              1.7999999999999998,
              0,
              1.6199999999999999
            ],
            [
              1.7999999999999998,
              0,
              1.53
            ],
            [
              1.7999999999999998,
              0,
              1.44
            ],
            [
              1.7999999999999998,
              0,
              1.3499999999999999
            ],
            [
              1.7999999999999998,
              0,
              1.26
            ],
            [
              1.7999999999999998,
              0,
              1.17
            ],
            [
              1.7999999999999998,
              0,
              1.08
            ],
            [
              1.7999999999999998,
              0,
              0.99
            ],
            [
              1.7999999999999998,
              0,
              0.8999999999999999
            ],
            [
              1.7999999999999998,
              0,
              0.8099999999999999
            ],
            [
              1.7999999999999998,
              0,
              0.72
            ],
            [
              1.7999999999999998,
              0,
              0.63
            ],
            [
              1.7999999999999998,
              0,
              0.54
            ],
            [
              1.7999999999999998,
              0,
              0.44999999999999996
            ],
            [
              1.7999999999999998,
              0,
              0.36
            ],
            [
              1.7999999999999998,
              0,
              0.27
            ],
            [
              1.7999999999999998,
              0,
              0.18
            ],
            [
              1.7999999999999998,
              0,
              0.09
            ],
            [
              1.7999999999999998,
              0,
              0
            ],
            [
              1.7999999999999998,
              0,
              -0.09
            ],
            [
              1.7999999999999998,
              0,
              -0.18
            ],
            [
              1.7999999999999998,
              0,
              -0.27
            ],
            [
              1.7999999999999998,
              0,
              -0.36
            ],
            [
              1.7999999999999998,
              0,
              -0.44999999999999996
            ],
            [
              1.7999999999999998,
              0,
              -0.54
            ],
            [
              1.7999999999999998,
              0,
              -0.63
            ],
            [
              1.7999999999999998,
              0,
              -0.72
            ],
            [
              1.7999999999999998,
              0,
              -0.8099999999999999
            ],
            [
              1.7999999999999998,
              0,
              -0.8999999999999999
            ],
            [
              1.7999999999999998,
              0,
              -0.99
            ],
            [
              1.7999999999999998,
              0,
              -1.08
            ],
            [
              1.7999999999999998,
              0,
              -1.17
            ],
            [
              1.7999999999999998,
              0,
              -1.26
            ],
            [
              1.7999999999999998,
              0,
              -1.3499999999999999
            ],
            [
              1.7999999999999998,
              0,
              -1.44
            ],
            [
              1.7999999999999998,
              0,
              -1.53
            ],
            [
              1.7999999999999998,
              0,
              -1.6199999999999999
            ],
            [
              1.7999999999999998,
              0,
              -1.71
            ],
            [
              1.7999999999999998,
              0,
              -1.7999999999999998
            ],
            [
              1.7999999999999998,
              0,
              -1.89
            ],
            [
              1.7999999999999998,
              0,
              -1.98
            ],
            [
              1.7999999999999998,
              0,
              -2.07
            ],
            [
              1.7999999999999998,
              0,
              -2.16
            ],
            [
              1.7999999999999998,
              0,
              -2.25
            ],
            [
              1.7999999999999998,
              0,
              -2.34
            ],
            [
              1.7999999999999998,
              0,
              -2.4299999999999997
            ],
            [
              1.7999999999999998,
              0,
              -2.52
            ],
            [
              1.7999999999999998,
              0,
              -2.61
            ],
            [
              1.7999999999999998,
              0,
              -2.6999999999999997
            ],
            [
              2.6999999999999997,
              0,
              2.6999999999999997
            ],
            [
              2.6999999999999997,
              0,
              2.61
            ],
            [
              2.6999999999999997,
              0,
              2.52
            ],
            [
              2.6999999999999997,
              0,
              2.4299999999999997
            ],
            [
              2.6999999999999997,
              0,
              2.34
            ],
            [
              2.6999999999999997,
              0,
              2.25
            ],
            [
              2.6999999999999997,
              0,
              2.16
            ],
            [
              2.6999999999999997,
              0,
              2.07
            ],
            [
              2.6999999999999997,
              0,
              1.98
            ],
            [
              2.6999999999999997,
              0,
              1.89
            ],
            [
              2.6999999999999997,
              0,
              1.7999999999999998
            ],
            [
              2.6999999999999997,
              0,
              1.71
            ],
            [
              2.6999999999999997,
              0,
              1.6199999999999999
            ],
            [
              2.6999999999999997,
              0,
              1.53
            ],
            [
              2.6999999999999997,
              0,
              1.44
            ],
            [
              2.6999999999999997,
              0,
              1.3499999999999999
            ],
            [
              2.6999999999999997,
              0,
              1.26
            ],
            [
              2.6999999999999997,
              0,
              1.17
            ],
            [
              2.6999999999999997,
              0,
              1.08
            ],
            [
              2.6999999999999997,
              0,
              0.99
            ],
            [
              2.6999999999999997,
              0,
              0.8999999999999999
            ],
            [
              2.6999999999999997,
              0,
              0.8099999999999999
            ],
            [
              2.6999999999999997,
              0,
              0.72
            ],
            [
              2.6999999999999997,
              0,
              0.63
            ],
            [
              2.6999999999999997,
              0,
              0.54
            ],
            [
              2.6999999999999997,
              0,
              0.44999999999999996
            ],
            [
              2.6999999999999997,
              0,
              0.36
            ],
            [
              2.6999999999999997,
              0,
              0.27
            ],
            [
              2.6999999999999997,
              0,
              0.18
            ],
            [
              2.6999999999999997,
              0,
              0.09
            ],
            [
              2.6999999999999997,
              0,
              0
            ],
            [
              2.6999999999999997,
              0,
              -0.09
            ],
            [
              2.6999999999999997,
              0,
              -0.18
            ],
            [
              2.6999999999999997,
              0,
              -0.27
            ],
            [
              2.6999999999999997,
              0,
              -0.36
            ],
            [
              2.6999999999999997,
              0,
              -0.44999999999999996
            ],
            [
              2.6999999999999997,
              0,
              -0.54
            ],
            [
              2.6999999999999997,
              0,
              -0.63
            ],
            [
              2.6999999999999997,
              0,
              -0.72
            ],
            [
              2.6999999999999997,
              0,
              -0.8099999999999999
            ],
            [
              2.6999999999999997,
              0,
              -0.8999999999999999
            ],
            [
              2.6999999999999997,
              0,
              -0.99
            ],
            [
              2.6999999999999997,
              0,
              -1.08
            ],
            [
              2.6999999999999997,
              0,
              -1.17
            ],
            [
              2.6999999999999997,
              0,
              -1.26
            ],
            [
              2.6999999999999997,
              0,
              -1.3499999999999999
            ],
            [
              2.6999999999999997,
              0,
              -1.44
            ],
            [
              2.6999999999999997,
              0,
              -1.53
            ],
            [
              2.6999999999999997,
              0,
              -1.6199999999999999
            ],
            [
              2.6999999999999997,
              0,
              -1.71
            ],
            [
              2.6999999999999997,
              0,
              -1.7999999999999998
            ],
            [
              2.6999999999999997,
              0,
              -1.89
            ],
            [
              2.6999999999999997,
              0,
              -1.98
            ],
            [
              2.6999999999999997,
              0,
              -2.07
            ],
            [
              2.6999999999999997,
              0,
              -2.16
            ],
            [
              2.6999999999999997,
              0,
              -2.25
            ],
            [
              2.6999999999999997,
              0,
              -2.34
            ],
            [
              2.6999999999999997,
              0,
              -2.4299999999999997
            ],
            [
              2.6999999999999997,
              0,
              -2.52
            ],
            [
              2.6999999999999997,
              0,
              -2.61
            ],
            [
              2.6999999999999997,
              0,
              -2.6999999999999997
            ],
            [
              3.5999999999999996,
              0,
              2.6999999999999997
            ],
            [
              3.5999999999999996,
              0,
              2.61
            ],
            [
              3.5999999999999996,
              0,
              2.52
            ],
            [
              3.5999999999999996,
              0,
              2.4299999999999997
            ],
            [
              3.5999999999999996,
              0,
              2.34
            ],
            [
              3.5999999999999996,
              0,
              2.25
            ],
            [
              3.5999999999999996,
              0,
              2.16
            ],
            [
              3.5999999999999996,
              0,
              2.07
            ],
            [
              3.5999999999999996,
              0,
              1.98
            ],
            [
              3.5999999999999996,
              0,
              1.89
            ],
            [
              3.5999999999999996,
              0,
              1.7999999999999998
            ],
            [
              3.5999999999999996,
              0,
              1.71
            ],
            [
              3.5999999999999996,
              0,
              1.6199999999999999
            ],
            [
              3.5999999999999996,
              0,
              1.53
            ],
            [
              3.5999999999999996,
              0,
              1.44
            ],
            [
              3.5999999999999996,
              0,
              1.3499999999999999
            ],
            [
              3.5999999999999996,
              0,
              1.26
            ],
            [
              3.5999999999999996,
              0,
              1.17
            ],
            [
              3.5999999999999996,
              0,
              1.08
            ],
            [
              3.5999999999999996,
              0,
              0.99
            ],
            [
              3.5999999999999996,
              0,
              0.8999999999999999
            ],
            [
              3.5999999999999996,
              0,
              0.8099999999999999
            ],
            [
              3.5999999999999996,
              0,
              0.72
            ],
            [
              3.5999999999999996,
              0,
              0.63
            ],
            [
              3.5999999999999996,
              0,
              0.54
            ],
            [
              3.5999999999999996,
              0,
              0.44999999999999996
            ],
            [
              3.5999999999999996,
              0,
              0.36
            ],
            [
              3.5999999999999996,
              0,
              0.27
            ],
            [
              3.5999999999999996,
              0,
              0.18
            ],
            [
              3.5999999999999996,
              0,
              0.09
            ],
            [
              3.5999999999999996,
              0,
              0
            ],
            [
              3.5999999999999996,
              0,
              -0.09
            ],
            [
              3.5999999999999996,
              0,
              -0.18
            ],
            [
              3.5999999999999996,
              0,
              -0.27
            ],
            [
              3.5999999999999996,
              0,
              -0.36
            ],
            [
              3.5999999999999996,
              0,
              -0.44999999999999996
            ],
            [
              3.5999999999999996,
              0,
              -0.54
            ],
            [
              3.5999999999999996,
              0,
              -0.63
            ],
            [
              3.5999999999999996,
              0,
              -0.72
            ],
            [
              3.5999999999999996,
              0,
              -0.8099999999999999
            ],
            [
              3.5999999999999996,
              0,
              -0.8999999999999999
            ],
            [
              3.5999999999999996,
              0,
              -0.99
            ],
            [
              3.5999999999999996,
              0,
              -1.08
            ],
            [
              3.5999999999999996,
              0,
              -1.17
            ],
            [
              3.5999999999999996,
              0,
              -1.26
            ],
            [
              3.5999999999999996,
              0,
              -1.3499999999999999
            ],
            [
              3.5999999999999996,
              0,
              -1.44
            ],
            [
              3.5999999999999996,
              0,
              -1.53
            ],
            [
              3.5999999999999996,
              0,
              -1.6199999999999999
            ],
            [
              3.5999999999999996,
              0,
              -1.71
            ],
            [
              3.5999999999999996,
              0,
              -1.7999999999999998
            ],
            [
              3.5999999999999996,
              0,
              -1.89
            ],
            [
              3.5999999999999996,
              0,
              -1.98
            ],
            [
              3.5999999999999996,
              0,
              -2.07
            ],
            [
              3.5999999999999996,
              0,
              -2.16
            ],
            [
              3.5999999999999996,
              0,
              -2.25
            ],
            [
              3.5999999999999996,
              0,
              -2.34
            ],
            [
              3.5999999999999996,
              0,
              -2.4299999999999997
            ],
            [
              3.5999999999999996,
              0,
              -2.52
            ],
            [
              3.5999999999999996,
              0,
              -2.61
            ],
            [
              3.5999999999999996,
              0,
              -2.6999999999999997
            ],
            [
              4.5,
              0,
              2.6999999999999997
            ],
            [
              4.5,
              0,
              2.61
            ],
            [
              4.5,
              0,
              2.52
            ],
            [
              4.5,
              0,
              2.4299999999999997
            ],
            [
              4.5,
              0,
              2.34
            ],
            [
              4.5,
              0,
              2.25
            ],
            [
              4.5,
              0,
              2.16
            ],
            [
              4.5,
              0,
              2.07
            ],
            [
              4.5,
              0,
              1.98
            ],
            [
              4.5,
              0,
              1.89
            ],
            [
              4.5,
              0,
              1.7999999999999998
            ],
            [
              4.5,
              0,
              1.71
            ],
            [
              4.5,
              0,
              1.6199999999999999
            ],
            [
              4.5,
              0,
              1.53
            ],
            [
              4.5,
              0,
              1.44
            ],
            [
              4.5,
              0,
              1.3499999999999999
            ],
            [
              4.5,
              0,
              1.26
            ],
            [
              4.5,
              0,
              1.17
            ],
            [
              4.5,
              0,
              1.08
            ],
            [
              4.5,
              0,
              0.99
            ],
            [
              4.5,
              0,
              0.8999999999999999
            ],
            [
              4.5,
              0,
              0.8099999999999999
            ],
            [
              4.5,
              0,
              0.72
            ],
            [
              4.5,
              0,
              0.63
            ],
            [
              4.5,
              0,
              0.54
            ],
            [
              4.5,
              0,
              0.44999999999999996
            ],
            [
              4.5,
              0,
              0.36
            ],
            [
              4.5,
              0,
              0.27
            ],
            [
              4.5,
              0,
              0.18
            ],
            [
              4.5,
              0,
              0.09
            ],
            [
              4.5,
              0,
              0
            ],
            [
              4.5,
              0,
              -0.09
            ],
            [
              4.5,
              0,
              -0.18
            ],
            [
              4.5,
              0,
              -0.27
            ],
            [
              4.5,
              0,
              -0.36
            ],
            [
              4.5,
              0,
              -0.44999999999999996
            ],
            [
              4.5,
              0,
              -0.54
            ],
            [
              4.5,
              0,
              -0.63
            ],
            [
              4.5,
              0,
              -0.72
            ],
            [
              4.5,
              0,
              -0.8099999999999999
            ],
            [
              4.5,
              0,
              -0.8999999999999999
            ],
            [
              4.5,
              0,
              -0.99
            ],
            [
              4.5,
              0,
              -1.08
            ],
            [
              4.5,
              0,
              -1.17
            ],
            [
              4.5,
              0,
              -1.26
            ],
            [
              4.5,
              0,
              -1.3499999999999999
            ],
            [
              4.5,
              0,
              -1.44
            ],
            [
              4.5,
              0,
              -1.53
            ],
            [
              4.5,
              0,
              -1.6199999999999999
            ],
            [
              4.5,
              0,
              -1.71
            ],
            [
              4.5,
              0,
              -1.7999999999999998
            ],
            [
              4.5,
              0,
              -1.89
            ],
            [
              4.5,
              0,
              -1.98
            ],
            [
              4.5,
              0,
              -2.07
            ],
            [
              4.5,
              0,
              -2.16
            ],
            [
              4.5,
              0,
              -2.25
            ],
            [
              4.5,
              0,
              -2.34
            ],
            [
              4.5,
              0,
              -2.4299999999999997
            ],
            [
              4.5,
              0,
              -2.52
            ],
            [
              4.5,
              0,
              -2.61
            ],
            [
              4.5,
              0,
              -2.6999999999999997
            ],
            [
              5.3999999999999995,
              0,
              2.6999999999999997
            ],
            [
              5.3999999999999995,
              0,
              2.61
            ],
            [
              5.3999999999999995,
              0,
              2.52
            ],
            [
              5.3999999999999995,
              0,
              2.4299999999999997
            ],
            [
              5.3999999999999995,
              0,
              2.34
            ],
            [
              5.3999999999999995,
              0,
              2.25
            ],
            [
              5.3999999999999995,
              0,
              2.16
            ],
            [
              5.3999999999999995,
              0,
              2.07
            ],
            [
              5.3999999999999995,
              0,
              1.98
            ],
            [
              5.3999999999999995,
              0,
              1.89
            ],
            [
              5.3999999999999995,
              0,
              1.7999999999999998
            ],
            [
              5.3999999999999995,
              0,
              1.71
            ],
            [
              5.3999999999999995,
              0,
              1.6199999999999999
            ],
            [
              5.3999999999999995,
              0,
              1.53
            ],
            [
              5.3999999999999995,
              0,
              1.44
            ],
            [
              5.3999999999999995,
              0,
              1.3499999999999999
            ],
            [
              5.3999999999999995,
              0,
              1.26
            ],
            [
              5.3999999999999995,
              0,
              1.17
            ],
            [
              5.3999999999999995,
              0,
              1.08
            ],
            [
              5.3999999999999995,
              0,
              0.99
            ],
            [
              5.3999999999999995,
              0,
              0.8999999999999999
            ],
            [
              5.3999999999999995,
              0,
              0.8099999999999999
            ],
            [
              5.3999999999999995,
              0,
              0.72
            ],
            [
              5.3999999999999995,
              0,
              0.63
            ],
            [
              5.3999999999999995,
              0,
              0.54
            ],
            [
              5.3999999999999995,
              0,
              0.44999999999999996
            ],
            [
              5.3999999999999995,
              0,
              0.36
            ],
            [
              5.3999999999999995,
              0,
              0.27
            ],
            [
              5.3999999999999995,
              0,
              0.18
            ],
            [
              5.3999999999999995,
              0,
              0.09
            ],
            [
              5.3999999999999995,
              0,
              0
            ],
            [
              5.3999999999999995,
              0,
              -0.09
            ],
            [
              5.3999999999999995,
              0,
              -0.18
            ],
            [
              5.3999999999999995,
              0,
              -0.27
            ],
            [
              5.3999999999999995,
              0,
              -0.36
            ],
            [
              5.3999999999999995,
              0,
              -0.44999999999999996
            ],
            [
              5.3999999999999995,
              0,
              -0.54
            ],
            [
              5.3999999999999995,
              0,
              -0.63
            ],
            [
              5.3999999999999995,
              0,
              -0.72
            ],
            [
              5.3999999999999995,
              0,
              -0.8099999999999999
            ],
            [
              5.3999999999999995,
              0,
              -0.8999999999999999
            ],
            [
              5.3999999999999995,
              0,
              -0.99
            ],
            [
              5.3999999999999995,
              0,
              -1.08
            ],
            [
              5.3999999999999995,
              0,
              -1.17
            ],
            [
              5.3999999999999995,
              0,
              -1.26
            ],
            [
              5.3999999999999995,
              0,
              -1.3499999999999999
            ],
            [
              5.3999999999999995,
              0,
              -1.44
            ],
            [
              5.3999999999999995,
              0,
              -1.53
            ],
            [
              5.3999999999999995,
              0,
              -1.6199999999999999
            ],
            [
              5.3999999999999995,
              0,
              -1.71
            ],
            [
              5.3999999999999995,
              0,
              -1.7999999999999998
            ],
            [
              5.3999999999999995,
              0,
              -1.89
            ],
            [
              5.3999999999999995,
              0,
              -1.98
            ],
            [
              5.3999999999999995,
              0,
              -2.07
            ],
            [
              5.3999999999999995,
              0,
              -2.16
            ],
            [
              5.3999999999999995,
              0,
              -2.25
            ],
            [
              5.3999999999999995,
              0,
              -2.34
            ],
            [
              5.3999999999999995,
              0,
              -2.4299999999999997
            ],
            [
              5.3999999999999995,
              0,
              -2.52
            ],
            [
              5.3999999999999995,
              0,
              -2.61
            ],
            [
              5.3999999999999995,
              0,
              -2.6999999999999997
            ],
            [
              -5.3999999999999995,
              0,
              2.6999999999999997
            ],
            [
              -5.31,
              0,
              2.6999999999999997
            ],
            [
              -5.22,
              0,
              2.6999999999999997
            ],
            [
              -5.13,
              0,
              2.6999999999999997
            ],
            [
              -5.04,
              0,
              2.6999999999999997
            ],
            [
              -4.95,
              0,
              2.6999999999999997
            ],
            [
              -4.859999999999999,
              0,
              2.6999999999999997
            ],
            [
              -4.77,
              0,
              2.6999999999999997
            ],
            [
              -4.68,
              0,
              2.6999999999999997
            ],
            [
              -4.59,
              0,
              2.6999999999999997
            ],
            [
              -4.5,
              0,
              2.6999999999999997
            ],
            [
              -4.41,
              0,
              2.6999999999999997
            ],
            [
              -4.32,
              0,
              2.6999999999999997
            ],
            [
              -4.2299999999999995,
              0,
              2.6999999999999997
            ],
            [
              -4.14,
              0,
              2.6999999999999997
            ],
            [
              -4.05,
              0,
              2.6999999999999997
            ],
            [
              -3.96,
              0,
              2.6999999999999997
            ],
            [
              -3.8699999999999997,
              0,
              2.6999999999999997
            ],
            [
              -3.78,
              0,
              2.6999999999999997
            ],
            [
              -3.69,
              0,
              2.6999999999999997
            ],
            [
              -3.5999999999999996,
              0,
              2.6999999999999997
            ],
            [
              -3.51,
              0,
              2.6999999999999997
            ],
            [
              -3.42,
              0,
              2.6999999999999997
            ],
            [
              -3.33,
              0,
              2.6999999999999997
            ],
            [
              -3.2399999999999998,
              0,
              2.6999999999999997
            ],
            [
              -3.15,
              0,
              2.6999999999999997
            ],
            [
              -3.06,
              0,
              2.6999999999999997
            ],
            [
              -2.9699999999999998,
              0,
              2.6999999999999997
            ],
            [
              -2.88,
              0,
              2.6999999999999997
            ],
            [
              -2.79,
              0,
              2.6999999999999997
            ],
            [
              -2.6999999999999997,
              0,
              2.6999999999999997
            ],
            [
              -2.61,
              0,
              2.6999999999999997
            ],
            [
              -2.52,
              0,
              2.6999999999999997
            ],
            [
              -2.4299999999999997,
              0,
              2.6999999999999997
            ],
            [
              -2.34,
              0,
              2.6999999999999997
            ],
            [
              -2.25,
              0,
              2.6999999999999997
            ],
            [
              -2.16,
              0,
              2.6999999999999997
            ],
            [
              -2.07,
              0,
              2.6999999999999997
            ],
            [
              -1.98,
              0,
              2.6999999999999997
            ],
            [
              -1.89,
              0,
              2.6999999999999997
            ],
            [
              -1.7999999999999998,
              0,
              2.6999999999999997
            ],
            [
              -1.71,
              0,
              2.6999999999999997
            ],
            [
              -1.6199999999999999,
              0,
              2.6999999999999997
            ],
            [
              -1.53,
              0,
              2.6999999999999997
            ],
            [
              -1.44,
              0,
              2.6999999999999997
            ],
            [
              -1.3499999999999999,
              0,
              2.6999999999999997
            ],
            [
              -1.26,
              0,
              2.6999999999999997
            ],
            [
              -1.17,
              0,
              2.6999999999999997
            ],
            [
              -1.08,
              0,
              2.6999999999999997
            ],
            [
              -0.99,
              0,
              2.6999999999999997
            ],
            [
              -0.8999999999999999,
              0,
              2.6999999999999997
            ],
            [
              -0.8099999999999999,
              0,
              2.6999999999999997
            ],
            [
              -0.72,
              0,
              2.6999999999999997
            ],
            [
              -0.63,
              0,
              2.6999999999999997
            ],
            [
              -0.54,
              0,
              2.6999999999999997
            ],
            [
              -0.44999999999999996,
              0,
              2.6999999999999997
            ],
            [
              -0.36,
              0,
              2.6999999999999997
            ],
            [
              -0.27,
              0,
              2.6999999999999997
            ],
            [
              -0.18,
              0,
              2.6999999999999997
            ],
            [
              -0.09,
              0,
              2.6999999999999997
            ],
            [
              0,
              0,
              2.6999999999999997
            ],
            [
              0.09,
              0,
              2.6999999999999997
            ],
            [
              0.18,
              0,
              2.6999999999999997
            ],
            [
              0.27,
              0,
              2.6999999999999997
            ],
            [
              0.36,
              0,
              2.6999999999999997
            ],
            [
              0.44999999999999996,
              0,
              2.6999999999999997
            ],
            [
              0.54,
              0,
              2.6999999999999997
            ],
            [
              0.63,
              0,
              2.6999999999999997
            ],
            [
              0.72,
              0,
              2.6999999999999997
            ],
            [
              0.8099999999999999,
              0,
              2.6999999999999997
            ],
            [
              0.8999999999999999,
              0,
              2.6999999999999997
            ],
            [
              0.99,
              0,
              2.6999999999999997
            ],
            [
              1.08,
              0,
              2.6999999999999997
            ],
            [
              1.17,
              0,
              2.6999999999999997
            ],
            [
              1.26,
              0,
              2.6999999999999997
            ],
            [
              1.3499999999999999,
              0,
              2.6999999999999997
            ],
            [
              1.44,
              0,
              2.6999999999999997
            ],
            [
              1.53,
              0,
              2.6999999999999997
            ],
            [
              1.6199999999999999,
              0,
              2.6999999999999997
            ],
            [
              1.71,
              0,
              2.6999999999999997
            ],
            [
              1.7999999999999998,
              0,
              2.6999999999999997
            ],
            [
              1.89,
              0,
              2.6999999999999997
            ],
            [
              1.98,
              0,
              2.6999999999999997
            ],
            [
              2.07,
              0,
              2.6999999999999997
            ],
            [
              2.16,
              0,
              2.6999999999999997
            ],
            [
              2.25,
              0,
              2.6999999999999997
            ],
            [
              2.34,
              0,
              2.6999999999999997
            ],
            [
              2.4299999999999997,
              0,
              2.6999999999999997
            ],
            [
              2.52,
              0,
              2.6999999999999997
            ],
            [
              2.61,
              0,
              2.6999999999999997
            ],
            [
              2.6999999999999997,
              0,
              2.6999999999999997
            ],
            [
              2.79,
              0,
              2.6999999999999997
            ],
            [
              2.88,
              0,
              2.6999999999999997
            ],
            [
              2.9699999999999998,
              0,
              2.6999999999999997
            ],
            [
              3.06,
              0,
              2.6999999999999997
            ],
            [
              3.15,
              0,
              2.6999999999999997
            ],
            [
              3.2399999999999998,
              0,
              2.6999999999999997
            ],
            [
              3.33,
              0,
              2.6999999999999997
            ],
            [
              3.42,
              0,
              2.6999999999999997
            ],
            [
              3.51,
              0,
              2.6999999999999997
            ],
            [
              3.5999999999999996,
              0,
              2.6999999999999997
            ],
            [
              3.69,
              0,
              2.6999999999999997
            ],
            [
              3.78,
              0,
              2.6999999999999997
            ],
            [
              3.8699999999999997,
              0,
              2.6999999999999997
            ],
            [
              3.96,
              0,
              2.6999999999999997
            ],
            [
              4.05,
              0,
              2.6999999999999997
            ],
            [
              4.14,
              0,
              2.6999999999999997
            ],
            [
              4.2299999999999995,
              0,
              2.6999999999999997
            ],
            [
              4.32,
              0,
              2.6999999999999997
            ],
            [
              4.41,
              0,
              2.6999999999999997
            ],
            [
              4.5,
              0,
              2.6999999999999997
            ],
            [
              4.59,
              0,
              2.6999999999999997
            ],
            [
              4.68,
              0,
              2.6999999999999997
            ],
            [
              4.77,
              0,
              2.6999999999999997
            ],
            [
              4.859999999999999,
              0,
              2.6999999999999997
            ],
            [
              4.95,
              0,
              2.6999999999999997
            ],
            [
              5.04,
              0,
              2.6999999999999997
            ],
            [
              5.13,
              0,
              2.6999999999999997
            ],
            [
              5.22,
              0,
              2.6999999999999997
            ],
            [
              5.31,
              0,
              2.6999999999999997
            ],
            [
              5.3999999999999995,
              0,
              2.6999999999999997
            ],
            [
              -5.3999999999999995,
              0,
              1.7999999999999998
            ],
            [
              -5.31,
              0,
              1.7999999999999998
            ],
            [
              -5.22,
              0,
              1.7999999999999998
            ],
            [
              -5.13,
              0,
              1.7999999999999998
            ],
            [
              -5.04,
              0,
              1.7999999999999998
            ],
            [
              -4.95,
              0,
              1.7999999999999998
            ],
            [
              -4.859999999999999,
              0,
              1.7999999999999998
            ],
            [
              -4.77,
              0,
              1.7999999999999998
            ],
            [
              -4.68,
              0,
              1.7999999999999998
            ],
            [
              -4.59,
              0,
              1.7999999999999998
            ],
            [
              -4.5,
              0,
              1.7999999999999998
            ],
            [
              -4.41,
              0,
              1.7999999999999998
            ],
            [
              -4.32,
              0,
              1.7999999999999998
            ],
            [
              -4.2299999999999995,
              0,
              1.7999999999999998
            ],
            [
              -4.14,
              0,
              1.7999999999999998
            ],
            [
              -4.05,
              0,
              1.7999999999999998
            ],
            [
              -3.96,
              0,
              1.7999999999999998
            ],
            [
              -3.8699999999999997,
              0,
              1.7999999999999998
            ],
            [
              -3.78,
              0,
              1.7999999999999998
            ],
            [
              -3.69,
              0,
              1.7999999999999998
            ],
            [
              -3.5999999999999996,
              0,
              1.7999999999999998
            ],
            [
              -3.51,
              0,
              1.7999999999999998
            ],
            [
              -3.42,
              0,
              1.7999999999999998
            ],
            [
              -3.33,
              0,
              1.7999999999999998
            ],
            [
              -3.2399999999999998,
              0,
              1.7999999999999998
            ],
            [
              -3.15,
              0,
              1.7999999999999998
            ],
            [
              -3.06,
              0,
              1.7999999999999998
            ],
            [
              -2.9699999999999998,
              0,
              1.7999999999999998
            ],
            [
              -2.88,
              0,
              1.7999999999999998
            ],
            [
              -2.79,
              0,
              1.7999999999999998
            ],
            [
              -2.6999999999999997,
              0,
              1.7999999999999998
            ],
            [
              -2.61,
              0,
              1.7999999999999998
            ],
            [
              -2.52,
              0,
              1.7999999999999998
            ],
            [
              -2.4299999999999997,
              0,
              1.7999999999999998
            ],
            [
              -2.34,
              0,
              1.7999999999999998
            ],
            [
              -2.25,
              0,
              1.7999999999999998
            ],
            [
              -2.16,
              0,
              1.7999999999999998
            ],
            [
              -2.07,
              0,
              1.7999999999999998
            ],
            [
              -1.98,
              0,
              1.7999999999999998
            ],
            [
              -1.89,
              0,
              1.7999999999999998
            ],
            [
              -1.7999999999999998,
              0,
              1.7999999999999998
            ],
            [
              -1.71,
              0,
              1.7999999999999998
            ],
            [
              -1.6199999999999999,
              0,
              1.7999999999999998
            ],
            [
              -1.53,
              0,
              1.7999999999999998
            ],
            [
              -1.44,
              0,
              1.7999999999999998
            ],
            [
              -1.3499999999999999,
              0,
              1.7999999999999998
            ],
            [
              -1.26,
              0,
              1.7999999999999998
            ],
            [
              -1.17,
              0,
              1.7999999999999998
            ],
            [
              -1.08,
              0,
              1.7999999999999998
            ],
            [
              -0.99,
              0,
              1.7999999999999998
            ],
            [
              -0.8999999999999999,
              0,
              1.7999999999999998
            ],
            [
              -0.8099999999999999,
              0,
              1.7999999999999998
            ],
            [
              -0.72,
              0,
              1.7999999999999998
            ],
            [
              -0.63,
              0,
              1.7999999999999998
            ],
            [
              -0.54,
              0,
              1.7999999999999998
            ],
            [
              -0.44999999999999996,
              0,
              1.7999999999999998
            ],
            [
              -0.36,
              0,
              1.7999999999999998
            ],
            [
              -0.27,
              0,
              1.7999999999999998
            ],
            [
              -0.18,
              0,
              1.7999999999999998
            ],
            [
              -0.09,
              0,
              1.7999999999999998
            ],
            [
              0,
              0,
              1.7999999999999998
            ],
            [
              0.09,
              0,
              1.7999999999999998
            ],
            [
              0.18,
              0,
              1.7999999999999998
            ],
            [
              0.27,
              0,
              1.7999999999999998
            ],
            [
              0.36,
              0,
              1.7999999999999998
            ],
            [
              0.44999999999999996,
              0,
              1.7999999999999998
            ],
            [
              0.54,
              0,
              1.7999999999999998
            ],
            [
              0.63,
              0,
              1.7999999999999998
            ],
            [
              0.72,
              0,
              1.7999999999999998
            ],
            [
              0.8099999999999999,
              0,
              1.7999999999999998
            ],
            [
              0.8999999999999999,
              0,
              1.7999999999999998
            ],
            [
              0.99,
              0,
              1.7999999999999998
            ],
            [
              1.08,
              0,
              1.7999999999999998
            ],
            [
              1.17,
              0,
              1.7999999999999998
            ],
            [
              1.26,
              0,
              1.7999999999999998
            ],
            [
              1.3499999999999999,
              0,
              1.7999999999999998
            ],
            [
              1.44,
              0,
              1.7999999999999998
            ],
            [
              1.53,
              0,
              1.7999999999999998
            ],
            [
              1.6199999999999999,
              0,
              1.7999999999999998
            ],
            [
              1.71,
              0,
              1.7999999999999998
            ],
            [
              1.7999999999999998,
              0,
              1.7999999999999998
            ],
            [
              1.89,
              0,
              1.7999999999999998
            ],
            [
              1.98,
              0,
              1.7999999999999998
            ],
            [
              2.07,
              0,
              1.7999999999999998
            ],
            [
              2.16,
              0,
              1.7999999999999998
            ],
            [
              2.25,
              0,
              1.7999999999999998
            ],
            [
              2.34,
              0,
              1.7999999999999998
            ],
            [
              2.4299999999999997,
              0,
              1.7999999999999998
            ],
            [
              2.52,
              0,
              1.7999999999999998
            ],
            [
              2.61,
              0,
              1.7999999999999998
            ],
            [
              2.6999999999999997,
              0,
              1.7999999999999998
            ],
            [
              2.79,
              0,
              1.7999999999999998
            ],
            [
              2.88,
              0,
              1.7999999999999998
            ],
            [
              2.9699999999999998,
              0,
              1.7999999999999998
            ],
            [
              3.06,
              0,
              1.7999999999999998
            ],
            [
              3.15,
              0,
              1.7999999999999998
            ],
            [
              3.2399999999999998,
              0,
              1.7999999999999998
            ],
            [
              3.33,
              0,
              1.7999999999999998
            ],
            [
              3.42,
              0,
              1.7999999999999998
            ],
            [
              3.51,
              0,
              1.7999999999999998
            ],
            [
              3.5999999999999996,
              0,
              1.7999999999999998
            ],
            [
              3.69,
              0,
              1.7999999999999998
            ],
            [
              3.78,
              0,
              1.7999999999999998
            ],
            [
              3.8699999999999997,
              0,
              1.7999999999999998
            ],
            [
              3.96,
              0,
              1.7999999999999998
            ],
            [
              4.05,
              0,
              1.7999999999999998
            ],
            [
              4.14,
              0,
              1.7999999999999998
            ],
            [
              4.2299999999999995,
              0,
              1.7999999999999998
            ],
            [
              4.32,
              0,
              1.7999999999999998
            ],
            [
              4.41,
              0,
              1.7999999999999998
            ],
            [
              4.5,
              0,
              1.7999999999999998
            ],
            [
              4.59,
              0,
              1.7999999999999998
            ],
            [
              4.68,
              0,
              1.7999999999999998
            ],
            [
              4.77,
              0,
              1.7999999999999998
            ],
            [
              4.859999999999999,
              0,
              1.7999999999999998
            ],
            [
              4.95,
              0,
              1.7999999999999998
            ],
            [
              5.04,
              0,
              1.7999999999999998
            ],
            [
              5.13,
              0,
              1.7999999999999998
            ],
            [
              5.22,
              0,
              1.7999999999999998
            ],
            [
              5.31,
              0,
              1.7999999999999998
            ],
            [
              5.3999999999999995,
              0,
              1.7999999999999998
            ],
            [
              -5.3999999999999995,
              0,
              0.8999999999999999
            ],
            [
              -5.31,
              0,
              0.8999999999999999
            ],
            [
              -5.22,
              0,
              0.8999999999999999
            ],
            [
              -5.13,
              0,
              0.8999999999999999
            ],
            [
              -5.04,
              0,
              0.8999999999999999
            ],
            [
              -4.95,
              0,
              0.8999999999999999
            ],
            [
              -4.859999999999999,
              0,
              0.8999999999999999
            ],
            [
              -4.77,
              0,
              0.8999999999999999
            ],
            [
              -4.68,
              0,
              0.8999999999999999
            ],
            [
              -4.59,
              0,
              0.8999999999999999
            ],
            [
              -4.5,
              0,
              0.8999999999999999
            ],
            [
              -4.41,
              0,
              0.8999999999999999
            ],
            [
              -4.32,
              0,
              0.8999999999999999
            ],
            [
              -4.2299999999999995,
              0,
              0.8999999999999999
            ],
            [
              -4.14,
              0,
              0.8999999999999999
            ],
            [
              -4.05,
              0,
              0.8999999999999999
            ],
            [
              -3.96,
              0,
              0.8999999999999999
            ],
            [
              -3.8699999999999997,
              0,
              0.8999999999999999
            ],
            [
              -3.78,
              0,
              0.8999999999999999
            ],
            [
              -3.69,
              0,
              0.8999999999999999
            ],
            [
              -3.5999999999999996,
              0,
              0.8999999999999999
            ],
            [
              -3.51,
              0,
              0.8999999999999999
            ],
            [
              -3.42,
              0,
              0.8999999999999999
            ],
            [
              -3.33,
              0,
              0.8999999999999999
            ],
            [
              -3.2399999999999998,
              0,
              0.8999999999999999
            ],
            [
              -3.15,
              0,
              0.8999999999999999
            ],
            [
              -3.06,
              0,
              0.8999999999999999
            ],
            [
              -2.9699999999999998,
              0,
              0.8999999999999999
            ],
            [
              -2.88,
              0,
              0.8999999999999999
            ],
            [
              -2.79,
              0,
              0.8999999999999999
            ],
            [
              -2.6999999999999997,
              0,
              0.8999999999999999
            ],
            [
              -2.61,
              0,
              0.8999999999999999
            ],
            [
              -2.52,
              0,
              0.8999999999999999
            ],
            [
              -2.4299999999999997,
              0,
              0.8999999999999999
            ],
            [
              -2.34,
              0,
              0.8999999999999999
            ],
            [
              -2.25,
              0,
              0.8999999999999999
            ],
            [
              -2.16,
              0,
              0.8999999999999999
            ],
            [
              -2.07,
              0,
              0.8999999999999999
            ],
            [
              -1.98,
              0,
              0.8999999999999999
            ],
            [
              -1.89,
              0,
              0.8999999999999999
            ],
            [
              -1.7999999999999998,
              0,
              0.8999999999999999
            ],
            [
              -1.71,
              0,
              0.8999999999999999
            ],
            [
              -1.6199999999999999,
              0,
              0.8999999999999999
            ],
            [
              -1.53,
              0,
              0.8999999999999999
            ],
            [
              -1.44,
              0,
              0.8999999999999999
            ],
            [
              -1.3499999999999999,
              0,
              0.8999999999999999
            ],
            [
              -1.26,
              0,
              0.8999999999999999
            ],
            [
              -1.17,
              0,
              0.8999999999999999
            ],
            [
              -1.08,
              0,
              0.8999999999999999
            ],
            [
              -0.99,
              0,
              0.8999999999999999
            ],
            [
              -0.8999999999999999,
              0,
              0.8999999999999999
            ],
            [
              -0.8099999999999999,
              0,
              0.8999999999999999
            ],
            [
              -0.72,
              0,
              0.8999999999999999
            ],
            [
              -0.63,
              0,
              0.8999999999999999
            ],
            [
              -0.54,
              0,
              0.8999999999999999
            ],
            [
              -0.44999999999999996,
              0,
              0.8999999999999999
            ],
            [
              -0.36,
              0,
              0.8999999999999999
            ],
            [
              -0.27,
              0,
              0.8999999999999999
            ],
            [
              -0.18,
              0,
              0.8999999999999999
            ],
            [
              -0.09,
              0,
              0.8999999999999999
            ],
            [
              0,
              0,
              0.8999999999999999
            ],
            [
              0.09,
              0,
              0.8999999999999999
            ],
            [
              0.18,
              0,
              0.8999999999999999
            ],
            [
              0.27,
              0,
              0.8999999999999999
            ],
            [
              0.36,
              0,
              0.8999999999999999
            ],
            [
              0.44999999999999996,
              0,
              0.8999999999999999
            ],
            [
              0.54,
              0,
              0.8999999999999999
            ],
            [
              0.63,
              0,
              0.8999999999999999
            ],
            [
              0.72,
              0,
              0.8999999999999999
            ],
            [
              0.8099999999999999,
              0,
              0.8999999999999999
            ],
            [
              0.8999999999999999,
              0,
              0.8999999999999999
            ],
            [
              0.99,
              0,
              0.8999999999999999
            ],
            [
              1.08,
              0,
              0.8999999999999999
            ],
            [
              1.17,
              0,
              0.8999999999999999
            ],
            [
              1.26,
              0,
              0.8999999999999999
            ],
            [
              1.3499999999999999,
              0,
              0.8999999999999999
            ],
            [
              1.44,
              0,
              0.8999999999999999
            ],
            [
              1.53,
              0,
              0.8999999999999999
            ],
            [
              1.6199999999999999,
              0,
              0.8999999999999999
            ],
            [
              1.71,
              0,
              0.8999999999999999
            ],
            [
              1.7999999999999998,
              0,
              0.8999999999999999
            ],
            [
              1.89,
              0,
              0.8999999999999999
            ],
            [
              1.98,
              0,
              0.8999999999999999
            ],
            [
              2.07,
              0,
              0.8999999999999999
            ],
            [
              2.16,
              0,
              0.8999999999999999
            ],
            [
              2.25,
              0,
              0.8999999999999999
            ],
            [
              2.34,
              0,
              0.8999999999999999
            ],
            [
              2.4299999999999997,
              0,
              0.8999999999999999
            ],
            [
              2.52,
              0,
              0.8999999999999999
            ],
            [
              2.61,
              0,
              0.8999999999999999
            ],
            [
              2.6999999999999997,
              0,
              0.8999999999999999
            ],
            [
              2.79,
              0,
              0.8999999999999999
            ],
            [
              2.88,
              0,
              0.8999999999999999
            ],
            [
              2.9699999999999998,
              0,
              0.8999999999999999
            ],
            [
              3.06,
              0,
              0.8999999999999999
            ],
            [
              3.15,
              0,
              0.8999999999999999
            ],
            [
              3.2399999999999998,
              0,
              0.8999999999999999
            ],
            [
              3.33,
              0,
              0.8999999999999999
            ],
            [
              3.42,
              0,
              0.8999999999999999
            ],
            [
              3.51,
              0,
              0.8999999999999999
            ],
            [
              3.5999999999999996,
              0,
              0.8999999999999999
            ],
            [
              3.69,
              0,
              0.8999999999999999
            ],
            [
              3.78,
              0,
              0.8999999999999999
            ],
            [
              3.8699999999999997,
              0,
              0.8999999999999999
            ],
            [
              3.96,
              0,
              0.8999999999999999
            ],
            [
              4.05,
              0,
              0.8999999999999999
            ],
            [
              4.14,
              0,
              0.8999999999999999
            ],
            [
              4.2299999999999995,
              0,
              0.8999999999999999
            ],
            [
              4.32,
              0,
              0.8999999999999999
            ],
            [
              4.41,
              0,
              0.8999999999999999
            ],
            [
              4.5,
              0,
              0.8999999999999999
            ],
            [
              4.59,
              0,
              0.8999999999999999
            ],
            [
              4.68,
              0,
              0.8999999999999999
            ],
            [
              4.77,
              0,
              0.8999999999999999
            ],
            [
              4.859999999999999,
              0,
              0.8999999999999999
            ],
            [
              4.95,
              0,
              0.8999999999999999
            ],
            [
              5.04,
              0,
              0.8999999999999999
            ],
            [
              5.13,
              0,
              0.8999999999999999
            ],
            [
              5.22,
              0,
              0.8999999999999999
            ],
            [
              5.31,
              0,
              0.8999999999999999
            ],
            [
              5.3999999999999995,
              0,
              0.8999999999999999
            ],
            [
              -5.3999999999999995,
              0,
              0
            ],
            [
              -5.31,
              0,
              0
            ],
            [
              -5.22,
              0,
              0
            ],
            [
              -5.13,
              0,
              0
            ],
            [
              -5.04,
              0,
              0
            ],
            [
              -4.95,
              0,
              0
            ],
            [
              -4.859999999999999,
              0,
              0
            ],
            [
              -4.77,
              0,
              0
            ],
            [
              -4.68,
              0,
              0
            ],
            [
              -4.59,
              0,
              0
            ],
            [
              -4.5,
              0,
              0
            ],
            [
              -4.41,
              0,
              0
            ],
            [
              -4.32,
              0,
              0
            ],
            [
              -4.2299999999999995,
              0,
              0
            ],
            [
              -4.14,
              0,
              0
            ],
            [
              -4.05,
              0,
              0
            ],
            [
              -3.96,
              0,
              0
            ],
            [
              -3.8699999999999997,
              0,
              0
            ],
            [
              -3.78,
              0,
              0
            ],
            [
              -3.69,
              0,
              0
            ],
            [
              -3.5999999999999996,
              0,
              0
            ],
            [
              -3.51,
              0,
              0
            ],
            [
              -3.42,
              0,
              0
            ],
            [
              -3.33,
              0,
              0
            ],
            [
              -3.2399999999999998,
              0,
              0
            ],
            [
              -3.15,
              0,
              0
            ],
            [
              -3.06,
              0,
              0
            ],
            [
              -2.9699999999999998,
              0,
              0
            ],
            [
              -2.88,
              0,
              0
            ],
            [
              -2.79,
              0,
              0
            ],
            [
              -2.6999999999999997,
              0,
              0
            ],
            [
              -2.61,
              0,
              0
            ],
            [
              -2.52,
              0,
              0
            ],
            [
              -2.4299999999999997,
              0,
              0
            ],
            [
              -2.34,
              0,
              0
            ],
            [
              -2.25,
              0,
              0
            ],
            [
              -2.16,
              0,
              0
            ],
            [
              -2.07,
              0,
              0
            ],
            [
              -1.98,
              0,
              0
            ],
            [
              -1.89,
              0,
              0
            ],
            [
              -1.7999999999999998,
              0,
              0
            ],
            [
              -1.71,
              0,
              0
            ],
            [
              -1.6199999999999999,
              0,
              0
            ],
            [
              -1.53,
              0,
              0
            ],
            [
              -1.44,
              0,
              0
            ],
            [
              -1.3499999999999999,
              0,
              0
            ],
            [
              -1.26,
              0,
              0
            ],
            [
              -1.17,
              0,
              0
            ],
            [
              -1.08,
              0,
              0
            ],
            [
              -0.99,
              0,
              0
            ],
            [
              -0.8999999999999999,
              0,
              0
            ],
            [
              -0.8099999999999999,
              0,
              0
            ],
            [
              -0.72,
              0,
              0
            ],
            [
              -0.63,
              0,
              0
            ],
            [
              -0.54,
              0,
              0
            ],
            [
              -0.44999999999999996,
              0,
              0
            ],
            [
              -0.36,
              0,
              0
            ],
            [
              -0.27,
              0,
              0
            ],
            [
              -0.18,
              0,
              0
            ],
            [
              -0.09,
              0,
              0
            ],
            [
              0,
              0,
              0
            ],
            [
              0.09,
              0,
              0
            ],
            [
              0.18,
              0,
              0
            ],
            [
              0.27,
              0,
              0
            ],
            [
              0.36,
              0,
              0
            ],
            [
              0.44999999999999996,
              0,
              0
            ],
            [
              0.54,
              0,
              0
            ],
            [
              0.63,
              0,
              0
            ],
            [
              0.72,
              0,
              0
            ],
            [
              0.8099999999999999,
              0,
              0
            ],
            [
              0.8999999999999999,
              0,
              0
            ],
            [
              0.99,
              0,
              0
            ],
            [
              1.08,
              0,
              0
            ],
            [
              1.17,
              0,
              0
            ],
            [
              1.26,
              0,
              0
            ],
            [
              1.3499999999999999,
              0,
              0
            ],
            [
              1.44,
              0,
              0
            ],
            [
              1.53,
              0,
              0
            ],
            [
              1.6199999999999999,
              0,
              0
            ],
            [
              1.71,
              0,
              0
            ],
            [
              1.7999999999999998,
              0,
              0
            ],
            [
              1.89,
              0,
              0
            ],
            [
              1.98,
              0,
              0
            ],
            [
              2.07,
              0,
              0
            ],
            [
              2.16,
              0,
              0
            ],
            [
              2.25,
              0,
              0
            ],
            [
              2.34,
              0,
              0
            ],
            [
              2.4299999999999997,
              0,
              0
            ],
            [
              2.52,
              0,
              0
            ],
            [
              2.61,
              0,
              0
            ],
            [
              2.6999999999999997,
              0,
              0
            ],
            [
              2.79,
              0,
              0
            ],
            [
              2.88,
              0,
              0
            ],
            [
              2.9699999999999998,
              0,
              0
            ],
            [
              3.06,
              0,
              0
            ],
            [
              3.15,
              0,
              0
            ],
            [
              3.2399999999999998,
              0,
              0
            ],
            [
              3.33,
              0,
              0
            ],
            [
              3.42,
              0,
              0
            ],
            [
              3.51,
              0,
              0
            ],
            [
              3.5999999999999996,
              0,
              0
            ],
            [
              3.69,
              0,
              0
            ],
            [
              3.78,
              0,
              0
            ],
            [
              3.8699999999999997,
              0,
              0
            ],
            [
              3.96,
              0,
              0
            ],
            [
              4.05,
              0,
              0
            ],
            [
              4.14,
              0,
              0
            ],
            [
              4.2299999999999995,
              0,
              0
            ],
            [
              4.32,
              0,
              0
            ],
            [
              4.41,
              0,
              0
            ],
            [
              4.5,
              0,
              0
            ],
            [
              4.59,
              0,
              0
            ],
            [
              4.68,
              0,
              0
            ],
            [
              4.77,
              0,
              0
            ],
            [
              4.859999999999999,
              0,
              0
            ],
            [
              4.95,
              0,
              0
            ],
            [
              5.04,
              0,
              0
            ],
            [
              5.13,
              0,
              0
            ],
            [
              5.22,
              0,
              0
            ],
            [
              5.31,
              0,
              0
            ],
            [
              5.3999999999999995,
              0,
              0
            ],
            [
              -5.3999999999999995,
              0,
              -0.8999999999999999
            ],
            [
              -5.31,
              0,
              -0.8999999999999999
            ],
            [
              -5.22,
              0,
              -0.8999999999999999
            ],
            [
              -5.13,
              0,
              -0.8999999999999999
            ],
            [
              -5.04,
              0,
              -0.8999999999999999
            ],
            [
              -4.95,
              0,
              -0.8999999999999999
            ],
            [
              -4.859999999999999,
              0,
              -0.8999999999999999
            ],
            [
              -4.77,
              0,
              -0.8999999999999999
            ],
            [
              -4.68,
              0,
              -0.8999999999999999
            ],
            [
              -4.59,
              0,
              -0.8999999999999999
            ],
            [
              -4.5,
              0,
              -0.8999999999999999
            ],
            [
              -4.41,
              0,
              -0.8999999999999999
            ],
            [
              -4.32,
              0,
              -0.8999999999999999
            ],
            [
              -4.2299999999999995,
              0,
              -0.8999999999999999
            ],
            [
              -4.14,
              0,
              -0.8999999999999999
            ],
            [
              -4.05,
              0,
              -0.8999999999999999
            ],
            [
              -3.96,
              0,
              -0.8999999999999999
            ],
            [
              -3.8699999999999997,
              0,
              -0.8999999999999999
            ],
            [
              -3.78,
              0,
              -0.8999999999999999
            ],
            [
              -3.69,
              0,
              -0.8999999999999999
            ],
            [
              -3.5999999999999996,
              0,
              -0.8999999999999999
            ],
            [
              -3.51,
              0,
              -0.8999999999999999
            ],
            [
              -3.42,
              0,
              -0.8999999999999999
            ],
            [
              -3.33,
              0,
              -0.8999999999999999
            ],
            [
              -3.2399999999999998,
              0,
              -0.8999999999999999
            ],
            [
              -3.15,
              0,
              -0.8999999999999999
            ],
            [
              -3.06,
              0,
              -0.8999999999999999
            ],
            [
              -2.9699999999999998,
              0,
              -0.8999999999999999
            ],
            [
              -2.88,
              0,
              -0.8999999999999999
            ],
            [
              -2.79,
              0,
              -0.8999999999999999
            ],
            [
              -2.6999999999999997,
              0,
              -0.8999999999999999
            ],
            [
              -2.61,
              0,
              -0.8999999999999999
            ],
            [
              -2.52,
              0,
              -0.8999999999999999
            ],
            [
              -2.4299999999999997,
              0,
              -0.8999999999999999
            ],
            [
              -2.34,
              0,
              -0.8999999999999999
            ],
            [
              -2.25,
              0,
              -0.8999999999999999
            ],
            [
              -2.16,
              0,
              -0.8999999999999999
            ],
            [
              -2.07,
              0,
              -0.8999999999999999
            ],
            [
              -1.98,
              0,
              -0.8999999999999999
            ],
            [
              -1.89,
              0,
              -0.8999999999999999
            ],
            [
              -1.7999999999999998,
              0,
              -0.8999999999999999
            ],
            [
              -1.71,
              0,
              -0.8999999999999999
            ],
            [
              -1.6199999999999999,
              0,
              -0.8999999999999999
            ],
            [
              -1.53,
              0,
              -0.8999999999999999
            ],
            [
              -1.44,
              0,
              -0.8999999999999999
            ],
            [
              -1.3499999999999999,
              0,
              -0.8999999999999999
            ],
            [
              -1.26,
              0,
              -0.8999999999999999
            ],
            [
              -1.17,
              0,
              -0.8999999999999999
            ],
            [
              -1.08,
              0,
              -0.8999999999999999
            ],
            [
              -0.99,
              0,
              -0.8999999999999999
            ],
            [
              -0.8999999999999999,
              0,
              -0.8999999999999999
            ],
            [
              -0.8099999999999999,
              0,
              -0.8999999999999999
            ],
            [
              -0.72,
              0,
              -0.8999999999999999
            ],
            [
              -0.63,
              0,
              -0.8999999999999999
            ],
            [
              -0.54,
              0,
              -0.8999999999999999
            ],
            [
              -0.44999999999999996,
              0,
              -0.8999999999999999
            ],
            [
              -0.36,
              0,
              -0.8999999999999999
            ],
            [
              -0.27,
              0,
              -0.8999999999999999
            ],
            [
              -0.18,
              0,
              -0.8999999999999999
            ],
            [
              -0.09,
              0,
              -0.8999999999999999
            ],
            [
              0,
              0,
              -0.8999999999999999
            ],
            [
              0.09,
              0,
              -0.8999999999999999
            ],
            [
              0.18,
              0,
              -0.8999999999999999
            ],
            [
              0.27,
              0,
              -0.8999999999999999
            ],
            [
              0.36,
              0,
              -0.8999999999999999
            ],
            [
              0.44999999999999996,
              0,
              -0.8999999999999999
            ],
            [
              0.54,
              0,
              -0.8999999999999999
            ],
            [
              0.63,
              0,
              -0.8999999999999999
            ],
            [
              0.72,
              0,
              -0.8999999999999999
            ],
            [
              0.8099999999999999,
              0,
              -0.8999999999999999
            ],
            [
              0.8999999999999999,
              0,
              -0.8999999999999999
            ],
            [
              0.99,
              0,
              -0.8999999999999999
            ],
            [
              1.08,
              0,
              -0.8999999999999999
            ],
            [
              1.17,
              0,
              -0.8999999999999999
            ],
            [
              1.26,
              0,
              -0.8999999999999999
            ],
            [
              1.3499999999999999,
              0,
              -0.8999999999999999
            ],
            [
              1.44,
              0,
              -0.8999999999999999
            ],
            [
              1.53,
              0,
              -0.8999999999999999
            ],
            [
              1.6199999999999999,
              0,
              -0.8999999999999999
            ],
            [
              1.71,
              0,
              -0.8999999999999999
            ],
            [
              1.7999999999999998,
              0,
              -0.8999999999999999
            ],
            [
              1.89,
              0,
              -0.8999999999999999
            ],
            [
              1.98,
              0,
              -0.8999999999999999
            ],
            [
              2.07,
              0,
              -0.8999999999999999
            ],
            [
              2.16,
              0,
              -0.8999999999999999
            ],
            [
              2.25,
              0,
              -0.8999999999999999
            ],
            [
              2.34,
              0,
              -0.8999999999999999
            ],
            [
              2.4299999999999997,
              0,
              -0.8999999999999999
            ],
            [
              2.52,
              0,
              -0.8999999999999999
            ],
            [
              2.61,
              0,
              -0.8999999999999999
            ],
            [
              2.6999999999999997,
              0,
              -0.8999999999999999
            ],
            [
              2.79,
              0,
              -0.8999999999999999
            ],
            [
              2.88,
              0,
              -0.8999999999999999
            ],
            [
              2.9699999999999998,
              0,
              -0.8999999999999999
            ],
            [
              3.06,
              0,
              -0.8999999999999999
            ],
            [
              3.15,
              0,
              -0.8999999999999999
            ],
            [
              3.2399999999999998,
              0,
              -0.8999999999999999
            ],
            [
              3.33,
              0,
              -0.8999999999999999
            ],
            [
              3.42,
              0,
              -0.8999999999999999
            ],
            [
              3.51,
              0,
              -0.8999999999999999
            ],
            [
              3.5999999999999996,
              0,
              -0.8999999999999999
            ],
            [
              3.69,
              0,
              -0.8999999999999999
            ],
            [
              3.78,
              0,
              -0.8999999999999999
            ],
            [
              3.8699999999999997,
              0,
              -0.8999999999999999
            ],
            [
              3.96,
              0,
              -0.8999999999999999
            ],
            [
              4.05,
              0,
              -0.8999999999999999
            ],
            [
              4.14,
              0,
              -0.8999999999999999
            ],
            [
              4.2299999999999995,
              0,
              -0.8999999999999999
            ],
            [
              4.32,
              0,
              -0.8999999999999999
            ],
            [
              4.41,
              0,
              -0.8999999999999999
            ],
            [
              4.5,
              0,
              -0.8999999999999999
            ],
            [
              4.59,
              0,
              -0.8999999999999999
            ],
            [
              4.68,
              0,
              -0.8999999999999999
            ],
            [
              4.77,
              0,
              -0.8999999999999999
            ],
            [
              4.859999999999999,
              0,
              -0.8999999999999999
            ],
            [
              4.95,
              0,
              -0.8999999999999999
            ],
            [
              5.04,
              0,
              -0.8999999999999999
            ],
            [
              5.13,
              0,
              -0.8999999999999999
            ],
            [
              5.22,
              0,
              -0.8999999999999999
            ],
            [
              5.31,
              0,
              -0.8999999999999999
            ],
            [
              5.3999999999999995,
              0,
              -0.8999999999999999
            ],
            [
              -5.3999999999999995,
              0,
              -1.7999999999999998
            ],
            [
              -5.31,
              0,
              -1.7999999999999998
            ],
            [
              -5.22,
              0,
              -1.7999999999999998
            ],
            [
              -5.13,
              0,
              -1.7999999999999998
            ],
            [
              -5.04,
              0,
              -1.7999999999999998
            ],
            [
              -4.95,
              0,
              -1.7999999999999998
            ],
            [
              -4.859999999999999,
              0,
              -1.7999999999999998
            ],
            [
              -4.77,
              0,
              -1.7999999999999998
            ],
            [
              -4.68,
              0,
              -1.7999999999999998
            ],
            [
              -4.59,
              0,
              -1.7999999999999998
            ],
            [
              -4.5,
              0,
              -1.7999999999999998
            ],
            [
              -4.41,
              0,
              -1.7999999999999998
            ],
            [
              -4.32,
              0,
              -1.7999999999999998
            ],
            [
              -4.2299999999999995,
              0,
              -1.7999999999999998
            ],
            [
              -4.14,
              0,
              -1.7999999999999998
            ],
            [
              -4.05,
              0,
              -1.7999999999999998
            ],
            [
              -3.96,
              0,
              -1.7999999999999998
            ],
            [
              -3.8699999999999997,
              0,
              -1.7999999999999998
            ],
            [
              -3.78,
              0,
              -1.7999999999999998
            ],
            [
              -3.69,
              0,
              -1.7999999999999998
            ],
            [
              -3.5999999999999996,
              0,
              -1.7999999999999998
            ],
            [
              -3.51,
              0,
              -1.7999999999999998
            ],
            [
              -3.42,
              0,
              -1.7999999999999998
            ],
            [
              -3.33,
              0,
              -1.7999999999999998
            ],
            [
              -3.2399999999999998,
              0,
              -1.7999999999999998
            ],
            [
              -3.15,
              0,
              -1.7999999999999998
            ],
            [
              -3.06,
              0,
              -1.7999999999999998
            ],
            [
              -2.9699999999999998,
              0,
              -1.7999999999999998
            ],
            [
              -2.88,
              0,
              -1.7999999999999998
            ],
            [
              -2.79,
              0,
              -1.7999999999999998
            ],
            [
              -2.6999999999999997,
              0,
              -1.7999999999999998
            ],
            [
              -2.61,
              0,
              -1.7999999999999998
            ],
            [
              -2.52,
              0,
              -1.7999999999999998
            ],
            [
              -2.4299999999999997,
              0,
              -1.7999999999999998
            ],
            [
              -2.34,
              0,
              -1.7999999999999998
            ],
            [
              -2.25,
              0,
              -1.7999999999999998
            ],
            [
              -2.16,
              0,
              -1.7999999999999998
            ],
            [
              -2.07,
              0,
              -1.7999999999999998
            ],
            [
              -1.98,
              0,
              -1.7999999999999998
            ],
            [
              -1.89,
              0,
              -1.7999999999999998
            ],
            [
              -1.7999999999999998,
              0,
              -1.7999999999999998
            ],
            [
              -1.71,
              0,
              -1.7999999999999998
            ],
            [
              -1.6199999999999999,
              0,
              -1.7999999999999998
            ],
            [
              -1.53,
              0,
              -1.7999999999999998
            ],
            [
              -1.44,
              0,
              -1.7999999999999998
            ],
            [
              -1.3499999999999999,
              0,
              -1.7999999999999998
            ],
            [
              -1.26,
              0,
              -1.7999999999999998
            ],
            [
              -1.17,
              0,
              -1.7999999999999998
            ],
            [
              -1.08,
              0,
              -1.7999999999999998
            ],
            [
              -0.99,
              0,
              -1.7999999999999998
            ],
            [
              -0.8999999999999999,
              0,
              -1.7999999999999998
            ],
            [
              -0.8099999999999999,
              0,
              -1.7999999999999998
            ],
            [
              -0.72,
              0,
              -1.7999999999999998
            ],
            [
              -0.63,
              0,
              -1.7999999999999998
            ],
            [
              -0.54,
              0,
              -1.7999999999999998
            ],
            [
              -0.44999999999999996,
              0,
              -1.7999999999999998
            ],
            [
              -0.36,
              0,
              -1.7999999999999998
            ],
            [
              -0.27,
              0,
              -1.7999999999999998
            ],
            [
              -0.18,
              0,
              -1.7999999999999998
            ],
            [
              -0.09,
              0,
              -1.7999999999999998
            ],
            [
              0,
              0,
              -1.7999999999999998
            ],
            [
              0.09,
              0,
              -1.7999999999999998
            ],
            [
              0.18,
              0,
              -1.7999999999999998
            ],
            [
              0.27,
              0,
              -1.7999999999999998
            ],
            [
              0.36,
              0,
              -1.7999999999999998
            ],
            [
              0.44999999999999996,
              0,
              -1.7999999999999998
            ],
            [
              0.54,
              0,
              -1.7999999999999998
            ],
            [
              0.63,
              0,
              -1.7999999999999998
            ],
            [
              0.72,
              0,
              -1.7999999999999998
            ],
            [
              0.8099999999999999,
              0,
              -1.7999999999999998
            ],
            [
              0.8999999999999999,
              0,
              -1.7999999999999998
            ],
            [
              0.99,
              0,
              -1.7999999999999998
            ],
            [
              1.08,
              0,
              -1.7999999999999998
            ],
            [
              1.17,
              0,
              -1.7999999999999998
            ],
            [
              1.26,
              0,
              -1.7999999999999998
            ],
            [
              1.3499999999999999,
              0,
              -1.7999999999999998
            ],
            [
              1.44,
              0,
              -1.7999999999999998
            ],
            [
              1.53,
              0,
              -1.7999999999999998
            ],
            [
              1.6199999999999999,
              0,
              -1.7999999999999998
            ],
            [
              1.71,
              0,
              -1.7999999999999998
            ],
            [
              1.7999999999999998,
              0,
              -1.7999999999999998
            ],
            [
              1.89,
              0,
              -1.7999999999999998
            ],
            [
              1.98,
              0,
              -1.7999999999999998
            ],
            [
              2.07,
              0,
              -1.7999999999999998
            ],
            [
              2.16,
              0,
              -1.7999999999999998
            ],
            [
              2.25,
              0,
              -1.7999999999999998
            ],
            [
              2.34,
              0,
              -1.7999999999999998
            ],
            [
              2.4299999999999997,
              0,
              -1.7999999999999998
            ],
            [
              2.52,
              0,
              -1.7999999999999998
            ],
            [
              2.61,
              0,
              -1.7999999999999998
            ],
            [
              2.6999999999999997,
              0,
              -1.7999999999999998
            ],
            [
              2.79,
              0,
              -1.7999999999999998
            ],
            [
              2.88,
              0,
              -1.7999999999999998
            ],
            [
              2.9699999999999998,
              0,
              -1.7999999999999998
            ],
            [
              3.06,
              0,
              -1.7999999999999998
            ],
            [
              3.15,
              0,
              -1.7999999999999998
            ],
            [
              3.2399999999999998,
              0,
              -1.7999999999999998
            ],
            [
              3.33,
              0,
              -1.7999999999999998
            ],
            [
              3.42,
              0,
              -1.7999999999999998
            ],
            [
              3.51,
              0,
              -1.7999999999999998
            ],
            [
              3.5999999999999996,
              0,
              -1.7999999999999998
            ],
            [
              3.69,
              0,
              -1.7999999999999998
            ],
            [
              3.78,
              0,
              -1.7999999999999998
            ],
            [
              3.8699999999999997,
              0,
              -1.7999999999999998
            ],
            [
              3.96,
              0,
              -1.7999999999999998
            ],
            [
              4.05,
              0,
              -1.7999999999999998
            ],
            [
              4.14,
              0,
              -1.7999999999999998
            ],
            [
              4.2299999999999995,
              0,
              -1.7999999999999998
            ],
            [
              4.32,
              0,
              -1.7999999999999998
            ],
            [
              4.41,
              0,
              -1.7999999999999998
            ],
            [
              4.5,
              0,
              -1.7999999999999998
            ],
            [
              4.59,
              0,
              -1.7999999999999998
            ],
            [
              4.68,
              0,
              -1.7999999999999998
            ],
            [
              4.77,
              0,
              -1.7999999999999998
            ],
            [
              4.859999999999999,
              0,
              -1.7999999999999998
            ],
            [
              4.95,
              0,
              -1.7999999999999998
            ],
            [
              5.04,
              0,
              -1.7999999999999998
            ],
            [
              5.13,
              0,
              -1.7999999999999998
            ],
            [
              5.22,
              0,
              -1.7999999999999998
            ],
            [
              5.31,
              0,
              -1.7999999999999998
            ],
            [
              5.3999999999999995,
              0,
              -1.7999999999999998
            ],
            [
              -5.3999999999999995,
              0,
              -2.6999999999999997
            ],
            [
              -5.31,
              0,
              -2.6999999999999997
            ],
            [
              -5.22,
              0,
              -2.6999999999999997
            ],
            [
              -5.13,
              0,
              -2.6999999999999997
            ],
            [
              -5.04,
              0,
              -2.6999999999999997
            ],
            [
              -4.95,
              0,
              -2.6999999999999997
            ],
            [
              -4.859999999999999,
              0,
              -2.6999999999999997
            ],
            [
              -4.77,
              0,
              -2.6999999999999997
            ],
            [
              -4.68,
              0,
              -2.6999999999999997
            ],
            [
              -4.59,
              0,
              -2.6999999999999997
            ],
            [
              -4.5,
              0,
              -2.6999999999999997
            ],
            [
              -4.41,
              0,
              -2.6999999999999997
            ],
            [
              -4.32,
              0,
              -2.6999999999999997
            ],
            [
              -4.2299999999999995,
              0,
              -2.6999999999999997
            ],
            [
              -4.14,
              0,
              -2.6999999999999997
            ],
            [
              -4.05,
              0,
              -2.6999999999999997
            ],
            [
              -3.96,
              0,
              -2.6999999999999997
            ],
            [
              -3.8699999999999997,
              0,
              -2.6999999999999997
            ],
            [
              -3.78,
              0,
              -2.6999999999999997
            ],
            [
              -3.69,
              0,
              -2.6999999999999997
            ],
            [
              -3.5999999999999996,
              0,
              -2.6999999999999997
            ],
            [
              -3.51,
              0,
              -2.6999999999999997
            ],
            [
              -3.42,
              0,
              -2.6999999999999997
            ],
            [
              -3.33,
              0,
              -2.6999999999999997
            ],
            [
              -3.2399999999999998,
              0,
              -2.6999999999999997
            ],
            [
              -3.15,
              0,
              -2.6999999999999997
            ],
            [
              -3.06,
              0,
              -2.6999999999999997
            ],
            [
              -2.9699999999999998,
              0,
              -2.6999999999999997
            ],
            [
              -2.88,
              0,
              -2.6999999999999997
            ],
            [
              -2.79,
              0,
              -2.6999999999999997
            ],
            [
              -2.6999999999999997,
              0,
              -2.6999999999999997
            ],
            [
              -2.61,
              0,
              -2.6999999999999997
            ],
            [
              -2.52,
              0,
              -2.6999999999999997
            ],
            [
              -2.4299999999999997,
              0,
              -2.6999999999999997
            ],
            [
              -2.34,
              0,
              -2.6999999999999997
            ],
            [
              -2.25,
              0,
              -2.6999999999999997
            ],
            [
              -2.16,
              0,
              -2.6999999999999997
            ],
            [
              -2.07,
              0,
              -2.6999999999999997
            ],
            [
              -1.98,
              0,
              -2.6999999999999997
            ],
            [
              -1.89,
              0,
              -2.6999999999999997
            ],
            [
              -1.7999999999999998,
              0,
              -2.6999999999999997
            ],
            [
              -1.71,
              0,
              -2.6999999999999997
            ],
            [
              -1.6199999999999999,
              0,
              -2.6999999999999997
            ],
            [
              -1.53,
              0,
              -2.6999999999999997
            ],
            [
              -1.44,
              0,
              -2.6999999999999997
            ],
            [
              -1.3499999999999999,
              0,
              -2.6999999999999997
            ],
            [
              -1.26,
              0,
              -2.6999999999999997
            ],
            [
              -1.17,
              0,
              -2.6999999999999997
            ],
            [
              -1.08,
              0,
              -2.6999999999999997
            ],
            [
              -0.99,
              0,
              -2.6999999999999997
            ],
            [
              -0.8999999999999999,
              0,
              -2.6999999999999997
            ],
            [
              -0.8099999999999999,
              0,
              -2.6999999999999997
            ],
            [
              -0.72,
              0,
              -2.6999999999999997
            ],
            [
              -0.63,
              0,
              -2.6999999999999997
            ],
            [
              -0.54,
              0,
              -2.6999999999999997
            ],
            [
              -0.44999999999999996,
              0,
              -2.6999999999999997
            ],
            [
              -0.36,
              0,
              -2.6999999999999997
            ],
            [
              -0.27,
              0,
              -2.6999999999999997
            ],
            [
              -0.18,
              0,
              -2.6999999999999997
            ],
            [
              -0.09,
              0,
              -2.6999999999999997
            ],
            [
              0,
              0,
              -2.6999999999999997
            ],
            [
              0.09,
              0,
              -2.6999999999999997
            ],
            [
              0.18,
              0,
              -2.6999999999999997
            ],
            [
              0.27,
              0,
              -2.6999999999999997
            ],
            [
              0.36,
              0,
              -2.6999999999999997
            ],
            [
              0.44999999999999996,
              0,
              -2.6999999999999997
            ],
            [
              0.54,
              0,
              -2.6999999999999997
            ],
            [
              0.63,
              0,
              -2.6999999999999997
            ],
            [
              0.72,
              0,
              -2.6999999999999997
            ],
            [
              0.8099999999999999,
              0,
              -2.6999999999999997
            ],
            [
              0.8999999999999999,
              0,
              -2.6999999999999997
            ],
            [
              0.99,
              0,
              -2.6999999999999997
            ],
            [
              1.08,
              0,
              -2.6999999999999997
            ],
            [
              1.17,
              0,
              -2.6999999999999997
            ],
            [
              1.26,
              0,
              -2.6999999999999997
            ],
            [
              1.3499999999999999,
              0,
              -2.6999999999999997
            ],
            [
              1.44,
              0,
              -2.6999999999999997
            ],
            [
              1.53,
              0,
              -2.6999999999999997
            ],
            [
              1.6199999999999999,
              0,
              -2.6999999999999997
            ],
            [
              1.71,
              0,
              -2.6999999999999997
            ],
            [
              1.7999999999999998,
              0,
              -2.6999999999999997
            ],
            [
              1.89,
              0,
              -2.6999999999999997
            ],
            [
              1.98,
              0,
              -2.6999999999999997
            ],
            [
              2.07,
              0,
              -2.6999999999999997
            ],
            [
              2.16,
              0,
              -2.6999999999999997
            ],
            [
              2.25,
              0,
              -2.6999999999999997
            ],
            [
              2.34,
              0,
              -2.6999999999999997
            ],
            [
              2.4299999999999997,
              0,
              -2.6999999999999997
            ],
            [
              2.52,
              0,
              -2.6999999999999997
            ],
            [
              2.61,
              0,
              -2.6999999999999997
            ],
            [
              2.6999999999999997,
              0,
              -2.6999999999999997
            ],
            [
              2.79,
              0,
              -2.6999999999999997
            ],
            [
              2.88,
              0,
              -2.6999999999999997
            ],
            [
              2.9699999999999998,
              0,
              -2.6999999999999997
            ],
            [
              3.06,
              0,
              -2.6999999999999997
            ],
            [
              3.15,
              0,
              -2.6999999999999997
            ],
            [
              3.2399999999999998,
              0,
              -2.6999999999999997
            ],
            [
              3.33,
              0,
              -2.6999999999999997
            ],
            [
              3.42,
              0,
              -2.6999999999999997
            ],
            [
              3.51,
              0,
              -2.6999999999999997
            ],
            [
              3.5999999999999996,
              0,
              -2.6999999999999997
            ],
            [
              3.69,
              0,
              -2.6999999999999997
            ],
            [
              3.78,
              0,
              -2.6999999999999997
            ],
            [
              3.8699999999999997,
              0,
              -2.6999999999999997
            ],
            [
              3.96,
              0,
              -2.6999999999999997
            ],
            [
              4.05,
              0,
              -2.6999999999999997
            ],
            [
              4.14,
              0,
              -2.6999999999999997
            ],
            [
              4.2299999999999995,
              0,
              -2.6999999999999997
            ],
            [
              4.32,
              0,
              -2.6999999999999997
            ],
            [
              4.41,
              0,
              -2.6999999999999997
            ],
            [
              4.5,
              0,
              -2.6999999999999997
            ],
            [
              4.59,
              0,
              -2.6999999999999997
            ],
            [
              4.68,
              0,
              -2.6999999999999997
            ],
            [
              4.77,
              0,
              -2.6999999999999997
            ],
            [
              4.859999999999999,
              0,
              -2.6999999999999997
            ],
            [
              4.95,
              0,
              -2.6999999999999997
            ],
            [
              5.04,
              0,
              -2.6999999999999997
            ],
            [
              5.13,
              0,
              -2.6999999999999997
            ],
            [
              5.22,
              0,
              -2.6999999999999997
            ],
            [
              5.31,
              0,
              -2.6999999999999997
            ],
            [
              5.3999999999999995,
              0,
              -2.6999999999999997
            ],
            [
              -5.3999999999999995,
              -1.6,
              2.7
            ],
            [
              -5.22,
              -1.6,
              2.7
            ],
            [
              -5.04,
              -1.6,
              2.7
            ],
            [
              -4.859999999999999,
              -1.6,
              2.7
            ],
            [
              -4.68,
              -1.6,
              2.7
            ],
            [
              -4.5,
              -1.6,
              2.7
            ],
            [
              -4.32,
              -1.6,
              2.7
            ],
            [
              -4.14,
              -1.6,
              2.7
            ],
            [
              -3.96,
              -1.6,
              2.7
            ],
            [
              -3.78,
              -1.6,
              2.7
            ],
            [
              -3.5999999999999996,
              -1.6,
              2.7
            ],
            [
              -3.42,
              -1.6,
              2.7
            ],
            [
              -3.2399999999999998,
              -1.6,
              2.7
            ],
            [
              -3.06,
              -1.6,
              2.7
            ],
            [
              -2.88,
              -1.6,
              2.7
            ],
            [
              -2.6999999999999997,
              -1.6,
              2.7
            ],
            [
              -2.52,
              -1.6,
              2.7
            ],
            [
              -2.34,
              -1.6,
              2.7
            ],
            [
              -2.16,
              -1.6,
              2.7
            ],
            [
              -1.98,
              -1.6,
              2.7
            ],
            [
              -1.7999999999999998,
              -1.6,
              2.7
            ],
            [
              -1.6199999999999999,
              -1.6,
              2.7
            ],
            [
              -1.44,
              -1.6,
              2.7
            ],
            [
              -1.26,
              -1.6,
              2.7
            ],
            [
              -1.08,
              -1.6,
              2.7
            ],
            [
              -0.8999999999999999,
              -1.6,
              2.7
            ],
            [
              -0.72,
              -1.6,
              2.7
            ],
            [
              -0.54,
              -1.6,
              2.7
            ],
            [
              -0.36,
              -1.6,
              2.7
            ],
            [
              -0.18,
              -1.6,
              2.7
            ],
            [
              0,
              -1.6,
              2.7
            ],
            [
              0.18,
              -1.6,
              2.7
            ],
            [
              0.36,
              -1.6,
              2.7
            ],
            [
              0.54,
              -1.6,
              2.7
            ],
            [
              0.72,
              -1.6,
              2.7
            ],
            [
              0.8999999999999999,
              -1.6,
              2.7
            ],
            [
              1.08,
              -1.6,
              2.7
            ],
            [
              1.26,
              -1.6,
              2.7
            ],
            [
              1.44,
              -1.6,
              2.7
            ],
            [
              1.6199999999999999,
              -1.6,
              2.7
            ],
            [
              1.7999999999999998,
              -1.6,
              2.7
            ],
            [
              1.98,
              -1.6,
              2.7
            ],
            [
              2.16,
              -1.6,
              2.7
            ],
            [
              2.34,
              -1.6,
              2.7
            ],
            [
              2.52,
              -1.6,
              2.7
            ],
            [
              2.6999999999999997,
              -1.6,
              2.7
            ],
            [
              2.88,
              -1.6,
              2.7
            ],
            [
              3.06,
              -1.6,
              2.7
            ],
            [
              3.2399999999999998,
              -1.6,
              2.7
            ],
            [
              3.42,
              -1.6,
              2.7
            ],
            [
              3.5999999999999996,
              -1.6,
              2.7
            ],
            [
              3.78,
              -1.6,
              2.7
            ],
            [
              3.96,
              -1.6,
              2.7
            ],
            [
              4.14,
              -1.6,
              2.7
            ],
            [
              4.32,
              -1.6,
              2.7
            ],
            [
              4.5,
              -1.6,
              2.7
            ],
            [
              4.68,
              -1.6,
              2.7
            ],
            [
              4.859999999999999,
              -1.6,
              2.7
            ],
            [
              5.04,
              -1.6,
              2.7
            ],
            [
              5.22,
              -1.6,
              2.7
            ],
            [
              5.3999999999999995,
              -1.6,
              2.7
            ],
            [
              -5.3999999999999995,
              -3.2,
              2.7
            ],
            [
              -5.22,
              -3.2,
              2.7
            ],
            [
              -5.04,
              -3.2,
              2.7
            ],
            [
              -4.859999999999999,
              -3.2,
              2.7
            ],
            [
              -4.68,
              -3.2,
              2.7
            ],
            [
              -4.5,
              -3.2,
              2.7
            ],
            [
              -4.32,
              -3.2,
              2.7
            ],
            [
              -4.14,
              -3.2,
              2.7
            ],
            [
              -3.96,
              -3.2,
              2.7
            ],
            [
              -3.78,
              -3.2,
              2.7
            ],
            [
              -3.5999999999999996,
              -3.2,
              2.7
            ],
            [
              -3.42,
              -3.2,
              2.7
            ],
            [
              -3.2399999999999998,
              -3.2,
              2.7
            ],
            [
              -3.06,
              -3.2,
              2.7
            ],
            [
              -2.88,
              -3.2,
              2.7
            ],
            [
              -2.6999999999999997,
              -3.2,
              2.7
            ],
            [
              -2.52,
              -3.2,
              2.7
            ],
            [
              -2.34,
              -3.2,
              2.7
            ],
            [
              -2.16,
              -3.2,
              2.7
            ],
            [
              -1.98,
              -3.2,
              2.7
            ],
            [
              -1.7999999999999998,
              -3.2,
              2.7
            ],
            [
              -1.6199999999999999,
              -3.2,
              2.7
            ],
            [
              -1.44,
              -3.2,
              2.7
            ],
            [
              -1.26,
              -3.2,
              2.7
            ],
            [
              -1.08,
              -3.2,
              2.7
            ],
            [
              -0.8999999999999999,
              -3.2,
              2.7
            ],
            [
              -0.72,
              -3.2,
              2.7
            ],
            [
              -0.54,
              -3.2,
              2.7
            ],
            [
              -0.36,
              -3.2,
              2.7
            ],
            [
              -0.18,
              -3.2,
              2.7
            ],
            [
              0,
              -3.2,
              2.7
            ],
            [
              0.18,
              -3.2,
              2.7
            ],
            [
              0.36,
              -3.2,
              2.7
            ],
            [
              0.54,
              -3.2,
              2.7
            ],
            [
              0.72,
              -3.2,
              2.7
            ],
            [
              0.8999999999999999,
              -3.2,
              2.7
            ],
            [
              1.08,
              -3.2,
              2.7
            ],
            [
              1.26,
              -3.2,
              2.7
            ],
            [
              1.44,
              -3.2,
              2.7
            ],
            [
              1.6199999999999999,
              -3.2,
              2.7
            ],
            [
              1.7999999999999998,
              -3.2,
              2.7
            ],
            [
              1.98,
              -3.2,
              2.7
            ],
            [
              2.16,
              -3.2,
              2.7
            ],
            [
              2.34,
              -3.2,
              2.7
            ],
            [
              2.52,
              -3.2,
              2.7
            ],
            [
              2.6999999999999997,
              -3.2,
              2.7
            ],
            [
              2.88,
              -3.2,
              2.7
            ],
            [
              3.06,
              -3.2,
              2.7
            ],
            [
              3.2399999999999998,
              -3.2,
              2.7
            ],
            [
              3.42,
              -3.2,
              2.7
            ],
            [
              3.5999999999999996,
              -3.2,
              2.7
            ],
            [
              3.78,
              -3.2,
              2.7
            ],
            [
              3.96,
              -3.2,
              2.7
            ],
            [
              4.14,
              -3.2,
              2.7
            ],
            [
              4.32,
              -3.2,
              2.7
            ],
            [
              4.5,
              -3.2,
              2.7
            ],
            [
              4.68,
              -3.2,
              2.7
            ],
            [
              4.859999999999999,
              -3.2,
              2.7
            ],
            [
              5.04,
              -3.2,
              2.7
            ],
            [
              5.22,
              -3.2,
              2.7
            ],
            [
              5.3999999999999995,
              -3.2,
              2.7
            ],
            [
              -5.3999999999999995,
              -4.8,
              2.7
            ],
            [
              -5.22,
              -4.8,
              2.7
            ],
            [
              -5.04,
              -4.8,
              2.7
            ],
            [
              -4.859999999999999,
              -4.8,
              2.7
            ],
            [
              -4.68,
              -4.8,
              2.7
            ],
            [
              -4.5,
              -4.8,
              2.7
            ],
            [
              -4.32,
              -4.8,
              2.7
            ],
            [
              -4.14,
              -4.8,
              2.7
            ],
            [
              -3.96,
              -4.8,
              2.7
            ],
            [
              -3.78,
              -4.8,
              2.7
            ],
            [
              -3.5999999999999996,
              -4.8,
              2.7
            ],
            [
              -3.42,
              -4.8,
              2.7
            ],
            [
              -3.2399999999999998,
              -4.8,
              2.7
            ],
            [
              -3.06,
              -4.8,
              2.7
            ],
            [
              -2.88,
              -4.8,
              2.7
            ],
            [
              -2.6999999999999997,
              -4.8,
              2.7
            ],
            [
              -2.52,
              -4.8,
              2.7
            ],
            [
              -2.34,
              -4.8,
              2.7
            ],
            [
              -2.16,
              -4.8,
              2.7
            ],
            [
              -1.98,
              -4.8,
              2.7
            ],
            [
              -1.7999999999999998,
              -4.8,
              2.7
            ],
            [
              -1.6199999999999999,
              -4.8,
              2.7
            ],
            [
              -1.44,
              -4.8,
              2.7
            ],
            [
              -1.26,
              -4.8,
              2.7
            ],
            [
              -1.08,
              -4.8,
              2.7
            ],
            [
              -0.8999999999999999,
              -4.8,
              2.7
            ],
            [
              -0.72,
              -4.8,
              2.7
            ],
            [
              -0.54,
              -4.8,
              2.7
            ],
            [
              -0.36,
              -4.8,
              2.7
            ],
            [
              -0.18,
              -4.8,
              2.7
            ],
            [
              0,
              -4.8,
              2.7
            ],
            [
              0.18,
              -4.8,
              2.7
            ],
            [
              0.36,
              -4.8,
              2.7
            ],
            [
              0.54,
              -4.8,
              2.7
            ],
            [
              0.72,
              -4.8,
              2.7
            ],
            [
              0.8999999999999999,
              -4.8,
              2.7
            ],
            [
              1.08,
              -4.8,
              2.7
            ],
            [
              1.26,
              -4.8,
              2.7
            ],
            [
              1.44,
              -4.8,
              2.7
            ],
            [
              1.6199999999999999,
              -4.8,
              2.7
            ],
            [
              1.7999999999999998,
              -4.8,
              2.7
            ],
            [
              1.98,
              -4.8,
              2.7
            ],
            [
              2.16,
              -4.8,
              2.7
            ],
            [
              2.34,
              -4.8,
              2.7
            ],
            [
              2.52,
              -4.8,
              2.7
            ],
            [
              2.6999999999999997,
              -4.8,
              2.7
            ],
            [
              2.88,
              -4.8,
              2.7
            ],
            [
              3.06,
              -4.8,
              2.7
            ],
            [
              3.2399999999999998,
              -4.8,
              2.7
            ],
            [
              3.42,
              -4.8,
              2.7
            ],
            [
              3.5999999999999996,
              -4.8,
              2.7
            ],
            [
              3.78,
              -4.8,
              2.7
            ],
            [
              3.96,
              -4.8,
              2.7
            ],
            [
              4.14,
              -4.8,
              2.7
            ],
            [
              4.32,
              -4.8,
              2.7
            ],
            [
              4.5,
              -4.8,
              2.7
            ],
            [
              4.68,
              -4.8,
              2.7
            ],
            [
              4.859999999999999,
              -4.8,
              2.7
            ],
            [
              5.04,
              -4.8,
              2.7
            ],
            [
              5.22,
              -4.8,
              2.7
            ],
            [
              5.3999999999999995,
              -4.8,
              2.7
            ],
            [
              -5.3999999999999995,
              -6.4,
              2.7
            ],
            [
              -5.22,
              -6.4,
              2.7
            ],
            [
              -5.04,
              -6.4,
              2.7
            ],
            [
              -4.859999999999999,
              -6.4,
              2.7
            ],
            [
              -4.68,
              -6.4,
              2.7
            ],
            [
              -4.5,
              -6.4,
              2.7
            ],
            [
              -4.32,
              -6.4,
              2.7
            ],
            [
              -4.14,
              -6.4,
              2.7
            ],
            [
              -3.96,
              -6.4,
              2.7
            ],
            [
              -3.78,
              -6.4,
              2.7
            ],
            [
              -3.5999999999999996,
              -6.4,
              2.7
            ],
            [
              -3.42,
              -6.4,
              2.7
            ],
            [
              -3.2399999999999998,
              -6.4,
              2.7
            ],
            [
              -3.06,
              -6.4,
              2.7
            ],
            [
              -2.88,
              -6.4,
              2.7
            ],
            [
              -2.6999999999999997,
              -6.4,
              2.7
            ],
            [
              -2.52,
              -6.4,
              2.7
            ],
            [
              -2.34,
              -6.4,
              2.7
            ],
            [
              -2.16,
              -6.4,
              2.7
            ],
            [
              -1.98,
              -6.4,
              2.7
            ],
            [
              -1.7999999999999998,
              -6.4,
              2.7
            ],
            [
              -1.6199999999999999,
              -6.4,
              2.7
            ],
            [
              -1.44,
              -6.4,
              2.7
            ],
            [
              -1.26,
              -6.4,
              2.7
            ],
            [
              -1.08,
              -6.4,
              2.7
            ],
            [
              -0.8999999999999999,
              -6.4,
              2.7
            ],
            [
              -0.72,
              -6.4,
              2.7
            ],
            [
              -0.54,
              -6.4,
              2.7
            ],
            [
              -0.36,
              -6.4,
              2.7
            ],
            [
              -0.18,
              -6.4,
              2.7
            ],
            [
              0,
              -6.4,
              2.7
            ],
            [
              0.18,
              -6.4,
              2.7
            ],
            [
              0.36,
              -6.4,
              2.7
            ],
            [
              0.54,
              -6.4,
              2.7
            ],
            [
              0.72,
              -6.4,
              2.7
            ],
            [
              0.8999999999999999,
              -6.4,
              2.7
            ],
            [
              1.08,
              -6.4,
              2.7
            ],
            [
              1.26,
              -6.4,
              2.7
            ],
            [
              1.44,
              -6.4,
              2.7
            ],
            [
              1.6199999999999999,
              -6.4,
              2.7
            ],
            [
              1.7999999999999998,
              -6.4,
              2.7
            ],
            [
              1.98,
              -6.4,
              2.7
            ],
            [
              2.16,
              -6.4,
              2.7
            ],
            [
              2.34,
              -6.4,
              2.7
            ],
            [
              2.52,
              -6.4,
              2.7
            ],
            [
              2.6999999999999997,
              -6.4,
              2.7
            ],
            [
              2.88,
              -6.4,
              2.7
            ],
            [
              3.06,
              -6.4,
              2.7
            ],
            [
              3.2399999999999998,
              -6.4,
              2.7
            ],
            [
              3.42,
              -6.4,
              2.7
            ],
            [
              3.5999999999999996,
              -6.4,
              2.7
            ],
            [
              3.78,
              -6.4,
              2.7
            ],
            [
              3.96,
              -6.4,
              2.7
            ],
            [
              4.14,
              -6.4,
              2.7
            ],
            [
              4.32,
              -6.4,
              2.7
            ],
            [
              4.5,
              -6.4,
              2.7
            ],
            [
              4.68,
              -6.4,
              2.7
            ],
            [
              4.859999999999999,
              -6.4,
              2.7
            ],
            [
              5.04,
              -6.4,
              2.7
            ],
            [
              5.22,
              -6.4,
              2.7
            ],
            [
              5.3999999999999995,
              -6.4,
              2.7
            ],
            [
              -5.3999999999999995,
              0,
              2.7
            ],
            [
              -5.3999999999999995,
              -0.16,
              2.7
            ],
            [
              -5.3999999999999995,
              -0.32,
              2.7
            ],
            [
              -5.3999999999999995,
              -0.48,
              2.7
            ],
            [
              -5.3999999999999995,
              -0.64,
              2.7
            ],
            [
              -5.3999999999999995,
              -0.8,
              2.7
            ],
            [
              -5.3999999999999995,
              -0.96,
              2.7
            ],
            [
              -5.3999999999999995,
              -1.12,
              2.7
            ],
            [
              -5.3999999999999995,
              -1.28,
              2.7
            ],
            [
              -5.3999999999999995,
              -1.44,
              2.7
            ],
            [
              -5.3999999999999995,
              -1.6,
              2.7
            ],
            [
              -5.3999999999999995,
              -1.76,
              2.7
            ],
            [
              -5.3999999999999995,
              -1.92,
              2.7
            ],
            [
              -5.3999999999999995,
              -2.08,
              2.7
            ],
            [
              -5.3999999999999995,
              -2.24,
              2.7
            ],
            [
              -5.3999999999999995,
              -2.4,
              2.7
            ],
            [
              -5.3999999999999995,
              -2.56,
              2.7
            ],
            [
              -5.3999999999999995,
              -2.72,
              2.7
            ],
            [
              -5.3999999999999995,
              -2.88,
              2.7
            ],
            [
              -5.3999999999999995,
              -3.04,
              2.7
            ],
            [
              -5.3999999999999995,
              -3.2,
              2.7
            ],
            [
              -5.3999999999999995,
              -3.36,
              2.7
            ],
            [
              -5.3999999999999995,
              -3.52,
              2.7
            ],
            [
              -5.3999999999999995,
              -3.68,
              2.7
            ],
            [
              -5.3999999999999995,
              -3.84,
              2.7
            ],
            [
              -5.3999999999999995,
              -4,
              2.7
            ],
            [
              -5.3999999999999995,
              -4.16,
              2.7
            ],
            [
              -5.3999999999999995,
              -4.32,
              2.7
            ],
            [
              -5.3999999999999995,
              -4.48,
              2.7
            ],
            [
              -5.3999999999999995,
              -4.64,
              2.7
            ],
            [
              -5.3999999999999995,
              -4.8,
              2.7
            ],
            [
              -5.3999999999999995,
              -4.96,
              2.7
            ],
            [
              -5.3999999999999995,
              -5.12,
              2.7
            ],
            [
              -5.3999999999999995,
              -5.28,
              2.7
            ],
            [
              -5.3999999999999995,
              -5.44,
              2.7
            ],
            [
              -5.3999999999999995,
              -5.6000000000000005,
              2.7
            ],
            [
              -5.3999999999999995,
              -5.76,
              2.7
            ],
            [
              -5.3999999999999995,
              -5.92,
              2.7
            ],
            [
              -5.3999999999999995,
              -6.08,
              2.7
            ],
            [
              -5.3999999999999995,
              -6.24,
              2.7
            ],
            [
              -5.3999999999999995,
              -6.4,
              2.7
            ],
            [
              5.3999999999999995,
              0,
              2.7
            ],
            [
              5.3999999999999995,
              -0.16,
              2.7
            ],
            [
              5.3999999999999995,
              -0.32,
              2.7
            ],
            [
              5.3999999999999995,
              -0.48,
              2.7
            ],
            [
              5.3999999999999995,
              -0.64,
              2.7
            ],
            [
              5.3999999999999995,
              -0.8,
              2.7
            ],
            [
              5.3999999999999995,
              -0.96,
              2.7
            ],
            [
              5.3999999999999995,
              -1.12,
              2.7
            ],
            [
              5.3999999999999995,
              -1.28,
              2.7
            ],
            [
              5.3999999999999995,
              -1.44,
              2.7
            ],
            [
              5.3999999999999995,
              -1.6,
              2.7
            ],
            [
              5.3999999999999995,
              -1.76,
              2.7
            ],
            [
              5.3999999999999995,
              -1.92,
              2.7
            ],
            [
              5.3999999999999995,
              -2.08,
              2.7
            ],
            [
              5.3999999999999995,
              -2.24,
              2.7
            ],
            [
              5.3999999999999995,
              -2.4,
              2.7
            ],
            [
              5.3999999999999995,
              -2.56,
              2.7
            ],
            [
              5.3999999999999995,
              -2.72,
              2.7
            ],
            [
              5.3999999999999995,
              -2.88,
              2.7
            ],
            [
              5.3999999999999995,
              -3.04,
              2.7
            ],
            [
              5.3999999999999995,
              -3.2,
              2.7
            ],
            [
              5.3999999999999995,
              -3.36,
              2.7
            ],
            [
              5.3999999999999995,
              -3.52,
              2.7
            ],
            [
              5.3999999999999995,
              -3.68,
              2.7
            ],
            [
              5.3999999999999995,
              -3.84,
              2.7
            ],
            [
              5.3999999999999995,
              -4,
              2.7
            ],
            [
              5.3999999999999995,
              -4.16,
              2.7
            ],
            [
              5.3999999999999995,
              -4.32,
              2.7
            ],
            [
              5.3999999999999995,
              -4.48,
              2.7
            ],
            [
              5.3999999999999995,
              -4.64,
              2.7
            ],
            [
              5.3999999999999995,
              -4.8,
              2.7
            ],
            [
              5.3999999999999995,
              -4.96,
              2.7
            ],
            [
              5.3999999999999995,
              -5.12,
              2.7
            ],
            [
              5.3999999999999995,
              -5.28,
              2.7
            ],
            [
              5.3999999999999995,
              -5.44,
              2.7
            ],
            [
              5.3999999999999995,
              -5.6000000000000005,
              2.7
            ],
            [
              5.3999999999999995,
              -5.76,
              2.7
            ],
            [
              5.3999999999999995,
              -5.92,
              2.7
            ],
            [
              5.3999999999999995,
              -6.08,
              2.7
            ],
            [
              5.3999999999999995,
              -6.24,
              2.7
            ],
            [
              5.3999999999999995,
              -6.4,
              2.7
            ]
          ]
        },
        "exposed_inputs": [],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "geometry"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "grid_material",
        "node_id": "n_scene_material",
        "node_version": "1.0.0",
        "title": "Quiet reference grid",
        "params": {
          "color": "#456373",
          "size": 0.025
        },
        "exposed_inputs": [],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "material"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "grid_object",
        "node_id": "n_scene_object",
        "node_version": "1.0.0",
        "title": "Geographic reference frame",
        "params": {},
        "exposed_inputs": [
          "geometry",
          "material"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "object"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "group",
        "node_id": "n_scene_group",
        "node_version": "1.0.0",
        "title": "Earthquakes + reference grid",
        "params": {},
        "custom_inputs": {
          "small": "json",
          "medium": "json",
          "large": "json",
          "grid": "json"
        },
        "exposed_inputs": [
          "small",
          "medium",
          "large",
          "grid"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "object"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "motion",
        "node_id": "n_scene_transform",
        "node_version": "1.0.0",
        "title": "Optional slow turn / use Play",
        "params": {
          "spin": [
            0,
            0.04,
            0
          ]
        },
        "exposed_inputs": [
          "object"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "object"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "camera",
        "node_id": "n_scene_camera",
        "node_version": "1.0.0",
        "title": "Depth field overview",
        "params": {
          "position": [
            11,
            8,
            14
          ],
          "target": [
            0,
            -1.5,
            0
          ],
          "fov": 45
        },
        "exposed_inputs": [],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "camera"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "compose",
        "node_id": "n_scene_compose",
        "node_version": "1.0.0",
        "title": "Seismic Depth Field",
        "params": {
          "background": "#080f18",
          "duration": 120
        },
        "exposed_inputs": [
          "object",
          "camera"
        ],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "scene"
        ],
        "outputs_visibility_configured": true
      },
      {
        "node_instance_id": "legend",
        "node_id": "n_text_value",
        "node_version": "1.0.0",
        "title": "Legend / projection and limitations",
        "params": {
          "text": "# Seismic Depth Field\n\nUSGS M2.5+ earthquakes from the past seven days. At most 1,000 newest valid events per run.\n\n- **Mint:** M2.5 to <4\n- **Amber:** M4 to <5\n- **Coral:** M5+\n\nEach point is an earthquake. Larger points indicate magnitude bands, not physical rupture size.\n\n**Axes:** x = longitude (east to the right); z = negative latitude (north toward the back); y = negative depth (downward). Surface grid spacing is 30 degrees. The front depth guides are 200, 400, 600 and 800 km below the zero-depth plane.\n\n**Not to scale:** longitude and latitude use 0.03 scene units per degree; depth uses 0.008 units per km, deliberately exaggerated. This is a flat coordinate plot, not a globe or a tectonic model. Events near the date line appear at opposite edges. Negative depths appear above the plane.\n\nDrag to orbit, right-drag to pan, scroll to zoom. Panel settings contain Play/Pause and camera controls. Animation rotates the view; it does not replay earthquakes in time or fetch data.\n\nThe Data Table retains event IDs, locations, magnitudes, depth, timestamps (Unix milliseconds), and USGS links. The metadata output retains the feed generation time and original count. Data refreshes only when you run the graph.\n\n[Source and format](https://earthquake.usgs.gov/earthquakes/feed/v1.0/geojson.php)\n"
        },
        "exposed_inputs": [],
        "inputs_visibility_configured": true,
        "exposed_outputs": [
          "text"
        ],
        "outputs_visibility_configured": true
      }
    ],
    "edges": [
      {
        "source_node_id": "feed",
        "source_output": "json",
        "target_node_id": "features",
        "target_input": "value"
      },
      {
        "source_node_id": "feed",
        "source_output": "json",
        "target_node_id": "metadata",
        "target_input": "value"
      },
      {
        "source_node_id": "features",
        "source_output": "value",
        "target_node_id": "records",
        "target_input": "value"
      },
      {
        "source_node_id": "records",
        "source_output": "items",
        "target_node_id": "valid_longitude_gte",
        "target_input": "items"
      },
      {
        "source_node_id": "valid_longitude_gte",
        "source_output": "items",
        "target_node_id": "valid_longitude_lte",
        "target_input": "items"
      },
      {
        "source_node_id": "valid_longitude_lte",
        "source_output": "items",
        "target_node_id": "valid_latitude_gte",
        "target_input": "items"
      },
      {
        "source_node_id": "valid_latitude_gte",
        "source_output": "items",
        "target_node_id": "valid_latitude_lte",
        "target_input": "items"
      },
      {
        "source_node_id": "valid_latitude_lte",
        "source_output": "items",
        "target_node_id": "valid_depth_km_gte",
        "target_input": "items"
      },
      {
        "source_node_id": "valid_depth_km_gte",
        "source_output": "items",
        "target_node_id": "valid_depth_km_lte",
        "target_input": "items"
      },
      {
        "source_node_id": "valid_depth_km_lte",
        "source_output": "items",
        "target_node_id": "valid_magnitude_gte",
        "target_input": "items"
      },
      {
        "source_node_id": "valid_magnitude_gte",
        "source_output": "items",
        "target_node_id": "valid_magnitude_lte",
        "target_input": "items"
      },
      {
        "source_node_id": "valid_magnitude_lte",
        "source_output": "items",
        "target_node_id": "latest",
        "target_input": "items"
      },
      {
        "source_node_id": "latest",
        "source_output": "items",
        "target_node_id": "sample",
        "target_input": "items"
      },
      {
        "source_node_id": "sample",
        "source_output": "items",
        "target_node_id": "coordinate_x",
        "target_input": "items"
      },
      {
        "source_node_id": "coordinate_x",
        "source_output": "items",
        "target_node_id": "coordinate_y",
        "target_input": "items"
      },
      {
        "source_node_id": "coordinate_y",
        "source_output": "items",
        "target_node_id": "coordinate_z",
        "target_input": "items"
      },
      {
        "source_node_id": "coordinate_z",
        "source_output": "items",
        "target_node_id": "small_min",
        "target_input": "items"
      },
      {
        "source_node_id": "small_min",
        "source_output": "items",
        "target_node_id": "small_rows",
        "target_input": "items"
      },
      {
        "source_node_id": "small_rows",
        "source_output": "items",
        "target_node_id": "small_geometry",
        "target_input": "positions"
      },
      {
        "source_node_id": "small_geometry",
        "source_output": "geometry",
        "target_node_id": "small_object",
        "target_input": "geometry"
      },
      {
        "source_node_id": "small_material",
        "source_output": "material",
        "target_node_id": "small_object",
        "target_input": "material"
      },
      {
        "source_node_id": "coordinate_z",
        "source_output": "items",
        "target_node_id": "medium_min",
        "target_input": "items"
      },
      {
        "source_node_id": "medium_min",
        "source_output": "items",
        "target_node_id": "medium_rows",
        "target_input": "items"
      },
      {
        "source_node_id": "medium_rows",
        "source_output": "items",
        "target_node_id": "medium_geometry",
        "target_input": "positions"
      },
      {
        "source_node_id": "medium_geometry",
        "source_output": "geometry",
        "target_node_id": "medium_object",
        "target_input": "geometry"
      },
      {
        "source_node_id": "medium_material",
        "source_output": "material",
        "target_node_id": "medium_object",
        "target_input": "material"
      },
      {
        "source_node_id": "coordinate_z",
        "source_output": "items",
        "target_node_id": "large_min",
        "target_input": "items"
      },
      {
        "source_node_id": "large_min",
        "source_output": "items",
        "target_node_id": "large_rows",
        "target_input": "items"
      },
      {
        "source_node_id": "large_rows",
        "source_output": "items",
        "target_node_id": "large_geometry",
        "target_input": "positions"
      },
      {
        "source_node_id": "large_geometry",
        "source_output": "geometry",
        "target_node_id": "large_object",
        "target_input": "geometry"
      },
      {
        "source_node_id": "large_material",
        "source_output": "material",
        "target_node_id": "large_object",
        "target_input": "material"
      },
      {
        "source_node_id": "grid",
        "source_output": "geometry",
        "target_node_id": "grid_object",
        "target_input": "geometry"
      },
      {
        "source_node_id": "grid_material",
        "source_output": "material",
        "target_node_id": "grid_object",
        "target_input": "material"
      },
      {
        "source_node_id": "small_object",
        "source_output": "object",
        "target_node_id": "group",
        "target_input": "small"
      },
      {
        "source_node_id": "medium_object",
        "source_output": "object",
        "target_node_id": "group",
        "target_input": "medium"
      },
      {
        "source_node_id": "large_object",
        "source_output": "object",
        "target_node_id": "group",
        "target_input": "large"
      },
      {
        "source_node_id": "grid_object",
        "source_output": "object",
        "target_node_id": "group",
        "target_input": "grid"
      },
      {
        "source_node_id": "group",
        "source_output": "object",
        "target_node_id": "motion",
        "target_input": "object"
      },
      {
        "source_node_id": "motion",
        "source_output": "object",
        "target_node_id": "compose",
        "target_input": "object"
      },
      {
        "source_node_id": "camera",
        "source_output": "camera",
        "target_node_id": "compose",
        "target_input": "camera"
      }
    ],
    "graph_outputs": {
      "scene": {
        "node_instance_id": "compose",
        "output_name": "scene"
      },
      "events": {
        "node_instance_id": "sample",
        "output_name": "items"
      },
      "metadata": {
        "node_instance_id": "metadata",
        "output_name": "value"
      },
      "legend": {
        "node_instance_id": "legend",
        "output_name": "text"
      }
    },
    "metadata": {
      "category": "3d",
      "canvas": {
        "positions": {
          "feed": {
            "x": 0,
            "y": 0
          },
          "features": {
            "x": 260,
            "y": 0
          },
          "metadata": {
            "x": 260,
            "y": -230
          },
          "records": {
            "x": 520,
            "y": 0
          },
          "valid_longitude_gte": {
            "x": 780,
            "y": 0
          },
          "valid_longitude_lte": {
            "x": 780,
            "y": 150
          },
          "valid_latitude_gte": {
            "x": 1040,
            "y": 0
          },
          "valid_latitude_lte": {
            "x": 1040,
            "y": 150
          },
          "valid_depth_km_gte": {
            "x": 1300,
            "y": 0
          },
          "valid_depth_km_lte": {
            "x": 1300,
            "y": 150
          },
          "valid_magnitude_gte": {
            "x": 1560,
            "y": 0
          },
          "valid_magnitude_lte": {
            "x": 1560,
            "y": 150
          },
          "latest": {
            "x": 1820,
            "y": 0
          },
          "sample": {
            "x": 2080,
            "y": 0
          },
          "coordinate_x": {
            "x": 2340,
            "y": 0
          },
          "coordinate_y": {
            "x": 2600,
            "y": 0
          },
          "coordinate_z": {
            "x": 2860,
            "y": 0
          },
          "small_min": {
            "x": 3120,
            "y": 0
          },
          "small_rows": {
            "x": 3380,
            "y": 0
          },
          "small_geometry": {
            "x": 3640,
            "y": 0
          },
          "small_material": {
            "x": 3640,
            "y": 160
          },
          "small_object": {
            "x": 3900,
            "y": 0
          },
          "medium_min": {
            "x": 3120,
            "y": 450
          },
          "medium_rows": {
            "x": 3380,
            "y": 450
          },
          "medium_geometry": {
            "x": 3640,
            "y": 450
          },
          "medium_material": {
            "x": 3640,
            "y": 610
          },
          "medium_object": {
            "x": 3900,
            "y": 450
          },
          "large_min": {
            "x": 3120,
            "y": 900
          },
          "large_rows": {
            "x": 3380,
            "y": 900
          },
          "large_geometry": {
            "x": 3640,
            "y": 900
          },
          "large_material": {
            "x": 3640,
            "y": 1060
          },
          "large_object": {
            "x": 3900,
            "y": 900
          },
          "grid": {
            "x": 3380,
            "y": 1450
          },
          "grid_material": {
            "x": 3380,
            "y": 1650
          },
          "grid_object": {
            "x": 3900,
            "y": 1450
          },
          "group": {
            "x": 4160,
            "y": 450
          },
          "motion": {
            "x": 4420,
            "y": 450
          },
          "camera": {
            "x": 4420,
            "y": 850
          },
          "compose": {
            "x": 4680,
            "y": 450
          },
          "legend": {
            "x": 4160,
            "y": 1400
          }
        },
        "recommended_panels": [
          {
            "kind": "scene3d",
            "binding": {
              "nodeInstanceId": "compose",
              "outputName": "scene"
            }
          },
          {
            "kind": "markdown",
            "binding": {
              "nodeInstanceId": "legend",
              "outputName": "text"
            }
          },
          {
            "kind": "table",
            "binding": {
              "nodeInstanceId": "sample",
              "outputName": "items"
            }
          }
        ]
      }
    }
  }
}
